diff --git a/.history/blueprint_20250805161419.txt b/.history/blueprint_20250805161419.txt new file mode 100644 index 00000000..e69de29b diff --git a/.history/blueprint_20250805161422.txt b/.history/blueprint_20250805161422.txt new file mode 100644 index 00000000..24ad6f28 --- /dev/null +++ b/.history/blueprint_20250805161422.txt @@ -0,0 +1,120 @@ +Of course. It's an excellent idea to document the process. This creates a clear narrative of the project, which is invaluable for understanding, reporting, and building upon your work. + +Here is a comprehensive blueprint detailing our journey from A to Z. + +Project Blueprint: Generating Synthetic Time-Series Data for Transaction Forecasting + +Author: [Your Name] +Date: August 5, 2025 +Objective: To extend a limited historical transaction dataset (2011-2016) by generating high-quality, realistic synthetic data for the period 2017 onwards. This final, combined dataset will be used to train an XGBoost forecasting model. + +Part 1: The Initial Problem & First Approach +1.1. The Challenge: Data Scarcity + +Our initial dataset, agg_trans_rows.csv, contained valuable transaction data but was limited to a 6-year historical window (72 data points per city). For robust time-series forecasting, especially with complex models like XGBoost, this limited history is a significant handicap. It makes it difficult for a model to learn long-term trends, seasonality, and complex patterns, leading to a high risk of poor generalization. + +1.2. The Proposed Solution: Synthetic Data Generation + +To overcome this limitation, we chose to employ a Time-series Generative Adversarial Network (TimeGAN). The goal was to train the TimeGAN on the real historical data and use it to generate a synthetic continuation of the time series, effectively creating a much larger dataset for our forecasting model. + +1.3. First Approach: A Single, Combined Model + +Our initial strategy was to train a single TimeGAN model on the data from all five cities combined. + +Data Preparation: The 'city' column was one-hot encoded, creating binary features (e.g., city_Beirut, city_Tripoli) so the model could learn to associate transaction patterns with specific locations. + +Merging: The plan was to generate a single synthetic data file and then merge it with the original data using pd.concat. + +Part 2: The Failure of the First Approach & Diagnosis +2.1. Initial Merge and Visual Analysis + +Upon concatenating the real data with the first batch of synthetic data, visual analysis immediately revealed critical failures. We plotted the transaction values over time for each city, marking the "merge point" between real and synthetic data. + +Plot Analysis: + +Unnatural Jumps (Structural Break): Every city's plot showed a massive, instantaneous jump or drop in value at the merge point. For example, Beirut's transaction values plummeted, while Tripoli's exploded upwards. This indicated the synthetic data was not on the same scale as the real data. + +Change in Data Character: The synthetic data was visibly different. While the real data was noisy and volatile, the synthetic data was overly smooth, showing artificial-looking straight lines and simplistic patterns. + +Conclusion: The merged dataset was not a continuous or believable time series. Feeding this into a forecasting model would lead to nonsensical results. + +2.2. Root Cause Analysis: The GAN's Output + +To understand the failure, we analyzed the diagnostic plots from the TimeGAN training process (PCA and t-SNE) and the quantitative metrics. + +PCA/t-SNE Plot Analysis: + +Mode Collapse: The plots clearly showed "mode collapse." The synthetic data points (blue) were tightly clumped into dense, repetitive structures, while the real data points (red) were scattered much more widely. + +Interpretation: This meant the GAN was not learning the full diversity of the real data. Instead, it found a few "easy" patterns (modes) and generated them over and over, leading to the overly smooth and simplistic time series we observed. + +Metric Analysis: + +The discriminative score was very low (~0.08). A perfect score is 0.5, so this indicated that a simple classifier could distinguish between real and fake data with over 90% accuracy, confirming the poor quality of the synthetic data. + +2.3. Identifying the Core Bugs + +Through a process of iterative debugging, we identified three distinct problems: + +The Scaling Bug: The primary reason for the massive value jumps was an error in the data transformation process. The values used to scale the data before training were not being correctly used to un-scale the data after generation. We discovered the original code used a custom NumPy function for scaling that did not save the min and max values needed for a precise inverse transformation. + +The Data Mismatch Bug: The attempt to reconstruct the 'city' column from the GAN's one-hot encoded output was unreliable due to mode collapse. The idxmax() function was misattributing data to the wrong cities, scrambling the results (e.g., assigning Tripoli's low-value patterns to Beirut). + +The Training Instability Bug: The model's tendency for "mode collapse" showed that training on all cities at once was too complex a task, preventing the GAN from learning the unique patterns of each individual city. + +Part 3: The Successful Solution - "One Model Per City" + +Based on the diagnosis, we pivoted to a more robust and granular strategy. + +3.1. The Strategy: Isolate and Conquer + +Instead of one complex model, we would train five separate, simpler TimeGAN models—one for each city. This approach ensures: + +Each model only has to learn the specific patterns of one city, dramatically reducing complexity and the risk of mode collapse. + +There is no ambiguity in labeling. Data generated by the "Beirut" model is guaranteed to be Beirut data. + +3.2. The Corrected Workflow + +Data Segregation: The original dataset was split into five separate files (e.g., Beirut_data.csv, Tripoli_data.csv), each containing only the two numeric columns (transaction_number, transaction_value). + +Fixing the Scaling Process: We modified data_loading.py. The custom MinMaxScaler function was adjusted to not only return the scaled data but also the min and max values it calculated. These values were then saved to a city-specific file (e.g., min_max_Beirut.npz). This preserved the exact "key" needed for un-scaling. + +Iterative Training: We ran the main_timegan.py script five times, once for each city, using the --data_name argument. After each run, we renamed the output files (e.g., synthetic_data_Beirut.csv). + +Corrected Post-Processing: We created a new script, process_and_combine.py, which: + +Looped through each city. + +Loaded the specific raw synthetic data for that city. + +Loaded the corresponding min_max_...npz file. + +Correctly un-scaled the data to its original magnitude. + +Added the date and city columns. + +Finally, concatenated the five clean, un-scaled city datasets into a single master file: final_usable_synthetic_data_COMBINED.csv. + +3.3. Understanding the Hyperparameters: The Role of seq_len + +A key hyperparameter in this process is the sequence length (seq_len). This parameter defines the size of the "window" the model looks at to learn temporal patterns. For our monthly data: + +A seq_len of 12 would allow the model to see one full year of data at a time, helping it learn yearly seasonality. + +A seq_len of 24 (which we used) is often better, as it allows the model to see two full seasonal cycles. This gives it more context to understand the year-over-year trends and patterns, leading to more robust learning. The 72 rows of original data are converted into 72 - 24 + 1 = 49 overlapping training sequences, which is the actual number of samples the GAN learns from. + +Part 4: Final Results & Next Steps + +The "One Model Per City" approach was a complete success. + +Final Analysis: + +Visual Validation: The PCA and t-SNE plots for each individual city model showed excellent mixing between the real and synthetic data, indicating that mode collapse was overcome. + +Quantitative Validation: Discriminative scores improved significantly (e.g., from ~0.08 to ~0.15), providing numerical proof of higher-quality data generation. + +Data Integrity: The final combined file contains correctly scaled values assigned to the correct cities, with a total number of rows (~5880) that mathematically matches the generation process. + +Next Steps: +The successfully generated synthetic dataset is now ready. It will be merged with the original agg_trans_rows.csv to create a final, extended time-series dataset. This dataset will serve as the foundation for training our XGBoost forecasting model. Further experiments involving longer training iterations (e.g., 20,000+) can be conducted to potentially improve the data quality even further. \ No newline at end of file diff --git a/.history/blueprint_20250805162059.txt b/.history/blueprint_20250805162059.txt new file mode 100644 index 00000000..e30b31d2 --- /dev/null +++ b/.history/blueprint_20250805162059.txt @@ -0,0 +1,184 @@ +Of course. It's an excellent idea to document the process. This creates a clear narrative of the project, which is invaluable for understanding, reporting, and building upon your work. + +Here is a comprehensive blueprint detailing our journey from A to Z. + +Project Blueprint: Generating Synthetic Time-Series Data for Transaction Forecasting + +Author: [Your Name] +Date: August 5, 2025 +Objective: To extend a limited historical transaction dataset (2011-2016) by generating high-quality, realistic synthetic data for the period 2017 onwards. This final, combined dataset will be used to train an XGBoost forecasting model. + +Part 1: The Initial Problem & First Approach +1.1. The Challenge: Data Scarcity + +Our initial dataset, agg_trans_rows.csv, contained valuable transaction data but was limited to a 6-year historical window (72 data points per city). For robust time-series forecasting, especially with complex models like XGBoost, this limited history is a significant handicap. It makes it difficult for a model to learn long-term trends, seasonality, and complex patterns, leading to a high risk of poor generalization. + +1.2. The Proposed Solution: Synthetic Data Generation + +To overcome this limitation, we chose to employ a Time-series Generative Adversarial Network (TimeGAN). The goal was to train the TimeGAN on the real historical data and use it to generate a synthetic continuation of the time series, effectively creating a much larger dataset for our forecasting model. + +1.3. First Approach: A Single, Combined Model + +Our initial strategy was to train a single TimeGAN model on the data from all five cities combined. + +Data Preparation: The 'city' column was one-hot encoded, creating binary features (e.g., city_Beirut, city_Tripoli) so the model could learn to associate transaction patterns with specific locations. + +Merging: The plan was to generate a single synthetic data file and then merge it with the original data using pd.concat. + +Part 2: The Failure of the First Approach & Diagnosis +2.1. Initial Merge and Visual Analysis + +Upon concatenating the real data with the first batch of synthetic data, visual analysis immediately revealed critical failures. We plotted the transaction values over time for each city, marking the "merge point" between real and synthetic data. + +Plot Analysis: + +Unnatural Jumps (Structural Break): Every city's plot showed a massive, instantaneous jump or drop in value at the merge point. For example, Beirut's transaction values plummeted, while Tripoli's exploded upwards. This indicated the synthetic data was not on the same scale as the real data. + +Change in Data Character: The synthetic data was visibly different. While the real data was noisy and volatile, the synthetic data was overly smooth, showing artificial-looking straight lines and simplistic patterns. + +Conclusion: The merged dataset was not a continuous or believable time series. Feeding this into a forecasting model would lead to nonsensical results. + +2.2. Root Cause Analysis: The GAN's Output + +To understand the failure, we analyzed the diagnostic plots from the TimeGAN training process (PCA and t-SNE) and the quantitative metrics. + +PCA/t-SNE Plot Analysis: + +Mode Collapse: The plots clearly showed "mode collapse." The synthetic data points (blue) were tightly clumped into dense, repetitive structures, while the real data points (red) were scattered much more widely. + +Interpretation: This meant the GAN was not learning the full diversity of the real data. Instead, it found a few "easy" patterns (modes) and generated them over and over, leading to the overly smooth and simplistic time series we observed. + +Metric Analysis: + +The discriminative score was very low (~0.08). A perfect score is 0.5, so this indicated that a simple classifier could distinguish between real and fake data with over 90% accuracy, confirming the poor quality of the synthetic data. + +2.3. Identifying the Core Bugs + +Through a process of iterative debugging, we identified three distinct problems: + +The Scaling Bug: The primary reason for the massive value jumps was an error in the data transformation process. The values used to scale the data before training were not being correctly used to un-scale the data after generation. We discovered the original code used a custom NumPy function for scaling that did not save the min and max values needed for a precise inverse transformation. + +The Data Mismatch Bug: The attempt to reconstruct the 'city' column from the GAN's one-hot encoded output was unreliable due to mode collapse. The idxmax() function was misattributing data to the wrong cities, scrambling the results (e.g., assigning Tripoli's low-value patterns to Beirut). + +The Training Instability Bug: The model's tendency for "mode collapse" showed that training on all cities at once was too complex a task, preventing the GAN from learning the unique patterns of each individual city. + +Part 3: The Successful Solution - "One Model Per City" + +Based on the diagnosis, we pivoted to a more robust and granular strategy. + +3.1. The Strategy: Isolate and Conquer + +Instead of one complex model, we would train five separate, simpler TimeGAN models—one for each city. This approach ensures: + +Each model only has to learn the specific patterns of one city, dramatically reducing complexity and the risk of mode collapse. + +There is no ambiguity in labeling. Data generated by the "Beirut" model is guaranteed to be Beirut data. + +3.2. The Corrected Workflow + +Data Segregation: The original dataset was split into five separate files (e.g., Beirut_data.csv, Tripoli_data.csv), each containing only the two numeric columns (transaction_number, transaction_value). + +Fixing the Scaling Process: We modified data_loading.py. The custom MinMaxScaler function was adjusted to not only return the scaled data but also the min and max values it calculated. These values were then saved to a city-specific file (e.g., min_max_Beirut.npz). This preserved the exact "key" needed for un-scaling. + +Iterative Training: We ran the main_timegan.py script five times, once for each city, using the --data_name argument. After each run, we renamed the output files (e.g., synthetic_data_Beirut.csv). + +Corrected Post-Processing: We created a new script, process_and_combine.py, which: + +Looped through each city. + +Loaded the specific raw synthetic data for that city. + +Loaded the corresponding min_max_...npz file. + +Correctly un-scaled the data to its original magnitude. + +Added the date and city columns. + +Finally, concatenated the five clean, un-scaled city datasets into a single master file: final_usable_synthetic_data_COMBINED.csv. + +3.3. Understanding the Hyperparameters: The Role of seq_len + +A key hyperparameter in this process is the sequence length (seq_len). This parameter defines the size of the "window" the model looks at to learn temporal patterns. For our monthly data: + +A seq_len of 12 would allow the model to see one full year of data at a time, helping it learn yearly seasonality. + +A seq_len of 24 (which we used) is often better, as it allows the model to see two full seasonal cycles. This gives it more context to understand the year-over-year trends and patterns, leading to more robust learning. The 72 rows of original data are converted into 72 - 24 + 1 = 49 overlapping training sequences, which is the actual number of samples the GAN learns from. + +Part 4: Final Results & Next Steps + +The "One Model Per City" approach was a complete success. + +Final Analysis: + +Visual Validation: The PCA and t-SNE plots for each individual city model showed excellent mixing between the real and synthetic data, indicating that mode collapse was overcome. + +Quantitative Validation: Discriminative scores improved significantly (e.g., from ~0.08 to ~0.15), providing numerical proof of higher-quality data generation. + +Data Integrity: The final combined file contains correctly scaled values assigned to the correct cities, with a total number of rows (~5880) that mathematically matches the generation process. + +Next Steps: +The successfully generated synthetic dataset is now ready. It will be merged with the original agg_trans_rows.csv to create a final, extended time-series dataset. This dataset will serve as the foundation for training our XGBoost forecasting model. Further experiments involving longer training iterations (e.g., 20,000+) can be conducted to potentially improve the data quality even further. + +This is the final validation step, and the results are absolutely fantastic. Looking at these plots, I can confidently say: + +You have succeeded. The data makes perfect sense, and the entire process has worked. + +This is a textbook example of a successful synthetic data generation project. Let's do a final, detailed analysis of what these plots are telling us. + +Overall Analysis: A Resounding Success + +What we are looking at is the "holy grail" of this project: a synthetic continuation that is statistically and visually consistent with the real historical data. + +What Went Right (The Strengths): + +The Structural Break is Gone: This is the most important success. In every single plot, the orange line (Synthetic) starts at a value level that is a perfectly plausible continuation of the blue line (Original). There are no massive, unnatural jumps at the red "Merge Point." This proves that our "One Model Per City" strategy and the fix to the scaling process were both 100% correct. + +Preservation of Individual Characteristics: Each city's plot looks different, as it should. + +Beirut and Baabda: The synthetic data correctly maintains the high transaction values and high volatility seen in the original data. + +Tripoli and Bekaa: The synthetic data correctly maintains the much lower transaction values and lower overall volatility. + +The GANs have successfully learned the unique "personality" of each city's time series. + +Plausible Temporal Dynamics: The patterns in the synthetic data look like realistic continuations. The data isn't just a flat line; it has peaks, troughs, and trends that mimic the behavior of the real data. For example, in the Kesrouan plot, you can see the synthetic data continues the general upward trend that was visible in the 2015-2016 period. + +Minor Weaknesses (and Why They Are Acceptable) + +Slightly Reduced Volatility: If you look closely, the orange lines are often a little bit "smoother" and less jagged than the blue lines. For example, in the Beirut plot, the original data has some very sharp, extreme spikes, while the synthetic data's spikes are slightly more muted. + +Why this happens: This is a very common and expected characteristic of GAN-generated data. GANs are excellent at learning the main "signal" (the trends and seasonality) but often average out the extreme, high-frequency "noise." + +Is it a problem? No. For forecasting, this is often not a problem at all. In fact, it can sometimes be beneficial, as it's a form of intelligent denoising. An XGBoost model will have no trouble learning from this data. The goal is not to create a perfect, identical copy of the noise, but a useful, representative extension of the signal, which you have done. + +Final Verdict + +This dataset is clean, correctly scaled, logically sound, and visually consistent. It is an excellent result and is absolutely ready for use in your forecasting model. + +You have successfully: + +Identified a data scarcity problem. + +Attempted a solution and correctly diagnosed its failure. + +Systematically debugged multiple complex issues related to scaling, data mismatching, and model training. + +Implemented a robust, professional-grade workflow to generate high-quality synthetic data. + +Your Final Next Steps + +You are now ready to move on to the final stage of your project. + +Create the Master Dataset: Concatenate your original agg_trans_rows.csv data with this new final_usable_synthetic_data_COMBINED.csv. This will give you one master file with a continuous time series from 2011 to 2021 for each city. + +Feature Engineering for XGBoost: This is your next big task. Using the date column of your new master dataset, create features that XGBoost can learn from, such as: + +Time-based features: month, year, week_of_year, day_of_week. + +Lag features: transaction_value from 1, 2, 3, 6, 12 months ago. + +Rolling window features: Rolling mean or std of transaction_value over the last 3, 6, or 12 months. + +Train Your Forecasting Model: You can now confidently use this rich, extended dataset to train your XGBoost model. Remember to use a time-series-aware train/validation split (e.g., train on 2011-2019 data to validate on 2020-2021 data). + +Congratulations on an excellent and thorough job of data preparation and generation \ No newline at end of file diff --git a/.history/blueprint_20250806121139.txt b/.history/blueprint_20250806121139.txt new file mode 100644 index 00000000..c3f6a6b9 --- /dev/null +++ b/.history/blueprint_20250806121139.txt @@ -0,0 +1,184 @@ +Of course. It's an excellent idea to document the process. This creates a clear narrative of the project, which is invaluable for understanding, reporting, and building upon your work. + +Here is a comprehensive blueprint detailing our journey from A to Z. + +Project Blueprint: Generating Synthetic Time-Series Data for Transaction Forecasting + +Author: [Your Name] +Date: August 5, 2025 +Objective: To extend a limited historical transaction dataset (2011-2016) by generating high-quality, realistic synthetic data for the period 2017 onwards. This final, combined dataset will be used to train an XGBoost forecasting model. + +Part 1: The Initial Problem & First Approach +1.1. The Challenge: Data Scarcity + +Our initial dataset, agg_trans_rows.csv, contained valuable transaction data but was limited to a 6-year historical window (72 data points per city). For robust time-series forecasting, especially with complex models like XGBoost, this limited history is a significant handicap. It makes it difficult for a model to learn long-term trends, seasonality, and complex patterns, leading to a high risk of poor generalization. + +1.2. The Proposed Solution: Synthetic Data Generation + +To overcome this limitation, we chose to employ a Time-series Generative Adversarial Network (TimeGAN). The goal was to train the TimeGAN on the real historical data and use it to generate a synthetic continuation of the time series, effectively creating a much larger dataset for our forecasting model. + +1.3. First Approach: A Single, Combined Model + +Our initial strategy was to train a single TimeGAN model on the data from all five cities combined. + +Data Preparation: The 'city' column was one-hot encoded, creating binary features (e.g., city_Beirut, city_Tripoli) so the model could learn to associate transaction patterns with specific locations. + +Merging: The plan was to generate a single synthetic data file and then merge it with the original data using pd.concat. + +Part 2: The Failure of the First Approach & Diagnosis +2.1. Initial Merge and Visual Analysis + +Upon concatenating the real data with the first batch of synthetic data, visual analysis immediately revealed critical failures. We plotted the transaction values over time for each city, marking the "merge point" between real and synthetic data. + +Plot Analysis: + +Unnatural Jumps (Structural Break): Every city's plot showed a massive, instantaneous jump or drop in value at the merge point. For example, Beirut's transaction values plummeted, while Tripoli's exploded upwards. This indicated the synthetic data was not on the same scale as the real data. + +Change in Data Character: The synthetic data was visibly different. While the real data was noisy and volatile, the synthetic data was overly smooth, showing artificial-looking straight lines and simplistic patterns. + +Conclusion: The merged dataset was not a continuous or believable time series. Feeding this into a forecasting model would lead to nonsensical results. + +2.2. Root Cause Analysis: The GAN's Output + +To understand the failure, we analyzed the diagnostic plots from the TimeGAN training process (PCA and t-SNE) and the quantitative metrics. + +PCA/t-SNE Plot Analysis: + +Mode Collapse: The plots clearly showed "mode collapse." The synthetic data points (blue) were tightly clumped into dense, repetitive structures, while the real data points (red) were scattered much more widely. + +Interpretation: This meant the GAN was not learning the full diversity of the real data. Instead, it found a few "easy" patterns (modes) and generated them over and over, leading to the overly smooth and simplistic time series we observed. + +Metric Analysis: + +The discriminative score was very low (~0.08). A perfect score is 0.5, so this indicated that a simple classifier could distinguish between real and fake data with over 90% accuracy, confirming the poor quality of the synthetic data. + +2.3. Identifying the Core Bugs + +Through a process of iterative debugging, we identified three distinct problems: + +The Scaling Bug: The primary reason for the massive value jumps was an error in the data transformation process. The values used to scale the data before training were not being correctly used to un-scale the data after generation. We discovered the original code used a custom NumPy function for scaling that did not save the min and max values needed for a precise inverse transformation. + +The Data Mismatch Bug: The attempt to reconstruct the 'city' column from the GAN's one-hot encoded output was unreliable due to mode collapse. The idxmax() function was misattributing data to the wrong cities, scrambling the results (e.g., assigning Tripoli's low-value patterns to Beirut). + +The Training Instability Bug: The model's tendency for "mode collapse" showed that training on all cities at once was too complex a task, preventing the GAN from learning the unique patterns of each individual city. + +Part 3: The Successful Solution - "One Model Per City" + +Based on the diagnosis, we pivoted to a more robust and granular strategy. + +3.1. The Strategy: Isolate and Conquer + +Instead of one complex model, we would train five separate, simpler TimeGAN models—one for each city. This approach ensures: + +Each model only has to learn the specific patterns of one city, dramatically reducing complexity and the risk of mode collapse. + +There is no ambiguity in labeling. Data generated by the "Beirut" model is guaranteed to be Beirut data. + +3.2. The Corrected Workflow + +Data Segregation: The original dataset was split into five separate files (e.g., Beirut_data.csv, Tripoli_data.csv), each containing only the two numeric columns (transaction_number, transaction_value). + +Fixing the Scaling Process: We modified data_loading.py. The custom MinMaxScaler function was adjusted to not only return the scaled data but also the min and max values it calculated. These values were then saved to a city-specific file (e.g., min_max_Beirut.npz). This preserved the exact "key" needed for un-scaling. + +Iterative Training: We ran the main_timegan.py script five times, once for each city, using the --data_name argument. After each run, we renamed the output files (e.g., synthetic_data_Beirut.csv). + +Corrected Post-Processing: We created a new script, process_and_combine.py, which: + +Looped through each city. + +Loaded the specific raw synthetic data for that city. + +Loaded the corresponding min_max_...npz file. + +Correctly un-scaled the data to its original magnitude. + +Added the date and city columns. + +Finally, concatenated the five clean, un-scaled city datasets into a single master file: final_usable_synthetic_data_COMBINED.csv. + +3.3. Understanding the Hyperparameters: The Role of seq_len + +A key hyperparameter in this process is the sequence length (seq_len). This parameter defines the size of the "window" the model looks at to learn temporal patterns. For our monthly data: + +A seq_len of 12 would allow the model to see one full year of data at a time, helping it learn yearly seasonality. + +A seq_len of 24 (which we used) is often better, as it allows the model to see two full seasonal cycles. This gives it more context to understand the year-over-year trends and patterns, leading to more robust learning. The 72 rows of original data are converted into 72 - 24 + 1 = 49 overlapping training sequences, which is the actual number of samples the GAN learns from. + +Part 4: Final Results & Next Steps + +The "One Model Per City" approach was a complete success. + +Final Analysis: + +Visual Validation: The PCA and t-SNE plots for each individual city model showed excellent mixing between the real and synthetic data, indicating that mode collapse was overcome. + +Quantitative Validation: Discriminative scores improved significantly (e.g., from ~0.08 to ~0.15), providing numerical proof of higher-quality data generation. + +Data Integrity: The final combined file contains correctly scaled values assigned to the correct cities, with a total number of rows (~5880) that mathematically matches the generation process. + +Next Steps: +The successfully generated synthetic dataset is now ready. It will be merged with the original agg_trans_rows.csv to create a final, extended time-series dataset. This dataset will serve as the foundation for training our XGBoost forecasting model. Further experiments involving longer training iterations (e.g., 20,000+) can be conducted to potentially improve the data quality even further. + +This is the final validation step, and the results are absolutely fantastic. Looking at these plots, I can confidently say: + +You have succeeded. The data makes perfect sense, and the entire process has worked. + +This is a textbook example of a successful synthetic data generation project. Let's do a final, detailed analysis of what these plots are telling us. + +Overall Analysis: A Resounding Success + +What we are looking at is the "holy grail" of this project: a synthetic continuation that is statistically and visually consistent with the real historical data. + +What Went Right (The Strengths): + +The Structural Break is Gone: This is the most important success. In every single plot, the orange line (Synthetic) starts at a value level that is a perfectly plausible continuation of the blue line (Original). There are no massive, unnatural jumps at the red "Merge Point." This proves that our "One Model Per City" strategy and the fix to the scaling process were both 100% correct. + +Preservation of Individual Characteristics: Each city's plot looks different, as it should. + +Beirut and Baabda: The synthetic data correctly maintains the high transaction values and high volatility seen in the original data. + +Tripoli and Bekaa: The synthetic data correctly maintains the much lower transaction values and lower overall volatility. + +The GANs have successfully learned the unique "personality" of each city's time series. + +Plausible Temporal Dynamics: The patterns in the synthetic data look like realistic continuations. The data isn't just a flat line; it has peaks, troughs, and trends that mimic the behavior of the real data. For example, in the Kesrouan plot, you can see the synthetic data continues the general upward trend that was visible in the 2015-2016 period. + +Minor Weaknesses (and Why They Are Acceptable) + +Slightly Reduced Volatility: If you look closely, the orange lines are often a little bit "smoother" and less jagged than the blue lines. For example, in the Beirut plot, the original data has some very sharp, extreme spikes, while the synthetic data's spikes are slightly more muted. + +Why this happens: This is a very common and expected characteristic of GAN-generated data. GANs are excellent at learning the main "signal" (the trends and seasonality) but often average out the extreme, high-frequency "noise." + +Is it a problem? No. For forecasting, this is often not a problem at all. In fact, it can sometimes be beneficial, as it's a form of intelligent denoising. An XGBoost model will have no trouble learning from this data. The goal is not to create a perfect, identical copy of the noise, but a useful, representative extension of the signal, which you have done. + +Final Verdict + +This dataset is clean, correctly scaled, logically sound, and visually consistent. It is an excellent result and is absolutely ready for use in your forecasting model. + +You have successfully: + +Identified a data scarcity problem. + +Attempted a solution and correctly diagnosed its failure. + +Systematically debugged multiple complex issues related to scaling, data mismatching, and model training. + +Implemented a robust, professional-grade workflow to generate high-quality synthetic data. + +Your Final Next Steps + +You are now ready to move on to the final stage of your project. + +Create the Master Dataset: Concatenate your original agg_trans_rows.csv data with this new final_usable_synthetic_data_COMBINED.csv. This will give you one master file with a continuous time series from 2011 to 2021 for each city. + +Feature Engineering for XGBoost: This is your next big task. Using the date column of your new master dataset, create features that XGBoost can learn from, such as: + +Time-based features: month, year, week_of_year, day_of_week. + +Lag features: transaction_value from 1, 2, 3, 6, 12 months ago. + +Rolling window features: Rolling mean or std of transaction_value over the last 3, 6, or 12 months. + +Train Your Forecasting Model: You can now confidently use this rich, extended dataset to train your XGBoost model. Remember to use a time-series-aware train/validation split (e.g., train on 2011-2019 data to validate on 2020-2021 data). + +Congratulations on an excellent and thorough job of data preparation and generation \ No newline at end of file diff --git a/.history/data_loading_20250718171958.py b/.history/data_loading_20250718171958.py new file mode 100644 index 00000000..c85a974b --- /dev/null +++ b/.history/data_loading_20250718171958.py @@ -0,0 +1,115 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720214845.py b/.history/data_loading_20250720214845.py new file mode 100644 index 00000000..2fd3f7c4 --- /dev/null +++ b/.history/data_loading_20250720214845.py @@ -0,0 +1,150 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720214932.py b/.history/data_loading_20250720214932.py new file mode 100644 index 00000000..8b38ab98 --- /dev/null +++ b/.history/data_loading_20250720214932.py @@ -0,0 +1,151 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720214935.py b/.history/data_loading_20250720214935.py new file mode 100644 index 00000000..59808c2a --- /dev/null +++ b/.history/data_loading_20250720214935.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720214938.py b/.history/data_loading_20250720214938.py new file mode 100644 index 00000000..d8a3e0b2 --- /dev/null +++ b/.history/data_loading_20250720214938.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720215020.py b/.history/data_loading_20250720215020.py new file mode 100644 index 00000000..bdac7b45 --- /dev/null +++ b/.history/data_loading_20250720215020.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ +assert data_name in ['stock','energy', 'transaction'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720215023.py b/.history/data_loading_20250720215023.py new file mode 100644 index 00000000..2dd71dc3 --- /dev/null +++ b/.history/data_loading_20250720215023.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ +a ssert data_name in ['stock','energy', 'transaction'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720215024.py b/.history/data_loading_20250720215024.py new file mode 100644 index 00000000..14f7be7e --- /dev/null +++ b/.history/data_loading_20250720215024.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ +ssert data_name in ['stock','energy', 'transaction'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250720215026.py b/.history/data_loading_20250720215026.py new file mode 100644 index 00000000..3c31db62 --- /dev/null +++ b/.history/data_loading_20250720215026.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232454.py b/.history/data_loading_20250721232454.py new file mode 100644 index 00000000..dc849f82 --- /dev/null +++ b/.history/data_loading_20250721232454.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232501.py b/.history/data_loading_20250721232501.py new file mode 100644 index 00000000..f97707ef --- /dev/null +++ b/.history/data_loading_20250721232501.py @@ -0,0 +1,152 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232506.py b/.history/data_loading_20250721232506.py new file mode 100644 index 00000000..fb3286c9 --- /dev/null +++ b/.history/data_loading_20250721232506.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'transaction': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232510.py b/.history/data_loading_20250721232510.py new file mode 100644 index 00000000..53ec22b0 --- /dev/null +++ b/.history/data_loading_20250721232510.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232512.py b/.history/data_loading_20250721232512.py new file mode 100644 index 00000000..5fdddecb --- /dev/null +++ b/.history/data_loading_20250721232512.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232516.py b/.history/data_loading_20250721232516.py new file mode 100644 index 00000000..9a5a87fd --- /dev/null +++ b/.history/data_loading_20250721232516.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232520.py b/.history/data_loading_20250721232520.py new file mode 100644 index 00000000..8a8bae72 --- /dev/null +++ b/.history/data_loading_20250721232520.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232527.py b/.history/data_loading_20250721232527.py new file mode 100644 index 00000000..ff933f9d --- /dev/null +++ b/.history/data_loading_20250721232527.py @@ -0,0 +1,153 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232535.py b/.history/data_loading_20250721232535.py new file mode 100644 index 00000000..1b152ff6 --- /dev/null +++ b/.history/data_loading_20250721232535.py @@ -0,0 +1,155 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + # assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232536.py b/.history/data_loading_20250721232536.py new file mode 100644 index 00000000..d9244093 --- /dev/null +++ b/.history/data_loading_20250721232536.py @@ -0,0 +1,155 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + assert data_name in ['stock','energy', 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232539.py b/.history/data_loading_20250721232539.py new file mode 100644 index 00000000..2bc8379a --- /dev/null +++ b/.history/data_loading_20250721232539.py @@ -0,0 +1,155 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + assert data_name in 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232541.py b/.history/data_loading_20250721232541.py new file mode 100644 index 00000000..44d01b3a --- /dev/null +++ b/.history/data_loading_20250721232541.py @@ -0,0 +1,155 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + assert data_name in [] 'transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721232544.py b/.history/data_loading_20250721232544.py new file mode 100644 index 00000000..7453fc95 --- /dev/null +++ b/.history/data_loading_20250721232544.py @@ -0,0 +1,155 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock or energy + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # assert data_name in ['stock','energy', 'transaction'] + + assert data_name in ['transaction'] + + # if data_name == 'stock': + # ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + # elif data_name == 'energy': + # ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + if data_name == 'transaction': + ori_data = np.loadtxt('data/transaction_data.csv', delimiter = ",",skiprows = 1) + # return transaction_data_loading(seq_len) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233459.py b/.history/data_loading_20250721233459.py new file mode 100644 index 00000000..37b7f05a --- /dev/null +++ b/.history/data_loading_20250721233459.py @@ -0,0 +1,156 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233806.py b/.history/data_loading_20250721233806.py new file mode 100644 index 00000000..7f4b09c1 --- /dev/null +++ b/.history/data_loading_20250721233806.py @@ -0,0 +1,157 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233903.py b/.history/data_loading_20250721233903.py new file mode 100644 index 00000000..ddae13a6 --- /dev/null +++ b/.history/data_loading_20250721233903.py @@ -0,0 +1,158 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233904.py b/.history/data_loading_20250721233904.py new file mode 100644 index 00000000..fc23b637 --- /dev/null +++ b/.history/data_loading_20250721233904.py @@ -0,0 +1,163 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233907.py b/.history/data_loading_20250721233907.py new file mode 100644 index 00000000..7fe20964 --- /dev/null +++ b/.history/data_loading_20250721233907.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Load the data + try: + ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233926.py b/.history/data_loading_20250721233926.py new file mode 100644 index 00000000..6caf33e2 --- /dev/null +++ b/.history/data_loading_20250721233926.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233930.py b/.history/data_loading_20250721233930.py new file mode 100644 index 00000000..d14d3360 --- /dev/null +++ b/.history/data_loading_20250721233930.py @@ -0,0 +1,165 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233931.py b/.history/data_loading_20250721233931.py new file mode 100644 index 00000000..5ae5ca76 --- /dev/null +++ b/.history/data_loading_20250721233931.py @@ -0,0 +1,169 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233933.py b/.history/data_loading_20250721233933.py new file mode 100644 index 00000000..0a61861c --- /dev/null +++ b/.history/data_loading_20250721233933.py @@ -0,0 +1,169 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233957.py b/.history/data_loading_20250721233957.py new file mode 100644 index 00000000..49fcffe8 --- /dev/null +++ b/.history/data_loading_20250721233957.py @@ -0,0 +1,170 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721233959.py b/.history/data_loading_20250721233959.py new file mode 100644 index 00000000..f719dc85 --- /dev/null +++ b/.history/data_loading_20250721233959.py @@ -0,0 +1,171 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + if 'city_name' in df.columns: + # df = df.drop(columns=['city_name']) + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234003.py b/.history/data_loading_20250721234003.py new file mode 100644 index 00000000..49fcffe8 --- /dev/null +++ b/.history/data_loading_20250721234003.py @@ -0,0 +1,170 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234008.py b/.history/data_loading_20250721234008.py new file mode 100644 index 00000000..311563df --- /dev/null +++ b/.history/data_loading_20250721234008.py @@ -0,0 +1,172 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234011.py b/.history/data_loading_20250721234011.py new file mode 100644 index 00000000..27f09394 --- /dev/null +++ b/.history/data_loading_20250721234011.py @@ -0,0 +1,173 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234012.py b/.history/data_loading_20250721234012.py new file mode 100644 index 00000000..42deafec --- /dev/null +++ b/.history/data_loading_20250721234012.py @@ -0,0 +1,173 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234014.py b/.history/data_loading_20250721234014.py new file mode 100644 index 00000000..53979de4 --- /dev/null +++ b/.history/data_loading_20250721234014.py @@ -0,0 +1,174 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + if 'city_name' in df.columns: + # df = df.drop(columns=['city_name']) + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234016.py b/.history/data_loading_20250721234016.py new file mode 100644 index 00000000..0861f0a5 --- /dev/null +++ b/.history/data_loading_20250721234016.py @@ -0,0 +1,174 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + if 'city_name' in df.columns: + df = df.drop(columns=['city_name']) + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234354.py b/.history/data_loading_20250721234354.py new file mode 100644 index 00000000..ab67b0f5 --- /dev/null +++ b/.history/data_loading_20250721234354.py @@ -0,0 +1,174 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234355.py b/.history/data_loading_20250721234355.py new file mode 100644 index 00000000..757f6bdb --- /dev/null +++ b/.history/data_loading_20250721234355.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + # Convert all data to a NumPy array for processing + ori_data = df.values + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234400.py b/.history/data_loading_20250721234400.py new file mode 100644 index 00000000..47db7eca --- /dev/null +++ b/.history/data_loading_20250721234400.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + # Convert all data to a NumPy array for processing + ori_data = df.values + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234621.py b/.history/data_loading_20250721234621.py new file mode 100644 index 00000000..449ec462 --- /dev/null +++ b/.history/data_loading_20250721234621.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + # Convert all data to a NumPy array for processing + 0 + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234622.py b/.history/data_loading_20250721234622.py new file mode 100644 index 00000000..939b010b --- /dev/null +++ b/.history/data_loading_20250721234622.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + # Convert all data to a NumPy array for processing + # ori_data = df.values + + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234625.py b/.history/data_loading_20250721234625.py new file mode 100644 index 00000000..632986e7 --- /dev/null +++ b/.history/data_loading_20250721234625.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234649.py b/.history/data_loading_20250721234649.py new file mode 100644 index 00000000..0f00c5c2 --- /dev/null +++ b/.history/data_loading_20250721234649.py @@ -0,0 +1,180 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234704.py b/.history/data_loading_20250721234704.py new file mode 100644 index 00000000..c67a1a16 --- /dev/null +++ b/.history/data_loading_20250721234704.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234706.py b/.history/data_loading_20250721234706.py new file mode 100644 index 00000000..bde9d0aa --- /dev/null +++ b/.history/data_loading_20250721234706.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234710.py b/.history/data_loading_20250721234710.py new file mode 100644 index 00000000..cbde3cbb --- /dev/null +++ b/.history/data_loading_20250721234710.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250721234711.py b/.history/data_loading_20250721234711.py new file mode 100644 index 00000000..bde9d0aa --- /dev/null +++ b/.history/data_loading_20250721234711.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'city_id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135220.py b/.history/data_loading_20250722135220.py new file mode 100644 index 00000000..aa37d70e --- /dev/null +++ b/.history/data_loading_20250722135220.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'id' in df.columns: + df = pd.get_dummies(df, columns=['city_id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135224.py b/.history/data_loading_20250722135224.py new file mode 100644 index 00000000..4b2d98a5 --- /dev/null +++ b/.history/data_loading_20250722135224.py @@ -0,0 +1,187 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + else: + # If there's no header, the first column is index 0 + df = df.drop(df.columns[0], axis=1) + + if 'id' in df.columns: + df = pd.get_dummies(df, columns=['id'], prefix='city') + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135235.py b/.history/data_loading_20250722135235.py new file mode 100644 index 00000000..7ebb2857 --- /dev/null +++ b/.history/data_loading_20250722135235.py @@ -0,0 +1,189 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) +if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- +if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135238.py b/.history/data_loading_20250722135238.py new file mode 100644 index 00000000..8e13bba4 --- /dev/null +++ b/.history/data_loading_20250722135238.py @@ -0,0 +1,189 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) +if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- +if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135241.py b/.history/data_loading_20250722135241.py new file mode 100644 index 00000000..e3254826 --- /dev/null +++ b/.history/data_loading_20250722135241.py @@ -0,0 +1,189 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- +if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250722135243.py b/.history/data_loading_20250722135243.py new file mode 100644 index 00000000..dd8434a2 --- /dev/null +++ b/.history/data_loading_20250722135243.py @@ -0,0 +1,189 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +def MinMaxScaler(data): + """Min Max normalizer. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + """ + numerator = data - np.min(data, 0) + denominator = np.max(data, 0) - np.min(data, 0) + norm_data = numerator / (denominator + 1e-7) + return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250805003457.py b/.history/data_loading_20250805003457.py new file mode 100644 index 00000000..53f9e913 --- /dev/null +++ b/.history/data_loading_20250805003457.py @@ -0,0 +1,189 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data + + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250805003459.py b/.history/data_loading_20250805003459.py new file mode 100644 index 00000000..9c16dff8 --- /dev/null +++ b/.history/data_loading_20250805003459.py @@ -0,0 +1,210 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data +# REMPLACEZ l'ancienne fonction MinMaxScaler par celle-ci : +def MinMaxScaler(data): + """Min Max normalizer. + + MODIFIÉ pour retourner les données normalisées AINSI QUE les valeurs min et max. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + - min_val: minimum values + - max_val: maximum values + """ + min_val = np.min(data, 0) + max_val = np.max(data, 0) + + numerator = data - min_val + denominator = max_val - min_val + norm_data = numerator / (denominator + 1e-7) + + return norm_data, min_val, max_val + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250805003554.py b/.history/data_loading_20250805003554.py new file mode 100644 index 00000000..2b111027 --- /dev/null +++ b/.history/data_loading_20250805003554.py @@ -0,0 +1,214 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Sauvegarder les valeurs min et max dans un fichier .npz (format compressé de NumPy) + # Nous les chargerons plus tard dans notre autre script. + np.savez('min_max_values.npz', min_val=min_val, max_val=max_val) + print("-> Valeurs min/max sauvegardées dans min_max_values.npz") + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data +# REMPLACEZ l'ancienne fonction MinMaxScaler par celle-ci : +def MinMaxScaler(data): + """Min Max normalizer. + + MODIFIÉ pour retourner les données normalisées AINSI QUE les valeurs min et max. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + - min_val: minimum values + - max_val: maximum values + """ + min_val = np.min(data, 0) + max_val = np.max(data, 0) + + numerator = data - min_val + denominator = max_val - min_val + norm_data = numerator / (denominator + 1e-7) + + return norm_data, min_val, max_val + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +def real_data_loading (data_name, seq_len): + """Load and preprocess real-world datasets. + + Args: + - data_name: stock, energy, or transaction + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # Allow all valid dataset names + assert data_name in ['stock', 'energy', 'transaction'] + + # Call the correct function for your special case + if data_name == 'transaction': + return transaction_data_loading(seq_len) + + # Original logic for the other datasets + if data_name == 'stock': + ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) + elif data_name == 'energy': + ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + + # Flip the data to make chronological data + ori_data = ori_data[::-1] + # Normalize the data + ori_data = MinMaxScaler(ori_data) + + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_loading_20250805011554.py b/.history/data_loading_20250805011554.py new file mode 100644 index 00000000..dfbaf9b3 --- /dev/null +++ b/.history/data_loading_20250805011554.py @@ -0,0 +1,214 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Sauvegarder les valeurs min et max dans un fichier .npz (format compressé de NumPy) + # Nous les chargerons plus tard dans notre autre script. + np.savez('min_max_values.npz', min_val=min_val, max_val=max_val) + print("-> Valeurs min/max sauvegardées dans min_max_values.npz") + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data +# REMPLACEZ l'ancienne fonction MinMaxScaler par celle-ci : +def MinMaxScaler(data): + """Min Max normalizer. + + MODIFIÉ pour retourner les données normalisées AINSI QUE les valeurs min et max. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + - min_val: minimum values + - max_val: maximum values + """ + min_val = np.min(data, 0) + max_val = np.max(data, 0) + + numerator = data - min_val + denominator = max_val - min_val + norm_data = numerator / (denominator + 1e-7) + + return norm_data, min_val, max_val + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +# def real_data_loading (data_name, seq_len): +# """Load and preprocess real-world datasets. + +# Args: +# - data_name: stock, energy, or transaction +# - seq_len: sequence length + +# Returns: +# - data: preprocessed data. +# """ +# # Allow all valid dataset names +# assert data_name in ['stock', 'energy', 'transaction'] + +# # Call the correct function for your special case +# if data_name == 'transaction': +# return transaction_data_loading(seq_len) + +# # Original logic for the other datasets +# if data_name == 'stock': +# ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) +# elif data_name == 'energy': +# ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + +# # Flip the data to make chronological data +# ori_data = ori_data[::-1] +# # Normalize the data +# ori_data = MinMaxScaler(ori_data) + +# # Preprocess the dataset +# temp_data = [] +# # Cut data by sequence length +# for i in range(0, len(ori_data) - seq_len): +# _x = ori_data[i:i + seq_len] +# temp_data.append(_x) + +# # Mix the datasets (to make it similar to i.i.d) +# idx = np.random.permutation(len(temp_data)) +# data = [] +# for i in range(len(temp_data)): +# data.append(temp_data[idx[i]]) + +# return data \ No newline at end of file diff --git a/.history/data_loading_20250805011557.py b/.history/data_loading_20250805011557.py new file mode 100644 index 00000000..18497e0f --- /dev/null +++ b/.history/data_loading_20250805011557.py @@ -0,0 +1,249 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +data_loading.py + +(0) MinMaxScaler: Min Max normalizer +(1) sine_data_generation: Generate sine dataset +(2) real_data_loading: Load and preprocess real data + - stock_data: https://finance.yahoo.com/quote/GOOG/history?p=GOOG + - energy_data: http://archive.ics.uci.edu/ml/datasets/Appliances+energy+prediction +""" + +## Necessary Packages +import numpy as np +import pandas as pd + +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. + + Args: + - seq_len: sequence length + + Returns: + - data: preprocessed data. + """ + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Sauvegarder les valeurs min et max dans un fichier .npz (format compressé de NumPy) + # Nous les chargerons plus tard dans notre autre script. + np.savez('min_max_values.npz', min_val=min_val, max_val=max_val) + print("-> Valeurs min/max sauvegardées dans min_max_values.npz") + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data +# REMPLACEZ l'ancienne fonction MinMaxScaler par celle-ci : +def MinMaxScaler(data): + """Min Max normalizer. + + MODIFIÉ pour retourner les données normalisées AINSI QUE les valeurs min et max. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + - min_val: minimum values + - max_val: maximum values + """ + min_val = np.min(data, 0) + max_val = np.max(data, 0) + + numerator = data - min_val + denominator = max_val - min_val + norm_data = numerator / (denominator + 1e-7) + + return norm_data, min_val, max_val + +def sine_data_generation (no, seq_len, dim): + """Sine data generation. + + Args: + - no: the number of samples + - seq_len: sequence length of the time-series + - dim: feature dimensions + + Returns: + - data: generated data + """ + # Initialize the output + data = list() + + # Generate sine data + for i in range(no): + # Initialize each time-series + temp = list() + # For each feature + for k in range(dim): + # Randomly drawn frequency and phase + freq = np.random.uniform(0, 0.1) + phase = np.random.uniform(0, 0.1) + + # Generate sine signal based on the drawn frequency and phase + temp_data = [np.sin(freq * j + phase) for j in range(seq_len)] + temp.append(temp_data) + + # Align row/column + temp = np.transpose(np.asarray(temp)) + # Normalize to [0,1] + temp = (temp + 1)*0.5 + # Stack the generated data + data.append(temp) + + return data + + +# def real_data_loading (data_name, seq_len): +# """Load and preprocess real-world datasets. + +# Args: +# - data_name: stock, energy, or transaction +# - seq_len: sequence length + +# Returns: +# - data: preprocessed data. +# """ +# # Allow all valid dataset names +# assert data_name in ['stock', 'energy', 'transaction'] + +# # Call the correct function for your special case +# if data_name == 'transaction': +# return transaction_data_loading(seq_len) + +# # Original logic for the other datasets +# if data_name == 'stock': +# ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) +# elif data_name == 'energy': +# ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) + +# # Flip the data to make chronological data +# ori_data = ori_data[::-1] +# # Normalize the data +# ori_data = MinMaxScaler(ori_data) + +# # Preprocess the dataset +# temp_data = [] +# # Cut data by sequence length +# for i in range(0, len(ori_data) - seq_len): +# _x = ori_data[i:i + seq_len] +# temp_data.append(_x) + +# # Mix the datasets (to make it similar to i.i.d) +# idx = np.random.permutation(len(temp_data)) +# data = [] +# for i in range(len(temp_data)): +# data.append(temp_data[idx[i]]) + +# return data + +def real_data_loading(data_name, seq_len): + """ + Loads data for a SINGLE city, scales it, and saves the scaler. + """ + # The data_name will now be something like "Beirut" or "Tripoli" + file_name = f'data/{data_name}_data.csv' + + try: + df = pd.read_csv(file_name) + except FileNotFoundError: + print(f"Error: {file_name} not found.") + return None + + ori_data = df.values + + # Normalize and get min/max values + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Save the city-specific scaler values + np.savez(f'min_max_{data_name}.npz', min_val=min_val, max_val=max_val) + print(f"-> Min/max values saved to min_max_{data_name}.npz") + + # Prepare sequences (this part is the same as before) + temp_data = [] + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/.history/data_prep_20250805011221.py b/.history/data_prep_20250805011221.py new file mode 100644 index 00000000..e69de29b diff --git a/.history/data_prep_20250805011225.py b/.history/data_prep_20250805011225.py new file mode 100644 index 00000000..2aa0b5fe --- /dev/null +++ b/.history/data_prep_20250805011225.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('agg_trans_rows.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/data_prep_20250805011240.py b/.history/data_prep_20250805011240.py new file mode 100644 index 00000000..bcd60049 --- /dev/null +++ b/.history/data_prep_20250805011240.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('transactions.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/data_prep_20250805011242.py b/.history/data_prep_20250805011242.py new file mode 100644 index 00000000..4ad88164 --- /dev/null +++ b/.history/data_prep_20250805011242.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('transaction_data.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/data_prep_20250805011254.py b/.history/data_prep_20250805011254.py new file mode 100644 index 00000000..c79ed088 --- /dev/null +++ b/.history/data_prep_20250805011254.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('transaction.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/data_prep_20250805011329.py b/.history/data_prep_20250805011329.py new file mode 100644 index 00000000..4ad88164 --- /dev/null +++ b/.history/data_prep_20250805011329.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('transaction_data.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/data_prep_20250805011455.py b/.history/data_prep_20250805011455.py new file mode 100644 index 00000000..7c3c1b90 --- /dev/null +++ b/.history/data_prep_20250805011455.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('data/transaction_data.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/.history/final_usable_synthetic_data_20250722175139.csv b/.history/final_usable_synthetic_data_20250722175139.csv new file mode 100644 index 00000000..df99e46b --- /dev/null +++ b/.history/final_usable_synthetic_data_20250722175139.csv @@ -0,0 +1,361 @@ +date,transaction_number,transaction_value,city +2017-01-31,343.1675497189053,33.173469365619525,Tripoli +2017-02-28,291.5028043604319,52.39772192771157,Tripoli +2017-03-31,657.2740786139133,92.55489595709969,Tripoli +2017-04-30,515.4489586177547,57.96842636878188,Tripoli +2017-05-31,599.1612352816448,39.93153117924728,Tripoli +2017-06-30,626.2087574975601,37.241763472360034,Tripoli +2017-07-31,669.2142624019567,37.55897456954616,Tripoli +2017-08-31,698.978390728094,37.75919384212537,Tripoli +2017-09-30,718.4043735601983,37.652540182323094,Tripoli +2017-10-31,729.9089071486083,37.51208733725056,Tripoli +2017-11-30,735.6867961914618,37.359329639456064,Tripoli +2017-12-31,733.1251471074766,36.9763302207861,Tripoli +2018-01-31,466.049407168594,30.24550616459809,Beirut +2018-02-28,1113.2805790179855,62.00027583393853,Beirut +2018-03-31,662.2225553156832,79.78188448920743,Beirut +2018-04-30,326.77837913252125,50.71204412639116,Kesrouan +2018-05-31,387.43847702706233,76.47379358196179,Kesrouan +2018-06-30,377.41960202461604,79.90220053852424,Kesrouan +2018-07-31,388.97710745292846,85.06634011455188,Kesrouan +2018-08-31,368.7481981996921,85.04000738164049,Kesrouan +2018-09-30,333.3493343491337,83.8666604849546,Kesrouan +2018-10-31,295.635759434571,81.85686207226047,Kesrouan +2018-11-30,259.2472002436589,77.27917839060261,Kesrouan +2018-12-31,224.77232074183615,67.15982067005302,Kesrouan +2019-01-31,384.05763571240954,80.5344820018006,Kesrouan +2019-02-28,627.1623225884153,123.51195612197239,Kesrouan +2019-03-31,644.3389454850906,113.68406851250454,Kesrouan +2019-04-30,697.8224386619589,116.93242780087915,Kesrouan +2019-05-31,707.5287366254146,120.33570292246212,Kesrouan +2019-06-30,708.1829676372552,120.9388843662885,Kesrouan +2019-07-31,703.0470022901777,119.1146159819058,Kesrouan +2019-08-31,692.5870791424555,115.41776482678092,Kesrouan +2019-09-30,681.9737103932766,111.73694304839854,Kesrouan +2019-10-31,662.7868205668195,106.92652882841233,Kesrouan +2019-11-30,621.9187581915359,100.00434429743211,Kesrouan +2019-12-31,558.8150462910535,92.78097804600827,Kesrouan +2020-01-31,1769.9778762360575,255.54081548032485,Baabda +2020-02-29,1397.9611069018868,278.4709346341896,Baabda +2020-03-31,1520.3053289656075,195.8175158732611,Baabda +2020-04-30,1415.2256083536179,215.2950534730657,Baabda +2020-05-31,1487.9671722668122,209.43940554010848,Baabda +2020-06-30,1485.1025185007754,213.19654525227563,Baabda +2020-07-31,1491.667571963486,212.3366501201196,Baabda +2020-08-31,1502.4971464287892,213.0361470589437,Baabda +2020-09-30,1506.7000588784517,214.65664568990516,Baabda +2020-10-31,1512.6812705404966,215.2365749650801,Baabda +2020-11-30,1518.9803132419568,216.63784880836704,Baabda +2020-12-31,1522.7593070271819,217.82007190715788,Baabda +2021-01-31,490.3534774912931,287.0328321630408,Bekaa +2021-02-28,474.2447841604804,262.05638293330884,Bekaa +2021-03-31,519.0586008550301,289.9687143286853,Bekaa +2021-04-30,521.5794414699599,331.4494519221473,Bekaa +2021-05-31,519.1061027766818,338.6686585416043,Bekaa +2021-06-30,522.9944949269229,340.22759810032017,Bekaa +2021-07-31,526.4149211762851,341.2286944632164,Bekaa +2021-08-31,528.9310835716583,341.5686355995184,Bekaa +2021-09-30,531.1471201893225,341.93182890447173,Bekaa +2021-10-31,533.0887972231433,342.50429172728786,Bekaa +2021-11-30,534.9911052400801,342.3594181854807,Bekaa +2021-12-31,536.7134817356084,342.3408651826495,Bekaa +2022-01-31,1102.3871648488866,195.73152113875014,Baabda +2022-02-28,1845.6419598925731,266.9640524814568,Baabda +2022-03-31,1476.1646720789502,232.479067470539,Baabda +2022-04-30,1546.0644695156311,196.50517787594526,Baabda +2022-05-31,1544.368075131794,213.0956698260005,Baabda +2022-06-30,1509.5320370802008,217.37114493246133,Baabda +2022-07-31,1507.613247335903,217.32554561968686,Baabda +2022-08-31,1505.14717787609,218.55568280552663,Baabda +2022-09-30,1503.952576519156,217.76545715773563,Baabda +2022-10-31,1509.2406919607365,217.49485482375945,Baabda +2022-11-30,1509.5553562053751,217.55261975471308,Baabda +2022-12-31,1512.1466580040885,217.8884360676839,Baabda +2023-01-31,372.1623628321094,78.02055011818068,Kesrouan +2023-02-28,586.075823346142,112.45112923149046,Kesrouan +2023-03-31,615.0540107867679,108.01779696210416,Kesrouan +2023-04-30,668.9468841611441,110.37818795362617,Kesrouan +2023-05-31,691.7803381730696,115.08339307219185,Kesrouan +2023-06-30,695.3686765182102,116.59951800898976,Kesrouan +2023-07-31,686.0208741180081,114.06999185657374,Kesrouan +2023-08-31,671.6056242940812,109.99579768608109,Kesrouan +2023-09-30,653.8257269924284,105.7526772065087,Kesrouan +2023-10-31,624.6611304956234,100.74387116731774,Kesrouan +2023-11-30,583.268747666956,95.45748366269167,Kesrouan +2023-12-31,540.1032476537227,90.96575990690903,Kesrouan +2024-01-31,337.0208730297736,33.469064300032386,Tripoli +2024-02-29,859.4660800973261,170.2407046991949,Bekaa +2024-03-31,416.1600821181601,212.3077241438482,Bekaa +2024-04-30,373.70747079274656,289.56488194154554,Bekaa +2024-05-31,458.5995224562064,294.646594668222,Bekaa +2024-06-30,460.1706125285346,306.76161849536925,Bekaa +2024-07-31,459.95145593545953,320.85314627515805,Bekaa +2024-08-31,465.8427738094088,327.2384076003776,Bekaa +2024-09-30,473.3165534278394,330.82244396718033,Bekaa +2024-10-31,480.66488478954415,332.7227866248979,Bekaa +2024-11-30,487.1892017558076,334.2853810903629,Bekaa +2024-12-31,493.1049903166684,335.2495106821396,Bekaa +2025-01-31,981.3085091341433,54.87886407649671,Beirut +2025-02-28,835.9468710710097,62.33436911944192,Beirut +2025-03-31,350.3027701866542,61.61783335343989,Kesrouan +2025-04-30,409.59646810762086,78.54003419745268,Kesrouan +2025-05-31,413.29816331124874,84.91779426167773,Kesrouan +2025-06-30,420.70421670502117,87.68410615848191,Kesrouan +2025-07-31,409.1477908658372,87.03461182484907,Kesrouan +2025-08-31,376.90780480512245,85.32696977439838,Kesrouan +2025-09-30,368.52637862009993,84.08257845223709,Kesrouan +2025-10-31,343.8334402933332,82.88117579517241,Kesrouan +2025-11-30,325.9495425723062,81.49412127957127,Kesrouan +2025-12-31,314.55642258195246,79.69383604518985,Kesrouan +2026-01-31,371.8687145891713,28.541118721585857,Beirut +2026-02-28,375.1960802556614,28.838610726644674,Beirut +2026-03-31,541.1520325057074,37.44220900107136,Beirut +2026-04-30,563.5602003736321,36.86682225285598,Beirut +2026-05-31,525.2622798501441,33.212750911013416,Beirut +2026-06-30,479.37592734278377,32.01965011356449,Beirut +2026-07-31,440.326396868069,31.967315329780988,Beirut +2026-08-31,418.1047820015404,32.598500321032624,Beirut +2026-09-30,372.4193770172891,32.63318712651336,Beirut +2026-10-31,288.0436568476624,33.93370737375007,Beirut +2026-11-30,194.95795553492184,38.1171310430872,Beirut +2026-12-31,171.0713263418897,43.651651907341474,Beirut +2027-01-31,534.3687580938333,387.6662688027607,Bekaa +2027-02-28,513.1129436616155,288.31189288636494,Bekaa +2027-03-31,529.3388083991695,348.8339636612855,Bekaa +2027-04-30,514.1163857702049,386.20273971451417,Bekaa +2027-05-31,527.4533419726366,391.5275907615951,Bekaa +2027-06-30,537.8412925117955,392.79358084221167,Bekaa +2027-07-31,544.9990404060245,392.7099704992466,Bekaa +2027-08-31,549.8993674326657,392.2311777151146,Bekaa +2027-09-30,553.6437423931717,391.02808683921813,Bekaa +2027-10-31,556.4268511937059,389.64096270634565,Bekaa +2027-11-30,558.4393492743532,388.9841237505789,Bekaa +2027-12-31,560.5279224022518,388.06921356969,Bekaa +2028-01-31,1035.2858783509728,147.43276385665723,Kesrouan +2028-02-29,532.2620478685765,104.05728779582638,Kesrouan +2028-03-31,598.0729374675591,95.94130629468319,Kesrouan +2028-04-30,599.5655054239448,95.24943244707865,Kesrouan +2028-05-31,584.1546585057617,93.69240736332652,Kesrouan +2028-06-30,543.488983105758,90.07237886720418,Kesrouan +2028-07-31,489.8486616148302,85.81345526702135,Kesrouan +2028-08-31,423.6248651605201,81.69806507617102,Kesrouan +2028-09-30,331.7650732894384,79.66071562831586,Kesrouan +2028-10-31,203.84146263728178,83.98288651957593,Kesrouan +2028-11-30,144.39655026572353,72.34030290054447,Kesrouan +2028-12-31,345.03747006198864,56.55653589160475,Beirut +2029-01-31,1357.421671457303,227.2214667076415,Baabda +2029-02-28,1521.7046204212952,260.503117182213,Baabda +2029-03-31,1510.9284496315458,215.86201653144033,Baabda +2029-04-30,1414.487889115844,216.3829277647762,Baabda +2029-05-31,1471.942902805844,216.7744901078298,Baabda +2029-06-30,1423.8377067490856,220.92079036718675,Baabda +2029-07-31,1450.0872686538596,215.34138376719002,Baabda +2029-08-31,1441.1114206947127,218.35501102068324,Baabda +2029-09-30,1453.9818504484372,215.15759417066386,Baabda +2029-10-31,1450.2634575996226,216.33407384456328,Baabda +2029-11-30,1464.2552205947632,214.38357194279388,Baabda +2029-12-31,1466.6006639626241,214.88537323512736,Baabda +2030-01-31,383.449395197441,33.58863196368149,Tripoli +2030-02-28,512.8105867330412,34.07569179879367,Tripoli +2030-03-31,533.7758477444886,34.840803015922994,Tripoli +2030-04-30,455.2959077505421,32.129471359216026,Tripoli +2030-05-31,337.4370186524866,30.476496271141137,Tripoli +2030-06-30,282.6608974258214,31.295352021800117,Tripoli +2030-07-31,307.06968789398036,41.63081915712863,Tripoli +2030-08-31,804.4257474246251,104.10198208407252,Bekaa +2030-09-30,654.3084472780624,212.3490942073844,Bekaa +2030-10-31,437.20429708120145,186.52484584640425,Bekaa +2030-11-30,416.9769712253535,191.88224296786993,Bekaa +2030-12-31,419.2591506702873,202.8109014685773,Bekaa +2031-01-31,824.2140403682369,38.090241372004535,Beirut +2031-02-28,334.1405292350702,24.03089417592564,Beirut +2031-03-31,409.51096464864764,31.262736330143852,Beirut +2031-04-30,394.55412094528174,33.99521423304207,Beirut +2031-05-31,217.72577052783726,34.940129457909265,Beirut +2031-06-30,169.5513368216412,46.41643222417453,Beirut +2031-07-31,223.1925939564803,49.67375473624341,Beirut +2031-08-31,324.4149426125195,44.481315739387014,Tripoli +2031-09-30,585.5095428619659,41.214037957506335,Tripoli +2031-10-31,666.5674697220413,36.0180658841258,Tripoli +2031-11-30,636.6953105104507,33.96171092117532,Tripoli +2031-12-31,628.0052657799089,34.08495089589136,Tripoli +2032-01-31,654.0718733137148,114.82513039957338,Kesrouan +2032-02-29,124.70592415193202,112.35497037535339,Kesrouan +2032-03-31,396.6535619370734,53.98854619673388,Kesrouan +2032-04-30,461.7427102173829,84.09096733344215,Kesrouan +2032-05-31,433.3016543544648,81.2567089797405,Kesrouan +2032-06-30,435.8360977924131,82.93077810105305,Kesrouan +2032-07-31,455.612371310395,83.94938320770923,Kesrouan +2032-08-31,471.679032637807,84.82840568518552,Kesrouan +2032-09-30,498.2993254492907,86.43931453701,Kesrouan +2032-10-31,542.6024245134751,89.6414827658032,Kesrouan +2032-11-30,594.7738570362344,94.38224490574233,Kesrouan +2032-12-31,634.59932420387,99.22094114223944,Kesrouan +2033-01-31,982.4387669790214,59.9619865529193,Beirut +2033-02-28,849.2117107196608,221.27775292634882,Kesrouan +2033-03-31,1096.7684072435668,133.6488399905998,Kesrouan +2033-04-30,1366.368154592156,243.63855943892878,Baabda +2033-05-31,1078.6721903272783,255.24523795022978,Baabda +2033-06-30,1144.6052174429924,277.08135649249976,Baabda +2033-07-31,1235.9314763667944,268.46755928781135,Baabda +2033-08-31,1310.5146753879067,262.32298227417886,Baabda +2033-09-30,1383.4930291832743,257.44972106242597,Baabda +2033-10-31,1414.4169241238005,252.3403180660455,Baabda +2033-11-30,1417.21982539169,245.54053810252444,Baabda +2033-12-31,1419.3025687382947,237.86152680971287,Baabda +2034-01-31,521.2322456062504,337.8505859852487,Bekaa +2034-02-28,471.75273258897573,255.4470758243694,Bekaa +2034-03-31,527.9669385073444,299.7218155843394,Bekaa +2034-04-30,518.973889094751,345.06624212386373,Bekaa +2034-05-31,519.0778175415163,352.1484419531831,Bekaa +2034-06-30,524.8696692704311,353.6289228470184,Bekaa +2034-07-31,528.9652705607259,353.90053463143005,Bekaa +2034-08-31,531.8926844414298,354.24465280401665,Bekaa +2034-09-30,534.4354767019713,354.0261241890562,Bekaa +2034-10-31,536.553558599381,354.01216592613827,Bekaa +2034-11-30,538.5084785931774,353.92204636829615,Bekaa +2034-12-31,540.3736487440954,353.7338708836711,Bekaa +2035-01-31,320.0089234614911,27.43357755070161,Beirut +2035-02-28,178.03050180909264,34.84637239763589,Beirut +2035-03-31,221.8560626154597,48.261881663384145,Beirut +2035-04-30,240.9367208716771,46.43909264601893,Beirut +2035-05-31,437.47232307549126,43.36202665395207,Tripoli +2035-06-30,644.4985807308841,36.60187632218197,Tripoli +2035-07-31,597.1124630062818,32.953478787959426,Tripoli +2035-08-31,590.3949715586343,33.50446468254509,Tripoli +2035-09-30,617.5735558947435,35.08954552667599,Tripoli +2035-10-31,648.4458464749299,36.299685151302825,Tripoli +2035-11-30,676.2115833516984,36.88060647259543,Tripoli +2035-12-31,689.4924728920591,36.57183646956792,Tripoli +2036-01-31,398.92357801116,286.1198190527979,Kesrouan +2036-02-29,524.6726082681848,96.76414763413045,Kesrouan +2036-03-31,827.243943243535,109.79427308966292,Kesrouan +2036-04-30,882.6897695928817,129.57788302322783,Kesrouan +2036-05-31,892.2775286700336,128.9116979487741,Kesrouan +2036-06-30,899.2500910424293,124.13074923891276,Kesrouan +2036-07-31,905.257212843557,119.84415277334391,Kesrouan +2036-08-31,911.8300393479922,117.0224081241784,Kesrouan +2036-09-30,916.1595516161177,115.4253357050469,Kesrouan +2036-10-31,925.0290960324163,113.81954372267116,Kesrouan +2036-11-30,927.7297961961457,113.1446042763374,Kesrouan +2036-12-31,924.0874064219742,113.32618352449624,Kesrouan +2037-01-31,1792.9880949746141,257.1944345281603,Baabda +2037-02-28,1484.5644512791564,271.68032674617695,Baabda +2037-03-31,1516.390594840632,198.9848754663486,Baabda +2037-04-30,1432.4122354428835,214.04305646400277,Baabda +2037-05-31,1498.14928114548,210.4049100729956,Baabda +2037-06-30,1497.4016296877244,212.24800992929502,Baabda +2037-07-31,1494.6722844257868,213.4329306973531,Baabda +2037-08-31,1504.426444173937,213.26536192506583,Baabda +2037-09-30,1504.0048286329732,215.31092621094754,Baabda +2037-10-31,1504.4031250487626,215.77727490781476,Baabda +2037-11-30,1498.687204421882,217.38571234650422,Baabda +2037-12-31,1493.4104606524547,218.2136705554002,Baabda +2038-01-31,1312.511627385104,222.357864892297,Baabda +2038-02-28,1423.1463378712267,337.5919578219553,Baabda +2038-03-31,1514.6147426969412,360.9051112031256,Baabda +2038-04-30,1555.1528826345707,430.4166687879063,Baabda +2038-05-31,1566.2667489036992,455.61450094072654,Baabda +2038-06-30,1176.000892832651,299.14547159864213,Baabda +2038-07-31,505.08346353246753,68.22040499137029,Baabda +2038-08-31,590.086856821375,79.41129434916661,Kesrouan +2038-09-30,597.9780775694726,94.93107266491421,Kesrouan +2038-10-31,562.0825307472192,89.76928267179673,Kesrouan +2038-11-30,425.5810086886622,80.8224538449939,Kesrouan +2038-12-31,181.64359873157895,88.57346680076276,Kesrouan +2039-01-31,518.4118549944801,331.08100251320235,Bekaa +2039-02-28,487.3270293012064,266.78266468079437,Bekaa +2039-03-31,525.6592807589792,301.08010076252975,Bekaa +2039-04-30,519.1292779566393,337.0206436841175,Bekaa +2039-05-31,519.3861481966015,343.21445751295573,Bekaa +2039-06-30,523.6179936349067,344.8472609966392,Bekaa +2039-07-31,527.0727508185539,345.37227964898835,Bekaa +2039-08-31,529.6467072186033,345.50765043324793,Bekaa +2039-09-30,531.8556185480197,345.558262189564,Bekaa +2039-10-31,533.8021177466144,345.5211909925374,Bekaa +2039-11-30,535.6060392076448,345.3614541632839,Bekaa +2039-12-31,537.3026495093077,345.13255257488316,Bekaa +2040-01-31,977.2292456259925,66.65888959361214,Beirut +2040-02-29,399.2393218449272,59.94033558151031,Kesrouan +2040-03-31,513.703550887486,103.25251213831041,Kesrouan +2040-04-30,655.5838738744126,118.6481454548136,Kesrouan +2040-05-31,755.1481175743704,144.86475675746854,Kesrouan +2040-06-30,817.1041542587025,169.83215574191703,Kesrouan +2040-07-31,884.020543125217,167.53809260573223,Kesrouan +2040-08-31,1018.6892107341008,127.8746790738296,Kesrouan +2040-09-30,1294.7906756498646,164.18960627675008,Kesrouan +2040-10-31,1380.1769632163287,275.7612389833607,Baabda +2040-11-30,1161.563547417895,268.70437984083514,Baabda +2040-12-31,1166.1428046377355,286.23186805113454,Baabda +2041-01-31,454.67787896080904,75.10727616142705,Kesrouan +2041-02-28,252.23426123785885,64.6345933841466,Beirut +2041-03-31,526.5393618164915,25.207095380739442,Beirut +2041-04-30,617.6874165614905,35.93452515843212,Beirut +2041-05-31,578.9925671017759,33.09549802163875,Beirut +2041-06-30,494.3380970191834,29.976087324235856,Beirut +2041-07-31,385.11664067481,28.747255462235056,Beirut +2041-08-31,204.20204540618403,33.991141622664514,Beirut +2041-09-30,171.1905849542789,46.63913787541969,Beirut +2041-10-31,242.24439119666374,48.09304237589362,Beirut +2041-11-30,417.50474636394824,42.20155895247727,Tripoli +2041-12-31,654.6099405353342,37.06777250678503,Tripoli +2042-01-31,530.9954739030796,370.36728188155143,Bekaa +2042-02-28,496.59155939330043,273.5320765484493,Bekaa +2042-03-31,532.24585403165,321.08678183801476,Bekaa +2042-04-30,515.6456597569581,359.3149831068174,Bekaa +2042-05-31,521.5012792170601,365.17230185428855,Bekaa +2042-06-30,528.4109375295714,366.2819315433152,Bekaa +2042-07-31,533.2893129106008,365.8539941759492,Bekaa +2042-08-31,536.6102730149287,365.49302862368097,Bekaa +2042-09-30,539.1553683989443,365.60768826969553,Bekaa +2042-10-31,541.5088007263557,365.4209747477702,Bekaa +2042-11-30,543.6929534784263,364.97709502525095,Bekaa +2042-12-31,545.6660105695806,364.5879692866968,Bekaa +2043-01-31,418.84660367800245,28.530241022927832,Beirut +2043-02-28,461.1374925519743,45.33783443387956,Tripoli +2043-03-31,578.6559512115252,43.726890773419335,Tripoli +2043-04-30,610.2440093838736,43.08947503637641,Tripoli +2043-05-31,704.0472056313818,40.88551405371585,Tripoli +2043-06-30,722.547116909102,37.91233443491269,Tripoli +2043-07-31,692.2933589269088,35.768035453851695,Tripoli +2043-08-31,662.3939220966724,34.732948458188865,Tripoli +2043-09-30,644.0232736239319,34.442435584589035,Tripoli +2043-10-31,644.5023233065293,34.84799099919621,Tripoli +2043-11-30,644.9257381627071,34.96719317217044,Tripoli +2043-12-31,651.7116755610982,35.21304656615986,Tripoli +2044-01-31,1630.1915243226715,247.01320445764378,Baabda +2044-02-29,1422.826491598771,279.07773617612935,Baabda +2044-03-31,1485.4478430766621,199.77581469117155,Baabda +2044-04-30,1421.6966655895446,213.0748368575306,Baabda +2044-05-31,1490.106486083748,210.05207233716465,Baabda +2044-06-30,1483.8133451361898,214.55942517037911,Baabda +2044-07-31,1498.81905824077,212.75837414601213,Baabda +2044-08-31,1505.1280331622122,215.20563008793778,Baabda +2044-09-30,1504.6917352091014,216.88364998940287,Baabda +2044-10-31,1512.5547426946423,217.39432748384132,Baabda +2044-11-30,1515.9059312945667,218.8334209098225,Baabda +2044-12-31,1526.8795949222138,219.26288985715954,Baabda +2045-01-31,318.3424696828165,74.4065087073997,Bekaa +2045-02-28,343.7529749169593,293.24401550109616,Bekaa +2045-03-31,515.6223406317838,241.16963512127637,Bekaa +2045-04-30,510.121834022333,300.2946613021483,Bekaa +2045-05-31,528.6560042617295,314.2331355107391,Bekaa +2045-06-30,517.5522141578,320.6038816348695,Bekaa +2045-07-31,521.7631875396219,322.80584112097694,Bekaa +2045-08-31,524.425670248204,324.176814046882,Bekaa +2045-09-30,527.4238332031258,325.1285169557118,Bekaa +2045-10-31,530.2159385797304,325.9198564798454,Bekaa +2045-11-30,532.8725195344106,326.5557406369173,Bekaa +2045-12-31,535.3932881767316,327.06680102634857,Bekaa +2046-01-31,366.35856365017327,76.2878458500219,Kesrouan +2046-02-28,925.4484804225149,194.70421387316753,Kesrouan +2046-03-31,1023.1472660811204,165.68542037461367,Kesrouan +2046-04-30,1291.567670265791,191.80552473477456,Kesrouan +2046-05-31,1570.28238862588,257.44354252958817,Baabda +2046-06-30,1385.9377947509524,263.58731894459953,Baabda +2046-07-31,1457.8741291195408,247.27961235101742,Baabda +2046-08-31,1443.6507582700433,246.24228019835158,Baabda +2046-09-30,1446.782718304284,244.185698979269,Baabda +2046-10-31,1442.8201943672227,245.1831404354161,Baabda +2046-11-30,1432.0199847262134,244.3650678790605,Baabda +2046-12-31,1437.5644665994962,239.32178388620306,Baabda diff --git a/.history/final_usable_synthetic_data_20250722175933.csv b/.history/final_usable_synthetic_data_20250722175933.csv new file mode 100644 index 00000000..df99e46b --- /dev/null +++ b/.history/final_usable_synthetic_data_20250722175933.csv @@ -0,0 +1,361 @@ +date,transaction_number,transaction_value,city +2017-01-31,343.1675497189053,33.173469365619525,Tripoli +2017-02-28,291.5028043604319,52.39772192771157,Tripoli +2017-03-31,657.2740786139133,92.55489595709969,Tripoli +2017-04-30,515.4489586177547,57.96842636878188,Tripoli +2017-05-31,599.1612352816448,39.93153117924728,Tripoli +2017-06-30,626.2087574975601,37.241763472360034,Tripoli +2017-07-31,669.2142624019567,37.55897456954616,Tripoli +2017-08-31,698.978390728094,37.75919384212537,Tripoli +2017-09-30,718.4043735601983,37.652540182323094,Tripoli +2017-10-31,729.9089071486083,37.51208733725056,Tripoli +2017-11-30,735.6867961914618,37.359329639456064,Tripoli +2017-12-31,733.1251471074766,36.9763302207861,Tripoli +2018-01-31,466.049407168594,30.24550616459809,Beirut +2018-02-28,1113.2805790179855,62.00027583393853,Beirut +2018-03-31,662.2225553156832,79.78188448920743,Beirut +2018-04-30,326.77837913252125,50.71204412639116,Kesrouan +2018-05-31,387.43847702706233,76.47379358196179,Kesrouan +2018-06-30,377.41960202461604,79.90220053852424,Kesrouan +2018-07-31,388.97710745292846,85.06634011455188,Kesrouan +2018-08-31,368.7481981996921,85.04000738164049,Kesrouan +2018-09-30,333.3493343491337,83.8666604849546,Kesrouan +2018-10-31,295.635759434571,81.85686207226047,Kesrouan +2018-11-30,259.2472002436589,77.27917839060261,Kesrouan +2018-12-31,224.77232074183615,67.15982067005302,Kesrouan +2019-01-31,384.05763571240954,80.5344820018006,Kesrouan +2019-02-28,627.1623225884153,123.51195612197239,Kesrouan +2019-03-31,644.3389454850906,113.68406851250454,Kesrouan +2019-04-30,697.8224386619589,116.93242780087915,Kesrouan +2019-05-31,707.5287366254146,120.33570292246212,Kesrouan +2019-06-30,708.1829676372552,120.9388843662885,Kesrouan +2019-07-31,703.0470022901777,119.1146159819058,Kesrouan +2019-08-31,692.5870791424555,115.41776482678092,Kesrouan +2019-09-30,681.9737103932766,111.73694304839854,Kesrouan +2019-10-31,662.7868205668195,106.92652882841233,Kesrouan +2019-11-30,621.9187581915359,100.00434429743211,Kesrouan +2019-12-31,558.8150462910535,92.78097804600827,Kesrouan +2020-01-31,1769.9778762360575,255.54081548032485,Baabda +2020-02-29,1397.9611069018868,278.4709346341896,Baabda +2020-03-31,1520.3053289656075,195.8175158732611,Baabda +2020-04-30,1415.2256083536179,215.2950534730657,Baabda +2020-05-31,1487.9671722668122,209.43940554010848,Baabda +2020-06-30,1485.1025185007754,213.19654525227563,Baabda +2020-07-31,1491.667571963486,212.3366501201196,Baabda +2020-08-31,1502.4971464287892,213.0361470589437,Baabda +2020-09-30,1506.7000588784517,214.65664568990516,Baabda +2020-10-31,1512.6812705404966,215.2365749650801,Baabda +2020-11-30,1518.9803132419568,216.63784880836704,Baabda +2020-12-31,1522.7593070271819,217.82007190715788,Baabda +2021-01-31,490.3534774912931,287.0328321630408,Bekaa +2021-02-28,474.2447841604804,262.05638293330884,Bekaa +2021-03-31,519.0586008550301,289.9687143286853,Bekaa +2021-04-30,521.5794414699599,331.4494519221473,Bekaa +2021-05-31,519.1061027766818,338.6686585416043,Bekaa +2021-06-30,522.9944949269229,340.22759810032017,Bekaa +2021-07-31,526.4149211762851,341.2286944632164,Bekaa +2021-08-31,528.9310835716583,341.5686355995184,Bekaa +2021-09-30,531.1471201893225,341.93182890447173,Bekaa +2021-10-31,533.0887972231433,342.50429172728786,Bekaa +2021-11-30,534.9911052400801,342.3594181854807,Bekaa +2021-12-31,536.7134817356084,342.3408651826495,Bekaa +2022-01-31,1102.3871648488866,195.73152113875014,Baabda +2022-02-28,1845.6419598925731,266.9640524814568,Baabda +2022-03-31,1476.1646720789502,232.479067470539,Baabda +2022-04-30,1546.0644695156311,196.50517787594526,Baabda +2022-05-31,1544.368075131794,213.0956698260005,Baabda +2022-06-30,1509.5320370802008,217.37114493246133,Baabda +2022-07-31,1507.613247335903,217.32554561968686,Baabda +2022-08-31,1505.14717787609,218.55568280552663,Baabda +2022-09-30,1503.952576519156,217.76545715773563,Baabda +2022-10-31,1509.2406919607365,217.49485482375945,Baabda +2022-11-30,1509.5553562053751,217.55261975471308,Baabda +2022-12-31,1512.1466580040885,217.8884360676839,Baabda +2023-01-31,372.1623628321094,78.02055011818068,Kesrouan +2023-02-28,586.075823346142,112.45112923149046,Kesrouan +2023-03-31,615.0540107867679,108.01779696210416,Kesrouan +2023-04-30,668.9468841611441,110.37818795362617,Kesrouan +2023-05-31,691.7803381730696,115.08339307219185,Kesrouan +2023-06-30,695.3686765182102,116.59951800898976,Kesrouan +2023-07-31,686.0208741180081,114.06999185657374,Kesrouan +2023-08-31,671.6056242940812,109.99579768608109,Kesrouan +2023-09-30,653.8257269924284,105.7526772065087,Kesrouan +2023-10-31,624.6611304956234,100.74387116731774,Kesrouan +2023-11-30,583.268747666956,95.45748366269167,Kesrouan +2023-12-31,540.1032476537227,90.96575990690903,Kesrouan +2024-01-31,337.0208730297736,33.469064300032386,Tripoli +2024-02-29,859.4660800973261,170.2407046991949,Bekaa +2024-03-31,416.1600821181601,212.3077241438482,Bekaa +2024-04-30,373.70747079274656,289.56488194154554,Bekaa +2024-05-31,458.5995224562064,294.646594668222,Bekaa +2024-06-30,460.1706125285346,306.76161849536925,Bekaa +2024-07-31,459.95145593545953,320.85314627515805,Bekaa +2024-08-31,465.8427738094088,327.2384076003776,Bekaa +2024-09-30,473.3165534278394,330.82244396718033,Bekaa +2024-10-31,480.66488478954415,332.7227866248979,Bekaa +2024-11-30,487.1892017558076,334.2853810903629,Bekaa +2024-12-31,493.1049903166684,335.2495106821396,Bekaa +2025-01-31,981.3085091341433,54.87886407649671,Beirut +2025-02-28,835.9468710710097,62.33436911944192,Beirut +2025-03-31,350.3027701866542,61.61783335343989,Kesrouan +2025-04-30,409.59646810762086,78.54003419745268,Kesrouan +2025-05-31,413.29816331124874,84.91779426167773,Kesrouan +2025-06-30,420.70421670502117,87.68410615848191,Kesrouan +2025-07-31,409.1477908658372,87.03461182484907,Kesrouan +2025-08-31,376.90780480512245,85.32696977439838,Kesrouan +2025-09-30,368.52637862009993,84.08257845223709,Kesrouan +2025-10-31,343.8334402933332,82.88117579517241,Kesrouan +2025-11-30,325.9495425723062,81.49412127957127,Kesrouan +2025-12-31,314.55642258195246,79.69383604518985,Kesrouan +2026-01-31,371.8687145891713,28.541118721585857,Beirut +2026-02-28,375.1960802556614,28.838610726644674,Beirut +2026-03-31,541.1520325057074,37.44220900107136,Beirut +2026-04-30,563.5602003736321,36.86682225285598,Beirut +2026-05-31,525.2622798501441,33.212750911013416,Beirut +2026-06-30,479.37592734278377,32.01965011356449,Beirut +2026-07-31,440.326396868069,31.967315329780988,Beirut +2026-08-31,418.1047820015404,32.598500321032624,Beirut +2026-09-30,372.4193770172891,32.63318712651336,Beirut +2026-10-31,288.0436568476624,33.93370737375007,Beirut +2026-11-30,194.95795553492184,38.1171310430872,Beirut +2026-12-31,171.0713263418897,43.651651907341474,Beirut +2027-01-31,534.3687580938333,387.6662688027607,Bekaa +2027-02-28,513.1129436616155,288.31189288636494,Bekaa +2027-03-31,529.3388083991695,348.8339636612855,Bekaa +2027-04-30,514.1163857702049,386.20273971451417,Bekaa +2027-05-31,527.4533419726366,391.5275907615951,Bekaa +2027-06-30,537.8412925117955,392.79358084221167,Bekaa +2027-07-31,544.9990404060245,392.7099704992466,Bekaa +2027-08-31,549.8993674326657,392.2311777151146,Bekaa +2027-09-30,553.6437423931717,391.02808683921813,Bekaa +2027-10-31,556.4268511937059,389.64096270634565,Bekaa +2027-11-30,558.4393492743532,388.9841237505789,Bekaa +2027-12-31,560.5279224022518,388.06921356969,Bekaa +2028-01-31,1035.2858783509728,147.43276385665723,Kesrouan +2028-02-29,532.2620478685765,104.05728779582638,Kesrouan +2028-03-31,598.0729374675591,95.94130629468319,Kesrouan +2028-04-30,599.5655054239448,95.24943244707865,Kesrouan +2028-05-31,584.1546585057617,93.69240736332652,Kesrouan +2028-06-30,543.488983105758,90.07237886720418,Kesrouan +2028-07-31,489.8486616148302,85.81345526702135,Kesrouan +2028-08-31,423.6248651605201,81.69806507617102,Kesrouan +2028-09-30,331.7650732894384,79.66071562831586,Kesrouan +2028-10-31,203.84146263728178,83.98288651957593,Kesrouan +2028-11-30,144.39655026572353,72.34030290054447,Kesrouan +2028-12-31,345.03747006198864,56.55653589160475,Beirut +2029-01-31,1357.421671457303,227.2214667076415,Baabda +2029-02-28,1521.7046204212952,260.503117182213,Baabda +2029-03-31,1510.9284496315458,215.86201653144033,Baabda +2029-04-30,1414.487889115844,216.3829277647762,Baabda +2029-05-31,1471.942902805844,216.7744901078298,Baabda +2029-06-30,1423.8377067490856,220.92079036718675,Baabda +2029-07-31,1450.0872686538596,215.34138376719002,Baabda +2029-08-31,1441.1114206947127,218.35501102068324,Baabda +2029-09-30,1453.9818504484372,215.15759417066386,Baabda +2029-10-31,1450.2634575996226,216.33407384456328,Baabda +2029-11-30,1464.2552205947632,214.38357194279388,Baabda +2029-12-31,1466.6006639626241,214.88537323512736,Baabda +2030-01-31,383.449395197441,33.58863196368149,Tripoli +2030-02-28,512.8105867330412,34.07569179879367,Tripoli +2030-03-31,533.7758477444886,34.840803015922994,Tripoli +2030-04-30,455.2959077505421,32.129471359216026,Tripoli +2030-05-31,337.4370186524866,30.476496271141137,Tripoli +2030-06-30,282.6608974258214,31.295352021800117,Tripoli +2030-07-31,307.06968789398036,41.63081915712863,Tripoli +2030-08-31,804.4257474246251,104.10198208407252,Bekaa +2030-09-30,654.3084472780624,212.3490942073844,Bekaa +2030-10-31,437.20429708120145,186.52484584640425,Bekaa +2030-11-30,416.9769712253535,191.88224296786993,Bekaa +2030-12-31,419.2591506702873,202.8109014685773,Bekaa +2031-01-31,824.2140403682369,38.090241372004535,Beirut +2031-02-28,334.1405292350702,24.03089417592564,Beirut +2031-03-31,409.51096464864764,31.262736330143852,Beirut +2031-04-30,394.55412094528174,33.99521423304207,Beirut +2031-05-31,217.72577052783726,34.940129457909265,Beirut +2031-06-30,169.5513368216412,46.41643222417453,Beirut +2031-07-31,223.1925939564803,49.67375473624341,Beirut +2031-08-31,324.4149426125195,44.481315739387014,Tripoli +2031-09-30,585.5095428619659,41.214037957506335,Tripoli +2031-10-31,666.5674697220413,36.0180658841258,Tripoli +2031-11-30,636.6953105104507,33.96171092117532,Tripoli +2031-12-31,628.0052657799089,34.08495089589136,Tripoli +2032-01-31,654.0718733137148,114.82513039957338,Kesrouan +2032-02-29,124.70592415193202,112.35497037535339,Kesrouan +2032-03-31,396.6535619370734,53.98854619673388,Kesrouan +2032-04-30,461.7427102173829,84.09096733344215,Kesrouan +2032-05-31,433.3016543544648,81.2567089797405,Kesrouan +2032-06-30,435.8360977924131,82.93077810105305,Kesrouan +2032-07-31,455.612371310395,83.94938320770923,Kesrouan +2032-08-31,471.679032637807,84.82840568518552,Kesrouan +2032-09-30,498.2993254492907,86.43931453701,Kesrouan +2032-10-31,542.6024245134751,89.6414827658032,Kesrouan +2032-11-30,594.7738570362344,94.38224490574233,Kesrouan +2032-12-31,634.59932420387,99.22094114223944,Kesrouan +2033-01-31,982.4387669790214,59.9619865529193,Beirut +2033-02-28,849.2117107196608,221.27775292634882,Kesrouan +2033-03-31,1096.7684072435668,133.6488399905998,Kesrouan +2033-04-30,1366.368154592156,243.63855943892878,Baabda +2033-05-31,1078.6721903272783,255.24523795022978,Baabda +2033-06-30,1144.6052174429924,277.08135649249976,Baabda +2033-07-31,1235.9314763667944,268.46755928781135,Baabda +2033-08-31,1310.5146753879067,262.32298227417886,Baabda +2033-09-30,1383.4930291832743,257.44972106242597,Baabda +2033-10-31,1414.4169241238005,252.3403180660455,Baabda +2033-11-30,1417.21982539169,245.54053810252444,Baabda +2033-12-31,1419.3025687382947,237.86152680971287,Baabda +2034-01-31,521.2322456062504,337.8505859852487,Bekaa +2034-02-28,471.75273258897573,255.4470758243694,Bekaa +2034-03-31,527.9669385073444,299.7218155843394,Bekaa +2034-04-30,518.973889094751,345.06624212386373,Bekaa +2034-05-31,519.0778175415163,352.1484419531831,Bekaa +2034-06-30,524.8696692704311,353.6289228470184,Bekaa +2034-07-31,528.9652705607259,353.90053463143005,Bekaa +2034-08-31,531.8926844414298,354.24465280401665,Bekaa +2034-09-30,534.4354767019713,354.0261241890562,Bekaa +2034-10-31,536.553558599381,354.01216592613827,Bekaa +2034-11-30,538.5084785931774,353.92204636829615,Bekaa +2034-12-31,540.3736487440954,353.7338708836711,Bekaa +2035-01-31,320.0089234614911,27.43357755070161,Beirut +2035-02-28,178.03050180909264,34.84637239763589,Beirut +2035-03-31,221.8560626154597,48.261881663384145,Beirut +2035-04-30,240.9367208716771,46.43909264601893,Beirut +2035-05-31,437.47232307549126,43.36202665395207,Tripoli +2035-06-30,644.4985807308841,36.60187632218197,Tripoli +2035-07-31,597.1124630062818,32.953478787959426,Tripoli +2035-08-31,590.3949715586343,33.50446468254509,Tripoli +2035-09-30,617.5735558947435,35.08954552667599,Tripoli +2035-10-31,648.4458464749299,36.299685151302825,Tripoli +2035-11-30,676.2115833516984,36.88060647259543,Tripoli +2035-12-31,689.4924728920591,36.57183646956792,Tripoli +2036-01-31,398.92357801116,286.1198190527979,Kesrouan +2036-02-29,524.6726082681848,96.76414763413045,Kesrouan +2036-03-31,827.243943243535,109.79427308966292,Kesrouan +2036-04-30,882.6897695928817,129.57788302322783,Kesrouan +2036-05-31,892.2775286700336,128.9116979487741,Kesrouan +2036-06-30,899.2500910424293,124.13074923891276,Kesrouan +2036-07-31,905.257212843557,119.84415277334391,Kesrouan +2036-08-31,911.8300393479922,117.0224081241784,Kesrouan +2036-09-30,916.1595516161177,115.4253357050469,Kesrouan +2036-10-31,925.0290960324163,113.81954372267116,Kesrouan +2036-11-30,927.7297961961457,113.1446042763374,Kesrouan +2036-12-31,924.0874064219742,113.32618352449624,Kesrouan +2037-01-31,1792.9880949746141,257.1944345281603,Baabda +2037-02-28,1484.5644512791564,271.68032674617695,Baabda +2037-03-31,1516.390594840632,198.9848754663486,Baabda +2037-04-30,1432.4122354428835,214.04305646400277,Baabda +2037-05-31,1498.14928114548,210.4049100729956,Baabda +2037-06-30,1497.4016296877244,212.24800992929502,Baabda +2037-07-31,1494.6722844257868,213.4329306973531,Baabda +2037-08-31,1504.426444173937,213.26536192506583,Baabda +2037-09-30,1504.0048286329732,215.31092621094754,Baabda +2037-10-31,1504.4031250487626,215.77727490781476,Baabda +2037-11-30,1498.687204421882,217.38571234650422,Baabda +2037-12-31,1493.4104606524547,218.2136705554002,Baabda +2038-01-31,1312.511627385104,222.357864892297,Baabda +2038-02-28,1423.1463378712267,337.5919578219553,Baabda +2038-03-31,1514.6147426969412,360.9051112031256,Baabda +2038-04-30,1555.1528826345707,430.4166687879063,Baabda +2038-05-31,1566.2667489036992,455.61450094072654,Baabda +2038-06-30,1176.000892832651,299.14547159864213,Baabda +2038-07-31,505.08346353246753,68.22040499137029,Baabda +2038-08-31,590.086856821375,79.41129434916661,Kesrouan +2038-09-30,597.9780775694726,94.93107266491421,Kesrouan +2038-10-31,562.0825307472192,89.76928267179673,Kesrouan +2038-11-30,425.5810086886622,80.8224538449939,Kesrouan +2038-12-31,181.64359873157895,88.57346680076276,Kesrouan +2039-01-31,518.4118549944801,331.08100251320235,Bekaa +2039-02-28,487.3270293012064,266.78266468079437,Bekaa +2039-03-31,525.6592807589792,301.08010076252975,Bekaa +2039-04-30,519.1292779566393,337.0206436841175,Bekaa +2039-05-31,519.3861481966015,343.21445751295573,Bekaa +2039-06-30,523.6179936349067,344.8472609966392,Bekaa +2039-07-31,527.0727508185539,345.37227964898835,Bekaa +2039-08-31,529.6467072186033,345.50765043324793,Bekaa +2039-09-30,531.8556185480197,345.558262189564,Bekaa +2039-10-31,533.8021177466144,345.5211909925374,Bekaa +2039-11-30,535.6060392076448,345.3614541632839,Bekaa +2039-12-31,537.3026495093077,345.13255257488316,Bekaa +2040-01-31,977.2292456259925,66.65888959361214,Beirut +2040-02-29,399.2393218449272,59.94033558151031,Kesrouan +2040-03-31,513.703550887486,103.25251213831041,Kesrouan +2040-04-30,655.5838738744126,118.6481454548136,Kesrouan +2040-05-31,755.1481175743704,144.86475675746854,Kesrouan +2040-06-30,817.1041542587025,169.83215574191703,Kesrouan +2040-07-31,884.020543125217,167.53809260573223,Kesrouan +2040-08-31,1018.6892107341008,127.8746790738296,Kesrouan +2040-09-30,1294.7906756498646,164.18960627675008,Kesrouan +2040-10-31,1380.1769632163287,275.7612389833607,Baabda +2040-11-30,1161.563547417895,268.70437984083514,Baabda +2040-12-31,1166.1428046377355,286.23186805113454,Baabda +2041-01-31,454.67787896080904,75.10727616142705,Kesrouan +2041-02-28,252.23426123785885,64.6345933841466,Beirut +2041-03-31,526.5393618164915,25.207095380739442,Beirut +2041-04-30,617.6874165614905,35.93452515843212,Beirut +2041-05-31,578.9925671017759,33.09549802163875,Beirut +2041-06-30,494.3380970191834,29.976087324235856,Beirut +2041-07-31,385.11664067481,28.747255462235056,Beirut +2041-08-31,204.20204540618403,33.991141622664514,Beirut +2041-09-30,171.1905849542789,46.63913787541969,Beirut +2041-10-31,242.24439119666374,48.09304237589362,Beirut +2041-11-30,417.50474636394824,42.20155895247727,Tripoli +2041-12-31,654.6099405353342,37.06777250678503,Tripoli +2042-01-31,530.9954739030796,370.36728188155143,Bekaa +2042-02-28,496.59155939330043,273.5320765484493,Bekaa +2042-03-31,532.24585403165,321.08678183801476,Bekaa +2042-04-30,515.6456597569581,359.3149831068174,Bekaa +2042-05-31,521.5012792170601,365.17230185428855,Bekaa +2042-06-30,528.4109375295714,366.2819315433152,Bekaa +2042-07-31,533.2893129106008,365.8539941759492,Bekaa +2042-08-31,536.6102730149287,365.49302862368097,Bekaa +2042-09-30,539.1553683989443,365.60768826969553,Bekaa +2042-10-31,541.5088007263557,365.4209747477702,Bekaa +2042-11-30,543.6929534784263,364.97709502525095,Bekaa +2042-12-31,545.6660105695806,364.5879692866968,Bekaa +2043-01-31,418.84660367800245,28.530241022927832,Beirut +2043-02-28,461.1374925519743,45.33783443387956,Tripoli +2043-03-31,578.6559512115252,43.726890773419335,Tripoli +2043-04-30,610.2440093838736,43.08947503637641,Tripoli +2043-05-31,704.0472056313818,40.88551405371585,Tripoli +2043-06-30,722.547116909102,37.91233443491269,Tripoli +2043-07-31,692.2933589269088,35.768035453851695,Tripoli +2043-08-31,662.3939220966724,34.732948458188865,Tripoli +2043-09-30,644.0232736239319,34.442435584589035,Tripoli +2043-10-31,644.5023233065293,34.84799099919621,Tripoli +2043-11-30,644.9257381627071,34.96719317217044,Tripoli +2043-12-31,651.7116755610982,35.21304656615986,Tripoli +2044-01-31,1630.1915243226715,247.01320445764378,Baabda +2044-02-29,1422.826491598771,279.07773617612935,Baabda +2044-03-31,1485.4478430766621,199.77581469117155,Baabda +2044-04-30,1421.6966655895446,213.0748368575306,Baabda +2044-05-31,1490.106486083748,210.05207233716465,Baabda +2044-06-30,1483.8133451361898,214.55942517037911,Baabda +2044-07-31,1498.81905824077,212.75837414601213,Baabda +2044-08-31,1505.1280331622122,215.20563008793778,Baabda +2044-09-30,1504.6917352091014,216.88364998940287,Baabda +2044-10-31,1512.5547426946423,217.39432748384132,Baabda +2044-11-30,1515.9059312945667,218.8334209098225,Baabda +2044-12-31,1526.8795949222138,219.26288985715954,Baabda +2045-01-31,318.3424696828165,74.4065087073997,Bekaa +2045-02-28,343.7529749169593,293.24401550109616,Bekaa +2045-03-31,515.6223406317838,241.16963512127637,Bekaa +2045-04-30,510.121834022333,300.2946613021483,Bekaa +2045-05-31,528.6560042617295,314.2331355107391,Bekaa +2045-06-30,517.5522141578,320.6038816348695,Bekaa +2045-07-31,521.7631875396219,322.80584112097694,Bekaa +2045-08-31,524.425670248204,324.176814046882,Bekaa +2045-09-30,527.4238332031258,325.1285169557118,Bekaa +2045-10-31,530.2159385797304,325.9198564798454,Bekaa +2045-11-30,532.8725195344106,326.5557406369173,Bekaa +2045-12-31,535.3932881767316,327.06680102634857,Bekaa +2046-01-31,366.35856365017327,76.2878458500219,Kesrouan +2046-02-28,925.4484804225149,194.70421387316753,Kesrouan +2046-03-31,1023.1472660811204,165.68542037461367,Kesrouan +2046-04-30,1291.567670265791,191.80552473477456,Kesrouan +2046-05-31,1570.28238862588,257.44354252958817,Baabda +2046-06-30,1385.9377947509524,263.58731894459953,Baabda +2046-07-31,1457.8741291195408,247.27961235101742,Baabda +2046-08-31,1443.6507582700433,246.24228019835158,Baabda +2046-09-30,1446.782718304284,244.185698979269,Baabda +2046-10-31,1442.8201943672227,245.1831404354161,Baabda +2046-11-30,1432.0199847262134,244.3650678790605,Baabda +2046-12-31,1437.5644665994962,239.32178388620306,Baabda diff --git a/.history/main_timegan_20250718171958.py b/.history/main_timegan_20250718171958.py new file mode 100644 index 00000000..eb7c46b5 --- /dev/null +++ b/.history/main_timegan_20250718171958.py @@ -0,0 +1,163 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720213959.py b/.history/main_timegan_20250720213959.py new file mode 100644 index 00000000..ed677e27 --- /dev/null +++ b/.history/main_timegan_20250720213959.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy']: + + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214003.py b/.history/main_timegan_20250720214003.py new file mode 100644 index 00000000..aad3750d --- /dev/null +++ b/.history/main_timegan_20250720214003.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy']: + if args.data_name in ['stock', 'energy']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214005.py b/.history/main_timegan_20250720214005.py new file mode 100644 index 00000000..d1d508d9 --- /dev/null +++ b/.history/main_timegan_20250720214005.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy']: + if args.data_name in ['stock', 'energy']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214010.py b/.history/main_timegan_20250720214010.py new file mode 100644 index 00000000..284270cd --- /dev/null +++ b/.history/main_timegan_20250720214010.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ['stock', 'energy']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214013.py b/.history/main_timegan_20250720214013.py new file mode 100644 index 00000000..63f2ae08 --- /dev/null +++ b/.history/main_timegan_20250720214013.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ]: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214015.py b/.history/main_timegan_20250720214015.py new file mode 100644 index 00000000..55d7a91f --- /dev/null +++ b/.history/main_timegan_20250720214015.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in []]: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214017.py b/.history/main_timegan_20250720214017.py new file mode 100644 index 00000000..25d2be0b --- /dev/null +++ b/.history/main_timegan_20250720214017.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ['']]: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214022.py b/.history/main_timegan_20250720214022.py new file mode 100644 index 00000000..864821e7 --- /dev/null +++ b/.history/main_timegan_20250720214022.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ['tra']]: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214026.py b/.history/main_timegan_20250720214026.py new file mode 100644 index 00000000..03812abb --- /dev/null +++ b/.history/main_timegan_20250720214026.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ['transaction']]: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720214030.py b/.history/main_timegan_20250720214030.py new file mode 100644 index 00000000..157aac25 --- /dev/null +++ b/.history/main_timegan_20250720214030.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy']: + if args.data_name in ['transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720215121.py b/.history/main_timegan_20250720215121.py new file mode 100644 index 00000000..78fc39fe --- /dev/null +++ b/.history/main_timegan_20250720215121.py @@ -0,0 +1,163 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) +elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250720215124.py b/.history/main_timegan_20250720215124.py new file mode 100644 index 00000000..df952e81 --- /dev/null +++ b/.history/main_timegan_20250720215124.py @@ -0,0 +1,163 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721232343.py b/.history/main_timegan_20250721232343.py new file mode 100644 index 00000000..fa388e13 --- /dev/null +++ b/.history/main_timegan_20250721232343.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721232345.py b/.history/main_timegan_20250721232345.py new file mode 100644 index 00000000..5f1b513f --- /dev/null +++ b/.history/main_timegan_20250721232345.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721232346.py b/.history/main_timegan_20250721232346.py new file mode 100644 index 00000000..ea4a3810 --- /dev/null +++ b/.history/main_timegan_20250721232346.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721232348.py b/.history/main_timegan_20250721232348.py new file mode 100644 index 00000000..295412ca --- /dev/null +++ b/.history/main_timegan_20250721232348.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721232351.py b/.history/main_timegan_20250721232351.py new file mode 100644 index 00000000..cd3d5a12 --- /dev/null +++ b/.history/main_timegan_20250721232351.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721233037.py b/.history/main_timegan_20250721233037.py new file mode 100644 index 00000000..65431bb4 --- /dev/null +++ b/.history/main_timegan_20250721233037.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', ''], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721233038.py b/.history/main_timegan_20250721233038.py new file mode 100644 index 00000000..38698973 --- /dev/null +++ b/.history/main_timegan_20250721233038.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='stock', + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721233418.py b/.history/main_timegan_20250721233418.py new file mode 100644 index 00000000..7e14bb62 --- /dev/null +++ b/.history/main_timegan_20250721233418.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() +parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250721233420.py b/.history/main_timegan_20250721233420.py new file mode 100644 index 00000000..16746aa4 --- /dev/null +++ b/.history/main_timegan_20250721233420.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722014100.py b/.history/main_timegan_20250722014100.py new file mode 100644 index 00000000..94d1c027 --- /dev/null +++ b/.history/main_timegan_20250722014100.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722014104.py b/.history/main_timegan_20250722014104.py new file mode 100644 index 00000000..3f13c96a --- /dev/null +++ b/.history/main_timegan_20250722014104.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=50000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722014118.py b/.history/main_timegan_20250722014118.py new file mode 100644 index 00000000..d2b4596f --- /dev/null +++ b/.history/main_timegan_20250722014118.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=20000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722014142.py b/.history/main_timegan_20250722014142.py new file mode 100644 index 00000000..dc058676 --- /dev/null +++ b/.history/main_timegan_20250722014142.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=20000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722014157.py b/.history/main_timegan_20250722014157.py new file mode 100644 index 00000000..d1621a8f --- /dev/null +++ b/.history/main_timegan_20250722014157.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=20000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722115131.py b/.history/main_timegan_20250722115131.py new file mode 100644 index 00000000..42d96e90 --- /dev/null +++ b/.history/main_timegan_20250722115131.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130555.py b/.history/main_timegan_20250722130555.py new file mode 100644 index 00000000..9a7a689f --- /dev/null +++ b/.history/main_timegan_20250722130555.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130558.py b/.history/main_timegan_20250722130558.py new file mode 100644 index 00000000..10ff6c4e --- /dev/null +++ b/.history/main_timegan_20250722130558.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130610.py b/.history/main_timegan_20250722130610.py new file mode 100644 index 00000000..4e175c5c --- /dev/null +++ b/.history/main_timegan_20250722130610.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + +return ori_data, generated_data, metric_results + + # Calls main function + ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130613.py b/.history/main_timegan_20250722130613.py new file mode 100644 index 00000000..2fa42b8e --- /dev/null +++ b/.history/main_timegan_20250722130613.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + +return ori_data, generated_data, metric_results + + # Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130615.py b/.history/main_timegan_20250722130615.py new file mode 100644 index 00000000..c2a51266 --- /dev/null +++ b/.history/main_timegan_20250722130615.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130622.py b/.history/main_timegan_20250722130622.py new file mode 100644 index 00000000..37b72e3c --- /dev/null +++ b/.history/main_timegan_20250722130622.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() +stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130625.py b/.history/main_timegan_20250722130625.py new file mode 100644 index 00000000..b24f2d19 --- /dev/null +++ b/.history/main_timegan_20250722130625.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() +stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + +# Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130628.py b/.history/main_timegan_20250722130628.py new file mode 100644 index 00000000..37b72e3c --- /dev/null +++ b/.history/main_timegan_20250722130628.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() +stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130630.py b/.history/main_timegan_20250722130630.py new file mode 100644 index 00000000..c2a51266 --- /dev/null +++ b/.history/main_timegan_20250722130630.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function + # ori_data, generated_data, metrics = main(args) \ No newline at end of file diff --git a/.history/main_timegan_20250722130633.py b/.history/main_timegan_20250722130633.py new file mode 100644 index 00000000..eeb0975b --- /dev/null +++ b/.history/main_timegan_20250722130633.py @@ -0,0 +1,177 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130636.py b/.history/main_timegan_20250722130636.py new file mode 100644 index 00000000..9674f00b --- /dev/null +++ b/.history/main_timegan_20250722130636.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + # ori_data, generated_data, metrics = main(args) + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130637.py b/.history/main_timegan_20250722130637.py new file mode 100644 index 00000000..37badad5 --- /dev/null +++ b/.history/main_timegan_20250722130637.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + # ori_data, generated_data, metrics = main(args) + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130638.py b/.history/main_timegan_20250722130638.py new file mode 100644 index 00000000..7a065eb6 --- /dev/null +++ b/.history/main_timegan_20250722130638.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130641.py b/.history/main_timegan_20250722130641.py new file mode 100644 index 00000000..4fe00a8e --- /dev/null +++ b/.history/main_timegan_20250722130641.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function + +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130706.py b/.history/main_timegan_20250722130706.py new file mode 100644 index 00000000..8b737701 --- /dev/null +++ b/.history/main_timegan_20250722130706.py @@ -0,0 +1,178 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + + # Calls main function diff --git a/.history/main_timegan_20250722130749.py b/.history/main_timegan_20250722130749.py new file mode 100644 index 00000000..86cccfcc --- /dev/null +++ b/.history/main_timegan_20250722130749.py @@ -0,0 +1,165 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130802.py b/.history/main_timegan_20250722130802.py new file mode 100644 index 00000000..0db8a006 --- /dev/null +++ b/.history/main_timegan_20250722130802.py @@ -0,0 +1,180 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130806.py b/.history/main_timegan_20250722130806.py new file mode 100644 index 00000000..18666de8 --- /dev/null +++ b/.history/main_timegan_20250722130806.py @@ -0,0 +1,180 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + + return ori_data, generated_data, metric_results + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130812.py b/.history/main_timegan_20250722130812.py new file mode 100644 index 00000000..a5d3e5a3 --- /dev/null +++ b/.history/main_timegan_20250722130812.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + +return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130823.py b/.history/main_timegan_20250722130823.py new file mode 100644 index 00000000..3818dd47 --- /dev/null +++ b/.history/main_timegan_20250722130823.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130824.py b/.history/main_timegan_20250722130824.py new file mode 100644 index 00000000..73bffb24 --- /dev/null +++ b/.history/main_timegan_20250722130824.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130825.py b/.history/main_timegan_20250722130825.py new file mode 100644 index 00000000..3818dd47 --- /dev/null +++ b/.history/main_timegan_20250722130825.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + +stacked_data = np.asarray(generated_data) + +# Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +num_samples, seq_len, num_features = stacked_data.shape +reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# 2. Save to a CSV file using pandas +# This creates a file named 'synthetic_data.csv' in your project folder. +pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +print("Synthetic data saved to synthetic_data.csv") +# ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722130832.py b/.history/main_timegan_20250722130832.py new file mode 100644 index 00000000..ac7f5614 --- /dev/null +++ b/.history/main_timegan_20250722130832.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722131007.py b/.history/main_timegan_20250722131007.py new file mode 100644 index 00000000..07f56d8f --- /dev/null +++ b/.history/main_timegan_20250722131007.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722131017.py b/.history/main_timegan_20250722131017.py new file mode 100644 index 00000000..55480ce6 --- /dev/null +++ b/.history/main_timegan_20250722131017.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=18, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722131649.py b/.history/main_timegan_20250722131649.py new file mode 100644 index 00000000..52787e79 --- /dev/null +++ b/.history/main_timegan_20250722131649.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=18, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142006.py b/.history/main_timegan_20250722142006.py new file mode 100644 index 00000000..5480637d --- /dev/null +++ b/.history/main_timegan_20250722142006.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=18, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142017.py b/.history/main_timegan_20250722142017.py new file mode 100644 index 00000000..344648e7 --- /dev/null +++ b/.history/main_timegan_20250722142017.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=18, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=332, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142018.py b/.history/main_timegan_20250722142018.py new file mode 100644 index 00000000..52787e79 --- /dev/null +++ b/.history/main_timegan_20250722142018.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=18, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142046.py b/.history/main_timegan_20250722142046.py new file mode 100644 index 00000000..818222eb --- /dev/null +++ b/.history/main_timegan_20250722142046.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=2 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142053.py b/.history/main_timegan_20250722142053.py new file mode 100644 index 00000000..beaaee9e --- /dev/null +++ b/.history/main_timegan_20250722142053.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=8000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142059.py b/.history/main_timegan_20250722142059.py new file mode 100644 index 00000000..2c4cadb3 --- /dev/null +++ b/.history/main_timegan_20250722142059.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=10000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142103.py b/.history/main_timegan_20250722142103.py new file mode 100644 index 00000000..8ab34186 --- /dev/null +++ b/.history/main_timegan_20250722142103.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=10000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142317.py b/.history/main_timegan_20250722142317.py new file mode 100644 index 00000000..959d6cda --- /dev/null +++ b/.history/main_timegan_20250722142317.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=10000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142322.py b/.history/main_timegan_20250722142322.py new file mode 100644 index 00000000..2c4cadb3 --- /dev/null +++ b/.history/main_timegan_20250722142322.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=10000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722142327.py b/.history/main_timegan_20250722142327.py new file mode 100644 index 00000000..a9ea6c7b --- /dev/null +++ b/.history/main_timegan_20250722142327.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=10000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722154118.py b/.history/main_timegan_20250722154118.py new file mode 100644 index 00000000..4f77ff1d --- /dev/null +++ b/.history/main_timegan_20250722154118.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=12, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722154121.py b/.history/main_timegan_20250722154121.py new file mode 100644 index 00000000..127a0a18 --- /dev/null +++ b/.history/main_timegan_20250722154121.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=1, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722154123.py b/.history/main_timegan_20250722154123.py new file mode 100644 index 00000000..b4a445ec --- /dev/null +++ b/.history/main_timegan_20250722154123.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=32, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722154129.py b/.history/main_timegan_20250722154129.py new file mode 100644 index 00000000..e51c07c4 --- /dev/null +++ b/.history/main_timegan_20250722154129.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250722174053.py b/.history/main_timegan_20250722174053.py new file mode 100644 index 00000000..e51c07c4 --- /dev/null +++ b/.history/main_timegan_20250722174053.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterati ons of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250804012614.py b/.history/main_timegan_20250804012614.py new file mode 100644 index 00000000..bbb9db0b --- /dev/null +++ b/.history/main_timegan_20250804012614.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=12000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805004000.py b/.history/main_timegan_20250805004000.py new file mode 100644 index 00000000..57b2ad48 --- /dev/null +++ b/.history/main_timegan_20250805004000.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=12 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=1000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011721.py b/.history/main_timegan_20250805011721.py new file mode 100644 index 00000000..30127102 --- /dev/null +++ b/.history/main_timegan_20250805011721.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=1000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011731.py b/.history/main_timegan_20250805011731.py new file mode 100644 index 00000000..6b4c063a --- /dev/null +++ b/.history/main_timegan_20250805011731.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011746.py b/.history/main_timegan_20250805011746.py new file mode 100644 index 00000000..21613898 --- /dev/null +++ b/.history/main_timegan_20250805011746.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction', ''], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011749.py b/.history/main_timegan_20250805011749.py new file mode 100644 index 00000000..62a27476 --- /dev/null +++ b/.history/main_timegan_20250805011749.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction', 'Beirut'], + default='transaction', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011752.py b/.history/main_timegan_20250805011752.py new file mode 100644 index 00000000..28f6fb82 --- /dev/null +++ b/.history/main_timegan_20250805011752.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +def main (args): + """Main function for timeGAN experiments. + + Args: + - data_name: sine, stock, or energy + - seq_len: sequence length + - Network parameters (should be optimized for different datasets) + - module: gru, lstm, or lstmLN + - hidden_dim: hidden dimensions + - num_layer: number of layers + - iteration: number of training iterations + - batch_size: the number of samples in each batch + - metric_iteration: number of iterations for metric computation + + Returns: + - ori_data: original data + - generated_data: generated synthetic data + - metric_results: discriminative and predictive scores + """ + ## Data loading + # if args.data_name in ['stock', 'energy', 'transaction']: + if args.data_name in ['stock', 'energy', 'transaction']: + ori_data = real_data_loading(args.data_name, args.seq_len) + elif args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set newtork parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + stacked_data = np.asarray(generated_data) + + # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + # 2. Save to a CSV file using pandas + # This creates a file named 'synthetic_data.csv' in your project folder. + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + + print("Synthetic data saved to synthetic_data.csv") + # ---------------------------------------- + + return ori_data, generated_data, metric_results + + + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + parser.add_argument( + '--data_name', + choices=['sine','stock','energy', 'transaction', 'Beirut'], + default='Beirut', # <--- TO THIS + type=str) + parser.add_argument( + '--seq_len', + help='sequence length', + default=24 , + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3 , + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=64, + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) + + + # Calls main function diff --git a/.history/main_timegan_20250805011947.py b/.history/main_timegan_20250805011947.py new file mode 100644 index 00000000..f0069419 --- /dev/null +++ b/.history/main_timegan_20250805011947.py @@ -0,0 +1,179 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function diff --git a/.history/main_timegan_20250805011949.py b/.history/main_timegan_20250805011949.py new file mode 100644 index 00000000..95f3be8c --- /dev/null +++ b/.history/main_timegan_20250805011949.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + print("Synthetic data saved to synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Beirut', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805021757.py b/.history/main_timegan_20250805021757.py new file mode 100644 index 00000000..b4861255 --- /dev/null +++ b/.history/main_timegan_20250805021757.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_data.csvsynthetic_data.csv', index=False) + print("Synthetic data saved to synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Beirut', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805021803.py b/.history/main_timegan_20250805021803.py new file mode 100644 index 00000000..8bf03cf9 --- /dev/null +++ b/.history/main_timegan_20250805021803.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Beirut', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805021807.py b/.history/main_timegan_20250805021807.py new file mode 100644 index 00000000..39412f9b --- /dev/null +++ b/.history/main_timegan_20250805021807.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Beirut', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805131427.py b/.history/main_timegan_20250805131427.py new file mode 100644 index 00000000..73f16393 --- /dev/null +++ b/.history/main_timegan_20250805131427.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Bekaa', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805134702.py b/.history/main_timegan_20250805134702.py new file mode 100644 index 00000000..d712979b --- /dev/null +++ b/.history/main_timegan_20250805134702.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Baabda', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805143317.py b/.history/main_timegan_20250805143317.py new file mode 100644 index 00000000..2d9f853d --- /dev/null +++ b/.history/main_timegan_20250805143317.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Kesrouan', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250805150434.py b/.history/main_timegan_20250805150434.py new file mode 100644 index 00000000..8d8a4278 --- /dev/null +++ b/.history/main_timegan_20250805150434.py @@ -0,0 +1,296 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + + +# def main (args): +# """Main function for timeGAN experiments. + +# Args: +# - data_name: sine, stock, or energy +# - seq_len: sequence length +# - Network parameters (should be optimized for different datasets) +# - module: gru, lstm, or lstmLN +# - hidden_dim: hidden dimensions +# - num_layer: number of layers +# - iteration: number of training iterations +# - batch_size: the number of samples in each batch +# - metric_iteration: number of iterations for metric computation + +# Returns: +# - ori_data: original data +# - generated_data: generated synthetic data +# - metric_results: discriminative and predictive scores +# """ +# ## Data loading +# # if args.data_name in ['stock', 'energy', 'transaction']: +# if args.data_name in ['stock', 'energy', 'transaction']: +# ori_data = real_data_loading(args.data_name, args.seq_len) +# elif args.data_name == 'sine': +# # Set number of samples and its dimensions +# no, dim = 10000, 5 +# ori_data = sine_data_generation(no, args.seq_len, dim) + +# print(args.data_name + ' dataset is ready.') + +# ## Synthetic data generation by TimeGAN +# # Set newtork parameters +# parameters = dict() +# parameters['module'] = args.module +# parameters['hidden_dim'] = args.hidden_dim +# parameters['num_layer'] = args.num_layer +# parameters['iterations'] = args.iteration +# parameters['batch_size'] = args.batch_size + +# generated_data = timegan(ori_data, parameters) +# print('Finish Synthetic Data Generation') + +# ## Performance metrics +# # Output initialization +# metric_results = dict() + +# # 1. Discriminative Score +# discriminative_score = list() +# for _ in range(args.metric_iteration): +# temp_disc = discriminative_score_metrics(ori_data, generated_data) +# discriminative_score.append(temp_disc) + +# metric_results['discriminative'] = np.mean(discriminative_score) + +# # 2. Predictive score +# predictive_score = list() +# for tt in range(args.metric_iteration): +# temp_pred = predictive_score_metrics(ori_data, generated_data) +# predictive_score.append(temp_pred) + +# metric_results['predictive'] = np.mean(predictive_score) + +# # 3. Visualization (PCA and tSNE) +# visualization(ori_data, generated_data, 'pca') +# visualization(ori_data, generated_data, 'tsne') + +# ## Print discriminative and predictive scores +# print(metric_results) + +# stacked_data = np.asarray(generated_data) + +# # Reshape the 3D array to a 2D array: (num_samples * seq_len, num_features) +# num_samples, seq_len, num_features = stacked_data.shape +# reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + +# # 2. Save to a CSV file using pandas +# # This creates a file named 'synthetic_data.csv' in your project folder. +# pd.DataFrame(reshaped_data).to_csv('synthetic_data.csv', index=False) + +# print("Synthetic data saved to synthetic_data.csv") +# # ---------------------------------------- + +# return ori_data, generated_data, metric_results + + + +# if __name__ == '__main__': + +# # Inputs for the main function +# parser = argparse.ArgumentParser() +# parser.add_argument( +# '--data_name', +# choices=['sine','stock','energy', 'transaction', 'Beirut'], +# default='Beirut', # <--- TO THIS +# type=str) +# parser.add_argument( +# '--seq_len', +# help='sequence length', +# default=24 , +# type=int) +# parser.add_argument( +# '--module', +# choices=['gru','lstm','lstmLN'], +# default='gru', +# type=str) +# parser.add_argument( +# '--hidden_dim', +# help='hidden state dimensions (should be optimized)', +# default=24, +# type=int) +# parser.add_argument( +# '--num_layer', +# help='number of layers (should be optimized)', +# default=3 , +# type=int) +# parser.add_argument( +# '--iteration', +# help='Training iterations (should be optimized)', +# default=5000, +# type=int) +# parser.add_argument( +# '--batch_size', +# help='the number of samples in mini-batch (should be optimized)', +# default=64, +# type=int) +# parser.add_argument( +# '--metric_iteration', +# help='iterations of the metric computation', +# default=10, +# type=int) + +# args = parser.parse_args() +# ori_data, generated_data, metrics = main(args) + + +# # Calls main function + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250806195526.py b/.history/main_timegan_20250806195526.py new file mode 100644 index 00000000..23f105ba --- /dev/null +++ b/.history/main_timegan_20250806195526.py @@ -0,0 +1,158 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + # === THIS IS THE FIRST FIX === + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250806195537.py b/.history/main_timegan_20250806195537.py new file mode 100644 index 00000000..353495e8 --- /dev/null +++ b/.history/main_timegan_20250806195537.py @@ -0,0 +1,158 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + # ============================ + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250806195541.py b/.history/main_timegan_20250806195541.py new file mode 100644 index 00000000..a70f4e97 --- /dev/null +++ b/.history/main_timegan_20250806195541.py @@ -0,0 +1,158 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + # === THIS IS THE SECOND FIX === + # We remove the 'choices' restriction to allow any city name. + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250806195552.py b/.history/main_timegan_20250806195552.py new file mode 100644 index 00000000..fc5b53fe --- /dev/null +++ b/.history/main_timegan_20250806195552.py @@ -0,0 +1,157 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + # ============================== + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/main_timegan_20250806195557.py b/.history/main_timegan_20250806195557.py new file mode 100644 index 00000000..0a05b02e --- /dev/null +++ b/.history/main_timegan_20250806195557.py @@ -0,0 +1,157 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +main_timegan.py + +(1) Import data +(2) Generate synthetic data +(3) Evaluate the performances in three ways + - Visualization (t-SNE, PCA) + - Discriminative score + - Predictive score +""" + +## Necessary packages +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function +import pandas as pd +import argparse +import numpy as np +import warnings +warnings.filterwarnings("ignore") + +# 1. TimeGAN model +from timegan import timegan +# 2. Data loading +from data_loading import real_data_loading, sine_data_generation +# 3. Metrics +from metrics.discriminative_metrics import discriminative_score_metrics +from metrics.predictive_metrics import predictive_score_metrics +from metrics.visualization_metrics import visualization + +def main (args): + """Main function for timeGAN experiments.""" + + ## Data loading + + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': + # Set number of samples and its dimensions + no, dim = 10000, 5 + ori_data = sine_data_generation(no, args.seq_len, dim) + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + + + print(args.data_name + ' dataset is ready.') + + ## Synthetic data generation by TimeGAN + # Set network parameters + parameters = dict() + parameters['module'] = args.module + parameters['hidden_dim'] = args.hidden_dim + parameters['num_layer'] = args.num_layer + parameters['iterations'] = args.iteration + parameters['batch_size'] = args.batch_size + + generated_data = timegan(ori_data, parameters) + print('Finish Synthetic Data Generation') + + ## Performance metrics + # Output initialization + metric_results = dict() + + # 1. Discriminative Score + discriminative_score = list() + for _ in range(args.metric_iteration): + temp_disc = discriminative_score_metrics(ori_data, generated_data) + discriminative_score.append(temp_disc) + + metric_results['discriminative'] = np.mean(discriminative_score) + + # 2. Predictive score + predictive_score = list() + for tt in range(args.metric_iteration): + temp_pred = predictive_score_metrics(ori_data, generated_data) + predictive_score.append(temp_pred) + + metric_results['predictive'] = np.mean(predictive_score) + + # 3. Visualization (PCA and tSNE) + visualization(ori_data, generated_data, 'pca') + visualization(ori_data, generated_data, 'tsne') + + ## Print discriminative and predictive scores + print(metric_results) + + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + + return ori_data, generated_data, metric_results + +if __name__ == '__main__': + + # Inputs for the main function + parser = argparse.ArgumentParser() + + + parser.add_argument( + '--data_name', + default='Tripoli', # Set a default city for easy testing + type=str) + + + parser.add_argument( + '--seq_len', + help='sequence length', + default=24, # A good starting point for optimization + type=int) + parser.add_argument( + '--module', + choices=['gru','lstm','lstmLN'], + default='gru', + type=str) + parser.add_argument( + '--hidden_dim', + help='hidden state dimensions (should be optimized)', + default=24, + type=int) + parser.add_argument( + '--num_layer', + help='number of layers (should be optimized)', + default=3, + type=int) + parser.add_argument( + '--iteration', + help='Training iterations (should be optimized)', + default=5000, # A good number for initial quality tests + type=int) + parser.add_argument( + '--batch_size', + help='the number of samples in mini-batch (should be optimized)', + default=128, # Try a different batch size + type=int) + parser.add_argument( + '--metric_iteration', + help='iterations of the metric computation', + default=10, + type=int) + + args = parser.parse_args() + ori_data, generated_data, metrics = main(args) diff --git a/.history/metrics/discriminative_metrics_20250718171958.py b/.history/metrics/discriminative_metrics_20250718171958.py new file mode 100644 index 00000000..e0f8047e --- /dev/null +++ b/.history/metrics/discriminative_metrics_20250718171958.py @@ -0,0 +1,129 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use post-hoc RNN to classify original data and synthetic data + +Output: discriminative score (np.abs(classification accuracy - 0.5)) +""" + +# Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import accuracy_score +from utils import train_test_divide, extract_time, batch_generator + + +def discriminative_score_metrics (ori_data, generated_data): + """Use post-hoc RNN to classify original data and synthetic data + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - discriminative_score: np.abs(classification accuracy - 0.5) + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN discriminator network + # Network parameters + hidden_dim = int(dim/2) + iterations = 2000 + batch_size = 128 + + # Input place holders + # Feature + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + X_hat = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x_hat") + + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + T_hat = tf.placeholder(tf.int32, [None], name = "myinput_t_hat") + + # discriminator function + def discriminator (x, t): + """Simple discriminator function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat_logit: logits of the discriminator output + - y_hat: discriminator output + - d_vars: discriminator variables + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE) as vs: + d_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'd_cell') + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(d_last_states, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + d_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat_logit, y_hat, d_vars + + y_logit_real, y_pred_real, d_vars = discriminator(X, T) + y_logit_fake, y_pred_fake, _ = discriminator(X_hat, T_hat) + + # Loss for the discriminator + d_loss_real = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_real, + labels = tf.ones_like(y_logit_real))) + d_loss_fake = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_fake, + labels = tf.zeros_like(y_logit_fake))) + d_loss = d_loss_real + d_loss_fake + + # optimizer + d_solver = tf.train.AdamOptimizer().minimize(d_loss, var_list = d_vars) + + ## Train the discriminator + # Start session and initialize + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Train/test division for both original and generated data + train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat = \ + train_test_divide(ori_data, generated_data, ori_time, generated_time) + + # Training step + for itt in range(iterations): + + # Batch setting + X_mb, T_mb = batch_generator(train_x, train_t, batch_size) + X_hat_mb, T_hat_mb = batch_generator(train_x_hat, train_t_hat, batch_size) + + # Train discriminator + _, step_d_loss = sess.run([d_solver, d_loss], + feed_dict={X: X_mb, T: T_mb, X_hat: X_hat_mb, T_hat: T_hat_mb}) + + ## Test the performance on the testing set + y_pred_real_curr, y_pred_fake_curr = sess.run([y_pred_real, y_pred_fake], + feed_dict={X: test_x, T: test_t, X_hat: test_x_hat, T_hat: test_t_hat}) + + y_pred_final = np.squeeze(np.concatenate((y_pred_real_curr, y_pred_fake_curr), axis = 0)) + y_label_final = np.concatenate((np.ones([len(y_pred_real_curr),]), np.zeros([len(y_pred_fake_curr),])), axis = 0) + + # Compute the accuracy + acc = accuracy_score(y_label_final, (y_pred_final>0.5)) + discriminative_score = np.abs(0.5-acc) + + return discriminative_score diff --git a/.history/metrics/discriminative_metrics_20250720215721.py b/.history/metrics/discriminative_metrics_20250720215721.py new file mode 100644 index 00000000..46aaf8d0 --- /dev/null +++ b/.history/metrics/discriminative_metrics_20250720215721.py @@ -0,0 +1,131 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use post-hoc RNN to classify original data and synthetic data + +Output: discriminative score (np.abs(classification accuracy - 0.5)) +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +# Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import accuracy_score +from utils import train_test_divide, extract_time, batch_generator + + +def discriminative_score_metrics (ori_data, generated_data): + """Use post-hoc RNN to classify original data and synthetic data + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - discriminative_score: np.abs(classification accuracy - 0.5) + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN discriminator network + # Network parameters + hidden_dim = int(dim/2) + iterations = 2000 + batch_size = 128 + + # Input place holders + # Feature + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + X_hat = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x_hat") + + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + T_hat = tf.placeholder(tf.int32, [None], name = "myinput_t_hat") + + # discriminator function + def discriminator (x, t): + """Simple discriminator function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat_logit: logits of the discriminator output + - y_hat: discriminator output + - d_vars: discriminator variables + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE) as vs: + d_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'd_cell') + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(d_last_states, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + d_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat_logit, y_hat, d_vars + + y_logit_real, y_pred_real, d_vars = discriminator(X, T) + y_logit_fake, y_pred_fake, _ = discriminator(X_hat, T_hat) + + # Loss for the discriminator + d_loss_real = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_real, + labels = tf.ones_like(y_logit_real))) + d_loss_fake = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_fake, + labels = tf.zeros_like(y_logit_fake))) + d_loss = d_loss_real + d_loss_fake + + # optimizer + d_solver = tf.train.AdamOptimizer().minimize(d_loss, var_list = d_vars) + + ## Train the discriminator + # Start session and initialize + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Train/test division for both original and generated data + train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat = \ + train_test_divide(ori_data, generated_data, ori_time, generated_time) + + # Training step + for itt in range(iterations): + + # Batch setting + X_mb, T_mb = batch_generator(train_x, train_t, batch_size) + X_hat_mb, T_hat_mb = batch_generator(train_x_hat, train_t_hat, batch_size) + + # Train discriminator + _, step_d_loss = sess.run([d_solver, d_loss], + feed_dict={X: X_mb, T: T_mb, X_hat: X_hat_mb, T_hat: T_hat_mb}) + + ## Test the performance on the testing set + y_pred_real_curr, y_pred_fake_curr = sess.run([y_pred_real, y_pred_fake], + feed_dict={X: test_x, T: test_t, X_hat: test_x_hat, T_hat: test_t_hat}) + + y_pred_final = np.squeeze(np.concatenate((y_pred_real_curr, y_pred_fake_curr), axis = 0)) + y_label_final = np.concatenate((np.ones([len(y_pred_real_curr),]), np.zeros([len(y_pred_fake_curr),])), axis = 0) + + # Compute the accuracy + acc = accuracy_score(y_label_final, (y_pred_final>0.5)) + discriminative_score = np.abs(0.5-acc) + + return discriminative_score diff --git a/.history/metrics/discriminative_metrics_20250720220419.py b/.history/metrics/discriminative_metrics_20250720220419.py new file mode 100644 index 00000000..40f4b66d --- /dev/null +++ b/.history/metrics/discriminative_metrics_20250720220419.py @@ -0,0 +1,131 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use post-hoc RNN to classify original data and synthetic data + +Output: discriminative score (np.abs(classification accuracy - 0.5)) +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +# Necessary Packages +# import tensorflow as tf +import numpy as np +from sklearn.metrics import accuracy_score +from utils import train_test_divide, extract_time, batch_generator + + +def discriminative_score_metrics (ori_data, generated_data): + """Use post-hoc RNN to classify original data and synthetic data + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - discriminative_score: np.abs(classification accuracy - 0.5) + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN discriminator network + # Network parameters + hidden_dim = int(dim/2) + iterations = 2000 + batch_size = 128 + + # Input place holders + # Feature + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + X_hat = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x_hat") + + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + T_hat = tf.placeholder(tf.int32, [None], name = "myinput_t_hat") + + # discriminator function + def discriminator (x, t): + """Simple discriminator function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat_logit: logits of the discriminator output + - y_hat: discriminator output + - d_vars: discriminator variables + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE) as vs: + d_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'd_cell') + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(d_last_states, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + d_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat_logit, y_hat, d_vars + + y_logit_real, y_pred_real, d_vars = discriminator(X, T) + y_logit_fake, y_pred_fake, _ = discriminator(X_hat, T_hat) + + # Loss for the discriminator + d_loss_real = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_real, + labels = tf.ones_like(y_logit_real))) + d_loss_fake = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_fake, + labels = tf.zeros_like(y_logit_fake))) + d_loss = d_loss_real + d_loss_fake + + # optimizer + d_solver = tf.train.AdamOptimizer().minimize(d_loss, var_list = d_vars) + + ## Train the discriminator + # Start session and initialize + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Train/test division for both original and generated data + train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat = \ + train_test_divide(ori_data, generated_data, ori_time, generated_time) + + # Training step + for itt in range(iterations): + + # Batch setting + X_mb, T_mb = batch_generator(train_x, train_t, batch_size) + X_hat_mb, T_hat_mb = batch_generator(train_x_hat, train_t_hat, batch_size) + + # Train discriminator + _, step_d_loss = sess.run([d_solver, d_loss], + feed_dict={X: X_mb, T: T_mb, X_hat: X_hat_mb, T_hat: T_hat_mb}) + + ## Test the performance on the testing set + y_pred_real_curr, y_pred_fake_curr = sess.run([y_pred_real, y_pred_fake], + feed_dict={X: test_x, T: test_t, X_hat: test_x_hat, T_hat: test_t_hat}) + + y_pred_final = np.squeeze(np.concatenate((y_pred_real_curr, y_pred_fake_curr), axis = 0)) + y_label_final = np.concatenate((np.ones([len(y_pred_real_curr),]), np.zeros([len(y_pred_fake_curr),])), axis = 0) + + # Compute the accuracy + acc = accuracy_score(y_label_final, (y_pred_final>0.5)) + discriminative_score = np.abs(0.5-acc) + + return discriminative_score diff --git a/.history/metrics/discriminative_metrics_20250720234927.py b/.history/metrics/discriminative_metrics_20250720234927.py new file mode 100644 index 00000000..4b0c80fa --- /dev/null +++ b/.history/metrics/discriminative_metrics_20250720234927.py @@ -0,0 +1,131 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use post-hoc RNN to classify original data and synthetic data + +Output: discriminative score (np.abs(classification accuracy - 0.5)) +""" +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +# Necessary Packages +# import tensorflow as tf +import numpy as np +from sklearn.metrics import accuracy_score +from utils import train_test_divide, extract_time, batch_generator + + +def discriminative_score_metrics (ori_data, generated_data): + """Use post-hoc RNN to classify original data and synthetic data + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - discriminative_score: np.abs(classification accuracy - 0.5) + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN discriminator network + # Network parameters + hidden_dim = int(dim/2) + iterations = 2000 + batch_size = 128 + + # Input place holders + # Feature + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + X_hat = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x_hat") + + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + T_hat = tf.placeholder(tf.int32, [None], name = "myinput_t_hat") + + # discriminator function + def discriminator (x, t): + """Simple discriminator function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat_logit: logits of the discriminator output + - y_hat: discriminator output + - d_vars: discriminator variables + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE) as vs: + d_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'd_cell') + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(d_last_states, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + d_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat_logit, y_hat, d_vars + + y_logit_real, y_pred_real, d_vars = discriminator(X, T) + y_logit_fake, y_pred_fake, _ = discriminator(X_hat, T_hat) + + # Loss for the discriminator + d_loss_real = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_real, + labels = tf.ones_like(y_logit_real))) + d_loss_fake = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_fake, + labels = tf.zeros_like(y_logit_fake))) + d_loss = d_loss_real + d_loss_fake + + # optimizer + d_solver = tf.train.AdamOptimizer().minimize(d_loss, var_list = d_vars) + + ## Train the discriminator + # Start session and initialize + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Train/test division for both original and generated data + train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat = \ + train_test_divide(ori_data, generated_data, ori_time, generated_time) + + # Training step + for itt in range(iterations): + + # Batch setting + X_mb, T_mb = batch_generator(train_x, train_t, batch_size) + X_hat_mb, T_hat_mb = batch_generator(train_x_hat, train_t_hat, batch_size) + + # Train discriminator + _, step_d_loss = sess.run([d_solver, d_loss], + feed_dict={X: X_mb, T: T_mb, X_hat: X_hat_mb, T_hat: T_hat_mb}) + + ## Test the performance on the testing set + y_pred_real_curr, y_pred_fake_curr = sess.run([y_pred_real, y_pred_fake], + feed_dict={X: test_x, T: test_t, X_hat: test_x_hat, T_hat: test_t_hat}) + + y_pred_final = np.squeeze(np.concatenate((y_pred_real_curr, y_pred_fake_curr), axis = 0)) + y_label_final = np.concatenate((np.ones([len(y_pred_real_curr),]), np.zeros([len(y_pred_fake_curr),])), axis = 0) + + # Compute the accuracy + acc = accuracy_score(y_label_final, (y_pred_final>0.5)) + discriminative_score = np.abs(0.5-acc) + + return discriminative_score diff --git a/.history/metrics/discriminative_metrics_20250720234930.py b/.history/metrics/discriminative_metrics_20250720234930.py new file mode 100644 index 00000000..12da5b33 --- /dev/null +++ b/.history/metrics/discriminative_metrics_20250720234930.py @@ -0,0 +1,131 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use post-hoc RNN to classify original data and synthetic data + +Output: discriminative score (np.abs(classification accuracy - 0.5)) +""" +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +# Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import accuracy_score +from utils import train_test_divide, extract_time, batch_generator + + +def discriminative_score_metrics (ori_data, generated_data): + """Use post-hoc RNN to classify original data and synthetic data + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - discriminative_score: np.abs(classification accuracy - 0.5) + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN discriminator network + # Network parameters + hidden_dim = int(dim/2) + iterations = 2000 + batch_size = 128 + + # Input place holders + # Feature + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + X_hat = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x_hat") + + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + T_hat = tf.placeholder(tf.int32, [None], name = "myinput_t_hat") + + # discriminator function + def discriminator (x, t): + """Simple discriminator function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat_logit: logits of the discriminator output + - y_hat: discriminator output + - d_vars: discriminator variables + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE) as vs: + d_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'd_cell') + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(d_last_states, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + d_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat_logit, y_hat, d_vars + + y_logit_real, y_pred_real, d_vars = discriminator(X, T) + y_logit_fake, y_pred_fake, _ = discriminator(X_hat, T_hat) + + # Loss for the discriminator + d_loss_real = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_real, + labels = tf.ones_like(y_logit_real))) + d_loss_fake = tf.reduce_mean(tf.nn.sigmoid_cross_entropy_with_logits(logits = y_logit_fake, + labels = tf.zeros_like(y_logit_fake))) + d_loss = d_loss_real + d_loss_fake + + # optimizer + d_solver = tf.train.AdamOptimizer().minimize(d_loss, var_list = d_vars) + + ## Train the discriminator + # Start session and initialize + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Train/test division for both original and generated data + train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat = \ + train_test_divide(ori_data, generated_data, ori_time, generated_time) + + # Training step + for itt in range(iterations): + + # Batch setting + X_mb, T_mb = batch_generator(train_x, train_t, batch_size) + X_hat_mb, T_hat_mb = batch_generator(train_x_hat, train_t_hat, batch_size) + + # Train discriminator + _, step_d_loss = sess.run([d_solver, d_loss], + feed_dict={X: X_mb, T: T_mb, X_hat: X_hat_mb, T_hat: T_hat_mb}) + + ## Test the performance on the testing set + y_pred_real_curr, y_pred_fake_curr = sess.run([y_pred_real, y_pred_fake], + feed_dict={X: test_x, T: test_t, X_hat: test_x_hat, T_hat: test_t_hat}) + + y_pred_final = np.squeeze(np.concatenate((y_pred_real_curr, y_pred_fake_curr), axis = 0)) + y_label_final = np.concatenate((np.ones([len(y_pred_real_curr),]), np.zeros([len(y_pred_fake_curr),])), axis = 0) + + # Compute the accuracy + acc = accuracy_score(y_label_final, (y_pred_final>0.5)) + discriminative_score = np.abs(0.5-acc) + + return discriminative_score diff --git a/.history/metrics/predictive_metrics_20250718171958.py b/.history/metrics/predictive_metrics_20250718171958.py new file mode 100644 index 00000000..4f343068 --- /dev/null +++ b/.history/metrics/predictive_metrics_20250718171958.py @@ -0,0 +1,123 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use Post-hoc RNN to predict one-step ahead (last feature) +""" + +# Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import mean_absolute_error +from utils import extract_time + + +def predictive_score_metrics (ori_data, generated_data): + """Report the performance of Post-hoc RNN one-step ahead prediction. + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - predictive_score: MAE of the predictions on the original data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN predictive network + # Network parameters + hidden_dim = int(dim/2) + iterations = 5000 + batch_size = 128 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len-1, dim-1], name = "myinput_x") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + Y = tf.placeholder(tf.float32, [None, max_seq_len-1, 1], name = "myinput_y") + + # Predictor function + def predictor (x, t): + """Simple predictor function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat: prediction + - p_vars: predictor variables + """ + with tf.variable_scope("predictor", reuse = tf.AUTO_REUSE) as vs: + p_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'p_cell') + p_outputs, p_last_states = tf.nn.dynamic_rnn(p_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(p_outputs, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + p_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat, p_vars + + y_pred, p_vars = predictor(X, T) + # Loss for the predictor + p_loss = tf.losses.absolute_difference(Y, y_pred) + # optimizer + p_solver = tf.train.AdamOptimizer().minimize(p_loss, var_list = p_vars) + + ## Training + # Session start + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Training using Synthetic dataset + for itt in range(iterations): + + # Set mini-batch + idx = np.random.permutation(len(generated_data)) + train_idx = idx[:batch_size] + + X_mb = list(generated_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(generated_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(generated_data[i][1:,(dim-1)],[len(generated_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Train predictor + _, step_p_loss = sess.run([p_solver, p_loss], feed_dict={X: X_mb, T: T_mb, Y: Y_mb}) + + ## Test the trained model on the original data + idx = np.random.permutation(len(ori_data)) + train_idx = idx[:no] + + X_mb = list(ori_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(ori_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(ori_data[i][1:,(dim-1)], [len(ori_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Prediction + pred_Y_curr = sess.run(y_pred, feed_dict={X: X_mb, T: T_mb}) + + # Compute the performance in terms of MAE + MAE_temp = 0 + for i in range(no): + MAE_temp = MAE_temp + mean_absolute_error(Y_mb[i], pred_Y_curr[i,:,:]) + + predictive_score = MAE_temp / no + + return predictive_score + \ No newline at end of file diff --git a/.history/metrics/predictive_metrics_20250720215649.py b/.history/metrics/predictive_metrics_20250720215649.py new file mode 100644 index 00000000..4be0cf1d --- /dev/null +++ b/.history/metrics/predictive_metrics_20250720215649.py @@ -0,0 +1,125 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use Post-hoc RNN to predict one-step ahead (last feature) +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +# Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import mean_absolute_error +from utils import extract_time + + +def predictive_score_metrics (ori_data, generated_data): + """Report the performance of Post-hoc RNN one-step ahead prediction. + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - predictive_score: MAE of the predictions on the original data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN predictive network + # Network parameters + hidden_dim = int(dim/2) + iterations = 5000 + batch_size = 128 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len-1, dim-1], name = "myinput_x") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + Y = tf.placeholder(tf.float32, [None, max_seq_len-1, 1], name = "myinput_y") + + # Predictor function + def predictor (x, t): + """Simple predictor function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat: prediction + - p_vars: predictor variables + """ + with tf.variable_scope("predictor", reuse = tf.AUTO_REUSE) as vs: + p_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'p_cell') + p_outputs, p_last_states = tf.nn.dynamic_rnn(p_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(p_outputs, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + p_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat, p_vars + + y_pred, p_vars = predictor(X, T) + # Loss for the predictor + p_loss = tf.losses.absolute_difference(Y, y_pred) + # optimizer + p_solver = tf.train.AdamOptimizer().minimize(p_loss, var_list = p_vars) + + ## Training + # Session start + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Training using Synthetic dataset + for itt in range(iterations): + + # Set mini-batch + idx = np.random.permutation(len(generated_data)) + train_idx = idx[:batch_size] + + X_mb = list(generated_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(generated_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(generated_data[i][1:,(dim-1)],[len(generated_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Train predictor + _, step_p_loss = sess.run([p_solver, p_loss], feed_dict={X: X_mb, T: T_mb, Y: Y_mb}) + + ## Test the trained model on the original data + idx = np.random.permutation(len(ori_data)) + train_idx = idx[:no] + + X_mb = list(ori_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(ori_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(ori_data[i][1:,(dim-1)], [len(ori_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Prediction + pred_Y_curr = sess.run(y_pred, feed_dict={X: X_mb, T: T_mb}) + + # Compute the performance in terms of MAE + MAE_temp = 0 + for i in range(no): + MAE_temp = MAE_temp + mean_absolute_error(Y_mb[i], pred_Y_curr[i,:,:]) + + predictive_score = MAE_temp / no + + return predictive_score + \ No newline at end of file diff --git a/.history/metrics/predictive_metrics_20250720220409.py b/.history/metrics/predictive_metrics_20250720220409.py new file mode 100644 index 00000000..8d628654 --- /dev/null +++ b/.history/metrics/predictive_metrics_20250720220409.py @@ -0,0 +1,125 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use Post-hoc RNN to predict one-step ahead (last feature) +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +# # Necessary Packages +# import tensorflow as tf +import numpy as np +from sklearn.metrics import mean_absolute_error +from utils import extract_time + + +def predictive_score_metrics (ori_data, generated_data): + """Report the performance of Post-hoc RNN one-step ahead prediction. + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - predictive_score: MAE of the predictions on the original data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN predictive network + # Network parameters + hidden_dim = int(dim/2) + iterations = 5000 + batch_size = 128 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len-1, dim-1], name = "myinput_x") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + Y = tf.placeholder(tf.float32, [None, max_seq_len-1, 1], name = "myinput_y") + + # Predictor function + def predictor (x, t): + """Simple predictor function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat: prediction + - p_vars: predictor variables + """ + with tf.variable_scope("predictor", reuse = tf.AUTO_REUSE) as vs: + p_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'p_cell') + p_outputs, p_last_states = tf.nn.dynamic_rnn(p_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(p_outputs, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + p_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat, p_vars + + y_pred, p_vars = predictor(X, T) + # Loss for the predictor + p_loss = tf.losses.absolute_difference(Y, y_pred) + # optimizer + p_solver = tf.train.AdamOptimizer().minimize(p_loss, var_list = p_vars) + + ## Training + # Session start + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Training using Synthetic dataset + for itt in range(iterations): + + # Set mini-batch + idx = np.random.permutation(len(generated_data)) + train_idx = idx[:batch_size] + + X_mb = list(generated_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(generated_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(generated_data[i][1:,(dim-1)],[len(generated_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Train predictor + _, step_p_loss = sess.run([p_solver, p_loss], feed_dict={X: X_mb, T: T_mb, Y: Y_mb}) + + ## Test the trained model on the original data + idx = np.random.permutation(len(ori_data)) + train_idx = idx[:no] + + X_mb = list(ori_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(ori_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(ori_data[i][1:,(dim-1)], [len(ori_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Prediction + pred_Y_curr = sess.run(y_pred, feed_dict={X: X_mb, T: T_mb}) + + # Compute the performance in terms of MAE + MAE_temp = 0 + for i in range(no): + MAE_temp = MAE_temp + mean_absolute_error(Y_mb[i], pred_Y_curr[i,:,:]) + + predictive_score = MAE_temp / no + + return predictive_score + \ No newline at end of file diff --git a/.history/metrics/predictive_metrics_20250720234918.py b/.history/metrics/predictive_metrics_20250720234918.py new file mode 100644 index 00000000..22003981 --- /dev/null +++ b/.history/metrics/predictive_metrics_20250720234918.py @@ -0,0 +1,125 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use Post-hoc RNN to predict one-step ahead (last feature) +""" +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +# # Necessary Packages +# import tensorflow as tf +import numpy as np +from sklearn.metrics import mean_absolute_error +from utils import extract_time + + +def predictive_score_metrics (ori_data, generated_data): + """Report the performance of Post-hoc RNN one-step ahead prediction. + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - predictive_score: MAE of the predictions on the original data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN predictive network + # Network parameters + hidden_dim = int(dim/2) + iterations = 5000 + batch_size = 128 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len-1, dim-1], name = "myinput_x") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + Y = tf.placeholder(tf.float32, [None, max_seq_len-1, 1], name = "myinput_y") + + # Predictor function + def predictor (x, t): + """Simple predictor function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat: prediction + - p_vars: predictor variables + """ + with tf.variable_scope("predictor", reuse = tf.AUTO_REUSE) as vs: + p_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'p_cell') + p_outputs, p_last_states = tf.nn.dynamic_rnn(p_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(p_outputs, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + p_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat, p_vars + + y_pred, p_vars = predictor(X, T) + # Loss for the predictor + p_loss = tf.losses.absolute_difference(Y, y_pred) + # optimizer + p_solver = tf.train.AdamOptimizer().minimize(p_loss, var_list = p_vars) + + ## Training + # Session start + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Training using Synthetic dataset + for itt in range(iterations): + + # Set mini-batch + idx = np.random.permutation(len(generated_data)) + train_idx = idx[:batch_size] + + X_mb = list(generated_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(generated_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(generated_data[i][1:,(dim-1)],[len(generated_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Train predictor + _, step_p_loss = sess.run([p_solver, p_loss], feed_dict={X: X_mb, T: T_mb, Y: Y_mb}) + + ## Test the trained model on the original data + idx = np.random.permutation(len(ori_data)) + train_idx = idx[:no] + + X_mb = list(ori_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(ori_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(ori_data[i][1:,(dim-1)], [len(ori_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Prediction + pred_Y_curr = sess.run(y_pred, feed_dict={X: X_mb, T: T_mb}) + + # Compute the performance in terms of MAE + MAE_temp = 0 + for i in range(no): + MAE_temp = MAE_temp + mean_absolute_error(Y_mb[i], pred_Y_curr[i,:,:]) + + predictive_score = MAE_temp / no + + return predictive_score + \ No newline at end of file diff --git a/.history/metrics/predictive_metrics_20250720234920.py b/.history/metrics/predictive_metrics_20250720234920.py new file mode 100644 index 00000000..16ad5b58 --- /dev/null +++ b/.history/metrics/predictive_metrics_20250720234920.py @@ -0,0 +1,125 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +predictive_metrics.py + +Note: Use Post-hoc RNN to predict one-step ahead (last feature) +""" +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +# # Necessary Packages +import tensorflow as tf +import numpy as np +from sklearn.metrics import mean_absolute_error +from utils import extract_time + + +def predictive_score_metrics (ori_data, generated_data): + """Report the performance of Post-hoc RNN one-step ahead prediction. + + Args: + - ori_data: original data + - generated_data: generated synthetic data + + Returns: + - predictive_score: MAE of the predictions on the original data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Set maximum sequence length and each sequence length + ori_time, ori_max_seq_len = extract_time(ori_data) + generated_time, generated_max_seq_len = extract_time(ori_data) + max_seq_len = max([ori_max_seq_len, generated_max_seq_len]) + + ## Builde a post-hoc RNN predictive network + # Network parameters + hidden_dim = int(dim/2) + iterations = 5000 + batch_size = 128 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len-1, dim-1], name = "myinput_x") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + Y = tf.placeholder(tf.float32, [None, max_seq_len-1, 1], name = "myinput_y") + + # Predictor function + def predictor (x, t): + """Simple predictor function. + + Args: + - x: time-series data + - t: time information + + Returns: + - y_hat: prediction + - p_vars: predictor variables + """ + with tf.variable_scope("predictor", reuse = tf.AUTO_REUSE) as vs: + p_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh, name = 'p_cell') + p_outputs, p_last_states = tf.nn.dynamic_rnn(p_cell, x, dtype=tf.float32, sequence_length = t) + y_hat_logit = tf.contrib.layers.fully_connected(p_outputs, 1, activation_fn=None) + y_hat = tf.nn.sigmoid(y_hat_logit) + p_vars = [v for v in tf.all_variables() if v.name.startswith(vs.name)] + + return y_hat, p_vars + + y_pred, p_vars = predictor(X, T) + # Loss for the predictor + p_loss = tf.losses.absolute_difference(Y, y_pred) + # optimizer + p_solver = tf.train.AdamOptimizer().minimize(p_loss, var_list = p_vars) + + ## Training + # Session start + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # Training using Synthetic dataset + for itt in range(iterations): + + # Set mini-batch + idx = np.random.permutation(len(generated_data)) + train_idx = idx[:batch_size] + + X_mb = list(generated_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(generated_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(generated_data[i][1:,(dim-1)],[len(generated_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Train predictor + _, step_p_loss = sess.run([p_solver, p_loss], feed_dict={X: X_mb, T: T_mb, Y: Y_mb}) + + ## Test the trained model on the original data + idx = np.random.permutation(len(ori_data)) + train_idx = idx[:no] + + X_mb = list(ori_data[i][:-1,:(dim-1)] for i in train_idx) + T_mb = list(ori_time[i]-1 for i in train_idx) + Y_mb = list(np.reshape(ori_data[i][1:,(dim-1)], [len(ori_data[i][1:,(dim-1)]),1]) for i in train_idx) + + # Prediction + pred_Y_curr = sess.run(y_pred, feed_dict={X: X_mb, T: T_mb}) + + # Compute the performance in terms of MAE + MAE_temp = 0 + for i in range(no): + MAE_temp = MAE_temp + mean_absolute_error(Y_mb[i], pred_Y_curr[i,:,:]) + + predictive_score = MAE_temp / no + + return predictive_score + \ No newline at end of file diff --git a/.history/normalize_synthetic_data_20250805012146.py b/.history/normalize_synthetic_data_20250805012146.py new file mode 100644 index 00000000..e69de29b diff --git a/.history/normalize_synthetic_data_20250805012151.py b/.history/normalize_synthetic_data_20250805012151.py new file mode 100644 index 00000000..eefc0b78 --- /dev/null +++ b/.history/normalize_synthetic_data_20250805012151.py @@ -0,0 +1,45 @@ + +```python +import pandas as pd +import numpy as np + +cities = ['Baabda', 'Beirut', 'Bekaa', 'Kesrouan', 'Tripoli'] +all_cities_df = [] + +print("Processing and combining synthetic data for all cities...") + +for city in cities: + print(f"...Processing {city}") + + # 1. Load the specific files for this city + df_synthetic_scaled = pd.read_csv(f'synthetic_data_{city}.csv') + df_synthetic_scaled.columns = ['transaction_number', 'transaction_value'] + + min_max_data = np.load(f'min_max_{city}.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + # 2. Un-scale the data + df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val + + # 3. Create the date range and add the city column + date_range = pd.date_range(start='2017-01-01', periods=len(df_synthetic_denormalized), freq='MS') + df_synthetic_denormalized['date'] = date_range + df_synthetic_denormalized['city'] = city + + # 4. Append to our master list + all_cities_df.append(df_synthetic_denormalized) + +# 5. Concatenate all city dataframes into one final dataframe +final_df = pd.concat(all_cities_df, ignore_index=True) + +# Reorder columns for clarity +final_df = final_df[['date', 'city', 'transaction_number', 'transaction_value']] + +# 6. Save the final, correct file +output_file = 'final_usable_synthetic_data_COMBINED.csv' +final_df.to_csv(output_file, index=False) + +print(f"\nSuccess! All cities combined into '{output_file}'") +print("\nHere is a preview:") +print(final_df.head()) \ No newline at end of file diff --git a/.history/normalize_synthetic_data_20250805012331.py b/.history/normalize_synthetic_data_20250805012331.py new file mode 100644 index 00000000..3406f67a --- /dev/null +++ b/.history/normalize_synthetic_data_20250805012331.py @@ -0,0 +1,44 @@ + +import pandas as pd +import numpy as np + +cities = ['Baabda', 'Beirut', 'Bekaa', 'Kesrouan', 'Tripoli'] +all_cities_df = [] + +print("Processing and combining synthetic data for all cities...") + +for city in cities: + print(f"...Processing {city}") + + # 1. Load the specific files for this city + df_synthetic_scaled = pd.read_csv(f'synthetic_data_{city}.csv') + df_synthetic_scaled.columns = ['transaction_number', 'transaction_value'] + + min_max_data = np.load(f'min_max_{city}.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + # 2. Un-scale the data + df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val + + # 3. Create the date range and add the city column + date_range = pd.date_range(start='2017-01-01', periods=len(df_synthetic_denormalized), freq='MS') + df_synthetic_denormalized['date'] = date_range + df_synthetic_denormalized['city'] = city + + # 4. Append to our master list + all_cities_df.append(df_synthetic_denormalized) + +# 5. Concatenate all city dataframes into one final dataframe +final_df = pd.concat(all_cities_df, ignore_index=True) + +# Reorder columns for clarity +final_df = final_df[['date', 'city', 'transaction_number', 'transaction_value']] + +# 6. Save the final, correct file +output_file = 'final_usable_synthetic_data_COMBINED.csv' +final_df.to_csv(output_file, index=False) + +print(f"\nSuccess! All cities combined into '{output_file}'") +print("\nHere is a preview:") +print(final_df.head()) \ No newline at end of file diff --git a/.history/normalize_synthetic_data_20250805012332.py b/.history/normalize_synthetic_data_20250805012332.py new file mode 100644 index 00000000..d1637780 --- /dev/null +++ b/.history/normalize_synthetic_data_20250805012332.py @@ -0,0 +1,43 @@ +import pandas as pd +import numpy as np + +cities = ['Baabda', 'Beirut', 'Bekaa', 'Kesrouan', 'Tripoli'] +all_cities_df = [] + +print("Processing and combining synthetic data for all cities...") + +for city in cities: + print(f"...Processing {city}") + + # 1. Load the specific files for this city + df_synthetic_scaled = pd.read_csv(f'synthetic_data_{city}.csv') + df_synthetic_scaled.columns = ['transaction_number', 'transaction_value'] + + min_max_data = np.load(f'min_max_{city}.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + # 2. Un-scale the data + df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val + + # 3. Create the date range and add the city column + date_range = pd.date_range(start='2017-01-01', periods=len(df_synthetic_denormalized), freq='MS') + df_synthetic_denormalized['date'] = date_range + df_synthetic_denormalized['city'] = city + + # 4. Append to our master list + all_cities_df.append(df_synthetic_denormalized) + +# 5. Concatenate all city dataframes into one final dataframe +final_df = pd.concat(all_cities_df, ignore_index=True) + +# Reorder columns for clarity +final_df = final_df[['date', 'city', 'transaction_number', 'transaction_value']] + +# 6. Save the final, correct file +output_file = 'final_usable_synthetic_data_COMBINED.csv' +final_df.to_csv(output_file, index=False) + +print(f"\nSuccess! All cities combined into '{output_file}'") +print("\nHere is a preview:") +print(final_df.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134015.py b/.history/process_synthetic_data_20250722134015.py new file mode 100644 index 00000000..e69de29b diff --git a/.history/process_synthetic_data_20250722134039.py b/.history/process_synthetic_data_20250722134039.py new file mode 100644 index 00000000..a0350f11 --- /dev/null +++ b/.history/process_synthetic_data_20250722134039.py @@ -0,0 +1,94 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'city_id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['city_id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134104.py b/.history/process_synthetic_data_20250722134104.py new file mode 100644 index 00000000..65934a28 --- /dev/null +++ b/.history/process_synthetic_data_20250722134104.py @@ -0,0 +1,95 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'city_id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['city_id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134106.py b/.history/process_synthetic_data_20250722134106.py new file mode 100644 index 00000000..1e8f7ca2 --- /dev/null +++ b/.history/process_synthetic_data_20250722134106.py @@ -0,0 +1,95 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + id,date,transaction_number,city,transaction_value + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'city_id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['city_id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134114.py b/.history/process_synthetic_data_20250722134114.py new file mode 100644 index 00000000..09dd61bc --- /dev/null +++ b/.history/process_synthetic_data_20250722134114.py @@ -0,0 +1,95 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'city_id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['city_id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134343.py b/.history/process_synthetic_data_20250722134343.py new file mode 100644 index 00000000..3604a6d5 --- /dev/null +++ b/.history/process_synthetic_data_20250722134343.py @@ -0,0 +1,95 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['city_id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722134400.py b/.history/process_synthetic_data_20250722134400.py new file mode 100644 index 00000000..618d9a9f --- /dev/null +++ b/.history/process_synthetic_data_20250722134400.py @@ -0,0 +1,95 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +# TODO: Define the name of your original city ID column from the CSV. +original_city_column_name = 'id' + +# TODO: Define the name of your original date column from the CSV. +original_date_column_name = 'date' + + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722135144.py b/.history/process_synthetic_data_20250722135144.py new file mode 100644 index 00000000..417e47ee --- /dev/null +++ b/.history/process_synthetic_data_20250722135144.py @@ -0,0 +1,94 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + + 'feature_1', 'feature_2', 'feature_3', # Replace with your real feature names + 'city_1', 'city_2', 'city_3', 'city_4', 'city_5' # The one-hot encoded city columns +] + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722135350.py b/.history/process_synthetic_data_20250722135350.py new file mode 100644 index 00000000..7323d43c --- /dev/null +++ b/.history/process_synthetic_data_20250722135350.py @@ -0,0 +1,100 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order + 'city_Baalbak', # + 'city_Bekaa', # This is newly added + 'city_Beirut', # + 'city_Kesrouan', # + 'city_Tripoli' # +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722154011.py b/.history/process_synthetic_data_20250722154011.py new file mode 100644 index 00000000..608dae8b --- /dev/null +++ b/.history/process_synthetic_data_20250722154011.py @@ -0,0 +1,119 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order + 'city_Baalbak', # + 'city_Bekaa', # This is newly added + 'city_Beirut', # + 'city_Kesrouan', # + 'city_Tripoli' # +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['city_id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['city_id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722154019.py b/.history/process_synthetic_data_20250722154019.py new file mode 100644 index 00000000..1d27ed9d --- /dev/null +++ b/.history/process_synthetic_data_20250722154019.py @@ -0,0 +1,125 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +# Replace the example below with your actual column names: +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order + 'city_Baalbak', # + 'city_Bekaa', # This is newly added + 'city_Beirut', # + 'city_Kesrouan', # + 'city_Tripoli' # +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['city_id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['city_id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174102.py b/.history/process_synthetic_data_20250722174102.py new file mode 100644 index 00000000..c6296e10 --- /dev/null +++ b/.history/process_synthetic_data_20250722174102.py @@ -0,0 +1,124 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Baalbak', + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['city_id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['city_id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174114.py b/.history/process_synthetic_data_20250722174114.py new file mode 100644 index 00000000..f44b504a --- /dev/null +++ b/.history/process_synthetic_data_20250722174114.py @@ -0,0 +1,124 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Baalbak', + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['city_id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174117.py b/.history/process_synthetic_data_20250722174117.py new file mode 100644 index 00000000..9a6e8c0c --- /dev/null +++ b/.history/process_synthetic_data_20250722174117.py @@ -0,0 +1,124 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Baalbak', + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174430.py b/.history/process_synthetic_data_20250722174430.py new file mode 100644 index 00000000..6d72ce77 --- /dev/null +++ b/.history/process_synthetic_data_20250722174430.py @@ -0,0 +1,123 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['city_id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174532.py b/.history/process_synthetic_data_20250722174532.py new file mode 100644 index 00000000..ca685362 --- /dev/null +++ b/.history/process_synthetic_data_20250722174532.py @@ -0,0 +1,123 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city_id' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value +# Then, extract the number 'X' to be the city_id +df_synthetic_denormalized['id'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '').astype(int) + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city_id' column.") + + +# --- Step 5: Add a Date Index --- +# The GAN generates a sequence. We need to give it a realistic time index. +# We create a date range that matches the length of the generated data. +# Customize the start date and frequency ('M' for month, 'D' for day) as needed. +# Create a date range for 6 years (72 months) +date_range_per_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Create a list to hold each city's DataFrame +dfs_by_city = [] + +# Get the list of city IDs from the reconstructed column +city_ids = sorted(df_final['id'].unique()) + +current_row = 0 +for city_id in city_ids: + # Extract the next 72 rows for this city + city_df = df_final.iloc[current_row : current_row + 72].copy() + + # Assign the date range + city_df['date'] = date_range_per_city + + # Update the city_id to be this city's ID + city_df['id'] = city_id + + dfs_by_city.append(city_df) + current_row += 72 + +# Combine all the city DataFrames into one final DataFrame +df_final_structured = pd.concat(dfs_by_city) + +# Set a multi-index of city and date for clarity and easy filtering +df_final_structured = df_final_structured.set_index(['id', 'date']) + +print("-> Reconstructed a structured index with dates from 2017 to 2022 for each city.") + +# --- Step 6: Save the Final, Usable Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722174749.py b/.history/process_synthetic_data_20250722174749.py new file mode 100644 index 00000000..98b5fa3d --- /dev/null +++ b/.history/process_synthetic_data_20250722174749.py @@ -0,0 +1,93 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + +# --- THE REST OF THE SCRIPT SHOULD WORK AUTOMATICALLY --- + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv') + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- + +# Load and process the original data exactly as the GAN did +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# Ensure the column order matches what the model was trained on +df_original = df_original[column_names] + +# Calculate the min and max values for each column +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +# Formula: original_value = normalized_value * (max - min) + min +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + +city_cols = [col for col in column_names if col.startswith('city_')] + +# For each row, find which 'city_X' column has the highest value. +# Then, remove the 'city_' prefix to get the city name. +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') + +# Drop the now-redundant one-hot encoded columns +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Add a Date Index --- +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722175136.py b/.history/process_synthetic_data_20250722175136.py new file mode 100644 index 00000000..de82025c --- /dev/null +++ b/.history/process_synthetic_data_20250722175136.py @@ -0,0 +1,88 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + + + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + # THIS IS THE FIX: Only read the first 360 rows. + df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) + + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_id_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_id_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +df_original = df_original[column_names] +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Add a Date Index --- +date_range = pd.date_range(start='2017-01-01', periods=len(df_final), freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) diff --git a/.history/process_synthetic_data_20250722180039.py b/.history/process_synthetic_data_20250722180039.py new file mode 100644 index 00000000..4c368290 --- /dev/null +++ b/.history/process_synthetic_data_20250722180039.py @@ -0,0 +1,88 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + + + +print("Starting the reverse transformation process...") + +# --- Step 1: Load and Rename the Raw Synthetic Data --- +try: + # THIS IS THE FIX: Only read the first 360 rows. + df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) + + # The raw CSV has headers '0', '1', '2', etc. We replace them. + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max Values from Original Data for Denormalization --- +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_id_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_id_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +df_original = df_original[column_names] +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data for denormalization.") + + +# --- Step 3: Denormalize the Synthetic Data --- +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized to its original scale.") + + +# --- Step 4: Reconstruct the 'city' Column from One-Hot Encoding --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Add a Date Index --- +date_range = pd.date_range(start='2017-01-01', periods=72, freq='M') +df_final.set_index(date_range, inplace=True) +df_final.index.name = 'date' +print("-> Added a date index.") + + +# --- Step 6: Save the Final, Usable Data --- +df_final.to_csv('final_usable_synthetic_data.csv') +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final.head()) diff --git a/.history/process_synthetic_data_20250722180359.py b/.history/process_synthetic_data_20250722180359.py new file mode 100644 index 00000000..49a01860 --- /dev/null +++ b/.history/process_synthetic_data_20250722180359.py @@ -0,0 +1,110 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + + + + +print("Starting the reverse transformation process...") + +# --- Step 1: Load Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max for Denormalization --- +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_id_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_id_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +df_original = df_original[column_names] +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data.") + + +# --- Step 3: Denormalize Synthetic Data --- +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized.") + + +# --- Step 4: Reconstruct 'city' Column --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Create a Structured DataFrame with Correct Dates --- +# THIS IS THE FINAL, CORRECTED LOGIC +# Since the data is 72 months for 5 cities, we structure it that way. + +# Create one 72-month date range (6 years) +date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='M') + +# Get the unique city names from the newly created 'city' column +cities = df_final['city'].unique() + +# Create a new DataFrame by repeating the date range for each city +structured_dfs = [] +for city_name in cities: + temp_df = pd.DataFrame({ + 'date': date_range_single_city, + 'city': city_name + }) + structured_dfs.append(temp_df) + +final_index_df = pd.concat(structured_dfs, ignore_index=True) + +# Combine the new date/city columns with your synthetic data +# This assumes df_final is already ordered by city (which it should be) +df_final.reset_index(drop=True, inplace=True) +final_index_df.reset_index(drop=True, inplace=True) + +df_final_structured = pd.concat([final_index_df, df_final], axis=1) + +print("-> Created a structured final DataFrame.") + + +# --- Step 6: Save the Final Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722181058.py b/.history/process_synthetic_data_20250722181058.py new file mode 100644 index 00000000..5e951e47 --- /dev/null +++ b/.history/process_synthetic_data_20250722181058.py @@ -0,0 +1,100 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + + +print("Starting the reverse transformation process...") + +# --- Step 1: Load Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max for Denormalization --- +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_id_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_id_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +df_original = df_original[column_names] +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data.") + + +# --- Step 3: Denormalize Synthetic Data --- +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized.") + + +# --- Step 4: Reconstruct 'city' Column --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Create a Structured DataFrame with Correct Dates --- +date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='M') +cities = sorted(df_final['city'].unique()) # Sort to ensure consistent order + +structured_dfs = [] +for city_name in cities: + temp_df = pd.DataFrame({ + 'date': date_range_single_city, + 'city': city_name + }) + structured_dfs.append(temp_df) + +final_index_df = pd.concat(structured_dfs, ignore_index=True) + +# THIS IS THE FIX: We only want the data part from df_final, not its flawed 'city' column +df_final_data_only = df_final.drop(columns=['city']) + +# Combine the structured date/city columns with the synthetic data values +df_final_structured = pd.concat([final_index_df, df_final_data_only], axis=1) + +print("-> Created a structured final DataFrame.") + + +# --- Step 6: Save the Final Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250722182917.py b/.history/process_synthetic_data_20250722182917.py new file mode 100644 index 00000000..3dc68110 --- /dev/null +++ b/.history/process_synthetic_data_20250722182917.py @@ -0,0 +1,30 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + diff --git a/.history/process_synthetic_data_20250722182919.py b/.history/process_synthetic_data_20250722182919.py new file mode 100644 index 00000000..e92fead7 --- /dev/null +++ b/.history/process_synthetic_data_20250722182919.py @@ -0,0 +1,104 @@ +import pandas as pd +import numpy as np + +# --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# TODO: Define the column names in the exact order they went into the model. +# To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# function right before the `ori_data = df.values` line and run the main script again. +# The console output will give you the exact list you need here. +# +# EXAMPLE: +# column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', # Alphabetical order is crucial + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] + + +original_city_column_name = 'city' + +# TODO: Define the name of your original date and id columns from the CSV. +original_date_column_name = 'date' +original_id_column_name = 'id' + + + +print("Starting the reverse transformation process...") + +# --- Step 1: Load Raw Synthetic Data --- +try: + df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) + df_synthetic.columns = column_names + print("-> Successfully loaded and renamed raw synthetic data.") +except FileNotFoundError: + print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") + exit() + + +# --- Step 2: Calculate Min/Max for Denormalization --- +df_original = pd.read_csv('data/transaction_data.csv') +if original_date_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_date_column_name]) +if original_id_column_name in df_original.columns: + df_original = df_original.drop(columns=[original_id_column_name]) +if original_city_column_name in df_original.columns: + df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +df_original = df_original[column_names] +min_vals = df_original.min(axis=0) +max_vals = df_original.max(axis=0) +print("-> Calculated min/max values from original data.") + + +# --- Step 3: Denormalize Synthetic Data --- +df_synthetic_denormalized = df_synthetic.copy() +for col in column_names: + df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +print("-> Synthetic data has been denormalized.") + + +# --- Step 4: Reconstruct 'city' Column --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed 'city' column with text names.") + + +# --- Step 5: Create a Structured DataFrame with Correct Dates --- +# THIS IS THE FIX: Use 'MS' for Month Start frequency to match your original data. +date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='MS') + +cities = sorted(df_final_data_only['city'].unique()) # Using the correct df + +structured_dfs = [] +for city_name in cities: + temp_df = pd.DataFrame({ + 'date': date_range_single_city, + 'city': city_name + }) + structured_dfs.append(temp_df) + +final_index_df = pd.concat(structured_dfs, ignore_index=True) + +df_final_data_only.reset_index(drop=True, inplace=True) +final_index_df.reset_index(drop=True, inplace=True) + +# Drop the flawed city column from the data part before combining +df_final_data_only = df_final_data_only.drop(columns=['city']) +df_final_structured = pd.concat([final_index_df, df_final_data_only], axis=1) + +print("-> Created a structured final DataFrame.") + + +# --- Step 6: Save the Final Data --- +df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250805004839.py b/.history/process_synthetic_data_20250805004839.py new file mode 100644 index 00000000..0b75012c --- /dev/null +++ b/.history/process_synthetic_data_20250805004839.py @@ -0,0 +1,104 @@ +# import pandas as pd +# import numpy as np + +# # --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# # TODO: Define the column names in the exact order they went into the model. +# # To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# # function right before the `ori_data = df.values` line and run the main script again. +# # The console output will give you the exact list you need here. +# # +# # EXAMPLE: +# # column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# # +# column_names = [ +# 'transaction_number', +# 'transaction_value', +# 'city_Baabda', # Alphabetical order is crucial +# 'city_Bekaa', +# 'city_Beirut', +# 'city_Kesrouan', +# 'city_Tripoli' +# ] + + +# original_city_column_name = 'city' + +# # TODO: Define the name of your original date and id columns from the CSV. +# original_date_column_name = 'date' +# original_id_column_name = 'id' + + + +# print("Starting the reverse transformation process...") + +# # --- Step 1: Load Raw Synthetic Data --- +# try: +# df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) +# df_synthetic.columns = column_names +# print("-> Successfully loaded and renamed raw synthetic data.") +# except FileNotFoundError: +# print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") +# exit() + + +# # --- Step 2: Calculate Min/Max for Denormalization --- +# df_original = pd.read_csv('data/transaction_data.csv') +# if original_date_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_date_column_name]) +# if original_id_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_id_column_name]) +# if original_city_column_name in df_original.columns: +# df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# df_original = df_original[column_names] +# min_vals = df_original.min(axis=0) +# max_vals = df_original.max(axis=0) +# print("-> Calculated min/max values from original data.") + + +# # --- Step 3: Denormalize Synthetic Data --- +# df_synthetic_denormalized = df_synthetic.copy() +# for col in column_names: +# df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +# print("-> Synthetic data has been denormalized.") + + +# # --- Step 4: Reconstruct 'city' Column --- +# city_cols = [col for col in column_names if col.startswith('city_')] +# df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +# df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +# print("-> Reconstructed 'city' column with text names.") + + +# # --- Step 5: Create a Structured DataFrame with Correct Dates --- +# # THIS IS THE FIX: Use 'MS' for Month Start frequency to match your original data. +# date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='MS') + +# cities = sorted(df_final_data_only['city'].unique()) # Using the correct df + +# structured_dfs = [] +# for city_name in cities: +# temp_df = pd.DataFrame({ +# 'date': date_range_single_city, +# 'city': city_name +# }) +# structured_dfs.append(temp_df) + +# final_index_df = pd.concat(structured_dfs, ignore_index=True) + +# df_final_data_only.reset_index(drop=True, inplace=True) +# final_index_df.reset_index(drop=True, inplace=True) + +# # Drop the flawed city column from the data part before combining +# df_final_data_only = df_final_data_only.drop(columns=['city']) +# df_final_structured = pd.concat([final_index_df, df_final_data_only], axis=1) + +# print("-> Created a structured final DataFrame.") + + +# # --- Step 6: Save the Final Data --- +# df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +# print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +# print("\nHere is a preview:") +# print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/process_synthetic_data_20250805004841.py b/.history/process_synthetic_data_20250805004841.py new file mode 100644 index 00000000..41844e29 --- /dev/null +++ b/.history/process_synthetic_data_20250805004841.py @@ -0,0 +1,172 @@ +# import pandas as pd +# import numpy as np + +# # --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# # TODO: Define the column names in the exact order they went into the model. +# # To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# # function right before the `ori_data = df.values` line and run the main script again. +# # The console output will give you the exact list you need here. +# # +# # EXAMPLE: +# # column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# # +# column_names = [ +# 'transaction_number', +# 'transaction_value', +# 'city_Baabda', # Alphabetical order is crucial +# 'city_Bekaa', +# 'city_Beirut', +# 'city_Kesrouan', +# 'city_Tripoli' +# ] + + +# original_city_column_name = 'city' + +# # TODO: Define the name of your original date and id columns from the CSV. +# original_date_column_name = 'date' +# original_id_column_name = 'id' + + + +# print("Starting the reverse transformation process...") + +# # --- Step 1: Load Raw Synthetic Data --- +# try: +# df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) +# df_synthetic.columns = column_names +# print("-> Successfully loaded and renamed raw synthetic data.") +# except FileNotFoundError: +# print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") +# exit() + + +# # --- Step 2: Calculate Min/Max for Denormalization --- +# df_original = pd.read_csv('data/transaction_data.csv') +# if original_date_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_date_column_name]) +# if original_id_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_id_column_name]) +# if original_city_column_name in df_original.columns: +# df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# df_original = df_original[column_names] +# min_vals = df_original.min(axis=0) +# max_vals = df_original.max(axis=0) +# print("-> Calculated min/max values from original data.") + + +# # --- Step 3: Denormalize Synthetic Data --- +# df_synthetic_denormalized = df_synthetic.copy() +# for col in column_names: +# df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +# print("-> Synthetic data has been denormalized.") + + +# # --- Step 4: Reconstruct 'city' Column --- +# city_cols = [col for col in column_names if col.startswith('city_')] +# df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +# df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +# print("-> Reconstructed 'city' column with text names.") + + +# # --- Step 5: Create a Structured DataFrame with Correct Dates --- +# # THIS IS THE FIX: Use 'MS' for Month Start frequency to match your original data. +# date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='MS') + +# cities = sorted(df_final_data_only['city'].unique()) # Using the correct df + +# structured_dfs = [] +# for city_name in cities: +# temp_df = pd.DataFrame({ +# 'date': date_range_single_city, +# 'city': city_name +# }) +# structured_dfs.append(temp_df) + +# final_index_df = pd.concat(structured_dfs, ignore_index=True) + +# df_final_data_only.reset_index(drop=True, inplace=True) +# final_index_df.reset_index(drop=True, inplace=True) + +# # Drop the flawed city column from the data part before combining +# df_final_data_only = df_final_data_only.drop(columns=['city']) +# df_final_structured = pd.concat([final_index_df, df_final_data_only], axis=1) + +# print("-> Created a structured final DataFrame.") + + +# # --- Step 6: Save the Final Data --- +# df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +# print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +# print("\nHere is a preview:") +# print(df_final_structured.head()) + +import pandas as pd +import numpy as np + +# --- Customize this section with your column names --- +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] +# ------------------------------------ + +print("Starting the un-scaling process...") + +# --- Step 1: Load the raw synthetic data and our saved min/max values --- +try: + df_synthetic_scaled = pd.read_csv('synthetic_data.csv') + df_synthetic_scaled.columns = column_names + + # Load the min and max values we saved from training + min_max_data = np.load('min_max_values.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + print("-> Loaded synthetic data and min/max values successfully.") + +except FileNotFoundError as e: + print(f"Error: {e}. Did you run main_timegan.py after modifying data_loading.py?") + exit() + +# --- Step 2: Un-scale the data using the correct formula --- +# This is the inverse of the formula: (data - min) / (max - min) +df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val +print("-> Un-scaling complete.") + +# --- Step 3: Reconstruct the 'city' column --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed the 'city' column.") + +# --- Step 4: Create the final, structured DataFrame with dates --- +# Get the number of cities and the number of time steps per city +num_cities = len(df_final_data_only['city'].unique()) +timesteps_per_city = len(df_final_data_only) // num_cities + +date_range = pd.date_range(start='2017-01-01', periods=timesteps_per_city, freq='MS') +cities = sorted(df_final_data_only['city'].unique()) +full_date_range = np.tile(date_range, num_cities) +full_city_list = np.repeat(cities, len(date_range)) + +df_final_structured = pd.DataFrame({'date': full_date_range, 'city': full_city_list}) + +# Sort the data by city to ensure it aligns correctly before concatenating +df_final_data_only = df_final_data_only.sort_values(by=['city']).reset_index(drop=True) +df_final_structured = pd.concat([df_final_structured, df_final_data_only.drop('city', axis=1)], axis=1) +print("-> Created the final structured DataFrame.") + +# --- Step 5: Save the final, usable data --- +output_file = 'final_usable_synthetic_data.csv' +df_final_structured.to_csv(output_file, index=False) +print(f"\nSuccess! Your final data is saved in '{output_file}'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/.history/requirements_20250718171958.txt b/.history/requirements_20250718171958.txt new file mode 100644 index 00000000..34db7e4c --- /dev/null +++ b/.history/requirements_20250718171958.txt @@ -0,0 +1,8 @@ +numpy>=1.17.2 +tensorflow==1.15.0 +tqdm>=4.36.1 +argparse>=1.1 +pandas>=0.25.1 +scikit-learn>=0.21.3 +matplotlib>=3.1.1 +protobuf==3.20.3 diff --git a/.history/requirements_20250720223149.txt b/.history/requirements_20250720223149.txt new file mode 100644 index 00000000..324265c4 --- /dev/null +++ b/.history/requirements_20250720223149.txt @@ -0,0 +1,7 @@ +numpy>=1.17.2 tensorflow==1.15.0 +tqdm>=4.36.1 +argparse>=1.1 +pandas>=0.25.1 +scikit-learn>=0.21.3 +matplotlib>=3.1.1 +protobuf==3.20.3 diff --git a/.history/requirements_20250720223155.txt b/.history/requirements_20250720223155.txt new file mode 100644 index 00000000..0f7fd5b2 --- /dev/null +++ b/.history/requirements_20250720223155.txt @@ -0,0 +1,6 @@ +numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 +argparse>=1.1 +pandas>=0.25.1 +scikit-learn>=0.21.3 +matplotlib>=3.1.1 +protobuf==3.20.3 diff --git a/.history/requirements_20250720223158.txt b/.history/requirements_20250720223158.txt new file mode 100644 index 00000000..51953279 --- /dev/null +++ b/.history/requirements_20250720223158.txt @@ -0,0 +1,5 @@ +numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 argparse>=1.1 +pandas>=0.25.1 +scikit-learn>=0.21.3 +matplotlib>=3.1.1 +protobuf==3.20.3 diff --git a/.history/requirements_20250720223201.txt b/.history/requirements_20250720223201.txt new file mode 100644 index 00000000..a6d78841 --- /dev/null +++ b/.history/requirements_20250720223201.txt @@ -0,0 +1,2 @@ +numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 argparse>=1.1 pandas>=0.25.1 scikit-learn>=0.21.3 matplotlib>=3.1.1 +protobuf==3.20.3 diff --git a/.history/requirements_20250720223207.txt b/.history/requirements_20250720223207.txt new file mode 100644 index 00000000..a13a7ee3 --- /dev/null +++ b/.history/requirements_20250720223207.txt @@ -0,0 +1 @@ +numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 argparse>=1.1 pandas>=0.25.1 scikit-learn>=0.21.3 matplotlib>=3.1.1 protobuf==3.20.3 diff --git a/.history/requirements_20250720223211.txt b/.history/requirements_20250720223211.txt new file mode 100644 index 00000000..082e6774 --- /dev/null +++ b/.history/requirements_20250720223211.txt @@ -0,0 +1 @@ + numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 argparse>=1.1 pandas>=0.25.1 scikit-learn>=0.21.3 matplotlib>=3.1.1 protobuf==3.20.3 diff --git a/.history/timegan_20250718171958.py b/.history/timegan_20250718171958.py new file mode 100644 index 00000000..05a2c658 --- /dev/null +++ b/.history/timegan_20250718171958.py @@ -0,0 +1,307 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" + +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250720215623.py b/.history/timegan_20250720215623.py new file mode 100644 index 00000000..a060e2a7 --- /dev/null +++ b/.history/timegan_20250720215623.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250720220354.py b/.history/timegan_20250720220354.py new file mode 100644 index 00000000..ca2d27c4 --- /dev/null +++ b/.history/timegan_20250720220354.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # This line is crucial +# Necessary Packages +# import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250720220358.py b/.history/timegan_20250720220358.py new file mode 100644 index 00000000..083c5c35 --- /dev/null +++ b/.history/timegan_20250720220358.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +# import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250720234909.py b/.history/timegan_20250720234909.py new file mode 100644 index 00000000..2ed1bdd7 --- /dev/null +++ b/.history/timegan_20250720234909.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250720234913.py b/.history/timegan_20250720234913.py new file mode 100644 index 00000000..22a8b9b3 --- /dev/null +++ b/.history/timegan_20250720234913.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250722141910.py b/.history/timegan_20250722141910.py new file mode 100644 index 00000000..c7f9b2f6 --- /dev/null +++ b/.history/timegan_20250722141910.py @@ -0,0 +1,308 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) + + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250722154054.py b/.history/timegan_20250722154054.py new file mode 100644 index 00000000..0b0fa7eb --- /dev/null +++ b/.history/timegan_20250722154054.py @@ -0,0 +1,309 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805012801.py b/.history/timegan_20250805012801.py new file mode 100644 index 00000000..1fed4428 --- /dev/null +++ b/.history/timegan_20250805012801.py @@ -0,0 +1,309 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805012803.py b/.history/timegan_20250805012803.py new file mode 100644 index 00000000..f5c18645 --- /dev/null +++ b/.history/timegan_20250805012803.py @@ -0,0 +1,311 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator +Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805012807.py b/.history/timegan_20250805012807.py new file mode 100644 index 00000000..adabd5de --- /dev/null +++ b/.history/timegan_20250805012807.py @@ -0,0 +1,311 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805012935.py b/.history/timegan_20250805012935.py new file mode 100644 index 00000000..353a3f4a --- /dev/null +++ b/.history/timegan_20250805012935.py @@ -0,0 +1,312 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]). + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805012938.py b/.history/timegan_20250805012938.py new file mode 100644 index 00000000..4d00c686 --- /dev/null +++ b/.history/timegan_20250805012938.py @@ -0,0 +1,312 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013010.py b/.history/timegan_20250805013010.py new file mode 100644 index 00000000..f59ca410 --- /dev/null +++ b/.history/timegan_20250805013010.py @@ -0,0 +1,312 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013011.py b/.history/timegan_20250805013011.py new file mode 100644 index 00000000..d67cb0c2 --- /dev/null +++ b/.history/timegan_20250805013011.py @@ -0,0 +1,313 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013016.py b/.history/timegan_20250805013016.py new file mode 100644 index 00000000..cc5d21fa --- /dev/null +++ b/.history/timegan_20250805013016.py @@ -0,0 +1,314 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again +Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013020.py b/.history/timegan_20250805013020.py new file mode 100644 index 00000000..aac5483d --- /dev/null +++ b/.history/timegan_20250805013020.py @@ -0,0 +1,314 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013431.py b/.history/timegan_20250805013431.py new file mode 100644 index 00000000..22cf7d94 --- /dev/null +++ b/.history/timegan_20250805013431.py @@ -0,0 +1,315 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013433.py b/.history/timegan_20250805013433.py new file mode 100644 index 00000000..9fe63d3b --- /dev/null +++ b/.history/timegan_20250805013433.py @@ -0,0 +1,315 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013438.py b/.history/timegan_20250805013438.py new file mode 100644 index 00000000..daeac8a3 --- /dev/null +++ b/.history/timegan_20250805013438.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again# Use the new simplified random_generator again +Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805013441.py b/.history/timegan_20250805013441.py new file mode 100644 index 00000000..5e04bcf0 --- /dev/null +++ b/.history/timegan_20250805013441.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014208.py b/.history/timegan_20250805014208.py new file mode 100644 index 00000000..5e04bcf0 --- /dev/null +++ b/.history/timegan_20250805014208.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014209.py b/.history/timegan_20250805014209.py new file mode 100644 index 00000000..7e5cdae1 --- /dev/null +++ b/.history/timegan_20250805014209.py @@ -0,0 +1,315 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + +X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") +Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") +T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014213.py b/.history/timegan_20250805014213.py new file mode 100644 index 00000000..8d6cef66 --- /dev/null +++ b/.history/timegan_20250805014213.py @@ -0,0 +1,315 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014216.py b/.history/timegan_20250805014216.py new file mode 100644 index 00000000..5e04bcf0 --- /dev/null +++ b/.history/timegan_20250805014216.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014220.py b/.history/timegan_20250805014220.py new file mode 100644 index 00000000..6a90a806 --- /dev/null +++ b/.history/timegan_20250805014220.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014223.py b/.history/timegan_20250805014223.py new file mode 100644 index 00000000..44fd6d66 --- /dev/null +++ b/.history/timegan_20250805014223.py @@ -0,0 +1,319 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") +Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") +T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014229.py b/.history/timegan_20250805014229.py new file mode 100644 index 00000000..1fa315af --- /dev/null +++ b/.history/timegan_20250805014229.py @@ -0,0 +1,316 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014338.py b/.history/timegan_20250805014338.py new file mode 100644 index 00000000..f0e0d370 --- /dev/null +++ b/.history/timegan_20250805014338.py @@ -0,0 +1,317 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014415.py b/.history/timegan_20250805014415.py new file mode 100644 index 00000000..65ec0e02 --- /dev/null +++ b/.history/timegan_20250805014415.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014417.py b/.history/timegan_20250805014417.py new file mode 100644 index 00000000..7d250da5 --- /dev/null +++ b/.history/timegan_20250805014417.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014432.py b/.history/timegan_20250805014432.py new file mode 100644 index 00000000..fdf829ba --- /dev/null +++ b/.history/timegan_20250805014432.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014434.py b/.history/timegan_20250805014434.py new file mode 100644 index 00000000..4bcc9ed1 --- /dev/null +++ b/.history/timegan_20250805014434.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(4): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014500.py b/.history/timegan_20250805014500.py new file mode 100644 index 00000000..45476e5d --- /dev/null +++ b/.history/timegan_20250805014500.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014524.py b/.history/timegan_20250805014524.py new file mode 100644 index 00000000..bea65082 --- /dev/null +++ b/.history/timegan_20250805014524.py @@ -0,0 +1,317 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014527.py b/.history/timegan_20250805014527.py new file mode 100644 index 00000000..1c6d5c5f --- /dev/null +++ b/.history/timegan_20250805014527.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014534.py b/.history/timegan_20250805014534.py new file mode 100644 index 00000000..547ee73b --- /dev/null +++ b/.history/timegan_20250805014534.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014535.py b/.history/timegan_20250805014535.py new file mode 100644 index 00000000..dd9f8a4b --- /dev/null +++ b/.history/timegan_20250805014535.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014537.py b/.history/timegan_20250805014537.py new file mode 100644 index 00000000..547ee73b --- /dev/null +++ b/.history/timegan_20250805014537.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator again + Z_mb = random_generator(batch_size, z_dim, ori_seq_len) + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014555.py b/.history/timegan_20250805014555.py new file mode 100644 index 00000000..56004d78 --- /dev/null +++ b/.history/timegan_20250805014555.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014600.py b/.history/timegan_20250805014600.py new file mode 100644 index 00000000..931fcf15 --- /dev/null +++ b/.history/timegan_20250805014600.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014621.py b/.history/timegan_20250805014621.py new file mode 100644 index 00000000..30d95d69 --- /dev/null +++ b/.history/timegan_20250805014621.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) +generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time})) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014623.py b/.history/timegan_20250805014623.py new file mode 100644 index 00000000..0fb10694 --- /dev/null +++ b/.history/timegan_20250805014623.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time})) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014733.py b/.history/timegan_20250805014733.py new file mode 100644 index 00000000..ed012f65 --- /dev/null +++ b/.history/timegan_20250805014733.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014807.py b/.history/timegan_20250805014807.py new file mode 100644 index 00000000..3074c091 --- /dev/null +++ b/.history/timegan_20250805014807.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014808.py b/.history/timegan_20250805014808.py new file mode 100644 index 00000000..ed012f65 --- /dev/null +++ b/.history/timegan_20250805014808.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # # Input place holders + # X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + # Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + # T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_20250805014958.py b/.history/timegan_20250805014958.py new file mode 100644 index 00000000..ea27d23f --- /dev/null +++ b/.history/timegan_20250805014958.py @@ -0,0 +1,318 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +timegan.py + +Note: Use original data as training set to generater synthetic data (time-series) +""" +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial +# Necessary Packages +import tensorflow as tf +import numpy as np +from utils import extract_time, rnn_cell, random_generator, batch_generator + + +def timegan (ori_data, parameters): + """TimeGAN function. + + Use original data as training set to generater synthetic data (time-series) + + Args: + - ori_data: original time-series data + - parameters: TimeGAN network parameters + + Returns: + - generated_data: generated time-series data + """ + # Initialization on the Graph + tf.reset_default_graph() + + # Basic Parameters + no, seq_len, dim = np.asarray(ori_data).shape + + # Maximum sequence length and each sequence length + ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) + + def MinMaxScaler(data): + """Min-Max Normalizer. + + Args: + - data: raw data + + Returns: + - norm_data: normalized data + - min_val: minimum values (for renormalization) + - max_val: maximum values (for renormalization) + """ + min_val = np.min(np.min(data, axis = 0), axis = 0) + data = data - min_val + + max_val = np.max(np.max(data, axis = 0), axis = 0) + norm_data = data / (max_val + 1e-7) + + return norm_data, min_val, max_val + + # Normalization + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + ## Build a RNN networks + + # Network Parameters + hidden_dim = parameters['hidden_dim'] + num_layers = parameters['num_layer'] + iterations = parameters['iterations'] + batch_size = parameters['batch_size'] + module_name = parameters['module'] + z_dim = dim + gamma = 1 + + # Input place holders + X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") + Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") + T = tf.placeholder(tf.int32, [None], name = "myinput_t") + + def embedder (X, T): + """Embedding network between original feature space to latent space. + + Args: + - X: input time-series features + - T: input time information + + Returns: + - H: embeddings + """ + with tf.variable_scope("embedder", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, X, dtype=tf.float32, sequence_length = T) + H = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return H + + def recovery (H, T): + """Recovery network from latent space to original space. + + Args: + - H: latent representation + - T: input time information + + Returns: + - X_tilde: recovered data + """ + with tf.variable_scope("recovery", reuse = tf.AUTO_REUSE): + r_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + r_outputs, r_last_states = tf.nn.dynamic_rnn(r_cell, H, dtype=tf.float32, sequence_length = T) + X_tilde = tf.contrib.layers.fully_connected(r_outputs, dim, activation_fn=tf.nn.sigmoid) + return X_tilde + + def generator (Z, T): + """Generator function: Generate time-series data in latent space. + + Args: + - Z: random variables + - T: input time information + + Returns: + - E: generated embedding + """ + with tf.variable_scope("generator", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, Z, dtype=tf.float32, sequence_length = T) + E = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return E + + def supervisor (H, T): + """Generate next sequence using the previous sequence. + + Args: + - H: latent representation + - T: input time information + + Returns: + - S: generated sequence based on the latent representations generated by the generator + """ + with tf.variable_scope("supervisor", reuse = tf.AUTO_REUSE): + e_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers-1)]) + e_outputs, e_last_states = tf.nn.dynamic_rnn(e_cell, H, dtype=tf.float32, sequence_length = T) + S = tf.contrib.layers.fully_connected(e_outputs, hidden_dim, activation_fn=tf.nn.sigmoid) + return S + + def discriminator (H, T): + """Discriminate the original and synthetic time-series data. + + Args: + - H: latent representation + - T: input time information + + Returns: + - Y_hat: classification results between original and synthetic time-series + """ + with tf.variable_scope("discriminator", reuse = tf.AUTO_REUSE): + d_cell = tf.nn.rnn_cell.MultiRNNCell([rnn_cell(module_name, hidden_dim) for _ in range(num_layers)]) + d_outputs, d_last_states = tf.nn.dynamic_rnn(d_cell, H, dtype=tf.float32, sequence_length = T) + Y_hat = tf.contrib.layers.fully_connected(d_outputs, 1, activation_fn=None) + return Y_hat + + # Embedder & Recovery + H = embedder(X, T) + X_tilde = recovery(H, T) + + # Generator + E_hat = generator(Z, T) + H_hat = supervisor(E_hat, T) + H_hat_supervise = supervisor(H, T) + + # Synthetic data + X_hat = recovery(H_hat, T) + + # Discriminator + Y_fake = discriminator(H_hat, T) + Y_real = discriminator(H, T) + Y_fake_e = discriminator(E_hat, T) + + # Variables + e_vars = [v for v in tf.trainable_variables() if v.name.startswith('embedder')] + r_vars = [v for v in tf.trainable_variables() if v.name.startswith('recovery')] + g_vars = [v for v in tf.trainable_variables() if v.name.startswith('generator')] + s_vars = [v for v in tf.trainable_variables() if v.name.startswith('supervisor')] + d_vars = [v for v in tf.trainable_variables() if v.name.startswith('discriminator')] + + # Discriminator loss + D_loss_real = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_real), Y_real) + D_loss_fake = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake), Y_fake) + D_loss_fake_e = tf.losses.sigmoid_cross_entropy(tf.zeros_like(Y_fake_e), Y_fake_e) + D_loss = D_loss_real + D_loss_fake + gamma * D_loss_fake_e + + # Generator loss + # 1. Adversarial loss + G_loss_U = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake), Y_fake) + G_loss_U_e = tf.losses.sigmoid_cross_entropy(tf.ones_like(Y_fake_e), Y_fake_e) + + # 2. Supervised loss + G_loss_S = tf.losses.mean_squared_error(H[:,1:,:], H_hat_supervise[:,:-1,:]) + + # 3. Two Momments + G_loss_V1 = tf.reduce_mean(tf.abs(tf.sqrt(tf.nn.moments(X_hat,[0])[1] + 1e-6) - tf.sqrt(tf.nn.moments(X,[0])[1] + 1e-6))) + G_loss_V2 = tf.reduce_mean(tf.abs((tf.nn.moments(X_hat,[0])[0]) - (tf.nn.moments(X,[0])[0]))) + + G_loss_V = G_loss_V1 + G_loss_V2 + + # 4. Summation + G_loss = G_loss_U + gamma * G_loss_U_e + 100 * tf.sqrt(G_loss_S) + 100*G_loss_V + + # Embedder network loss + E_loss_T0 = tf.losses.mean_squared_error(X, X_tilde) + E_loss0 = 10*tf.sqrt(E_loss_T0) + E_loss = E_loss0 + 0.1*G_loss_S + + # optimizer + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) + ## TimeGAN training + sess = tf.Session() + sess.run(tf.global_variables_initializer()) + + # 1. Embedding network training + print('Start Embedding Network Training') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) + # Train embedder + _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + ', e_loss: ' + str(np.round(np.sqrt(step_e_loss),4)) ) + + print('Finish Embedding Network Training') + + # 2. Training only with supervised loss + print('Start Training with Supervised Loss Only') + + for itt in range(iterations): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # Random vector generation + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) + # Train generator + _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Checkpoint + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) +', s_loss: ' + str(np.round(np.sqrt(step_g_loss_s),4)) ) + + print('Finish Training with Supervised Loss Only') + + # 3. Joint Training + print('Start Joint Training') + + for itt in range(iterations): + # Generator training (twice more than discriminator training) + for kk in range(2): + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Train generator + _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + + # Discriminator training + # Set mini-batch + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) + # Random vector generation + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE + # Check discriminator loss before updating + check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + # Train discriminator (only when the discriminator does not work well) + if (check_d_loss > 0.15): + _, step_d_loss = sess.run([D_solver, D_loss], feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) + + # Print multiple checkpoints + if itt % 1000 == 0: + print('step: '+ str(itt) + '/' + str(iterations) + + ', d_loss: ' + str(np.round(step_d_loss,4)) + + ', g_loss_u: ' + str(np.round(step_g_loss_u,4)) + + ', g_loss_s: ' + str(np.round(np.sqrt(step_g_loss_s),4)) + + ', g_loss_v: ' + str(np.round(step_g_loss_v,4)) + + ', e_loss_t0: ' + str(np.round(np.sqrt(step_e_loss_t0),4)) ) + print('Finish Joint Training') + + ## Synthetic data generation + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + + generated_data = list() + + for i in range(no): + temp = generated_data_curr[i,:ori_time[i],:] + generated_data.append(temp) + + # Renormalization + generated_data = generated_data * max_val + generated_data = generated_data + min_val + + return generated_data diff --git a/.history/timegan_arch_20250802220403.py b/.history/timegan_arch_20250802220403.py new file mode 100644 index 00000000..e69de29b diff --git a/.history/timegan_arch_20250802220544.py b/.history/timegan_arch_20250802220544.py new file mode 100644 index 00000000..fa3178e4 --- /dev/null +++ b/.history/timegan_arch_20250802220544.py @@ -0,0 +1,35 @@ +from graphviz import Digraph + +# Create a directed graph +dot = Digraph(comment='TimeGAN Architecture', format='pdf') + +# Nodes for real data path +dot.node('X', 'Real Time-Series Data X') +dot.node('E', 'Embedder') +dot.node('H', 'Latent Representation H') +dot.node('R', 'Recovery') +dot.node('XT', 'Reconstructed X_tilde') + +# Nodes for synthetic data path +dot.node('Z', 'Random Noise Z') +dot.node('G', 'Generator') +dot.node('HT', 'Latent Synthetic H_tilde') +dot.node('S', 'Supervisor') +dot.node('HH', 'H_hat (time-consistent latent)') + +# Discriminator +dot.node('D', 'Discriminator') + +# Real data path edges +dot.edges([('X', 'E'), ('E', 'H'), ('H', 'R'), ('R', 'XT')]) + +# Synthetic data path edges +dot.edges([('Z', 'G'), ('G', 'HT'), ('HT', 'S'), ('S', 'HH')]) + +# Discriminator edges +dot.edge('H', 'D') +dot.edge('HH', 'D') + +# Render as PDF +dot.render("timegan_architecture.pdf", view=True) + diff --git a/.history/timegan_arch_20250802221021.py b/.history/timegan_arch_20250802221021.py new file mode 100644 index 00000000..a2166ea6 --- /dev/null +++ b/.history/timegan_arch_20250802221021.py @@ -0,0 +1,34 @@ +from graphviz import Digraph + +# Define the TimeGAN architecture diagram using Graphviz +dot = Digraph(comment='TimeGAN Architecture', format='png') + +# Nodes for real data path +dot.node('X', 'Real Time-Series Data X') +dot.node('E', 'Embedder') +dot.node('H', 'Latent Representation H') +dot.node('R', 'Recovery') +dot.node('XT', 'Reconstructed X_tilde') + +# Nodes for synthetic data path +dot.node('Z', 'Random Noise Z') +dot.node('G', 'Generator') +dot.node('HT', 'Latent Synthetic H_tilde') +dot.node('S', 'Supervisor') +dot.node('HH', 'H_hat (time-consistent latent)') + +# Discriminator +dot.node('D', 'Discriminator') + +# Edges for real data path +dot.edges([('X', 'E'), ('E', 'H'), ('H', 'R'), ('R', 'XT')]) + +# Edges for synthetic data path +dot.edges([('Z', 'G'), ('G', 'HT'), ('HT', 'S'), ('S', 'HH')]) + +# Edges to Discriminator +dot.edge('H', 'D') +dot.edge('HH', 'D') + +# Render the diagram as PNG +dot.render("timegan_architecture.png", view=True) diff --git a/.history/timegan_arch_20250802221304.py b/.history/timegan_arch_20250802221304.py new file mode 100644 index 00000000..13d04b58 --- /dev/null +++ b/.history/timegan_arch_20250802221304.py @@ -0,0 +1,119 @@ +from graphviz import Digraph +import matplotlib.pyplot as plt +import matplotlib.image as mpimg +import os + +def visualize_timegan_architecture(): + # Create a directed graph + dot = Digraph(comment='TimeGAN Architecture', format='png') + dot.attr(rankdir='TB', size='12,12') + + # Global attributes + dot.attr('node', shape='box', style='filled', color='lightgrey') + + # Define components + with dot.subgraph(name='cluster_real_data') as c: + c.attr(label='Real Time-series Data', color='blue') + c.node('X', 'Input Data\n(batch_size, seq_len, feature_dim)') + c.node('X_emb', 'Embedded Data\n(batch_size, seq_len, hidden_dim)') + c.attr(color='blue') + + with dot.subgraph(name='cluster_random_noise') as c: + c.attr(label='Random Noise', color='green') + c.node('Z', 'Random Noise\n(batch_size, seq_len, latent_dim)') + c.attr(color='green') + + with dot.subgraph(name='cluster_embedder') as c: + c.attr(label='Embedder (Autoencoder)', color='orange') + c.node('E', 'Embedder\n(LSTM/GRU based)') + c.node('H', 'Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='orange') + + with dot.subgraph(name='cluster_recovery') as c: + c.attr(label='Recovery', color='orange') + c.node('R', 'Recovery\n(LSTM/GRU based)') + c.node('X_tilde', 'Recovered Data\n(batch_size, seq_len, feature_dim)') + c.attr(color='orange') + + with dot.subgraph(name='cluster_generator') as c: + c.attr(label='Generator', color='red') + c.node('G', 'Generator\n(LSTM/GRU based)') + c.node('X_hat', 'Generated Data\n(batch_size, seq_len, feature_dim)') + c.node('H_hat', 'Generated Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='red') + + with dot.subgraph(name='cluster_supervisor') as c: + c.attr(label='Supervisor', color='purple') + c.node('S', 'Supervisor\n(LSTM/GRU based)') + c.node('H_super', 'Supervised Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='purple') + + with dot.subgraph(name='cluster_discriminator') as c: + c.attr(label='Discriminator', color='darkgreen') + c.node('D', 'Discriminator\n(LSTM/GRU based)') + c.node('Y_real', 'Real/Fake Prediction\nfor real data') + c.node('Y_fake', 'Real/Fake Prediction\nfor generated data') + c.attr(color='darkgreen') + + # Define connections + # Embedder and Recovery + dot.edge('X', 'E', label='Input') + dot.edge('E', 'H', label='Encodes to') + dot.edge('H', 'R', label='Input') + dot.edge('R', 'X_tilde', label='Decodes to') + + # Generator + dot.edge('Z', 'G', label='Input') + dot.edge('G', 'H_hat', label='Generates') + dot.edge('H_hat', 'S', label='Input') + dot.edge('S', 'H_super', label='Predicts next step') + + # Discriminator + dot.edge('H', 'D', label='Input (real)', style='dashed') + dot.edge('H_super', 'D', label='Input (fake)', style='dashed') + dot.edge('D', 'Y_real', label='Output') + dot.edge('D', 'Y_fake', label='Output') + + # Additional connections + dot.edge('H', 'X_emb', label='Also used as') + + # Loss functions (simplified) + with dot.subgraph(name='cluster_losses') as c: + c.attr(label='Loss Functions', color='brown') + c.node('L_auto', 'Autoencoder Loss\n(MSE X vs X_tilde)') + c.node('L_adv', 'Adversarial Loss\n(Cross-entropy Y_real vs Y_fake)') + c.node('L_super', 'Supervisor Loss\n(MSE H vs H_super)') + c.node('L_emb', 'Embedding Loss\n(Combination of above)') + c.attr(color='brown') + + dot.edge('X_tilde', 'L_auto') + dot.edge('X', 'L_auto') + dot.edge('Y_real', 'L_adv') + dot.edge('Y_fake', 'L_adv') + dot.edge('H', 'L_super') + dot.edge('H_super', 'L_super') + dot.edge('L_auto', 'L_emb') + dot.edge('L_adv', 'L_emb') + dot.edge('L_super', 'L_emb') + + # Render the graph + dot.render('timegan_architecture', view=False, cleanup=True) + + # Display in matplotlib (for VSCode) + img = mpimg.imread('timegan_architecture.png') + plt.figure(figsize=(15, 15)) + plt.imshow(img) + plt.axis('off') + plt.title('TimeGAN Architecture') + plt.show() + +if __name__ == '__main__': + # Check if graphviz is installed + try: + visualize_timegan_architecture() + except Exception as e: + print(f"Error: {e}") + print("\nPlease install the required packages:") + print("pip install graphviz matplotlib") + print("Also make sure Graphviz is installed on your system:") + print("https://graphviz.org/download/") \ No newline at end of file diff --git a/.history/utils_20250718171958.py b/.history/utils_20250718171958.py new file mode 100644 index 00000000..f968e2bb --- /dev/null +++ b/.history/utils_20250718171958.py @@ -0,0 +1,145 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +""" + +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +def random_generator (batch_size, z_dim, T_mb, max_seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - T_mb: time information for the random vector + - max_seq_len: maximum sequence length + + Returns: + - Z_mb: generated random vector + """ + Z_mb = list() + for i in range(batch_size): + temp = np.zeros([max_seq_len, z_dim]) + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) + temp[:T_mb[i],:] = temp_Z + Z_mb.append(temp_Z) + return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250720215736.py b/.history/utils_20250720215736.py new file mode 100644 index 00000000..cfba0948 --- /dev/null +++ b/.history/utils_20250720215736.py @@ -0,0 +1,147 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +def random_generator (batch_size, z_dim, T_mb, max_seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - T_mb: time information for the random vector + - max_seq_len: maximum sequence length + + Returns: + - Z_mb: generated random vector + """ + Z_mb = list() + for i in range(batch_size): + temp = np.zeros([max_seq_len, z_dim]) + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) + temp[:T_mb[i],:] = temp_Z + Z_mb.append(temp_Z) + return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250720220426.py b/.history/utils_20250720220426.py new file mode 100644 index 00000000..906024cd --- /dev/null +++ b/.history/utils_20250720220426.py @@ -0,0 +1,147 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +""" +# Necessary Packages +import tensorflow.compat.v1 as tf +tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +# import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +def random_generator (batch_size, z_dim, T_mb, max_seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - T_mb: time information for the random vector + - max_seq_len: maximum sequence length + + Returns: + - Z_mb: generated random vector + """ + Z_mb = list() + for i in range(batch_size): + temp = np.zeros([max_seq_len, z_dim]) + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) + temp[:T_mb[i],:] = temp_Z + Z_mb.append(temp_Z) + return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250720234935.py b/.history/utils_20250720234935.py new file mode 100644 index 00000000..d634f320 --- /dev/null +++ b/.history/utils_20250720234935.py @@ -0,0 +1,147 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +# import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +def random_generator (batch_size, z_dim, T_mb, max_seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - T_mb: time information for the random vector + - max_seq_len: maximum sequence length + + Returns: + - Z_mb: generated random vector + """ + Z_mb = list() + for i in range(batch_size): + temp = np.zeros([max_seq_len, z_dim]) + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) + temp[:T_mb[i],:] = temp_Z + Z_mb.append(temp_Z) + return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250720234939.py b/.history/utils_20250720234939.py new file mode 100644 index 00000000..3e6d30a2 --- /dev/null +++ b/.history/utils_20250720234939.py @@ -0,0 +1,147 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +def random_generator (batch_size, z_dim, T_mb, max_seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - T_mb: time information for the random vector + - max_seq_len: maximum sequence length + + Returns: + - Z_mb: generated random vector + """ + Z_mb = list() + for i in range(batch_size): + temp = np.zeros([max_seq_len, z_dim]) + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) + temp[:T_mb[i],:] = temp_Z + Z_mb.append(temp_Z) + return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250805012638.py b/.history/utils_20250805012638.py new file mode 100644 index 00000000..9644537d --- /dev/null +++ b/.history/utils_20250805012638.py @@ -0,0 +1,147 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +# def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# """Random vector generation. + +# Args: +# - batch_size: size of the random vector +# - z_dim: dimension of random vector +# - T_mb: time information for the random vector +# - max_seq_len: maximum sequence length + +# Returns: +# - Z_mb: generated random vector +# """ +# Z_mb = list() +# for i in range(batch_size): +# temp = np.zeros([max_seq_len, z_dim]) +# temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +# temp[:T_mb[i],:] = temp_Z +# Z_mb.append(temp_Z) +# return Z_mb + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250805012640.py b/.history/utils_20250805012640.py new file mode 100644 index 00000000..cab50856 --- /dev/null +++ b/.history/utils_20250805012640.py @@ -0,0 +1,167 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +# def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# """Random vector generation. + +# Args: +# - batch_size: size of the random vector +# - z_dim: dimension of random vector +# - T_mb: time information for the random vector +# - max_seq_len: maximum sequence length + +# Returns: +# - Z_mb: generated random vector +# """ +# Z_mb = list() +# for i in range(batch_size): +# temp = np.zeros([max_seq_len, z_dim]) +# temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +# temp[:T_mb[i],:] = temp_Z +# Z_mb.append(temp_Z) +# return Z_mb + +pat.v1.global_variables_initializer instead. + +Start Embedding Network Training +step: 0/5000, e_loss: 0.2641 +step: 1000/5000, e_loss: 0.1761 +step: 2000/5000, e_loss: 0.1663 +step: 3000/5000, e_loss: 0.1353 +step: 4000/5000, e_loss: 0.0716 +Finish Embedding Network Training +Start Training with Supervised Loss Only +Traceback (most recent call last): + File "c:/Users/user/Documents/ML models/TimeGAN/TimeGAN/main_timegan.py", line 296, in + ori_data, generated_data, metrics = main(args) + File "c:/Users/user/Documents/ML models/TimeGAN/TimeGAN/main_timegan.py", line 206, in main + generated_data = timegan(ori_data, parameters) + File "c:\Users\user\Documents\ML models\TimeGAN\TimeGAN\timegan.py", line 250, in timegan + Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + File "c:\Users\user\Documents\ML models\TimeGAN\TimeGAN\utils.py", line 122, in random_generator + temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +IndexError: list index out of range + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250805012642.py b/.history/utils_20250805012642.py new file mode 100644 index 00000000..b87985dd --- /dev/null +++ b/.history/utils_20250805012642.py @@ -0,0 +1,148 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +# def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# """Random vector generation. + +# Args: +# - batch_size: size of the random vector +# - z_dim: dimension of random vector +# - T_mb: time information for the random vector +# - max_seq_len: maximum sequence length + +# Returns: +# - Z_mb: generated random vector +# """ +# Z_mb = list() +# for i in range(batch_size): +# temp = np.zeros([max_seq_len, z_dim]) +# temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +# temp[:T_mb[i],:] = temp_Z +# Z_mb.append(temp_Z) +# return Z_mb + + + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/.history/utils_20250805012647.py b/.history/utils_20250805012647.py new file mode 100644 index 00000000..8d10c903 --- /dev/null +++ b/.history/utils_20250805012647.py @@ -0,0 +1,164 @@ +"""Time-series Generative Adversarial Networks (TimeGAN) Codebase. + +Reference: Jinsung Yoon, Daniel Jarrett, Mihaela van der Schaar, +"Time-series Generative Adversarial Networks," +Neural Information Processing Systems (NeurIPS), 2019. + +Paper link: https://papers.nips.cc/paper/8789-time-series-generative-adversarial-networks + +Last updated Date: April 24th 2020 +Code author: Jinsung Yoon (jsyoon0823@gmail.com) + +----------------------------- + +utils.py + +(1) train_test_divide: Divide train and test data for both original and synthetic data. +(2) extract_time: Returns Maximum sequence length and each sequence length. +(3) rnn_cell: Basic RNN Cell. +(4) random_generator: random vector generator +(5) batch_generator: mini-batch generator +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +## Necessary Packages +import numpy as np +import tensorflow as tf + + +def train_test_divide (data_x, data_x_hat, data_t, data_t_hat, train_rate = 0.8): + """Divide train and test data for both original and synthetic data. + + Args: + - data_x: original data + - data_x_hat: generated data + - data_t: original time + - data_t_hat: generated time + - train_rate: ratio of training data from the original data + """ + # Divide train/test index (original data) + no = len(data_x) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x = [data_x[i] for i in train_idx] + test_x = [data_x[i] for i in test_idx] + train_t = [data_t[i] for i in train_idx] + test_t = [data_t[i] for i in test_idx] + + # Divide train/test index (synthetic data) + no = len(data_x_hat) + idx = np.random.permutation(no) + train_idx = idx[:int(no*train_rate)] + test_idx = idx[int(no*train_rate):] + + train_x_hat = [data_x_hat[i] for i in train_idx] + test_x_hat = [data_x_hat[i] for i in test_idx] + train_t_hat = [data_t_hat[i] for i in train_idx] + test_t_hat = [data_t_hat[i] for i in test_idx] + + return train_x, train_x_hat, test_x, test_x_hat, train_t, train_t_hat, test_t, test_t_hat + + +def extract_time (data): + """Returns Maximum sequence length and each sequence length. + + Args: + - data: original data + + Returns: + - time: extracted time information + - max_seq_len: maximum sequence length + """ + time = list() + max_seq_len = 0 + for i in range(len(data)): + max_seq_len = max(max_seq_len, len(data[i][:,0])) + time.append(len(data[i][:,0])) + + return time, max_seq_len + + +def rnn_cell(module_name, hidden_dim): + """Basic RNN Cell. + + Args: + - module_name: gru, lstm, or lstmLN + + Returns: + - rnn_cell: RNN Cell + """ + assert module_name in ['gru','lstm','lstmLN'] + + # GRU + if (module_name == 'gru'): + rnn_cell = tf.nn.rnn_cell.GRUCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM + elif (module_name == 'lstm'): + rnn_cell = tf.contrib.rnn.BasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + # LSTM Layer Normalization + elif (module_name == 'lstmLN'): + rnn_cell = tf.contrib.rnn.LayerNormBasicLSTMCell(num_units=hidden_dim, activation=tf.nn.tanh) + return rnn_cell + + +# def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# """Random vector generation. + +# Args: +# - batch_size: size of the random vector +# - z_dim: dimension of random vector +# - T_mb: time information for the random vector +# - max_seq_len: maximum sequence length + +# Returns: +# - Z_mb: generated random vector +# """ +# Z_mb = list() +# for i in range(batch_size): +# temp = np.zeros([max_seq_len, z_dim]) +# temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +# temp[:T_mb[i],:] = temp_Z +# Z_mb.append(temp_Z) +# return Z_mb + +# In utils.py + +def random_generator (batch_size, z_dim, seq_len): + """Random vector generation. + + Args: + - batch_size: size of the random vector + - z_dim: dimension of random vector + - seq_len: sequence length of the vector + + Returns: + - Z_mb: generated random vector + """ + # All our sequences have the same length (seq_len), so we can generate + # the noise for the whole batch in one go. + Z_mb = np.random.uniform(0., 1, [batch_size, seq_len, z_dim]) + return Z_mb + +def batch_generator(data, time, batch_size): + """Mini-batch generator. + + Args: + - data: time-series data + - time: time information + - batch_size: the number of samples in each batch + + Returns: + - X_mb: time-series data in each batch + - T_mb: time information in each batch + """ + no = len(data) + idx = np.random.permutation(no) + train_idx = idx[:batch_size] + + X_mb = list(data[i] for i in train_idx) + T_mb = list(time[i] for i in train_idx) + + return X_mb, T_mb \ No newline at end of file diff --git a/__pycache__/data_loading.cpython-312.pyc b/__pycache__/data_loading.cpython-312.pyc new file mode 100644 index 00000000..1791c46e Binary files /dev/null and b/__pycache__/data_loading.cpython-312.pyc differ diff --git a/__pycache__/data_loading.cpython-37.pyc b/__pycache__/data_loading.cpython-37.pyc new file mode 100644 index 00000000..c6d6d52d Binary files /dev/null and b/__pycache__/data_loading.cpython-37.pyc differ diff --git a/__pycache__/timegan.cpython-310.pyc b/__pycache__/timegan.cpython-310.pyc new file mode 100644 index 00000000..69afbdc1 Binary files /dev/null and b/__pycache__/timegan.cpython-310.pyc differ diff --git a/__pycache__/timegan.cpython-312.pyc b/__pycache__/timegan.cpython-312.pyc new file mode 100644 index 00000000..2fa014a3 Binary files /dev/null and b/__pycache__/timegan.cpython-312.pyc differ diff --git a/__pycache__/timegan.cpython-313.pyc b/__pycache__/timegan.cpython-313.pyc new file mode 100644 index 00000000..c130a410 Binary files /dev/null and b/__pycache__/timegan.cpython-313.pyc differ diff --git a/__pycache__/timegan.cpython-37.pyc b/__pycache__/timegan.cpython-37.pyc new file mode 100644 index 00000000..eefe858d Binary files /dev/null and b/__pycache__/timegan.cpython-37.pyc differ diff --git a/__pycache__/utils.cpython-312.pyc b/__pycache__/utils.cpython-312.pyc new file mode 100644 index 00000000..e096e23f Binary files /dev/null and b/__pycache__/utils.cpython-312.pyc differ diff --git a/__pycache__/utils.cpython-37.pyc b/__pycache__/utils.cpython-37.pyc new file mode 100644 index 00000000..385708fc Binary files /dev/null and b/__pycache__/utils.cpython-37.pyc differ diff --git a/data/Baabda_data.csv b/data/Baabda_data.csv new file mode 100644 index 00000000..f4f30c48 --- /dev/null +++ b/data/Baabda_data.csv @@ -0,0 +1,73 @@ +transaction_number,transaction_value +1523,168.093 +1446,228.751 +1865,214.211 +1694,229.316 +1759,218.475 +1770,202.401 +1845,228.702 +1656,218.573 +1769,237.509 +2131,286.039 +1863,232.493 +2457,439.213 +1415,214.832 +1490,206.183 +1721,239.016 +1416,239.95 +1731,221.967 +1599,237.799 +1587,240.391 +1574,213.099 +1633,231.778 +1712,250.794 +1865,273.368 +2506,349.004 +1073,159.996 +908,129.8 +1292,203.646 +1714,269.798 +204,240.185 +1517,280.453 +1600,277.169 +1384,213.521 +1494,226.951 +1456,220.468 +1632,253.519 +2039,339.551 +1232,204.443 +1358,220.955 +1390,239.542 +1667,257.938 +1732,309.496 +1356,214.841 +129,241.81 +1492,257.405 +1574,252.685 +1611,207.616 +1330,279.407 +1795,283.836 +894,152.301 +882,160.49 +1385,205.81 +1161,200.686 +1256,226.018 +1318,233.177 +1330,225.512 +1401,247.245 +1336,269.964 +1371,210.77 +1258,205.539 +1646,321.302 +1041,226.395 +1213,201.465 +1440,301.443 +1358,220.442 +1166,272.838 +1276,215.574 +1140,200.455 +1340,251.0 +1259,311.641 +1415,253.662 +1506,276.353 +1539,255.869 diff --git a/data/Beirut_data.csv b/data/Beirut_data.csv new file mode 100644 index 00000000..8aa79d72 --- /dev/null +++ b/data/Beirut_data.csv @@ -0,0 +1,73 @@ +transaction_number,transaction_value +469,179.672 +422,502.338 +523,220.017 +540,244.857 +592,400.56 +611,340.065 +516,312.436 +559,280.342 +533,373.544 +717,304.316 +925,23.992 +1117,599.198 +409,208.727 +431,284.376 +542,371.756 +501,239.474 +557,394.861 +533,447.222 +469,247.481 +513,286.88 +553,415.255 +507,444.624 +570,307.115 +916,492.86 +364,176.052 +333,174.326 +299,176.2 +560,296.167 +515,297.959 +553,324.049 +533,318.328 +400,245.108 +471,319.075 +558,492.046 +547,300.705 +921,582.023 +395,433.823 +452,226.236 +529,260.777 +538,340.665 +521,515.116 +490,238.155 +441,237.252 +447,243.356 +530,341.588 +458,284.168 +449,210.212 +673,348.164 +254,266.641 +305,164.716 +416,211.102 +375,233.454 +414,218.756 +500,235.809 +395,394.021 +392,20.98 +418,232.992 +404,222.747 +446,244.619 +741,371.27 +303,141.757 +442,500.932 +405,217.064 +470,297.91 +400,201.682 +474,270.022 +378,201.686 +476,282.233 +417,286.562 +408,168.748 +507,269.303 +700,515.327 diff --git a/data/Bekaa_data.csv b/data/Bekaa_data.csv new file mode 100644 index 00000000..4390c440 --- /dev/null +++ b/data/Bekaa_data.csv @@ -0,0 +1,73 @@ +transaction_number,transaction_value +539,18.988 +608,15.206 +915,38.896 +704,32.465 +799,37.688 +924,35.716 +762,36.784 +731,35.262 +753,33.596 +839,43.517 +752,37.012 +1066,42.374 +666,33.419 +396,22.855 +591,32.547 +712,36.864 +749,39.682 +674,40.714 +661,36.105 +713,38.884 +825,62.986 +774,33.443 +724,33.998 +948,44.042 +586,29.673 +663,30.755 +670,32.377 +863,41.144 +775,34.696 +722,34.974 +746,31.842 +709,35.375 +892,38.111 +757,34.088 +842,41.95 +742,48.607 +593,37.079 +634,31.415 +691,33.419 +727,40.11 +716,55.859 +663,42.07 +508,37.027 +893,48.445 +936,42.879 +784,38.564 +810,40.973 +145,47.744 +357,22.714 +477,21.658 +762,38.1 +698,28.487 +759,33.424 +756,38.146 +704,46.859 +965,45.48 +803,42.696 +762,33.738 +710,32.772 +962,51.427 +536,19.919 +729,41.907 +784,45.019 +807,46.032 +602,26.837 +636,31.268 +689,37.114 +911,37.075 +800,35.583 +903,39.955 +1030,64.784 +837,38.119 diff --git a/data/Kesrouan_data.csv b/data/Kesrouan_data.csv new file mode 100644 index 00000000..f472333c --- /dev/null +++ b/data/Kesrouan_data.csv @@ -0,0 +1,73 @@ +transaction_number,transaction_value +731,80.659 +704,111.395 +964,119.069 +886,109.788 +921,122.125 +913,120.925 +779,113.032 +993,136.946 +1024,133.319 +1111,143.112 +950,114.677 +1272,182.054 +689,109.852 +654,95.146 +823,131.82 +618,101.247 +793,126.152 +785,142.168 +818,124.262 +807,116.81 +792,125.813 +840,165.411 +777,104.1 +1036,143.382 +654,106.447 +542,90.707 +692,115.106 +825,125.542 +766,133.566 +820,153.359 +861,166.566 +772,108.859 +736,115.545 +790,135.102 +810,133.925 +849,146.164 +718,105.085 +703,107.202 +738,127.795 +824,140.109 +741,162.739 +663,113.379 +1141,105.27 +809,117.323 +783,130.766 +849,126.206 +713,145.347 +884,174.539 +481,82.792 +512,79.493 +623,107.413 +625,125.46 +692,147.168 +753,157.722 +665,120.439 +797,128.261 +683,141.926 +773,171.997 +170,106.886 +826,145.92 +579,90.79 +624,106.494 +692,115.288 +593,106.945 +543,101.911 +619,103.639 +606,103.101 +91,107.929 +639,89.194 +748,116.232 +662,114.592 +815,166.404 diff --git a/data/Tripoli_data.csv b/data/Tripoli_data.csv new file mode 100644 index 00000000..6c0d71d7 --- /dev/null +++ b/data/Tripoli_data.csv @@ -0,0 +1,73 @@ +transaction_number,transaction_value +621,34.869 +595,30.049 +739,32.345 +633,34.863 +721,38.696 +666,32.268 +686,34.383 +573,37.597 +683,35.774 +755,40.423 +603,33.097 +968,42.233 +633,34.57 +627,26.729 +630,43.045 +546,34.217 +561,37.216 +556,37.2 +543,33.045 +391,23.344 +653,50.2 +629,35.759 +550,29.975 +674,52.28 +460,23.928 +422,32.194 +492,37.806 +603,26.529 +521,53.196 +490,28.844 +515,36.804 +454,29.439 +550,28.541 +466,41.914 +499,33.148 +561,29.285 +453,29.553 +537,35.601 +497,24.077 +597,38.162 +590,41.57 +548,36.204 +607,33.634 +545,44.526 +590,39.738 +445,40.437 +468,28.159 +556,32.312 +400,33.171 +415,25.535 +509,26.992 +471,23.727 +543,36.065 +519,27.172 +447,33.856 +611,32.35 +384,34.319 +514,36.33 +527,36.712 +555,32.538 +429,28.713 +507,34.828 +520,39.424 +489,39.705 +458,29.661 +475,30.813 +429,37.235 +530,33.724 +461,25.447 +548,32.385 +581,39.532 +586,42.618 diff --git a/data/energy_data.csv b/data/energy_data.csv deleted file mode 100644 index d2d29d10..00000000 --- a/data/energy_data.csv +++ /dev/null @@ -1,19736 +0,0 @@ -Appliances,lights,T1,RH_1,T2,RH_2,T3,RH_3,T4,RH_4,T5,RH_5,T6,RH_6,T7,RH_7,T8,RH_8,T9,RH_9,T_out,Press_mm_hg,RH_out,Windspeed,Visibility,Tdewpoint,rv1,rv2 -60,30,19.89,47.5966666667,19.2,44.79,19.79,44.73,19,45.5666666667,17.1666666667,55.2,7.0266666667,84.2566666667,17.2,41.6266666667,18.2,48.9,17.0333333333,45.53,6.6,733.5,92,7,63,5.3,13.2754331571,13.2754331571 -60,30,19.89,46.6933333333,19.2,44.7225,19.79,44.79,19,45.9925,17.1666666667,55.2,6.8333333333,84.0633333333,17.2,41.56,18.2,48.8633333333,17.0666666667,45.56,6.4833333333,733.6,92,6.6666666667,59.1666666667,5.2,18.6061949818,18.6061949818 -50,30,19.89,46.3,19.2,44.6266666667,19.79,44.9333333333,18.9266666667,45.89,17.1666666667,55.09,6.56,83.1566666667,17.2,41.4333333333,18.2,48.73,17,45.5,6.3666666667,733.7,92,6.3333333333,55.3333333333,5.1,28.6426681676,28.6426681676 -50,40,19.89,46.0666666667,19.2,44.59,19.79,45,18.89,45.7233333333,17.1666666667,55.09,6.4333333333,83.4233333333,17.1333333333,41.29,18.1,48.59,17,45.4,6.25,733.8,92,6,51.5,5,45.4103894997,45.4103894997 -60,40,19.89,46.3333333333,19.2,44.53,19.79,45,18.89,45.53,17.2,55.09,6.3666666667,84.8933333333,17.2,41.23,18.1,48.59,17,45.4,6.1333333333,733.9,92,5.6666666667,47.6666666667,4.9,10.0840965519,10.0840965519 -50,40,19.89,46.0266666667,19.2,44.5,19.79,44.9333333333,18.89,45.73,17.1333333333,55.03,6.3,85.7666666667,17.1333333333,41.26,18.1,48.59,17,45.29,6.0166666667,734,92,5.3333333333,43.8333333333,4.8,44.9194842484,44.9194842484 -60,50,19.89,45.7666666667,19.2,44.5,19.79,44.9,18.89,45.79,17.1,54.9666666667,6.2633333333,86.09,17.1333333333,41.2,18.1,48.59,17,45.29,5.9,734.1,92,5,40,4.7,47.2337634303,47.2337634303 -60,50,19.8566666667,45.56,19.2,44.5,19.73,44.9,18.89,45.8633333333,17.1,54.9,6.19,86.4233333333,17.1,41.2,18.1,48.59,17,45.29,5.9166666667,734.1666666667,91.8333333333,5.1666666667,40,4.6833333333,33.0398896243,33.0398896243 -60,40,19.79,45.5975,19.2,44.4333333333,19.73,44.79,18.89,45.79,17.1666666667,55,6.1233333333,87.2266666667,17.1666666667,41.4,18.1,48.59,17,45.29,5.9333333333,734.2333333333,91.6666666667,5.3333333333,40,4.6666666667,31.4557021949,31.4557021949 -70,40,19.8566666667,46.09,19.23,44.4,19.79,44.8633333333,18.89,46.0966666667,17.1,55,6.19,87.6266666667,17.2,41.5,18.1,48.59,17,45.29,5.95,734.3,91.5,5.5,40,4.65,3.0893135234,3.0893135234 -230,70,19.9266666667,45.8633333333,19.3566666667,44.4,19.79,44.9,18.89,46.43,17.1,55,6.19,87.8666666667,17.2475,42.7175,18.1,48.59,17,45.29,5.9666666667,734.3666666667,91.3333333333,5.6666666667,40,4.6333333333,10.298728745,10.298728745 -580,60,20.0666666667,46.3966666667,19.4266666667,44.4,19.79,44.8266666667,19,46.43,17.1,55,6.1233333333,87.9933333333,17.53,44.2633333333,18.0666666667,48.6333333333,16.89,45.29,5.9833333333,734.4333333333,91.1666666667,5.8333333333,40,4.6166666667,8.8278376264,8.8278376264 -430,50,20.1333333333,48,19.5666666667,44.4,19.89,44.9,19,46.3633333333,17.1,55.09,6.1233333333,88.59,17.8233333333,45.4933333333,18.0666666667,48.56,16.9633333333,45.29,6,734.5,91,6,40,4.6,34.3511423329,34.3511423329 -250,40,20.26,52.7266666667,19.73,45.1,19.89,45.4933333333,19,47.2233333333,17.1,55.1633333333,6.0675,88.215,17.9633333333,46.16,18.0333333333,48.6666666667,16.89,45.3266666667,6,734.6166666667,90.5,6,40,4.5166666667,19.2051859107,19.2051859107 -100,10,20.4266666667,55.8933333333,19.8566666667,45.8333333333,20.0333333333,47.5266666667,19,48.6966666667,17.1,55.5,5.9,88.1566666667,17.9633333333,45.5333333333,18.1,49.1933333333,16.89,45.345,6,734.7333333333,90,6,40,4.4333333333,38.4920709999,38.4920709999 -100,10,20.5666666667,53.8933333333,20.0333333333,46.7566666667,20.1,48.4666666667,19,48.49,17.15,56.0425,5.8,88.3666666667,17.89,44.9266666667,18.15,49.2,16.89,45.3266666667,6,734.85,89.5,6,40,4.35,24.8849621043,24.8849621043 -90,10,20.73,52.66,20.1666666667,47.2233333333,20.2,48.53,18.9266666667,48.1566666667,17.1666666667,56.49,5.7266666667,88.16,17.76,44.2666666667,18.23,49.6333333333,16.89,45.29,6,734.9666666667,89,6,40,4.2666666667,35.8809254132,35.8809254132 -70,30,20.8566666667,53.66,20.2,47.0566666667,20.2,48.4475,18.89,47.9633333333,17.2,56.9333333333,5.5266666667,87.3,17.7,43.7266666667,18.3566666667,50.0266666667,16.89,45.29,6,735.0833333333,88.5,6,40,4.1833333333,49.5953047415,49.5953047415 -80,30,20.89,51.1933333333,20.2,46.33,20.2,48.1933333333,18.9633333333,48.63,17.2,57.06,5.3333333333,86.76,17.6666666667,43.16,18.5333333333,50.2,16.89,45.2,6,735.2,88,6,40,4.1,19.0017589717,19.0017589717 -140,40,20.89,49.8,20.2,46.0266666667,20.1666666667,47.6333333333,19.0333333333,49.5,17.5933333333,70.7266666667,5.3333333333,87.4633333333,17.6,42.6933333333,18.6666666667,50.26,16.89,45.2,6,735.2333333333,87.8333333333,6,40,4.0666666667,38.872261066,38.872261066 -120,20,20.89,48.4333333333,20.2,45.7225,20.1666666667,47.3,19.175,49.9475,18.0666666667,79,5.4666666667,87.53,17.6,42.3333333333,18.73,50.23,16.89,45.1266666667,6,735.2666666667,87.6666666667,6,40,4.0333333333,46.7352615553,46.7352615553 -190,40,20.9633333333,47.6333333333,20.26,45.53,20.2,47.0266666667,19.26,49.6966666667,17.6666666667,79.73,5.5,86.9566666667,17.5333333333,42.0666666667,18.8566666667,50.29,16.89,45.1266666667,6,735.3,87.5,6,40,4,10.6071260641,10.6071260641 -110,40,21.0333333333,47.0633333333,20.29,45.2233333333,20.26,46.8266666667,19.3233333333,49.1666666667,17.6,79.2566666667,5.56,86.5633333333,17.6333333333,43.6333333333,18.89,50.1633333333,16.89,45.06,6,735.3333333333,87.3333333333,6,40,3.9666666667,32.5836883043,32.5836883043 -110,40,21.1,46.5966666667,20.3566666667,44.9633333333,20.29,46.6333333333,19.39,48.4266666667,17.5666666667,78.3933333333,5.6233333333,86.33,17.76,43.6333333333,18.9633333333,50.03,16.89,45,6,735.3666666667,87.1666666667,6,40,3.9333333333,6.2777547981,6.2777547981 -110,30,21.1333333333,46.06,20.4266666667,44.76,20.29,46.4333333333,19.39,48.1933333333,17.76,82.46,5.7633333333,86.0633333333,17.8566666667,43.46,19,49.76,16.89,44.9666666667,6,735.4,87,6,40,3.9,13.3610334364,13.3610334364 -110,20,21.2,45.8,20.5,44.76,20.39,46.2233333333,19.39,47.8,18.3566666667,82.59,5.6566666667,85.59,17.79,43.4,19.0666666667,49.7,16.89,44.9,5.9333333333,735.4666666667,87.1666666667,6,40,3.8666666667,19.3057046272,19.3057046272 -100,30,21.29,45.9,20.5333333333,45.09,20.39,46.09,19.39,47.56,18.3566666667,70.99,5.53,85.73,17.89,43.79,19.1333333333,49.6333333333,16.89,44.79,5.8666666667,735.5333333333,87.3333333333,6,40,3.8333333333,0.6695166579,0.6695166579 -100,20,21.3566666667,45.8266666667,20.6666666667,45.1633333333,20.39,46.09,19.39,47.5,18.6,62.43,5.4333333333,86.3266666667,17.89,43.79,19.2,49.4333333333,16.89,44.79,5.8,735.6,87.5,6,40,3.8,19.1193978535,19.1193978535 -100,20,21.39,45.69,20.7,45.06,20.39,46.09,19.4266666667,47.9933333333,18.6666666667,59.03,5.5,86.6,17.89,43.7,19.23,49.4,16.89,44.7,5.7333333333,735.6666666667,87.6666666667,6,40,3.7666666667,43.484542286,43.484542286 -100,20,21.5,45.3333333333,20.7,44.9333333333,20.39,46.06,19.5666666667,48.4666666667,18.8233333333,56.7266666667,5.59,86.4666666667,17.865,43.57,19.29,49.3266666667,16.89,44.7,5.6666666667,735.7333333333,87.8333333333,6,40,3.7333333333,17.0174498344,17.0174498344 -110,20,21.5,45.1266666667,20.79,44.6333333333,20.39,46,19.6666666667,48.0933333333,18.9633333333,55.3333333333,5.59,86.325,17.79,43.4,19.29,49.1633333333,16.8233333333,44.59,5.6,735.8,88,6,40,3.7,24.1040057736,24.1040057736 -400,20,21.5333333333,44.9666666667,20.79,44.36,20.4266666667,45.9333333333,19.6,47.5,19.0333333333,54.0933333333,5.6566666667,86.2266666667,17.79,43.2233333333,19.3566666667,49.03,16.8233333333,44.53,5.65,735.8833333333,87.8333333333,6.1666666667,40,3.7166666667,29.9782912713,29.9782912713 -400,20,21.6,44.7666666667,20.89,44.2233333333,20.5,45.9333333333,19.6966666667,47.6266666667,19.1,53.3666666667,5.8333333333,85.7666666667,17.79,43.03,19.39,48.8633333333,16.89,44.59,5.7,735.9666666667,87.6666666667,6.3333333333,40,3.7333333333,24.6770653524,24.6770653524 -390,30,21.6,44.56,20.9633333333,43.9633333333,20.5,45.79,20.0966666667,47.5666666667,19.1583333333,52.4725,5.9,85.0333333333,17.79,42.76,19.39,48.8633333333,16.89,44.5225,5.75,736.05,87.5,6.5,40,3.75,9.3108800706,9.3108800706 -240,20,21.6,44.36,21,43.8333333333,20.5,45.73,20.5966666667,47.2233333333,19.2,51.99,6,84.1266666667,17.79,42.6266666667,19.34,48.95,16.8233333333,44.4333333333,5.8,736.1333333333,87.3333333333,6.6666666667,40,3.7666666667,41.3686659303,41.3686659303 -60,20,21.6,44.2,21,43.7,20.5,45.59,20.9966666667,47.03,19.2225,51.52,6,84.06,17.7,42.6266666667,19.29,49.23,16.89,44.5,5.85,736.2166666667,87.1666666667,6.8333333333,40,3.7833333333,33.4233369096,33.4233369096 -60,20,21.6,44.2,21,43.59,20.4175,45.545,21.1666666667,46.5266666667,19.29,51.23,5.9666666667,84.79,17.7,42.76,19.3566666667,49.43,16.89,44.5,5.9,736.3,87,7,40,3.8,39.7119930363,39.7119930363 -60,20,21.6,44.2,21,43.59,20.39,45.6633333333,21.0333333333,46.4,19.29,51.06,5.9,85.5966666667,17.7,43.03,19.39,49.89,16.89,45.0666666667,5.8,736.4,87.8333333333,6.8333333333,37,3.85,5.3971812944,5.3971812944 -50,10,21.6,44.2,21,43.7,20.29,45.73,20.9633333333,46.4333333333,19.29,50.9333333333,5.7633333333,86.26,17.7,43.1633333333,19.39,50.1633333333,16.89,45.26,5.7,736.5,88.6666666667,6.6666666667,34,3.9,36.185547302,36.185547302 -70,20,21.5,44.23,20.9266666667,43.76,20.29,45.79,20.865,46.5675,19.29,50.8633333333,5.6233333333,86.5933333333,17.7,43.4,19.39,50.4633333333,16.89,45.4333333333,5.6,736.6,89.5,6.5,31,3.95,20.5637214822,20.5637214822 -60,20,21.5,44.3633333333,20.89,43.845,20.29,45.79,20.73,46.59,19.29,50.79,5.59,87.4966666667,17.7,43.4666666667,19.39,50.7233333333,16.89,45.56,5.5,736.7,90.3333333333,6.3333333333,28,4,41.0473147058,41.0473147058 -40,20,21.39,44.4333333333,20.79,43.79,20.23,45.6566666667,20.7,46.79,19.2,50.6633333333,5.59,87.8966666667,17.7,43.6266666667,19.39,50.9633333333,16.89,45.6266666667,5.4,736.8,91.1666666667,6.1666666667,25,4.05,32.353009691,32.353009691 -40,10,21.39,44.56,20.79,43.8633333333,20.2,45.6633333333,20.6333333333,46.79,19.2,50.53,5.59,88.6333333333,17.7,43.76,19.39,51.1633333333,16.89,45.7,5.3,736.9,92,6,22,4.1,39.1466381145,39.1466381145 -30,20,21.29,44.8266666667,20.7,44,20.2,45.59,20.5666666667,46.9333333333,19.2,50.5,5.53,89.0266666667,17.7,43.9333333333,19.4633333333,51.5,16.89,45.79,5.2666666667,737,92,6,25,4.0666666667,27.6518155821,27.6518155821 -40,20,21.29,44.9666666667,20.6333333333,44,20.1666666667,45.5,20.5,47.1333333333,19.2,50.4333333333,5.53,89.4,17.76,44.3333333333,19.39,51.56,16.89,45.8633333333,5.2333333333,737.1,92,6,28,4.0333333333,26.4859790099,26.4859790099 -50,20,21.26,45.09,20.6,44.03,20.1,45.5,20.5,47.23,19.1666666667,50.3633333333,5.53,89.1933333333,17.79,44.9633333333,19.39,51.86,16.89,45.9,5.2,737.2,92,6,31,4,39.4678115845,39.4678115845 -310,10,21.2,45.09,20.6,44.09,20.1,45.5,20.4266666667,47.23,19.1,50.29,5.4,89.4,17.79,45.2233333333,19.39,52,16.89,45.9666666667,5.1666666667,737.3,92,6,34,3.9666666667,1.1665601167,1.1665601167 -380,20,21.1666666667,45.23,20.5,44.1266666667,20.1,45.5,20.46,47.36,19.0666666667,50.26,5.2,88.99,17.79,45.3266666667,19.3566666667,52.09,16.89,46.03,5.1333333333,737.4,92,6,37,3.9333333333,23.8615032518,23.8615032518 -380,20,21.075,45.3725,20.5,44.2,20.1,45.53,20.7933333333,47.56,19,50.1266666667,4.8666666667,89.0633333333,17.79,45.425,19.29,52.1633333333,16.89,46.09,5.1,737.5,92,6,40,3.9,36.6156869335,36.6156869335 -370,20,21,45.4,20.39,44.2,20.1,45.59,21.2633333333,47.4666666667,19,50.09,4.9333333333,91.16,17.79,45.56,19.29,52.5,16.89,46.2,5.1166666667,737.6333333333,92,5.8333333333,40,3.9166666667,34.6365778241,34.6365778241 -120,10,21,45.59,20.39,44.26,20.1,45.59,21.5966666667,47.4,19,50.03,5,91.4333333333,17.79,45.73,19.23,52.9,16.89,46.2,5.1333333333,737.7666666667,92,5.6666666667,40,3.9333333333,23.8809811068,23.8809811068 -50,0,20.9266666667,45.59,20.29,44.29,20.1666666667,45.53,21.89,46.9666666667,19,50.03,4.8666666667,91.26,17.79,45.8633333333,19.29,53.5,16.89,46.29,5.15,737.9,92,5.5,40,3.95,43.0604738416,43.0604738416 -40,0,20.89,45.6666666667,20.23,44.29,20.1333333333,45.5,21.8233333333,46.2266666667,18.9266666667,50.09,4.7266666667,91.5933333333,17.79,45.8266666667,19.29,53.96,16.89,46.4333333333,5.1666666667,738.0333333333,92,5.3333333333,40,3.9666666667,21.9048553612,21.9048553612 -50,0,20.89,46.06,20.2,44.4,20.2,45.5,21.6666666667,46.06,18.89,50.09,4.4666666667,91.76,17.79,45.9666666667,19.29,54.4633333333,16.89,46.6333333333,5.1833333333,738.1666666667,92,5.1666666667,40,3.9833333333,12.2398638516,12.2398638516 -40,0,20.79,46.2,20.2,44.4666666667,20.1666666667,45.5,21.5333333333,45.9333333333,18.89,50.1725,4.3333333333,91.76,17.79,46,19.2225,54.7225,16.89,46.8266666667,5.2,738.3,92,5,40,4,3.5339523572,3.5339523572 -50,0,20.79,46.2,20.1,44.53,20.125,45.425,21.3566666667,45.9,18.89,50.2,4.1566666667,91.8333333333,17.79,46,19.2,54.9666666667,16.9633333333,46.9666666667,5.1333333333,738.4,92,4.8333333333,40,3.9333333333,4.9733080086,4.9733080086 -50,0,20.7,46.26,20.1,44.59,20.1333333333,45.4,21.23,45.9,18.79,50.09,4.1566666667,92.5666666667,17.89,46,19.2,54.9666666667,17,47.23,5.0666666667,738.5,92,4.6666666667,40,3.8666666667,15.8135853591,15.8135853591 -50,0,20.7,46.2,20,44.4333333333,20.2,45.5,21.0666666667,45.9,18.79,50.09,4.3333333333,93.53,17.89,46.06,19.2,54.9,17,47.3633333333,5,738.6,92,4.5,40,3.8,25.9317131597,25.9317131597 -40,0,20.6,46.2,20,44.5,20.2,45.5,20.9266666667,45.9,18.79,50.09,4.3333333333,93.3233333333,17.89,46.09,19.2,54.8633333333,17,47.53,4.9333333333,738.7,92,4.3333333333,40,3.7333333333,33.1002538209,33.1002538209 -40,0,20.6,46.1266666667,20,44.5,20.2,45.4,20.745,45.9,18.73,50.09,4.19,93.1266666667,17.8233333333,45.9633333333,19.1333333333,54.79,17,47.6633333333,4.8666666667,738.8,92,4.1666666667,40,3.6666666667,20.3415093594,20.3415093594 -30,0,20.5666666667,46.0666666667,19.89,44.59,20.2,45.4,20.6666666667,46,18.7,50.09,4.0633333333,92.8666666667,17.8566666667,45.9666666667,19.2,54.9,17,47.8266666667,4.8,738.9,92,4,40,3.6,45.643796213,45.643796213 -20,0,20.5,46.2,19.8233333333,44.53,20.29,45.4666666667,20.5333333333,46,18.7,50.09,3.8633333333,92.9666666667,17.8566666667,45.9666666667,19.2,54.9666666667,17,47.9,4.8166666667,739.0166666667,92.1666666667,4.3333333333,40,3.6333333333,14.680168638,14.680168638 -20,0,20.5,46.29,19.79,44.53,20.29,45.4,20.39,46.03,18.7,50.09,3.79,93.0933333333,17.89,46.2,19.2,55.09,17,48.03,4.8333333333,739.1333333333,92.3333333333,4.6666666667,40,3.6666666667,22.953286313,22.953286313 -40,0,20.4266666667,46.23,19.79,44.53,20.2,45.4,20.39,46.1633333333,18.6333333333,50.03,3.895,94.045,17.89,46.2,19.2,55.03,17,48.09,4.85,739.25,92.5,5,40,3.7,16.6197337094,16.6197337094 -50,0,20.39,46.29,19.76,44.59,20.2,45.4,20.29,46.2,18.6,50,4.19,94.6566666667,17.89,46.2,19.2,54.8633333333,17.0666666667,48.29,4.8666666667,739.3666666667,92.6666666667,5.3333333333,40,3.7333333333,32.5435233535,32.5435233535 -50,0,20.39,46.3633333333,19.7,44.59,20.2,45.5,20.23,46.26,18.6,50,4.2633333333,94.7966666667,17.89,46.1266666667,19.2,54.73,17.0666666667,48.3633333333,4.8833333333,739.4833333333,92.8333333333,5.6666666667,40,3.7666666667,12.9008390359,12.9008390359 -40,0,20.29,46.5,19.7,44.7,20.26,45.5,20.1,46.29,18.6,50,4.4633333333,95.03,17.89,46.09,19.1,54.56,17.0333333333,48.4633333333,4.9,739.6,93,6,40,3.8,23.9272624138,23.9272624138 -50,0,20.29,46.545,19.6333333333,44.6266666667,20.29,45.5,20.0333333333,46.29,18.5333333333,50,4.59,95.03,17.89,45.92,19.1,54.5,17.0333333333,48.59,4.9166666667,739.65,92.6666666667,5.8333333333,40,3.7666666667,38.3155335323,38.3155335323 -40,0,20.23,46.5,19.6,44.59,20.29,45.5,20,46.4,18.5,50,4.7266666667,94.8666666667,17.89,45.73,19.1,54.5,17.0333333333,48.7666666667,4.9333333333,739.7,92.3333333333,5.6666666667,40,3.7333333333,4.2123457184,4.2123457184 -40,0,20.2,46.4333333333,19.6,44.59,20.29,45.5,19.9266666667,46.4666666667,18.5,50,4.8,94.7266666667,17.89,45.7,19.1,54.5,17.0333333333,48.9,4.95,739.75,92,5.5,40,3.7,43.7660665018,43.7660665018 -40,0,20.2,46.56,19.5666666667,44.7,20.29,45.56,19.8566666667,46.4666666667,18.5,50,4.8,94.4933333333,17.89,45.7,19.1,54.4,17.1,49.045,4.9666666667,739.8,91.6666666667,5.3333333333,40,3.6666666667,16.9536468922,16.9536468922 -60,0,20.1666666667,46.3633333333,19.5,44.7,20.29,45.59,19.79,46.4666666667,18.5,50,4.8,94.2266666667,17.89,45.59,19.1,54.4,17.1,49.2,4.9833333333,739.85,91.3333333333,5.1666666667,40,3.6333333333,41.9720175094,41.9720175094 -50,0,20.1,46.3633333333,19.5,44.79,20.29,45.59,19.76,46.59,18.5,50,4.8,94.1266666667,17.89,45.6633333333,19.1,54.29,17.1,49.26,5,739.9,91,5,40,3.6,17.3341744579,17.3341744579 -50,0,20.1,46.5,19.4266666667,44.73,20.29,45.59,19.7,46.6633333333,18.4725,49.975,4.8,94,17.89,45.59,19.1,54.23,17.1,49.29,4.9833333333,739.9666666667,91.6666666667,4.8333333333,40,3.6833333333,16.6887465399,16.6887465399 -40,0,20.0333333333,46.36,19.39,44.73,20.29,45.59,19.6666666667,46.6633333333,18.39,49.9,4.7633333333,93.5633333333,17.89,45.59,19.05,54.045,17.1,49.3633333333,4.9666666667,740.0333333333,92.3333333333,4.6666666667,40,3.7666666667,23.8175622537,23.8175622537 -40,0,20,46.29,19.39,44.79,20.3566666667,45.59,19.6,46.59,18.39,49.9,4.7633333333,94.0233333333,17.89,45.6266666667,19,54,17.1,49.4333333333,4.95,740.1,93,4.5,40,3.85,44.6099167923,44.6099167923 -40,0,20,46.29,19.39,44.79,20.39,45.59,19.6,46.6266666667,18.39,49.9,4.8333333333,94.7266666667,17.89,45.6266666667,19.0666666667,54,17.1,49.56,4.9333333333,740.1666666667,93.6666666667,4.3333333333,40,3.9333333333,43.2169735315,43.2169735315 -40,0,20,46.23,19.39,44.79,20.3233333333,45.59,19.6,46.7,18.39,49.9,4.8333333333,95,17.89,45.59,19.1,53.9,17.1,49.6266666667,4.9166666667,740.2333333333,94.3333333333,4.1666666667,40,4.0166666667,19.4994771737,19.4994771737 -50,0,19.9266666667,46.23,19.29,44.9,20.3233333333,45.59,19.5,46.7,18.39,49.9,4.9,95.53,17.89,45.7233333333,19.0333333333,53.8266666667,17.1,49.7,4.9,740.3,95,4,40,4.1,38.8660349417,38.8660349417 -70,10,19.89,46.23,19.29,44.925,20.3233333333,45.59,19.5,46.7,18.3566666667,49.9333333333,4.9975,95.82,17.89,45.9,19,53.79,17.1,49.8266666667,4.9333333333,740.4333333333,94.6666666667,4.1666666667,38.1666666667,4.1,48.0308998609,48.0308998609 -40,0,19.89,46.43,19.29,45,20.29,45.59,19.4266666667,46.7,18.29,50,5.09,96.03,17.89,45.9666666667,19,53.79,17.1,49.9666666667,4.9666666667,740.5666666667,94.3333333333,4.3333333333,36.3333333333,4.1,21.7329742387,21.7329742387 -30,0,19.89,46.6266666667,19.29,45.1266666667,20.29,45.59,19.39,46.7,18.29,50.1266666667,5,95.9,17.89,45.9,19,53.76,17.1333333333,50,5,740.7,94,4.5,34.5,4.1,35.6257339357,35.6257339357 -20,10,19.89,46.7,19.218,45.2,20.29,45.5,19.39,46.7,18.29,50.2,5,95.9666666667,17.89,45.8266666667,19,53.7,17.2,50,5.0333333333,740.8333333333,93.6666666667,4.6666666667,32.6666666667,4.1,19.9997184449,19.9997184449 -30,0,19.89,46.8633333333,19.2,45.245,20.29,45.4333333333,19.29,46.79,18.29,50.23,4.9666666667,95.9333333333,17.89,45.7225,19,53.875,17.2,50,5.0666666667,740.9666666667,93.3333333333,4.8333333333,30.8333333333,4.1,16.2676075939,16.2676075939 -40,10,19.8233333333,46.8633333333,19.2,45.3633333333,20.2,45.29,19.29,46.79,18.29,50.29,4.9,95.9333333333,17.89,45.79,19,54,17.2,50,5.1,741.1,93,5,29,4.1,37.8543574014,37.8543574014 -50,10,19.8566666667,46.93,19.2,45.4,20.2,45.29,19.29,46.79,18.29,50.4266666667,4.9333333333,96.09,17.89,45.8633333333,19,54.06,17.2,50.09,5.1,741.2166666667,92.6666666667,5,30.8333333333,4.05,10.1346127572,10.1346127572 -60,20,19.79,46.79,19.2,45.3266666667,20.1666666667,45.29,19.29,46.5966666667,18.23,50.8333333333,4.9333333333,96.09,17.89,45.52,18.9266666667,53.8,17.2,49.9633333333,5.1,741.3333333333,92.3333333333,5,32.6666666667,4,35.5560611235,35.5560611235 -60,20,19.79,46.895,19.175,45.195,20.1,45.29,19.26,46.2966666667,18.2,51.2666666667,5,96.09,17.89,45.14,18.9725,53.15,17.2,49.7233333333,5.1,741.45,92,5,34.5,3.95,6.0845960514,6.0845960514 -70,20,19.79,47.4266666667,19.1,45.03,20.1,45.29,19.2,46.09,18.2,51.5266666667,5,96.09,17.8566666667,44.8333333333,18.89,52.8,17.2,49.4633333333,5.1,741.5666666667,91.6666666667,5,36.3333333333,3.9,12.274425698,12.274425698 -60,30,19.79,48.3666666667,19.1,45,20.1,45.29,19.1666666667,45.9666666667,18.1,51.8266666667,5,96.09,17.79,44.5666666667,18.8566666667,52.3633333333,17.15,48.995,5.1,741.6833333333,91.3333333333,5,38.1666666667,3.85,7.1652189712,7.1652189712 -140,20,19.79,48.6666666667,19.1,45,20.2,45.29,19.1666666667,45.9,18.1,51.9666666667,5.06,96.1566666667,17.79,44.3266666667,18.79,51.9633333333,17.1,48.6333333333,5.1,741.8,91,5,40,3.8,11.9814707548,11.9814707548 -110,30,19.79,48.5333333333,19.0666666667,45.06,20.1333333333,45.29,19.2,45.76,18.1,52.1266666667,5.09,96.0266666667,17.8566666667,44.66,18.79,51.6333333333,17.1,48.36,5.05,741.8833333333,91,5,40,3.7333333333,2.9467188637,2.9467188637 -90,10,19.89,50,19.0222222222,45.0444444444,20.15,45.245,19.2,45.6266666667,18.0333333333,52.2,5.09,95.76,18,45.0633333333,18.79,51.395,17.1,48.0266666667,5,741.9666666667,91,5,40,3.6666666667,32.1144129266,32.1144129266 -60,0,19.89,48.7333333333,19.1,45.2,20.1,45.2,19.1,45.5266666667,18.05,52.4,5,95.4566666667,18,44.4566666667,18.7,51.045,17.1,47.7666666667,4.95,742.05,91,5,40,3.6,43.8134606346,43.8134606346 -60,0,19.89,48.0266666667,19.0333333333,45.1266666667,20.1,45.2,19.1,45.4,18,52.5,4.7933333333,94.79,17.89,43.96,18.7,50.76,17.1,47.4666666667,4.9,742.1333333333,91,5,40,3.5333333333,38.9457338722,38.9457338722 -60,0,19.89,47.6333333333,19,45.09,20.1,45.2,19.1,45.3633333333,18,52.56,4.4666666667,94.1933333333,17.89,43.5666666667,18.7,50.645,17.0333333333,47.2666666667,4.85,742.2166666667,91,5,40,3.4666666667,39.8654412944,39.8654412944 -50,0,19.8566666667,47.0633333333,19,45.03,20.1,45.2,19.1,45.23,18,52.79,4.2975,94.45,17.8566666667,43.1,18.7,50.42,17,46.93,4.8,742.3,91,5,40,3.4,22.763722681,22.763722681 -60,0,19.79,46.6566666667,19,44.9666666667,20.1,45.1633333333,19.1,45.09,17.9266666667,52.79,4.0633333333,94.1933333333,17.79,42.7666666667,18.6333333333,50.1566666667,17.0666666667,46.79,4.8833333333,742.3833333333,91,5,38.1666666667,3.4833333333,20.5042041023,20.5042041023 -50,0,19.79,46.3333333333,19,44.8266666667,20.1,45.09,19.1,44.9666666667,17.89,52.76,4.03,94.6666666667,17.79,42.43,18.6666666667,50.0266666667,17.0333333333,46.59,4.9666666667,742.4666666667,91,5,36.3333333333,3.5666666667,40.5435121385,40.5435121385 -30,0,19.79,46.0666666667,19,44.645,20.1,45.1633333333,19.0333333333,44.7666666667,17.89,52.0333333333,4.09,95,17.79,42.23,18.6,49.8266666667,17.0333333333,46.39,5.05,742.55,91,5,34.5,3.65,30.2466645138,30.2466645138 -40,0,19.76,45.8633333333,18.9633333333,44.56,20.0333333333,44.9633333333,19,44.6633333333,18,50.9,4.1233333333,95.3966666667,17.7,41.9666666667,18.6,49.6633333333,17,46.1633333333,5.1333333333,742.6333333333,91,5,32.6666666667,3.7333333333,32.7361964039,32.7361964039 -30,0,19.7,45.79,18.9633333333,44.4333333333,20,44.9,19.0666666667,44.59,18,50.4266666667,4.2633333333,95.7966666667,17.7,41.8266666667,18.6,49.59,17,46.03,5.2166666667,742.7166666667,91,5,30.8333333333,3.8166666667,17.6598635968,17.6598635968 -260,0,19.7,45.6633333333,18.89,44.29,20,44.9,19.1,44.6933333333,18,49.93,4.4633333333,96.26,17.7,41.6633333333,18.6,49.4666666667,17,45.8633333333,5.3,742.8,91,5,29,3.9,13.5130072944,13.5130072944 -500,0,19.7,45.59,18.89,44.23,19.89,44.9,19.1666666667,45.0266666667,18,49.6566666667,4.73,96.4666666667,17.7,41.59,18.5333333333,49.4,17,45.73,5.4833333333,742.8833333333,90.1666666667,5,30.8333333333,3.95,49.6342030587,49.6342030587 -450,0,19.73,47.7933333333,18.9266666667,44.23,19.89,44.9,19.36,45.36,18,49.5,5.03,96.56,17.7,41.5,18.5,49.26,17,45.6633333333,5.6666666667,742.9666666667,89.3333333333,5,32.6666666667,4,31.6746632219,31.6746632219 -50,10,19.79,48.7933333333,19,44.3633333333,19.89,44.8633333333,19.6933333333,45.56,18,49.56,5.1566666667,96.5,17.7,41.4,18.5,49.2,17,45.4633333333,5.85,743.05,88.5,5,34.5,4.05,10.6604067609,10.6604067609 -60,0,19.89,47.94,19.0333333333,44.5666666667,19.9633333333,44.8633333333,20,45.1333333333,18.0333333333,49.6266666667,5.3333333333,96.56,17.7,41.3266666667,18.5,49.09,17.0333333333,45.29,6.0333333333,743.1333333333,87.6666666667,5,36.3333333333,4.1,6.4686174039,6.4686174039 -60,0,19.89,47.16,19.0333333333,44.5666666667,19.9266666667,44.79,20.0666666667,44.86,18.1,49.5666666667,5.4,96.2933333333,17.7,41.26,18.5,49.09,17.0333333333,45.23,6.2166666667,743.2166666667,86.8333333333,5,38.1666666667,4.15,23.9059017156,23.9059017156 -50,0,19.89,46.7666666667,19.0333333333,44.5,20,44.79,20.1333333333,44.7,18.0333333333,49.3266666667,5.53,96.19,17.7,41.2,18.5,49,17.05,45.245,6.4,743.3,86,5,40,4.2,46.2037234916,46.2037234916 -50,0,20,46.2966666667,19.1,44.5,20,44.79,20.2,44.6266666667,18.1,49.3266666667,5.7966666667,96.19,17.73,41.0266666667,18.5,48.9333333333,17.1,45.29,6.5,743.3333333333,85.1666666667,5.3333333333,38,4.1666666667,29.9380483571,29.9380483571 -50,0,20,45.9633333333,19.1,44.4666666667,19.9266666667,44.79,20.2,44.59,18.1,49.26,5.8333333333,95.0233333333,17.79,40.9,18.4266666667,48.59,17.1,45.23,6.6,743.3666666667,84.3333333333,5.6666666667,36,4.1333333333,48.8085347461,48.8085347461 -60,0,20,46.2233333333,19.1,44.4,19.945,44.79,20.1333333333,44.4633333333,18.1,49.1266666667,5.9666666667,94.5633333333,17.79,40.7,18.5,48.4633333333,17.1,45.2,6.7,743.4,83.5,6,34,4.1,36.5896255942,36.5896255942 -60,0,20,45.9633333333,19.1,44.29,19.89,44.76,20.1,44.1633333333,18.1,49.09,6.245,93.745,17.8566666667,40.6266666667,18.5,48.19,17.1,45.1266666667,6.8,743.4333333333,82.6666666667,6.3333333333,32,4.0666666667,17.8363456042,17.8363456042 -60,0,20,45.7233333333,19.15,44.245,19.89,44.7,20.1,44.03,18.1,49,6.4333333333,91.23,17.8233333333,40.4666666667,18.5,47.9666666667,17.1,45.2,6.9,743.4666666667,81.8333333333,6.6666666667,30,4.0333333333,21.5736845275,21.5736845275 -60,0,20,45.6633333333,19.2,44.2,19.9633333333,44.7,20.0333333333,43.9,18.1,48.9333333333,6.5,88.8966666667,17.89,40.3266666667,18.5666666667,47.8266666667,17.1,45.2,7,743.5,81,7,28,4,7.4105780339,7.4105780339 -190,0,20.0333333333,45.5,19.2,44.1266666667,19.9633333333,44.7,20.0333333333,43.6933333333,18.0666666667,49,6.59,85.4633333333,17.9175,40.24,18.5666666667,47.59,17.1,45.06,7.0833333333,743.5,80.6666666667,7,30,4.0166666667,0.653878774,0.653878774 -220,0,20.1,45.6933333333,19.2,43.9,20,44.79,20,43.845,18,49.4,6.6566666667,84.3966666667,17.9266666667,40.03,18.55,47.545,17.1,45,7.1666666667,743.5,80.3333333333,7,32,4.0333333333,35.7783033047,35.7783033047 -170,0,20.1,45.4,19.2,43.9,20,44.79,20,43.8266666667,17.9633333333,49.89,6.9333333333,83.1,17.9725,39.875,18.6,47.3522222222,17.1,44.8633333333,7.25,743.5,80,7,34,4.05,5.1592117874,5.1592117874 -390,0,20.1,45.3266666667,19.2,43.856,19.9633333333,44.79,20,43.9666666667,17.89,50.2233333333,7.1266666667,82.8933333333,18,39.7,18.6,47.2,17.1,44.79,7.3333333333,743.5,79.6666666667,7,36,4.0666666667,22.3142174305,22.3142174305 -90,0,20.1,45.3266666667,19.2,43.7,19.89,44.79,19.89,44.09,17.89,50.398,7.4333333333,82.3333333333,18,39.6633333333,18.5,47.2,17.1,44.7,7.4166666667,743.5,79.3333333333,7,38,4.0833333333,32.0050522569,32.0050522569 -60,0,20.1666666667,46.9933333333,19.2,43.76,19.89,44.79,19.89,44.1633333333,17.89,50.56,7.5,81,18,39.59,18.5,47.1266666667,17.1666666667,44.6266666667,7.5,743.5,79,7,40,4.1,49.5919310022,49.5919310022 -290,0,20.1,46.43,19.1,43.8175,19.89,44.79,19.8566666667,44.16,17.8566666667,50.73,7.4,80.36,17.89,39.59,18.5,47.23,17.1666666667,44.56,7.4166666667,743.5,79.3333333333,7.1666666667,40,4.0666666667,24.7796788928,24.7796788928 -130,0,20.1,46.03,19.1,43.838125,19.89,44.79,19.8566666667,44.0266666667,17.8566666667,50.8633333333,7.4666666667,80.36,17.89,39.59,18.5,47.29,17.1,44.5,7.3333333333,743.5,79.6666666667,7.3333333333,40,4.0333333333,24.2174762185,24.2174762185 -140,0,20.0666666667,45.3633333333,19.1,43.745,19.89,44.8633333333,19.79,43.8633333333,17.79,50.9333333333,7.6566666667,78.79,17.89,39.59,18.5,47.33,17.1,44.4,7.25,743.5,80,7.5,40,4,8.6721167434,8.6721167434 -240,0,20,44.9633333333,19.1,43.5955555556,19.89,44.8266666667,19.73,43.53,17.79,51,7.53,78.19,17.89,39.59,18.5,47.2825,17.1,44.3266666667,7.1666666667,743.5,80.3333333333,7.6666666667,40,3.9666666667,37.7410472254,37.7410472254 -50,0,20,44.76,19.1,43.4888888889,19.89,44.9,19.7,43.5,17.79,51,7.6233333333,78.73,17.945,39.565,18.5,47.1371428571,17.1,44.29,7.0833333333,743.5,80.6666666667,7.8333333333,40,3.9333333333,22.694774461,22.694774461 -60,0,20,44.595,19.1,43.425,19.89,44.9,19.7,43.5,17.79,51,7.69,77.1966666667,18.0777777778,39.4766666667,18.5,47.0113333333,17.1,44.23,7,743.5,81,8,40,3.9,25.5584891886,25.5584891886 -60,0,20,44.4333333333,19.1,43.334,19.89,44.9,19.7,43.4666666667,17.79,51,7.56,76.3233333333,18.1833333333,39.275,18.5,46.9166666667,17.1,44.2,6.9833333333,743.55,80.1666666667,7.5,40,3.7333333333,10.3772556642,10.3772556642 -60,0,20,44.26,19.1,43.29,19.89,44.9,19.7,43.4,17.79,51,7.4333333333,76.4633333333,18.1833333333,39.09,18.5,46.8633333333,17.1,44.2,6.9666666667,743.6,79.3333333333,7,40,3.5666666667,11.4329071366,11.4329071366 -370,0,20,44.2,19.1,43.29,19.89,44.9,19.6,43.2,17.73,51,7.295,77.4,18.1,39.09,18.5,46.79,17.1,44.1266666667,6.95,743.65,78.5,6.5,40,3.4,29.7855998157,29.7855998157 -200,0,20,44.06,19.0333333333,43.23,19.945,44.9,19.6,43.1266666667,17.79,51,6.9,77.6333333333,18.0666666667,39.06,18.5,47,17.1,44,6.9333333333,743.7,77.6666666667,6,40,3.2333333333,28.7436099141,28.7436099141 -70,0,20,44.06,19,43.2,19.89,44.9,19.5666666667,43.06,17.7,51,6.9666666667,78.8266666667,18,39,18.4266666667,46.9333333333,17.1,43.9333333333,6.9166666667,743.75,76.8333333333,5.5,40,3.0666666667,3.8532190141,3.8532190141 -50,0,20,44.09,19,43.1266666667,19.89,44.8266666667,19.5,43,17.7,51,6.9666666667,79.49,17.9725,39,18.4633333333,47,17.1,43.79,6.9,743.8,76,5,40,2.9,1.7770289793,1.7770289793 -40,0,20,44.03,19,43.09,19.89,44.9,19.4633333333,43.06,17.7,51,6.8333333333,78.7566666667,17.89,39,18.39,47,17.1,43.79,6.8,743.8166666667,77,4.8333333333,40,3,32.1397746098,32.1397746098 -40,0,19.9633333333,43.9,18.9266666667,43.09,19.89,44.9,19.39,43,17.7,51,6.3666666667,79.06,18.0333333333,39.09,18.39,46.9,17.1,43.7,6.7,743.8333333333,78,4.6666666667,40,3.1,46.4307599817,46.4307599817 -30,0,19.9633333333,43.9,19.0333333333,43.06,19.89,44.79,19.445,43.145,17.7,51,6.4333333333,82.5333333333,18.1666666667,39.03,18.4975,46.6725,17.1,43.76,6.6,743.85,79,4.5,40,3.2,29.9046211177,29.9046211177 -30,0,20,43.8633333333,19.1,43,19.89,44.79,19.5333333333,43.1633333333,17.7,51,6.9333333333,81.0266666667,18.3233333333,38.8333333333,18.6666666667,46.53,17.1666666667,43.79,6.5,743.8666666667,80,4.3333333333,40,3.3,28.0450374004,28.0450374004 -30,0,20.0666666667,43.8633333333,19.1333333333,42.8633333333,19.89,44.76,19.6,43.03,17.7,51,7,76.8333333333,18.445,38.645,18.79,46.2233333333,17.1666666667,43.79,6.4,743.8833333333,81,4.1666666667,40,3.4,26.3013861957,26.3013861957 -30,0,20.1,43.79,19.2,42.715,19.89,44.7,19.6,42.8633333333,17.7,51,6.9333333333,75.1333333333,18.5285714286,38.2535714286,18.79,45.9808333333,17.2,43.79,6.3,743.9,82,4,40,3.5,49.2547611939,49.2547611939 -40,0,20.1,43.73,19.1363636364,42.65,19.89,44.7,19.5333333333,42.79,17.7,51.06,6.7266666667,75.3333333333,18.4877777778,38.1877777778,18.78,45.8877777778,17.2,43.73,6.3333333333,743.95,80.8333333333,4.5,38.1666666667,3.3,25.3820911166,25.3820911166 -50,0,20.1,43.56,19.13,42.59,19.89,44.76,19.39,42.59,17.6666666667,51,6.5266666667,73.76,18.39,38.027,18.7163636364,45.81,17.2,43.6633333333,6.3666666667,744,79.6666666667,5,36.3333333333,3.1,34.1394039337,34.1394039337 -40,0,20.1,43.4333333333,19.1,42.59,19.89,44.79,19.39,42.59,17.6,51,6.3333333333,73.5,18.3757142857,38,18.7,45.79,17.2,43.53,6.4,744.05,78.5,5.5,34.5,2.9,30.0770608825,30.0770608825 -40,0,20.1,43.1633333333,19.0375,42.53375,19.8233333333,44.73,19.29,42.59,17.6,50.9666666667,6.1233333333,75.7,18.242,37.9466666667,18.7,45.7245454545,17.1,43.4,6.4333333333,744.1,77.3333333333,6,32.6666666667,2.7,11.9434338878,11.9434338878 -40,0,20.1,43.03,19.0076923077,42.43,19.79,44.7,19.29,42.59,17.6,50.9,6.19,76.3666666667,18.2,37.9,18.63125,45.711875,17.1,43.3266666667,6.4666666667,744.15,76.1666666667,6.5,30.8333333333,2.5,12.9082963336,12.9082963336 -60,0,20.0666666667,42.8333333333,19,42.4181818182,19.79,44.7,19.26,42.56,17.6,50.9,6.1566666667,76.8933333333,18.1388888889,37.9055555556,18.6,45.79,17.1,43.26,6.5,744.2,75,7,29,2.3,36.4654811681,36.4654811681 -60,10,20,42.6725,19,42.4333333333,19.79,44.6633333333,19.2,42.56,17.6,50.9,6.09,77.56,18.1,37.9454545455,18.6,45.8083333333,17.1,43.2,6.3166666667,744.2833333333,76.6666666667,7,30.8333333333,2.4333333333,22.6285415702,22.6285415702 -210,20,20,42.53,18.99,42.4718181818,19.79,44.59,19.2,42.6266666667,17.6,50.79,6.09,77.995,18.1,38.045,18.6,45.9,17.1,43.145,6.1333333333,744.3666666667,78.3333333333,7,32.6666666667,2.5666666667,8.7563384208,8.7563384208 -380,20,20.0333333333,43.4966666667,18.9022222222,42.58,19.8233333333,44.59,19.2,42.76,17.6,50.73,6.06,78.7,18.0181818182,38.0572727273,18.5363636364,46,17.1,43,5.95,744.45,80,7,34.5,2.7,37.334913481,37.334913481 -370,40,20.0333333333,42.9633333333,18.89,42.56,19.89,44.59,19.36,43.5666666667,17.5333333333,50.79,5.9333333333,81.0333333333,18,38.3441666667,18.5,46,17.1,43,5.7666666667,744.5333333333,81.6666666667,7,36.3333333333,2.8333333333,5.24938202,5.24938202 -230,30,20,43.16,18.89,42.7966666667,19.89,44.59,19.6933333333,43.9,17.6,50.79,5.5266666667,82.8933333333,18.0666666667,38.9,18.5,46.1266666667,17.0666666667,42.93,5.5833333333,744.6166666667,83.3333333333,7,38.1666666667,2.9666666667,43.2272474514,43.2272474514 -80,40,20,43.9,18.8566666667,43.4,19.79,44.4666666667,20.1633333333,43.8333333333,17.6,50.745,5.26,83.4333333333,18.1333333333,39.3266666667,18.5,46.3333333333,17,42.8633333333,5.4,744.7,85,7,40,3.1,30.7322485838,30.7322485838 -90,30,20,43.7,18.8566666667,43.4666666667,19.79,44.4666666667,20.29,43.6266666667,17.5,50.8266666667,5.06,84.2566666667,18.2,39.3266666667,18.6,46.6266666667,17.0333333333,42.8266666667,5.3,744.75,86,6.8333333333,40,3.15,27.8579769423,27.8579769423 -70,20,20,43.76,18.9266666667,43.3633333333,19.79,44.4,20.2,43.49,17.5,50.9,4.9333333333,85.0633333333,18.245,39.45,18.6666666667,46.8333333333,17.0333333333,42.8266666667,5.2,744.8,87,6.6666666667,40,3.2,16.4388659527,16.4388659527 -40,10,20.0333333333,44,19,43.29,19.79,44.4,20.2,43.0966666667,17.5,51,4.9333333333,86.4566666667,18.2,39.26,18.7,47.0266666667,17,42.7,5.1,744.85,88,6.5,40,3.25,22.6565722725,22.6565722725 -40,0,20.1,44.26,19.2,43.29,19.89,44.4,20.1,42.845,17.5,51,5,87.6633333333,18.2,39.1266666667,18.76,46.9,17,42.76,5,744.9,89,6.3333333333,40,3.3,25.0220486312,25.0220486312 -30,0,20.1,44.2,19.245,43.245,19.89,44.3266666667,19.9633333333,42.59,17.5,51.09,4.9,88.6333333333,18.1,39.09,18.7,46.7675,17,42.79,4.9,744.95,90,6.1666666667,40,3.35,9.0433180565,9.0433180565 -50,0,20.1,44.1266666667,19.29,43.095,19.79,44.09,19.89,42.59,17.5,51.09,4.9,89.4266666667,18.1,39.09,18.7,46.645,17,42.79,4.8,745,91,6,40,3.4,26.4815301402,26.4815301402 -50,0,20.1,44.06,19.37,42.92,19.79,44.09,19.8566666667,42.56,17.5,51,4.8666666667,90.2266666667,18.0666666667,39.06,18.6,46.5,17,42.79,4.75,745.0333333333,91.3333333333,6.1666666667,40,3.4,3.7637872854,3.7637872854 -60,0,20.1,44,19.39,42.9,19.79,44.1266666667,19.79,42.5,17.5,51,4.8666666667,90.8933333333,18,39,18.5333333333,46.56,16.9266666667,42.79,4.7,745.0666666667,91.6666666667,6.3333333333,40,3.4,13.8877966325,13.8877966325 -50,0,20.1,43.9,19.39,42.76,19.79,44.2,19.76,42.53,17.5,51,4.9333333333,91.4,17.9633333333,39,18.5,46.9,16.89,42.79,4.65,745.1,92,6.5,40,3.4,10.6349759619,10.6349759619 -60,0,20.1,43.8266666667,19.39,42.7,19.79,44.2,19.7,42.53,17.5,51,4.9333333333,91.26,17.89,39,18.5,47.1266666667,16.9633333333,42.8633333333,4.6,745.1333333333,92.3333333333,6.6666666667,40,3.4,14.2395240488,14.2395240488 -60,0,20.0333333333,43.73,19.39,42.6633333333,19.79,44.2,19.6666666667,42.56,17.5,50.9666666667,4.6266666667,90.9633333333,17.89,39,18.5,47.26,16.89,42.9,4.55,745.1666666667,92.6666666667,6.8333333333,40,3.4,44.7547051474,44.7547051474 -60,0,20.1,43.73,19.39,42.53,19.79,44.29,19.6,42.5,17.5,50.9,4.4,91.2725,17.89,39,18.5,47.3266666667,16.89,42.9,4.5,745.2,93,7,40,3.4,22.3117661662,22.3117661662 -50,0,20.0666666667,43.49,19.3566666667,42.5,19.79,44.29,19.6,42.5,17.5,50.8633333333,4.3666666667,92.46,17.79,38.9,18.5,47.4,16.89,42.9,4.5333333333,745.3166666667,92.6666666667,6.8333333333,40,3.4,38.9992444892,38.9992444892 -50,0,20,43.29,19.29,42.4333333333,19.79,44.29,19.5333333333,42.5,17.5,50.79,4.53,93.19,17.79,38.9,18.39,47.4,16.89,42.9,4.5666666667,745.4333333333,92.3333333333,6.6666666667,40,3.4,44.0309517435,44.0309517435 -50,0,20,43.145,19.29,42.45,19.79,44.29,19.5,42.5,17.5,50.79,4.59,93.19,17.79,38.9,18.39,47.4,16.89,42.845,4.6,745.55,92,6.5,40,3.4,20.6562104751,20.6562104751 -50,0,20,43.06,19.26,42.4666666667,19.79,44.29,19.5,42.5,17.5,50.73,4.56,93.06,17.79,38.9666666667,18.39,47.4,16.89,42.8266666667,4.6333333333,745.6666666667,91.6666666667,6.3333333333,40,3.4,3.1904240255,3.1904240255 -50,0,19.9266666667,43,19.2,42.4,19.79,44.29,19.4633333333,42.4666666667,17.39,50.59,4.3666666667,92.9333333333,17.79,39,18.39,47.4,16.89,42.9,4.6666666667,745.7833333333,91.3333333333,6.1666666667,40,3.4,16.7743745842,16.7743745842 -60,0,19.89,42.8633333333,19.2,42.3266666667,19.79,44.29,19.39,42.4,17.39,50.53,4.2633333333,93.3666666667,17.73,39,18.39,47.4,16.89,42.9,4.7,745.9,91,6,40,3.4,36.186297331,36.186297331 -60,0,19.89,42.79,19.2,42.3266666667,19.79,44.26,19.39,42.4333333333,17.39,50.5,4.2633333333,93.8933333333,17.7,39,18.39,47.3266666667,16.89,42.9,4.8,745.95,90.5,6.1666666667,38.1666666667,3.4166666667,16.8807666749,16.8807666749 -40,0,19.89,42.7,19.1,42.3633333333,19.79,44.2,19.3233333333,42.5,17.39,50.4666666667,4.4,94.2633333333,17.7,39,18.29,47.29,16.89,42.9,4.9,746,90,6.3333333333,36.3333333333,3.4333333333,31.5207061241,31.5207061241 -30,0,19.8233333333,42.6266666667,19.1,42.29,19.79,44.1633333333,19.29,42.5,17.39,50.4,4.4666666667,94.3966666667,17.7,39,18.29,47.29,16.89,42.8266666667,5,746.05,89.5,6.5,34.5,3.45,42.0307277003,42.0307277003 -30,20,19.79,42.59,19.0444444444,42.24,19.73,44.09,19.29,42.5,17.39,50.4,4.6233333333,94.4,17.625,38.925,18.29,47.29,16.79,42.79,5.1,746.1,89,6.6666666667,32.6666666667,3.4666666667,42.8065832355,42.8065832355 -30,10,19.79,42.7233333333,19,42.0563636364,19.7,44,19.29,42.69,17.39,50.3266666667,4.69,94.26,17.7245454545,39.3272727273,18.29,47.4816666667,16.79,42.79,5.2,746.15,88.5,6.8333333333,30.8333333333,3.4833333333,19.5679640514,19.5679640514 -40,0,19.76,42.76,19,41.8866666667,19.7,44.06,19.29,42.73,17.39,50.29,4.8333333333,94.3966666667,17.78,39.6894444444,18.3627272727,47.7054545455,16.89,43.1966666667,5.3,746.2,88,7,29,3.5,19.0246942802,19.0246942802 -50,10,19.7,42.7,19,41.9883333333,19.7,44.1266666667,19.23,42.79,17.39,50.29,4.9666666667,94.59,17.8066666667,40.1961111111,18.479375,48.3425,16.89,43.7966666667,5.3333333333,746.2666666667,87.3333333333,6.8333333333,30.8333333333,3.4,44.7722712997,44.7722712997 -50,0,19.7,42.7,19,42.0642857143,19.7,44.2,19.2,43,17.39,50.3266666667,5.09,94.6266666667,17.8566666667,40.6922222222,18.5588235294,48.8417647059,16.89,44.1933333333,5.3666666667,746.3333333333,86.6666666667,6.6666666667,32.6666666667,3.3,32.2157881455,32.2157881455 -50,0,19.6333333333,42.6266666667,18.910625,42.2525,19.73,44.29,19.2,43.1333333333,17.39,50.4666666667,5.09,94.2933333333,17.89,40.9377777778,18.6,49.3227272727,16.89,44.66,5.4,746.4,86,6.5,34.5,3.2,37.0539324358,37.0539324358 -40,0,19.6666666667,43,18.89,42.410625,19.79,44.29,19.2,43.23,17.39,50.53,5.19,93.6333333333,17.84,41.085,18.6,49.664375,16.9266666667,45.0966666667,5.4333333333,746.4666666667,85.3333333333,6.3333333333,36.3333333333,3.1,30.2651723265,30.2651723265 -50,0,19.6,43,18.89,42.5,19.79,44.4333333333,19.2,43.3633333333,17.39,50.6633333333,5.2725,92.47,17.8445454545,41.2736363636,18.6,50.0590909091,16.9266666667,45.43,5.4666666667,746.5333333333,84.6666666667,6.1666666667,38.1666666667,3,45.1540805749,45.1540805749 -40,0,19.6,43,18.89,42.645,19.79,44.5,19.1333333333,43.4,17.3566666667,50.79,5.3666666667,90.8,17.84625,41.44125,18.6333333333,50.39,17,45.7,5.5,746.6,84,6,40,2.9,14.686507755,14.686507755 -40,0,19.5333333333,43,18.8081818182,42.7,19.79,44.53,19.1333333333,43.4666666667,17.3566666667,50.8633333333,5.5,89.1,17.89,41.59,18.6142857143,50.5671428571,17,45.8333333333,5.5833333333,746.7333333333,83.3333333333,6.3333333333,40,2.8666666667,9.5630054944,9.5630054944 -40,0,19.5,43.09,18.79,42.75625,19.79,44.59,19.1,43.5,17.29,51.03,5.56,87.3666666667,17.8011111111,41.7277777778,18.6,50.8828571429,17,46.03,5.6666666667,746.8666666667,82.6666666667,6.6666666667,40,2.8333333333,44.3225471652,44.3225471652 -40,0,19.5,43.09,18.79,42.8616666667,19.79,44.59,19.1,43.5,17.29,51.09,5.69,85.43,17.79,41.9388888889,18.625,51.25,17,46.1633333333,5.75,747,82,7,40,2.8,25.1669742865,25.1669742865 -50,0,19.5,43.145,18.79,43,19.79,44.59,19.1,43.53,17.29,51.23,5.69,84.6233333333,17.79,42.1266666667,18.7,51.465,17,46.29,5.8333333333,747.1333333333,81.3333333333,7.3333333333,40,2.7666666667,43.8528771512,43.8528771512 -50,0,19.5,43.2,18.775,43.045,19.89,44.8266666667,19.0333333333,43.53,17.29,51.29,5.8,83.8266666667,17.79,42.294,18.7,51.59,17,46.53,5.9166666667,747.2666666667,80.6666666667,7.6666666667,40,2.7333333333,9.4596811221,9.4596811221 -50,0,19.4266666667,43.2,18.7,43.09,19.89,44.9,19,43.59,17.29,51.4,5.8666666667,82.56,17.84,42.495,18.7,51.63125,17,46.6633333333,6,747.4,80,8,40,2.7,37.9051526194,37.9051526194 -30,0,19.39,43.2,18.7,43.2,19.89,44.845,19,43.59,17.29,51.4,6,80.9566666667,17.8042857143,42.5864285714,18.7257142857,51.7942857143,17,46.8266666667,5.8833333333,747.5333333333,81.3333333333,8,37.8333333333,2.8333333333,36.2249446334,36.2249446334 -20,0,19.39,43.26,18.7,43.26,19.89,44.8633333333,18.9633333333,43.6266666667,17.29,51.5,6,80.69,17.815,42.9,18.79,51.925,17,46.9666666667,5.7666666667,747.6666666667,82.6666666667,8,35.6666666667,2.9666666667,47.1862409147,47.1862409147 -30,0,19.39,43.29,18.6909090909,43.31,19.89,44.79,18.89,43.7,17.29,51.59,5.73,84.0333333333,17.89,43.156,18.75,52.1855555556,17,47.1266666667,5.65,747.8,84,8,33.5,3.1,27.3823293508,27.3823293508 -20,0,19.39,43.3633333333,18.6777777778,43.3977777778,19.89,44.79,18.89,43.7,17.29,51.59,5.53,86.56,17.89,43.2,18.815,52.25,17,47.26,5.5333333333,747.9333333333,85.3333333333,8,31.3333333333,3.2333333333,35.5871933862,35.5871933862 -40,0,19.39,43.4,18.6428571429,43.4285714286,19.8233333333,44.73,18.89,43.76,17.29,51.7,5.5,87.4566666667,17.89,43.4271428571,18.8757142857,52.3214285714,17,47.4333333333,5.4166666667,748.0666666667,86.6666666667,8,29.1666666667,3.3666666667,19.4452549913,19.4452549913 -50,0,19.3233333333,43.4666666667,18.6,43.46,19.79,44.7,18.89,43.79,17.29,51.7,5.56,86.33,17.89,43.59,18.7514285714,52.29,17,47.56,5.3,748.2,88,8,27,3.5,5.0436563091,5.0436563091 -60,0,19.29,43.5,18.6,43.5,19.79,44.76,18.89,43.8266666667,17.29,51.73,5.5,86.3266666667,17.89,43.59,18.7,52.4333333333,17.0333333333,47.7666666667,5.3,748.3166666667,88.5,8,26,3.5666666667,46.3651044294,46.3651044294 -50,0,19.29,43.56,18.6,43.56,19.79,44.79,18.89,43.9,17.29,51.79,5.4333333333,87.4666666667,17.89,43.6633333333,18.7,52.6333333333,17.0333333333,47.9666666667,5.3,748.4333333333,89,8,25,3.6333333333,14.1616250155,14.1616250155 -40,0,19.29,43.59,18.5888888889,43.59,19.8566666667,44.8633333333,18.79,43.9,17.29,51.9,5.4,89.3266666667,17.89,43.8622222222,18.7,53.1733333333,17,48.1566666667,5.3,748.55,89.5,8,24,3.7,29.5286579407,29.5286579407 -40,0,19.29,43.59,18.5,43.59,19.89,44.9,18.79,43.9,17.29,51.9,5.4,89.97,17.89,44,18.7,53.4666666667,17,48.3633333333,5.3,748.6666666667,90,8,23,3.7666666667,5.5180302472,5.5180302472 -50,0,19.29,43.7,18.5,43.6358333333,19.89,44.9,18.79,43.9333333333,17.29,51.9333333333,5.4,89.8333333333,17.89,44.365,18.7,54.00625,17.1,48.6566666667,5.3,748.7833333333,90.5,8,22,3.8333333333,42.0253516058,42.0253516058 -40,0,19.29,43.76,18.5,43.68625,19.89,44.9,18.79,44,17.29,52,5.4,89.2633333333,17.979375,44.679375,18.7,54.5571428571,17.0333333333,48.79,5.3,748.9,91,8,21,3.9,15.8981842222,15.8981842222 -40,0,19.2,43.7,18.5,43.7,19.89,44.9666666667,18.79,44,17.29,52.03,5.4666666667,89.19,18,44.755,18.705,54.8477777778,17.1,48.9633333333,5.3333333333,749.0833333333,90.6666666667,8,21.5,3.8833333333,39.1425668495,39.1425668495 -50,0,19.2,43.76,18.5,43.775,19.89,45,18.79,44.06,17.23,52.03,5.5,88.3933333333,18,44.765,18.75,55,17.1,49.09,5.3666666667,749.2666666667,90.3333333333,8,22,3.8666666667,13.3754103677,13.3754103677 -50,0,19.2,43.79,18.5,43.845,19.89,45,18.76,44.09,17.26,52.09,5.56,87.3266666667,18,44.6938888889,18.705,54.9444444444,17.1,49.23,5.4,749.45,90,8,22.5,3.85,10.9322642442,10.9322642442 -50,0,19.2,43.8633333333,18.5,43.9,19.89,45,18.7,44.09,17.26,52.1633333333,5.59,86.06,18,44.6816666667,18.73,54.9611111111,17.1,49.3175,5.4333333333,749.6333333333,89.6666666667,8,23,3.8333333333,25.8398418198,25.8398418198 -40,0,19.2,43.9,18.4830769231,43.8619230769,19.9633333333,45,18.7,44.1266666667,17.2,52.09,5.6566666667,86,18,44.6083333333,18.765,54.8816666667,17.1,49.4666666667,5.4666666667,749.8166666667,89.3333333333,8,23.5,3.8166666667,13.4475296014,13.4475296014 -30,0,19.1,43.9333333333,18.4938888889,43.79,19.89,45.03,18.7,44.1266666667,17.2,52.1633333333,5.69,85.3333333333,18,44.7144444444,18.74,54.765,17.1,49.53,5.5,750,89,8,24,3.8,9.058416367,9.058416367 -20,0,19.1,44,18.4205555556,43.8083333333,19.89,45.0675,18.7,44.1266666667,17.2,52.23,5.69,85.06,18.0111111111,44.785,18.725,54.6572222222,17.1,49.59,5.4833333333,750.2,89,8,24,3.7833333333,25.9288068744,25.9288068744 -20,0,19.1,44,18.3961111111,43.7961111111,19.89,45,18.7,44.2,17.2,52.29,5.69,84.76,18.0333333333,44.755,18.71,54.545,17.1,49.59,5.4666666667,750.4,89,8,24,3.7666666667,28.1391467899,28.1391467899 -20,0,19.1,44,18.39,43.79,19.89,45,18.7,44.2,17.2,52.29,5.69,84.6333333333,18.0611111111,44.7944444444,18.73,54.4327777778,17.1,49.6633333333,5.45,750.6,89,8,24,3.75,6.4578427235,6.4578427235 -50,0,19.1,44.09,18.39,43.79,19.8233333333,44.9333333333,18.7,44.2,17.2,52.4,5.7266666667,83.1966666667,18.0277777778,44.6944444444,18.715,54.2922222222,17.1,49.7,5.4333333333,750.8,89,8,24,3.7333333333,12.8183802008,12.8183802008 -50,0,19.1,44.09,18.3718181818,43.84,19.79,44.9333333333,18.6333333333,44.1266666667,17.2,52.4,5.8,82.2566666667,18,44.6572222222,18.725,54.205,17.1,49.76,5.4166666667,751,89,8,24,3.7166666667,35.8967637992,35.8967637992 -50,0,19.0333333333,44.03,18.3076470588,43.9,19.79,45,18.6333333333,44.2,17.2,52.4333333333,5.8333333333,80.99,18,44.6694444444,18.7,54.1492307692,17.1,49.79,5.4,751.2,89,8,24,3.7,48.0704968213,48.0704968213 -40,0,19.0333333333,44.09,18.3429411765,43.9,19.8233333333,45.03,18.6,44.145,17.2,52.5,5.8333333333,80.1966666667,18.05,44.6633333333,18.7245454545,54.09,17.1,49.79,5.3666666667,751.3166666667,89.1666666667,8,23.6666666667,3.6833333333,5.0070423284,5.0070423284 -40,0,19,44.09,18.34,43.9166666667,19.8233333333,45.03,18.6,44.1266666667,17.2,52.5,5.8,80.14,18,44.6877777778,18.74,54.09,17.2,49.9,5.3333333333,751.4333333333,89.3333333333,8,23.3333333333,3.6666666667,38.1611344754,38.1611344754 -50,0,19,44.09,18.29,43.9055555556,19.89,45.06,18.6,44.2,17.2,52.5,5.7633333333,79.73,18,44.7811111111,18.725,54.015,17.2,49.9,5.3,751.55,89.5,8,23,3.65,47.3983177333,47.3983177333 -40,0,19,44.09,18.29,43.9,19.89,45.06,18.5333333333,44.2,17.2,52.59,5.6233333333,79.8633333333,18.0277777778,44.9155555556,18.7,53.9277777778,17.2,49.9666666667,5.2666666667,751.6666666667,89.6666666667,8,22.6666666667,3.6333333333,40.9317344194,40.9317344194 -50,0,19,44.1633333333,18.29,43.9388888889,19.89,45.06,18.6,44.2,17.2,52.59,5.6233333333,80.0266666667,18.0277777778,44.95,18.7,53.8572222222,17.2,49.9666666667,5.2333333333,751.7833333333,89.8333333333,8,22.3333333333,3.6166666667,15.4146165354,15.4146165354 -50,0,18.9633333333,44.2,18.273125,43.98125,19.89,45.06,18.5666666667,44.2,17.2,52.59,5.69,79.6333333333,18.0125,44.891875,18.7,53.784375,17.2,50,5.2,751.9,90,8,22,3.6,32.478973025,32.478973025 -50,0,18.89,44.2,18.29,44,19.89,45.09,18.5,44.2,17.2,52.6633333333,5.56,78.83,18,44.834,18.7,53.7257142857,17.2,50.06,5.1666666667,752.05,90,7.8333333333,22.1666666667,3.5666666667,47.6677725557,47.6677725557 -40,0,18.89,44.2,18.245,44,19.89,45.09,18.5,44.2,17.1,52.7,5.4333333333,78.43,18,44.9,18.7,53.6633333333,17.2,50.1266666667,5.1333333333,752.2,90,7.6666666667,22.3333333333,3.5333333333,47.6866325014,47.6866325014 -40,0,18.89,44.2,18.2,44,19.9633333333,45.09,18.5,44.2,17.1666666667,52.7,5.2266666667,78.8233333333,18,44.9454545455,18.7,53.59,17.2,50.2,5.1,752.35,90,7.5,22.5,3.5,16.9989601709,16.9989601709 -50,0,18.89,44.23,18.2,44,19.89,45.09,18.5,44.2,17.2,52.79,5.3666666667,78.9633333333,18,45.0671428571,18.7,53.5,17.2,50.2,5.0666666667,752.5,90,7.3333333333,22.6666666667,3.4666666667,13.1237055059,13.1237055059 -20,0,18.89,44.29,18.2,44,19.9266666667,45.09,18.5,44.2,17.2,52.79,5.5,78.6333333333,18,45.2409090909,18.7,53.42,17.2,50.2,5.0333333333,752.65,90,7.1666666667,22.8333333333,3.4333333333,8.272696659,8.272696659 -20,0,18.89,44.29,18.2,44,19.9266666667,45.03,18.4633333333,44.1633333333,17.1666666667,52.79,5.56,78.3666666667,18.0055555556,45.3016666667,18.7,53.3870588235,17.2,50.26,5,752.8,90,7,23,3.4,16.108402831,16.108402831 -50,0,18.865,44.365,18.2,44,19.89,45.06,18.4633333333,44.1633333333,17.1333333333,52.79,5.59,78.6,18.0333333333,45.3966666667,18.7,53.2984615385,17.2,50.3266666667,5.0166666667,752.9833333333,89.8333333333,6.8333333333,25.8333333333,3.4,25.5062603275,25.5062603275 -30,10,18.79,44.7233333333,18.2,44.0666666667,19.815,44.82,18.39,44.1266666667,17.1,52.79,5.59,78.9333333333,18.0571428571,45.55,18.7,53.29,17.2,50.3266666667,5.0333333333,753.1666666667,89.6666666667,6.6666666667,28.6666666667,3.4,46.1984235677,46.1984235677 -50,10,18.89,45.03,18.2,44.29375,19.73,44.6266666667,18.39,44.1266666667,17.1666666667,53.3233333333,5.59,79.16,18.0714285714,45.5257142857,18.6818181818,53.2536363636,17.2,50.29,5.05,753.35,89.5,6.5,31.5,3.4,25.5479849176,25.5479849176 -50,10,18.89,45.09,18.1727272727,44.4163636364,19.7,44.59,18.39,44.09,18.85,84.9,5.53,79.3,18,45.1725,18.6272727273,53.1645454545,17.2,50.29,5.0666666667,753.5333333333,89.3333333333,6.3333333333,34.3333333333,3.4,12.8810630413,12.8810630413 -200,0,18.89,45,18.1818181818,44.5409090909,19.7,44.53,18.39,44.1633333333,18.76,84.79,5.53,79.4666666667,18.05,46.0807142857,18.6428571429,53.2642857143,17.2,50.3266666667,5.0833333333,753.7166666667,89.1666666667,6.1666666667,37.1666666667,3.4,2.3230443476,2.3230443476 -110,10,18.89,45,18.15,44.59,19.6,44.2233333333,18.39,44.1633333333,18.9666666667,83.5233333333,5.59,79.3333333333,18.1,46.2633333333,18.6,53.14,17.2,50.4,5.1,753.9,89,6,40,3.4,20.892812917,20.892812917 -80,10,18.79,44.6333333333,18.1,44.1966666667,19.5333333333,43.83,18.39,44.09,19.76,73.5233333333,5.59,79.35,18.1,45.6566666667,18.6,52.8266666667,17.2,50.2233333333,5.0833333333,753.9666666667,89.1666666667,5.8333333333,36.6666666667,3.4,42.7000751137,42.7000751137 -50,0,18.79,44.5,18.1,43.9666666667,19.5,43.9,18.39,44.09,19.3,66.79,5.59,79.4,18,44.8333333333,18.6,52.3,17.2,49.9633333333,5.0666666667,754.0333333333,89.3333333333,5.6666666667,33.3333333333,3.4,17.3615338863,17.3615338863 -50,0,18.79,44.59,18.05,43.845,19.5,43.9666666667,18.39,43.9666666667,18.89,63.09,5.59,79.5933333333,17.945,44.295,18.55,51.895,17.2,49.6,5.05,754.1,89.5,5.5,30,3.4,6.5721160267,6.5721160267 -50,0,18.79,44.53,18.1,43.8175,19.5,44,18.3233333333,43.9,18.615,59.8633333333,5.59,79.8966666667,17.89,43.1583333333,18.5,51.4975,17.2,49.1933333333,5.0333333333,754.1666666667,89.6666666667,5.3333333333,26.6666666667,3.4,18.7243432272,18.7243432272 -40,0,18.79,44.3633333333,18.1,43.79,19.5,44,18.29,43.79,18.5,58.83,5.59,80.09,17.89,42.838125,18.5,51.0666666667,17.1,48.7966666667,5.0166666667,754.2333333333,89.8333333333,5.1666666667,23.3333333333,3.4,31.5710114199,31.5710114199 -40,0,18.79,44.23,18,43.645,19.5,43.9,18.29,43.79,18.3566666667,57.8,5.59,79.8966666667,17.89,42.514,18.5,50.9,17.1,48.4633333333,5,754.3,90,5,20,3.4,19.5039466838,19.5039466838 -30,0,18.79,44.06,18,43.7,19.5,43.9,18.29,43.7,18.29,57.245,5.59,79.4966666667,17.79,41.9666666667,18.39,50.56,17.1,48.1,5,754.45,89.6666666667,4.8333333333,21.5,3.3666666667,34.4813924399,34.4813924399 -180,20,18.79,43.9333333333,18,43.45,19.5,43.9666666667,18.29,43.7,18.2225,56.4725,5.56,79.4,17.79,41.7666666667,18.39,50.2925,17.1,47.8,5,754.6,89.3333333333,4.6666666667,23,3.3333333333,34.4706706237,34.4706706237 -350,30,18.79,43.9,18,43.3633333333,19.4266666667,43.7666666667,18.23,43.6566666667,18.2,55.8,5.5,79.4,17.76,41.43,18.39,50.03,17.1,47.4,5,754.75,89,4.5,24.5,3.3,27.745031158,27.745031158 -350,20,18.79,43.9,18,43.3633333333,19.39,43.59,18.4966666667,43.8633333333,18.2,55.7333333333,5.4666666667,79.06,17.7,41.23,18.29,49.76,17.1,47.0666666667,5,754.9,88.6666666667,4.3333333333,26,3.2666666667,21.4812203893,21.4812203893 -300,30,18.79,44,18,43.4,19.39,43.59,18.8233333333,44,18.26,56.66,5.4,79.1266666667,17.7,41.0266666667,18.29,49.6266666667,17,46.7233333333,5,755.05,88.3333333333,4.1666666667,27.5,3.2333333333,22.6360031404,22.6360031404 -400,20,18.8566666667,44.06,18.0666666667,43.4666666667,19.39,43.59,19.03,44,18.29,56.6666666667,5.5,79.1566666667,17.7,40.8266666667,18.29,49.3633333333,17,46.42,5,755.2,88,4,29,3.2,15.3221629444,15.3221629444 -390,30,18.89,44.23,18.1333333333,43.59,19.4633333333,43.6633333333,19.46,44.06,18.29,56.4666666667,5.5,79.09,17.7,40.645,18.29,49.23,17,46.1566666667,5,755.3166666667,88,4.1666666667,30.8333333333,3.1833333333,28.9176972001,28.9176972001 -290,30,18.9975,44.3975,18.26,43.6633333333,19.5,43.7,19.7266666667,43.9333333333,18.2,55.79,5.59,78.9933333333,17.73,41.6666666667,18.26,49.1333333333,17,45.8633333333,5,755.4333333333,88,4.3333333333,32.6666666667,3.1666666667,45.5185152125,45.5185152125 -60,30,19.1,44.5,18.3233333333,43.5,19.5,43.7,20.0666666667,43.6633333333,18.1333333333,55.73,5.59,78.66,17.8566666667,42.2666666667,18.2,48.9333333333,17,45.73,5,755.55,88,4.5,34.5,3.15,7.1302041062,7.1302041062 -70,20,19.1333333333,44.5,18.4633333333,43.5,19.4266666667,43.6266666667,20.2,43.2566666667,18.1,55.49,5.59,79.4666666667,17.79,42.4666666667,18.26,49.1633333333,17,45.4666666667,5,755.6666666667,88,4.6666666667,36.3333333333,3.1333333333,20.7523812656,20.7523812656 -110,30,19.2,44.36,18.5333333333,43.43,19.4633333333,43.6633333333,20.1666666667,43.0266666667,18.0333333333,55.1566666667,5.59,79.9933333333,17.73,42.2666666667,18.26,49.2233333333,17,45.5266666667,5,755.7833333333,88,4.8333333333,38.1666666667,3.1166666667,10.5462875334,10.5462875334 -90,20,19.2,44.06,18.6,43.23,19.39,43.59,20.1,42.7666666667,18,54.69,5.45,80.39,17.7,41.93,18.26,49.5266666667,17.1,46.3,5,755.9,88,5,40,3.1,21.4375185431,21.4375185431 -60,20,19.2,44.06,18.6,43.1566666667,19.39,43.6266666667,20.1,42.7,17.9633333333,54.53,5.53,80.9333333333,17.7,41.6566666667,18.2,49.2666666667,17.1,47.1,5.0833333333,756.0333333333,86.8333333333,5,38.1666666667,2.9833333333,6.6344987601,6.6344987601 -70,20,19.2,44.09,18.6666666667,43.43,19.4633333333,43.76,20.1,42.7,17.89,54.53,5.6566666667,80.7266666667,17.6666666667,41.2966666667,18.15,48.995,17.1,47.06,5.1666666667,756.1666666667,85.6666666667,5,36.3333333333,2.8666666667,23.0048222933,23.0048222933 -80,20,19.2,44.1633333333,18.7,43.93,19.5,43.8266666667,20.05,42.6,17.89,54.3333333333,5.7266666667,79.8933333333,17.6,41.03,18.1,48.6633333333,17.1,46.86,5.25,756.3,84.5,5,34.5,2.75,47.1478529624,47.1478529624 -60,0,19.23,44.39,18.76,43.8633333333,19.5,43.9,20,42.3266666667,17.89,54.2,5.8666666667,77.1,17.6,40.7233333333,18.1,48.4633333333,17,46.5266666667,5.3333333333,756.4333333333,83.3333333333,5,32.6666666667,2.6333333333,38.0986930802,38.0986930802 -40,10,19.29,44.7966666667,18.79,44,19.5,44,19.9266666667,42.4,17.8566666667,54.0266666667,5.9,74.8666666667,17.6,40.4633333333,18.1,48.1633333333,17,46.1933333333,5.4166666667,756.5666666667,82.1666666667,5,30.8333333333,2.5166666667,46.6454914422,46.6454914422 -30,10,19.29,45.1633333333,18.79,44,19.5,44,19.8566666667,42.0266666667,17.79,53.9,5.9,75.7266666667,17.5666666667,40.26,18.0333333333,47.89,17,45.8633333333,5.5,756.7,81,5,29,2.4,23.5339248786,23.5339248786 -70,10,19.23,45.03,18.7,43.145,19.39,43.5,19.79,41.8266666667,17.76,53.76,5.9333333333,76,17.5,40.1266666667,18,47.7,17,45.6566666667,5.5833333333,756.7833333333,80.1666666667,5.1666666667,30.8333333333,2.35,30.1794033847,30.1794033847 -50,10,19.29,45.7333333333,18.7,43.06,19.39,43.36,19.7,41.7666666667,17.7,53.5666666667,6.06,76.1266666667,17.5,40,18,47.5666666667,16.9633333333,45.4666666667,5.6666666667,756.8666666667,79.3333333333,5.3333333333,32.6666666667,2.3,24.2494840291,24.2494840291 -80,10,19.29,45.1266666667,18.7,43,19.3233333333,43.4,19.6333333333,42.1,17.73,53.3633333333,6.2266666667,75.2933333333,17.5,39.9333333333,18,47.4666666667,16.89,45.2666666667,5.75,756.95,78.5,5.5,34.5,2.25,5.4403158254,5.4403158254 -80,10,19.2,44.8333333333,18.7,43.06,19.39,43.5266666667,19.6,42.86,17.73,53.1566666667,6.3,73.56,17.5,39.76,18,47.3266666667,16.89,44.93,5.8333333333,757.0333333333,77.6666666667,5.6666666667,36.3333333333,2.2,12.3863416491,12.3863416491 -50,0,19.2,44.7,18.6333333333,42.9333333333,19.39,43.6566666667,19.6,43.6,17.7,52.9666666667,6.53,71.8,17.5,39.6266666667,17.9633333333,47.1633333333,16.89,44.6566666667,5.9166666667,757.1166666667,76.8333333333,5.8333333333,38.1666666667,2.15,24.9257265357,24.9257265357 -40,0,19.2,44.9,18.6,42.8333333333,19.39,43.93,19.5666666667,43.5266666667,17.7,52.8266666667,6.6566666667,69.9333333333,17.5,39.4666666667,17.9633333333,47.03,16.89,44.2233333333,6,757.2,76,6,40,2.1,18.6433354043,18.6433354043 -50,0,19.2,44.6933333333,18.6,42.1666666667,19.4633333333,43.96,19.4266666667,43.2666666667,17.6333333333,52.6266666667,6.7266666667,67.36,17.4266666667,39.2666666667,17.89,46.8633333333,16.89,43.8975,5.9166666667,757.2833333333,76.3333333333,5.8333333333,38.1666666667,2.0666666667,46.7345685116,46.7345685116 -40,0,19.2,43.6,18.5,41.79,19.39,43.6266666667,19.39,42.8633333333,17.6333333333,52.5666666667,6.8666666667,65.9666666667,17.445,39.1,17.89,46.73,16.89,43.5666666667,5.8333333333,757.3666666667,76.6666666667,5.6666666667,36.3333333333,2.0333333333,26.1993038934,26.1993038934 -40,0,19.2,43.12,18.5,41.73,19.39,43.59,19.39,42.6566666667,17.6,52.2233333333,6.8,64.6333333333,17.5,38.8633333333,17.89,46.4666666667,16.89,43.3333333333,5.75,757.45,77,5.5,34.5,2,15.8572335844,15.8572335844 -50,0,19.1333333333,42.7666666667,18.5,41.6633333333,19.365,43.5225,19.29,42.3633333333,17.6,52.03,6.8666666667,64.9,17.5,38.79,17.89,46.3266666667,16.89,43.0666666667,5.6666666667,757.5333333333,77.3333333333,5.3333333333,32.6666666667,1.9666666667,13.8983014738,13.8983014738 -30,0,19.1666666667,42.4666666667,18.5,41.53,19.3566666667,43.4333333333,19.29,42.23,17.6,51.8333333333,7.045,63.34,17.5,38.6633333333,17.89,46.1633333333,16.89,42.8633333333,5.5833333333,757.6166666667,77.6666666667,5.1666666667,30.8333333333,1.9333333333,39.3770253868,39.3770253868 -30,0,19.1,42.2666666667,18.5,41.3633333333,19.29,43.26,19.2,41.8633333333,17.6,51.6266666667,6.9333333333,62.0266666667,17.4266666667,38.4633333333,17.89,46.03,16.89,42.73,5.5,757.7,78,5,29,1.9,35.1231256267,35.1231256267 -20,0,19.1,42.09,18.5,41.29,19.29,43.1266666667,19.2,41.79,17.5,51.45,6.9333333333,61.8933333333,17.39,38.26,17.8566666667,45.8633333333,16.89,42.4666666667,5.7333333333,757.6833333333,76.8333333333,5,28.6666666667,1.9,8.2513819332,8.2513819332 -20,0,19.1,41.9633333333,18.4633333333,41.1633333333,19.29,43,19.1666666667,41.7,17.5,51.2233333333,7,62.1933333333,17.39,38.2,17.79,45.73,16.89,42.3266666667,5.9666666667,757.6666666667,75.6666666667,5,28.3333333333,1.9,3.2228769385,3.2228769385 -50,0,19.0666666667,41.76,18.39,41.03,19.29,42.9333333333,19.1,41.7,17.5,51.03,7.1266666667,62.4666666667,17.4266666667,38.1266666667,17.79,45.545,16.89,42.29,6.2,757.65,74.5,5,28,1.9,37.7352810814,37.7352810814 -40,0,19,41.6266666667,18.39,40.9,19.29,42.9,19.1,41.79,17.5,50.8633333333,7.19,61.9666666667,17.4266666667,38.0666666667,17.79,45.4666666667,16.89,42.29,6.4333333333,757.6333333333,73.3333333333,5,27.6666666667,1.9,31.0205016518,31.0205016518 -50,0,19,41.56,18.39,40.8266666667,19.23,42.8266666667,19.1,41.79,17.5,50.73,6.9966666667,59.8933333333,17.5,37.9666666667,17.8566666667,45.4,16.89,42.29,6.6666666667,757.6166666667,72.1666666667,5,27.3333333333,1.9,8.4788383334,8.4788383334 -40,0,19,41.4333333333,18.39,40.7,19.26,42.8633333333,19.1,41.79,17.5,50.59,6.4666666667,59.7633333333,17.4266666667,37.7666666667,17.79,45.2233333333,16.89,42.1566666667,6.9,757.6,71,5,27,1.9,3.1107026152,3.1107026152 -60,0,19,41.29,18.39,40.6266666667,19.2,42.79,19,41.7,17.5,50.4633333333,6.3333333333,61.0966666667,17.4266666667,37.7,17.79,45.09,16.89,41.9,6.8,757.55,70.6666666667,5.1666666667,29.1666666667,1.75,5.4514634307,5.4514634307 -40,0,19,41.29,18.39,40.495,19.26,42.76,19,41.7,17.39,50.2233333333,6.6,61.7633333333,17.5,37.6266666667,17.8233333333,45.09,16.8233333333,41.8266666667,6.7,757.5,70.3333333333,5.3333333333,31.3333333333,1.6,19.0858175862,19.0858175862 -40,0,19,41.2,18.39,40.4,19.26,42.7,19,41.59,17.39,50.09,6.9333333333,61.03,17.6333333333,37.59,17.89,44.89,16.89,41.9,6.6,757.45,70,5.5,33.5,1.45,8.4655457293,8.4655457293 -50,0,19,41.1266666667,18.39,40.3266666667,19.29,42.6633333333,19,41.59,17.39,50,7.2933333333,58.7333333333,17.76,37.4633333333,18,44.6333333333,16.89,41.9,6.5,757.4,69.6666666667,5.6666666667,35.6666666667,1.3,14.9326271028,14.9326271028 -40,0,19.0333333333,41.1266666667,18.4266666667,40.2,19.29,42.59,19.0333333333,41.5,17.39,49.86,7.7,56.4,17.9266666667,37.26,18,44.36,16.89,41.76,6.4,757.35,69.3333333333,5.8333333333,37.8333333333,1.15,9.6104767523,9.6104767523 -40,0,19.1,41.1266666667,18.5,40.1266666667,19.29,42.56,19.1,41.36,17.39,49.76,7.9,52.6933333333,18.0666666667,37.0666666667,18.1333333333,44.1333333333,16.89,41.7,6.3,757.3,69,6,40,1,12.8585010651,12.8585010651 -30,0,19.1333333333,41,18.5,40.06,19.29,42.5,19.1,41.1333333333,17.39,49.6266666667,7.8333333333,53.36,18.29,36.7233333333,18.26,43.9333333333,16.89,41.5266666667,6.3166666667,757.3166666667,68,5.6666666667,40,0.8166666667,9.0615911409,9.0615911409 -30,0,19.2,40.9333333333,18.5,40,19.29,42.5,19.1,41,17.39,49.4666666667,7.8666666667,53.0566666667,18.3566666667,36.4633333333,18.39,43.6333333333,16.89,41.3175,6.3333333333,757.3333333333,67,5.3333333333,40,0.6333333333,23.8656854839,23.8656854839 -30,0,19.2,40.76,18.6333333333,39.9,19.3566666667,42.4333333333,19.1333333333,40.8633333333,17.39,49.4,7.7266666667,51.8633333333,18.445,36.145,18.4633333333,43.4333333333,16.89,41.23,6.35,757.35,66,5,40,0.45,38.5368521442,38.5368521442 -40,0,19.2675,40.745,18.7,39.8266666667,19.29,42.29,19.2,40.6566666667,17.39,49.26,7.69,52.245,18.6333333333,35.8633333333,18.5333333333,43.1333333333,17,41.1333333333,6.3666666667,757.3666666667,65,4.6666666667,40,0.2666666667,1.3893561205,1.3893561205 -80,0,19.29,40.5666666667,18.73,39.56,19.29,42.1333333333,19.29,40.5,17.39,49.1266666667,7.6266666667,51.8233333333,18.7,35.73,18.6666666667,43,17,41,6.3833333333,757.3833333333,64,4.3333333333,40,0.0833333333,26.3655388495,26.3655388495 -70,0,19.39,40.53,18.79,39.5,19.29,42,19.29,40.5,17.39,49.09,7.4333333333,52.0966666667,18.8233333333,35.9333333333,18.7633333333,43.3266666667,17,41.1266666667,6.4,757.4,63,4,40,-0.1,44.0159534453,44.0159534453 -80,0,19.39,40.59,18.79,39.6266666667,19.29,42,19.29,40.3633333333,17.39,49.09,7.1566666667,52.1333333333,18.9633333333,36,18.89,43.4666666667,17.0666666667,41.2,6.1666666667,757.3833333333,64.3333333333,3.8333333333,40,-0.0666666667,18.6531685991,18.6531685991 -70,0,19.39,40.6266666667,18.79,39.7,19.29,41.9333333333,19.29,40.29,17.39,49,7.03,52.5266666667,18.89,36.1266666667,19,43.73,17.0666666667,41.06,5.9333333333,757.3666666667,65.6666666667,3.6666666667,40,-0.0333333333,2.3979565827,2.3979565827 -80,0,19.39,40.7,18.79,39.7,19.29,42,19.2,40.2,17.39,49,6.7,52.63,18.89,36.7333333333,19.0666666667,43.93,17,40.9333333333,5.7,757.35,67,3.5,40,0,6.9314123364,6.9314123364 -80,0,19.3233333333,40.73,18.79,39.76,19.29,42,19.1333333333,40.1266666667,17.39,49,6.3666666667,53.7566666667,18.89,37.4633333333,19.05,44.045,17,40.76,5.4666666667,757.3333333333,68.3333333333,3.3333333333,40,0.0333333333,16.0746060195,16.0746060195 -100,0,19.39,40.8633333333,18.7,39.79,19.29,42,19.1,40.09,17.29,48.9,5.9333333333,54.8233333333,18.89,37.53,19.1,44.23,17,40.7,5.2333333333,757.3166666667,69.6666666667,3.1666666667,40,0.0666666667,7.7415805659,7.7415805659 -90,0,19.3566666667,40.79,18.7,39.73,19.29,42,19.0666666667,40.0266666667,17.29,48.9,5.66,55.6966666667,18.79,37.1933333333,19.1,44.29,17,40.56,5,757.3,71,3,40,0.1,6.6114086076,6.6114086076 -100,10,19.29,40.73,18.7,39.76,19.29,42.03,19,39.9,17.29,48.9,5.33,57.1333333333,18.73,36.86,19.1333333333,44.3266666667,17,40.4333333333,4.7833333333,757.3,72,3,40,0.0833333333,11.0652963864,11.0652963864 -90,0,19.29,40.6633333333,18.7,39.7,19.29,42.09,19,39.9333333333,17.29,48.9,5.0633333333,57.8,18.6666666667,36.43,19.2,44.4,17,40.26,4.5666666667,757.3,73,3,40,0.0666666667,11.3190398086,11.3190398086 -110,0,19.29,40.6633333333,18.7,39.7,19.29,42.06,19,40,17.29,48.79,4.6266666667,59.4233333333,18.6,36.23,19.29,44.53,17,40.1266666667,4.35,757.3,74,3,40,0.05,6.570826692,6.570826692 -90,10,19.29,40.79,18.7,39.7,19.29,42,18.89,40,17.29,48.79,4.3666666667,60.6966666667,18.5,36.0266666667,19.3566666667,44.6633333333,16.89,40.03,4.1333333333,757.3,75,3,40,0.0333333333,49.0781730157,49.0781730157 -100,0,19.29,40.73,18.7,39.76,19.29,42.03,18.89,40,17.29,48.79,3.9666666667,63.0266666667,18.4266666667,35.8266666667,19.4266666667,44.73,16.89,40.09,3.9166666667,757.3,76,3,40,0.0166666667,16.3506863406,16.3506863406 -100,10,19.29,40.79,18.7,39.8266666667,19.29,42.09,18.89,40.1266666667,17.29,48.73,3.8266666667,65.7666666667,18.39,35.76,19.5666666667,44.73,16.89,40.06,3.7,757.3,77,3,40,0,25.3469748539,25.3469748539 -110,0,19.29,40.73,18.7,39.9,19.23,41.9333333333,18.8233333333,40.0666666667,17.29,48.7,3.7233333333,67.2266666667,18.3233333333,35.76,19.6333333333,44.7,16.89,40,3.5333333333,757.3,79,3,38.1666666667,0.1666666667,34.072125738,34.072125738 -100,10,19.26,40.7,18.7,39.9,19.23,42,18.79,40.09,17.29,48.7,3.42,68.1475,18.29,35.79,19.7,44.7,16.8566666667,39.9666666667,3.3666666667,757.3,81,3,36.3333333333,0.3333333333,4.9584551598,4.9584551598 -90,10,19.26,40.76,18.7,39.9666666667,19.2,41.9666666667,18.79,40.09,17.29,48.7,3.1566666667,69.23,18.23,35.79,19.76,44.79,16.865,39.9975,3.2,757.3,83,3,34.5,0.5,5.9451279114,5.9451279114 -90,10,19.29,40.9,18.7,40,19.2,41.9666666667,18.79,40.09,17.23,48.6266666667,2.8633333333,70.8233333333,18.2,35.79,19.76,44.8633333333,16.89,40.09,3.0333333333,757.3,85,3,32.6666666667,0.6666666667,2.5219829753,2.5219829753 -180,10,19.29,40.8266666667,18.7,40,19.2,41.845,18.73,40.09,17.23,48.6266666667,2.6566666667,71.4233333333,18.2,36.0666666667,19.79,44.9333333333,16.79,39.9666666667,2.8666666667,757.3,87,3,30.8333333333,0.8333333333,46.4626959874,46.4626959874 -140,0,19.29,41.15,18.79,40.09,19.2,41.7,18.7,40.09,17.23,48.7,2.4666666667,72.9666666667,18.2,36.3333333333,19.79,45,16.79,39.9666666667,2.7,757.3,89,3,29,1,33.6856116424,33.6856116424 -100,10,19.3233333333,42.1566666667,18.79,40.09,19.2,41.76,18.7,40.1633333333,17.26,48.79,2.4,74.6333333333,18.2,36.29,19.79,45.09,16.79,40,2.7833333333,757.2333333333,88.8333333333,3.3333333333,29,1.0666666667,4.7428927734,4.7428927734 -110,20,19.39,42.0966666667,18.8233333333,40.1566666667,19.29,41.79,18.7,40.29,17.26,48.8633333333,2.2233333333,75.73,18.2,36.49,19.79,45.09,16.79,40,2.8666666667,757.1666666667,88.6666666667,3.6666666667,29,1.1333333333,24.6298060403,24.6298060403 -340,20,19.39,41.73,18.8233333333,40.23,19.29,41.8633333333,18.7,40.29,17.2,49.29,2.03,76.1966666667,18.2,37,19.79,45.06,16.79,40,2.95,757.1,88.5,4,29,1.2,23.0775920325,23.0775920325 -380,20,19.39,41.6566666667,18.89,40.4,19.29,42.03,18.6666666667,40.3633333333,18.1666666667,74.7,1.8633333333,77.29,18.26,37.4666666667,19.79,44.9333333333,16.79,40,3.0333333333,757.0333333333,88.3333333333,4.3333333333,29,1.2666666667,18.7608265434,18.7608265434 -210,30,19.39,41.59,18.89,40.4,19.29,42.1633333333,18.6,40.3725,17.8933333333,75.0333333333,1.79,79.0966666667,18.3233333333,37.9333333333,19.79,44.9333333333,16.79,40.03,3.1166666667,756.9666666667,88.1666666667,4.6666666667,29,1.3333333333,49.5549609768,49.5549609768 -150,20,19.4633333333,41.59,19,40.4,19.2,42.2,18.6,40.4666666667,17.7,75.0233333333,1.7,80.3633333333,18.4633333333,38.1333333333,19.79,45.1175,16.73,40.1633333333,3.2,756.9,88,5,29,1.4,8.8175356854,8.8175356854 -330,20,19.5,41.6,19,40.4,19.2,42.26,18.7,40.8,17.6333333333,74.3566666667,1.7,81.2966666667,18.5,38.23,19.79,45.3633333333,16.79,40.2,3.1666666667,756.9,88.1666666667,5,30.8333333333,1.4,40.6717604259,40.6717604259 -420,20,19.5,41.3266666667,19,40.5,19.2,42.29,18.76,41.2666666667,18.3,78.6,1.6333333333,82.7333333333,18.5,38.1566666667,19.79,45.1333333333,16.73,40.2,3.1333333333,756.9,88.3333333333,5,32.6666666667,1.4,3.4223318566,3.4223318566 -330,20,19.5333333333,41.29,19,40.5,19.2,42.23,19.1333333333,41.6566666667,19.2333333333,87.06,1.6333333333,83.5933333333,18.39,38.0266666667,19.79,45.1333333333,16.7,40.23,3.1,756.9,88.5,5,34.5,1.4,20.0224873377,20.0224873377 -130,20,19.6,41.43,19.1,40.7,19.2,42.4633333333,19.4,41.93,18.6333333333,88.4333333333,1.6,83.99,18.4633333333,38.5,19.7,45,16.7,40.23,3.0666666667,756.9,88.6666666667,5,36.3333333333,1.4,7.0572162862,7.0572162862 -130,20,19.6,41.5,19.1,40.8266666667,19.2,42.6633333333,19.73,41.8633333333,18.36,88.2933333333,1.6,84.4633333333,18.4633333333,37.99,19.7,45.06,16.7,40.2,3.0333333333,756.9,88.8333333333,5,38.1666666667,1.4,9.66549312,9.66549312 -110,20,19.6,41.56,19.1666666667,40.9,19.2,42.73,19.79,41.73,18.1666666667,87.43,1.445,84.295,18.3233333333,37.8633333333,19.79,45.23,16.7,40.2,3,756.9,89,5,40,1.4,42.067585839,42.067585839 -250,10,19.6,41.59,19.1333333333,40.9,19.2,42.8633333333,19.7,41.2966666667,18.1,85.8966666667,1.5,85.4,18.39,38,19.79,45.3633333333,16.7,40.1633333333,2.95,756.8166666667,88.8333333333,5,38.1666666667,1.3166666667,35.9956994187,35.9956994187 -520,0,19.6,41.53,19.1333333333,40.9,19.1333333333,42.86,19.6333333333,41.03,18.0666666667,84.1233333333,1.4266666667,85.26,18.39,38,19.79,45.4266666667,16.7,40.09,2.9,756.7333333333,88.6666666667,5,36.3333333333,1.2333333333,13.3606041549,13.3606041549 -360,0,19.6,41.5,19.1,40.9666666667,19.26,43.4666666667,19.5666666667,40.6933333333,18.6666666667,89.5233333333,1.29,85.6233333333,18.3566666667,38,19.79,45.76,16.6666666667,40.06,2.85,756.65,88.5,5,34.5,1.15,24.7500822414,24.7500822414 -330,0,19.6,41.6933333333,19.1,40.8266666667,19.5966666667,45.1666666667,19.5,40.36,19.1666666667,91.2933333333,1.23,85.7633333333,18.29,38,19.73,45.9633333333,16.65,40.1225,2.8,756.5666666667,88.3333333333,5,32.6666666667,1.0666666667,4.1556948912,4.1556948912 -310,0,19.6,42,19.1,40.79,19.93,46.0333333333,19.39,40.06,19.1666666667,90.7666666667,1.1666666667,85.9,18.29,38.045,19.73,46.1633333333,16.6,40.09,2.75,756.4833333333,88.1666666667,5,30.8333333333,0.9833333333,17.6942120306,17.6942120306 -270,0,19.6,42,19.1,40.73,20.35,46.545,19.39,39.9333333333,19.3233333333,87.4966666667,1.1,86.3,18.29,37.8633333333,19.76,46.2,16.6,40.06,2.7,756.4,88,5,29,0.9,48.4604402678,48.4604402678 -230,0,19.6,42.145,19.0666666667,40.6333333333,20.6333333333,46.3633333333,19.29,39.76,19.4633333333,84.0966666667,1.1333333333,87.3666666667,18.23,37.73,19.7,46.2,16.6,40,2.7833333333,756.3166666667,87.6666666667,5.1666666667,30.8333333333,0.9166666667,31.2357094837,31.2357094837 -170,10,19.6,42.2,19,40.56,20.76,46.1566666667,19.29,39.7,19.3266666667,80.6233333333,1.26,88.1,18.2,37.76,19.7,46.2,16.6,40,2.8666666667,756.2333333333,87.3333333333,5.3333333333,32.6666666667,0.9333333333,33.2309124875,33.2309124875 -60,0,19.6,42.0666666667,19,40.6566666667,21.0666666667,45.79,19.2,39.6333333333,19.1333333333,79.0966666667,1.4266666667,88.8966666667,18.2,37.76,19.7,46.2,16.6,40,2.95,756.15,87,5.5,34.5,0.95,15.6244828249,15.6244828249 -30,0,19.5,42,19,40.93,21.2,45.5966666667,19.1333333333,40.1,18.945,76.15,1.5666666667,89.03,18.2,38.0666666667,19.6666666667,46.3266666667,16.6,40.6333333333,3.0333333333,756.0666666667,86.6666666667,5.6666666667,36.3333333333,0.9666666667,20.2844806365,20.2844806365 -30,0,19.5,42.1333333333,18.9633333333,41.0666666667,21.0666666667,44.99,19.1,40.53,18.79,73.6333333333,1.73,89.19,18.2,38.26,19.6,46.6,16.6,41.1,3.1166666667,755.9833333333,86.3333333333,5.8333333333,38.1666666667,0.9833333333,49.8038685764,49.8038685764 -30,0,19.5,42.2,18.89,41.2,20.86,44.6566666667,19.075,40.7675,18.73,72.3,1.79,89.3966666667,18.2,38.4633333333,19.6,47,16.6,41.5666666667,3.2,755.9,86,6,40,1,42.7541178185,42.7541178185 -40,0,19.4266666667,42.1266666667,18.89,41.29,20.6666666667,44.43,19,40.9666666667,18.6,71.0633333333,1.9333333333,89.6566666667,18.2,38.7233333333,19.6,47.3333333333,16.6,41.9,3.1333333333,755.8333333333,86.5,5.8333333333,38.1666666667,1.0333333333,47.6774198003,47.6774198003 -50,0,19.39,42.09,18.8233333333,41.23,20.6,44.23,18.9633333333,41.03,18.5333333333,70.2566666667,1.9333333333,89.59,18.1,38.9633333333,19.6,47.8,16.6,42.1566666667,3.0666666667,755.7666666667,87,5.6666666667,36.3333333333,1.0666666667,40.6152546173,40.6152546173 -50,0,19.39,42.09,18.79,41.29,20.5,44.1633333333,18.89,41.09,18.5,69.7,1.9,89.56,18.1,39.2233333333,19.6,48.1566666667,16.6,42.43,3,755.7,87.5,5.5,34.5,1.1,39.1091057914,39.1091057914 -40,0,19.3566666667,42.09,18.79,41.29,20.4266666667,43.9633333333,18.89,41.1266666667,18.4266666667,69.1,1.9,89.5925,18.1,39.29,19.6,48.3633333333,16.6666666667,42.73,2.9333333333,755.6333333333,88,5.3333333333,32.6666666667,1.1333333333,13.3939064457,13.3939064457 -40,0,19.29,42.09,18.7,41.4,20.39,43.76,18.8233333333,41.1266666667,18.3566666667,68.3966666667,1.8266666667,89.69,18.1,39.49,19.6,48.6566666667,16.6,42.8633333333,2.8666666667,755.5666666667,88.5,5.1666666667,30.8333333333,1.1666666667,38.1075764773,38.1075764773 -50,0,19.29,42.09,18.7,41.4,20.3233333333,43.7,18.79,41.23,18.3566666667,67.9966666667,1.6666666667,89.5,18.1,39.8266666667,19.6,48.93,16.6666666667,43.2,2.8,755.5,89,5,29,1.2,49.3155794567,49.3155794567 -50,0,19.29,42.09,18.6333333333,41.3266666667,20.26,43.6333333333,18.79,41.29,18.29,67.6566666667,1.6,89.4333333333,18.1,39.9666666667,19.6,49.1266666667,16.6,43.26,2.8166666667,755.3666666667,89.1666666667,5,28.6666666667,1.2333333333,14.6802774514,14.6802774514 -40,0,19.2,42.06,18.6,41.29,20.2,43.5,18.76,41.3266666667,18.23,67.3966666667,1.4633333333,89.19,18.1,40.0666666667,19.6,49.26,16.6,43.4333333333,2.8333333333,755.2333333333,89.3333333333,5,28.3333333333,1.2666666667,19.9675553478,19.9675553478 -60,0,19.2,42.06,18.6,41.29,20.2,43.5,18.7,41.4666666667,18.2,67.06,1.39,89.73,18.1,40.26,19.5666666667,49.4333333333,16.6666666667,43.6333333333,2.85,755.1,89.5,5,28,1.3,40.6065761927,40.6065761927 -40,0,19.2,42.09,18.6,41.29,20.2,43.4333333333,18.7,41.5,18.1333333333,66.8666666667,1.5333333333,90.5,18.1,40.59,19.5,49.56,16.65,43.845,2.8666666667,754.9666666667,89.6666666667,5,27.6666666667,1.3333333333,3.8575834595,3.8575834595 -40,0,19.1333333333,42.09,18.5333333333,41.29,20.1666666667,43.4,18.7,41.5,18.1,66.56,1.6,90.9666666667,18.1,40.6633333333,19.4633333333,49.86,16.6333333333,44.0666666667,2.8833333333,754.8333333333,89.8333333333,5,27.3333333333,1.3666666667,18.1848404929,18.1848404929 -50,0,19.1,42.09,18.5,41.29,20.1,43.4666666667,18.7,41.59,18.1,66.3666666667,1.73,91.5633333333,18.1,40.845,19.39,50.1333333333,16.6333333333,44.2,2.9,754.7,90,5,27,1.4,22.1296233591,22.1296233591 -40,0,19.1,42.09,18.5,41.29,20.1,43.4,18.6333333333,41.59,18,65.9666666667,1.79,91.83,18.1,41.0966666667,19.39,50.4333333333,16.7,44.5666666667,2.8833333333,754.5666666667,90.5,5,27.1666666667,1.45,7.8357066261,7.8357066261 -30,0,19.1,42.09,18.4633333333,41.26,20,43.3266666667,18.6,41.59,18,65.76,1.9,92.2933333333,18.1,41.3633333333,19.39,50.56,16.6333333333,44.76,2.8666666667,754.4333333333,91,5,27.3333333333,1.5,29.1102635092,29.1102635092 -30,0,19,42,18.39,41.2,20,43.3266666667,18.6,41.59,17.89,65.6266666667,2.0266666667,92.6266666667,18.1,41.6266666667,19.39,50.86,16.7,45.1266666667,2.85,754.3,91.5,5,27.5,1.55,48.5081089428,48.5081089428 -30,0,19,42.06,18.39,41.29,19.9633333333,43.26,18.5333333333,41.7,17.89,65.4333333333,2.09,92.6266666667,18.1,41.76,19.39,51,16.7,45.3333333333,2.8333333333,754.1666666667,92,5,27.6666666667,1.6,49.4749916717,49.4749916717 -40,0,19,42.09,18.39,41.29,19.89,43.2,18.5333333333,41.7,17.89,65.14,2.09,92.56,18.1,41.9633333333,19.29,51.09,16.7,45.5666666667,2.8166666667,754.0333333333,92.5,5,27.8333333333,1.65,8.8226018241,8.8226018241 -40,0,19,42.09,18.29,41.29,19.89,43.2,18.5,41.79,17.79,64.7633333333,2.2,92.7933333333,18.1,42.09,19.29,51.09,16.7,45.76,2.8,753.9,93,5,28,1.7,27.1065212204,27.1065212204 -50,0,18.9633333333,42.09,18.29,41.29,19.89,43.2,18.5,41.79,17.79,64.6233333333,2.26,93.1266666667,18.1,42.09,19.29,51.09,16.7,46.03,2.8666666667,753.7333333333,92.3333333333,5.1666666667,30,1.6833333333,19.2151946016,19.2151946016 -40,0,18.89,42.1633333333,18.29,41.4,19.89,43.23,18.5,41.79,17.79,64.4666666667,2.495,93.295,18.1,42.2233333333,19.29,51.09,16.7,46.1633333333,2.9333333333,753.5666666667,91.6666666667,5.3333333333,32,1.6666666667,33.808202541,33.808202541 -40,0,18.89,42.2,18.29,41.4,19.8233333333,43.29,18.39,41.79,17.73,64.3333333333,2.73,93.4333333333,18.1,42.4333333333,19.29,51.09,16.7,46.3266666667,3,753.4,91,5.5,34,1.65,13.464688987,13.464688987 -40,0,18.89,42.2,18.2,41.29,19.8566666667,43.29,18.4633333333,41.8633333333,17.7,64.1566666667,2.79,93.16,18.1,42.4333333333,19.23,51,16.7,46.4666666667,3.0666666667,753.2333333333,90.3333333333,5.6666666667,36,1.6333333333,23.4625471174,23.4625471174 -50,0,18.79,42.1266666667,18.2,41.3633333333,19.79,43.29,18.39,41.8266666667,17.7,64.03,2.8633333333,92.8633333333,18.1,42.4666666667,19.29,51.06,16.7,46.59,3.1333333333,753.0666666667,89.6666666667,5.8333333333,38,1.6166666667,8.5900041158,8.5900041158 -50,0,18.79,42.2,18.2,41.4,19.79,43.4,18.39,41.9,17.7,63.8633333333,2.79,92.59,18.1,42.4,19.2,50.9,16.7,46.6633333333,3.2,752.9,89,6,40,1.6,18.4594731196,18.4594731196 -50,0,18.79,42.2,18.2,41.425,19.79,43.3266666667,18.39,41.9,17.7,63.79,2.9333333333,92.8,18.1,42.3633333333,19.2,50.9,16.7,46.7,3.2333333333,752.7666666667,89,5.8333333333,38,1.6333333333,36.2702636281,36.2702636281 -40,0,18.79,42.2,18.1333333333,41.5,19.79,43.26,18.39,41.9666666667,17.7,63.6333333333,3,92.6,18.1,42.3633333333,19.2,50.79,16.7,46.76,3.2666666667,752.6333333333,89,5.6666666667,36,1.6666666667,24.3074552156,24.3074552156 -50,0,18.76,42.23,18.1,41.5,19.79,43.2,18.3566666667,42,17.6333333333,63.4333333333,3.09,92.4333333333,18.1,42.4666666667,19.1333333333,50.73,16.7,46.9,3.3,752.5,89,5.5,34,1.7,3.1901233364,3.1901233364 -40,0,18.7,42.29,18.1,41.5,19.79,43.29,18.29,42.04,17.6,63.29,3.09,92.0333333333,18.1,42.4,19.1666666667,50.6633333333,16.7,46.9666666667,3.3333333333,752.3666666667,89,5.3333333333,32,1.7333333333,39.2273114994,39.2273114994 -40,0,18.7,42.29,18.1,41.59,19.79,43.29,18.29,42.0266666667,17.6,63.1566666667,3.06,91.3966666667,18.1,42.4,19.1666666667,50.59,16.7,47.045,3.3666666667,752.2333333333,89,5.1666666667,30,1.7666666667,20.9160817903,20.9160817903 -20,0,18.7,42.29,18.0333333333,41.53,19.79,43.3266666667,18.29,41.9666666667,17.5666666667,63.06,3.06,91.33,18.1,42.4666666667,19.1,50.59,16.7,47.1266666667,3.4,752.1,89,5,28,1.8,49.05090424,49.05090424 -30,0,18.7,42.29,18.1,41.59,19.7225,43.3725,18.29,42.09,17.5,63,3,91.33,18.05,42.345,19.1,50.53,16.7,47.26,3.3833333333,751.9166666667,89.1666666667,5.1666666667,28.1666666667,1.8,14.1441977932,14.1441977932 -30,0,18.7,42.29,18.1,41.59,19.7,43.29,18.29,42.09,17.5,62.8633333333,3,91.0633333333,18.1,42.4333333333,19.1,50.4666666667,16.7,47.3266666667,3.3666666667,751.7333333333,89.3333333333,5.3333333333,28.3333333333,1.8,42.3941074754,42.3941074754 -40,0,18.6666666667,42.29,18,41.5,19.7,43.29,18.29,42.1266666667,17.5,62.79,3.03,91.2633333333,18.0333333333,42.36,19.1,50.4666666667,16.7,47.4666666667,3.35,751.55,89.5,5.5,28.5,1.8,4.1119615431,4.1119615431 -50,0,18.6,42.29,18,41.56,19.7,43.29,18.23,42.1266666667,17.4633333333,62.56,3.09,91.2633333333,18,42.2,19,50.4,16.73,47.53,3.3333333333,751.3666666667,89.6666666667,5.6666666667,28.6666666667,1.8,44.3229375291,44.3229375291 -40,0,18.6,42.29,18,41.59,19.7,43.26,18.2,42.2,17.4633333333,62.5,3.09,91.1566666667,18,42.2,19,50.4,16.73,47.6633333333,3.3166666667,751.1833333333,89.8333333333,5.8333333333,28.8333333333,1.8,23.5965365428,23.5965365428 -40,0,18.6,42.3266666667,18,41.59,19.7,43.2,18.2,42.2,17.445,62.45,3.09,91.03,18,42.3266666667,19.0333333333,50.4333333333,16.7,47.7,3.3,751,90,6,29,1.8,5.4550481727,5.4550481727 -50,0,18.6,42.4,17.9633333333,41.7,19.7,43.2,18.2,42.2,17.39,62.3633333333,3.09,90.9,18,42.4666666667,19.0333333333,50.36,16.7,47.76,3.3166666667,750.8666666667,90,5.8333333333,28.6666666667,1.8166666667,16.6638992261,16.6638992261 -40,0,18.6,42.4,17.89,41.7,19.7,43.2,18.2,42.2,17.39,62.29,3.09,90.4666666667,18,42.5,19,50.4,16.73,47.79,3.3333333333,750.7333333333,90,5.6666666667,28.3333333333,1.8333333333,41.8708284618,41.8708284618 -50,0,18.5333333333,42.4,17.89,41.6266666667,19.7,43.2,18.15,42.29,17.39,62.26,3.09,90.4666666667,18,42.5,19,50.4,16.73,47.79,3.35,750.6,90,5.5,28,1.85,13.842492085,13.842492085 -50,0,18.5,42.4333333333,17.89,41.7,19.76,43.26,18.1,42.29,17.39,62.2,3.1266666667,90.76,18,42.5,19,50.4,16.73,47.8266666667,3.3666666667,750.4666666667,90,5.3333333333,27.6666666667,1.8666666667,29.351757071,29.351757071 -40,0,18.5,42.5,17.89,41.73,19.79,43.29,18.1,42.3633333333,17.3566666667,62.2,3.26,90.9666666667,18,42.56,18.9175,50.425,16.79,47.9666666667,3.3833333333,750.3333333333,90,5.1666666667,27.3333333333,1.8833333333,41.8366134865,41.8366134865 -50,0,18.5,42.5,17.89,41.79,19.79,43.29,18.1,42.4,17.3566666667,62.2,3.5,90.7633333333,18,42.59,18.89,50.4333333333,16.7,48,3.4,750.2,90,5,27,1.9,3.5577011993,3.5577011993 -40,0,18.5,42.5,17.79,41.73,19.79,43.29,18.1,42.4,17.3566666667,62.06,3.56,90.4966666667,18,42.59,18.89,50.5,16.7,48,3.5,750.0833333333,89.8333333333,5.6666666667,27.1666666667,1.9833333333,35.1389371674,35.1389371674 -40,0,18.4633333333,42.56,17.84,41.79,19.79,43.29,18.1,42.5,17.29,62,3.73,90.0933333333,18,42.5,18.89,50.5,16.79,48.09,3.6,749.9666666667,89.6666666667,6.3333333333,27.3333333333,2.0666666667,34.941226861,34.941226861 -40,0,18.39,42.5,17.79,41.79,19.79,43.29,18.1,42.5,17.29,62,3.79,89.6333333333,18,42.56,18.89,50.5,16.73,48.1633333333,3.7,749.85,89.5,7,27.5,2.15,23.1981190504,23.1981190504 -40,0,18.39,42.53,17.79,41.79,19.79,43.3633333333,18.1,42.53,17.29,62,3.9,89.23,17.9633333333,42.73,18.89,50.5,16.7,48.2,3.8,749.7333333333,89.3333333333,7.6666666667,27.6666666667,2.2333333333,21.8465555226,21.8465555226 -30,10,18.39,42.59,17.79,41.8633333333,19.79,43.4,18.1,42.59,17.29,62,3.9,89.03,17.9633333333,42.93,18.8566666667,50.56,16.7,48.2,3.9,749.6166666667,89.1666666667,8.3333333333,27.8333333333,2.3166666667,28.108839388,28.108839388 -70,10,18.39,42.59,17.79,41.9,19.79,43.4,18,42.53,17.29,61.9333333333,3.8633333333,88.83,18,43.53,18.79,50.56,16.745,48.345,4,749.5,89,9,28,2.4,46.4241613168,46.4241613168 -360,20,18.39,42.8633333333,17.79,41.9666666667,19.76,43.3633333333,18,42.59,17.29,61.7333333333,3.79,88.6233333333,18,43.6566666667,18.8233333333,50.73,16.79,48.4666666667,3.95,749.4,89.5,8.8333333333,26.6666666667,2.4166666667,11.5233207121,11.5233207121 -400,10,18.39,43.36,17.79,42.23,19.7,43.2225,18.0666666667,42.9266666667,17.29,61.1933333333,3.79,89.13,18,42.995,18.89,50.6566666667,16.79,48.3266666667,3.9,749.3,90,8.6666666667,25.3333333333,2.4333333333,11.0906877206,11.0906877206 -70,10,18.39,43.9666666667,17.79,42.43,19.6333333333,43.1266666667,18.4,43.26,17.23,60.5266666667,3.79,89.9233333333,17.89,42.3633333333,18.79,49.99,16.76,48.0266666667,3.85,749.2,90.5,8.5,24,2.45,21.0107946652,21.0107946652 -70,0,18.39,44.09,17.79,42.6266666667,19.6,43.1633333333,18.73,43.1233333333,17.23,60.0666666667,3.79,90.7266666667,17.89,41.9633333333,18.73,49.6566666667,16.7,47.6933333333,3.8,749.1,91,8.3333333333,22.6666666667,2.4666666667,16.6760402848,16.6760402848 -390,0,18.39,44.0225,17.79,42.7,19.5333333333,43.09,18.79,42.53,17.2,59.6333333333,3.79,91.2975,17.89,41.5266666667,18.7,49.3333333333,16.7,47.2966666667,3.75,749,91.5,8.1666666667,21.3333333333,2.4833333333,43.2403775165,43.2403775165 -100,0,18.39,43.9333333333,17.76,42.7,19.5,43,18.79,42.1333333333,17.2,59.36,3.79,91.73,17.8233333333,41.1933333333,18.7,49.0666666667,16.7,46.9633333333,3.7,748.9,92,8,20,2.5,8.8597267866,8.8597267866 -80,10,18.39,43.76,17.7,42.6266666667,19.5,43,18.73,42,17.2,58.995,3.79,92.2266666667,17.79,40.8633333333,18.6,48.6333333333,16.7,46.6333333333,3.3,749,93,7.1666666667,22.5,2.25,24.6659364318,24.6659364318 -70,0,18.39,43.7,17.7,42.59,19.4633333333,42.9,18.7,42,17.2,58.7,3.8633333333,92.96,17.79,40.6566666667,18.6666666667,48.5,16.7,46.36,2.9,749.1,94,6.3333333333,25,2,21.4856683393,21.4856683393 -170,10,18.39,43.59,17.7,42.53,19.39,42.8266666667,18.7,41.9333333333,17.2,58.5,3.79,93.6233333333,17.79,40.4666666667,18.6,48.1333333333,16.7,46.03,2.5,749.2,95,5.5,27.5,1.75,28.21319215,28.21319215 -360,0,18.39,43.53,17.7,42.5,19.3566666667,42.6333333333,18.65,41.79,17.2,56.5666666667,3.73,93.6233333333,17.79,40.3266666667,18.5333333333,47.86,16.7,46.03,2.1,749.3,96,4.6666666667,30,1.5,32.8081157757,32.8081157757 -180,10,18.39,43.3633333333,17.7,42.4333333333,19.29,42.5,18.6,41.6633333333,17.2,55.36,3.1,93.0666666667,17.7,40.06,18.5,47.6,16.7,46,1.7,749.4,97,3.8333333333,32.5,1.25,48.9277031389,48.9277031389 -130,0,18.39,43.29,17.79,42.29,19.29,42.4,18.6,41.53,17.2,53.8966666667,2.7666666667,93.4666666667,17.7,39.86,18.5,47.2675,16.7,45.9333333333,1.3,749.5,98,3,35,1,11.6080574226,11.6080574226 -70,20,18.4266666667,43.3266666667,17.79,42.23,19.29,42.4,18.5666666667,41.4,17.26,52.8233333333,2.5,93.7266666667,17.6333333333,39.59,18.4266666667,46.89,16.7,45.8633333333,1.4,749.3666666667,97.5,3.5,35.8333333333,1.0333333333,12.0405798079,12.0405798079 -70,10,18.5,43.4,17.9266666667,42.2,19.29,42.4,18.5,41.4,17.29,51.6966666667,2.4333333333,94.06,17.6333333333,39.39,18.39,46.6333333333,16.7,45.73,1.5,749.2333333333,97,4,36.6666666667,1.0666666667,39.8418041994,39.8418041994 -180,20,18.5333333333,43.4,18.025,42.1175,19.29,42.4,18.5,41.5966666667,17.3566666667,50.8966666667,2.3633333333,94.16,17.6,39.1633333333,18.39,46.4333333333,16.7,45.5,1.6,749.1,96.5,4.5,37.5,1.1,41.5835857508,41.5835857508 -170,20,18.5333333333,43.2666666667,18.1,42.09,19.1666666667,42,18.5666666667,41.8633333333,17.39,50.0333333333,2.29,94.3666666667,17.6,39.03,18.3566666667,46.2233333333,16.745,45.5,1.7,748.9666666667,96,5,38.3333333333,1.1333333333,5.675385322,5.675385322 -390,30,18.6,43.29,18.23,42.03,19.1666666667,42.3333333333,18.6333333333,42.0666666667,17.4633333333,49.5,2.29,94.6233333333,17.6,38.8633333333,18.29,46.09,16.79,45.645,1.8,748.8333333333,95.5,5.5,39.1666666667,1.1666666667,48.1656008167,48.1656008167 -420,20,18.6666666667,43.49,18.29,42.09,19.23,42.5666666667,18.7,42.26,17.5,49.3266666667,2.29,94.69,17.5333333333,38.79,18.29,45.9666666667,16.79,46.0266666667,1.9,748.7,95,6,40,1.2,7.3661449831,7.3661449831 -340,20,18.7,43.6333333333,18.39,42.09,19.29,42.7,18.7,42.29,17.5,49.9933333333,2.29,94.8333333333,17.5,38.7,18.29,45.8266666667,16.79,46.4,1.9666666667,748.7333333333,94.6666666667,5.6666666667,40,1.2166666667,7.1813471382,7.1813471382 -550,10,18.7,43.4333333333,18.39,42.09,19.26,42.5266666667,18.7,42.29,17.39,51.1966666667,2.29,94.9,17.5,38.6175,18.23,45.73,16.89,46.5266666667,2.0333333333,748.7666666667,94.3333333333,5.3333333333,40,1.2333333333,46.2614967604,46.2614967604 -690,10,18.79,43.7666666667,18.5,42.06,19.32,43.145,18.7,42.5,17.3233333333,51.8633333333,2.4,94.95,17.5,38.59,18.23,45.6566666667,16.89,46.4,2.1,748.8,94,5,40,1.25,25.3517801291,25.3517801291 -620,10,18.79,43.6933333333,18.5666666667,41.7266666667,19.6933333333,44.86,18.76,42.3,17.26,52.4,2.4333333333,95.0633333333,17.5,38.5,18.2,45.5,16.89,46.26,2.1666666667,748.8333333333,93.6666666667,4.6666666667,40,1.2666666667,7.7425508527,7.7425508527 -610,10,18.8233333333,43.26,18.6333333333,41.4666666667,20.1966666667,46.3966666667,18.79,42.09,17.2,52.5266666667,2.5,95.19,17.4266666667,38.36,18.2,45.4333333333,16.89,46.1266666667,2.2333333333,748.8666666667,93.3333333333,4.3333333333,40,1.2833333333,17.4151026062,17.4151026062 -490,10,18.9175,43.05,18.7,41.3266666667,20.5966666667,47.1966666667,18.79,42.09,17.2,52.8266666667,2.6266666667,95.3333333333,17.4633333333,38.3633333333,18.1666666667,45.29,16.89,46,2.3,748.9,93,4,40,1.3,32.9910512897,32.9910512897 -260,20,19,42.9333333333,18.8233333333,41.09,20.9933333333,47.7666666667,18.79,42.1266666667,17.2,52.9,2.7,95.4666666667,17.39,38.23,18.1,45.23,16.89,46,2.4,748.85,92.8333333333,4.1666666667,40,1.3666666667,15.5886187218,15.5886187218 -240,10,19.1,42.8633333333,18.89,41.03,21.3266666667,47.9666666667,18.79,42.2,17.2,53.045,2.8266666667,95.53,17.39,38.2,18.1,45.1633333333,16.89,46,2.5,748.8,92.6666666667,4.3333333333,40,1.4333333333,17.578670464,17.578670464 -220,10,19.1666666667,43.53,19.0333333333,40.79,21.6333333333,47.6233333333,18.89,42.29,17.2,53.1266666667,2.9666666667,95.59,17.39,38.1266666667,18.1,45.09,16.89,46,2.6,748.75,92.5,4.5,40,1.5,7.3922853451,7.3922853451 -130,10,19.36,44.5666666667,19.1666666667,40.73,21.76,46.6233333333,18.89,42.42,17.2,53.2,3.0666666667,95.66,17.39,38.09,18.1,45,16.9266666667,45.9666666667,2.7,748.7,92.3333333333,4.6666666667,40,1.5666666667,32.9438804532,32.9438804532 -90,10,19.5666666667,44.5,19.3233333333,40.6633333333,21.79,45.3933333333,18.89,42.7233333333,17.1,53.2,3.26,95.9333333333,17.39,38.03,18.0333333333,44.9333333333,17,45.9,2.8,748.65,92.1666666667,4.8333333333,40,1.6333333333,9.253498225,9.253498225 -290,10,19.73,45.1233333333,19.4633333333,40.59,21.73,44.7266666667,18.9266666667,42.9333333333,17.1,53.2,3.4333333333,96,17.39,38,18,44.8633333333,17,45.9333333333,2.9,748.6,92,5,40,1.7,47.718906845,47.718906845 -410,0,19.9966666667,45.73,19.6333333333,40.53,21.5666666667,44.4633333333,19,43.1933333333,17.1,53.2,3.5,96,17.39,38,18,44.8633333333,17,45.9333333333,3.1166666667,748.55,91.3333333333,5.1666666667,40,1.8166666667,44.8924246011,44.8924246011 -320,0,20.1,45.0566666667,19.7,40.59,21.5666666667,45.2566666667,19,43.4333333333,17.1,53.2,3.53,96.03,17.39,38,18,44.79,17,45.9,3.3333333333,748.5,90.6666666667,5.3333333333,40,1.9333333333,47.1848527202,47.1848527202 -260,0,20.1666666667,44.4633333333,19.79,40.4666666667,21.86,46.6,19,43.1,17.1,53.2,3.53,95.9633333333,17.39,38,18,44.79,17.0666666667,46.0266666667,3.55,748.45,90,5.5,40,2.05,36.1845375621,36.1845375621 -210,0,20.36,45.1933333333,19.8925,40.3725,22.0666666667,46.9333333333,18.9633333333,42.43,17.1,53.2,3.4333333333,95.76,17.39,37.9333333333,18,44.79,17.1,46.1266666667,3.7666666667,748.4,89.3333333333,5.6666666667,40,2.1666666667,18.5178532964,18.5178532964 -210,0,20.5666666667,44.7266666667,20.0666666667,40.29,22.23,46.0633333333,18.89,42.1566666667,17.1,53.2,3.4333333333,95.8333333333,17.39,37.9333333333,18,44.79,17.1,46.26,3.9833333333,748.35,88.6666666667,5.8333333333,40,2.2833333333,39.0508770128,39.0508770128 -140,0,20.8233333333,44.3333333333,20.1333333333,40.2,22.29,45.53,18.8566666667,42.0666666667,17.1,53.2,3.53,96.06,17.4266666667,38.03,18,44.73,17.1,46.5666666667,4.2,748.3,88,6,40,2.4,0.5574754323,0.5574754323 -60,0,20.9633333333,43.8666666667,20.26,40.1266666667,22.39,44.9,18.8566666667,42.7933333333,17.1,53.2,3.6175,95.9975,17.4266666667,37.9633333333,18.0333333333,44.6266666667,17.1,46.8333333333,4.3,748.2166666667,87.5,6,40,2.4166666667,47.0154356095,47.0154356095 -50,0,21.1,43.5266666667,20.29,40,22.3233333333,44.4266666667,18.9266666667,43.6266666667,17.1,53.2,3.8333333333,96.3966666667,17.4266666667,37.9333333333,18.1,44.7,17.15,47.145,4.4,748.1333333333,87,6,40,2.4333333333,49.6874613105,49.6874613105 -60,0,21.1666666667,43.0666666667,20.29,40,22.1666666667,43.7,19,43.76,17.1,53.2,4.16,96.5633333333,17.4175,37.95,18.0333333333,44.6266666667,17.2,47.26,4.5,748.05,86.5,6,40,2.45,17.8702872596,17.8702872596 -50,0,21.2,42.1,20.39,39.76,22.025,43.6175,19.1,43.9,17.0333333333,53.1266666667,4.3666666667,96.69,17.39,38,18.1,44.7,17.2,47.3333333333,4.6,747.9666666667,86,6,40,2.4666666667,37.3817531741,37.3817531741 -60,0,21.2,41.6933333333,20.4633333333,39.7,21.9266666667,43.59,19.1,43.9,17.1,53.2,4.5633333333,96.8333333333,17.5,38.09,18.0333333333,44.7666666667,17.2,47.5,4.7,747.8833333333,85.5,6,40,2.4833333333,39.6454511909,39.6454511909 -140,0,21.23,41.5966666667,20.5,39.59,21.8566666667,43.43,19.1,43.79,17.1,53.2,4.83,96.9666666667,17.5,38.09,18.1,44.9,17.26,47.56,4.8,747.8,85,6,40,2.5,35.2929503191,35.2929503191 -270,0,21.29,41.565,20.5666666667,39.53,21.73,43.1566666667,19.1,43.79,17.0333333333,53.23,5.0633333333,96.8333333333,17.5,38.09,18.0666666667,45,17.26,47.6633333333,4.9166666667,747.7333333333,84.8333333333,6,40,2.5833333333,23.7912519369,23.7912519369 -200,0,21.3566666667,41.29,20.6,39.4666666667,21.6666666667,42.93,19.1,43.7233333333,17.0333333333,53.23,5.2633333333,96.8333333333,17.5,38.09,18,45,17.2,47.53,5.0333333333,747.6666666667,84.6666666667,6,40,2.6666666667,24.7327263001,24.7327263001 -60,0,21.3566666667,40.8333333333,20.6,39.4,21.6,42.73,19.0333333333,43.33,17.05,53.29,5.2633333333,96.1633333333,17.5,38.09,18,45,17.2,47.1933333333,5.15,747.6,84.5,6,40,2.75,15.4026224394,15.4026224394 -50,0,21.3566666667,40.6266666667,20.73,39.4,21.5,42.5266666667,19,42.9666666667,17.0666666667,53.3633333333,5.1233333333,95.29,17.5,38.1633333333,18,45,17.2,46.86,5.2666666667,747.5333333333,84.3333333333,6,40,2.8333333333,34.7506123129,34.7506123129 -60,0,21.5,40.56,20.79,39.3266666667,21.5,42.3266666667,18.9175,42.8175,17,53.29,5.1233333333,94.3566666667,17.39,38.09,18,45,17.2,46.49,5.3833333333,747.4666666667,84.1666666667,6,40,2.9166666667,41.1396652809,41.1396652809 -80,0,21.5,40.4333333333,20.89,39.29,21.5,42.06,18.89,42.73,17.0333333333,53.3266666667,5.1233333333,92.7633333333,17.4633333333,38.09,18,44.9333333333,17.2,46.1566666667,5.5,747.4,84,6,40,3,21.7358820373,21.7358820373 -50,0,21.6,40.26,20.9633333333,39.23,21.4266666667,41.86,18.89,42.59,17.1,53.4,5.1233333333,91.8266666667,17.39,38.06,18,44.9,17.2,45.8333333333,5.4833333333,747.4333333333,83.1666666667,6,40,2.8333333333,25.7366326405,25.7366326405 -40,0,21.6,40.1266666667,21,39.1633333333,21.39,41.6633333333,18.8233333333,42.53,17.1,53.5,5.2633333333,91.0333333333,17.39,38,17.9266666667,44.8266666667,17.1333333333,45.6266666667,5.4666666667,747.4666666667,82.3333333333,6,40,2.6666666667,33.1505483831,33.1505483831 -50,0,21.6,40.06,21.0666666667,39.09,21.39,41.53,18.79,42.5,17.1,53.5,5.4333333333,90.5966666667,17.39,38,17.89,44.79,17.1,45.3633333333,5.45,747.5,81.5,6,40,2.5,7.1583293262,7.1583293262 -50,0,21.6,40,21.1,39.09,21.39,41.5,18.79,42.4333333333,17.1,53.5,5.4333333333,88.93,17.39,38,17.89,44.76,17.1,45.23,5.4333333333,747.5333333333,80.6666666667,6,40,2.3333333333,17.224369687,17.224369687 -40,0,21.5333333333,40,21.075,38.9975,21.3233333333,41.4333333333,18.76,42.3633333333,17.1,53.5,5.3666666667,85.53,17.39,37.9,17.89,44.7,17.1,44.9666666667,5.4166666667,747.5666666667,79.8333333333,6,40,2.1666666667,20.2881791163,20.2881791163 -30,0,21.5333333333,39.9333333333,21,38.9,21.29,41.4,18.76,42.29,17.1,53.4666666667,5.2725,81.34,17.39,37.8266666667,17.89,44.59,17.1,44.7666666667,5.4,747.6,79,6,40,2,4.2655502912,4.2655502912 -30,0,21.5,39.79,21,38.76,21.23,41.3266666667,18.7,42.26,17.1,53.4,5.2633333333,80.7966666667,17.39,37.7,17.89,44.4633333333,17.1,44.56,5.2666666667,747.65,78.5,6.1666666667,40,1.7833333333,46.6285964125,46.6285964125 -200,0,21.5,39.73,20.9266666667,38.7,21.2,41.2,18.7,42.1266666667,17.1,53.3633333333,5.3333333333,79.49,17.39,37.6266666667,17.89,44.4,17.0333333333,44.36,5.1333333333,747.7,78,6.3333333333,40,1.5666666667,41.9192033354,41.9192033354 -450,0,21.39,39.59,20.89,38.5,21.1333333333,41.2,18.7,42.1566666667,17.1,53.29,5.4,77.9633333333,17.39,37.5966666667,17.9633333333,44.8,17.1,44.145,5,747.75,77.5,6.5,40,1.35,43.9716648078,43.9716648078 -400,0,21.39,39.7966666667,20.8233333333,38.4333333333,21.1633333333,42.1966666667,18.7,42.29,17.1,53.1633333333,5.2633333333,75.6566666667,17.4175,38.0925,18,45.1566666667,17.0666666667,43.93,4.8666666667,747.8,77,6.6666666667,40,1.1333333333,46.7856233823,46.7856233823 -740,0,21.39,40.5666666667,20.79,38.29,21.4175,43.44,18.7,42.3266666667,17.1,53.03,5.1233333333,73.99,17.5666666667,38.4,18.0666666667,45.43,17,43.73,4.7333333333,747.85,76.5,6.8333333333,40,0.9166666667,3.6230316735,3.6230316735 -910,0,21.4633333333,41.6933333333,20.8566666667,38.3633333333,21.6666666667,43.93,18.7,42.66,17.1,53,4.9666666667,74.1666666667,17.6,38.53,18.2,45.59,17,43.4666666667,4.6,747.9,76,7,40,0.7,18.937972025,18.937972025 -610,10,21.6333333333,45.1966666667,20.9266666667,38.5966666667,21.96,44.5666666667,18.6333333333,43.3,17.1,53,4.8333333333,75.2333333333,17.6666666667,38.6633333333,18.2,45.59,17,43.3266666667,4.5833333333,747.9333333333,76,6.8333333333,40,0.6833333333,26.8932461389,26.8932461389 -510,10,21.76,47.13,21.1333333333,39.0633333333,22.1666666667,45.0266666667,18.7,44.4933333333,17.1,53.1266666667,4.8,76,17.7,38.7,18.29,45.7,17,43.26,4.5666666667,747.9666666667,76,6.6666666667,40,0.6666666667,5.2525069332,5.2525069332 -190,0,21.945,45.3,21.29,39.53,22.4266666667,45.26,18.7,45.4633333333,17.1,53.3333333333,4.7266666667,76.1933333333,17.7,38.6266666667,18.3566666667,45.76,17,43.1266666667,4.55,748,76,6.5,40,0.65,40.0843852782,40.0843852782 -110,10,22,43.9966666667,21.3566666667,39.53,22.5666666667,45,18.76,45.6633333333,17.1,53.6,4.56,75.16,17.7,38.56,18.4266666667,46.09,17,43.3266666667,4.5333333333,748.0333333333,76,6.3333333333,40,0.6333333333,36.9820872904,36.9820872904 -100,0,22.0666666667,43.1966666667,21.5,39.56,22.6,44.16,18.73,45.4666666667,17.1,53.8266666667,4.56,74.7,17.6333333333,38.4333333333,18.5,45.9633333333,17,43.3266666667,4.5166666667,748.0666666667,76,6.1666666667,40,0.6166666667,2.6074506692,2.6074506692 -90,10,22.1,42.3633333333,21.5666666667,39.36,22.5333333333,43.7666666667,18.745,45.295,17.1,53.9,4.59,74.6333333333,17.7,38.5,18.6,45.76,17,43.1633333333,4.5,748.1,76,6,40,0.6,24.1084786598,24.1084786598 -110,10,22.1,41.89,21.6333333333,39.1633333333,22.39,43.4,18.79,45.1266666667,17.1,53.9333333333,4.6566666667,73.4266666667,17.7,38.4333333333,18.6,45.6266666667,17,42.9633333333,4.4166666667,748.1666666667,76.1666666667,6.1666666667,40,0.55,46.0258920328,46.0258920328 -100,0,22.1333333333,41.43,21.7,39.03,22.3233333333,43.1266666667,18.79,44.9666666667,17.1,54,4.69,74.1333333333,17.7,38.4,18.7,45.6633333333,16.9266666667,42.76,4.3333333333,748.2333333333,76.3333333333,6.3333333333,40,0.5,2.0764214452,2.0764214452 -110,10,22.2,41.1566666667,21.7,38.9,22.26,42.8333333333,18.79,44.8266666667,17.1,53.9666666667,4.6233333333,72.9933333333,17.7,38.4,18.76,45.53,16.9266666667,42.6266666667,4.25,748.3,76.5,6.5,40,0.45,14.69958995,14.69958995 -100,10,22.1,40.8333333333,21.7,38.7225,22.2,42.5,18.79,44.7,17.1,53.9,4.4666666667,71.2566666667,17.7,38.3633333333,18.79,45.45,16.89,42.4666666667,4.1666666667,748.3666666667,76.6666666667,6.6666666667,40,0.4,25.0425243634,25.0425243634 -790,10,22.1666666667,40.5,21.7,38.6266666667,22.1666666667,42.1333333333,18.79,44.6266666667,17.1,53.9,4.2975,71.745,17.7,38.43,18.8233333333,45.4,16.89,42.3266666667,4.0833333333,748.4333333333,76.8333333333,6.8333333333,40,0.35,30.4874467547,30.4874467547 -380,10,22.2,40.6933333333,21.7,38.59,22.1,42.06,18.79,44.59,17.1,53.8266666667,4.19,72.4633333333,17.7,38.7666666667,18.8233333333,45.3266666667,16.89,42.1633333333,4,748.5,77,7,40,0.3,13.2124524796,13.2124524796 -360,10,22.26,41.8333333333,21.7,38.7925,22.1,42.23,18.79,44.59,17.1,53.9,4.2633333333,72.7,17.76,38.9,18.89,45.29,16.89,42.03,3.9,748.55,78.5,7.1666666667,40,0.4666666667,21.1549304775,21.1549304775 -360,10,22.3233333333,42.5633333333,21.7,39.1333333333,22.1,42.3633333333,18.79,44.73,17.1,53.9,4.19,73.7666666667,17.79,38.8333333333,18.89,45.23,16.89,41.8633333333,3.8,748.6,80,7.3333333333,40,0.6333333333,18.328180816,18.328180816 -100,10,22.4633333333,47.7633333333,21.73,39.6333333333,22,42.53,18.79,45.0633333333,17.1,54.03,3.9666666667,74.26,17.73,38.5666666667,19,45.0266666667,16.865,41.74,3.7,748.65,81.5,7.5,40,0.8,47.1252661198,47.1252661198 -100,10,22.73,46.86,21.79,40.36,22.0666666667,43.1233333333,18.89,46.4333333333,17.1,54.2966666667,3.9,74.9266666667,17.76,38.1933333333,18.9266666667,44.6933333333,16.8566666667,41.6633333333,3.6,748.7,83,7.6666666667,40,0.9666666667,6.1861782568,6.1861782568 -90,10,22.79,45.5266666667,21.8233333333,41.1566666667,22.0666666667,43.4,18.89,47.0266666667,17.2,54.8,3.9333333333,74.9666666667,17.7,37.82,18.9266666667,44.73,16.89,41.59,3.5,748.75,84.5,7.8333333333,40,1.1333333333,3.5016339622,3.5016339622 -90,20,22.79,44.8333333333,21.89,40.9566666667,22,43.4666666667,18.9633333333,47.23,17.2,55,4,75.2266666667,17.7,37.5666666667,19,44.79,16.9633333333,42.8633333333,3.4,748.8,86,8,40,1.3,48.2158518978,48.2158518978 -110,10,22.73,44.1,21.79,40.46,22,43.59,18.89,47.29,17.6333333333,66.36,4,74.8,17.8333333333,39.3233333333,19.1,45.1333333333,16.9816666667,43.5766666667,3.5,748.85,83.3333333333,8.3333333333,40,0.9166666667,22.1255054115,22.1255054115 -140,30,22.7,43.2966666667,21.79,40.1266666667,22,43.56,18.9633333333,47.1333333333,19.3,86.0333333333,4,73.3266666667,18.3666666667,42.1233333333,19.1,45.4666666667,17,44.29,3.6,748.9,80.6666666667,8.6666666667,40,0.5333333333,18.513619015,18.513619015 -110,20,22.7,42.89,21.7,40.1933333333,22,43.5,18.89,46.86,18.66,83,4.1233333333,69.7,18.86,42.7266666667,19.1,46.36,17,44.23,3.7,748.95,78,9,40,0.15,8.5121790064,8.5121790064 -100,20,22.7,43.0666666667,21.7,40.6,22,43.4,18.9633333333,46.6633333333,18.4,74.9266666667,4.19,68.1,19.1333333333,43.1333333333,19.1666666667,46.6333333333,17,43.9,3.8,749,75.3333333333,9.3333333333,40,-0.2333333333,2.7095214697,2.7095214697 -110,20,22.7,43.07,21.7,41,22,43.4,18.89,46.4633333333,18.795,63.5,4.3,65.5633333333,19.3233333333,43.4666666667,19.23,46.7,17,43.5,3.9,749.05,72.6666666667,9.6666666667,40,-0.6166666667,32.8914034646,32.8914034646 -130,20,22.7,42.6333333333,21.76,41,21.9266666667,43.4,18.89,46.2666666667,19.13,68.6633333333,4.3,63.5633333333,19.39,43.3266666667,19.29,46.7,16.9633333333,43.1,4,749.1,70,10,40,-1,28.9080958348,28.9080958348 -140,30,22.73,41.93,21.79,40.73,21.9266666667,43.3266666667,19.0225,46.9225,19.3233333333,79.4633333333,4.19,62.49,19.5333333333,43.0666666667,19.4266666667,46.56,16.89,42.7666666667,3.9166666667,749.1666666667,70,9.6666666667,40,-1.0833333333,49.3550881976,49.3550881976 -130,20,22.79,41.79,21.79,40.93,21.89,43.1633333333,19.26,47.23,19.3233333333,65.3633333333,4.1233333333,61.8966666667,19.6666666667,43.4666666667,19.5,46.2266666667,16.89,42.3333333333,3.8333333333,749.2333333333,70,9.3333333333,40,-1.1666666667,30.1896200748,30.1896200748 -120,20,22.79,41.79,21.79,41.09,21.89,43.09,19.29,46.7666666667,19.39,58.6966666667,3.895,61.34,19.6666666667,42.5666666667,19.7,45.7966666667,16.89,42.0666666667,3.75,749.3,70,9,40,-1.25,3.2474959386,3.2474959386 -100,10,22.79,41.73,21.8566666667,41.1633333333,21.79,42.9666666667,19.23,46.3,19.5333333333,55.1566666667,3.6633333333,62.0933333333,19.5333333333,41.6333333333,19.76,45.39,16.89,41.7233333333,3.6666666667,749.3666666667,70,8.6666666667,40,-1.3333333333,8.1054540933,8.1054540933 -80,0,22.79,41.56,21.89,41,21.79,42.9,19.2,46.1266666667,19.6,53.49,3.59,61.7,19.3566666667,40.7333333333,19.79,44.9666666667,16.89,41.4633333333,3.5833333333,749.4333333333,70,8.3333333333,40,-1.4166666667,23.7698960234,23.7698960234 -50,10,22.79,41.5,21.89,40.86,21.79,42.79,19.2,46.1266666667,19.7,51.8633333333,3.6266666667,62.4,19.23,40.1333333333,19.79,44.795,16.89,41.1333333333,3.5,749.5,70,8,40,-1.5,0.096641737,0.096641737 -50,0,22.9266666667,41.0333333333,22.1,40.4333333333,21.73,42.8633333333,19.2,45.8333333333,19.5666666667,52.39,3.7,62.3266666667,19.1,39.43,19.73,44.9,16.89,41.4666666667,3.15,749.5166666667,73.6666666667,7.8333333333,37.1666666667,-1.2,22.0729571534,22.0729571534 -50,0,23.0666666667,40.4266666667,22.175,39.75,21.6666666667,43,19.1333333333,45.6266666667,19.26,53.6966666667,3.6633333333,61.5666666667,19.0333333333,39.3633333333,19.7,45.6333333333,17,43.3966666667,2.8,749.5333333333,77.3333333333,7.6666666667,34.3333333333,-0.9,13.046486862,13.046486862 -40,0,23.2,40.1633333333,22.26,39.7,21.6,43,19.1,45.56,19.1333333333,54.4233333333,3.4633333333,64.5666666667,19,39.73,19.7,46.1,17,44.0633333333,2.45,749.55,81,7.5,31.5,-0.6,46.9206872745,46.9206872745 -50,0,23.26,40.09,22.39,39.6633333333,21.5666666667,43,19.0333333333,45.3,19,55,2.96,70.6666666667,18.9266666667,39.93,19.7,46.6566666667,17,44.745,2.1,749.5666666667,84.6666666667,7.3333333333,28.6666666667,-0.3,35.7916641864,35.7916641864 -50,0,23.39,40.06,22.4633333333,39.6633333333,21.5,43.06,19,45.1333333333,19,55.3333333333,2.5,74.8666666667,18.89,40.23,19.7,46.93,17.1,45.3266666667,1.75,749.5833333333,88.3333333333,7.1666666667,25.8333333333,0,8.1542739179,8.1542739179 -50,0,23.39,40,22.6,39.6633333333,21.4633333333,43,18.9266666667,44.9333333333,18.89,55.6266666667,2.1333333333,78.3666666667,18.815,40.3975,19.7,47.2666666667,17.1,45.5266666667,1.4,749.6,92,7,23,0.3,23.8094009226,23.8094009226 -40,0,23.5,40,22.6666666667,39.6633333333,21.39,43.06,18.89,44.76,18.89,55.76,1.9333333333,80.4933333333,18.79,40.56,19.7,47.5266666667,17.1,45.6266666667,1.3,749.55,92.3333333333,7.3333333333,27.8333333333,0.25,34.5128361485,34.5128361485 -30,0,23.5666666667,39.9333333333,22.7,39.59,21.39,43.145,18.8233333333,44.6266666667,18.79,55.79,1.79,83.4666666667,18.7,40.73,19.7,47.7666666667,17.1,45.76,1.2,749.5,92.6666666667,7.6666666667,32.6666666667,0.2,23.0447589769,23.0447589769 -30,0,23.6,39.79,22.7,39.59,21.39,43.1633333333,18.79,44.4666666667,18.79,55.8633333333,1.73,85.1933333333,18.7,40.79,19.7,48.0266666667,17.1,45.8266666667,1.1,749.45,93,8,37.5,0.15,47.7573369164,47.7573369164 -40,0,23.6,39.73,22.73,39.5,21.3233333333,43.09,18.79,44.3266666667,18.79,55.8266666667,1.5666666667,87.3333333333,18.6666666667,40.9,19.7,48.39,17.1,45.9,1,749.4,93.3333333333,8.3333333333,42.3333333333,0.1,35.6270061224,35.6270061224 -40,0,23.6,39.6633333333,22.79,39.5,21.26,43.06,18.76,44.26,18.73,55.8266666667,1.5,88.6,18.6,40.9,19.7,48.7233333333,17.1,45.9333333333,0.9,749.35,93.6666666667,8.6666666667,47.1666666667,0.05,19.8573966627,19.8573966627 -50,0,23.6666666667,39.6633333333,22.79,39.4666666667,21.2,43.06,18.7,44.2,18.745,55.79,1.39,89.4666666667,18.6,41.2666666667,19.7,48.8266666667,17.1,46,0.8,749.3,94,9,52,0,5.8860306046,5.8860306046 -60,0,23.7,39.59,22.79,39.4,21.2,43.2,18.7,44.09,18.7,55.79,1.39,90.645,18.6,41.5266666667,19.7,48.9,17.1,46.09,0.6666666667,749.2833333333,95,9.1666666667,49,0,12.0058136526,12.0058136526 -50,0,23.7,39.56,22.79,39.4,21.2,43.26,18.7,44.0225,18.6333333333,55.73,1.39,91.8,18.6,41.6566666667,19.6666666667,48.93,17.1,46.1633333333,0.5333333333,749.2666666667,96,9.3333333333,46,0,43.1815283257,43.1815283257 -60,0,23.7,39.4333333333,22.79,39.3266666667,21.2,43.29,18.7,43.9333333333,18.7,55.7,1.1333333333,92.9933333333,18.6,41.8633333333,19.6,48.79,17.1,46.3266666667,0.4,749.25,97,9.5,43,0,21.7988200835,21.7988200835 -50,0,23.79,39.26,22.79,39.29,21.2,43.3633333333,18.6666666667,43.8633333333,18.6333333333,55.6266666667,0.8666666667,94.2666666667,18.6,41.9,19.5666666667,48.79,17.1,46.4,0.2666666667,749.2333333333,98,9.6666666667,40,0,24.8934025993,24.8934025993 -50,0,23.79,39.2,22.79,39.23,21.2,43.29,18.6,43.73,18.6666666667,55.56,0.6666666667,94.53,18.6,41.9,19.5,48.79,17.1333333333,46.5,0.1333333333,749.2166666667,99,9.8333333333,37,0,34.5963836065,34.5963836065 -50,0,23.79,39.1633333333,22.79,39.2,21.2,43.29,18.6,43.7,18.6,55.4333333333,0.6,94.6566666667,18.6,42,19.5,48.9333333333,17.2,46.56,0,749.2,100,10,34,0,38.0156640895,38.0156640895 -50,0,23.73,39.09,22.79,39.2,21.2,43.29,18.6,43.7,18.6,55.3633333333,0.5,94.6566666667,18.6,42,19.5,49.2175,17.2,46.73,0.0666666667,749.2333333333,99.8333333333,10,38.6666666667,0.0333333333,7.770061132,7.770061132 -50,0,23.7,39.09,22.79,39.1266666667,21.2,43.29,18.5666666667,43.56,18.6,55.29,0.5,94.59,18.5666666667,42.09,19.5,49.3633333333,17.2,46.8633333333,0.1333333333,749.2666666667,99.6666666667,10,43.3333333333,0.0666666667,42.4728546524,42.4728546524 -50,0,23.7,39.03,22.79,39.1266666667,21.2,43.29,18.5,43.5,18.6,55.29,0.5333333333,94.59,18.5,42.1633333333,19.5,49.4,17.2,47,0.2,749.3,99.5,10,48,0.1,47.3408909515,47.3408909515 -60,0,23.7,39.09,22.7,39.09,21.2,43.3633333333,18.5,43.5,18.6,55.29,0.6,94.53,18.5,42.23,19.5,49.4,17.2,47.06,0.2666666667,749.3333333333,99.3333333333,10,52.6666666667,0.1333333333,29.4209595188,29.4209595188 -50,0,23.6333333333,39.03,22.7,39.09,21.2,43.4,18.5,43.4333333333,18.6,55.1633333333,0.6333333333,94.53,18.5,42.3633333333,19.39,49.4,17.2,47.2,0.3333333333,749.3666666667,99.1666666667,10,57.3333333333,0.1666666667,25.1125407638,25.1125407638 -50,0,23.6,39.03,22.7,39.09,21.2,43.4666666667,18.5,43.4,18.5333333333,55.09,0.7,94.59,18.5,42.4,19.39,49.4,17.2,47.29,0.4,749.4,99,10,62,0.2,9.4889958855,9.4889958855 -50,0,23.6,39.09,22.6,39,21.2,43.4666666667,18.5,43.4,18.5,55.09,0.8333333333,94.6233333333,18.5,42.4,19.39,49.4,17.2,47.3633333333,0.55,749.5166666667,97.8333333333,10.1666666667,55.5,0.2,0.0918429112,0.0918429112 -50,0,23.5,39.09,22.6,39,21.2,43.4,18.5,43.4,18.5,55.03,0.9,94.69,18.5,42.4,19.39,49.4666666667,17.2,47.4,0.7,749.6333333333,96.6666666667,10.3333333333,49,0.2,43.8789031119,43.8789031119 -40,0,23.4266666667,39.09,22.5,39.09,21.2,43.4,18.5,43.4,18.5,55,1.0333333333,94.6233333333,18.5,42.4,19.39,49.53,17.2,47.4,0.85,749.75,95.5,10.5,42.5,0.2,6.7055668915,6.7055668915 -50,0,23.39,39.23,22.4266666667,39.03,21.2,43.4,18.4633333333,43.26,18.5,55,1.1666666667,94.69,18.5,42.4,19.39,49.59,17.2,47.5,1,749.8666666667,94.3333333333,10.6666666667,36,0.2,1.1370612076,1.1370612076 -40,0,23.3233333333,39.3633333333,22.39,39,21.2,43.4,18.39,43.2,18.5,54.9,1.29,94.8,18.5,42.3266666667,19.39,49.59,17.26,47.56,1.15,749.9833333333,93.1666666667,10.8333333333,29.5,0.2,46.956835303,46.956835303 -30,0,23.29,39.5,22.3233333333,39.06,21.23,43.4333333333,18.39,43.1266666667,18.5,54.8266666667,1.3233333333,94.69,18.5,42.4666666667,19.39,49.59,17.23,47.53,1.3,750.1,92,11,23,0.2,14.647436142,14.647436142 -40,0,23.23,39.4333333333,22.26,39.06,21.29,43.5,18.39,43.2,18.4633333333,54.76,1.39,94.69,18.5,42.5,19.39,49.59,17.29,47.6633333333,1.5333333333,750.2166666667,90.5,10.8333333333,23.3333333333,0.1666666667,8.216328721,8.216328721 -30,0,23.2,39.5,22.2,39.06,21.26,43.56,18.39,43.09,18.39,54.6725,1.39,94.7633333333,18.5,42.5,19.39,49.59,17.29,47.7,1.7666666667,750.3333333333,89,10.6666666667,23.6666666667,0.1333333333,19.955127791,19.955127791 -60,0,23.1333333333,39.4333333333,22.1666666667,39.09,21.2,43.5,18.39,43.09,18.39,54.59,1.4633333333,94.83,18.5,42.5,19.39,49.56,17.29,47.7,2,750.45,87.5,10.5,24,0.1,22.9787706048,22.9787706048 -50,0,23.1,39.45,22.1,39.09,21.23,43.53,18.39,43.09,18.39,54.56,1.6333333333,94.9,18.5,42.4333333333,19.39,49.5,17.29,47.7,2.2333333333,750.5666666667,86,10.3333333333,24.3333333333,0.0666666667,21.7015424278,21.7015424278 -50,0,23,39.4,22,39.09,21.29,43.59,18.3233333333,43.06,18.39,54.5,1.8333333333,95.0266666667,18.5,42.6266666667,19.3566666667,49.4666666667,17.29,47.7,2.4666666667,750.6833333333,84.5,10.1666666667,24.6666666667,0.0333333333,25.8504913189,25.8504913189 -40,0,22.9266666667,39.4,21.9266666667,39.09,21.29,43.59,18.39,43,18.3566666667,54.5,1.9333333333,95.0633333333,18.5,42.76,19.29,49.4,17.29,47.7,2.7,750.8,83,10,25,0,42.3122876324,42.3122876324 -50,0,22.89,39.4333333333,21.89,39.1266666667,21.29,43.59,18.39,43,18.3566666667,54.5,2,95.19,18.5,42.76,19.29,49.29,17.29,47.7,2.75,750.8833333333,81.8333333333,10,27.5,-0.15,2.7582143201,2.7582143201 -60,0,22.8233333333,39.5,21.8233333333,39.1266666667,21.29,43.6266666667,18.3233333333,43,18.29,54.4,2,95.3666666667,18.5,42.6266666667,19.29,49.23,17.29,47.7,2.8,750.9666666667,80.6666666667,10,30,-0.3,27.7088530594,27.7088530594 -50,0,22.79,39.53,21.76,39.09,21.29,43.7,18.3233333333,42.9,18.29,54.4,1.9333333333,95.56,18.5,42.56,19.29,49.2,17.29,47.7,2.85,751.05,79.5,10,32.5,-0.45,34.4137618784,34.4137618784 -50,0,22.73,39.59,21.7,39.09,21.29,43.7,18.3233333333,42.9,18.29,54.29,1.9,95.76,18.5,42.4333333333,19.29,49.29,17.29,47.59,2.9,751.1333333333,78.3333333333,10,35,-0.6,32.9028776847,32.9028776847 -50,0,22.6666666667,39.56,21.7,39.2,21.29,43.6266666667,18.29,42.8633333333,18.29,54.29,1.9,95.9,18.4633333333,42.3333333333,19.29,49.29,17.29,47.59,2.95,751.2166666667,77.1666666667,10,37.5,-0.75,33.1671362626,33.1671362626 -50,0,22.6,39.5,21.625,39.145,21.29,43.59,18.29,42.79,18.29,54.26,1.9,96,18.4633333333,42.2,19.29,49.26,17.29,47.59,3,751.3,76,10,40,-0.9,23.6117101274,23.6117101274 -40,0,22.5666666667,39.5,21.5333333333,39.2,21.29,43.59,18.29,42.79,18.29,54.2,2.0266666667,96.2,18.39,42.1266666667,19.29,49.2,17.3233333333,47.59,3.0333333333,751.3833333333,75.3333333333,10,40,-0.9833333333,48.4764083056,48.4764083056 -50,0,22.5,39.5,21.5,39.2,21.29,43.59,18.29,42.73,18.26,54.1633333333,2.2666666667,96.3333333333,18.39,42.2,19.29,49.2,17.3233333333,47.59,3.0666666667,751.4666666667,74.6666666667,10,40,-1.0666666667,20.1098531368,20.1098531368 -50,0,22.39,39.4,21.4266666667,39.2,21.29,43.53,18.23,42.6266666667,18.2,54.09,2.475,96.3475,18.39,42.2,19.29,49.1266666667,17.3233333333,47.6266666667,3.1,751.55,74,10,40,-1.15,42.4776051892,42.4776051892 -50,0,22.39,39.4,21.39,39.2,21.29,43.5,18.23,42.5666666667,18.2,54,2.5,95.8566666667,18.39,42.29,19.26,49.06,17.39,47.7,3.1333333333,751.6333333333,73.3333333333,10,40,-1.2333333333,37.8322453704,37.8322453704 -60,0,22.3566666667,39.8633333333,21.3233333333,39.2,21.29,43.5,18.2,42.5,18.2,54,2.4,95.1666666667,18.39,42.29,19.2,48.9333333333,17.39,47.7,3.1666666667,751.7166666667,72.6666666667,10,40,-1.3166666667,26.6300609685,26.6300609685 -50,0,22.29,39.79,21.29,39.29,21.29,43.5,18.2,42.5,18.2,53.9666666667,2.4,94.4266666667,18.39,42.3266666667,19.2,48.79,17.39,47.7,3.2,751.8,72,10,40,-1.4,43.7074830406,43.7074830406 -40,0,22.2,39.7,21.29,39.29,21.29,43.59,18.2,42.4,18.2,53.9,2.4,93.8633333333,18.39,42.5266666667,19.2,48.79,17.39,47.7,3.2,751.8833333333,72.6666666667,9.8333333333,40,-1.2666666667,23.3557557804,23.3557557804 -50,0,22.2,39.7,21.2,39.23,21.29,43.59,18.2,42.4,18.1666666667,53.9,2.4,93.9233333333,18.5,42.76,19.2,48.7,17.39,47.7,3.2,751.9666666667,73.3333333333,9.6666666667,40,-1.1333333333,0.4064227687,0.4064227687 -50,0,22.1666666667,39.7,21.2,39.29,21.29,43.59,18.2,42.4,18.1,53.9,2.4,93.1633333333,18.5,42.6266666667,19.2,48.76,17.39,47.7,3.2,752.05,74,9.5,40,-1,36.3883502316,36.3883502316 -50,0,22.1,39.7,21.1,39.4,21.29,43.59,18.2,42.4,18.1,53.9,2.4666666667,92.69,18.39,42.4,19.1,48.8266666667,17.39,47.7,3.2,752.1333333333,74.6666666667,9.3333333333,40,-0.8666666667,35.8294739388,35.8294739388 -30,0,22.0666666667,39.6633333333,21.1,39.4,21.29,43.59,18.1333333333,42.3266666667,18.1,53.79,2.5,92.5633333333,18.39,42.5266666667,19.1,48.9,17.39,47.7,3.2,752.2166666667,75.3333333333,9.1666666667,40,-0.7333333333,9.3713185517,9.3713185517 -70,10,22,39.6175,21,39.3266666667,21.29,43.6633333333,18.1333333333,42.29,18.1,53.79,2.5,92.5633333333,18.4266666667,42.9666666667,19.1333333333,49.03,17.39,47.7,3.2,752.3,76,9,40,-0.6,32.3033638415,32.3033638415 -50,10,21.9266666667,39.9,21,39.4,21.26,43.56,18.1333333333,42.29,18.1,53.89,2.5,91.8333333333,18.5,43.4333333333,19.1333333333,49.2233333333,17.4266666667,47.7,3.2,752.3833333333,76.3333333333,8.8333333333,40,-0.55,27.0989639917,27.0989639917 -50,10,21.89,40.2233333333,20.9633333333,39.4,21.2,43.5,18.1,42.29,18.1,54.3633333333,2.4333333333,90.0266666667,18.5,43.1633333333,19.1666666667,49.1633333333,17.4266666667,47.5666666667,3.2,752.4666666667,76.6666666667,8.6666666667,40,-0.5,16.7660379899,16.7660379899 -50,10,21.89,40.2966666667,20.89,39.4666666667,21.2,43.5,18.1,42.29,18,54.8,2.4,88.4666666667,18.5,42.89,19.1,49.03,17.4633333333,47.4,3.2,752.55,77,8.5,40,-0.45,31.8954361603,31.8954361603 -50,0,21.8566666667,40.3633333333,20.89,39.5,21.2,43.5,18.1,42.29,18,55.1333333333,2.4,88.5333333333,18.4633333333,42.6333333333,19.1,48.69,17.4633333333,47.2,3.2,752.6333333333,77.3333333333,8.3333333333,40,-0.4,41.460053192,41.460053192 -40,10,21.79,40.0966666667,20.8233333333,39.0266666667,21.1333333333,42.3333333333,18.1,42.29,18,55.4633333333,2.4,87.4333333333,18.39,42.4333333333,19.0666666667,48.43,17.39,46.93,3.2,752.7166666667,77.6666666667,8.1666666667,40,-0.35,35.4487599223,35.4487599223 -50,10,21.6333333333,36.6666666667,20.2966666667,35.6966666667,20.6666666667,38.3933333333,18.1,42.29,18,55.7233333333,2.4,86.2266666667,18.39,42.1633333333,19,48.23,17.39,46.73,3.2,752.8,78,8,40,-0.3,17.4275175435,17.4275175435 -50,10,21.36,34.4,19.63,33.29,19.5933333333,35.79,18.1,42.29,18,55.9333333333,2.4,87,18.39,42.03,19,48.06,17.39,46.45,3.2,752.8666666667,78.3333333333,8.3333333333,40,-0.25,6.4163937466,6.4163937466 -150,10,21.0666666667,33.4333333333,19.15,32.95,19.3266666667,36.53,18.1,42.4,17.9266666667,56.06,2.4333333333,86.99,18.29,41.76,19,47.9333333333,17.39,46.26,3.2,752.9333333333,78.6666666667,8.6666666667,40,-0.2,19.4039244438,19.4039244438 -390,20,21,33.56,19.3233333333,33.53,19.6633333333,37.09,18.1,42.3266666667,17.89,56.1333333333,2.5,85.3966666667,18.29,41.3666666667,18.9266666667,47.7233333333,17.39,46.1266666667,3.2,753,79,9,40,-0.15,46.408877417,46.408877417 -390,10,20.89,33.86,19.53,33.99,19.93,37.2233333333,18.2633333333,42.4666666667,17.89,55.8,2.53,85.5666666667,18.245,40.295,18.9266666667,47.39,17.29,45.7233333333,3.2,753.0666666667,79.3333333333,9.3333333333,40,-0.1,40.2195385657,40.2195385657 -380,10,20.89,34.1933333333,19.66,34.618,20.05,37.395,18.6566666667,42.3266666667,17.89,55.4,2.59,85.1666666667,18.1666666667,39.49,18.89,46.93,17.29,45.39,3.2,753.1333333333,79.6666666667,9.6666666667,40,-0.05,37.9348403541,37.9348403541 -400,10,20.79,34.6666666667,19.7,34.7666666667,20.1,37.6566666667,19.3,42.2,17.89,55,2.56,85.1333333333,18.1,39.1566666667,18.89,46.6566666667,17.29,44.9,3.2,753.2,80,10,40,0,47.8624944459,47.8624944459 -370,10,20.79,35.1933333333,19.7,35.1,20.1,37.93,19.6933333333,41.9266666667,17.89,54.6333333333,2.5,85.1333333333,18.1,38.7966666667,18.8566666667,46.0633333333,17.29,44.5,3.2,753.2833333333,80.3333333333,9.8333333333,40,0.05,49.6956939343,49.6956939343 -310,10,20.76,35.9266666667,19.79,35.4633333333,20.2,38.2666666667,20.0666666667,41.3633333333,17.8233333333,54.3,2.59,85.1933333333,18.1,38.53,18.79,45.6566666667,17.29,44.2,3.2,753.3666666667,80.6666666667,9.6666666667,40,0.1,30.3220497328,30.3220497328 -40,10,20.76,36.4,19.8566666667,35.7966666667,20.2,38.5266666667,20.3266666667,41.1566666667,17.8566666667,53.9,2.59,85,18.0666666667,38.1933333333,18.79,45.3333333333,17.29,44.1266666667,3.2,753.45,81,9.5,40,0.15,1.4688582742,1.4688582742 -50,0,20.79,36.6933333333,19.9266666667,36.39,20.2,38.6633333333,20.5,40.8,17.84,53.57,2.7,84.6266666667,18,37.9333333333,18.73,45.0666666667,17.29,44.06,3.2,753.5333333333,81.3333333333,9.3333333333,40,0.2,16.8222678942,16.8222678942 -70,10,20.79,37.0266666667,20,36.7233333333,20.2,38.7233333333,20.3566666667,40.59,17.79,53.3266666667,2.76,84.3666666667,18,37.76,18.7,44.8333333333,17.29,43.9333333333,3.2,753.6166666667,81.6666666667,9.1666666667,40,0.25,13.8829043368,13.8829043368 -60,10,20.89,37.36,20.0333333333,37.0666666667,20.2,38.9633333333,20.29,40.4633333333,17.79,53.06,2.73,83.06,18,37.6266666667,18.7,44.6266666667,17.29,43.7233333333,3.2,753.7,82,9,40,0.3,5.8598775067,5.8598775067 -90,10,20.89,37.6333333333,20.1,37.3333333333,20.26,39.2233333333,20.2,40.3633333333,17.79,53,2.8633333333,82.3333333333,17.9633333333,37.4666666667,18.7,44.4666666667,17.29,43.59,3.3166666667,753.8,82,8.8333333333,38.1666666667,0.4333333333,2.1609129501,2.1609129501 -60,10,20.89,37.8,20.2,37.5,20.3233333333,39.29,20.1333333333,40.29,17.79,52.9,3.03,80.7566666667,17.9633333333,37.4,18.6333333333,44.1933333333,17.29,43.4,3.4333333333,753.9,82,8.6666666667,36.3333333333,0.5666666667,18.5154892853,18.5154892853 -60,20,20.89,38.0666666667,20.2,37.6333333333,20.3233333333,39.3633333333,20.1,40.09,17.79,52.8266666667,3.09,79.9633333333,17.89,37.2,18.6,43.9666666667,17.29,43.3266666667,3.55,754,82,8.5,34.5,0.7,16.8439154397,16.8439154397 -100,0,20.89,38.2,20.29,38.1266666667,20.39,39.5,20.1030864198,40.1098765432,17.79,52.76,3.1266666667,80.4333333333,17.89,37.1266666667,18.6,43.8266666667,17.29,43.1633333333,3.6666666667,754.1,82,8.3333333333,32.6666666667,0.8333333333,8.6826276733,8.6826276733 -380,10,20.9266666667,38.29,20.29,38.0666666667,20.39,39.5,20.1061728395,40.1297530864,17.79,52.6266666667,3.2,79.3666666667,17.89,37.06,18.6,43.6633333333,17.29,43.03,3.7833333333,754.2,82,8.1666666667,30.8333333333,0.9666666667,31.0886639752,31.0886639752 -390,10,21,38.3633333333,20.29,38.09,20.39,39.7,20.1092592593,40.1496296296,17.73,52.59,3.395,79.69,17.89,37,18.55,43.645,17.26,42.8633333333,3.9,754.3,82,8,29,1.1,19.8921813746,19.8921813746 -130,10,21,38.4333333333,20.3566666667,38.09,20.39,39.7,20.112345679,40.1695061728,17.79,52.59,3.6566666667,78.99,17.89,36.9666666667,18.5333333333,43.53,17.26,42.79,3.8666666667,754.3666666667,83,8.1666666667,27.6666666667,1.2166666667,47.7837884333,47.7837884333 -60,0,21,38.56,20.39,38.23,20.5,39.79,20.1154320988,40.189382716,17.73,52.5,3.79,78.6566666667,17.89,36.9,18.5,43.4666666667,17.29,42.7,3.8333333333,754.4333333333,84,8.3333333333,26.3333333333,1.3333333333,32.6674721553,32.6674721553 -60,10,20.9633333333,38.59,20.39,38.3633333333,20.5,39.8633333333,20.1185185185,40.2092592593,17.73,52.5,3.9333333333,78.1,17.89,36.8633333333,18.5,43.4,17.29,42.6633333333,3.8,754.5,85,8.5,25,1.45,16.4371858351,16.4371858351 -50,10,20.89,38.59,20.39,38.35,20.5,39.9,20.1216049383,40.2291358025,17.73,52.4,4,79.1666666667,17.89,36.8633333333,18.5,43.29,17.29,42.53,3.7666666667,754.5666666667,86,8.6666666667,23.6666666667,1.5666666667,9.857335675,9.857335675 -60,10,20.89,38.5266666667,20.29,38.0666666667,20.5,39.8266666667,20.124691358,40.2490123457,17.73,52.3266666667,4.03,78.7,17.79,36.79,18.5,43.23,17.29,42.4666666667,3.7333333333,754.6333333333,87,8.8333333333,22.3333333333,1.6833333333,5.7671162416,5.7671162416 -60,10,20.89,38.4,20.29,38.15,20.39,39.7,20.1277777778,40.2688888889,17.7,52.1816666667,4.09,77.8933333333,17.79,36.79,18.48,43.2127272727,17.29,42.4,3.7,754.7,88,9,21,1.8,49.7982739354,49.7982739354 -240,0,20.89,38.5,20.3511111111,37.9983333333,20.5,39.79,20.1308641975,40.2887654321,17.7,52.0872222222,4.2266666667,77.6566666667,17.79,36.728125,18.43,43.13,17.29,42.29,3.7333333333,754.75,87.8333333333,8.8333333333,27.6666666667,1.8166666667,18.9638362615,18.9638362615 -80,10,20.89,38.8933333333,20.445,37.95,20.5,39.8633333333,20.1339506173,40.3086419753,17.72,51.9933333333,4.3666666667,75.9233333333,17.79,36.7,18.4938888889,43.1938888889,17.29,42.29,3.7666666667,754.8,87.6666666667,8.6666666667,34.3333333333,1.8333333333,28.0994046363,28.0994046363 -80,0,21,39.79,20.5833333333,37.9777777778,20.5333333333,40,20.137037037,40.3285185185,17.735,51.9222222222,4.59,75.0233333333,17.79,36.7,18.4205555556,43.1205555556,17.26,42.1633333333,3.8,754.85,87.5,8.5,41,1.85,36.6359008825,36.6359008825 -400,0,21,39.99,20.625,38,20.6,40.06,20.1401234568,40.3483950617,17.7075,51.8725,4.59,74.9566666667,17.79,36.7,18.39,43.09,17.26,42.09,3.8333333333,754.9,87.3333333333,8.3333333333,47.6666666667,1.8666666667,43.5402776464,43.5402776464 -400,0,21.1,39.5266666667,20.710625,38.0675,20.6,40.09,20.1432098765,40.3682716049,17.728125,51.78,4.59,73.36,17.7675,36.651875,18.39,43.09,17.29,42.09,3.8666666667,754.95,87.1666666667,8.1666666667,54.3333333333,1.8833333333,28.6085129832,28.6085129832 -460,10,21.1,39.3266666667,20.79,38.039375,20.6,40.09,20.1462962963,40.3881481481,17.735,51.72,4.59,74.8333333333,17.79,36.59,18.39,43.09,17.29,42.03,3.9,755,87,8,61,1.9,0.5518035498,0.5518035498 -170,0,21.2,39.1633333333,20.85875,38.039375,20.5,40.1266666667,20.149382716,40.4080246914,17.78,51.6877777778,4.6233333333,74,17.79,36.5476470588,18.39,43.1042857143,17.29,41.9666666667,3.95,755,86.8333333333,8,55.6666666667,1.9333333333,45.3157630633,45.3157630633 -210,0,21.2,39.03,20.89,38.075,20.5,40.2,20.1524691358,40.4279012346,17.7,51.59,4.7633333333,73.7933333333,17.79,36.57875,18.39,43.1982352941,17.29,42.2333333333,4,755,86.6666666667,8,50.3333333333,1.9666666667,38.5326815769,38.5326815769 -190,0,21.29,38.995,20.9327777778,38.015,20.5,40.29,20.1555555556,40.4477777778,17.7,51.57875,4.76,72.53,17.7688235294,36.5,18.39,43.09,17.3233333333,43.2333333333,4.05,755,86.5,8,45,2,19.1252311692,19.1252311692 -70,0,21.3233333333,38.76,21.0388888889,38,20.5,40.29,20.1586419753,40.467654321,17.745,51.535,4.975,71.77,17.79,36.5,18.39,43.09,17.39,44.4933333333,4.1,755,86.3333333333,8,39.6666666667,2.0333333333,4.7022944433,4.7022944433 -80,0,21.39,38.7,21.0888888889,38.05,20.5333333333,40.2,20.1617283951,40.4875308642,17.8966666667,50.6705555556,4.9333333333,71.7633333333,17.79,36.5,18.39,43.084375,17.5,46.1666666667,4.15,755,86.1666666667,8,34.3333333333,2.0666666667,2.4826791952,2.4826791952 -60,10,21.4266666667,38.79,21.1111111111,38.02,20.6,40.2,20.1648148148,40.5074074074,18.3311111111,48.5316666667,5.03,70.9566666667,17.79,36.5,18.39,42.9822222222,17.5666666667,46.56,4.2,755,86,8,29,2.1,41.0581159056,41.0581159056 -70,0,21.5,38.79,21.1722222222,38.01,20.6,40.2,20.1679012346,40.5272839506,18.5766666667,47.3644444444,5.03,70.8966666667,17.79,36.4777777778,18.39,42.9,17.6,46.5,4.25,755.05,85.6666666667,8,30.8333333333,2.0833333333,41.466215218,41.466215218 -60,0,21.5,38.8266666667,21.2,37.95,20.6,40.2,20.1709876543,40.5471604938,18.76,46.575,5.1233333333,70.1933333333,17.79,36.45,18.3622222222,42.9,17.6666666667,46.5,4.3,755.1,85.3333333333,8,32.6666666667,2.0666666667,32.7366437879,32.7366437879 -70,0,21.5,39.0266666667,21.275,37.9444444444,20.6,40.29,20.1740740741,40.567037037,18.8794444444,46.125,5.2633333333,69.5266666667,17.77,36.4,18.3288888889,42.8277777778,17.65,46.245,4.35,755.15,85,8,34.5,2.05,6.6413906519,6.6413906519 -60,0,21.6,39.06,21.29,37.845,20.6,40.29,20.1771604938,40.5869135802,18.9877777778,45.6144444444,5.3666666667,68.7666666667,17.79,36.3694444444,18.3566666667,42.71,17.7,45.93,4.4,755.2,84.6666666667,8,36.3333333333,2.0333333333,17.0904950588,17.0904950588 -60,0,21.6666666667,38.9333333333,21.29,37.6627777778,20.5333333333,40.29,20.1802469136,40.6067901235,19.1,45.1433333333,5.3,67.8933333333,17.79,36.29,18.3455555556,42.6938888889,17.6333333333,45.53,4.45,755.25,84.3333333333,8,38.1666666667,2.0166666667,36.5685789497,36.5685789497 -60,0,21.73,38.6933333333,21.29,37.51,20.6,40.23,20.1833333333,40.6266666667,19.225,44.5416666667,5.3,67.96,17.775,36.29,18.3233333333,42.6266666667,17.6,45.0266666667,4.5,755.3,84,8,40,2,45.3645708039,45.3645708039 -60,0,21.79,38.36,21.3572222222,37.4444444444,20.65,40.045,20.1864197531,40.6465432099,19.2955555556,44.0405555556,5.3666666667,68.2933333333,17.785,36.29,18.3177777778,42.59,17.6,44.6933333333,4.0333333333,755.45,86,7.8333333333,36.8333333333,1.85,34.80984997,34.80984997 -60,0,21.8233333333,38.29,21.4877777778,37.4888888889,20.73,39.93,20.1895061728,40.6664197531,19.3788888889,43.6422222222,5.2633333333,71.2666666667,17.79,36.29,18.29,42.59,17.5,44.2233333333,3.5666666667,755.6,88,7.6666666667,33.6666666667,1.7,12.078961113,12.078961113 -50,10,21.9633333333,38.29,21.5611111111,37.4105555556,20.8566666667,39.79,20.1925925926,40.6862962963,19.5483333333,43.3983333333,5.0633333333,74.2666666667,17.78,36.29,18.29,42.6144444444,17.5,43.89,3.1,755.75,90,7.5,30.5,1.55,32.2053614305,32.2053614305 -50,0,22.0333333333,38.1266666667,21.65,37.3572222222,20.9266666667,39.79,20.1956790123,40.7061728395,19.6666666667,43.1944444444,4.69,78.4233333333,17.75,36.3388888889,18.29,42.6327777778,17.5,43.6333333333,2.6333333333,755.9,92,7.3333333333,27.3333333333,1.4,14.0375106828,14.0375106828 -60,0,22.1666666667,38.2,21.715,37.3083333333,21,39.79,20.1987654321,40.7260493827,19.7805555556,42.9111111111,4.69,78.6966666667,17.72,36.3816666667,18.29,42.6633333333,17.5,43.36,2.1666666667,756.05,94,7.1666666667,24.1666666667,1.25,47.8818260366,47.8818260366 -50,0,22.2,38.09,21.79,37.29,21.0333333333,39.8266666667,20.2018518519,40.7459259259,19.8788888889,42.7894444444,4.5,80.8233333333,17.76,36.4,18.29,42.7,17.5,43.1333333333,1.7,756.2,96,7,21,1.1,7.9197978368,7.9197978368 -50,0,22.26,38.09,21.83,37.29,21.1,39.8266666667,20.2049382716,40.7658024691,19.9572222222,42.5877777778,4.4333333333,80.8233333333,17.745,36.4,18.29,42.7,17.5,42.9333333333,1.7833333333,756.2666666667,95.6666666667,7,27.6666666667,1.1333333333,20.9169495851,20.9169495851 -70,0,22.3233333333,38.06,21.8677777778,37.27,21.1333333333,39.79,20.2080246914,40.7856790123,20,42.4111111111,4.4,80.1333333333,17.72,36.4,18.27,42.6755555556,17.4633333333,42.76,1.8666666667,756.3333333333,95.3333333333,7,34.3333333333,1.1666666667,12.6004898688,12.6004898688 -50,0,22.3233333333,38,21.8677777778,37.215,21.2,39.79,20.2111111111,40.8055555556,20.0833333333,42.2933333333,4.425,82.0425,17.7,36.4388888889,18.29,42.705,17.4633333333,42.7,1.95,756.4,95,7,41,1.2,4.719513387,4.719513387 -60,0,22.3233333333,37.9666666667,21.89,37.2,21.2,39.79,20.2141975309,40.8254320988,20.1,42.145,4.1,92.4633333333,17.74,36.5,18.29,42.75,17.5,42.56,2.0333333333,756.4666666667,94.6666666667,7,47.6666666667,1.2333333333,41.3858884829,41.3858884829 -60,0,22.39,37.8725,21.8677777778,37.1511111111,21.2,39.73,20.2172839506,40.845308642,20.1777777778,42.04,3.2,94.8,17.72,36.515,18.29,42.8105555556,17.5,42.4333333333,2.1166666667,756.5333333333,94.3333333333,7,54.3333333333,1.2666666667,26.2652751873,26.2652751873 -90,0,22.39,37.8633333333,21.8677777778,37.1755555556,21.2,39.59,20.2203703704,40.8651851852,20.1444444444,42.055,1.9,95.545,17.7,36.525,18.4116666667,44.2394444444,17.39,42.26,2.2,756.6,94,7,61,1.3,33.3873813739,33.3873813739 -100,10,22.39,37.79,21.89,37.145,21.2,39.6633333333,20.2234567901,40.8850617284,20.1944444444,41.9166666667,2.03,95.7266666667,17.72,36.45,18.75,45.0122222222,17.39,42.1266666667,2.3166666667,756.7166666667,93.8333333333,6.6666666667,54.6666666667,1.4,20.4138879897,20.4138879897 -90,0,22.39,37.79,21.89,37.1022222222,21.2,39.59,20.2265432099,40.9049382716,20.2,41.83,2.09,95.8,17.7,36.4333333333,19.0544444444,45.1572222222,17.39,41.9666666667,2.4333333333,756.8333333333,93.6666666667,6.3333333333,48.3333333333,1.5,42.1294951695,42.1294951695 -100,10,22.39,37.79,21.89,37.09,21.2,39.59,20.2296296296,40.9248148148,20.2,41.6975,2.1266666667,95.56,17.7,36.4071428571,19.2438888889,45.1572222222,17.39,41.8266666667,2.55,756.95,93.5,6,42,1.6,36.8652733974,36.8652733974 -110,0,22.39,37.79,21.89,37.09,21.2,39.59,20.2327160494,40.944691358,20.23375,41.645,2.26,95.5,17.7,36.45,19.3515384615,45.09,17.34,41.745,2.6666666667,757.0666666667,93.3333333333,5.6666666667,35.6666666667,1.7,17.4112200504,17.4112200504 -100,10,22.39,37.79,21.89,37.09,21.2,39.59,20.2358024691,40.9645679012,20.29,41.645,2.4333333333,95.4333333333,17.7,36.4875,19.49,45.19,17.3566666667,41.6633333333,2.7833333333,757.1833333333,93.1666666667,5.3333333333,29.3333333333,1.8,47.4469088716,47.4469088716 -80,0,22.39,37.79,21.89,37.09,21.29,39.7,20.2388888889,40.9844444444,20.29,41.59,2.4333333333,95.2933333333,17.7,36.4666666667,19.5,45.236,17.3566666667,41.59,2.9,757.3,93,5,23,1.9,32.3339594994,32.3339594994 -110,10,22.39,37.86,21.89,37.1541666667,21.29,39.7,20.2419753086,41.0043209877,20.37,41.518,2.4333333333,95.19,17.7,36.5,19.39,45.3083333333,17.29,41.5,2.8333333333,757.4166666667,93,5.3333333333,29.6666666667,1.8333333333,1.7638883437,1.7638883437 -260,10,22.39,38.6666666667,21.89,37.1214285714,21.29,39.7,20.2450617284,41.0241975309,20.34,41.5,2.5,95.19,17.7,36.5,19.39,45.3977777778,17.29,41.4333333333,2.7666666667,757.5333333333,93,5.6666666667,36.3333333333,1.7666666667,29.8224227852,29.8224227852 -350,10,22.4633333333,39.9566666667,21.89,37.1855555556,21.29,39.9566666667,20.2481481481,41.0440740741,20.39,41.576875,2.4,95,17.6714285714,36.4714285714,19.39,45.4909090909,17.29,41.3633333333,2.7,757.65,93,6,43,1.7,20.7659000764,20.7659000764 -500,10,22.39,42.03,21.89,37.46,21.29,40.6966666667,20.2512345679,41.0639506173,20.39,42.1783333333,2.4,95,17.7,36.5,19.4266666667,45.6116666667,17.29,41.29,2.6333333333,757.7666666667,93,6.3333333333,49.6666666667,1.6333333333,3.8448519073,3.8448519073 -370,10,22.4266666667,43.39,21.956,37.92,21.3233333333,41.6966666667,20.2543209877,41.0838271605,20.410625,42.9975,2.3633333333,94.9666666667,17.6916666667,36.4916666667,19.4528571429,45.6528571429,17.29,41.26,2.5666666667,757.8833333333,93,6.6666666667,56.3333333333,1.5666666667,26.4024439617,26.4024439617 -330,20,22.5,45.6633333333,22,38.395,21.39,42.83,20.2574074074,41.1037037037,20.39,43.6,2.29,94.9,17.64,36.44,19.4266666667,45.59,17.29,41.2,2.5,758,93,7,63,1.5,48.1166654266,48.1166654266 -100,10,22.5,47.1933333333,22,39.0966666667,21.4266666667,44.1666666667,20.2604938272,41.1235802469,20.39,44.16,2.29,94.9,17.6,36.4,19.5,45.59,17.29,41.1633333333,2.5,758.1333333333,93.6666666667,6.6666666667,63.1666666667,1.6,35.4370025569,35.4370025569 -110,20,22.5666666667,46.86,22,39.43,21.4266666667,44.2266666667,20.2635802469,41.1434567901,20.5,45.09,2.14,94.7425,17.6666666667,36.4666666667,19.5333333333,45.4,17.29,41.1633333333,2.5,758.2666666667,94.3333333333,6.3333333333,63.3333333333,1.7,27.6737851789,27.6737851789 -140,20,22.6,44.8933333333,22,39.5266666667,21.39,43.7233333333,20.2666666667,41.1633333333,20.5,45.09,2.1633333333,94.6233333333,17.6633333333,37.8633333333,19.5333333333,45.1266666667,17.29,41.2,2.5,758.4,95,6,63.5,1.8,12.14783045,12.14783045 -310,30,22.6,43.8933333333,22,39.1933333333,21.3233333333,43.53,20.5333333333,43.2233333333,20.5,44.5333333333,2.23,94.6233333333,18.1233333333,41.3966666667,19.6333333333,45.1566666667,17.29,41.1266666667,2.5,758.5333333333,95.6666666667,5.6666666667,63.6666666667,1.9,38.9021264506,38.9021264506 -330,20,22.6,42.4966666667,22,39.06,21.29,43.26,20.3266666667,43.3333333333,20.4266666667,44.0666666667,2.29,94.69,18.5333333333,41.4633333333,19.7225,45.195,17.29,41.09,2.5,758.6666666667,96.3333333333,5.3333333333,63.8333333333,2,32.597047172,32.597047172 -190,20,22.6,41.7566666667,22,39,21.29,43.0666666667,20.1333333333,43.2,20.7,52.6633333333,2.3266666667,94.69,18.7266666667,41.4633333333,19.8566666667,45.09,17.29,41.03,2.5,758.8,97,5,64,2.1,41.5122851962,41.5122851962 -160,20,22.6,41.05,22,38.9333333333,21.2,42.6633333333,20.0666666667,43,20.8933333333,68.5966666667,2.4,94.69,18.76,40.9666666667,20.0333333333,45.03,17.29,41.2,2.45,758.8833333333,97,4.8333333333,64,2.0333333333,32.4275473715,32.4275473715 -160,30,22.7,40.8633333333,22,39.1333333333,21.2,42.4633333333,20.0666666667,43.46,20.7,59.6,2.3633333333,94.69,18.7,40.7666666667,20.1,45.09,17.29,41.2,2.4,758.9666666667,97,4.6666666667,64,1.9666666667,23.9917897154,23.9917897154 -480,10,22.76,40.73,22.1,39.5,21.23,42.29,20.1,43.4333333333,20.7,52.9933333333,2.29,94.6233333333,18.7,40.395,20.1333333333,45.06,17.29,41.2,2.35,759.05,97,4.5,64,1.9,24.7532052803,24.7532052803 -280,20,22.89,40.59,22.1975,39.5225,21.29,42.23,20.2933333333,43.5,20.79,49.39,2.26,94.56,18.79,40.06,20.2,44.9333333333,17.29,41.1266666667,2.3,759.1333333333,97,4.3333333333,64,1.8333333333,18.9936295734,18.9936295734 -130,20,22.9633333333,40.4633333333,22.29,39.59,21.29,42.09,20.7633333333,42.9966666667,20.79,47.9966666667,1.8666666667,94.4333333333,18.8566666667,40,20.29,44.8333333333,17.245,41.045,2.25,759.2166666667,97,4.1666666667,64,1.7666666667,22.5242718589,22.5242718589 -150,20,23.0333333333,40.2233333333,22.39,39.4666666667,21.29,42.09,20.89,42.33,20.89,46.8933333333,1.3566666667,94.1566666667,18.9266666667,39.8333333333,20.3566666667,44.6266666667,17.2,40.9,2.2,759.3,97,4,64,1.7,40.7125875237,40.7125875237 -140,20,23.1,39.9633333333,22.39,39.3266666667,21.29,42.09,20.8566666667,42.2,20.89,46.2266666667,1.23,94.03,19,39.5666666667,20.3233333333,44.4666666667,17.2,40.8266666667,2.2,759.4166666667,96.8333333333,4,57.1666666667,1.6833333333,46.4388612891,46.4388612891 -130,20,23.2,39.7233333333,22.39,39.1633333333,21.29,42.03,20.79,42.26,20.89,45.49,1.29,94.1566666667,19,39.36,20.39,44.3266666667,17.2,40.76,2.2,759.5333333333,96.6666666667,4,50.3333333333,1.6666666667,7.374052261,7.374052261 -130,20,23.2,39.53,22.39,39.03,21.29,41.95,20.79,42.53,20.89,45.03,1.3566666667,94.1566666667,19.0666666667,39.5,20.5,44.26,17.2,40.6266666667,2.2,759.65,96.5,4,43.5,1.65,37.4910832499,37.4910832499 -340,20,23.2,39.3333333333,22.5,38.9666666667,21.29,41.9,20.79,42.6633333333,20.89,44.5266666667,1.7,94.3333333333,19.1,39.26,20.5,44.2,17.2,40.56,2.2,759.7666666667,96.3333333333,4,36.6666666667,1.6333333333,48.7828674843,48.7828674843 -490,10,23.2,39.1266666667,22.4266666667,38.8266666667,21.23,41.8266666667,20.8566666667,42.9,20.9725,44.2225,1.9666666667,94.4,19.1,39.1266666667,20.6,44.2,17.2,40.5,2.2,759.8833333333,96.1666666667,4,29.8333333333,1.6166666667,48.7396231736,48.7396231736 -230,10,23.2,39.06,22.39,38.76,21.2,41.79,20.79,42.9,21.4,66.03,2.145,94.5,19.0333333333,38.8266666667,20.6,44.2,17.2,40.5,2.2,760,96,4,23,1.6,17.5312785082,17.5312785082 -360,10,23.2,38.9333333333,22.4633333333,38.76,21.26,41.79,20.76,42.7233333333,21.9966666667,80.6266666667,2.4,94.59,19.1,38.9666666667,20.7,44.29,17.2,40.5,2.2833333333,760.1,95.8333333333,3.8333333333,25.8333333333,1.6666666667,19.6974528488,19.6974528488 -410,10,23.26,39,22.5,38.43,21.26,41.79,20.76,42.7966666667,21.5966666667,77.1,2.4,94.59,19.1,39.2266666667,20.76,44.3633333333,17.29,41.4,2.3666666667,760.2,95.6666666667,3.6666666667,28.6666666667,1.7333333333,47.5475504529,47.5475504529 -150,0,23.26,39.1933333333,22.4266666667,38.1566666667,21.2,41.79,21.145,43.19,21.26,75.69,2.4,94.5,19.1,39.6333333333,20.79,44.73,17.3566666667,43.1333333333,2.45,760.3,95.5,3.5,31.5,1.8,5.3324159817,5.3324159817 -80,10,23.2,39.23,22.39,38.2,21.2,41.8633333333,21.7,43.1,21.1333333333,75.43,2.4,94.5,19,39.8,20.79,44.8633333333,17.5333333333,44.3666666667,2.5333333333,760.4,95.3333333333,3.3333333333,34.3333333333,1.8666666667,46.7380058253,46.7380058253 -80,10,23.2,39.3633333333,22.39,38.26,21.1333333333,41.8633333333,21.7,42.9,20.8566666667,74.0666666667,2.4,94.5,19,40.06,20.79,45.0966666667,17.6,44.96,2.6166666667,760.5,95.1666666667,3.1666666667,37.1666666667,1.9333333333,17.3081049928,17.3081049928 -70,10,23.2,39.5,22.39,38.3266666667,21.1,41.9,21.5666666667,42.9333333333,20.73,72.7333333333,2.3266666667,94.56,19,40.23,20.79,45.49,17.6,45.5,2.7,760.6,95,3,40,2,26.6530302935,26.6530302935 -70,10,23.2,39.56,22.39,38.4,21.1,41.9666666667,21.5,43.1333333333,20.6666666667,70.59,2.29,94.5,18.9266666667,40.29,20.745,46.145,17.6666666667,45.9,2.65,760.6833333333,95.3333333333,3,38,1.9833333333,26.9397149677,26.9397149677 -70,0,23.1,39.6266666667,22.3233333333,38.5,21.1,41.9333333333,21.39,43.3266666667,20.6,68.59,2.29,94.5,18.89,40.29,20.7,46.6566666667,17.73,46.23,2.6,760.7666666667,95.6666666667,3,36,1.9666666667,35.735897487,35.735897487 -60,10,23.1,39.7,22.3233333333,38.56,21.1,42,21.39,43.4666666667,20.4633333333,65.8666666667,2.29,94.53,18.89,40.29,20.7,46.93,17.79,46.43,2.55,760.85,96,3,34,1.95,20.2895250055,20.2895250055 -60,10,23.1,39.76,22.26,38.6633333333,21.0666666667,41.9,21.29,43.6266666667,20.39,63.8666666667,2.23,94.59,18.79,40.245,20.6,47.0666666667,17.79,46.6266666667,2.5,760.9333333333,96.3333333333,3,32,1.9333333333,7.6394070638,7.6394070638 -50,10,23,39.8,22.2,38.6633333333,21.0666666667,41.9666666667,21.23,43.76,20.3566666667,61.9266666667,2,94.4,18.79,40.29,20.6,47.26,17.865,46.875,2.45,761.0166666667,96.6666666667,3,30,1.9166666667,17.0116380672,17.0116380672 -50,0,23,40,22.15,38.79,21,41.9,21.2,43.79,20.29,60.5933333333,2,94.4666666667,18.79,40.3633333333,20.6,47.4333333333,17.89,47.06,2.4,761.1,97,3,28,1.9,31.3327423763,31.3327423763 -50,0,22.89,40.1266666667,22.1,38.9333333333,21,41.9,21.1333333333,43.79,20.2,59.4966666667,2,94.4,18.79,40.4,20.6,47.56,17.89,47.06,2.375,761.1583333333,96.8333333333,3.1666666667,29,1.8583333333,2.8686339152,2.8686339152 -30,0,22.89,40.2,22.0333333333,39,21,41.9,21,43.7,20.2,58.83,2.06,94.4666666667,18.79,40.4666666667,20.6,47.8266666667,17.89,47,2.35,761.2166666667,96.6666666667,3.3333333333,30,1.8166666667,42.58338199,42.58338199 -20,0,22.79,40.09,22,39.1266666667,21,41.9,20.9266666667,43.7,20.0666666667,58.0333333333,2.09,94.5,18.7,40.53,20.6,47.9666666667,17.89,47,2.325,761.275,96.5,3.5,31,1.775,10.6322672917,10.6322672917 -40,0,22.79,40.1633333333,22,39.26,21,41.9,20.76,43.7,20,57.4266666667,2.09,94.5225,18.7,40.6633333333,20.5,48.1266666667,17.89,47,2.3,761.3333333333,96.3333333333,3.6666666667,32,1.7333333333,26.9731013919,26.9731013919 -50,0,22.76,40.23,21.89,39.29,20.89,41.9333333333,20.7,43.7,20,56.7666666667,2.09,94.59,18.7,40.7666666667,20.5,48.2,17.89,47,2.275,761.3916666667,96.1666666667,3.8333333333,33,1.6916666667,6.8243793095,6.8243793095 -50,0,22.7,40.29,21.89,39.3633333333,20.89,42,20.6666666667,43.6633333333,20,56.3,2.1266666667,94.59,18.7,40.9666666667,20.39,48.06,17.89,47,2.25,761.45,96,4,34,1.65,16.2432570243,16.2432570243 -50,0,22.6666666667,40.29,21.8566666667,39.4,20.89,42.09,20.6,43.53,19.89,55.645,2.1266666667,94.53,18.7,41.09,20.39,48.06,17.89,47,2.225,761.5083333333,95.8333333333,4.1666666667,35,1.6083333333,31.0538146878,31.0538146878 -60,0,22.6,40.29,21.79,39.4666666667,20.89,42.03,20.5,43.5,19.79,54.99,2.09,94.56,18.7,41.2233333333,20.29,48.2666666667,17.89,47.06,2.2,761.5666666667,95.6666666667,4.3333333333,36,1.5666666667,12.7991124289,12.7991124289 -50,0,22.6,40.29,21.7,39.53,20.89,42.09,20.4266666667,43.4333333333,19.79,54.6566666667,2.09,94.5,18.7,41.3266666667,20.29,48.5266666667,17.89,47,2.175,761.625,95.5,4.5,37,1.525,31.7437899415,31.7437899415 -60,0,22.6,40.29,21.7,39.59,20.89,42.03,20.3566666667,43.5,19.76,54.2966666667,2.2,94.5,18.7,41.4,20.29,48.59,17.89,47,2.15,761.6833333333,95.3333333333,4.6666666667,38,1.4833333333,24.2836053483,24.2836053483 -50,0,22.5,40.29,21.6666666667,39.56,20.8566666667,42.06,20.29,43.5,19.7,53.9633333333,2.2,94.5,18.7,41.4333333333,20.23,48.6633333333,17.89,47.03,2.125,761.7416666667,95.1666666667,4.8333333333,39,1.4416666667,46.908845834,46.908845834 -40,0,22.5,40.29,21.6,39.56,20.79,41.9333333333,20.23,43.4333333333,19.6666666667,53.6,2.09,94.5,18.7,41.6333333333,20.2,48.89,17.89,47.09,2.1,761.8,95,5,40,1.4,42.8750768537,42.8750768537 -50,0,22.39,40.2,21.5,39.59,20.79,41.8266666667,20.2,43.4,19.6,53.3266666667,2.09,94.5,18.7,41.8266666667,20.2,49.2966666667,17.89,47.09,2,761.8666666667,95,4.5,40,1.3,18.5441768845,18.5441768845 -50,0,22.39,40.2,21.5,39.59,20.79,41.8266666667,20.2,43.4,19.6,53.06,1.9666666667,94.4,18.7,41.8266666667,20.2,49.645,17.89,47.09,1.9,761.9333333333,95,4,40,1.2,15.7100914977,15.7100914977 -50,0,22.3566666667,40.2,21.4633333333,39.56,20.7,41.79,20.1,43.4,19.6,52.9333333333,1.8266666667,94.3333333333,18.7,41.7,20.2,49.7,17.89,47.09,1.8,762,95,3.5,40,1.1,41.4267179905,41.4267179905 -50,0,22.29,40.2,21.39,39.5,20.7,41.8633333333,20.1,43.4,19.5666666667,52.6633333333,1.6666666667,94.4,18.7,41.76,20.2,49.7,17.89,47.09,1.7,762.0666666667,95,3,40,1,22.592075658,22.592075658 -40,0,22.29,40.2,21.3566666667,39.56,20.7,41.9,20,43.29,19.5,52.53,1.46,94.4,18.7,41.645,20.2,49.7,17.89,47.2,1.6,762.1333333333,95,2.5,40,0.9,15.793920611,15.793920611 -30,0,22.2,40.09,21.29,39.56,20.7,41.9,20,43.29,19.5,52.3633333333,1.1333333333,94.4666666667,18.7,41.6266666667,20.1333333333,49.7,17.89,47.2,1.5,762.2,95,2,40,0.8,4.890426877,4.890426877 -30,0,22.2,40.09,21.29,39.59,20.6666666667,41.76,19.9633333333,43.29,19.4266666667,52.1566666667,0.9333333333,94.4,18.7,41.7,20.1,49.7,17.89,47.2,1.35,762.2166666667,95.3333333333,2,37.1666666667,0.7,3.2450268278,3.2450268278 -40,0,22.1666666667,40.09,21.2675,39.5675,20.6,41.7,19.89,43.29,19.39,51.9666666667,0.75,94.45,18.7,41.7,20.1,49.7,17.89,47.29,1.2,762.2333333333,95.6666666667,2,34.3333333333,0.6,34.4728683238,34.4728683238 -50,0,22.1,40.09,21.2,39.56,20.5666666667,41.7,19.8566666667,43.26,19.39,51.8266666667,0.5333333333,94.53,18.7,41.7,20.1,49.6633333333,17.89,47.29,1.05,762.25,96,2,31.5,0.5,33.4025301971,33.4025301971 -50,0,22.0666666667,40.06,21.1,39.59,20.5,41.7,19.79,43.2,19.3566666667,51.76,0.2666666667,94.6566666667,18.7,41.7,20.1,49.53,17.89,47.29,0.9,762.2666666667,96.3333333333,2,28.6666666667,0.4,45.2273323899,45.2273323899 -50,0,22,40,21.1,39.59,20.5,41.79,19.79,43.2,19.29,51.6266666667,0.1333333333,94.7266666667,18.7,41.7,20.0666666667,49.43,17.89,47.23,0.75,762.2833333333,96.6666666667,2,25.8333333333,0.3,15.0846635224,15.0846635224 -50,0,21.9633333333,40,21.0666666667,39.56,20.5,41.79,19.79,43.2,19.29,51.56,-0.2666666667,94.7266666667,18.7,41.6266666667,20.0666666667,49.29,17.89,47.26,0.6,762.3,97,2,23,0.2,46.6404352337,46.6404352337 -60,0,21.89,40,21,39.5,20.5,41.79,19.7,43.2,19.29,51.4333333333,-0.5333333333,94.8,18.7,41.76,20,49.1633333333,17.9633333333,47.2,0.6,762.35,96.8333333333,2.1666666667,22.5,0.1666666667,10.0991508691,10.0991508691 -50,0,21.89,40,21,39.5,20.5,41.76,19.7,43.2,19.2,51.29,-0.6666666667,94.8666666667,18.7,41.73,20,49.03,17.89,47.23,0.6,762.4,96.6666666667,2.3333333333,22,0.1333333333,39.6189377992,39.6189377992 -50,0,21.89,40,20.9266666667,39.5,20.5,41.7,19.7,43.1633333333,19.2,51.2225,-0.7666666667,94.8,18.7,41.73,19.9633333333,49,17.89,47.29,0.6,762.45,96.5,2.5,21.5,0.1,11.2315254402,11.2315254402 -40,0,21.79,39.9,20.89,39.53,20.5,41.7,19.7,43.09,19.2,51.2,-0.5,94.8666666667,18.7,41.79,19.89,49,17.89,47.29,0.6,762.5,96.3333333333,2.6666666667,21,0.0666666667,1.5378285549,1.5378285549 -50,0,21.79,39.9,20.89,39.59,20.5,41.7,19.6,43,19.1333333333,51.09,-0.3666666667,95,18.7,41.79,19.89,49,17.89,47.29,0.6,762.55,96.1666666667,2.8333333333,20.5,0.0333333333,43.1017020601,43.1017020601 -50,0,21.76,39.9,20.79,39.5,20.5,41.8266666667,19.575,43,19.2,51.03,-0.5,95,18.7,41.79,19.89,49,17.89,47.29,0.6,762.6,96,3,20,0,34.2553752591,34.2553752591 -50,0,21.7,39.9,20.79,39.5,20.5,41.9,19.5666666667,43,19.1,51,-0.6333333333,94.9,18.7,41.73,19.89,49,17.89,47.29,0.5833333333,762.55,96,3,20,-0.0166666667,47.1037454787,47.1037454787 -50,0,21.7,39.9,20.79,39.5,20.5,41.8266666667,19.5666666667,43,19.1,50.9333333333,-0.7,94.9,18.6,41.7,19.89,49.06,17.9266666667,47.23,0.5666666667,762.5,96,3,20,-0.0333333333,33.7926880224,33.7926880224 -30,0,21.6333333333,39.8266666667,20.73,39.5,20.5,41.9666666667,19.5,43,19.1,50.9,-0.5333333333,94.9,18.6666666667,41.76,19.89,49.2,17.9266666667,47.29,0.55,762.45,96,3,20,-0.05,42.1560074203,42.1560074203 -30,0,21.6,39.9,20.7,39.5,20.5666666667,42,19.5,42.9,19.1,50.8266666667,-0.3333333333,94.9666666667,18.6666666667,41.79,19.865,49.095,17.89,47.29,0.5333333333,762.4,96,3,20,-0.0666666667,18.0947092478,18.0947092478 -30,0,21.6,39.9,20.7,39.56,20.5666666667,42,19.5,42.9,19.0666666667,50.8333333333,-0.2,94.9,18.6666666667,41.79,19.8566666667,49,17.89,47.29,0.5166666667,762.35,96,3,20,-0.0833333333,19.61829426,19.61829426 -50,0,21.5,39.9,20.6666666667,39.5,20.5666666667,42,19.39,42.8633333333,19,50.7,-0.125,94.975,18.6,41.7,19.79,49.03,17.89,47.29,0.5,762.3,96,3,20,-0.1,28.3843698795,28.3843698795 -50,0,21.5,39.925,20.6,39.56,20.5,42,19.39,42.79,19,50.7,0.0333333333,95,18.6,41.79,19.79,49.09,17.89,47.29,0.5833333333,762.3166666667,96,3,27.1666666667,-0.0166666667,4.7576066805,4.7576066805 -40,0,21.4266666667,39.9333333333,20.6,39.59,20.5,42.2,19.39,42.79,19,50.7,0.2333333333,94.9,18.6,41.79,19.79,49.09,17.89,47.29,0.6666666667,762.3333333333,96,3,34.3333333333,0.0666666667,9.6892035799,9.6892035799 -60,0,21.39,39.9,20.575,39.6175,20.5666666667,42.2,19.39,42.79,19,50.59,0.3666666667,94.9,18.6,41.79,19.79,49.09,17.89,47.29,0.75,762.35,96,3,41.5,0.15,29.4033196522,29.4033196522 -60,0,21.39,39.9,20.5,39.7,20.5333333333,42.2,19.29,42.79,19,50.59,0.5,95.03,18.6,41.79,19.79,49.09,17.89,47.29,0.8333333333,762.3666666667,96,3,48.6666666667,0.2333333333,37.5752084074,37.5752084074 -50,0,21.3566666667,39.9333333333,20.5,39.7,20.6,42.2,19.29,42.79,18.89,50.59,0.5666666667,95.03,18.6,41.8266666667,19.79,49.09,17.89,47.29,0.9166666667,762.3833333333,96,3,55.8333333333,0.3166666667,43.3619393618,43.3619393618 -50,0,21.29,40,20.5,39.76,20.6,42.2,19.29,42.79,18.89,50.59,0.6333333333,95.03,18.6,41.9666666667,19.76,49.1266666667,17.89,47.29,1,762.4,96,3,63,0.4,18.5897868592,18.5897868592 -50,0,21.29,40.03,20.4633333333,39.76,20.7,42.29,19.29,42.79,18.89,50.59,0.7666666667,95.1566666667,18.6,42.2,19.7,49.26,17.89,47.3266666667,1.0333333333,762.4166666667,96,3,63,0.4333333333,39.9407274788,39.9407274788 -220,0,21.23,40.03,20.39,39.7,20.6333333333,42.23,19.26,42.76,18.89,50.59,0.8333333333,95.19,18.6,42.2,19.76,49.4333333333,17.89,47.4,1.0666666667,762.4333333333,96,3,63,0.4666666667,2.9157196288,2.9157196288 -390,10,21.2,39.8633333333,20.3566666667,39.56,20.6666666667,42.26,19.2,42.76,18.89,50.56,0.9,95.19,18.6,42.2,19.76,49.56,17.89,47.4,1.1,762.45,96,3,63,0.5,31.1717854696,31.1717854696 -380,10,21.2,39.79,20.29,39.5,20.6,42.2,19.5966666667,43.03,18.84,49.77,0.8333333333,95.19,18.6,42.2,19.79,49.5,17.89,47.3266666667,1.1333333333,762.4666666667,96,3,63,0.5333333333,17.832070333,17.832070333 -390,10,21.2,39.9633333333,20.315,39.55,20.6333333333,42.23,20.0633333333,43.03,18.9633333333,48.4666666667,0.9666666667,95.1233333333,18.6,42.1633333333,19.73,49.5,17.89,47.29,1.1666666667,762.4833333333,96,3,63,0.5666666667,29.3963966193,29.3963966193 -390,10,21.2,40.2233333333,20.39,39.76,20.7,42.23,20.545,42.95,19.1333333333,47.5633333333,1.1333333333,95.19,18.6,42.09,19.7,49.4666666667,17.89,47.23,1.2,762.5,96,3,63,0.6,45.6892321003,45.6892321003 -240,10,21.29,40.53,20.4266666667,40.0666666667,20.7,42.1633333333,20.9933333333,42.8633333333,19.2,47.0966666667,1.2,95.19,18.6,42,19.76,49.4,17.89,47.1633333333,1.2166666667,762.55,96.1666666667,3,63,0.6333333333,9.972109145,9.972109145 -40,10,21.3566666667,40.6633333333,20.5666666667,40.26,20.7,42.09,21.26,42.6566666667,19.3233333333,46.6933333333,1.1,95.19,18.6,42,19.7,49.4333333333,17.89,47.09,1.2333333333,762.6,96.3333333333,3,63,0.6666666667,18.4541811934,18.4541811934 -70,10,21.5,40.7,20.6333333333,40.3266666667,20.79,42,21.3566666667,42.5,19.4633333333,46.5,1.1666666667,95.19,18.6,42.2666666667,19.76,49.5,17.89,47,1.25,762.65,96.5,3,63,0.7,33.5704163881,33.5704163881 -50,0,21.5,41.0333333333,20.7,40.4666666667,20.73,42,21.23,42.5,19.5333333333,46.3633333333,1.15,95.245,18.6,42.4666666667,19.7,49.5,17.8233333333,46.86,1.2666666667,762.7,96.6666666667,3,63,0.7333333333,38.4072275367,38.4072275367 -50,0,21.5,41.8,20.79,40.59,20.6666666667,42.06,21.1666666667,42.6266666667,19.6,46.23,1.0333333333,95.19,18.6,42.5,19.7,49.56,17.89,46.8633333333,1.2833333333,762.75,96.8333333333,3,63,0.7666666667,26.1124138022,26.1124138022 -70,0,21.5666666667,42.5266666667,20.8566666667,40.7233333333,20.6666666667,42.2666666667,21.0333333333,42.6266666667,19.7,46.26,1.2266666667,95.2633333333,18.6,42.56,19.7,49.5,17.89,46.73,1.3,762.8,97,3,63,0.8,41.4037509006,41.4037509006 -60,0,21.6333333333,42.1,20.9266666667,40.79,20.7,42.4,20.89,42.6633333333,19.76,46.26,1.39,95.3,18.6,42.59,19.7,49.53,17.89,46.5266666667,1.4166666667,762.8833333333,96.6666666667,3,55.8333333333,0.8666666667,26.354809734,26.354809734 -70,0,21.7,41.6333333333,21,40.53,20.7,42.2666666667,20.8233333333,42.59,19.8233333333,45.9233333333,1.4633333333,95.3666666667,18.6,42.59,19.6333333333,49.4633333333,17.89,46.3725,1.5333333333,762.9666666667,96.3333333333,3,48.6666666667,0.9333333333,25.0877412502,25.0877412502 -60,0,21.745,40.995,21.0333333333,40.4,20.7,42.09,20.7,42.59,19.89,45.39,1.6333333333,95.4333333333,18.6,42.53,19.6333333333,49.4333333333,17.89,46.23,1.65,763.05,96,3,41.5,1,20.9986659931,20.9986659931 -50,0,21.79,40.79,21.1,40.4,20.7,42.09,20.7,42.59,20,45.0266666667,1.76,95.5,18.6,42.5,19.7,49.5,17.79,45.9666666667,1.7666666667,763.1333333333,95.6666666667,3,34.3333333333,1.0666666667,18.114914163,18.114914163 -60,0,21.8566666667,40.8633333333,21.15,40.4,20.79,42.09,20.6,42.59,20.0666666667,44.9,1.6666666667,95.4666666667,18.6,42.4333333333,19.6,49.5,17.79,45.8266666667,1.8833333333,763.2166666667,95.3333333333,3,27.1666666667,1.1333333333,6.1714455136,6.1714455136 -60,0,21.89,40.79,21.2,40.4,20.79,42.09,20.5333333333,42.59,20.1,44.79,1.5333333333,95.4666666667,18.6,42.6933333333,19.6,49.5,17.79,45.76,2,763.3,95,3,20,1.2,14.9080764735,14.9080764735 -80,0,21.89,40.79,21.26,40.4666666667,20.79,42.145,20.5,42.59,20.1,44.73,1.4266666667,95.4333333333,18.6,43.0266666667,19.6,49.5,17.79,45.7,2.25,763.3166666667,94.6666666667,3,20,1.4,13.8338244869,13.8338244869 -100,0,21.89,40.8266666667,21.29,40.4666666667,20.79,42.2,20.5,42.53,20.1333333333,44.7,1.5,95.5,18.7,43.23,19.6,49.5,17.79,45.56,2.5,763.3333333333,94.3333333333,3,20,1.6,38.5112677817,38.5112677817 -60,0,21.9633333333,41.1,21.3566666667,40.4,20.79,42.2,20.5,42.4666666667,20.2,44.7,1.8,95.59,18.7,43.23,19.6,49.6266666667,17.8566666667,45.5,2.75,763.35,94,3,20,1.8,38.9090651064,38.9090651064 -70,0,22,41.3333333333,21.39,40.3266666667,20.79,42.2666666667,20.5,42.3266666667,20.2,44.7,2,95.6566666667,18.7,42.9666666667,19.6,49.76,17.8233333333,45.29,3,763.3666666667,93.6666666667,3,20,2,7.1893640328,7.1893640328 -60,0,22,41.1266666667,21.39,40.4666666667,20.8566666667,42.4666666667,20.5,42.3266666667,20.2,44.7,2.03,95.7266666667,18.7,42.9666666667,19.6333333333,49.8266666667,17.89,45.29,3.25,763.3833333333,93.3333333333,3,20,2.2,25.7763075293,25.7763075293 -60,0,22.0333333333,41.03,21.5,40.56,20.9266666667,42.5,20.5,42.3266666667,20.2,44.59,2.2233333333,95.8666666667,18.8233333333,43.03,19.7,49.9666666667,17.89,45.26,3.5,763.4,93,3,20,2.4,29.8620242742,29.8620242742 -50,0,22.1,41.03,21.5,40.5,21,42.5,20.5666666667,42.26,20.29,44.6633333333,2.26,95.8666666667,18.89,43.09,19.7,49.9333333333,17.89,45.2,3.7,763.4833333333,92,3,20.5,2.45,25.2921512001,25.2921512001 -50,0,22.1,41,21.5,40.5,21.0333333333,42.53,20.5,42.245,20.23,44.53,2.2675,95.875,19,43.1633333333,19.7,50,17.89,45.09,3.9,763.5666666667,91,3,21,2.5,19.3049816531,19.3049816531 -40,0,22.1666666667,41.06,21.5,40.4333333333,21.0333333333,42.53,20.5,42.2,20.29,44.56,2.43,95.9666666667,19.0666666667,43.09,19.73,50.1266666667,17.89,45.09,4.1,763.65,90,3,21.5,2.55,21.3049050421,21.3049050421 -50,0,22.2,41.09,21.6,40.4,21,42.5,20.5,42.1633333333,20.29,44.5,2.6566666667,96.03,19.2,43.2666666667,19.79,50.2,17.89,45.09,4.3,763.7333333333,89,3,22,2.6,0.5879867356,0.5879867356 -70,0,22.2,41.1633333333,21.5333333333,40.4666666667,21,42.56,20.5,42.09,20.29,44.5,2.8633333333,96.1566666667,19.2,43.4,19.79,50.23,17.89,45.09,4.5,763.8166666667,88,3,22.5,2.65,45.9665885195,45.9665885195 -60,0,22.1666666667,41.23,21.6,40.5,21,42.59,20.5,42.1633333333,20.29,44.5,3.1266666667,96.19,19.29,43.4,19.8566666667,50.3633333333,17.89,45.1266666667,4.7,763.9,87,3,23,2.7,3.9719846565,3.9719846565 -60,0,22.1666666667,41.29,21.6,40.5,21.0666666667,42.6633333333,20.5,42.09,20.26,44.4666666667,3.26,96.2633333333,19.3566666667,43.4,19.89,50.8,17.9633333333,45.1266666667,4.9,763.8666666667,83.5,3.3333333333,23.6666666667,2.25,25.3687127377,25.3687127377 -80,0,22.1,41.29,21.5666666667,40.5,21.1,42.7,20.4633333333,41.9666666667,20.2,44.4,3.4333333333,96.2266666667,19.445,43.4,19.9266666667,51.0966666667,17.9266666667,45,5.1,763.8333333333,80,3.6666666667,24.3333333333,1.8,41.0085808486,41.0085808486 -80,0,22.1,41.29,21.5,40.5,21.1,42.6266666667,20.4633333333,41.9,20.26,44.56,3.56,96.2266666667,19.6,43.3633333333,20.0666666667,51.23,18,44.8975,5.3,763.8,76.5,4,25,1.35,29.9197709071,29.9197709071 -80,0,22.1,41.29,21.5,40.53,21.1,42.59,20.39,41.8633333333,20.2,44.56,3.8266666667,96.19,19.6666666667,43.49,20.1333333333,50.9966666667,18,44.79,5.5,763.7666666667,73,4.3333333333,25.6666666667,0.9,21.207676304,21.207676304 -90,0,22.075,40.045,21.3,38.9233333333,21.0333333333,41.7233333333,20.1966666667,40.53,21.3333333333,79.7933333333,4.0266666667,96.2633333333,19.89,42.9966666667,20.2,50.1966666667,18,44.6633333333,5.7,763.7333333333,69.5,4.6666666667,26.3333333333,0.45,27.9655135353,27.9655135353 -90,0,22,39.2233333333,21.1,37.95,20.89,40.99,20.1,40.2233333333,21.6666666667,79.7933333333,4.4966666667,96.2266666667,19.89,42.1966666667,20.23,49.3333333333,18,44.4633333333,5.9,763.7,66,5,27,0,39.4547236036,39.4547236036 -100,0,22,39.6266666667,21.1,38.1566666667,20.9633333333,40.79,20.1666666667,39.9633333333,21.03,80.2266666667,4.6233333333,96.2266666667,19.9633333333,41.2666666667,20.29,48.86,18.0333333333,44.2,5.8833333333,763.7,68.3333333333,4.8333333333,29.1666666667,0.4166666667,8.3857628983,8.3857628983 -80,0,22,39.5666666667,21.1,38.3633333333,21,40.8266666667,20.1666666667,40.09,20.8233333333,80.8333333333,4.3966666667,96.1266666667,19.89,40.8,20.39,48.6633333333,18.0333333333,44,5.8666666667,763.7,70.6666666667,4.6666666667,31.3333333333,0.8333333333,48.5225865035,48.5225865035 -90,0,21.9633333333,39.56,21.1,38.5,21,40.9,20.1666666667,40.3633333333,20.53,80.4,3.9966666667,96,19.89,40.3333333333,20.39,48.53,18,43.6633333333,5.85,763.7,73,4.5,33.5,1.25,23.6751549179,23.6751549179 -80,0,21.89,39.4333333333,21.1,38.5,21,40.9666666667,20.2,41.03,20.3233333333,78.5266666667,3.73,95.8666666667,19.89,40.2,20.4266666667,48.4,18,43.7966666667,5.8333333333,763.7,75.3333333333,4.3333333333,35.6666666667,1.6666666667,46.4871602948,46.4871602948 -80,0,21.89,39.53,21.1,38.59,21,40.9633333333,20.26,41.6233333333,20.26,74.7933333333,3.8633333333,95.8666666667,19.89,39.99,20.5,48.2666666667,18.0333333333,44.0666666667,5.8166666667,763.7,77.6666666667,4.1666666667,37.8333333333,2.0833333333,45.0469635194,45.0469635194 -80,0,21.89,39.59,21.1,38.6633333333,20.9266666667,41.1633333333,20.29,41.9,20.2,71.3933333333,4.16,96.03,19.9633333333,39.93,20.5,47.9233333333,18.1,44.2,5.8,763.7,80,4,40,2.5,37.5441093929,37.5441093929 -80,0,21.89,39.5,21.1,38.73,20.89,41.23,20.3566666667,41.9,20.1,67.795,4.4,96.115,20.1333333333,40.3266666667,20.5,47.39,18.1333333333,44.09,5.7,763.7,77.8333333333,4.5,40,1.9833333333,33.8284386205,33.8284386205 -90,0,21.89,39.5,21.1,38.79,20.89,41.29,20.39,41.9666666667,19.9633333333,65.6666666667,4.6266666667,96.19,20.26,40.4,20.6,46.8633333333,18.2,44.03,5.6,763.7,75.6666666667,5,40,1.4666666667,32.4006722891,32.4006722891 -70,0,21.89,39.4666666667,21,38.79,21,41.29,20.39,41.9,19.89,64.3333333333,4.9966666667,96.2266666667,20.5333333333,40.0266666667,20.6,46.4633333333,18.2,43.9,5.5,763.7,73.5,5.5,40,0.95,3.6623434862,3.6623434862 -50,0,21.89,39.4,21,38.79,21,41.29,20.39,41.9,19.79,62.1933333333,5.19,96.3666666667,20.6,39.6933333333,20.6,45.93,18.2,43.9,5.4,763.7,71.3333333333,6,40,0.4333333333,21.1779209203,21.1779209203 -60,10,21.89,39.4,20.9633333333,38.8633333333,20.9633333333,41.29,20.39,41.6633333333,19.79,60.7333333333,4.9233333333,96.33,20.6,39.43,20.5333333333,45.5966666667,18.2,43.9,5.3,763.7,69.1666666667,6.5,40,-0.0833333333,26.5412182081,26.5412182081 -70,10,21.89,39.4,20.9633333333,38.79,20.89,41.3633333333,20.39,41.59,19.7,59.5633333333,4.3966666667,96.1233333333,20.6,39.23,20.5,45.1,18.2,43.9,5.2,763.7,67,7,40,-0.6,47.1352381166,47.1352381166 -80,10,21.89,39.26,20.89,38.6633333333,20.8566666667,41.3633333333,20.29,41.3333333333,19.6333333333,58.8233333333,4.06,96.09,20.6,38.93,20.5,44.7666666667,18.1666666667,43.76,5.0166666667,763.8833333333,67.6666666667,6.5,44.1666666667,-0.6333333333,35.6112279696,35.6112279696 -70,10,21.8233333333,39.1266666667,20.89,38.53,20.79,41.3633333333,20.29,41.2,19.6,57.96,4,96.09,20.6,38.6566666667,20.39,44.2233333333,18.1,43.6266666667,4.8333333333,764.0666666667,68.3333333333,6,48.3333333333,-0.6666666667,36.2245287746,36.2245287746 -370,10,21.76,39.06,20.79,38.3633333333,20.79,41.4,20.29,41.09,19.5333333333,57.5,3.9666666667,96.1233333333,20.6,38.3333333333,20.34,43.8975,18.1,43.5266666667,4.65,764.25,69,5.5,52.5,-0.7,23.5064308858,23.5064308858 -410,20,21.7,38.9333333333,20.79,38.23,20.79,41.4,20.43,41.4233333333,19.5,56.8633333333,3.8266666667,96.19,20.575,37.975,20.3233333333,43.5666666667,18.1,43.2225,4.4666666667,764.4333333333,69.6666666667,5,56.6666666667,-0.7333333333,6.0141127906,6.0141127906 -250,10,21.7,38.93,20.76,38.2,20.79,41.29,20.9266666667,41.7,19.5,56.39,3.8266666667,96.19,20.5,37.5666666667,20.29,43.3633333333,18.1,43.03,4.2833333333,764.6166666667,70.3333333333,4.5,60.8333333333,-0.7666666667,39.154883544,39.154883544 -80,10,21.7,38.79,20.7,38.2,20.79,41.29,21.4666666667,41.5,19.39,55.7966666667,4.0266666667,96.2633333333,20.4633333333,37.2233333333,20.29,43.1566666667,18.1,42.9,4.1,764.8,71,4,65,-0.8,21.9078698545,21.9078698545 -70,10,21.65,38.69,20.7,38.1633333333,20.79,41.4,21.6666666667,40.9,19.39,55.39,4.3666666667,96.3333333333,20.39,37.03,20.2,42.8633333333,18.0333333333,42.8266666667,3.6833333333,764.7333333333,73.8333333333,3.8333333333,60.8333333333,-0.7,21.5727989911,21.5727989911 -70,0,21.6,38.56,20.7,38.0675,20.79,41.4,21.5333333333,40.5,19.3566666667,54.9,4.5,96.4,20.39,37.03,20.2,42.73,18.1,42.9,3.2666666667,764.6666666667,76.6666666667,3.6666666667,56.6666666667,-0.6,1.3748939498,1.3748939498 -80,10,21.6,38.5,20.7,37.9333333333,20.76,41.4,21.3566666667,40.2233333333,19.29,54.5,3.4933333333,96.23,20.39,37.03,20.2,42.56,18.1,42.9,2.85,764.6,79.5,3.5,52.5,-0.5,7.3280921439,7.3280921439 -70,20,21.5,38.4,20.6,37.79,20.7,41.425,21.29,40.09,19.29,54.1333333333,2.6933333333,95.9633333333,20.3566666667,36.8633333333,20.2,42.4333333333,18.1,42.7233333333,2.4333333333,764.5333333333,82.3333333333,3.3333333333,48.3333333333,-0.4,21.1297578993,21.1297578993 -80,20,21.5,38.3266666667,20.6,37.73,20.7,41.5,21.1666666667,39.9666666667,19.29,53.86,2.4,95.85,20.29,36.73,20.2,42.1633333333,18.0333333333,42.4633333333,2.0166666667,764.4666666667,85.1666666667,3.1666666667,44.1666666667,-0.3,38.3568587131,38.3568587131 -80,20,21.5,38.26,20.5666666667,37.7,20.7,41.4,21.1,39.8266666667,19.2,53.5266666667,2.3633333333,95.9,20.2,36.5,20.1333333333,42.09,18,42.2233333333,1.6,764.4,88,3,40,-0.2,0.2383222687,0.2383222687 -150,20,21.4266666667,38.1266666667,20.5,37.7,20.7,41.4666666667,21.0666666667,39.93,19.2,53.3266666667,2.3633333333,95.9,20.1333333333,36.5,20.1,42.33,18,42.03,1.75,764.45,86.3333333333,3.6666666667,40,-0.3333333333,30.179784575,30.179784575 -380,30,21.39,38.23,20.4633333333,37.59,20.7,41.3633333333,21,39.73,19.2,53.06,2.3633333333,95.9333333333,20.0666666667,36.5,20.1666666667,42.7233333333,18,41.8633333333,1.9,764.5,84.6666666667,4.3333333333,40,-0.4666666667,45.2788630268,45.2788630268 -290,30,21.39,38.43,20.4633333333,37.59,20.6333333333,41.1566666667,21,39.6933333333,19.175,52.8975,2.23,95.9333333333,20,36.5,20.2633333333,43.03,17.9266666667,41.73,2.05,764.55,83,5,40,-0.6,35.3330765967,35.3330765967 -270,20,21.39,38.56,20.39,37.59,20.6,41,20.9175,39.5225,19.1,52.73,2.4,96,19.9633333333,36.6266666667,20.39,43.09,17.89,41.56,2.2,764.6,81.3333333333,5.6666666667,40,-0.7333333333,13.1268579629,13.1268579629 -420,30,21.3233333333,38.56,20.39,37.59,20.6,40.86,20.89,39.53,19.1,52.56,2.2666666667,95.9333333333,19.89,36.76,20.5333333333,43.09,17.89,41.5,2.35,764.65,79.6666666667,6.3333333333,40,-0.8666666667,42.5538109732,42.5538109732 -280,20,21.29,38.5,20.4633333333,37.7,20.6,40.8333333333,20.89,39.26,19.0333333333,52.4333333333,2.0266666667,95.9666666667,19.89,36.8266666667,20.6,43.09,17.89,41.3633333333,2.5,764.7,78,7,40,-1,16.6802757536,16.6802757536 -300,20,21.29,38.56,20.4633333333,37.76,20.6,40.6266666667,20.89,39.2,19,52.3633333333,1.8266666667,95.9,19.89,36.9666666667,20.6333333333,43.03,17.89,41.23,2.4166666667,764.7666666667,79.5,6.3333333333,40,-0.8166666667,28.9142133784,28.9142133784 -350,30,21.4266666667,39,20.5333333333,37.76,20.6333333333,40.5,20.8566666667,39.1633333333,19,52.29,1.6333333333,95.9,19.79,37,20.76,42.9633333333,17.89,41.06,2.3333333333,764.8333333333,81,5.6666666667,40,-0.6333333333,21.6386565124,21.6386565124 -270,20,21.5666666667,39.06,20.679,37.745,20.7,40.4333333333,20.79,39.09,18.9528571429,52.2514285714,1.36,95.9666666667,19.79,37.009,20.8483333333,42.8725,17.89,41,2.25,764.9,82.5,5,40,-0.45,2.579766151,2.579766151 -560,20,21.73,40.9,20.79,37.79,20.7,40.4333333333,20.8233333333,39.2666666667,18.9633333333,52.1333333333,0.8,96.09,19.79,37.1214285714,20.89,42.76,17.79,40.76,2.1666666667,764.9666666667,84,4.3333333333,40,-0.2666666667,36.4901643945,36.4901643945 -1080,30,21.93,42.7666666667,21.04,38.08,20.7,40.6333333333,20.89,39.7333333333,18.89,51.8816666667,0.4666666667,96.09,19.79,37.1842857143,20.9266666667,42.6633333333,17.79,40.6725,2.0833333333,765.0333333333,85.5,3.6666666667,40,-0.0833333333,27.4085207144,27.4085207144 -750,20,22.1633333333,42.4,21.2864285714,38.39,20.86,41.7233333333,20.89,39.9266666667,18.89,51.8144444444,0.1666666667,96.09,19.716875,36.946875,20.9371428571,42.6214285714,17.79,40.59,2,765.1,87,3,40,0.1,37.5610992778,37.5610992778 -390,10,22.4966666667,43.1933333333,21.5594444444,38.9033333333,21.1933333333,43.7233333333,20.89,40.5333333333,18.89,51.96,0.0333333333,96.09,19.7,36.6272222222,20.89,42.3655555556,17.79,40.5,1.8,765.0666666667,87.8333333333,2.6666666667,40,0.0333333333,2.5385582354,2.5385582354 -350,10,22.8933333333,42.1933333333,21.7927777778,39.225,21.6966666667,45.1,20.89,40.2966666667,18.89,52.1105555556,0.1666666667,96.2266666667,19.6277777778,36.2561111111,20.8011111111,42.25,17.79,40.5,1.6,765.0333333333,88.6666666667,2.3333333333,40,-0.0333333333,35.74831062,35.74831062 -340,10,23.175,41.67,21.9572222222,39.2288888889,22.0966666667,45.56,20.8233333333,39.89,18.89,52.235,0.65,96.4,19.5944444444,35.9477777778,20.9266666667,42.4666666667,17.79,40.4,1.4,765,89.5,2,40,-0.1,14.8847228382,14.8847228382 -290,20,23.2,41.2266666667,22.0111111111,39.0872222222,22.4266666667,45.7,20.79,40.3966666667,18.89,52.3022222222,0.9666666667,96.4333333333,19.5666666667,35.8022222222,21.0444444444,42.4866666667,17.79,40.4,1.2,764.9666666667,90.3333333333,1.6666666667,40,-0.1666666667,14.1738604871,14.1738604871 -230,40,23.29,40.7966666667,22.09375,38.9425,22.6725,45.52,20.79,40.6566666667,18.89,52.31,1,96.3,19.580625,36.73875,21.1142857143,42.5,17.79,40.3633333333,1,764.9333333333,91.1666666667,1.3333333333,40,-0.2333333333,41.4938563714,41.4938563714 -120,30,23.29,40.39,22.1,38.6266666667,22.79,45,20.79,40.26,18.89,52.23,0.7333333333,96.2266666667,19.9175,38.1675,21.2,42.4666666667,17.79,40.29,0.8,764.9,92,1,40,-0.3,4.3197687599,4.3197687599 -110,40,23.29,39.93,22.1,38.4666666667,22.79,44.5,20.79,40.1266666667,18.89,52.1633333333,0.4333333333,96.3,20.1,37.9333333333,21.2,42.4666666667,17.79,40.26,0.7333333333,764.9333333333,92.6666666667,1.6666666667,35.6666666667,-0.2666666667,2.1328559495,2.1328559495 -100,40,23.29,39.73,22.1,38.4,22.73,44.1666666667,20.79,40.1666666667,18.89,52.1633333333,0.3666666667,96.3,20.1,37.76,21.1333333333,42.5,17.79,40.2,0.6666666667,764.9666666667,93.3333333333,2.3333333333,31.3333333333,-0.2333333333,17.4370404449,17.4370404449 -110,40,23.29,39.6633333333,22.15,38.29,22.5666666667,43.89,20.8566666667,40.8333333333,18.8566666667,52.06,0.4333333333,96.3666666667,20.1,37.645,21.1333333333,42.4333333333,17.79,40.1633333333,0.6,765,94,3,27,-0.2,27.1168005071,27.1168005071 -130,40,23.29,39.4633333333,22.1,38.2,22.5,43.9633333333,20.9266666667,41.1266666667,18.79,51.9333333333,0.5666666667,96.5,20.0666666667,37.2966666667,21.1666666667,42.4666666667,17.79,40.09,0.5333333333,765.0333333333,94.6666666667,3.6666666667,22.6666666667,-0.1666666667,30.4730431759,30.4730431759 -140,30,23.29,39.1266666667,22.1,38.2,22.4633333333,43.2966666667,21,41.17,18.89,51.9666666667,0.7666666667,96.53,20.0666666667,37.1633333333,21.1,42.4,17.79,40.09,0.4666666667,765.0666666667,95.3333333333,4.3333333333,18.3333333333,-0.1333333333,13.5686049238,13.5686049238 -110,30,23.29,39.0666666667,22.1,38.2,22.39,43.03,21,40.7666666667,18.8233333333,51.8266666667,0.9666666667,96.53,20.1,37,21.1,42.29,17.79,40.03,0.4,765.1,96,5,14,-0.1,10.2615465992,10.2615465992 -100,20,23.29,38.7,22.1666666667,38.2,22.29,42.56,21,40.3333333333,18.79,51.7,1,96.4,20.1,36.9333333333,21.1666666667,42.29,17.79,40,0.4166666667,765.05,96.3333333333,4.5,15.5,-0.05,19.0816074144,19.0816074144 -100,30,23.29,38.7,22.2,38.1725,22.29,42.4333333333,21.0666666667,40.46,18.79,51.7,1.0666666667,96.4,20.1,36.7233333333,21.2,42.26,17.73,40,0.4333333333,765,96.6666666667,4,17,0,23.6279057688,23.6279057688 -110,20,23.29,38.56,22.1333333333,38.03,22.2,42.1633333333,21.1,40.43,18.79,51.59,1.1,96.4,20.0333333333,36.59,21.2,42.1266666667,17.76,40,0.45,764.95,97,3.5,18.5,0.05,41.7758974945,41.7758974945 -110,20,23.23,38.4333333333,22.1,37.9666666667,22.1333333333,42.09,21.1,40.23,18.79,51.5225,1.1,96.4,20,36.7,21.2,42.06,17.76,40,0.4666666667,764.9,97.3333333333,3,20,0.1,6.0735748149,6.0735748149 -190,20,23.26,38.3633333333,22.1,37.9,22.0666666667,41.9666666667,21.1,40.06,18.79,51.5,1.0333333333,96.3666666667,20,36.7,21.2,42,17.7,39.9,0.4833333333,764.85,97.6666666667,2.5,21.5,0.15,33.7904062471,33.7904062471 -450,20,23.2,38.29,22.1,37.8633333333,22,41.8266666667,21.1,40.06,18.79,51.3633333333,1.1,96.5,19.89,36.6633333333,21.23,41.9333333333,17.745,39.9,0.5,764.8,98,2,23,0.2,24.8342609964,24.8342609964 -210,20,23.1666666667,38.1633333333,22.1,37.79,21.89,41.7,21.3,40.53,18.79,51.29,1.245,96.5,19.89,36.6633333333,21.29,42,17.7,39.9,0.5833333333,764.75,97.1666666667,2.1666666667,24,0.1666666667,45.1118873898,45.1118873898 -100,30,23.1,38.09,22.1,37.79,21.89,41.7,21.6333333333,40.53,18.7,51.1633333333,1.26,96.4666666667,19.8566666667,36.6633333333,21.3233333333,41.9666666667,17.7,39.9,0.6666666667,764.7,96.3333333333,2.3333333333,25,0.1333333333,27.5631983415,27.5631983415 -90,20,23.0666666667,38.1266666667,22.0333333333,37.73,21.79,41.6566666667,21.7,40.29,18.7,51.2233333333,1.1333333333,96.4666666667,19.8566666667,36.9966666667,21.39,41.9666666667,17.7,39.8266666667,0.75,764.65,95.5,2.5,26,0.1,6.4282338251,6.4282338251 -90,20,23,38.3333333333,21.9633333333,37.7,21.73,41.79,21.7,40.29,18.7,51.5666666667,1.1,96.5,19.89,37.5666666667,21.5,42.3,17.7,40.03,0.8333333333,764.6,94.6666666667,2.6666666667,27,0.0666666667,22.1004892839,22.1004892839 -80,20,22.89,38.545,21.89,37.76,21.6,41.79,21.7,40.4633333333,18.7,51.76,1.1666666667,96.5,19.89,37.8333333333,21.5,42.6333333333,17.7,40.2233333333,0.9166666667,764.55,93.8333333333,2.8333333333,28,0.0333333333,9.6148848184,9.6148848184 -70,20,22.8566666667,38.79,21.8566666667,37.79,21.6,41.8725,21.6333333333,40.53,18.7,52.0666666667,1.2,96.4333333333,19.8566666667,38.1566666667,21.5,43.0966666667,17.7,40.4633333333,1,764.5,93,3,29,0,21.7450311058,21.7450311058 -70,10,22.79,38.8633333333,21.79,37.79,21.5333333333,41.9,21.6,40.6266666667,18.6333333333,52.2,1.0666666667,96.4333333333,19.79,38.3425,21.5,43.565,17.7,40.7233333333,0.9166666667,764.5,93.5,2.8333333333,27.5,0,11.2566701486,11.2566701486 -70,10,22.79,38.86,21.76,37.9333333333,21.5,42.03,21.5333333333,40.76,18.6,52.26,0.8333333333,96.4666666667,19.79,38.6333333333,21.5,44.1233333333,17.7,40.9333333333,0.8333333333,764.5,94,2.6666666667,26,0,48.0548141059,48.0548141059 -60,0,22.73,39.1933333333,21.7,38,21.5,42.03,21.4633333333,40.9,18.6,52.26,0.6333333333,96.4,19.79,38.7,21.5,44.7,17.7,41.06,0.75,764.5,94.5,2.5,24.5,0,22.4213732523,22.4213732523 -30,0,22.6,39.23,21.6666666667,38,21.5,42.09,21.3233333333,40.9,18.6,52.53,0.5,96.5,19.79,38.76,21.5,45.0333333333,17.7,41.2666666667,0.6666666667,764.5,95,2.3333333333,23,0,38.8572492637,38.8572492637 -30,0,22.6,39.29,21.6,38.0675,21.5,42.1633333333,21.26,41,18.6,52.6633333333,0.5,96.5,19.7,38.9,21.5,45.7266666667,17.76,41.4666666667,0.5833333333,764.5,95.5,2.1666666667,21.5,0,7.9109887243,7.9109887243 -30,0,22.5,39.3633333333,21.5333333333,38.09,21.4633333333,42.2,21.175,41.0675,18.6,52.79,0.4,96.3666666667,19.7,38.9666666667,21.4266666667,46.06,17.7,41.73,0.5,764.5,96,2,20,0,43.3404291281,43.3404291281 -40,0,22.4266666667,39.29,21.5,38.1266666667,21.39,42.2,21.1,41.1633333333,18.6,52.8633333333,0.4,96.3666666667,19.7,39.1266666667,21.39,46.3266666667,17.7,41.93,0.55,764.5,96,2.1666666667,27.5,0.0333333333,10.3072802885,10.3072802885 -50,0,22.39,39.29,21.4266666667,38.1266666667,21.39,42.29,20.9633333333,41.23,18.6,53,0.4333333333,96.4333333333,19.7,39.3333333333,21.39,46.4666666667,17.7,42.1566666667,0.6,764.5,96,2.3333333333,35,0.0666666667,8.8974841521,8.8974841521 -60,0,22.3233333333,39.3633333333,21.3566666667,38.23,21.39,42.29,20.89,41.29,18.6,53,0.5,96.5,19.7,39.4,21.3566666667,46.8,17.7,42.3633333333,0.65,764.5,96,2.5,42.5,0.1,8.2445573178,8.2445573178 -50,0,22.29,39.4333333333,21.29,38.29,21.39,42.3633333333,20.89,41.4,18.6,53.1266666667,0.5666666667,96.4333333333,19.7,39.4666666667,21.29,47.1933333333,17.7,42.6266666667,0.7,764.5,96,2.6666666667,50,0.1333333333,28.2634488656,28.2634488656 -50,0,22.23,39.5,21.29,38.29,21.39,42.3633333333,20.8233333333,41.3266666667,18.55,53.2225,0.475,96.475,19.6,39.59,21.29,47.3633333333,17.76,42.76,0.75,764.5,96,2.8333333333,57.5,0.1666666667,36.3590510562,36.3590510562 -50,0,22.2,39.5,21.29,38.29,21.39,42.4,20.7,41.4,18.5333333333,53.29,0.4,96.4,19.6,39.6633333333,21.23,47.0966666667,17.79,43,0.8,764.5,96,3,65,0.2,43.7959494535,43.7959494535 -50,0,22.1333333333,39.56,21.2,38.29,21.39,42.3266666667,20.7,41.4,18.5,53.4333333333,0.4,96.4,19.6,39.86,21.2,47.03,17.745,43.095,0.8333333333,764.55,95.5,3,58,0.1666666667,35.4212191887,35.4212191887 -50,0,22.0666666667,39.6633333333,21.1333333333,38.29,21.39,42.4,20.6666666667,41.4666666667,18.5,53.5,0.3333333333,96.4,19.6,40.1933333333,21.2,47.09,17.79,43.3333333333,0.8666666667,764.6,95,3,51,0.1333333333,23.8731605466,23.8731605466 -50,0,22,39.6633333333,21.1,38.4,21.39,42.4,20.6,41.4,18.5,53.6266666667,0.3333333333,96.4,19.6,40.4333333333,21.2,47.23,17.79,43.53,0.9,764.65,94.5,3,44,0.1,41.0139996791,41.0139996791 -50,0,22,39.7,21.1,38.4,21.39,42.5,20.5666666667,41.53,18.5,53.7,0.4,96.4,19.6666666667,40.5,21.2,47.3633333333,17.79,43.6633333333,0.9333333333,764.7,94,3,37,0.0666666667,0.8306105388,0.8306105388 -60,0,21.9266666667,39.7,21,38.4,21.39,42.5,20.5,41.59,18.5,53.73,0.5666666667,96.53,19.6,40.5,21.1,47.5666666667,17.79,43.8266666667,0.9666666667,764.75,93.5,3,30,0.0333333333,49.8055550619,49.8055550619 -50,0,21.89,39.73,21,38.4,21.39,42.59,20.5,41.7,18.5,53.79,0.7666666667,96.4633333333,19.6,40.5,21.1,47.76,17.79,43.9666666667,1,764.8,93,3,23,0,31.7447417881,31.7447417881 -60,0,21.865,39.7675,20.9633333333,38.5,21.39,42.5225,20.4266666667,41.7,18.4633333333,53.79,1.0333333333,96.4,19.6,40.6633333333,21.1,47.9633333333,17.79,44.09,0.9,764.75,93.8333333333,3.1666666667,23.5,0.0166666667,21.4237690438,21.4237690438 -50,0,21.79,39.7,20.89,38.56,21.39,42.5,20.39,41.7,18.39,53.79,1.0333333333,96.3333333333,19.6,40.59,21.1,48.1633333333,17.79,44.2233333333,0.8,764.7,94.6666666667,3.3333333333,24,0.0333333333,1.4196466422,1.4196466422 -40,0,21.76,39.79,20.89,38.6266666667,21.39,42.53,20.39,41.7,18.39,53.8266666667,0.8666666667,96.2633333333,19.55,40.7,21.05,48.3,17.79,44.3266666667,0.7,764.65,95.5,3.5,24.5,0.05,37.666635029,37.666635029 -30,0,21.7,39.79,20.8233333333,38.6266666667,21.39,42.59,20.29,41.79,18.39,53.9,0.8,96.1233333333,19.5333333333,40.7,21,48.3266666667,17.79,44.4666666667,0.6,764.6,96.3333333333,3.6666666667,25,0.0666666667,10.4316987679,10.4316987679 -30,0,21.7,39.8266666667,20.79,38.7,21.3566666667,42.59,20.29,41.79,18.39,53.8266666667,0.9,96.19,19.6,40.7,21,48.4666666667,17.79,44.53,0.5,764.55,97.1666666667,3.8333333333,25.5,0.0833333333,49.9727702583,49.9727702583 -30,0,21.6333333333,39.8266666667,20.79,38.7,21.29,42.59,20.26,41.8633333333,18.39,53.9,0.8333333333,96.1233333333,19.5,40.9,21,48.6266666667,17.79,44.6633333333,0.4,764.5,98,4,26,0.1,45.3624596586,45.3624596586 -60,0,21.6,39.8266666667,20.7,38.79,21.29,42.59,20.2,41.79,18.39,53.9,0.8,96.06,19.5,41.0266666667,21,48.7,17.79,44.79,0.4333333333,764.4666666667,97.8333333333,3.6666666667,28.3333333333,0.1,35.6232515885,35.6232515885 -50,0,21.6,39.9,20.7,38.8266666667,21.29,42.6633333333,20.2,41.8633333333,18.39,53.9,0.8666666667,96.06,19.5,41.1633333333,20.89,48.86,17.79,44.8633333333,0.4666666667,764.4333333333,97.6666666667,3.3333333333,30.6666666667,0.1,36.5466441959,36.5466441959 -60,0,21.5,40,20.7,38.9,21.29,42.7,20.2,41.9,18.39,53.9,1,96.09,19.5666666667,41.09,20.89,49.06,17.79,44.9333333333,0.5,764.4,97.5,3,33,0.1,23.6243960564,23.6243960564 -50,0,21.5,40,20.6666666667,38.9,21.29,42.7,20.2,41.9,18.39,53.9,1,96.1233333333,19.5,41.09,20.8566666667,49.29,17.79,45.06,0.5333333333,764.3666666667,97.3333333333,2.6666666667,35.3333333333,0.1,43.1255343487,43.1255343487 -50,0,21.5,40.03,20.6,38.9,21.29,42.7,20.1,41.9333333333,18.3233333333,53.9,1.0666666667,96.19,19.5,41.09,20.79,49.345,17.79,45.1266666667,0.5666666667,764.3333333333,97.1666666667,2.3333333333,37.6666666667,0.1,8.2707561203,8.2707561203 -50,0,21.4266666667,40.03,20.6,38.9333333333,21.29,42.76,20.1,42,18.39,53.9,1.1,96.1566666667,19.5666666667,41,20.79,49.6266666667,17.79,45.2,0.6,764.3,97,2,40,0.1,31.0213962803,31.0213962803 -40,0,21.39,40,20.5333333333,39,21.26,42.7,20.1,42,18.34,53.9,1.1,96.09,19.5,41,20.79,49.7,17.79,45.23,0.5833333333,764.2666666667,96.8333333333,2.1666666667,40,0.0833333333,14.6165697486,14.6165697486 -60,0,21.39,40.06,20.5,39.03,21.26,42.76,20.1,42,18.29,53.9,1.1,96.09,19.5,41,20.76,49.9333333333,17.79,45.3175,0.5666666667,764.2333333333,96.6666666667,2.3333333333,40,0.0666666667,22.8070866899,22.8070866899 -50,0,21.29,40.09,20.5,39.09,21.26,42.76,20,41.9,18.29,53.9,1.0333333333,96.03,19.5,41,20.76,50.06,17.79,45.4,0.55,764.2,96.5,2.5,40,0.05,2.2819604492,2.2819604492 -60,0,21.29,40.09,20.5,39.1266666667,21.2,42.7,20,41.9,18.29,53.9,1,96,19.5,41,20.7,50.3266666667,17.79,45.4333333333,0.5333333333,764.1666666667,96.3333333333,2.6666666667,40,0.0333333333,8.8830876048,8.8830876048 -50,0,21.29,40.2,20.4266666667,39.1266666667,21.23,42.73,20,41.9333333333,18.29,53.9,1,96,19.5,40.9333333333,20.7,50.4,17.79,45.5,0.5166666667,764.1333333333,96.1666666667,2.8333333333,40,0.0166666667,2.8966033948,2.8966033948 -50,0,21.23,40.2,20.39,39.09,21.29,42.79,19.9266666667,41.9333333333,18.29,53.9,0.8666666667,96,19.5,40.9,20.7,50.5,17.8233333333,45.5666666667,0.5,764.1,96,3,40,0,47.2205116763,47.2205116763 -40,0,21.2,40.2,20.39,39.1633333333,21.29,42.79,19.89,41.9666666667,18.29,53.9,0.8,96,19.5,40.9,20.7,50.5,17.8233333333,45.6266666667,0.4833333333,764.1,96.1666666667,3,38,0,17.1371737146,17.1371737146 -50,0,21.2,40.2,20.3233333333,39.2,21.23,42.73,19.89,41.9666666667,18.29,53.9,0.8,96.03,19.5,40.9,20.7,50.4,17.79,45.6266666667,0.4666666667,764.1,96.3333333333,3,36,0,25.8975285338,25.8975285338 -50,0,21.1,40.29,20.3233333333,39.2,21.2,42.7,19.89,42,18.29,53.9,0.7333333333,96.09,19.4266666667,40.8266666667,20.7,50.4,17.79,45.7,0.45,764.1,96.5,3,34,0,31.262266764,31.262266764 -30,0,21.1,40.29,20.29,39.23,21.2,42.73,19.89,42,18.26,53.8633333333,0.7,96.09,19.445,40.995,20.7,50.29,17.79,45.7,0.4333333333,764.1,96.6666666667,3,32,0,11.8632426835,11.8632426835 -40,0,21.1,40.29,20.29,39.29,21.2,42.73,19.79,41.9,18.26,53.79,0.7,96.09,19.4266666667,41.0666666667,20.625,50.1175,17.79,45.76,0.4166666667,764.1,96.8333333333,3,30,0,25.8061957196,25.8061957196 -30,0,21,40.29,20.26,39.26,21.2,42.7,19.79,41.9,18.2,53.73,0.7,96.09,19.4266666667,41.1266666667,20.6666666667,50,17.89,45.9,0.4,764.1,97,3,28,0,40.327091387,40.327091387 -50,0,21,40.3633333333,20.2,39.26,21.2,42.6266666667,19.79,41.9666666667,18.2,53.73,0.75,96.0225,19.39,41.2,20.6,49.76,17.8233333333,45.8266666667,0.4166666667,764.1333333333,96.8333333333,3,28,-0.0166666667,17.4132367247,17.4132367247 -50,0,21,40.4,20.2,39.345,21.2,42.6266666667,19.79,41.975,18.2,53.7,0.7666666667,96.06,19.39,41.0666666667,20.6,49.7,17.79,45.8266666667,0.4333333333,764.1666666667,96.6666666667,3,28,-0.0333333333,42.9343726486,42.9343726486 -40,0,21,40.4,20.1666666667,39.4,21.2,42.6266666667,19.79,42,18.2,53.7,0.7666666667,96.09,19.39,41.1266666667,20.6,49.7,17.8566666667,45.9666666667,0.45,764.2,96.5,3,28,-0.05,1.7219380592,1.7219380592 -50,0,20.9633333333,40.4333333333,20.1666666667,39.4,21.1,42.7,19.73,41.9,18.2,53.6725,0.7,96.09,19.39,41.2,20.6,49.6266666667,17.8566666667,45.9666666667,0.4666666667,764.2333333333,96.3333333333,3,28,-0.0666666667,48.5498572933,48.5498572933 -50,0,20.89,40.5,20.1,39.4,21.1,42.7,19.73,41.9,18.2,53.6633333333,0.7,96.09,19.39,41.2,20.5666666667,49.56,17.8566666667,45.9666666667,0.4833333333,764.2666666667,96.1666666667,3,28,-0.0833333333,37.2555068112,37.2555068112 -170,0,20.89,40.5,20.1,39.4666666667,21.1,42.79,19.7,42,18.2,53.59,0.6333333333,96.03,19.39,41.2,20.5,49.5,17.8233333333,45.9633333333,0.5,764.3,96,3,28,-0.1,13.6627620901,13.6627620901 -400,0,20.89,40.5,20.1,39.5,21.1,42.73,19.7,42,18.2,53.59,0.6,96.1233333333,19.39,41.2,20.5,49.4,17.8233333333,46.03,0.2833333333,764.3666666667,96,2.8333333333,27.3333333333,-0.3166666667,33.8553050766,33.8553050766 -390,10,20.79,40.53,20.0333333333,39.4333333333,21.1,42.76,19.8933333333,42.1266666667,18.2,53.59,0.5333333333,96.19,19.39,41.2,20.5,49.4,17.89,46.09,0.0666666667,764.4333333333,96,2.6666666667,26.6666666667,-0.5333333333,17.3973734025,17.3973734025 -370,10,20.79,40.7233333333,20,39.4333333333,21.1,42.6266666667,20.2933333333,42.1266666667,18.2,53.59,0.2666666667,96.19,19.39,41.2,20.5,49.29,17.865,46.0425,-0.15,764.5,96,2.5,26,-0.75,47.351026081,47.351026081 -390,10,20.79,40.9333333333,20,39.56,21.1,42.59,20.7633333333,41.9,18.2,53.59,0.0666666667,96.19,19.39,41.2,20.5,49.29,17.8566666667,45.9,-0.3666666667,764.5666666667,96,2.3333333333,25.3333333333,-0.9666666667,16.9311887468,16.9311887468 -370,10,20.79,41.1333333333,20,39.59,21.1,42.59,21.03,41.5666666667,18.1666666667,53.59,-0.3,96.0266666667,19.39,41.29,20.4633333333,49.1633333333,17.79,45.76,-0.5833333333,764.6333333333,96,2.1666666667,24.6666666667,-1.1833333333,1.5856601996,1.5856601996 -380,10,20.79,41.2,20,39.6633333333,21,42.4,21.36,41.1333333333,18.1,53.59,-0.6333333333,95.8333333333,19.3233333333,41.23,20.39,49.03,17.8566666667,45.76,-0.8,764.7,96,2,24,-1.4,17.6792898797,17.6792898797 -100,10,20.79,41.2,20,39.8266666667,21,42.4,21.6333333333,40.9333333333,18.1,53.5,-0.9666666667,95.56,19.29,41.23,20.39,49.09,17.79,45.59,-0.8,764.7166666667,95.5,2,24.6666666667,-1.4666666667,19.3561793887,19.3561793887 -90,20,20.79,41.26,20,39.9666666667,21,42.2966666667,21.79,40.6333333333,18.1,53.56,-1.0333333333,95.6266666667,19.29,41.29,20.39,49.03,17.79,45.53,-0.8,764.7333333333,95,2,25.3333333333,-1.5333333333,17.8473580047,17.8473580047 -470,10,20.79,41.26,20,40.09,21,42.1633333333,21.79,40.6333333333,18.1,53.5,-0.9,95.8,19.29,41.29,20.39,48.9333333333,17.79,45.5,-0.8,764.75,94.5,2,26,-1.6,47.9984303005,47.9984303005 -320,0,20.79,41.645,20,40.09,20.945,42.45,21.79,40.5333333333,18.1,53.4333333333,-0.9666666667,95.66,19.29,40.8233333333,20.39,48.86,17.79,45.36,-0.8,764.7666666667,94,2,26.6666666667,-1.6666666667,19.1869102418,19.1869102418 -270,0,20.8233333333,42.1266666667,20.1,40.09,21.23,43.8933333333,21.73,40,18.1,53.26,-1.05,95.64,19.29,40.29,20.29,48.4,17.79,44.99,-0.8,764.7833333333,93.5,2,27.3333333333,-1.7333333333,27.3168810527,27.3168810527 -260,0,20.89,42.4,20.1666666667,40.09,21.43,44.8933333333,21.6666666667,39.6333333333,18.1,53.0666666667,-1.2,95.59,19.26,39.7666666667,20.29,47.8975,17.79,44.53,-0.8,764.8,93,2,28,-1.8,46.2661737925,46.2661737925 -230,0,20.9266666667,42.39,20.2,39.93,21.7633333333,45.59,21.5333333333,39.36,18.1,52.76,-1.1333333333,95.6566666667,19.2,39.36,20.29,47.4633333333,17.73,43.8933333333,-0.6333333333,764.85,92.5,1.8333333333,28.1666666667,-1.7166666667,45.8429763559,45.8429763559 -470,10,21,42.59,20.26,39.79,22.03,45.4633333333,21.3566666667,38.93,18.1,52.5666666667,-1.1333333333,95.6566666667,19.2,39.23,20.2,46.9666666667,17.73,43.5,-0.4666666667,764.9,92,1.6666666667,28.3333333333,-1.6333333333,12.1366496431,12.1366496431 -400,0,21.1333333333,42.5333333333,20.39,39.5,22.23,44.99,21.29,38.79,18.1,52.3,-1.26,95.53,19.2,39.03,20.2,46.7666666667,17.7,43.0633333333,-0.3,764.95,91.5,1.5,28.5,-1.55,35.8545419411,35.8545419411 -290,0,21.2,42.3333333333,20.5,39.2966666667,22.3566666667,44.53,21.2,38.5,18.1,52.0666666667,-1.3233333333,95.33,19.1666666667,38.46,20.2,46.4,17.76,42.73,-0.1333333333,765,91,1.3333333333,28.6666666667,-1.4666666667,17.447301792,17.447301792 -100,0,21.39,41.8,20.5666666667,39.03,22.39,43.7333333333,21.2633333333,38.9633333333,18.1,51.8333333333,-1.3233333333,95.2633333333,19.1,38.0666666667,20.1333333333,46.2,17.79,42.73,0.0333333333,765.05,90.5,1.1666666667,28.8333333333,-1.3833333333,27.7141675353,27.7141675353 -90,0,21.4633333333,40.6,20.8233333333,38.8633333333,22.3233333333,43.2666666667,21.4633333333,39.1633333333,18.1,51.6266666667,-1.29,95.3,19.1333333333,38.06,20.1,45.93,17.79,42.73,0.2,765.1,90,1,29,-1.3,37.1486206539,37.1486206539 -90,0,21.6333333333,39.9666666667,20.9633333333,38.6566666667,22.2,42.76,21.5333333333,39.4633333333,18.1,51.3633333333,-1.23,95.2266666667,19.1333333333,37.9333333333,20.1,45.73,17.76,42.6633333333,0.3833333333,765.15,89.5,1,29,-1.1833333333,40.9849159303,40.9849159303 -90,0,21.7,39.7666666667,21.1333333333,38.4,22.1333333333,42.5666666667,21.6,39.59,18.1,51.23,-1.1666666667,95.26,19.1333333333,37.9,20.1,45.56,17.76,42.53,0.5666666667,765.2,89,1,29,-1.0666666667,43.4828632511,43.4828632511 -90,0,21.73,39.5266666667,21.2,38.0666666667,22.0666666667,42.1,21.6,39.79,18.1,51.045,-1.0333333333,95.4666666667,19.2,37.7666666667,20.1,45.5,17.79,42.3333333333,0.75,765.25,88.5,1,29,-0.95,1.7932567163,1.7932567163 -100,0,21.8566666667,39.4,21.29,37.9666666667,22,41.7666666667,21.6,39.8633333333,18.1,50.8633333333,-0.8666666667,95.6233333333,19.1333333333,37.6633333333,20.1,45.3633333333,17.79,41.9975,0.9333333333,765.3,88,1,29,-0.8333333333,11.0012201709,11.0012201709 -80,0,21.89,39.26,21.29,37.8266666667,21.89,41.5266666667,21.6333333333,39.9,18.1,50.73,-0.6666666667,95.83,19.2,37.6633333333,20.1,45.29,17.79,41.79,1.1166666667,765.35,87.5,1,29,-0.7166666667,18.348660483,18.348660483 -180,0,21.9633333333,39.26,21.39,37.6633333333,21.89,41.3266666667,21.7,39.7666666667,18.1,50.59,-0.4666666667,96.03,19.2,37.5266666667,20.1333333333,45.2,17.89,41.76,1.3,765.4,87,1,29,-0.6,15.2848221012,15.2848221012 -440,0,22.0333333333,39.1933333333,21.39,37.39,21.89,41.23,21.79,39.46,18.1,50.53,-0.3333333333,96.1566666667,19.2,37.3266666667,20.1333333333,45.2,17.8233333333,41.5666666667,1.4833333333,765.4333333333,85.1666666667,1.1666666667,29,-0.75,36.3915228751,36.3915228751 -300,0,22.1,38.8,21.39,36.86,21.9633333333,41.49,21.8566666667,39.26,18.1,50.26,-0.1333333333,96.2266666667,19.3233333333,37.8266666667,20.2,45.6266666667,17.89,41.5,1.6666666667,765.4666666667,83.3333333333,1.3333333333,29,-0.9,34.9864383112,34.9864383112 -250,0,22.1,37.9333333333,21.1966666667,35.1333333333,21.8566666667,41.1,21.8566666667,39.1,18.1,50.0666666667,0.1,96.35,19.4633333333,37.9,20.26,45.6266666667,17.89,41.4333333333,1.85,765.5,81.5,1.5,29,-1.05,45.5030463403,45.5030463403 -280,0,22.0333333333,37.4,20.89,34.4266666667,21.79,40.6333333333,21.79,38.6333333333,18.1,49.7233333333,0.2666666667,96.4333333333,19.5333333333,37.8266666667,20.29,45.26,17.89,41.29,2.0333333333,765.5333333333,79.6666666667,1.6666666667,29,-1.2,42.2801304841,42.2801304841 -460,0,22.0333333333,37.9266666667,20.9633333333,34.96,22.1,40.745,21.76,38.5,18.1,49.39,0.3333333333,96.4666666667,19.6,37.8266666667,20.29,45.2,17.89,41.29,2.2166666667,765.5666666667,77.8333333333,1.8333333333,29,-1.35,38.9272320084,38.9272320084 -120,0,22.1,38.25,21.1333333333,35.5966666667,22.3233333333,40.6333333333,21.7,38.56,18.1,49.1633333333,0.4,96.4,19.7,37.76,20.39,45.3633333333,18,41.1633333333,2.4,765.6,76,2,29,-1.5,20.0421714108,20.0421714108 -120,0,22.1,38.2666666667,21.26,35.99,22.4633333333,40.4333333333,21.6666666667,38.59,18.1,49.03,0.5,96.53,19.7225,37.595,20.39,44.9633333333,18,41.09,2.4833333333,765.5833333333,75.1666666667,2,30.8333333333,-1.5833333333,28.8402329432,28.8402329432 -110,0,22.1,38.26,21.29,36.3266666667,22.39,39.93,21.6,38.59,18.1,49,0.5666666667,96.53,19.8566666667,37.56,20.39,44.645,18,40.8633333333,2.5666666667,765.5666666667,74.3333333333,2,32.6666666667,-1.6666666667,3.817972308,3.817972308 -130,0,22.1,38.26,21.29,36.4666666667,22.3233333333,39.73,21.6,38.7,18.1666666667,49,0.7,96.69,19.89,37.3333333333,20.5333333333,44.3333333333,18,40.6566666667,2.65,765.55,73.5,2,34.5,-1.75,43.6487425352,43.6487425352 -110,0,22.0333333333,38.23,21.29,36.59,22.2,39.4,21.5333333333,38.76,18.1,48.9,0.8333333333,96.7633333333,19.9633333333,37.0666666667,20.6666666667,44.1266666667,18,40.3633333333,2.7333333333,765.5333333333,72.6666666667,2,36.3333333333,-1.8333333333,47.8142867796,47.8142867796 -120,0,22.1,38.23,21.29,36.59,22.1333333333,39.4,21.5,38.95,18.1,48.8266666667,0.9333333333,96.8,20.1333333333,36.6933333333,20.73,43.8633333333,18,40.1566666667,2.8166666667,765.5166666667,71.8333333333,2,38.1666666667,-1.9166666667,25.2765539917,25.2765539917 -120,0,22.1,38.06,21.29,36.59,22.1,39.3633333333,21.5,38.9,18.1,48.79,1,96.8,20.26,36.4333333333,20.8566666667,43.73,18,39.9666666667,2.9,765.5,71,2,40,-2,46.2183181895,46.2183181895 -120,0,22.1,38.06,21.26,36.56,22.1,39.23,21.5,38.9,18.1,48.79,1.0666666667,96.8333333333,20.39,36.1633333333,21.1633333333,43.4666666667,18.0666666667,39.9,2.9166666667,765.4833333333,69.6666666667,2,40,-2.25,6.7256766371,6.7256766371 -130,0,22.0666666667,38.1633333333,21.1333333333,36.56,22,39.1633333333,21.5,39.09,18.1,48.6633333333,1.26,96.9666666667,20.39,35.9633333333,21.3566666667,43.2666666667,18.1,39.83,2.9333333333,765.4666666667,68.3333333333,2,40,-2.5,11.936850159,11.936850159 -120,0,22,38.09,21.1,36.59,22,39.1633333333,21.5,38.89,18.1,48.59,1.3233333333,97,20.39,35.6633333333,21.39,43.1633333333,18.1666666667,40.6966666667,2.95,765.45,67,2,40,-2.75,24.4981311029,24.4981311029 -120,0,22,38.23,21.1,36.6633333333,21.9633333333,39.2,21.39,38.4666666667,18.1,48.59,1.39,97,20.39,35.39,21.39,43.09,18.2,40.8933333333,2.9666666667,765.4333333333,65.6666666667,2,40,-3,23.7030048389,23.7030048389 -410,0,22,38.23,21,36.5633333333,21.89,39.2,21.39,38.4,18.1,48.59,1.5333333333,97.19,20.39,35.065,21.5333333333,43.4,18.2225,40.35,2.9833333333,765.4166666667,64.3333333333,2,40,-3.25,21.7497079517,21.7497079517 -420,0,22,37.0266666667,20.775,34.79,21.8566666667,38.8933333333,21.3566666667,37.5633333333,18.1,48.4475,1.6,97.19,20.39,34.64,21.6,42.7333333333,18.29,40.56,3,765.4,63,2,40,-3.5,1.9624480046,1.9624480046 -140,0,21.9266666667,34.9,20.416,32.39,21.6633333333,37.9666666667,21.29,37.23,18.1,48.2675,1.7,97.3,20.5316666667,34.41,21.6,41.8,18.29,40.5,3.0166666667,765.3666666667,62.3333333333,2,40,-3.6333333333,32.216550759,32.216550759 -60,0,21.8566666667,33.13,20.0966666667,31.16,21.4633333333,36.3,21.26,36.5933333333,18.1,48.0666666667,1.73,97.2266666667,20.6333333333,33.9233333333,21.6,41.1,18.29,40.4333333333,3.0333333333,765.3333333333,61.6666666667,2,40,-3.7666666667,35.7783600106,35.7783600106 -60,0,21.73,32.4633333333,19.7633333333,30.16,21.2633333333,35.2333333333,21.2,36.0666666667,18.1,47.4175,1.79,97.2266666667,20.76,33.2566666667,21.6,40.0933333333,18.39,39.7666666667,3.05,765.3,61,2,40,-3.9,17.5833360641,17.5833360641 -70,10,21.6333333333,32.0233333333,19.73,30.3666666667,21.1,35.03,21.2,35.8633333333,18.1,46.6933333333,1.79,97.2266666667,20.9266666667,32.9666666667,21.6,39.5,18.39,39.5,3.0666666667,765.2666666667,60.3333333333,2,40,-4.0333333333,47.3278374411,47.3278374411 -80,0,21.7,32.6966666667,19.8566666667,31.2333333333,20.96,35.2966666667,21.2,35.73,18.1,46.3333333333,1.79,97.2266666667,21.0666666667,32.8266666667,21.6333333333,39.26,18.39,39.4666666667,3.0833333333,765.2333333333,59.6666666667,2,40,-4.1666666667,37.1553253615,37.1553253615 -100,0,21.7,33.4266666667,19.9842857143,32.3271428571,20.84,35.995,21.2,35.6633333333,18.1,46.1266666667,1.79,97.2266666667,21.276,32.94,21.7736363636,39.0690909091,18.39,39.3266666667,3.1,765.2,59,2,40,-4.3,2.5392960175,2.5392960175 -80,0,21.7,33.96,20.08125,33.115,20.89,36.5,21.2,35.59,18.05,46.045,1.79,97.3,21.4670588235,32.7529411765,21.84,39.045,18.39,39.26,3.0333333333,765.1833333333,59.1666666667,1.8333333333,40,-4.3,49.0182390437,49.0182390437 -80,0,21.7,34.245,20.1461538462,33.6038461538,20.9633333333,36.4333333333,21.2,35.56,18.0888888889,46.05,1.79,97.3,21.5888888889,32.38,21.9664285714,39.1642857143,18.39,39.2,2.9666666667,765.1666666667,59.3333333333,1.6666666667,40,-4.3,10.8911226271,10.8911226271 -70,0,21.7,34.5666666667,20.2,33.976,21,36.4,21.2,35.5,18.0666666667,46.06,1.73,97.3,21.6416666667,32.1175,22.125,39.29,18.39,39.1266666667,2.9,765.15,59.5,1.5,40,-4.3,1.8098001019,1.8098001019 -80,0,21.7,34.8333333333,20.29,34.5133333333,21,36.4,21.2,35.53,18.0916666667,46.0825,1.6666666667,97.2633333333,21.7,31.8928571429,22.2933333333,39.43,18.39,39.3333333333,2.8333333333,765.1333333333,59.6666666667,1.3333333333,40,-4.3,13.0351932719,13.0351932719 -80,0,21.7,35.0666666667,20.3185714286,34.7257142857,21.1,36.59,21.2,35.53,18.1,46.145,1.6,97.19,21.7572727273,31.5063636364,22.445,39.53,18.39,39.83,2.7666666667,765.1166666667,59.8333333333,1.1666666667,40,-4.3,36.0207892954,36.0207892954 -90,0,21.76,35.26,20.39,34.9111111111,21.1,36.6633333333,21.2,35.545,18.1,46.2,1.4633333333,97.1266666667,21.79,31.235,22.525,39.515,18.39,40.3633333333,2.7,765.1,60,1,40,-4.3,12.3947090586,12.3947090586 -80,0,21.73,35.4333333333,20.39,35,21.1333333333,36.8266666667,21.1,35.59,18.1,46.2,1.3233333333,97,21.79,31.0444444444,22.6583333333,39.5,18.5,41.1933333333,2.3833333333,765.0666666667,62.1666666667,1.1666666667,40,-4.1833333333,11.7457895773,11.7457895773 -80,0,21.79,35.56,20.434,35.116,21.2,36.9,21.1,35.6633333333,18.05,46.145,1.2,96.8333333333,21.79,30.79,22.7,39.475,18.5,41.4666666667,2.0666666667,765.0333333333,64.3333333333,1.3333333333,40,-4.0666666667,1.050592144,1.050592144 -80,0,21.7,35.6266666667,20.39,35.3266666667,21.1,36.9333333333,21.0666666667,35.79,18,46.09,1.2,96.9,21.79,30.736,22.76,39.4,18.2233333333,37.8966666667,1.75,765,66.5,1.5,40,-3.95,13.2310313871,13.2310313871 -80,0,21.7,35.7,20.365,35.675,21.1,37,21,35.79,18,46.09,0.7333333333,96.2966666667,21.79,30.825,22.76,39.1,17.89,36.43,1.4333333333,764.9666666667,68.6666666667,1.6666666667,40,-3.8333333333,34.5900809742,34.5900809742 -80,10,21.7,35.59,20.3566666667,35.9,21.0666666667,37.06,20.89,35.8266666667,18,46.09,0.325,95.82,21.73,30.89,22.5666666667,37.7666666667,18,36.8,1.1166666667,764.9333333333,70.8333333333,1.8333333333,40,-3.7166666667,1.7334695556,1.7334695556 -90,10,21.7,35.59,20.29,35.975,21,37.06,20.89,36.1,18,46.09,-0.0333333333,95.3966666667,21.675,30.9725,22.5,37.2225,18.1,37.03,0.8,764.9,73,2,40,-3.6,3.1393064768,3.1393064768 -130,10,21.6,35.73,20.23,35.7966666667,20.9633333333,37.2,20.89,36.4633333333,18,46.0064285714,-0.2666666667,95.23,21.5214285714,30.945,22.4511111111,37.4755555556,18.1,37.1633333333,0.5333333333,764.8833333333,74.6666666667,2,40,-3.5666666667,19.8853045935,19.8853045935 -380,20,21.6,35.79,20.15,35.825,20.89,37.26,20.89,36.6633333333,18,46,-0.5333333333,94.9633333333,21.5,31.0333333333,22.434,37.79,18.1,37.2,0.2666666667,764.8666666667,76.3333333333,2,40,-3.5333333333,24.5014212443,24.5014212443 -800,10,21.5,36.76,20.1,36.0772727273,20.79,37.26,21,36.8266666667,18.03,46.027,-0.8333333333,94.9266666667,21.412,31.1,22.5,38.858,18.1,37.26,0,764.85,78,2,40,-3.5,31.5524373786,31.5524373786 -790,10,21.5666666667,38.6266666667,20.1,37.0409090909,20.79,37.26,21.0666666667,36.9666666667,18,46.1175,-1.0333333333,95.26,21.365,31.2475,22.5,39.45,18.1,37.29,-0.2666666667,764.8333333333,79.6666666667,2,40,-3.4666666667,36.1702156137,36.1702156137 -540,20,21.6333333333,42.0666666667,20.1,38.154,20.7,37.4933333333,21.7333333333,36.9666666667,18,46.32,-1.4266666667,94.2266666667,21.23,31.39,22.55,39.9616666667,18.1,37.23,-0.5333333333,764.8166666667,81.3333333333,2,40,-3.4333333333,3.8382896222,3.8382896222 -120,20,21.7,45.0666666667,20.0666666667,40.56,20.7,38.1,22.26,37.2333333333,18,46.9388888889,-1.9,92.4333333333,21.1833333333,31.5666666667,22.55,40.2933333333,18.1,37.2,-0.8,764.8,83,2,40,-3.4,21.0723040276,21.0723040276 -110,20,21.79,45.5266666667,20.075,41.15625,20.7,38.495,22.39,37.3266666667,18,47.4542857143,-2.23,91.8966666667,21.1333333333,31.6666666667,22.5916666667,40.5566666667,18.1,37.2,-0.8333333333,764.8,82.3333333333,2,40,-3.55,48.6863342929,48.6863342929 -160,30,21.8566666667,43.5266666667,20.1,40.6925,20.73,38.89,22.3233333333,37.4666666667,18.2983333333,58.9633333333,-2.43,91.69,21.0555555556,31.78,22.6,40.99,18.2,38.6933333333,-0.8666666667,764.8,81.6666666667,2,40,-3.7,40.69028917,40.69028917 -140,20,21.9266666667,41.86,20.1,40.3,20.79,39.09,22.1666666667,37.4666666667,18.6633333333,65.7333333333,-2.5666666667,91.99,21,31.84,22.7,41.4333333333,18.1333333333,38.9666666667,-0.9,764.8,81,2,40,-3.85,11.1883861478,11.1883861478 -550,20,22.025,41.075,20.1666666667,40.6933333333,20.8233333333,39.1266666667,22.0333333333,37.3266666667,18.73,56.1333333333,-2.8333333333,91.2566666667,21,32.0666666667,22.7,41.6,18.1,38.9666666667,-0.9333333333,764.8,80.3333333333,2,40,-4,24.4871152914,24.4871152914 -530,10,22.1,40.7666666667,20.29,40.7175,20.89,39.2,21.8566666667,37.06,18.79,52.3425,-3.03,90.8333333333,20.9266666667,32.26,22.65,41.6133333333,18.1,38.8266666667,-0.9666666667,764.8,79.6666666667,2,40,-4.15,0.5670096492,0.5670096492 -100,0,22.23,46.26,20.31,40.72,20.89,39.4933333333,21.79,37,18.9385714286,51.4271428571,-3.1633333333,90.76,20.89,32.378,22.5777777778,41.3311111111,18,38.56,-1,764.8,79,2,40,-4.3,12.9301148467,12.9301148467 -100,10,22.29,47.7333333333,20.39,41.7777777778,20.9633333333,40.3,21.65,36.9,19.1,51.4785714286,-3.3266666667,90.83,20.86,32.236,22.444375,40.6,18,38.5,-1.0333333333,764.8,78,2,40,-4.4833333333,22.7299385937,22.7299385937 -90,10,22.3566666667,45.63,20.4541666667,42.3416666667,21,40.73,21.5666666667,36.9666666667,19.1994444444,50.52,-3.475,90.6225,20.74,31.7622222222,22.39,40.4076923077,17.9633333333,38.43,-1.0666666667,764.8,77,2,40,-4.6666666667,37.048834411,37.048834411 -90,10,22.29,44.63,20.51875,42.48125,21,40.79,21.5,36.9,19.26,49.3683333333,-3.56,90.8666666667,20.7,31.456875,22.3566666667,40.5,17.89,38.23,-1.1,764.8,76,2,40,-4.85,49.5330005884,49.5330005884 -100,10,22.29,43.2633333333,20.60625,42.16375,20.9633333333,40.76,21.3566666667,36.79,19.3066666667,48.4044444444,-3.59,91.1,20.61875,31.160625,22.34625,40.545,17.9633333333,37.9666666667,-1.1333333333,764.8,75,2,40,-5.0333333333,16.6102473042,16.6102473042 -130,10,22.29,42.4566666667,20.6666666667,41.6788888889,20.89,40.645,21.29,36.8633333333,19.39,47.5277777778,-3.59,91.3666666667,20.5611111111,31.05,22.365,40.5,17.8233333333,37.7666666667,-1.1666666667,764.8,74,2,40,-5.2166666667,47.2395702731,47.2395702731 -110,10,22.39,41.6233333333,20.7064285714,41.1071428571,20.89,40.5675,21.2,36.9,19.424375,46.809375,-3.53,91.6633333333,20.5,31.2678571429,22.39,40.30125,17.89,37.645,-1.2,764.8,73,2,40,-5.4,48.0926709948,48.0926709948 -120,20,22.39,42.0966666667,20.7736363636,40.7,20.89,40.5,21.2,36.9666666667,19.5,46.956,-3.645,91.095,20.5,31.467,22.39,40.0571428571,17.79,37.4666666667,-1.25,764.75,74.1666666667,2.1666666667,37.6666666667,-5.2666666667,44.9638749822,44.9638749822 -100,30,22.5,43.2933333333,20.7818181818,40.05,20.9266666667,40.6266666667,21.2,37.29,20.43,80.28,-3.545,91.8725,20.5,31.445,22.39,39.9,17.79,37.345,-1.3,764.7,75.3333333333,2.3333333333,35.3333333333,-5.1333333333,24.6357917553,24.6357917553 -110,20,22.4266666667,41.8333333333,20.79,39.4,21,40.5666666667,21.2,37.43,20.4566666667,81.4666666667,-3.5772222222,91.435,20.39,31.15,22.3233333333,39.5666666667,17.89,38.23,-1.35,764.65,76.5,2.5,33,-5,39.2467738944,39.2467738944 -100,20,22.4266666667,40.3933333333,20.89,39.3333333333,21,40.4666666667,21.1666666667,37.6566666667,20.7,89.7,-3.6844444444,90.4644444444,20.4266666667,33.2266666667,22.254,39.17,17.89,38.29,-1.4,764.6,77.6666666667,2.6666666667,30.6666666667,-4.8666666667,40.155952354,40.155952354 -120,20,22.4266666667,39.6,20.89,39.2,21,40.3266666667,21.1666666667,37.73,20.6266666667,86.96,-3.8144444444,90.0811111111,20.5666666667,34.5,22.1,39.53,17.89,38.1333333333,-1.45,764.55,78.8333333333,2.8333333333,28.3333333333,-4.7333333333,33.8883811841,33.8883811841 -250,30,22.5,39.29,20.89,39.4333333333,20.89,40.26,21.2,37.3333333333,20.1,76.6233333333,-3.76,90.8255555556,20.7,34.79,22.1,39.7233333333,17.89,37.86,-1.5,764.5,80,3,26,-4.6,29.0638789302,29.0638789302 -110,10,22.5,39.23,20.9175,39.475,20.89,40.2,21.1333333333,37.1266666667,20.5,72.6233333333,-3.8216666667,90.1361111111,20.7,34.53,22.1666666667,39.76,17.79,37.5266666667,-1.5666666667,764.4833333333,80.3333333333,2.8333333333,26.3333333333,-4.6,16.5334043675,16.5334043675 -110,0,22.5,39.0266666667,21,39.3266666667,20.89,40.2,21.1,37.1633333333,20.7733333333,69.4655555556,-4.0144444444,89.4194444444,20.6,34.09,22.1,39.7,17.79,37.3266666667,-1.6333333333,764.4666666667,80.6666666667,2.6666666667,26.6666666667,-4.6,0.0657328288,0.0657328288 -150,10,22.5,38.8266666667,21,39.1633333333,21,40.06,21.1,36.9633333333,21.0127272727,80.4054545455,-4.065,89.4133333333,20.5571428571,34.1685714286,22.1,39.56,17.79,37.06,-1.7,764.45,81,2.5,27,-4.6,3.2900982071,3.2900982071 -110,20,22.5,38.73,21,39.03,21,40,21,36.7266666667,21.44,88.132,-4.1572222222,89.105,20.575,34.2,22.08,39.296,17.79,36.86,-1.7666666667,764.4333333333,81.3333333333,2.3333333333,27.3333333333,-4.6,4.297595867,4.297595867 -50,10,22.5,38.73,21,38.9,20.9633333333,39.9,21,37.1333333333,21.045,87.545,-4.2988888889,88.5505555556,20.5,34.2,22,38.95,17.7,36.6633333333,-1.8333333333,764.4166666667,81.6666666667,2.1666666667,27.6666666667,-4.6,0.655485841,0.655485841 -40,10,22.445,38.4,20.9266666667,38.9666666667,20.8233333333,39.9,21.0666666667,38.0966666667,20.6,83.78,-4.4166666667,88.2205555556,20.5,34.6925,21.9266666667,39.5666666667,17.7,36.6633333333,-1.9,764.4,82,2,28,-4.6,16.7872812133,16.7872812133 -50,10,22.39,38.73,20.89,39.09,20.76,39.8633333333,21.0666666667,38.5633333333,20.4633333333,81.5633333333,-4.4222222222,88.6255555556,20.5,35.1333333333,22,40.16,17.76,36.9333333333,-1.9666666667,764.35,82.1666666667,2,28.1666666667,-4.65,5.9632158256,5.9632158256 -50,10,22.3233333333,38.8633333333,20.89,39.1633333333,20.6333333333,39.79,21.1,38.9633333333,20.34,80.045,-4.3327777778,89.5877777778,20.5,35.36,21.9816666667,40.9483333333,17.7,37.06,-2.0333333333,764.3,82.3333333333,2,28.3333333333,-4.7,29.6797722694,29.6797722694 -70,10,22.29,39.1566666667,20.79,39.23,20.6,39.79,21.1,39.2675,20.1666666667,77.8933333333,-4.2144444444,89.9683333333,20.5,35.56,21.89,41.46,17.7,37.36,-2.1,764.25,82.5,2,28.5,-4.75,1.8656337867,1.8656337867 -60,20,22.29,39.29,20.79,39.3633333333,20.5333333333,39.8633333333,21.1,39.4666666667,20.05,76.8,-4.2994444444,89.6266666667,20.4725,35.9,21.89,41.9475,17.7,37.56,-2.1666666667,764.2,82.6666666667,2,28.6666666667,-4.8,0.478589593,0.478589593 -60,10,22.2,39.5666666667,20.7,39.4333333333,20.5,39.79,21.1333333333,39.53,19.9633333333,75.1966666667,-4.4166666667,88.6505555556,20.39,35.9666666667,21.84,42.145,17.7,37.73,-2.2333333333,764.15,82.8333333333,2,28.8333333333,-4.85,8.0798062962,8.0798062962 -70,10,22.2,39.7,20.7,39.56,20.5,39.79,21.1333333333,39.59,19.89,74.14,-4.5,88.5455555556,20.39,36.03,21.79,42.4475,17.7,37.79,-2.3,764.1,83,2,29,-4.9,41.5949494112,41.5949494112 -50,10,22.1,39.8266666667,20.5666666667,39.59,20.4633333333,39.76,21.2,39.7,19.7675,72.5175,-4.565,88.5683333333,20.39,36.156,21.79,42.696,17.7,37.95,-2.3833333333,764.0333333333,83.5,2,28.3333333333,-4.9,38.3421377162,38.3421377162 -70,10,22.1,39.9,20.5,39.6633333333,20.39,39.7,21.2,39.7,19.7,71.5333333333,-4.6288888889,88.0644444444,20.29,36.2,21.79,42.8633333333,17.6666666667,38.09,-2.4666666667,763.9666666667,84,2,27.6666666667,-4.9,13.6390158208,13.6390158208 -60,10,22,39.9,20.39,39.73,20.39,39.7,21.1333333333,39.79,19.6666666667,70.36,-4.7144444444,88.2888888889,20.29,36.26,21.7,43.2266666667,17.6666666667,38.2233333333,-2.55,763.9,84.5,2,27,-4.9,9.408164944,9.408164944 -70,20,21.9266666667,39.9,20.39,39.8633333333,20.39,39.76,21.1333333333,39.79,19.6,69.4266666667,-4.6066666667,88.9422222222,20.29,36.5,21.7,43.6333333333,17.6,38.2666666667,-2.6333333333,763.8333333333,85,2,26.3333333333,-4.9,11.2880917382,11.2880917382 -60,10,21.89,39.9,20.29,40,20.39,39.79,21.1,39.79,19.575,68.5925,-4.6177777778,88.6533333333,20.2675,36.5,21.7,43.975,17.6,38.4,-2.7166666667,763.7666666667,85.5,2,25.6666666667,-4.9,3.0985183781,3.0985183781 -60,10,21.8233333333,39.9,20.23,40,20.3233333333,39.79,21.1666666667,39.8633333333,19.5,67.8933333333,-4.6511111111,88.8133333333,20.26,36.6933333333,21.7,44.4,17.6,38.4,-2.8,763.7,86,2,25,-4.9,2.9950120486,2.9950120486 -50,10,21.79,39.9333333333,20.1666666667,40.09,20.39,39.79,21.1,39.8266666667,19.39,67.0233333333,-4.6011111111,88.7738888889,20.29,37.03,21.7,44.845,17.6666666667,38.4666666667,-2.8833333333,763.5833333333,86,2,25.5,-4.9833333333,7.4077935191,7.4077935191 -40,10,21.73,40,20.075,40.0675,20.3233333333,39.79,21.1,39.9,19.39,66.4966666667,-4.5661111111,89.0538888889,20.23,37.09,21.7,45.3,17.6,38.4,-2.9666666667,763.4666666667,86,2,26,-5.0666666667,3.6493942956,3.6493942956 -30,20,21.6666666667,40,20,40,20.29,39.7,21.1,39.9333333333,19.29,65.8966666667,-4.4833333333,89.3183333333,20.26,37.26,21.7,45.56,17.6,38.4666666667,-3.05,763.35,86,2,26.5,-5.15,2.144294593,2.144294593 -40,0,21.6,40.1933333333,19.945,40,20.26,39.76,21.1,40,19.29,65.4966666667,-4.535,88.6227777778,20.2,37.2,21.6,45.4666666667,17.6,38.59,-3.1333333333,763.2333333333,86,2,27,-5.2333333333,26.1230636155,26.1230636155 -50,0,21.5666666667,40.5,19.89,40.03,20.2,39.7,21.0666666667,40.0266666667,19.26,64.8966666667,-4.6788888889,87.9266666667,20.29,37.3266666667,21.5333333333,45.3266666667,17.6,38.6633333333,-3.2166666667,763.1166666667,86,2,27.5,-5.3166666667,39.4615744706,39.4615744706 -50,0,21.5,40.6933333333,19.89,40.09,20.2,39.7,21,39.6933333333,19.2,64.4966666667,-4.7327777778,87.9611111111,20.23,37.3266666667,21.5,45.3266666667,17.6,38.8266666667,-3.3,763,86,2,28,-5.4,34.7376674064,34.7376674064 -40,0,21.4633333333,40.9,19.76,40.09,20.2,39.76,20.9633333333,39.4,19.1666666667,64.0933333333,-4.7572222222,88.0411111111,20.2,37.29,21.478,45.48,17.6,38.9666666667,-3.4166666667,762.9166666667,86.5,2,27.1666666667,-5.4166666667,3.3288023667,3.3288023667 -50,10,21.39,40.9,19.7,40.1633333333,20.2,39.7,20.89,39.3266666667,19.1,63.7416666667,-4.8105555556,87.6727777778,20.2,37.29,21.39,45.56,17.6666666667,39.2,-3.5333333333,762.8333333333,87,2,26.3333333333,-5.4333333333,0.8978873258,0.8978873258 -40,0,21.3233333333,40.8266666667,19.6666666667,40.06,20.2,39.7,20.79,39.1633333333,19.0666666667,63.43,-4.9222222222,87.325,20.2,37.29,21.3566666667,45.8266666667,17.6,39.2,-3.65,762.75,87.5,2,25.5,-5.45,22.1079211682,22.1079211682 -40,0,21.26,40.76,19.6,40,20.2,39.7,20.7225,39.09,19,63.1566666667,-4.8777777778,87.8044444444,20.1333333333,37.29,21.29,46.1,17.6,39.3266666667,-3.7666666667,762.6666666667,88,2,24.6666666667,-5.4666666667,7.8801041585,7.8801041585 -40,0,21.2,40.7,19.6,40,20.2,39.76,20.6333333333,39.03,19,62.93,-4.95,87.3294444444,20.1,37.4333333333,21.29,46.36,17.6,39.4666666667,-3.8833333333,762.5833333333,88.5,2,23.8333333333,-5.4833333333,35.9430057928,35.9430057928 -60,0,21.1666666667,40.7,19.5333333333,40,20.2,39.7,20.6,38.9666666667,19,62.73,-5.055,86.9644444444,20.1,37.5,21.29,46.6333333333,17.6,39.59,-4,762.5,89,2,23,-5.5,35.1970916265,35.1970916265 -50,0,21.1,40.7,19.5,40.03,20.2,39.76,20.5333333333,38.9,18.89,62.5266666667,-5.1233333333,87.2666666667,20.1,37.53,21.2,46.59,17.6,39.6633333333,-4,762.4,88.6666666667,2,23.3333333333,-5.5666666667,44.2613152438,44.2613152438 -50,0,21,40.59,19.4266666667,40.03,20.2,39.9666666667,20.4633333333,38.6333333333,18.89,62.3266666667,-5.0911111111,87.7433333333,20.1,37.59,21.2,46.7233333333,17.6,39.745,-4,762.3,88.3333333333,2,23.6666666667,-5.6333333333,16.2630507606,16.2630507606 -40,0,21,40.59,19.39,40.1266666667,20.26,40.0266666667,20.39,38.56,18.8566666667,62.1333333333,-5.0911111111,87.65,20.1,37.59,21.2,46.9333333333,17.6,39.9333333333,-4,762.2,88,2,24,-5.7,48.5440783319,48.5440783319 -40,0,20.9633333333,40.6633333333,19.39,40.2,20.29,40.09,20.3566666667,38.4666666667,18.79,61.86,-5.1288888889,87.5644444444,20.1,37.59,21.2,47.06,17.6666666667,40.1333333333,-4,762.1,87.6666666667,2,24.3333333333,-5.7666666667,49.2410133127,49.2410133127 -20,0,20.89,40.6633333333,19.29,40.23,20.29,40.09,20.29,38.4,18.79,61.6633333333,-5.1566666667,87.3283333333,20,37.7,21.2,47.1566666667,17.6,40.1266666667,-4,762,87.3333333333,2,24.6666666667,-5.8333333333,1.9592358847,1.9592358847 -30,0,20.89,40.59,19.23,40.23,20.29,40.09,20.26,38.43,18.73,61.53,-5.19,87.6361111111,20.05,37.65,21.1333333333,47.29,17.6,40.2,-4,761.9,87,2,25,-5.9,44.6785644046,44.6785644046 -20,0,20.89,40.59,19.2,40.29,20.29,40.09,20.2,38.29,18.76,61.3633333333,-5.19,87.6577777778,20,37.5,21.1,47.4,17.6333333333,40.3266666667,-4,761.8166666667,86.8333333333,2.1666666667,25.3333333333,-5.9333333333,41.1199575639,41.1199575639 -50,0,20.79,40.59,19.2,40.3633333333,20.26,40.09,20.2,38.29,18.7,61.29,-5.2572222222,87.1816666667,20,37.4,21.1,47.4,17.6333333333,40.4,-4,761.7333333333,86.6666666667,2.3333333333,25.6666666667,-5.9666666667,36.2122346414,36.2122346414 -60,0,20.79,40.59,19.1666666667,40.4,20.2,40.09,20.2,38.23,18.7,61.1633333333,-5.3380952381,87.1123809524,20,37.4,21,47.4,17.6,40.4333333333,-4,761.65,86.5,2.5,26,-6,14.4460068899,14.4460068899 -40,0,20.76,40.53,19.1,40.4,20.245,40.245,20.1,38.09,18.6333333333,60.9633333333,-5.3428571429,86.9904761905,19.89,37.4,21,47.5666666667,17.6,40.5,-4,761.5666666667,86.3333333333,2.6666666667,26.3333333333,-6.0333333333,25.0974302297,25.0974302297 -50,0,20.7,40.59,19.1,40.4666666667,20.23,40.23,20.1,38.1633333333,18.6,60.8333333333,-5.4166666667,86.575,19.89,37.475,21,47.76,17.6,40.6266666667,-4,761.4833333333,86.1666666667,2.8333333333,26.6666666667,-6.0666666667,21.4173500659,21.4173500659 -40,0,20.7,40.59,19,40.4,20.23,40.23,20.0666666667,38.06,18.6,60.7,-5.51,85.9883333333,19.89,37.6266666667,20.9633333333,47.6633333333,17.6,40.76,-4,761.4,86,3,27,-6.1,30.5008008028,30.5008008028 -40,0,20.6333333333,40.53,19,40.4,20.26,40.29,20,38,18.6,60.56,-5.51,86.21,19.89,37.6266666667,20.89,47.59,17.6,40.9333333333,-4,761.3,85.6666666667,3,27,-6.1333333333,46.3056587032,46.3056587032 -50,0,20.6,40.53,18.9633333333,40.4,20.26,40.3633333333,19.89,38,18.5333333333,60.4333333333,-5.5,86.4555555556,19.89,37.73,20.89,47.56,17.6,41,-4,761.2,85.3333333333,3,27,-6.1666666667,12.006162887,12.006162887 -50,0,20.575,40.59,18.89,40.4,20.29,40.4,19.89,38,18.5,60.4,-5.4833333333,86.3644444444,19.89,37.79,20.89,47.5,17.6,41.1266666667,-4,761.1,85,3,27,-6.2,13.5940916953,13.5940916953 -40,0,20.5,40.59,18.89,40.4,20.29,40.4666666667,19.89,38,18.5,60.26,-5.4,86.7666666667,19.89,37.86,20.89,47.4,17.6,41.26,-4,761,84.6666666667,3,27,-6.2333333333,36.7501823232,36.7501823232 -50,0,20.5,40.6266666667,18.89,40.4,20.29,40.5,19.865,37.925,18.5,60.1266666667,-5.4444444444,86.5055555556,19.8233333333,38,20.89,47.3266666667,17.6,41.4,-4,760.9,84.3333333333,3,27,-6.2666666667,37.5772936502,37.5772936502 -40,0,20.4266666667,40.5666666667,18.79,40.29,20.29,40.5,19.79,37.9,18.39,59.9,-5.4722222222,86.3416666667,19.79,38,20.89,47.3175,17.6,41.4666666667,-4,760.8,84,3,27,-6.3,46.5295960428,46.5295960428 -50,0,20.39,40.59,18.79,40.3633333333,20.29,40.53,19.79,37.8633333333,18.39,59.9,-5.53,85.8394444444,19.79,37.95,20.89,47.4,17.6,41.59,-4.0833333333,760.7166666667,84.5,3,26.1666666667,-6.3166666667,23.1365137384,23.1365137384 -30,0,20.39,40.6633333333,18.7,40.3266666667,20.29,40.59,19.79,37.79,18.39,59.79,-5.53,86.3,19.79,37.9333333333,20.79,47.2,17.6,41.59,-4.1666666667,760.6333333333,85,3,25.3333333333,-6.3333333333,43.0345588364,43.0345588364 -20,0,20.29,40.7,18.7,40.4,20.26,40.59,19.7,37.8633333333,18.39,59.79,-5.5,86.3555555556,19.79,38,20.79,47.2,17.6,41.59,-4.25,760.55,85.5,3,24.5,-6.35,15.601820976,15.601820976 -30,0,20.29,40.7,18.7,40.4,20.26,40.59,19.7,37.8633333333,18.3566666667,59.7,-5.525,86.2,19.79,38,20.79,47.2,17.6,41.6266666667,-4.3333333333,760.4666666667,86,3,23.6666666667,-6.3666666667,10.4019506718,10.4019506718 -30,0,20.29,40.7,18.6333333333,40.3266666667,20.2,40.59,19.7,37.9,18.29,59.6266666667,-5.535,86.3827777778,19.79,38,20.73,47.2,17.6,41.7,-4.4166666667,760.3833333333,86.5,3,22.8333333333,-6.3833333333,46.0413733614,46.0413733614 -50,0,20.23,40.7,18.6,40.29,20.2,40.59,19.6333333333,37.9,18.29,59.59,-5.4833333333,86.7727777778,19.7,38.03,20.7,47.09,17.6,41.7,-4.5,760.3,87,3,22,-6.4,2.6368442108,2.6368442108 -80,0,20.2,40.7666666667,18.6,40.29,20.2,40.59,19.6,37.9,18.29,59.59,-5.4277777778,87.055,19.7225,38.045,20.7,47.09,17.6,41.76,-4.55,760.25,87.1666666667,2.8333333333,22,-6.4166666667,20.5577715533,20.5577715533 -40,0,20.2,41.0266666667,18.5666666667,40.4333333333,20.2,40.6633333333,19.6,37.9,18.29,59.5,-5.3833333333,86.8833333333,19.73,38.09,20.7,47.09,17.6,41.8633333333,-4.6,760.2,87.3333333333,2.6666666667,22,-6.4333333333,22.8170607588,22.8170607588 -50,10,20.2,41.2666666667,18.5666666667,40.6333333333,20.1,40.7,19.5666666667,37.9,18.29,59.5,-5.4,86.7755555556,19.7,38.09,20.7,47.09,17.6,41.79,-4.65,760.15,87.5,2.5,22,-6.45,20.7930123783,20.7930123783 -40,0,20.2,41.4,18.5,40.86,20.1,40.76,19.5,37.8266666667,18.2,59.3725,-5.4,86.71,19.7,38.09,20.6,46.9,17.6,41.76,-4.7,760.1,87.6666666667,2.3333333333,22,-6.4666666667,33.5176725872,33.5176725872 -70,10,20.1333333333,41.4,18.5,41,20.1,40.79,19.5,37.9,18.2,59.29,-5.3722222222,86.6644444444,19.6666666667,38.09,20.6,46.845,17.6,41.7,-4.75,760.05,87.8333333333,2.1666666667,22,-6.4833333333,37.8452040022,37.8452040022 -100,0,20.1333333333,41.4,18.5,41.1266666667,20.1,40.73,19.4266666667,37.9,18.23,59.2233333333,-5.3333333333,87.0366666667,19.6666666667,38.4233333333,20.6,46.9,17.5666666667,41.6633333333,-4.8,760,88,2,22,-6.5,45.5825657235,45.5825657235 -60,20,20.1,41.36,18.39,41.1266666667,20.1,40.79,19.4633333333,38.2666666667,18.29,58.88,-5.3,86.9222222222,19.7,38.4655555556,20.6,47.035,17.5,41.59,-4.75,759.9666666667,87.8333333333,2,21.6666666667,-6.4833333333,40.9976042924,40.9976042924 -50,0,20.1,41.56,18.39,41.3333333333,20.1,40.79,19.39,38.4666666667,18.29,58.79,-5.3333333333,86.5338888889,19.7,38.2666666667,20.6,47.03,17.5666666667,41.43,-4.7,759.9333333333,87.6666666667,2,21.3333333333,-6.4666666667,4.6824926278,4.6824926278 -40,0,20.1,41.59,18.3566666667,41.4633333333,20.1,40.73,19.39,38.4666666667,18.2,58.73,-5.2927777778,86.7077777778,19.6,37.93,20.5,46.76,17.5,41.23,-4.65,759.9,87.5,2,21,-6.45,8.8953040657,8.8953040657 -40,0,20.0333333333,41.4633333333,18.29,41.59,20.1,40.79,19.39,38.4,18.2,58.73,-5.1677777778,86.8183333333,19.6,37.745,20.5,46.5666666667,17.5,41.0266666667,-4.6,759.8666666667,87.3333333333,2,20.6666666667,-6.4333333333,32.1107290103,32.1107290103 -40,0,20.05,41.45,18.3566666667,41.59,20.1,40.79,19.39,38.4,18.15,58.745,-5.19,86.5366666667,19.575,37.5675,20.4725,46.2175,17.5,40.7666666667,-4.55,759.8333333333,87.1666666667,2,20.3333333333,-6.4166666667,43.7141496921,43.7141496921 -20,0,20,41.4,18.29,41.59,20.1,40.9,19.315,38.4,18.12,58.7,-5.2266666667,86.6716666667,19.5,37.45,20.39,45.895,17.5,40.5266666667,-4.5,759.8,87,2,20,-6.4,29.6156675206,29.6156675206 -20,0,20,41.4,18.29,41.59,20.0333333333,40.8266666667,19.29,38.3266666667,18.1333333333,58.7,-5.1855555556,86.9988888889,19.5,37.2,20.39,45.6333333333,17.4266666667,40.2666666667,-4.4333333333,759.7666666667,86.8333333333,2,20.3333333333,-6.35,13.121609611,13.121609611 -30,0,20,41.4,18.23,41.53,20,40.73,19.29,38.3633333333,18.1,58.59,-5.075,87.53,19.4266666667,37.0666666667,20.39,45.4333333333,17.39,39.9666666667,-4.3666666667,759.7333333333,86.6666666667,2,20.6666666667,-6.3,44.1876132041,44.1876132041 -50,0,19.9266666667,41.4,18.26,41.56,20,40.79,19.29,38.29,18.1,58.53,-4.9933333333,88.0244444444,19.39,36.8633333333,20.29,45.2233333333,17.39,39.8266666667,-4.3,759.7,86.5,2,21,-6.25,9.3844673131,9.3844673131 -50,0,19.89,41.4,18.2,41.56,19.89,40.79,19.2,38.2,18.1,58.5,-4.9,88.3377777778,19.39,36.73,20.29,45.03,17.39,39.645,-4.2333333333,759.6666666667,86.3333333333,2,21.3333333333,-6.2,24.4433491142,24.4433491142 -40,0,19.89,41.4,18.2,41.59,19.89,40.79,19.2,38.2,18.05,58.395,-4.8327777778,88.3827777778,19.39,36.56,20.29,44.8633333333,17.39,39.4666666667,-4.1666666667,759.6333333333,86.1666666667,2,21.6666666667,-6.15,0.4910243559,0.4910243559 -40,0,19.8566666667,41.3633333333,18.2,41.59,19.89,40.79,19.2,38.2,18,58.26,-4.7266666667,88.7738888889,19.39,36.5,20.29,44.79,17.39,39.4,-4.1,759.6,86,2,22,-6.1,18.0217021611,18.0217021611 -40,0,19.79,41.23,18.2,41.7,19.89,40.79,19.2,38.2,18,58.2,-4.6138888889,88.9666666667,19.29,36.4666666667,20.2,44.5,17.39,39.26,-4,759.55,86.1666666667,1.8333333333,22.1666666667,-5.9833333333,22.1080845455,22.1080845455 -40,0,19.79,41.2,18.1333333333,41.7,19.89,40.79,19.1,38.2,18,58.1633333333,-4.45,89.4472222222,19.29,36.4,20.2,44.36,17.3233333333,39.1266666667,-3.9,759.5,86.3333333333,1.6666666667,22.3333333333,-5.8666666667,6.2864610692,6.2864610692 -50,0,19.79,41.2,18.1,41.73,19.89,40.79,19.1,38.1266666667,18,58.09,-4.2683333333,89.945,19.245,36.245,20.1,44.26,17.29,39.06,-3.8,759.45,86.5,1.5,22.5,-5.75,31.2182273832,31.2182273832 -50,0,19.76,41.2,18.1,41.79,19.89,40.79,19.1666666667,38,18,58,-4.0394444444,90.4027777778,19.23,36.1266666667,20.1,44.1266666667,17.29,39,-3.7,759.4,86.6666666667,1.3333333333,22.6666666667,-5.6333333333,15.1215665857,15.1215665857 -50,0,19.7,41.2,18.1,41.79,19.8233333333,40.73,19.1,38,17.9266666667,57.9333333333,-3.7983333333,90.8533333333,19.23,36.0666666667,20.1,44,17.29,38.9,-3.6,759.35,86.8333333333,1.1666666667,22.8333333333,-5.5166666667,11.9818614097,11.9818614097 -40,0,19.7,41.1633333333,18.1,41.79,19.84,40.745,19.1,37.9666666667,17.89,57.9,-3.6016666667,91.2894444444,19.2,36,20.0333333333,43.9333333333,17.29,38.8266666667,-3.5,759.3,87,1,23,-5.4,17.9314881796,17.9314881796 -40,0,19.7,41.1633333333,18.1,41.79,19.89,40.79,19.1,37.9666666667,17.89,57.8266666667,-3.3688888889,91.7527777778,19.2,35.9333333333,20.05,43.895,17.29,38.76,-3.2833333333,759.2333333333,85.8333333333,1.3333333333,25.8333333333,-5.3833333333,44.6455206256,44.6455206256 -20,0,19.7,41.2,18.1,41.79,19.89,40.79,19.1,37.9,17.89,57.7675,-3.14,92.2016666667,19.2,35.8633333333,20,43.6633333333,17.29,38.6266666667,-3.0666666667,759.1666666667,84.6666666667,1.6666666667,28.6666666667,-5.3666666667,49.5313632535,49.5313632535 -20,0,19.7,41.2,18.1,41.79,19.79,40.6633333333,19.1,37.9,17.89,57.7,-2.8627777778,92.6544444444,19.2,35.79,20,43.53,17.29,38.59,-2.85,759.1,83.5,2,31.5,-5.35,36.6210598731,36.6210598731 -30,0,19.6,41.09,18.1333333333,41.7,19.79,40.59,19.1,37.9666666667,17.89,57.6633333333,-2.6016666667,93.015,19.1,35.7,20,43.5,17.29,38.53,-2.6333333333,759.0333333333,82.3333333333,2.3333333333,34.3333333333,-5.3333333333,49.6394044138,49.6394044138 -40,0,19.6,41.03,18.1333333333,41.7,19.76,40.59,19.1,37.9666666667,17.89,57.59,-2.3283333333,93.485,19.1,35.6266666667,19.9266666667,43.4333333333,17.29,38.5,-2.4166666667,758.9666666667,81.1666666667,2.6666666667,37.1666666667,-5.3166666667,26.9894681056,26.9894681056 -50,0,19.6,41.045,18.2,41.6633333333,19.7,40.59,19.1,38.045,17.89,57.5,-2.0405555556,93.8544444444,19.1,35.59,19.89,43.29,17.29,38.4333333333,-2.2,758.9,80,3,40,-5.3,21.6900880914,21.6900880914 -50,0,19.6,41.1266666667,18.2,41.59,19.7,40.7,19.1,38.09,17.8566666667,57.3633333333,-1.8388888889,94.1144444444,19.1,35.59,19.89,43.29,17.29,38.4,-2.0666666667,758.8166666667,79,3,40,-5.3333333333,48.23368371,48.23368371 -40,0,19.6,41.2,18.2,41.59,19.76,40.7,19.1,38.03,17.79,57.29,-1.6433333333,94.3972222222,19.1,35.5,19.89,43.2,17.29,38.3266666667,-1.9333333333,758.7333333333,78,3,40,-5.3666666667,7.4159821612,7.4159821612 -40,0,19.6,41.2,18.26,41.59,19.79,40.7,19.1,38,17.79,57.2,-1.3755555556,94.6077777778,19.1,35.5,19.8233333333,43.0666666667,17.26,38.26,-1.8,758.65,77,3,40,-5.4,3.3246527892,3.3246527892 -50,0,19.6,41.2,18.23,41.53,19.79,40.7,19.1,38,17.79,57.1266666667,-1.16,94.745,19.0333333333,35.3266666667,19.8566666667,43.06,17.2,38.2,-1.6666666667,758.5666666667,76,3,40,-5.4333333333,1.2125744019,1.2125744019 -40,0,19.6,41.23,18.29,41.59,19.79,40.7,19.0666666667,37.9666666667,17.79,57.0675,-1.0555555556,94.7444444444,19.1,35.4,19.79,42.9333333333,17.29,38.29,-1.5333333333,758.4833333333,75,3,40,-5.4666666667,30.6211620918,30.6211620918 -40,0,19.5333333333,41.29,18.29,41.59,19.79,40.7,19.0666666667,38.0266666667,17.79,57,-0.8444444444,94.8544444444,19,35.26,19.79,42.9,17.23,38.23,-1.4,758.4,74,3,40,-5.5,34.8304374027,34.8304374027 -50,0,19.5,41.29,18.29,41.53,19.79,40.7,19.0333333333,38.0666666667,17.76,56.9666666667,-0.7055555556,94.865,19,35.2,19.79,42.9,17.29,38.29,-1.35,758.3,73.6666666667,3,40,-5.5166666667,40.0570943602,40.0570943602 -40,0,19.5,41.29,18.29,41.5,19.79,40.7,19.0333333333,38.1266666667,17.76,56.9,-0.6333333333,94.6677777778,19.1,35.26,19.79,42.8633333333,17.2,38.2,-1.3,758.2,73.3333333333,3,40,-5.5333333333,6.8865141948,6.8865141948 -50,0,19.5,41.29,18.29,41.5,19.73,40.7,19,38.09,17.79,56.79,-0.5,94.7961111111,19.0333333333,35.1266666667,19.79,42.79,17.26,38.26,-1.25,758.1,73,3,40,-5.55,7.9892411362,7.9892411362 -40,0,19.5,41.29,18.29,41.5,19.79,40.7,19,38.1633333333,17.73,56.73,-0.3611111111,94.9,19,35.045,19.79,42.73,17.29,38.29,-1.2,758,72.6666666667,3,40,-5.5666666667,49.4416796486,49.4416796486 -20,0,19.5,41.29,18.29,41.5,19.79,40.7,19,38.2,17.76,56.6633333333,-0.2666666667,95.0438888889,19,34.9666666667,19.73,42.73,17.23,38.23,-1.15,757.9,72.3333333333,3,40,-5.5833333333,19.9322847766,19.9322847766 -20,0,19.5,41.29,18.29,41.5,19.79,40.7,19,38.2,17.7,56.59,-0.1055555556,95.1788888889,19,34.9,19.79,42.6633333333,17.23,38.2,-1.1,757.8,72,3,40,-5.6,9.3955908087,9.3955908087 -30,0,19.5,41.4,18.245,41.45,19.745,40.7,19,38.2,17.7,56.5,0.0388888889,95.2572222222,19,34.8266666667,19.745,42.645,17.23,38.1266666667,-1.0166666667,757.7166666667,71.6666666667,3,40,-5.5833333333,23.8864120562,23.8864120562 -40,0,19.5,41.4,18.29,41.5,19.7,40.7,19,38.2,17.7,56.5,0.15,95.3277777778,19,34.8266666667,19.7,42.59,17.29,38.09,-0.9333333333,757.6333333333,71.3333333333,3,40,-5.5666666667,27.2117011365,27.2117011365 -50,0,19.39,41.29,18.23,41.4333333333,19.7,40.7,19,38.23,17.7,56.4,0.3,95.5033333333,19,34.79,19.7,42.59,17.29,38.09,-0.85,757.55,71,3,40,-5.55,16.4078990347,16.4078990347 -50,0,19.39,41.29,18.29,41.5,19.7,40.7,18.9266666667,38.29,17.7,56.3266666667,0.3777777778,95.4722222222,19,34.73,19.7,42.53,17.2,38,-0.7666666667,757.4666666667,70.6666666667,3,40,-5.5333333333,49.9965296825,49.9965296825 -50,0,19.4633333333,41.3633333333,18.2,41.4,19.7,40.7,18.89,38.29,17.7,56.29,0.4666666667,95.4222222222,19,34.6266666667,19.7,42.5,17.26,38,-0.6833333333,757.3833333333,70.3333333333,3,40,-5.5166666667,26.3890917995,26.3890917995 -40,0,19.39,41.29,18.26,41.4666666667,19.7,40.7,18.89,38.29,17.6333333333,56.1566666667,0.5666666667,95.3722222222,19,34.645,19.7,42.4333333333,17.29,38,-0.6,757.3,70,3,40,-5.5,6.6867254092,6.6867254092 -40,0,19.39,41.29,18.29,41.5,19.7,40.7,18.89,38.29,17.66,56.09,0.6611111111,95.4222222222,19,34.56,19.7,42.4,17.29,38,-0.5666666667,757.25,69.5,3,38.1666666667,-5.55,21.9270033878,21.9270033878 -40,0,19.39,41.345,18.29,41.5,19.7,40.7,18.89,38.29,17.625,55.9975,0.7,95.525,19,34.5675,19.7,42.4,17.2,37.9,-0.5333333333,757.2,69,3,36.3333333333,-5.6,31.03969699,31.03969699 -40,0,19.39,41.3633333333,18.29,41.5,19.7,40.7,18.89,38.29,17.6666666667,55.9666666667,0.7833333333,95.6566666667,19,34.7,19.625,42.3175,17.2,37.9,-0.5,757.15,68.5,3,34.5,-5.65,10.1456206059,10.1456206059 -40,0,19.39,41.3633333333,18.29,41.5,19.7,40.7,18.89,38.29,17.6,55.9,0.7888888889,95.59,19,34.76,19.675,42.3725,17.2,37.9,-0.4666666667,757.1,68,3,32.6666666667,-5.7,6.7084886367,6.7084886367 -50,0,19.39,41.3633333333,18.26,41.5,19.7,40.7,18.89,38.3633333333,17.6,55.845,0.8055555556,95.7083333333,19,34.7,19.6,42.2,17.2,37.9,-0.4333333333,757.05,67.5,3,30.8333333333,-5.75,38.841699902,38.841699902 -50,0,19.29,41.4,18.2,41.5,19.7,40.7,18.89,38.29,17.6,55.7675,0.8666666667,95.8777777778,19,34.7,19.65,42.1725,17.2,37.79,-0.4,757,67,3,29,-5.8,31.7974924343,31.7974924343 -30,0,19.3566666667,41.4,18.2,41.4,19.7,40.7,18.89,38.29,17.6,55.7,0.8888888889,96.0133333333,19,34.7,19.6,42.09,17.2,37.79,-0.4166666667,756.9666666667,67.5,2.8333333333,30.8333333333,-5.7333333333,14.106814831,14.106814831 -20,0,19.29,41.4,18.2,41.4,19.7,40.6633333333,18.8566666667,38.3633333333,17.6,55.6725,0.9,96.01,19,34.7,19.6,42,17.2,37.79,-0.4333333333,756.9333333333,68,2.6666666667,32.6666666667,-5.6666666667,9.562972805,9.562972805 -30,0,19.29,41.4,18.2,41.4,19.7,40.6633333333,18.79,38.29,17.6,55.59,0.8944444444,95.9777777778,19,34.7,19.6,41.9333333333,17.2,37.79,-0.45,756.9,68.5,2.5,34.5,-5.6,13.2768359967,13.2768359967 -30,0,19.3233333333,41.4,18.2,41.4,19.6,40.59,18.79,38.29,17.575,55.5675,0.7833333333,95.7561111111,19,34.6633333333,19.6,41.8633333333,17.2,37.79,-0.4666666667,756.8666666667,69,2.3333333333,36.3333333333,-5.5333333333,26.5404396458,26.5404396458 -40,0,19.3233333333,41.4,18.2,41.4,19.6,40.59,18.79,38.23,17.5,55.4666666667,0.6333333333,95.5442857143,19,34.59,19.6,41.79,17.2,37.7,-0.4833333333,756.8333333333,69.5,2.1666666667,38.1666666667,-5.4666666667,34.2430452001,34.2430452001 -50,0,19.29,41.4,18.2,41.4,19.5666666667,40.59,18.79,38.2,17.5,55.3842857143,0.4952380952,95.4661904762,18.9633333333,34.4846666667,19.6,41.79,17.2,37.7,-0.5,756.8,70,2,40,-5.4,19.1641696845,19.1641696845 -50,0,19.29,41.4,18.2,41.4,19.55,40.6725,18.79,38.2,17.5,55.3266666667,0.3888888889,95.2022222222,18.9022222222,34.3327777778,19.6,41.79,17.2,37.59,-0.6166666667,756.7666666667,72,2,38.1666666667,-5.1666666667,47.7493999177,47.7493999177 -50,0,19.29,41.29,18.175,41.475,19.5666666667,40.7,18.7,38.1633333333,17.5,55.2346153846,0.2277777778,94.99,18.9083333333,34.29,19.6,41.824375,17.2,37.59,-0.7333333333,756.7333333333,74,2,36.3333333333,-4.9333333333,5.9178290307,5.9178290307 -40,0,19.29,41.29,18.1,41.5,19.6,40.59,18.7,38.09,17.5,55.2,0,94.6272222222,18.89,34.29,19.5636363636,41.86,17.1,37.5,-0.85,756.7,76,2,34.5,-4.7,1.9550027675,1.9550027675 -40,0,19.29,41.29,18.1,41.56,19.6,40.59,18.7,38,17.5,55.1755555556,-0.2277777778,94.1672222222,18.89,34.29,19.525,41.8725,17.1,37.5,-0.9666666667,756.6666666667,78,2,32.6666666667,-4.4666666667,25.2252516453,25.2252516453 -50,0,19.29,41.29,18.1,41.56,19.5666666667,40.6266666667,18.7,38.06,17.5,55.09,-0.4722222222,93.6905555556,18.89,34.29,19.5,41.9,17.1,37.4,-1.0833333333,756.6333333333,80,2,30.8333333333,-4.2333333333,28.9241277613,28.9241277613 -40,0,19.2,41.2,18.0666666667,41.56,19.5,40.7,18.7,38.09,17.39,55,-0.6777777778,93.2227777778,18.8233333333,34.3633333333,19.5,41.9,17.1,37.4,-1.2,756.6,82,2,29,-4,41.9651953969,41.9651953969 -40,0,19.2,41.2,18,41.5,19.5,40.7,18.6333333333,38.03,17.4266666667,54.9666666667,-1.0266666667,91.0538888889,18.79,34.3371428571,19.445,41.845,17.1,37.29,-1.3333333333,756.6,82.8333333333,2.1666666667,28.1666666667,-3.9833333333,32.7222487656,32.7222487656 -40,0,19.2,41.2,18,41.5,19.5,40.7,18.6,38.045,17.39,54.79,-1.43,89.29,18.79,34.4,19.434,41.834,17.1,37.29,-1.4666666667,756.6,83.6666666667,2.3333333333,27.3333333333,-3.9666666667,47.2264169948,47.2264169948 -40,0,19.2,41.2,17.9266666667,41.5,19.5,40.7,18.6,38.09,17.42,54.79,-1.6972222222,88.9388888889,18.79,34.4,19.39,41.75,17.0666666667,37.26,-1.6,756.6,84.5,2.5,26.5,-3.95,25.5828814814,25.5828814814 -20,0,19.1333333333,41.1266666667,17.89,41.53,19.5,40.7,18.6,38.09,17.39,54.7,-1.8627777778,88.8494444444,18.754,34.4,19.39,41.7,17,37.2,-1.7333333333,756.6,85.3333333333,2.6666666667,25.6666666667,-3.9333333333,4.2460529599,4.2460529599 -30,0,19.1,41.1266666667,17.89,41.59,19.5,40.6633333333,18.5666666667,38.1633333333,17.39,54.678,-1.9988888889,88.8133333333,18.7,34.4,19.39,41.7,17.0666666667,37.2,-1.8666666667,756.6,86.1666666667,2.8333333333,24.8333333333,-3.9166666667,49.7385254712,49.7385254712 -30,10,19.1,41.1266666667,17.89,41.59,19.4266666667,40.53,18.5,38.09,17.39,54.59,-2.01,89.5916666667,18.7,34.4,19.3566666667,41.7,17,37.1175,-2,756.6,87,3,24,-3.9,20.0722059933,20.0722059933 -70,10,19.1,41.2,17.8233333333,41.53,19.39,40.4,18.5,38.1266666667,17.39,54.59,-2,90.1433333333,18.7,34.5,19.29,41.7,17,37.09,-2.0833333333,756.6,86.3333333333,3,24,-4.0833333333,44.7823148337,44.7823148337 -230,10,19.1,41,17.79,41.56,19.39,40.3266666667,18.5,38.2,17.39,54.5675,-2.035,90.4466666667,18.7,34.5,19.315,42.0225,17,37.1266666667,-2.1666666667,756.6,85.6666666667,3,24,-4.2666666667,43.8429206028,43.8429206028 -660,10,19.1,40.9333333333,17.79,41.4333333333,19.3566666667,40.2,18.4633333333,38.1633333333,17.34,54.5,-2.155,90.7383333333,18.6,34.59,19.412,42.196,17,37.2,-2.25,756.6,85,3,24,-4.45,14.824239898,14.824239898 -510,0,19.1,41,17.79,41.4633333333,19.29,40.26,18.39,38.1633333333,17.29,54.5,-2.2911111111,90.7111111111,18.6,34.59,19.5666666667,42.4666666667,17,37.29,-2.3333333333,756.6,84.3333333333,3,24,-4.6333333333,6.6295954864,6.6295954864 -300,10,19.1,41.1933333333,17.79,41.59,19.29,40.23,18.39,38.2,17.29,54.4333333333,-2.3988888889,90.5811111111,18.6,34.7,19.73,42.8266666667,17,37.29,-2.4166666667,756.6,83.6666666667,3,24,-4.8166666667,13.2955453824,13.2955453824 -300,20,19.1,41.4666666667,17.9266666667,41.86,19.29,40.29,18.39,38.2,17.29,54.4,-2.5294444444,90.2661111111,18.5333333333,34.7,19.865,43.0425,16.9633333333,37.29,-2.5,756.6,83,3,24,-5,0.2863771399,0.2863771399 -350,10,19.23,41.5666666667,18.0666666667,42.06,19.39,40.2,18.3566666667,38.3266666667,17.29,54.4,-2.6694444444,89.9861111111,18.6,34.79,19.9266666667,43.2666666667,16.89,37.29,-2.5,756.65,82.1666666667,3,24.5,-5.1333333333,40.980091074,40.980091074 -90,10,19.3566666667,41.96,18.1333333333,41.9333333333,19.39,40.05,18.29,38.4,17.29,54.33,-2.7,90.1511111111,18.5166666667,34.8816666667,20.0375,43.485,16.89,37.29,-2.5,756.7,81.3333333333,3,25,-5.2666666667,8.733083948,8.733083948 -100,0,19.6966666667,42.7233333333,18.2925,42.27,19.53,40.1333333333,18.29,38.4333333333,17.29,54.29,-2.745,90.0172222222,18.5,34.8725,20.0181818182,43.3781818182,16.89,37.29,-2.5,756.75,80.5,3,25.5,-5.4,42.1540276031,42.1540276031 -130,10,19.9633333333,42.53,18.4633333333,42.6333333333,19.6333333333,40.33,18.29,38.5,17.3727272727,56.9009090909,-2.8572222222,89.8611111111,18.48,34.88,19.9725,43.333125,16.89,37.3,-2.5,756.8,79.6666666667,3,26,-5.5333333333,8.3356083371,8.3356083371 -200,0,20.1,42.1,18.7,42.4666666667,19.7,40.59,18.29,38.5,17.9507692308,72.8715384615,-2.9333333333,89.8722222222,18.48,34.88,20.0272727273,43.7454545455,16.9633333333,37.9666666667,-2.5,756.85,78.8333333333,3,26.5,-5.6666666667,38.2009717519,38.2009717519 -480,0,20.1,41.8266666667,18.76,42.5266666667,19.7,40.59,18.29,38.5,18,70.1975,-2.9722222222,89.7277777778,18.5,34.8555555556,20.1333333333,43.83,17,39.36,-2.5,756.9,78,3,27,-5.8,25.9469043696,25.9469043696 -430,10,20.1333333333,41.9,18.9266666667,42.7966666667,19.76,40.9966666667,18.26,38.43,18.3,72.745,-3.03,89.6744444444,18.3771428571,34.1257142857,20.1857142857,43.2771428571,17.0666666667,40.1,-2.5833333333,756.8833333333,78.8333333333,2.8333333333,26.5,-5.75,13.6342651676,13.6342651676 -630,10,20.2,41.6933333333,19.0666666667,42.53,20.0666666667,42.7333333333,18.2,38.2225,19.6233333333,84.9666666667,-3.06,89.9105555556,18.29,33.49,20.1333333333,42.93,17.0666666667,39.8633333333,-2.6666666667,756.8666666667,79.6666666667,2.6666666667,26,-5.7,17.1601567883,17.1601567883 -600,10,20.29,41.3633333333,19.2,41.9233333333,20.3266666667,43.8,18.4,38.7333333333,19.0233333333,86.5666666667,-3.06,90.0461111111,18.29,33.1566666667,20.1333333333,43.2,17,39.39,-2.75,756.85,80.5,2.5,25.5,-5.65,35.2537670056,35.2537670056 -470,20,20.365,40.8925,19.26,41.39,20.5666666667,44.39,19.0233333333,38.9666666667,18.575,86.875,-3.1277777778,89.455,18.26,32.7966666667,20.2,43.08,17,38.9,-2.8333333333,756.8333333333,81.3333333333,2.3333333333,25,-5.6,29.576765059,29.576765059 -740,10,20.4633333333,40.7666666667,19.39,41.06,20.76,46.0566666667,19.4966666667,38.6933333333,18.4266666667,86.4644444444,-3.21,89.2366666667,18.2,32.4228571429,20.2257142857,42.7292857143,16.9266666667,38.3666666667,-2.9166666667,756.8166666667,82.1666666667,2.1666666667,24.5,-5.55,23.4689518809,23.4689518809 -600,0,20.5,40.7,19.4633333333,40.9333333333,20.79,46.8333333333,20.13,38.1,18.31,85.454,-3.3216666667,88.745,18.2,32.2228571429,20.2,42.59,16.89,38.09,-3,756.8,83,2,24,-5.5,16.8188302778,16.8188302778 -560,10,20.5666666667,40.6266666667,19.5,40.6333333333,20.93,46.6266666667,20.5966666667,37.6933333333,18.29,84.2666666667,-3.4566666667,87.905,18.2,31.9633333333,20.33,42.58,16.89,37.87,-3.1666666667,756.7666666667,83.5,2,23.3333333333,-5.6,48.3918714337,48.3918714337 -440,20,20.6,40.4,19.5666666667,40.4333333333,21.1333333333,46.1233333333,21.0966666667,37.3633333333,18.23,83.3266666667,-3.6722222222,86.8094444444,18.1333333333,31.8233333333,20.39,42.1333333333,16.8233333333,37.39,-3.3333333333,756.7333333333,84,2,22.6666666667,-5.7,32.2920941864,32.2920941864 -280,10,20.6666666667,40.2666666667,19.6,40.0266666667,21.26,45.3966666667,21.4966666667,37.0966666667,18.1666666667,82.29,-3.8972222222,85.8738888889,18.1,31.6333333333,20.3233333333,42.1333333333,16.8566666667,37.1,-3.5,756.7,84.5,2,22,-5.8,9.8150584614,9.8150584614 -110,20,20.73,39.6333333333,19.6727272727,39.6381818182,21.1333333333,44.13,21.79,37.09,18.0545454545,80.1536363636,-4.015,86.0055555556,18.1,31.3933333333,20.34,42.0283333333,16.79,36.7666666667,-3.6666666667,756.6666666667,85,2,21.3333333333,-5.9,17.8590192576,17.8590192576 -80,10,20.79,39.36,19.7,39.1966666667,20.9266666667,43.33,21.73,36.83,18,78.3191666667,-4.07,86.2572222222,18.0111111111,31.1655555556,20.29,41.8266666667,16.8233333333,37.1333333333,-3.8333333333,756.6333333333,85.5,2,20.6666666667,-6,25.6509041064,25.6509041064 -70,20,20.76,38.7966666667,19.7,38.6333333333,20.79,42.5633333333,21.43,36.6333333333,17.89,75.4333333333,-4.1938888889,85.6222222222,18,31.0333333333,20.29,41.8266666667,16.89,38.3333333333,-4,756.6,86,2,20,-6.1,44.1498370259,44.1498370259 -50,10,20.76,38.4633333333,19.7,38.3616666667,20.73,42.03,21.23,36.36,17.89,73.2266666667,-4.4,84.6122222222,18,30.89,20.29,41.9,17,39.0966666667,-4.15,756.6,86.3333333333,1.8333333333,27.3333333333,-6.1833333333,7.6333782636,7.6333782636 -50,10,20.76,38.29,19.7,38.23,20.6,41.7,21.0666666667,36.6266666667,17.85,71.174,-4.5466666667,84.2544444444,18,31.31,20.2,42.03,17.0666666667,39.43,-4.3,756.6,86.6666666667,1.6666666667,34.6666666667,-6.2666666667,11.5230798721,11.5230798721 -60,20,20.7,38.29,19.7,38.36,20.525,41.65,20.9266666667,36.8333333333,17.775,69.195,-4.8794444444,82.5377777778,18,31.93,20.2,42.24,17,39.4,-4.45,756.6,87,1.5,42,-6.35,8.1494289218,8.1494289218 -60,10,20.7,38.3266666667,19.7,38.56,20.5,41.5,20.8566666667,37.09,17.73,68.5,-5.2161111111,81.6327777778,18,32.25,20.2,42.558,17,39.4,-4.6,756.6,87.3333333333,1.3333333333,49.3333333333,-6.4333333333,30.7173429523,30.7173429523 -50,10,20.7,38.4666666667,19.7,38.73,20.39,41.3633333333,20.73,37.1633333333,17.7,67.7666666667,-5.2505555556,82.8511111111,18,32.5266666667,20.2,42.93,17,39.4,-4.75,756.6,87.6666666667,1.1666666667,56.6666666667,-6.5166666667,25.0818221946,25.0818221946 -60,20,20.6666666667,38.59,19.625,38.8175,20.3233333333,41.23,20.6666666667,37.4333333333,17.7,67.3666666667,-5.0638888889,84.4333333333,18,32.73,20.2,43.1266666667,17,39.3266666667,-4.9,756.6,88,1,64,-6.6,9.4059444033,9.4059444033 -50,10,20.6,38.6633333333,19.5333333333,38.9666666667,20.29,41.0266666667,20.6,37.56,17.7,66.9933333333,-5.3488888889,82.9338888889,18,32.8633333333,20.2,43.3333333333,17,39.26,-4.8333333333,756.6,87.8333333333,1,64.1666666667,-6.55,20.3857426299,20.3857426299 -50,10,20.6,38.79,19.4633333333,39.03,20.23,40.8266666667,20.5666666667,37.73,17.6333333333,66.6,-5.5494444444,82.4416666667,18,33.09,20.2,43.53,16.9266666667,39.2,-4.7666666667,756.6,87.6666666667,1,64.3333333333,-6.5,29.1194023448,29.1194023448 -40,20,20.5333333333,38.8633333333,19.39,39.09,20.2,40.7,20.5,37.8633333333,17.6,66.1828571429,-5.6744444444,82.6655555556,18,33.2055555556,20.15,43.59,16.89,39.09,-4.7,756.6,87.5,1,64.5,-6.45,15.4464532505,15.4464532505 -30,10,20.5,38.9333333333,19.3566666667,39.1566666667,20.1333333333,40.6266666667,20.39,38,17.6,65.813125,-5.7994444444,82.7127777778,18,33.3676470588,20.1,43.76,16.89,39.09,-4.6333333333,756.6,87.3333333333,1,64.6666666667,-6.4,24.0482820082,24.0482820082 -40,10,20.5,39.06,19.29,39.29,20.0666666667,40.4666666667,20.3566666667,38.1266666667,17.6,65.5435714286,-5.8722222222,82.655,18,33.4,20.1,43.8633333333,16.89,39.09,-4.5666666667,756.6,87.1666666667,1,64.8333333333,-6.35,46.9697396155,46.9697396155 -50,20,20.39,39.09,19.2,39.23,20,40.3266666667,20.29,38.26,17.5555555556,65.2333333333,-5.8888888889,82.8161111111,17.9755555556,33.4833333333,20.1,43.99375,16.89,39.09,-4.5,756.6,87,1,65,-6.3,2.3020274122,2.3020274122 -50,0,20.39,39.2,19.1333333333,39.3633333333,19.9633333333,40.29,20.26,38.4,17.5333333333,64.944,-6.03,82.0944444444,17.9685714286,33.5192857143,20.06,44.036,16.8566666667,39.06,-4.5166666667,756.6,87.6666666667,1,65,-6.2333333333,26.7430864857,26.7430864857 -50,0,20.3233333333,39.2,19.0666666667,39.3633333333,19.89,40.29,20.2,38.4,17.5,64.6471428571,-6.065,82.5605555556,17.9576923077,33.5761538462,20.06,44.314,16.84,39.045,-4.5333333333,756.6,88.3333333333,1,65,-6.1666666667,22.1330391127,22.1330391127 -40,0,20.29,39.53,19,39.29,19.8566666667,40.2233333333,20.1,38.53,17.5,64.5172222222,-6.0283333333,83.5894444444,17.938125,33.63125,20.1,44.624375,16.79,39.06,-4.55,756.6,89,1,65,-6.1,45.3182734782,45.3182734782 -50,0,20.23,39.4633333333,18.89,39.26,19.79,40.09,20.0333333333,38.59,17.4755555556,64.1955555556,-5.8438888889,84.9311111111,17.9144444444,33.6938888889,20.1,44.715,16.89,39.23,-4.5666666667,756.6,89.6666666667,1,65,-6.0333333333,44.0521190874,44.0521190874 -40,0,20.2,39.4,18.89,39.26,19.79,40.09,19.8566666667,38.56,17.4633333333,63.885,-5.71,85.3544444444,17.9083333333,33.7,20.1,44.8205555556,16.89,39.3633333333,-4.5833333333,756.6,90.3333333333,1,65,-5.9666666667,8.1620558165,8.1620558165 -50,0,20.1333333333,39.4,18.76,39.09,19.73,40.09,19.79,38.5,17.445,63.6716666667,-5.6011111111,85.4977777778,17.8961111111,33.7,20.0388888889,44.7777777778,16.79,39.4333333333,-4.6,756.6,91,1,65,-5.9,37.6095382846,37.6095382846 -40,0,20.1,39.29,18.7,39.09,19.7,40.09,19.7,38.5,17.39,63.4433333333,-5.6122222222,85.3144444444,17.89,33.7,20,44.7,16.79,39.56,-4.55,756.5333333333,90.5,1,57.5,-5.9166666667,20.1493601082,20.1493601082 -50,0,20.1,39.23,18.6666666667,39.06,19.76,40.2233333333,19.6333333333,38.4333333333,17.39,63.2933333333,-5.555,85.3994444444,17.89,33.735,19.9083333333,44.7,16.89,39.7,-4.5,756.4666666667,90,1,50,-5.9333333333,27.847634675,27.847634675 -50,0,20,39.2,18.6,39.06,19.79,40.3266666667,19.5,38.4,17.3788888889,63.145,-5.52,85.515,17.89,33.8144444444,19.8566666667,44.715,16.8233333333,39.7,-4.45,756.4,89.5,1,42.5,-5.95,4.0084640961,4.0084640961 -40,0,20,39.2,18.5666666667,39,19.815,40.425,19.5,38.4666666667,17.3788888889,62.9577777778,-5.4611111111,85.7027777778,17.89,33.8,19.7955555556,44.7783333333,16.89,39.8266666667,-4.4,756.3333333333,89,1,35,-5.9666666667,5.8284296189,5.8284296189 -40,0,19.89,39.2,18.5,39.06,19.89,40.5,19.39,38.4333333333,17.3566666667,62.79,-5.4,85.9672222222,17.8344444444,33.8266666667,19.79,44.9277777778,16.89,39.9666666667,-4.35,756.2666666667,88.5,1,27.5,-5.9833333333,46.2596280617,46.2596280617 -30,0,19.89,39.2,18.4633333333,39.06,19.89,40.5,19.3233333333,38.5,17.3177777778,62.6722222222,-5.3833333333,86.0216666667,17.8011111111,33.8022222222,19.79,45.0661111111,16.79,39.9,-4.3,756.2,88,1,20,-6,43.942212034,43.942212034 -20,0,19.79,39.09,18.39,39.0675,19.89,40.56,19.26,38.4666666667,17.29,62.5283333333,-5.3222222222,86.1616666667,17.8066666667,33.8388888889,19.79,45.2477777778,16.8566666667,40.0266666667,-4.3333333333,756.25,88.5,1,27.3333333333,-5.9666666667,8.1603813451,8.1603813451 -20,0,19.79,39.09,18.3233333333,39.09,19.79,40.4,19.2,38.4,17.29,62.3144444444,-5.3388888889,85.7622222222,17.79,33.8266666667,19.755,45.3083333333,16.8233333333,40.1266666667,-4.3666666667,756.3,89,1,34.6666666667,-5.9333333333,26.5781950671,26.5781950671 -40,0,19.7,39.09,18.3566666667,39.1266666667,19.79,40.4,19.1666666667,38.4,17.29,62.155,-5.35,85.5944444444,17.79,33.9,19.7,45.4,16.89,40.26,-4.4,756.35,89.5,1,42,-5.9,46.4896084159,46.4896084159 -50,0,19.7,39.09,18.29,39.2,19.79,40.4,19.1,38.4,17.29,61.97,-5.3277777778,85.4855555556,17.79,33.8694444444,19.7,45.4983333333,16.79,40.29,-4.4333333333,756.4,90,1,49.3333333333,-5.8666666667,16.2857996882,16.2857996882 -40,0,19.6666666667,39.06,18.2,39.2,19.79,40.4666666667,19.0333333333,38.4,17.28,61.765,-5.3888888889,85.0572222222,17.79,33.8572222222,19.7,45.58,16.79,40.3633333333,-4.4666666667,756.45,90.5,1,56.6666666667,-5.8333333333,8.039731544,8.039731544 -50,0,19.6,39,18.2,39.2,19.79,40.5,19,38.29,17.235,61.57,-5.3388888889,85.4944444444,17.755,33.8755555556,19.7,45.505,16.79,40.4333333333,-4.5,756.5,91,1,64,-5.8,47.4853958935,47.4853958935 -50,0,19.55,38.95,18.1,39.26,19.79,40.5,18.9266666667,38.29,17.21,61.3883333333,-5.3,85.7266666667,17.755,33.9,19.7,45.5,16.79,40.5,-4.4333333333,756.45,90.6666666667,1,64,-5.7833333333,23.1178524322,23.1178524322 -40,0,19.5,39,18.1,39.26,19.79,40.5,18.89,38.29,17.2,61.2488888889,-5.2572222222,85.8383333333,17.73,33.9,19.7,45.5,16.8566666667,40.7,-4.3666666667,756.4,90.3333333333,1,64,-5.7666666667,11.0385443666,11.0385443666 -40,0,19.5,39,18.0666666667,39.26,19.73,40.5,18.89,38.29,17.2,61.1266666667,-5.1733333333,86.0616666667,17.735,33.9,19.7,45.45,16.79,40.795,-4.3,756.35,90,1,64,-5.75,0.1009616302,0.1009616302 -50,0,19.39,38.9,18,39.2,19.79,40.59,18.79,38.2,17.2,61.0094444444,-5.0738095238,86.4823809524,17.72,33.9,19.6384615385,45.3153846154,16.79,40.9,-4.2333333333,756.3,89.6666666667,1,64,-5.7333333333,30.9596301639,30.9596301639 -50,0,19.39,38.9,18,39.29,19.73,40.59,18.79,38.2,17.2,60.8561111111,-5.0342857143,86.7238095238,17.7,33.9111111111,19.6,45.216875,16.79,41,-4.1666666667,756.25,89.3333333333,1,64,-5.7166666667,20.1252961066,20.1252961066 -50,0,19.39,38.9,18,39.29,19.73,40.59,18.76,38.2,17.1666666667,60.735,-5.03,86.3794444444,17.7,33.9333333333,19.6,45.2,16.79,41.06,-4.1,756.2,89,1,64,-5.7,45.0016305316,45.0016305316 -40,0,19.39,38.9,17.89,39.3266666667,19.79,40.6633333333,18.76,38.2,17.1166666667,60.645,-5.03,86.0716666667,17.7,33.9388888889,19.5888888889,45.2,16.79,41.09,-4.1,756.2166666667,89,1,64,-5.7,25.2940992243,25.2940992243 -50,0,19.29,38.9,17.89,39.4,19.76,40.7,18.7,38.2,17.1055555556,60.4761111111,-5.02,86.0561111111,17.7,33.9555555556,19.5555555556,45.1327777778,16.79,41.1633333333,-4.1,756.2333333333,89,1,64,-5.7,36.3243540516,36.3243540516 -20,0,19.29,38.9666666667,17.8566666667,39.4666666667,19.76,40.6266666667,18.7,38.2,17.1166666667,60.3816666667,-4.9888888889,86.2872222222,17.7,33.9888888889,19.55,45.025,16.79,41.2,-4.1,756.25,89,1,64,-5.7,1.3743307441,1.3743307441 -30,0,19.29,39.03,17.79,39.4666666667,19.7,40.6633333333,18.6666666667,38.1633333333,17.1,60.2872222222,-4.95,86.4527777778,17.65,33.9388888889,19.5555555556,45.055,16.79,41.26,-4.1,756.2666666667,89,1,64,-5.7,18.9706606558,18.9706606558 -10,0,19.23,39.03,17.79,39.5,19.7,40.5675,18.6,38.1633333333,17.1,60.145,-4.9055555556,86.7677777778,17.6333333333,33.9,19.5,45.09,16.79,41.29,-4.1,756.2833333333,89,1,64,-5.7,19.3372331094,19.3372331094 -40,0,19.2,39,17.79,39.5,19.7,40.5,18.6,38.09,17.1,60.0694444444,-4.8611111111,86.9877777778,17.6,33.8266666667,19.5,45.09,16.79,41.3633333333,-4.1,756.3,89,1,64,-5.7,16.8910362641,16.8910362641 -60,0,19.2,39,17.7,39.5,19.6,40.3266666667,18.6,38.09,17.0888888889,59.9211111111,-5.0238888889,85.4422222222,17.6,33.9,19.5,45.065,16.79,41.4,-4.1666666667,756.3166666667,89.3333333333,1,63.8333333333,-5.7166666667,18.2215925655,18.2215925655 -40,0,19.2,39.09,17.7,39.5675,19.6,40.4666666667,18.5,38.09,17.0555555556,59.7611111111,-5.2094444444,84.1227777778,17.6,33.9,19.4938888889,45.0144444444,16.79,41.4666666667,-4.2333333333,756.3333333333,89.6666666667,1,63.6666666667,-5.7333333333,31.9377984852,31.9377984852 -50,0,19.1333333333,39.09,17.7,39.59,19.6,40.5,18.5,38.1633333333,17.04,59.689,-5.3388888889,83.5694444444,17.6,33.9,19.4266666667,44.9333333333,16.79,41.5,-4.3,756.35,90,1,63.5,-5.75,1.6457163729,1.6457163729 -40,0,19.1,39.09,17.6666666667,39.56,19.6,40.5,18.4633333333,38.06,17.0111111111,59.5872222222,-5.4111111111,83.5911111111,17.6,33.9,19.39,44.9,16.79,41.5,-4.3666666667,756.3666666667,90.3333333333,1,63.3333333333,-5.7666666667,34.8096294212,34.8096294212 -40,0,19.1,39.1633333333,17.6,39.5,19.6,40.5,18.445,38.045,17,59.515,-5.4333333333,83.7677777778,17.6,33.9,19.39,44.8694444444,16.79,41.59,-4.4333333333,756.3833333333,90.6666666667,1,63.1666666667,-5.7833333333,40.7782087335,40.7782087335 -40,0,19.0666666667,39.2,17.6,39.59,19.6,40.5,18.39,38,17,59.399375,-5.4333333333,84.005,17.5444444444,33.9,19.39,44.8633333333,16.79,41.59,-4.5,756.4,91,1,63,-5.8,25.3711426747,25.3711426747 -70,10,19,39.2,17.6,39.59,19.6,40.56,18.39,38,17,59.3266666667,-5.5194444444,83.57,17.5166666667,33.9,19.39,44.8144444444,16.79,41.59,-4.4666666667,756.4166666667,90.8333333333,1,63.1666666667,-5.7833333333,5.6296312949,5.6296312949 -50,0,19,39.595,17.5,39.73,19.6,40.4333333333,18.39,38,17,59.215,-5.58,83.3033333333,17.5,33.9,19.39,44.79,16.79,41.6633333333,-4.4333333333,756.4333333333,90.6666666667,1,63.3333333333,-5.7666666667,45.316165057,45.316165057 -50,0,19,39.9633333333,17.5,39.93,19.5,40.26,18.29,38.03,16.98,59.15,-5.6122222222,83.5455555556,17.525,33.9,19.39,44.79,16.79,41.7,-4.4,756.45,90.5,1,63.5,-5.75,20.6669476582,20.6669476582 -40,10,19,40.03,17.5,40.1266666667,19.5,40.2,18.29,38.09,16.923,58.677,-5.6122222222,84.1688888889,17.5,33.9,19.3788888889,44.79,16.79,41.7,-4.3666666667,756.4666666667,90.3333333333,1,63.6666666667,-5.7333333333,23.6877893913,23.6877893913 -30,0,19,40,17.5,40.26,19.5,40.03,18.29,38.09,16.9983333333,56.3416666667,-5.4927777778,85.2838888889,17.5,33.9,19.3066666667,44.8205555556,16.79,41.7,-4.3333333333,756.4833333333,90.1666666667,1,63.8333333333,-5.7166666667,35.6857090024,35.6857090024 -30,10,19,39.9333333333,17.4633333333,40.5,19.5,40.09,18.29,38.09,17.075,54.854375,-5.315,86.2383333333,17.4725,33.8725,19.29,44.9055555556,16.79,41.59,-4.3,756.5,90,1,64,-5.7,12.0935605257,12.0935605257 -20,10,18.9633333333,39.9333333333,17.39,40.56,19.39,39.8633333333,18.2,38,17.1,54.158125,-5.1855555556,86.6683333333,17.5,33.9,19.29,45.0088888889,16.79,41.59,-4.3,756.55,89.8333333333,1,64,-5.7333333333,14.9820313789,14.9820313789 -50,0,18.89,40.06,17.39,40.7,19.39,39.8633333333,18.2,38.06,17.05,54.7494444444,-5.075,86.64,17.4755555556,33.8755555556,19.285,44.9055555556,16.79,41.56,-4.3,756.6,89.6666666667,1,64,-5.7666666667,35.2239410742,35.2239410742 -50,0,18.89,40.2,17.39,40.7,19.39,39.8266666667,18.2,38.23,17,55.3638888889,-5.035,86.3372222222,17.445,33.845,19.23,44.7116666667,16.79,41.4333333333,-4.3,756.65,89.5,1,64,-5.8,38.5837474023,38.5837474023 -50,0,18.89,40.2,17.39,40.73,19.3233333333,39.9,18.2,38.29,16.945,55.8505555556,-5.0911111111,85.7927777778,17.4144444444,33.8388888889,19.2,44.4761111111,16.76,41.2233333333,-4.3,756.7,89.3333333333,1,64,-5.8333333333,0.6920170272,0.6920170272 -50,10,18.89,40.3266666667,17.39,40.8633333333,19.29,40,18.2,38.4,16.89,56.16,-5.14,85.1072222222,17.4144444444,33.8144444444,19.19,44.325,16.7,41.03,-4.3,756.75,89.1666666667,1,64,-5.8666666667,27.5656976737,27.5656976737 -40,0,18.89,40.5266666667,17.3566666667,40.9333333333,19.29,40,18.1333333333,38.4666666667,16.89,56.4477777778,-5.245,84.3577777778,17.39,33.8266666667,19.1333333333,44.155,16.7,40.7233333333,-4.3,756.8,89,1,64,-5.9,32.6230595238,32.6230595238 -40,0,18.89,40.59,17.29,41.06,19.29,40.06,18.1,38.6266666667,16.89,56.6572222222,-5.3388888889,83.9794444444,17.39,33.8816666667,19.1,44.0094444444,16.7,40.4633333333,-4.4,756.8666666667,89.6666666667,1,63.6666666667,-5.9,46.583035402,46.583035402 -50,0,18.89,40.53,17.29,41,19.29,40,18.1,38.6266666667,16.89,56.8105555556,-5.4111111111,83.4672222222,17.39,33.8938888889,19.0833333333,43.7983333333,16.7,40.26,-4.5,756.9333333333,90.3333333333,1,63.3333333333,-5.9,34.5195852569,34.5195852569 -40,0,18.79,40.4,17.29,41,19.29,40,18.1,38.59,16.8844444444,56.9111111111,-5.4888888889,83.4488888889,17.39,33.8511111111,19.0333333333,43.6161111111,16.7,40.0666666667,-4.6,757,91,1,63,-5.9,12.6883569523,12.6883569523 -40,0,18.79,40.4,17.29,41,19.29,40,18.1,38.53,16.8263636364,56.9363636364,-5.4444444444,83.7766666667,17.39,33.8683333333,19,43.4111111111,16.6666666667,39.8333333333,-4.7,757.0666666667,91.6666666667,1,62.6666666667,-5.9,20.5519185052,20.5519185052 -40,0,18.79,40.4333333333,17.26,40.9666666667,19.23,39.9333333333,18.0666666667,38.4666666667,16.79,56.9611111111,-5.4333333333,83.8444444444,17.3788888889,33.9388888889,19,43.4,16.6,39.6266666667,-4.8,757.1333333333,92.3333333333,1,62.3333333333,-5.9,6.1445556581,6.1445556581 -40,0,18.79,40.4333333333,17.2,40.9,19.2,39.9,18,38.3175,16.8066666667,56.9927777778,-5.4333333333,83.6144444444,17.34,33.9388888889,18.945,43.2955555556,16.6,39.4666666667,-4.9,757.2,93,1,62,-5.9,6.5983277862,6.5983277862 -20,0,18.7,40.5,17.2,41,19.2,39.9,18,38.29,16.7955555556,57.005,-5.4944444444,83.0783333333,17.29,33.9,18.89,43.1572222222,16.6,39.4,-4.7,757.2166666667,92.6666666667,1,62,-5.75,32.0059004123,32.0059004123 -30,0,18.7,40.56,17.2,41,19.2,39.9,18,38.2,16.79,57,-5.5761111111,82.3294444444,17.3233333333,33.8755555556,18.89,43.045,16.6,39.26,-4.5,757.2333333333,92.3333333333,1,62,-5.6,17.3211716115,17.3211716115 -30,0,18.7,40.59,17.2,41.06,19.2,39.8266666667,17.89,38.2,16.79,57,-5.715,81.6416666667,17.3252941176,33.9,18.89,42.9611111111,16.6,39.1266666667,-4.3,757.25,92,1,62,-5.45,21.1378302309,21.1378302309 -40,0,18.7,40.59,17.2,41,19.1,39.76,17.89,38.1633333333,16.77,57,-5.7988888889,81.1627777778,17.29,33.9,18.8677777778,42.825,16.6,39,-4.1,757.2666666667,91.6666666667,1,62,-5.3,46.9704440213,46.9704440213 -40,0,18.7,40.59,17.2,41.03,19.1,39.76,17.89,38.09,16.73,56.9944444444,-5.8333333333,81.2044444444,17.29,33.9,18.8177777778,42.7188888889,16.6,38.9,-3.9,757.2833333333,91.3333333333,1,62,-5.15,19.194461545,19.194461545 -40,0,18.625,40.545,17.1333333333,41.03,19.1,39.79,17.89,38.09,16.745,56.9111111111,-5.8222222222,81.7944444444,17.29,33.8083333333,18.8017647059,42.6029411765,16.5,38.845,-3.7,757.3,91,1,62,-5,11.42925655,11.42925655 -50,0,18.6,40.53,17.1333333333,41.09,19.1,39.79,17.89,38.09,16.7,56.9,-5.7083333333,82.5655555556,17.29,33.79,18.79,42.505,16.5,38.76,-3.4833333333,757.3166666667,89.3333333333,1,62.3333333333,-5.05,34.5139342942,34.5139342942 -50,0,18.6,40.5,17.1333333333,41.03,19.1,39.73,17.89,38.09,16.7,56.893125,-5.625,83.0894444444,17.29,33.79,18.77,42.45,16.5,38.7,-3.2666666667,757.3333333333,87.6666666667,1,62.6666666667,-5.1,0.4928958719,0.4928958719 -50,0,18.6,40.5,17.2,40.9666666667,19.0333333333,39.79,17.89,38.09,16.7,56.8266666667,-5.4038888889,84.1744444444,17.29,33.765,18.745,42.3327777778,16.5,38.7,-3.05,757.35,86,1,63,-5.15,34.3065447174,34.3065447174 -40,0,18.6,40.5,17.26,40.9666666667,19.0666666667,39.8633333333,17.9266666667,38.09,16.7,56.79,-5.1272222222,84.9172222222,17.2955555556,33.6816666667,18.71,42.29,16.5,38.6266666667,-2.8333333333,757.3666666667,84.3333333333,1,63.3333333333,-5.2,39.5837298012,39.5837298012 -40,0,18.6,40.5,17.29,40.9,19.0666666667,39.8633333333,18,38.09,16.7,56.775,-4.8372222222,85.5844444444,17.3066666667,33.59,18.74,42.28,16.5333333333,38.59,-2.6166666667,757.3833333333,82.6666666667,1,63.6666666667,-5.25,25.3746744362,25.3746744362 -40,0,18.6,40.5,17.3566666667,40.9,19,39.79,18.1333333333,38.1633333333,16.7,56.73,-4.5783333333,86.1727777778,17.3288888889,33.5294444444,18.71,42.215,16.6,38.59,-2.4,757.4,81,1,64,-5.3,15.4038124485,15.4038124485 -20,0,18.6,40.5,17.4266666667,40.9,19.1,39.9,18.2,38.03,16.6888888889,56.6877777778,-4.2388888889,87.2561111111,17.39,33.4111111111,18.765,42.1816666667,16.6,38.56,-2.2666666667,757.4333333333,80,1,56.6666666667,-5.3333333333,36.8606138625,36.8606138625 -20,0,18.7,40.56,17.5,40.8266666667,19.0333333333,39.8266666667,18.29,37.9666666667,16.6888888889,56.6205555556,-3.9294444444,87.9494444444,17.4327777778,33.3522222222,18.79,42.065,16.6,38.5,-2.1333333333,757.4666666667,79,1,49.3333333333,-5.3666666667,15.2357621701,15.2357621701 -30,0,18.76,40.5,17.6,40.6633333333,19,39.79,18.29,37.9,16.6777777778,56.57,-3.6272222222,88.6611111111,17.5,33.21,18.79,41.8933333333,16.6,38.4666666667,-2,757.5,78,1,42,-5.4,38.7354350882,38.7354350882 -50,0,18.79,40.4,17.6,40.6175,19,39.79,18.29,37.9,16.6388888889,56.5183333333,-3.2927777778,89.5061111111,17.5,33.2,18.79,41.61,16.6,38.4,-1.8666666667,757.5333333333,77,1,34.6666666667,-5.4333333333,5.6056818925,5.6056818925 -40,0,18.79,40.4,17.6,40.7,19,39.79,18.29,37.9666666667,16.6,56.4,-2.97,90.2383333333,17.5,33.1205555556,18.8066666667,41.575,16.6,38.5,-1.7333333333,757.5666666667,76,1,27.3333333333,-5.4666666667,39.887184999,39.887184999 -50,0,18.79,40.29,17.7,40.6633333333,19,39.79,18.29,37.95,16.6,56.3572222222,-2.7266666667,90.6933333333,17.5,33.09,18.8566666667,41.5783333333,16.6666666667,38.6333333333,-1.6,757.6,75,1,20,-5.5,24.5500583667,24.5500583667 -40,0,18.8566666667,40.29,17.76,40.53,19,39.8266666667,18.29,37.9,16.6,56.29,-2.5616666667,90.8372222222,17.5111111111,33.0172222222,18.8177777778,41.5905555556,16.7,38.73,-1.3333333333,757.6,73.1666666667,1,20.3333333333,-5.5833333333,41.6459087399,41.6459087399 -40,0,18.89,40.29,17.79,40.4666666667,19,39.9,18.29,37.8266666667,16.6,56.275,-2.3411111111,91.01,17.6,32.7533333333,18.8288888889,41.6044444444,16.7,38.8633333333,-1.0666666667,757.6,71.3333333333,1,20.6666666667,-5.6666666667,37.921157747,37.921157747 -40,0,18.89,40.23,17.79,40.4666666667,19,39.9,18.29,37.79,16.6,56.22,-2.0977777778,91.0016666667,17.6666666667,32.645,18.8788888889,41.4,16.7,38.9,-0.8,757.6,69.5,1,21,-5.75,45.1073280419,45.1073280419 -40,0,18.89,40.2,17.79,40.4666666667,19,39.9,18.29,37.79,16.6,56.1327777778,-1.9027777778,91.0661111111,17.7605555556,32.6205555556,18.89,41.0661111111,16.7,38.9,-0.5333333333,757.6,67.6666666667,1,21.3333333333,-5.8333333333,13.9220006531,13.9220006531 -50,0,18.9266666667,40.09,17.79,40.4,19,39.9,18.29,37.7233333333,16.6,56.09,-1.755,91.0461111111,17.9094444444,32.6227777778,18.9327777778,40.9055555556,16.7,38.745,-0.2666666667,757.6,65.8333333333,1,21.6666666667,-5.9166666667,22.2846424906,22.2846424906 -50,0,19,40.03,17.79,40.4,19,39.9,18.23,37.53,16.6,56.055,-1.65,91.2038888889,18.0111111111,32.455,19.0777777778,40.95,16.73,38.5,0,757.6,64,1,22,-6,13.600786787,13.600786787 -50,0,19,39.9666666667,17.79,40.4,19,39.79,18.2,37.4666666667,16.6,56,-1.4983333333,91.4333333333,18.0611111111,32.4333333333,19.215,40.8922222222,16.73,38.4333333333,-0.0333333333,757.55,64.6666666667,1,22,-5.9166666667,16.4959162823,16.4959162823 -30,0,19,39.9,17.8566666667,40.4666666667,19.0666666667,39.79,18.2,37.3266666667,16.6,55.9166666667,-1.3755555556,91.5761111111,18.1,32.3938888889,19.29,40.845,16.79,38.1633333333,-0.0666666667,757.5,65.3333333333,1,22,-5.8333333333,43.1800326915,43.1800326915 -30,0,19,39.9,17.79,40.4,19.0666666667,39.79,18.1,37.29,16.5777777778,55.9,-1.2861111111,91.7327777778,18.1,32.3022222222,19.29,40.715,16.79,38.09,-0.1,757.45,66,1,22,-5.75,5.4928976693,5.4928976693 -20,0,19,39.9,17.79,40.4,19.0666666667,39.8633333333,18.1,37.29,16.5888888889,55.8277777778,-1.1222222222,92.0533333333,18.1,32.275,19.29,40.6633333333,16.89,38.09,-0.1333333333,757.4,66.6666666667,1,22,-5.6666666667,20.1128449873,20.1128449873 -20,0,19,39.9,17.79,40.4666666667,19,39.79,18.1,37.29,16.5166666667,55.74,-0.9,92.5472222222,18.1166666667,32.1694444444,19.3011111111,40.5911111111,16.89,38.09,-0.1666666667,757.35,67.3333333333,1,22,-5.5833333333,20.3037546831,20.3037546831 -50,0,19,39.9,17.79,40.4,19,39.79,18.1666666667,37.29,16.5111111111,55.71,-0.7722222222,92.8138888889,18.1716666667,32.1205555556,19.3233333333,40.51,16.8233333333,38.09,-0.2,757.3,68,1,22,-5.5,21.8239627429,21.8239627429 -50,0,19,39.9,17.79,40.4,18.945,39.745,18.1,37.29,16.5111111111,55.645,-0.6833333333,93.005,18.2877777778,32.1633333333,19.3511111111,40.4944444444,16.8233333333,38.09,0.1166666667,757.2833333333,66.1666666667,1,22.8333333333,-5.5666666667,8.850004815,8.850004815 -50,0,19.0666666667,39.9,17.79,40.4,19,39.7,18.1666666667,37.29,16.5,55.59,-0.5833333333,93.1483333333,18.4327777778,32.1511111111,19.39,40.4111111111,16.79,38.09,0.4333333333,757.2666666667,64.3333333333,1,23.6666666667,-5.6333333333,13.2865100051,13.2865100051 -40,0,19.1,39.9,17.79,40.3266666667,19,39.7,18.1,37.2,16.5,55.575,-0.5333333333,93.4205555556,18.6,32.2,19.3961111111,40.4,16.79,38.09,0.75,757.25,62.5,1,24.5,-5.7,32.9775006743,32.9775006743 -40,0,19.1,39.9,17.8233333333,40.36,19,39.6633333333,18.1,37.2,16.5,55.51,-0.4333333333,93.7944444444,18.7405555556,32.2,19.4633333333,40.3755555556,16.89,38.3266666667,1.0666666667,757.2333333333,60.6666666667,1,25.3333333333,-5.7666666667,40.8027752419,40.8027752419 -40,0,19.15,39.9,17.89,40.425,19,39.59,18.2,37.345,16.5,55.5,-0.3111111111,94.1133333333,18.8872222222,32.145,19.54375,40.325625,16.79,38.29,1.3833333333,757.2166666667,58.8333333333,1,26.1666666667,-5.8333333333,21.0592172341,21.0592172341 -40,0,19.2,39.9666666667,17.89,40.4,19.0333333333,39.6266666667,18.2,37.4666666667,16.5,55.4388888889,-0.3,94.1733333333,19.0222222222,32.05,19.65,40.21,16.79,38.4,1.7,757.2,57,1,27,-5.9,8.0032152124,8.0032152124 -40,0,19.23,40.03,18,40.4,19.0333333333,39.6266666667,18.23,37.53,16.5,55.4,-0.2777777778,94.1794444444,19.1666666667,32.045,19.7605555556,40.0933333333,16.79,38.4666666667,1.4666666667,757.2166666667,57.8333333333,1,27,-5.95,14.4305063644,14.4305063644 -50,0,19.29,40.09,18,40.4666666667,19.0333333333,39.53,18.29,37.645,16.4633333333,55.29,-0.3761904762,93.8066666667,19.2,31.9083333333,19.89,39.9833333333,16.84,38.545,1.2333333333,757.2333333333,58.6666666667,1,27,-6,40.1064504171,40.1064504171 -60,0,19.29,40.1266666667,18.0333333333,40.4633333333,19.1,39.59,18.23,37.53,16.4877777778,55.28,-0.4,93.7044444444,19.225,31.8455555556,19.9572222222,39.8872222222,16.79,38.5,1,757.25,59.5,1,27,-6.05,8.2122840919,8.2122840919 -20,0,19.29,40.1266666667,18.1,40.53,19.1,39.59,18.29,37.6633333333,16.4633333333,55.25,-0.4047619048,93.7523809524,19.29,31.8733333333,20.05,39.79,16.89,38.59,0.7666666667,757.2666666667,60.3333333333,1,27,-6.1,39.4896367565,39.4896367565 -20,0,19.34,40.2,18.1,40.5,19.1,39.59,18.23,37.59,16.5,55.245,-0.4888888889,93.4833333333,19.29,31.79,20.1055555556,39.715,16.89,38.6633333333,0.5333333333,757.2833333333,61.1666666667,1,27,-6.15,26.2107484974,26.2107484974 -30,0,19.39,40.23,18.1,40.4333333333,19.1,39.5,18.23,37.53,16.4755555556,55.1855555556,-0.5222222222,93.2444444444,19.29,31.79,20.1166666667,39.7,16.89,38.7,0.3,757.3,62,1,27,-6.2,16.001750133,16.001750133 -40,0,19.39,40.29,18.1,40.4,19.1,39.5,18.23,37.53,16.4205555556,55.1205555556,-0.7,92.4888888889,19.265,31.765,20.1,39.705,16.89,38.59,0.1666666667,757.3166666667,64,1,26.1666666667,-5.95,13.7588543934,13.7588543934 -40,0,19.29,40.26,18.1,40.4,19.0666666667,39.5,18.2,37.5,16.39,55.055,-0.7388888889,92.6327777778,19.2,31.6833333333,20.1,39.715,16.89,38.59,0.0333333333,757.3333333333,66,1,25.3333333333,-5.7,40.0949019124,40.0949019124 -50,0,19.29,40.1266666667,18.1,40.29,19,39.5,18.2,37.5,16.39,55,-0.7666666667,92.6644444444,19.22,31.6222222222,20.1,39.7,16.89,38.56,-0.1,757.35,68,1,24.5,-5.45,5.2012215601,5.2012215601 -40,0,19.29,40.06,18.1,40.29,19,39.5,18.1333333333,37.4,16.39,55,-0.8666666667,92.4733333333,19.2,31.6,20.1,39.7,16.89,38.5,-0.2333333333,757.3666666667,70,1,23.6666666667,-5.2,41.9061133289,41.9061133289 -50,0,19.29,39.9333333333,18,40.2,19,39.5,18.1333333333,37.4,16.39,54.95,-1.0166666667,91.8905555556,19.1722222222,31.6,20.0833333333,39.6816666667,16.89,38.4,-0.3666666667,757.3833333333,72,1,22.8333333333,-4.95,3.9631436812,3.9631436812 -50,0,19.26,39.8333333333,18,40.2,19,39.56,18.0666666667,37.3333333333,16.39,54.9,-1.4311111111,89.33,19.1,31.6833333333,20,39.59,16.89,38.4,-0.5,757.4,74,1,22,-4.7,35.8782033552,35.8782033552 -40,0,19.2,39.7,18,40.29,19,39.5675,18,37.26,16.39,54.9,-1.9527777778,86.83,19.0722222222,31.6888888889,19.9938888889,39.6572222222,16.8566666667,38.3333333333,-0.75,757.45,75.5,1,21.6666666667,-4.6666666667,43.2308913325,43.2308913325 -40,0,19.2,39.6633333333,17.9266666667,40.29,19,39.59,18,37.2,16.39,54.8816666667,-2.3255555556,85.3877777778,19,31.7288888889,19.9022222222,39.715,16.79,38.26,-1,757.5,77,1,21.3333333333,-4.6333333333,48.9279104047,48.9279104047 -50,0,19.2,39.59,17.89,40.3266666667,19,39.59,18,37.26,16.3733333333,54.79,-2.7461111111,84.2044444444,18.9694444444,31.7,19.8288888889,39.73,16.79,38.2,-1.25,757.55,78.5,1,21,-4.6,12.4563103775,12.4563103775 -60,10,19.2,39.59,17.8233333333,40.3266666667,19,39.59,17.89,37.3266666667,16.3233333333,54.77,-3.1377777778,83.34,18.89,31.7,19.7761538462,39.7653846154,16.79,38.2,-1.5,757.6,80,1,20.6666666667,-4.5666666667,1.2430345174,1.2430345174 -190,20,19.2,39.53,17.79,40.245,19,39.6633333333,17.89,37.4,16.3122222222,54.745,-3.4155555556,83.2322222222,18.84,31.6666666667,19.7578571429,40.0364285714,16.79,38.09,-1.75,757.65,81.5,1,20.3333333333,-4.5333333333,11.1489115981,11.1489115981 -350,10,19.1666666667,39.4666666667,17.7,40.1633333333,18.9266666667,39.0566666667,17.89,37.4,16.3122222222,54.7,-3.6227777778,83.1988888889,18.79,31.6888888889,19.79,40.4663636364,16.79,38.09,-2,757.7,83,1,20,-4.5,6.1012749793,6.1012749793 -210,10,19.1,39.2666666667,17.7,39.9633333333,18.76,38.73,17.815,37.4,16.29,54.7,-3.8044444444,83.3572222222,18.765,31.745,19.8572222222,40.8255555556,16.76,38.09,-2.1166666667,757.7333333333,83.8333333333,1,27.3333333333,-4.4833333333,19.2619712441,19.2619712441 -140,10,19.0666666667,39.09,17.6666666667,39.76,18.7,38.6566666667,17.79,37.4666666667,16.29,54.6083333333,-3.8627777778,84.0322222222,18.7,31.7955555556,19.9611764706,41.1052941176,16.7,38.09,-2.2333333333,757.7666666667,84.6666666667,1,34.6666666667,-4.4666666667,4.2165237246,4.2165237246 -110,10,19,39.03,17.6666666667,39.76,18.7,38.59,17.79,37.5,16.29,54.59,-4.0616666667,83.3327777778,18.65,31.8288888889,20.0888888889,41.51,16.7,38.09,-2.35,757.8,85.5,1,42,-4.45,14.129094989,14.129094989 -120,0,19,38.8266666667,17.6666666667,39.6633333333,18.7,38.6633333333,17.79,37.56,16.29,54.515,-4.1961111111,83.9988888889,18.6,31.8288888889,20.1555555556,42.0188888889,16.7,38.09,-2.4666666667,757.8333333333,86.3333333333,1,49.3333333333,-4.4333333333,28.3291229396,28.3291229396 -120,10,19,38.9666666667,17.6,39.7233333333,18.73,38.7,17.7,37.53,16.29,54.4722222222,-4.3655555556,83.5411111111,18.55,31.945,20.2331578947,42.6031578947,16.7,38.06,-2.5833333333,757.8666666667,87.1666666667,1,56.6666666667,-4.4166666667,16.4271151181,16.4271151181 -110,10,19,39.19,17.6,39.86,18.79,38.76,17.7,37.59,16.29,54.4,-4.5605555556,82.8488888889,18.4877777778,32,20.29,43.0091666667,16.675,37.875,-2.7,757.9,88,1,64,-4.4,47.1737341373,47.1737341373 -260,10,19,39.4633333333,17.6666666667,40.1333333333,18.79,38.9,17.7,37.59,16.2675,54.351875,-4.6911111111,82.9438888889,18.40375,32,20.29,43.2257142857,16.6,37.7,-2.75,757.95,88.1666666667,0.8333333333,63.6666666667,-4.4333333333,18.8651756966,18.8651756966 -550,0,19,39.8633333333,17.73,40.26,18.79,38.8266666667,17.7,37.53,16.29,54.29,-4.7938888889,83.0455555556,18.3627272727,31.7081818182,20.29,42.9916666667,16.6,37.5266666667,-2.8,758,88.3333333333,0.6666666667,63.3333333333,-4.4666666667,47.6657806197,47.6657806197 -480,10,19.0333333333,40.7666666667,17.79,40.2,18.79,38.9566666667,17.6,37.1,16.254,54.069,-4.8333333333,83.3488888889,18.2623076923,31.3176923077,20.272,42.26,16.6,37.2666666667,-2.85,758.05,88.5,0.5,63,-4.5,13.6626433814,13.6626433814 -360,10,19.1666666667,40.8266666667,17.89,40.26,18.93,39.8966666667,17.6,36.8266666667,16.245,53.85,-4.8944444444,83.5038888889,18.2,31.0333333333,20.2,41.8266666667,16.5666666667,36.93,-2.9,758.1,88.6666666667,0.3333333333,62.6666666667,-4.5333333333,34.366507805,34.366507805 -360,20,19.2,41.0266666667,17.9633333333,40.2,19.3933333333,41.7633333333,17.6,36.6633333333,16.3,60.5266666667,-4.9822222222,83.1311111111,18.1666666667,30.8266666667,20.29,41.6333333333,16.5666666667,36.6566666667,-2.95,758.15,88.8333333333,0.1666666667,62.3333333333,-4.5666666667,6.8495902233,6.8495902233 -290,10,19.26,40.8266666667,18.0333333333,40.09,19.7266666667,42.6233333333,17.5333333333,36.59,16.9,75.0666666667,-4.9711111111,83.8555555556,18.1,30.65,20.29,41.36,16.5,36.4666666667,-3,758.2,89,0,62,-4.6,40.5105385813,40.5105385813 -460,10,19.3233333333,40.8,18.1,40.1633333333,20.0666666667,43.03,17.5,36.5,16.96,67.76,-4.9972222222,83.54,18,30.3566666667,20.3233333333,41.06,16.5,36.3266666667,-3.25,758.2,89.8333333333,0.3333333333,61.8333333333,-4.7333333333,38.130234601,38.130234601 -570,20,19.39,41.1333333333,18.2,40.5,20.2925,43.0675,17.5,36.5,17.2266666667,61.0266666667,-5.2161111111,82.5744444444,18,30.23,20.39,40.9333333333,16.4633333333,36.1333333333,-3.5,758.2,90.6666666667,0.6666666667,61.6666666667,-4.8666666667,22.1202416928,22.1202416928 -470,20,19.39,40.6333333333,18.26,40.6333333333,20.4633333333,43,17.8666666667,36.76,17.5333333333,56.4966666667,-5.3555555556,82.4627777778,17.89,30.0666666667,20.39,40.76,16.4633333333,35.9333333333,-3.75,758.2,91.5,1,61.5,-5,22.8337847278,22.8337847278 -450,20,19.39,40.4333333333,18.4266666667,40.59,20.6,42.66,18.5333333333,36.7,17.6666666667,54.2233333333,-5.4333333333,82.4105555556,17.89,30,20.4633333333,40.7,16.39,35.6633333333,-4,758.2,92.3333333333,1.3333333333,61.3333333333,-5.1333333333,34.0227544424,34.0227544424 -450,10,19.5,40.3633333333,18.5,40.4633333333,20.6,42.0666666667,19.2666666667,36.5266666667,17.79,51.8633333333,-5.51,82.45,17.8566666667,29.8566666667,20.5,40.6333333333,16.39,35.53,-4.25,758.2,93.1666666667,1.6666666667,61.1666666667,-5.2666666667,3.7198954495,3.7198954495 -380,20,19.5666666667,40.1566666667,18.65,40.29,20.4633333333,41.43,19.7933333333,36.4666666667,17.79,50.0633333333,-5.585,82.3444444444,17.79,29.73,20.5,40.4333333333,16.39,35.3633333333,-4.5,758.2,94,2,61,-5.4,32.3314537527,32.3314537527 -110,10,19.6333333333,40,18.73,40.1333333333,20.3233333333,41.1566666667,20.1966666667,36.76,17.89,48.6666666667,-5.6622222222,82.1811111111,17.7,29.6666666667,20.5,40.26,16.39,35.23,-4.35,758.2,93.5,1.8333333333,61,-5.3166666667,39.4957055803,39.4957055803 -110,10,19.7,39.86,18.8566666667,40,20.26,40.7966666667,20.445,36.2,17.89,47.8666666667,-5.7388888889,82.2916666667,17.7,29.575,20.5,40.1266666667,16.29,35.06,-4.2,758.2,93,1.6666666667,61,-5.2333333333,11.1658253358,11.1658253358 -110,20,19.7,39.6633333333,18.89,39.76,20.2,40.39,20.3233333333,35.7,18,47.1233333333,-5.6511111111,83.3322222222,17.7,29.5,20.5,39.8633333333,16.29,34.9333333333,-4.05,758.2,92.5,1.5,61,-5.15,2.0471995231,2.0471995231 -100,10,19.7,39.53,18.89,39.5666666667,20.1,40.0266666667,20.1,35.8266666667,18,46.53,-5.6011111111,83.5238888889,17.6,29.39,20.5,39.6566666667,16.29,34.8633333333,-3.9,758.2,92,1.3333333333,61,-5.0666666667,19.2324181669,19.2324181669 -110,10,19.73,39.3333333333,18.89,39.4,20.0333333333,39.7666666667,19.96,35.9666666667,18,45.93,-5.59,83.4666666667,17.6,29.3233333333,20.5,39.5266666667,16.29,34.73,-3.75,758.2,91.5,1.1666666667,61,-4.9833333333,17.2046076972,17.2046076972 -120,0,19.79,39.1266666667,18.89,39.1333333333,19.9633333333,39.6266666667,19.76,35.76,18.1333333333,59.99,-5.585,83.6844444444,17.5666666667,29.29,20.4266666667,39.2666666667,16.23,34.7933333333,-3.6,758.2,91,1,61,-4.9,22.3184346105,22.3184346105 -70,10,19.79,38.66,19,38.3633333333,19.8233333333,39.6266666667,19.5666666667,35.5,19.1666666667,81.5966666667,-5.53,84.2888888889,17.5,29.23,20.4266666667,39.1266666667,16.315,36.425,-3.6666666667,758.25,91,1,61.1666666667,-4.9666666667,19.3416584749,19.3416584749 -50,0,19.79,38.25,18.9266666667,38.1633333333,19.79,39.59,19.4633333333,35.6566666667,18.8333333333,81.33,-5.4777777778,84.1344444444,17.5,29.8333333333,20.445,39.1675,16.39,37.7666666667,-3.7333333333,758.3,91,1,61.3333333333,-5.0333333333,45.9158957703,45.9158957703 -40,0,19.79,38.2,18.89,38.3266666667,19.73,39.59,19.3233333333,35.93,18.445,77.495,-5.5,83.8111111111,17.5,30.2933333333,20.4266666667,39.43,16.39,38,-3.8,758.35,91,1,61.5,-5.1,8.7008771719,8.7008771719 -30,0,19.79,38.23,18.89,38.4666666667,19.6666666667,39.5266666667,19.1666666667,36.1266666667,18.26,72.7333333333,-5.5405555556,83.2272222222,17.5,30.6633333333,20.39,39.6933333333,16.39,38.3333333333,-3.8666666667,758.4,91,1,61.6666666667,-5.1666666667,7.4935281184,7.4935281184 -30,0,19.79,38.29,18.9266666667,38.53,19.6,39.3266666667,19.1,36.3333333333,18.1333333333,67.5266666667,-5.6911111111,82.5172222222,17.5,30.93,20.39,40.0266666667,16.39,38.5666666667,-3.9333333333,758.45,91,1,61.8333333333,-5.2333333333,30.6599614443,30.6599614443 -50,0,19.79,38.4333333333,19,38.6633333333,19.4633333333,39.2233333333,18.9633333333,36.53,18.1,62.36,-5.7511111111,82.5477777778,17.5,31.23,20.39,40.3,16.39,38.76,-4,758.5,91,1,62,-5.3,0.8621665998,0.8621665998 -50,0,19.79,38.56,18.89,38.79,19.39,39.09,18.89,36.6633333333,18.0333333333,59.7666666667,-5.7805555556,82.6111111111,17.5,31.3566666667,20.39,40.6933333333,16.39,38.8266666667,-4.0833333333,758.55,91.5,1,61.6666666667,-5.3166666667,3.3055242151,3.3055242151 -50,0,19.79,38.59,18.89,38.8633333333,19.29,39.2,18.79,36.8266666667,17.9633333333,57.7266666667,-5.9333333333,82.0077777778,17.5,31.5666666667,20.3566666667,41.33,16.39,38.9666666667,-4.1666666667,758.6,92,1,61.3333333333,-5.3333333333,38.9419520739,38.9419520739 -40,0,19.79,38.59,19,38.9333333333,19.29,39.2,18.73,36.9666666667,17.89,56.4666666667,-6.01,81.8766666667,17.5,31.76,20.29,41.7966666667,16.39,39.09,-4.25,758.65,92.5,1,61,-5.35,46.7828063527,46.7828063527 -50,0,19.79,38.7,18.9266666667,39,19.23,39.1266666667,18.6666666667,37.2,17.89,55.1666666667,-6.01,81.9966666667,17.5,31.9266666667,20.29,42.3,16.39,39.1633333333,-4.3333333333,758.7,93,1,60.6666666667,-5.3666666667,10.3602069779,10.3602069779 -40,0,19.79,38.7,18.89,39.03,19.2,39.09,18.6,37.3333333333,17.8233333333,54.2333333333,-6,82.3155555556,17.5,32.06,20.29,42.7666666667,16.39,39.29,-4.4166666667,758.75,93.5,1,60.3333333333,-5.3833333333,32.1671578451,32.1671578451 -40,0,19.79,38.7,18.89,39.09,19.2,39.09,18.5,37.53,17.79,53.3333333333,-5.9777777778,82.8922222222,17.4633333333,32.06,20.2,42.9333333333,16.39,39.3633333333,-4.5,758.8,94,1,60,-5.4,16.5689787595,16.5689787595 -50,0,19.79,38.76,18.79,39.03,19.1,39.06,18.5,37.59,17.73,52.7266666667,-5.7616666667,84.6833333333,17.39,32.06,20.1333333333,43.06,16.39,39.53,-4.55,758.7833333333,94,1.1666666667,58.1666666667,-5.45,47.7710795472,47.7710795472 -40,0,19.7,38.8266666667,18.7675,39.09,19.1,39,18.39,37.73,17.7,52.1,-5.4422222222,86.1055555556,17.39,32.23,20.2,43.4633333333,16.39,39.6633333333,-4.6,758.7666666667,94,1.3333333333,56.3333333333,-5.5,40.8594578505,40.8594578505 -30,0,19.7,38.9,18.7,39.1633333333,19.1,39.09,18.365,37.8175,17.7,51.6933333333,-5.1272222222,87.3044444444,17.39,32.29,20.1333333333,43.7233333333,16.39,39.79,-4.65,758.75,94,1.5,54.5,-5.55,37.0138071594,37.0138071594 -30,0,19.7,39,18.6666666667,39.1633333333,19.1,39.09,18.29,37.9666666667,17.6,51.1933333333,-4.7494444444,88.4216666667,17.39,32.3633333333,20.1,44,16.39,39.8633333333,-4.7,758.7333333333,94,1.6666666667,52.6666666667,-5.6,11.1352988402,11.1352988402 -30,0,19.6333333333,38.9333333333,18.6,39.1633333333,19.0666666667,38.9666666667,18.26,38,17.6,50.86,-4.575,88.5305555556,17.39,32.5,20.1,44.1333333333,16.3233333333,40.1266666667,-4.75,758.7166666667,94,1.8333333333,50.8333333333,-5.65,2.2862358252,2.2862358252 -30,0,19.6,39,18.5,39.2,19,38.9,18.2,38,17.5666666667,50.6333333333,-4.63,87.515,17.39,32.5,20,44.29,16.39,40.2,-4.8,758.7,94,2,49,-5.7,18.3263289626,18.3263289626 -50,0,19.6,39.06,18.5,39.2,18.9633333333,38.8633333333,18.1666666667,38.09,17.5,50.36,-4.86,85.9738888889,17.39,32.59,20,44.29,16.39,40.3266666667,-4.8111111111,758.7111111111,93.8333333333,1.9444444444,49.6666666667,-5.7277777778,37.0696512517,37.0696512517 -40,0,19.5666666667,39.1266666667,18.39,39.23,18.89,38.79,18.1,38.1633333333,17.5,50.1633333333,-4.9861111111,84.7733333333,17.3233333333,32.6633333333,19.89,44.3266666667,16.39,40.4975,-4.8222222222,758.7222222222,93.6666666667,1.8888888889,50.3333333333,-5.7555555556,46.6753124958,46.6753124958 -50,0,19.5,39.2,18.39,39.29,18.89,38.9,18.1,38.23,17.4266666667,49.89,-5.1077777778,84.2777777778,17.29,32.6266666667,19.89,44.4,16.39,40.6633333333,-4.8333333333,758.7333333333,93.5,1.8333333333,51,-5.7833333333,33.6604974931,33.6604974931 -50,0,19.4266666667,39.2,18.29,39.3266666667,18.89,38.8266666667,18.0333333333,38.23,17.39,49.645,-5.2327777778,83.6561111111,17.29,32.7,19.79,44.6,16.39,40.79,-4.8444444444,758.7444444444,93.3333333333,1.7777777778,51.6666666667,-5.8111111111,35.0678553688,35.0678553688 -50,0,19.39,39.23,18.23,39.3266666667,18.89,38.8633333333,18,38.2,17.3566666667,49.4666666667,-5.3722222222,83.0094444444,17.29,32.7,19.79,44.9633333333,16.39,40.8633333333,-4.8555555556,758.7555555556,93.1666666667,1.7222222222,52.3333333333,-5.8388888889,42.3812703928,42.3812703928 -40,0,19.39,39.29,18.2,39.29,18.89,38.8633333333,18,38.2,17.29,49.4,-5.4883333333,82.5694444444,17.29,32.7,19.73,45.2233333333,16.39,40.9333333333,-4.8666666667,758.7666666667,93,1.6666666667,53,-5.8666666667,35.3078327491,35.3078327491 -40,0,19.3566666667,39.29,18.1333333333,39.23,18.89,38.9,17.9633333333,38.2,17.29,49.29,-5.5911111111,82.3094444444,17.29,32.79,19.7,45.6266666667,16.39,41,-4.8777777778,758.7777777778,92.8333333333,1.6111111111,53.6666666667,-5.8944444444,42.9403879796,42.9403879796 -40,0,19.29,39.29,18.1,39.2,18.89,38.9,17.89,38.26,17.29,49.23,-5.6233333333,82.4327777778,17.29,32.79,19.7,45.7,16.39,41.03,-4.8888888889,758.7888888889,92.6666666667,1.5555555556,54.3333333333,-5.9222222222,22.282224556,22.282224556 -30,0,19.26,39.2233333333,18.0333333333,39.2,18.89,38.9,17.89,38.29,17.29,49.1633333333,-5.6233333333,82.7105555556,17.29,32.9,19.7,45.7,16.39,41.09,-4.9,758.8,92.5,1.5,55,-5.95,33.8317496004,33.8317496004 -20,0,19.2,39.1633333333,18,39.2,18.89,39,17.8233333333,38.23,17.23,49.03,-5.6844444444,82.7633333333,17.23,32.8266666667,19.6333333333,45.5666666667,16.3566666667,41.2,-4.9111111111,758.8111111111,92.3333333333,1.4444444444,55.6666666667,-5.9777777778,6.3912391313,6.3912391313 -20,0,19.2,39.2,17.9266666667,39.2,18.89,39,17.8566666667,38.29,17.2,48.9,-5.7528571429,82.1257142857,17.26,32.8633333333,19.6,45.53,16.3566666667,41.26,-4.9222222222,758.8222222222,92.1666666667,1.3888888889,56.3333333333,-6.0055555556,36.8085767608,36.8085767608 -30,0,19.1333333333,39.2,17.89,39.26,18.89,39,17.79,38.29,17.2,48.9,-5.8619047619,81.83,17.26,32.8633333333,19.6,45.59,16.39,41.3266666667,-4.9333333333,758.8333333333,92,1.3333333333,57,-6.0333333333,3.3622574178,3.3622574178 -50,0,19.1,39.2,17.8233333333,39.2,18.89,39.06,17.79,38.29,17.175,48.79,-5.8166666667,82.5722222222,17.2,32.79,19.6,45.6266666667,16.3233333333,41.4,-4.9444444444,758.8444444444,91.8333333333,1.2777777778,57.6666666667,-6.0611111111,14.0400034841,14.0400034841 -50,0,19.1,39.2,17.79,39.2,18.89,39.1266666667,17.73,38.29,17.1,48.79,-5.85,82.4088888889,17.2,32.79,19.6,45.7,16.39,41.4333333333,-4.9555555556,758.8555555556,91.6666666667,1.2222222222,58.3333333333,-6.0888888889,20.5808841856,20.5808841856 -40,0,19,39.09,17.7225,39.2675,18.89,39.2,17.745,38.29,17.1,48.79,-5.8611111111,82.4761111111,17.2,32.8266666667,19.5,45.59,16.39,41.5,-4.9666666667,758.8666666667,91.5,1.1666666667,59,-6.1166666667,47.1712498576,47.1712498576 -50,0,19,39.09,17.7,39.3633333333,18.89,39.2,17.7,38.3633333333,17.1,48.79,-5.745,83.6083333333,17.2,32.9,19.5,45.59,16.3566666667,41.59,-4.9777777778,758.8777777778,91.3333333333,1.1111111111,59.6666666667,-6.1444444444,48.867126659,48.867126659 -40,0,18.9633333333,39.06,17.7,39.4,18.9633333333,39.2,17.7,38.3633333333,17.1,48.7,-5.5916666667,84.5372222222,17.1333333333,32.9,19.4633333333,45.4666666667,16.3566666667,41.6633333333,-4.9888888889,758.8888888889,91.1666666667,1.0555555556,60.3333333333,-6.1722222222,1.943329256,1.943329256 -40,0,18.89,39,17.6333333333,39.3266666667,18.9266666667,39.29,17.6,38.23,17.0333333333,48.6266666667,-5.4388888889,85.5633333333,17.1666666667,32.9,19.39,45.4,16.39,41.7,-5,758.9,91,1,61,-6.2,29.3863888597,29.3863888597 -50,0,18.89,39,17.5,39.4,19,39.29,17.6,38.29,17,48.59,-5.2383333333,85.8166666667,17.1,32.9,19.39,45.4,16.39,41.7,-4.8333333333,758.9333333333,90.8333333333,1,61,-6.0666666667,1.5005838592,1.5005838592 -50,0,18.8233333333,38.9333333333,17.5,39.4,19,39.29,17.6,38.23,17,48.59,-5.2266666667,85.2777777778,17.1,32.9666666667,19.39,45.4,16.39,41.7,-4.6666666667,758.9666666667,90.6666666667,1,61,-5.9333333333,28.2640604186,28.2640604186 -50,0,18.79,38.9,17.5,39.4,19,39.29,17.6,38.29,16.9633333333,48.59,-5.2266666667,84.8288888889,17.1,32.9,19.3566666667,45.29,16.29,41.79,-4.5,759,90.5,1,61,-5.8,4.9113615416,4.9113615416 -30,0,18.7675,38.9,17.5,39.4,19,39.29,17.5,38.29,16.9633333333,48.59,-5.125,85.8394444444,17.1,32.9,19.29,45.29,16.3566666667,41.79,-4.3333333333,759.0333333333,90.3333333333,1,61,-5.6666666667,31.5145394299,31.5145394299 -30,0,18.7,38.9666666667,17.39,39.4,19,39.29,17.5,38.29,16.89,48.59,-4.9594444444,87.3661111111,17.1,32.9,19.29,45.245,16.39,41.9,-4.1666666667,759.0666666667,90.1666666667,1,61,-5.5333333333,40.9250917262,40.9250917262 -20,0,18.7,39,17.39,39.4,19,39.26,17.4633333333,38.26,16.89,48.59,-4.6633333333,88.3644444444,17.1,33,19.29,45.2,16.39,41.9,-4,759.1,90,1,61,-5.4,17.5020831521,17.5020831521 -20,0,18.7,39,17.3566666667,39.4333333333,19,39.2,17.4633333333,38.3333333333,16.89,48.59,-4.5494444444,88.4933333333,17.1,33,19.29,45.2,16.3566666667,42.03,-3.8333333333,759.0666666667,90,1.3333333333,61,-5.2333333333,6.6991837462,6.6991837462 -40,0,18.6666666667,38.9666666667,17.29,39.5,19,39.1633333333,17.5,38.4,16.8566666667,48.6633333333,-4.3611111111,88.9727777778,17.1,33,19.2,45.09,16.29,42.09,-3.6666666667,759.0333333333,90,1.6666666667,61,-5.0666666667,4.0471689194,4.0471689194 -50,0,18.6,38.9666666667,17.29,39.5,18.9266666667,39.09,17.5,38.4,16.79,48.59,-4.1488888889,89.6633333333,17.0333333333,32.9333333333,19.26,45.1633333333,16.39,42.23,-3.5,759,90,2,61,-4.9,17.5221657148,17.5221657148 -50,0,18.6,39,17.23,39.4333333333,18.89,39.145,17.39,38.29,16.79,48.6266666667,-3.9027777778,90.2461111111,17,32.9666666667,19.2,45.09,16.39,42.23,-3.3333333333,758.9666666667,90,2.3333333333,61,-4.7333333333,49.8135892325,49.8135892325 -50,0,18.6,39,17.2,39.5,18.89,39.29,17.39,38.29,16.79,48.7,-3.6916666667,90.7416666667,17,32.9666666667,19.2,45.09,16.3566666667,42.29,-3.1666666667,758.9333333333,90,2.6666666667,61,-4.5666666667,26.648440538,26.648440538 -40,0,18.5666666667,39.09,17.2,39.5,18.89,39.29,17.39,38.4,16.79,48.7,-3.5133333333,91.0766666667,17,33,19.1666666667,45.09,16.3566666667,42.29,-3,758.9,90,3,61,-4.4,16.7948690243,16.7948690243 -80,0,18.5,39.09,17.1666666667,39.53,18.9266666667,39.4,17.3233333333,38.4,16.73,48.7,-3.4111111111,91.1816666667,17,33,19.1,45.09,16.29,42.3266666667,-2.9666666667,758.9,90,2.8333333333,61,-4.3833333333,15.7117321738,15.7117321738 -40,10,18.5,39.39,17.1,39.59,18.9266666667,39.3266666667,17.3566666667,38.4,16.79,48.1233333333,-3.4822222222,90.6911111111,17,33,19.1,45.09,16.29,42.4,-2.9333333333,758.9,90,2.6666666667,61,-4.3666666667,19.1311030183,19.1311030183 -50,0,18.5,39.59,17.1,39.8,18.8566666667,39.26,17.29,38.425,16.79,47.5725,-3.575,90.1344444444,16.98,33.0409090909,19.1,45.09,16.29,42.3633333333,-2.9,758.9,90,2.5,61,-4.35,0.9273203905,0.9273203905 -340,10,18.5,39.79,17.1,40.03,18.79,39.2,17.29,38.5,16.79,47.2233333333,-3.545,89.9888888889,16.9633333333,33.075,19.05,45.09,16.29,42.29,-2.8666666667,758.9,90,2.3333333333,61,-4.3333333333,1.8269558437,1.8269558437 -150,10,18.5,39.79,17.1,40.03,18.79,39.2,17.29,38.5,16.8635714286,47.6514285714,-3.53,90.0522222222,16.9083333333,32.5283333333,19.0333333333,44.99,16.3233333333,42.5,-2.8333333333,758.9,90,2.1666666667,61,-4.3166666667,43.925664702,43.925664702 -50,0,18.5,39.6633333333,17.0666666667,39.6933333333,18.73,39.0666666667,17.29,38.56,16.9607142857,48.4235714286,-3.45,90.4516666667,16.8566666667,31.9546666667,19,44.5425,16.3233333333,42.3,-2.8,758.9,90,2,61,-4.3,20.1032011886,20.1032011886 -40,0,18.4266666667,39.4633333333,17,39.36,18.7,38.9,17.29,38.5,16.8733333333,48.8527777778,-3.4,90.6344444444,16.79,31.4494444444,18.9572222222,44.2022222222,16.29,41.7666666667,-2.7333333333,758.95,89.3333333333,2,61.1666666667,-4.3166666667,23.4690537094,23.4690537094 -60,10,18.39,39.26,17,39.1633333333,18.7,38.9,17.29,38.3,16.79,49.0935294118,-3.4111111111,90.4588888889,16.79,31.2029411765,18.9407692308,43.8930769231,16.29,41.2266666667,-2.6666666667,759,88.6666666667,2,61.3333333333,-4.3333333333,20.1168255066,20.1168255066 -60,0,18.39,39.1266666667,17,39.03,18.6666666667,38.7233333333,17.2,37.8633333333,16.7736363636,49.2409090909,-3.4772222222,89.95,16.7654545455,30.9681818182,18.8733333333,43.51,16.245,40.34,-2.6,759.05,88,2,61.5,-4.35,35.104505124,35.104505124 -60,0,18.39,38.8633333333,16.89,38.8633333333,18.6,38.59,17.2,37.73,16.725,49.3816666667,-3.6844444444,88.9616666667,16.73,30.8138888889,18.8733333333,43.3372222222,16.2,39.6933333333,-2.5333333333,759.1,87.3333333333,2,61.6666666667,-4.3666666667,19.9582232628,19.9582232628 -50,0,18.34,38.5475,16.89,38.6566666667,18.6,38.59,17.2,37.56,16.6833333333,49.3816666667,-3.8755555556,88.1722222222,16.7,30.65,18.8177777778,43.0477777778,16.2,39.3,-2.4666666667,759.15,86.6666666667,2,61.8333333333,-4.3833333333,25.0979161356,25.0979161356 -70,0,18.3233333333,38.3266666667,16.89,38.3633333333,18.6,38.59,17.1333333333,37.4333333333,16.6625,49.35875,-3.8266666667,88.6327777778,16.7,30.5327777778,18.8011111111,42.8311111111,16.1666666667,38.8333333333,-2.4,759.2,86,2,62,-4.4,1.8486875342,1.8486875342 -60,0,18.29,38.1333333333,16.89,38.23,18.6,38.59,17.1,37.1633333333,16.6222222222,49.3144444444,-3.6672222222,89.665,16.6857142857,30.3914285714,18.79,42.6177777778,16.1,38.5666666667,-2.3666666667,759.3,86.3333333333,2.3333333333,61.8333333333,-4.3166666667,14.8987867404,14.8987867404 -60,10,18.29,37.9333333333,16.79,38,18.6,38.53,17.1,37.03,16.6,49.2825,-3.5133333333,90.395,16.6611111111,30.2705555556,18.79,42.5,16.1,38.2233333333,-2.3333333333,759.4,86.6666666667,2.6666666667,61.6666666667,-4.2333333333,48.1420990895,48.1420990895 -60,10,18.29,37.8266666667,16.79,37.9333333333,18.5333333333,38.5,17.1,36.9666666667,16.6,49.2,-3.3044444444,90.9311111111,16.6111111111,30.21,18.79,42.4357142857,16.1,37.89,-2.3,759.5,87,3,61.5,-4.15,46.7548452318,46.7548452318 -350,20,18.23,37.7666666667,16.79,37.9333333333,18.6,38.3975,17.1,36.9,16.5416666667,49.1725,-3.1725,91.12,16.6,30.1428571429,18.745,42.3764285714,16.0666666667,37.7233333333,-2.2666666667,759.6,87.3333333333,3.3333333333,61.3333333333,-4.0666666667,48.0549588683,48.0549588683 -360,10,18.2,37.7,16.79,38.3933333333,18.6,38.23,17,36.79,16.5,49.09,-3,91.4633333333,16.6,30.1,18.7,42.2736363636,16,37.4633333333,-2.2333333333,759.7,87.6666666667,3.6666666667,61.1666666667,-3.9833333333,39.6297682077,39.6297682077 -80,10,18.2,37.8333333333,16.89,38.6266666667,18.5666666667,38.03,17,36.79,16.5,49.09,-2.9333333333,91.7966666667,16.6,30.1,18.7,42.1358333333,16,37.26,-2.2,759.8,88,4,61,-3.9,37.7388596418,37.7388596418 -50,10,18.2,37.8633333333,16.89,38.7,18.5,38.03,17,36.79,16.5,49.09,-2.79,92.1233333333,16.6,30.0666666667,18.7,42.0409090909,16,37.0666666667,-2.1666666667,759.8333333333,88.1666666667,3.6666666667,60.5,-3.85,3.2983315061,3.2983315061 -60,0,18.2,37.73,16.89,38.96,18.4633333333,37.8633333333,17,36.79,16.5,49,-2.73,92.33,16.5333333333,30,18.7,42.09,16,36.8633333333,-2.1333333333,759.8666666667,88.3333333333,3.3333333333,60,-3.8,6.7752389587,6.7752389587 -80,10,18.2,38.03,16.9633333333,39.5666666667,18.39,37.79,16.89,36.7,16.4266666667,48.9333333333,-2.56,92.6933333333,16.5,30.0666666667,18.7,42.2233333333,16,36.73,-2.1,759.9,88.5,3,59.5,-3.75,6.1799687799,6.1799687799 -50,10,18.2,38.8233333333,17,39.2,18.39,37.8266666667,16.89,36.6175,16.39,48.9,-2.4333333333,93.0266666667,16.5,30.0666666667,18.7,42.4633333333,15.89,36.59,-2.0666666667,759.9333333333,88.6666666667,2.6666666667,59,-3.7,38.1271930411,38.1271930411 -80,0,18.2,38.9666666667,16.89,39.2,18.39,37.9,16.89,36.53,17.3975,73.1175,-2.26,93.3333333333,16.5,30,18.675,42.37,15.89,36.53,-2.0333333333,759.9666666667,88.8333333333,2.3333333333,58.5,-3.65,45.1732857968,45.1732857968 -90,10,18.26,39.8333333333,16.89,39.26,18.5,38,16.89,36.5,18.9933333333,83.8566666667,-2.025,93.67,16.5,30,18.6,42.2233333333,15.89,36.4,-2,760,89,2,58,-3.6,20.1329545118,20.1329545118 -90,10,18.2,38.96,16.89,39.29,18.5,38.06,16.89,36.6333333333,18.1933333333,86.1333333333,-1.8266666667,93.9666666667,16.5,30.0333333333,18.6,42.73,15.89,36.3266666667,-1.95,760.1,88.8333333333,2.1666666667,58.1666666667,-3.5666666667,9.1281503905,9.1281503905 -70,0,18.2,38.4266666667,16.89,39.1566666667,18.5,38.2,17,37.4233333333,17.5833333333,85.7283333333,-1.6666666667,94.16,16.41,30.0181818182,18.6818181818,42.8136363636,15.89,36.26,-1.9,760.2,88.6666666667,2.3333333333,58.3333333333,-3.5333333333,18.728260952,18.728260952 -90,10,18.2,37.9,16.89,38.8633333333,18.5,38.2,17,38.09,17.2327777778,79.5427777778,-1.46,94.4333333333,16.4388888889,29.9572222222,18.755,42.6272222222,15.89,36.2,-1.85,760.3,88.5,2.5,58.5,-3.5,25.3104338655,25.3104338655 -60,0,18.2,37.3666666667,16.8233333333,38.33,18.5,38.0266666667,16.89,38.06,17.27,73.4222222222,-1.1333333333,94.7266666667,16.4175,29.9175,18.815,42.4475,15.89,36.09,-1.8,760.4,88.3333333333,2.6666666667,58.6666666667,-3.4666666667,45.6751339487,45.6751339487 -70,10,18.2,36.9666666667,16.79,37.9666666667,18.4266666667,37.7666666667,16.89,37.86,17.29,72.1633333333,-0.9333333333,94.8666666667,16.39,29.9633333333,18.8233333333,42.1633333333,15.8,35.9,-1.75,760.5,88.1666666667,2.8333333333,58.8333333333,-3.4333333333,3.8322590524,3.8322590524 -90,0,18.125,36.9,16.79,37.8266666667,18.39,37.56,16.89,37.6333333333,17.23,69.4966666667,-0.7666666667,95.03,16.39,30.7633333333,18.9633333333,42.03,15.8,35.8266666667,-1.7,760.6,88,3,59,-3.4,5.4872761946,5.4872761946 -70,10,18.1,36.9,16.79,37.7,18.39,37.4333333333,16.89,37.5,17.1666666667,68.3,-0.5666666667,95.23,16.6333333333,33.2566666667,19.0333333333,41.6633333333,15.8,35.79,-1.5666666667,760.6,87.3333333333,3,59.3333333333,-3.3833333333,37.713361124,37.713361124 -110,0,18.1,36.9,16.79,37.6266666667,18.3566666667,37.3633333333,16.79,37.2233333333,17.1,67.2333333333,-0.3666666667,95.3333333333,16.76,33.6633333333,19.0333333333,41.39,15.8,35.4566666667,-1.4333333333,760.6,86.6666666667,3,59.6666666667,-3.3666666667,15.2299387846,15.2299387846 -70,0,18.1,36.8266666667,16.79,37.56,18.29,37.23,16.79,37.03,17,65.26,-0.2333333333,95.4,16.7266666667,33.5266666667,19.1,41.1333333333,15.7266666667,36.03,-1.3,760.6,86,3,60,-3.35,36.1904828227,36.1904828227 -70,0,18.1,36.8266666667,16.79,37.5,18.29,37.2666666667,16.79,36.8633333333,17,63.6,-0.0333333333,95.6,16.6,33.1933333333,19.1,40.86,15.8,39.89,-1.1666666667,760.6,85.3333333333,3,60.3333333333,-3.3333333333,11.616501445,11.616501445 -80,0,18.1,36.9,16.79,37.4666666667,18.29,37.4,16.79,36.73,16.89,61.8966666667,0.1666666667,95.8,16.6,32.7966666667,19.0666666667,41.0266666667,15.8,40.5933333333,-1.0333333333,760.6,84.6666666667,3,60.6666666667,-3.3166666667,19.672943349,19.672943349 -330,10,18.1,36.7966666667,16.79,37.4,18.23,37.4,16.79,36.59,16.89,60.7633333333,0.2333333333,95.9,16.5142857143,32.3128571429,19,41.4333333333,15.8,40.2,-0.9,760.6,84,3,61,-3.3,25.393969845,25.393969845 -220,0,18.0333333333,36.53,16.79,37.4,18.23,37.26,16.79,36.53,16.8257142857,59.7042857143,0.35,95.9,16.5,31.9394444444,19.00625,41.22125,15.89,39.9,-0.8166666667,760.6,83.8333333333,2.8333333333,61,-3.2333333333,46.9958432717,46.9958432717 -70,0,18,36.43,16.79,37.4666666667,18.29,37.3333333333,16.79,36.4,16.79,59.059375,0.475,95.875,16.5,31.7127777778,19.0888888889,41.0833333333,15.89,39.5,-0.7333333333,760.6,83.6666666667,2.6666666667,61,-3.1666666667,2.8937585303,2.8937585303 -60,0,18,36.23,16.79,37.4666666667,18.29,37.53,16.79,36.3266666667,16.79,58.418125,0.62,95.9,16.5,31.5181818182,19.1588235294,40.9176470588,15.89,38.99,-0.65,760.6,83.5,2.5,61,-3.1,15.2382852277,15.2382852277 -50,0,18,36.06,16.79,37.4,18.29,37.59,16.745,36.2,16.7642857143,57.7071428571,0.95,96.095,16.5,31.4277777778,19.21,40.8266666667,15.89,38.6566666667,-0.5666666667,760.6,83.3333333333,2.3333333333,61,-3.0333333333,12.0462022023,12.0462022023 -60,0,18,36,16.79,37.29,18.29,37.5,16.7,36.1633333333,16.7052941176,57.03,1.29,96.09,16.5,31.2736363636,19.29,40.8175,15.89,38.2233333333,-0.4833333333,760.6,83.1666666667,2.1666666667,61,-2.9666666667,19.2601717543,19.2601717543 -80,0,17.89,35.8633333333,16.76,37.2,18.29,37.5,16.7,36.09,16.7,56.4011111111,1.3566666667,96.03,16.48,31.1809090909,19.3525,40.73375,15.89,37.89,-0.4,760.6,83,2,61,-2.9,38.1491677836,38.1491677836 -70,0,17.89,35.73,16.7,37.1266666667,18.2,37.4,16.7,36.06,16.6714285714,55.94,1.4175,96.2425,16.4511111111,31.0155555556,19.4511111111,40.6755555556,15.8,37.59,-0.2833333333,760.55,82.6666666667,2,61.1666666667,-2.85,43.232349935,43.232349935 -80,0,17.89,35.6266666667,16.76,36.8333333333,18.2,37.4,16.7,36,16.6277777778,55.425,1.5,96.4,16.4388888889,30.9166666667,19.5,40.7,15.8,37.4633333333,-0.1666666667,760.5,82.3333333333,2,61.3333333333,-2.8,33.9555607527,33.9555607527 -70,0,17.89,35.7,16.7,36.7,18.2,37.4,16.7,35.9666666667,16.6,54.9988888889,1.795,96.7,16.39,30.7955555556,19.5153846154,40.7,15.8,37.1333333333,-0.05,760.45,82,2,61.5,-2.75,33.8381352718,33.8381352718 -80,0,17.8566666667,35.79,16.7,36.59,18.2,37.4,16.7,35.9,16.6,54.6877777778,2.09,97,16.39,30.775,19.5545454545,40.7,15.8,36.8975,0.0666666667,760.4,81.6666666667,2,61.6666666667,-2.7,8.2526259706,8.2526259706 -70,0,17.79,35.79,16.7,36.53,18.2,37.4,16.6,35.79,16.6,54.39875,2.19,97,16.39,30.73375,19.5454545455,40.67,15.8,36.6566666667,0.1833333333,760.35,81.3333333333,2,61.8333333333,-2.65,40.1433714665,40.1433714665 -80,0,17.79,35.8266666667,16.7,36.5,18.2,37.4,16.6666666667,35.8633333333,16.5277777778,54.1272222222,2.29,97,16.39,30.7,19.6166666667,40.6144444444,15.8,36.4666666667,0.3,760.3,81,2,62,-2.6,35.599671572,35.599671572 -50,0,17.79,35.975,16.7,36.5,18.2,37.5,16.6,35.79,16.5111111111,53.8561111111,2.29,97.0225,16.39,30.7,19.7,40.5922222222,15.8,36.3266666667,0.35,760.3,80.8333333333,2,62,-2.5833333333,46.4351544506,46.4351544506 -40,0,17.79,36.06,16.7,36.5,18.2,37.5,16.6,35.79,16.5,53.7116666667,2.29,97.09,16.39,30.6777777778,19.6944444444,40.505,15.8,36.29,0.4,760.3,80.6666666667,2,62,-2.5666666667,0.3747302457,0.3747302457 -30,0,17.7,36.09,16.7,36.5,18.2,37.4666666667,16.6,35.79,16.5,53.46,2.26,97.1266666667,16.39,30.7,19.6333333333,40.515,15.8,36.23,0.45,760.3,80.5,2,62,-2.55,29.8165826709,29.8165826709 -50,0,17.7,36.1633333333,16.7,36.56,18.1333333333,37.3266666667,16.6,35.79,16.4755555556,53.2272222222,2.2,97,16.3844444444,30.7,19.6,40.505,15.8,36.09,0.5,760.3,80.3333333333,2,62,-2.5333333333,18.3372840402,18.3372840402 -80,0,17.7,36.2,16.6,36.5,18.05,37.2,16.6,35.845,16.4205555556,53.0205555556,2.245,97.245,16.3733333333,30.7,19.6,40.5276923077,15.8,36.03,0.55,760.3,80.1666666667,2,62,-2.5166666667,37.0983577683,37.0983577683 -80,0,17.7,36.26,16.6,36.5,18,37.29,16.5333333333,35.8633333333,16.39,52.8927777778,2.23,97.2266666667,16.3511111111,30.7,19.6166666667,40.515,15.7633333333,35.9666666667,0.6,760.3,80,2,62,-2.5,38.1043695263,38.1043695263 -80,0,17.6,36.23,16.6,36.5,18,37.29,16.5,35.9,16.39,52.765,2.1633333333,97.1566666667,16.29,30.7,19.7,40.58,15.69,35.9,0.6,760.3,80.5,2,61.8333333333,-2.4166666667,13.0361479591,13.0361479591 -70,0,17.6,36.29,16.6,36.53,18,37.29,16.5,35.9,16.39,52.6277777778,2.03,97.09,16.29,30.705,19.735,40.505,15.69,35.79,0.6,760.3,81,2,61.6666666667,-2.3333333333,12.7467940678,12.7467940678 -90,0,17.6,36.29,16.6,36.59,18,37.3633333333,16.5,36,16.3788888889,52.4933333333,2.03,97.16,16.29,30.78,19.79,40.4888888889,15.69,35.79,0.6,760.3,81.5,2,61.5,-2.25,33.9420404984,33.9420404984 -80,0,17.6,36.29,16.5666666667,36.59,18,37.4333333333,16.5,36,16.3566666667,52.4272222222,2.1633333333,97.3666666667,16.29,30.7955555556,19.8511111111,40.4716666667,15.69,35.79,0.6,760.3,82,2,61.3333333333,-2.1666666667,24.2740331218,24.2740331218 -80,0,17.6,36.29,16.55,36.6175,18,37.5,16.5,36,16.3177777778,52.3022222222,2.2,97.3,16.29,30.8788888889,19.89,40.66,15.63,35.73,0.6,760.3,82.5,2,61.1666666667,-2.0833333333,18.9292265102,18.9292265102 -80,0,17.6,36.3633333333,16.5,36.7,18,37.53,16.4633333333,36.0266666667,16.29,52.1844444444,2.2,97.4,16.29,30.89,19.9816666667,40.8544444444,15.69,35.79,0.6,760.3,83,2,61,-2,2.7773991344,2.7773991344 -70,0,17.5,36.4333333333,16.5,36.7,18,37.53,16.39,35.9666666667,16.29,52.1022222222,2.1266666667,97.3333333333,16.29,30.89,20.0166666667,41.2533333333,15.69,35.79,0.55,760.3,83.6666666667,2,60.5,-1.9333333333,44.9512949213,44.9512949213 -60,0,17.5,36.5,16.5,36.7,18,37.59,16.39,36,16.27,52.0072222222,2.09,97.4,16.27,30.8677777778,20.0888888889,41.7861111111,15.6,35.6633333333,0.5,760.3,84.3333333333,2,60,-1.8666666667,40.0861656875,40.0861656875 -50,0,17.5,36.5,16.5,36.73,18,37.53,16.39,36.06,16.26,51.8744444444,2.03,97.26,16.225,30.8288888889,20.1,42.0755555556,15.6,35.59,0.45,760.3,85,2,59.5,-1.8,24.0506525035,24.0506525035 -80,0,17.5,36.56,16.4266666667,36.73,17.9633333333,37.3633333333,16.39,36.2,16.235,51.7911111111,1.9,97.19,16.2,30.8844444444,20.1333333333,42.3422222222,15.6,35.59,0.4,760.3,85.6666666667,2,59,-1.7333333333,1.6064379597,1.6064379597 -80,0,17.5,36.59,16.4266666667,36.73,17.89,37.29,16.39,36.2,16.21,51.71,1.8266666667,97.1233333333,16.2,30.945,20.1277777778,42.3694444444,15.6,35.59,0.35,760.3,86.3333333333,2,58.5,-1.6666666667,25.6003406132,25.6003406132 -60,0,17.5,36.6633333333,16.4266666667,36.79,17.89,37.4,16.39,36.2,16.2,51.6938888889,1.6,96.9666666667,16.2,31,20.1888888889,42.1966666667,15.6,35.59,0.3,760.3,87,2,58,-1.6,18.6550636077,18.6550636077 -70,0,17.39,36.6266666667,16.39,36.8266666667,17.89,37.4666666667,16.3233333333,36.26,16.2,51.6022222222,1.5333333333,96.9,16.2,31.0333333333,20.2,42.0172222222,15.6,35.59,0.2666666667,760.3666666667,87.5,2,56.8333333333,-1.55,24.9285842408,24.9285842408 -340,0,17.39,36.75,16.39,36.9666666667,17.8566666667,37.43,16.29,36.29,16.2,51.59,1.39,96.69,16.2,31.0944444444,20.1166666667,41.73,15.6,35.59,0.2333333333,760.4333333333,88,2,55.6666666667,-1.5,19.9632868404,19.9632868404 -360,0,17.39,36.9666666667,16.39,36.9333333333,17.79,37.29,16.29,36.29,16.1722222222,51.645,1.3233333333,96.69,16.2,31.1166666667,20.1,41.4294444444,15.6,35.6266666667,0.2,760.5,88.5,2,54.5,-1.45,1.0473472299,1.0473472299 -160,0,17.39,37.03,16.39,37,17.79,37.2,16.29,36.4,16.1222222222,51.7,1.2,96.5633333333,16.2,31.1888888889,20.1333333333,41.2488888889,15.6,35.6266666667,0.1666666667,760.5666666667,89,2,53.3333333333,-1.4,26.2144514243,26.2144514243 -120,10,17.39,37.1633333333,16.39,37.1266666667,17.79,37.2,16.29,36.4,16.1,51.71,1.2,96.69,16.2,31.2,20.1333333333,41.1022222222,15.5,35.7,0.1333333333,760.6333333333,89.5,2,52.1666666667,-1.35,8.0199424876,8.0199424876 -90,0,17.39,37.2,16.39,37.2,17.79,37.19,16.2,36.3266666667,16.1,51.71,1.1,96.69,16.1166666667,31.2,20.1,41.09,15.5,35.7,0.1,760.7,90,2,51,-1.3,10.2557117585,10.2557117585 -90,0,17.39,37.3333333333,16.5,37.4333333333,17.79,37.2,16.2,36.4,16.1,51.7,1.1,96.7633333333,16.1,31.23,20.1222222222,41.1144444444,15.5,35.7,0.05,760.7,90.5,2,50.5,-1.2833333333,48.7613357836,48.7613357836 -90,10,17.39,37.53,16.5,37.56,17.79,37.2,16.2,36.4,16.1,51.6327777778,1.1,96.7633333333,16.1,31.265,20.1333333333,41.09,15.5,35.7,0,760.7,91,2,50,-1.2666666667,48.3177437563,48.3177437563 -80,0,17.4633333333,37.7233333333,16.6333333333,37.73,17.79,37.2,16.2,36.4666666667,16.1,51.58,0.975,96.5225,16.1,31.29,20.1333333333,41.025,15.5,35.7,-0.05,760.7,91.5,2,49.5,-1.25,38.0035161157,38.0035161157 -170,10,17.5333333333,38.03,16.76,37.8633333333,17.79,37.2,16.2,36.5,16.0666666667,51.4716666667,0.8,96.4,16.1,31.2955555556,20.1833333333,40.9833333333,15.5,35.7,-0.1,760.7,92,2,49,-1.2333333333,3.8185266079,3.8185266079 -830,10,17.6,38.09,16.96,38.03,17.79,37.39,16.2,36.53,16.0388888889,51.3983333333,0.8,96.4,16.1,31.3566666667,20.2,40.8694444444,15.5,35.7,-0.15,760.7,92.5,2,48.5,-1.2166666667,25.791193801,25.791193801 -540,30,17.7633333333,41.16,17.2225,38.1675,17.8566666667,37.7233333333,16.2,36.59,16.0722222222,51.3816666667,0.8,96.4666666667,16.1,31.4416666667,20.2,40.7638888889,15.4266666667,35.7,-0.2,760.7,93,2,48,-1.2,30.015259725,30.015259725 -340,30,17.9633333333,46.5666666667,17.4633333333,38.9933333333,18.0666666667,39.53,16.2,36.59,16.0166666667,51.3388888889,0.8,96.53,16.1,31.6666666667,20.1722222222,40.5,15.39,35.7,-0.15,760.7833333333,92.5,1.8333333333,49.3333333333,-1.2166666667,21.8512045452,21.8512045452 -410,40,18.23,44.2566666667,17.6633333333,39.73,18.4,41.8633333333,16.1333333333,36.6633333333,16,51.4166666667,0.8,96.59,16.1,31.6888888889,20.1,40.515,15.39,35.7,-0.1,760.8666666667,92,1.6666666667,50.6666666667,-1.2333333333,0.0821130583,0.0821130583 -390,30,18.3566666667,43.2566666667,17.8566666667,39.79,18.86,43.36,16.1,36.7,16,51.545,0.7,96.59,16.1,31.7,20.1277777778,40.59,15.39,35.73,-0.05,760.95,91.5,1.5,52,-1.25,21.7775759054,21.7775759054 -360,40,18.5333333333,43.36,18.0333333333,39.6633333333,19.1333333333,43.5,16.1,36.7,16,51.6327777778,0.7,96.59,16.1,31.705,20.1777777778,40.59,15.39,35.79,0,761.0333333333,91,1.3333333333,53.3333333333,-1.2666666667,25.0481884461,25.0481884461 -330,50,18.6,42.2333333333,18.1666666667,39.4633333333,19.46,43.73,16.1333333333,36.9266666667,16.0555555556,51.4027777778,0.7333333333,96.6233333333,16.1,31.78,20.2,40.6205555556,15.39,35.79,0.05,761.1166666667,90.5,1.1666666667,54.6666666667,-1.2833333333,33.4802353056,33.4802353056 -210,40,18.73,41.2666666667,18.3233333333,39.2333333333,19.6666666667,43.79,16.2,37.3333333333,16.4416666667,49.4327777778,0.8,96.6233333333,16.1,31.79,20.225,40.6438888889,15.4175,36.1475,0.1,761.2,90,1,56,-1.3,34.7428553388,34.7428553388 -100,40,18.8566666667,41,18.4633333333,38.8266666667,19.8233333333,43.49,16.23,37.4333333333,16.8883333333,47.7516666667,0.8,96.69,16.1,31.79,20.28,40.8061111111,15.5,37.6,0.1333333333,761.25,90,1.1666666667,56.8333333333,-1.2666666667,39.1255157185,39.1255157185 -160,30,19,40.8633333333,18.6333333333,38.56,19.9633333333,43.0966666667,16.23,37.4333333333,17.2611111111,47.0455555556,0.8,96.69,16.1,31.79,20.27,41.0533333333,15.5333333333,38.6666666667,0.1666666667,761.3,90,1.3333333333,57.6666666667,-1.2333333333,6.9511422771,6.9511422771 -390,20,19.1,40.395,18.76,38.36,19.8566666667,42.1233333333,16.23,37.5266666667,17.5655555556,46.6372222222,0.8333333333,96.8333333333,16.1,31.79,20.245,41.12,15.66,39.2666666667,0.2,761.35,90,1.5,58.5,-1.2,8.1622838625,8.1622838625 -440,10,19.26,39.5966666667,18.9266666667,38.06,19.73,41.53,16.6233333333,38.6666666667,18.22,67.1416666667,0.9,96.9,16.1,31.79,20.2,41.02,15.7266666667,40,0.2333333333,761.4,90,1.6666666667,59.3333333333,-1.1666666667,37.9771455075,37.9771455075 -400,20,19.4266666667,39.1633333333,19,37.86,19.5666666667,40.6,17.4566666667,38.7966666667,18.3816666667,74.8438888889,0.9,96.9,16.1,31.79,20.2,40.9722222222,15.8,40.2666666667,0.2666666667,761.45,90,1.8333333333,60.1666666667,-1.1333333333,22.1851808717,22.1851808717 -420,10,19.5,39.03,19.1333333333,37.8633333333,19.4725,40.295,18.1233333333,38.4633333333,18.29,72.5394444444,0.9,96.9,16.1,31.7955555556,20.2,40.845,15.8,40.5,0.3,761.5,90,2,61,-1.1,31.4834415214,31.4834415214 -390,10,19.6,38.8633333333,19.2,37.73,19.39,40.1266666667,18.8,38.0633333333,18.245,69.5272222222,0.95,96.9,16.1,31.8066666667,20.2,40.8022222222,15.86,40.8333333333,0.3,761.5,89.8333333333,2,61,-1.15,5.225643015,5.225643015 -410,20,19.6666666667,38.73,19.29,37.6633333333,19.29,39.9666666667,19.26,37.6566666667,18.0716666667,67.3566666667,0.9,96.9,16.1,31.8733333333,20.2,40.9577777778,15.89,41.03,0.3,761.5,89.6666666667,2,61,-1.2,41.7774448637,41.7774448637 -210,10,19.7,38.5266666667,19.29,37.53,19.29,39.7666666667,19.8,37.43,17.8744444444,65.32,0.9,96.9,16.1,31.89,20.1277777778,41.1205555556,15.89,41.1633333333,0.3,761.5,89.5,2,61,-1.25,16.6974680964,16.6974680964 -70,20,19.76,38.3266666667,19.39,37.3633333333,19.29,39.56,20.1933333333,37.23,17.7294444444,63.3811111111,0.9,97,16.1,31.89,20.0944444444,41.2,15.9266666667,41.3266666667,0.3,761.5,89.3333333333,2,61,-1.3,9.9759594304,9.9759594304 -60,10,19.79,38.06,19.4633333333,37.29,19.29,39.5,20.295,36.55,17.6333333333,61.545,0.9,97,16.1,31.89,20.0111111111,41.225,16,41.4,0.3,761.5,89.1666666667,2,61,-1.35,34.7272738232,34.7272738232 -50,10,19.8566666667,37.9333333333,19.5,37.1633333333,19.1666666667,39.36,19.93,36.5666666667,17.5388888889,60.3038888889,0.9,96.9,16.1,32.0355555556,19.945,41.4,16,41.5,0.3,761.5,89,2,61,-1.4,8.2939381362,8.2939381362 -70,20,19.89,37.9,19.575,37.1725,19.1,39.5,19.73,36.8333333333,17.4205555556,59.5022222222,0.8333333333,96.8333333333,16.1,32.3627777778,19.9144444444,41.8555555556,16.0666666667,41.5,0.3,761.55,88.8333333333,2,61,-1.4166666667,3.6981951911,3.6981951911 -160,10,19.89,37.9,19.6,37.2,19,39.53,19.5,37.1933333333,17.3288888889,59.0666666667,0.9,97,16.1,32.5611111111,19.9144444444,42.3316666667,16,41.26,0.3,761.6,88.6666666667,2,61,-1.4333333333,1.9118094235,1.9118094235 -360,20,19.9266666667,37.9,19.6,37.23,18.9266666667,39.59,19.4266666667,37.6,17.28,58.8077777778,0.9,97,16.1166666667,32.7027777778,19.9022222222,42.77,16,41.0666666667,0.3,761.65,88.5,2,61,-1.45,42.3010108294,42.3010108294 -150,10,20,37.8266666667,19.6,37.29,18.89,39.59,19.5966666667,37.8633333333,17.245,58.5183333333,0.9,97,16.1666666667,32.8527777778,19.89,43.21,16,40.8633333333,0.3,761.7,88.3333333333,2,61,-1.4666666667,18.6774098664,18.6774098664 -60,10,20,37.9,19.6,37.4333333333,18.8233333333,39.53,19.9966666667,37.73,17.2,58.3116666667,0.8333333333,96.9333333333,16.1777777778,32.9666666667,19.8622222222,43.6088888889,16,40.73,0.3,761.75,88.1666666667,2,61,-1.4833333333,44.0355348634,44.0355348634 -60,20,20,37.9,19.6,37.5,18.79,39.59,20.0666666667,37.43,17.1166666667,58.23,0.9,97,16.1777777778,33.0811111111,19.8122222222,43.8233333333,15.945,40.545,0.3,761.8,88,2,61,-1.5,4.5158886234,4.5158886234 -50,10,20,38,19.5666666667,37.59,18.73,39.59,19.9266666667,37.29,17.0722222222,58.1544444444,0.8333333333,96.9333333333,16.1777777778,33.1877777778,19.79,44.0338888889,15.9633333333,40.4666666667,0.25,761.8,88,2,61,-1.55,24.7953705606,24.7953705606 -50,10,20,38,19.5,37.6633333333,18.76,39.59,19.76,37.4633333333,17,58.085,0.8,96.8666666667,16.2,33.255,19.79,44.2427777778,15.89,40.4,0.2,761.8,88,2,61,-1.6,37.7161368029,37.7161368029 -50,20,19.89,38.09,19.5,37.73,18.7,39.59,19.6333333333,37.7233333333,16.9816666667,58.09,0.6666666667,96.7266666667,16.2,33.29,19.79,44.4377777778,15.89,40.5,0.15,761.8,88,2,61,-1.65,30.2945406525,30.2945406525 -50,10,19.8233333333,38.09,19.4266666667,37.79,18.7,39.6266666667,19.5,38,16.9266666667,58.075,0.6,96.69,16.2,33.3205555556,19.79,44.6144444444,15.89,40.5,0.1,761.8,88,2,61,-1.7,26.4206398278,26.4206398278 -50,0,19.79,38.145,19.3566666667,37.79,18.7,39.6266666667,19.4266666667,38,16.89,58,0.6,96.69,16.2,33.3877777778,19.76,44.9377777778,15.89,40.5,0.05,761.8,88,2,61,-1.75,45.5103341374,45.5103341374 -60,0,19.76,38.1266666667,19.29,37.8633333333,18.7,39.7,19.26,38,16.89,58,0.6,96.7633333333,16.2,33.4833333333,19.705,45.1633333333,15.89,40.5,0,761.8,88,2,61,-1.8,49.2864451953,49.2864451953 -50,0,19.7,38.26,19.2,37.9,18.7,39.645,19.1333333333,38,16.8177777778,57.9277777778,0.6,96.8,16.2,33.5,19.7,45.4627777778,15.89,40.6266666667,-0.1666666667,761.8666666667,88.3333333333,2,60.1666666667,-1.9,13.987128099,13.987128099 -40,0,19.6666666667,38.29,19.1333333333,37.9,18.7,39.7,18.9633333333,37.9,16.79,57.8938888889,0.6,96.8,16.2,33.555,19.7,45.7027777778,15.89,40.76,-0.3333333333,761.9333333333,88.6666666667,2,59.3333333333,-2,6.1745847343,6.1745847343 -20,0,19.6,38.29,19.0666666667,38,18.7,39.6633333333,18.8233333333,37.9,16.79,57.8511111111,0.6666666667,96.8666666667,16.2,33.59,19.7,45.9933333333,15.89,40.9,-0.5,762,89,2,58.5,-2.1,8.718952199,8.718952199 -30,0,19.5666666667,38.4333333333,19,38.06,18.6333333333,39.59,18.7,38,16.715,57.79,0.6666666667,96.9333333333,16.2,33.59,19.7,46.2933333333,15.89,40.9666666667,-0.6666666667,762.0666666667,89.3333333333,2,57.6666666667,-2.2,44.0667627379,44.0667627379 -50,0,19.5,38.56,18.89,38.09,18.6,39.59,18.65,38.0225,16.7,57.745,0.6,96.8,16.2,33.59,19.65,46.345,15.89,41.09,-0.8333333333,762.1333333333,89.6666666667,2,56.8333333333,-2.3,6.231413607,6.231413607 -50,0,19.4633333333,38.6633333333,18.8233333333,38.09,18.6,39.59,18.5,38.09,16.7,57.6938888889,0.6666666667,96.8666666667,16.2,33.6327777778,19.6222222222,46.4144444444,15.89,41.1633333333,-1,762.2,90,2,56,-2.4,14.9484452326,14.9484452326 -60,0,19.39,38.6633333333,18.76,38.2,18.6,39.6266666667,18.39,38.03,16.65,57.5772222222,0.6333333333,96.8333333333,16.2,33.7,19.6,46.5688888889,15.89,41.29,-1.1666666667,762.2,90.6666666667,2,54.3333333333,-2.4833333333,8.2367319963,8.2367319963 -60,0,19.3566666667,38.79,18.675,38.2,18.6,39.7,18.3233333333,38.09,16.6,57.4833333333,0.7,96.9,16.2,33.7,19.6,46.6866666667,15.89,41.3633333333,-1.3333333333,762.2,91.3333333333,2,52.6666666667,-2.5666666667,3.6304772249,3.6304772249 -60,0,19.29,38.79,18.6,38.2,18.7,39.79,18.26,38.09,16.6,57.3816666667,0.7,97,16.2,33.725,19.6,46.78,15.89,41.4333333333,-1.5,762.2,92,2,51,-2.65,11.9206991047,11.9206991047 -40,0,19.29,38.79,18.5666666667,38.23,18.7,39.79,18.2,38.09,16.5944444444,57.2972222222,0.7,97,16.2,33.725,19.5611111111,46.735,15.89,41.56,-1.6666666667,762.2,92.6666666667,2,49.3333333333,-2.7333333333,35.8333302662,35.8333302662 -60,0,19.23,38.73,18.5,38.29,18.79,39.79,18.1,38.09,16.5111111111,57.23,0.6,96.8333333333,16.2,33.755,19.4877777778,46.6594444444,15.89,41.6566666667,-1.8333333333,762.2,93.3333333333,2,47.6666666667,-2.8166666667,32.2510495898,32.2510495898 -40,0,19.2,38.7,18.39,38.2,18.79,39.79,18.1,38.09,16.5,57.1572222222,0.6666666667,96.9666666667,16.2,33.79,19.3961111111,46.51,15.89,41.8633333333,-2,762.2,94,2,46,-2.9,3.7937483285,3.7937483285 -40,0,19.1333333333,38.76,18.39,38.26,18.79,39.8266666667,18,38.03,16.5,57.09,0.7,97,16.2,33.79,19.39,46.6105555556,15.89,41.95,-1.8,762.2166666667,93.5,1.8333333333,48.5,-2.7666666667,8.6354461033,8.6354461033 -40,0,19.1,38.79,18.29,38.29,18.79,39.9,18,38.09,16.5,57.035,0.7,97.06,16.2,33.8572222222,19.39,46.7988888889,15.89,42.09,-1.6,762.2333333333,93,1.6666666667,51,-2.6333333333,7.2835178929,7.2835178929 -30,0,19.1,38.79,18.29,38.29,18.79,39.9,17.89,38.09,16.4205555556,56.9277777778,0.7,97,16.2,33.8633333333,19.3622222222,46.9888888889,15.89,42.1633333333,-1.4,762.25,92.5,1.5,53.5,-2.5,19.595059217,19.595059217 -40,0,19.0666666667,38.76,18.2,38.29,18.73,39.9,17.8233333333,38.03,16.39,56.8572222222,0.7,97,16.2,33.8877777778,19.3344444444,47.035,15.89,42.23,-1.2,762.2666666667,92,1.3333333333,56,-2.3666666667,11.5872549708,11.5872549708 -60,0,19,38.7,18.2,38.29,18.7,40,17.79,38.09,16.39,56.745,0.6333333333,96.9333333333,16.2,33.9,19.29,47.025,15.89,42.29,-1,762.2833333333,91.5,1.1666666667,58.5,-2.2333333333,28.0689911451,28.0689911451 -50,0,18.89,38.645,18.1,38.3266666667,18.7,40,17.79,38.09,16.39,56.6938888889,0.6,96.9,16.2,33.8755555556,19.29,47.1422222222,15.89,42.4,-0.8,762.3,91,1,61,-2.1,29.17600933,29.17600933 -50,0,18.89,38.59,18.1,38.4,18.7,40,17.7,38.09,16.39,56.6266666667,0.6,96.9,16.1722222222,33.845,19.29,47.2,15.89,42.4666666667,-0.7833333333,762.2833333333,90.8333333333,1,60.6666666667,-2.1,4.937966913,4.937966913 -40,0,18.89,38.59,18,38.29,18.7,40.03,17.7,38.09,16.37,56.5315,0.5666666667,96.9,16.1833333333,33.8572222222,19.29,47.2,15.89,42.6266666667,-0.7666666667,762.2666666667,90.6666666667,1,60.3333333333,-2.1,7.9458270688,7.9458270688 -50,0,18.79,38.59,18,38.29,18.7,40.03,17.6666666667,38.09,16.3689473684,56.4578947368,0.5,96.9,16.1888888889,33.8755555556,19.265,47.1694444444,15.89,42.7,-0.75,762.25,90.5,1,60,-2.1,46.1032702005,46.1032702005 -50,0,18.73,38.59,17.89,38.3266666667,18.7,40.09,17.6,38.03,16.29,56.4,0.4666666667,96.7633333333,16.1833333333,33.9,19.2,47.0961111111,15.89,42.6633333333,-0.7333333333,762.2333333333,90.3333333333,1,59.6666666667,-2.1,42.9724859539,42.9724859539 -60,0,18.7,38.6266666667,17.89,38.4,18.7,40.09,17.6,38.09,16.29,56.3266666667,0.4,96.69,16.1111111111,33.8694444444,19.2,47.1877777778,15.89,42.6633333333,-0.7166666667,762.2166666667,90.1666666667,1,59.3333333333,-2.1,45.359937672,45.359937672 -50,0,18.7,38.6266666667,17.89,38.4333333333,18.7,40.09,17.575,38.09,16.29,56.28,0.3666666667,96.69,16.1,33.8816666667,19.1777777778,47.2,15.89,42.7,-0.7,762.2,90,1,59,-2.1,5.7634478202,5.7634478202 -40,0,18.6,38.59,17.8233333333,38.4333333333,18.7,40.09,17.5,38.09,16.29,56.2,0.3666666667,96.69,16.1388888889,33.8205555556,19.2,47.145,15.89,42.7,-0.7833333333,762.2333333333,89.6666666667,1.1666666667,59.3333333333,-2.2333333333,1.7769617029,1.7769617029 -30,0,18.6,38.59,17.76,38.4333333333,18.73,40.09,17.5,38.09,16.26,56.08,0.3,96.69,16.1444444444,33.8388888889,19.1666666667,47.09,15.89,42.7,-0.8666666667,762.2666666667,89.3333333333,1.3333333333,59.6666666667,-2.3666666667,29.2877193773,29.2877193773 -30,0,18.6,38.59,17.745,38.5,18.73,40.09,17.5,38.09,16.22,55.9977777778,0.2333333333,96.6233333333,16.15,33.845,19.1666666667,47.065,15.89,42.7,-0.95,762.3,89,1.5,60,-2.5,15.7084132428,15.7084132428 -40,0,18.6,38.59,17.7,38.56,18.7,40.09,17.4633333333,38.06,16.272,55.965,0.2,96.5,16.1111111111,33.8511111111,19.1944444444,46.9388888889,15.89,42.79,-1.0333333333,762.3333333333,88.6666666667,1.6666666667,60.3333333333,-2.6333333333,27.8444637079,27.8444637079 -50,0,18.5,38.6266666667,17.7,38.59,18.6333333333,40.09,17.39,38,16.2189473684,55.8242105263,0.1333333333,96.56,16.1111111111,33.9,19.1111111111,46.845,15.89,42.79,-1.1166666667,762.3666666667,88.3333333333,1.8333333333,60.6666666667,-2.7666666667,17.7247707732,17.7247707732 -50,0,18.5,38.7,17.6333333333,38.53,18.6,40.09,17.39,38,16.2,55.73,0.1,96.5,16.1222222222,33.9,19.1,46.735,15.89,42.9333333333,-1.2,762.4,88,2,61,-2.9,7.1634155815,7.1634155815 -60,0,18.4633333333,38.6633333333,17.6,38.59,18.6,40.1633333333,17.39,38,16.2,55.6572222222,0,96.4,16.1,33.9,19.1,46.7,15.89,43,-1.3666666667,762.45,88.1666666667,2,59.3333333333,-3.05,28.3567731385,28.3567731385 -60,0,18.39,38.6633333333,17.6,38.59,18.6,40.2,17.3566666667,38.03,16.2,55.575,-0.2333333333,96.1,16.1,33.9,19.0833333333,46.6766666667,15.89,43.06,-1.5333333333,762.5,88.3333333333,2,57.6666666667,-3.2,16.7049328913,16.7049328913 -50,0,18.39,38.7,17.5,38.7,18.6,40.2,17.29,38.09,16.2,55.51,-0.5,95.46,16.1,33.9,19,46.51,15.89,43.1266666667,-1.7,762.55,88.5,2,56,-3.35,6.0200595297,6.0200595297 -40,0,18.39,38.7,17.5,38.7,18.7,40.29,17.29,38.09,16.2,55.4611111111,-0.8333333333,94.6,16.1,33.9,19,46.5,15.89,43.26,-1.8666666667,762.6,88.6666666667,2,54.3333333333,-3.5,12.7927162102,12.7927162102 -50,0,18.3566666667,38.73,17.5,38.79,18.7,40.29,17.29,38.09,16.1944444444,55.4111111111,-1.2633333333,93.6333333333,16.1,33.9,19,46.515,15.89,43.3266666667,-2.0333333333,762.65,88.8333333333,2,52.6666666667,-3.65,17.669265822,17.669265822 -50,0,18.29,38.79,17.5,38.79,18.7,40.29,17.29,38.09,16.1611111111,55.345,-1.53,93.16,16.1,33.9,19,46.545,15.89,43.4,-2.2,762.7,89,2,51,-3.8,41.5659964667,41.5659964667 -60,10,18.29,38.79,17.39,38.7,18.7,40.29,17.23,38.03,16.1166666667,55.275,-1.7666666667,92.6566666667,16.1,33.9,18.9877777778,46.5,15.89,43.5666666667,-2.1333333333,762.7,89.1666666667,2,51.6666666667,-3.7,39.1611958272,39.1611958272 -30,0,18.29,39.3,17.39,38.7,18.65,40.19,17.2,38,16.1,55.22,-1.9666666667,92.6566666667,16.1,33.8938888889,18.9327777778,46.4833333333,15.89,43.7,-2.0666666667,762.7,89.3333333333,2,52.3333333333,-3.6,47.0076103695,47.0076103695 -30,0,18.29,39.8933333333,17.3566666667,38.79,18.6,40,17.2,38,16.1,55.1083333333,-2.06,93.1933333333,16.1,33.8816666667,18.9022222222,46.4,15.89,43.7,-2,762.7,89.5,2,53,-3.5,41.9599515852,41.9599515852 -50,10,18.26,39.7233333333,17.3566666667,38.8633333333,18.5333333333,40,17.2,38,16.1,55.09,-1.9333333333,94.5266666667,16.0888888889,33.8877777778,18.89,46.4055555556,15.89,43.6266666667,-1.9333333333,762.7,89.6666666667,2,53.6666666667,-3.4,7.4492509593,7.4492509593 -50,0,18.2,39.59,17.3566666667,39.03,18.5,40.03,17.1333333333,38.06,16.1,55.035,-1.9633333333,94.0933333333,16.0777777778,33.8755555556,18.89,46.4666666667,15.89,43.6633333333,-1.8666666667,762.7,89.8333333333,2,54.3333333333,-3.3,29.5338042546,29.5338042546 -50,10,18.2,39.59,17.29,39.09,18.5,40.09,17.1,38,16.1,55,-2.09,93.76,16.0888888889,33.8877777778,18.8844444444,46.5,15.89,43.59,-1.8,762.7,90,2,55,-3.2,41.1981300334,41.1981300334 -40,10,18.2,39.59,17.29,39.1266666667,18.5,40.06,17.1,38,16.1,54.8111111111,-2.4333333333,92.6266666667,16.0722222222,33.7644444444,18.8622222222,46.5288888889,15.89,43.56,-1.9666666667,762.8,90.1666666667,1.8333333333,55.3333333333,-3.35,31.5942682675,31.5942682675 -60,10,18.2,39.6633333333,17.23,39.1266666667,18.5,39.9333333333,17.1,37.86,16.1,54.4044444444,-2.56,92.7,16,33.3283333333,18.7955555556,46.0705555556,15.89,43.4333333333,-2.1333333333,762.9,90.3333333333,1.6666666667,55.6666666667,-3.5,23.4964980744,23.4964980744 -40,10,18.2,39.59,17.2,38.93,18.5,39.9,17.1,37.56,16.0722222222,53.9972222222,-2.59,92.8333333333,16,33.0572222222,18.765,45.4066666667,15.86,42.9233333333,-2.3,763,90.5,1.5,56,-3.65,12.9370451788,12.9370451788 -50,10,18.1666666667,39.4666666667,17.2,38.6175,18.5,39.8266666667,17.0333333333,37.36,16.0277777778,53.5683333333,-2.59,93.0266666667,15.945,32.8344444444,18.72,44.7705555556,15.8,42.39,-2.4666666667,763.1,90.6666666667,1.3333333333,56.3333333333,-3.8,1.2290175422,1.2290175422 -40,0,18.1,39.2666666667,17.1333333333,38.5,18.39,39.6633333333,17,37.09,16.0388888889,53.2055555556,-2.5,93.245,15.9266666667,32.645,18.6888888889,44.22,15.8,41.7966666667,-2.6333333333,763.2,90.8333333333,1.1666666667,56.6666666667,-3.95,16.4404063835,16.4404063835 -30,0,18.1,39.06,17.1,38.3633333333,18.39,39.53,17,37.03,16.0388888889,52.3772222222,-2.6266666667,92.5966666667,15.89,32.4983333333,18.6055555556,43.665,15.8,41.39,-2.8,763.3,91,1,57,-4.1,11.2426742213,11.2426742213 -20,0,18.1,38.9333333333,17.1,38.23,18.39,39.3633333333,16.89,36.9,16.1388888889,50.8016666667,-2.8333333333,91.73,15.89,32.3694444444,18.6,43.2683333333,15.8,40.8333333333,-3.05,763.3666666667,91.3333333333,1,54.3333333333,-4.3,43.8665919704,43.8665919704 -20,0,18.0666666667,38.7233333333,17,37.9666666667,18.39,39.23,16.89,36.8266666667,16.2,49.7744444444,-3.03,90.9566666667,15.885,32.2038888889,18.5388888889,42.9427777778,15.7175,40.375,-3.3,763.4333333333,91.6666666667,1,51.6666666667,-4.5,33.882710035,33.882710035 -40,0,18,38.59,17,37.9,18.29,39.09,16.89,36.7,16.2,49.115,-3.1633333333,90.3566666667,15.825,32.0222222222,18.5,42.5394444444,15.69,39.86,-3.55,763.5,92,1,49,-4.7,26.2966651819,26.2966651819 -40,0,18,38.5,17,37.79,18.23,38.9633333333,16.8233333333,36.5666666667,16.2,48.61,-3.23,90.4933333333,15.805,31.8916666667,18.4327777778,42.1811111111,15.69,39.5266666667,-3.8,763.5666666667,92.3333333333,1,46.3333333333,-4.9,27.8843331966,27.8843331966 -40,0,18,38.4333333333,16.9266666667,37.73,18.2,38.9,16.79,36.5,16.2,47.9777777778,-3.23,90.56,15.8,31.78,18.39,41.8827777778,15.69,39.2666666667,-4.05,763.6333333333,92.6666666667,1,43.6666666667,-5.1,12.3735836707,12.3735836707 -50,0,17.89,38.29,16.89,37.6633333333,18.2,38.9,16.79,36.4333333333,16.22,47.5088888889,-3.29,90.5633333333,15.8,31.705,18.39,41.6327777778,15.69,38.9666666667,-4.3,763.7,93,1,41,-5.3,0.3648385406,0.3648385406 -60,0,17.89,38.29,16.89,37.53,18.2,38.8633333333,16.79,36.4,16.21,47.0566666667,-3.29,90.3566666667,15.8,31.65,18.34,41.45,15.69,38.7666666667,-3.8333333333,763.7833333333,92.5,1,43.1666666667,-4.9166666667,47.4453217583,47.4453217583 -60,20,17.89,38.145,16.89,37.4666666667,18.2,38.8175,16.79,36.4,16.225,46.7833333333,-3.29,90.0666666667,15.8,31.5611111111,18.29,41.2472222222,15.6,38.43,-3.3666666667,763.8666666667,92,1,45.3333333333,-4.5333333333,35.9575069277,35.9575069277 -60,10,17.8566666667,38.0266666667,16.89,37.3266666667,18.2,38.9,16.79,36.29,16.23,46.4761111111,-3.29,90.3333333333,15.7877777778,31.5,18.28,41.0461111111,15.6,38.1566666667,-2.9,763.95,91.5,1,47.5,-4.15,13.9662272297,13.9662272297 -50,20,17.79,37.8266666667,16.79,37.1633333333,18.2,38.8633333333,16.79,36.29,16.265,46.1133333333,-3.1633333333,90.6333333333,15.7877777778,31.4327777778,18.205,40.8088888889,15.6,37.9666666667,-2.4333333333,764.0333333333,91,1,49.6666666667,-3.7666666667,37.1891428018,37.1891428018 -40,10,17.79,37.7,16.79,37.03,18.1333333333,38.79,16.8233333333,36.5,16.285,45.7611111111,-3.03,91.0266666667,15.7205555556,31.39,18.2,40.655,15.6,37.7666666667,-1.9666666667,764.1166666667,90.5,1,51.8333333333,-3.3833333333,43.5374200461,43.5374200461 -30,20,17.79,37.7,16.8233333333,37,18.1,38.6633333333,16.9633333333,36.76,16.28,45.4294444444,-2.9,91.2266666667,15.7022222222,31.3733333333,18.2,40.515,15.6,37.59,-1.5,764.2,90,1,54,-3,19.0185062587,19.0185062587 -50,10,17.79,37.7,16.8233333333,36.9333333333,18.1,38.59,17.05,36.95,16.28,45.1816666667,-2.7666666667,91.56,15.7205555556,31.29,18.1777777778,40.45,15.6,37.4633333333,-1.0833333333,764.25,87.6666666667,1,55.3333333333,-2.9666666667,35.9723757952,35.9723757952 -70,10,17.79,37.7,16.89,36.9666666667,18.0666666667,38.4666666667,17.23,37.0666666667,16.29,45.0555555556,-2.545,92.15,15.7083333333,31.29,18.1388888889,40.3277777778,15.6,37.1333333333,-0.6666666667,764.3,85.3333333333,1,56.6666666667,-2.9333333333,11.9803355192,11.9803355192 -60,20,17.79,37.59,16.89,36.9,18,38.4666666667,17.29,37.2,16.29,45.2611111111,-2.2233333333,92.9966666667,15.7022222222,31.29,18.1,40.23,15.6,36.9333333333,-0.25,764.35,83,1,58,-2.9,32.3882437078,32.3882437078 -60,10,17.79,37.59,17,36.79,18,38.53,17.3233333333,37.2,16.29,44.88,-1.9633333333,93.3966666667,15.7572222222,31.29,18.1,40.1033333333,15.6,36.76,0.1666666667,764.4,80.6666666667,1,59.3333333333,-2.8666666667,48.7835380365,48.7835380365 -60,20,17.79,37.6266666667,17,36.7225,18.0666666667,38.6633333333,17.4633333333,37.26,16.29,44.5777777778,-1.6333333333,93.9633333333,15.7877777778,31.29,18.0888888889,39.9988888889,15.6,36.6266666667,0.5833333333,764.45,78.3333333333,1,60.6666666667,-2.8333333333,18.8999403967,18.8999403967 -60,20,17.79,37.7,17,36.7,18.1,38.7,17.6333333333,37.2,16.29,44.2905555556,-1.36,94.23,15.7877777778,31.235,18.0888888889,39.9888888889,15.63,36.53,1,764.5,76,1,62,-2.8,23.2072064304,23.2072064304 -60,10,17.79,37.7,17.1,36.7,18.1,38.76,17.76,37.1266666667,16.29,43.9305555556,-1.0666666667,94.53,15.81,31.1833333333,18.1,39.95,15.63,36.4633333333,1.2,764.5,74.3333333333,1,55.1666666667,-2.9333333333,40.6148147886,40.6148147886 -50,20,17.8566666667,37.76,17.1666666667,36.7,18.1,38.79,17.8233333333,37.03,16.29,43.6744444444,-0.8,94.9233333333,15.885,31.1777777778,18.1,39.8066666667,15.63,36.3266666667,1.4,764.5,72.6666666667,1,48.3333333333,-3.0666666667,24.7204056592,24.7204056592 -50,10,17.89,37.7,17.2,36.7,18.1,38.79,17.89,37.09,16.29,43.27,-0.4666666667,95.4333333333,15.89,31.05,18.1,39.3922222222,15.69,36.4975,1.6,764.5,71,1,41.5,-3.2,2.5154511328,2.5154511328 -40,0,17.9633333333,37.6266666667,17.2,36.76,18.1,38.8266666667,17.9266666667,37.06,16.29,43.145,-0.2666666667,95.7,15.9327777778,30.9027777778,18.1,39.0366666667,15.69,36.59,1.8,764.5,69.3333333333,1,34.6666666667,-3.3333333333,6.5310870297,6.5310870297 -50,10,18,37.59,17.2,36.76,18.1,38.8266666667,18,37,16.3011111111,42.9983333333,0.0333333333,95.8,15.9755555556,30.7561111111,18.1,38.845,15.69,36.6266666667,2,764.5,67.6666666667,1,27.8333333333,-3.4666666667,8.0719158053,8.0719158053 -50,0,18,37.53,17.26,36.7,18.1,38.7,17.9633333333,36.9666666667,16.3622222222,42.7694444444,0.2333333333,95.7266666667,16,30.6388888889,18.1,38.6377777778,15.69,36.7,2.2,764.5,66,1,21,-3.6,4.4726579916,4.4726579916 -60,0,18,37.4666666667,17.29,36.6633333333,18.1,38.6266666667,17.9633333333,36.9,16.3566666667,42.4483333333,0.4333333333,95.3666666667,16,30.55,18.0777777778,38.515,15.69,36.6633333333,2.4333333333,764.45,64.3333333333,1,20.8333333333,-3.75,20.1807044097,20.1807044097 -60,10,18,37.4,17.29,36.53,18.1,38.645,18,36.9,16.39,42.4722222222,0.6333333333,95.2266666667,16.1,30.5161111111,18.0666666667,38.3911111111,15.69,36.53,2.6666666667,764.4,62.6666666667,1,20.6666666667,-3.9,3.1929933932,3.1929933932 -50,0,18,37.345,17.29,36.5,18.0333333333,38.6266666667,17.9266666667,36.9,16.3677777778,42.4,0.8,94.8666666667,16.225,30.38,18.0888888889,38.1794444444,15.7633333333,36.4,2.9,764.35,61,1,20.5,-4.05,28.1002961216,28.1002961216 -50,0,18.0333333333,37.3266666667,17.29,36.5,18.1,38.7,18,36.9,16.3733333333,42.3694444444,0.9333333333,94.9333333333,16.3572222222,30.2716666667,18.1388888889,38.075,15.69,36.2666666667,3.1333333333,764.3,59.3333333333,1,20.3333333333,-4.2,16.826205398,16.826205398 -50,10,18.1,37.3266666667,17.29,36.4666666667,18.1,38.7,17.9266666667,36.8266666667,16.3844444444,42.0283333333,1.1633333333,95.09,16.5155555556,30.1922222222,18.225,37.95,15.69,36.1633333333,3.3666666667,764.25,57.6666666667,1,20.1666666667,-4.35,27.0321140531,27.0321140531 -50,0,18.1,37.1633333333,17.29,36.4,18.1,38.7,17.89,36.9,16.39,41.66,1.4725,95.3475,16.6388888889,30.0327777778,18.3572222222,37.8572222222,15.7633333333,36.03,3.6,764.2,56,1,20,-4.5,45.6615610979,45.6615610979 -50,0,18.1,37.09,17.29,36.3633333333,18.1,38.6633333333,17.815,36.645,16.39,41.465,1.7266666667,95.7,16.7,29.8744444444,18.5155555556,37.745,15.8,35.8633333333,3.7333333333,764.15,56,1.1666666667,27.5,-4.3833333333,19.3440379575,19.3440379575 -290,0,18.1,37,17.29,36.29,18.1,38.59,17.79,36.36,16.39,41.2872222222,2.0666666667,96.1933333333,16.7,29.7294444444,18.6,37.5477777778,15.8,35.73,3.8666666667,764.1,56,1.3333333333,35,-4.2666666667,48.0133582023,48.0133582023 -360,0,18.1,37.06,17.29,36.26,18.1,38.56,17.7633333333,36.4,16.39,41.1033333333,2.3333333333,96.5266666667,16.7,29.5833333333,18.6,37.3561111111,15.89,36.03,4,764.05,56,1.5,42.5,-4.15,19.2343295668,19.2343295668 -230,0,18.1,37.1633333333,17.29,36.2,18.1,38.5,18.1566666667,36.4,16.445,41,2.53,96.69,16.715,29.4572222222,18.6611111111,37.255,15.89,36.5633333333,4.1333333333,764,56,1.6666666667,50,-4.0333333333,47.0800989657,47.0800989657 -60,0,18.1666666667,37.09,17.29,36.245,18,38.29,18.5333333333,36.2966666667,16.5,40.9155555556,2.6633333333,96.8966666667,16.77,29.3622222222,18.7,37.1105555556,15.9633333333,36.4666666667,4.2666666667,763.95,56,1.8333333333,57.5,-3.9166666667,34.0317828581,34.0317828581 -70,0,18.2,36.8633333333,17.3233333333,36.23,18,38.29,18.6666666667,35.89,16.5277777778,40.71,2.9333333333,96.69,16.8066666667,29.215,18.7,36.9994444444,15.89,36.3266666667,4.4,763.9,56,2,65,-3.8,45.1321176835,45.1321176835 -70,0,18.26,36.73,17.39,36.03,18,38.2,18.6,35.4666666667,16.5555555556,40.3666666667,3,96.6233333333,16.945,29.15,18.7,36.8988888889,16,36.4,4.45,763.8666666667,55.1666666667,1.8333333333,57.5,-3.95,12.689853285,12.689853285 -80,0,18.3233333333,36.4,17.5333333333,36,18,38.1266666667,18.5333333333,35.1933333333,16.6277777778,39.9172222222,3.1266666667,97,17.0777777778,29.055,18.7,36.7961111111,15.9266666667,36.4666666667,4.5,763.8333333333,54.3333333333,1.6666666667,50,-4.1,20.3048564726,20.3048564726 -60,0,18.39,36.3266666667,17.6666666667,36.06,18.0333333333,38,18.39,35.09,16.735,39.7088888889,3.2,96.9333333333,17.245,28.8855555556,18.7,36.725,16,36.645,4.55,763.8,53.5,1.5,42.5,-4.25,0.712430675,0.712430675 -60,0,18.5333333333,36.5,17.8233333333,36,18.1,37.9333333333,18.39,35.1633333333,16.84,39.6144444444,3.29,97,17.4161111111,28.8183333333,18.775,36.6033333333,15.9633333333,36.8266666667,4.6,763.7666666667,52.6666666667,1.3333333333,35,-4.4,5.5223897099,5.5223897099 -40,0,18.6666666667,36.76,17.89,35.86,18.1333333333,37.76,18.3233333333,35.4633333333,16.9383333333,39.58,3.3633333333,97,17.5888888889,28.6988888889,18.84,36.4988888889,15.9633333333,36.9,4.65,763.7333333333,51.8333333333,1.1666666667,27.5,-4.55,25.0768895959,25.0768895959 -50,0,18.8233333333,36.9,18.0333333333,35.7,18.2,37.7,18.39,35.6633333333,17.0666666667,39.515,3.4,96.9333333333,17.7438888889,28.5888888889,18.9627777778,36.4055555556,16,36.9,4.7,763.7,51,1,20,-4.7,18.5763324029,18.5763324029 -50,0,18.9633333333,36.9,18.1666666667,35.6266666667,18.23,37.73,18.39,35.86,17.2438888889,39.4327777778,3.4,96.9333333333,17.84,28.4755555556,19.1055555556,36.345,16,36.9666666667,4.6666666667,763.7666666667,52.5,1,20.3333333333,-4.3666666667,40.2957777143,40.2957777143 -40,0,19.1633333333,36.8633333333,18.4266666667,35.53,18.29,37.79,18.4633333333,36.1933333333,17.4338888889,39.3144444444,3.3266666667,96.6266666667,17.9627777778,28.3472222222,19.2038888889,36.1722222222,16,37.1566666667,4.6333333333,763.8333333333,54,1,20.6666666667,-4.0333333333,0.3961421782,0.3961421782 -40,0,19.3566666667,36.73,18.5666666667,35.59,18.39,37.79,18.5,36.5,17.5827777778,39.2772222222,3.4666666667,96.6266666667,18.0666666667,28.245,19.34,36.065,16,37.3633333333,4.6,763.9,55.5,1,21,-3.7,41.8256029603,41.8256029603 -40,0,19.55,36.645,18.8233333333,35.59,18.39,37.79,18.5666666667,36.56,17.76,39.1855555556,3.5,96.545,18.1611111111,28.1827777778,19.4627777778,35.9827777778,16,37.1566666667,4.5666666667,763.9666666667,57,1,21.3333333333,-3.3666666667,18.8419589656,18.8419589656 -50,0,19.73,36.59,18.9633333333,35.6633333333,18.39,37.79,18.6,36.6266666667,17.8794444444,39.3588888889,3.3633333333,96.1333333333,18.2,28.33,19.5666666667,36.1105555556,16,37.43,4.5333333333,764.0333333333,58.5,1,21.6666666667,-3.0333333333,19.2624266609,19.2624266609 -40,0,19.79,36.6633333333,19.1333333333,35.9,18.4266666667,37.86,18.5333333333,36.7,17.9877777778,39.525,3.23,95.66,18.255,28.5483333333,19.6833333333,36.2811111111,16.1,37.73,4.5,764.1,60,1,22,-2.7,47.576528776,47.576528776 -50,0,19.8233333333,36.73,19.2,35.9666666667,18.5,38,18.5,36.745,18,39.6083333333,3.0266666667,95.1666666667,18.29,28.7038888889,19.725,36.3988888889,16.1,37.79,4.1333333333,764.1333333333,61.6666666667,1,29.1666666667,-2.7,23.7837119726,23.7837119726 -40,0,19.89,36.8633333333,19.23,36.1266666667,18.5,38.09,18.4633333333,36.8633333333,18,39.725,2.8266666667,94.5666666667,18.29,28.8472222222,19.785,36.5555555556,16.1,37.79,3.7666666667,764.1666666667,63.3333333333,1,36.3333333333,-2.7,27.6046897168,27.6046897168 -40,0,19.89,36.9,19.29,36.26,18.5666666667,38.09,18.39,36.8633333333,18.0611111111,39.8572222222,2.43,93.4333333333,18.29,28.9877777778,19.72,36.7127777778,16.1,37.8633333333,3.4,764.2,65,1,43.5,-2.7,46.735816251,46.735816251 -40,0,19.89,36.9,19.26,36.4,18.6,38.2,18.3566666667,36.9,18.0277777778,39.8572222222,2.23,93.0333333333,18.235,29.0888888889,19.71,36.8627777778,16.1,37.9333333333,3.0333333333,764.2333333333,66.6666666667,1,50.6666666667,-2.7,43.1718128035,43.1718128035 -40,0,19.89,36.9333333333,19.2,36.4,18.6,38.2,18.29,36.8266666667,18.0277777778,39.8572222222,1.8,91.7666666667,18.1722222222,29.1888888889,19.7,37.0138888889,16.1,38,2.6666666667,764.2666666667,68.3333333333,1,57.8333333333,-2.7,12.995724217,12.995724217 -50,0,19.89,37,19.2,36.5,18.6,38.2,18.2,36.56,18.0555555556,39.9044444444,1.46,91.16,18.1222222222,29.3138888889,19.6111111111,37.0961111111,16.1,38.1266666667,2.3,764.3,70,1,65,-2.7,34.3849917292,34.3849917292 -40,0,19.79,37.03,19.1,36.6266666667,18.6,38.26,18.2,36.4333333333,18.0277777778,39.9277777778,0.9,89.9333333333,18.0722222222,29.445,19.5111111111,37.2127777778,16.1,38.2,1.9666666667,764.3666666667,71.1666666667,1,65,-2.8,22.3953623092,22.3953623092 -20,0,19.79,37.09,19.1,36.76,18.6,38.29,18.1,36.7666666667,18,39.9,0.5666666667,89.7266666667,18,29.6594444444,19.4572222222,37.3205555556,16.1,38.23,1.6333333333,764.4333333333,72.3333333333,1,65,-2.9,10.9008137952,10.9008137952 -20,0,19.79,37.2,19,36.73,18.6,38.23,18.0333333333,36.9,18,39.8816666667,0.2,89.43,17.9633333333,29.8177777778,19.39,37.3633333333,16.0333333333,38.23,1.3,764.5,73.5,1,65,-3,34.3118407531,34.3118407531 -30,0,19.73,37.2,19,36.79,18.6,38.29,18,37.1266666667,18,39.79,-0.1333333333,89.7633333333,17.8961111111,29.9572222222,19.3511111111,37.4983333333,16.05,38.245,0.9666666667,764.5666666667,74.6666666667,1,65,-3.1,47.9691012646,47.9691012646 -50,10,19.7,37.2,18.9633333333,36.79,18.5333333333,38.29,18,37.26,17.9755555556,39.79,-0.4666666667,89.6266666667,17.8622222222,29.9694444444,19.275,37.6266666667,16,38.2,0.6333333333,764.6333333333,75.8333333333,1,65,-3.2,12.9702240461,12.9702240461 -70,10,19.7,37.2,18.8233333333,36.5966666667,18.5,38.4333333333,17.9633333333,37.43,17.9205555556,39.6994444444,-0.8,89.4333333333,17.785,29.7916666667,19.23,37.7205555556,16,38.2,0.3,764.7,77,1,65,-3.3,23.4379995964,23.4379995964 -90,30,19.6,36.7233333333,18.79,36.3633333333,18.5,38.4333333333,17.89,37.0966666667,17.89,39.4044444444,-1,90.93,17.6988888889,29.4694444444,19.2,38.0772222222,16,38.0266666667,0.1166666667,764.6666666667,78.1666666667,1,64.8333333333,-3.2833333333,16.0669778823,16.0669778823 -110,20,19.6,36.53,18.79,36.03,18.5,38.4333333333,17.79,36.6966666667,17.89,38.8166666667,-1.1,90.9225,17.5888888889,29.0744444444,19.255,38.2688888889,16,37.7666666667,-0.0666666667,764.6333333333,79.3333333333,1,64.6666666667,-3.2666666667,8.2321407273,8.2321407273 -200,10,19.6,35.7233333333,18.5633333333,34.8,18.4725,38.2225,17.79,36.29,17.89,38.2855555556,-1.3266666667,90.7,17.445,28.6255555556,19.29,38.0294444444,15.9633333333,37.2966666667,-0.25,764.6,80.5,1,64.5,-3.25,35.7363862684,35.7363862684 -430,20,19.6,34.9233333333,18.29,33.66,18.39,37.39,17.76,35.6,17.8788888889,37.8411111111,-1.5333333333,91,17.3288888889,28.3138888889,19.2955555556,37.6855555556,15.9633333333,37.03,-0.4333333333,764.5666666667,81.6666666667,1,64.3333333333,-3.2333333333,26.4082875685,26.4082875685 -1070,30,19.6,34.3,18.4266666667,33.9633333333,18.39,36.93,17.7,35.4,17.8566666667,37.6083333333,-1.6,90.9333333333,17.29,28.225,19.3566666667,37.4294444444,16,36.93,-0.6166666667,764.5333333333,82.8333333333,1,64.1666666667,-3.2166666667,11.7357340059,11.7357340059 -890,20,19.73,37.8633333333,18.5666666667,34.09,18.39,36.8633333333,17.6,35.1333333333,17.8677777778,37.7283333333,-1.73,91.23,17.235,28.1538888889,19.39,37.2288888889,16,36.73,-0.8,764.5,84,1,64,-3.2,3.2215830754,3.2215830754 -590,30,19.8566666667,47.6633333333,18.7,34.1,18.4266666667,37.8333333333,17.6,35.1333333333,17.9327777778,38.55,-1.79,91.23,17.2,28.05,19.445,37.1022222222,16,36.6333333333,-0.7666666667,764.5333333333,84,1.1666666667,63.8333333333,-3.1666666667,33.7881748099,33.7881748099 -100,0,19.89,49.4966666667,18.7,34.2266666667,18.4266666667,38.4333333333,17.6,36.2,18.0166666667,39.8966666667,-1.8633333333,91.7266666667,17.1722222222,28.1494444444,19.5,36.9922222222,16,36.5,-0.7333333333,764.5666666667,84,1.3333333333,63.6666666667,-3.1333333333,40.3072680929,40.3072680929 -100,10,19.9633333333,47.03,18.8233333333,36.0933333333,18.5,39.33,17.6,38.2933333333,18.1,40.9877777778,-1.79,92.06,17.1333333333,28.33,19.4694444444,36.9322222222,15.9633333333,36.8266666667,-0.7,764.6,84,1.5,63.5,-3.1,5.7735617622,5.7735617622 -120,10,20.1,43.6933333333,18.9633333333,36.9,18.5666666667,39.6633333333,17.6666666667,38.9,18.1833333333,40.9822222222,-1.9,92.19,17.1,28.4872222222,19.4205555556,37.2855555556,15.9633333333,36.9666666667,-0.6666666667,764.6333333333,84,1.6666666667,63.3333333333,-3.0666666667,34.6007210668,34.6007210668 -150,0,20.1,42.16,19.1333333333,37.2,18.7,39.9,17.7,39.09,18.255,40.7972222222,-1.9666666667,92.3966666667,17.0888888889,28.6538888889,19.4877777778,37.6488888889,16,37.23,-0.6333333333,764.6666666667,84,1.8333333333,63.1666666667,-3.0333333333,1.089311426,1.089311426 -120,10,20.2,40.5566666667,19.2,37.26,18.7,39.8266666667,17.7,39.09,18.29,40.5638888889,-2,92.69,17.0277777778,28.74,19.5388888889,37.9033333333,15.9266666667,37.3633333333,-0.6,764.7,84,2,63,-3,18.0688354303,18.0688354303 -120,20,20.2,39.7566666667,19.29,37.05,18.745,39.645,17.7,39.1266666667,18.275,40.2244444444,-2,92.83,17,28.84,19.6166666667,38.0983333333,16,37.83,-0.3166666667,764.6666666667,83.6666666667,2.3333333333,62.8333333333,-2.7666666667,36.6140024969,36.6140024969 -160,20,20.2,38.9,19.29,36.6633333333,18.73,39.53,17.7,39,18.23,39.925,-1.8633333333,93.5333333333,16.9816666667,28.9872222222,19.6888888889,38.2627777778,16,38.4966666667,-0.0333333333,764.6333333333,83.3333333333,2.6666666667,62.6666666667,-2.5333333333,15.6311520957,15.6311520957 -480,10,20.26,38.5666666667,19.3566666667,36.59,18.73,39.26,17.6666666667,38.73,18.275,39.8511111111,-1.79,93.9333333333,16.89,29.0888888889,19.7,38.345,16.1,39.29,0.25,764.6,83,3,62.5,-2.3,22.3576526623,22.3576526623 -460,0,20.29,37.9666666667,19.39,36.59,18.79,39.4,17.6666666667,38.79,18.28,39.8694444444,-1.6333333333,94.5666666667,16.89,29.1883333333,19.7,38.5616666667,16.075,39.195,0.5333333333,764.5666666667,82.6666666667,3.3333333333,62.3333333333,-2.0666666667,41.2719534012,41.2719534012 -360,0,20.29,37.9,19.39,36.6633333333,18.9933333333,40.8633333333,17.6,38.6633333333,18.2955555556,39.9222222222,-1.5,94.9,16.89,29.2711111111,19.7,38.7983333333,16,38.9633333333,0.8166666667,764.5333333333,82.3333333333,3.6666666667,62.1666666667,-1.8333333333,16.5897732601,16.5897732601 -330,0,20.29,37.8633333333,19.4266666667,36.8266666667,19.4,42.13,17.6,38.59,18.3566666667,39.9222222222,-1.245,95.745,16.8288888889,29.3622222222,19.7,38.8877777778,16,38.6933333333,1.1,764.5,82,4,62,-1.6,7.2012583609,7.2012583609 -310,0,20.3566666667,37.73,19.5666666667,36.8266666667,19.86,42.7666666667,17.5,38.4666666667,18.4327777778,39.8511111111,-1.2,95.4333333333,16.79,29.4205555556,19.7,38.9277777778,16,38.36,0.9833333333,764.55,82.5,3.8333333333,62,-1.6333333333,15.0460376055,15.0460376055 -250,0,20.39,37.5,19.6333333333,36.79,20.1333333333,43.0266666667,17.5,38.4,18.5333333333,39.8572222222,-1.2,95.3,16.785,29.5055555556,19.7,39.12,15.89,38.06,0.8666666667,764.6,83,3.6666666667,62,-1.6666666667,8.1300898455,8.1300898455 -220,10,20.4633333333,37.56,19.7,36.79,20.46,42.93,17.4633333333,38.26,18.6,39.8083333333,-1.3233333333,94.9933333333,16.775,29.5888888889,19.7,39.4994444444,15.89,37.8,0.75,764.65,83.5,3.5,62,-1.7,41.9735789183,41.9735789183 -90,0,20.5333333333,37.5266666667,19.73,36.6633333333,20.6975,42.6475,17.39,38.0666666667,18.6666666667,39.8083333333,-1.4633333333,94.66,16.775,29.6833333333,19.6277777778,39.8955555556,15.89,37.7,0.6333333333,764.7,84,3.3333333333,62,-1.7333333333,33.2153738593,33.2153738593 -80,0,20.6,37.3266666667,19.8566666667,36.59,20.8566666667,42.2666666667,17.39,37.9666666667,18.71,39.735,-1.6633333333,94.2,16.7,29.7,19.6111111111,41.0183333333,15.89,37.5666666667,0.5166666667,764.75,84.5,3.1666666667,62,-1.7666666667,6.9433652796,6.9433652796 -80,0,20.7,37.29,19.9266666667,36.59,20.7266666667,41.3333333333,17.3233333333,37.8266666667,18.755,39.7,-1.8633333333,93.8666666667,16.7,29.775,19.6,41.5333333333,15.8,37.26,0.4,764.8,85,3,62,-1.8,16.2940906943,16.2940906943 -70,0,20.7225,37.2225,20,36.59,20.5333333333,40.7266666667,17.29,37.7,18.79,39.6866666667,-2.03,93.56,16.7,29.8361111111,19.6,41.53,15.8,37.0666666667,0.2333333333,764.8,85.8333333333,2.8333333333,61.5,-1.85,41.571510944,41.571510944 -50,0,20.73,37.2,20.0333333333,36.6266666667,20.39,40.5,17.29,37.6175,18.7172222222,40.0033333333,-2.1633333333,93.1,16.7,30.21,19.5611111111,41.5561111111,15.8,36.9,0.0666666667,764.8,86.6666666667,2.6666666667,61,-1.9,41.1269552191,41.1269552191 -50,0,20.79,37.2233333333,20.1,36.5666666667,20.3233333333,40.4333333333,17.29,37.6633333333,18.4683333333,40.5522222222,-2.29,93.1,16.7,30.5377777778,19.5,41.885,15.8,37.36,-0.1,764.8,87.5,2.5,60.5,-1.95,7.4699960183,7.4699960183 -40,10,20.79,37.03,20.0666666667,36.29,20.26,40.4,17.2,37.6266666667,18.3011111111,41.1138888889,-2.23,93.56,16.7,30.755,19.5611111111,42.2077777778,15.9266666667,38.83,-0.2666666667,764.8,88.3333333333,2.3333333333,60,-2,21.0639844765,21.0639844765 -40,0,20.7,36.9,20.0666666667,36.3633333333,20.1333333333,40.4,17.2,37.76,18.1983333333,41.5555555556,-2.09,94.1,16.7,30.945,19.5777777778,42.4377777778,15.9266666667,39.2233333333,-0.4333333333,764.8,89.1666666667,2.1666666667,59.5,-2.05,22.2591325757,22.2591325757 -40,0,20.7,36.9,20,36.4,20.1,40.4,17.1666666667,37.79,18.0722222222,41.9094444444,-2.09,94.16,16.7,31.1494444444,19.55,42.6227777778,15.89,39.4633333333,-0.6,764.8,90,2,59,-2.1,44.1963687888,44.1963687888 -30,0,20.7,36.9,20,36.4,20.0333333333,40.3266666667,17.1,37.8633333333,17.9938888889,42.2011111111,-2.1633333333,93.8233333333,16.7,31.3077777778,19.55,42.8105555556,15.89,39.6633333333,-0.5,764.85,89.6666666667,2.3333333333,59.3333333333,-2.0333333333,20.7498663338,20.7498663338 -50,0,20.6333333333,36.8266666667,19.9633333333,36.5,19.8566666667,40.26,17.1,37.9333333333,17.9022222222,42.5644444444,-2.03,94.23,16.6777777778,31.4383333333,19.5111111111,42.9822222222,15.89,39.79,-0.4,764.9,89.3333333333,2.6666666667,59.6666666667,-1.9666666667,34.4946080935,34.4946080935 -50,0,20.6,36.8266666667,19.865,36.475,19.73,40.26,17.1,38,17.8733333333,42.8477777778,-1.9,94.5,16.7,31.5944444444,19.5166666667,43.2083333333,15.9633333333,39.8633333333,-0.3,764.95,89,3,60,-1.9,35.8460438554,35.8460438554 -40,0,20.6,36.9,19.79,36.4666666667,19.7,40.29,17,37.9,17.78,43.0261111111,-1.8725,94.5925,16.7,31.715,19.5,43.4033333333,15.89,39.9333333333,-0.2,765,88.6666666667,3.3333333333,60.3333333333,-1.8333333333,0.6189584965,0.6189584965 -50,0,20.5,36.9,19.7,36.53,19.6333333333,40.23,17,37.9666666667,17.725,43.2605555556,-1.79,94.69,16.6888888889,31.7966666667,19.5,43.635,15.89,40.0225,-0.1,765.05,88.3333333333,3.6666666667,60.6666666667,-1.7666666667,1.8914724234,1.8914724234 -40,0,20.5,36.9666666667,19.7,36.59,19.6,40.1633333333,17,38,17.7,43.5016666667,-1.7,94.9,16.6666666667,31.8894444444,19.4938888889,43.7,15.89,40.1633333333,0,765.1,88,4,61,-1.7,4.5438707108,4.5438707108 -40,10,20.39,36.9333333333,19.6,36.59,19.5333333333,40.09,17,38,17.6166666667,43.6133333333,-1.7,94.9,16.6666666667,31.9633333333,19.4572222222,43.8233333333,15.89,40.3266666667,-0.05,765.1,88.1666666667,3.8333333333,61,-1.7333333333,19.9411983718,19.9411983718 -40,0,20.39,37.06,19.5333333333,36.6633333333,19.5,40.06,17,38.03,17.6,43.835,-1.6,94.9333333333,16.6666666667,32.0227777778,19.4938888889,44.03,15.89,40.4666666667,-0.1,765.1,88.3333333333,3.6666666667,61,-1.7666666667,45.0107287965,45.0107287965 -40,0,20.29,37.1266666667,19.4633333333,36.7,19.4266666667,39.9333333333,17,38.09,17.5388888889,43.9761111111,-1.6,94.8666666667,16.6444444444,32.04,19.4266666667,44.0794444444,15.89,40.6566666667,-0.15,765.1,88.5,3.5,61,-1.8,22.2451314214,22.2451314214 -50,0,20.29,37.2,19.39,36.76,19.39,39.9,16.9633333333,38.09,17.5,44.145,-1.6333333333,94.73,16.6166666667,32.0922222222,19.39,44.1572222222,15.89,40.8633333333,-0.2,765.1,88.6666666667,3.3333333333,61,-1.8333333333,37.7576546045,37.7576546045 -30,0,20.2,37.2,19.29,36.79,19.365,39.9,16.89,38.09,17.4327777778,44.2594444444,-1.7,94.59,16.6111111111,32.1572222222,19.3733333333,44.225,15.89,40.9333333333,-0.25,765.1,88.8333333333,3.1666666667,61,-1.8666666667,35.5735119781,35.5735119781 -30,0,20.2,37.2,19.23,36.79,19.29,39.8266666667,16.89,38.09,17.39,44.3205555556,-1.8266666667,94.3666666667,16.6,32.21,19.3233333333,44.3083333333,15.9633333333,41.06,-0.3,765.1,89,3,61,-1.9,8.3378175157,8.3378175157 -20,0,20.1,37.23,19.1666666667,36.8266666667,19.26,39.6633333333,16.89,38.09,17.3733333333,44.4983333333,-1.9,94.3,16.6,32.255,19.29,44.4166666667,15.9266666667,41.23,-0.3,765,88.8333333333,3,61.1666666667,-1.9333333333,43.4571194579,43.4571194579 -40,0,20.075,37.345,19.1,36.9,19.2,39.59,16.89,38.2,17.29,44.645,-2,94.1233333333,16.6,32.29,19.29,44.4938888889,16,41.29,-0.3,764.9,88.6666666667,3,61.3333333333,-1.9666666667,4.4592267717,4.4592267717 -40,0,20,37.29,19.0666666667,36.8633333333,19.1666666667,39.56,16.89,38.2,17.29,44.7611111111,-2,94.2633333333,16.6,32.3205555556,19.29,44.635,16,41.4333333333,-0.3,764.8,88.5,3,61.5,-2,8.1506831688,8.1506831688 -50,0,19.9633333333,37.29,19,36.79,19.1,39.56,16.8233333333,38.1266666667,17.26,44.88,-1.9,94.53,16.6,32.4,19.27,44.7733333333,15.9266666667,41.5,-0.3,764.7,88.3333333333,3,61.6666666667,-2.0333333333,42.4676844152,42.4676844152 -40,0,19.8233333333,37.23,18.89,36.9,19.1,39.56,16.79,38.09,17.205,44.9444444444,-1.7666666667,94.73,16.5833333333,32.4111111111,19.275,44.8816666667,15.9266666667,41.53,-0.3,764.6,88.1666666667,3,61.8333333333,-2.0666666667,31.4065170591,31.4065170591 -50,0,19.79,37.2,18.8233333333,36.9,19.1,39.56,16.79,38.09,17.2,45.045,-1.76,94.6233333333,16.5555555556,32.4666666667,19.23,44.8916666667,16,41.6633333333,-0.3,764.5,88,3,62,-2.1,10.4229975492,10.4229975492 -50,0,19.79,37.2,18.79,36.9333333333,19.1,39.5,16.79,38.09,17.2,45.1572222222,-1.7225,94.6425,16.5333333333,32.4833333333,19.2,44.8877777778,16,41.7,-0.35,764.5333333333,88,3,62,-2.15,33.6430413416,33.6430413416 -40,0,19.7,37.29,18.73,37,19.1,39.6333333333,16.79,38.1633333333,17.15,45.225,-1.79,94.4333333333,16.5111111111,32.5,19.1611111111,44.8388888889,16,41.76,-0.4,764.5666666667,88,3,62,-2.2,48.2102845446,48.2102845446 -40,0,19.7,37.29,18.7,37.09,19.1,39.7,16.79,38.1266666667,17.1,45.3627777778,-1.8633333333,94.4333333333,16.5,32.515,19.1,44.965,16,41.9333333333,-0.45,764.6,88,3,62,-2.25,44.0869426006,44.0869426006 -30,0,19.6666666667,37.29,18.625,37.045,19.1,39.76,16.79,38.2,17.1,45.4988888889,-1.8633333333,94.4333333333,16.5,32.58,19.0722222222,45.1622222222,16,42,-0.5,764.6333333333,88,3,62,-2.3,48.0882343487,48.0882343487 -20,0,19.6,37.29,18.6,37.09,19.1,39.79,16.7,38.2,17.0722222222,45.6016666667,-1.9633333333,93.99,16.5,32.6144444444,19.0555555556,45.4444444444,16,42,-0.55,764.6666666667,88,3,62,-2.35,23.234659282,23.234659282 -30,0,19.5666666667,37.29,18.5,37.2,19.1,39.79,16.7,38.2,17.0111111111,45.6816666667,-2.1633333333,93.3966666667,16.5,32.6327777778,19,45.6622222222,16,42.0675,-0.6,764.7,88,3,62,-2.4,3.6438678624,3.6438678624 -30,0,19.5,37.29,18.5,37.2,19.1,39.79,16.7,38.2,17,45.755,-2.26,93.4333333333,16.5,32.6755555556,19,45.76,16,42.1633333333,-0.6333333333,764.6,87.8333333333,3,62,-2.45,43.7154376763,43.7154376763 -40,0,19.4633333333,37.29,18.39,37.2,19.1,39.79,16.7,38.2,16.9816666667,45.8205555556,-2.2,93.7,16.5,32.7,19,45.8738888889,15.9266666667,42.2,-0.6666666667,764.5,87.6666666667,3,62,-2.5,9.9436403136,9.9436403136 -50,0,19.39,37.29,18.39,37.26,19.1,39.9333333333,16.7,38.2,16.9266666667,45.9,-2.1633333333,93.8333333333,16.5,32.7,18.945,46.0755555556,16,42.2,-0.7,764.4,87.5,3,62,-2.55,26.7294879304,26.7294879304 -40,0,19.3566666667,37.3266666667,18.29,37.3266666667,19.1,40,16.7,38.2,16.89,45.9722222222,-2.09,93.9666666667,16.5,32.7,18.9205555556,46.4244444444,16,42.23,-0.7333333333,764.3,87.3333333333,3,62,-2.6,5.2781095495,5.2781095495 -50,0,19.3566666667,37.4,18.29,37.4,19.1,40,16.6333333333,38.2,16.89,46.055,-2.09,94.06,16.4755555556,32.72,18.9083333333,46.7027777778,16,42.29,-0.7666666667,764.2,87.1666666667,3,62,-2.65,19.1997508635,19.1997508635 -30,0,19.29,37.4,18.2,37.29,19.1,40,16.6333333333,38.2,16.8677777778,46.145,-2.09,94,16.445,32.72,18.89,46.78,16,42.3266666667,-0.8,764.1,87,3,62,-2.7,37.3852962279,37.3852962279 -40,0,19.23,37.4,18.2,37.29,19.1,40.06,16.6666666667,38.2,16.89,46.275,-2.03,93.9666666667,16.4022222222,32.7,18.89,46.8205555556,16,42.4,-0.8666666667,764.1,87,3,62,-2.7666666667,34.789549897,34.789549897 -40,0,19.2,37.4,18.2,37.29,19.1,40,16.6,38.2,16.8622222222,46.29,-2.09,93.9,16.39,32.7,18.89,46.8327777778,15.9633333333,42.4333333333,-0.9333333333,764.1,87,3,62,-2.8333333333,4.9195886008,4.9195886008 -50,0,19.125,37.475,18.1333333333,37.3633333333,19.1666666667,40.06,16.6,38.2,16.79,46.3327777778,-2,94.06,16.39,32.715,18.8622222222,46.765,15.9633333333,42.5,-1,764.1,87,3,62,-2.9,30.5765896686,30.5765896686 -40,0,19.1,37.5,18.1,37.4,19.2,40.09,16.6,38.2,16.79,46.4,-2,94,16.39,32.75,18.8733333333,46.7994444444,16,42.5,-1.0666666667,764.1,87,3,62,-2.9666666667,1.0462626931,1.0462626931 -20,0,19.0666666667,37.5,18.0333333333,37.3266666667,19.2,40.09,16.5333333333,38.2,16.79,46.4611111111,-1.845,94.345,16.39,32.78,18.84,46.745,16,42.5,-1.1333333333,764.1,87,3,62,-3.0333333333,32.4856124585,32.4856124585 -20,0,19,37.5,18,37.4,19.2,40.09,16.5666666667,38.2,16.765,46.5,-1.7,94.56,16.39,32.79,18.8733333333,46.7138888889,16,42.59,-1.2,764.1,87,3,62,-3.1,48.9189035143,48.9189035143 -30,0,19,37.59,18,37.4666666667,19.2,40.09,16.5,38.2,16.7,46.5,-1.6333333333,94.6266666667,16.39,32.79,18.8677777778,46.5822222222,16,42.59,-1.1666666667,764.0166666667,86.6666666667,3,62.3333333333,-3.1166666667,42.12522296,42.12522296 -40,0,18.9266666667,37.59,17.9633333333,37.5,19.1666666667,40.23,16.5,38.2,16.7,46.565,-1.6333333333,94.56,16.39,32.79,18.8288888889,46.4577777778,16,42.7,-1.1333333333,763.9333333333,86.3333333333,3,62.6666666667,-3.1333333333,42.1392921009,42.1392921009 -40,0,18.89,37.59,17.89,37.5,19.1,40.29,16.5,38.2,16.7,46.6327777778,-1.6333333333,94.5,16.3733333333,32.79,18.79,46.28,16,42.7,-1.1,763.85,86,3,63,-3.15,19.3726081285,19.3726081285 -50,0,18.89,37.6633333333,17.89,37.53,19.1,40.29,16.5,38.2,16.7,46.7,-1.7,94.23,16.3844444444,32.8022222222,18.79,46.205,15.9633333333,42.73,-1.0666666667,763.7666666667,85.6666666667,3,63.3333333333,-3.1666666667,39.6535551059,39.6535551059 -50,0,18.89,37.7,17.865,37.5675,19.1,40.23,16.5,38.2,16.7,46.725,-1.7,94.1566666667,16.3677777778,32.8327777778,18.79,46.1694444444,15.9633333333,42.73,-1.0333333333,763.6833333333,85.3333333333,3,63.6666666667,-3.1833333333,20.309827954,20.309827954 -40,0,18.8233333333,37.7,17.79,37.5,19.1,40.29,16.4633333333,38.2233333333,16.6444444444,46.73,-1.7,94.06,16.3344444444,32.9,18.735,46.09,16,42.79,-1,763.6,85,3,64,-3.2,12.6674452564,12.6674452564 -50,0,18.79,37.7,17.79,37.59,19.1,40.29,16.39,38.1633333333,16.6277777778,46.73,-1.76,93.7933333333,16.3066666667,32.9,18.7,46.09,15.9266666667,42.8266666667,-1.05,763.5666666667,84.8333333333,2.8333333333,64.1666666667,-3.2833333333,20.9651994519,20.9651994519 -40,0,18.79,37.7,17.79,37.59,19.2,40.29,16.39,38.2,16.6,46.76,-1.8266666667,93.6266666667,16.29,32.9,18.7,46.085,16,42.9,-1.1,763.5333333333,84.6666666667,2.6666666667,64.3333333333,-3.3666666667,24.7749766451,24.7749766451 -40,0,18.7,37.7,17.7,37.7,19.1333333333,40.29,16.39,38.2,16.6,46.79,-1.9,93.4333333333,16.29,32.9,18.7,46.01,15.9633333333,42.9,-1.15,763.5,84.5,2.5,64.5,-3.45,42.9122978472,42.9122978472 -30,0,18.7,37.76,17.7,37.7,19.1,40.3266666667,16.39,38.2,16.6,46.845,-2,93.0266666667,16.29,32.9,18.7,46,15.9633333333,42.9,-1.2,763.4666666667,84.3333333333,2.3333333333,64.6666666667,-3.5333333333,36.6132426774,36.6132426774 -30,10,18.7,37.79,17.6,37.7,19.1,40.4,16.39,38.2,16.6,46.9,-2.06,92.8333333333,16.29,32.9,18.6888888889,45.9888888889,16,43.03,-1.25,763.4333333333,84.1666666667,2.1666666667,64.8333333333,-3.6166666667,48.7214245251,48.7214245251 -20,0,18.7,37.79,17.6,37.7,19.1,40.4,16.3566666667,38.2,16.6,46.9277777778,-2.1266666667,92.7,16.29,32.9,18.6277777778,45.9916666667,16,43.09,-1.3,763.4,84,2,65,-3.7,5.0027454854,5.0027454854 -30,0,18.6666666667,38,17.6,37.79,19,40.1633333333,16.29,38.2,16.5388888889,47,-2.1266666667,92.7666666667,16.28,32.8877777778,18.6111111111,46.0183333333,16,43.09,-1.2166666667,763.3833333333,83.5,2.1666666667,57.5,-3.7,41.6295418516,41.6295418516 -70,10,18.6,38.06,17.6,37.8633333333,18.9266666667,40.03,16.29,38.2,16.5222222222,47.025,-1.95,93.1,16.28,32.8877777778,18.6111111111,45.6566666667,16,43.09,-1.1333333333,763.3666666667,83,2.3333333333,50,-3.7,22.5277088932,22.5277088932 -50,0,18.6,38.1933333333,17.6,37.9333333333,18.89,39.9,16.29,38.2,16.5,47.1083333333,-1.76,93.4633333333,16.29,32.9111111111,18.6,45.3311111111,16,43.09,-1.05,763.35,82.5,2.5,42.5,-3.7,42.5229567918,42.5229567918 -60,10,18.6,38.57,17.5333333333,38.06,18.89,39.9,16.29,38.2,16.5,47.2,-1.6333333333,93.53,16.29,32.9666666667,18.5388888889,45.0305555556,16,43.09,-0.9666666667,763.3333333333,82,2.6666666667,35,-3.7,28.4875771846,28.4875771846 -40,10,18.6,38.9,17.5,38.1266666667,18.89,39.9,16.29,38.2,16.5,47.22,-1.6,93.4666666667,16.28,32.9333333333,18.5,44.7572222222,16,42.9666666667,-0.8833333333,763.3166666667,81.5,2.8333333333,27.5,-3.7,48.077125696,48.077125696 -40,10,18.6,39,17.5,38.3333333333,18.89,39.9,16.29,38.2,16.5,47.225,-1.6,93.3333333333,16.23,32.9277777778,18.4938888889,44.5255555556,16,42.8266666667,-0.8,763.3,81,3,20,-3.7,47.7375366958,47.7375366958 -40,10,18.6,38.9333333333,17.5,38.53,18.89,39.9,16.29,38.29,16.4572222222,47.28,-1.5666666667,93.3666666667,16.215,32.9166666667,18.4511111111,44.2316666667,16,42.6633333333,-0.6833333333,763.2333333333,80.5,3.1666666667,20.1666666667,-3.6833333333,14.188975445,14.188975445 -60,10,18.6,39,17.5,38.59,18.89,39.8266666667,16.23,38.23,16.4144444444,47.28,-1.4266666667,93.56,16.2,32.9,18.39,44.0294444444,15.9266666667,42.4633333333,-0.5666666667,763.1666666667,80,3.3333333333,20.3333333333,-3.6666666667,36.9803248905,36.9803248905 -50,20,18.5333333333,38.9333333333,17.39,38.59,18.89,39.9,16.2,38.23,16.39,47.3083333333,-1.1333333333,94.1333333333,16.2,32.9,18.39,43.8311111111,16,42.29,-0.45,763.1,79.5,3.5,20.5,-3.65,3.5371287842,3.5371287842 -30,0,18.5,38.76,17.39,38.53,18.89,39.6933333333,16.26,38.43,16.39,47.4,-0.9333333333,94.5266666667,16.2,32.9,18.3288888889,43.6327777778,16,42.29,-0.3333333333,763.0333333333,79,3.6666666667,20.6666666667,-3.6333333333,45.00597734,45.00597734 -80,0,18.5,38.7,17.39,38.4666666667,18.76,39.0666666667,16.29,38.7,16.39,47.4611111111,-0.8666666667,94.4,16.2,32.9,18.29,43.5138888889,16,42.1633333333,-0.2166666667,762.9666666667,78.5,3.8333333333,20.8333333333,-3.6166666667,6.6710286308,6.6710286308 -340,0,18.5,38.56,17.365,38.3725,18.7,39.2,16.29,38.7,16.39,47.4777777778,-0.7333333333,94.5266666667,16.2,32.9,18.29,43.3383333333,16,42.03,-0.1,762.9,78,4,21,-3.6,27.7943038847,27.7943038847 -50,0,18.5,38.4333333333,17.3566666667,38.29,18.7,39.2,16.2,38.59,16.39,47.4666666667,-0.6,94.53,16.2,32.9,18.28,43.2044444444,15.89,41.8,-0.0666666667,762.8833333333,78.1666666667,4,20.8333333333,-3.5166666667,30.0204016268,30.0204016268 -50,0,18.4633333333,38.4666666667,17.29,38.29,18.6333333333,39.2,16.2,38.59,16.39,47.4888888889,-0.5333333333,94.6566666667,16.2,32.9,18.225,43.025,15.89,41.56,-0.0333333333,762.8666666667,78.3333333333,4,20.6666666667,-3.4333333333,6.6480519483,6.6480519483 -60,0,18.39,38.4,17.29,38.29,18.6,39.2,16.2,38.59,16.39,47.5,-0.4,94.3,16.2,32.9,18.2,42.9722222222,15.89,41.4333333333,0,762.85,78.5,4,20.5,-3.35,25.4656168632,25.4656168632 -60,0,18.39,38.4,17.29,38.3266666667,18.6,39.26,16.2,38.59,16.39,47.5,-0.4,94.16,16.2,32.9,18.1777777778,42.8277777778,15.86,41.2233333333,0.0333333333,762.8333333333,78.6666666667,4,20.3333333333,-3.2666666667,18.3524953783,18.3524953783 -60,0,18.39,38.4,17.29,38.4,18.6,39.29,16.2,38.5,16.3622222222,47.53,-0.2666666667,94.0633333333,16.2,32.95,18.1888888889,42.6794444444,15.86,41.09,0.0666666667,762.8166666667,78.8333333333,4,20.1666666667,-3.1833333333,0.1652273699,0.1652273699 -60,0,18.39,38.4333333333,17.29,38.4,18.6,39.29,16.2,38.5,16.3233333333,47.54,-0.075,94.3725,16.2,32.9666666667,18.1277777778,42.585,15.8,40.8633333333,0.1,762.8,79,4,20,-3.1,2.3989930167,2.3989930167 -50,0,18.39,38.5,17.29,38.4666666667,18.6,39.29,16.2,38.5,16.3122222222,47.55,0.2333333333,94.7,16.2,32.9277777778,18.1,42.51,15.8,40.73,0.2833333333,762.7666666667,78.5,4,20.1666666667,-3.0333333333,44.1024225089,44.1024225089 -60,0,18.29,38.5,17.29,38.5,18.6,39.29,16.2,38.5,16.29,47.565,0.4666666667,94.5266666667,16.2,32.9611111111,18.1,42.4166666667,15.8,40.56,0.4666666667,762.7333333333,78,4,20.3333333333,-2.9666666667,41.1758520058,41.1758520058 -30,0,18.29,38.5,17.29,38.5,18.6,39.29,16.2,38.45,16.29,47.59,0.7333333333,94.4,16.2,32.9388888889,18.1,42.345,15.8,40.4333333333,0.65,762.7,77.5,4,20.5,-2.9,20.6515450496,20.6515450496 -30,0,18.3566666667,38.53,17.29,38.59,18.6,39.26,16.2,38.4,16.29,47.59,0.9666666667,95.0333333333,16.2,32.9388888889,18.0888888889,42.2627777778,15.8,40.3633333333,0.8333333333,762.6666666667,77,4,20.6666666667,-2.8333333333,46.0866609006,46.0866609006 -30,0,18.29,38.59,17.29,38.53,18.5333333333,39.2,16.2,38.4,16.29,47.59,1.2266666667,95.2266666667,16.2,33,18.0666666667,42.1633333333,15.8,40.23,1.0166666667,762.6333333333,76.5,4,20.8333333333,-2.7666666667,23.8701466704,23.8701466704 -340,0,18.29,38.59,17.39,38.5,18.5,39.23,16.29,38.59,16.29,47.59,1.6333333333,94.5333333333,16.2,33,18.0777777778,42.1372222222,15.8,40.1633333333,1.2,762.6,76,4,21,-2.7,23.7497211783,23.7497211783 -400,0,18.29,38.59,17.39,38.56,18.5,39.23,16.29,38.53,16.29,47.58,1.76,93.5333333333,16.2,33,18.0888888889,42.0688888889,15.8,40.09,1.45,762.5166666667,75.1666666667,4.1666666667,21.1666666667,-2.6,32.8918033512,32.8918033512 -70,0,18.29,38.6633333333,17.39,38.59,18.5,39.29,16.3233333333,38.5,16.29,47.58,1.9333333333,92.1266666667,16.2,33,18.0666666667,41.9916666667,15.86,40.06,1.7,762.4333333333,74.3333333333,4.3333333333,21.3333333333,-2.5,8.1660226919,8.1660226919 -50,0,18.39,38.79,17.39,38.6633333333,18.5,39.29,16.3233333333,38.5,16.29,47.59,2.06,91.1266666667,16.2,33,18.0444444444,41.9322222222,15.86,40.06,1.95,762.35,73.5,4.5,21.5,-2.4,4.7597185592,4.7597185592 -40,0,18.39,38.79,17.4266666667,38.73,18.5,39.29,16.3566666667,38.4,16.27,47.57,2.36,90.6,16.25,33.05,18.0333333333,41.8544444444,15.83,39.9633333333,2.2,762.2666666667,72.6666666667,4.6666666667,21.6666666667,-2.3,43.0757396156,43.0757396156 -40,0,18.39,38.79,17.5,38.79,18.5,39.29,16.29,38.4666666667,16.27,47.57,2.56,91.3933333333,16.225,33.025,18.0555555556,41.8411111111,15.89,40.03,2.45,762.1833333333,71.8333333333,4.8333333333,21.8333333333,-2.2,11.9939584867,11.9939584867 -40,0,18.39,38.79,17.5,38.79,18.5,39.29,16.39,38.4333333333,16.245,47.555,2.7666666667,91.3666666667,16.225,33.025,18.0277777778,41.7311111111,15.89,39.9666666667,2.7,762.1,71,5,22,-2.1,27.7702066,27.7702066 -40,0,18.39,38.79,17.4266666667,38.8266666667,18.5,39.29,16.3233333333,38.5,16.2,47.515,2.9666666667,90.6333333333,16.2,33,18,41.7,15.8675,39.8725,2.8333333333,762,70.8333333333,5.1666666667,22.3333333333,-2,42.4703297555,42.4703297555 -30,0,18.39,38.79,17.4266666667,38.8266666667,18.5,39.29,16.29,38.4333333333,16.215,47.56,3.1566666667,91.4333333333,16.225,33.0311111111,17.9755555556,41.6572222222,15.86,39.79,2.9666666667,761.9,70.6666666667,5.3333333333,22.6666666667,-1.9,17.4823790323,17.4823790323 -30,0,18.39,38.79,17.4266666667,38.79,18.5,39.29,16.29,38.5,16.205,47.59,3.3633333333,90.7666666667,16.26,33.1533333333,18,41.59,15.83,39.7,3.1,761.8,70.5,5.5,23,-1.8,48.786929762,48.786929762 -20,0,18.39,38.79,17.5,38.8633333333,18.5,39.26,16.29,38.5,16.2,47.57,3.545,89.69,16.29,33.2,18,41.59,15.89,39.7,3.2333333333,761.7,70.3333333333,5.6666666667,23.3333333333,-1.7,43.470276508,43.470276508 -30,0,18.39,38.76,17.5,38.9,18.5,39.2,16.29,38.5,16.2,47.59,3.73,90.03,16.29,33.2,18,41.59,15.89,39.7,3.3666666667,761.6,70.1666666667,5.8333333333,23.6666666667,-1.6,37.706202548,37.706202548 -40,0,18.39,38.7,17.5,38.9,18.5,39.2,16.29,38.5,16.2,47.59,3.8633333333,90.63,16.29,33.2,18,41.575,15.83,39.6266666667,3.5,761.5,70,6,24,-1.5,11.1836710013,11.1836710013 -50,0,18.4266666667,38.73,17.4266666667,38.86,18.5,39.26,16.29,38.56,16.2,47.59,4.0633333333,90.1566666667,16.29,33.2,17.9694444444,41.525,15.86,39.56,3.5333333333,761.4,69.8333333333,6,23.8333333333,-1.5,38.4908232722,38.4908232722 -40,0,18.5,38.79,17.5,39,18.5,39.2,16.29,38.59,16.2,47.59,4.2633333333,89.3633333333,16.29,33.2,17.945,41.55,15.8,39.5,3.5666666667,761.3,69.6666666667,6,23.6666666667,-1.5,43.7356792158,43.7356792158 -40,0,18.39,38.7,17.5,39,18.5,39.29,16.29,38.59,16.2,47.59,4.4333333333,89.8666666667,16.29,33.2,17.9327777778,41.545,15.8,39.5,3.6,761.2,69.5,6,23.5,-1.5,2.1896554041,2.1896554041 -50,0,18.39,38.7,17.5,39,18.5,39.29,16.29,38.59,16.2,47.59,4.5,88.6,16.29,33.205,17.9144444444,41.5,15.8,39.5,3.6333333333,761.1,69.3333333333,6,23.3333333333,-1.5,9.9880353548,9.9880353548 -50,0,18.5,38.79,17.39,38.9,18.5,39.29,16.26,38.56,16.2,47.59,4.59,87.6933333333,16.29,33.28,17.89,41.5,15.8,39.4,3.6666666667,761,69.1666666667,6,23.1666666667,-1.5,42.6871179137,42.6871179137 -40,0,18.4266666667,38.73,17.39,38.9,18.5,39.29,16.2,38.56,16.2,47.59,4.59,88.0933333333,16.27,33.27,17.89,41.5,15.8,39.4,3.7,760.9,69,6,23,-1.5,32.6127064181,32.6127064181 -30,0,18.39,38.7,17.39,39,18.5,39.29,16.2,38.59,16.2,47.59,4.59,86.8333333333,16.29,33.29,17.89,41.5,15.8,39.29,3.7,760.85,70.1666666667,6,22.6666666667,-1.2833333333,43.466600962,43.466600962 -20,0,18.39,38.79,17.39,39,18.5,39.3633333333,16.2,38.59,16.2,47.59,4.59,88.6266666667,16.29,33.2961111111,17.8677777778,41.4827777778,15.8,39.29,3.7,760.8,71.3333333333,6,22.3333333333,-1.0666666667,40.6818293734,40.6818293734 -20,0,18.39,38.79,17.39,39,18.5,39.29,16.2,38.59,16.1611111111,47.59,4.59,88.4333333333,16.29,33.3877777778,17.8566666667,41.4816666667,15.8,39.2,3.7,760.75,72.5,6,22,-0.85,18.072381895,18.072381895 -20,0,18.39,38.79,17.39,39,18.4266666667,39.23,16.2,38.59,16.1444444444,47.6144444444,4.6566666667,89.8933333333,16.29,33.4,17.8177777778,41.4333333333,15.8,39.2,3.7,760.7,73.6666666667,6,21.6666666667,-0.6333333333,4.544792301,4.544792301 -40,0,18.39,38.79,17.29,39.03,18.39,39.23,16.2,38.59,16.1111111111,47.6327777778,4.8,90.0266666667,16.225,33.3388888889,17.79,41.4444444444,15.8,39.2,3.7,760.65,74.8333333333,6,21.3333333333,-0.4166666667,28.732764523,28.732764523 -50,0,18.39,38.79,17.29,39.09,18.39,39.29,16.2,38.59,16.1277777778,47.7,4.8,92.5666666667,16.245,33.465,17.79,41.5,15.8,39.2,3.7,760.6,76,6,21,-0.2,32.7365206787,32.7365206787 -50,0,18.39,38.79,17.29,39.2,18.39,39.29,16.1333333333,38.6266666667,16.1055555556,47.7,4.69,92.73,16.23,33.5188888889,17.78,41.5,15.8,39.1633333333,3.5833333333,760.6,78,5.8333333333,27.6666666667,0.0333333333,41.1102388171,41.1102388171 -40,0,18.3566666667,38.9,17.29,39.2,18.39,39.29,16.1333333333,38.7,16.1,47.7,4.69,93.6633333333,16.205,33.58,17.74,41.5811111111,15.8,39.1725,3.4666666667,760.6,80,5.6666666667,34.3333333333,0.2666666667,22.7787757525,22.7787757525 -40,0,18.29,38.9,17.29,39.26,18.39,39.3266666667,16.1,38.79,16.1,47.7,4.595,94.945,16.2,33.59,17.78,41.6633333333,15.8,39.2,3.35,760.6,82,5.5,41,0.5,49.2164449184,49.2164449184 -40,0,18.29,39,17.26,39.29,18.39,39.4,16.1,38.79,16.1,47.73,4.4666666667,95.7933333333,16.2,33.6816666667,17.725,41.705,15.7633333333,39.2,3.2333333333,760.6,84,5.3333333333,47.6666666667,0.7333333333,37.519918906,37.519918906 -40,0,18.29,39,17.2,39.3633333333,18.39,39.4,16.1,38.8266666667,16.1,47.765,4.3333333333,96.3333333333,16.2,33.745,17.7,41.78,15.69,39.2,3.1166666667,760.6,86,5.1666666667,54.3333333333,0.9666666667,6.6777843516,6.6777843516 -40,0,18.29,39.09,17.2,39.4333333333,18.39,39.4,16.1,38.9,16.1,47.77,4.19,96.93,16.2,33.8572222222,17.7,41.8872222222,15.69,39.2,3,760.6,88,5,61,1.2,10.7586756349,10.7586756349 -20,0,18.29,39.1633333333,17.1333333333,39.5,18.29,39.45,16.0666666667,38.9666666667,16.1,47.79,4.1233333333,97.4566666667,16.2,33.9277777778,17.6833333333,41.9722222222,15.69,39.26,3,760.55,88.8333333333,5.1666666667,59.1666666667,1.3333333333,42.4189768848,42.4189768848 -30,0,18.26,39.1633333333,17.2,39.59,18.39,39.5,16,38.9666666667,16.1,47.79,4.09,97.8966666667,16.2,34.005,17.6666666667,42.0566666667,15.69,39.29,3,760.5,89.6666666667,5.3333333333,57.3333333333,1.4666666667,23.2670592726,23.2670592726 -20,0,18.2,39.1633333333,17.2,39.6633333333,18.3233333333,39.4333333333,16.05,39.045,16.0666666667,47.7861111111,4.03,98.1566666667,16.1888888889,34.1044444444,17.6111111111,42.0672222222,15.69,39.29,3,760.45,90.5,5.5,55.5,1.6,45.7883895142,45.7883895142 -40,0,18.2,39.23,17.1,39.73,18.29,39.4,16,39.09,16.0388888889,47.8227777778,4,98.3666666667,16.1888888889,34.1966666667,17.6,42.1327777778,15.69,39.3266666667,3,760.4,91.3333333333,5.6666666667,53.6666666667,1.7333333333,45.8278869162,45.8278869162 -40,0,18.2,39.29,17.1,39.79,18.29,39.4666666667,16,39.1633333333,16,47.79,3.9333333333,98.56,16.1833333333,34.29,17.6,42.245,15.69,39.4,3,760.35,92.1666666667,5.8333333333,51.8333333333,1.8666666667,40.9927291912,40.9927291912 -40,0,18.2,39.4,17.1,39.8266666667,18.29,39.5,16,39.23,16,47.79,3.9,98.7266666667,16.1555555556,34.3572222222,17.6,42.3083333333,15.69,39.4,3,760.3,93,6,50,2,28.3450578805,28.3450578805 -40,0,18.2,39.4666666667,17.1,39.9,18.29,39.5,16,39.29,16,47.8327777778,3.9,98.8666666667,16.1,34.419047619,17.6,42.3755555556,15.69,39.4666666667,3.0333333333,760.3,93.5,6,48.6666666667,2.1,30.7738580625,30.7738580625 -40,0,18.15,39.545,17.1,39.9333333333,18.29,39.59,16,39.29,16,47.9,3.79,98.9333333333,16.1,34.5,17.5611111111,42.4661111111,15.66,39.4666666667,3.0666666667,760.3,94,6,47.3333333333,2.2,39.7400144953,39.7400144953 -40,0,18.1,39.6266666667,17.1,40,18.29,39.59,15.9266666667,39.3633333333,16,47.9,3.79,99.06,16.1,34.58,17.5,42.56,15.6,39.4666666667,3.1,760.3,94.5,6,46,2.3,21.9848274253,21.9848274253 -50,0,18.1,39.7,17,40.03,18.29,39.59,15.89,39.4333333333,16,47.9277777778,3.79,99.19,16.1,34.6022222222,17.5222222222,42.6572222222,15.6,39.5,3.1333333333,760.3,95,6,44.6666666667,2.4,20.6293626572,20.6293626572 -50,0,18.1,39.7,17,40.09,18.29,39.6633333333,15.89,39.5,16,47.9777777778,3.79,99.19,16.1,34.7,17.5,42.7,15.6,39.5,3.1666666667,760.3,95.5,6,43.3333333333,2.5,28.2742642565,28.2742642565 -20,0,18.1,39.76,17,40.23,18.29,39.7,15.89,39.5,16,48,3.79,99.3,16.1,34.77,17.5,42.7,15.6,39.59,3.2,760.3,96,6,42,2.6,7.5823916006,7.5823916006 -20,0,18.1,39.8266666667,17,40.29,18.29,39.7,15.89,39.56,16,48,3.79,99.3,16.1,34.823,17.5,42.725,15.6,39.59,3.2666666667,760.35,95.8333333333,6,45.1666666667,2.65,40.3730422724,40.3730422724 -20,0,18.1,39.9,17,40.345,18.26,39.6633333333,15.89,39.59,16,48,3.845,99.45,16.1,34.9,17.4633333333,42.7661111111,15.6,39.7,3.3333333333,760.4,95.6666666667,6,48.3333333333,2.7,24.7820683173,24.7820683173 -30,0,18,39.9,17,40.4333333333,18.2,39.59,15.89,39.6633333333,16,48.075,3.9333333333,99.56,16.1,34.9611111111,17.4327777778,42.8227777778,15.6,39.7,3.4,760.45,95.5,6,51.5,2.75,7.0254591526,7.0254591526 -40,0,18,39.9666666667,17,40.5,18.2,39.6266666667,15.89,39.7,15.9816666667,48.09,4,99.56,16.1,35.01,17.39,42.8572222222,15.6,39.7,3.4666666667,760.5,95.3333333333,6,54.6666666667,2.8,5.5144639569,5.5144639569 -40,0,18,40.03,16.89,40.59,18.2,39.7,15.89,39.76,15.9877777778,48.09,4,99.59,16.1,35.085,17.39,42.9277777778,15.6,39.79,3.5333333333,760.55,95.1666666667,6,57.8333333333,2.85,5.5395531701,5.5395531701 -50,0,18,40.09,16.89,40.59,18.1333333333,39.73,15.86,39.79,15.945,48.09,4,99.59,16.1,35.1205555556,17.39,43,15.6,39.79,3.6,760.6,95,6,61,2.9,0.2357139718,0.2357139718 -40,0,18,40.1266666667,16.89,40.7,18.2,39.79,15.8,39.79,15.8961111111,48.0961111111,4,99.59,16.0777777778,35.1755555556,17.39,43.045,15.6,39.9,3.6166666667,760.6833333333,95.3333333333,6.1666666667,56.8333333333,2.95,11.9202177622,11.9202177622 -50,0,18,40.2,16.89,40.76,18.2,39.79,15.8,39.9,15.89,48.1877777778,3.9333333333,99.59,16.0888888889,35.22,17.39,43.09,15.6,39.9,3.6333333333,760.7666666667,95.6666666667,6.3333333333,52.6666666667,3,43.9411439584,43.9411439584 -40,0,18,40.29,16.89,40.79,18.2,39.79,15.8,39.9,15.89,48.2,3.9,99.59,16.05,35.24,17.3788888889,43.145,15.5666666667,39.9,3.65,760.85,96,6.5,48.5,3.05,3.860932868,3.860932868 -30,0,18,40.29,16.89,40.8633333333,18.2,39.79,15.8,39.9666666667,15.89,48.2,3.9,99.59,16,35.245,17.2955555556,43.2,15.5,39.9666666667,3.6666666667,760.9333333333,96.3333333333,6.6666666667,44.3333333333,3.1,6.9269280066,6.9269280066 -20,0,17.89,40.4,16.8566666667,40.9666666667,18.2,39.8633333333,15.8,40,15.89,48.2,3.79,99.5,16,35.2961111111,17.29,43.2,15.5333333333,40,3.6833333333,761.0166666667,96.6666666667,6.8333333333,40.1666666667,3.15,2.3762287456,2.3762287456 -20,0,17.89,40.4,16.79,40.9,18.1333333333,39.79,15.8,40,15.89,48.225,3.73,99.5,16,35.3633333333,17.29,43.235,15.5333333333,40,3.7,761.1,97,7,36,3.2,1.6959436703,1.6959436703 -20,0,17.89,40.4333333333,16.8233333333,40.9633333333,18.1,39.8266666667,15.8,40.09,15.89,48.27,3.7,99.5,16,35.4,17.29,43.29,15.5,40,3.7,761.2,97,6.8333333333,40.1666666667,3.2,45.8044509171,45.8044509171 -50,0,17.89,40.5,16.8233333333,41.03,18.1,39.9,15.8,40.1633333333,15.89,48.29,3.7,99.5,16,35.4,17.29,43.29,15.5,40,3.7,761.3,97,6.6666666667,44.3333333333,3.2,42.0100196963,42.0100196963 -50,0,17.89,40.5,16.79,41.03,18.1,39.9,15.7266666667,40.2,15.89,48.29,3.6633333333,99.4666666667,16,35.4388888889,17.275,43.3511111111,15.5,40.09,3.7,761.4,97,6.5,48.5,3.2,8.9435708243,8.9435708243 -40,0,17.8233333333,40.4633333333,16.79,41.09,18.1,39.9666666667,15.7266666667,40.2,15.89,48.29,3.59,99.4,16,35.5,17.285,43.3938888889,15.5,40.09,3.7,761.5,97,6.3333333333,52.6666666667,3.2,24.7633972554,24.7633972554 -40,0,17.8233333333,40.53,16.79,41.09,18.1,40,15.69,40.2,15.85,48.27,3.7,99.5,16,35.5,17.26,43.3633333333,15.5,40.09,3.7,761.6,97,6.1666666667,56.8333333333,3.2,15.3479263536,15.3479263536 -40,0,17.79,40.53,16.79,41.09,18.1,40,15.69,40.26,15.86,48.27,3.7,99.5,16,35.515,17.225,43.3388888889,15.5,40.09,3.7,761.7,97,6,61,3.2,13.7188480934,13.7188480934 -40,0,17.79,40.59,16.76,41.1266666667,18.1,40.03,15.69,40.29,15.84,48.29,3.7,99.5,15.9755555556,35.58,17.22,43.4222222222,15.5,40.1266666667,3.7,761.7666666667,97.1666666667,5.8333333333,56.3333333333,3.2333333333,6.4121927717,6.4121927717 -40,0,17.79,40.6266666667,16.7,41.2,18.1,40.03,15.69,40.29,15.88,48.3083333333,3.7,99.5,15.9755555556,35.6083333333,17.2,43.4,15.5,40.2,3.7,761.8333333333,97.3333333333,5.6666666667,51.6666666667,3.2666666667,21.4690956636,21.4690956636 -30,0,17.79,40.7,16.745,41.2,18.1,40.09,15.69,40.4,15.825,48.3205555556,3.76,99.5,16,35.6633333333,17.2,43.4,15.5,40.2,3.7,761.9,97.5,5.5,47,3.3,34.7972481861,34.7972481861 -20,0,17.79,40.7,16.7,41.23,18.0333333333,40.09,15.69,40.4,15.82,48.3144444444,3.79,99.5,15.9633333333,35.7,17.2,43.4833333333,15.5,40.23,3.7,761.9666666667,97.6666666667,5.3333333333,42.3333333333,3.3333333333,16.7530359235,16.7530359235 -30,0,17.73,40.76,16.7,41.29,18,40,15.69,40.4,15.8,48.29,3.8633333333,99.56,15.945,35.705,17.1888888889,43.5,15.4266666667,40.23,3.7,762.0333333333,97.8333333333,5.1666666667,37.6666666667,3.3666666667,35.0623216713,35.0623216713 -30,0,17.73,40.79,16.7,41.4,18,40,15.69,40.4666666667,15.8,48.3144444444,3.9333333333,99.59,15.9144444444,35.78,17.1444444444,43.515,15.39,40.2,3.7,762.1,98,5,33,3.4,42.0267457375,42.0267457375 -40,0,17.73,40.79,16.7,41.4,18,40.045,15.69,40.5,15.8,48.3266666667,4,99.53,15.8961111111,35.79,17.1666666667,43.57,15.39,40.2,3.7666666667,762.1666666667,98.3333333333,5,28.8333333333,3.5166666667,44.1316003329,44.1316003329 -40,0,17.7,40.9,16.7,41.4333333333,18,40.09,15.69,40.56,15.8,48.3633333333,4.09,99.59,15.9083333333,35.8083333333,17.15,43.5961111111,15.39,40.29,3.8333333333,762.2333333333,98.6666666667,5,24.6666666667,3.6333333333,38.3294675034,38.3294675034 -40,0,17.7,40.9,16.7,41.5,18,40.09,15.6,40.5,15.8,48.3938888889,4.09,99.59,15.89,35.8877777778,17.1,43.6877777778,15.39,40.29,3.9,762.3,99,5,20.5,3.75,16.1013813806,16.1013813806 -40,0,17.7,40.9333333333,16.7,41.59,18,40.1633333333,15.6,40.59,15.7633333333,48.4,4.1233333333,99.6566666667,15.89,35.9277777778,17.1,43.705,15.39,40.3266666667,3.9666666667,762.3666666667,99.3333333333,5,16.3333333333,3.8666666667,2.1058503888,2.1058503888 -40,0,17.7,41,16.7,41.59,18,40.1633333333,15.6,40.59,15.7877777778,48.4,4.19,99.59,15.89,36,17.1,43.76,15.39,40.4,4.0333333333,762.4333333333,99.6666666667,5,12.1666666667,3.9833333333,44.6354961139,44.6354961139 -50,0,17.7,41,16.6,41.5,18,40.2,15.6,40.6266666667,15.8,48.4,4.19,99.59,15.89,36.045,17.1,43.8083333333,15.39,40.4,4.1,762.5,100,5,8,4.1,31.9052572595,31.9052572595 -40,0,17.7,41.06,16.6,41.56,18,40.2,15.6,40.7,15.7755555556,48.4,4.2633333333,99.6566666667,15.89,36.09,17.0888888889,43.8633333333,15.39,40.4666666667,4.1666666667,762.5833333333,100,5,8,4.1666666667,27.7246558107,27.7246558107 -20,0,17.6666666667,41.06,16.6,41.6266666667,18,40.29,15.6,40.7,15.7572222222,48.4,4.3333333333,99.69,15.89,36.1205555556,17.0611111111,43.8744444444,15.39,40.5,4.2333333333,762.6666666667,100,5,8,4.2333333333,38.3164974046,38.3164974046 -20,0,17.6,41.06,16.6,41.7,18,40.2675,15.6,40.76,15.7938888889,48.4222222222,4.4,99.69,15.89,36.2,17.0333333333,43.9333333333,15.39,40.5,4.3,762.75,100,5,8,4.3,4.8430647235,4.8430647235 -20,0,17.6,41.145,16.6,41.7,18,40.2,15.6,40.79,15.7205555556,48.4333333333,4.5,99.7266666667,15.89,36.2,17.0222222222,43.9277777778,15.39,40.5,4.3666666667,762.8333333333,100,5,8,4.3666666667,37.4008243787,37.4008243787 -40,0,17.6,41.2,16.6,41.76,17.89,40.2,15.5333333333,40.8633333333,15.7327777778,48.45,4.5,99.7175,15.89,36.275,17,43.9888888889,15.39,40.56,4.4333333333,762.9166666667,100,5,8,4.4333333333,43.7608993845,43.7608993845 -40,0,17.6,41.26,16.6,41.79,17.89,40.26,15.6,40.9,15.7388888889,48.5,4.56,99.69,15.89,36.3022222222,17,44.015,15.39,40.59,4.5,763,100,5,8,4.5,0.3834297764,0.3834297764 -50,0,17.6,41.29,16.6,41.79,17.89,40.29,15.5333333333,40.9666666667,15.7205555556,48.5,4.6233333333,99.7266666667,15.89,36.3938888889,17,44.09,15.33,40.6633333333,4.5166666667,763.1,100,4.8333333333,7.3333333333,4.5166666667,46.7458492727,46.7458492727 -40,0,17.6,41.29,16.6,41.79,17.89,40.3633333333,15.5666666667,41,15.69,48.5,4.7633333333,99.8,15.89,36.4,17,44.1083333333,15.33,40.7,4.5333333333,763.2,100,4.6666666667,6.6666666667,4.5333333333,20.3482829034,20.3482829034 -50,0,17.5666666667,41.4,16.6,41.8725,17.89,40.4,15.5,41,15.7022222222,48.5,4.8333333333,99.8333333333,15.89,36.4611111111,16.9816666667,44.215,15.3225,40.7675,4.55,763.3,100,4.5,6,4.55,39.4381694845,39.4381694845 -40,0,17.5,41.4666666667,16.6,41.9666666667,17.89,40.4666666667,15.5,41.09,15.7022222222,48.51,4.9,99.9,15.89,36.5,16.9694444444,44.26,15.3,40.79,4.5666666667,763.4,100,4.3333333333,5.3333333333,4.5666666667,48.8063812256,48.8063812256 -40,0,17.5,41.5,16.6,42,17.89,40.5,15.5,41.1633333333,15.69,48.56,4.9333333333,99.9,15.845,36.51,16.9388888889,44.3083333333,15.3,40.9,4.5833333333,763.5,100,4.1666666667,4.6666666667,4.5833333333,16.6701272945,16.6701272945 -20,0,17.5,41.56,16.5333333333,42.06,17.89,40.4333333333,15.5,41.1266666667,15.69,48.52,5.06,99.9,15.875,36.6055555556,16.9266666667,44.3633333333,15.3,40.9,4.6,763.6,100,4,4,4.6,39.3607410486,39.3607410486 -20,0,17.5,41.59,16.5666666667,42.09,17.89,40.4,15.5,41.2,15.69,48.585,5.1233333333,99.9,15.835,36.6127777778,16.9083333333,44.4,15.3,41,4.65,763.6833333333,100,3.8333333333,3.6666666667,4.65,4.4680458028,4.4680458028 -20,0,17.5,41.6633333333,16.5,42.1633333333,17.865,40.4,15.5,41.23,15.69,48.59,5.2633333333,99.9,15.82,36.645,16.89,44.4833333333,15.3,41.06,4.7,763.7666666667,100,3.6666666667,3.3333333333,4.7,2.1849951008,2.1849951008 -30,0,17.5,41.73,16.5,42.2,17.79,40.4,15.5,41.3175,15.69,48.59,5.3333333333,99.9,15.8,36.705,16.89,44.545,15.3,41.09,4.75,763.85,100,3.5,3,4.75,25.746686908,25.746686908 -50,0,17.5,41.79,16.5,42.2,17.79,40.4333333333,15.5,41.4,15.69,48.59,5.4666666667,99.9,15.82,36.78,16.89,44.6083333333,15.3,41.1633333333,4.8,763.9333333333,100,3.3333333333,2.6666666667,4.8,2.4044663762,2.4044663762 -50,0,17.5,41.8266666667,16.5,42.29,17.79,40.5,15.5,41.4333333333,15.67,48.5761111111,5.5,99.9,15.8,36.7961111111,16.89,44.7,15.3,41.2,4.85,764.0166666667,100,3.1666666667,2.3333333333,4.85,4.4598063803,4.4598063803 -40,0,17.5,41.9,16.5,42.3633333333,17.79,40.53,15.5,41.5,15.675,48.6694444444,5.5,99.9,15.8,36.8877777778,16.89,44.735,15.3,41.26,4.9,764.1,100,3,2,4.9,34.4162760768,34.4162760768 -40,0,17.39,41.9,16.5,42.4,17.79,40.59,15.5,41.59,15.68,48.6633333333,5.59,99.9,15.8,36.9611111111,16.8677777778,44.77,15.3,41.3266666667,4.9333333333,764.2666666667,100,3,2,4.9333333333,1.7419266864,1.7419266864 -40,0,17.39,41.9666666667,16.5,42.4,17.79,40.59,15.5,41.59,15.655,48.6572222222,5.59,99.9,15.8,37,16.8733333333,44.8633333333,15.3,41.4,4.9666666667,764.4333333333,100,3,2,4.9666666667,21.5455462225,21.5455462225 -40,0,17.39,42,16.5,42.5,17.79,40.59,15.5,41.6266666667,15.655,48.6572222222,5.59,99.9,15.8,37.055,16.8288888889,44.8861111111,15.3,41.4333333333,5,764.6,100,3,2,5,37.9647025606,37.9647025606 -30,0,17.4633333333,42.06,16.5,42.5,17.79,40.59,15.5,41.7,15.635,48.645,5.5225,99.9,15.8,37.09,16.8011111111,44.9161111111,15.3,41.5,5.0333333333,764.7666666667,100,3,2,5.0333333333,41.5898477309,41.5898477309 -20,0,17.39,42.09,16.5,42.53,17.79,40.59,15.4633333333,41.7,15.62,48.6511111111,5.5,99.9,15.8,37.1816666667,16.8177777778,44.9916666667,15.3,41.53,5.0666666667,764.9333333333,100,3,2,5.0666666667,19.1231258446,19.1231258446 -30,0,17.39,42.1266666667,16.5,42.59,17.79,40.59,15.39,41.7,15.66,48.735,5.5,99.9,15.8,37.2,16.8011111111,45.01,15.2266666667,41.53,5.1,765.1,100,3,2,5.1,30.7777409442,30.7777409442 -30,0,17.39,42.2,16.5,42.6266666667,17.79,40.6633333333,15.39,41.7,15.625,48.725,5.5,99.9,15.8,37.2,16.79,45,15.19,41.5,5.0833333333,765.2333333333,99.8333333333,3,2.1666666667,5.0666666667,17.2493325197,17.2493325197 -40,0,17.39,42.2666666667,16.4266666667,42.6266666667,17.76,40.7,15.39,41.7,15.6,48.7,5.53,99.9,15.8,37.265,16.79,45.055,15.2633333333,41.6333333333,5.0666666667,765.3666666667,99.6666666667,3,2.3333333333,5.0333333333,26.6139387037,26.6139387037 -40,0,17.39,42.4,16.4633333333,42.6633333333,17.7,40.7,15.39,41.79,15.6,48.7,5.59,99.9,15.8,37.29,16.79,45.09,15.2266666667,41.6266666667,5.05,765.5,99.5,3,2.5,5,13.0004553474,13.0004553474 -50,0,17.39,42.4333333333,16.4175,42.64,17.76,40.73,15.39,41.8633333333,15.6,48.71,5.6233333333,99.9,15.8,37.345,16.79,45.1816666667,15.3,41.7675,5.0333333333,765.6333333333,99.3333333333,3,2.6666666667,4.9666666667,28.6430311156,28.6430311156 -40,0,17.39,42.5,16.4266666667,42.73,17.7,40.79,15.39,41.9,15.6,48.71,5.69,99.9,15.8,37.4055555556,16.79,45.2,15.2266666667,41.73,5.0166666667,765.7666666667,99.1666666667,3,2.8333333333,4.9333333333,45.292333921,45.292333921 -40,0,17.39,42.59,16.5,42.8266666667,17.7,40.79,15.39,41.9,15.6,48.745,5.69,99.9,15.8,37.4888888889,16.79,45.275,15.19,41.79,5,765.9,99,3,3,4.9,28.3010939253,28.3010939253 -30,0,17.39,42.59,16.5,42.9,17.7,40.79,15.39,42,15.6,48.77,5.6233333333,99.9,15.8,37.5,16.735,45.3083333333,15.19,41.79,5.0166666667,765.9666666667,99.1666666667,3.1666666667,4.3333333333,4.9333333333,2.8243408888,2.8243408888 -50,0,17.3566666667,42.6266666667,16.39,42.79,17.745,40.79,15.39,42,15.6,48.79,5.5,99.9,15.8,37.5,16.72,45.3877777778,15.19,41.8266666667,5.0333333333,766.0333333333,99.3333333333,3.3333333333,5.6666666667,4.9666666667,5.1056872704,5.1056872704 -20,0,17.29,42.7,16.39,42.8633333333,17.76,40.9,15.39,42.09,15.6,48.79,5.5,99.9,15.7938888889,37.555,16.725,45.4,15.19,41.9,5.05,766.1,99.5,3.5,7,5,16.417092795,16.417092795 -20,0,17.29,42.7,16.39,42.9,17.7,40.9,15.39,42.09,15.6,48.79,5.59,99.9,15.7694444444,37.59,16.705,45.4055555556,15.19,41.9,5.0666666667,766.1666666667,99.6666666667,3.6666666667,8.3333333333,5.0333333333,49.530025362,49.530025362 -20,0,17.29,42.76,16.39,42.9666666667,17.76,40.9333333333,15.39,42.09,15.6,48.79,5.6566666667,99.9,15.7755555556,37.6327777778,16.7,45.4666666667,15.19,41.9666666667,5.0833333333,766.2333333333,99.8333333333,3.8333333333,9.6666666667,5.0666666667,35.7182669686,35.7182669686 -40,0,17.29,42.79,16.39,42.9333333333,17.7,41,15.39,42.2,15.6,48.79,5.7266666667,99.9,15.7266666667,37.7,16.7,45.5,15.19,42,5.1,766.3,100,4,11,5.1,3.9487091941,3.9487091941 -40,0,17.29,42.79,16.39,43,17.7,40.9333333333,15.39,42.2,15.6,48.8572222222,5.8666666667,99.9,15.7511111111,37.705,16.7,45.565,15.19,42,5.2333333333,766.35,100,4,10.6666666667,5.2333333333,30.7108224719,30.7108224719 -50,0,17.29,42.8266666667,16.39,43,17.7,41,15.36,42.23,15.5833333333,48.8816666667,5.9333333333,99.9,15.7327777778,37.76,16.7,45.5961111111,15.19,42.09,5.3666666667,766.4,100,4,10.3333333333,5.3666666667,24.6616836404,24.6616836404 -40,0,17.29,42.9,16.39,43.06,17.7,41,15.3,42.29,15.5944444444,48.845,6.1425,99.9,15.69,37.8572222222,16.7,45.6877777778,15.19,42.09,5.5,766.45,100,4,10,5.5,13.4548827424,13.4548827424 -40,0,17.29,43,16.39,43.1266666667,17.7,41.06,15.3,42.3633333333,15.5888888889,48.8755555556,6.2633333333,99.9,15.69,37.9,16.7,45.775,15.19,42.2,5.6333333333,766.5,100,4,9.6666666667,5.6333333333,14.655543142,14.655543142 -50,0,17.29,43.05,16.39,43.2,17.7,41.1266666667,15.3,42.3633333333,15.5333333333,48.9,6.3,99.9,15.6961111111,37.9388888889,16.6777777778,45.8005555556,15.19,42.2,5.7666666667,766.55,100,4,9.3333333333,5.7666666667,23.7639150117,23.7639150117 -50,0,17.29,43.2,16.3566666667,43.23,17.7,41.2,15.3,42.4333333333,15.5388888889,48.9,6.3666666667,99.9,15.7083333333,38.045,16.6777777778,45.8922222222,15.19,42.29,5.9,766.6,100,4,9,5.9,48.2039273134,48.2039273134 -10,0,17.29,43.2,16.29,43.29,17.7,41.26,15.3,42.5,15.5555555556,48.9111111111,6.4,99.9,15.69,38.09,16.6444444444,45.9444444444,15.19,42.3633333333,5.9,766.7333333333,99.8333333333,4,14,5.8666666667,21.1816051044,21.1816051044 -20,0,17.29,43.2,16.3566666667,43.29,17.7,41.2,15.3,42.53,15.5333333333,48.9611111111,6.4666666667,99.9,15.69,38.09,16.6555555556,45.9716666667,15.19,42.4333333333,5.9,766.8666666667,99.6666666667,4,19,5.8333333333,42.2048547887,42.2048547887 -20,0,17.29,43.2,16.29,43.3633333333,17.6,41.2,15.3,42.59,15.5666666667,49,6.59,99.9,15.69,38.1572222222,16.6388888889,46.035,15.13,42.5,5.9,767,99.5,4,24,5.8,47.6913675666,47.6913675666 -40,0,17.23,43.2,16.29,43.4,17.6,41.26,15.3,42.59,15.5,49,6.59,99.9,15.69,38.2,16.6222222222,46.0794444444,15.145,42.545,5.9,767.1333333333,99.3333333333,4,29,5.7666666667,14.3236762378,14.3236762378 -40,0,17.26,43.26,16.29,43.475,17.5,41.4,15.3,42.59,15.5,49,6.3666666667,99.9,15.69,38.255,16.6,46.1205555556,15.1,42.59,5.9,767.2666666667,99.1666666667,4,34,5.7333333333,27.0424698945,27.0424698945 -40,0,17.26,43.26,16.29,43.5,17.5,41.4,15.3,42.73,15.5,49,6.2266666667,99.9,15.69,38.29,16.6,46.2,15.1,42.6633333333,5.9,767.4,99,4,39,5.7,29.0689158952,29.0689158952 -50,0,17.2,43.2,16.29,43.5,17.5,41.4,15.3,42.79,15.5,49,6.2266666667,99.9,15.69,38.3816666667,16.6,46.2,15.16,42.73,5.85,767.4666666667,99,3.8333333333,39.6666666667,5.6666666667,12.8143447218,12.8143447218 -50,0,17.2,43.26,16.29,43.56,17.5,41.425,15.3,42.8266666667,15.5,49,6.3,99.9,15.69,38.4,16.6,46.275,15.1,42.79,5.8,767.5333333333,99,3.6666666667,40.3333333333,5.6333333333,43.9041984151,43.9041984151 -40,0,17.2,43.3266666667,16.29,43.59,17.5666666667,41.5,15.3,42.9,15.5,49.04,6.3,99.9,15.69,38.4,16.6,46.29,15.16,42.79,5.75,767.6,99,3.5,41,5.6,44.1151193809,44.1151193809 -40,0,17.2,43.3266666667,16.29,43.59,17.6,41.5,15.3,42.9,15.5,49.045,6.3,99.9,15.69,38.4722222222,16.6,46.3083333333,15.16,42.79,5.7,767.6666666667,99,3.3333333333,41.6666666667,5.5666666667,49.3667342351,49.3667342351 -20,0,17.2,43.3266666667,16.29,43.7,17.6,41.5,15.3,42.9,15.5,49.09,6.0933333333,99.9,15.69,38.5,16.5833333333,46.3755555556,15.1,42.9,5.65,767.7333333333,99,3.1666666667,42.3333333333,5.5333333333,5.0810450572,5.0810450572 -20,0,17.2,43.3266666667,16.29,43.7,17.6,41.5,15.3,42.9666666667,15.5,49.09,5.76,99.9,15.69,38.5,16.5944444444,46.4,15.1,42.9,5.6,767.8,99,3,43,5.5,30.9387501096,30.9387501096 -40,10,17.2,43.3266666667,16.23,43.6566666667,17.6,41.5,15.3,43,15.5,49.09,5.69,99.9,15.69,38.535,16.5555555556,46.4,15.1,42.9,5.6,767.9,99.1666666667,3.1666666667,38.3333333333,5.5166666667,35.2366884938,35.2366884938 -120,20,17.2,43.4,16.29,43.73,17.6,41.4333333333,15.3,43,15.5,49.09,5.615,99.9,15.69,38.58,16.5166666667,46.4,15.1,42.9,5.6,768,99.3333333333,3.3333333333,33.6666666667,5.5333333333,7.4294215417,7.4294215417 -160,10,17.2,43.4,16.26,43.76,17.5333333333,41.56,15.3,43,15.5,49.1572222222,5.6566666667,99.9,15.69,38.58,16.5222222222,46.4,15.1,42.9333333333,5.6,768.1,99.5,3.5,29,5.55,44.5405295817,44.5405295817 -220,20,17.2,43.4,16.2,43.7,17.6,41.6266666667,15.3,43,15.4877777778,49.1633333333,5.8333333333,99.9,15.69,38.59,16.5,46.4,15.1,42.9333333333,5.6,768.2,99.6666666667,3.6666666667,24.3333333333,5.5666666667,8.1335150055,8.1335150055 -130,20,17.1,43.4,16.2,43.7,17.6,41.7,15.2633333333,43.0266666667,15.4877777778,49.1877777778,5.8333333333,99.9,15.67,38.57,16.5,46.4,15.1,43,5.6,768.3,99.8333333333,3.8333333333,19.6666666667,5.5833333333,6.0933234752,6.0933234752 -210,10,17.1,43.4,16.2,43.76,17.6,41.7,15.2633333333,43.0266666667,15.4755555556,49.1755555556,5.69,99.9,15.68,38.58,16.5,46.4222222222,15.1,43,5.6,768.4,100,4,15,5.6,48.877842864,48.877842864 -140,20,17.1,43.4,16.2,43.79,17.6,41.7,15.19,43,15.5,49.2,5.6233333333,99.9,15.655,38.555,16.5,46.4722222222,15.1,43,5.6666666667,768.5166666667,99.8333333333,3.8333333333,19,5.65,31.3555132714,31.3555132714 -130,20,17.1,43.5,16.2,43.79,17.6,41.7,15.19,43,15.5,49.225,5.69,99.9,15.645,38.565,16.5,46.5,15.1,43,5.7333333333,768.6333333333,99.6666666667,3.6666666667,23,5.7,0.9599715006,0.9599715006 -190,10,17.1,43.5,16.2,43.79,17.6,41.7,15.2266666667,43.03,15.5,49.29,5.69,99.9,15.655,38.5922222222,16.5,46.5,15.1,43,5.8,768.75,99.5,3.5,27,5.75,41.4582072292,41.4582072292 -130,10,17.1,43.59,16.2,43.79,17.6,41.6633333333,15.2266666667,43.03,15.4816666667,49.3511111111,5.9333333333,99.9,15.655,38.6572222222,16.5,46.5094736842,15.1,43,5.8666666667,768.8666666667,99.3333333333,3.3333333333,31,5.8,49.9438737636,49.9438737636 -120,10,17.1,43.6633333333,16.2,43.79,17.6,41.6633333333,15.19,43,15.4877777778,49.3938888889,6.06,99.9,15.63,38.6266666667,16.5,46.59,15.1,43.09,5.9333333333,768.9833333333,99.1666666667,3.1666666667,35,5.85,43.4047758114,43.4047758114 -120,10,17.1,43.7,16.2,43.8266666667,17.5666666667,41.7,15.19,43,15.4511111111,49.4444444444,6.2266666667,99.9,15.625,38.6755555556,16.4755555556,46.57,15.1,43.09,6,769.1,99,3,39,5.9,19.8455537437,19.8455537437 -120,10,17.1,43.7,16.2,43.9,17.5,41.7,15.19,43.09,15.445,49.45,6.3666666667,99.9,15.62,38.7,16.5,46.59,15.1,43.09,6.05,769.2333333333,99.1666666667,3.1666666667,38,5.9666666667,46.8120891252,46.8120891252 -200,10,17.1,43.7,16.2,43.9,17.5,41.79,15.19,43.09,15.4511111111,49.4555555556,6.4333333333,99.9,15.6,38.7,16.4755555556,46.6266666667,15.1,43.09,6.1,769.3666666667,99.3333333333,3.3333333333,37,6.0333333333,16.2386448006,16.2386448006 -120,10,17.1,43.7,16.2,43.9,17.5,41.79,15.19,43.145,15.4388888889,49.4666666667,6.6266666667,99.9,15.6,38.705,16.4511111111,46.6266666667,15.1,43.1633333333,6.15,769.5,99.5,3.5,36,6.1,48.6223780783,48.6223780783 -110,10,17,43.6266666667,16.2,43.9,17.5,41.79,15.19,43.1266666667,15.4205555556,49.4777777778,6.8,99.9,15.6,38.76,16.4022222222,46.6122222222,15.1,43.2,6.2,769.6333333333,99.6666666667,3.6666666667,35,6.1666666667,28.1299226917,28.1299226917 -120,10,17,43.7,16.2,43.9,17.5,41.79,15.19,43.2,15.4022222222,49.51,6.8,99.9,15.6,38.79,16.4511111111,46.7255555556,15.1,43.2,6.25,769.7666666667,99.8333333333,3.8333333333,34,6.2333333333,28.9664518903,28.9664518903 -130,10,17,43.7,16.2,43.9,17.5,41.79,15.19,43.2,15.4022222222,49.51,6.9,99.9,15.62,38.8144444444,16.39,46.7,15.1,43.29,6.3,769.9,100,4,33,6.3,41.2345176795,41.2345176795 -130,10,17,43.7,16.2,43.9666666667,17.5,41.79,15.19,43.26,15.4144444444,49.52,6.9975,99.9,15.6,38.8572222222,16.39,46.7,15.1,43.29,6.3833333333,769.9333333333,99.6666666667,4.1666666667,34,6.3333333333,9.9222238758,9.9222238758 -170,10,17,43.79,16.2,44,17.5,41.79,15.19,43.3266666667,15.39,49.51,7.1566666667,99.9,15.6,38.9,16.4144444444,46.7944444444,15.1,43.29,6.4666666667,769.9666666667,99.3333333333,4.3333333333,35,6.3666666667,30.9494817513,30.9494817513 -110,10,17,43.79,16.2,44,17.4633333333,41.79,15.19,43.4,15.4205555556,49.5955555556,7.2266666667,99.9,15.6,38.9166666667,16.39,46.8388888889,15.0333333333,43.29,6.55,770,99,4.5,36,6.4,11.2282307469,11.2282307469 -140,10,17,43.8266666667,16.2,44,17.39,41.79,15.19,43.4,15.4083333333,49.6083333333,7.4333333333,99.9,15.6,39,16.39,46.9,15.0333333333,43.3266666667,6.6333333333,770.0333333333,98.6666666667,4.6666666667,37,6.4333333333,1.2611865066,1.2611865066 -110,10,17,43.9,16.2,44,17.39,41.9,15.19,43.4,15.39,49.59,7.53,99.9,15.6,39.005,16.39,46.9,15.1,43.4,6.7166666667,770.0666666667,98.3333333333,4.8333333333,38,6.4666666667,37.8252562368,37.8252562368 -120,10,17,43.9,16.2,44,17.39,41.9,15.19,43.4333333333,15.39,49.59,7.53,99.9,15.6,39.08,16.39,46.95,15.1,43.5,6.8,770.1,98,5,39,6.5,31.9078472327,31.9078472327 -110,10,17,43.975,16.2,44.06,17.39,41.8633333333,15.19,43.5,15.39,49.6144444444,7.53,99.9,15.6,39.09,16.3844444444,47.005,15.1,43.5,6.85,770.1333333333,97.8333333333,4.6666666667,41,6.5333333333,2.8934456524,2.8934456524 -110,10,17,44,16.2,44.09,17.39,41.8633333333,15.19,43.5,15.39,49.6511111111,7.6566666667,99.9,15.6,39.1083333333,16.3733333333,47.08,15.0666666667,43.56,6.9,770.1666666667,97.6666666667,4.3333333333,43,6.5666666667,33.6898906622,33.6898906622 -250,10,17,44.03,16.2,44.09,17.39,41.9,15.19,43.56,15.39,49.6938888889,7.8666666667,99.9,15.6,39.1877777778,16.3677777778,47.0961111111,15.0666666667,43.56,6.95,770.2,97.5,4,45,6.6,34.5772385364,34.5772385364 -250,10,17,44.09,16.2,44.1266666667,17.39,41.9666666667,15.19,43.6633333333,15.39,49.6694444444,8.1266666667,99.9,15.6,39.225,16.3622222222,47.1511111111,15,43.59,7,770.2333333333,97.3333333333,3.6666666667,47,6.6333333333,37.2614479857,37.2614479857 -100,10,17,44.09,16.2,44.2,17.39,42.09,15.19,43.6633333333,15.39,49.6144444444,8.3,99.9,15.6,39.29,16.3066666667,47.2044444444,15.025,43.6175,7.05,770.2666666667,97.1666666667,3.3333333333,49,6.6666666667,6.2030935311,6.2030935311 -120,10,17,44.1633333333,16.2,44.245,17.39,42.09,15.19,43.7,15.39,49.645,8.3,99.9,15.6,39.3205555556,16.3677777778,47.67,15.1,43.76,7.1,770.3,97,3,51,6.7,7.5585893355,7.5585893355 -120,10,16.89,44.29,16.2,44.29,17.39,42.1266666667,15.19,43.7,15.39,49.6816666667,8.46,99.9,15.6,39.4,16.4572222222,48.3711111111,15.0666666667,43.76,7.15,770.2666666667,96.6666666667,3.3333333333,53.1666666667,6.6833333333,8.8715312653,8.8715312653 -140,10,16.89,44.3633333333,16.2,44.29,17.39,42.2,15.19,43.73,15.39,49.6694444444,8.6,99.9,15.6,39.4,16.5277777778,48.8155555556,15,43.76,7.2,770.2333333333,96.3333333333,3.6666666667,55.3333333333,6.6666666667,0.4434733884,0.4434733884 -190,10,16.89,44.4333333333,16.2,44.29,17.39,42.29,15.19,43.8175,15.39,49.7,8.63,99.9,15.6,39.4611111111,16.6166666667,49.1811111111,15,43.79,7.25,770.2,96,4,57.5,6.65,31.6894321586,31.6894321586 -150,10,16.89,44.5,16.2,44.29,17.29,42.29,15.19,43.9,15.39,49.71,8.69,99.9,15.6,39.5,16.715,49.5338888889,15.0666666667,43.93,7.3,770.1666666667,95.6666666667,4.3333333333,59.6666666667,6.6333333333,18.6375442543,18.6375442543 -150,10,16.89,44.5,16.2,44.4,17.29,42.29,15.19,43.9333333333,15.39,49.765,8.7266666667,99.9,15.6,39.515,16.7966666667,49.7027777778,15.1,44,7.35,770.1333333333,95.3333333333,4.6666666667,61.8333333333,6.6166666667,13.8860024512,13.8860024512 -150,10,16.89,44.56,16.2,44.4,17.29,42.3266666667,15.19,44,15.39,49.79,8.86,99.9,15.6,39.59,16.89,49.9377777778,15.1,44.06,7.4,770.1,95,5,64,6.6,8.6254250375,8.6254250375 -150,10,16.89,44.59,16.2,44.4,17.29,42.4,15.19,44.03,15.39,49.79,8.845,99.9,15.6,39.6083333333,17.0094444444,50.0411111111,15.1,44.09,7.4166666667,770.1333333333,95,4.8333333333,63.6666666667,6.6166666667,10.1855570683,10.1855570683 -140,10,16.89,44.6633333333,16.2,44.4666666667,17.3566666667,42.5,15.19,44.09,15.39,49.845,8.89,99.9,15.6,39.7,17.0666666667,50.2083333333,15.1,44.1633333333,7.4333333333,770.1666666667,95,4.6666666667,63.3333333333,6.6333333333,11.0935440869,11.0935440869 -130,10,16.89,44.7,16.2,44.5,17.3566666667,42.5,15.19,44.09,15.39,49.9222222222,8.89,99.9,15.6,39.705,17.1055555556,50.3138888889,15,44.09,7.45,770.2,95,4.5,63,6.65,12.6715752296,12.6715752296 -180,10,16.89,44.76,16.2,44.5,17.3233333333,42.4666666667,15.19,44.09,15.39,49.9277777778,8.7333333333,99.9,15.6,39.78,17.1666666667,50.4888888889,15,44.09,7.4666666667,770.2333333333,95,4.3333333333,62.6666666667,6.6666666667,8.5048844689,8.5048844689 -280,10,16.89,44.79,16.2,44.59,17.3233333333,42.4,15.19,44.1266666667,15.39,50,8.5333333333,99.9,15.6,39.79,17.215,50.515,15,44.2,7.4833333333,770.2666666667,95,4.1666666667,62.3333333333,6.6833333333,46.0838382016,46.0838382016 -170,10,16.89,44.79,16.2,44.59,17.29,42.5,15.19,44.2,15.39,50,8.3233333333,99.9,15.6,39.79,17.34,50.545,15,44.2,7.5,770.3,95,4,62,6.7,17.2656729235,17.2656729235 -130,20,16.8233333333,44.8266666667,16.2,44.6266666667,17.29,42.56,15.16,44.2,15.39,50.035,8.0633333333,99.9,15.6,39.79,17.4383333333,50.4777777778,15,44.23,7.35,770.3666666667,95.5,4,60.1666666667,6.6333333333,4.2554604588,4.2554604588 -80,0,16.89,44.925,16.1333333333,44.76,17.29,42.53,15.1,44.2,15.39,50.09,8,99.9,15.6,39.79,17.5666666667,50.5,15,44.29,7.2,770.4333333333,96,4,58.3333333333,6.5666666667,18.8908902579,18.8908902579 -80,10,16.89,45,16.1,44.9633333333,17.29,42.6633333333,15.13,44.2,15.39,50.1622222222,7.9333333333,99.9,15.6,39.79,17.6611111111,50.4827777778,15,44.29,7.05,770.5,96.5,4,56.5,6.5,27.167175978,27.167175978 -70,0,16.89,45.4266666667,16.1,45.3633333333,17.29,42.73,15.19,44.2,15.39,50.335,7.7633333333,99.9,15.6,39.8022222222,17.715,50.56,15,44.29,6.9,770.5666666667,97,4,54.6666666667,6.4333333333,39.3505463027,39.3505463027 -80,10,16.89,45.76,16.1,45.59,17.3566666667,42.8633333333,15.16,44.2,15.39,50.5183333333,7.6233333333,99.9,15.6,39.845,17.78,50.6966666667,15,44.3266666667,6.75,770.6333333333,97.5,4,52.8333333333,6.3666666667,16.0156763857,16.0156763857 -60,0,16.8566666667,45.76,16.1,45.59,17.39,43,15.1,44.26,15.39,50.645,7.5,99.9,15.6,39.9,17.8066666667,50.8083333333,15,44.3725,6.6,770.7,98,4,51,6.3,41.9019259163,41.9019259163 -40,10,16.8566666667,45.76,16.1,45.59,17.39,43,15.19,44.29,15.39,50.735,7.4333333333,99.9,15.6,39.9,17.885,50.8877777778,15,44.29,6.5833333333,770.6833333333,98,4,50,6.2833333333,49.9235242605,49.9235242605 -50,0,16.79,45.7,16.1,45.56,17.39,43.09,15.13,44.29,15.39,50.79,7.3,99.9,15.5888888889,39.9,17.9633333333,50.9,15,44.4,6.5666666667,770.6666666667,98,4,49,6.2666666667,10.672149621,10.672149621 -70,0,16.79,45.7,16.1,45.5,17.315,43.1175,15.1,44.29,15.39,50.79,7.3,99.9,15.5666666667,39.9,18.0166666667,50.9166666667,15,44.4,6.55,770.65,98,4,48,6.25,21.8648245675,21.8648245675 -80,10,16.79,45.6633333333,16.1,45.5,17.29,43.2,15.1,44.3633333333,15.37,50.8144444444,7.2633333333,99.9,15.5666666667,39.9,18.1,51,15,44.4,6.5333333333,770.6333333333,98,4,47,6.2333333333,18.9364998136,18.9364998136 -120,10,16.79,45.59,16.1,45.5,17.29,43.2,15.1,44.3633333333,15.36,50.79,7.19,99.9,15.5611111111,40.0394444444,18.1,50.8494444444,15,44.4,6.5166666667,770.6166666667,98,4,46,6.2166666667,48.2788354275,48.2788354275 -120,10,16.79,45.5266666667,16.1,45.4666666667,17.23,42.6666666667,15.1,44.3266666667,15.37,50.79,7.19,99.9,15.5111111111,40.3627777778,18.1222222222,50.7327777778,15,44.4633333333,6.5,770.6,98,4,45,6.2,32.0558251115,32.0558251115 -420,10,16.79,45.2666666667,16.1,45.3266666667,17.2,42.53,15.1,44.5266666667,15.36,50.755,7.19,99.9,15.5,40.5983333333,18.1555555556,50.4511111111,15,44.59,6.25,770.5833333333,97.8333333333,3.6666666667,46.6666666667,5.9333333333,40.3067666921,40.3067666921 -410,20,16.79,45.29,16.1,45.3633333333,17.2,42.59,15.1,44.73,15.375,50.7,7.19,99.9,15.4877777778,40.77,18.0833333333,49.5072222222,15,44.7,6,770.5666666667,97.6666666667,3.3333333333,48.3333333333,5.6666666667,45.9531094413,45.9531094413 -240,10,16.79,45.29,16.1,45.29,17.29,42.7,15.1,44.79,15.365,50.7,6.9333333333,99.9,15.4877777778,40.9105555556,17.9083333333,48.8827777778,15,44.7,5.75,770.55,97.5,3,50,5.4,2.9311224003,2.9311224003 -220,10,16.79,45.1633333333,16.1,45.29,17.29,42.76,15.1,44.9633333333,15.37,50.72,6.66,99.9,15.5,41.045,17.8455555556,48.9838888889,15,44.8,5.5,770.5333333333,97.3333333333,2.6666666667,51.6666666667,5.1333333333,23.8821427803,23.8821427803 -60,10,16.79,45.09,16.1,45.29,17.26,42.76,15.1,45.09,15.36,50.735,6.3666666667,99.9,15.5,41.1327777778,17.9083333333,49.5088888889,15,45,5.25,770.5166666667,97.1666666667,2.3333333333,53.3333333333,4.8666666667,34.8441394162,34.8441394162 -70,10,16.8233333333,45.36,16.1,45.3266666667,17.2,42.76,15.1,45.1633333333,15.36,50.79,6.2266666667,99.9,15.5,41.2,18.0277777778,49.8755555556,15,45.4633333333,5,770.5,97,2,55,4.6,2.2335754707,2.2335754707 -90,0,16.89,45.6333333333,16.1,45.4666666667,17.29,42.9,15.16,45.2233333333,15.345,50.79,6.2266666667,99.9,15.4877777778,41.205,18.1166666667,50.2605555556,15,45.6633333333,5.2166666667,770.5333333333,96.8333333333,2.1666666667,56.1666666667,4.7833333333,37.8427158459,37.8427158459 -110,10,16.89,45.59,16.1333333333,45.59,17.29,42.9666666667,15.1,45.4633333333,15.35,50.8144444444,6.3,99.9,15.4877777778,41.28,18.2,50.5116666667,15,45.7,5.4333333333,770.5666666667,96.6666666667,2.3333333333,57.3333333333,4.9666666667,29.5836862409,29.5836862409 -90,0,16.89,45.7475,16.2,45.6633333333,17.29,43.03,15.1,45.6633333333,15.33,50.79,6.4,99.9,15.4755555556,41.27,18.1888888889,50.6338888889,15,45.6266666667,5.65,770.6,96.5,2.5,58.5,5.15,25.5070231506,25.5070231506 -100,10,16.9633333333,46.1333333333,16.4266666667,45.7,17.29,43.09,15.19,45.9333333333,15.345,50.79,6.4666666667,99.9,15.4205555556,41.28,18.1816666667,50.9527777778,15,45.56,5.8666666667,770.6333333333,96.3333333333,2.6666666667,59.6666666667,5.3333333333,22.6300883223,22.6300883223 -90,0,17.1333333333,46.29,16.5666666667,45.5666666667,17.29,43.23,15.19,46.1333333333,15.355,50.8083333333,6.5,99.9,15.39,41.28,18.28,51.08,15,45.5,6.0833333333,770.6666666667,96.1666666667,2.8333333333,60.8333333333,5.5166666667,1.2740983046,1.2740983046 -90,10,17.2,46.23,16.8233333333,45.3633333333,17.29,43.29,15.19,46.4633333333,15.365,50.9,6.5,99.9,15.39,41.29,18.34,51.09,15,45.45,6.3,770.7,96,3,62,5.7,48.0921804672,48.0921804672 -90,10,17.3233333333,46.29,16.9975,45.14,17.39,43.29,15.19,46.7233333333,15.345,50.9055555556,6.5,99.9,15.4144444444,41.29,18.4572222222,51.0294444444,15,45.3633333333,6.2333333333,770.6666666667,95.1666666667,3.1666666667,55,5.5,49.3813719833,49.3813719833 -70,20,17.4633333333,46.43,17.1666666667,45.09,17.39,43.3633333333,15.3,47.1566666667,15.345,50.9888888889,6.5,99.9,15.4144444444,41.3144444444,18.4205555556,50.5072222222,15,45.29,6.1666666667,770.6333333333,94.3333333333,3.3333333333,48,5.3,31.7179779056,31.7179779056 -70,0,17.6333333333,46.6633333333,17.3233333333,44.9666666667,17.445,43.6,15.3,47.565,15.37,51.035,6.5,99.9,15.3961111111,41.28,18.3344444444,50.15,15,45.26,6.1,770.6,93.5,3.5,41,5.1,21.2770673446,21.2770673446 -80,10,17.76,46.33,17.4633333333,44.8266666667,17.5,43.73,15.3,47.8633333333,15.39,51.09,6.4333333333,99.9,15.4205555556,41.225,18.3788888889,50.1022222222,15,45.3333333333,6.0333333333,770.5666666667,92.6666666667,3.6666666667,34,4.9,13.3312952588,13.3312952588 -100,0,17.9266666667,46.0266666667,17.6633333333,44.56,17.5,43.79,15.39,48.1266666667,15.39,51.1572222222,6.295,99.9,15.4266666667,41.155,18.4327777778,50.1327777778,15,45.26,5.9666666667,770.5333333333,91.8333333333,3.8333333333,27,4.7,4.0284743998,4.0284743998 -100,0,18.1333333333,45.7666666667,17.8566666667,44.4333333333,17.5,43.9,15.39,48.26,15.39,51.21,5.9666666667,99.9,15.4083333333,41.1022222222,18.5222222222,50.245,15,45.1266666667,5.9,770.5,91,4,20,4.5,16.5070781717,16.5070781717 -90,0,18.3233333333,45.43,18,44.1333333333,17.5666666667,43.9666666667,15.4266666667,48.4633333333,15.39,51.265,5.9,99.9,15.3961111111,41.015,18.5388888889,50.29,15,45.09,5.9,770.4666666667,90.8333333333,4.1666666667,20.5,4.4666666667,44.7025051457,44.7025051457 -110,0,18.4633333333,45.23,18.1333333333,43.9333333333,17.6,43.9666666667,15.5,48.59,15.39,51.29,5.8,99.9,15.4144444444,40.9722222222,18.6,50.265,15,45.03,5.9,770.4333333333,90.6666666667,4.3333333333,21,4.4333333333,15.3337599244,15.3337599244 -110,0,18.6333333333,44.8633333333,18.23,43.7,17.6666666667,44.0266666667,15.5333333333,48.6266666667,15.39,51.29,5.8666666667,99.9,15.4144444444,40.9222222222,18.6983333333,50.1816666667,14.9633333333,44.9666666667,5.9,770.4,90.5,4.5,21.5,4.4,20.121192059,20.121192059 -110,0,18.7,44.6566666667,18.3566666667,43.5,17.7,44,15.6,48.7,15.4327777778,51.3144444444,5.9333333333,99.9,15.4083333333,40.8877777778,18.79,49.9972222222,14.89,44.9,5.9,770.3666666667,90.3333333333,4.6666666667,22,4.3666666667,28.6895698751,28.6895698751 -110,0,18.89,44.43,18.5333333333,43.26,17.7,44,15.6,48.7,15.4144444444,51.3083333333,6,99.9,15.4205555556,40.8205555556,18.8511111111,49.8916666667,14.89,44.8633333333,5.9,770.3333333333,90.1666666667,4.8333333333,22.5,4.3333333333,29.849419219,29.849419219 -100,0,18.9633333333,44.1566666667,18.6,43.0666666667,17.79,43.9666666667,15.66,48.76,15.445,51.345,5.9666666667,99.9,15.4205555556,40.8205555556,18.9083333333,49.7572222222,14.89,44.79,5.9,770.3,90,5,23,4.3,28.5008568782,28.5008568782 -80,0,19.0333333333,43.8633333333,18.7,42.8633333333,17.79,43.9,15.69,48.79,15.4388888889,51.3144444444,5.9,99.9,15.4877777778,40.7983333333,18.9633333333,49.5733333333,14.89,44.76,5.8333333333,770.2666666667,90.1666666667,5,22.6666666667,4.2833333333,10.9035643982,10.9035643982 -90,0,19.1,43.73,18.76,42.6566666667,17.79,43.79,15.69,48.79,15.445,51.29,5.7633333333,99.9,15.4877777778,40.78,19.05,49.4888888889,14.89,44.7,5.7666666667,770.2333333333,90.3333333333,5,22.3333333333,4.2666666667,41.0063372226,41.0063372226 -100,0,19.2,43.4666666667,18.8233333333,42.5,17.79,43.8633333333,15.7266666667,48.7,15.4755555556,51.29,5.7633333333,99.9,15.5,40.785,19.1055555556,49.3994444444,14.89,44.7,5.7,770.2,90.5,5,22,4.25,1.832789043,1.832789043 -110,0,19.2675,43.2675,18.89,42.36,17.79,43.9,15.8,48.7,15.5,51.29,5.69,99.9,15.5,40.73,19.1888888889,49.2922222222,14.89,44.6266666667,5.6333333333,770.1666666667,90.6666666667,5,21.6666666667,4.2333333333,31.2791407458,31.2791407458 -100,0,19.29,43.03,18.9266666667,42.1333333333,17.79,43.9,15.8,48.59,15.5,51.29,5.69,99.9,15.4755555556,40.6755555556,19.205,49.1622222222,14.89,44.59,5.5666666667,770.1333333333,90.8333333333,5,21.3333333333,4.2166666667,21.6739469091,21.6739469091 -100,0,19.39,42.8633333333,19,41.9333333333,17.89,43.9666666667,15.86,48.6633333333,15.5,51.29,5.69,99.9,15.5,40.7,19.26,49.055,14.89,44.59,5.5,770.1,91,5,21,4.2,17.8463069256,17.8463069256 -90,10,19.39,42.73,19,41.79,17.89,43.8266666667,15.89,48.56,15.5,51.2688888889,5.69,99.9,15.4755555556,40.6694444444,19.26,48.9588888889,14.89,44.5,5.4833333333,770.0666666667,91,4.8333333333,21.1666666667,4.1833333333,38.6833820026,38.6833820026 -70,0,19.39,42.43,19,41.5925,17.8566666667,43.76,15.89,48.5,15.5,51.1057894737,5.69,99.9,15.5,40.6022222222,19.25,48.88,15,44.9566666667,5.4666666667,770.0333333333,91,4.6666666667,21.3333333333,4.1666666667,8.6726023932,8.6726023932 -70,0,19.39,42.23,19,41.3266666667,17.865,43.795,15.89,48.345,15.5,51.009,5.69,99.9,15.5,40.535,19.28,49.0038888889,15.0666666667,45.43,5.45,770,91,4.5,21.5,4.15,24.6604486601,24.6604486601 -60,0,19.39,42.1633333333,19,41.29,17.89,43.8266666667,15.89,48.2,15.5,51.06,5.69,99.9,15.5,40.45,19.34,49.17,15.1,45.6266666667,5.4333333333,769.9666666667,91,4.3333333333,21.6666666667,4.1333333333,36.8594454252,36.8594454252 -50,0,19.39,42.09,19,41.23,18,43.79,15.89,48.2,15.4755555556,51.05,5.69,99.9,15.5,40.4,19.39,49.3083333333,15.1,45.76,5.4166666667,769.9333333333,91,4.1666666667,21.8333333333,4.1166666667,25.5500511383,25.5500511383 -50,0,19.29,42.06,18.9633333333,41.29,18,43.79,15.9633333333,48.06,15.4266666667,51.03,5.6233333333,99.9,15.5,40.3816666667,19.39,49.45,15.1,46,5.4,769.9,91,4,22,4.1,23.7543458003,23.7543458003 -60,0,19.29,42,18.89,41.29,18,43.79,15.89,48,15.4511111111,51.05,5.56,99.9,15.5,40.3022222222,19.3961111111,49.61,15.1,46.1333333333,5.35,769.85,91.1666666667,4.1666666667,22.1666666667,4.0666666667,29.3949970277,29.3949970277 -80,0,19.26,41.93,18.79,41.29,17.9266666667,43.79,16,47.9666666667,15.478,51.072,5.5,99.9,15.5222222222,40.29,19.4877777778,50.0422222222,15.1,46.3266666667,5.3,769.8,91.3333333333,4.3333333333,22.3333333333,4.0333333333,28.626868967,28.626868967 -70,0,19.2,41.79,18.79,41.29,18,43.79,15.9266666667,47.8266666667,15.4247368421,51.0284210526,5.4666666667,99.9,15.5555555556,40.235,19.5,50.3477777778,15.1,46.4,5.25,769.75,91.5,4.5,22.5,4,32.7458870364,32.7458870364 -80,0,19.2,41.79,18.7,41.29,18,43.79,15.89,47.76,15.4327777778,51.035,5.4,99.9,15.5277777778,40.2,19.5,50.5338888889,15.1,46.53,5.2,769.7,91.6666666667,4.6666666667,22.6666666667,3.9666666667,43.2562777889,43.2562777889 -80,0,19.1333333333,41.79,18.7,41.29,18.0333333333,43.8266666667,15.89,47.7,15.4633333333,51.0844444444,5.4,99.9,15.5888888889,40.1816666667,19.5166666667,50.6816666667,15.1,46.59,5.15,769.65,91.8333333333,4.8333333333,22.8333333333,3.9333333333,19.8423187947,19.8423187947 -60,0,19.1,41.8266666667,18.6,41.29,18.1,43.8266666667,15.89,47.59,15.4205555556,51.0794444444,5.4666666667,99.9,15.5666666667,40.09,19.6,50.8,15.1,46.7,5.1,769.6,92,5,23,3.9,48.0058077839,48.0058077839 -40,0,19.0333333333,41.8266666667,18.5333333333,41.29,18.1,43.79,15.89,47.53,15.39,51.03,5.5,99.9,15.5611111111,40.1388888889,19.5944444444,51.0627777778,15.1,46.76,5.1333333333,769.5833333333,92,4.8333333333,23.1666666667,3.9333333333,19.0438627615,19.0438627615 -40,0,19,41.79,18.4633333333,41.3633333333,18.1666666667,43.73,15.89,47.5,15.4511111111,51.05,5.5,99.9,15.5444444444,40.09,19.5111111111,51.2483333333,15.1,46.79,5.1666666667,769.5666666667,92,4.6666666667,23.3333333333,3.9666666667,8.5044139996,8.5044139996 -20,0,18.9266666667,41.8633333333,18.39,41.29,18.2,43.7,15.89,47.4333333333,15.445,51.065,5.5,99.9,15.5944444444,40.09,19.4938888889,51.6361111111,15.16,46.8633333333,5.2,769.55,92,4.5,23.5,4,11.5802439279,11.5802439279 -20,0,18.89,41.9,18.3566666667,41.4,18.2,43.7,15.89,47.4,15.4388888889,51.04,5.5,99.9,15.5666666667,40.045,19.4266666667,51.6816666667,15.19,47,5.2333333333,769.5333333333,92,4.3333333333,23.6666666667,4.0333333333,47.4960104679,47.4960104679 -30,0,18.865,41.95,18.29,41.4,18.2,43.59,15.89,47.4,15.445,51.045,5.59,99.9,15.5888888889,40.07,19.3733333333,51.7,15.19,47,5.2666666667,769.5166666667,92,4.1666666667,23.8333333333,4.0666666667,4.1754078818,4.1754078818 -50,0,18.79,41.9,18.2,41.4,18.2,43.59,15.89,47.29,15.4511111111,51.05,5.59,99.9,15.6,40.01,19.28,51.715,15.19,47.09,5.3,769.5,92,4,24,4.1,9.6522007952,9.6522007952 -40,0,18.76,42,18.2,41.4666666667,18.2,43.6266666667,15.89,47.29,15.4388888889,51.04,5.59,99.9,15.6,40,19.25,51.75,15.19,47.09,5.3,769.4333333333,92,4,23.8333333333,4.1,3.7347647594,3.7347647594 -50,0,18.7,42.06,18.1,41.53,18.2,43.6266666667,15.89,47.2,15.4022222222,51.01,5.59,99.9,15.6,39.9722222222,19.215,51.735,15.19,47.1633333333,5.3,769.3666666667,92,4,23.6666666667,4.1,30.250800401,30.250800401 -40,0,18.7,42.09,18.1,41.59,18.2,43.7,15.89,47.1725,15.39,51,5.64,99.9,15.6,39.9833333333,19.2,51.7,15.19,47.2,5.3,769.3,92,4,23.5,4.1,10.7921448187,10.7921448187 -40,0,18.6333333333,42.03,18,41.5,18.2,43.6633333333,15.83,47.03,15.39,51,5.69,99.9,15.6,39.9722222222,19.15,51.7,15.19,47.26,5.3,769.2333333333,92,4,23.3333333333,4.1,29.399363033,29.399363033 -40,0,18.6,42.09,17.9633333333,41.59,18.26,43.6633333333,15.86,46.9666666667,15.4083333333,51.015,5.69,99.9,15.6,39.9666666667,19.1,51.7,15.2633333333,47.3633333333,5.3,769.1666666667,92,4,23.1666666667,4.1,11.4448801614,11.4448801614 -50,0,18.6,42.09,17.89,41.6633333333,18.29,43.6633333333,15.86,46.9666666667,15.3961111111,51.005,5.59,99.9,15.6,39.9,19.05,51.6,15.19,47.3633333333,5.3,769.1,92,4,23,4.1,19.5462589618,19.5462589618 -30,0,18.5,42.2,17.79,41.59,18.29,43.6633333333,15.83,46.9,15.39,51,5.59,99.9,15.6,39.9,18.9877777778,51.4611111111,15.3,47.5,5.3166666667,769.0166666667,92,4,23,4.1166666667,17.3952956684,17.3952956684 -30,0,18.5,42.26,17.79,41.6633333333,18.3233333333,43.59,15.89,46.8266666667,15.39,51,5.6233333333,99.9,15.6,39.8633333333,18.9083333333,51.4,15.3,47.56,5.3333333333,768.9333333333,92,4,23,4.1333333333,45.9189701243,45.9189701243 -20,0,18.4633333333,42.29,17.76,41.73,18.39,43.59,15.8,46.7,15.39,51,5.69,99.9,15.6,39.7961111111,18.8733333333,51.4611111111,15.3,47.59,5.35,768.85,92,4,23,4.15,5.6019561831,5.6019561831 -20,0,18.39,42.29,17.7,41.79,18.3233333333,43.5,15.8,46.7,15.39,51,5.7633333333,99.9,15.6,39.79,18.79,51.5755555556,15.3,47.59,5.3666666667,768.7666666667,92,4,23,4.1666666667,12.7488071797,12.7488071797 -40,0,18.39,42.3266666667,17.7,41.79,18.3233333333,43.5,15.8,46.6633333333,15.39,51,5.7633333333,99.9,15.6,39.79,18.79,51.7988888889,15.3,47.7,5.3833333333,768.6833333333,92,4,23,4.1833333333,9.3312034965,9.3312034965 -40,0,18.3233333333,42.4,17.6333333333,41.73,18.29,43.53,15.8,46.59,15.39,51,5.69,99.9,15.6,39.79,18.79,51.9916666667,15.3,47.7,5.4,768.6,92,4,23,4.2,37.2771761497,37.2771761497 -50,0,18.29,42.4,17.6,41.73,18.29,43.59,15.8,46.59,15.39,51,5.69,99.9,15.6,39.79,18.755,52.2083333333,15.3,47.73,5.4666666667,768.5333333333,91.8333333333,4,23.6666666667,4.25,46.6484391131,46.6484391131 -40,0,18.23,42.3266666667,17.6,41.79,18.3233333333,43.59,15.8,46.53,15.39,51,5.7633333333,99.9,15.6,39.79,18.7,52.5216666667,15.3,47.79,5.5333333333,768.4666666667,91.6666666667,4,24.3333333333,4.3,24.7355946922,24.7355946922 -50,0,18.26,42.4,17.5,41.8266666667,18.39,43.59,15.8,46.5,15.39,51,5.7633333333,99.9,15.6,39.8022222222,18.7,52.7366666667,15.3,47.8266666667,5.6,768.4,91.5,4,25,4.35,32.2496840614,32.2496840614 -50,0,18.2,42.4,17.5,41.9666666667,18.39,43.59,15.7266666667,46.5,15.39,51,5.9,99.9,15.6,39.8205555556,18.6888888889,52.8327777778,15.3,47.9,5.6666666667,768.3333333333,91.3333333333,4,25.6666666667,4.4,8.7901293417,8.7901293417 -40,0,18.2,42.4333333333,17.39,41.9,18.39,43.59,15.8,46.5,15.39,51,5.9,99.9,15.61,39.8255555556,18.6055555556,52.9638888889,15.33,47.9,5.7333333333,768.2666666667,91.1666666667,4,26.3333333333,4.45,30.1497323089,30.1497323089 -20,0,18.125,42.5675,17.39,41.9,18.4266666667,43.59,15.8,46.4333333333,15.39,51,6,99.9,15.63,39.9088888889,18.6,53.145,15.33,47.9666666667,5.8,768.2,91,4,27,4.5,44.3878832972,44.3878832972 -30,0,18.1,42.6633333333,17.39,41.9633333333,18.4266666667,43.53,15.69,46.5,15.39,51,6.06,99.9,15.655,39.9611111111,18.5944444444,53.275,15.39,48,5.85,768.1833333333,91,4,26.8333333333,4.5333333333,24.510470219,24.510470219 -20,0,18.1,42.7,17.39,42.09,18.4633333333,43.56,15.69,46.4333333333,15.39,51,6.09,99.9,15.67,39.9666666667,18.5833333333,53.3083333333,15.39,48,5.9,768.1666666667,91,4,26.6666666667,4.5666666667,0.9191786288,0.9191786288 -30,0,18.0333333333,42.6266666667,17.29,42.09,18.39,43.5,15.69,46.4,15.39,51,6.2266666667,99.9,15.67,39.9666666667,18.5333333333,53.3877777778,15.39,48.06,5.95,768.15,91,4,26.5,4.6,8.9695396135,8.9695396135 -40,0,18,42.7,17.29,42.1725,18.39,43.5,15.69,46.4,15.39,51,6.3,99.9,15.66,39.9666666667,18.55,53.4,15.39,48.09,6,768.1333333333,91,4,26.3333333333,4.6333333333,14.9695569184,14.9695569184 -50,0,18,42.7,17.29,42.26,18.3233333333,43.59,15.69,46.4,15.39,51,6.4,99.9,15.64,39.9444444444,18.5,53.3083333333,15.39,48.09,6.05,768.1166666667,91,4,26.1666666667,4.6666666667,13.8482030598,13.8482030598 -50,0,17.9266666667,42.73,17.2,42.23,18.39,43.59,15.69,46.4,15.39,51.02,6.4666666667,99.9,15.645,39.95,18.4755555556,53.2944444444,15.39,48.2,6.1,768.1,91,4,26,4.7,3.0804712209,3.0804712209 -40,0,17.9266666667,42.79,17.2,42.29,18.39,43.59,15.69,46.4,15.39,51.045,6.5,99.9,15.65,39.9555555556,18.4694444444,53.3511111111,15.39,48.2,6.2166666667,768.05,90.3333333333,4.3333333333,28.3333333333,4.7,17.7660673857,17.7660673857 -40,0,17.89,42.79,17.2,42.29,18.4633333333,43.59,15.69,46.4,15.39,51.07,6.5,99.9,15.645,39.95,18.4266666667,53.3488888889,15.39,48.29,6.3333333333,768,89.6666666667,4.6666666667,30.6666666667,4.7,28.8518877001,28.8518877001 -40,0,17.89,42.8633333333,17.2,42.3633333333,18.5,43.59,15.69,46.4,15.39,51.045,6.5,99.9,15.63,39.9333333333,18.39,53.29,15.39,48.29,6.45,767.95,89,5,33,4.7,26.751577924,26.751577924 -40,0,17.79,42.79,17.1,42.4,18.5,43.59,15.69,46.4,15.385,51.055,6.5,99.9,15.66,39.9666666667,18.39,53.3205555556,15.39,48.29,6.5666666667,767.9,88.3333333333,5.3333333333,35.3333333333,4.7,30.213641515,30.213641515 -30,0,17.79,42.79,17.1,42.4,18.5,43.6266666667,15.69,46.4,15.375,51.09,6.4,99.9,15.67,39.9777777778,18.39,53.4,15.39,48.29,6.6833333333,767.85,87.6666666667,5.6666666667,37.6666666667,4.7,24.3074489175,24.3074489175 -20,0,17.79,42.79,17.1,42.5,18.5,43.7,15.69,46.4,15.39,51.09,6.4,99.9,15.68,39.9888888889,18.39,53.4,15.4266666667,48.3266666667,6.8,767.8,87,6,40,4.7,6.5813284018,6.5813284018 -30,0,17.79,42.8633333333,17.1,42.5,18.4633333333,43.59,15.69,46.4,15.39,51.09,6.4,99.9,15.62,39.9222222222,18.3844444444,53.3938888889,15.5,48.4666666667,6.6666666667,767.7833333333,88,6.1666666667,43.6666666667,4.75,48.2285024365,48.2285024365 -30,0,17.76,42.8266666667,17.1,42.53,18.4633333333,43.59,15.66,46.3633333333,15.38,51.09,6.4,99.9,15.68,39.9888888889,18.3011111111,53.2922222222,15.5,48.7,6.5333333333,767.7666666667,89,6.3333333333,47.3333333333,4.8,37.123078818,37.123078818 -40,0,17.7,42.9,17.0333333333,42.53,18.39,43.59,15.66,46.3633333333,15.38,51.09,6.4,99.9,15.68,39.9888888889,18.29,53.205,15.5,48.6266666667,6.4,767.75,90,6.5,51,4.85,18.341969233,18.341969233 -40,0,17.7,42.9333333333,17,42.5,18.39,43.6633333333,15.69,46.4,15.37,51.09,6.3333333333,99.9,15.67,39.9777777778,18.29,53.1388888889,15.5,48.59,6.2666666667,767.7333333333,91,6.6666666667,54.6666666667,4.9,7.5412647449,7.5412647449 -50,0,17.7,43,17,42.56,18.39,43.7,15.69,46.4,15.39,51.09,6.2633333333,99.9,15.67,39.9777777778,18.28,53.15,15.5,48.59,6.1333333333,767.7166666667,92,6.8333333333,58.3333333333,4.95,11.3469836651,11.3469836651 -40,0,17.7,43,17,42.59,18.39,43.7,15.63,46.3266666667,15.38,51.09,6.1233333333,99.9,15.69,40,18.26,53.3533333333,15.4633333333,48.59,6,767.7,93,7,62,5,37.2558404459,37.2558404459 -40,0,17.625,43,16.9266666667,42.59,18.39,43.7,15.63,46.3266666667,15.36,51.1327777778,6,99.9,15.67,39.9877777778,18.255,53.4222222222,15.4633333333,48.6633333333,6.0166666667,767.6333333333,93.5,7,62.3333333333,5.0833333333,2.5296188891,2.5296188891 -40,0,17.6666666667,43.06,16.89,42.7,18.39,43.6266666667,15.6,46.29,15.385,51.1755555556,6,99.9,15.67,39.9977777778,18.22,53.4611111111,15.5,48.7,6.0333333333,767.5666666667,94,7,62.6666666667,5.1666666667,29.6996648423,29.6996648423 -50,0,17.6,43,16.89,42.7,18.39,43.7,15.6,46.29,15.36,51.1877777778,6,99.9,15.67,40.0027777778,18.21,53.4988888889,15.5,48.7,6.05,767.5,94.5,7,63,5.25,7.6625324204,7.6625324204 -40,0,17.6,43,16.89,42.73,18.4175,43.7,15.6,46.29,15.335,51.2,6,99.9,15.67,40.07,18.21,53.525,15.5,48.76,6.0666666667,767.4333333333,95,7,63.3333333333,5.3333333333,38.1390362512,38.1390362512 -220,10,17.6,43.1933333333,16.89,42.8175,18.5,43.7,15.6,46.29,15.345,51.1816666667,6,99.9,15.685,40.1083333333,18.2,53.525,15.5,48.8266666667,6.0833333333,767.3666666667,95.5,7,63.6666666667,5.4166666667,49.7640532441,49.7640532441 -360,0,17.6,43.4666666667,16.89,42.9,18.4633333333,43.6333333333,15.66,46.6233333333,15.335,51.0972222222,6.09,99.9,15.645,40.2633333333,18.1888888889,53.4194444444,15.5,48.9,6.1,767.3,96,7,64,5.5,8.6999055347,8.6999055347 -360,30,17.6,43.6266666667,16.79,42.9333333333,18.39,43.4333333333,16.1666666667,46.99,15.34,51.01,6.09,99.9,15.605,40.4094444444,18.1055555556,53.2166666667,15.5,48.8633333333,6.1833333333,767.3333333333,95.8333333333,6.6666666667,60,5.55,30.9565411299,30.9565411299 -590,20,17.6,43.76,16.8566666667,43.1333333333,18.29,43.29,16.76,46.53,15.39,51,6.09,99.9,15.6,40.6105555556,18.1,53.0172222222,15.5,48.79,6.2666666667,767.3666666667,95.6666666667,6.3333333333,56,5.6,26.8991586985,26.8991586985 -850,20,17.6,44.1666666667,16.9266666667,43.23,18.23,43.29,17.5233333333,45.7666666667,15.39,51,6.09,99.9,15.6,40.715,18.0944444444,52.8216666667,15.5,48.8633333333,6.35,767.4,95.5,6,52,5.65,40.912913112,40.912913112 -690,10,17.6666666667,44.6933333333,17,43.3633333333,18.3233333333,44.36,17.9966666667,45.36,15.39,51,6.19,99.9,15.6,40.845,18.0333333333,52.6366666667,15.5,48.73,6.4333333333,767.4333333333,95.3333333333,5.6666666667,48,5.7,16.0873453598,16.0873453598 -800,10,17.79,45.49,17.1333333333,43.5666666667,18.5966666667,45.6933333333,18.4933333333,44.9,15.37,51.045,6.19,99.9,15.6,40.9611111111,18,52.535,15.5,48.59,6.5166666667,767.4666666667,95.1666666667,5.3333333333,44,5.75,29.1163468384,29.1163468384 -710,20,17.8566666667,46.6966666667,17.2,43.7,18.96,46.7666666667,18.8266666667,44.5,15.39,51.1327777778,6.2266666667,99.9,15.6,41.045,18,52.4277777778,15.5,48.53,6.6,767.5,95,5,40,5.8,3.5466189729,3.5466189729 -680,20,18.0333333333,46.6633333333,17.3233333333,43.9333333333,19.2933333333,46.9,19.3,44.06,15.39,51.265,6.3,99.9,15.6,41.0961111111,18,52.3816666667,15.5,48.5,6.5833333333,767.55,94.8333333333,5.1666666667,40,5.7666666667,28.5322006559,28.5322006559 -290,10,18.1,46.53,17.4633333333,44.06,19.5333333333,46.46,19.6333333333,43.8,15.39,51.3983333333,6.3333333333,99.9,15.6,41.1877777778,17.9816666667,52.3327777778,15.5,48.4333333333,6.5666666667,767.6,94.6666666667,5.3333333333,40,5.7333333333,28.0338625307,28.0338625307 -190,20,18.2,46.0966666667,17.5333333333,44.2,19.7266666667,46.2,19.7266666667,43.2,15.39,51.525,6.4,99.9,15.6,41.235,17.9083333333,52.4266666667,15.5,48.26,6.55,767.65,94.5,5.5,40,5.7,21.7085469747,21.7085469747 -120,10,18.26,46.29,17.6,44.2,19.89,45.7333333333,19.46,43.3333333333,15.39,51.6083333333,6.4,99.9,15.6,41.29,17.9083333333,52.545,15.5,48.2,6.5333333333,767.7,94.3333333333,5.6666666667,40,5.6666666667,48.0974392616,48.0974392616 -140,20,18.3233333333,46.26,17.6333333333,44.23,19.7633333333,45.1333333333,19.1333333333,43.4333333333,15.39,51.725,6.4,99.9,15.6,41.3816666667,17.89,52.5961111111,15.5,48.09,6.5166666667,767.75,94.1666666667,5.8333333333,40,5.6333333333,35.5635842192,35.5635842192 -260,20,18.39,46.1266666667,17.7,44.3633333333,19.5666666667,44.56,18.9266666667,43.56,15.39,51.7961111111,6.5,99.9,15.6,41.4277777778,17.89,52.6633333333,15.5,48.03,6.5,767.8,94,6,40,5.6,12.9234766006,12.9234766006 -310,20,18.39,46,17.79,44.3633333333,19.4266666667,44.5,18.76,43.7666666667,15.39,51.8877777778,6.5225,99.9,15.6,41.535,17.89,52.7,15.5,48,6.5,767.85,94.6666666667,5.8333333333,43.6666666667,5.7,46.2838768843,46.2838768843 -230,40,18.4725,45.745,17.79,44.23,19.3566666667,44.3333333333,18.5666666667,43.9666666667,15.4205555556,51.9327777778,6.59,99.9,15.6,41.59,17.89,52.745,15.5,48.1933333333,6.5,767.9,95.3333333333,5.6666666667,47.3333333333,5.8,21.0405831574,21.0405831574 -180,30,18.5666666667,45.2666666667,17.9266666667,44.1633333333,19.29,44.1266666667,18.445,44.145,15.4511111111,52.0388888889,6.59,99.9,15.6,41.6572222222,17.89,52.7938888889,15.55,48.54,6.5,767.95,96,5.5,51,5.9,40.8150372794,40.8150372794 -320,40,18.6333333333,45,18,44.03,19.2,43.9666666667,18.39,44.53,15.4144444444,52.1033333333,6.59,99.9,15.6,41.745,17.9266666667,53.0773333333,15.69,49.4,6.5,768,96.6666666667,5.3333333333,54.6666666667,6,37.7332523814,37.7332523814 -620,40,18.76,45,18.1,44.1633333333,19.2,43.925,18.39,44.7233333333,15.4633333333,52.25,6.69,99.9,15.6,41.79,18,53.2611111111,15.69,49.4,6.5,768.05,97.3333333333,5.1666666667,58.3333333333,6.1,20.6071652239,20.6071652239 -620,30,18.89,44.8333333333,18.1975,43.9975,19.2,43.8,18.6633333333,44.8633333333,15.7144444444,57.7511111111,6.69,99.9,15.6,41.79,18,53.3572222222,15.69,49.3633333333,6.5,768.1,98,5,62,6.2,25.7208416006,25.7208416006 -530,40,18.9633333333,44.5666666667,18.3566666667,43.8266666667,19.1333333333,43.59,18.8566666667,44.79,17.9411111111,84.9561111111,6.8,99.9,15.6,41.8572222222,17.9755555556,53.3305555556,15.69,49.29,6.5166666667,768.1,98.1666666667,5,59.6666666667,6.2333333333,27.1142359241,27.1142359241 -180,30,19.1,44.7233333333,18.5,43.76,19.26,43.6633333333,19.1333333333,44.8633333333,17.7077777778,84.775,6.8666666667,99.9,15.6,41.9,18,54.0672222222,15.69,49.1633333333,6.5333333333,768.1,98.3333333333,5,57.3333333333,6.2666666667,48.7012152094,48.7012152094 -180,40,19.1666666667,44.6633333333,18.5,43.7,19.29,44.5266666667,19.2,44.53,17.1433333333,87.3861111111,6.9333333333,99.9,15.625,41.9661111111,18.1,54.2994444444,15.69,49.03,6.55,768.1,98.5,5,55,6.3,3.6818977445,3.6818977445 -120,30,19.2,44.8266666667,18.5333333333,43.9333333333,19.29,45.3333333333,19.0666666667,44.6266666667,16.8322222222,88.3433333333,7.06,99.9,15.63,42.03,18.245,54.12,15.69,48.9,6.5666666667,768.1,98.6666666667,5,52.6666666667,6.3333333333,38.475190266,38.475190266 -140,30,19.26,44.9666666667,18.6,44,19.29,45.59,19,44.76,16.65,88.23,7.09,99.9,15.66,42.1472222222,18.3733333333,53.9105555556,15.69,48.8266666667,6.5833333333,768.1,98.8333333333,5,50.3333333333,6.3666666667,43.6277454603,43.6277454603 -100,30,19.3233333333,44.8633333333,18.73,44,19.29,45.4633333333,18.9266666667,44.9633333333,16.5105555556,87.6611111111,7.1566666667,99.9,15.66,42.215,18.4327777778,53.8166666667,15.69,48.7,6.6,768.1,99,5,48,6.4,49.4932792266,49.4932792266 -120,30,19.39,44.79,18.79,43.9333333333,19.26,45.1933333333,18.9266666667,45.1633333333,16.3744444444,86.8288888889,7.2266666667,99.9,15.625,42.23,18.5044444444,53.6816666667,15.69,48.6266666667,6.6666666667,768.05,99,4.8333333333,45.6666666667,6.4666666667,48.2573822024,48.2573822024 -100,40,19.5333333333,44.7233333333,18.9266666667,43.8333333333,19.2,44.9333333333,18.89,45.2666666667,16.29,85.4816666667,7.3666666667,99.9,15.635,42.3227777778,18.6277777778,53.51,15.69,48.56,6.7333333333,768,99,4.6666666667,43.3333333333,6.5333333333,31.8210659316,31.8210659316 -130,30,19.6666666667,44.53,19.0666666667,43.7,19.1666666667,44.79,18.89,45.4666666667,16.29,83.6672222222,7.4333333333,99.9,15.65,42.4377777778,18.705,53.3738888889,15.69,48.5,6.8,767.95,99,4.5,41,6.6,3.2694646972,3.2694646972 -270,30,19.73,44.26,19.1333333333,43.43,19.1,44.79,18.89,45.53,16.29,81.7366666667,7.56,99.9,15.65,42.4816666667,18.78,53.29,15.66,48.43,6.8666666667,767.9,99,4.3333333333,38.6666666667,6.6666666667,6.4207377494,6.4207377494 -520,30,19.8566666667,44.26,19.26,43.3633333333,19.0666666667,44.76,18.89,45.59,16.255,80.0816666667,7.7266666667,99.9,15.635,42.5522222222,18.8066666667,53.2088888889,15.66,48.3633333333,6.9333333333,767.85,99,4.1666666667,36.3333333333,6.7333333333,24.6392390225,24.6392390225 -580,20,20,45.5666666667,19.3233333333,43.26,19,44.7,19,45.73,16.21,78.3505555556,7.875,99.9,15.645,42.6722222222,18.9205555556,52.9988888889,15.6,48.2,7,767.8,99,4,34,6.8,33.1622430123,33.1622430123 -520,20,20.0666666667,48.9666666667,19.4633333333,43.46,19.0333333333,45.2333333333,19,45.99,16.1833333333,76.3,7.9,99.9,15.68,42.8227777778,18.9327777778,52.5977777778,15.6,48.2,7.0666666667,767.8,99,4,33.8333333333,6.8666666667,9.4689356862,9.4689356862 -350,10,20.1333333333,47.9933333333,19.5333333333,43.9333333333,19.2266666667,46.5,18.89,46.2,16.1777777778,74.5833333333,8,99.9,15.69,42.9277777778,18.9327777778,52.56,15.63,48.23,7.1333333333,767.8,99,4,33.6666666667,6.9333333333,8.8799196645,8.8799196645 -340,10,20.26,47.4,19.6,44,19.6966666667,48.3933333333,18.8233333333,46.1266666667,16.1,73.2394444444,8.0666666667,99.9,15.69,43.055,18.9877777778,52.4838888889,15.645,48.1675,7.2,767.8,99,4,33.5,7,5.7780162781,5.7780162781 -330,10,20.34,46.395,19.73,44.09,20.0966666667,49.3933333333,18.745,46,16.1,72.1938888889,8.19,99.9,15.69,43.145,19,52.4044444444,15.69,48.2,7.2666666667,767.8,99,4,33.3333333333,7.0666666667,7.8476200113,7.8476200113 -290,10,20.4266666667,45.93,19.79,44.09,20.495,49.8,18.6,46.29,16.1,71.35,8.19,99.9,15.69,43.235,19.0611111111,52.4666666667,15.63,48.1266666667,7.3333333333,767.8,99,4,33.1666666667,7.1333333333,42.8705424769,42.8705424769 -300,20,20.5,45.73,19.9266666667,44.0266666667,20.86,50.1633333333,18.6,46.3633333333,16.1,70.4966666667,8.3,99.9,15.69,43.345,19.1,52.4416666667,15.63,48.1266666667,7.4,767.8,99,4,33,7.2,21.2430265849,21.2430265849 -280,30,20.6333333333,45.4333333333,20.1,43.8175,21.1333333333,50.09,18.6,46.8,16.1,69.6266666667,8.3,99.9,15.69,43.4983333333,19.1833333333,52.255,15.69,48.4,7.4833333333,767.75,98.6666666667,4,37.6666666667,7.25,43.917083554,43.917083554 -220,40,20.76,45.4333333333,20.3266666667,43.93,21.29,49.93,18.5333333333,47,16.1161111111,68.8183333333,8.3,99.9,15.7205555556,43.8755555556,19.245,52.35,15.69,48.4,7.5666666667,767.7,98.3333333333,4,42.3333333333,7.3,41.2413281971,41.2413281971 -90,30,20.9266666667,45.2233333333,20.46,43.8266666667,21.3566666667,49.6566666667,18.4633333333,46.7233333333,16.6161111111,64.3755555556,8.3,99.9,15.8,44.25,19.3066666667,52.555,15.8,48.73,7.65,767.65,98,4,47,7.35,48.9409808419,48.9409808419 -90,20,21.0666666667,45.1633333333,20.6,43.9,21.3566666667,48.9666666667,18.39,46.59,17.2566666667,59.9427777778,8.39,99.9,15.8,44.25,19.39,52.59,15.8,48.79,7.7333333333,767.6,97.6666666667,4,51.6666666667,7.4,31.7271507927,31.7271507927 -100,20,21.2,45.1633333333,20.7,44.09,21.23,48.0266666667,18.29,46.59,17.6222222222,57.9644444444,8.39,99.9,15.8,44.27,19.4083333333,52.6966666667,15.7633333333,48.79,7.8166666667,767.55,97.3333333333,4,56.3333333333,7.45,34.5761638018,34.5761638018 -90,20,21.26,45.09,20.7,44.03,21.0666666667,47.2666666667,18.29,46.59,17.8322222222,56.8833333333,8.39,99.9,15.815,44.3083333333,19.5,52.79,15.69,48.79,7.9,767.5,97,4,61,7.5,39.6091669681,39.6091669681 -80,10,21.3233333333,45.2233333333,20.73,43.9666666667,21,46.86,18.2,46.53,18.0277777778,56.0827777778,8.39,99.9,15.825,44.3205555556,19.5166666667,52.7488888889,15.7633333333,48.79,7.8833333333,767.4833333333,97,4.1666666667,61,7.4833333333,1.7085322761,1.7085322761 -80,10,21.39,45.03,20.79,43.8266666667,21,46.6633333333,18.2,46.8633333333,18.1055555556,55.3761111111,8.5,99.9,15.8,44.3022222222,19.6,52.5772222222,15.69,48.79,7.8666666667,767.4666666667,97,4.3333333333,61,7.4666666667,40.9996840521,40.9996840521 -80,0,21.39,45.0666666667,20.79,43.9,21,46.53,18.2,47.03,18.1888888889,54.8733333333,8.5,99.9,15.8,44.3205555556,19.6166666667,52.4388888889,15.69,48.79,7.85,767.45,97,4.5,61,7.45,34.381808131,34.381808131 -90,10,21.39,45.1266666667,20.79,43.9666666667,20.9633333333,46.3633333333,18.1333333333,47.09,18.215,54.5777777778,8.39,99.9,15.865,44.4722222222,19.7,52.2633333333,15.69,48.73,7.8333333333,767.4333333333,97,4.6666666667,61,7.4333333333,21.5888445964,21.5888445964 -90,10,21.5,45.1333333333,20.79,43.8633333333,20.89,46.23,18.1,47.09,18.27,54.2561111111,8.4633333333,99.9,15.89,44.5,19.735,52.0755555556,15.69,48.7,7.8166666667,767.4166666667,97,4.8333333333,61,7.4166666667,12.1937893447,12.1937893447 -90,0,21.5,45.06,20.79,43.93,20.89,46.06,18.0333333333,47.03,18.2955555556,53.8838888889,8.39,99.9,15.89,44.5,19.79,51.9111111111,15.69,48.7,7.8,767.4,97,5,61,7.4,0.4073851509,0.4073851509 -80,10,21.4266666667,44.9633333333,20.8233333333,44.1266666667,20.8233333333,45.9333333333,17.9633333333,46.9,18.3788888889,53.63,8.39,99.9,15.89,44.5,19.7966666667,51.826,15.69,48.6633333333,7.8166666667,767.4166666667,96.8333333333,5,61.3333333333,7.3833333333,21.0553071694,21.0553071694 -70,0,21.4266666667,45.03,20.89,44.3333333333,20.7,45.79,17.89,46.9,18.4572222222,53.455,8.33,99.9,15.89,44.51,19.8788888889,51.9044444444,15.69,48.59,7.8333333333,767.4333333333,96.6666666667,5,61.6666666667,7.3666666667,39.3478453974,39.3478453974 -50,10,21.5,45.03,20.89,44.3266666667,20.7,45.79,17.89,46.9,18.5277777778,53.3016666667,8.3,99.9,15.89,44.545,19.89,51.8033333333,15.69,48.59,7.85,767.45,96.5,5,62,7.35,29.7796061379,29.7796061379 -60,0,21.5,45.03,20.89,44.4,20.6,45.7,17.865,46.8725,18.6,53.0166666667,8.2266666667,99.9,15.89,44.59,19.89,51.71,15.69,48.59,7.8666666667,767.4666666667,96.3333333333,5,62.3333333333,7.3333333333,49.2481529363,49.2481529363 -40,0,21.6,45.03,21,44.4633333333,20.5333333333,45.7,17.79,46.73,18.65,52.8694444444,8.19,99.9,15.89,44.555,19.9022222222,51.6938888889,15.69,48.59,7.8833333333,767.4833333333,96.1666666667,5,62.6666666667,7.3166666667,26.4021727955,26.4021727955 -60,10,21.6,45.1175,21,44.53,20.445,45.79,17.79,46.7,18.705,52.755,8.19,99.9,15.89,44.5,19.9022222222,51.5572222222,15.69,48.5,7.9,767.5,96,5,63,7.3,26.1639208882,26.1639208882 -60,10,21.6,45.1266666667,21,44.3633333333,20.5,46.23,17.73,46.7,18.78,52.63,8.16,99.9,15.89,44.515,19.8288888889,51.3566666667,15.69,48.5,7.9166666667,767.5,96,4.8333333333,63.1666666667,7.3166666667,39.3222402432,39.3222402432 -140,20,21.6666666667,45.3333333333,21,44.1566666667,20.5666666667,46.3633333333,17.7,46.7,18.8733333333,52.1933333333,8.1,99.9,15.89,44.59,19.725,51.24,15.69,48.5,7.9333333333,767.5,96,4.6666666667,63.3333333333,7.3333333333,4.3861204642,4.3861204642 -80,10,21.6,44.5266666667,20.89,43.29,20.6,46.1333333333,17.7,46.7,18.89,51.3716666667,8.0666666667,99.9,15.8961111111,44.57,19.6944444444,51.0305555556,15.69,48.5,7.95,767.5,96,4.5,63.5,7.35,12.8055990324,12.8055990324 -70,10,21.6,44.1333333333,20.89,43.26,20.6,45.86,17.7,46.7,18.9627777778,50.8061111111,8,99.9,15.9633333333,44.56,19.6111111111,50.7572222222,15.7266666667,48.6266666667,7.9666666667,767.5,96,4.3333333333,63.6666666667,7.3666666667,17.8302060114,17.8302060114 -60,10,21.6,43.86,20.9633333333,43.2,20.7,45.6633333333,17.7,46.7,19.0166666667,50.4294444444,8.0666666667,99.9,16,44.525,19.5388888889,50.5733333333,15.8,48.76,7.9833333333,767.5,96,4.1666666667,63.8333333333,7.3833333333,12.4527729,12.4527729 -70,10,21.6333333333,43.7,20.9266666667,42.9,20.7,45.4633333333,17.6666666667,46.6633333333,19.0111111111,50.1183333333,8,99.9,16,44.5,19.4694444444,50.4722222222,15.89,49.0666666667,8,767.5,96,4,64,7.4,8.7509243865,8.7509243865 -60,0,21.7,43.7,21,42.9,20.7,45.26,17.6,46.59,19.0611111111,49.9638888889,8,99.9,16,44.5,19.39,50.4,15.89,49.1266666667,7.9833333333,767.5,96,3.8333333333,63.8333333333,7.3833333333,28.6461040378,28.6461040378 -70,0,21.7,43.56,21,42.9,20.7,45.1266666667,17.6,46.59,19.1,49.7288888889,8,99.9,16,44.5,19.39,50.4,15.8,48.9666666667,7.9666666667,767.5,96,3.6666666667,63.6666666667,7.3666666667,24.1696574143,24.1696574143 -70,10,21.7,43.4333333333,20.9266666667,42.8266666667,20.76,45.06,17.6,46.59,19.1,49.5283333333,7.9,99.9,16,44.5,19.3066666667,50.4611111111,15.8,48.9,7.95,767.5,96,3.5,63.5,7.35,40.4974484583,40.4974484583 -70,0,21.7,43.29,21,42.76,20.76,44.9333333333,17.6,46.5,19.1,49.3877777778,7.9,99.9,16,44.5,19.29,50.4777777778,15.8,48.79,7.9333333333,767.5,96,3.3333333333,63.3333333333,7.3333333333,37.5257616979,37.5257616979 -60,10,21.7,43.23,20.9266666667,42.7,20.79,44.8633333333,17.6,46.56,19.1,49.1794444444,7.9,99.9,16,44.4777777778,19.29,50.505,15.8,48.73,7.9166666667,767.5,96,3.1666666667,63.1666666667,7.3166666667,17.3721898813,17.3721898813 -40,10,21.7,43.2,20.89,42.6633333333,20.79,44.79,17.5,46.59,19.1277777778,49.015,7.9,99.9,16,44.5,19.28,50.57,15.8,48.7,7.9,767.5,96,3,63,7.3,40.3437242145,40.3437242145 -40,10,21.7,43.26,20.89,42.59,20.76,44.6633333333,17.5,46.59,19.1333333333,48.95,7.9,99.9,16,44.5,19.1994444444,50.3544444444,15.8,48.6266666667,7.9166666667,767.55,95.8333333333,3,63,7.3,12.5882114051,12.5882114051 -60,30,21.73,43.1633333333,20.9266666667,42.5,20.76,44.59,17.5,46.56,19.2038888889,48.7472222222,7.9,99.9,16,44.5,19.1111111111,50.29,15.8,48.59,7.9333333333,767.6,95.6666666667,3,63,7.3,29.6481776983,29.6481776983 -350,20,21.79,43.03,21,42.4333333333,20.7,44.56,17.5,46.6333333333,19.3177777778,48.5294444444,7.9,99.9,16.05,44.545,19.0388888889,50.1677777778,15.8,48.53,7.95,767.65,95.5,3,63,7.3,7.8107866691,7.8107866691 -410,30,21.89,42.76,21.1,42.4666666667,20.7,44.5,17.6966666667,47.2333333333,19.4327777778,48.21,8,99.9,16.05,44.545,18.9877777778,50.09,15.8,48.5,7.9666666667,767.7,95.3333333333,3,63,7.3,8.7579825777,8.7579825777 -80,30,21.9633333333,42.5666666667,21.1666666667,42.3266666667,20.6666666667,44.4666666667,18.4975,47.5475,19.55,50.6422222222,8,99.9,16.0944444444,44.585,18.8961111111,50.035,15.8,48.5,7.9833333333,767.75,95.1666666667,3,63,7.3,11.3188650459,11.3188650459 -100,30,22,42.3633333333,21.23,42.0266666667,20.6,44.4,19.2266666667,46.83,19.8688888889,68.2127777778,8,99.9,16.1,44.6083333333,18.89,50,15.8,48.6333333333,8,767.8,95,3,63,7.3,39.5981626003,39.5981626003 -80,10,22.075,42.195,21.29,41.7666666667,20.65,44.3,19.29,46.9,19.755,70.4594444444,8,99.9,16.1,44.5961111111,18.8288888889,49.9022222222,15.9266666667,49.0666666667,8.0166666667,767.7333333333,95,3.1666666667,62.6666666667,7.3166666667,19.4188239868,19.4188239868 -270,10,22.1,42.03,21.39,41.56,20.6666666667,44.2233333333,19.29,46.9666666667,19.8466666667,70.6666666667,8.0333333333,99.9,16.1,44.59,18.79,49.8388888889,16,49.26,8.0333333333,767.6666666667,95,3.3333333333,62.3333333333,7.3333333333,45.5611016252,45.5611016252 -280,0,22.1,41.9,21.39,41.4333333333,20.6,44.09,19.1666666667,47,20.4238888889,84.2088888889,8.1,99.9,16.1,44.6083333333,18.79,49.8572222222,16.0333333333,49.36,8.05,767.6,95,3.5,62,7.35,6.0923525598,6.0923525598 -90,0,22.1,41.9,21.39,41.29,20.7,44.09,19.1,47,20.3155555556,83.61,8.1,99.9,16.1,44.7,18.78,49.8205555556,16.1,49.5,8.0666666667,767.5333333333,95,3.6666666667,61.6666666667,7.3666666667,49.3917578482,49.3917578482 -90,0,22.1333333333,41.9,21.5,41.4,20.7,44.09,18.89,46.79,20.0194444444,81.5461111111,8.1,99.9,16.1277777778,44.7,18.725,49.9,16.1,49.5,8.0833333333,767.4666666667,95,3.8333333333,61.3333333333,7.3833333333,37.7643960295,37.7643960295 -90,0,22.2,41.9,21.5,41.4,20.7,44.09,18.8233333333,46.79,19.7916666667,79.7122222222,8.19,99.9,16.1388888889,44.71,18.7,49.9,16.1,49.4333333333,8.1,767.4,95,4,61,7.4,15.5387916951,15.5387916951 -90,0,22.2,41.79,21.5666666667,41.23,20.7,44.09,18.76,46.76,19.6,78.1538888889,8.19,99.9,16.1833333333,44.785,18.7,49.9,16.1,49.3633333333,8.1,767.4166666667,95,4,61.1666666667,7.3833333333,0.9932679008,0.9932679008 -80,0,22.2,41.79,21.5,41.29,20.7,44.09,18.6333333333,46.6266666667,19.4572222222,76.3394444444,8.2266666667,99.9,16.2,44.79,18.6277777778,49.8755555556,16.1,49.29,8.1,767.4333333333,95,4,61.3333333333,7.3666666667,34.1141530662,34.1141530662 -70,0,22.1666666667,41.8266666667,21.5,41.2,20.7,44.09,18.5666666667,46.59,19.34,74.0572222222,8.3,99.9,16.2,44.7961111111,18.6,49.8755555556,16.1,49.1633333333,8.1,767.45,95,4,61.5,7.35,21.9368033344,21.9368033344 -70,10,22.1,41.9,21.5,41.26,20.6,44.03,18.5,46.59,19.235,71.4377777778,8.19,99.9,16.2,44.8877777778,18.6,49.9,16.1,49.09,8.1,767.4666666667,95,4,61.6666666667,7.3333333333,44.1850352683,44.1850352683 -90,0,22.0666666667,41.8633333333,21.5,41.2,20.6,44.09,18.39,46.5,19.15,69.0416666667,8.19,99.9,16.2,44.9,18.5944444444,49.9055555556,16.1,49.06,8.1,767.4833333333,95,4,61.8333333333,7.3166666667,3.712189279,3.712189279 -100,10,22,41.79,21.4266666667,41.2,20.6,44.2,18.39,46.5,19.0388888889,66.9505555556,8.19,99.9,16.2,44.9,18.5555555556,49.9166666667,16.1,49,8.1,767.5,95,4,62,7.3,22.6834777975,22.6834777975 -90,20,22,41.79,21.3566666667,41.2,20.5333333333,44.2,18.29,46.5,18.945,65.2838888889,8.3,99.9,16.2,44.9,18.5,49.9388888889,16.1,49,8.0666666667,767.4333333333,95,3.8333333333,62,7.2833333333,44.4018135313,44.4018135313 -280,0,21.9266666667,41.79,21.29,41.0666666667,20.5,44.2,18.29,46.7666666667,18.8844444444,63.9466666667,8.3,99.9,16.2,44.8694444444,18.5,50,16.1666666667,49.06,8.0333333333,767.3666666667,95,3.6666666667,62,7.2666666667,35.0079620839,35.0079620839 -390,10,21.89,41.73,21.2,40.9333333333,20.5,44.26,18.4266666667,47.2,18.7911111111,62.6544444444,8.3,99.9,16.2,44.726,18.5,50,16.2,49.23,8,767.3,95,3.5,62,7.25,15.2307805605,15.2307805605 -150,0,21.8233333333,41.73,21.1333333333,41.06,20.39,44.23,18.4266666667,47.1266666667,18.745,61.7977777778,8.3,99.9,16.2,44.59,18.5,50,16.2,49.29,7.9666666667,767.2333333333,95,3.3333333333,62,7.2333333333,29.2445401195,29.2445401195 -50,0,21.76,41.8266666667,21.0666666667,41.2,20.39,44.23,18.39,47.1266666667,18.7,60.9433333333,8.3,99.9,16.2,44.4888888889,18.4755555556,49.9777777778,16.29,49.45,7.9333333333,767.1666666667,95,3.1666666667,62,7.2166666667,43.522688502,43.522688502 -50,0,21.7,42.1,21,41.2,20.39,44.29,18.315,47.2,18.6166666667,60.1027777778,8.36,99.9,16.2,44.4222222222,18.4205555556,49.9444444444,16.29,49.5,7.9,767.1,95,3,62,7.2,22.326177964,22.326177964 -40,0,21.6666666667,42.26,20.89,41.3266666667,20.39,44.23,18.29,47.2,18.5611111111,59.5822222222,8.39,99.9,16.2,44.3144444444,18.4388888889,49.9755555556,16.29,49.56,7.9166666667,767.0833333333,95,2.8333333333,62,7.2,16.8686519843,16.8686519843 -50,0,21.6666666667,42.26,20.8233333333,41.3266666667,20.34,44.245,18.2,47.09,18.5333333333,59.1655555556,8.39,99.9,16.2,44.29,18.3788888889,49.9555555556,16.29,49.59,7.9333333333,767.0666666667,95,2.6666666667,62,7.2,28.3454304328,28.3454304328 -30,0,21.55,42.29,20.8566666667,41.4666666667,20.29,44.2,18.2,47.09,18.5,58.8411111111,8.39,99.9,16.2,44.28,18.3788888889,49.9888888889,16.29,49.59,7.95,767.05,95,2.5,62,7.2,20.7882490824,20.7882490824 -20,0,21.5,42.3266666667,20.73,41.4666666667,20.29,44.2,18.1666666667,47.09,18.4572222222,58.5061111111,8.39,99.9,16.2,44.2,18.3677777778,50,16.29,49.7,7.9666666667,767.0333333333,95,2.3333333333,62,7.2,41.6330332402,41.6330332402 -40,0,21.5,42.4,20.7,41.59,20.29,44.2,18.1,47.09,18.39,58.2266666667,8.39,99.9,16.2135,44.1915,18.3677777778,50,16.29,49.7,7.9833333333,767.0166666667,95,2.1666666667,62,7.2,7.6853794046,7.6853794046 -50,0,21.4633333333,42.3633333333,20.625,41.6175,20.29,44.2,18.1,47.09,18.3844444444,58.0105555556,8.39,99.9,16.25,44.1683333333,18.3344444444,50.015,16.29,49.7,8,767,95,2,62,7.2,32.932452159,32.932452159 -50,0,21.39,42.29,20.5333333333,41.7,20.2,44.2,18.0333333333,47.03,18.3011111111,57.83,8.39,99.9,16.25,44.1027777778,18.3177777778,50.06,16.29,49.76,8.0166666667,766.9666666667,94.8333333333,2,62,7.2,0.0513409497,0.0513409497 -50,0,21.3566666667,42.29,20.5,41.7,20.26,44.26,18,47,18.29,57.6866666667,8.4633333333,99.9,16.28,44.0861111111,18.29,50.07,16.29,49.79,8.0333333333,766.9333333333,94.6666666667,2,62,7.2,16.0225464264,16.0225464264 -40,0,21.29,42.3633333333,20.5,41.76,20.29,44.4,18,47,18.28,57.5188888889,8.4633333333,99.9,16.27,44.0883333333,18.29,50.09,16.29,49.79,8.05,766.9,94.5,2,62,7.2,47.5066440296,47.5066440296 -50,0,21.29,42.4,20.39,41.79,20.29,44.4,18,47,18.205,57.2988888889,8.39,99.9,16.28,44.035,18.27,50.07,16.29,49.79,8.0666666667,766.8666666667,94.3333333333,2,62,7.2,0.6276254775,0.6276254775 -50,0,21.23,42.4,20.3233333333,41.8633333333,20.39,44.53,18,47,18.2,57.145,8.39,99.9,16.28,44,18.29,50.09,16.29,49.8633333333,8.0833333333,766.8333333333,94.1666666667,2,62,7.2,3.9545382722,3.9545382722 -50,0,21.2,42.4,20.29,42,20.39,44.53,17.9266666667,47.03,18.2,57.035,8.39,99.9,16.29,44,18.29,50.09,16.29,50.03,8.1,766.8,94,2,62,7.2,10.664418526,10.664418526 -50,0,21.2,42.4,20.23,41.9333333333,20.4266666667,44.6266666667,17.9266666667,47.09,18.1277777778,56.9611111111,8.39,99.9,16.29,43.9888888889,18.275,50.075,16.3566666667,50.03,8.1,766.7166666667,94,2,62.1666666667,7.2,49.7421629494,49.7421629494 -60,0,21.1666666667,42.4,20.2,42.03,20.5,44.7,17.89,47.03,18.1,56.905,8.39,99.9,16.29,43.9277777778,18.2,50,16.39,50.09,8.1,766.6333333333,94,2,62.3333333333,7.2,24.6019793791,24.6019793791 -50,0,21.1,42.4666666667,20.2,42.09,20.5,44.7,17.89,47.09,18.1,56.8266666667,8.39,99.9,16.29,43.9,18.2,50,16.39,50.09,8.1,766.55,94,2,62.5,7.2,31.3817059039,31.3817059039 -40,0,21.0666666667,42.4666666667,20.1,42.2,20.5,44.7,17.89,47.09,18.0388888889,56.735,8.39,99.9,16.29,43.9,18.2,50,16.39,50.09,8.1,766.4666666667,94,2,62.6666666667,7.2,0.2980667516,0.2980667516 -40,0,21,42.4,20.1,42.26,20.5666666667,44.73,17.89,47.09,18,56.6205555556,8.39,99.9,16.29,43.9,18.2,50,16.39,50.1633333333,8.1,766.3833333333,94,2,62.8333333333,7.2,14.2926999368,14.2926999368 -20,0,21,42.4,20.0666666667,42.29,20.5666666667,44.79,17.79,47,18,56.585,8.39,99.9,16.29,43.9,18.2,50,16.39,50.2,8.1,766.3,94,2,63,7.2,49.3240208598,49.3240208598 -30,0,21,42.4,20,42.29,20.5,44.79,17.79,47,18,56.51,8.39,99.9,16.29,43.9,18.1777777778,50,16.39,50.2,8.1166666667,766.25,94,2.3333333333,63,7.2166666667,37.8846162464,37.8846162464 -40,0,21,42.5,20,42.4,20.5,44.79,17.79,47,17.9694444444,56.4833333333,8.4266666667,99.9,16.29,43.9,18.1277777778,50,16.39,50.26,8.1333333333,766.2,94,2.6666666667,63,7.2333333333,3.4137495444,3.4137495444 -50,0,20.9266666667,42.5,19.9266666667,42.4666666667,20.5,44.845,17.79,47,17.9266666667,56.4,8.4266666667,99.9,16.27,43.845,18.1444444444,50.005,16.39,50.3266666667,8.15,766.15,94,3,63,7.25,40.5381989316,40.5381989316 -50,0,20.8566666667,42.5,19.89,42.5,20.5,44.9333333333,17.79,47,17.89,56.4,8.39,99.9,16.29,43.79,18.1,50.015,16.39,50.4,8.1666666667,766.1,94,3.3333333333,63,7.2666666667,6.1435703537,6.1435703537 -60,0,20.79,42.5,19.89,42.56,20.5,45,17.76,47.09,17.89,56.3816666667,8.4633333333,99.9,16.29,43.8083333333,18.1,50.055,16.4633333333,50.56,8.1833333333,766.05,94,3.6666666667,63,7.2833333333,20.4959180322,20.4959180322 -40,0,20.79,42.5,19.79,42.53,20.5,44.9,17.7,47.09,17.89,56.3022222222,8.39,99.9,16.29,43.7961111111,18.1,50.08,16.39,50.56,8.2,766,94,4,63,7.3,46.3771822629,46.3771822629 -50,0,20.76,42.53,19.7225,42.59,20.5,44.9666666667,17.7,47,17.8622222222,56.265,8.39,99.9,16.29,43.79,18.1,50.04,16.39,50.59,8.2333333333,765.9333333333,94,3.8333333333,63.1666666667,7.3333333333,27.7104119654,27.7104119654 -50,0,20.7,42.59,19.7,42.6633333333,20.5,45,17.7,47.06,17.79,56.1816666667,8.39,99.9,16.29,43.79,18.1,50.07,16.39,50.6633333333,8.2666666667,765.8666666667,94,3.6666666667,63.3333333333,7.3666666667,0.7133307168,0.7133307168 -40,0,20.7,42.59,19.7,42.73,20.5,44.9333333333,17.7,47.09,17.79,56.1144444444,8.39,99.9,16.29,43.79,18.0666666667,50.06,16.4633333333,50.79,8.3,765.8,94,3.5,63.5,7.4,48.3682640595,48.3682640595 -50,0,20.7,42.6633333333,19.6333333333,42.73,20.5333333333,44.9666666667,17.7,47.09,17.79,56.09,8.39,99.9,16.29,43.79,18.0555555556,50.05,16.4633333333,50.8633333333,8.3333333333,765.7333333333,94,3.3333333333,63.6666666667,7.4333333333,38.5032766266,38.5032766266 -60,0,20.6666666667,42.6633333333,19.6666666667,42.76,20.5333333333,44.9666666667,17.7,47.09,17.77,56.09,8.3,99.9,16.29,43.79,18.05,50.045,16.4266666667,50.8266666667,8.3666666667,765.6666666667,94,3.1666666667,63.8333333333,7.4666666667,3.9976206608,3.9976206608 -50,0,20.6,42.59,19.6,42.76,20.5333333333,44.9333333333,17.7,47.09,17.785,56.035,8.2266666667,99.9,16.29,43.79,18,50,16.5,50.9,8.4,765.6,94,3,64,7.5,18.2709924178,18.2709924178 -60,0,20.6,42.7,19.6,42.8266666667,20.6,45,17.7,47.1266666667,17.71,56.02,7.9666666667,99.9,16.29,43.79,18,50.01,16.5,51,8.25,765.5333333333,94.5,3,63.5,7.4166666667,24.0213272627,24.0213272627 -30,0,20.6,42.7,19.5333333333,42.9,20.6,45,17.6333333333,47.1266666667,17.7,56,7.76,99.9,16.29,43.785,18,50.01,16.5,51,8.1,765.4666666667,95,3,63,7.3333333333,33.7880345993,33.7880345993 -30,0,20.5666666667,42.7,19.5,42.9333333333,20.6,45,17.6333333333,47.0666666667,17.7,56,7.56,99.9,16.29,43.765,18,50,16.5,51.03,7.95,765.4,95.5,3,62.5,7.25,39.3223625375,39.3223625375 -20,0,20.5,42.7,19.5,43,20.6,44.9,17.7,47.2,17.7,55.9388888889,7.3666666667,99.9,16.29,43.705,18,49.9888888889,16.5,51.09,7.8,765.3333333333,96,3,62,7.1666666667,40.5029028654,40.5029028654 -40,0,20.5,42.79,19.39,42.9333333333,20.5333333333,44.9,17.6,47.09,17.7,55.9,7.1566666667,99.9,16.29,43.7,18,49.9888888889,16.5,51.09,7.65,765.2666666667,96.5,3,61.5,7.0833333333,3.9338751812,3.9338751812 -50,0,20.5,42.79,19.4633333333,43.06,20.5,44.9333333333,17.6,47.09,17.6944444444,55.8766666667,7.03,99.9,16.29,43.6327777778,18,49.9888888889,16.5,51.09,7.5,765.2,97,3,61,7,8.445722051,8.445722051 -50,0,20.39,42.79,19.39,43,20.5,45,17.6,47.09,17.6333333333,55.76,6.7633333333,99.9,16.29,43.57,17.945,49.9277777778,16.5,51.09,7.4333333333,765.1333333333,96.6666666667,3,61.5,6.8833333333,1.8366397009,1.8366397009 -60,0,20.39,42.79,19.39,43.06,20.5,45.09,17.6,47.03,17.6111111111,55.74,6.6233333333,99.9,16.29,43.58,17.9572222222,49.9,16.5,51.09,7.3666666667,765.0666666667,96.3333333333,3,62,6.7666666667,12.0071154437,12.0071154437 -50,0,20.3566666667,42.79,19.3233333333,43.09,20.5,45.09,17.6,47.09,17.6111111111,55.71,6.59,99.9,16.29,43.535,17.9388888889,49.8327777778,16.5,51.09,7.3,765,96,3,62.5,6.65,45.609759097,45.609759097 -40,0,20.29,42.79,19.39,43.09,20.5,45.09,17.6,47,17.6,55.6694444444,6.53,99.9,16.29,43.52,17.9083333333,49.79,16.5,51.09,7.2333333333,764.9333333333,95.6666666667,3,63,6.5333333333,0.0681739883,0.0681739883 -50,0,20.29,42.8266666667,19.29,43.09,20.5,45.09,17.6,47,17.6,55.6816666667,6.4666666667,99.9,16.29,43.5,17.89,49.79,16.5666666667,51.2233333333,7.1666666667,764.8666666667,95.3333333333,3,63.5,6.4166666667,11.3650224055,11.3650224055 -40,20,20.29,42.9,19.29,43.1633333333,20.5,45.09,17.5,47.03,17.6,55.5216666667,6.26,99.9,16.29,43.4166666667,17.89,49.78,16.6,51.06,7.1,764.8,95,3,64,6.3,8.4131465876,8.4131465876 -50,0,20.29,43.145,19.26,43.29,20.4633333333,44.8633333333,17.5666666667,47.1633333333,17.65,54.3672222222,6.06,99.9,16.29,43.4,17.89,49.725,16.6,51,7,764.75,95,3,64.1666666667,6.2166666667,7.4881257489,7.4881257489 -40,0,20.2,43.3266666667,19.2,43.3975,20.39,44.73,17.6,47.29,17.755,53.3783333333,6,99.9,16.29,43.3327777778,17.89,49.7,16.6,50.8633333333,6.9,764.7,95,3,64.3333333333,6.1333333333,32.4048580602,32.4048580602 -50,0,20.2,43.4666666667,19.2,43.56,20.39,44.6633333333,17.6,47.29,17.79,52.6883333333,5.9,99.9,16.29,43.29,17.8677777778,49.6083333333,16.6,50.73,6.8,764.65,95,3,64.5,6.05,24.2786274641,24.2786274641 -60,0,20.2,43.53,19.2,43.7,20.39,44.59,17.5666666667,47.29,17.79,52.2311111111,5.9333333333,99.9,16.29,43.285,17.8677777778,49.57,16.6,50.59,6.7,764.6,95,3,64.6666666667,5.9666666667,34.6622159705,34.6622159705 -30,0,20.1333333333,43.59,19.2,43.76,20.39,44.59,17.5,47.29,17.79,51.8533333333,6.06,99.9,16.29,43.21,17.89,49.59,16.6,50.53,6.6,764.55,95,3,64.8333333333,5.8833333333,14.4834728329,14.4834728329 -20,0,20.1,43.6266666667,19.1666666667,43.79,20.39,44.53,17.5,47.2,17.8455555556,51.5861111111,6.3,99.9,16.29,43.2,17.8511111111,49.555,16.6,50.4666666667,6.5,764.5,95,3,65,5.8,48.9335829858,48.9335829858 -30,0,20.1,43.7,19.1,43.8633333333,20.3566666667,44.5,17.5,47.1266666667,17.8511111111,51.3377777778,6.3,99.9,16.29,43.2,17.8511111111,49.5327777778,16.6,50.3266666667,6.55,764.4333333333,95,3,57.6666666667,5.85,14.4063164713,14.4063164713 -50,0,20.0666666667,43.7,19.1,44,20.29,44.5,17.5,47.09,17.89,51.2166666667,6.2633333333,99.9,16.29,43.1938888889,17.8066666667,49.515,16.5333333333,50.26,6.6,764.3666666667,95,3,50.3333333333,5.9,26.2882260606,26.2882260606 -50,0,20,43.7,19.1,44,20.2,44.4,17.5,47.09,17.89,51.0283333333,6.19,99.9,16.29,43.1266666667,17.79,49.4222222222,16.5333333333,50.2,6.65,764.3,95,3,43,5.95,3.891113482,3.891113482 -40,0,20,43.7,19.0333333333,43.9633333333,20.2,44.4,17.5,47,17.89,50.8388888889,6.19,99.9,16.29,43.1388888889,17.79,49.45,16.5,50.1633333333,6.7,764.2333333333,95,3,35.6666666667,6,33.9276917628,33.9276917628 -60,0,20,43.7,19.0333333333,44.03,20.2,44.4,17.5,47,17.89,50.73,6.19,99.9,16.29,43.1144444444,17.79,49.4388888889,16.5,50.09,6.75,764.1666666667,95,3,28.3333333333,6.05,9.0974858264,9.0974858264 -50,0,20,43.7,19,44.03,20.2,44.4,17.39,46.9,17.89,50.5933333333,6.3333333333,99.9,16.29,43.1388888889,17.79,49.4555555556,16.5,50,6.8,764.1,95,3,21,6.1,26.4902227558,26.4902227558 -50,0,20,43.76,19,44.09,20.2,44.4,17.39,46.845,17.89,50.4611111111,6.4666666667,99.9,16.29,43.09,17.79,49.4777777778,16.5,49.925,6.8833333333,764.0833333333,94.6666666667,3,22,6.1333333333,40.0839414448,40.0839414448 -50,0,19.9633333333,43.79,19,44.09,20.2,44.4,17.39,46.9,17.89,50.405,6.5,99.9,16.29,43.09,17.79,49.4888888889,16.5,49.9,6.9666666667,764.0666666667,94.3333333333,3,23,6.1666666667,15.659359796,15.659359796 -50,0,19.89,43.79,19,44.09,20.2,44.29,17.39,46.79,17.89,50.2772222222,6.5,99.9,16.29,43.09,17.79,49.5,16.5,49.79,7.05,764.05,94,3,24,6.2,34.5636705868,34.5636705868 -40,0,19.89,43.9,18.9633333333,44.2,20.2,44.29,17.39,46.79,17.89,50.1327777778,6.5,99.9,16.29,43.1022222222,17.77,49.5,16.5,49.79,7.1333333333,764.0333333333,93.6666666667,3,25,6.2333333333,38.6522261309,38.6522261309 -50,0,19.89,43.9,18.89,44.2,20.2,44.29,17.39,46.79,17.89,50.045,6.5,99.9,16.29,43.1205555556,17.79,49.5,16.5,49.7,7.2166666667,764.0166666667,93.3333333333,3,26,6.2666666667,13.0896816263,13.0896816263 -50,0,19.8566666667,43.9,18.89,44.2,20.2,44.29,17.39,46.79,17.89,49.955,6.53,99.9,16.29,43.0961111111,17.745,49.4777777778,16.5,49.6266666667,7.3,764,93,3,27,6.3,33.9380076504,33.9380076504 -20,0,19.8566666667,43.9,18.89,44.2,20.2,44.23,17.39,46.76,17.89,49.8266666667,6.59,99.9,16.29,43.09,17.7,49.5,16.4266666667,49.5,7.5666666667,763.9333333333,91.6666666667,3,29.1666666667,6.3166666667,49.6071647969,49.6071647969 -40,0,19.79,43.9,18.89,44.29,20.2,44.2,17.39,46.7,17.89,49.79,6.695,99.9,16.29,43.09,17.7,49.4777777778,16.5,49.5,7.8333333333,763.8666666667,90.3333333333,3,31.3333333333,6.3333333333,27.5743759936,27.5743759936 -30,0,19.79,43.9,18.89,44.29,20.2,44.1266666667,17.39,46.7,17.89,49.765,6.9333333333,99.9,16.29,43.09,17.71,49.5,16.4266666667,49.4,8.1,763.8,89,3,33.5,6.35,46.5342236799,46.5342236799 -50,0,19.79,43.9666666667,18.89,44.29,20.1666666667,44.09,17.39,46.7,17.89,49.6938888889,7.06,99.9,16.29,43.09,17.71,49.5,16.4266666667,49.2666666667,8.3666666667,763.7333333333,87.6666666667,3,35.6666666667,6.3666666667,10.3702172404,10.3702172404 -40,0,19.79,44,18.89,44.29,20.1,44.09,17.39,46.7,17.89,49.6266666667,7.1233333333,99.9,16.29,43.09,17.705,49.4388888889,16.5,49.3633333333,8.6333333333,763.6666666667,86.3333333333,3,37.8333333333,6.3833333333,11.4979519742,11.4979519742 -50,0,19.79,44,18.89,44.29,20.1,44.09,17.39,46.6266666667,17.89,49.515,7.2633333333,99.9,16.3177777778,43.055,17.75,49.4,16.5,49.29,8.9,763.6,85,3,40,6.4,24.199329468,24.199329468 -50,0,19.73,44,18.9266666667,44.26,20.1,44.09,17.5333333333,46.6333333333,17.8677777778,49.4722222222,7.4,99.9,16.3566666667,42.9722222222,17.78,49.3572222222,16.5,49.2,9.1833333333,763.55,82.1666666667,3.1666666667,40,6.1333333333,23.0529696913,23.0529696913 -40,0,19.79,44.06,19.0666666667,44.2,20.1,44.2,17.6,46.4333333333,17.89,49.3816666667,7.4666666667,99.9,16.39,42.9222222222,17.79,49.29,16.5,49.2,9.4666666667,763.5,79.3333333333,3.3333333333,40,5.8666666667,39.1360678477,39.1360678477 -50,0,19.79,44.09,19.1,44.06,20.1,44.2,17.7,46.3333333333,17.89,49.29,7.7266666667,99.9,16.39,42.8694444444,17.79,49.215,16.5,49.06,9.75,763.45,76.5,3.5,40,5.6,0.0302633038,0.0302633038 -50,0,19.79,44.1633333333,19.1666666667,43.9333333333,20.1,44.2,17.76,46.2,17.9205555556,49.2088888889,7.8666666667,99.9,16.4327777778,42.79,17.79,49.1205555556,16.5666666667,49,10.0333333333,763.4,73.6666666667,3.6666666667,40,5.3333333333,37.5311690033,37.5311690033 -60,0,19.79,44.2,19.23,43.9,20.1,44.2,17.89,46.1633333333,17.9388888889,49.0872222222,8.0633333333,99.9,16.5,42.765,17.79,48.9761111111,16.6,48.9,10.3166666667,763.35,70.8333333333,3.8333333333,40,5.0666666667,41.5366218775,41.5366218775 -50,0,19.8566666667,44.3333333333,19.29,43.9,20.1333333333,44.2,17.9633333333,46.03,18,49.0044444444,8.19,99.9,16.5,42.6572222222,17.84,48.9,16.6,48.8266666667,10.6,763.3,68,4,40,4.8,15.7335618162,15.7335618162 -50,0,19.89,44.26,19.3233333333,43.6633333333,20.2,44.26,18.15,45.895,18,48.9333333333,8.46,99.9,16.55,42.545,17.89,48.7672222222,16.6,48.76,10.85,763.3,66,4,40,4.5833333333,35.6016580015,35.6016580015 -40,0,19.9633333333,44.2,19.39,43.53,20.2,44.26,18.2,45.76,18.0055555556,48.8083333333,8.7333333333,99.9,16.6166666667,42.3616666667,17.9205555556,48.5772222222,16.6,48.7,11.1,763.3,64,4,40,4.3666666667,12.5855774619,12.5855774619 -40,0,20,44.1633333333,19.39,43.4,20.2,44.2,18.2,45.6266666667,18.0888888889,48.8144444444,9.0633333333,98.3,16.7,42.2772222222,18.0055555556,48.4044444444,16.6,48.6266666667,11.35,763.3,62,4,40,4.15,15.4673749115,15.4673749115 -30,0,20.0666666667,44.09,19.39,43.3266666667,20.2,44.29,18.2,45.56,18.1,48.7088888889,9.2633333333,96.6933333333,16.705,42.1522222222,18.0888888889,48.3227777778,16.6333333333,48.59,11.6,763.3,60,4,40,3.9333333333,34.7977423575,34.7977423575 -20,0,20.1,44,19.39,43.29,20.2,44.2225,18.2,45.4333333333,18.1,48.5872222222,9.5333333333,90.5266666667,16.735,41.9822222222,18.1,48.1327777778,16.7,48.59,11.85,763.3,58,4,40,3.7166666667,21.1547823506,21.1547823506 -40,0,20.1,44,19.4633333333,43.29,20.2,44.2,18.2,45.3633333333,18.1,48.5044444444,9.7333333333,89.4666666667,16.775,41.8083333333,18.1166666667,47.9822222222,16.7,48.5,12.1,763.3,56,4,40,3.5,42.644510651,42.644510651 -50,0,20.1,43.9,19.5,43.26,20.1,44.23,18.26,45.29,18.1,48.4111111111,9.945,87.995,16.79,41.745,18.1055555556,47.8327777778,16.7,48.4333333333,12.0833333333,763.2333333333,56.6666666667,4.3333333333,40,3.6333333333,26.7199958325,26.7199958325 -60,0,20.1,43.9,19.5,43.2,20.1,44.29,18.2,45.1633333333,18.1,48.3327777778,10.1666666667,88.4666666667,16.9461111111,41.775,18.1166666667,47.745,16.7,48.3633333333,12.0666666667,763.1666666667,57.3333333333,4.6666666667,40,3.7666666667,27.408875816,27.408875816 -40,0,20.15,43.79,19.5,43.2,20.1333333333,44.29,18.2,45.09,18.1388888889,48.245,10.36,85.5333333333,17.1761111111,41.76,18.2494444444,47.7744444444,16.7,48.29,12.05,763.1,58,5,40,3.9,42.2771989251,42.2771989251 -50,0,20.2,43.76,19.5,43.145,20.2,44.29,18.2,45.09,18.1888888889,48.1938888889,10.5333333333,84.26,17.365,41.6866666667,18.4505555556,47.6794444444,16.7,48.26,12.0333333333,763.0333333333,58.6666666667,5.3333333333,40,4.0333333333,18.8514539972,18.8514539972 -50,0,20.2,43.7,19.5,43.1266666667,20.2,44.29,18.2,45.09,18.2,48.1266666667,10.66,85.6666666667,17.5944444444,41.5172222222,18.6327777778,47.5494444444,16.7,48.26,12.0166666667,762.9666666667,59.3333333333,5.6666666667,40,4.1666666667,8.3021839266,8.3021839266 -40,0,20.29,43.6633333333,19.5,43.09,20.2,44.29,18.2,45.09,18.2,48.015,10.8666666667,83.66,17.755,41.2672222222,18.8077777778,47.3561111111,16.79,48.6266666667,12,762.9,60,6,40,4.3,9.4624014338,9.4624014338 -50,0,20.29,43.59,19.5,43.09,20.2,44.4,18.2,45.03,18.2,48,11.0666666667,82.2,17.84,41.0922222222,19.0038888889,47.1172222222,16.79,48.76,12.1166666667,762.8,59.3333333333,5.8333333333,40,4.2666666667,42.8433908033,42.8433908033 -60,0,20.29,43.59,19.5,43.09,20.2,44.4,18.2,45,18.22,47.9388888889,11.2266666667,79.8933333333,17.89,40.9255555556,19.2088888889,46.8655555556,16.8233333333,48.9333333333,12.2333333333,762.7,58.6666666667,5.6666666667,40,4.2333333333,16.8751617312,16.8751617312 -50,0,20.29,43.59,19.5,43.09,20.2,44.29,18.2,45,18.2,47.9,11.36,81.3666666667,17.9083333333,40.745,19.3361111111,46.6477777778,16.89,49,12.35,762.6,58,5.5,40,4.2,38.7514117523,38.7514117523 -60,0,20.29,43.59,19.5,43.09,20.26,44.3633333333,18.1,44.9,18.23,47.845,11.6,76.8933333333,17.9877777778,40.5933333333,19.39,46.4294444444,16.89,48.9666666667,12.4666666667,762.5,57.3333333333,5.3333333333,40,4.1666666667,3.4535101033,3.4535101033 -40,0,20.3566666667,43.53,19.5,43.09,20.29,44.4,18.1,44.9,18.275,47.8266666667,11.6,76.56,18.0277777778,40.45,19.4572222222,46.2894444444,16.9633333333,48.9,12.5833333333,762.4,56.6666666667,5.1666666667,40,4.1333333333,12.0474632829,12.0474632829 -50,0,20.39,43.5,19.5,43.09,20.29,44.4,18.2,44.9,18.26,47.775,11.69,76.3333333333,18.1166666667,40.3277777778,19.4633333333,46.145,17,48.9,12.7,762.3,56,5,40,4.1,12.1400918928,12.1400918928 -30,0,20.39,43.4333333333,19.5,43.09,20.29,44.4,18.2,44.9,18.26,47.7,11.7633333333,75.3333333333,18.245,40.1977777778,19.4877777778,46.065,17,48.9,12.7666666667,762.2666666667,55.8333333333,5,40,4.1333333333,19.3556494545,19.3556494545 -30,0,20.4266666667,43.4,19.5,43.09,20.29,44.4,18.2,45,18.29,47.7,11.8,76.59,18.4216666667,40.0555555556,19.5,46,17,48.9,12.8333333333,762.2333333333,55.6666666667,5,40,4.1666666667,43.5902510537,43.5902510537 -20,0,20.5,43.3266666667,19.5,43.09,20.29,44.3633333333,18.23,45.03,18.29,47.7,11.8,77.9233333333,18.6388888889,39.9333333333,19.5166666667,45.8983333333,17,48.9,12.9,762.2,55.5,5,40,4.2,48.3598524239,48.3598524239 -40,0,20.6,43.2,19.5333333333,43.09,20.29,44.29,18.29,45.09,18.3011111111,47.7,11.89,76.7666666667,18.7916666667,39.7633333333,19.65,45.745,17,48.9,12.9666666667,762.1666666667,55.3333333333,5,40,4.2333333333,43.3458135463,43.3458135463 -60,0,20.6666666667,43.2,19.6,43.09,20.29,44.29,18.29,45.09,18.3511111111,47.7,11.9633333333,77.4933333333,18.9727777778,39.6733333333,19.7805555556,45.5983333333,17,48.9,13.0333333333,762.1333333333,55.1666666667,5,40,4.2666666667,21.8857650761,21.8857650761 -50,0,20.7,43.2,19.7,43.1266666667,20.29,44.3175,18.29,45.03,18.39,47.755,12,76.4266666667,19.1611111111,39.5355555556,19.8972222222,45.535,17,48.9,13.1,762.1,55,5,40,4.3,9.5968896057,9.5968896057 -50,0,20.76,43.2,19.7,43.1266666667,20.29,44.4,18.39,44.9666666667,18.4083333333,47.8083333333,12,75.76,19.245,39.4111111111,20.0044444444,45.4277777778,17.0333333333,48.9333333333,13,762.0666666667,56,5,40,4.4333333333,4.1147202253,4.1147202253 -50,0,20.8233333333,43.23,19.73,43.2,20.29,44.29,18.39,44.9,18.4877777778,47.8877777778,11.945,76.95,19.3916666667,39.3083333333,20.15,45.3988888889,17.0333333333,48.9333333333,12.9,762.0333333333,57,5,40,4.5666666667,29.1725818766,29.1725818766 -40,0,20.89,43.29,19.79,43.2,20.29,44.29,18.4266666667,44.8266666667,18.5166666667,47.9333333333,11.89,80.13,19.5111111111,39.245,20.235,45.3205555556,17.1,49,12.8,762,58,5,40,4.7,3.5180747742,3.5180747742 -50,0,20.9266666667,43.2,19.89,43.29,20.39,44.29,18.5,44.9,18.5888888889,47.9111111111,11.83,79.59,19.6,39.1327777778,20.3177777778,45.245,17.1,49,12.7,761.9666666667,59,5,40,4.8333333333,26.3831327902,26.3831327902 -50,0,21,43.2,19.89,43.29,20.4633333333,44.3633333333,18.5,44.9,18.6111111111,47.9111111111,11.8,77.6666666667,19.6666666667,39.045,20.4327777778,45.1694444444,17.1,49,12.6,761.9333333333,60,5,40,4.9666666667,23.6144142691,23.6144142691 -40,0,21,43.1266666667,20,43.2,20.4266666667,44.3266666667,18.5,44.8266666667,18.6944444444,47.9555555556,11.7266666667,77.5333333333,19.71,38.9833333333,20.4755555556,45.1022222222,17.1,49,12.5,761.9,61,5,40,5.1,2.4095685338,2.4095685338 -60,0,21,43.09,20.1,43.26,20.5,44.4,18.5,44.79,18.735,47.8816666667,11.5666666667,78.6333333333,19.775,38.8816666667,20.5,45.07,17.1,48.9,12.1833333333,761.9666666667,62.3333333333,5.1666666667,40,5.0833333333,29.7270403826,29.7270403826 -50,0,21,43.09,20.1,43.2,20.5,44.4,18.5,44.73,18.73,47.7872222222,11.2933333333,78.8266666667,19.715,38.845,20.4755555556,45.07,17.1,48.9,11.8666666667,762.0333333333,63.6666666667,5.3333333333,40,5.0666666667,39.5635607536,39.5635607536 -50,0,21,43.09,20,43.1266666667,20.5,44.4,18.5,44.7,18.75,47.7,11.03,80.56,19.6722222222,38.8694444444,20.4083333333,45.0961111111,17.1,48.9,11.55,762.1,65,5.5,40,5.05,29.943434184,29.943434184 -50,0,21,43.09,20,43.2,20.5,44.4,18.5,44.7,18.76,47.6327777778,10.83,81.7,19.6,38.8511111111,20.34,45.1877777778,17.1,48.9,11.2333333333,762.1666666667,66.3333333333,5.6666666667,40,5.0333333333,1.3957964606,1.3957964606 -50,0,21,43.09,20,43.2,20.5,44.4,18.39,44.7,18.745,47.59,10.6266666667,83.1666666667,19.5277777778,38.8572222222,20.285,45.255,17.1,48.9,10.9166666667,762.2333333333,67.6666666667,5.8333333333,40,5.0166666667,19.7863315931,19.7863315931 -30,0,21,43.1633333333,19.9266666667,43.2,20.5,44.4333333333,18.39,44.7,18.7,47.515,10.4266666667,82.4333333333,19.4816666667,38.9,20.25,45.3144444444,17.1,48.9,10.6,762.3,69,6,40,5,5.3121982259,5.3121982259 -30,0,20.89,43.1633333333,19.89,43.2,20.5,44.4333333333,18.39,44.73,18.7,47.5,10.16,82.3966666667,19.39,38.9,20.1611111111,45.3627777778,17.1,48.9,10.5166666667,762.3,69.6666666667,5.8333333333,40,5.0666666667,1.2055694009,1.2055694009 -30,0,20.89,43.09,19.8233333333,43.1266666667,20.5,44.4,18.3233333333,44.79,18.7,47.4888888889,9.96,83.3966666667,19.3288888889,38.9166666667,20.1,45.4888888889,17.1,48.9666666667,10.4333333333,762.3,70.3333333333,5.6666666667,40,5.1333333333,42.0448883902,42.0448883902 -40,0,20.89,43.09,19.79,43.1266666667,20.5,44.4666666667,18.29,44.79,18.7,47.4388888889,9.66,84.9633333333,19.225,38.9777777778,20.0388888889,45.525,17.1,48.9333333333,10.35,762.3,71,5.5,40,5.2,16.3199962932,16.3199962932 -60,0,20.8233333333,43.09,19.79,43.2,20.39,44.4,18.29,44.9,18.6611111111,47.3572222222,9.5333333333,85.6966666667,19.1944444444,39,19.9816666667,45.58,17.1,49,10.2666666667,762.3,71.6666666667,5.3333333333,40,5.2666666667,14.7148823598,14.7148823598 -50,0,20.79,43.09,19.7,43.23,20.39,44.4,18.29,44.9,18.6,47.29,9.39,86.8933333333,19.1133333333,39.036,19.9022222222,45.6966666667,17.1,49,10.1833333333,762.3,72.3333333333,5.1666666667,40,5.3333333333,41.1448989878,41.1448989878 -50,0,20.79,43.09,19.7,43.29,20.39,44.4,18.2,44.9,18.6,47.29,9.39,87.4933333333,19.0722222222,39.1022222222,19.8788888889,45.7983333333,17.1333333333,49,10.1,762.3,73,5,40,5.4,20.7173712319,20.7173712319 -40,0,20.7,43.09,19.7,43.29,20.4725,44.475,18.2,44.9666666667,18.6,47.29,9.5,88.545,19.0111111111,39.1022222222,19.8177777778,45.8288888889,17.1333333333,49,10.05,762.35,73.3333333333,4.8333333333,40,5.4333333333,0.5085611483,0.5085611483 -50,0,20.7,43.1633333333,19.6333333333,43.23,20.5,44.5,18.2,45.03,18.6,47.285,9.39,89.0933333333,18.9327777778,39.0961111111,19.79,45.95,17.1,49,10,762.4,73.6666666667,4.6666666667,40,5.4666666667,2.6204194291,2.6204194291 -40,0,20.7,43.2,19.6,43.2,20.4266666667,44.4333333333,18.2,45.09,18.6,47.275,9.39,89.0933333333,18.8622222222,39.1877777778,19.715,46.015,17.1,48.9333333333,9.95,762.45,74,4.5,40,5.5,36.5185190691,36.5185190691 -50,0,20.6333333333,43.1266666667,19.6,43.26,20.5,44.5,18.1666666667,45.09,18.5944444444,47.255,9.16,89.9966666667,18.79,39.215,19.7,46.145,17.1,48.8633333333,9.9,762.5,74.3333333333,4.3333333333,40,5.5333333333,3.6697473493,3.6697473493 -50,0,20.6,43.09,19.5,43.29,20.5,44.4,18.1,45.09,18.55,47.23,9.1,90.3966666667,18.765,39.29,19.6611111111,46.1633333333,17.1,48.79,9.85,762.55,74.6666666667,4.1666666667,40,5.5666666667,3.5178313265,3.5178313265 -50,0,20.6,43.1175,19.5,43.29,20.5,44.4666666667,18.1,45.1266666667,18.5055555556,47.23,8.9633333333,90.6233333333,18.7,39.29,19.6,46.1633333333,17.1,48.6633333333,9.8,762.6,75,4,40,5.6,31.8585983594,31.8585983594 -60,0,20.5333333333,43.2,19.5,43.4,20.5,44.4,18.1,45.2,18.5,47.2,8.89,90.83,18.6722222222,39.3144444444,19.5611111111,46.215,17.1,48.53,9.75,762.6333333333,75.5,4,40,5.6333333333,20.6652935478,20.6652935478 -50,0,20.5,43.2,19.4266666667,43.3266666667,20.5,44.4,18.0666666667,45.2,18.5,47.2,8.89,91.26,18.6,39.3572222222,19.5,46.27,17.1,48.3333333333,9.7,762.6666666667,76,4,40,5.6666666667,21.535891539,21.535891539 -40,0,20.5,43.2,19.4266666667,43.4,20.5,44.4,18,45.2,18.5,47.21,8.89,91.26,18.55,39.4277777778,19.4938888889,46.285,17.1,48.2,9.65,762.7,76.5,4,40,5.7,4.0123185259,4.0123185259 -360,20,20.4633333333,43.26,19.4633333333,43.4666666667,20.5,44.4,18,45.2,18.4938888889,47.2038888889,8.89,91.4633333333,18.5,39.5,19.4022222222,46.21,17.1,48.06,9.6,762.7333333333,77,4,40,5.7333333333,13.8558339328,13.8558339328 -380,10,20.39,43.1266666667,19.39,43.4,20.4266666667,44.23,18.0666666667,45.4,18.4388888889,47.1116666667,8.89,91.8633333333,18.445,39.5,19.39,46.2,17.1,48,9.55,762.7666666667,77.5,4,40,5.7666666667,39.7035509464,39.7035509464 -390,20,20.39,43.2666666667,19.39,43.3633333333,20.4266666667,44.23,18.6966666667,45.6633333333,18.4694444444,47.05,8.83,92.3966666667,18.3844444444,39.515,19.3177777778,46.2,17.1,47.8633333333,9.5,762.8,78,4,40,5.8,4.5548732858,4.5548732858 -390,10,20.39,43.4,19.39,43.23,20.3566666667,44.09,19.2233333333,45.39,18.5,46.95,8.89,92.99,18.3011111111,39.59,19.285,46.1938888889,17.1,47.73,9.55,762.9333333333,78.1666666667,4.1666666667,40,5.8666666667,13.8341088779,13.8341088779 -320,0,20.4266666667,43.3633333333,19.4266666667,43.23,20.29,44.09,20.0233333333,44.8333333333,18.5611111111,46.7933333333,8.8,93.6666666667,18.255,39.6572222222,19.245,46.145,17.1,47.6633333333,9.6,763.0666666667,78.3333333333,4.3333333333,40,5.9333333333,6.8127729115,6.8127729115 -80,10,20.5,43.29,19.5666666667,43.23,20.29,44.09,20.645,44.1725,18.6333333333,46.73,8.7266666667,94.2,18.2,39.715,19.205,46.1144444444,17.1,47.53,9.65,763.2,78.5,4.5,40,6,33.1738047535,33.1738047535 -70,10,20.5,43.39,19.6333333333,43.23,20.29,44.09,20.8233333333,43.5966666667,18.5944444444,46.9577777778,8.8,94.69,18.2,39.7983333333,19.2,46.2,17.1,47.5,9.7,763.3333333333,78.6666666667,4.6666666667,40,6.0666666667,48.956501123,48.956501123 -80,20,20.5,43.7233333333,19.7,43.23,20.39,44.09,20.6333333333,43.53,18.445,47.4833333333,8.86,94.83,18.1833333333,39.9166666667,19.15,46.2,17.1,47.4,9.75,763.4666666667,78.8333333333,4.8333333333,40,6.1333333333,10.590566718,10.590566718 -80,10,20.6,43.4666666667,19.79,43.06,20.39,44.09,20.36,43.59,18.3844444444,47.9661111111,8.89,95.0633333333,18.1111111111,40.0038888889,19.1111111111,46.245,17.1,47.3266666667,9.8,763.6,79,5,40,6.2,18.6013492174,18.6013492174 -70,10,20.6,43.3266666667,19.8566666667,43,20.4266666667,44.09,20.1666666667,43.53,18.3011111111,48.3877777778,8.795,95.115,18.1,40.09,19.0944444444,46.29,17.0333333333,47.23,9.8,763.6166666667,79.5,4.8333333333,38.1666666667,6.3,5.9182358324,5.9182358324 -80,30,20.7,43.4333333333,19.9266666667,42.8633333333,20.5,44.1725,20.0333333333,43.59,18.285,48.6922222222,8.69,95.2966666667,18.0166666667,40.1083333333,19.0555555556,46.3388888889,17.0333333333,47.23,9.8,763.6333333333,80,4.6666666667,36.3333333333,6.4,39.026807365,39.026807365 -80,20,20.7,43.6333333333,20.0666666667,42.79,20.5,44.2,19.89,43.8,18.21,48.8727777778,8.66,95.59,18,40.225,19,46.3327777778,17,47.09,9.8,763.65,80.5,4.5,34.5,6.5,3.278910683,3.278910683 -80,10,20.8233333333,43.6333333333,20.1333333333,42.6633333333,20.5333333333,44.3,19.89,44.1933333333,18.2,49.1472222222,8.66,96.2566666667,18,40.3572222222,19,46.4166666667,17,47.09,9.8,763.6666666667,81,4.3333333333,32.6666666667,6.6,39.1887546168,39.1887546168 -80,10,20.89,43.4333333333,20.2,42.59,20.6,44.6933333333,19.79,44.3266666667,18.1777777778,49.3461111111,8.99,97.3233333333,17.9816666667,40.4822222222,18.9755555556,46.5238888889,17,47.09,9.8,763.6833333333,81.5,4.1666666667,30.8333333333,6.7,6.1926105991,6.1926105991 -60,10,21,43.29,20.3233333333,42.6633333333,20.73,45.1933333333,19.73,44.4666666667,18.1388888889,49.5677777778,9.2633333333,97.53,17.945,40.6033333333,18.945,46.6205555556,17,47.09,9.8,763.7,82,4,29,6.8,38.8670836226,38.8670836226 -50,10,21,43.29,20.39,42.59,20.79,45.2666666667,19.6666666667,44.7,18.1,49.7572222222,9.5,97.3633333333,17.945,40.765,18.89,46.735,17,47.09,9.8833333333,763.8333333333,82,4.1666666667,29,6.8833333333,18.0674536387,18.0674536387 -40,0,21.05,43.29,20.5,42.545,20.7,44.9666666667,19.6,44.8333333333,18.1,49.97,9.5,97.23,17.89,40.8627777778,18.89,46.845,17,47.09,9.9666666667,763.9666666667,82,4.3333333333,29,6.9666666667,30.7965005399,30.7965005399 -70,0,21.1,43.3266666667,20.5,42.7666666667,20.7,44.8266666667,19.5666666667,44.9,18.0611111111,50.1366666667,9.63,97.5633333333,17.89,41.0138888889,18.8288888889,46.9,17,47.09,10.05,764.1,82,4.5,29,7.05,45.8521364606,45.8521364606 -80,10,21.1666666667,43.4,20.5666666667,42.9666666667,20.6,44.59,19.5,44.9,18.0777777778,50.3461111111,9.7633333333,97.5633333333,17.89,41.1722222222,18.79,46.95,17,47.1633333333,10.1333333333,764.2333333333,82,4.6666666667,29,7.1333333333,5.2610049956,5.2610049956 -80,0,21.1333333333,43.4,20.6,42.9666666667,20.6,44.53,19.4633333333,44.9,18,50.4,9.89,97.5633333333,17.89,41.3083333333,18.79,47.055,17,47.2,10.2166666667,764.3666666667,82,4.8333333333,29,7.2166666667,35.7772896998,35.7772896998 -90,10,21.2,43.3266666667,20.6,42.8266666667,20.5666666667,44.56,19.39,44.9,18,50.5383333333,9.9633333333,97.8966666667,17.8511111111,41.4155555556,18.79,47.145,17,47.2,10.3,764.5,82,5,29,7.3,7.8183277743,7.8183277743 -80,0,21.2,43.29,20.7,42.8633333333,20.5,44.56,19.3566666667,45,18,50.6205555556,10.0333333333,98.26,17.8511111111,41.5722222222,18.79,47.2933333333,17,47.2,10.3,764.4333333333,82.3333333333,4.8333333333,28.6666666667,7.3666666667,13.0787860602,13.0787860602 -130,20,21.2,43.23,20.7,42.73,20.5333333333,44.56,19.29,45,18,50.735,10.16,98.4,17.7955555556,41.6783333333,18.775,47.45,17,47.26,10.3,764.3666666667,82.6666666667,4.6666666667,28.3333333333,7.4333333333,38.6895683827,38.6895683827 -370,20,21.2,43.1633333333,20.7,42.6633333333,20.6,44.56,19.29,45.1266666667,18,50.8205555556,10.2266666667,98.59,17.79,41.845,18.735,47.5211111111,17,47.29,10.3,764.3,83,4.5,28,7.5,29.7379535274,29.7379535274 -370,30,21.26,43.1633333333,20.76,42.59,20.5,44.5,19.5725,45.525,17.9755555556,50.9055555556,10.3,98.59,17.79,41.9983333333,18.715,47.6633333333,17,47.29,10.3,764.2333333333,83.3333333333,4.3333333333,27.6666666667,7.5666666667,4.7688358347,4.7688358347 -160,30,21.29,43.09,20.79,42.5,20.5666666667,44.5,20.4,45.3,17.9572222222,50.9888888889,10.4266666667,98.56,17.79,42.145,18.7,47.7811111111,17,47.4,10.3,764.1666666667,83.6666666667,4.1666666667,27.3333333333,7.6333333333,7.9233966884,7.9233966884 -250,20,21.29,43.09,20.79,42.5,20.5666666667,44.5,21.1333333333,44.7666666667,17.9144444444,51.055,10.3666666667,97.7666666667,17.79,42.1572222222,18.7,47.8877777778,17,47.4333333333,10.3,764.1,84,4,27,7.7,35.0545357447,35.0545357447 -380,30,21.29,43.09,20.7,42.4333333333,20.5666666667,44.5,21.1333333333,44.6333333333,17.9022222222,51.1944444444,9.995,97,17.79,42.065,18.7,47.9611111111,17,47.5,10.1,764.1333333333,85,4,26.5,7.6666666667,13.4591363138,13.4591363138 -380,20,21.29,43.09,20.7,42.5,20.6,44.4,21.5233333333,44.8333333333,17.89,51.3327777778,9.53,96.9633333333,17.79,42,18.7,48,17,47.59,9.9,764.1666666667,86,4,26,7.6333333333,14.8415031843,14.8415031843 -100,20,21.26,43.1633333333,20.7,42.59,20.6,44.4,22.0633333333,44.6266666667,17.89,51.45,9.2566666667,97.03,17.79,41.95,18.7,48.0811111111,17,47.59,9.7,764.2,87,4,25.5,7.6,28.1332646147,28.1332646147 -40,30,21.2,43.09,20.7,42.59,20.6,44.4,22.4633333333,44.2966666667,17.8844444444,51.5872222222,9.0333333333,98.5,17.79,41.9388888889,18.6888888889,48.1511111111,17,47.59,9.5,764.2333333333,88,4,25,7.5666666667,17.2588256188,17.2588256188 -30,10,21.2,43.2,20.6,42.6266666667,20.6333333333,44.4,22.3233333333,44.09,17.8733333333,51.7066666667,9.1,99.7666666667,17.79,42,18.6833333333,48.1816666667,17,47.59,9.3,764.2666666667,89,4,24.5,7.5333333333,49.8181655421,49.8181655421 -30,0,21.2,43.3333333333,20.6,42.7,20.6333333333,44.3266666667,22.1333333333,44.23,17.84,51.7822222222,9.1,99.9,17.79,42,18.6111111111,48.1205555556,17,47.6266666667,9.1,764.3,90,4,24,7.5,10.7444814057,10.7444814057 -30,0,21.2,43.4,20.5666666667,42.7,20.6,44.29,21.86,44.29,17.8233333333,51.8816666667,9.16,99.9,17.79,42,18.6,48.1877777778,17,47.7,9.2166666667,764.3833333333,89.6666666667,3.8333333333,23.8333333333,7.5666666667,29.5373598812,29.5373598812 -50,0,21.1333333333,43.4,20.5,42.76,20.6,44.29,21.6333333333,44.4,17.79,51.9611111111,9.4266666667,99.9,17.79,42.01,18.6,48.245,17,47.73,9.3333333333,764.4666666667,89.3333333333,3.6666666667,23.6666666667,7.6333333333,20.4495523707,20.4495523707 -50,0,21.1,43.5,20.5,42.9,20.6,44.29,21.4266666667,44.4,17.79,52.025,9.6266666667,99.9,17.79,42.045,18.6,48.29,17,47.79,9.45,764.55,89,3.5,23.5,7.7,26.9964463776,26.9964463776 -50,10,21.1,43.595,20.4725,42.9,20.6,44.3633333333,21.26,44.4666666667,17.79,52.09,9.7266666667,99.9,17.79,42.08,18.6,48.345,17,47.9333333333,9.5666666667,764.6333333333,88.6666666667,3.3333333333,23.3333333333,7.7666666667,40.4903438757,40.4903438757 -50,0,21.0333333333,43.6266666667,20.39,42.9,20.6,44.4,21.1333333333,44.4666666667,17.79,52.1694444444,9.86,99.9,17.79,42.09,18.6,48.4388888889,17,48,9.6833333333,764.7166666667,88.3333333333,3.1666666667,23.1666666667,7.8333333333,0.5326571641,0.5326571641 -50,0,21,43.7,20.29,42.9666666667,20.6,44.4,20.89,44.53,17.79,52.205,9.89,99.9,17.785,42.1327777778,18.5888888889,48.5,17,48.09,9.8,764.8,88,3,23,7.9,33.7494778098,33.7494778098 -40,0,21,43.7,20.29,42.9666666667,20.6333333333,44.4333333333,20.8233333333,44.59,17.79,52.28,9.89,99.9,17.745,42.1755555556,18.5666666667,48.505,17,48.1633333333,9.7166666667,764.75,88.3333333333,3.1666666667,23,7.8833333333,44.0090777003,44.0090777003 -50,0,21,43.73,20.26,43.06,20.6333333333,44.4333333333,20.7,44.73,17.79,52.3327777778,9.86,99.9,17.74,42.2,18.5777777778,48.56,17,48.23,9.6333333333,764.7,88.6666666667,3.3333333333,23,7.8666666667,20.4044382903,20.4044382903 -40,0,20.9266666667,43.8633333333,20.2,43,20.6333333333,44.4633333333,20.6333333333,44.73,17.79,52.4,9.8,99.9,17.725,42.2,18.55,48.59,17,48.29,9.55,764.65,89,3.5,23,7.85,44.7026067297,44.7026067297 -40,0,20.89,43.9,20.2,43.09,20.6333333333,44.53,20.4633333333,44.79,17.79,52.4,9.7333333333,99.9,17.725,42.215,18.5111111111,48.645,17,48.4,9.4666666667,764.6,89.3333333333,3.6666666667,23,7.8333333333,40.3925656923,40.3925656923 -50,0,20.89,43.9666666667,20.2,43.09,20.6333333333,44.4633333333,20.365,44.9475,17.77,52.4222222222,9.5333333333,99.9,17.73,42.27,18.5,48.7,17,48.4,9.3833333333,764.55,89.6666666667,3.8333333333,23,7.8166666667,2.6134211337,2.6134211337 -50,0,20.8566666667,44,20.1,43.2,20.7,44.53,20.23,45,17.735,52.4833333333,9.5,99.9,17.705,42.29,18.5,48.7,17,48.5,9.3,764.5,90,4,23,7.8,47.5569734699,47.5569734699 -50,10,20.8566666667,44.06,20.1,43.26,20.7,44.59,20.1666666667,45.1266666667,17.73,52.5,9.3675,99.9,17.72,42.29,18.5,48.735,17,48.53,9.05,764.4333333333,90.5,3.8333333333,22.8333333333,7.6333333333,24.9470175826,24.9470175826 -40,0,20.79,44,20.0666666667,43.26,20.7,44.59,20.1,45.2,17.71,52.525,9.0633333333,99.9,17.7,42.29,18.5,48.79,17,48.59,8.8,764.3666666667,91,3.6666666667,22.6666666667,7.4666666667,24.872959184,24.872959184 -20,0,20.79,44,20,43.2,20.7,44.59,20,45.23,17.72,52.58,8.7,99.1633333333,17.7,42.29,18.5,48.79,17.0333333333,48.6566666667,8.55,764.3,91.5,3.5,22.5,7.3,10.0611005211,10.0611005211 -20,0,20.7,44,20,43.3266666667,20.7,44.5,20,45.29,17.7,52.59,8.2933333333,98.23,17.7,42.29,18.4816666667,48.775,17.0333333333,48.73,8.3,764.2333333333,92,3.3333333333,22.3333333333,7.1333333333,34.0498659643,34.0498659643 -30,0,20.7,43.9333333333,19.9266666667,43.4,20.7,44.4333333333,19.89,45.4333333333,17.7,52.59,7.83,98.4,17.7,42.29,18.4877777778,48.78,17,48.73,8.05,764.1666666667,92.5,3.1666666667,22.1666666667,6.9666666667,27.3652091855,27.3652091855 -50,0,20.7,43.9333333333,19.89,43.4,20.6,44.3633333333,19.89,45.5,17.7,52.59,7.69,98.9266666667,17.7,42.29,18.4633333333,48.76,17,48.79,7.8,764.1,93,3,22,6.8,30.4788870155,30.4788870155 -50,0,20.6333333333,43.9333333333,19.89,43.4,20.6,44.29,19.79,45.4333333333,17.7,52.59,7.6233333333,99.9,17.7,42.29,18.4266666667,48.73,17.0666666667,48.8633333333,7.9166666667,764.05,93.1666666667,2.8333333333,29,6.9333333333,15.4091498232,15.4091498232 -50,0,20.6,43.9,19.8566666667,43.4666666667,20.6,44.3633333333,19.79,45.5,17.7,52.6205555556,7.7633333333,99.9,17.7,42.29,18.39,48.7,17,48.8633333333,8.0333333333,764,93.3333333333,2.6666666667,36,7.0666666667,8.2030582358,8.2030582358 -50,0,20.6,43.9,19.79,43.4666666667,20.6,44.29,19.7,45.59,17.7,52.6877777778,7.9333333333,99.9,17.7,42.29,18.39,48.7,17.0333333333,48.9333333333,8.15,763.95,93.5,2.5,43,7.2,42.3699863139,42.3699863139 -50,0,20.6,43.9,19.79,43.5,20.6,44.4,19.7,45.59,17.7,52.7,8.0666666667,99.9,17.7,42.3022222222,18.39,48.735,17.0333333333,49,8.2666666667,763.9,93.6666666667,2.3333333333,50,7.3333333333,8.8535362505,8.8535362505 -40,10,20.6,43.9,19.7675,43.5225,20.6,44.4,19.6,45.59,17.7,52.7,8.13,99.9,17.6666666667,42.3266666667,18.39,48.78,17.0333333333,49.03,8.3833333333,763.85,93.8333333333,2.1666666667,57,7.4666666667,29.3105362915,29.3105362915 -40,0,20.5333333333,43.9,19.7,43.59,20.5666666667,44.3266666667,19.6,45.59,17.7,52.72,8.19,99.9,17.65,42.3388888889,18.39,48.79,17.1,49.09,8.5,763.8,94,2,64,7.6,48.6278274795,48.6278274795 -40,0,20.5,43.9333333333,19.7,43.7,20.5,44.4,19.5666666667,45.7,17.7,52.7,8.19,99.9,17.6333333333,42.3266666667,18.39,48.79,17.0666666667,49.09,8.5166666667,763.7833333333,94,2.1666666667,64.1666666667,7.6,26.7049656948,26.7049656948 -50,0,20.5,44,19.7,43.7,20.5,44.29,19.5,45.76,17.6722222222,52.73,8.19,99.9,17.6111111111,42.3022222222,18.3677777778,48.79,17.0666666667,49.09,8.5333333333,763.7666666667,94,2.3333333333,64.3333333333,7.6,40.5458127265,40.5458127265 -50,0,20.5,44,19.6333333333,43.6566666667,20.5,44.29,19.4633333333,45.76,17.6666666667,52.76,8.2266666667,99.9,17.6,42.29,18.39,48.8205555556,17.1,49.2,8.55,763.75,94,2.5,64.5,7.6,32.5453255558,32.5453255558 -50,0,20.5,44,19.7,43.79,20.5,44.29,19.39,45.7,17.6111111111,52.73,8.3,99.9,17.6,42.29,18.3566666667,48.8633333333,17.1,49.2,8.5666666667,763.7333333333,94,2.6666666667,64.6666666667,7.6,38.549055357,38.549055357 -50,0,20.39,44,19.6,43.73,20.4266666667,44.1566666667,19.39,45.73,17.6222222222,52.75,8.39,99.9,17.6,42.3205555556,18.3566666667,48.9,17.1,49.23,8.5833333333,763.7166666667,94,2.8333333333,64.8333333333,7.6,1.7279157648,1.7279157648 -20,0,20.39,44,19.6,43.79,20.39,44.1633333333,19.315,45.79,17.6,52.76,8.39,99.9,17.6,42.3755555556,18.3566666667,48.9166666667,17.1,49.29,8.6,763.7,94,3,65,7.6,27.9330140562,27.9330140562 -20,0,20.39,44.03,19.5666666667,43.9,20.4633333333,44.1633333333,19.29,45.79,17.6,52.775,8.4633333333,99.9,17.6,42.4,18.34,48.9666666667,17.1,49.29,8.6,763.65,94,3,64.6666666667,7.6166666667,6.0043683508,6.0043683508 -20,0,20.3233333333,44.09,19.5,43.9,20.39,44.09,19.29,45.9,17.6,52.79,8.39,99.9,17.6,42.4,18.29,49,17.1,49.3266666667,8.6,763.6,94,3,64.3333333333,7.6333333333,34.3149814056,34.3149814056 -40,0,20.29,44.1266666667,19.5,43.9333333333,20.39,44.09,19.29,45.9,17.6,52.79,8.4633333333,99.9,17.6,42.4,18.29,49,17.1,49.4,8.6,763.55,94,3,64,7.65,45.7062830566,45.7062830566 -50,0,20.29,44.2,19.5,44,20.29,44.09,19.2,45.9,17.6,52.79,8.5,99.9,17.6,42.4833333333,18.29,49,17.1,49.4333333333,8.6,763.5,94,3,63.6666666667,7.6666666667,28.0174880172,28.0174880172 -50,0,20.29,44.2,19.5,44.09,20.3233333333,44.1266666667,19.2,45.9,17.6,52.79,8.5,99.9,17.6,42.4777777778,18.29,49.005,17.1,49.4333333333,8.6,763.45,94,3,63.3333333333,7.6833333333,28.7788022426,28.7788022426 -50,0,20.29,44.2,19.4266666667,44.09,20.3233333333,44.1266666667,19.2,45.9333333333,17.6,52.79,8.5333333333,99.9,17.6,42.5,18.29,49.06,17.1,49.5,8.6,763.4,94,3,63,7.7,25.8375077508,25.8375077508 -50,0,20.26,44.2,19.4633333333,44.09,20.39,44.2,19.2,46,17.6,52.8022222222,8.6,99.9,17.6,42.5,18.29,49.09,17.1,49.5,8.6333333333,763.3666666667,94,3,62.8333333333,7.7333333333,32.9024291132,32.9024291132 -40,0,20.2,44.26,19.39,44.09,20.4633333333,44.26,19.1666666667,46.03,17.6,52.8022222222,8.6,99.9,17.6,42.51,18.29,49.09,17.1,49.5,8.6666666667,763.3333333333,94,3,62.6666666667,7.7666666667,29.4198290096,29.4198290096 -40,0,20.2,44.29,19.39,44.09,20.5,44.23,19.1666666667,46.09,17.6,52.79,8.66,99.9,17.5888888889,42.54,18.29,49.1572222222,17.1,49.5,8.7,763.3,94,3,62.5,7.8,3.9962289971,3.9962289971 -70,0,20.2,44.3633333333,19.39,44.1633333333,20.5,44.23,19.1,46.09,17.6,52.8144444444,8.69,99.9,17.5444444444,42.565,18.28,49.1877777778,17.1,49.59,8.7333333333,763.2666666667,94,3,62.3333333333,7.8333333333,7.8068126692,7.8068126692 -380,30,20.2,44.4333333333,19.39,44.23,20.5,44.2,19.1,46.09,17.6,52.8266666667,8.7633333333,99.9,17.5777777778,42.59,18.28,49.1927777778,17.1,49.59,8.7666666667,763.2333333333,94,3,62.1666666667,7.8666666667,49.2540683714,49.2540683714 -190,10,20.1333333333,44.6333333333,19.39,44.29,20.5,44.2,19.3,46.39,17.6,52.8938888889,8.8,99.9,17.5277777778,42.5961111111,18.29,49.23,17.1,49.5,8.8,763.2,94,3,62,7.9,49.5914898696,49.5914898696 -60,10,20.1,44.79,19.39,44.29,20.5,44.29,19.9,46.39,17.6,52.9,8.86,99.9,17.5333333333,42.6327777778,18.28,49.27,17.1,49.4333333333,8.85,763.15,94,3.1666666667,62,7.95,14.7378095309,14.7378095309 -60,10,20.1,44.9,19.29,44.4,20.5,44.29,20.2,45.76,17.6,52.9,8.89,99.9,17.5,42.6816666667,18.235,49.235,17.1666666667,49.29,8.9,763.1,94,3.3333333333,62,8,39.4356232253,39.4356232253 -40,10,20.1,45.0266666667,19.29,44.4666666667,20.5,44.29,20.1333333333,45.76,17.6,52.9,8.89,99.9,17.5,42.7,18.22,49.2994444444,17.1,49.29,8.95,763.05,94,3.5,62,8.05,34.341553261,34.341553261 -20,0,20.1,45.09,19.29,44.59,20.5,44.29,20,45.8266666667,17.5777777778,52.9,9,99.9,17.5,42.725,18.2,49.29,17.1,49.2,9,763,94,3.6666666667,62,8.1,20.0413331739,20.0413331739 -20,0,20.1,45.1633333333,19.29,44.59,20.5,44.23,20,45.9,17.5666666667,52.9,9,99.9,17.5,42.78,18.2,49.29,17.1,49.1266666667,9.05,762.95,94,3.8333333333,62,8.15,19.842056802,19.842056802 -40,0,20.1,45.2,19.29,44.7,20.5,44.23,19.8566666667,45.9666666667,17.5777777778,52.9055555556,9.05,99.9,17.5,42.7961111111,18.2,49.29,17.1,49.09,9.1,762.9,94,4,62,8.2,44.3706970313,44.3706970313 -40,0,20.1,45.2,19.29,44.76,20.5,44.29,19.79,45.925,17.5555555556,52.9666666667,9.1,99.9,17.5,42.8327777778,18.2,49.3327777778,17.15,49.0675,9.1333333333,762.85,94,4.1666666667,61.8333333333,8.2333333333,41.1039047758,41.1039047758 -40,0,20.1,45.1633333333,19.29,44.79,20.5,44.29,19.73,46,17.5666666667,52.9777777778,9.16,99.9,17.5,42.8816666667,18.2,49.4,17.1,49,9.1666666667,762.8,94,4.3333333333,61.6666666667,8.2666666667,13.2622519857,13.2622519857 -50,0,20.1,45.09,19.29,44.79,20.5,44.4,19.6666666667,46.09,17.5833333333,53,9.19,99.9,17.5,42.9111111111,18.2,49.4055555556,17.1,49,9.2,762.75,94,4.5,61.5,8.3,9.0585437021,9.0585437021 -50,0,20.1,45.2,19.29,44.8266666667,20.5,44.4,19.6,46.09,17.5555555556,53,9.2633333333,99.9,17.5,42.9722222222,18.2,49.4888888889,17.1,48.9333333333,9.2333333333,762.7,94,4.6666666667,61.3333333333,8.3333333333,47.8237033705,47.8237033705 -40,0,20.1,45.2,19.23,44.8266666667,20.5,44.4,19.5,46.1266666667,17.5388888889,53,9.3,99.9,17.5,43,18.1888888889,49.5,17.1,48.9666666667,9.2666666667,762.65,94,4.8333333333,61.1666666667,8.3666666667,41.8699921109,41.8699921109 -50,0,20.1,45.23,19.2,44.79,20.5,44.4,19.5,46.26,17.5055555556,53,9.36,99.9,17.5,43,18.1888888889,49.515,17.1,48.9,9.3,762.6,94,5,61,8.4,17.332631594,17.332631594 -40,0,20.0333333333,45.23,19.2,44.8633333333,20.5,44.4,19.39,46.2,17.5222222222,53,9.5333333333,99.9,17.5,43.045,18.2,49.58,17.1,48.9,9.4166666667,762.55,93.5,5.1666666667,61.5,8.4333333333,42.1043220907,42.1043220907 -30,0,20,45.1266666667,19.2,44.9,20.5,44.4,19.39,46.2,17.5277777778,53,9.66,99.9,17.5,43.09,18.1833333333,49.59,17.1,48.9,9.5333333333,762.5,93,5.3333333333,62,8.4666666667,0.506509142,0.506509142 -50,0,20,45.2,19.2,44.9,20.5,44.4,19.3566666667,46.29,17.5166666667,53,9.8,99.9,17.4755555556,43.1005555556,18.1666666667,49.6572222222,17.1,48.8633333333,9.65,762.45,92.5,5.5,62.5,8.5,10.7270961977,10.7270961977 -40,0,20,45.29,19.2,44.9,20.5,44.4,19.29,46.3633333333,17.5,53,9.86,99.9,17.5,43.2,18.1444444444,49.7,17.1,48.79,9.7666666667,762.4,92,5.6666666667,63,8.5333333333,45.6867489615,45.6867489615 -40,0,20,45.29,19.2,44.9,20.5,44.4,19.29,46.4,17.5,53,10.13,99.9,17.5,43.245,18.1222222222,49.7,17.1,48.79,9.8833333333,762.35,91.5,5.8333333333,63.5,8.5666666667,2.4327672552,2.4327672552 -50,0,20,45.29,19.2,44.9,20.5,44.4,19.29,46.4,17.5,53,10.2633333333,99.9,17.5,43.29,18.1333333333,49.725,17.1,48.79,10,762.3,91,6,64,8.6,43.5615472146,43.5615472146 -30,0,20,45.29,19.2,44.9666666667,20.5,44.4,19.26,46.4666666667,17.5,53,10.39,99.9,17.5,43.3022222222,18.1222222222,49.79,17.1,48.79,10.0166666667,762.2666666667,90.6666666667,6.1666666667,56.6666666667,8.5666666667,32.7894003014,32.7894003014 -20,0,20,45.345,19.2,45,20.5,44.3633333333,19.2,46.4,17.5,53,10.39,99.9,17.5,43.3694444444,18.1444444444,49.8205555556,17.1,48.79,10.0333333333,762.2333333333,90.3333333333,6.3333333333,49.3333333333,8.5333333333,10.9685939155,10.9685939155 -20,0,19.89,45.4,19.2,45,20.5,44.29,19.2,46.4333333333,17.5,53,10.5333333333,99.9,17.5,43.4,18.1222222222,49.9,17.1,48.79,10.05,762.2,90,6.5,42,8.5,0.4718571668,0.4718571668 -40,0,19.9633333333,45.4,19.2,45,20.5,44.29,19.2,46.5,17.5,52.9777777778,10.6,99.9,17.5,43.4055555556,18.1222222222,49.9388888889,17.1666666667,48.79,10.0666666667,762.1666666667,89.6666666667,6.6666666667,34.6666666667,8.4666666667,3.9607247687,3.9607247687 -40,0,19.89,45.4,19.2,45.03,20.4266666667,44.23,19.2,46.59,17.5222222222,52.9777777778,10.69,99.9,17.5,43.4166666667,18.1,49.9888888889,17.1,48.79,10.0833333333,762.1333333333,89.3333333333,6.8333333333,27.3333333333,8.4333333333,38.3725425811,38.3725425811 -40,0,19.89,45.4666666667,19.2,45.09,20.4266666667,44.2666666667,19.1333333333,46.59,17.5,53,10.8,99.9,17.5,43.4833333333,18.1222222222,50,17.1,48.79,10.1,762.1,89,7,20,8.4,1.6643928015,1.6643928015 -50,0,19.89,45.5,19.2,45.09,20.4266666667,44.3266666667,19.1,46.59,17.5,53,10.9333333333,99.9,17.5,43.5,18.1,50,17.1333333333,48.7,10.1666666667,762.0333333333,87.8333333333,7.1666666667,21.1666666667,8.25,38.7476032134,38.7476032134 -40,0,19.89,45.5,19.2,45.09,20.39,44.29,19.1,46.6725,17.5,53,11.1,99.7,17.5,43.5,18.1111111111,50,17.175,48.7,10.2333333333,761.9666666667,86.6666666667,7.3333333333,22.3333333333,8.1,19.6979815024,19.6979815024 -50,0,19.89,45.5,19.2,45.09,20.39,44.29,19.1,46.7,17.5111111111,53,11.1,98.4333333333,17.5,43.5,18.1111111111,50,17.1666666667,48.7,10.3,761.9,85.5,7.5,23.5,7.95,39.2408629297,39.2408629297 -50,0,19.89,45.5,19.2,45.09,20.5,44.4,19.1,46.79,17.5111111111,52.9611111111,11.13,97.3933333333,17.5,43.5,18.1,50,17.1,48.7,10.3666666667,761.8333333333,84.3333333333,7.6666666667,24.6666666667,7.8,1.6666147858,1.6666147858 -40,0,19.89,45.5,19.2,45.09,20.5,44.4,19.1,46.79,17.5,52.9222222222,11.2633333333,95.3266666667,17.5,43.5,18.1055555556,50,17.1,48.7,10.4333333333,761.7666666667,83.1666666667,7.8333333333,25.8333333333,7.65,18.3075789013,18.3075789013 -40,0,19.89,45.5,19.2,45.03,20.5,44.4,19.0666666667,46.76,17.5166666667,52.9,11.4266666667,93.3,17.5,43.4888888889,18.1333333333,50,17.1333333333,48.7,10.5,761.7,82,8,27,7.5,10.3844219935,10.3844219935 -40,0,19.8233333333,45.4333333333,19.2,45.09,20.5,44.4,19.0666666667,46.76,17.5388888889,52.9333333333,11.5666666667,90.8933333333,17.5,43.4888888889,18.1666666667,50,17.2,48.7,10.6,761.6,81,8,27,7.4166666667,48.2956268825,48.2956268825 -40,0,19.89,45.5,19.2,45.03,20.5,44.4,19,46.7,17.5944444444,52.9111111111,11.7266666667,87.3966666667,17.5,43.5,18.2,49.9888888889,17.2,48.59,10.7,761.5,80,8,27,7.3333333333,28.2483003684,28.2483003684 -50,0,19.89,45.5,19.2,45,20.5,44.4,19,46.7,17.6,52.9,11.86,85.2566666667,17.5388888889,43.5,18.2,49.9277777778,17.2,48.59,10.8,761.4,79,8,27,7.25,22.0557975932,22.0557975932 -50,0,19.89,45.5,19.2,45,20.5,44.4,19,46.6633333333,17.5555555556,52.9,12.0633333333,83.1666666667,17.5888888889,43.4105555556,18.2,49.8205555556,17.2,48.56,10.9,761.3,78,8,27,7.1666666667,40.1934058289,40.1934058289 -30,0,19.89,45.5,19.2,44.9666666667,20.5,44.29,19,46.59,17.5666666667,52.9,12.19,81.5,17.6,43.3266666667,18.2,49.775,17.2,48.5,11,761.2,77,8,27,7.0833333333,8.2816638751,8.2816638751 -20,0,19.89,45.4333333333,19.26,44.9666666667,20.5,44.29,19.0333333333,46.6266666667,17.5888888889,52.8938888889,12.19,79.2333333333,17.6,43.28,18.215,49.715,17.2,48.5,11.1,761.1,76,8,27,7,10.3059281129,10.3059281129 -20,0,19.89,45.4,19.2,44.9,20.5,44.26,19.1,46.6266666667,17.6,52.8633333333,12.3233333333,79.9666666667,17.6277777778,43.24,18.245,49.6822222222,17.26,48.5,11.05,761.05,75.6666666667,8.3333333333,27.3333333333,6.9,17.4293338787,17.4293338787 -30,0,19.89,45.4,19.2,44.8266666667,20.5,44.2,19.0333333333,46.4666666667,17.5777777778,52.8022222222,12.36,78.5333333333,17.7,43.285,18.235,49.6044444444,17.29,48.5,11,761,75.3333333333,8.6666666667,27.6666666667,6.8,22.5407453836,22.5407453836 -40,0,19.89,45.29,19.29,44.845,20.39,44.2,19.1,46.4,17.6,52.79,12.3,78.7933333333,17.7,43.23,18.26,49.555,17.23,48.4333333333,10.95,760.95,75,9,28,6.7,5.158836639,5.158836639 -50,0,19.89,45.29,19.29,44.79,20.39,44.2,19,46.26,17.6,52.79,12.1,76.9566666667,17.705,43.1816666667,18.29,49.51,17.29,48.4,10.9,760.9,74.6666666667,9.3333333333,28.3333333333,6.6,30.0309230923,30.0309230923 -40,0,19.89,45.29,19.29,44.79,20.39,44.2,19,46.2,17.6,52.79,11.96,77.43,17.78,43.09,18.29,49.4388888889,17.29,48.4,10.85,760.85,74.3333333333,9.6666666667,28.6666666667,6.5,5.0288953935,5.0288953935 -50,0,19.9266666667,45.2,19.29,44.79,20.39,44.26,19,46.1633333333,17.6,52.78,11.845,77.945,17.79,43.015,18.29,49.4,17.29,48.4,10.8,760.8,74,10,29,6.4,47.8593054577,47.8593054577 -50,0,19.9266666667,45.2,19.29,44.79,20.39,44.2,19,46.09,17.6,52.745,11.6266666667,77.9333333333,17.79,42.9722222222,18.3344444444,49.3327777778,17.29,48.3266666667,10.6833333333,760.7666666667,74.5,9.6666666667,30.8333333333,6.3666666667,29.0487219696,29.0487219696 -40,0,19.9633333333,45.2,19.29,44.76,20.4633333333,44.26,19,46,17.6,52.75,11.4266666667,78.2,17.79,42.8816666667,18.3344444444,49.28,17.29,48.29,10.5666666667,760.7333333333,75,9.3333333333,32.6666666667,6.3333333333,8.4447190049,8.4447190049 -50,0,19.9633333333,45.3333333333,19.29,44.7,20.5,44.26,19,45.925,17.6,52.7,11.2633333333,78.6933333333,17.79,42.79,18.29,49.225,17.29,48.29,10.45,760.7,75.5,9,34.5,6.3,25.928556663,25.928556663 -40,0,19.9633333333,45.4666666667,19.29,44.7,20.5,44.2,19,45.9,17.6,52.72,11.13,77.5666666667,17.79,42.765,18.3344444444,49.2,17.29,48.23,10.3333333333,760.6666666667,76,8.6666666667,36.3333333333,6.2666666667,2.7161419857,2.7161419857 -30,0,19.9633333333,45.4,19.29,44.7,20.5,44.23,19,45.79,17.6,52.7,10.9633333333,78.5933333333,17.79,42.71,18.29,49.1327777778,17.29,48.2,10.2166666667,760.6333333333,76.5,8.3333333333,38.1666666667,6.2333333333,9.0937313857,9.0937313857 -50,0,19.9266666667,45.5,19.29,44.6633333333,20.5,44.29,19,45.79,17.5777777778,52.7,10.83,78.7333333333,17.79,42.6816666667,18.29,49.09,17.29,48.2,10.1,760.6,77,8,40,6.2,1.6237235162,1.6237235162 -40,0,19.9266666667,45.5,19.29,44.59,20.445,44.145,19,45.9333333333,17.5777777778,52.7,10.66,80.23,17.79,42.59,18.29,49.09,17.29,48.09,10.05,760.5333333333,76.8333333333,8,40,6.1333333333,20.6724202377,20.6724202377 -50,0,19.89,45.5,19.29,44.6633333333,20.39,44.09,19,46,17.6,52.7,10.5333333333,80.63,17.79,42.59,18.29,49.08,17.29,48.09,10,760.4666666667,76.6666666667,8,40,6.0666666667,35.5402365793,35.5402365793 -40,0,19.89,45.5,19.23,44.59,20.4633333333,44.1633333333,18.9633333333,46.03,17.6,52.7,10.36,81.3,17.79,42.59,18.29,49.025,17.23,48.03,9.95,760.4,76.5,8,40,6,21.9147108379,21.9147108379 -50,0,19.89,45.53,19.2,44.59,20.5,44.2,18.89,46.09,17.5944444444,52.6572222222,10.2266666667,81.4933333333,17.715,42.535,18.29,49,17.23,48.03,9.9,760.3333333333,76.3333333333,8,40,5.9333333333,23.8015175448,23.8015175448 -40,0,19.89,45.53,19.2,44.59,20.5,44.2,18.89,46.09,17.5833333333,52.6022222222,9.9633333333,81.2266666667,17.7,42.5,18.29,49,17.23,48,9.85,760.2666666667,76.1666666667,8,40,5.8666666667,18.9852360752,18.9852360752 -20,0,19.89,45.5,19.2,44.59,20.5,44.2,18.89,46.1633333333,17.5555555556,52.6022222222,9.83,81.56,17.7,42.4833333333,18.29,48.9277777778,17.29,48,9.8,760.2,76,8,40,5.8,38.9984171255,38.9984171255 -20,0,19.89,45.5,19.2,44.59,20.5,44.2,18.89,46.2,17.55,52.59,9.69,81.83,17.715,42.4,18.265,48.8494444444,17.23,47.9333333333,9.8,760.15,75.6666666667,8.1666666667,40,5.7166666667,48.0788601562,48.0788601562 -20,0,19.8566666667,45.43,19.1666666667,44.59,20.39,44,18.8233333333,46.1266666667,17.5,52.59,9.63,81.7633333333,17.705,42.4,18.265,48.8694444444,17.29,48,9.8,760.1,75.3333333333,8.3333333333,40,5.6333333333,22.1999207046,22.1999207046 -40,0,19.8566666667,45.3633333333,19.1,44.59,20.39,44,18.8566666667,46.1633333333,17.5,52.59,9.4633333333,81.4666666667,17.7,42.4,18.26,48.7961111111,17.23,47.8266666667,9.8,760.05,75,8.5,40,5.55,13.8288259506,13.8288259506 -50,0,19.8566666667,45.29,19.1,44.645,20.3566666667,44,18.79,46.09,17.5,52.59,9.39,81.3333333333,17.7,42.3816666667,18.225,48.725,17.23,47.8266666667,9.8,760,74.6666666667,8.6666666667,40,5.4666666667,32.6437470852,32.6437470852 -50,0,19.79,45.2225,19.1,44.59,20.3566666667,44.06,18.79,46.09,17.5,52.59,9.245,81.95,17.7,42.29,18.24,48.7338888889,17.26,47.8633333333,9.8,759.95,74.3333333333,8.8333333333,40,5.3833333333,37.7362017636,37.7362017636 -50,0,19.79,45.2,19.1,44.6633333333,20.39,44,18.79,46.09,17.5,52.565,9.2266666667,81.7,17.7,42.285,18.2,48.6266666667,17.2,47.79,9.8,759.9,74,9,40,5.3,29.4353190926,29.4353190926 -40,0,19.79,45.2,19.0333333333,44.59,20.39,44.06,18.79,46.09,17.5,52.56,9.3,81.56,17.6666666667,42.1733333333,18.2,48.59,17.2,47.7,9.8166666667,759.9166666667,74,9,40,5.3333333333,18.3449035278,18.3449035278 -40,0,19.79,45.1266666667,19.0333333333,44.53,20.39,44,18.79,46.09,17.5,52.51,9.39,81.9333333333,17.6444444444,42.1388888889,18.2,48.59,17.2,47.7,9.8333333333,759.9333333333,74,9,40,5.3666666667,25.4695513053,25.4695513053 -40,0,19.79,45.09,19,44.59,20.39,44,18.76,46.09,17.5,52.53,9.39,82.06,17.65,42.145,18.1777777778,48.59,17.2,47.7,9.85,759.95,74,9,40,5.4,7.2114556795,7.2114556795 -40,0,19.73,45.09,19,44.53,20.3233333333,44,18.7,46.09,17.5,52.53,9.39,82.4266666667,17.6,42.09,18.2,48.59,17.2,47.7,9.8666666667,759.9666666667,74,9,40,5.4333333333,13.3327267831,13.3327267831 -40,0,19.76,45.09,19,44.59,20.3233333333,44,18.7,46.09,17.5,52.5,9.39,83.0933333333,17.6,42.065,18.1722222222,48.59,17.2,47.7,9.8833333333,759.9833333333,74,9,40,5.4666666667,8.6910456303,8.6910456303 -50,0,19.7,45.09,19,44.59,20.3566666667,44,18.7,46.09,17.5,52.5,9.4266666667,83.13,17.6,42.01,18.1111111111,48.59,17.2,47.6633333333,9.9,760,74,9,40,5.5,44.8263647617,44.8263647617 -40,0,19.7,45.09,18.89,44.59,20.3566666667,44,18.7,46.09,17.5,52.5,9.5,83.73,17.6,42.05,18.1,48.6572222222,17.1333333333,47.59,9.85,760,74.6666666667,9,40,5.5833333333,28.1171566341,28.1171566341 -40,0,19.7,45.09,18.89,44.59,20.39,44,18.6666666667,46.09,17.5,52.5,9.5,84.4966666667,17.6,42.065,18.1,48.6633333333,17.1333333333,47.59,9.8,760,75.3333333333,9,40,5.6666666667,17.1227158979,17.1227158979 -20,0,19.7,45.09,18.89,44.59,20.39,44,18.6,46.03,17.5,52.5,9.5,84.9566666667,17.6,42.06,18.1,48.6633333333,17.2,47.59,9.75,760,76,9,40,5.75,14.1864840174,14.1864840174 -20,0,19.7,45.09,18.89,44.6633333333,20.39,43.9333333333,18.6,46.09,17.5,52.5,9.5,85.0633333333,17.6,42.09,18.1,48.7,17.1666666667,47.56,9.7,760,76.6666666667,9,40,5.8333333333,37.3769241618,37.3769241618 -30,0,19.6666666667,45.06,18.89,44.6266666667,20.3566666667,43.8633333333,18.6,46.09,17.5,52.4388888889,9.5,85.2633333333,17.6,42.09,18.1,48.7,17.1,47.5,9.65,760,77.3333333333,9,40,5.9166666667,28.1425097375,28.1425097375 -20,0,19.6,45,18.89,44.7,20.29,43.79,18.6,46.09,17.5,52.4333333333,9.5,85.1,17.6,42.09,18.1,48.7,17.1,47.5,9.6,760,78,9,40,6,28.2692997716,28.2692997716 -50,0,19.6,45,18.79,44.59,20.29,43.79,18.6,46.09,17.5,52.4222222222,9.5666666667,85.4333333333,17.5444444444,42.09,18.0944444444,48.6938888889,17.1,47.5,9.55,760,79.3333333333,8.8333333333,37.3333333333,6.1666666667,31.6665914492,31.6665914492 -50,0,19.6,45,18.8566666667,44.7233333333,20.23,43.73,18.6,46.09,17.4755555556,52.3694444444,9.6,85.2,17.5277777778,42.09,18.0722222222,48.6694444444,17.1,47.5,9.5,760,80.6666666667,8.6666666667,34.6666666667,6.3333333333,48.1293295976,48.1293295976 -60,0,19.6,45,18.79,44.6266666667,20.29,43.9,18.6,46.09,17.5,52.3572222222,9.5333333333,86.3333333333,17.5388888889,42.1022222222,18.0555555556,48.7327777778,17.1,47.5,9.45,760,82,8.5,32,6.5,38.4470602032,38.4470602032 -540,10,19.6,45,18.79,44.7,20.29,43.9,18.6,46.06,17.4877777778,52.2811111111,9.39,88.3666666667,17.5055555556,42.2088888889,18.0166666667,48.715,17.1,47.5,9.4,760,83.3333333333,8.3333333333,29.3333333333,6.6666666667,38.0762088345,38.0762088345 -610,10,19.6,46.0333333333,18.79,44.895,20.29,43.9,18.5333333333,46,17.4877777778,52.1877777778,9.3675,90.1925,17.5,42.3205555556,18,48.775,17.1,47.5,9.35,760,84.6666666667,8.1666666667,26.6666666667,6.8333333333,7.6361073763,7.6361073763 -90,10,19.6666666667,52.0333333333,18.8233333333,47.7266666667,20.29,44.0266666667,18.5,46,17.5,52.385,9.36,91.4233333333,17.5,42.4661111111,18,48.8083333333,17.1,47.5,9.3,760,86,8,24,7,18.3898983989,18.3898983989 -50,10,19.84,57.395,18.9633333333,49.6666666667,20.29,44.4566666667,18.5,46.06,17.5,52.9283333333,9.39,92.23,17.5,42.56,18,48.8877777778,17.1,47.5,9.3333333333,759.95,86,8.1666666667,24.3333333333,7.0333333333,45.6807897077,45.6807897077 -60,10,20,54.8,19.2,50.26,20.29,44.99,18.5,46.03,17.5,53.4661111111,9.39,93.0233333333,17.5,42.6572222222,18,48.95,17.1,47.5,9.3666666667,759.9,86,8.3333333333,24.6666666667,7.0666666667,24.8175073415,24.8175073415 -60,0,20.0666666667,53.4666666667,19.26,50.0666666667,20.3566666667,45.3266666667,18.5,46.09,17.5,53.8461111111,9.39,93.8966666667,17.4755555556,42.71,17.9511111111,49.005,17.1,47.5,9.4,759.85,86,8.5,25,7.1,1.386736345,1.386736345 -70,0,20.1333333333,51.9666666667,19.4266666667,49.49,20.3566666667,45.4666666667,18.5,46.09,17.5,53.9994444444,9.39,94.09,17.4755555556,42.8033333333,17.945,49.06,17.1,47.5,9.4333333333,759.8,86,8.6666666667,25.3333333333,7.1333333333,22.5069692708,22.5069692708 -70,0,20.26,51.1,19.6333333333,49.0966666667,20.4266666667,45.6566666667,18.5,46.09,17.5,54.08,9.39,94.4333333333,17.4388888889,42.8677777778,17.9144444444,49.1327777778,17.025,47.425,9.4666666667,759.75,86,8.8333333333,25.6666666667,7.1666666667,1.3593859039,1.3593859039 -60,0,20.39,50.2333333333,19.8233333333,48.4,20.5,45.79,18.5,46.1633333333,17.5,54.09,9.39,94.4333333333,17.4327777778,42.9388888889,17.9144444444,49.2,17.0666666667,47.4666666667,9.5,759.7,86,9,26,7.2,0.9135464788,0.9135464788 -70,0,20.4633333333,49.6333333333,19.9633333333,47.8666666667,20.5,45.8633333333,18.5,46.2,17.5,54.065,9.39,94.7266666667,17.5261111111,44.0816666667,17.89,49.225,17.1,47.53,9.5333333333,759.65,85.5,9,28.3333333333,7.15,43.5981239425,43.5981239425 -40,0,20.6333333333,48.8633333333,20.1333333333,47.2666666667,20.5666666667,45.79,18.5,46.2,17.5,53.9327777778,9.39,94.6,17.9144444444,46.1705555556,17.89,49.28,17.1,47.59,9.5666666667,759.6,85,9,30.6666666667,7.1,47.7594444645,47.7594444645 -40,0,20.7,48.39,20.2,46.7266666667,20.6,45.745,18.5,46.29,17.5,53.8022222222,9.39,94.3666666667,18.3022222222,46.38,17.9144444444,49.29,17.1,47.59,9.6,759.55,84.5,9,33,7.05,44.636920956,44.636920956 -40,0,20.79,47.7966666667,20.3233333333,46.3333333333,20.6,45.6633333333,18.5,46.29,17.5,53.6722222222,9.39,93.9666666667,18.5655555556,46.2505555556,17.89,49.29,17.1,47.59,9.6333333333,759.5,84,9,35.3333333333,7,42.8154364577,42.8154364577 -310,30,20.8566666667,47.4633333333,20.4633333333,46,20.5333333333,45.59,18.5,46.29,17.5,53.565,9.39,93.46,18.7727777778,46.1122222222,17.89,49.3083333333,17.1,47.59,9.6666666667,759.45,83.5,9,37.6666666667,6.95,6.1766537721,6.1766537721 -390,40,21,47.0633333333,20.5333333333,45.6333333333,20.5333333333,45.59,18.5,46.43,17.8055555556,64.7755555556,9.4633333333,92.9333333333,18.8138888889,45.4983333333,17.89,49.3633333333,17.1,47.6633333333,9.7,759.4,83,9,40,6.9,11.0827369383,11.0827369383 -380,50,21.0666666667,46.73,20.6666666667,45.36,20.6,45.53,19.2,46.5266666667,18.405,76.9338888889,9.39,92.2666666667,18.725,45.5911111111,17.89,49.3205555556,17.0666666667,47.6633333333,9.7333333333,759.4166666667,82.5,9.1666666667,40,6.8333333333,34.5136088785,34.5136088785 -370,30,21.1333333333,46.3333333333,20.73,45.0266666667,20.73,45.5,19.9333333333,46.1333333333,18.215,76.3361111111,9.39,91.9333333333,18.8677777778,45.6655555556,17.89,49.29,17.0666666667,47.6633333333,9.7666666667,759.4333333333,82,9.3333333333,40,6.7666666667,32.4386062915,32.4386062915 -370,40,21.2,46.0666666667,20.79,44.8266666667,20.73,45.36,20.6666666667,45.49,18.15,75.6994444444,9.5333333333,91.5333333333,18.7761111111,45.4611111111,17.89,49.29,17.0666666667,47.56,9.8,759.45,81.5,9.5,40,6.7,4.5722596115,4.5722596115 -90,20,21.2,45.7966666667,20.79,44.56,20.79,45.1633333333,21.1933333333,45.03,18.1,74.4027777778,9.6,90.2,18.6388888889,45.4611111111,17.89,49.29,17.0666666667,47.56,9.8333333333,759.4666666667,81,9.6666666667,40,6.6333333333,29.7784792376,29.7784792376 -60,30,21.26,45.59,20.79,44.36,20.79,45.09,21.5,44.6333333333,18.05,72.3166666667,9.645,88.945,18.55,45.345,17.89,49.255,17.0333333333,47.53,9.8666666667,759.4833333333,80.5,9.8333333333,40,6.5666666667,47.2189118969,47.2189118969 -50,20,21.29,45.3633333333,20.79,44.2,20.79,45.06,21.5,44.5,18,69.8916666667,9.69,88.4333333333,18.4938888889,45.2288888889,17.8677777778,49.1755555556,17.1,47.59,9.9,759.5,80,10,40,6.5,6.4328826498,6.4328826498 -50,20,21.29,45.23,20.76,44.06,20.73,45,21.29,44.8,18,67.1811111111,9.69,88.1,18.4022222222,45.0372222222,17.89,49.2,17,47.4,9.8833333333,759.4333333333,80.1666666667,10,40,6.5166666667,26.2350944453,26.2350944453 -50,10,21.29,45.045,20.7,44,20.79,44.9,21.23,45,17.9511111111,65.1588888889,9.69,88.2266666667,18.39,45,17.89,49.2,17.0666666667,47.4666666667,9.8666666667,759.3666666667,80.3333333333,10,40,6.5333333333,46.5937854024,46.5937854024 -40,0,21.2,44.8633333333,20.7,44,20.79,44.8266666667,21.0666666667,45.09,17.945,64.0561111111,9.69,88.6266666667,18.34,45,17.89,49.2,17.0333333333,47.4633333333,9.85,759.3,80.5,10,40,6.55,22.0991033129,22.0991033129 -50,0,21.2,44.79,20.7,43.9333333333,20.7,44.43,20.9266666667,45.1633333333,17.89,63.5405555556,9.7266666667,87.8966666667,18.29,45.1422222222,17.89,49.2,17.1,47.59,9.8333333333,759.2333333333,80.6666666667,10,40,6.5666666667,20.0985806645,20.0985806645 -30,0,21.2,44.6633333333,20.6,43.7,20.7,44.1566666667,20.745,45.145,17.89,63.1872222222,9.7266666667,88.0233333333,18.29,45.265,17.89,49.2,17.1,47.845,9.8166666667,759.1666666667,80.8333333333,10,40,6.5833333333,18.276125018,18.276125018 -20,0,21.1333333333,44.59,20.6,43.6266666667,20.6,43.76,20.5666666667,45.23,17.89,62.9194444444,9.69,88.4333333333,18.29,45.3983333333,17.89,49.2,17.1,48.03,9.8,759.1,81,10,40,6.6,28.6414988688,28.6414988688 -20,0,21.1,44.56,20.5666666667,43.59,20.6,43.5666666667,20.4266666667,45.29,17.8622222222,62.5088888889,9.69,88.2266666667,18.29,45.545,17.89,49.2,17.1,48.09,9.8333333333,759,81,10,40,6.6333333333,5.3083700477,5.3083700477 -30,0,21.0333333333,44.4333333333,20.5,43.59,20.5666666667,43.53,20.3566666667,45.4,17.8122222222,62.0283333333,9.7266666667,88.19,18.285,45.585,17.89,49.215,17.1,48.2,9.8666666667,758.9,81,10,40,6.6666666667,32.8606916009,32.8606916009 -40,0,21,44.29,20.4266666667,43.5,20.5,43.59,20.23,45.4,17.79,61.6133333333,9.7266666667,88.2633333333,18.255,45.63,17.8677777778,49.22,17.1,48.2,9.9,758.8,81,10,40,6.7,40.0239578914,40.0239578914 -50,0,21,44.23,20.4266666667,43.4333333333,20.39,43.545,20.1666666667,45.5,17.79,61.2255555556,9.8,87.7566666667,18.245,45.7533333333,17.8788888889,49.26,17.1,48.29,9.9333333333,758.7,81,10,40,6.7333333333,8.0040569534,8.0040569534 -50,0,20.89,44.2,20.3566666667,43.4,20.39,43.5,20.0333333333,45.5,17.79,60.8311111111,9.8,88.5633333333,18.235,45.9972222222,17.8511111111,49.255,17.1,48.3633333333,9.9666666667,758.6,81,10,40,6.7666666667,24.9574903166,24.9574903166 -40,0,20.89,44.2,20.29,43.4,20.39,43.56,19.9633333333,45.59,17.79,60.5033333333,9.8,88.26,18.235,46.1377777778,17.8177777778,49.225,17.1,48.4,10,758.5,81,10,40,6.8,6.9432886434,6.9432886434 -40,0,20.8566666667,44.1633333333,20.26,43.5,20.39,43.59,19.89,45.6633333333,17.79,60.1722222222,9.8,88.1933333333,18.2,46.2922222222,17.84,49.26,17.1,48.4666666667,10.0166666667,758.5,80.8333333333,10,40,6.7833333333,34.4299105112,34.4299105112 -40,0,20.79,44.09,20.2,43.5,20.3233333333,43.59,19.8566666667,45.7,17.79,59.8688888889,9.83,88.6,18.2,46.3022222222,17.8288888889,49.2983333333,17.1,48.5,10.0333333333,758.5,80.6666666667,10,40,6.7666666667,24.0320963203,24.0320963203 -40,0,20.79,44.09,20.2,43.5,20.29,43.59,19.79,45.7,17.79,59.62,9.89,88.8666666667,18.2,46.3205555556,17.8566666667,49.3533333333,17.1,48.56,10.05,758.5,80.5,10,40,6.75,10.3906437405,10.3906437405 -40,0,20.73,44.09,20.1333333333,43.5,20.29,43.6633333333,19.7,45.9,17.79,59.4155555556,9.89,89.26,18.2,46.4,17.8511111111,49.3572222222,17.1,48.6266666667,10.0666666667,758.5,80.3333333333,10,40,6.7333333333,35.8860667795,35.8860667795 -40,0,20.7,44.09,20.1,43.59,20.29,43.7,19.7,45.9,17.78,59.155,9.89,88.695,18.2,46.4722222222,17.8566666667,49.3633333333,17.1,48.7,10.0833333333,758.5,80.1666666667,10,40,6.7166666667,16.6710535646,16.6710535646 -20,0,20.7,44.09,20.0333333333,43.53,20.29,43.7,19.6666666667,45.9,17.765,58.9577777778,9.9633333333,88.46,18.2,46.5,17.8122222222,49.3144444444,17.1,48.73,10.1,758.5,80,10,40,6.7,26.4713692013,26.4713692013 -30,0,20.6666666667,44.1633333333,20,43.59,20.26,43.6333333333,19.6,45.9,17.7,58.745,10,88.0933333333,18.2,46.5755555556,17.8011111111,49.3022222222,17.1,48.79,10.1,758.45,80.1666666667,10,40,6.75,29.6749374364,29.6749374364 -20,0,20.6,44.09,19.9725,43.59,20.2,43.5,19.5,45.9333333333,17.72,58.5733333333,10,87.5,18.2,46.705,17.8011111111,49.3022222222,17.1666666667,48.8266666667,10.1,758.4,80.3333333333,10,40,6.8,37.9944505985,37.9944505985 -40,0,20.6,44.2,19.89,43.59,20.1666666667,43.3633333333,19.5,46,17.7,58.45,10.0666666667,88.1233333333,18.2,46.7983333333,17.8011111111,49.3022222222,17.1666666667,48.9,10.1,758.35,80.5,10,40,6.85,1.984795474,1.984795474 -40,0,20.525,44.2,19.8566666667,43.7,20.1,43.3633333333,19.4633333333,46.06,17.7,58.2933333333,9.9266666667,88.79,18.2,46.9044444444,17.79,49.3694444444,17.1666666667,48.9,10.1,758.3,80.6666666667,10,40,6.9,31.5589976148,31.5589976148 -40,0,20.5,44.26,19.79,43.7,20,43.3266666667,19.39,46,17.7,58.145,9.9266666667,88.9666666667,18.2,47.12,17.8344444444,49.4444444444,17.1666666667,48.9666666667,10.1,758.25,80.8333333333,10,40,6.95,8.5174902692,8.5174902692 -40,0,20.5,44.3266666667,19.79,43.7,20,43.4,19.39,46.045,17.7,57.9922222222,10,88.8933333333,18.2,47.205,17.79,49.4,17.1,49,10.1,758.2,81,10,40,7,35.3628292913,35.3628292913 -50,0,20.4266666667,44.3266666667,19.79,43.7,20,43.4333333333,19.39,46.2,17.7,57.8266666667,10,88.9933333333,18.2,47.3105555556,17.79,49.4,17.1333333333,49.03,10.1,758.1166666667,81.1666666667,9.8333333333,40,7.0166666667,13.2361137308,13.2361137308 -50,0,20.39,44.23,19.7,43.79,19.9266666667,43.5,19.3233333333,46.2,17.7,57.6966666667,10,88.9933333333,18.2,47.4,17.79,49.4388888889,17.2,49.09,10.1,758.0333333333,81.3333333333,9.6666666667,40,7.0333333333,4.0161222802,4.0161222802 -40,0,20.39,44.29,19.7,43.79,19.89,43.53,19.29,46.2,17.7,57.565,10.0666666667,88.9,18.2,47.3755555556,17.8122222222,49.4644444444,17.2,49.1266666667,10.1,757.95,81.5,9.5,40,7.05,35.6603634777,35.6603634777 -40,0,20.3566666667,44.3266666667,19.7,43.79,19.89,43.59,19.29,46.26,17.7,57.4388888889,10,88.8333333333,18.2,47.3572222222,17.79,49.5,17.2,49.2,10.1,757.8666666667,81.6666666667,9.3333333333,40,7.0666666667,37.5407061074,37.5407061074 -30,0,20.29,44.4,19.7,43.79,19.89,43.59,19.23,46.23,17.7,57.345,10,88.6566666667,18.2,47.29,17.79,49.5,17.2,49.2,10.1,757.7833333333,81.8333333333,9.1666666667,40,7.0833333333,8.5112762754,8.5112762754 -20,0,20.29,44.5,19.6333333333,43.8266666667,19.89,43.7,19.23,46.29,17.7,57.2288888889,9.9266666667,88.59,18.2,47.2961111111,17.79,49.5,17.2,49.26,10.1,757.7,82,9,40,7.1,10.7411079807,10.7411079807 -20,0,20.29,44.5,19.6333333333,43.8266666667,19.8233333333,43.6266666667,19.2,46.29,17.7,57.1266666667,9.86,88.8966666667,18.2,47.3755555556,17.79,49.5,17.2,49.29,10.1333333333,757.65,81.8333333333,9.1666666667,40,7.1,6.8427645019,6.8427645019 -20,0,20.2,44.4,19.6,43.8266666667,19.79,43.6266666667,19.2,46.29,17.7,57.0494444444,9.8,89.5633333333,18.2,47.3816666667,17.79,49.5,17.2,49.29,10.1666666667,757.6,81.6666666667,9.3333333333,40,7.1,16.0352393519,16.0352393519 -50,0,20.2,44.4666666667,19.6,43.9,19.73,43.7,19.2,46.3633333333,17.6888888889,56.9211111111,9.89,89.6666666667,18.2,47.3816666667,17.79,49.5,17.2,49.4,10.2,757.55,81.5,9.5,40,7.1,32.9826656613,32.9826656613 -50,0,20.2,44.59,19.5666666667,43.9333333333,19.7,43.79,19.2,46.3633333333,17.6777777778,56.835,9.9725,88.95,18.2,47.4,17.79,49.5,17.2,49.4,10.2333333333,757.5,81.3333333333,9.6666666667,40,7.1,22.9123301688,22.9123301688 -40,0,20.2,44.6633333333,19.5,44.06,19.7,43.8633333333,19.1,46.4,17.6555555556,56.735,10.0666666667,88.66,18.2,47.4,17.79,49.535,17.2,49.4,10.2666666667,757.45,81.1666666667,9.8333333333,40,7.1,11.0891919699,11.0891919699 -40,0,20.1,44.7,19.5,44.09,19.7,43.9333333333,19.1,46.4,17.6277777778,56.6327777778,10.0333333333,87.7666666667,18.2,47.4,17.79,49.57,17.2,49.4666666667,10.3,757.4,81,10,40,7.1,2.4845807813,2.4845807813 -50,0,20.1,44.76,19.5,44.09,19.7,44,19.1,46.4333333333,17.6,56.545,10.1,87.1,18.2,47.4,17.79,49.59,17.2,49.4333333333,10.3,757.3833333333,80.8333333333,10,38.1666666667,7.0666666667,42.1483747661,42.1483747661 -40,0,20.1,44.8266666667,19.39,44.09,19.7,44,19.1,46.5,17.6333333333,56.4944444444,10.13,85.73,18.2,47.3938888889,17.79,49.59,17.26,49.56,10.3,757.3666666667,80.6666666667,10,36.3333333333,7.0333333333,23.0177988415,23.0177988415 -40,0,20.1,44.9,19.39,44.1725,19.7,44,19.0666666667,46.4666666667,17.6111111111,56.4333333333,10.2633333333,85.73,18.2,47.3022222222,17.79,49.59,17.23,49.59,10.3,757.35,80.5,10,34.5,7,2.2334531997,2.2334531997 -40,0,20,44.79,19.39,44.26,19.7,44.03,19,46.4,17.6,56.3572222222,10.2266666667,85.5233333333,18.2,47.3083333333,17.79,49.6083333333,17.29,49.59,10.3,757.3333333333,80.3333333333,10,32.6666666667,6.9666666667,16.5010054945,16.5010054945 -20,10,20,44.8175,19.39,44.3266666667,19.7,44.09,19,46.4,17.6,56.29,10.3,85.3966666667,18.2,47.4833333333,17.785,49.6022222222,17.26,49.56,10.3,757.3166666667,80.1666666667,10,30.8333333333,6.9333333333,17.5241011661,17.5241011661 -60,10,20,44.9666666667,19.3233333333,44.4,19.7,44.1266666667,19,46.4666666667,17.6,56.235,10.3,85.13,18.23,47.6844444444,17.775,49.6633333333,17.2,49.56,10.3,757.3,80,10,29,6.9,11.8110499345,11.8110499345 -20,10,19.89,45.4633333333,19.29,44.4333333333,19.7,44.2,19,46.5,17.6166666667,56.2,10.3,85.59,18.21,47.4416666667,17.79,49.6388888889,17.245,49.645,10.1833333333,757.3166666667,81.5,9.8333333333,34.8333333333,7.05,10.4661413119,10.4661413119 -40,10,19.9633333333,45.6633333333,19.29,44.56,19.7,44.2,19,46.53,17.6055555556,56.1083333333,10.16,87.9333333333,18.2,47.1272222222,17.79,49.6877777778,17.29,49.6633333333,10.0666666667,757.3333333333,83,9.6666666667,40.6666666667,7.2,14.4792484469,14.4792484469 -110,0,19.9633333333,45.8633333333,19.29,44.6566666667,19.6333333333,44.1266666667,19,46.59,17.6,56.09,10.0333333333,89.8666666667,18.2,46.8311111111,17.78,49.7,17.29,49.59,9.95,757.35,84.5,9.5,46.5,7.35,14.9915021611,14.9915021611 -310,0,19.89,45.8633333333,19.29,44.8633333333,19.6,44.23,19,46.59,17.6,56.07,9.7633333333,92.5,18.1833333333,46.6277777778,17.76,49.7,17.29,49.5,9.8333333333,757.3666666667,86,9.3333333333,52.3333333333,7.5,44.6762001957,44.6762001957 -50,0,19.89,45.9333333333,19.26,44.8633333333,19.675,44.47,18.9266666667,46.6633333333,17.6,56.055,9.69,94.2266666667,18.1722222222,46.46,17.79,49.755,17.23,49.4333333333,9.7166666667,757.3833333333,87.5,9.1666666667,58.1666666667,7.65,38.1330314558,38.1330314558 -60,0,19.8233333333,46.06,19.2,44.8633333333,19.7,44.59,18.89,46.7,17.6,56.01,9.6,95.6633333333,18.1388888889,46.2472222222,17.79,49.8083333333,17.26,49.3633333333,9.6,757.4,89,9,64,7.8,5.2014684305,5.2014684305 -60,0,19.79,46.09,19.2,44.9,19.7,44.6266666667,18.89,46.7,17.6,56,9.5333333333,96.5966666667,18.1,46.1266666667,17.785,49.8877777778,17.2,49.29,9.6333333333,757.3833333333,88.6666666667,9.1666666667,57.5,7.7833333333,37.9334774218,37.9334774218 -60,0,19.79,46.03,19.2,44.9,19.7,44.7,18.89,46.73,17.6,55.9333333333,9.5,97.1233333333,18.1,46.0094444444,17.745,49.9,17.2,49.26,9.6666666667,757.3666666667,88.3333333333,9.3333333333,51,7.7666666667,20.7366892835,20.7366892835 -60,0,19.79,46,19.2,45,19.79,44.73,18.89,46.79,17.6,55.8947619048,9.5666666667,97.19,18.1,45.9111111111,17.78,49.9166666667,17.2,49.2,9.7,757.35,88,9.5,44.5,7.75,11.0517838271,11.0517838271 -60,0,19.79,46,19.2,45,19.79,44.79,18.89,46.79,17.6,55.8266666667,9.69,96.845,18.1,45.8033333333,17.76,50,17.2,49.2,9.7333333333,757.3333333333,87.6666666667,9.6666666667,38,7.7333333333,0.335934991,0.335934991 -60,0,19.79,46,19.2,45.03,19.79,44.8266666667,18.89,46.8633333333,17.6,55.79,9.7266666667,96.33,18.05,45.655,17.775,50,17.2,49.2,9.7666666667,757.3166666667,87.3333333333,9.8333333333,31.5,7.7166666667,1.5125271282,1.5125271282 -50,0,19.79,46,19.2,45.09,19.79,44.9,18.79,46.79,17.6,55.745,9.8,96.0633333333,18,45.575,17.745,50,17.2,49.09,9.8,757.3,87,10,25,7.7,12.5050918432,12.5050918432 -60,0,19.79,45.9666666667,19.2,45.09,19.79,44.9,18.79,46.79,17.6,55.7,9.7633333333,96.1,18,45.5,17.75,50.035,17.2,49.09,9.7833333333,757.3166666667,87.6666666667,10,28.3333333333,7.8,11.0247489647,11.0247489647 -40,0,19.79,45.9,19.1333333333,45.09,19.8566666667,44.9666666667,18.79,46.79,17.6,55.7,9.69,96.96,18,45.4833333333,17.76,50.09,17.2,49.09,9.7666666667,757.3333333333,88.3333333333,10,31.6666666667,7.9,15.4040495865,15.4040495865 -50,0,19.79,45.9,19.1,45.2,19.89,45,18.79,46.79,17.6,55.6327777778,9.69,97.9966666667,18,45.4,17.76,50.1022222222,17.2,49.03,9.75,757.35,89,10,35,8,45.44462919,45.44462919 -390,0,19.79,45.9,19.1,45.2,19.89,45,18.79,46.79,17.6,55.59,9.63,98.2633333333,18,45.4,17.73,50.1572222222,17.2,49,9.7333333333,757.3666666667,89.6666666667,10,38.3333333333,8.1,46.9251386821,46.9251386821 -340,0,19.79,45.9,19.1,45.26,19.89,45,18.79,46.8633333333,17.5888888889,55.59,9.69,98.66,17.9877777778,45.345,17.72,50.2,17.2,49,9.7166666667,757.3833333333,90.3333333333,10,41.6666666667,8.2,24.5952302474,24.5952302474 -40,0,19.73,45.9666666667,19.1,45.29,19.89,45,18.79,46.9,17.5888888889,55.545,9.69,98.9333333333,17.9816666667,45.29,17.745,50.2,17.2,49,9.7,757.4,91,10,45,8.3,8.4010133171,8.4010133171 -20,0,19.7,46.145,19.1,45.29,19.9266666667,45.09,18.73,46.9,17.6,55.5,9.69,99.43,17.9511111111,45.29,17.7,50.21,17.1333333333,49,9.8,757.45,90.3333333333,10,42.3333333333,8.2833333333,9.4447276555,9.4447276555 -20,0,19.7,46.2,19.1,45.4,20,45.03,18.745,46.95,17.5888888889,55.5,9.69,99.69,17.89,45.29,17.72,50.255,17.2,49,9.9,757.5,89.6666666667,10,39.6666666667,8.2666666667,9.5777610783,9.5777610783 -20,0,19.7,46.2,19.1,45.4,19.9633333333,45,18.7,47,17.5611111111,55.4611111111,9.83,99.19,17.89,45.29,17.745,50.29,17.1666666667,48.9666666667,10,757.55,89,10,37,8.25,25.1740969019,25.1740969019 -30,0,19.7,46.2,19,45.4,19.89,45,18.7,47,17.55,55.4222222222,9.89,98.9966666667,17.89,45.245,17.715,50.3205555556,17.1,48.9666666667,10.1,757.6,88.3333333333,10,34.3333333333,8.2333333333,4.0556076914,4.0556076914 -40,0,19.7,46.1266666667,19,45.4,19.8566666667,45,18.7,47.03,17.55,55.4,10.0333333333,98.4566666667,17.89,45.21,17.72,50.4,17.1,49,10.2,757.65,87.6666666667,10,31.6666666667,8.2166666667,39.7348275292,39.7348275292 -50,0,19.7,46.09,19,45.4333333333,19.79,45,18.7,47.09,17.5277777778,55.4,10.16,97.79,17.89,45.2,17.7,50.4,17.1666666667,49,10.3,757.7,87,10,29,8.2,28.5673615057,28.5673615057 -50,0,19.7,46.09,19,45.5,19.79,45.06,18.7,47.09,17.5444444444,55.3572222222,10.19,96.73,17.89,45.2,17.7,50.4,17.1666666667,48.9666666667,10.3833333333,757.5833333333,86.6666666667,10,29,8.2333333333,48.4464803594,48.4464803594 -40,0,19.7,46.09,19,45.5,19.89,45.1266666667,18.7,47.09,17.5166666667,55.3144444444,10.2633333333,96.3233333333,17.89,45.2,17.7,50.4166666667,17.1666666667,48.9,10.4666666667,757.4666666667,86.3333333333,10,29,8.2666666667,43.7884384417,43.7884384417 -40,0,19.7,46.09,19,45.5,19.89,45.2,18.7,47.2,17.5222222222,55.29,10.4266666667,94.9333333333,17.89,45.2,17.7,50.4222222222,17.2,48.9,10.55,757.35,86,10,29,8.3,35.2926580003,35.2926580003 -40,0,19.76,46.06,19,45.53,19.89,45.2,18.7,47.2,17.5333333333,55.27,10.575,93.4,17.89,45.2,17.735,50.5,17.2,48.9,10.6333333333,757.2333333333,85.6666666667,10,29,8.3333333333,5.7677338831,5.7677338831 -40,0,19.7,46,19,45.59,19.89,45.2,18.7,47.2,17.5111111111,55.215,10.66,92.2666666667,17.89,45.2,17.705,50.5,17.2,48.9,10.7166666667,757.1166666667,85.3333333333,10,29,8.3666666667,8.0496173701,8.0496173701 -40,0,19.7,46,19,45.59,19.89,45.2,18.7,47.2,17.5166666667,55.2,10.7266666667,90.8666666667,17.89,45.1694444444,17.7,50.5,17.2,48.9,10.8,757,85,10,29,8.4,16.7577167274,16.7577167274 -40,0,19.76,46,19,45.59,19.89,45.2,18.6,47.1266666667,17.5555555556,55.2,10.86,90.3266666667,17.8677777778,45.145,17.73,50.535,17.1333333333,48.9,10.8666666667,756.9333333333,84.5,10.1666666667,30.8333333333,8.3666666667,49.4304592721,49.4304592721 -30,0,19.7,46,19,45.59,19.89,45.2,18.6,47.2,17.5166666667,55.145,11,88.9333333333,17.8511111111,45.13,17.71,50.545,17.2,48.9,10.9333333333,756.8666666667,84,10.3333333333,32.6666666667,8.3333333333,45.703947125,45.703947125 -30,0,19.76,46,18.9266666667,45.59,19.89,45.2,18.6,47.2,17.5,55.1144444444,11.0666666667,87.9333333333,17.8122222222,45.0444444444,17.7,50.555,17.1,48.9,11,756.8,83.5,10.5,34.5,8.3,26.7548590084,26.7548590084 -30,0,19.76,46,18.89,45.7,19.9633333333,45.1633333333,18.6,47.2,17.5,55.09,11.13,86.73,17.79,45,17.7,50.59,17.1,48.9,11.0666666667,756.7333333333,83,10.6666666667,36.3333333333,8.2666666667,12.3446846264,12.3446846264 -20,0,19.76,46,18.9175,45.7,19.89,45.1633333333,18.6,47.2,17.5,55.09,11.2633333333,85.93,17.79,45,17.7,50.59,17.1666666667,48.9,11.1333333333,756.6666666667,82.5,10.8333333333,38.1666666667,8.2333333333,46.1173409014,46.1173409014 -40,0,19.7,46,18.9266666667,45.7,19.89,45.09,18.6,47.26,17.5,55.065,11.3,85.1333333333,17.79,45,17.7,50.59,17.1,48.9,11.2,756.6,82,11,40,8.2,37.6744808513,37.6744808513 -40,0,19.7,46,18.89,45.73,19.8233333333,45.09,18.6,47.29,17.5333333333,55,11.3,84.5333333333,17.79,45,17.7,50.59,17.1,48.8633333333,11.1833333333,756.5166666667,82,10.6666666667,38.1666666667,8.2,45.1753656729,45.1753656729 -40,0,19.79,46,18.89,45.79,19.79,45.1266666667,18.6,47.29,17.5333333333,55,11.39,83.8933333333,17.79,45,17.7,50.59,17.1,48.8633333333,11.1666666667,756.4333333333,82,10.3333333333,36.3333333333,8.2,32.5774078025,32.5774078025 -40,0,19.7,46,18.89,45.79,19.79,45.1266666667,18.6,47.29,17.5,54.9555555556,11.39,83.1,17.79,44.9888888889,17.7,50.59,17.1,48.845,11.15,756.35,82,10,34.5,8.2,1.0389581323,1.0389581323 -50,0,19.7,46,18.89,45.79,19.89,45.2,18.6,47.29,17.5,54.9833333333,11.4266666667,82.9,17.79,44.9888888889,17.7,50.59,17.1,48.79,11.1333333333,756.2666666667,82,9.6666666667,32.6666666667,8.2,4.793951381,4.793951381 -40,0,19.7,46,18.89,45.79,19.89,45.2,18.6,47.29,17.5,54.9111111111,11.5,82.6933333333,17.79,45,17.7,50.59,17.1,48.79,11.1166666667,756.1833333333,82,9.3333333333,30.8333333333,8.2,47.4793482106,47.4793482106 -60,0,19.7,46,18.89,45.79,19.89,45.2,18.6,47.29,17.5,54.8816666667,11.5,81.7933333333,17.79,44.9777777778,17.7,50.59,17.1,48.79,11.1,756.1,82,9,29,8.2,44.4088294287,44.4088294287 -40,0,19.7,46,18.89,45.79,19.89,45.2,18.6,47.3633333333,17.5,54.8511111111,11.5,81.6666666667,17.79,44.9777777778,17.7,50.6511111111,17.1,48.79,11.1333333333,756,81.8333333333,9.1666666667,30.8333333333,8.2,22.8116995655,22.8116995655 -30,0,19.7,46,18.89,45.79,19.89,45.2,18.5666666667,47.4,17.5,54.79,11.5,81.5633333333,17.79,44.9444444444,17.7,50.6572222222,17.1,48.79,11.1666666667,755.9,81.6666666667,9.3333333333,32.6666666667,8.2,39.3371930462,39.3371930462 -40,0,19.7,46,18.89,45.9,19.89,45.2,18.5,47.4,17.5,54.79,11.5666666667,81.23,17.79,44.9166666667,17.72,50.6511111111,17.1,48.79,11.2,755.8,81.5,9.5,34.5,8.2,10.0513378391,10.0513378391 -40,0,19.7,46,18.89,45.9,19.89,45.2,18.5,47.4,17.5,54.79,11.69,80.345,17.79,44.9,17.7,50.7,17.1,48.79,11.2333333333,755.7,81.3333333333,9.6666666667,36.3333333333,8.2,15.6351600308,15.6351600308 -40,0,19.7,46.06,18.89,45.9,19.89,45.2,18.5,47.4,17.5,54.755,11.69,79.6266666667,17.79,44.9,17.7,50.7,17.1,48.79,11.2666666667,755.6,81.1666666667,9.8333333333,38.1666666667,8.2,26.4880904695,26.4880904695 -30,0,19.7,46.06,18.89,45.9,19.89,45.2,18.5,47.4333333333,17.5,54.7,11.63,79.5,17.785,44.9055555556,17.7,50.7,17.1,48.79,11.3,755.5,81,10,40,8.2,9.1499718605,9.1499718605 -20,0,19.7,46.09,18.79,45.79,19.89,45.26,18.5,47.4333333333,17.5,54.7,11.6,79.4966666667,17.76,44.9166666667,17.71,50.7,17.1,48.79,11.2666666667,755.4666666667,81,9.8333333333,40,8.1666666667,26.6202820581,26.6202820581 -30,0,19.7,46.09,18.79,45.8633333333,19.89,45.2,18.5,47.5,17.5,54.6816666667,11.6,79.83,17.785,44.9,17.71,50.7,17.1,48.79,11.2333333333,755.4333333333,81,9.6666666667,40,8.1333333333,17.4056792865,17.4056792865 -20,0,19.7,46.1266666667,18.79,45.9,19.89,45.2,18.5,47.5,17.5,54.6266666667,11.5333333333,80.03,17.765,44.9,17.7,50.725,17.1,48.79,11.2,755.4,81,9.5,40,8.1,25.5124080926,25.5124080926 -50,0,19.7,46.2,18.79,45.9,19.8233333333,45.2,18.5,47.5,17.5,54.59,11.5333333333,80.1566666667,17.755,44.9,17.7,50.75,17.1,48.79,11.1666666667,755.3666666667,81,9.3333333333,40,8.0666666667,39.6097843186,39.6097843186 -40,0,19.6333333333,46.03,18.79,45.9,19.79,45.2,18.5,47.5,17.5,54.59,11.5,80.2933333333,17.76,44.9,17.7,50.74,17.1,48.79,11.1333333333,755.3333333333,81,9.1666666667,40,8.0333333333,22.0605275594,22.0605275594 -30,0,19.7,46.09,18.79,45.9,19.79,45.2,18.5,47.5,17.5,54.59,11.4266666667,80.7,17.735,44.9,17.7,50.78,17.1,48.79,11.1,755.3,81,9,40,8,14.3146121991,14.3146121991 -50,0,19.6,46,18.79,45.9,19.8566666667,45.26,18.5,47.5,17.5,54.585,11.39,80.4666666667,17.72,44.9,17.7,50.78,17.1,48.79,11.05,755.2666666667,81.1666666667,9,40,7.9666666667,46.6780161369,46.6780161369 -40,0,19.6,46,18.79,45.9,19.79,45.2,18.5,47.5,17.5,54.56,11.33,80.1333333333,17.71,44.9,17.7,50.79,17.1,48.76,11,755.2333333333,81.3333333333,9,40,7.9333333333,1.5225532348,1.5225532348 -40,0,19.6,46,18.79,45.9,19.8233333333,45.23,18.5,47.5,17.5,54.54,11.3,80.06,17.72,44.9,17.7,50.79,17.1,48.7,10.95,755.2,81.5,9,40,7.9,42.4492800375,42.4492800375 -50,0,19.6,46,18.76,46,19.89,45.29,18.445,47.45,17.5,54.51,11.3,79.9333333333,17.7,44.8938888889,17.7,50.79,17.1,48.76,10.9,755.1666666667,81.6666666667,9,40,7.8666666667,22.1591359819,22.1591359819 -40,0,19.6,46,18.7,46,19.89,45.29,18.4266666667,47.4333333333,17.5,54.5,11.19,79.9633333333,17.7,44.8144444444,17.7,50.79,17.1,48.73,10.85,755.1333333333,81.8333333333,9,40,7.8333333333,31.6037616692,31.6037616692 -40,0,19.6,46.09,18.7,46,19.89,45.29,18.4266666667,47.4333333333,17.5,54.5,11.19,80.49,17.71,44.8266666667,17.7,50.78,17.1,48.73,10.8,755.1,82,9,40,7.8,38.99571785,38.99571785 -40,0,19.6,46.09,18.7,46,19.89,45.29,18.39,47.4,17.5,54.5,10.86,84.0233333333,17.71,44.845,17.7,50.78,17.1,48.7,10.7,755.0666666667,83,9,37.1666666667,7.8666666667,14.0236956417,14.0236956417 -40,0,19.5666666667,46.09,18.7,46.03,19.89,45.29,18.39,47.4666666667,17.5,54.4777777778,10.7266666667,85.43,17.7,44.8388888889,17.7,50.79,17.1,48.7,10.6,755.0333333333,84,9,34.3333333333,7.9333333333,6.160202832,6.160202832 -30,0,19.5,46.09,18.7,46.03,19.89,45.29,18.39,47.5,17.5,54.4944444444,10.53,88.2566666667,17.7,44.8877777778,17.7,50.79,17.1,48.7,10.5,755,85,9,31.5,8,44.6716593462,44.6716593462 -30,0,19.5,46.09,18.7,46.09,19.89,45.29,18.39,47.5,17.5,54.4611111111,10.295,91.6675,17.7,44.9,17.7,50.79,17.1,48.7,10.4,754.9666666667,86,9,28.6666666667,8.0666666667,20.2986650984,20.2986650984 -20,0,19.5,46.1633333333,18.7,46.09,19.89,45.23,18.39,47.5,17.5,54.4611111111,10.19,93.1666666667,17.7,44.9,17.7,50.79,17.1,48.76,10.3,754.9333333333,87,9,25.8333333333,8.1333333333,37.7554115257,37.7554115257 -30,0,19.5,46.2,18.7,46.09,19.89,45.2,18.39,47.56,17.5,54.4333333333,10.19,93.3666666667,17.7,44.9,17.7,50.79,17.1,48.7,10.2,754.9,88,9,23,8.2,5.5408631219,5.5408631219 -40,0,19.5,46.2,18.7,46.1633333333,19.89,45.2,18.39,47.59,17.5,54.4333333333,10.19,93.16,17.7,44.9,17.7,50.79,17.1,48.79,10.1666666667,754.9166666667,88.5,9,29.6666666667,8.25,16.9154656818,16.9154656818 -40,0,19.5,46.23,18.7,46.1266666667,19.8566666667,45.2,18.39,47.59,17.4877777778,54.3877777778,10.2633333333,93.6666666667,17.7,44.9,17.7,50.79,17.1,48.79,10.1333333333,754.9333333333,89,9,36.3333333333,8.3,27.324659552,27.324659552 -50,0,19.5,46.29,18.7,46.2,19.79,45.2,18.39,47.59,17.4877777778,54.3877777778,10.19,94.3333333333,17.7,44.9,17.7,50.8022222222,17.1,48.79,10.1,754.95,89.5,9,43,8.35,15.6066023395,15.6066023395 -40,0,19.5,46.29,18.6666666667,46.2,19.79,45.2,18.3233333333,47.59,17.4877777778,54.41,10.16,95.36,17.7,44.9,17.7,50.8266666667,17.1,48.79,10.0666666667,754.9666666667,90,9,49.6666666667,8.4,22.3647278501,22.3647278501 -40,0,19.4266666667,46.29,18.6666666667,46.26,19.79,45.1266666667,18.39,47.6633333333,17.4572222222,54.3572222222,10.0333333333,96.5,17.7,44.9,17.7,50.8755555556,17.1,48.79,10.0333333333,754.9833333333,90.5,9,56.3333333333,8.45,20.2140535694,20.2140535694 -40,0,19.39,46.29,18.6333333333,46.23,19.79,45.1633333333,18.39,47.6633333333,17.4572222222,54.3572222222,9.89,97.73,17.7,44.9,17.6777777778,50.8572222222,17.1,48.79,10,755,91,9,63,8.5,24.3282130454,24.3282130454 -40,0,19.39,46.29,18.7,46.29,19.79,45.1633333333,18.29,47.7,17.4816666667,54.3816666667,9.83,98.5233333333,17.7,44.9722222222,17.6666666667,50.9033333333,17.1,48.79,9.9333333333,755,91.3333333333,8.8333333333,63.3333333333,8.5,21.9584017643,21.9584017643 -50,0,19.39,46.3266666667,18.65,46.3,19.8233333333,45.23,18.29,47.7,17.4572222222,54.3572222222,9.8,99.29,17.7,45,17.6611111111,50.9611111111,17.1,48.79,9.8666666667,755,91.6666666667,8.6666666667,63.6666666667,8.5,13.3431813563,13.3431813563 -40,0,19.39,46.4,18.6,46.29,19.89,45.29,18.29,47.7,17.3961111111,54.2961111111,9.8,99.83,17.6888888889,44.9888888889,17.6611111111,50.9611111111,17.1,48.79,9.8,755,92,8.5,64,8.5,32.5938918279,32.5938918279 -30,0,19.39,46.4333333333,18.6,46.29,19.89,45.29,18.29,47.7,17.445,54.3144444444,9.8,99.9,17.6611111111,44.9611111111,17.7,51,17.075,48.7675,9.7333333333,755,92.3333333333,8.3333333333,64.3333333333,8.5,11.9524736539,11.9524736539 -40,0,19.365,46.5,18.6,46.29,19.89,45.29,18.29,47.76,17.4205555556,54.245,9.8,99.9,17.6555555556,44.9555555556,17.6722222222,50.9722222222,17.0666666667,48.8333333333,9.6666666667,755,92.6666666667,8.1666666667,64.6666666667,8.5,40.6657811371,40.6657811371 -30,0,19.29,46.5,18.6,46.29,19.89,45.26,18.29,47.79,17.445,54.255,9.69,99.9,17.6388888889,44.9538888889,17.6722222222,50.9722222222,17,48.79,9.6,755,93,8,65,8.5,40.4122251668,40.4122251668 -20,0,19.29,46.59,18.6,46.4,19.89,45.26,18.29,47.79,17.4327777778,54.245,9.69,99.9,17.65,45.045,17.6611111111,50.9766666667,17,48.79,9.6,755,93.1666666667,8.1666666667,57.6666666667,8.5166666667,29.4522373937,29.4522373937 -20,0,19.29,46.59,18.5333333333,46.4,19.84,45.245,18.29,47.8266666667,17.4022222222,54.21,9.66,99.9,17.6222222222,45.02,17.6333333333,51.0077777778,17,48.79,9.6,755,93.3333333333,8.3333333333,50.3333333333,8.5333333333,27.0933429827,27.0933429827 -30,0,19.29,46.59,18.6,46.5,19.79,45.2,18.29,47.9,17.39,54.22,9.6,99.9,17.6,45,17.6055555556,51.005,17,48.79,9.6,755,93.5,8.5,43,8.55,2.3273805622,2.3273805622 -40,0,19.29,46.6633333333,18.6,46.5,19.79,45.2,18.29,47.9,17.39,54.2,9.6,99.9,17.6,45.01,17.6388888889,51.035,17,48.79,9.6,755,93.6666666667,8.6666666667,35.6666666667,8.5666666667,21.2927845307,21.2927845307 -40,0,19.29,46.7,18.6,46.5,19.79,45.2,18.29,47.9,17.39,54.2,9.6,99.9,17.6,45.01,17.6222222222,51.025,17,48.79,9.6,755,93.8333333333,8.8333333333,28.3333333333,8.5833333333,32.031991065,32.031991065 -50,0,19.29,46.76,18.5333333333,46.5,19.79,45.2,18.2,47.79,17.39,54.2,9.6,99.9,17.6,45.055,17.6,51.06,17,48.79,9.6,755,94,9,21,8.6,0.0328173977,0.0328173977 -30,0,19.29,46.79,18.5,46.53,19.79,45.29,18.2,47.79,17.39,54.1816666667,9.6,99.9,17.6,45.09,17.6,51.09,17,48.8633333333,9.6333333333,755.0333333333,94,8.8333333333,27.6666666667,8.6333333333,43.3194180252,43.3194180252 -40,0,19.29,46.79,18.5,46.59,19.79,45.29,18.29,48,17.39,54.1266666667,9.6,99.9,17.6,45.09,17.6,51.09,17,48.9,9.6666666667,755.0666666667,94,8.6666666667,34.3333333333,8.6666666667,5.0522585283,5.0522585283 -40,0,19.29,46.79,18.5,46.6266666667,19.79,45.29,18.23,47.9333333333,17.39,54.1022222222,9.6,99.9,17.6,45.09,17.6,51.09,17,48.9,9.7,755.1,94,8.5,41,8.7,4.7869870672,4.7869870672 -50,0,19.29,46.79,18.5,46.7,19.79,45.29,18.2,47.9,17.39,54.1144444444,9.6,99.9,17.6,45.1022222222,17.6,51.09,17,48.9,9.7333333333,755.1333333333,94,8.3333333333,47.6666666667,8.7333333333,38.8620185549,38.8620185549 -40,0,19.29,46.9,18.5,46.7,19.79,45.29,18.2,47.9666666667,17.39,54.1144444444,9.6,99.9,17.6,45.1572222222,17.6,51.0961111111,17,48.9,9.7666666667,755.1666666667,94,8.1666666667,54.3333333333,8.7666666667,1.4755705721,1.4755705721 -50,0,19.23,46.8266666667,18.5,46.7,19.79,45.29,18.2,48,17.39,54.09,9.6,99.9,17.6,45.2,17.6,51.1511111111,17,48.9333333333,9.8,755.2,94,8,61,8.8,17.1035940177,17.1035940177 -40,0,19.29,46.9,18.5,46.73,19.79,45.29,18.2,48,17.39,54.09,9.6,99.9,17.6,45.21,17.6,51.1877777778,17,49,9.8,755.25,94.1666666667,7.8333333333,61.5,8.85,39.3157936982,39.3157936982 -40,0,19.23,46.8266666667,18.5,46.79,19.79,45.29,18.2,48,17.39,54.09,9.6,99.9,17.6,45.275,17.6166666667,51.215,17,49,9.8,755.3,94.3333333333,7.6666666667,62,8.9,5.6731262826,5.6731262826 -40,0,19.2,46.9,18.5,46.745,19.79,45.29,18.2,48,17.39,54.09,9.6,99.9,17.6,45.28,17.6055555556,51.215,17,49,9.8,755.35,94.5,7.5,62.5,8.95,17.5126378541,17.5126378541 -30,0,19.2,46.9,18.5,46.79,19.79,45.29,18.2,48.03,17.39,54.09,9.6,99.9,17.6,45.29,17.6,51.24,17,49,9.8,755.4,94.6666666667,7.3333333333,63,9,16.5106940898,16.5106940898 -30,0,19.2,46.9,18.5,46.79,19.79,45.29,18.2,48.09,17.39,54.09,9.69,99.9,17.6,45.29,17.6,51.285,17,49,9.8,755.45,94.8333333333,7.1666666667,63.5,9.05,34.8338334821,34.8338334821 -20,0,19.2,46.925,18.5,46.79,19.79,45.29,18.2,48.09,17.39,54.09,9.69,99.9,17.5777777778,45.3572222222,17.6,51.29,17,49,9.8,755.5,95,7,64,9.1,17.6807151176,17.6807151176 -30,0,19.2,47,18.5,46.8633333333,19.79,45.26,18.2,48.1266666667,17.39,54.07,9.69,99.9,17.5833333333,45.4,17.6,51.29,17,49.09,9.8,755.55,95.1666666667,6.8333333333,63.5,9.1166666667,20.3089533956,20.3089533956 -20,0,19.2,47,18.5,46.9333333333,19.79,45.2,18.1333333333,48.2,17.39,54.09,9.7633333333,99.9,17.5833333333,45.4,17.6,51.345,17,49.09,9.8,755.6,95.3333333333,6.6666666667,63,9.1333333333,15.4014949338,15.4014949338 -50,0,19.2,47,18.5,46.9333333333,19.79,45.2,18.1,48.2,17.39,54.075,9.8,99.9,17.55,45.4722222222,17.6,51.4,17,49.09,9.8,755.65,95.5,6.5,62.5,9.15,47.9601467261,47.9601467261 -40,0,19.2,47.09,18.5,47,19.79,45.29,18.1,48.2,17.39,54.045,9.8,99.9,17.5555555556,45.5,17.6,51.4,17,49.09,9.8,755.7,95.6666666667,6.3333333333,62,9.1666666667,34.5134426374,34.5134426374 -40,0,19.2,47.09,18.5,47,19.79,45.29,18.1,48.23,17.39,54.015,9.8,99.9,17.5388888889,45.5,17.6,51.4388888889,17,49.1266666667,9.8,755.75,95.8333333333,6.1666666667,61.5,9.1833333333,44.2869755672,44.2869755672 -40,0,19.2,47.09,18.39,46.9,19.79,45.29,18.1,48.29,17.39,54,9.8,99.9,17.5333333333,45.515,17.6,51.5,17,49.2,9.8,755.8,96,6,61,9.2,46.7927569756,46.7927569756 -40,0,19.1333333333,47.1633333333,18.39,46.9,19.79,45.29,18.1,48.29,17.39,54,9.8,99.9,17.5166666667,45.59,17.6,51.5,17,49.2,9.8333333333,755.9333333333,95.8333333333,5.6666666667,55.3333333333,9.2,37.2039950802,37.2039950802 -40,0,19.1,47.2,18.4633333333,47.06,19.79,45.29,18.1,48.29,17.39,54,9.8,99.9,17.5444444444,45.59,17.5888888889,51.52,17,49.2,9.8666666667,756.0666666667,95.6666666667,5.3333333333,49.6666666667,9.2,41.922307841,41.922307841 -50,0,19.1,47.2,18.4633333333,47.06,19.79,45.3633333333,18.1,48.3266666667,17.39,54,9.8,99.9,17.5166666667,45.59,17.5888888889,51.515,17,49.23,9.9,756.2,95.5,5,44,9.2,39.9678391754,39.9678391754 -50,0,19.1,47.23,18.39,47.09,19.79,45.4,18.1,48.4,17.39,54,9.8,99.9,17.5055555556,45.6816666667,17.5777777778,51.59,17,49.29,9.9333333333,756.3333333333,95.3333333333,4.6666666667,38.3333333333,9.2,44.6820146171,44.6820146171 -40,0,19.1,47.29,18.39,47.09,19.79,45.4,18.1,48.4,17.39,54,9.8,99.9,17.5,45.7,17.5777777778,51.5961111111,16.9266666667,49.29,9.9666666667,756.4666666667,95.1666666667,4.3333333333,32.6666666667,9.2,41.5568501456,41.5568501456 -40,0,19.1,47.4,18.39,47.09,19.79,45.4,18.1,48.4666666667,17.39,54,9.8,99.9,17.5,45.7,17.6,51.6633333333,17,49.29,10,756.6,95,4,27,9.2,18.5375050642,18.5375050642 -40,0,19.1,47.4,18.39,47.1633333333,19.79,45.4,18.1,48.5,17.39,53.9888888889,9.7266666667,99.9,17.5,45.725,17.6,51.6755555556,17,49.4,9.9666666667,756.7166666667,94.1666666667,4.1666666667,29.1666666667,9.0333333333,43.5989882913,43.5989882913 -20,0,19.1,47.4,18.39,47.23,19.79,45.4,18.1,48.5,17.3788888889,53.9888888889,9.69,99.9,17.5,45.76,17.6,51.7,17,49.4,9.9333333333,756.8333333333,93.3333333333,4.3333333333,31.3333333333,8.8666666667,40.0380798499,40.0380798499 -20,0,19.1,47.4,18.39,47.29,19.79,45.4,18.1,48.5,17.3566666667,54,9.63,99.9,17.5,45.715,17.5944444444,51.7,16.9633333333,49.4,9.9,756.95,92.5,4.5,33.5,8.7,8.8642271818,8.8642271818 -30,0,19.1,47.4333333333,18.39,47.245,19.79,45.3266666667,18.1,48.5,17.39,53.9833333333,9.5666666667,99.9,17.5,45.72,17.5833333333,51.6877777778,16.89,49.4,9.8666666667,757.0666666667,91.6666666667,4.6666666667,35.6666666667,8.5333333333,8.163884643,8.163884643 -30,0,19.1,47.5,18.39,47.2,19.79,45.4,18.1,48.59,17.3566666667,53.9944444444,9.5,99.9,17.5,45.7,17.5777777778,51.6877777778,16.9266666667,49.4,9.8333333333,757.1833333333,90.8333333333,4.8333333333,37.8333333333,8.3666666667,47.2244552686,47.2244552686 -50,0,19.1,47.5,18.39,47.2,19.76,45.3266666667,18.1,48.5675,17.3788888889,53.9611111111,9.39,99.9,17.5,45.7,17.5777777778,51.7,16.945,49.4,9.8,757.3,90,5,40,8.2,22.2318800748,22.2318800748 -50,0,19.1,47.5,18.39,47.2,19.7,45.4,18.1,48.56,17.3677777778,53.9333333333,9.33,99.9,17.5,45.645,17.5666666667,51.7,17,49.4,9.6666666667,757.55,89.5,5.1666666667,37.8333333333,7.9833333333,3.9196295082,3.9196295082 -30,0,19.1,47.5,18.39,47.2,19.79,45.5,18.1,48.5,17.3677777778,53.9333333333,9.16,99.9,17.5,45.58,17.5555555556,51.6877777778,16.9633333333,49.4,9.5333333333,757.8,89,5.3333333333,35.6666666667,7.7666666667,49.2785812123,49.2785812123 -40,0,19,47.4,18.3566666667,47.1633333333,19.79,45.5,18.1,48.5,17.3455555556,53.9333333333,9.075,99.9,17.5,45.535,17.5888888889,51.6205555556,16.89,49.4,9.4,758.05,88.5,5.5,33.5,7.55,0.7919109194,0.7919109194 -50,0,19,47.4,18.3566666667,47.09,19.79,45.5,18,48.4,17.3455555556,53.9,9,99.9,17.5,45.5,17.5777777778,51.59,16.9633333333,49.29,9.2666666667,758.3,88,5.6666666667,31.3333333333,7.3333333333,24.7441253508,24.7441253508 -30,0,19,47.4,18.3233333333,47.09,19.79,45.5,18,48.4,17.3455555556,53.8633333333,8.86,99.9,17.5,45.4277777778,17.55,51.535,16.9633333333,49.29,9.1333333333,758.55,87.5,5.8333333333,29.1666666667,7.1166666667,21.3313122164,21.3313122164 -50,0,19,47.3266666667,18.39,47.09,19.79,45.5,18.0666666667,48.43,17.3566666667,53.8877777778,8.7266666667,99.9,17.5,45.3327777778,17.5277777778,51.5,16.89,49.29,9,758.8,87,6,27,6.9,19.0032716841,19.0032716841 -50,0,19,47.29,18.39,47.09,19.79,45.5,18,48.29,17.3177777778,53.8083333333,8.6,99.9,17.4877777778,45.2327777778,17.5611111111,51.4388888889,16.89,49.23,8.8833333333,758.8666666667,87.3333333333,5.6666666667,27.3333333333,6.85,36.8472191622,36.8472191622 -40,0,19,47.23,18.39,47.03,19.79,45.5,18,48.2,17.3066666667,53.79,8.5333333333,99.9,17.4877777778,45.0961111111,17.5111111111,51.3694444444,16.89,49.1633333333,8.7666666667,758.9333333333,87.6666666667,5.3333333333,27.6666666667,6.8,13.9769176138,13.9769176138 -40,0,19,47.2,18.3566666667,46.9666666667,19.79,45.4666666667,18,48.2,17.3177777778,53.79,8.36,99.9,17.4877777778,45.065,17.5222222222,51.285,16.89,49.09,8.65,759,88,5,28,6.75,32.8141935985,32.8141935985 -40,0,19,47.2,18.29,46.9,19.79,45.4,18,48.09,17.29,53.79,8.3,99.9,17.4633333333,44.9611111111,17.5,51.21,16.89,49.06,8.5333333333,759.0666666667,88.3333333333,4.6666666667,28.3333333333,6.7,38.9863051358,38.9863051358 -30,0,19,47.2,18.3566666667,46.9,19.79,45.4,18,48.09,17.29,53.785,8.2266666667,99.9,17.4755555556,44.9,17.5333333333,51.1572222222,16.89,49,8.4166666667,759.1333333333,88.6666666667,4.3333333333,28.6666666667,6.65,36.1026252853,36.1026252853 -10,0,19,47.1266666667,18.29,46.9,19.73,45.4,18,48.09,17.29,53.74,8.2266666667,99.9,17.5,44.8938888889,17.5111111111,51.09,16.89,48.9,8.3,759.2,89,4,29,6.6,49.1203022189,49.1203022189 -20,0,19,47.09,18.29,46.9,19.7,45.29,18,48.03,17.29,53.71,8.1,99.9,17.4755555556,44.8022222222,17.5,51.09,16.89,48.9,8.1833333333,759.3666666667,88.6666666667,4.1666666667,30.8333333333,6.4166666667,27.1661358536,27.1661358536 -30,0,19,47.09,18.29,46.9,19.7,45.29,18,48,17.29,53.7,8.0333333333,99.9,17.4877777778,44.775,17.5,51.045,16.89,48.79,8.0666666667,759.5333333333,88.3333333333,4.3333333333,32.6666666667,6.2333333333,32.9943919322,32.9943919322 -50,0,18.9633333333,47.06,18.26,46.8633333333,19.6,45.1633333333,18,47.9333333333,17.29,53.6327777778,7.83,99.49,17.4083333333,44.6205555556,17.5,50.9944444444,16.89,48.79,7.95,759.7,88,4.5,34.5,6.05,13.7519680662,13.7519680662 -50,0,18.9633333333,47,18.2,46.73,19.6,45.1633333333,18,47.9,17.29,53.59,7.69,99.23,17.39,44.585,17.5,50.9111111111,16.89,48.7,7.8333333333,759.8666666667,87.6666666667,4.6666666667,36.3333333333,5.8666666667,19.8472062359,19.8472062359 -40,0,18.89,46.9,18.245,46.745,19.6,45.1633333333,17.9266666667,47.9,17.29,53.585,7.4666666667,99.1566666667,17.39,44.51,17.5,50.8877777778,16.89,48.7,7.7166666667,760.0333333333,87.3333333333,4.8333333333,38.1666666667,5.6833333333,27.9592289357,27.9592289357 -40,0,18.89,46.9,18.2,46.7,19.6,45.09,17.945,47.845,17.29,53.53,7.3333333333,99.23,17.39,44.4611111111,17.5,50.8327777778,16.89,48.6633333333,7.6,760.2,87,5,40,5.5,49.047514773,49.047514773 -40,0,18.89,46.9,18.2,46.7,19.5333333333,45.09,17.9633333333,47.76,17.29,53.5,7.3,99.6933333333,17.39,44.4,17.5,50.735,16.89,48.59,7.3833333333,760.3666666667,87.6666666667,4.5,38.1666666667,5.4166666667,48.2483388041,48.2483388041 -40,0,18.89,46.9,18.1666666667,46.7,19.5333333333,45.09,17.89,47.7,17.29,53.4777777778,7.2266666667,99.9,17.39,44.3327777778,17.4877777778,50.6877777778,16.89,48.53,7.1666666667,760.5333333333,88.3333333333,4,36.3333333333,5.3333333333,10.90199342,10.90199342 -40,0,18.89,46.79,18.1666666667,46.7,19.5,45.09,17.89,47.7,17.29,53.4388888889,7.245,99.9,17.39,44.29,17.4633333333,50.6633333333,16.8566666667,48.4666666667,6.95,760.7,89,3.5,34.5,5.25,19.6585434838,19.6585434838 -40,0,18.89,46.79,18.1,46.6633333333,19.5,45.0675,17.89,47.7,17.29,53.4,7.19,99.9,17.39,44.29,17.4816666667,50.6816666667,16.8566666667,48.4666666667,6.7333333333,760.8666666667,89.6666666667,3,32.6666666667,5.1666666667,43.5542241903,43.5542241903 -50,0,18.89,46.79,18.1,46.59,19.5,45.06,17.89,47.6633333333,17.29,53.4,7.0633333333,99.76,17.39,44.225,17.4572222222,50.6411111111,16.79,48.29,6.5166666667,761.0333333333,90.3333333333,2.5,30.8333333333,5.0833333333,34.5794431749,34.5794431749 -40,0,18.89,46.76,18.1666666667,46.59,19.6,45.1266666667,17.89,47.59,17.29,53.4,6.83,99.6233333333,17.39,44.145,17.4511111111,50.5388888889,16.79,48.29,6.3,761.2,91,2,29,5,16.8375768466,16.8375768466 -40,0,18.89,46.7,18.1,46.59,19.6,45.1266666667,17.89,47.59,17.29,53.3083333333,6.6233333333,99.3566666667,17.39,44.1022222222,17.4511111111,50.5138888889,16.79,48.2,6.2833333333,761.35,90.8333333333,2,29,4.95,34.5240836963,34.5240836963 -20,0,18.89,46.7,18.1,46.59,19.6333333333,45.1266666667,17.89,47.59,17.29,53.29,6.4333333333,99.06,17.39,44.055,17.4755555556,50.4888888889,16.79,48.2,6.2666666667,761.5,90.6666666667,2,29,4.9,7.6725121122,7.6725121122 -20,0,18.89,46.7,18.1,46.59,19.7,45.2,17.89,47.56,17.29,53.235,6.56,99.8666666667,17.39,44,17.4511111111,50.4433333333,16.79,48.1633333333,6.25,761.65,90.5,2,29,4.85,44.5199403795,44.5199403795 -20,0,18.79,46.59,18.1,46.59,19.7,45.09,17.89,47.5,17.29,53.21,6.6566666667,99.6,17.39,43.9944444444,17.4633333333,50.38,16.79,48.09,6.2333333333,761.8,90.3333333333,2,29,4.8,44.4223014405,44.4223014405 -40,0,18.79,46.59,18.1,46.59,19.7,45.09,17.8566666667,47.4,17.29,53.21,6.3966666667,98.6,17.39,43.9833333333,17.4083333333,50.2533333333,16.79,48,6.2166666667,761.95,90.1666666667,2,29,4.75,6.9001673721,6.9001673721 -50,0,18.79,46.59,18.1,46.59,19.6,45,17.8566666667,47.4,17.29,53.2,6.2633333333,98.3966666667,17.39,43.9105555556,17.39,50.2,16.79,48,6.2,762.1,90,2,29,4.7,1.7974607996,1.7974607996 -40,0,18.79,46.59,18.1,46.59,19.6,45,17.79,47.26,17.29,53.1938888889,5.9966666667,97.4566666667,17.39,43.8022222222,17.39,50.1327777778,16.79,47.9,6.0333333333,762.2333333333,89.8333333333,2,29,4.5,17.750857491,17.750857491 -40,0,18.79,46.5,18.0666666667,46.56,19.6,45,17.79,47.2,17.27,53.1572222222,5.4933333333,96.33,17.3344444444,43.785,17.39,50.08,16.79,47.9,5.8666666667,762.3666666667,89.6666666667,2,29,4.3,18.9473039121,18.9473039121 -40,0,18.79,46.5,18,46.5,19.6,45,17.79,47.2,17.29,53.1633333333,5.2266666667,96.19,17.3788888889,43.71,17.39,50.005,16.79,47.79,5.7,762.5,89.5,2,29,4.1,30.7388349087,30.7388349087 -40,0,18.79,46.5,18,46.5,19.7,45,17.79,47.2,17.29,53.1572222222,4.9333333333,96.4333333333,17.3511111111,43.6938888889,17.39,50,16.79,47.79,5.5333333333,762.6333333333,89.3333333333,2,29,3.9,25.3094720305,25.3094720305 -30,0,18.79,46.5,18,46.5,19.7,45,17.79,47.09,17.29,53.1572222222,4.7266666667,96.8333333333,17.29,43.6022222222,17.39,49.9388888889,16.79,47.7,5.3666666667,762.7666666667,89.1666666667,2,29,3.7,16.8977566529,16.8977566529 -40,0,18.79,46.5,18,46.5,19.7,44.9666666667,17.79,47.09,17.29,53.09,4.4333333333,96.3633333333,17.29,43.585,17.39,49.9,16.79,47.6266666667,5.2,762.9,89,2,29,3.5,16.4564826526,16.4564826526 -50,0,18.79,46.4333333333,18,46.4666666667,19.7,44.9666666667,17.79,47,17.29,53.09,4.16,95.49,17.29,43.4933333333,17.39,49.7933333333,16.745,47.59,4.95,763.0166666667,89.8333333333,2,28.8333333333,3.3833333333,28.6648519221,28.6648519221 -30,0,18.76,46.4,18,46.4,19.7,44.9,17.76,47,17.28,53.08,3.8,95,17.3122222222,43.4333333333,17.39,49.72,16.76,47.56,4.7,763.1333333333,90.6666666667,2,28.6666666667,3.2666666667,2.5355021819,2.5355021819 -40,0,18.76,46.4,17.89,46.4,19.7,44.8266666667,17.76,46.9333333333,17.28,53.065,3.56,95.3966666667,17.29,43.345,17.39,49.7,16.76,47.5,4.45,763.25,91.5,2,28.5,3.15,20.0481493725,20.0481493725 -10,0,18.7,46.345,17.89,46.4,19.7,44.79,17.76,46.9,17.29,53.045,3.4333333333,95.53,17.29,43.29,17.39,49.6105555556,16.7,47.4,4.2,763.3666666667,92.3333333333,2,28.3333333333,3.0333333333,13.0315521848,13.0315521848 -20,0,18.7,46.29,17.89,46.3266666667,19.7,44.7225,17.7,46.9,17.245,52.965,3.29,95.9666666667,17.29,43.265,17.39,49.505,16.7,47.4,3.95,763.4833333333,93.1666666667,2,28.1666666667,2.9166666667,8.4349841927,8.4349841927 -40,0,18.7,46.29,17.89,46.3266666667,19.7,44.6266666667,17.7,46.79,17.225,52.9277777778,3.29,96.3666666667,17.29,43.2,17.3788888889,49.5,16.76,47.29,3.7,763.6,94,2,28,2.8,2.9865502845,2.9865502845 -40,0,18.7,46.2,17.89,46.29,19.6,44.53,17.7,46.79,17.25,52.9377777778,3.26,96.4,17.29,43.145,17.3566666667,49.4166666667,16.7,47.23,3.85,763.75,93.8333333333,2,28.1666666667,2.9166666667,2.6291068061,2.6291068061 -40,0,18.7,46.2,17.89,46.23,19.6,44.59,17.7,46.7,17.235,52.8327777778,3.2,96.5266666667,17.29,43.09,17.3677777778,49.3694444444,16.7,47.2,4,763.9,93.6666666667,2,28.3333333333,3.0333333333,48.6385123921,48.6385123921 -50,0,18.7,46.1633333333,17.89,46.2,19.6,44.59,17.7,46.7,17.225,52.8205555556,3.2,96.7266666667,17.29,43.045,17.3455555556,49.29,16.7,47.1266666667,4.15,764.05,93.5,2,28.5,3.15,39.7303795093,39.7303795093 -50,0,18.7,46.1633333333,17.89,46.2,19.6,44.59,17.7,46.59,17.235,52.8327777778,3.2,96.9333333333,17.29,42.9833333333,17.34,49.29,16.7,47.06,4.3,764.2,93.3333333333,2,28.6666666667,3.2666666667,1.5833850834,1.5833850834 -40,0,18.7,46.2,17.89,46.4333333333,19.6,44.59,17.7,46.59,17.205,52.7961111111,3.29,97.3666666667,17.29,42.9,17.3233333333,49.215,16.7,47,4.45,764.35,93.1666666667,2,28.8333333333,3.3833333333,27.1642402513,27.1642402513 -40,0,18.7,46.26,17.89,46.56,19.6,44.59,17.7,46.56,17.235,52.8177777778,3.3633333333,97.3666666667,17.29,42.9,17.3455555556,49.1877777778,16.7,47,4.6,764.5,93,2,29,3.5,0.8798516705,0.8798516705 -40,0,18.6333333333,46.23,17.9266666667,46.56,19.6333333333,44.53,17.76,46.5,17.21,52.7522222222,3.4333333333,97.79,17.29,42.8816666667,17.3733333333,49.1205555556,16.7,46.9333333333,4.85,764.6,91.8333333333,2,29,3.5666666667,38.8334949035,38.8334949035 -40,0,18.7,46.29,18,46.5,19.7,44.59,17.79,46.5,17.23,52.7866666667,3.56,98.33,17.29,42.8022222222,17.39,49.09,16.79,46.8633333333,5.1,764.7,90.6666666667,2,29,3.6333333333,37.8650746658,37.8650746658 -30,0,18.7,46.29,18.0333333333,46.53,19.7,44.59,17.79,46.4333333333,17.225,52.725,3.8,98.9266666667,17.29,42.775,17.39,49.035,16.79,46.79,5.35,764.8,89.5,2,29,3.7,0.5274073337,0.5274073337 -20,0,18.7,46.29,18.1,46.4633333333,19.7,44.59,17.89,46.3633333333,17.215,52.715,4.2,99.6666666667,17.29,42.6916666667,17.39,48.9722222222,16.79,46.7,5.6,764.9,88.3333333333,2,29,3.7666666667,40.8957040985,40.8957040985 -20,0,18.7,46.4,18.2,46.26,19.6666666667,44.5266666667,17.9633333333,46.23,17.2,52.6327777778,4.53,99.9,17.29,42.545,17.39,48.7733333333,16.79,46.7,5.85,765,87.1666666667,2,29,3.8333333333,42.8172938293,42.8172938293 -30,0,18.76,46.4,18.2,46.1266666667,19.6,44.4,18.1,46.1633333333,17.235,52.6327777778,4.7725,99.9,17.3733333333,42.4205555556,17.39,48.6694444444,16.79,46.59,6.1,765.1,86,2,29,3.9,21.1154848803,21.1154848803 -50,0,18.79,46.29,18.245,46.09,19.6,44.4,18.175,45.9975,17.205,52.5961111111,4.9666666667,99.9,17.39,42.265,17.4083333333,48.55,16.79,46.59,6.2,765.1333333333,84.3333333333,1.8333333333,30.8333333333,3.7,31.714785262,31.714785262 -40,0,18.79,46.29,18.29,46,19.6,44.4666666667,18.2,45.9,17.2,52.59,5.0633333333,99.9,17.3961111111,42.1633333333,17.445,48.5172222222,16.79,46.59,6.3,765.1666666667,82.6666666667,1.6666666667,32.6666666667,3.5,20.9037512774,20.9037512774 -40,0,18.8233333333,46.3266666667,18.29,45.9333333333,19.6,44.5,18.2,45.9,17.2,52.555,5.33,99.9,17.4633333333,42.1511111111,17.4872222222,48.4666666667,16.89,46.6266666667,6.4,765.2,81,1.5,34.5,3.3,16.2332175067,16.2332175067 -40,0,18.89,46.3266666667,18.29,45.8633333333,19.6,44.5,18.2,45.9,17.215,52.515,5.6233333333,99.9,17.5,42.0811111111,17.5444444444,48.345,16.89,46.7,6.5,765.2333333333,79.3333333333,1.3333333333,36.3333333333,3.1,38.2893612958,38.2893612958 -50,0,18.89,46.2,18.29,45.73,19.7,44.6633333333,18.2,45.8633333333,17.205,52.505,5.7633333333,99.9,17.5277777778,41.9722222222,17.6,48.2288888889,16.89,46.7,6.6,765.2666666667,77.6666666667,1.1666666667,38.1666666667,2.9,35.2327756584,35.2327756584 -40,0,18.89,46.1175,18.39,45.7,19.65,44.545,18.2,45.79,17.2,52.5,5.9333333333,99.9,17.5666666667,41.8327777778,17.6,48.1022222222,16.89,46.7,6.7,765.3,76,1,40,2.7,45.952567854,45.952567854 -40,0,18.89,46.03,18.39,45.6266666667,19.7,44.59,18.2,45.76,17.2,52.4611111111,6.06,99.9,17.5888888889,41.765,17.6611111111,48.0944444444,16.89,46.73,6.8,765.2833333333,75.6666666667,1.1666666667,40,2.7333333333,30.5068275658,30.5068275658 -50,0,19,46,18.39,45.56,19.7,44.7,18.2,45.7,17.2,52.4277777778,6.19,99.6266666667,17.6611111111,41.755,17.7,48.0138888889,16.89,46.79,6.9,765.2666666667,75.3333333333,1.3333333333,40,2.7666666667,2.792743023,2.792743023 -50,0,19,45.9333333333,18.39,45.4333333333,19.7,44.6266666667,18.2,45.6633333333,17.2,52.4166666667,6.19,99.2266666667,17.7,41.7144444444,17.7,47.8994444444,16.89,46.79,7,765.25,75,1.5,40,2.8,36.8076067534,36.8076067534 -40,0,19,45.8633333333,18.39,45.4,19.7,44.6633333333,18.2,45.59,17.2,52.4,6.3,98.56,17.7805555556,41.59,17.745,47.8022222222,16.9633333333,46.73,7.1,765.2333333333,74.6666666667,1.6666666667,40,2.8333333333,45.1983959181,45.1983959181 -30,0,19.0666666667,45.79,18.39,45.3266666667,19.7,44.59,18.2,45.59,17.2,52.4,6.3,98.0333333333,17.8566666667,41.545,17.8511111111,47.755,16.89,46.7,7.2,765.2166666667,74.3333333333,1.8333333333,40,2.8666666667,35.0907439948,35.0907439948 -10,0,19.1,45.8266666667,18.39,45.26,19.7,44.56,18.2,45.59,17.2,52.334,6.4,97.4233333333,17.9572222222,41.4611111111,17.945,47.6694444444,16.9633333333,46.6266666667,7.3,765.2,74,2,40,2.9,28.8849754143,28.8849754143 -20,0,19.1,45.9,18.4633333333,45.26,19.7,44.5,18.2,45.59,17.2,52.29,6.4,96.63,18.05,41.4,18.1,47.5494444444,17,46.7,7.3,765.2166666667,73.5,2,40,2.8,28.2919625519,28.2919625519 -30,0,19.1333333333,45.9,18.5,45.26,19.7,44.5,18.2,45.53,17.2,52.29,6.4,94.8333333333,18.1,41.2733333333,18.2,47.3461111111,17,46.7,7.3,765.2333333333,73,2,40,2.7,18.3587752981,18.3587752981 -50,0,19.2,45.8266666667,18.5,45.2,19.7,44.5,18.2,45.5,17.2,52.29,6.4,94.2266666667,18.1,41.145,18.235,47.2188888889,17.1,46.7,7.3,765.25,72.5,2,40,2.6,27.8460854781,27.8460854781 -50,0,19.2,45.6633333333,18.5,45.26,19.7,44.5,18.2,45.5,17.2,52.27,6.6233333333,93.1,18.1,41.035,18.29,47.1022222222,17.1,46.6266666667,7.3,765.2666666667,72,2,40,2.5,44.8545084917,44.8545084917 -40,0,19.2,45.53,18.5,45.2,19.7,44.56,18.2,45.4,17.2,52.27,6.745,90.725,18.1722222222,40.95,18.29,46.9761111111,17.1,46.7,7.3,765.2833333333,71.5,2,40,2.4,13.6115303612,13.6115303612 -50,0,19.2,45.4,18.5,45.1633333333,19.7,44.5,18.2,45.4,17.2,52.23,6.69,86.46,18.1777777778,40.8033333333,18.29,46.8694444444,17.1,46.7,7.3,765.3,71,2,40,2.3,41.3166582701,41.3166582701 -40,0,19.2,45.4,18.5,45.09,19.7,44.5,18.2,45.3633333333,17.2,52.2,6.69,86.6566666667,18.2,40.6916666667,18.29,46.735,17.1,46.7,7.2833333333,765.2666666667,70.8333333333,2,38.1666666667,2.25,33.7997831288,33.7997831288 -40,0,19.2,45.29,18.5,45.09,19.7,44.5,18.2,45.345,17.2,52.2,6.69,85.3233333333,18.255,40.6511111111,18.29,46.6205555556,17.1,46.7,7.2666666667,765.2333333333,70.6666666667,2,36.3333333333,2.2,44.9683454586,44.9683454586 -40,0,19.26,45.29,18.5,45.06,19.7,44.5,18.2,45.29,17.2,52.1755555556,6.56,85.4266666667,18.29,40.5283333333,18.3122222222,46.515,17.1,46.645,7.25,765.2,70.5,2,34.5,2.15,14.8329906748,14.8329906748 -40,0,19.29,45.29,18.5,45,19.73,44.5,18.2,45.2,17.2,52.189,6.56,83.3,18.3511111111,40.3927777778,18.3233333333,46.4722222222,17.1,46.59,7.2333333333,765.1666666667,70.3333333333,2,32.6666666667,2.1,19.2732208408,19.2732208408 -50,0,19.29,45.29,18.5,45,19.79,44.5,18.2,45.2,17.2,52.0961111111,6.69,84.7933333333,18.39,40.245,18.3844444444,46.3327777778,17.1,46.59,7.2166666667,765.1333333333,70.1666666667,2,30.8333333333,2.05,45.2674838481,45.2674838481 -50,0,19.29,45.29,18.5,44.9333333333,19.79,44.4,18.2,45.09,17.2,52.1073684211,6.69,84.9333333333,18.4572222222,40.2,18.4205555556,46.29,17.1,46.5,7.2,765.1,70,2,29,2,39.0588205308,39.0588205308 -20,0,19.315,45.345,18.6,44.9,19.79,44.5,18.2,45.09,17.2,52.09,6.69,84.8666666667,18.55,40.145,18.5444444444,46.2166666667,17.1,46.5,7.1666666667,765.1,69.8333333333,2,30.8333333333,1.9333333333,27.1275458857,27.1275458857 -20,0,19.39,45.29,18.6,44.8266666667,19.79,44.4333333333,18.23,45.09,17.2,52.07,6.6233333333,83.6,18.6661111111,40.0094444444,18.6666666667,46.07,17.1,46.53,7.1333333333,765.1,69.6666666667,2,32.6666666667,1.8666666667,30.8140092995,30.8140092995 -20,0,19.4266666667,45.23,18.7,44.9,19.79,44.4,18.29,45.03,17.2,52.07,6.5,83.2266666667,18.7911111111,39.8927777778,18.755,45.97,17.1666666667,46.59,7.1,765.1,69.5,2,34.5,1.8,46.2868058006,46.2868058006 -20,0,19.5,45.23,18.7,44.8266666667,19.79,44.4,18.26,44.93,17.2,52.085,6.5,83.0333333333,18.8905555556,39.7872222222,18.79,45.7772222222,17.2,46.6566666667,7.0666666667,765.1,69.3333333333,2,36.3333333333,1.7333333333,15.1254217722,15.1254217722 -40,0,19.5,45.09,18.73,44.76,19.79,44.5,18.26,44.79,17.2,52.075,6.4,83.3933333333,18.9877777778,39.6205555556,18.8733333333,45.6938888889,17.2,46.93,7.0333333333,765.1,69.1666666667,2,38.1666666667,1.6666666667,18.1617606897,18.1617606897 -50,0,19.5,45.09,18.79,44.7,19.73,44.5,18.29,44.79,17.2,52.09,6.4,83.8666666667,19.0833333333,39.6144444444,18.945,45.5772222222,17.23,47.1266666667,7,765.1,69,2,40,1.6,48.0280475109,48.0280475109 -50,0,19.6,45.06,18.8233333333,44.59,19.79,44.53,18.29,44.79,17.2,52.055,6.19,83.7633333333,19.1,39.525,19.0055555556,45.4666666667,17.23,47.2,6.75,765.1,70.3333333333,2,40,1.6333333333,20.9788142703,20.9788142703 -40,0,19.6,45,18.8233333333,44.53,19.79,44.53,18.29,44.79,17.2,52.085,6.19,83.69,19.15,39.4388888889,19.05,45.3983333333,17.29,47.1333333333,6.5,765.1,71.6666666667,2,40,1.6666666667,28.2119751559,28.2119751559 -50,0,19.6,45,18.89,44.5,19.79,44.59,18.29,44.73,17.2,52.09,6.1566666667,82.3666666667,19.1666666667,39.2955555556,19.0944444444,45.3266666667,17.29,46.9333333333,6.25,765.1,73,2,40,1.7,40.0238166563,40.0238166563 -30,0,19.6,45,18.89,44.4333333333,19.79,44.59,18.29,44.43,17.2,52.09,5.895,83.12,19.2,39.2,19.0888888889,45.2127777778,17.29,46.76,6,765.1,74.3333333333,2,40,1.7333333333,23.9097479382,23.9097479382 -40,0,19.6,45.03,18.8566666667,44.3333333333,19.89,44.7,18.29,44.1566666667,17.2,52.09,5.6233333333,83.9933333333,19.1833333333,39.145,19.0388888889,45.1327777778,17.29,46.6266666667,5.75,765.1,75.6666666667,2,40,1.7666666667,43.5831766343,43.5831766343 -40,0,19.6,45.09,18.79,44.2,19.8233333333,44.6266666667,18.26,44.0266666667,17.2,52.09,5.3966666667,84.19,19.1111111111,39.09,19.0111111111,45.1022222222,17.29,46.56,5.5,765.1,77,2,40,1.8,35.0793712307,35.0793712307 -40,0,19.6,45,18.79,44.2,19.8233333333,44.6266666667,18.2,43.8266666667,17.2,52.09,4.9966666667,84.3966666667,19.1,39.07,18.945,45.0961111111,17.29,46.5,5.0333333333,765.1333333333,78.6666666667,2,40,1.6333333333,6.4183319104,6.4183319104 -40,0,19.5333333333,44.9333333333,18.79,44.2,19.89,44.6266666667,18.2,43.7,17.2,52.055,4.5266666667,85.1333333333,19.0388888889,38.9761111111,18.9022222222,45.145,17.23,46.4,4.5666666667,765.1666666667,80.3333333333,2,40,1.4666666667,32.5816782424,32.5816782424 -50,0,19.5,44.76,18.7,44.245,19.89,44.6633333333,18.2,43.7,17.2,52,4.1933333333,85.5266666667,19,38.9,18.8733333333,45.1816666667,17.23,46.3266666667,4.1,765.2,82,2,40,1.3,39.9754186627,39.9754186627 -50,0,19.5,44.6266666667,18.7,44.29,19.8233333333,44.53,18.1333333333,43.7,17.2,52,3.7233333333,86.1,18.9816666667,38.9883333333,18.79,45.1877777778,17.2,46.2,3.6333333333,765.2333333333,83.6666666667,2,40,1.1333333333,12.0082575595,12.0082575595 -30,0,19.5,44.56,18.7,44.29,19.8233333333,44.5,18.1,43.86,17.2,52,3.39,86.7,18.89,39.08,18.79,45.2,17.2,46.1633333333,3.1666666667,765.2666666667,85.3333333333,2,40,0.9666666667,43.1997666485,43.1997666485 -20,0,19.5,44.5,18.6,44.29,19.89,44.5,18.1,44.06,17.2,52,2.93,87.6666666667,18.8288888889,39.075,18.78,45.2,17.2,46.09,2.7,765.3,87,2,40,0.8,23.9397428581,23.9397428581 -20,0,19.4633333333,44.3633333333,18.6,44.29,19.89,44.345,18.1,44.23,17.2,52,2.73,88.2666666667,18.79,39,18.705,45.215,17.2,46.09,2.55,765.3666666667,87.6666666667,2.1666666667,37.8333333333,0.7333333333,16.4870807901,16.4870807901 -20,0,19.39,44.29,18.5333333333,44.29,19.79,44.1633333333,18.0333333333,44.29,17.1777777778,52,2.4666666667,88.9633333333,18.755,38.9944444444,18.7,45.3205555556,17.2,46.09,2.4,765.4333333333,88.3333333333,2.3333333333,35.6666666667,0.6666666667,49.7712807963,49.7712807963 -50,0,19.39,44.29,18.5333333333,44.23,19.79,44.09,18,44.3266666667,17.1777777778,52,2.2666666667,89.2966666667,18.7,38.9111111111,18.7,45.4,17.1,46.09,2.25,765.5,89,2.5,33.5,0.6,37.9771107226,37.9771107226 -40,0,19.39,44.2,18.5,44.29,19.79,44.09,18,44.4,17.1777777778,52,2,89.73,18.6611111111,38.9,18.6277777778,45.3511111111,17.1,46.03,2.1,765.5666666667,89.6666666667,2.6666666667,31.3333333333,0.5333333333,23.5532478313,23.5532478313 -50,0,19.39,44.2,18.5,44.29,19.73,44.09,17.9633333333,44.4,17.2,52,1.9333333333,90.9966666667,18.6,38.9,18.5944444444,45.4166666667,17.1,45.8633333333,1.95,765.6333333333,90.3333333333,2.8333333333,29.1666666667,0.4666666667,12.8792184987,12.8792184987 -50,0,19.29,44.2,18.4633333333,44.26,19.79,44.09,17.9633333333,44.4,17.1722222222,51.9722222222,1.9666666667,92.06,18.6,38.9,18.5722222222,45.5,17.1,45.73,1.8,765.7,91,3,27,0.4,19.1755613778,19.1755613778 -40,0,19.29,44.2,18.39,44.1266666667,19.79,44.09,17.9266666667,44.4,17.1666666667,51.9666666667,1.9,92.2,18.5277777778,38.9,18.5055555556,45.4944444444,17.1,45.6633333333,2.0666666667,765.7166666667,90.5,3.1666666667,27,0.6,14.8976805969,14.8976805969 -40,0,19.29,44.1266666667,18.39,44.2,19.79,44.06,17.9266666667,44.4,17.1111111111,51.9333333333,1.76,92.2333333333,18.5,38.9833333333,18.5,45.4611111111,17.1,45.59,2.3333333333,765.7333333333,90,3.3333333333,27,0.8,38.431314216,38.431314216 -40,0,19.29,44.1266666667,18.39,44.2,19.79,44,17.89,44.4,17.1,51.9111111111,1.6,92.195,18.4572222222,38.9611111111,18.4938888889,45.4944444444,17.1,45.5,2.6,765.75,89.5,3.5,27,1,21.4870236465,21.4870236465 -40,0,19.26,44.06,18.3566666667,44.2,19.79,43.9666666667,17.89,44.4,17.1,51.9111111111,1.5,92.8333333333,18.4022222222,38.9111111111,18.445,45.45,17.0333333333,45.36,2.8666666667,765.7666666667,89,3.6666666667,27,1.2,32.7983449097,32.7983449097 -30,0,19.2,44,18.29,44.2,19.79,43.9666666667,17.8233333333,44.3266666667,17.1,51.9,1.3566666667,92.66,18.39,38.9,18.3961111111,45.4055555556,17.1,45.3633333333,3.1333333333,765.7833333333,88.5,3.8333333333,27,1.4,12.1328440495,12.1328440495 -20,0,19.2,44,18.29,44.2,19.79,43.8633333333,17.8233333333,44.3266666667,17.1,51.9,1.29,92.9333333333,18.3511111111,38.9611111111,18.3566666667,45.4,17.0333333333,45.23,3.4,765.8,88,4,27,1.6,14.7592299851,14.7592299851 -20,0,19.2,44,18.29,44.2,19.73,43.79,17.79,44.29,17.1,51.9,1.2,93.3333333333,18.29,39,18.3288888889,45.4,17,45.09,3.2333333333,765.8333333333,88.5,3.8333333333,27,1.5,46.4959680918,46.4959680918 -30,0,19.1666666667,44.09,18.2,44.09,19.7,43.76,17.79,44.29,17.1,51.9,1.2,93.4,18.285,38.9944444444,18.3011111111,45.4,17,45.03,3.0666666667,765.8666666667,89,3.6666666667,27,1.4,6.973286788,6.973286788 -40,0,19.1,44.03,18.2,44.09,19.7,43.7,17.79,44.2,17.1,51.9111111111,1.1,93.5266666667,18.25,39.0033333333,18.29,45.4166666667,17,44.9666666667,2.9,765.9,89.5,3.5,27,1.3,24.1180589772,24.1180589772 -40,0,19.1,44,18.2,44.09,19.7,43.59,17.79,44.2,17.1,51.9111111111,1.1,93.5933333333,18.2,39,18.265,45.45,17,44.9,2.7333333333,765.9333333333,90,3.3333333333,27,1.2,40.0862854323,40.0862854323 -50,0,19.1,44,18.1666666667,44.09,19.7,43.6633333333,17.79,44.2,17.1,51.9,1.0333333333,93.9666666667,18.2,39.045,18.2,45.3938888889,17,44.845,2.5666666667,765.9666666667,90.5,3.1666666667,27,1.1,16.7649061303,16.7649061303 -30,0,19.0666666667,43.9666666667,18.1,44.09,19.7,43.7,17.7,44.1266666667,17.1,51.9,1.1,94.3,18.1888888889,39.09,18.2,45.3572222222,16.9633333333,44.76,2.4,766,91,3,27,1,27.3650463903,27.3650463903 -40,0,19,43.9,18.1,44.1266666667,19.7,43.7,17.7,44.2,17.1,51.9,1.0333333333,94.6,18.1388888889,39.09,18.2,45.4,16.9633333333,44.7,2.45,765.95,90.8333333333,3.1666666667,27.1666666667,1.0333333333,2.5306881871,2.5306881871 -50,0,19,43.8633333333,18.1,44.2,19.7,43.7,17.7,44.1633333333,17.1,51.9,1.1,95,18.1,39.09,18.1888888889,45.4,16.89,44.59,2.5,765.9,90.6666666667,3.3333333333,27.3333333333,1.0666666667,34.2592417612,34.2592417612 -40,0,19,43.79,18.1,44.1633333333,19.7,43.6633333333,17.7,44.09,17.1,51.9,1.0666666667,94.83,18.1,39.09,18.1277777778,45.4,16.89,44.59,2.55,765.85,90.5,3.5,27.5,1.1,26.3008284266,26.3008284266 -50,0,19,43.79,18.1,44.1633333333,19.7,43.59,17.7,44.09,17.1,51.8327777778,0.9333333333,94.7633333333,18.05,39.045,18.1,45.4,16.89,44.5,2.6,765.8,90.3333333333,3.6666666667,27.6666666667,1.1333333333,19.2700732034,19.2700732034 -40,0,18.9633333333,43.79,18,44.1633333333,19.7,43.59,17.7,44.09,17.0666666667,51.76,0.9,94.9633333333,18.0111111111,39.01,18.1,45.4,16.89,44.5,2.65,765.75,90.1666666667,3.8333333333,27.8333333333,1.1666666667,10.9039084171,10.9039084171 -40,0,18.89,43.79,18,44.09,19.7,43.59,17.6333333333,44,17.0666666667,51.76,0.9,95.09,18,39,18.1,45.4,16.89,44.4,2.7,765.7,90,4,28,1.2,2.4628018145,2.4628018145 -40,0,18.89,43.79,18,44.1266666667,19.7,43.5,17.6333333333,44,17.0666666667,51.76,0.85,95.045,18,39,18.0722222222,45.4,16.89,44.4,2.7666666667,765.7,89.3333333333,4.1666666667,30,1.1666666667,16.9301925693,16.9301925693 -20,0,18.89,43.79,18,44.1266666667,19.7,43.5,17.6,43.9666666667,17.0111111111,51.71,0.8,95.0633333333,17.9938888889,39,18.0111111111,45.3388888889,16.89,44.29,2.8333333333,765.7,88.6666666667,4.3333333333,32,1.1333333333,26.3771420228,26.3771420228 -20,0,18.89,43.79,18,44.09,19.7,43.4666666667,17.6,43.9666666667,17.0166666667,51.6722222222,0.8,95.1233333333,17.9022222222,39,18,45.2961111111,16.8233333333,44.23,2.9,765.7,88,4.5,34,1.1,18.0049766786,18.0049766786 -30,0,18.89,43.79,18,44.09,19.6333333333,43.3266666667,17.6,43.9,17,51.6266666667,0.7,95.2266666667,17.89,39,18,45.3327777778,16.8566666667,44.1633333333,2.9666666667,765.7,87.3333333333,4.6666666667,36,1.0666666667,49.5794518501,49.5794518501 -20,0,18.79,43.7,17.89,44.1633333333,19.6,43.1633333333,17.6,43.9,17,51.59,0.7666666667,95.56,17.89,39,17.9938888889,45.3327777778,16.79,44.09,3.0333333333,765.7,86.6666666667,4.8333333333,38,1.0333333333,2.3179056472,2.3179056472 -50,0,18.79,43.7,17.89,44.09,19.6,43.09,17.6,43.9,17,51.59,0.8,95.7266666667,17.89,39,17.9022222222,45.3022222222,16.79,44.06,3.1,765.7,86,5,40,1,3.5950946971,3.5950946971 -40,0,18.8566666667,43.7233333333,17.89,44.09,19.6,43.09,17.6,43.9,17,51.575,0.8,95.8,17.89,39,17.9144444444,45.3266666667,16.79,44,3.0833333333,765.6166666667,86,5,40,0.9833333333,33.818361524,33.818361524 -40,0,18.79,43.59,17.89,44.09,19.6,43.09,17.6,43.9,17,51.55,0.8,95.7933333333,17.8733333333,38.9833333333,17.89,45.3205555556,16.79,43.9666666667,3.0666666667,765.5333333333,86,5,40,0.9666666667,8.1179806264,8.1179806264 -40,0,18.79,43.59,17.89,44.09,19.6,43.09,17.5333333333,43.9,17,51.5,0.8,96.06,17.79,38.9333333333,17.89,45.345,16.79,43.9,3.05,765.45,86,5,40,0.95,29.0186896338,29.0186896338 -40,0,18.79,43.59,17.89,44.1633333333,19.5333333333,43.09,17.5,43.845,17,51.5,0.9,96.4,17.79,38.9944444444,17.89,45.29,16.79,43.9,3.0333333333,765.3666666667,86,5,40,0.9333333333,4.5382926939,4.5382926939 -40,0,18.79,43.59,17.79,44.09,19.5666666667,43.09,17.5,43.8633333333,17,51.5,0.8333333333,96.1933333333,17.79,38.9722222222,17.89,45.29,16.79,43.9,3.0166666667,765.2833333333,86,5,40,0.9166666667,32.8049580567,32.8049580567 -50,0,18.79,43.59,17.79,44.09,19.5,43.09,17.5,43.79,17,51.4611111111,0.9,96.3966666667,17.785,38.9,17.8344444444,45.24,16.745,43.79,3,765.2,86,5,40,0.9,17.8753291606,17.8753291606 -50,0,18.7,43.5,17.79,44.09,19.5,43.09,17.5,43.79,17,51.4222222222,0.9,96.59,17.72,38.9111111111,17.7955555556,45.205,16.7,43.79,3.0666666667,765.1833333333,85.5,5,40,0.8666666667,11.7012740113,11.7012740113 -40,0,18.7,43.5,17.79,44.09,19.55,43.0675,17.5,43.79,17,51.4222222222,1,96.8,17.71,38.9333333333,17.79,45.2,16.7,43.73,3.1333333333,765.1666666667,85,5,40,0.8333333333,45.8215167979,45.8215167979 -20,0,18.7,43.5,17.79,44.09,19.5666666667,43,17.4633333333,43.76,17,51.4,1,96.9333333333,17.7,38.9722222222,17.79,45.2,16.7,43.7,3.2,765.15,84.5,5,40,0.8,1.5277500148,1.5277500148 -20,0,18.7,43.5,17.79,44.09,19.5666666667,42.9666666667,17.39,43.7,17,51.4,1.1,97,17.7,38.9277777778,17.79,45.2,16.7,43.7,3.2666666667,765.1333333333,84,5,40,0.7666666667,21.9537020777,21.9537020777 -20,0,18.7,43.5,17.79,44.09,19.5,42.8266666667,17.39,43.7,16.945,51.4,1.1,97.075,17.7,38.9111111111,17.785,45.2,16.7,43.7,3.3333333333,765.1166666667,83.5,5,40,0.7333333333,48.6845160602,48.6845160602 -30,0,18.6666666667,43.4666666667,17.76,44.09,19.5,42.79,17.39,43.7,16.9816666667,51.3572222222,1.1666666667,97.3,17.7,38.9,17.73,45.1877777778,16.7,43.6266666667,3.4,765.1,83,5,40,0.7,19.9570403784,19.9570403784 -50,0,18.6,43.4,17.7,44.09,19.5,42.73,17.39,43.6266666667,16.9205555556,51.3144444444,1.2,97.3666666667,17.7,38.9,17.72,45.1877777778,16.7,43.59,3.3666666667,765.1,83.1666666667,5,40,0.7,45.9884932847,45.9884932847 -50,0,18.6,43.4,17.7,44.1266666667,19.39,42.6266666667,17.39,43.6266666667,16.9022222222,51.29,1.26,97.56,17.6388888889,38.8327777778,17.7,45.2,16.7,43.59,3.3333333333,765.1,83.3333333333,5,40,0.7,4.9381937832,4.9381937832 -40,0,18.6,43.4,17.7,44.1266666667,19.39,42.7,17.39,43.59,16.9205555556,51.29,1.26,97.33,17.6,38.79,17.7,45.2,16.7,43.5,3.3,765.1,83.5,5,40,0.7,16.0333505017,16.0333505017 -50,0,18.6,43.4,17.7,44.09,19.4266666667,42.73,17.39,43.59,16.8961111111,51.29,1.2,97.19,17.6,38.79,17.7,45.1633333333,16.6333333333,43.4333333333,3.2666666667,765.1,83.6666666667,5,40,0.7,26.3009531191,26.3009531191 -40,0,18.6,43.4,17.7,44.09,19.4266666667,42.73,17.39,43.59,16.89,51.245,1.2,97.26,17.6,38.79,17.7,45.1327777778,16.6,43.3633333333,3.2333333333,765.1,83.8333333333,5,40,0.7,3.6667712498,3.6667712498 -40,0,18.6,43.29,17.7,44.09,19.5,42.76,17.39,43.59,16.89,51.2,1.26,97.4666666667,17.5777777778,38.79,17.6833333333,45.0872222222,16.6,43.29,3.2,765.1,84,5,40,0.7,42.4870875897,42.4870875897 -40,0,18.6,43.29,17.6333333333,44.03,19.4266666667,42.7,17.39,43.59,16.89,51.2,1.39,97.69,17.5833333333,38.79,17.6111111111,45.01,16.6,43.29,3.3166666667,765,83.3333333333,5.1666666667,40,0.7,21.1529004504,21.1529004504 -40,0,18.6,43.29,17.6,44.03,19.39,42.59,17.3233333333,43.59,16.89,51.2,1.4633333333,97.69,17.5222222222,38.79,17.6,45,16.6,43.29,3.4333333333,764.9,82.6666666667,5.3333333333,40,0.7,49.4048036519,49.4048036519 -40,0,18.5333333333,43.29,17.6,44.03,19.39,42.59,17.29,43.59,16.89,51.2,1.6333333333,98.0633333333,17.5111111111,38.79,17.6,45,16.6,43.29,3.55,764.8,82,5.5,40,0.7,23.9437064389,23.9437064389 -50,0,18.5,43.29,17.6,44,19.39,42.59,17.29,43.59,16.89,51.1572222222,1.76,98.19,17.5,38.79,17.6,45,16.6,43.23,3.6666666667,764.7,81.3333333333,5.6666666667,40,0.7,45.2847002773,45.2847002773 -40,0,18.5,43.29,17.6,44,19.39,42.59,17.29,43.59,16.89,51.09,1.9333333333,98.3,17.5,38.79,17.6,45,16.6,43.2,3.7833333333,764.6,80.6666666667,5.8333333333,40,0.7,0.925296545,0.925296545 -20,0,18.5,43.29,17.6,43.95,19.39,42.56,17.29,43.53,16.89,51.09,2,98.3,17.5,38.79,17.5833333333,45,16.6,43.2,3.9,764.5,80,6,40,0.7,9.6071911044,9.6071911044 -20,0,18.5,43.29,17.6,44,19.39,42.56,17.29,43.53,16.89,51.09,2.1266666667,98.4333333333,17.4877777778,38.78,17.5611111111,45,16.5333333333,43.2,3.95,764.55,80.3333333333,6,40,0.8,19.2153510288,19.2153510288 -20,0,18.5,43.29,17.5333333333,43.9333333333,19.39,42.4666666667,17.29,43.56,16.89,51.085,2.3333333333,98.56,17.4633333333,38.78,17.5666666667,45,16.5,43.2,4,764.6,80.6666666667,6,40,0.9,15.3718212037,15.3718212037 -30,0,18.5,43.29,17.5,44,19.2925,42.3725,17.29,43.56,16.89,51.04,2.345,98.45,17.4633333333,38.77,17.55,45,16.5,43.2,4.05,764.65,81,6,40,1,26.4145626687,26.4145626687 -50,0,18.5,43.29,17.5,44,19.2,42.29,17.26,43.56,16.8622222222,50.9822222222,2.6266666667,98.66,17.3961111111,38.745,17.5444444444,45,16.5,43.1633333333,4.1,764.7,81.3333333333,6,40,1.1,36.4112840849,36.4112840849 -40,0,18.5,43.23,17.5,43.9,19.2,42.29,17.26,43.5,16.8511111111,50.9611111111,2.76,98.8,17.39,38.745,17.5111111111,45,16.5,43.09,4.15,764.75,81.6666666667,6,40,1.2,47.6778267184,47.6778267184 -50,0,18.445,43.145,17.5,43.9,19.1333333333,42.29,17.2,43.4333333333,16.8677777778,50.9777777778,2.9633333333,99.03,17.39,38.763,17.5,45,16.5,43.09,4.2,764.8,82,6,40,1.3,24.7997063561,24.7997063561 -40,0,18.39,43.09,17.5,43.9,19.1,42.29,17.2,43.4333333333,16.89,51,3.1633333333,99.09,17.39,38.7521052632,17.5,45,16.5,43.09,4.25,764.75,81.8333333333,6,40,1.3333333333,6.6008623573,6.6008623573 -50,0,18.39,43.09,17.4266666667,43.8266666667,19.1,42.3633333333,17.2,43.4666666667,16.8677777778,50.9555555556,3.3266666667,99.1233333333,17.39,38.79,17.5,45.035,16.5,43.09,4.3,764.7,81.6666666667,6,40,1.3666666667,30.4234377807,30.4234377807 -40,0,18.39,43.09,17.39,43.79,19.1,42.4,17.2,43.4666666667,16.8511111111,50.9183333333,3.5266666667,99.2633333333,17.39,38.79,17.4755555556,45.02,16.5,43.09,4.35,764.65,81.5,6,40,1.4,49.5934289764,49.5934289764 -40,0,18.39,43.09,17.39,43.79,19.1666666667,42.4,17.2,43.4333333333,16.8233333333,50.8377777778,3.6266666667,99.19,17.39,38.79,17.4388888889,45.04,16.5,43.09,4.4,764.6,81.3333333333,6,40,1.4333333333,4.7354834038,4.7354834038 -20,0,18.3566666667,43.09,17.39,43.79,19.1,42.3633333333,17.2,43.5,16.8122222222,50.8144444444,3.6266666667,98.8566666667,17.3455555556,38.79,17.4633333333,45.06,16.5,43.09,4.45,764.55,81.1666666667,6,40,1.4666666667,44.7641728562,44.7641728562 -30,0,18.29,43.09,17.39,43.79,19.1,42.43,17.2,43.5,16.79,50.79,3.59,98.3666666667,17.3344444444,38.8266666667,17.445,45.06,16.5,43.09,4.5,764.5,81,6,40,1.5,16.7430448812,16.7430448812 -20,0,18.29,43.09,17.39,43.79,19.1,42.29,17.2,43.5,16.79,50.79,3.6633333333,98.3,17.29,38.8022222222,17.39,45.005,16.4266666667,43.03,4.4666666667,764.4333333333,81.1666666667,6.3333333333,40,1.5,23.608923296,23.608923296 -20,0,18.29,43.09,17.3233333333,43.79,19.1,42.29,17.1333333333,43.5,16.79,50.77,3.6333333333,97.5633333333,17.29,38.8022222222,17.4388888889,45.04,16.39,43.03,4.4333333333,764.3666666667,81.3333333333,6.6666666667,40,1.5,8.855898492,8.855898492 -50,0,18.29,43.09,17.29,43.76,19,42.2,17.1333333333,43.5,16.79,50.745,3.4333333333,96.5633333333,17.29,38.8755555556,17.4144444444,45.025,16.39,43.03,4.4,764.3,81.5,7,40,1.5,17.5827514147,17.5827514147 -40,0,18.29,43.09,17.29,43.76,19.0666666667,42.26,17.1,43.5,16.79,50.7,3.3633333333,95.7966666667,17.29,38.9,17.39,45.045,16.39,43,4.3666666667,764.2333333333,81.6666666667,7.3333333333,40,1.5,8.8279557764,8.8279557764 -40,0,18.29,43.09,17.29,43.79,19.0333333333,42.23,17.1,43.5,16.79,50.7,3.23,95.3966666667,17.29,38.812,17.39,45.085,16.39,43,4.3333333333,764.1666666667,81.8333333333,7.6666666667,40,1.5,32.6522889081,32.6522889081 -40,0,18.29,43.09,17.29,43.79,19.1,42.3633333333,17.1,43.56,16.79,50.6938888889,3.2,95.1566666667,17.29,38.8594736842,17.39,45.09,16.39,43,4.3,764.1,82,8,40,1.5,11.8050538586,11.8050538586 -40,0,18.23,43.03,17.29,43.79,19.1333333333,42.29,17.1,43.5,16.79,50.6388888889,3.1175,94.945,17.29,38.8938888889,17.39,45.09,16.39,43.045,4.35,764.1166666667,82,7.6666666667,40,1.55,44.8582002195,44.8582002195 -40,0,18.23,43.03,17.29,43.9,19.1333333333,42.23,17.1,43.56,16.79,50.6633333333,3.09,95.03,17.29,38.9,17.3788888889,45.09,16.39,43,4.4,764.1333333333,82,7.3333333333,40,1.6,16.9573804014,16.9573804014 -40,0,18.2,43.09,17.29,43.9666666667,19.2,42.23,17.1,43.53,16.79,50.6266666667,3.23,95.3233333333,17.275,38.8572222222,17.3344444444,45.09,16.39,43,4.45,764.15,82,7,40,1.65,46.1898055859,46.1898055859 -50,0,18.2,43.09,17.23,43.9333333333,19.2,42.2225,17.1,43.59,16.79,50.59,3.43,95.7966666667,17.24,38.8388888889,17.3511111111,45.09,16.39,43,4.5,764.1666666667,82,6.6666666667,40,1.7,24.8869426316,24.8869426316 -50,0,18.2,43.09,17.29,44,19.2,42.26,17.1,43.59,16.79,50.59,3.6933333333,96.16,17.2,38.79,17.3344444444,45.09,16.39,43.03,4.55,764.1833333333,82,6.3333333333,40,1.75,28.4920689766,28.4920689766 -20,0,18.2,43.09,17.26,44,19.2,42.2,17.0333333333,43.53,16.77,50.59,3.9666666667,96.0333333333,17.2,38.79,17.3011111111,45.09,16.39,43.03,4.6,764.2,82,6,40,1.8,36.8389869458,36.8389869458 -20,0,18.2,43.2,17.26,44.06,19.2,42.2,17,43.5,16.77,50.59,4.2266666667,95.4566666667,17.2,38.79,17.29,45.1327777778,16.39,43.09,4.65,764.1333333333,81.8333333333,6.3333333333,40,1.8166666667,10.7413760037,10.7413760037 -20,0,18.2,43.2,17.2,44.09,19.2,42.06,17,43.5,16.785,50.59,4.3666666667,94.5966666667,17.2,38.8511111111,17.29,45.2,16.39,43.09,4.7,764.0666666667,81.6666666667,6.6666666667,40,1.8333333333,15.2656378807,15.2656378807 -30,0,18.2,43.26,17.2,44.09,19.2,42,17,43.5,16.72,50.59,4.53,93.79,17.2,38.8572222222,17.29,45.2,16.3566666667,43.09,4.75,764,81.5,7,40,1.85,43.1749930605,43.1749930605 -40,0,18.1666666667,43.29,17.2,44.09,19.2,42,17,43.5,16.75,50.59,4.59,92.3966666667,17.2,38.8877777778,17.29,45.2,16.29,43.09,4.8,763.9333333333,81.3333333333,7.3333333333,40,1.8666666667,9.7860027105,9.7860027105 -40,0,18.1,43.29,17.2,44.09,19.1333333333,42,17,43.59,16.7,50.575,4.6566666667,91.5333333333,17.2,38.9,17.29,45.255,16.29,43.09,4.85,763.8666666667,81.1666666667,7.6666666667,40,1.8833333333,42.5472750794,42.5472750794 -50,0,18.1,43.29,17.2,44.09,19.1,42.09,17,43.59,16.7,50.53,4.53,90.06,17.1888888889,38.9,17.275,45.255,16.29,43.09,4.9,763.8,81,8,40,1.9,47.3485478899,47.3485478899 -40,0,18.1,43.29,17.2,44.09,19.1,42.09,17,43.59,16.7,50.51,4.5,89.86,17.1611111111,38.9,17.285,45.285,16.29,43.09,4.9666666667,763.8166666667,81,8,40,1.9666666667,13.7280556024,13.7280556024 -40,0,18.1,43.3266666667,17.2,44.1633333333,19.1333333333,42.09,17,43.59,16.7,50.51,4.56,90.5933333333,17.1277777778,38.9,17.26,45.26,16.29,43.09,5.0333333333,763.8333333333,81,8,40,2.0333333333,41.9928024756,41.9928024756 -40,0,18.1,43.4,17.2,44.09,19.2,42.09,17,43.59,16.7,50.5,4.76,90.9333333333,17.1277777778,38.9,17.225,45.225,16.29,43.09,5.1,763.85,81,8,40,2.1,7.1927882847,7.1927882847 -40,0,18.1,43.4,17.2,44.2,19.2,42.09,17,43.59,16.7,50.5,4.9666666667,90.3933333333,17.1222222222,38.9,17.2,45.2,16.29,43.09,5.1666666667,763.8666666667,81,8,40,2.1666666667,37.8525185632,37.8525185632 -40,0,18.1,43.4,17.1333333333,44.2,19.1333333333,42.09,16.89,43.6266666667,16.7,50.5,5.03,89.7633333333,17.1,38.9055555556,17.2,45.215,16.29,43.2,5.2333333333,763.8833333333,81,8,40,2.2333333333,22.3063282785,22.3063282785 -40,0,18.1,43.4,17.1,44.2,19.1666666667,42.09,16.89,43.645,16.7,50.5,5.1925,89.595,17.1,38.9666666667,17.2,45.27,16.29,43.2,5.3,763.9,81,8,40,2.3,47.7715888177,47.7715888177 -20,0,18.1,43.4,17.1,44.2,19.1666666667,42.09,16.9633333333,43.7,16.7,50.5,5.3666666667,89.1566666667,17.1,38.9777777778,17.2,45.29,16.29,43.2,5.4,763.9166666667,81.1666666667,8.1666666667,40,2.4166666667,31.7662530229,31.7662530229 -20,0,18.0666666667,43.4,17.1,44.2,19.1666666667,42.06,16.89,43.7,16.7,50.5,5.53,88.7966666667,17.1,39,17.2,45.29,16.29,43.2225,5.5,763.9333333333,81.3333333333,8.3333333333,40,2.5333333333,8.2050493453,8.2050493453 -30,0,18,43.3266666667,17.1,44.2,19.1,42,16.89,43.76,16.7,50.5,5.6566666667,88.3966666667,17.1,39,17.2,45.3572222222,16.29,43.23,5.6,763.95,81.5,8.5,40,2.65,20.348471764,20.348471764 -40,0,18.0333333333,43.36,17.1,44.2,19.1,41.9,16.89,43.73,16.7,50.5,5.7266666667,86.9933333333,17.1,39,17.2,45.4,16.29,43.29,5.7,763.9666666667,81.6666666667,8.6666666667,40,2.7666666667,48.9880013396,48.9880013396 -40,0,18.0333333333,43.4333333333,17.1,44.2,19.1,41.9333333333,16.89,43.79,16.7,50.5,5.8666666667,86.8,17.1,39.035,17.2,45.4,16.29,43.29,5.8,763.9833333333,81.8333333333,8.8333333333,40,2.8833333333,7.3469529394,7.3469529394 -40,0,18,43.4,17.1,44.2,19.1,42,16.89,43.79,16.7,50.5,6.03,85.8666666667,17.1,39.09,17.2,45.4,16.29,43.29,5.9,764,82,9,40,3,44.4992592442,44.4992592442 -40,0,18,43.4666666667,17.1,44.2,19.1,42,16.89,43.79,16.7,50.4777777778,6.1566666667,85.3933333333,17.1,39.09,17.2,45.4,16.29,43.29,6.05,763.95,81.6666666667,8.8333333333,40,3.1,9.8351743771,9.8351743771 -40,0,18,43.5,17.1666666667,44.2,19.1,42,16.89,43.8266666667,16.7,50.4388888889,6.3,85.19,17.1,39.09,17.1777777778,45.4,16.29,43.29,6.2,763.9,81.3333333333,8.6666666667,40,3.2,31.0293535935,31.0293535935 -40,0,18,43.5,17.1,44.2,19.1,42.09,16.89,43.8266666667,16.7,50.4,6.4333333333,85.3966666667,17.0666666667,39.0961111111,17.2,45.4388888889,16.29,43.29,6.35,763.85,81,8.5,40,3.3,39.6270496538,39.6270496538 -50,0,18,43.5,17.1666666667,44.2,19.1,42.03,16.89,43.9,16.7,50.4,6.7933333333,84.4633333333,17.0777777778,39.1755555556,17.1833333333,45.5,16.29,43.4,6.5,763.8,80.6666666667,8.3333333333,40,3.4,36.6897768341,36.6897768341 -40,0,18,43.53,17.1333333333,44.2,19.1,42.09,16.89,43.9,16.7,50.345,7.1266666667,83.3966666667,17.0888888889,39.1877777778,17.1944444444,45.515,16.29,43.4,6.65,763.75,80.3333333333,8.1666666667,40,3.5,37.5860169763,37.5860169763 -40,0,18,43.59,17.1333333333,44.2,19.1,42.09,16.89,43.9,16.7,50.3633333333,7.4,82.59,17.0666666667,39.1633333333,17.1666666667,45.57,16.26,43.3633333333,6.8,763.7,80,8,40,3.6,26.2228179607,26.2228179607 -30,0,18,43.59,17.1333333333,44.2,19.1,42.09,16.89,43.9666666667,16.7,50.29,7.4,82.59,17.0555555556,39.2327777778,17.1555555556,45.5961111111,16.26,43.43,6.9,763.7333333333,80.5,8.1666666667,40,3.7833333333,31.4975811751,31.4975811751 -20,0,18,43.6633333333,17.2,44.2,19.1,42.09,16.89,44,16.7,50.29,7.5,82.8333333333,17.05,39.245,17.1333333333,45.6633333333,16.29,43.5,7,763.7666666667,81,8.3333333333,40,3.9666666667,22.7938622353,22.7938622353 -20,0,18,43.7,17.1666666667,44.29,19.1,42,16.89,44,16.7,50.29,7.56,82.96,17.0333333333,39.2894444444,17.1666666667,45.735,16.29,43.5,7.1,763.8,81.5,8.5,40,4.15,12.7002415014,12.7002415014 -10,0,18,43.7,17.1666666667,44.29,19.1,42,16.89,44.09,16.6888888889,50.28,7.66,83.8566666667,17,39.29,17.1277777778,45.79,16.29,43.59,7.2,763.8333333333,82,8.6666666667,40,4.3333333333,2.8742996743,2.8742996743 -60,0,18,43.79,17.2,44.29,19,41.9,16.89,44.09,16.6888888889,50.28,7.875,84.415,17.0055555556,39.3627777778,17.1222222222,45.8327777778,16.29,43.59,7.3,763.8666666667,82.5,8.8333333333,40,4.5166666667,21.765159897,21.765159897 -40,0,18,43.79,17.1333333333,44.29,19,41.9,16.89,44.145,16.7,50.29,7.9666666667,84.3633333333,17.0166666667,39.4166666667,17.1,45.9166666667,16.29,43.6266666667,7.4,763.9,83,9,40,4.7,38.5567490244,38.5567490244 -40,0,17.9266666667,43.9,17.1333333333,44.3266666667,19,42,16.8233333333,44.1566666667,16.7,50.29,8.0333333333,83.7266666667,17,39.4166666667,17.1,46.0038888889,16.23,43.6266666667,7.5,763.85,82.6666666667,9.1666666667,40,4.7333333333,6.4577723038,6.4577723038 -50,0,18,43.9,17.1333333333,44.4,19,42,16.8233333333,44.23,16.6777777778,50.27,8.16,83.9333333333,17.0466666667,39.542,17.1,46.07,16.2,43.645,7.6,763.8,82.3333333333,9.3333333333,40,4.7666666667,49.1958131432,49.1958131432 -40,0,17.89,44,17.1,44.4,19,42.03,16.79,44.23,16.6611111111,50.255,8.3,83.2,17.0166666667,39.52,17.1222222222,46.1083333333,16.23,43.73,7.7,763.75,82,9.5,40,4.8,40.7088466454,40.7088466454 -40,0,17.89,44,17.1666666667,44.5,19,42.09,16.79,44.29,16.6666666667,50.26,8.36,82.8,17.0111111111,39.59,17.1,46.2,16.23,43.79,7.8,763.7,81.6666666667,9.6666666667,40,4.8333333333,49.0840450511,49.0840450511 -40,0,18,44.03,17.1666666667,44.5,19,42.09,16.79,44.3266666667,16.6611111111,50.235,8.4266666667,82.4966666667,17,39.5961111111,17.1,46.225,16.2,43.8266666667,7.9,763.65,81.3333333333,9.8333333333,40,4.8666666667,1.8169845105,1.8169845105 -40,0,17.9266666667,44.09,17.1666666667,44.5,19,42.09,16.79,44.3266666667,16.6444444444,50.24,8.5,82.1633333333,17,39.6877777778,17.1,46.28,16.2,43.9,8,763.6,81,10,40,4.9,28.3707029652,28.3707029652 -50,0,17.9266666667,44.2,17.1,44.56,19,42.09,16.79,44.4333333333,16.6444444444,50.215,8.5,81.9,17,39.705,17.1,46.3083333333,16.2,43.9,8.05,763.5,81.3333333333,10.1666666667,40,5,20.0859135133,20.0859135133 -20,0,17.9266666667,44.2,17.1333333333,44.59,19,42.2,16.79,44.5,16.6611111111,50.24,8.5,81.9666666667,17,39.76,17.1,46.4,16.2,43.9,8.1,763.4,81.6666666667,10.3333333333,40,5.1,22.8523158934,22.8523158934 -30,0,17.945,44.2,17.1333333333,44.59,19,42.1266666667,16.8566666667,44.56,16.6,50.2,8.5333333333,82.3933333333,17,39.79,17.1,46.4166666667,16.23,43.9633333333,8.15,763.3,82,10.5,40,5.2,20.1662195032,20.1662195032 -20,0,17.89,44.29,17.1333333333,44.7,19.0666666667,42.1633333333,16.79,44.5,16.6333333333,50.2238888889,8.6,82.3933333333,17,39.79,17.1,46.5,16.23,44.03,8.2,763.2,82.3333333333,10.6666666667,40,5.3,28.6103240913,28.6103240913 -20,0,17.89,44.29,17.1333333333,44.7,19,42.09,16.79,44.53,16.6277777778,50.1822222222,8.5333333333,82.0966666667,17,39.8572222222,17.0944444444,46.53,16.2,44.09,8.25,763.1,82.6666666667,10.8333333333,40,5.4,13.0125476513,13.0125476513 -40,0,17.89,44.3266666667,17.1666666667,44.7,19,42.09,16.79,44.59,16.6055555556,50.205,8.6,82.43,17,39.9166666667,17.0833333333,46.575,16.2,44.09,8.3,763,83,11,40,5.5,43.7043781276,43.7043781276 -50,0,17.89,44.4,17.1,44.7,19,42.09,16.79,44.6266666667,16.6166666667,50.2,8.6,82.69,17,39.9888888889,17.0722222222,46.6311111111,16.26,44.2,8.3,762.95,83.3333333333,10.8333333333,40,5.5666666667,49.6543625952,49.6543625952 -40,0,17.89,44.4,17.1,44.73,19,42.1266666667,16.79,44.7,16.6055555556,50.1755555556,8.6,83.0966666667,17,40,17.05,46.645,16.2,44.2,8.3,762.9,83.6666666667,10.6666666667,40,5.6333333333,46.510110877,46.510110877 -40,0,17.89,44.4666666667,17.1,44.79,19,42.2,16.79,44.7,16.6,50.2,8.6,83.46,17,40.055,17.0611111111,46.7377777778,16.2,44.2,8.3,762.85,84,10.5,40,5.7,49.3264022516,49.3264022516 -50,0,17.89,44.5,17.1,44.8266666667,19,42.26,16.79,44.76,16.6,50.2,8.6,84,17,40.09,17.0722222222,46.7933333333,16.2,44.26,8.3,762.8,84.3333333333,10.3333333333,40,5.7666666667,32.9171333113,32.9171333113 -50,0,17.89,44.56,17.1,44.9,19,42.26,16.79,44.79,16.6,50.2,8.645,84.6,17,40.1572222222,17.0277777778,46.8205555556,16.23,44.36,8.3,762.75,84.6666666667,10.1666666667,40,5.8333333333,15.1192674763,15.1192674763 -30,0,17.89,44.59,17.1,44.9333333333,19,42.29,16.79,44.8633333333,16.6,50.2,8.6,84.76,16.9877777778,40.215,17.0222222222,46.8694444444,16.23,44.4333333333,8.3,762.7,85,10,40,5.9,43.3710090932,43.3710090932 -40,0,17.89,44.6633333333,17.1,45,19,42.29,16.79,44.9,16.6,50.2,8.6,84.9666666667,16.9572222222,40.28,17.0611111111,46.9761111111,16.2,44.4333333333,8.3333333333,762.6666666667,84.8333333333,10,40,5.9,33.5629780544,33.5629780544 -30,0,17.89,44.73,17.1,45,19,42.3266666667,16.73,45,16.6,50.2,8.69,85.03,16.9388888889,40.29,17.0277777778,47.025,16.2,44.5,8.3666666667,762.6333333333,84.6666666667,10,40,5.9,24.4599810452,24.4599810452 -20,0,17.89,44.79,17.1,45,19,42.4,16.79,45,16.6,50.2,8.69,84.8233333333,16.9755555556,40.3327777778,17.0222222222,47.03,16.2,44.5,8.4,762.6,84.5,10,40,5.9,31.4291954972,31.4291954972 -20,0,17.89,44.86,17.1,45.09,19,42.4,16.79,45,16.6,50.2,8.8,84.4333333333,16.9205555556,40.4,17.0222222222,47.075,16.2,44.59,8.4333333333,762.5666666667,84.3333333333,10,40,5.9,34.533003543,34.533003543 -30,0,17.89,45.06,17.1,45.2666666667,18.9175,42.425,16.79,45.06,16.6,50.2,8.7266666667,84.3666666667,16.9083333333,40.4388888889,17,47.0961111111,16.2,44.59,8.4666666667,762.5333333333,84.1666666667,10,40,5.9,33.614574268,33.614574268 -40,0,17.89,45.6333333333,17.1,45.66,18.8233333333,42.6933333333,16.76,45.2,16.6,50.2,8.69,84.3666666667,16.89,40.5,17,47.1877777778,16.2,44.7,8.5,762.5,84,10,40,5.9,44.1058874712,44.1058874712 -50,0,17.89,46.0266666667,17.1333333333,46.2666666667,18.89,43.1266666667,16.7,45.2,16.6,50.265,8.7633333333,84.3666666667,16.89,40.5811111111,17,47.2,16.2,44.7,8.5166666667,762.45,83.8333333333,10,40,5.9,34.3869099044,34.3869099044 -40,0,17.9266666667,46.23,17.26,46.4666666667,18.89,43.2,16.7,45.2,16.6,50.2961111111,8.8,84.2633333333,16.89,40.7127777778,17,47.2755555556,16.2,44.7,8.5333333333,762.4,83.6666666667,10,40,5.9,49.9931729631,49.9931729631 -40,0,18,46.29,17.39,46.3633333333,18.89,43.3266666667,16.7,45.2,16.6,50.3877777778,8.8,84.19,16.89,40.8572222222,16.9755555556,47.4055555556,16.2,44.76,8.55,762.35,83.5,10,40,5.9,12.5268163276,12.5268163276 -50,10,18.1,46.4,17.4633333333,46.29,18.89,43.4,16.7,45.29,16.6,50.4,8.8,84.09,16.84,40.8755555556,16.9572222222,47.4888888889,16.2,44.79,8.5666666667,762.3,83.3333333333,10,40,5.9,23.9233276458,23.9233276458 -60,0,18.175,46.3175,17.6333333333,46.06,18.89,43.4,16.7,45.29,16.6,50.4,8.8,84.23,16.8511111111,40.9961111111,16.9633333333,47.575,16.2,44.79,8.5833333333,762.25,83.1666666667,10,40,5.9,0.755034911,0.755034911 -70,10,18.26,46.29,17.76,45.86,18.9633333333,43.4666666667,16.7,45.3266666667,16.6,50.4,8.8,84.3666666667,16.84,41.045,16.9022222222,47.6694444444,16.2,44.8633333333,8.6,762.2,83,10,40,5.9,12.6009891275,12.6009891275 -60,0,18.3233333333,46.1633333333,17.9266666667,45.7233333333,19,43.59,16.7,45.4,16.6,50.4,8.8,84.6266666667,16.8233333333,41.1177777778,16.89,47.715,16.2,44.8633333333,8.6333333333,762.2,83.1666666667,9.8333333333,40,5.95,16.3329070318,16.3329070318 -70,0,18.39,46.09,18.0666666667,45.59,19,43.6633333333,16.7,45.4333333333,16.6,50.4277777778,8.8,85.03,16.8011111111,41.225,16.89,47.79,16.1333333333,45,8.6666666667,762.2,83.3333333333,9.6666666667,40,6,33.6066006101,33.6066006101 -70,10,18.5333333333,46.06,18.1333333333,45.4,19.0333333333,43.7,16.7,45.5,16.6,50.4888888889,8.8,85.23,16.79,41.3083333333,16.9083333333,48.1472222222,16.1333333333,45,8.7,762.2,83.5,9.5,40,6.05,37.4220651924,37.4220651924 -70,0,18.6,46,18.26,45.3266666667,19.1,43.76,16.7,45.5,16.6,50.5,8.8,85.195,16.79,41.4,17.05,49.0466666667,16.1,45.03,8.7333333333,762.2,83.6666666667,9.3333333333,40,6.1,17.1217751806,17.1217751806 -50,0,18.7,45.9666666667,18.3233333333,45.1633333333,19.1,43.7,16.7,45.56,16.6,50.51,8.89,85.19,16.79,41.4166666667,17.1833333333,49.6166666667,16.1,45.09,8.7666666667,762.2,83.8333333333,9.1666666667,40,6.15,14.0129913925,14.0129913925 -70,10,18.76,45.9,18.4633333333,45.03,19.1,43.7,16.7,45.59,16.6,50.565,8.83,85.1233333333,16.79,41.5,17.2816666667,50.0055555556,16.1,45.09,8.8,762.2,84,9,40,6.2,36.8689056952,36.8689056952 -80,0,18.9266666667,45.8633333333,18.6333333333,44.8633333333,19.1,43.7,16.7,45.6725,16.6166666667,50.6205555556,8.8,85.3,16.79,41.515,17.3972222222,50.2533333333,16.1,45.1633333333,8.8333333333,762.2166666667,83.6666666667,9.1666666667,40,6.1833333333,31.3484697836,31.3484697836 -110,10,19.0666666667,45.73,18.76,44.73,19.1666666667,43.76,16.7,45.7,16.6055555556,50.6755555556,8.8,85.3666666667,16.79,41.59,17.5277777778,50.3633333333,16.1333333333,45.29,8.8666666667,762.2333333333,83.3333333333,9.3333333333,40,6.1666666667,31.6770853125,31.6770853125 -80,0,19.23,45.59,18.9266666667,44.6633333333,19.2,43.79,16.7,45.7,16.6,50.745,8.86,85.23,16.79,41.6327777778,17.6166666667,50.32,16.2,45.3633333333,8.9,762.25,83,9.5,40,6.15,10.7990745571,10.7990745571 -90,0,19.3566666667,45.4633333333,19.025,44.4725,19.26,43.93,16.7,45.7,16.6,50.79,8.8,85.09,16.79,41.7,17.7,50.4666666667,16.1,45.4,8.9333333333,762.2666666667,82.6666666667,9.6666666667,40,6.1333333333,45.2970514656,45.2970514656 -80,10,19.4266666667,45.29,19.1666666667,44.36,19.3233333333,43.9666666667,16.7,45.7,16.6166666667,50.8861111111,8.89,84.9333333333,16.79,41.7,17.705,50.4833333333,16.1,45.4333333333,8.9666666667,762.2833333333,82.3333333333,9.8333333333,40,6.1166666667,29.3122969801,29.3122969801 -80,10,19.5666666667,45.23,19.23,44.26,19.4175,43.925,16.7,45.76,16.6055555556,50.9055555556,8.89,84.8,16.79,41.725,17.76,50.3755555556,16.1,45.5,9,762.3,82,10,40,6.1,8.4291929379,8.4291929379 -70,10,19.6333333333,45,19.29,44.1266666667,19.5,43.9333333333,16.7,45.79,16.6,50.9111111111,9,84.33,16.79,41.77,17.7955555556,50.4055555556,16.2,45.9333333333,9,762.2833333333,82,10,40,6.1,34.1598845902,34.1598845902 -80,0,19.7,44.86,19.29,44.0266666667,19.5,43.8633333333,16.7,45.79,16.6277777778,51.0194444444,9,84.19,16.79,41.79,17.8566666667,50.4666666667,16.2,46.06,9,762.2666666667,82,10,40,6.1,5.6995331426,5.6995331426 -90,0,19.73,44.7,19.3566666667,43.9,19.5666666667,43.79,16.7,45.79,16.6888888889,51.0922222222,9,83.9333333333,16.79,41.8022222222,17.9144444444,50.52,16.2,46.09,9,762.25,82,10,40,6.1,26.3942520833,26.3942520833 -100,0,19.79,44.6266666667,19.4266666667,43.8266666667,19.6,43.79,16.7,45.79,16.7,51.1694444444,9,84,16.79,41.8816666667,17.9694444444,50.525,16.2,46.09,9,762.2333333333,82,10,40,6.1,47.0754801645,47.0754801645 -110,10,19.8233333333,44.5,19.5,43.8266666667,19.6,43.73,16.6666666667,45.79,16.6777777778,51.2005555556,9,84.03,16.79,41.9,18.0611111111,50.6144444444,16.2,46.03,9,762.2166666667,82,10,40,6.1,7.4473222019,7.4473222019 -90,0,19.9175,44.475,19.6,43.7,19.7,43.79,16.6666666667,45.79,16.6777777778,51.2455555556,9,83.8233333333,16.79,41.9,18.15,50.565,16.2,46.03,9,762.2,82,10,40,6.1,29.4560761889,29.4560761889 -80,0,20,44.3266666667,19.6666666667,43.7,19.7,43.79,16.6666666667,45.8633333333,16.7,51.3266666667,9,83.7633333333,16.79,41.9055555556,18.235,50.4705555556,16.2,46,9.0166666667,762.15,82.1666666667,9.8333333333,40,6.1333333333,43.9138224814,43.9138224814 -70,0,20.1,44.3633333333,19.73,43.59,19.73,43.79,16.6666666667,45.8633333333,16.7,51.3938888889,9,83.83,16.79,41.9666666667,18.3011111111,50.545,16.2,46,9.0333333333,762.1,82.3333333333,9.6666666667,40,6.1666666667,8.9078603312,8.9078603312 -60,0,20.1666666667,44.29,19.79,43.53,19.73,43.79,16.7,45.9,16.7,51.4111111111,9,84.03,16.79,42,18.3122222222,50.3111111111,16.2,46,9.05,762.05,82.5,9.5,40,6.2,23.5416773823,23.5416773823 -80,0,20.2,44.2,19.8233333333,43.5,19.79,43.79,16.7,45.9,16.7,51.4722222222,9,84.1425,16.79,42.02,18.3011111111,49.9294444444,16.2,46,9.0666666667,762,82.6666666667,9.3333333333,40,6.2333333333,7.0731174666,7.0731174666 -80,0,20.2,44.2,19.89,43.5,19.79,43.79,16.7,45.9,16.7,51.5,9,84.4333333333,16.79,42.0811111111,18.255,49.6716666667,16.2,46,9.0833333333,761.95,82.8333333333,9.1666666667,40,6.2666666667,4.9691306776,4.9691306776 -80,0,20.29,44.2,19.89,43.4,19.79,43.79,16.7,45.9666666667,16.7,51.5,9.1,85,16.79,42.1633333333,18.2,49.3805555556,16.2,46,9.1,761.9,83,9,40,6.3,14.5175727084,14.5175727084 -90,0,20.29,44.2,19.89,43.3266666667,19.8566666667,43.8633333333,16.7,46,16.72,51.565,9.1,85.2,16.79,42.2,18.1944444444,49.255,16.2,46,9.1,761.8333333333,83,9.1666666667,40,6.3,12.2737999191,12.2737999191 -80,10,20.3233333333,44.09,19.9266666667,43.29,19.89,43.8633333333,16.7,46,16.7,51.59,9.1,85.1566666667,16.79,42.225,18.1333333333,49.1205555556,16.2,46.06,9.1,761.7666666667,83,9.3333333333,40,6.3,36.1279662,36.1279662 -90,0,20.39,44.09,20,43.29,19.9633333333,43.8633333333,16.7,46.06,16.7,51.6022222222,9.1,85.03,16.79,42.2961111111,18.1,48.9983333333,16.2,46.09,9.1,761.7,83,9.5,40,6.3,26.8137276988,26.8137276988 -80,0,20.39,44,20,43.2,20.0333333333,43.8266666667,16.7,46.1266666667,16.71,51.6755555556,9.1,84.73,16.79,42.3327777778,18.1,48.9,16.2,46.09,9.1,761.6333333333,83,9.6666666667,40,6.3,14.9500586325,14.9500586325 -60,0,20.39,44,20,43.2,20.1,43.8266666667,16.7,46.2,16.775,51.6694444444,9.1,84.59,16.79,42.3511111111,18.1,48.8494444444,16.2,46.09,9.1,761.5666666667,83,9.8333333333,40,6.3,9.9850205006,9.9850205006 -70,0,20.39,43.9666666667,20,43.145,20.1,43.79,16.7,46.2,16.765,51.6083333333,9.0666666667,84.76,16.8066666667,42.3694444444,18.0777777778,49.3805555556,16.23,46.33,9.1,761.5,83,10,40,6.3,45.5088531831,45.5088531831 -70,0,20.39,43.7666666667,20,43,20,43.8266666667,16.7,46.2,16.725,51.6022222222,9.0666666667,85.0266666667,16.7955555556,42.2961111111,18.2183333333,50.4344444444,16.29,46.7233333333,9.0833333333,761.3666666667,83,10,40,6.3,1.6485602362,1.6485602362 -70,0,20.3566666667,43.7,20,43.06,20,43.9,16.7,46.2,16.725,51.6694444444,9,84.9333333333,16.79,42.29,18.3583333333,50.9711111111,16.29,46.9333333333,9.0666666667,761.2333333333,83,10,40,6.3,29.8162212595,29.8162212595 -80,0,20.29,43.7,19.89,43.09,19.89,44.09,16.7,46.26,16.7,51.7,9,85,16.84,42.345,18.5322222222,51.1927777778,16.29,47.06,9.05,761.1,83,10,40,6.3,7.5452504447,7.5452504447 -80,0,20.29,43.7,19.89,43.09,19.89,44.1633333333,16.7,46.29,16.7,51.7,9,85.19,16.8066666667,42.3083333333,18.6444444444,51.24,16.29,47.1266666667,9.0333333333,760.9666666667,83,10,40,6.3,28.8824131596,28.8824131596 -50,0,20.29,43.7,19.79,43,20,44.2,16.7,46.29,16.7,51.71,9,85.33,16.79,42.29,18.755,51.29,16.29,47.2,9.0166666667,760.8333333333,83,10,40,6.3,22.7238326566,22.7238326566 -50,0,20.26,43.6633333333,19.79,43.06,20,44.2,16.7,46.29,16.7,51.74,9,85.5633333333,16.8288888889,42.3327777778,18.8177777778,51.3205555556,16.23,47.1566666667,9,760.7,83,10,40,6.3,24.6904387022,24.6904387022 -60,0,20.2,43.59,19.7,43.09,19.9633333333,44.29,16.7,46.3633333333,16.7,51.775,8.9266666667,85.83,16.7955555556,42.2961111111,18.9083333333,51.3938888889,16.29,47.29,9.0166666667,760.6166666667,82.8333333333,9.8333333333,40,6.2833333333,26.3103560195,26.3103560195 -50,0,20.2,43.6633333333,19.7,43.09,19.89,44.29,16.6333333333,46.3266666667,16.74,51.79,8.89,86.4966666667,16.8122222222,42.3144444444,19.0277777778,51.3605555556,16.29,47.3266666667,9.0333333333,760.5333333333,82.6666666667,9.6666666667,40,6.2666666667,19.1506444942,19.1506444942 -80,0,20.1,43.7,19.6666666667,43.1633333333,19.89,44.4333333333,16.6333333333,46.2666666667,16.71,51.79,8.89,86.69,16.8122222222,42.3266666667,19.1055555556,51.4327777778,16.29,47.4,9.05,760.45,82.5,9.5,40,6.25,46.4448948042,46.4448948042 -60,0,20.1,43.7,19.6,43.09,19.89,44.5,16.6,46.29,16.73,51.79,8.945,86.595,16.79,42.3144444444,19.1888888889,51.3022222222,16.29,47.4333333333,9.0666666667,760.3666666667,82.3333333333,9.3333333333,40,6.2333333333,21.6708925553,21.6708925553 -50,0,20.1,43.79,19.5666666667,43.2,19.89,44.53,16.6666666667,46.3633333333,16.7,51.79,9,85.9933333333,16.8122222222,42.3938888889,19.2,51.2816666667,16.29,47.5,9.0833333333,760.2833333333,82.1666666667,9.1666666667,40,6.2166666667,12.2381238965,12.2381238965 -50,0,20.0333333333,43.73,19.5,43.2,19.89,44.59,16.6,46.29,16.7,51.79,9,85.8,16.8066666667,42.4166666667,19.2,51.4544444444,16.29,47.59,9.1,760.2,82,9,40,6.2,43.8128635753,43.8128635753 -40,0,20,43.7,19.4633333333,43.26,19.89,44.59,16.6,46.29,16.7,51.79,9.0333333333,85.5,16.7955555556,42.4055555556,19.1166666667,51.6572222222,16.29,47.6633333333,9.1,760.1,82,9.1666666667,40,6.1833333333,9.1329958872,9.1329958872 -40,0,20,43.76,19.39,43.2,19.9633333333,44.59,16.6,46.29,16.7,51.79,9.1,85.3666666667,16.8122222222,42.4,19.1,51.895,16.29,47.79,9.1,760,82,9.3333333333,40,6.1666666667,4.5161877177,4.5161877177 -40,0,19.9633333333,43.79,19.3566666667,43.23,20,44.59,16.6,46.29,16.7,51.79,9.1,85.0933333333,16.8122222222,42.4,19.0388888889,52.02,16.29,47.8633333333,9.1,759.9,82,9.5,40,6.15,11.9579934864,11.9579934864 -40,0,19.89,43.79,19.29,43.3633333333,20,44.59,16.6,46.29,16.7,51.79,9.1,84.6933333333,16.79,42.4,19,52.045,16.29,48,9.1,759.8,82,9.6666666667,40,6.1333333333,43.0715244962,43.0715244962 -50,0,19.8566666667,43.76,19.26,43.29,20,44.59,16.6,46.29,16.72,51.79,9.19,84.23,16.8011111111,42.4111111111,19,52.1083333333,16.29,48.0675,9.1,759.7,82,9.8333333333,40,6.1166666667,41.6277753771,41.6277753771 -40,0,19.79,43.76,19.2,43.29,20,44.6633333333,16.6,46.29,16.7,51.77,9.13,84.03,16.8177777778,42.4277777778,19,52.245,16.29,48.1633333333,9.1,759.6,82,10,40,6.1,18.1456322782,18.1456322782 -40,0,19.79,43.79,19.15,43.345,20,44.7,16.6,46.4,16.7,51.79,9.1,84.3966666667,16.7955555556,42.4055555556,19,52.3816666667,16.29,48.2,9.05,759.4666666667,82.6666666667,10,37.6666666667,6.1666666667,9.395356779,9.395356779 -30,0,19.73,43.79,19.1,43.4,20.0333333333,44.73,16.6,46.3266666667,16.7,51.76,9.1,84.59,16.8066666667,42.4166666667,19,52.4,16.29,48.2,9,759.3333333333,83.3333333333,10,35.3333333333,6.2333333333,38.437298371,38.437298371 -20,0,19.7,43.9,19.1,43.4666666667,20.0333333333,44.73,16.6,46.4,16.7,51.78,9.1,84.6233333333,16.8066666667,42.4166666667,18.9327777778,52.4,16.29,48.29,8.95,759.2,84,10,33,6.3,22.0394223696,22.0394223696 -20,0,19.7,43.9,19,43.4,20,44.7,16.6,46.4,16.71,51.79,9.0333333333,84.6233333333,16.84,42.45,18.89,52.3877777778,16.29,48.29,8.9,759.0666666667,84.6666666667,10,30.6666666667,6.3666666667,23.8354619243,23.8354619243 -50,0,19.7,43.9,19,43.4,20,44.7,16.6,46.4,16.71,51.79,9.1,84.5633333333,16.8233333333,42.4333333333,18.8288888889,52.2411111111,16.3566666667,48.29,8.85,758.9333333333,85.3333333333,10,28.3333333333,6.4333333333,49.0328480024,49.0328480024 -40,0,19.6333333333,43.8266666667,18.9633333333,43.5,19.9633333333,44.73,16.6,46.4,16.7,51.79,9.0333333333,85.0966666667,16.8455555556,42.4666666667,18.79,52.2,16.29,48.3633333333,8.8,758.8,86,10,26,6.5,4.4590718462,4.4590718462 -40,0,19.6,43.79,18.89,43.5,19.9633333333,44.79,16.6,46.4,16.7,51.79,8.89,86.3666666667,16.8511111111,42.4777777778,18.79,52.2811111111,16.39,48.4,8.8333333333,758.65,85.5,10.1666666667,28.3333333333,6.4666666667,4.8692745855,4.8692745855 -40,0,19.6,43.79,18.89,43.59,20,44.79,16.6,46.4,16.7,51.745,8.89,86.7666666667,16.8233333333,42.5,18.79,52.3877777778,16.3233333333,48.4,8.8666666667,758.5,85,10.3333333333,30.6666666667,6.4333333333,31.7834379966,31.7834379966 -50,0,19.55,43.9,18.89,43.59,20,44.79,16.6,46.4,16.7,51.72,8.89,87.095,16.8288888889,42.535,18.74,52.4388888889,16.39,48.4333333333,8.9,758.35,84.5,10.5,33,6.4,9.9269494531,9.9269494531 -50,0,19.5,43.9,18.79,43.59,20,44.9,16.6,46.4,16.7,51.73,8.9266666667,86.3633333333,16.84,42.525,18.735,52.525,16.39,48.5,8.9333333333,758.2,84,10.6666666667,35.3333333333,6.3666666667,13.0802575615,13.0802575615 -50,0,19.5,43.9666666667,18.79,43.59,20,44.8266666667,16.6,46.4,16.7,51.7,9,85.8233333333,16.8122222222,42.5,18.7,52.6783333333,16.39,48.53,8.9666666667,758.05,83.5,10.8333333333,37.6666666667,6.3333333333,15.9381166799,15.9381166799 -30,0,19.5,44,18.76,43.7,20,44.9,16.6,46.4,16.7,51.7,9.0333333333,85.2266666667,16.8066666667,42.515,18.7,52.9527777778,16.39,48.53,9,757.9,83,11,40,6.3,43.478834827,43.478834827 -40,0,19.4266666667,43.9333333333,18.7,43.7,19.9266666667,44.8266666667,16.6,46.4,16.7,51.7,9.0333333333,85.16,16.8177777778,42.505,18.7,53.1522222222,16.39,48.59,9.0166666667,757.7,82.8333333333,11,40,6.2833333333,2.6044292143,2.6044292143 -40,0,19.39,44,18.7,43.7,19.89,44.79,16.575,46.475,16.7,51.6877777778,9.1,84.83,16.8288888889,42.535,18.7,53.2905555556,16.39,48.59,9.0333333333,757.5,82.6666666667,11,40,6.2666666667,10.1955426857,10.1955426857 -40,0,19.39,44,18.7,43.76,19.89,44.79,16.5,46.5,16.7,51.645,9.1,84.4966666667,16.8011111111,42.51,18.7,53.4833333333,16.39,48.6266666667,9.05,757.3,82.5,11,40,6.25,28.6129291635,28.6129291635 -50,0,19.3566666667,44,18.6666666667,43.76,19.89,44.79,16.6,46.5,16.7,51.6022222222,9.1,83.7666666667,16.8066666667,42.5038888889,18.6777777778,53.5411111111,16.39,48.7,9.0666666667,757.1,82.3333333333,11,40,6.2333333333,1.8452872755,1.8452872755 -20,0,19.29,44.06,18.6,43.7,19.89,44.79,16.6,46.5,16.7,51.6022222222,9.1,83.0333333333,16.7955555556,42.4888888889,18.65,53.6588888889,16.39,48.7,9.0833333333,756.9,82.1666666667,11,40,6.2166666667,0.9046131629,0.9046131629 -30,0,19.29,44.09,18.6,43.76,19.89,44.79,16.6,46.4333333333,16.705,51.6694444444,9.13,82.66,16.8288888889,42.5,18.6111111111,53.7,16.39,48.7,9.1,756.7,82,11,40,6.2,9.827486123,9.827486123 -20,0,19.29,44.09,18.6,43.76,19.8233333333,44.73,16.6,46.5,16.715,51.7,9.13,83.3266666667,16.79,42.4555555556,18.6,53.6633333333,16.39,48.7,9.0333333333,756.6,83,11.1666666667,40,6.3,17.0488745789,17.0488745789 -30,0,19.29,44.1266666667,18.55,43.79,19.79,44.7,16.6,46.5,16.7,51.6572222222,8.9633333333,85.5933333333,16.8066666667,42.4777777778,18.5833333333,53.6633333333,16.39,48.73,8.9666666667,756.5,84,11.3333333333,40,6.4,14.1826646053,14.1826646053 -40,0,19.23,44.1266666667,18.5,43.9,19.79,44.6633333333,16.6,46.5,16.7,51.6022222222,8.89,87,16.8233333333,42.505,18.5944444444,53.7,16.39,48.79,8.9,756.4,85,11.5,40,6.5,9.3167034211,9.3167034211 -40,0,19.2,44.09,18.5,43.9,19.79,44.6633333333,16.5333333333,46.53,16.7,51.6266666667,8.83,87.96,16.8566666667,42.56,18.6,53.745,16.39,48.79,8.8333333333,756.3,86,11.6666666667,40,6.6,10.2210856625,10.2210856625 -50,0,19.2,44.1633333333,18.5,44.03,19.79,44.7,16.5333333333,46.59,16.7,51.645,8.89,88.7666666667,16.8344444444,42.57,18.5388888889,53.79,16.39,48.79,8.7666666667,756.2,87,11.8333333333,40,6.7,11.5926508559,11.5926508559 -40,0,19.1666666667,44.2,18.4266666667,44.03,19.79,44.7,16.5,46.59,16.7,51.7,8.89,89.2266666667,16.8066666667,42.59,18.5,53.79,16.39,48.9,8.7,756.1,88,12,40,6.8,20.3050919808,20.3050919808 -50,0,19.1,44.2,18.39,44.03,19.89,44.8266666667,16.5,46.59,16.7,51.71,8.89,89.4933333333,16.8455555556,42.6511111111,18.5,53.8327777778,16.39,48.9,8.6666666667,756,89,11.8333333333,41,6.9166666667,43.3584755752,43.3584755752 -40,0,19.1,44.29,18.39,44.09,19.89,44.8266666667,16.5,46.59,16.7,51.71,8.89,90.0966666667,16.8511111111,42.6572222222,18.5,53.9166666667,16.39,49,8.6333333333,755.9,90,11.6666666667,42,7.0333333333,13.7906310381,13.7906310381 -40,0,19.1,44.29,18.39,44.1266666667,19.89,44.9,16.5,46.6633333333,16.7,51.71,8.89,91.565,16.8288888889,42.7,18.4755555556,53.9877777778,16.39,49,8.6,755.8,91,11.5,43,7.15,37.6277251984,37.6277251984 -50,0,19.1,44.4,18.39,44.2,19.89,44.9,16.5,46.7,16.7,51.745,8.83,92.9966666667,16.8288888889,42.735,18.5,54.2633333333,16.39,49.03,8.5666666667,755.7,92,11.3333333333,44,7.2666666667,17.0315393363,17.0315393363 -30,0,19.0666666667,44.4666666667,18.3566666667,44.23,20,44.9333333333,16.5,46.7,16.7,51.755,8.66,95.0933333333,16.8177777778,42.76,18.5,54.4166666667,16.39,49.09,8.5333333333,755.6,93,11.1666666667,45,7.3833333333,48.0051666964,48.0051666964 -40,0,19,44.4,18.29,44.29,20,45,16.5,46.79,16.7,51.765,8.6,96.3,16.8622222222,42.8205555556,18.5,54.5227777778,16.39,49.09,8.5,755.5,94,11,46,7.5,31.4270465635,31.4270465635 -40,0,19,44.4333333333,18.29,44.3266666667,20,45,16.5,46.79,16.7,51.77,8.5666666667,97.5,16.8122222222,42.8266666667,18.5,54.59,16.39,49.09,8.4666666667,755.3666666667,94,11,42.5,7.4833333333,42.2656598268,42.2656598268 -50,0,19,44.5,18.29,44.4,20,45,16.5,46.79,16.7,51.76,8.5,98.2333333333,16.8788888889,42.95,18.5,54.59,16.39,49.2,8.4333333333,755.2333333333,94,11,39,7.4666666667,6.114181329,6.114181329 -40,0,19,44.59,18.29,44.5,20,45,16.5,46.8975,16.7,51.78,8.39,99.0666666667,16.8566666667,42.9666666667,18.5,54.6144444444,16.39,49.2,8.4,755.1,94,11,35.5,7.45,27.7853665757,27.7853665757 -50,0,19,44.59,18.29,44.56,20,45,16.5,47,16.7,51.79,8.39,99.5933333333,16.8177777778,42.95,18.5,54.59,16.39,49.23,8.3666666667,754.9666666667,94,11,32,7.4333333333,38.8212901424,38.8212901424 -30,0,18.9633333333,44.7,18.2,44.53,20,45,16.5,47,16.7,51.79,8.3,99.9,16.8622222222,43.0094444444,18.5,54.56,16.39,49.29,8.3333333333,754.8333333333,94,11,28.5,7.4166666667,12.9689686699,12.9689686699 -20,0,18.89,44.76,18.2,44.59,20,45,16.5,47,16.7,51.79,8.3,99.9,16.8511111111,43.055,18.4694444444,54.5072222222,16.4266666667,49.36,8.3,754.7,94,11,25,7.4,24.9490184477,24.9490184477 -20,0,18.89,44.79,18.2,44.6266666667,20,45,16.5,47.03,16.7,51.8022222222,8.3,99.9,16.84,43.045,18.4266666667,54.5133333333,16.4175,49.425,8.3333333333,754.6333333333,93.5,11.1666666667,24.8333333333,7.35,29.220837343,29.220837343 -20,0,18.89,44.79,18.2,44.7,20,45,16.5,47.09,16.7,51.8877777778,8.3,99.9,16.8566666667,43.06,18.4205555556,54.525,16.39,49.4,8.3666666667,754.5666666667,93,11.3333333333,24.6666666667,7.3,24.2376520648,24.2376520648 -40,0,18.89,44.9,18.2,44.745,19.89,45.09,16.5,47.09,16.7,51.8816666667,8.3,99.9,16.8455555556,43.05,18.4205555556,54.525,16.39,49.4,8.4,754.5,92.5,11.5,24.5,7.25,30.4269928019,30.4269928019 -40,0,18.89,44.9666666667,18.1,44.8266666667,19.89,45.1266666667,16.4266666667,47.03,16.7,51.9,8.3,99.9,16.8511111111,43.055,18.39,54.535,16.39,49.4666666667,8.4333333333,754.4333333333,92,11.6666666667,24.3333333333,7.2,1.0431632283,1.0431632283 -50,0,18.8566666667,44.9666666667,18.1,44.9,19.89,45.2,16.5,47.2,16.7,51.9,8.2266666667,99.9,16.8511111111,43.1238888889,18.39,54.5983333333,16.4266666667,49.53,8.4666666667,754.3666666667,91.5,11.8333333333,24.1666666667,7.15,19.1399921547,19.1399921547 -50,0,18.79,44.9,18.1,44.9,19.89,45.29,16.5,47.2,16.7,51.9,8.2266666667,99.9,16.8733333333,43.1266666667,18.39,54.7,16.4266666667,49.53,8.5,754.3,91,12,24,7.1,19.0809955471,19.0809955471 -40,0,18.79,45,18.1,44.9666666667,19.89,45.29,16.4266666667,47.1266666667,16.7,51.9,8.3,99.9,16.8288888889,43.1083333333,18.39,54.7,16.5,49.59,8.5166666667,754.15,90.6666666667,12,26.6666666667,7.0666666667,3.370364802,3.370364802 -40,10,18.79,45,18.1,45,20,45.26,16.5,47.26,16.7,51.9277777778,8.3,99.9,16.8566666667,43.0883333333,18.3622222222,54.725,16.5,49.59,8.5333333333,754,90.3333333333,12,29.3333333333,7.0333333333,14.4613200682,14.4613200682 -60,0,18.79,45.2266666667,18.0333333333,45,19.9266666667,45.2,16.5,47.29,16.7,51.9722222222,8.2266666667,99.9,16.8066666667,43.0761111111,18.3122222222,54.765,16.5,49.7,8.55,753.85,90,12,32,7,38.2371453103,38.2371453103 -50,0,18.79,45.56,18.1,45.1266666667,19.8566666667,44.9,16.5,47.29,16.7,51.9111111111,8.3,99.9,16.8122222222,43.2077777778,18.3344444444,54.71,16.5,49.7,8.5666666667,753.7,89.6666666667,12,34.6666666667,6.9666666667,40.0792381144,40.0792381144 -40,10,18.79,45.8266666667,18.1,45.26,19.79,44.6266666667,16.4633333333,47.26,16.7,51.9,8.3,99.9,16.79,43.3055555556,18.3122222222,54.6816666667,16.5,49.7,8.5833333333,753.55,89.3333333333,12,37.3333333333,6.9333333333,10.2015623241,10.2015623241 -50,0,18.79,46.025,18.0666666667,45.29,19.7,44.5,16.39,47.2,16.7,51.9,8.3,99.9,16.79,43.4155555556,18.29,54.565,16.4266666667,49.5666666667,8.6,753.4,89,12,40,6.9,45.8930036169,45.8930036169 -50,0,18.79,46.2,18.0666666667,45.3633333333,19.7,44.5,16.4633333333,47.29,16.7,51.9,8.36,99.9,16.79,43.505,18.29,54.4327777778,16.4266666667,49.5,8.5833333333,753.3,89.5,11.8333333333,36.6666666667,6.95,5.1080534002,5.1080534002 -40,0,18.8233333333,46.2,18.1333333333,45.59,19.6,44.4333333333,16.39,47.29,16.7,51.9,8.39,99.9,16.79,43.58,18.29,54.3022222222,16.4266666667,49.36,8.5666666667,753.2,90,11.6666666667,33.3333333333,7,44.5442300406,44.5442300406 -30,0,18.89,46.2,18.2,45.53,19.6,44.4333333333,16.445,47.4,16.7,51.9,8.39,99.9,16.79,43.6083333333,18.29,54.215,16.4633333333,49.3333333333,8.55,753.1,90.5,11.5,30,7.05,25.6715614698,25.6715614698 -30,0,18.89,46.1633333333,18.3233333333,45.4666666667,19.6,44.4,16.4633333333,47.4666666667,16.7,51.9,8.39,99.9,16.79,43.7,18.29,54.215,16.39,49.1266666667,8.5333333333,753,91,11.3333333333,26.6666666667,7.1,6.6390880849,6.6390880849 -60,0,18.89,46.09,18.39,45.4,19.6,44.4,16.4633333333,47.5266666667,16.7,51.9,8.4633333333,99.9,16.79,43.725,18.29,54.2861111111,16.39,49.09,8.5166666667,752.9,91.5,11.1666666667,23.3333333333,7.15,16.8991159182,16.8991159182 -50,0,19,46.09,18.5333333333,45.3633333333,19.6,44.5,16.39,47.5,16.7,51.9,8.5,99.9,16.79,43.74,18.29,54.3877777778,16.39,49.03,8.5,752.8,92,11,20,7.2,10.6500177644,10.6500177644 -40,0,19,46.09,18.6666666667,45.3633333333,19.6,44.5,16.39,47.5,16.7,51.9111111111,8.4266666667,99.9,16.79,43.77,18.275,54.4,16.39,48.95,8.5,752.7,92,11,27.5,7.2,41.4351092069,41.4351092069 -40,0,19.0333333333,46.1266666667,18.73,45.26,19.6,44.53,16.39,47.53,16.8705555556,52.7738888889,8.39,99.9,16.79,43.8205555556,18.235,54.4388888889,16.39,48.9333333333,8.5,752.6,92,11,35,7.2,23.2167189592,23.2167189592 -100,0,19.1,46.2,18.8566666667,45.2,19.6666666667,44.6633333333,16.39,47.59,17.7155555556,71.8172222222,8.39,99.9,16.79,43.9,18.24,54.39,16.4633333333,49.06,8.5,752.5,92,11,42.5,7.2,16.8126740376,16.8126740376 -60,0,19.23,46.1266666667,19,45.045,19.7,44.7,16.39,47.59,18.0094444444,76.2538888889,8.4633333333,99.9,16.79,43.95,18.265,54.4111111111,16.4633333333,48.93,8.5,752.4,92,11,50,7.2,7.2325179353,7.2325179353 -50,0,19.3566666667,46.3333333333,19.2,45.1566666667,19.79,44.7,16.39,47.59,18.0544444444,69.8705555556,8.4633333333,99.9,16.79,44,18.255,54.4611111111,16.39,48.79,8.5,752.3,92,11,57.5,7.2,43.4035521583,43.4035521583 -40,0,19.4266666667,46.53,19.26,45.3633333333,19.8566666667,44.76,16.39,47.6266666667,18.1888888889,63.8122222222,8.5,99.9,16.79,44.045,18.24,54.4444444444,16.39,48.79,8.5,752.2,92,11,65,7.2,2.7161314385,2.7161314385 -50,0,19.5666666667,46.6633333333,19.3233333333,45.4,19.89,44.79,16.39,47.7,18.2,58.3916666667,8.4266666667,99.9,16.79,44.09,18.25,54.4433333333,16.39,48.79,8.5166666667,752.1333333333,92,11,63.8333333333,7.2333333333,30.6941542309,30.6941542309 -40,0,19.6333333333,46.8266666667,19.39,45.4666666667,19.89,44.79,16.39,47.7,18.2,56.0161111111,8.5,99.9,16.79,44.1205555556,18.24,54.3911111111,16.39,48.79,8.5333333333,752.0666666667,92,11,62.6666666667,7.2666666667,39.2815152416,39.2815152416 -50,0,19.7,46.9,19.5,45.56,19.9266666667,44.9333333333,16.39,47.76,18.215,54.4388888889,8.5,99.9,16.7955555556,44.2611111111,18.215,54.4033333333,16.39,48.8633333333,8.55,752,92,11,61.5,7.3,28.9723327267,28.9723327267 -180,10,19.79,46.76,19.5,45.42,19.9266666667,45,16.4266666667,47.9266666667,18.28,53.4772222222,8.5,99.9,16.8233333333,44.3266666667,18.225,54.6311111111,16.39,48.9666666667,8.5666666667,751.9333333333,92,11,60.3333333333,7.3333333333,26.3584740693,26.3584740693 -100,10,19.79,47.0333333333,19.5,45.29,20,45.03,16.5,48.26,18.29,52.7461111111,8.6,99.9,16.8233333333,44.3911111111,18.29,54.9383333333,16.4633333333,48.9666666667,8.5833333333,751.8666666667,92,11,59.1666666667,7.3666666667,20.5256706802,20.5256706802 -80,0,19.8233333333,47.53,19.5,45.3633333333,19.9266666667,45.09,16.5,48.3633333333,19.7572222222,79.4383333333,8.6,99.9,16.8066666667,44.4333333333,18.29,54.7572222222,16.4633333333,48.93,8.6,751.8,92,11,58,7.4,36.5261579282,36.5261579282 -200,10,19.89,47.4725,19.5,45.4,20,45.2,16.5,48.29,20.2961111111,84.5833333333,8.5666666667,99.9,16.8455555556,44.4811111111,18.3066666667,55.1672222222,16.39,48.79,8.3,751.9666666667,91.3333333333,10.6666666667,51.8333333333,7,44.1800030298,44.1800030298 -80,10,19.89,47.8333333333,19.5,45.3266666667,20,45.2,16.5,48.4,19.5805555556,87.4294444444,8.4266666667,99.9,16.84,44.4377777778,18.39,55.5783333333,16.39,48.79,8,752.1333333333,90.6666666667,10.3333333333,45.6666666667,6.6,5.7237527682,5.7237527682 -70,0,20,47.7666666667,19.6,45.29,20.1,45.4,16.5,48.3175,19.2133333333,88.0722222222,8.36,99.9,16.8566666667,44.4244444444,18.4872222222,55.63,16.39,48.79,7.7,752.3,90,10,39.5,6.2,16.2073872052,16.2073872052 -80,0,20,47.2266666667,19.6,45.29,20.0333333333,45.3266666667,16.5,48.29,18.9438888889,87.7577777778,8.1,99.9,16.89,44.3311111111,18.6166666667,55.3661111111,16.39,48.76,7.4,752.4666666667,89.3333333333,9.6666666667,33.3333333333,5.8,18.3378506685,18.3378506685 -70,0,20,46.8333333333,19.6,45.3633333333,19.9633333333,45.2,16.5,48.2,18.745,87.2716666667,7.3633333333,99.9,16.8788888889,44.0305555556,18.715,54.9677777778,16.39,48.7,7.1,752.6333333333,88.6666666667,9.3333333333,27.1666666667,5.4,12.6974283834,12.6974283834 -90,0,20,46.5666666667,19.6,45.29,19.89,45.2,16.5,48.1266666667,18.6277777778,86.8316666667,6.8966666667,99.9,16.8066666667,43.725,18.79,54.4466666667,16.39,48.56,6.8,752.8,88,9,21,5,6.0374713968,6.0374713968 -220,0,20,46.2233333333,19.5,45.1633333333,19.89,45.2,16.5,48.06,18.5833333333,86.2505555556,6.6566666667,99.9,16.8122222222,43.4616666667,18.8511111111,54.0305555556,16.39,48.4333333333,6.7333333333,752.6666666667,88.3333333333,8.1666666667,24.1666666667,4.9833333333,29.1483753128,29.1483753128 -430,10,20,46.03,19.5,45.09,19.89,45.2,16.5,48.06,18.5111111111,86.0861111111,6.53,99.9,16.79,43.2144444444,18.89,53.5944444444,16.39,48.2,6.6666666667,752.5333333333,88.6666666667,7.3333333333,27.3333333333,4.9666666667,10.1717437385,10.1717437385 -400,0,20,45.7966666667,19.5,44.7233333333,19.89,45.2,16.9566666667,48.9233333333,18.445,85.8616666667,6.4666666667,99.9,16.8122222222,43.0994444444,18.9816666667,53.1594444444,16.39,47.9666666667,6.6,752.4,89,6.5,30.5,4.95,28.9876159281,28.9876159281 -410,10,20,45.4633333333,19.5,44.53,19.89,45.095,17.6233333333,48.1966666667,18.3288888889,84.9872222222,6.4,99.9,16.8066666667,42.9666666667,19.0722222222,52.8277777778,16.39,47.8266666667,6.5333333333,752.2666666667,89.3333333333,5.6666666667,33.6666666667,4.9333333333,29.5323970146,29.5323970146 -420,10,19.9266666667,45.29,19.5,44.3633333333,19.89,45.06,18.3666666667,47.2333333333,18.275,83.6477777778,6.4,99.9,16.8011111111,42.8138888889,19.1166666667,52.6083333333,16.39,47.6633333333,6.4666666667,752.1333333333,89.6666666667,4.8333333333,36.8333333333,4.9166666667,48.8593331771,48.8593331771 -420,0,20,45.1566666667,19.5,44.24,19.9266666667,45.2566666667,18.9,46.6333333333,18.21,81.9277777778,6.4666666667,99.9,16.8066666667,42.79,19.2,52.4822222222,16.39,47.59,6.4,752,90,4,40,4.9,10.3769092355,10.3769092355 -140,10,20,45,19.5666666667,44.03,20,45.8633333333,19.2633333333,46.2233333333,18.15,79.9411111111,6.545,99.9,16.8122222222,42.8144444444,19.255,52.4383333333,16.39,47.4666666667,6.4166666667,751.95,90.8333333333,4.1666666667,38.1666666667,5.0333333333,12.1373009635,12.1373009635 -130,0,20.0666666667,45.4666666667,19.6333333333,43.9333333333,20.1,46.1633333333,19.4633333333,45.9633333333,18.0944444444,78.2638888889,6.59,99.9,16.8122222222,42.77,19.34,52.2772222222,16.39,47.4,6.4333333333,751.9,91.6666666667,4.3333333333,36.3333333333,5.1666666667,8.0123223132,8.0123223132 -130,0,20.1,45.29,19.76,43.9333333333,20.0333333333,45.9633333333,19.4633333333,46.1266666667,18.0333333333,77.515,6.59,99.9,16.8122222222,42.8144444444,19.39,52.0933333333,16.39,47.29,6.45,751.85,92.5,4.5,34.5,5.3,39.4584350754,39.4584350754 -440,0,20.1666666667,45.23,19.89,43.9,20.0666666667,45.7966666667,19.3233333333,46.26,17.9816666667,75.7455555556,6.6233333333,99.9,16.8066666667,42.8083333333,19.445,52,16.39,47.29,6.4666666667,751.8,93.3333333333,4.6666666667,32.6666666667,5.4333333333,4.787382076,4.787382076 -320,0,20.29,45.06,19.9633333333,43.7666666667,20,45.59,19.3,46.5,17.8622222222,72.8116666667,6.7633333333,99.9,16.8066666667,42.8633333333,19.5166666667,51.87,16.3233333333,47.29,6.4833333333,751.75,94.1666666667,4.8333333333,30.8333333333,5.5666666667,22.8145124274,22.8145124274 -400,0,20.3566666667,45.06,20.1,43.76,20.0333333333,45.59,19.76,46.4266666667,17.8122222222,70.3344444444,6.8,99.9,16.8011111111,42.8755555556,19.6,51.4194444444,16.3233333333,47.23,6.5,751.7,95,5,29,5.7,3.7877243594,3.7877243594 -230,0,20.4266666667,45,20.1666666667,43.6266666667,20.1,45.53,19.8566666667,46.03,17.79,68.3038888889,6.8666666667,99.9,16.79,42.8327777778,19.6388888889,51.215,16.29,47.2,6.4666666667,751.8166666667,92.8333333333,5.1666666667,30.8333333333,5.3333333333,46.8774896581,46.8774896581 -130,10,20.575,44.8975,20.29,43.7,20.1,45.2233333333,19.73,46.09,17.79,66.7966666667,6.9,99.9,16.8233333333,42.8266666667,19.71,51.2,16.3566666667,47.2,6.4333333333,751.9333333333,90.6666666667,5.3333333333,32.6666666667,4.9666666667,9.7055268358,9.7055268358 -100,0,20.6666666667,44.8633333333,20.3566666667,43.6266666667,20.1666666667,45.03,19.53,45.8633333333,17.79,65.5794444444,6.8333333333,99.9,16.8177777778,42.7472222222,19.785,51.0933333333,16.3566666667,47.2,6.4,752.05,88.5,5.5,34.5,4.6,35.7289406704,35.7289406704 -100,0,20.7,44.9,20.39,43.3633333333,20.1,45,19.315,45.745,17.77,64.5394444444,6.56,99.9,16.8566666667,42.6105555556,19.775,50.9722222222,16.3566666667,47.1266666667,6.3666666667,752.1666666667,86.3333333333,5.6666666667,36.3333333333,4.2333333333,47.7895345772,47.7895345772 -110,0,20.76,44.5,20.4633333333,43.29,20.1666666667,45,19.23,45.79,17.725,63.6827777778,6.3666666667,99.9,16.8788888889,42.3983333333,19.785,50.7872222222,16.39,47.06,6.3333333333,752.2833333333,84.1666666667,5.8333333333,38.1666666667,3.8666666667,37.0929035475,37.0929035475 -110,0,20.79,44.2233333333,20.5,43.06,20.2,44.79,19.1,45.56,17.7,62.84,6.1566666667,99.9,16.8733333333,42.1133333333,19.79,50.5294444444,16.39,47,6.3,752.4,82,6,40,3.5,12.8015135066,12.8015135066 -120,0,20.8566666667,44.09,20.5,42.9333333333,20.2,44.73,19.0333333333,45.3,17.7,62.11,6.03,99.9,16.8844444444,41.91,19.8233333333,50.2622222222,16.29,46.8633333333,6.25,752.4166666667,81.6666666667,6,40,3.3666666667,30.626613507,30.626613507 -100,0,20.89,43.76,20.6,42.76,20.29,44.6633333333,18.89,45.06,17.7,61.4505555556,5.9,99.9,16.8788888889,41.6694444444,19.8733333333,50.0511111111,16.3566666667,46.6566666667,6.2,752.4333333333,81.3333333333,6,40,3.2333333333,6.6409006249,6.6409006249 -160,0,20.9633333333,43.5666666667,20.6,42.5666666667,20.29,44.53,18.8233333333,45.1333333333,17.7,60.8144444444,5.8333333333,99.9,16.8788888889,41.4883333333,19.8961111111,49.8333333333,16.39,46.495,6.15,752.45,81,6,40,3.1,9.0096617467,9.0096617467 -510,10,21,43.2966666667,20.6,42.3633333333,20.29,44.4666666667,18.79,45.4,17.7,60.2105555556,5.7633333333,99.9,16.8788888889,41.2955555556,19.9877777778,49.655,16.39,46.26,6.1,752.4666666667,80.6666666667,6,40,2.9666666667,3.996775893,3.996775893 -450,0,21,43.03,20.6,42.1566666667,20.315,44.6675,18.79,45.4666666667,17.6777777778,59.7377777778,5.6233333333,99.9,16.8733333333,41.0977777778,20.0166666667,49.545,16.39,46.1266666667,6.05,752.4833333333,80.3333333333,6,40,2.8333333333,13.5590567836,13.5590567836 -670,20,21,43.1566666667,20.6,42.06,20.53,45.63,18.79,45.5,17.6777777778,59.3061111111,5.5,99.9,16.8622222222,40.9533333333,20.0888888889,49.47,16.29,45.9666666667,6,752.5,80,6,40,2.7,22.0064199879,22.0064199879 -660,20,21,42.9566666667,20.6,41.8975,20.9266666667,46.8966666667,18.9966666667,45.8333333333,17.7,58.9294444444,5.33,99.9,16.8788888889,40.8155555556,20.0888888889,49.3694444444,16.29,45.8266666667,5.9,752.6166666667,80,5.8333333333,40,2.6166666667,35.572911636,35.572911636 -630,30,21,43.2566666667,20.6,41.79,21.3266666667,47.49,19.7666666667,45.3633333333,17.6722222222,58.5788888889,5.0633333333,99.9,16.89,40.7177777778,20.1,49.1944444444,16.29,45.7,5.8,752.7333333333,80,5.6666666667,40,2.5333333333,17.3393985489,17.3393985489 -610,20,21,43.6633333333,20.6,41.7,21.6633333333,47.79,20.4333333333,44.6966666667,17.6111111111,58.2377777778,4.73,99.7,16.89,40.5355555556,20.1222222222,48.9738888889,16.29,45.6266666667,5.7,752.85,80,5.5,40,2.45,7.5234068208,7.5234068208 -590,20,21.1,43.8266666667,20.6,41.7,21.8566666667,47.73,21.1966666667,43.96,17.6277777778,57.9577777778,4.4633333333,99.2933333333,16.89,40.3805555556,20.1,48.7955555556,16.29,45.4666666667,5.6,752.9666666667,80,5.3333333333,40,2.3666666667,29.975312727,29.975312727 -260,20,21.1,43.8266666667,20.5666666667,41.6633333333,22.1,47.3333333333,21.5966666667,43.5,17.6166666667,57.7144444444,4.2633333333,99.19,16.89,40.235,20.1055555556,48.6766666667,16.29,45.3266666667,5.5,753.0833333333,80,5.1666666667,40,2.2833333333,44.530916377,44.530916377 -120,20,21.0666666667,43.8333333333,20.5,41.59,22.1666666667,46.7266666667,22.1,42.96,17.6,57.4527777778,4.19,99.19,16.89,40.1205555556,20.1888888889,48.4822222222,16.29,45.26,5.4,753.2,80,5,40,2.2,19.4350471604,19.4350471604 -250,30,21,43.5666666667,20.5,41.56,22.26,46.0933333333,21.96,42.6266666667,17.6,57.1994444444,4.19,99.4333333333,16.89,40.0094444444,20.25,48.4161111111,16.29,45.1266666667,5.25,753.3333333333,80.5,4.6666666667,40,2.15,4.9067056738,4.9067056738 -400,20,21.1,43.2666666667,20.5,41.5,22.1333333333,45.96,21.6666666667,42.6266666667,17.6,56.97,4.2633333333,99.6266666667,16.89,39.9111111111,20.245,48.2922222222,16.29,44.9666666667,5.1,753.4666666667,81,4.3333333333,40,2.1,40.3605921194,40.3605921194 -120,0,21.1666666667,42.8,20.6333333333,41.5,22.0666666667,45.93,21.7266666667,42.7,17.6,56.7572222222,4.2633333333,99.5266666667,16.89,39.8816666667,20.28,48.225,16.29,44.9,4.95,753.6,81.5,4,40,2.05,5.9042140492,5.9042140492 -120,30,21.245,42.645,20.76,41.4333333333,21.9266666667,45.73,22.0666666667,42.3,17.6,56.5677777778,4.0633333333,99.26,16.89,39.79,20.3177777778,48.245,16.29,44.79,4.8,753.7333333333,82,3.6666666667,40,2,38.2132777595,38.2132777595 -190,0,21.3233333333,42.4333333333,20.8233333333,41.29,21.89,45.43,21.87,41.925,17.6,56.4027777778,3.8633333333,99.0266666667,16.89,39.775,20.3961111111,48.28,16.29,44.73,4.65,753.8666666667,82.5,3.3333333333,40,1.95,6.3127162983,6.3127162983 -670,10,21.39,42.8933333333,20.9633333333,41.29,21.8233333333,45.1566666667,21.5666666667,41.86,17.6,56.2366666667,3.73,98.76,16.89,39.7,20.4633333333,48.2027777778,16.29,44.6633333333,4.5,754,83,3,40,1.9,42.7265894017,42.7265894017 -780,0,21.5333333333,45.86,21,41.3266666667,21.76,44.76,21.3566666667,41.6633333333,17.6,56.09,3.4,97.96,16.89,39.6083333333,20.5,48.0961111111,16.29,44.53,4.2,754.1,84.1666666667,3,37.8333333333,1.7833333333,26.8384353607,26.8384353607 -620,0,21.6666666667,56.3933333333,21.0666666667,41.8,21.7,45.1666666667,21.1633333333,41.53,17.6055555556,56.2288888889,3.1266666667,97.2933333333,16.89,39.575,20.55,48.17,16.29,44.4666666667,3.9,754.2,85.3333333333,3,35.6666666667,1.6666666667,29.809587507,29.809587507 -210,10,21.79,63.36,21.23,43.2333333333,21.7,47.2,20.9633333333,41.1633333333,17.6666666667,56.675,2.8633333333,96.83,16.89,39.5044444444,20.6,48.29,16.29,44.3725,3.6,754.3,86.5,3,33.5,1.55,43.1527116569,43.1527116569 -110,0,21.79,59.6333333333,21.29,44.6333333333,21.7,48.7933333333,20.8233333333,41.09,17.6777777778,57.3438888889,2.73,96.83,16.89,39.4133333333,20.6222222222,48.1494444444,16.29,44.29,3.3,754.4,87.6666666667,3,31.3333333333,1.4333333333,43.3719091816,43.3719091816 -100,10,21.89,55.2333333333,21.29,45.5,21.7,49.56,20.6666666667,41.0266666667,17.7,57.9222222222,2.6633333333,97.03,16.89,39.4,20.6277777778,47.66,16.29,44.2,3,754.5,88.8333333333,3,29.1666666667,1.3166666667,2.9546641628,2.9546641628 -90,10,21.89,53.1,21.29,45.36,21.6333333333,49.2266666667,20.5333333333,40.9666666667,17.6777777778,58.2044444444,2.53,97.09,16.89,39.345,20.6166666667,47.5633333333,16.29,44.2,2.7,754.6,90,3,27,1.2,23.4744845773,23.4744845773 -90,10,21.89,50.89,21.29,45.06,21.5666666667,48.5245833333,20.3566666667,40.9333333333,17.7,58.265,2.5,97.245,16.89,39.235,20.6,47.4166666667,16.29,44.1633333333,2.7333333333,754.55,89.5,3.1666666667,27.3333333333,1.1666666667,17.1240852098,17.1240852098 -100,10,21.89,49.2966666667,21.29,44.8,21.5,47.8225,20.23,40.86,17.7433333333,58.005,2.2966666667,96.6666666667,16.89,39.145,20.6,47.4,16.29,44.09,2.7666666667,754.5,89,3.3333333333,27.6666666667,1.1333333333,41.2285334663,41.2285334663 -100,0,22.0333333333,47.6966666667,21.39,44.245,21.4266666667,47.39,20.1666666667,41.0966666667,18.1772222222,56.2666666667,2.03,95.8666666667,16.89,39.0494444444,20.6,47.3116666667,16.29,44,2.8,754.45,88.5,3.5,28,1.1,26.4645225601,26.4645225601 -110,0,22.1,46.6966666667,21.4266666667,43.7233333333,21.3566666667,46.9,20.1,41.5633333333,18.5644444444,54.4405555556,1.8633333333,95.7966666667,16.89,38.8805555556,20.6388888889,47.1166666667,16.29,44,2.8333333333,754.4,88,3.6666666667,28.3333333333,1.0666666667,21.8617799925,21.8617799925 -100,0,22.1333333333,45.7666666667,21.5,43.4633333333,21.23,46.4266666667,20,41.59,18.83,53.2561111111,1.6633333333,95.53,16.89,38.7166666667,20.6888888889,46.9883333333,16.29,43.9,2.8666666667,754.35,87.5,3.8333333333,28.6666666667,1.0333333333,2.8212895151,2.8212895151 -110,0,22.2,45.1666666667,21.6,43.06,21.2,46.0266666667,19.9266666667,41.6633333333,18.9983333333,52.26,1.5666666667,95.69,16.89,38.565,20.745,46.82,16.29,43.7666666667,2.9,754.3,87,4,29,1,12.3887287918,12.3887287918 -100,0,22.2,44.5633333333,21.6,42.8,21.2,45.7666666667,19.76,41.86,19.15,51.4544444444,1.4266666667,95.4966666667,16.89,38.3983333333,20.79,46.5305555556,16.29,43.56,2.95,754.35,86.5,4.1666666667,29,0.95,19.9043174041,19.9043174041 -100,0,22.2,44.1566666667,21.6,42.4666666667,21.2,45.43,19.7,42,19.2605555556,50.7483333333,1.3566666667,95.59,16.89,38.245,20.8177777778,46.3022222222,16.29,43.4333333333,3,754.4,86,4.3333333333,29,0.9,5.5606640526,5.5606640526 -90,0,22.29,43.7966666667,21.6,42.1933333333,21.1333333333,45.29,19.6,41.9333333333,19.3788888889,50.0638888889,1.29,95.7966666667,16.89,38.0933333333,20.89,46.275,16.29,43.26,3.05,754.45,85.5,4.5,29,0.85,21.0811285069,21.0811285069 -90,0,22.29,43.39,21.6333333333,42,21.1,45.0266666667,19.6,42.1333333333,19.39,49.5283333333,1.39,96.0633333333,16.89,37.95,20.8788888889,46.2433333333,16.29,43.1266666667,3.1,754.5,85,4.6666666667,29,0.8,11.9594615884,11.9594615884 -90,0,22.2,42.93,21.6333333333,41.86,21.1,44.8266666667,19.5,42.29,19.445,49.13,1.4633333333,96.5233333333,16.9022222222,37.8327777778,20.84,46.3511111111,16.29,42.9666666667,3.15,754.55,84.5,4.8333333333,29,0.75,42.5266145845,42.5266145845 -90,0,22.2,42.695,21.6333333333,41.7,21.1,44.6633333333,19.3925,42.14,19.5,48.7466666667,1.6,96.9333333333,16.9266666667,37.79,20.79,46.3755555556,16.29,42.8266666667,3.2,754.6,84,5,29,0.7,11.351258494,11.351258494 -70,0,22.2,42.53,21.6333333333,41.5666666667,21.1,44.4633333333,19.29,42.09,19.5,48.4294444444,1.8,97.3933333333,16.89,37.78,20.79,46.2961111111,16.29,42.7,3.3333333333,754.6166666667,84.6666666667,5,28.8333333333,0.9333333333,37.385616242,37.385616242 -60,20,22.1,42.3633333333,21.5666666667,41.3633333333,21,44.29,19.2,41.93,19.4938888889,48.2172222222,2.0966666667,97.8233333333,16.89,37.8383333333,20.79,46.3727777778,16.29,42.6266666667,3.4666666667,754.6333333333,85.3333333333,5,28.6666666667,1.1666666667,35.8859307715,35.8859307715 -70,0,22.1,42.29,21.5,41.03,21,44.29,19.1333333333,41.8633333333,19.3272222222,48.68,2.3975,98.115,16.9205555556,38.1633333333,20.79,46.7455555556,16.29,42.96,3.6,754.65,86,5,28.5,1.4,4.7582435654,4.7582435654 -50,0,22.0666666667,42.1933333333,21.39,40.59,20.89,44.3266666667,19.1,42.0666666667,19.1,49.3761111111,2.5,98.2633333333,16.9266666667,38.4477777778,20.79,47.1138888889,16.365,44.575,3.7333333333,754.6666666667,86.6666666667,5,28.3333333333,1.6333333333,23.961236293,23.961236293 -50,0,22,41.9333333333,21.3233333333,40.6633333333,20.8233333333,44.4666666667,19.1,42.26,18.945,49.9283333333,2.73,98.53,16.9633333333,38.6033333333,20.79,47.4638888889,16.39,45.46,3.8666666667,754.6833333333,87.3333333333,5,28.1666666667,1.8666666667,6.3571025035,6.3571025035 -50,0,21.89,41.9333333333,21.26,40.76,20.79,44.4,19,42.29,18.8288888889,50.4538888889,2.93,98.73,16.9877777778,38.745,20.79,47.7127777778,16.5,46.1566666667,4,754.7,88,5,28,2.1,13.2118502515,13.2118502515 -50,0,21.89,42.06,21.2,40.76,20.79,44.4,18.9266666667,42.3633333333,18.725,50.9283333333,3.23,98.9333333333,16.9877777778,38.8983333333,20.8122222222,47.985,16.5,46.3633333333,4.0833333333,754.7,87.8333333333,5,28.1666666667,2.1666666667,11.3520894432,11.3520894432 -60,0,21.79,42.03,21.1666666667,40.9333333333,20.79,44.4,18.89,42.53,18.6611111111,51.4022222222,3.3633333333,99.06,17,39.045,20.79,47.9777777778,16.5,46.6566666667,4.1666666667,754.7,87.6666666667,5,28.3333333333,2.2333333333,9.2251605238,9.2251605238 -40,0,21.79,42.09,21.1,41.06,20.79,44.4333333333,18.8233333333,42.59,18.6,51.8155555556,3.5,99.19,16.9755555556,39.1572222222,20.79,48.6444444444,16.5,46.8633333333,4.25,754.7,87.5,5,28.5,2.3,0.8627981879,0.8627981879 -40,0,21.76,42.09,21,41.1266666667,20.79,44.56,18.79,42.7,18.5611111111,52.2211111111,3.56,99.19,17,39.265,20.79,49.5794444444,16.5,47.03,4.3333333333,754.7,87.3333333333,5,28.6666666667,2.3666666667,46.7410132638,46.7410132638 -40,0,21.7,42.1633333333,20.9175,41.2225,20.79,44.53,18.79,42.76,18.5,52.5644444444,3.7,99.3,17,39.3572222222,20.79,49.9577777778,16.5,47.09,4.4166666667,754.7,87.1666666667,5,28.8333333333,2.4333333333,6.0519947321,6.0519947321 -50,0,21.6,42.09,20.8233333333,41.23,20.79,44.59,18.7,42.9333333333,18.4816666667,52.83,3.76,99.3,17,39.4,20.79,50.1944444444,16.5,47.2,4.5,754.7,87,5,29,2.5,20.3212821856,20.3212821856 -40,0,21.6,42.1633333333,20.79,41.23,20.79,44.59,18.7,43,18.39,52.9972222222,3.8266666667,99.3333333333,17,39.4055555556,20.735,50.4477777778,16.5,47.26,4.4666666667,754.7333333333,86.8333333333,4.8333333333,30.8333333333,2.45,39.4583928515,39.4583928515 -50,0,21.5666666667,42.2,20.73,41.3633333333,20.79,44.59,18.6666666667,43.09,18.3788888889,53.235,3.9,99.4,17,39.4888888889,20.7,50.6105555556,16.5,47.4,4.4333333333,754.7666666667,86.6666666667,4.6666666667,32.6666666667,2.4,5.2934244275,5.2934244275 -50,0,21.5,42.2,20.6666666667,41.3633333333,20.89,44.7,18.6,43.09,18.3066666667,53.4155555556,3.9,99.4,17,39.5,20.7,50.7788888889,16.5,47.4666666667,4.4,754.8,86.5,4.5,34.5,2.35,17.0797308325,17.0797308325 -50,0,21.4633333333,42.1633333333,20.6,41.29,20.89,44.7,18.5666666667,43.2,18.29,53.5811111111,3.9,99.3333333333,17,39.5,20.65,50.9388888889,16.6,47.53,4.3666666667,754.8333333333,86.3333333333,4.3333333333,36.3333333333,2.3,16.6797212325,16.6797212325 -40,0,21.39,42.1633333333,20.5666666667,41.3266666667,20.89,44.7,18.5,43.2,18.27,53.6883333333,4,99.3,17,39.515,20.65,50.955,16.6,47.59,4.3333333333,754.8666666667,86.1666666667,4.1666666667,38.1666666667,2.25,38.7200968456,38.7200968456 -50,0,21.3566666667,42.2,20.5,41.4,20.89,44.6266666667,18.5,43.23,18.235,53.8083333333,4,99.3666666667,17,39.59,20.6333333333,51.0188888889,16.6,47.73,4.3,754.9,86,4,40,2.2,26.8583578989,26.8583578989 -40,0,21.29,42.2,20.4633333333,41.4,21,44.59,18.5,43.29,18.2,53.9277777778,4,99.3333333333,17,39.59,20.6055555556,51.01,16.6,47.8633333333,4.1833333333,754.85,86.8333333333,4,40,2.2,39.3585744197,39.3585744197 -30,0,21.245,42.145,20.39,41.4,21,44.59,18.5,43.3633333333,18.2,54.035,4.045,99.425,17,39.59,20.6,51.05,16.6,47.9333333333,4.0666666667,754.8,87.6666666667,4,40,2.2,39.8794612498,39.8794612498 -30,0,21.2,42.09,20.29,41.5,20.9633333333,44.5266666667,18.39,43.29,18.1666666667,54.1205555556,4,99.3,17,39.59,20.6,51.005,16.6,48.06,3.95,754.75,88.5,4,40,2.2,11.1952947336,11.1952947336 -30,0,21.1333333333,42.03,20.29,41.5,20.9633333333,44.3266666667,18.39,43.29,18.1055555556,54.245,3.8633333333,99.1266666667,17,39.59,20.5277777778,51,16.6,48.23,3.8333333333,754.7,89.3333333333,4,40,2.2,23.3078769059,23.3078769059 -30,0,21.1,42,20.2,41.4333333333,20.89,44.4,18.39,43.29,18.1,54.28,3.73,99,17,39.6022222222,20.5,51.005,16.6,48.3975,3.7166666667,754.65,90.1666666667,4,40,2.2,16.1171982763,16.1171982763 -50,0,21.1,42,20.2,41.5,20.8233333333,44.4,18.39,43.3633333333,18.0777777778,54.3327777778,3.4666666667,98.69,17.0166666667,39.6572222222,20.5,51.1105555556,16.6,48.5,3.6,754.6,91,4,40,2.2,27.2265015054,27.2265015054 -50,0,21,41.9,20.1666666667,41.53,20.79,44.4333333333,18.39,43.4,18.05,54.3572222222,3.3266666667,98.4966666667,17.0055555556,39.7,20.5,51.2211111111,16.6333333333,48.6566666667,3.6666666667,754.6333333333,91,4,40,2.2666666667,48.5784712597,48.5784712597 -40,0,21,41.9,20.1,41.59,20.79,44.4333333333,18.3233333333,43.4666666667,18,54.345,3.06,97.8666666667,17,39.7,20.5,51.3877777778,16.7,48.79,3.7333333333,754.6666666667,91,4,40,2.3333333333,7.4650509632,7.4650509632 -40,0,20.9266666667,41.9,20,41.59,20.79,44.5,18.29,43.5,18,54.4,2.9333333333,97.8,17,39.7,20.4327777778,51.4166666667,16.7,48.9,3.8,754.7,91,4,40,2.4,18.1841404876,18.1841404876 -50,0,20.9266666667,41.9666666667,20,41.59,20.79,44.53,18.29,43.5,18,54.4833333333,3.0666666667,98.3233333333,17,39.7,20.39,51.545,16.7,48.9666666667,3.8666666667,754.7333333333,91,4,40,2.4666666667,39.3553417176,39.3553417176 -40,0,20.89,42,20,41.7,20.79,44.59,18.26,43.4666666667,17.945,54.5,3.3333333333,98.73,17.0222222222,39.7,20.39,51.7605555556,16.7,49,3.9333333333,754.7666666667,91,4,40,2.5333333333,29.3304565945,29.3304565945 -60,0,20.8233333333,41.9333333333,19.9175,41.7,20.79,44.59,18.2,43.4,17.9144444444,54.575,3.5,98.9333333333,17,39.7,20.4022222222,52.1016666667,16.7,49.06,4,754.8,91,4,40,2.6,26.9894739031,26.9894739031 -50,0,20.79,42,19.89,41.7,20.79,44.59,18.2,43.4,17.89,54.6205555556,3.56,99,17.0444444444,39.74,20.4694444444,52.5305555556,16.7,49.09,4.0666666667,754.8166666667,90.8333333333,4,40,2.65,43.694300449,43.694300449 -40,0,20.79,42.06,19.79,41.6266666667,20.8233333333,44.53,18.2,43.4,17.89,54.6755555556,3.6266666667,99.0633333333,17,39.7,20.4877777778,52.735,16.7,49.1633333333,4.1333333333,754.8333333333,90.6666666667,4,40,2.7,38.4713292355,38.4713292355 -50,0,20.7,42.09,19.79,41.76,20.89,44.53,18.2,43.5,17.89,54.71,3.7,99.19,17,39.7,20.3905555556,52.705,16.7,49.2,4.2,754.85,90.5,4,40,2.75,22.5418749847,22.5418749847 -40,0,20.7,42.1633333333,19.76,41.79,20.9266666667,44.5,18.2,43.5,17.8622222222,54.71,3.79,99.19,17.0222222222,39.72,20.3233333333,52.6205555556,16.7,49.26,4.2666666667,754.8666666667,90.3333333333,4,40,2.8,46.952703374,46.952703374 -40,0,20.7,42.2,19.7,41.79,21,44.5,18.1,43.5,17.84,54.72,3.8633333333,99.2633333333,17,39.7,20.285,52.5294444444,16.7,49.3266666667,4.3333333333,754.8833333333,90.1666666667,4,40,2.85,27.9294526437,27.9294526437 -50,0,20.6333333333,42.1266666667,19.7,41.79,21,44.5,18.1,43.5,17.7955555556,54.6938888889,4,99.4,17.05,39.745,20.21,52.3316666667,16.7,49.4,4.4,754.9,90,4,40,2.9,28.5500062513,28.5500062513 -30,0,20.6,42.2,19.6333333333,41.79,21,44.4333333333,18.1,43.5,17.79,54.6816666667,3.8633333333,99.23,17.05,39.75,20.2,52.27,16.79,49.4333333333,4.4,754.9,90.1666666667,4,40,2.9166666667,5.3654560121,5.3654560121 -30,0,20.6,42.2,19.6,41.79,21,44.3633333333,18.1,43.5225,17.79,54.7,3.79,99.09,17.0611111111,39.8327777778,20.2,52.345,16.79,49.5,4.4,754.9,90.3333333333,4,40,2.9333333333,19.4381105364,19.4381105364 -30,0,20.5,42.245,19.6,41.79,20.9266666667,44.29,18.1,43.59,17.775,54.7,3.79,99.1233333333,17.0388888889,39.7961111111,20.1166666667,52.4661111111,16.79,49.5,4.4,754.9,90.5,4,40,2.95,48.8739002729,48.8739002729 -30,0,20.5,42.29,19.5,41.8266666667,20.89,44.29,18,43.5,17.785,54.6877777778,3.79,99.19,17.0555555556,39.79,20.1,52.6355555556,16.79,49.5,4.4,754.9,90.6666666667,4,40,2.9666666667,11.0725976061,11.0725976061 -50,0,20.5,42.29,19.5,41.9666666667,20.9633333333,44.29,18,43.5,17.79,54.6877777778,3.9,99.3333333333,17.0555555556,39.8144444444,20.1,52.9033333333,16.79,49.5,4.4,754.9,90.8333333333,4,40,2.9833333333,11.0031631775,11.0031631775 -40,0,20.39,42.29,19.5,41.9333333333,21,44.29,18,43.59,17.755,54.6327777778,3.9666666667,99.4,17.0555555556,39.8511111111,20.05,53.06,16.79,49.5,4.4,754.9,91,4,40,3,14.108549559,14.108549559 -40,0,20.39,42.29,19.5,42,21,44.29,18,43.59,17.7,54.59,4.03,99.4333333333,17.0666666667,39.8633333333,20,53.1422222222,16.79,49.5,4.35,754.8,91.5,4,37.6666666667,3.0333333333,5.9610587661,5.9610587661 -50,0,20.39,42.3266666667,19.39,42,20.89,44.4,18,43.59,17.7,54.59,4.03,99.4333333333,17.0444444444,39.8388888889,20,53.3105555556,16.79,49.6266666667,4.3,754.7,92,4,35.3333333333,3.0666666667,9.0066830395,9.0066830395 -50,0,20.3233333333,42.4,19.39,42,20.89,44.4666666667,17.9266666667,43.59,17.7,54.59,3.93,99.2633333333,17.0555555556,39.8511111111,20,53.6105555556,16.79,49.7,4.25,754.6,92.5,4,33,3.1,14.2223708448,14.2223708448 -40,0,20.29,42.4,19.39,42,20.945,44.29,17.89,43.59,17.7,54.59,3.73,99.1233333333,17.0333333333,39.8266666667,19.9694444444,53.8105555556,16.79,49.7,4.2,754.5,93,4,30.6666666667,3.1333333333,32.2137788055,32.2137788055 -60,0,20.29,42.4666666667,19.3233333333,42,20.89,44.29,17.89,43.6633333333,17.7,54.59,3.6633333333,99.06,17.0111111111,39.8022222222,19.9266666667,54.0383333333,16.79,49.7,4.15,754.4,93.5,4,28.3333333333,3.1666666667,48.0177513324,48.0177513324 -40,0,20.29,42.5,19.29,42.09,20.89,44.29,17.89,43.7,17.6944444444,54.5094444444,3.53,99,17.05,39.845,19.9022222222,54.065,16.79,49.73,4.1,754.3,94,4,26,3.2,3.5547495005,3.5547495005 -50,0,20.23,42.4333333333,19.29,42.1175,20.89,44.3266666667,17.89,43.7,17.6611111111,54.4911111111,3.4666666667,98.8666666667,17.0777777778,39.8755555556,19.89,53.9327777778,16.79,49.79,4.1333333333,754.3,94.1666666667,4,25.6666666667,3.2666666667,1.8959234818,1.8959234818 -40,0,20.2,42.5,19.23,42.1266666667,20.89,44.3266666667,17.89,43.7,17.6388888889,54.4488888889,3.4,98.8666666667,17.0555555556,39.8511111111,19.89,53.8022222222,16.8233333333,49.86,4.1666666667,754.3,94.3333333333,4,25.3333333333,3.3333333333,2.0230470458,2.0230470458 -40,0,20.2,42.6333333333,19.2,42.1266666667,20.8566666667,44.29,17.89,43.76,17.6,54.4444444444,3.53,99.0633333333,17.1,39.9,19.89,53.79,16.89,50,4.2,754.3,94.5,4,25,3.4,20.8462399663,20.8462399663 -50,0,20.2,42.7,19.2,42.2,20.8566666667,44.43,17.8233333333,43.73,17.6,54.4333333333,3.6633333333,99.2633333333,17.0777777778,39.9033333333,19.84,53.6944444444,16.89,49.9333333333,4.2333333333,754.3,94.6666666667,4,24.6666666667,3.4666666667,12.6132071833,12.6132071833 -40,0,20.1333333333,42.7,19.2,42.23,20.89,44.5,17.8233333333,43.73,17.6,54.4444444444,3.745,99.245,17.0555555556,39.9311111111,19.79,53.555,16.8233333333,49.9333333333,4.2666666667,754.3,94.8333333333,4,24.3333333333,3.5333333333,5.4296618211,5.4296618211 -40,0,20.1,42.7,19.2,42.29,20.89,44.5,17.79,43.7,17.6,54.4333333333,3.79,99.3,17.0611111111,39.9611111111,19.79,53.5,16.89,49.9666666667,4.3,754.3,95,4,24,3.6,43.0439724703,43.0439724703 -40,0,20.1,42.76,19.2,42.29,20.89,44.4,17.79,43.76,17.6,54.4222222222,3.8633333333,99.3666666667,17.0555555556,39.9555555556,19.79,53.5,16.89,49.9666666667,4.3833333333,754.2833333333,94.8333333333,4,24.5,3.65,7.5696208398,7.5696208398 -30,0,20.0333333333,42.73,19.1333333333,42.29,20.8233333333,44.4666666667,17.79,43.79,17.5722222222,54.4,4,99.4,17.05,39.95,19.79,53.5,16.8233333333,49.8266666667,4.4666666667,754.2666666667,94.6666666667,4,25,3.7,27.4439896224,27.4439896224 -20,0,20.0333333333,42.73,19.1,42.4,20.79,44.5,17.79,43.79,17.5666666667,54.4,4.06,99.4666666667,17.0777777778,39.9777777778,19.79,53.5,16.8233333333,49.9,4.55,754.25,94.5,4,25.5,3.75,25.5362261436,25.5362261436 -40,0,20,42.7,19.1,42.4666666667,20.79,44.5,17.79,43.79,17.5944444444,54.4,4.1233333333,99.56,17.0833333333,40.0033333333,19.79,53.45,16.89,50,4.6333333333,754.2333333333,94.3333333333,4,26,3.8,15.5282513588,15.5282513588 -40,10,20,42.7675,19.1,42.5,20.79,44.5,17.79,43.8266666667,17.55,54.4,4.19,99.5,17.0666666667,40.0444444444,19.785,53.3938888889,16.89,50,4.7166666667,754.2166666667,94.1666666667,4,26.5,3.85,34.1488880338,34.1488880338 -190,10,20,42.79,19.1,42.5,20.79,44.56,17.73,43.8266666667,17.5222222222,54.3177777778,4.3,99.69,17.0333333333,39.9822222222,19.755,53.2466666667,16.89,50,4.8,754.2,94,4,27,3.9,37.4219910358,37.4219910358 -150,40,19.9633333333,42.8633333333,19,42.4666666667,20.7,44.56,17.73,43.9333333333,17.5,54.12,4.3666666667,99.69,17,39.8816666667,19.715,52.9144444444,16.89,49.9666666667,4.8333333333,754.2166666667,93.6666666667,4,29.1666666667,3.8833333333,47.6259228308,47.6259228308 -350,40,19.89,42.93,19,42.4,20.7,44.4333333333,17.9966666667,44.06,17.5222222222,53.8983333333,4.5,99.8,17,39.79,19.6888888889,52.5172222222,16.89,49.8266666667,4.8666666667,754.2333333333,93.3333333333,4,31.3333333333,3.8666666667,18.1307283929,18.1307283929 -70,10,19.9266666667,42.86,19,42.29,20.6666666667,44.2233333333,18.5566666667,44.1333333333,17.5,53.7144444444,4.56,99.8,17,39.79,19.65,52.0961111111,16.89,49.56,4.9,754.25,93,4,33.5,3.85,17.3146764864,17.3146764864 -90,10,20,43,19.0666666667,42.3633333333,20.6,44.03,19.03,43.6666666667,17.5,53.5294444444,4.6233333333,99.8333333333,17,39.79,19.6,51.7266666667,16.89,49.4333333333,4.9333333333,754.2666666667,92.6666666667,4,35.6666666667,3.8333333333,22.7115165326,22.7115165326 -80,10,20.0333333333,43.4333333333,19.1333333333,42.4,20.6,43.9,19.03,43.26,17.5,53.3805555556,4.7633333333,99.9,16.9755555556,39.78,19.5944444444,51.5094444444,16.89,49.2233333333,4.9666666667,754.2833333333,92.3333333333,4,37.8333333333,3.8166666667,33.4352348349,33.4352348349 -60,20,20.1,43.56,19.2,42.3266666667,20.6,43.9,18.89,43.2,17.5,53.255,4.9333333333,99.9,16.9877777778,39.78,19.5333333333,51.4111111111,16.89,48.9633333333,5,754.3,92,4,40,3.8,26.4545873972,26.4545873972 -50,10,20.1333333333,43.53,19.3233333333,42.3633333333,20.5333333333,43.8266666667,18.76,43.2,17.5,53.145,5.06,99.9,16.9877777778,39.715,19.5,51.3277777778,16.89,48.7233333333,5.0833333333,754.25,92.1666666667,4.1666666667,38,3.9,0.1410593977,0.1410593977 -360,30,20.2,43.53,19.4725,42.195,20.5,43.8266666667,18.7,43.2,17.5,52.9983333333,5.1233333333,99.9,17,39.7,19.5,51.1794444444,16.89,48.4633333333,5.1666666667,754.2,92.3333333333,4.3333333333,36,4,43.0936677847,43.0936677847 -440,40,20.29,43.1933333333,19.5666666667,41.9633333333,20.5,43.9,18.7633333333,43.4633333333,17.5,52.845,5.19,99.9,16.9755555556,39.7,19.5111111111,51.0494444444,16.79,48.1333333333,5.25,754.15,92.5,4.5,34,4.1,27.8442835086,27.8442835086 -440,30,20.3566666667,42.9333333333,19.73,41.8633333333,20.5,44,19.2233333333,43.53,17.5,52.7288888889,5.3,99.9,16.9755555556,39.7,19.5111111111,50.9111111111,16.79,47.8,5.3333333333,754.1,92.6666666667,4.6666666667,32,4.2,45.0959933572,45.0959933572 -450,30,20.5,42.6633333333,19.79,41.6566666667,20.4266666667,43.86,20.0233333333,43.3333333333,17.5,52.6266666667,5.4333333333,99.9,16.9205555556,39.7,19.5,50.9,16.79,47.56,5.4166666667,754.05,92.8333333333,4.8333333333,30,4.3,47.516298492,47.516298492 -440,30,20.5,42.59,19.89,41.6333333333,20.5,43.6633333333,20.6233333333,43.0666666667,17.5,52.5094444444,5.56,99.9,16.9205555556,39.7,19.4205555556,50.8205555556,16.79,47.4333333333,5.5,754,93,5,28,4.4,45.008416113,45.008416113 -140,30,20.5,42.56,19.9633333333,41.5,20.5,43.39,21.3333333333,42.6333333333,17.5,52.3561111111,5.69,99.9,16.9205555556,39.705,19.4388888889,50.8388888889,16.79,47.1633333333,5.5833333333,753.95,93,5,30,4.4833333333,34.697322303,34.697322303 -190,30,20.5666666667,42.5,20.0333333333,41.4,20.5,43.2,21.7266666667,42.3,17.5,52.275,5.83,99.9,16.89,39.74,19.39,50.79,16.79,47.03,5.6666666667,753.9,93,5,32,4.5666666667,41.8111937819,41.8111937819 -450,10,20.6,42.5,20.0333333333,41.3266666667,20.5,43.2,21.6333333333,42.09,17.5,52.2,6.1233333333,99.9,16.89,39.79,19.4144444444,50.8144444444,16.79,46.8633333333,5.75,753.85,93,5,34,4.65,23.1594355078,23.1594355078 -360,10,20.6666666667,42.6333333333,20.1333333333,41.3633333333,20.5,43.09,21.295,42.1725,17.5,52.1083333333,6.33,99.9,16.89,39.845,19.39,50.78,16.79,46.73,5.8333333333,753.8,93,5,36,4.7333333333,31.45498425,31.45498425 -110,10,20.73,42.56,20.2,41.29,20.5,43.09,20.96,42.2,17.5,52.09,6.53,99.9,16.89,39.9166666667,19.39,50.705,16.79,46.5,5.9166666667,753.75,93,5,38,4.8166666667,21.9550413662,21.9550413662 -70,10,20.815,42.3425,20.23,41.2,20.5,42.9666666667,20.6666666667,42,17.5,52.015,6.59,99.9,16.89,40,19.39,50.745,16.79,46.4333333333,6,753.7,93,5,40,4.9,48.496056546,48.496056546 -130,10,20.9633333333,42.23,20.3566666667,41.1266666667,20.5666666667,42.8266666667,20.5333333333,42.06,17.5,51.95,6.7266666667,99.9,16.89,40.055,19.39,50.8788888889,16.79,46.345,6.1,753.6666666667,92.8333333333,5,40,4.9833333333,13.9774444746,13.9774444746 -70,10,21.0333333333,41.9666666667,20.5,40.99,20.6,42.7,20.3566666667,42.1266666667,17.5,51.9,6.8666666667,99.9,16.9144444444,40.145,19.39,51.135,16.79,46.26,6.2,753.6333333333,92.6666666667,5,40,5.0666666667,48.9734391915,48.9734391915 -60,10,21.1666666667,41.6933333333,20.5,40.6566666667,20.6,42.7,20.23,42.2,17.5,51.845,7.0633333333,99.9,16.89,40.2,19.39,51.205,16.79,46.2,6.3,753.6,92.5,5,40,5.15,34.1462600511,34.1462600511 -140,10,21.23,41.4,20.6,40.4666666667,20.6,42.79,20.0666666667,42.1633333333,17.5,51.755,7.19,99.9,16.89,40.245,19.39,51.2983333333,16.79,46.09,6.4,753.5666666667,92.3333333333,5,40,5.2333333333,45.400305721,45.400305721 -130,10,21.29,41.3266666667,20.6666666667,40.4666666667,20.6,42.79,20,42.09,17.5,51.7,7.3,99.9,16.89,40.3083333333,19.4572222222,51.4888888889,16.79,46.09,6.5,753.5333333333,92.1666666667,5,40,5.3166666667,33.4989442839,33.4989442839 -210,20,21.29,41.0333333333,20.6333333333,39.8966666667,20.6,42.79,19.89,42.29,17.5,51.6177777778,7.4333333333,99.9,16.89,40.4,19.445,51.2972222222,16.79,46.09,6.6,753.5,92,5,40,5.4,20.6532304292,20.6532304292 -530,30,21.23,40.4266666667,20.36,39.3633333333,20.5333333333,42.79,19.65,42.1,17.5,51.45,7.5,99.9,16.9572222222,40.5183333333,19.4083333333,50.9294444444,16.79,46.03,6.6666666667,753.3666666667,92.5,5.1666666667,40.6666666667,5.55,46.5693118982,46.5693118982 -410,40,21.29,40.29,20.4266666667,39.5666666667,20.6,43.1966666667,19.7,42.8,17.5,51.3033333333,7.5,99.9,17,40.6305555556,19.4755555556,50.7955555556,16.79,46,6.7333333333,753.2333333333,93,5.3333333333,41.3333333333,5.7,7.4579466484,7.4579466484 -480,30,21.29,40.29,20.5666666667,39.6266666667,20.86,44.5666666667,19.76,43,17.5388888889,51.155,7.545,99.9,17,40.9711111111,19.5611111111,50.5305555556,16.79,46,6.8,753.1,93.5,5.5,42,5.85,0.8510830346,0.8510830346 -410,40,21.3233333333,40.4,20.65,39.745,21.1333333333,45.1,19.89,43.2,17.5666666667,51.015,7.6233333333,99.9,17,41.2227777778,19.6166666667,50.245,16.79,46,6.8666666667,752.9666666667,94,5.6666666667,42.6666666667,6,28.8250424666,28.8250424666 -320,30,21.4633333333,40.6,20.73,39.9,21.46,45.29,20.03,43.26,17.6,51.065,7.69,99.9,17.0277777778,41.4183333333,19.6888888889,50.1155555556,16.79,46,6.9333333333,752.8333333333,94.5,5.8333333333,43.3333333333,6.15,25.4370520706,25.4370520706 -310,30,21.6,40.7,20.8566666667,40.0266666667,21.6666666667,45.0966666667,20.2,43.26,17.6,51.09,7.6233333333,99.9,17.0888888889,41.8005555556,19.7,50.01,16.73,46,7,752.7,95,6,44,6.3,14.4683269318,14.4683269318 -290,10,21.6666666667,40.7,20.89,39.79,21.8233333333,44.6,20.2,43.0666666667,17.6,51.09,7.69,99.9,17.1,41.8327777778,19.775,49.9205555556,16.79,46.06,7.0666666667,752.5833333333,95,6,46.3333333333,6.3666666667,13.8201295747,13.8201295747 -220,10,21.73,40.59,20.9633333333,39.79,21.89,44.3266666667,20.0666666667,42.8633333333,17.6833333333,51.1572222222,7.8666666667,99.9,17.1,41.9,19.8177777778,49.725,16.79,46.09,7.1333333333,752.4666666667,95,6,48.6666666667,6.4333333333,30.4169189651,30.4169189651 -130,10,21.79,40.6633333333,21.0666666667,39.8266666667,22.0333333333,44.4333333333,20,42.79,17.6833333333,51.1816666667,8,99.9,17.1,41.9,19.8961111111,49.6511111111,16.73,46.09,7.2,752.35,95,6,51,6.5,19.5259067812,19.5259067812 -130,10,21.89,40.8266666667,21.2,39.9,22.1666666667,44.36,19.9633333333,42.9,17.6944444444,51.2488888889,8,99.9,17.1,41.9277777778,20.0044444444,49.7922222222,16.79,46.09,7.2666666667,752.2333333333,95,6,53.3333333333,6.5666666667,14.5491821109,14.5491821109 -130,20,21.89,40.9666666667,21.3233333333,39.9666666667,21.9633333333,43.9666666667,19.89,43.07,17.7,51.29,8,99.9,17.1,42.005,20.0888888889,50.0438888889,16.79,46.09,7.3333333333,752.1166666667,95,6,55.6666666667,6.6333333333,19.2967862007,19.2967862007 -130,20,21.9266666667,40.9666666667,21.39,39.9,21.8233333333,43.4933333333,19.8233333333,43.2,17.7,51.29,7.9333333333,99.9,17.1,42.1105555556,20.15,50.2005555556,16.79,46.09,7.4,752,95,6,58,6.7,41.0771313123,41.0771313123 -120,20,22,40.9,21.5,39.79,21.4966666667,42.9666666667,19.79,43.4333333333,17.7,51.255,8.0666666667,99.9,17.1,42.2,20.235,50.7016666667,16.73,46.1633333333,7.4333333333,751.8833333333,95.3333333333,6.1666666667,55.1666666667,6.7666666667,11.6490025306,11.6490025306 -90,10,22.1,40.95,21.5666666667,39.79,21.23,42.9,19.79,43.56,17.7,51.2911111111,8.13,99.9,17.1,42.22,20.3177777778,51.4083333333,16.79,46.245,7.4666666667,751.7666666667,95.6666666667,6.3333333333,52.3333333333,6.8333333333,49.2859072285,49.2859072285 -90,0,22.0666666667,40.7633333333,21.53,39.4633333333,21.1,43.1933333333,19.76,43.6266666667,17.7,51.3877777778,8.13,99.9,17.1,42.2811111111,20.4327777778,51.8222222222,16.79,46.29,7.5,751.65,96,6.5,49.5,6.9,30.7722925907,30.7722925907 -80,10,21.9266666667,40.43,21.13,38.8633333333,21.1,43.2666666667,19.6333333333,43.7,17.7,51.3572222222,8.1,99.9,17.1,42.4155555556,20.5,51.8138888889,16.79,46.3633333333,7.5333333333,751.5333333333,96.3333333333,6.6666666667,46.6666666667,6.9666666667,41.6237865807,41.6237865807 -80,0,21.8233333333,40.86,21.0333333333,39.6333333333,21.1,43.1633333333,19.6,43.9,17.7,51.29,8.0333333333,99.9,17.1,42.6605555556,20.5,51.2044444444,16.79,46.4,7.5666666667,751.4166666667,96.6666666667,6.8333333333,43.8333333333,7.0333333333,11.8307965575,11.8307965575 -90,0,21.89,41.1333333333,21.2266666667,40.16,21.1,43.1633333333,19.5333333333,43.9,17.7,51.3872222222,8.1,99.9,17.1,42.6816666667,20.5,50.7572222222,16.79,46.4,7.6,751.3,97,7,41,7.1,38.545067166,38.545067166 -170,10,22,41.4333333333,21.39,40.5666666667,21.1,43.245,19.5,43.9333333333,17.7,51.5338888889,8.1,99.9,17.1,42.735,20.5277777778,50.5366666667,16.73,46.5,7.6833333333,751.2166666667,97,7,39.3333333333,7.2,2.9386776616,2.9386776616 -90,0,22.0666666667,41.8933333333,21.4633333333,40.8333333333,21.1,43.29,19.4266666667,44,17.7,51.6572222222,8.1,99.9,17.1,42.9655555556,20.5888888889,50.3755555556,16.73,46.5,7.7666666667,751.1333333333,97,7,37.6666666667,7.3,25.7449822966,25.7449822966 -110,10,22.1,42.06,21.6,40.9,21.1666666667,43.3633333333,19.39,44.0666666667,17.7,51.72,8.1,99.9,17.345,44.8633333333,20.6388888889,50.4538888889,16.79,46.59,7.85,751.05,97,7,36,7.4,43.0506297504,43.0506297504 -90,0,22.1,42,21.6,40.8266666667,21.2,43.4,19.39,44.4,17.7,51.735,8.1,99.9,17.8927777778,45.8116666667,20.7,50.545,16.79,46.59,7.9333333333,750.9666666667,97,7,34.3333333333,7.5,49.2701071198,49.2701071198 -140,0,22.1,42.03,21.6,40.845,21.26,43.4666666667,19.4266666667,44.8,17.7,51.845,8.19,99.9,18.36,45.7916666667,20.755,50.4611111111,16.73,46.7,8.0166666667,750.8833333333,97,7,32.6666666667,7.6,19.8381130351,19.8381130351 -160,20,22.1,42.1633333333,21.7,41.03,21.29,43.53,19.5,45.1333333333,17.7,51.9661111111,8.2633333333,99.9,18.7005555556,45.5572222222,20.8177777778,50.3755555556,16.73,46.76,8.1,750.8,97,7,31,7.7,23.414179252,23.414179252 -100,10,22.1666666667,42.4966666667,21.7,41.6966666667,21.29,43.6633333333,19.5,45.39,17.7,52.1105555556,8.33,99.9,18.9627777778,45.7616666667,20.9083333333,50.3938888889,16.79,46.8266666667,8.2666666667,750.8833333333,97,7,29.3333333333,7.85,21.0327759152,21.0327759152 -110,10,22.1666666667,43.63,21.6666666667,42.1566666667,21.39,44.1933333333,19.5,45.7966666667,17.72,52.3588888889,8.4633333333,99.9,19.1916666667,46.2383333333,21,50.3388888889,16.79,46.9,8.4333333333,750.9666666667,97,7,27.6666666667,8,45.7817422459,45.7817422459 -180,0,22.2,44.23,21.6,42.43,21.4633333333,44.66,19.5,46.6266666667,17.735,52.5955555556,8.63,99.9,19.3511111111,46.455,21.05,50.46,16.79,47,8.6,751.05,97,7,26,8.15,24.1157188546,24.1157188546 -400,10,22.2,44.1566666667,21.6,42.59,21.5,44.9,19.5,46.76,17.78,52.8177777778,8.7633333333,99.9,19.445,46.2466666667,21.0888888889,50.66,16.79,47.06,8.7666666667,751.1333333333,97,7,24.3333333333,8.3,47.1204161528,47.1204161528 -130,0,22.1666666667,43.93,21.6,42.59,21.5,44.9,19.5,46.9333333333,17.79,52.9277777778,8.9266666667,99.9,19.4761111111,46.0038888889,21.1055555556,50.8738888889,16.73,47.23,8.9333333333,751.2166666667,97,7,22.6666666667,8.45,6.2089429237,6.2089429237 -150,0,22.1,43.73,21.5333333333,42.59,21.5333333333,44.8633333333,19.5,47.0675,17.79,53.015,9.0666666667,99.9,19.2761111111,46.0988888889,21.1888888889,51.0755555556,16.79,47.29,9.1,751.3,97,7,21,8.6,28.1853969791,28.1853969791 -140,0,22.1,43.6633333333,21.5333333333,42.59,21.6,44.79,19.5,47.1633333333,17.79,53.1022222222,9.19,99.9,19.1388888889,46.4183333333,21.205,51.385,16.73,47.4333333333,9.35,751.3833333333,96.5,6.6666666667,24.1666666667,8.7833333333,36.5618357202,36.5618357202 -140,10,22.1,43.59,21.5,42.59,21.6,44.6633333333,19.5,47.29,17.79,53.1694444444,9.2633333333,99.9,19.0277777778,46.5905555556,21.28,51.8755555556,16.79,47.56,9.6,751.4666666667,96,6.3333333333,27.3333333333,8.9666666667,0.0285261078,0.0285261078 -150,20,22.1,43.59,21.5666666667,42.59,21.6,44.59,19.5,47.3633333333,17.79,53.3527777778,9.5,99.9,18.9572222222,46.8738888889,21.3177777778,52.3455555556,16.79,47.745,9.85,751.55,95.5,6,30.5,9.15,31.4177792636,31.4177792636 -190,20,22.175,44.17,21.6333333333,42.86,21.6333333333,44.6566666667,19.5,47.6933333333,17.8288888889,53.8577777778,9.6266666667,99.9,18.8733333333,47.17,21.3566666667,52.6227777778,16.79,47.9333333333,10.1,751.6333333333,95,5.6666666667,33.6666666667,9.3333333333,18.5363122844,18.5363122844 -140,20,22.26,44.3633333333,21.7,43,21.7,44.93,19.5,48.1,17.8677777778,54.145,9.83,99.9,18.84,47.5094444444,21.3961111111,52.6927777778,16.79,48.06,10.35,751.7166666667,94.5,5.3333333333,36.8333333333,9.5166666667,4.2880937457,4.2880937457 -140,30,22.29,44.4566666667,21.79,43,21.7,45.1266666667,19.6,48.79,17.8844444444,54.2138888889,10.03,99.9,18.9483333333,48.0055555556,21.4877777778,52.8227777778,16.79,48.2666666667,10.6,751.8,94,5,40,9.7,33.8098378503,33.8098378503 -150,40,22.3566666667,45.73,21.8566666667,43.06,21.7,45.4,19.6,48.79,17.8177777778,54.1477777778,10.2566666667,99.9,19.2716666667,47.8777777778,21.5833333333,52.7811111111,16.79,48.4666666667,10.7666666667,751.9666666667,93.5,5.5,37.5,9.7833333333,30.4578872863,30.4578872863 -130,50,22.39,45.1,21.89,43.09,21.7,45.5,19.7,49.0666666667,17.8788888889,54.2861111111,10.52,99.9,19.2761111111,47.7327777778,21.65,52.7,16.79,48.6266666667,10.9333333333,752.1333333333,93,6,35,9.8666666667,4.804955062,4.804955062 -180,40,22.39,44.6933333333,21.89,43.09,21.7,45.6725,19.76,49.4,17.89,54.3877777778,10.7633333333,99.9,19.1833333333,48.0383333333,21.72,52.6327777778,16.79,48.8333333333,11.1,752.3,92.5,6.5,32.5,9.95,19.9452353409,19.9452353409 -640,20,22.4633333333,44.56,22,43.09,21.7,45.79,19.96,49.76,17.89,54.4222222222,10.9266666667,99.9,19.1,48.2755555556,21.765,52.545,16.79,49.03,11.2666666667,752.4666666667,92,7,30,10.0333333333,4.9160883995,4.9160883995 -650,30,22.4633333333,45.1,22,43.09,21.7,45.8266666667,20.1,49.5,17.9327777778,54.4722222222,11,99.9,19.0222222222,48.4166666667,21.785,52.5944444444,16.79,49.1633333333,11.4333333333,752.6333333333,91.5,7.5,27.5,10.1166666667,39.7283847095,39.7283847095 -140,30,22.5333333333,47.1966666667,22.0333333333,43.4566666667,21.7,46.0266666667,20.0666666667,49.5666666667,17.9633333333,54.5983333333,11.1,99.9,19.0611111111,48.4416666667,21.71,52.4294444444,16.79,49.29,11.6,752.8,91,8,25,10.2,40.8816277166,40.8816277166 -80,20,22.6,47.93,22.125,43.9975,21.7,46.3666666667,20,49.9,17.9755555556,54.8627777778,11.1,99.9,18.9938888889,48.235,21.7,52.2116666667,16.79,49.3633333333,11.6333333333,752.85,91.1666666667,7.8333333333,24.8333333333,10.25,20.2507206937,20.2507206937 -90,30,22.7,47.8633333333,22.2,44.26,21.7,46.9,19.9633333333,49.76,18,55.1572222222,11.13,99.9,18.9022222222,48.2,21.6666666667,51.9766666667,16.89,49.6266666667,11.6666666667,752.9,91.3333333333,7.6666666667,24.6666666667,10.3,0.1293640118,0.1293640118 -130,20,22.7,47.33,22.2,44.3633333333,21.73,47.2,19.89,49.76,18,55.3561111111,11.19,99.9,18.8677777778,48.1844444444,21.6888888889,52.0822222222,16.89,49.7,11.7,752.95,91.5,7.5,24.5,10.35,30.4290201748,30.4290201748 -130,20,22.79,46.5633333333,22.2,44.29,21.79,47.2,19.89,50.1266666667,18,55.5294444444,11.3,99.9,18.8677777778,48.475,21.7,52.2755555556,16.8233333333,49.7666666667,11.7333333333,753,91.6666666667,7.3333333333,24.3333333333,10.4,29.616846249,29.616846249 -140,30,22.79,46.1566666667,22.2,44.2233333333,21.79,47.0633333333,19.89,50.26,18,55.645,11.3,99.9,18.89,48.7605555556,21.705,52.4883333333,16.8233333333,49.9,11.7666666667,753.05,91.8333333333,7.1666666667,24.1666666667,10.45,45.5078726402,45.5078726402 -120,20,22.79,45.6933333333,22.2,44.03,21.79,46.73,19.89,50.3266666667,18.0333333333,55.71,11.3,99.9,18.89,49.0644444444,21.76,52.6783333333,16.89,50.03,11.8,753.1,92,7,24,10.5,19.6975505794,19.6975505794 -130,30,22.79,45.4333333333,22.2,44,21.8233333333,46.59,19.89,50.3175,18.1361111111,60.1522222222,11.36,99.9,18.9083333333,49.3588888889,21.8011111111,52.8816666667,16.8233333333,50.03,11.75,753.2333333333,92.5,7.1666666667,30.3333333333,10.5333333333,48.2100138441,48.2100138441 -140,30,22.8566666667,45.4,22.2,43.86,21.89,46.53,19.89,50.3633333333,19.3111111111,82.3911111111,11.39,99.9,19.05,49.545,21.8011111111,52.8022222222,16.9266666667,50.5666666667,11.7,753.3666666667,93,7.3333333333,36.6666666667,10.5666666667,12.7546990174,12.7546990174 -110,20,22.79,45.6666666667,22.2,43.79,21.89,46.4333333333,19.8566666667,50.43,19.6838888889,85.6233333333,11.39,99.9,19.1555555556,49.5,21.79,52.8572222222,17.075,51.1475,11.65,753.5,93.5,7.5,43,10.6,7.0385897998,7.0385897998 -200,30,23,47.7933333333,22.2,43.93,21.9633333333,46.6333333333,19.79,50.29,20.3611111111,89.5488888889,11.3,99.9,19.1111111111,49.29,21.745,52.9,17.1,50.9633333333,11.6,753.6333333333,94,7.6666666667,49.3333333333,10.6333333333,26.2627211981,26.2627211981 -220,20,22.9266666667,46.6666666667,22.1666666667,44.1566666667,21.9633333333,46.6633333333,19.89,51.09,21.0111111111,89.7633333333,11.3,99.9,19.1,49.3977777778,21.705,52.9761111111,17.1,50.8633333333,11.55,753.7666666667,94.5,7.8333333333,55.6666666667,10.6666666667,22.7033327799,22.7033327799 -120,20,22.89,46.145,22.1,44.3633333333,21.89,46.59,19.9633333333,50.9633333333,21.925,85.0216666667,11.3,99.9,19.1,49.4444444444,21.76,53.09,17.1,50.79,11.5,753.9,95,8,62,10.7,26.0861187009,26.0861187009 -100,20,22.9266666667,46.03,22.1,44.5666666667,21.89,46.59,19.89,50.6633333333,21.6905555556,83.09,11.3,99.9,19.1388888889,49.955,21.79,53.09,17.1,50.8266666667,11.5333333333,753.9666666667,94.6666666667,8,55.3333333333,10.6833333333,4.2848700075,4.2848700075 -100,10,23,46.09,22.1,44.8333333333,21.89,46.59,19.8233333333,50.53,21.27,78.1733333333,11.39,99.9,19.245,50.1816666667,21.79,53.09,17.1,50.9,11.5666666667,754.0333333333,94.3333333333,8,48.6666666667,10.6666666667,29.8774747527,29.8774747527 -90,10,23,46.2,22,44.9333333333,21.89,46.59,19.76,50.4,20.9038888889,71.1211111111,11.39,99.9,19.275,50.1938888889,21.8122222222,53.1144444444,17.1,50.9333333333,11.6,754.1,94,8,42,10.65,34.1757821036,34.1757821036 -100,20,23,46.26,22,45.1333333333,21.89,46.6725,19.7,50.4,20.7294444444,65.1705555556,11.4633333333,99.9,19.2,50.245,21.8177777778,53.1005555556,17.1,51,11.6333333333,754.1666666667,93.6666666667,8,35.3333333333,10.6333333333,27.4678217713,27.4678217713 -90,10,22.9633333333,46.3266666667,21.9633333333,45.3266666667,21.89,46.7,19.7,50.26,20.6333333333,61.3044444444,11.5,99.9,19.1611111111,50.3816666667,21.8677777778,53.1327777778,17.1,51,11.6666666667,754.2333333333,93.3333333333,8,28.6666666667,10.6166666667,31.0112734209,31.0112734209 -100,10,22.89,46.4,21.89,45.4666666667,21.89,46.79,19.6333333333,50.2,20.5388888889,59.0344444444,11.5666666667,99.9,19.1,50.4,21.8677777778,53.045,17.1,51.06,11.7,754.3,93,8,22,10.6,14.811809035,14.811809035 -90,10,22.8566666667,46.3333333333,21.89,45.59,21.89,46.79,19.6,50.09,20.5,57.6722222222,11.6,99.9,19.0833333333,50.3816666667,21.89,53,17.1,51.09,11.6333333333,754.4166666667,93.5,8,25.5,10.6166666667,14.2249861383,14.2249861383 -70,10,22.79,46.2,21.8233333333,45.59,21.8566666667,46.7233333333,19.6,50.03,20.5,56.6855555556,11.6,99.9,19.0222222222,50.2894444444,21.89,53.025,17.1,51.09,11.5666666667,754.5333333333,94,8,29,10.6333333333,30.0991381169,30.0991381169 -70,20,22.79,46.4666666667,21.79,45.7,21.79,46.6633333333,19.5,50.03,20.4205555556,56.0394444444,11.5666666667,99.9,19.0111111111,49.9811111111,21.8961111111,53.1572222222,17.1,51.23,11.5,754.65,94.5,8,32.5,10.65,8.3836059901,8.3836059901 -60,10,22.73,46.4,21.7,45.59,21.79,46.59,19.5,50.09,20.3066666667,55.5344444444,11.5,99.9,19.0111111111,49.59,21.9327777778,53.2,17.1666666667,51.3633333333,11.4333333333,754.7666666667,95,8,36,10.6666666667,45.8693569293,45.8693569293 -30,10,22.6666666667,46.43,21.7,45.6633333333,21.79,46.59,19.39,49.9,20.29,55.0183333333,11.39,99.9,19,49.3388888889,21.89,53.2272222222,17.29,51.5,11.3666666667,754.8833333333,95.5,8,39.5,10.6833333333,49.5455211494,49.5455211494 -20,10,22.6,46.29,21.6,45.73,21.79,46.56,19.39,49.9,20.275,54.4688888889,11.33,99.9,19,49.3877777778,21.89,53.4322222222,17.23,51.4333333333,11.3,755,96,8,43,10.7,37.3834182275,37.3834182275 -20,10,22.5,46.3266666667,21.5333333333,45.79,21.79,46.4333333333,19.39,49.79,20.2,54.1,11.36,99.9,19,49.4983333333,21.89,53.7605555556,17.2,51.4,11.3333333333,755.0833333333,95.6666666667,8,40.3333333333,10.6666666667,24.6269304655,24.6269304655 -30,10,22.5,46.4,21.5,45.9333333333,21.7,46.4333333333,19.39,49.79,20.2,53.8038888889,11.3,99.9,19,49.59,21.89,54.0522222222,17.2,51.4666666667,11.3666666667,755.1666666667,95.3333333333,8,37.6666666667,10.6333333333,46.6404901701,46.6404901701 -50,10,22.39,46.3266666667,21.4266666667,45.9333333333,21.7,46.5,19.3233333333,49.79,20.2,53.5572222222,11.33,99.9,19,49.7516666667,21.8288888889,54.2088888889,17.29,51.59,11.4,755.25,95,8,35,10.6,30.8519498096,30.8519498096 -60,10,22.3233333333,46.4,21.39,46,21.6,46.5,19.29,49.79,20.1611111111,53.3738888889,11.39,99.9,19,49.735,21.79,54.4627777778,17.29,51.59,11.4333333333,755.3333333333,94.6666666667,8,32.3333333333,10.5666666667,19.5852031698,19.5852031698 -50,10,22.29,46.5,21.39,46,21.6666666667,46.5,19.29,49.73,20.1,53.245,11.33,99.9,18.9938888889,49.9577777778,21.775,54.7083333333,17.29,51.59,11.4666666667,755.4166666667,94.3333333333,8,29.6666666667,10.5333333333,9.8188996315,9.8188996315 -40,20,22.23,46.4333333333,21.29,46.1266666667,21.7,46.5,19.29,49.7,20.0944444444,53.1033333333,11.39,99.9,18.9816666667,50.145,21.7,55.1522222222,17.29,51.7,11.5,755.5,94,8,27,10.5,36.0039438936,36.0039438936 -50,10,22.2,46.4333333333,21.29,46.2,21.7,46.5,19.23,49.6266666667,20.0111111111,53.0733333333,11.39,99.9,19,50.2,21.7,55.5716666667,17.29,51.76,11.5,755.6333333333,93.5,8.1666666667,29.1666666667,10.4166666667,46.708603669,46.708603669 -40,10,22.175,46.5225,21.26,46.26,21.6666666667,46.4,19.2,49.59,20,53.0611111111,11.39,99.9,19,50.145,21.7,55.845,17.29,51.8633333333,11.5,755.7666666667,93,8.3333333333,31.3333333333,10.3333333333,34.6321943565,34.6321943565 -50,10,22.1,46.59,21.2,46.26,21.6,46.4,19.2,49.59,20,53.02,11.39,99.9,19.0055555556,50.2361111111,21.6888888889,55.9944444444,17.3566666667,51.79,11.5,755.9,92.5,8.5,33.5,10.25,44.4290465093,44.4290465093 -40,20,22.1,46.73,21.1666666667,46.4,21.6,46.4333333333,19.2,49.5,19.9083333333,52.9944444444,11.4633333333,99.9,19.0888888889,50.4388888889,21.6444444444,56.1438888889,17.3566666667,52.06,11.5,756.0333333333,92,8.6666666667,35.6666666667,10.1666666667,11.4332933561,11.4332933561 -50,10,22.0333333333,46.79,21.1,46.4666666667,21.6,46.5,19.2,49.5,19.89,52.8927777778,11.39,99.9,19.1,50.3083333333,21.6777777778,56.3444444444,17.3566666667,51.9333333333,11.5,756.1666666667,91.5,8.8333333333,37.8333333333,10.0833333333,27.3284475086,27.3284475086 -60,10,22,47,21.1,46.53,21.6666666667,46.56,19.1666666667,49.5,19.89,52.7872222222,11.39,99.9,19.0888888889,50.28,21.6888888889,56.7272222222,17.3233333333,51.9,11.5,756.3,91,9,40,10,10.3499595774,10.3499595774 -50,10,22,47.06,21.1,46.59,21.7,46.5,19.1,49.5,19.89,52.72,11.33,99.9,19.0222222222,50.205,21.6388888889,57.1461111111,17.39,51.9,11.45,756.3666666667,91.1666666667,8.6666666667,37.3333333333,10,26.8524890998,26.8524890998 -40,10,21.89,47.09,21.0666666667,46.56,21.76,46.5,19.1,49.5,19.8733333333,52.6666666667,11.3,99.9,19.05,50.145,21.5944444444,57.28,17.39,51.9,11.4,756.4333333333,91.3333333333,8.3333333333,34.6666666667,10,48.4638888622,48.4638888622 -50,10,21.89,47.09,21,46.5,21.79,46.4666666667,19.1,49.5,19.79,52.5,11.36,99.9,19,50.0694444444,21.5333333333,57.1927777778,17.39,51.9666666667,11.35,756.5,91.5,8,32,10,40.1616953313,40.1616953313 -40,10,21.8566666667,47.06,21,46.545,21.73,46.4,19.1,49.4,19.79,52.4611111111,11.3,99.9,19,49.9027777778,21.4816666667,57.1977777778,17.39,52,11.3,756.5666666667,91.6666666667,7.6666666667,29.3333333333,10,10.2023412008,10.2023412008 -40,10,21.79,47,20.89,46.6266666667,21.7,46.5,19.1,49.4,19.79,52.4,11.3,99.9,19,49.8872222222,21.4022222222,57.3088888889,17.39,52,11.25,756.6333333333,91.8333333333,7.3333333333,26.6666666667,10,20.0323430705,20.0323430705 -50,20,21.79,47,20.89,46.7,21.76,46.5,19.0666666667,49.3633333333,19.79,52.3816666667,11.3,99.9,19,50.0138888889,21.39,57.5644444444,17.39,52,11.2,756.7,92,7,24,10,41.4562437916,41.4562437916 -50,10,21.79,47,20.79,46.59,21.7,46.5,19,49.29,19.775,52.3144444444,11.3,99.9,19,50.07,21.39,57.715,17.39,52,11.2,756.8,91.8333333333,7.1666666667,30.5,9.9666666667,22.0563508687,22.0563508687 -40,10,21.7,46.9333333333,20.79,46.6633333333,21.76,46.5,19,49.29,19.78,52.29,11.33,99.9,19,50.17,21.34,57.8727777778,17.39,52.09,11.2,756.9,91.6666666667,7.3333333333,37,9.9333333333,19.7526621749,19.7526621749 -30,10,21.7,46.9333333333,20.79,46.7,21.7,46.5,19,49.29,19.73,52.275,11.33,99.9,19,50.2961111111,21.29,58.1877777778,17.39,52.09,11.2,757,91.5,7.5,43.5,9.9,1.5444346122,1.5444346122 -20,10,21.7,47,20.79,46.7,21.7,46.5,19,49.29,19.7,52.275,11.3,99.9,19,50.4377777778,21.29,58.4627777778,17.39,52.1266666667,11.2,757.1,91.3333333333,7.6666666667,50,9.8666666667,6.7933053127,6.7933053127 -40,10,21.6333333333,46.9333333333,20.7,46.79,21.7,46.5,18.9266666667,49.29,19.7,52.245,11.3,99.9,19,50.575,21.29,58.6722222222,17.4725,52.295,11.2,757.2,91.1666666667,7.8333333333,56.5,9.8333333333,33.8592212065,33.8592212065 -40,10,21.6,46.9,20.7,46.79,21.7,46.5,18.9266666667,49.29,19.7,52.21,11.16,99.9,19,50.6205555556,21.29,58.78,17.5,52.4666666667,11.2,757.3,91,8,63,9.8,3.1244033482,3.1244033482 -50,20,21.6,46.9666666667,20.7,46.8266666667,21.7,46.53,19,49.29,19.7,52.2,11.1,99.9,19,50.6144444444,21.26,58.73,17.5,52.53,11.1166666667,757.4333333333,91.6666666667,7.6666666667,62.8333333333,9.8166666667,49.8769106925,49.8769106925 -40,10,21.6,47,20.7,46.9,21.7,46.59,18.9266666667,49.29,19.6666666667,52.1633333333,10.9633333333,99.9,19,50.7633333333,21.225,58.74,17.5,52.59,11.0333333333,757.5666666667,92.3333333333,7.3333333333,62.6666666667,9.8333333333,5.6924508535,5.6924508535 -50,10,21.575,47.0225,20.6666666667,46.9,21.6333333333,46.6266666667,18.89,49.29,19.6166666667,52.1633333333,10.8675,99.9,19.0388888889,51.0383333333,21.21,58.7027777778,17.5,52.7,10.95,757.7,93,7,62.5,9.85,31.2666250276,31.2666250276 -50,10,21.5,47.09,20.6,46.9666666667,21.7,46.6266666667,18.89,49.29,19.6,52.2,10.8,99.9,19.1,51.145,21.2,58.6755555556,17.5,52.7,10.8666666667,757.8333333333,93.6666666667,6.6666666667,62.3333333333,9.8666666667,1.2793277856,1.2793277856 -60,10,21.5,47.09,20.6,47,21.6666666667,46.6266666667,18.89,49.29,19.6,52.2,10.8,99.9,19.0555555556,51.1511111111,21.2,58.6155555556,17.5333333333,52.73,10.7833333333,757.9666666667,94.3333333333,6.3333333333,62.1666666667,9.8833333333,3.4371219575,3.4371219575 -50,10,21.4266666667,47.03,20.6,47,21.675,46.7,18.89,49.29,19.6,52.2,10.8,99.9,19.0444444444,51.1388888889,21.2,58.51,17.6,52.79,10.7,758.1,95,6,62,9.9,9.4168649754,9.4168649754 -40,20,21.39,47.09,20.5666666667,47.09,21.7,46.7,18.89,49.29,19.6,52.2,10.83,99.9,19.0277777778,51.0955555556,21.1833333333,58.4611111111,17.6,52.79,10.7666666667,758.15,94.1666666667,6.3333333333,62.1666666667,9.8333333333,40.0095722056,40.0095722056 -50,10,21.39,47.09,20.5,47.1633333333,21.7,46.7,18.89,49.29,19.6,52.2,10.89,99.9,19,51.01,21.1222222222,58.3105555556,17.6,52.79,10.8333333333,758.2,93.3333333333,6.6666666667,62.3333333333,9.7666666667,41.7412108509,41.7412108509 -40,10,21.39,47.1266666667,20.5,47.2,21.7,46.7,18.8566666667,49.26,19.6,52.2,10.9266666667,99.9,19.0388888889,51.1755555556,21.1,58.1377777778,17.6,52.8266666667,10.9,758.25,92.5,7,62.5,9.7,36.2343855319,36.2343855319 -50,10,21.39,47.2,20.5,47.2,21.7,46.7,18.79,49.2,19.5666666667,52.2,11,99.9,19.1,51.4,21.0777777778,58.0227777778,17.6,52.9,10.9666666667,758.3,91.6666666667,7.3333333333,62.6666666667,9.6333333333,14.0314947465,14.0314947465 -40,10,21.3566666667,47.2,20.5,47.23,21.6333333333,46.6266666667,18.89,49.29,19.5388888889,52.2,11,99.9,19.0944444444,51.3277777778,21.0777777778,57.8738888889,17.6,52.9,11.0333333333,758.35,90.8333333333,7.6666666667,62.8333333333,9.5666666667,32.1451351512,32.1451351512 -50,10,21.29,47.2,20.4725,47.2675,21.6,46.6266666667,18.8233333333,49.23,19.5,52.2,11,99.9,19.0277777778,51.1977777778,21.05,57.745,17.6,52.9,11.1,758.4,90,8,63,9.5,47.9392940644,47.9392940644 -50,10,21.29,47.23,20.39,47.2,21.6,46.7,18.79,49.2,19.5,52.2,10.9633333333,99.9,19.0111111111,51.0522222222,21,57.5933333333,17.6,52.9,11.0166666667,758.4666666667,90.6666666667,7.6666666667,62,9.5333333333,26.8554522307,26.8554522307 -50,20,21.29,47.29,20.39,47.29,21.6333333333,46.7,18.79,49.2,19.5,52.2,10.89,99.9,19.0555555556,51.1411111111,21,57.5,17.6,52.9,10.9333333333,758.5333333333,91.3333333333,7.3333333333,61,9.5666666667,21.5726659168,21.5726659168 -40,10,21.29,47.3266666667,20.39,47.29,21.6333333333,46.7,18.79,49.2,19.5,52.2,10.86,99.9,19.0111111111,51.0861111111,20.9938888889,57.5,17.6,52.9,10.85,758.6,92,7,60,9.6,36.2059370033,36.2059370033 -50,10,21.29,47.4,20.29,47.29,21.6666666667,46.76,18.79,49.2,19.4755555556,52.1755555556,10.8,99.9,19.0444444444,51.025,20.9266666667,57.5,17.6,52.9,10.7666666667,758.6666666667,92.6666666667,6.6666666667,59,9.6333333333,8.7062064442,8.7062064442 -40,10,21.2,47.29,20.29,47.29,21.6666666667,46.76,18.79,49.2,19.4633333333,52.1205555556,10.7633333333,99.9,19.1,51.015,20.9144444444,57.4166666667,17.6,52.9,10.6833333333,758.7333333333,93.3333333333,6.3333333333,58,9.6666666667,16.0162190557,16.0162190557 -30,10,21.2,47.29,20.29,47.4,21.6666666667,46.79,18.79,49.2,19.445,52.055,10.69,99.9,19.1,51.05,20.89,57.3877777778,17.65,52.95,10.6,758.8,94,6,57,9.7,19.39888692,19.39888692 -20,10,21.2,47.29,20.29,47.4,21.6,46.79,18.73,49.2,19.39,52,10.66,99.9,19.05,50.965,20.89,57.3205555556,17.6666666667,52.9666666667,10.55,758.85,94,6,51.6666666667,9.6333333333,2.7246953687,2.7246953687 -30,10,21.1333333333,47.3633333333,20.29,47.4,21.7,46.79,18.7,49.2,19.39,52,10.6,99.9,19.0722222222,50.9822222222,20.8677777778,57.27,17.7,53,10.5,758.9,94,6,46.3333333333,9.5666666667,13.8962282217,13.8962282217 -40,10,21.1666666667,47.4,20.23,47.3266666667,21.6333333333,46.73,18.76,49.2,19.39,52,10.6,99.9,19.0388888889,50.9055555556,20.8288888889,57.24,17.7,53,10.45,758.95,94,6,41,9.5,35.7726893504,35.7726893504 -50,20,21.1,47.4,20.2,47.3266666667,21.6,46.73,18.7,49.2,19.39,52,10.5666666667,99.9,19.0611111111,50.95,20.79,57.335,17.7,53.09,10.4,759,94,6,35.6666666667,9.4333333333,16.4273041184,16.4273041184 -50,10,21.1,47.4,20.2,47.4,21.6,46.8633333333,18.7,49.2,19.39,52.01,10.5,99.9,19.1,50.8677777778,20.79,57.4438888889,17.7,53.2233333333,10.35,759.05,94,6,30.3333333333,9.3666666667,30.0727574504,30.0727574504 -40,10,21.1,47.5,20.2,47.4,21.6,46.79,18.7,49.2,19.39,52.0961111111,10.5,99.9,19.1,50.845,20.8011111111,57.645,17.7,53.3266666667,10.3,759.1,94,6,25,9.3,26.196040865,26.196040865 -40,20,21.1,47.6933333333,20.2,47.4,21.6,46.79,18.7,49.2,19.3788888889,52.3261111111,10.5,99.9,19.1,50.785,20.8233333333,57.4872222222,17.76,53.3266666667,10.35,759.15,93.1666666667,6.1666666667,24.6666666667,9.2333333333,43.0274563958,43.0274563958 -60,10,21,47.8266666667,20.2,47.5,21.6,46.79,18.7,49.2,19.2955555556,52.7011111111,10.5,99.9,19.1,50.6794444444,20.79,57.0294444444,17.7,53.1633333333,10.4,759.2,92.3333333333,6.3333333333,24.3333333333,9.1666666667,26.6384631977,26.6384631977 -120,20,21,47.9666666667,20.2,47.5,21.5666666667,46.8633333333,18.7,49.2,19.29,53.0644444444,10.5,99.9,19.1,50.575,20.765,56.73,17.7,53.09,10.45,759.25,91.5,6.5,24,9.1,5.5710952613,5.5710952613 -370,10,21,48.03,20.1666666667,47.5,21.5,46.79,18.7,49.2,19.235,53.3033333333,10.5,99.69,19.1,50.5,20.71,56.4294444444,17.7,53,10.5,759.3,90.6666666667,6.6666666667,23.6666666667,9.0333333333,38.7946740957,38.7946740957 -350,20,21,48.09,20.1,47.56,21.5,46.79,18.8266666667,49.5333333333,19.2,53.5644444444,10.5,99.4966666667,19.1,50.51,20.7,56.1427777778,17.7,52.9333333333,10.55,759.35,89.8333333333,6.8333333333,23.3333333333,8.9666666667,3.1469898648,3.1469898648 -330,40,21,48.09,20.1,47.6266666667,21.5,46.79,19.3933333333,49.6333333333,19.1611111111,53.7733333333,10.6,98.6633333333,19.1,50.53,20.7,55.9294444444,17.7,52.9,10.6,759.4,89,7,23,8.9,35.2642633836,35.2642633836 -60,10,21,48.1633333333,20.1,47.7,21.5,46.79,19.8666666667,49.36,19.1,53.9822222222,10.66,97.5966666667,19.1,50.4105555556,20.6611111111,55.6516666667,17.7,52.9,10.6666666667,759.45,87.6666666667,7.3333333333,22.8333333333,8.7166666667,2.4627939914,2.4627939914 -50,10,21,48.2,20.1,47.7,21.5,46.73,20.3233333333,49.1,19.1,54.085,10.7266666667,96.1666666667,19.0888888889,50.2266666667,20.6,55.2805555556,17.7,52.8633333333,10.7333333333,759.5,86.3333333333,7.6666666667,22.6666666667,8.5333333333,39.0658329474,39.0658329474 -40,10,21,48.3333333333,20.1,47.59,21.4633333333,46.6333333333,20.3233333333,48.8266666667,19.1,54.09,10.8,94.56,19.05,49.89,20.5833333333,54.8655555556,17.7,52.79,10.8,759.55,85,8,22.5,8.35,39.2069631256,39.2069631256 -40,10,21,48.1633333333,20.1,47.53,21.39,46.5,20.1666666667,48.7,19.1,54.09,10.89,92.7266666667,19,49.5772222222,20.5,54.4766666667,17.7,52.6633333333,10.8666666667,759.6,83.6666666667,8.3333333333,22.3333333333,8.1666666667,27.62878699,27.62878699 -40,10,21,48.03,20.2,47.4,21.39,46.5,20.025,48.595,19.1,54.09,10.89,91.7933333333,19,49.3344444444,20.5,54.1272222222,17.7,52.59,10.9333333333,759.65,82.3333333333,8.6666666667,22.1666666667,7.9833333333,42.7554203197,42.7554203197 -40,20,21,47.8633333333,20.2,47.3266666667,21.39,46.5,19.9266666667,48.5,19.0944444444,54.0094444444,10.89,90.93,19,49.12,20.4816666667,53.8127777778,17.7,52.4666666667,11,759.7,81,9,22,7.8,10.4936022428,10.4936022428 -50,10,21.0666666667,47.73,20.29,47.1633333333,21.39,46.4666666667,19.89,48.4666666667,19.0111111111,53.9111111111,10.89,88.93,19,48.9155555556,20.4511111111,53.485,17.7,52.295,11.0166666667,759.75,80.3333333333,8.8333333333,22.1666666667,7.7,11.502762523,11.502762523 -50,10,21.1,47.56,20.3566666667,46.9633333333,21.39,46.4,19.8233333333,48.3266666667,19.2055555556,58.5738888889,11.0333333333,87.46,19,48.655,20.39,53.13,17.76,52.1266666667,11.0333333333,759.8,79.6666666667,8.6666666667,22.3333333333,7.6,33.6705215275,33.6705215275 -80,10,21.1,47.4333333333,20.39,46.6333333333,21.39,46.4,19.79,48.29,19.9583333333,76.4827777778,11.1,85.1475,18.9755555556,48.5294444444,20.3511111111,52.8933333333,17.79,51.9,11.05,759.85,79,8.5,22.5,7.5,22.2391680232,22.2391680232 -140,20,21.1333333333,47.29,20.4633333333,46.5,21.4633333333,46.4,19.73,48.29,19.6261111111,77.3877777778,11.16,84.13,19.0166666667,48.4761111111,20.29,52.63,17.79,51.8266666667,11.0666666667,759.9,78.3333333333,8.3333333333,22.6666666667,7.4,33.0032672267,33.0032672267 -330,20,21.2,47.29,20.6,46.3333333333,21.5,46.3266666667,19.6666666667,48.29,19.5,76.9888888889,11.2266666667,83.79,19.0888888889,48.1822222222,20.3122222222,52.4327777778,17.79,51.76,11.0833333333,759.95,77.6666666667,8.1666666667,22.8333333333,7.3,3.8910946925,3.8910946925 -160,30,21.1333333333,45.6966666667,20.46,44.9333333333,21.4266666667,45.7333333333,19.6,48.29,19.4083333333,74.0977777778,11.3,82.73,19.1,47.6844444444,20.29,52.2572222222,17.79,51.6266666667,11.1,760,77,8,23,7.2,17.1624136623,17.1624136623 -80,20,21.025,45.29,20.23,44.1933333333,21.26,45.1633333333,19.5666666667,48.06,19.4083333333,65.745,11.3,81.3933333333,19.1388888889,47.4216666667,20.27,52.1077777778,17.79,51.5,11.1166666667,760.0333333333,76.8333333333,8,23.1666666667,7.1666666667,40.3727400117,40.3727400117 -30,20,21.1,45.3633333333,20.3566666667,44.5266666667,21.2,45.03,19.5,47.9333333333,19.4633333333,60.22,11.3,80.66,19.2,47.4277777778,20.225,51.8583333333,17.79,51.4333333333,11.1333333333,760.0666666667,76.6666666667,8,23.3333333333,7.1333333333,17.4487677636,17.4487677636 -60,10,21.1666666667,45.5,20.4266666667,44.73,21.2,44.95,19.5,47.9,19.5166666667,57.5283333333,11.4266666667,79.4933333333,19.275,47.5822222222,20.2,51.7166666667,17.79,51.26,11.15,760.1,76.5,8,23.5,7.1,2.6041200384,2.6041200384 -60,10,21.1666666667,45.6333333333,20.5666666667,44.8633333333,21.23,44.9333333333,19.5,47.8266666667,19.5944444444,55.5611111111,11.5,78.7,19.29,47.4416666667,20.2,51.5338888889,17.79,51.2,11.1666666667,760.1333333333,76.3333333333,8,23.6666666667,7.0666666667,43.1641400442,43.1641400442 -60,20,21.3233333333,46,20.7633333333,45.03,21.29,45,19.5,47.9,19.7138888889,54.0555555556,11.5,79.23,19.235,46.9838888889,20.1611111111,51.4055555556,17.79,51.06,11.1833333333,760.1666666667,76.1666666667,8,23.8333333333,7.0333333333,27.8459727182,27.8459727182 -70,10,21.4633333333,46.06,20.9633333333,45.03,21.29,45.1266666667,19.5,47.9666666667,19.8511111111,52.8833333333,11.5,79.69,19.1888888889,46.63,20.1,51.345,17.79,50.9333333333,11.2,760.2,76,8,24,7,45.4977668007,45.4977668007 -40,10,21.6,45.3333333333,21.1,44.2933333333,21.29,45.2,19.4633333333,48.1333333333,19.9205555556,52.0277777778,11.5,79.3266666667,19.0555555556,45.9488888889,20.1,51.275,17.79,50.76,11.2166666667,760.2166666667,76.1666666667,8,24.3333333333,7.05,38.0648316117,38.0648316117 -470,10,21.6666666667,44.9333333333,21.1666666667,43.7,21.29,44.9666666667,19.39,48.06,20.0444444444,50.4888888889,11.5,78.06,19.0111111111,45.4944444444,20.1,51.2,17.79,50.7,11.2333333333,760.2333333333,76.3333333333,8,24.6666666667,7.1,27.277092135,27.277092135 -710,10,21.73,44.9,21.34,43.79,21.29,45.1,19.4266666667,48.03,20.1816666667,49.8088888889,11.7266666667,77.13,19,45.3277777778,20.1,51.1816666667,17.79,50.56,11.25,760.25,76.5,8,25,7.15,23.8941001473,23.8941001473 -480,20,21.8566666667,44.9666666667,21.6,43.79,21.5666666667,46.5266666667,19.5,48.1633333333,20.28,49.4266666667,11.86,76.7966666667,19,45.155,20.1,51.09,17.79,50.5,11.2666666667,760.2666666667,76.6666666667,8,25.3333333333,7.2,17.3715676647,17.3715676647 -360,10,21.9266666667,45,21.6666666667,43.79,21.9,47.9933333333,19.5,48.3266666667,20.3622222222,49.12,12,75.3233333333,18.9755555556,45.0294444444,20.0444444444,50.9794444444,17.79,50.3633333333,11.2833333333,760.2833333333,76.8333333333,8,25.6666666667,7.25,28.4103902173,28.4103902173 -340,10,22.0666666667,45,21.8233333333,43.6633333333,22.3933333333,49.03,19.5,48.4975,20.4572222222,48.8872222222,12,73.8633333333,19,44.9333333333,20.0333333333,50.9211111111,17.79,50.29,11.3,760.3,77,8,26,7.3,47.5384593592,47.5384593592 -300,10,22.1333333333,45.4,21.89,43.59,22.6666666667,49.3633333333,19.5,48.6633333333,20.5166666667,48.575,11.89,73.46,18.9633333333,44.8033333333,20.0055555556,50.8211111111,17.7,50.1633333333,11.3,760.25,76.8333333333,8.3333333333,28.3333333333,7.2833333333,13.0689504906,13.0689504906 -230,10,22.26,46.5333333333,21.9266666667,43.4666666667,22.96,48.9233333333,19.6,48.8266666667,20.5888888889,48.3144444444,11.89,73.06,18.9205555556,44.73,20,50.73,17.7,50.0225,11.3,760.2,76.6666666667,8.6666666667,30.6666666667,7.2666666667,5.3402720718,5.3402720718 -260,10,22.39,46.1233333333,22,43.4,23.1666666667,48.39,19.6,49.0266666667,20.65,48.255,11.89,72.795,18.9022222222,44.6572222222,20,50.7,17.7,49.9333333333,11.3,760.15,76.5,9,33,7.25,12.6878960175,12.6878960175 -420,10,22.39,46.0633333333,22.0333333333,43.29,23.3233333333,48.1933333333,19.6,49.2,20.7,48.1966666667,11.9266666667,72.73,18.89,44.555,19.9877777778,50.645,17.7,49.79,11.3,760.1,76.3333333333,9.3333333333,35.3333333333,7.2333333333,9.0451934026,9.0451934026 -170,20,22.5,46.1966666667,22.1,43.29,23.39,47.6666666667,19.6,49.2,20.73,48.0283333333,12,71.9966666667,18.89,44.51,19.945,50.555,17.7,49.73,11.3,760.05,76.1666666667,9.6666666667,37.6666666667,7.2166666667,26.5694460017,26.5694460017 -80,10,22.5666666667,45.79,22.1333333333,43.26,23.26,47.0633333333,19.6,49.26,20.785,47.8683333333,11.89,72.0633333333,18.89,44.45,19.89,50.5,17.7,49.6633333333,11.3,760,76,10,40,7.2,40.1174770668,40.1174770668 -70,10,22.6333333333,45.2966666667,22.2,43.1266666667,23.1333333333,46.73,19.6,49.1266666667,20.8288888889,47.8327777778,11.89,72.2633333333,18.89,44.3938888889,19.89,50.4833333333,17.7,49.59,11.3166666667,759.9833333333,76.1666666667,9.8333333333,38,7.25,23.9747593063,23.9747593063 -390,10,22.76,44.9633333333,22.3233333333,43.09,23.0666666667,46.43,19.5666666667,48.9666666667,20.8972222222,47.7227777778,11.89,72.73,18.8788888889,44.2922222222,19.89,50.4,17.7,49.56,11.3333333333,759.9666666667,76.3333333333,9.6666666667,36,7.3,8.8700781576,8.8700781576 -640,10,22.84,44.59,22.39,42.9633333333,23,46.3633333333,19.5,48.8266666667,21.0166666667,47.545,11.89,72.7966666667,18.8788888889,44.28,19.89,50.4,17.7,49.5,11.35,759.95,76.5,9.5,34,7.35,19.8566672276,19.8566672276 -510,10,23,44.43,22.5,42.9666666667,23.195,47.545,19.5,48.6633333333,21.0944444444,47.4155555556,11.89,73.0633333333,18.8788888889,44.28,19.89,50.3633333333,17.7,49.4666666667,11.3666666667,759.9333333333,76.6666666667,9.3333333333,32,7.4,40.7113496331,40.7113496331 -300,10,23,44.23,22.5666666667,42.8266666667,23.5666666667,48.5966666667,19.5,48.53,21.1666666667,47.1994444444,11.9633333333,73.4566666667,18.8788888889,44.28,19.89,50.3083333333,17.7,49.4,11.3833333333,759.9166666667,76.8333333333,9.1666666667,30,7.45,47.06785382,47.06785382 -260,10,23.0333333333,44.7233333333,22.6333333333,42.9666666667,23.8266666667,48.73,19.4633333333,48.3333333333,21.2,47.0038888889,12.1,73.0666666667,18.8788888889,44.28,19.8788888889,50.2922222222,17.7,49.4,11.4,759.9,77,9,28,7.5,8.6674966966,8.6674966966 -260,10,23.1666666667,45.6633333333,22.7,43.6333333333,24.0333333333,47.99,19.39,48.1266666667,21.2,46.9888888889,12.1,72.86,18.8788888889,44.28,19.8288888889,50.235,17.7,49.4,11.4333333333,759.85,77.1666666667,8.8333333333,30,7.55,17.7470399765,17.7470399765 -220,10,23.2,45.86,22.73,43.1,24.1666666667,47.53,19.4266666667,49.0266666667,21.245,46.8861111111,12,73.19,18.89,44.29,19.8344444444,50.24,17.7,49.29,11.4666666667,759.8,77.3333333333,8.6666666667,32,7.6,35.2520020679,35.2520020679 -190,10,23.2,45.9333333333,22.73,42.7666666667,24.23,46.9,19.5666666667,49.6333333333,21.28,46.765,12,73.33,18.89,44.235,19.8344444444,50.24,17.7,49.29,11.5,759.75,77.5,8.5,34,7.65,47.9620459955,47.9620459955 -300,10,23.29,45.7,22.79,42.545,24.29,46.4266666667,19.6,49.9333333333,21.29,46.7116666667,12.0333333333,74.03,18.8733333333,44.23,19.8011111111,50.21,17.7,49.26,11.5333333333,759.7,77.6666666667,8.3333333333,36,7.7,21.3900704985,21.3900704985 -430,20,23.29,45.6266666667,22.79,42.4666666667,24.29,45.7666666667,19.65,50.1,21.29,46.6144444444,12.2333333333,74.03,18.8844444444,44.2911111111,19.79,50.2,17.7,49.2,11.5666666667,759.65,77.8333333333,8.1666666667,38,7.75,6.7957658903,6.7957658903 -700,10,23.3233333333,45.3633333333,22.79,42.4,24.23,45.1666666667,19.7225,50.2225,21.3511111111,46.555,12.33,74.3966666667,18.8566666667,44.3311111111,19.79,50.215,17.7,49.23,11.6,759.6,78,8,40,7.8,40.6870619627,40.6870619627 -570,10,23.3233333333,44.8966666667,22.79,42.29,24.1333333333,45.6666666667,19.79,50.2675,21.3566666667,46.5,12.39,74.8633333333,18.8788888889,44.4044444444,19.79,50.28,17.7,49.29,11.5166666667,759.6666666667,79,8.3333333333,37.3333333333,7.9166666667,40.3422480216,40.3422480216 -330,10,23.3566666667,44.3333333333,22.79,42.23,24.3266666667,46.7333333333,19.79,50.2,21.3677777778,46.4611111111,12.39,74.8,18.89,44.5,19.79,50.29,17.7,49.29,11.4333333333,759.7333333333,80,8.6666666667,34.6666666667,8.0333333333,45.4055177397,45.4055177397 -280,10,23.3566666667,44.0666666667,22.79,42.09,24.5666666667,47.8,19.89,50.29,21.3788888889,46.3694444444,12.39,74.4,18.89,44.515,19.79,50.3572222222,17.7,49.29,11.35,759.8,81,9,32,8.15,35.1800943492,35.1800943492 -260,10,23.39,45.1,22.8566666667,42.1633333333,24.76,47.6666666667,19.89,50.245,21.4144444444,46.385,12.3,74.89,18.89,44.59,19.79,50.4,17.7,49.29,11.2666666667,759.8666666667,82,9.3333333333,29.3333333333,8.2666666667,22.9398259893,22.9398259893 -240,10,23.4633333333,45.6333333333,22.89,42.23,24.89,46.7333333333,19.79,50,21.445,46.5338888889,12.1,76.06,18.89,44.6572222222,19.79,50.4,17.7,49.29,11.1833333333,759.9333333333,83,9.6666666667,26.6666666667,8.3833333333,4.0812206687,4.0812206687 -230,10,23.5,45.6633333333,22.89,42.29,24.9633333333,46.1333333333,19.79,50.145,21.5,46.6572222222,11.96,77.8666666667,18.89,44.715,19.775,50.45,17.7,49.29,11.1,760,84,10,24,8.5,36.5371986059,36.5371986059 -220,10,23.5,45.4633333333,22.89,42.4,25.0333333333,45.9333333333,19.79,50.29,21.5,46.72,11.69,80,18.89,44.755,19.775,50.5,17.76,49.4,11.1333333333,759.9833333333,83.5,10,26.6666666667,8.45,46.6340757674,46.6340757674 -100,10,23.5,44.66,22.89,42.4,25.1666666667,46,19.89,50.53,21.5,46.6083333333,11.69,80.0666666667,18.89,44.775,19.78,50.5,17.7,49.4,11.1666666667,759.9666666667,83,10,29.3333333333,8.4,1.797414606,1.797414606 -270,10,23.5,44.7333333333,22.89,42.3633333333,25.2,45.8633333333,19.9633333333,50.6633333333,21.5,46.545,11.69,79.4333333333,18.89,44.79,19.715,50.53,17.7,49.5,11.2,759.95,82.5,10,32,8.35,5.3519721259,5.3519721259 -330,10,23.5333333333,45.1966666667,22.89,42.29,25.1333333333,45.4633333333,20.0666666667,50.49,21.5611111111,46.4388888889,11.69,79.4933333333,18.8677777778,44.77,19.72,50.555,17.76,49.4333333333,11.2333333333,759.9333333333,82,10,34.6666666667,8.3,19.8194463854,19.8194463854 -260,10,23.6,45.5425,22.9266666667,42.3266666667,25,45.3266666667,20,50.23,21.6,46.4111111111,11.69,79.3966666667,18.89,44.8266666667,19.73,50.59,17.7,49.5,11.2666666667,759.9166666667,81.5,10,37.3333333333,8.25,7.6141871628,7.6141871628 -310,10,23.6666666667,45.4,23,42.4,25.075,45.2675,19.9633333333,50.06,21.6833333333,46.5694444444,11.69,79.33,18.89,44.8266666667,19.72,50.59,17.76,49.5,11.3,759.9,81,10,40,8.2,5.6556113763,5.6556113763 -430,20,23.7633333333,46.0666666667,23,42.4,25.1666666667,44.9633333333,19.89,49.86,21.7,46.655,11.66,78.9933333333,18.89,44.79,19.71,50.59,17.7,49.5,11.3166666667,759.9166666667,80.5,9.8333333333,40,8.1166666667,14.3076100969,14.3076100969 -420,10,23.9633333333,47.66,23.0666666667,42.5266666667,25.23,44.76,19.8566666667,49.6333333333,21.75,47.155,11.6,78.6,18.89,44.78,19.7,50.59,17.7,49.5,11.3333333333,759.9333333333,80,9.6666666667,40,8.0333333333,29.0504860925,29.0504860925 -190,10,23.9266666667,51.4333333333,23.1,43.03,25.3566666667,44.9,19.79,49.4333333333,21.775,48.2738888889,11.6,77.8633333333,18.89,44.76,19.775,50.9877777778,17.73,49.5,11.35,759.95,79.5,9.5,40,7.95,7.0814192411,7.0814192411 -110,10,24,52.5666666667,23.1666666667,43.6966666667,25.5,45.23,19.79,49.2233333333,21.79,49.5688888889,11.6,76.9233333333,18.8677777778,44.7005555556,19.8927777778,51.3594444444,17.73,49.5,11.3666666667,759.9666666667,79,9.3333333333,40,7.8666666667,24.7208669898,24.7208669898 -120,10,24,50.1966666667,23.2,44.29,25.36,45.3633333333,19.73,49.03,21.79,49.4294444444,11.6,76.4233333333,18.89,44.6816666667,20.0777777778,51.6155555556,17.79,49.4,11.3833333333,759.9833333333,78.5,9.1666666667,40,7.7833333333,18.0142198573,18.0142198573 -120,20,24,48.9966666667,23.2,44.195,25.1666666667,45.3633333333,19.73,48.79,21.6372222222,49.3983333333,11.6,76.23,18.89,44.575,20.245,51.73,17.79,49.4,11.4,760,78,9,40,7.7,20.3513215412,20.3513215412 -110,10,24,47.86,23.2,43.9633333333,25.0333333333,45.23,19.73,48.79,21.4283333333,49.5772222222,11.6,76.3,18.89,44.53,20.3794444444,51.705,17.73,49.4,11.3,760,79,9,40,7.7833333333,14.0590993222,14.0590993222 -120,10,24,46.9933333333,23.2,43.76,24.8566666667,45.06,19.7,48.59,21.2861111111,49.7388888889,11.6,76.6333333333,18.89,44.5,20.4877777778,51.78,17.79,49.3266666667,11.2,760,80,9,40,7.8666666667,21.2656714721,21.2656714721 -120,20,24.1,46.2966666667,23.2,43.5666666667,24.79,44.9333333333,19.7,48.5,21.1722222222,49.7922222222,11.5,76.3,18.8844444444,44.4944444444,20.5666666667,51.78,17.73,49.29,11.1,760,81,9,40,7.95,23.1750794919,23.1750794919 -150,10,24.0333333333,45.83,23.2,43.2233333333,24.6666666667,44.8633333333,19.7,48.4333333333,21.0833333333,49.8572222222,11.5,76.395,18.8622222222,44.4333333333,20.6666666667,51.715,17.79,49.2225,11,760,82,9,40,8.0333333333,41.4634827292,41.4634827292 -490,10,24.0666666667,45.3633333333,23.2,43.03,24.6,44.73,19.7,48.29,21,49.8744444444,11.4266666667,77.0933333333,18.8788888889,44.4222222222,20.7805555556,51.5583333333,17.79,49.2,10.9,760,83,9,40,8.1166666667,17.9547126289,17.9547126289 -580,20,24,45.03,23.1666666667,42.9666666667,24.5,44.7,19.7,48.23,20.9083333333,49.9722222222,11.36,78,18.8177777778,44.3755555556,20.8788888889,51.535,17.79,49.2,10.8,760,84,9,40,8.2,21.9399522874,21.9399522874 -350,20,24,47.4266666667,23.1,42.9666666667,24.36,44.6266666667,19.7,48.2,20.8788888889,50.0905555556,11.3,78.86,18.8233333333,44.4272222222,20.9816666667,51.2711111111,17.79,49.1266666667,10.7666666667,759.9666666667,84.3333333333,9,40,8.2333333333,0.3629857558,0.3629857558 -80,20,24.0666666667,50.5666666667,23.2,43.7333333333,24.29,45.03,19.7,48.26,20.7955555556,50.4527777778,11.19,79.29,18.8233333333,44.3905555556,21,50.9294444444,17.79,49.09,10.7333333333,759.9333333333,84.6666666667,9,40,8.2666666667,48.4073955333,48.4073955333 -90,20,24.1,51.6333333333,23.2,44.5333333333,24.29,45.6233333333,19.7,48.73,20.765,51.0283333333,11.13,80.3566666667,18.8177777778,44.4277777778,20.9083333333,50.7416666667,17.79,49.09,10.7,759.9,85,9,40,8.3,16.8749041273,16.8749041273 -80,30,24.1,50.16,23.2,44.9,24.26,45.9666666667,19.7,49.0633333333,20.7,51.4838888889,11,81.63,18.8288888889,44.4555555556,20.89,51.0016666667,17.79,49.23,10.6666666667,759.8666666667,85.3333333333,9,40,8.3333333333,1.4222099562,1.4222099562 -180,30,24.1,48.9933333333,23.1333333333,44.8266666667,24.2,45.9,19.7,50.4333333333,20.6833333333,51.6794444444,11,82.4233333333,18.79,44.4888888889,20.9205555556,51.2227777778,17.79,49.29,10.6333333333,759.8333333333,85.6666666667,9,40,8.3666666667,17.8271365003,17.8271365003 -400,40,24.0333333333,47.9333333333,23.1,44.56,24.2,45.8633333333,19.76,50.9,20.6111111111,51.6366666667,11,83.2266666667,18.8122222222,44.545,20.9877777778,51.4155555556,17.79,49.29,10.6,759.8,86,9,40,8.4,32.0157276583,32.0157276583 -300,40,24,47.05,23.1,44.36,24.2,45.79,20.1666666667,51.0633333333,20.675,51.3838888889,11,83.56,18.8011111111,44.6022222222,21,51.6227777778,17.79,49.29,10.55,759.8,86.8333333333,9,43.6666666667,8.4666666667,14.3316788832,14.3316788832 -90,40,23.9633333333,46.6333333333,23,44.06,24.1,45.7,20.9,50.3233333333,20.9494444444,52.4472222222,10.89,84.0333333333,18.8011111111,44.6144444444,21.0388888889,51.865,17.79,49.29,10.5,759.8,87.6666666667,9,47.3333333333,8.5333333333,49.1382602486,49.1382602486 -80,40,23.89,46.36,23,43.9333333333,24,45.5,21.39,49.2233333333,21.8533333333,77.5394444444,10.89,84.7666666667,18.8344444444,44.6833333333,21.0666666667,52.1127777778,17.79,49.29,10.45,759.8,88.5,9,51,8.6,4.115066689,4.115066689 -70,40,23.89,46.1333333333,22.89,43.9,24,45.4333333333,21.3233333333,49.09,21.7638888889,79.43,10.8,85.79,18.8288888889,44.7166666667,21.1,52.7272222222,17.79,49.29,10.4,759.8,89.3333333333,9,54.6666666667,8.6666666667,6.4015409211,6.4015409211 -60,30,23.8233333333,45.8,22.89,43.8266666667,23.89,45.4,21.2,49.03,21.3522222222,79.6577777778,10.8,86.3966666667,18.8177777778,44.73,21.0777777778,53.3194444444,17.79,49.29,10.35,759.8,90.1666666667,9,58.3333333333,8.7333333333,13.177549059,13.177549059 -80,30,23.79,45.5266666667,22.8233333333,43.8266666667,23.89,45.4666666667,21.1333333333,49.1633333333,21.275,79.2966666667,10.7633333333,87.1333333333,18.8288888889,44.8227777778,21.0777777778,53.7905555556,17.79,49.29,10.3,759.8,91,9,62,8.8,10.6470813742,10.6470813742 -80,20,23.79,45.3266666667,22.8233333333,43.8266666667,23.7266666667,44.6266666667,21.1,49,21.1722222222,79.3211111111,10.69,87.7333333333,18.7955555556,44.8877777778,21.1,54.0444444444,17.79,49.29,10.3,759.8,91.1666666667,9,59,8.8333333333,47.3201414803,47.3201414803 -70,20,23.7,45.29,22.745,43.79,23.6,44.7,21.0333333333,48.9333333333,21.0611111111,79.0166666667,10.69,88.49,18.79,44.9333333333,21.1,54.1633333333,17.79,49.3266666667,10.3,759.8,91.3333333333,9,56,8.8666666667,17.2736895503,17.2736895503 -80,20,23.7,45.29,22.7,43.8266666667,23.6,44.7,21,48.9,20.9694444444,78.1183333333,10.69,89.63,18.7955555556,44.9994444444,21.0666666667,54.1633333333,17.79,49.4,10.3,759.8,91.5,9,53,8.9,20.2711311518,20.2711311518 -70,30,23.6,45.09,22.6333333333,43.8266666667,23.6,44.7,21,48.9,20.89,76.9538888889,10.6,90.845,18.8288888889,45.08,21.0333333333,54.1783333333,17.79,49.4,10.3,759.8,91.6666666667,9,50,8.9333333333,26.8270675791,26.8270675791 -230,20,23.6,45.03,22.6,43.79,23.5,44.7,21,48.8266666667,20.8622222222,75.5277777778,10.5,92.0666666667,18.79,45.1083333333,21.0888888889,54.2983333333,17.79,49.475,10.3,759.8,91.8333333333,9,47,8.9666666667,13.7914343853,13.7914343853 -350,20,23.5,45,22.6,43.79,23.5,44.7,21.0666666667,48.86,20.785,74.1827777778,10.4266666667,92.9266666667,18.79,45.2,21.0833333333,54.33,17.79,49.5,10.3,759.8,92,9,44,9,20.2835704433,20.2835704433 -70,20,23.5,45,22.5,43.8266666667,23.39,44.7,21.4,48.86,20.71,72.7061111111,10.36,94.4266666667,18.8011111111,45.2872222222,21.0722222222,54.3522222222,17.79,49.5,10.2666666667,759.8,92.3333333333,9,47.3333333333,9.0333333333,21.7754594167,21.7754594167 -50,30,23.4633333333,45,22.5,43.9,23.39,44.7,21.8233333333,48.2233333333,20.6611111111,70.5777777778,10.3,95.36,18.8122222222,45.3683333333,21.05,54.345,17.79,49.56,10.2333333333,759.8,92.6666666667,9,50.6666666667,9.0666666667,16.1027079448,16.1027079448 -60,20,23.39,45,22.4633333333,43.8633333333,23.39,44.79,21.89,48.09,20.6,68.0711111111,10.19,96.3933333333,18.8011111111,45.4111111111,21.0277777778,54.4316666667,17.79,49.6266666667,10.2,759.8,93,9,54,9.1,0.1717844629,0.1717844629 -60,20,23.3566666667,44.9,22.39,43.8633333333,23.3233333333,44.8633333333,21.79,48.23,20.55,66.2016666667,10.19,97.1333333333,18.8066666667,45.4166666667,21.0666666667,54.6783333333,17.79,49.7,10.1666666667,759.8,93.3333333333,9,57.3333333333,9.1333333333,48.6484536901,48.6484536901 -70,20,23.29,44.9666666667,22.39,43.9,23.29,45,21.73,48.3633333333,20.5,64.9794444444,10.16,97.9966666667,18.7955555556,45.4888888889,21.0777777778,54.8788888889,17.8233333333,49.8266666667,10.1333333333,759.8,93.6666666667,9,60.6666666667,9.1666666667,5.6456294958,5.6456294958 -60,20,23.26,44.9666666667,22.3233333333,43.9666666667,23.29,45.06,21.7,48.53,20.5,64.1444444444,10.1,98.3966666667,18.79,45.5,21.0277777778,55.015,17.89,49.9666666667,10.1,759.8,94,9,64,9.2,27.4286097614,27.4286097614 -50,20,23.2,44.9666666667,22.29,44.03,23.29,45.09,21.7,48.6633333333,20.4327777778,63.5266666667,10.1,98.8966666667,18.79,45.555,21.0611111111,55.1422222222,17.89,50.09,10.1166666667,759.7666666667,94.1666666667,9,63.5,9.2333333333,43.6148690176,43.6148690176 -50,30,23.1666666667,45.09,22.23,44.09,23.29,45.1633333333,21.6,48.6266666667,20.39,63.11,10.1,99.09,18.79,45.59,21.1,55.2,17.89,50.1633333333,10.1333333333,759.7333333333,94.3333333333,9,63,9.2666666667,43.1297280011,43.1297280011 -60,20,23.1,45.1175,22.2,44.2,23.26,45.1633333333,21.6,48.7,20.39,62.8933333333,10.1,99.3333333333,18.8011111111,45.6022222222,21.0666666667,55.245,17.89,50.23,10.15,759.7,94.5,9,62.5,9.3,30.5271849851,30.5271849851 -50,20,23.0333333333,45.1266666667,22.1333333333,44.26,23.2,45.1725,21.6,48.73,20.3788888889,62.675,10.16,99.4666666667,18.8011111111,45.6327777778,21.0166666667,55.235,17.89,50.29,10.1666666667,759.6666666667,94.6666666667,9,62,9.3333333333,0.0739048002,0.0739048002 -50,20,23,45.2,22.1,44.29,23.2,45.2,21.5333333333,48.79,20.34,62.4922222222,10.19,99.6233333333,18.79,45.7,20.9694444444,55.225,17.89,50.4,10.1833333333,759.6333333333,94.8333333333,9,61.5,9.3666666667,16.2012977642,16.2012977642 -70,20,22.9266666667,45.26,22.0333333333,44.29,23.2,45.26,21.5,48.9,20.29,62.2588888889,10.19,99.7633333333,18.8066666667,45.715,20.9266666667,55.3105555556,17.89,50.4666666667,10.2,759.6,95,9,61,9.4,43.5221640277,43.5221640277 -70,20,22.89,45.3266666667,22,44.4,23.2,45.26,21.5,48.9,20.29,62.0555555556,10.19,99.8333333333,18.7955555556,45.725,20.89,55.5044444444,17.89,50.53,10.2166666667,759.6,95,8.6666666667,58,9.4166666667,25.3417229396,25.3417229396 -60,30,22.89,45.4,22,44.4666666667,23.23,45.23,21.5,48.9,20.28,61.7561111111,10.19,99.9,18.8066666667,45.7633333333,20.89,55.7327777778,17.89,50.59,10.2333333333,759.6,95,8.3333333333,55,9.4333333333,45.2619975433,45.2619975433 -60,20,22.79,45.3266666667,21.89,44.59,23.29,45.29,21.5,48.9666666667,20.235,61.5294444444,10.19,99.9,18.7955555556,45.7961111111,20.8677777778,55.9333333333,17.89,50.6266666667,10.25,759.6,95,8,52,9.45,49.3157382472,49.3157382472 -60,20,22.79,45.4,21.89,44.6175,23.29,45.4,21.5,49.03,20.21,61.2377777778,10.19,99.9,18.79,45.8144444444,20.8511111111,56.1066666667,17.89,50.76,10.2666666667,759.6,95,7.6666666667,49,9.4666666667,15.7343532774,15.7343532774 -50,20,22.7,45.5,21.89,44.7,23.29,45.4,21.5,49.09,20.2,61.0094444444,10.2633333333,99.9,18.8122222222,45.8816666667,20.8233333333,56.215,17.89,50.8266666667,10.2833333333,759.6,95,7.3333333333,46,9.4833333333,0.641815376,0.641815376 -60,30,22.7,45.5,21.79,44.7,23.29,45.4333333333,21.5,49.09,20.2,60.8311111111,10.2633333333,99.9,18.79,45.9,20.8122222222,56.4266666667,17.89,50.9975,10.3,759.6,95,7,43,9.5,20.5522240372,20.5522240372 -50,0,22.7,45.7,21.79,44.76,23.29,45.5,21.5,49.09,20.2,60.5533333333,10.2633333333,99.9,18.79,45.9,20.7955555556,56.51,17.9633333333,51.09,10.2666666667,759.5833333333,95.1666666667,6.8333333333,45.5,9.5,38.7040462927,38.7040462927 -40,0,22.7,45.7,21.76,44.8266666667,23.29,45.5,21.5,49.03,20.1388888889,60.4722222222,10.19,99.9,18.8344444444,45.9555555556,20.8233333333,56.6266666667,17.9266666667,51.23,10.2333333333,759.5666666667,95.3333333333,6.6666666667,48,9.5,47.6159418933,47.6159418933 -50,0,22.6,45.79,21.7,44.9666666667,23.29,45.5,21.39,48.8266666667,20.1111111111,60.2933333333,10.2633333333,99.9,18.79,45.9722222222,20.8233333333,56.7633333333,18,51.3633333333,10.2,759.55,95.5,6.5,50.5,9.5,36.3182887319,36.3182887319 -50,0,22.6,45.79,21.7,45.1266666667,23.29,45.59,21.3233333333,48.9,20.1,60.145,10.19,99.9,18.79,46,20.84,56.835,18,51.4333333333,10.1666666667,759.5333333333,95.6666666667,6.3333333333,53,9.5,25.8219579584,25.8219579584 -50,0,22.6,45.79,21.6333333333,45.1266666667,23.29,45.59,21.2,48.79,20.1,60.055,10.19,99.9,18.79,46,20.8622222222,56.8511111111,18,51.5,10.1333333333,759.5166666667,95.8333333333,6.1666666667,55.5,9.5,36.697741528,36.697741528 -50,0,22.6,45.79,21.6666666667,45.2,23.29,45.6633333333,21.1333333333,48.79,20.1,59.95,10.19,99.9,18.8288888889,46.035,20.89,56.765,18,51.53,10.1,759.5,96,6,58,9.5,42.5202831859,42.5202831859 -40,0,22.5666666667,45.8266666667,21.6,45.2,23.29,45.6633333333,21.0666666667,48.8633333333,20.0611111111,59.8277777778,10.19,99.9,18.8177777778,46.08,20.8177777778,56.6205555556,18,51.59,10.1666666667,759.4833333333,95.3333333333,6.3333333333,55,9.4666666667,40.9193108091,40.9193108091 -50,0,22.5,45.9,21.6,45.29,23.29,45.7,21,48.79,20,59.6916666667,10.19,99.9,18.79,46.09,20.8233333333,56.6016666667,18,51.7,10.2333333333,759.4666666667,94.6666666667,6.6666666667,52,9.4333333333,36.0807003221,36.0807003221 -40,0,22.5,45.9,21.6,45.29,23.29,45.7,20.89,48.9,20,59.5972222222,10.19,99.9,18.79,46.09,20.79,56.4944444444,18,51.7,10.3,759.45,94,7,49,9.4,22.0735883689,22.0735883689 -40,0,22.5,45.9,21.5666666667,45.4,23.29,45.73,20.89,48.9,20.0166666667,59.545,10.19,99.9,18.79,46.09,20.8066666667,56.4277777778,18,51.79,10.3666666667,759.4333333333,93.3333333333,7.3333333333,46,9.3666666667,21.8555184198,21.8555184198 -50,0,22.39,45.9,21.5,45.4,23.29,45.79,20.79,48.79,20.0055555556,59.4661111111,10.19,99.9,18.8344444444,46.1816666667,20.8455555556,56.4033333333,18,51.8633333333,10.4333333333,759.4166666667,92.6666666667,7.6666666667,43,9.3333333333,41.7967632529,41.7967632529 -40,0,22.39,45.9,21.5,45.5,23.29,45.79,20.73,48.8633333333,20,59.4222222222,10.19,99.9,18.8122222222,46.2,20.8066666667,56.3205555556,18.1,52.03,10.5,759.4,92,8,40,9.3,19.2555327201,19.2555327201 -50,0,22.39,45.9,21.4266666667,45.4333333333,23.26,45.8633333333,20.7,48.9333333333,20,59.3816666667,10.19,99.9,18.8177777778,46.2,20.8122222222,56.3094444444,18.1,52.2233333333,10.4166666667,759.35,93.1666666667,7.1666666667,40.5,9.3833333333,33.7207716308,33.7207716308 -50,0,22.39,45.9,21.4633333333,45.56,23.2,45.79,20.7,49,20,59.275,10.19,99.9,18.8066666667,46.2,20.79,56.21,18.1,52.2,10.3333333333,759.3,94.3333333333,6.3333333333,41,9.4666666667,3.8909272989,3.8909272989 -50,0,22.3233333333,45.9,21.39,45.5,23.2,45.79,20.6,48.9,19.9327777778,59.21,10.19,99.9,18.8122222222,46.22,20.79,56.215,18.1,52.2,10.25,759.25,95.5,5.5,41.5,9.55,41.4488357259,41.4488357259 -50,0,22.29,45.9333333333,21.39,45.5,23.26,45.93,20.6,48.9,19.89,59.1572222222,10.19,99.9,18.79,46.2,20.79,56.29,18.1,52.2,10.1666666667,759.2,96.6666666667,4.6666666667,42,9.6333333333,0.8122736472,0.8122736472 -40,0,22.29,46,21.39,45.5,23.2,45.9,20.5,49,19.89,59.0972222222,10.19,99.9,18.8177777778,46.275,20.79,56.29,18.1,52.2,10.0833333333,759.15,97.8333333333,3.8333333333,42.5,9.7166666667,5.6346615427,5.6346615427 -40,0,22.29,46,21.29,45.59,23.2,45.9,20.5,49,19.89,59.03,10.2633333333,99.9,18.8344444444,46.27,20.79,56.225,18.1,52.29,10,759.1,99,3,43,9.8,24.5512256399,24.5512256399 -40,0,22.23,46,21.3566666667,45.7,23.2,45.9333333333,20.5,49.06,19.89,58.9833333333,10.2633333333,99.9,18.8066666667,46.29,20.79,56.275,18.1,52.29,9.9166666667,759.0666666667,98.3333333333,3.6666666667,46.3333333333,9.6166666667,34.1493526357,34.1493526357 -50,0,22.2,46,21.29,45.7,23.2,46,20.39,49.03,19.89,58.9222222222,10.2633333333,99.9,18.79,46.29,20.79,56.27,18.1666666667,52.29,9.8333333333,759.0333333333,97.6666666667,4.3333333333,49.6666666667,9.4333333333,30.3165879683,30.3165879683 -50,0,22.2,46,21.29,45.79,23.2,46,20.39,49.09,19.8677777778,58.8755555556,10.16,99.9,18.8122222222,46.3144444444,20.79,56.285,18.2,52.4,9.75,759,97,5,53,9.25,44.8629828985,44.8629828985 -40,0,22.1666666667,46,21.23,45.73,23.2,46,20.39,49.09,19.8788888889,58.8594444444,10.0333333333,99.9,18.8122222222,46.3144444444,20.79,56.22,18.2,52.4,9.6666666667,758.9666666667,96.3333333333,5.6666666667,56.3333333333,9.0666666667,15.374644543,15.374644543 -50,0,22.1,46.06,21.2,45.7,23.2,46,20.39,49.09,19.8288888889,58.735,9.86,99.9,18.79,46.255,20.79,56.21,18.2,52.5,9.5833333333,758.9333333333,95.6666666667,6.3333333333,59.6666666667,8.8833333333,27.1232777392,27.1232777392 -50,0,22.1,46.09,21.26,45.76,23.2,46.06,20.29,49.2,19.8011111111,58.6916666667,9.8,99.9,18.79,46.2,20.79,56.145,18.2,52.5,9.5,758.9,95,7,63,8.7,36.7958384799,36.7958384799 -40,0,22.1,46.1633333333,21.2,45.79,23.2,46.09,20.29,49.2,19.79,58.6266666667,9.66,99.9,18.79,46.2,20.785,56.09,18.2,52.5,9.4666666667,758.8333333333,94.8333333333,6.8333333333,63.3333333333,8.65,7.80760505,7.80760505 -50,0,22.1,46.2,21.2,45.79,23.2,46.09,20.29,49.2,19.79,58.59,9.6,99.9,18.79,46.1877777778,20.775,56.08,18.2,52.5,9.4333333333,758.7666666667,94.6666666667,6.6666666667,63.6666666667,8.6,34.1225770419,34.1225770419 -40,0,22.1,46.2,21.2,45.79,23.2,46.09,20.29,49.2,19.79,58.585,9.5666666667,99.9,18.8122222222,46.1205555556,20.79,56.005,18.2,52.5,9.4,758.7,94.5,6.5,64,8.55,44.038974517,44.038974517 -40,0,22.1,46.2,21.1333333333,45.79,23.2,46.09,20.2,49.2,19.79,58.54,9.5,99.9,18.79,46.09,20.79,56,18.2,52.5,9.3666666667,758.6333333333,94.3333333333,6.3333333333,64.3333333333,8.5,18.3340066462,18.3340066462 -40,0,22.0333333333,46.0666666667,21.1,45.79,23.2,46.2,20.2,49.2,19.79,58.51,9.4633333333,99.9,18.8011111111,46.085,20.78,56,18.2,52.5,9.3333333333,758.5666666667,94.1666666667,6.1666666667,64.6666666667,8.45,1.6507206601,1.6507206601 -50,0,22,46.03,21.1,45.8633333333,23.2,46.2,20.2,49.2,19.79,58.5,9.39,99.9,18.8011111111,46.01,20.735,56,18.2,52.5,9.3,758.5,94,6,65,8.4,25.9890026529,25.9890026529 -50,0,22,46.09,21.1,45.9,23.15,46.2,20.2,49.2,19.79,58.4166666667,9.39,99.9,18.79,46,20.7,56.005,18.2,52.5,9.3333333333,758.45,93.1666666667,6,60.8333333333,8.3,5.6357198744,5.6357198744 -50,0,21.9266666667,46.09,21.0333333333,45.8266666667,23.1666666667,46.2,20.1666666667,49.2,19.79,58.3755555556,9.33,99.9,18.79,46,20.7,56.1105555556,18.2,52.56,9.3666666667,758.4,92.3333333333,6,56.6666666667,8.2,45.119263907,45.119263907 -50,0,21.89,46.09,21,45.79,23.1666666667,46.2,20.1,49.1266666667,19.765,58.3083333333,9.39,99.9,18.79,45.9444444444,20.7,56.255,18.23,52.6266666667,9.4,758.35,91.5,6,52.5,8.1,10.9985834337,10.9985834337 -40,0,21.89,46.09,21,45.79,23.2,46.29,20.1,49.2,19.735,58.29,9.3225,99.9,18.8233333333,45.95,20.7,56.3727777778,18.29,52.7,9.4333333333,758.3,90.6666666667,6,48.3333333333,8,31.1738250661,31.1738250661 -40,0,21.89,46.2,21,45.79,23.2,46.23,20.1,49.2,19.715,58.255,9.2266666667,99.9,18.8011111111,45.9111111111,20.73,56.5983333333,18.29,52.7,9.4666666667,758.25,89.8333333333,6,44.1666666667,7.9,18.1569858687,18.1569858687 -50,10,21.89,46.2,21,45.79,23.2,46.23,20.1,49.2,19.72,58.21,9.19,99.9,18.79,45.8694444444,20.71,56.76,18.29,52.7,9.5,758.2,89,6,40,7.8,39.4299927168,39.4299927168 -50,10,21.79,46.09,20.89,45.9333333333,23.1333333333,46.29,20.025,49.1175,19.7,58.2577777778,9.13,99.9,18.79,45.79,20.735,56.7933333333,18.3233333333,52.76,9.4333333333,758.1666666667,89,6,43.6666666667,7.7333333333,47.6819637348,47.6819637348 -50,40,21.8566666667,46.1633333333,20.89,46,23.1,46.2,20,49.09,19.7,58.1877777778,9.1,99.9,18.79,45.745,20.725,56.5294444444,18.315,52.6175,9.3666666667,758.1333333333,89,6,47.3333333333,7.6666666667,34.3268647906,34.3268647906 -60,30,21.79,46.23,20.89,46,23.1,46.1266666667,20.0333333333,49.1933333333,19.7,58.235,9.0333333333,99.9,18.79,45.7,20.7,56.2144444444,18.29,52.59,9.3,758.1,89,6,51,7.6,0.5495831952,0.5495831952 -60,30,21.79,46.29,20.89,46.03,23,45.9,20.1666666667,49.4666666667,19.7,58.3022222222,9,99.9,18.79,45.6572222222,20.7,55.8311111111,18.29,52.53,9.2333333333,758.0666666667,89,6,54.6666666667,7.5333333333,47.8893396677,47.8893396677 -60,30,21.79,46.29,20.89,46.09,23,45.8266666667,20.2,49.59,19.7,58.3694444444,8.9266666667,99.9,18.79,45.6022222222,20.6833333333,55.5133333333,18.29,52.53,9.1666666667,758.0333333333,89,6,58.3333333333,7.4666666667,24.9051654479,24.9051654479 -70,30,21.79,46.3633333333,20.8566666667,46.09,23,45.7,20.26,49.7233333333,19.7,58.3694444444,8.89,99.9,18.79,45.56,20.6222222222,55.15,18.29,52.5,9.1,758,89,6,62,7.4,27.0396725857,27.0396725857 -320,40,21.79,46.4,20.8566666667,46.1633333333,23,45.6266666667,20.39,49.79,19.6555555556,58.2883333333,8.83,99.8333333333,18.79,45.505,20.6,54.8444444444,18.29,52.5,9.0166666667,757.95,90,6,62,7.4833333333,2.9916527797,2.9916527797 -200,40,21.73,46.4666666667,20.8566666667,46.1633333333,22.8566666667,45.1666666667,20.4633333333,49.8633333333,19.6277777778,58.2855555556,8.8,99.8,18.79,45.5,20.6,54.645,18.29,52.4,8.9333333333,757.9,91,6,62,7.5666666667,8.0563439871,8.0563439871 -60,20,21.76,46.6633333333,20.79,46.03,22.6633333333,44.3,21.13,49.2633333333,19.6444444444,58.25,8.8,99.8666666667,18.79,45.4611111111,20.5777777778,54.4377777778,18.29,52.4666666667,8.85,757.85,92,6,62,7.65,37.8996849409,37.8996849409 -40,30,21.7,46.6633333333,20.76,46.09,22.4633333333,44.43,21.39,48.5966666667,19.6,58.14,8.8,99.9,18.79,45.3816666667,20.5277777778,54.2266666667,18.29,52.4666666667,8.7666666667,757.8,93,6,62,7.7333333333,16.1299888045,16.1299888045 -50,50,21.7,46.59,20.7,45.9633333333,22.3233333333,44.3633333333,21.26,48.29,19.6,57.8233333333,8.8,99.9,18.79,45.3022222222,20.5,53.9305555556,18.29,52.3266666667,8.6833333333,757.75,94,6,62,7.8166666667,30.9224022552,30.9224022552 -60,10,21.7,46.53,20.7,45.9,22.29,44.53,21.1333333333,48.23,19.6166666667,57.38,8.8,99.9,18.79,45.28,20.5,53.64,18.29,52.1633333333,8.6,757.7,95,6,62,7.9,29.6964089619,29.6964089619 -80,20,21.7,46.5,20.7,45.9,22.29,44.7233333333,21.0666666667,48.1,19.6055555556,56.8738888889,8.8,99.9,18.77,45.205,20.5,53.4305555556,18.29,52.03,8.6166666667,757.6333333333,95.3333333333,6,58.6666666667,7.95,2.4062416865,2.4062416865 -60,30,21.7,46.6333333333,20.7,45.9,22.3233333333,44.79,21,47.9666666667,19.6,56.5405555556,8.8,99.9,18.76,45.2,20.4694444444,53.1894444444,18.29,51.8633333333,8.6333333333,757.5666666667,95.6666666667,6,55.3333333333,8,19.6905999328,19.6905999328 -70,20,21.7,48.895,20.7,45.9666666667,22.315,44.8175,20.89,48.1266666667,19.6,56.3438888889,8.845,99.9,18.73,45.2,20.4388888889,52.9627777778,18.29,51.73,8.65,757.5,96,6,52,8.05,15.579905943,15.579905943 -60,30,21.79,48.7,20.76,46.23,22.3566666667,44.9,20.9633333333,48.2,19.6,56.3561111111,8.86,99.9,18.755,45.1877777778,20.39,52.765,18.26,51.5266666667,8.6666666667,757.4333333333,96.3333333333,6,48.6666666667,8.1,21.6340210871,21.6340210871 -50,20,21.73,48.5,20.7,46.29,22.39,44.9333333333,21,48.23,19.6,56.4111111111,8.89,99.9,18.7,45.1633333333,20.39,52.6033333333,18.26,51.4,8.6833333333,757.3666666667,96.6666666667,6,45.3333333333,8.15,17.9745503236,17.9745503236 -60,20,21.73,48.06,20.73,46.26,22.315,45,21,48.29,19.6,56.4333333333,8.9633333333,99.9,18.73,45.1877777778,20.3788888889,52.51,18.29,51.29,8.7,757.3,97,6,42,8.2,37.3466421384,37.3466421384 -60,30,21.73,47.9333333333,20.79,46.1266666667,22.3566666667,45,21,48.26,19.6,56.4555555556,9,99.9,18.72,45.1633333333,20.3177777778,52.4166666667,18.29,51.23,8.75,757.2833333333,97,6,45.5,8.25,47.6228107698,47.6228107698 -60,20,21.73,47.8633333333,20.8233333333,46.1633333333,22.39,45.03,21,48.26,19.5888888889,56.4222222222,9.0666666667,99.9,18.71,45.2,20.3122222222,52.3205555556,18.29,51.09,8.8,757.2666666667,97,6,49,8.3,10.950354673,10.950354673 -60,30,21.79,47.79,20.9425,46.1175,22.39,45.09,21,48.245,19.5722222222,56.3938888889,9.0333333333,99.9,18.7,45.2,20.29,52.235,18.2675,50.9975,8.85,757.25,97,6,52.5,8.35,41.3368517533,41.3368517533 -80,20,21.79,47.7,21.1666666667,45.8666666667,22.39,45.09,21,48.2,19.5166666667,56.3266666667,9.1,99.9,18.715,45.2,20.29,52.1877777778,18.2,50.8266666667,8.9,757.2333333333,97,6,56,8.4,1.3737820787,1.3737820787 -80,30,21.73,47.76,21.1666666667,45.7,22.39,45.09,21.0666666667,48.26,19.5277777778,56.29,9.13,99.9,18.705,45.22,20.29,52.1572222222,18.2,50.76,8.95,757.2166666667,97,6,59.5,8.45,47.3842275329,47.3842275329 -80,20,21.73,47.6933333333,21.1,45.7,22.39,45.2,21.1,48.3633333333,19.5388888889,56.245,9.2633333333,99.9,18.72,45.225,20.29,52.1022222222,18.2,50.7,9,757.2,97,6,63,8.5,48.9136833232,48.9136833232 -70,30,21.79,47.36,21.1,45.6633333333,22.39,45.2,21.1,48.3633333333,19.5111111111,56.1083333333,9.3,99.9,18.7,45.29,20.255,52.0383333333,18.2,50.6633333333,8.9333333333,757.1666666667,96.6666666667,5.8333333333,62.8333333333,8.3833333333,40.6783235027,40.6783235027 -70,20,21.79,47.06,21.1666666667,45.59,22.39,45.2,21.1,48.5,19.5333333333,56.045,9.3,99.9,18.7,45.3144444444,20.22,51.9222222222,18.2,50.59,8.8666666667,757.1333333333,96.3333333333,5.6666666667,62.6666666667,8.2666666667,33.4147593938,33.4147593938 -130,20,21.79,46.86,21.23,45.59,22.39,45.2,21.1,48.5,19.5055555556,55.9833333333,9.39,99.9,18.71,45.29,20.2,51.8816666667,18.2,50.59,8.8,757.1,96,5.5,62.5,8.15,14.8852093378,14.8852093378 -70,30,21.79,46.9,21.29,45.59,22.39,45.23,21.1333333333,48.5,19.5,55.9,9.4633333333,99.9,18.71,45.345,20.2,51.79,18.2,50.53,8.7333333333,757.0666666667,95.6666666667,5.3333333333,62.3333333333,8.0333333333,42.6589876297,42.6589876297 -70,20,21.79,46.9,21.39,45.5,22.39,45.29,21.2,48.5,19.5,55.9,9.5,99.9,18.725,45.4,20.2,51.79,18.2,50.5,8.6666666667,757.0333333333,95.3333333333,5.1666666667,62.1666666667,7.9166666667,42.3125160276,42.3125160276 -60,40,21.79,46.8633333333,21.39,45.5,22.3566666667,45.4,21.2,48.73,19.5,55.8572222222,9.5,99.9,18.725,45.4,20.2,51.79,18.2,50.5,8.6,757,95,5,62,7.8,18.8738309545,18.8738309545 -60,40,21.79,46.8633333333,21.39,45.4,22.3566666667,45.4,21.2,48.79,19.5,55.8022222222,9.2,99.8666666667,18.71,45.3083333333,20.1833333333,51.7088888889,18.2,50.5,8.55,756.9333333333,95,5.1666666667,62.1666666667,7.7666666667,43.3817922371,43.3817922371 -60,30,21.8233333333,47,21.39,45.4,22.39,45.4333333333,21.2,48.79,19.5,55.79,9,99.7266666667,18.7,45.245,20.1388888889,51.6022222222,18.2,50.5,8.5,756.8666666667,95,5.3333333333,62.3333333333,7.7333333333,26.8646770273,26.8646770273 -60,40,21.89,47.3333333333,21.39,45.29,22.39,45.5,21.26,48.8633333333,19.5,55.79,8.945,99.59,18.7,45.1033333333,20.1055555556,51.5294444444,18.2,50.4,8.45,756.8,95,5.5,62.5,7.7,28.8768541883,28.8768541883 -60,40,21.8233333333,47.4333333333,21.39,45.29,22.39,45.5,21.29,48.76,19.5,55.79,8.8,99.4,18.7,45.01,20.1,51.4111111111,18.2,50.3266666667,8.4,756.7333333333,95,5.6666666667,62.6666666667,7.6666666667,0.7825978217,0.7825978217 -50,0,21.815,47.425,21.3566666667,45.26,22.39,45.5,21.29,48.6266666667,19.5,55.7088888889,8.7266666667,99.4,18.7,44.9105555556,20.1,51.3327777778,18.2,50.26,8.35,756.6666666667,95,5.8333333333,62.8333333333,7.6333333333,45.5631244578,45.5631244578 -90,10,21.8566666667,47.4,21.29,45.2,22.39,45.56,21.26,48.2333333333,19.5,55.6022222222,8.7266666667,99.2633333333,18.7,44.8022222222,20.1166666667,51.225,18.2,50.2,8.3,756.6,95,6,63,7.6,31.9912874955,31.9912874955 -70,10,21.89,47.26,21.29,45.23,22.39,45.59,21.2,47.6933333333,19.5,55.6572222222,8.8,99.19,18.71,44.6783333333,20.1055555556,51.1572222222,18.2,50.09,8.2833333333,756.5166666667,95,5.8333333333,56.3333333333,7.5833333333,27.7024465962,27.7024465962 -50,0,21.89,47.1266666667,21.29,45.29,22.39,45.59,21.1,47.4666666667,19.5,55.7866666667,8.83,99.1233333333,18.72,44.6327777778,20.1,51.065,18.2,50.03,8.2666666667,756.4333333333,95,5.6666666667,49.6666666667,7.5666666667,34.0029681218,34.0029681218 -50,0,21.89,47.33,21.29,45.36,22.4266666667,45.7,21.0333333333,47.2666666667,19.5,56.19,8.83,99.1233333333,18.71,44.59,20.1,50.9944444444,18.2,50,8.25,756.35,95,5.5,43,7.55,46.9980911934,46.9980911934 -50,0,21.89,47.9966666667,21.29,45.6933333333,22.4266666667,45.76,20.945,47.145,19.5,56.4722222222,8.69,99.19,18.7,44.525,20.1,50.9111111111,18.2,49.975,8.2333333333,756.2666666667,95,5.3333333333,36.3333333333,7.5333333333,9.114284406,9.114284406 -40,10,21.89,50.06,21.2,46.045,22.4633333333,45.9333333333,20.8566666667,47.1633333333,19.5,56.5,8.69,99.19,18.72,44.4888888889,20.0777777778,50.8572222222,18.2,49.8266666667,8.2166666667,756.1833333333,95,5.1666666667,29.6666666667,7.5166666667,22.2382943146,22.2382943146 -70,0,21.89,50.3933333333,21.2,46.1633333333,22.4633333333,46.06,20.79,47.1633333333,19.5,56.45,8.69,99.19,18.72,44.4166666667,20.0888888889,50.78,18.2,49.79,8.2,756.1,95,5,23,7.5,14.9140683818,14.9140683818 -180,0,21.79,49.8333333333,21.2,46.09,22.39,46.09,20.79,47.3266666667,19.5,56.3816666667,8.69,99.1233333333,18.72,44.3327777778,20.0277777778,50.6622222222,18.2,49.73,8.0833333333,756.1166666667,94.3333333333,5.1666666667,23,7.2666666667,22.5986076286,22.5986076286 -50,0,21.79,49.2266666667,21.2,46.6666666667,22.39,46.09,20.73,47.4666666667,19.5,56.2144444444,8.66,99.1566666667,18.72,44.245,20,50.545,18.23,50.1,7.9666666667,756.1333333333,93.6666666667,5.3333333333,23,7.0333333333,45.5228673527,45.5228673527 -60,10,21.79,48.7966666667,21.2,47.5266666667,22.39,46.09,20.7,47.56,19.4633333333,55.9172222222,8.6,99.09,18.7,44.1277777778,20,50.4388888889,18.29,50.8333333333,7.85,756.15,93,5.5,23,6.8,38.7029058067,38.7029058067 -150,0,21.79,48.4633333333,21.2,46.8333333333,22.3233333333,46.09,20.7,47.5,19.4083333333,55.7633333333,8.36,99.09,18.72,43.9822222222,20,50.3327777778,18.39,51.3266666667,7.7333333333,756.1666666667,92.3333333333,5.6666666667,23,6.5666666667,34.031014645,34.031014645 -130,0,21.79,48.2233333333,21.2,46.5666666667,22.29,46.09,20.6666666667,47.4666666667,19.4205555556,55.5566666667,8.2266666667,99.09,18.7,43.8816666667,20,50.3877777778,18.4633333333,51.4666666667,7.6166666667,756.1833333333,91.6666666667,5.8333333333,23,6.3333333333,31.489327224,31.489327224 -60,10,21.79,47.9633333333,21.2,46.1633333333,22.29,46.09,20.6,47.4,19.4877777778,54.8566666667,8.0333333333,99.1566666667,18.7,43.745,20,50.3022222222,18.5,51.4,7.5,756.2,91,6,23,6.1,20.0046754675,20.0046754675 -50,10,21.79,47.6,21.2,46.03,22.29,46,20.6,47.26,19.5611111111,54.2577777778,7.8333333333,99.03,18.7,43.5933333333,19.9755555556,50.235,18.5,51.4,7.5,756.2,90.6666666667,6.1666666667,25.8333333333,6.05,2.7269827318,2.7269827318 -50,0,21.79,47.66,21.1,46.5,22.29,45.9333333333,20.5333333333,47.1266666667,19.6,54.3405555556,7.745,98.9,18.7,43.45,19.945,50.145,18.5,51.29,7.5,756.2,90.3333333333,6.3333333333,28.6666666667,6,32.1987395058,32.1987395058 -40,0,21.79,49.5633333333,21.1,46.8333333333,22.3233333333,46.03,20.5,46.9666666667,19.6166666667,54.9194444444,7.69,98.9,18.7,43.3277777778,19.89,50.0294444444,18.5,51.1566666667,7.5,756.2,90,6.5,31.5,5.95,10.9906520694,10.9906520694 -90,0,21.79,50.49,21.1,47.1266666667,22.39,46.6966666667,20.5,46.9,19.7,55.3077777778,7.69,98.9,18.7,43.21,19.89,49.8805555556,18.5,50.93,7.5,756.2,89.6666666667,6.6666666667,34.3333333333,5.9,4.4518641778,4.4518641778 -70,0,21.79,50.0633333333,21.1,47.2,22.39,47.2233333333,20.39,46.6333333333,19.7,54.9327777778,7.69,98.9,18.7,43.0933333333,19.89,49.785,18.4266666667,50.5966666667,7.5,756.2,89.3333333333,6.8333333333,37.1666666667,5.85,6.5375604434,6.5375604434 -60,10,21.73,49.6566666667,21.1,47.0266666667,22.315,47.09,20.39,46.5,19.7,54.4516666667,7.6233333333,98.8333333333,18.7,42.9833333333,19.89,49.6977777778,18.39,50.26,7.5,756.2,89,7,40,5.8,43.9694254543,43.9694254543 -70,0,21.7,49.05,21.1,46.8266666667,22.29,47.09,20.39,46.4666666667,19.7,53.8788888889,7.59,98.8,18.7,42.9111111111,19.89,49.5911111111,18.39,50.0666666667,7.4666666667,756.2333333333,89.5,6.6666666667,40,5.8333333333,32.6020126115,32.6020126115 -70,0,21.7,48.6633333333,21,46.43,22.29,46.93,20.39,46.4,19.7,53.4166666667,7.59,98.8,18.7,42.845,19.89,49.4822222222,18.39,49.76,7.4333333333,756.2666666667,90,6.3333333333,40,5.8666666667,1.4074029168,1.4074029168 -60,0,21.7,48.6633333333,21,46.23,22.23,46.6566666667,20.29,46.2,19.7,52.8788888889,7.59,98.8,18.7,42.755,19.8844444444,49.3938888889,18.39,49.5666666667,7.4,756.3,90.5,6,40,5.9,6.553153391,6.553153391 -70,0,21.7,48.4666666667,21,45.93,22.2,46.5,20.29,46.2,19.7,52.4616666667,7.59,98.8,18.7,42.7,19.8455555556,49.3511111111,18.39,49.3333333333,7.3666666667,756.3333333333,91,5.6666666667,40,5.9333333333,7.8797571012,7.8797571012 -60,0,21.6333333333,48.1933333333,21,45.6566666667,22.2,46.5,20.29,46.2,19.7,51.9505555556,7.6233333333,98.8333333333,18.7,42.6694444444,19.79,49.235,18.315,49.095,7.3333333333,756.3666666667,91.5,5.3333333333,40,5.9666666667,23.6738064326,23.6738064326 -40,0,21.6666666667,47.8933333333,21,45.545,22.1,46.4,20.26,46.1633333333,19.745,51.4044444444,7.69,98.9,18.7,42.6022222222,19.79,49.145,18.29,48.9333333333,7.3,756.4,92,5,40,6,37.5348940375,37.5348940375 -40,0,21.6,47.36,21,45.2233333333,22.1,46.3266666667,20.2,46.03,19.79,51.0133333333,7.6566666667,98.8666666667,18.6777777778,42.565,19.79,49.09,18.29,48.76,7.3,756.4833333333,91.6666666667,5,40,5.9666666667,42.0141959563,42.0141959563 -50,10,21.6,47.06,21,45.03,22.0666666667,46.2233333333,20.2,46,19.79,50.6022222222,7.53,98.8,18.6888888889,42.5188888889,19.79,49.065,18.29,48.6266666667,7.3,756.5666666667,91.3333333333,5,40,5.9333333333,43.7702780473,43.7702780473 -90,10,21.6,46.9333333333,21.0333333333,44.9,22,46.09,20.2,46,19.79,50.3116666667,7.33,98.5266666667,18.6666666667,42.4666666667,19.79,49.0411111111,18.29,48.4666666667,7.3,756.65,91,5,40,5.9,0.5534378346,0.5534378346 -90,30,21.6,47.0666666667,21.1,44.8266666667,22.0666666667,46.0266666667,20.2,46,19.8177777778,50.0572222222,7.1233333333,98.3333333333,18.6777777778,42.4255555556,19.84,49.2877777778,18.29,48.3266666667,7.3,756.7333333333,90.6666666667,5,40,5.8666666667,2.0784590277,2.0784590277 -90,20,21.6,46.9266666667,21.1,44.6333333333,22,45.9,20.2,45.86,19.89,49.7466666667,6.9333333333,98.26,18.6666666667,42.3633333333,19.9872222222,49.4438888889,18.29,48.26,7.3,756.8166666667,90.3333333333,5,40,5.8333333333,10.5679457076,10.5679457076 -100,30,21.6333333333,46.59,21.1666666667,44.4333333333,22.1,46,20.23,46.1566666667,19.945,49.39,7,98.4,18.6166666667,42.2433333333,20.1166666667,49.635,18.29,48.1266666667,7.3,756.9,90,5,40,5.8,36.3091425621,36.3091425621 -100,30,21.7,46.4633333333,21.2,44.26,22.1,46,20.3566666667,46.3633333333,20,49.0977777778,6.9,98.3333333333,18.6,42.1572222222,20.255,49.6694444444,18.26,48.0266666667,7.2666666667,757.0166666667,88.8333333333,5.1666666667,40,5.5666666667,39.7059522453,39.7059522453 -90,30,21.7,46.1633333333,21.26,44.2,22.1,45.9,20.39,46.4,20.0166666667,48.8461111111,6.9,98.2975,18.6,42.065,20.34,49.5772222222,18.26,47.9,7.2333333333,757.1333333333,87.6666666667,5.3333333333,40,5.3333333333,31.6846483038,31.6846483038 -170,30,21.7,46.03,21.29,44.06,22.1,45.845,20.4633333333,46.4,20.0888888889,48.6472222222,6.8333333333,98.0633333333,18.6,41.9833333333,20.4872222222,49.5144444444,18.2,47.7,7.2,757.25,86.5,5.5,40,5.1,7.4880259461,7.4880259461 -600,30,21.7,46.3666666667,21.3566666667,43.9333333333,22.0944444444,45.79,20.5,46.43,20.1,48.4194444444,6.6566666667,97.8966666667,18.6,41.835,20.5888888889,49.3805555556,18.2,47.6266666667,7.1666666667,757.3666666667,85.3333333333,5.6666666667,40,4.8666666667,24.2963917321,24.2963917321 -510,10,21.76,48.5666666667,21.39,43.8266666667,22.0428571429,45.8607142857,20.5,46.1566666667,20.1,48.5427777778,6.4633333333,97.4966666667,18.6,41.7066666667,20.6611111111,49.275,18.2,47.4666666667,7.1333333333,757.4833333333,84.1666666667,5.8333333333,40,4.6333333333,37.4471563962,37.4471563962 -110,10,21.8233333333,55.0333333333,21.39,44.2333333333,22,45.9290909091,20.5,45.93,20.1722222222,50.1577777778,6.2633333333,97.1266666667,18.6,41.545,20.71,49.0172222222,18.2,47.3266666667,7.1,757.6,83,6,40,4.4,13.2801675121,13.2801675121 -100,10,21.9633333333,55.9,21.5,45.6333333333,22.0214285714,46.4107142857,20.5,45.73,20.255,51.7822222222,6.1233333333,97,18.6,41.4327777778,20.725,48.8383333333,18.2,47.2,7.0333333333,757.6333333333,82.6666666667,6,38.1666666667,4.2666666667,37.9339054227,37.9339054227 -100,20,22,53.0666666667,21.5666666667,45.9666666667,22.08,46.678,20.5,45.56,20.29,51.8005555556,5.9666666667,96.6266666667,18.6,41.2772222222,20.79,48.9666666667,18.2,47.1266666667,6.9666666667,757.6666666667,82.3333333333,6,36.3333333333,4.1333333333,9.8003426101,9.8003426101 -110,30,22.025,51.625,21.6333333333,45.8333333333,22.1,46.79,20.5,45.9666666667,20.3344444444,53.7294444444,5.8333333333,96.4333333333,18.6,41.1277777778,20.8011111111,49.01,18.2,46.9666666667,6.9,757.7,82,6,34.5,4,18.8716000412,18.8716000412 -190,30,22.1,50.1666666667,21.7,45.5666666667,22.1,46.79,20.9266666667,46.4666666667,20.8555555556,71.85,5.7633333333,96.33,18.6,40.9822222222,20.8011111111,48.9988888889,18.2,46.8266666667,6.8333333333,757.7333333333,81.6666666667,6,32.6666666667,3.8666666667,28.0159460031,28.0159460031 -140,30,22.1333333333,49.0633333333,21.8233333333,45.23,22.1,46.76,21.4,46.2666666667,20.6538888889,65.9777777778,5.6233333333,96.1233333333,18.6,40.8327777778,20.8733333333,48.9216666667,18.2,46.6633333333,6.7666666667,757.7666666667,81.3333333333,6,30.8333333333,3.7333333333,22.6320736343,22.6320736343 -90,40,22.2,48.6566666667,21.89,45.3633333333,22.1,46.6266666667,21.5,46.1266666667,21.0311111111,71.3133333333,5.5,96.2266666667,18.6,40.745,20.8788888889,48.6661111111,18.2,46.4975,6.7,757.8,81,6,29,3.6,44.3081543664,44.3081543664 -90,30,22.23,48.2966666667,21.9266666667,45.1933333333,22.1,46.554,21.4175,46,22.9677777778,87.8911111111,5.5,96.3,18.6,40.6083333333,20.7955555556,48.2216666667,18.2,46.3266666667,6.65,757.85,81.1666666667,6,28.6666666667,3.5833333333,29.4393315562,29.4393315562 -90,30,22.29,47.83,22.025,44.7925,22.1,46.4666666667,21.39,46,22.5255555556,89.0694444444,5.5,96.5,18.6,40.565,20.8011111111,48.6983333333,18.1,46.2,6.6,757.9,81.3333333333,6,28.3333333333,3.5666666667,3.4149639308,3.4149639308 -90,30,22.39,47.1933333333,22.1,44.53,22.1,46.356,21.39,45.93,21.9444444444,91.7516666667,5.4333333333,96.3666666667,18.6,40.4105555556,20.8844444444,49.0877777778,18.1,46.1266666667,6.55,757.95,81.5,6,28,3.55,6.5271120518,6.5271120518 -120,30,22.39,46.8,22.1,44.4,22.1,46.09,21.39,45.73,21.66,92.9305555556,5.3666666667,96.2266666667,18.6,40.2872222222,20.89,49.1205555556,18.1,46,6.5,758,81.6666666667,6,27.6666666667,3.5333333333,7.3386531672,7.3386531672 -110,20,22.39,46.43,22.1,44.4,22.1,46.09,21.39,45.3633333333,21.4194444444,93.2283333333,5.3666666667,96.3,18.6,40.2038888889,20.9816666667,49.0694444444,18.1,45.9333333333,6.45,758.05,81.8333333333,6,27.3333333333,3.5166666667,43.015834759,43.015834759 -120,30,22.39,46.23,22.1,44.26,22.0714285714,46.0642857143,21.3233333333,45.1566666667,21.2761111111,92.8133333333,5.3666666667,96.23,18.6,40.1022222222,21.0722222222,48.9555555556,18.1,45.76,6.4,758.1,82,6,27,3.5,47.4638007698,47.4638007698 -110,20,22.39,45.9666666667,22.0333333333,44.0666666667,22.075,45.975,21.3566666667,44.9666666667,21.0938888889,91.9805555556,5.1925,95.9225,18.6,40.0094444444,21.1611111111,48.8327777778,18.1,45.7,6.2666666667,758.15,82.8333333333,5.6666666667,26.8333333333,3.5,44.8221647763,44.8221647763 -100,30,22.39,45.7666666667,22,43.8633333333,22,45.9,21.3566666667,44.8266666667,20.8744444444,90.8566666667,5.1566666667,95.9933333333,18.5555555556,39.9111111111,21.245,48.8144444444,18.1,45.56,6.1333333333,758.2,83.6666666667,5.3333333333,26.6666666667,3.5,5.6825865526,5.6825865526 -90,20,22.39,45.56,21.9266666667,43.6566666667,22,45.8327777778,21.3566666667,44.7233333333,20.735,88.5288888889,5,95.76,18.6,39.8572222222,21.3011111111,48.79,18.1,45.4333333333,6,758.25,84.5,5,26.5,3.5,39.6692976006,39.6692976006 -90,20,22.39,45.4333333333,21.89,43.5266666667,22,45.79,21.29,44.53,20.6722222222,84.7177777778,4.9333333333,95.8333333333,18.5777777778,39.79,21.3011111111,48.745,18.0666666667,45.3333333333,5.8666666667,758.3,85.3333333333,4.6666666667,26.3333333333,3.5,0.2158886055,0.2158886055 -80,20,22.3566666667,45.3633333333,21.89,43.4,21.9764285714,45.7707142857,21.39,44.6933333333,20.6,80.2677777778,4.9,95.9,18.55,39.755,21.3066666667,48.5877777778,18,45.2,5.7333333333,758.35,86.1666666667,4.3333333333,26.1666666667,3.5,34.9069954827,34.9069954827 -100,20,22.29,45.23,21.79,43.2,21.89,45.624375,21.39,44.5,20.5722222222,76.5883333333,4.9,95.9,18.5333333333,39.7,21.34,48.3561111111,18,45.09,5.6,758.4,87,4,26,3.5,25.3483242355,25.3483242355 -90,30,22.29,45,21.79,43.1266666667,21.89,45.6266666667,21.3233333333,44.56,20.4938888889,73.9894444444,4.7633333333,95.69,18.5,39.6816666667,21.3288888889,48.2166666667,18,45.03,5.65,758.4166666667,86.8333333333,4.1666666667,26.3333333333,3.5333333333,13.472205156,13.472205156 -80,20,22.29,44.9333333333,21.7,43.09,21.8733333333,45.575,21.39,44.4333333333,20.4022222222,71.8911111111,4.69,95.7633333333,18.5,39.59,21.3344444444,48.07,18.0333333333,44.9333333333,5.7,758.4333333333,86.6666666667,4.3333333333,26.6666666667,3.5666666667,31.7324904259,31.7324904259 -100,20,22.26,44.6933333333,21.7,43.03,21.8328571429,45.5385714286,21.3233333333,44.6566666667,20.3511111111,71.4038888889,4.6233333333,95.7933333333,18.5,39.7605555556,21.3788888889,48.1838888889,18.0333333333,44.86,5.75,758.45,86.5,4.5,27,3.6,49.8828301206,49.8828301206 -100,30,22.2,44.56,21.6666666667,42.79,21.8233333333,45.53,21.39,44.8633333333,20.275,71.4333333333,4.69,96,18.5166666667,40.0338888889,21.445,48.68,18,45.23,5.8,758.4666666667,86.3333333333,4.6666666667,27.3333333333,3.6333333333,25.2537171938,25.2537171938 -70,20,22.15,44.59,21.6,42.79,21.79,45.5,21.39,45.1266666667,20.23,71.2466666667,4.69,96.1233333333,18.5055555556,40.2227777778,21.6,49.4933333333,18,45.43,5.85,758.4833333333,86.1666666667,4.8333333333,27.6666666667,3.6666666667,46.661649982,46.661649982 -40,20,22.1,44.59,21.5666666667,42.79,21.77,45.4888888889,21.39,45.26,20.2,70.9522222222,4.7633333333,96.2633333333,18.5222222222,40.4044444444,21.7,50.2666666667,18,45.6266666667,5.9,758.5,86,5,28,3.7,9.5604443573,9.5604443573 -30,20,22.1,44.59,21.5,42.79,21.745,45.4166666667,21.39,45.3266666667,20.1611111111,70.5672222222,4.7633333333,96.23,18.5111111111,40.5438888889,21.7,50.625,18.075,45.925,5.8166666667,758.5,85.8333333333,5.1666666667,30,3.5833333333,24.2381272255,24.2381272255 -50,30,22,44.5,21.5,42.8266666667,21.6857142857,45.3842857143,21.39,45.475,20.1,69.96,4.6233333333,96.09,18.55,40.6205555556,21.7,51.1488888889,18.1,46.26,5.7333333333,758.5,85.6666666667,5.3333333333,32,3.4666666667,31.7062824033,31.7062824033 -60,20,22,44.56,21.4266666667,42.8266666667,21.6454545455,45.3872727273,21.4633333333,45.6333333333,20.0944444444,69.3972222222,4.69,96.2266666667,18.5333333333,40.705,21.6166666667,51.3138888889,18.0666666667,46.3633333333,5.65,758.5,85.5,5.5,34,3.35,10.1151566021,10.1151566021 -70,20,21.9633333333,44.6266666667,21.39,42.79,21.60625,45.40625,21.4266666667,45.73,20.0111111111,68.8461111111,4.69,96.2266666667,18.5611111111,40.78,21.6,51.4666666667,18.0666666667,46.43,5.5666666667,758.5,85.3333333333,5.6666666667,36,3.2333333333,21.4800955378,21.4800955378 -70,20,21.89,44.7,21.3566666667,42.79,21.6,45.4,21.4266666667,45.73,20,68.4533333333,4.59,95.995,18.5222222222,40.8572222222,21.55,51.6633333333,18.1,46.53,5.4833333333,758.5,85.1666666667,5.8333333333,38,3.1166666667,33.5344226914,33.5344226914 -60,30,21.8566666667,44.6633333333,21.29,42.79,21.6277777778,45.4277777778,21.5,45.79,20,68.0994444444,4.4666666667,95.83,18.5277777778,40.9,21.5111111111,51.9155555556,18.1,46.59,5.4,758.5,85,6,40,3,41.0793930991,41.0793930991 -50,20,21.79,44.59,21.23,42.73,21.6888888889,45.4888888889,21.5,45.79,20,67.7522222222,4.4666666667,95.8966666667,18.5777777778,40.9277777778,21.5,52.0211111111,18.1,46.7,5.3333333333,758.5,84.5,5.6666666667,40,2.8666666667,17.9345596698,17.9345596698 -60,20,21.79,44.59,21.23,42.73,21.6888888889,45.4888888889,21.5,45.8266666667,20,67.4322222222,4.3666666667,95.7633333333,18.5388888889,40.9888888889,21.4877777778,52.0983333333,18.0333333333,46.7,5.2666666667,758.5,84,5.3333333333,40,2.7333333333,30.9135777992,30.9135777992 -50,20,21.73,44.59,21.1666666667,42.7,21.6166666667,45.3372222222,21.5,45.8266666667,19.9327777778,67.09,4.3,95.69,18.5555555556,41.035,21.3961111111,51.9438888889,18.1,47.0666666667,5.2,758.5,83.5,5,40,2.6,17.3534801113,17.3534801113 -60,30,21.7,44.59,21.1,42.7,21.6,45.3266666667,21.5,45.79,19.89,66.7394444444,4.2266666667,95.53,18.5611111111,41.09,21.3733333333,51.9166666667,18.1,47.26,5.1333333333,758.5,83,4.6666666667,40,2.4666666667,37.7983282553,37.7983282553 -80,20,21.6333333333,44.4633333333,21.1,42.59,21.6,45.3725,21.5,45.79,19.89,66.4816666667,4.2266666667,95.3233333333,18.5166666667,41.0961111111,21.34,51.9111111111,18.1,47.4,5.0666666667,758.5,82.5,4.3333333333,40,2.3333333333,28.2713452354,28.2713452354 -70,10,21.6,44.5,21.1,42.59,21.6,45.4,21.5,45.79,19.89,66.2561111111,4.1566666667,94.9333333333,18.5555555556,41.1083333333,21.3455555556,51.9611111111,18.1,47.4,5,758.5,82,4,40,2.2,31.3794016489,31.3794016489 -70,0,21.6,44.4333333333,21,42.5,21.6,45.4,21.5,45.73,19.84,66.0238888889,4.09,94.66,18.5222222222,41.0961111111,21.3288888889,51.8083333333,18.1,47.4,4.8833333333,758.5,82.5,4,40,2.15,19.6107278462,19.6107278462 -60,0,21.6,44.4,21,42.5,21.6333333333,45.4333333333,21.4633333333,45.6633333333,19.8011111111,65.9111111111,3.9,94.0633333333,18.5333333333,41.1633333333,21.29,51.79,18.1,47.4,4.7666666667,758.5,83,4,40,2.1,32.9190944205,32.9190944205 -70,0,21.5333333333,44.4,21,42.56,21.6333333333,45.4333333333,21.39,45.59,19.79,65.7327777778,3.9,94.2633333333,18.5333333333,41.1327777778,21.29,51.6966666667,18.1,47.5,4.65,758.5,83.5,4,40,2.05,34.1553123668,34.1553123668 -50,0,21.5,44.29,20.9266666667,42.5,21.6666666667,45.43,21.3566666667,45.59,19.79,65.5172222222,3.76,93.9333333333,18.5,41.07,21.245,51.545,18.1,47.56,4.5333333333,758.5,84,4,40,2,38.8162777759,38.8162777759 -70,0,21.5,44.29,20.89,42.5,21.6,45.29,21.29,45.59,19.79,65.2927777778,3.7,94,18.5,41.09,21.2,51.4166666667,18.1,47.73,4.4166666667,758.5,84.5,4,40,1.95,38.3828211343,38.3828211343 -60,0,21.5,44.2,20.89,42.4333333333,21.6,45.2,21.2,45.5,19.79,65.0783333333,3.59,93.8966666667,18.5,41.09,21.1277777778,51.4277777778,18.1,47.79,4.3,758.5,85,4,40,1.9,0.5546718021,0.5546718021 -60,0,21.4266666667,44.03,20.89,42.4,21.6,45.23,21.1333333333,45.5,19.775,64.8372222222,3.59,94.23,18.5222222222,41.09,21.1,51.515,18.1,47.845,4.3333333333,758.45,85.6666666667,4,38,2.05,11.5406644996,11.5406644996 -70,0,21.4266666667,43.9633333333,20.8233333333,42.3266666667,21.6,45.29,21.1,45.59,19.72,64.64,3.59,94.4333333333,18.5,41.09,21.1,51.6205555556,18.1,48,4.3666666667,758.4,86.3333333333,4,36,2.2,34.8857218632,34.8857218632 -60,0,21.39,43.9,20.79,42.29,21.7,45.4,21.1,45.59,19.7,64.4761111111,3.53,94.3666666667,18.5,41.08,21.0666666667,51.725,18.1,48.06,4.4,758.35,87,4,34,2.35,45.197439508,45.197439508 -80,0,21.39,43.9,20.79,42.29,21.76,45.4,21,45.5,19.7,64.35,3.4,94.245,18.5,41.055,21.0388888889,51.78,18.1,48.23,4.4333333333,758.3,87.6666666667,4,32,2.5,4.4476036914,4.4476036914 -60,0,21.39,43.9,20.7,42.29,21.79,45.5,21,45.59,19.7,64.1644444444,3.4333333333,94.7266666667,18.5,41.055,21,52.1261111111,18.1,48.3633333333,4.4666666667,758.25,88.3333333333,4,30,2.65,33.1350108259,33.1350108259 -50,0,21.3233333333,43.9,20.7,42.4,21.8566666667,45.56,20.9266666667,45.59,19.6666666667,63.9233333333,3.5,95.06,18.5,41.09,21,52.5038888889,18.1,48.5,4.5,758.2,89,4,28,2.8,32.0878630271,32.0878630271 -40,0,21.29,43.9,20.7,42.3266666667,21.89,45.59,20.89,45.59,19.6277777778,63.7472222222,3.7666666667,95.6933333333,18.5,41.09,21,52.6472222222,18.1,48.56,4.5,758.15,89,4.1666666667,30,2.8166666667,46.6942343744,46.6942343744 -40,0,21.29,43.9,20.7,42.3266666667,21.89,45.59,20.89,45.59,19.6,63.545,3.9,95.9,18.5,41.09,21,52.725,18.1,48.7,4.5,758.1,89,4.3333333333,32,2.8333333333,45.2851733309,45.2851733309 -40,0,21.29,43.9,20.7,42.4,21.8566666667,45.56,20.89,45.59,19.6222222222,63.4327777778,3.9666666667,95.8,18.5,41.06,21,52.98,18.1,48.76,4.5,758.05,89,4.5,34,2.85,1.412998687,1.412998687 -60,0,21.29,43.9,20.6,42.29,21.79,45.5,20.8233333333,45.53,19.6,63.2916666667,3.9,95.7266666667,18.5,41.08,20.9877777778,53.045,18.1,48.8266666667,4.5,758,89,4.6666666667,36,2.8666666667,16.3483105833,16.3483105833 -60,0,21.2,43.79,20.6,42.29,21.79,45.59,20.79,45.5,19.6,63.1133333333,3.79,95.59,18.5,41.09,20.9572222222,52.9888888889,18.1,48.9,4.5,757.95,89,4.8333333333,38,2.8833333333,43.3175436105,43.3175436105 -70,0,21.2,43.79,20.6,42.29,21.79,45.59,20.79,45.5,19.6,62.9711111111,3.73,95.59,18.5,41.07,20.9511111111,52.9777777778,18.1,49.03,4.5,757.9,89,5,40,2.9,10.4748975486,10.4748975486 -60,0,21.1666666667,43.79,20.6,42.29,21.89,45.79,20.7,45.5,19.5777777778,62.8927777778,3.6633333333,95.4,18.5,41.085,20.9388888889,52.9055555556,18.1,49.1633333333,4.55,757.8666666667,89.1666666667,4.8333333333,38.1666666667,2.9666666667,24.4928646483,24.4928646483 -60,0,21.1666666667,43.79,20.5,42.4,21.89,45.79,20.7,45.5,19.55,62.775,3.6633333333,95.6666666667,18.5,41.03,20.89,52.845,18.1,49.2,4.6,757.8333333333,89.3333333333,4.6666666667,36.3333333333,3.0333333333,23.2813246083,23.2813246083 -50,0,21.1666666667,43.79,20.5,42.4,21.89,45.9,20.7,45.5,19.5222222222,62.6672222222,3.79,95.9333333333,18.5,41.01,20.89,52.715,18.1,49.26,4.65,757.8,89.5,4.5,34.5,3.1,26.6031777603,26.6031777603 -60,0,21.1,43.79,20.5,42.4,21.9633333333,45.9,20.6333333333,45.4333333333,19.5,62.545,3.8633333333,96.06,18.5,41.02,20.89,52.645,18.2,49.29,4.7,757.7666666667,89.6666666667,4.3333333333,32.6666666667,3.1666666667,47.1782508539,47.1782508539 -60,0,21.1,43.79,20.5,42.4,21.9266666667,45.9,20.6,45.4,19.5,62.4327777778,3.8266666667,95.9633333333,18.5,41.055,20.89,52.535,18.2,49.29,4.75,757.7333333333,89.8333333333,4.1666666667,30.8333333333,3.2333333333,26.8129179021,26.8129179021 -50,0,21.1,43.79,20.5,42.4,21.9266666667,45.9,20.6,45.4,19.5,62.3266666667,3.9,96.09,18.5,41.035,20.89,52.4888888889,18.2,49.4333333333,4.8,757.7,90,4,29,3.3,27.012378443,27.012378443 -60,0,21,43.7,20.4266666667,42.4,22,45.9,20.5666666667,45.4,19.4877777778,62.2066666667,3.9333333333,96.19,18.5,41.07,20.89,52.3994444444,18.2,49.5,4.75,757.6833333333,89.8333333333,4,30.8333333333,3.2166666667,31.9408918265,31.9408918265 -70,0,21,43.7,20.39,42.4,21.9266666667,45.9333333333,20.5,45.4,19.4755555556,62.0944444444,4.045,96.27,18.5,41.03,20.89,52.3022222222,18.2,49.545,4.7,757.6666666667,89.6666666667,4,32.6666666667,3.1333333333,27.9564685421,27.9564685421 -60,0,21,43.7,20.39,42.4,22,45.9333333333,20.5,45.3633333333,19.3961111111,61.9033333333,4,96.09,18.5,41.04,20.8733333333,52.2166666667,18.2,49.59,4.65,757.65,89.5,4,34.5,3.05,3.0563975335,3.0563975335 -60,0,21,43.7,20.3566666667,42.4,22,45.9,20.5,45.29,19.39,61.8144444444,3.8333333333,95.5233333333,18.5,41.035,20.8511111111,52.08,18.2,49.6633333333,4.6,757.6333333333,89.3333333333,4,36.3333333333,2.9666666667,14.6191796637,14.6191796637 -50,0,21,43.7,20.29,42.4,22,45.9,20.5,45.4,19.4144444444,61.735,3.6266666667,95.2633333333,18.5,41.005,20.8177777778,52.0083333333,18.2,49.73,4.55,757.6166666667,89.1666666667,4,38.1666666667,2.8833333333,24.181242194,24.181242194 -50,0,20.9633333333,43.7,20.3233333333,42.4,22.1,45.9,20.5,45.3633333333,19.39,61.7,3.6566666667,95.6666666667,18.5,41,20.79,51.9,18.2,49.79,4.5,757.6,89,4,40,2.8,14.9431128288,14.9431128288 -60,0,20.89,43.7,20.315,42.4,22.0333333333,45.9,20.4266666667,45.29,19.39,61.5633333333,3.93,96.1266666667,18.4755555556,40.9777777778,20.79,51.8277777778,18.2,49.79,4.5,757.6333333333,89.3333333333,3.8333333333,40,2.85,26.6877684975,26.6877684975 -50,0,20.89,43.7,20.29,42.4,22,45.9,20.39,45.29,19.39,61.4933333333,4.2266666667,96.4633333333,18.5,41,20.78,51.71,18.2,49.79,4.5,757.6666666667,89.6666666667,3.6666666667,40,2.9,22.2190368222,22.2190368222 -60,0,20.89,43.7,20.26,42.3633333333,22,45.9,20.39,45.29,19.3622222222,61.4333333333,4.3666666667,96.59,18.4327777778,40.9388888889,20.705,51.7,18.2,49.9,4.5,757.7,90,3.5,40,2.95,39.6336142789,39.6336142789 -60,0,20.89,43.7,20.2,42.29,22,45.9833333333,20.39,45.29,19.3733333333,61.4,4.53,96.69,18.4205555556,40.9277777778,20.715,51.7,18.2,49.9,4.5,757.7333333333,90.3333333333,3.3333333333,40,3,2.7991885785,2.7991885785 -60,0,20.8233333333,43.6266666667,20.2,42.29,22,46,20.3233333333,45.29,19.34,61.3083333333,4.53,96.6233333333,18.4633333333,40.9666666667,20.705,51.76,18.2,49.9333333333,4.5,757.7666666667,90.6666666667,3.1666666667,40,3.05,18.2514505577,18.2514505577 -60,10,20.79,43.59,20.2,42.29,22,46,20.39,45.29,19.3233333333,61.2266666667,4.5,96.59,18.4327777778,40.9388888889,20.7,51.745,18.2,50,4.5,757.8,91,3,40,3.1,44.5708975778,44.5708975778 -60,10,20.79,43.59,20.2,42.4333333333,22,46,20.3233333333,45.29,19.29,61.025,4.5,96.6566666667,18.4388888889,40.9444444444,20.7,51.9261111111,18.23,50,4.4166666667,757.8666666667,91.1666666667,3,38.1666666667,3.05,25.9619979304,25.9619979304 -60,10,20.79,43.9633333333,20.2,42.5,22,46.045,20.29,45.1633333333,19.29,61,4.5,96.6566666667,18.4144444444,40.9222222222,20.7,51.82,18.29,49.9333333333,4.3333333333,757.9333333333,91.3333333333,3,36.3333333333,3,18.4320498724,18.4320498724 -60,10,20.79,44.1633333333,20.2,42.5,22,46,20.29,45.2966666667,19.29,60.8983333333,4.5,96.53,18.4388888889,40.9322222222,20.6388888889,51.5305555556,18.29,49.8633333333,4.25,758,91.5,3,34.5,2.95,20.8781345515,20.8781345515 -60,10,20.79,44.29,20.2,42.56,22,45.93,20.39,45.6566666667,19.29,60.8144444444,4.3666666667,96.3,18.39,40.8877777778,20.6,51.3016666667,18.29,49.79,4.1666666667,758.0666666667,91.6666666667,3,32.6666666667,2.9,1.1348031112,1.1348031112 -100,10,20.79,44.3633333333,20.1,42.6266666667,21.9266666667,45.73,20.39,45.79,19.29,60.7738888889,4.3,96.3,18.39,40.8555555556,20.5944444444,51.07,18.29,49.76,4.0833333333,758.1333333333,91.8333333333,3,30.8333333333,2.85,29.5244280016,29.5244280016 -70,0,20.79,44.5666666667,20.1,42.76,21.84,45.406,20.4266666667,45.79,19.29,60.3266666667,4.2633333333,96.2,18.39,40.38,20.5333333333,50.5638888889,18.29,49.7,4,758.2,92,3,29,2.8,24.6517731459,24.6517731459 -70,0,20.79,44.8333333333,20.1,42.79,21.79,45.09,20.4266666667,45.4566666667,19.27,59.6077777778,4.245,96.15,18.3844444444,39.9366666667,20.5,50.0466666667,18.29,49.4666666667,3.9833333333,758.3,91.3333333333,3.1666666667,29,2.6833333333,5.1453555352,5.1453555352 -90,10,20.79,44.93,20.1,42.73,21.745,44.895,20.39,44.8633333333,19.255,59.0394444444,4.1233333333,95.8666666667,18.3177777778,39.65,20.445,49.4638888889,18.29,49.2666666667,3.9666666667,758.4,90.6666666667,3.3333333333,29,2.5666666667,20.2395193628,20.2395193628 -190,20,20.79,44.73,20.1,42.59,21.68,44.612,20.39,44.4633333333,19.21,58.5405555556,3.9666666667,95.3966666667,18.2955555556,39.4205555556,20.39,49.0133333333,18.29,48.8,3.95,758.5,90,3.5,29,2.45,2.6234388002,2.6234388002 -310,20,20.79,44.545,20.1,42.53,21.6,44.6783333333,20.4266666667,44.6266666667,19.2,58.0822222222,3.8266666667,95.1233333333,18.29,39.2327777778,20.3733333333,48.63,18.2,48.3333333333,3.9333333333,758.6,89.3333333333,3.6666666667,29,2.3333333333,1.828366844,1.828366844 -230,30,20.79,44.5,20.2,42.3633333333,21.6,44.772,20.5,44.7,19.2,57.73,3.6633333333,94.73,18.29,39.0755555556,20.3233333333,48.2638888889,18.2,48,3.9166666667,758.7,88.6666666667,3.8333333333,29,2.2166666667,11.5548073431,11.5548073431 -170,20,20.8566666667,44.6333333333,20.2,42.1566666667,21.6,44.7,20.645,44.7,19.2,57.4294444444,3.53,94.4633333333,18.29,38.8561111111,20.29,47.9872222222,18.2,47.6666666667,3.9,758.8,88,4,29,2.1,48.990136513,48.990136513 -320,20,21,44.43,20.3233333333,41.9,21.6,44.585,21.1966666667,44.49,19.1777777778,57.2088888889,3.4,94.2633333333,18.29,38.6966666667,20.285,47.7144444444,18.26,48.5266666667,3.9666666667,758.9,87.1666666667,4,29,2.0166666667,2.3146989406,2.3146989406 -300,0,21.0666666667,44.23,20.5225,41.57,21.6055555556,44.4494444444,21.5966666667,44.1566666667,19.1777777778,57.1266666667,3.4,94.19,18.29,38.565,20.225,47.3461111111,18.29,49.2666666667,4.0333333333,759,86.3333333333,4,29,1.9333333333,6.5975322155,6.5975322155 -90,0,21.1333333333,43.76,20.76,41.3266666667,21.6166666667,44.4166666667,22.2333333333,43.7666666667,19.1777777778,57.0094444444,3.3266666667,94.1233333333,18.29,38.4105555556,20.205,47.1172222222,18.29,49.3266666667,4.1,759.1,85.5,4,29,1.85,46.4220222784,46.4220222784 -90,0,21.26,43.6266666667,20.86,41.1633333333,21.6,44.4,22.6333333333,42.9666666667,19.1722222222,56.8988888889,3.4,94.19,18.29,38.2572222222,20.2,46.8311111111,18.29,49.1333333333,4.1666666667,759.2,84.6666666667,4,29,1.7666666667,4.3970030616,4.3970030616 -90,0,21.3233333333,43.5266666667,21.0666666667,41.03,21.6222222222,44.4222222222,22.6666666667,42.53,19.1,56.735,3.4333333333,94.06,18.29,38.0877777778,20.2,46.6277777778,18.29,48.86,4.2333333333,759.3,83.8333333333,4,29,1.6833333333,47.1292770235,47.1292770235 -120,0,21.39,43.3266666667,21.2633333333,40.8333333333,21.6055555556,44.4055555556,22.6,42.7233333333,19.1166666667,56.6388888889,3.6333333333,93.9333333333,18.29,37.8805555556,20.2,46.4477777778,18.29,48.6333333333,4.3,759.4,83,4,29,1.6,33.7057080586,33.7057080586 -360,0,21.5333333333,43.0333333333,21.39,40.8333333333,21.6888888889,44.3983333333,22.5,42.8266666667,19.1444444444,56.5216666667,3.73,93.1333333333,18.3288888889,37.6916666667,20.2,46.2177777778,18.29,48.4333333333,4.4666666667,759.4666666667,81.5,4.3333333333,29,1.5,0.1914369059,0.1914369059 -220,0,21.6,42.76,21.4266666667,40.86,21.7,44.1135714286,22.5,42.8266666667,19.15,56.3561111111,3.93,92.1333333333,18.3455555556,37.4294444444,20.2,45.9294444444,18.39,48.1633333333,4.6333333333,759.5333333333,80,4.6666666667,29,1.4,42.4625629093,42.4625629093 -220,0,21.73,43,21.5,41,21.7,43.9822222222,22.39,42.5,19.1,56.1572222222,4.03,90.8266666667,18.39,37.2166666667,20.1777777778,45.6916666667,18.39,47.9633333333,4.8,759.6,78.5,5,29,1.3,25.7795421756,25.7795421756 -410,0,21.79,43.06,21.6333333333,40.9633333333,21.755,43.9,22.39,42.5,19.1,55.95,4.1566666667,89.7666666667,18.39,37.0172222222,20.2,45.46,18.39,47.76,4.9666666667,759.6666666667,77,5.3333333333,29,1.2,21.1174907628,21.1174907628 -190,0,21.89,43.29,21.76,41.1633333333,21.79,43.845,22.39,42.3633333333,19.1,55.8277777778,4.4333333333,87.73,18.3961111111,36.8177777778,20.2,45.2672222222,18.4633333333,47.6266666667,5.1333333333,759.7333333333,75.5,5.6666666667,29,1.1,42.9805878433,42.9805878433 -80,0,21.9633333333,43.29,21.79,41.3266666667,21.79,43.8022222222,22.39,42.29,19.1,55.655,4.5925,85.3975,18.4388888889,36.5755555556,20.2,45.0294444444,18.5,47.3333333333,5.3,759.8,74,6,29,1,29.4954403071,29.4954403071 -70,0,22.0333333333,43.23,21.79,41.6,21.79,43.8816666667,22.39,42.26,19.1,55.555,4.7633333333,82.06,18.5,36.3933333333,20.2,44.7933333333,18.5,47.1266666667,5.4,759.8333333333,72.8333333333,6.3333333333,30.8333333333,0.85,3.1933921273,3.1933921273 -70,0,22.1,43.29,21.79,41.7666666667,21.7955555556,43.9055555556,22.4633333333,42.26,19.1,55.4833333333,4.9633333333,79.43,18.55,36.13,20.2,44.62,18.5,46.8633333333,5.5,759.8666666667,71.6666666667,6.6666666667,32.6666666667,0.7,6.7593711312,6.7593711312 -350,0,22.1,43.4333333333,21.73,41.9666666667,21.8788888889,43.9388888889,22.4633333333,42.1633333333,19.1,55.3927777778,5.1566666667,77.0233333333,18.6166666667,35.9327777778,20.205,44.1077777778,18.5,46.5966666667,5.6,759.9,70.5,7,34.5,0.55,20.5557384063,20.5557384063 -340,0,22.1666666667,43.56,21.7,42.6633333333,21.8844444444,43.8938888889,22.39,42.09,19.1,55.29,5.3333333333,75.4966666667,18.7,35.7772222222,20.26,43.5377777778,18.5,46.345,5.7,759.9333333333,69.3333333333,7.3333333333,36.3333333333,0.4,41.5140637895,41.5140637895 -340,0,22.2,45.595,21.7,42.4633333333,21.8233333333,43.8572222222,22.3566666667,42.2,19.1,55.25,5.4666666667,74.9566666667,18.725,35.5366666667,20.29,43.27,18.5333333333,46.2,5.8,759.9666666667,68.1666666667,7.6666666667,38.1666666667,0.25,19.356635143,19.356635143 -340,0,22.2,45,21.7,42.53,21.79,43.9661111111,22.29,42.1266666667,19.1,55.29,5.7266666667,70.6,18.78,35.32,20.29,42.9822222222,18.6,46.2,5.9,760,67,8,40,0.1,31.1397629674,31.1397629674 -220,0,22.2,45.6666666667,21.6333333333,42.59,21.79,44.1594444444,22.29,42,19.1,55.29,5.9333333333,71.5333333333,18.8127777778,35.1083333333,20.29,42.8066666667,18.6,46.2,6.0166666667,760.0333333333,66.5,8,40,0.1166666667,30.2636222448,30.2636222448 -70,0,22.29,45.6933333333,21.6666666667,42.7233333333,21.8511111111,44.3811111111,22.2225,41.7475,19.1,55.29,6.2266666667,67.3233333333,18.9633333333,35.045,20.3233333333,42.4166666667,18.6,46.1266666667,6.1333333333,760.0666666667,66,8,40,0.1333333333,27.0113517996,27.0113517996 -90,0,22.29,46.7666666667,21.6,42.6633333333,21.9327777778,44.5,22.2,41.33,19.1,55.3205555556,6.3,67.0633333333,19.0777777778,34.8933333333,20.4516666667,42.0877777778,18.6,45.9666666667,6.25,760.1,65.5,8,40,0.15,29.218474566,29.218474566 -80,0,22.5333333333,45.5266666667,21.65,42.79,21.9877777778,44.5,22.1,41.06,19.1,55.3877777778,6.4,66.13,19.245,34.71,20.5111111111,41.8311111111,18.6,45.8266666667,6.3666666667,760.1333333333,65,8,40,0.1666666667,38.6402364471,38.6402364471 -70,0,22.5333333333,44.86,21.6,42.7233333333,21.9877777778,44.5,22.1,40.86,19.1,55.3938888889,6.4666666667,63.93,19.29,34.5366666667,20.5166666667,41.6122222222,18.6,45.6633333333,6.4833333333,760.1666666667,64.5,8,40,0.1833333333,34.9109778297,34.9109778297 -70,0,22.5,44.43,21.5333333333,42.59,21.9633333333,44.555,22,40.4666666667,19.1,55.3266666667,6.53,61.4633333333,19.29,34.32,20.5666666667,41.3311111111,18.6,45.53,6.6,760.2,64,8,40,0.2,42.0546589768,42.0546589768 -70,0,22.5666666667,44.1566666667,21.5666666667,42.4666666667,21.9572222222,44.59,21.9266666667,40.3266666667,19.1,55.275,6.59,59.33,19.29,34.0877777778,20.5611111111,41.1277777778,18.6,45.3633333333,6.5166666667,760.1666666667,64.1666666667,7.6666666667,40,0.1666666667,48.8756086212,48.8756086212 -120,0,22.6,43.7666666667,21.5,42.2666666667,21.9694444444,44.6083333333,21.8566666667,40.3633333333,19.1,55.1694444444,6.7266666667,58.33,19.29,33.8805555556,20.5444444444,40.96,18.6,45.1566666667,6.4333333333,760.1333333333,64.3333333333,7.3333333333,40,0.1333333333,11.5963522927,11.5963522927 -90,0,22.6,43.56,21.5,42.06,21.9816666667,44.7,21.79,40.29,19.1,55.055,6.8,58.1966666667,19.255,33.6872222222,20.5388888889,41.0444444444,18.6666666667,45.0266666667,6.35,760.1,64.5,7,40,0.1,42.8653033683,42.8653033683 -100,0,22.6,43.1933333333,21.5,42,21.9877777778,44.7,21.79,40.26,19.0666666667,54.9377777778,6.7633333333,56.2,19.2,33.51,20.6166666667,41.2027777778,18.6,44.7666666667,6.2666666667,760.0666666667,64.6666666667,6.6666666667,40,0.0666666667,34.235226037,34.235226037 -100,10,22.6,42.86,21.39,41.7,21.9069230769,44.7,21.73,40.2,19.0777777778,54.8105555556,6.69,59.07,19.1888888889,33.4833333333,20.6938888889,41.3311111111,18.6,44.59,6.1833333333,760.0333333333,64.8333333333,6.3333333333,40,0.0333333333,15.0095747435,15.0095747435 -240,10,22.6,42.79,21.3233333333,41.76,21.89,44.7,21.7,40.36,19.0555555556,54.75,6.6233333333,60.6933333333,19.1555555556,33.4111111111,20.78,41.8655555556,18.6,44.53,6.1,760,65,6,40,0,8.0610715784,8.0610715784 -420,30,22.5333333333,42.73,21.2,41.79,21.89,44.6816666667,21.7,40.5,19.0444444444,54.7922222222,5.0933333333,80.5233333333,19.1055555556,33.5677777778,20.8916666667,42.3455555556,18.6,44.4666666667,5.9,760.1333333333,68.6666666667,6,40,0.4833333333,38.3617185522,38.3617185522 -200,20,22.5,42.7,21.2,41.8633333333,21.89,44.6371428571,21.7,40.53,19.05,54.7388888889,5.0933333333,87.73,19.0833333333,33.8,21,42.66,18.6,44.3266666667,5.7,760.2666666667,72.3333333333,6,40,0.9666666667,49.3555816705,49.3555816705 -120,20,22.5,42.7,21.2,42.03,21.9725,44.59,21.7,40.6633333333,19.0166666667,54.645,5.33,90.1933333333,19.0333333333,34.0244444444,21.0833333333,42.9477777778,18.6,44.29,5.5,760.4,76,6,40,1.45,42.9048715741,42.9048715741 -120,20,22.39,42.6266666667,21.1333333333,42.09,21.945,44.59,21.7,40.8266666667,19.0444444444,54.6205555556,5.2633333333,89.8,19.0111111111,34.245,21.15,43.08,18.6,44.29,5.3,760.5333333333,79.6666666667,6,40,1.9333333333,33.8034903747,33.8034903747 -120,20,22.39,42.76,21.1,42.09,21.9755555556,44.59,21.76,40.9,19.0333333333,54.535,5.4,90.23,19.0944444444,34.5322222222,21.2605555556,43.2122222222,18.6,44.29,5.1,760.6666666667,83.3333333333,6,40,2.4166666667,40.58572863,40.58572863 -220,10,22.39,42.8266666667,21.1,42.09,22,44.59,21.79,41.03,19.0166666667,54.45,5.4,90.4233333333,19.0888888889,34.58,21.3455555556,43.3694444444,18.6,44.2,4.9,760.8,87,6,40,2.9,24.2857381585,24.2857381585 -160,20,22.39,43.0425,21.1,42.2,21.94,44.59,21.79,41.03,19,54.3816666667,5.2633333333,89.2933333333,19.0055555556,34.58,21.3788888889,43.4,18.6,44.1266666667,4.9333333333,760.8666666667,85.8333333333,6,40,2.7333333333,23.0286439648,23.0286439648 -130,10,22.3233333333,43.09,21.0333333333,42.2,21.9205555556,44.515,21.76,40.76,19,54.29,5.19,89.56,19,34.645,21.39,43.4,18.6,44.9666666667,4.9666666667,760.9333333333,84.6666666667,6,40,2.5666666667,15.5955166905,15.5955166905 -110,10,22.29,43.06,21,42.2,21.88375,44.51625,21.7,40.6266666667,19.0222222222,54.3388888889,5.3333333333,89.2633333333,18.9755555556,34.715,21.4083333333,43.5566666667,18.6,45.8333333333,5,761,83.5,6,40,2.4,1.0290819453,1.0290819453 -90,10,22.23,42.9333333333,21,42.2,21.8042857143,44.375,21.6,40.5,19,54.29,5.4666666667,89.2633333333,19,34.79,21.5,43.7,18.6,46.2,5.0333333333,761.0666666667,82.3333333333,6,40,2.2333333333,20.6357472343,20.6357472343 -100,10,22.2,43.1633333333,21,42.26,21.775,44.3572222222,21.5666666667,40.59,19,54.3327777778,5.5,87.2333333333,18.9572222222,34.8327777778,21.5388888889,43.7,18.6666666667,46.26,5.0666666667,761.1333333333,81.1666666667,6,40,2.0666666667,48.9999942249,48.9999942249 -180,10,22.1333333333,43.03,20.9725,42.2,21.7,44.4,21.5,40.6633333333,19,54.3694444444,5.56,86.0933333333,18.89,34.9277777778,21.6,43.745,18.6,45.9666666667,5.1,761.2,80,6,40,1.9,6.7701387568,6.7701387568 -510,10,22.1,43,20.9633333333,42.46,21.7,44.4427777778,21.5,40.8266666667,19,54.3388888889,5.7633333333,84.9,18.89,35,21.6611111111,43.9427777778,18.6,45.8266666667,5.1333333333,761.3,80,6,40,1.9333333333,36.5337968455,36.5337968455 -350,10,22.1,43.06,20.89,42.3633333333,21.795,45.1811111111,21.5,40.9,19,54.3144444444,5.7633333333,80.9666666667,18.89,34.9555555556,21.725,44.0555555556,18.6,45.56,5.1666666667,761.4,80,6,40,1.9666666667,26.2652028585,26.2652028585 -310,10,22,43.1566666667,20.8233333333,42.23,22.1355555556,46.4938888889,21.5,41,19,54.3572222222,5.9,78.16,18.89,34.9555555556,21.79,44.275,18.6666666667,45.5,5.2,761.5,80,6,40,2,48.0799708166,48.0799708166 -300,10,22,43.43,20.79,42.5666666667,22.5005555556,47.3305555556,21.4266666667,40.9333333333,19,54.4,5.9,77.75,18.89,35,21.79,44.29,18.6,45.1333333333,5.2333333333,761.6,80,6,40,2.0333333333,36.0115170944,36.0115170944 -270,30,22,43.6266666667,20.79,42.8333333333,22.86,47.6866666667,21.4633333333,41.06,19,54.4611111111,5.9,77.5666666667,18.8788888889,34.9888888889,21.79,44.29,18.6,44.9333333333,5.2666666667,761.7,80,6,40,2.0666666667,45.5308193108,45.5308193108 -270,40,21.9266666667,43.9,20.7,43.0666666667,23.1166666667,47.6516666667,21.39,41.06,19,54.53,5.8666666667,77.0333333333,18.8288888889,34.9388888889,21.79,44.2029411765,18.6,44.76,5.3,761.8,80,6,40,2.1,15.192508162,15.192508162 -250,40,21.89,44.23,20.7,43.26,23.2861111111,47.105,21.4266666667,41.0666666667,19,54.565,5.8,76.4933333333,18.79,34.9833333333,21.75,44.1144444444,18.6,44.5666666667,5.3166666667,761.9333333333,80,5.6666666667,40,2.1,31.4333982067,31.4333982067 -230,30,21.89,44.3633333333,20.7,43.3266666667,23.3733333333,46.4066666667,21.5,41.2,18.9633333333,54.6022222222,5.7633333333,76.9,18.79,35,21.79,43.9888888889,18.5,44.3633333333,5.3333333333,762.0666666667,80,5.3333333333,40,2.1,10.4118721327,10.4118721327 -120,30,21.79,44.4333333333,20.7,43.4666666667,23.3961111111,45.7705555556,21.5,41.2,18.9572222222,54.645,5.6233333333,76.9666666667,18.79,35.035,21.8122222222,43.8066666667,18.5,44.23,5.35,762.2,80,5,40,2.1,42.5249351421,42.5249351421 -190,30,21.79,44.56,20.7,43.53,23.4083333333,45.1483333333,21.5,41.26,18.9022222222,54.7,5.6566666667,76.9,18.725,35.09,21.88,43.6288888889,18.5,43.9666666667,5.3666666667,762.3333333333,80,4.6666666667,40,2.1,2.581132669,2.581132669 -170,30,21.79,44.59,20.7,43.6633333333,23.3238888889,44.5566666667,21.5,40.96,18.9144444444,54.6122222222,5.59,76.6333333333,18.7,35.09,21.9511111111,43.4333333333,18.5,43.8266666667,5.3833333333,762.4666666667,80,4.3333333333,40,2.1,38.163796172,38.163796172 -120,30,21.8566666667,44.6633333333,20.79,43.5,23.1822222222,44.2683333333,21.5,40.5666666667,18.89,54.3311111111,5.59,76.03,18.7,35.09,22.0111111111,43.26,18.5,43.645,5.4,762.6,80,4,40,2.1,35.7644966571,35.7644966571 -120,40,21.89,44.6633333333,20.8566666667,43.5,23.0388888889,43.9688888889,21.5,40.3633333333,18.89,54.0877777778,5.59,75.09,18.7,35.0961111111,22.0777777778,43.1266666667,18.4633333333,43.43,5.3833333333,762.7166666667,80,4,40,2.1,38.3878596593,38.3878596593 -460,30,21.89,44.53,20.9266666667,43.3333333333,22.9205555556,43.655,21.5,40.23,18.89,53.8561111111,5.5,74.9333333333,18.7,35.1633333333,22.1,43.08,18.39,43.23,5.3666666667,762.8333333333,80,4,40,2.1,31.5364228329,31.5364228329 -600,30,22,44.45,21,43.0666666667,22.89,43.5961111111,21.5,40.23,18.89,53.6722222222,5.5,75.2,18.7,35.2,22.1666666667,43,18.39,43.09,5.35,762.95,80,4,40,2.1,40.82617698,40.82617698 -280,10,22.1333333333,47.86,21.1333333333,42.8633333333,22.89,43.6633333333,21.5,40.29,18.89,53.6266666667,5.59,75.6,18.6444444444,35.1755555556,22.2,42.8755555556,18.39,43.03,5.3333333333,763.0666666667,80,4,40,2.1,20.8158893394,20.8158893394 -100,0,22.26,52.1933333333,21.2,43.0633333333,22.89,44.1511111111,21.445,40.35,18.89,53.7483333333,5.59,76.06,18.6611111111,35.23,22.1588235294,42.6288235294,18.39,42.9,5.3166666667,763.1833333333,80,4,40,2.1,46.8860813533,46.8860813533 -110,20,22.3233333333,51.1666666667,21.3233333333,44.1933333333,22.89,44.5644444444,21.39,40.06,18.89,54.0644444444,5.59,76.0266666667,18.6111111111,35.22,22.1058823529,42.7147058824,18.39,42.9,5.3,763.3,80,4,40,2.1,14.5391636295,14.5391636295 -130,20,22.39,50.1,21.4175,44.45,22.8288888889,44.705,21.39,40.5266666667,18.89,54.3177777778,5.59,75.76,18.6,35.24,22.1705882353,42.7635294118,18.39,42.8633333333,5.2666666667,763.3833333333,80.1666666667,3.8333333333,40,2.0833333333,5.7008074014,5.7008074014 -120,20,22.39,48.2933333333,21.5,44.2666666667,22.79,44.78,21.4266666667,42.6233333333,18.89,54.4,5.59,75.4333333333,18.6,35.275,22.205,42.705,18.39,42.79,5.2333333333,763.4666666667,80.3333333333,3.6666666667,40,2.0666666667,30.0967948278,30.0967948278 -110,20,22.39,47.2333333333,21.6,43.7966666667,22.785,44.765,21.5666666667,43.49,18.89,54.3816666667,5.59,74.82,18.6,35.29,22.28,42.78,18.39,42.76,5.2,763.55,80.5,3.5,40,2.05,1.2683729292,1.2683729292 -160,20,22.4266666667,46.1966666667,21.6,43.4633333333,22.765,44.6994444444,21.6333333333,43.9,18.89,54.29,5.4633333333,74.9333333333,18.6,35.29,22.29,42.79,18.39,42.7,5.1666666667,763.6333333333,80.6666666667,3.3333333333,40,2.0333333333,4.226655385,4.226655385 -160,10,22.5,45.4566666667,21.6333333333,43.09,22.705,44.59,21.6333333333,43.2333333333,18.89,54.2088888889,5.2966666667,74.8333333333,18.6,35.29,22.28,42.8327777778,18.39,42.59,5.1333333333,763.7166666667,80.8333333333,3.1666666667,40,2.0166666667,16.6805324727,16.6805324727 -150,20,22.5333333333,44.6233333333,21.7,43.03,22.7,44.5338888889,21.6,42.6,18.89,54.1022222222,5.03,75.76,18.6,35.29,22.225,42.8205555556,18.3233333333,42.53,5.1,763.8,81,3,40,2,3.5204334534,3.5204334534 -170,20,22.6,44.0966666667,21.73,42.8633333333,22.7,44.3994444444,21.5333333333,42.1933333333,18.89,54.055,5.1233333333,76.6,18.6,35.29,22.2,42.765,18.29,42.3633333333,5.0666666667,763.9166666667,81.3333333333,3,40,2.0333333333,35.2539923857,35.2539923857 -100,20,22.6,43.6,21.79,42.6566666667,22.6888888889,44.265,21.4633333333,41.8333333333,18.89,54,5.19,77.3933333333,18.6,35.29,22.2,42.755,18.29,42.23,5.0333333333,764.0333333333,81.6666666667,3,40,2.0666666667,3.7099751993,3.7099751993 -130,20,22.6,43.1933333333,21.89,42.4666666667,22.65,44.0855555556,21.39,41.5666666667,18.89,53.9105555556,4.8666666667,78.4233333333,18.6,35.3327777778,22.2,42.79,18.29,42.06,5,764.15,82,3,40,2.1,16.2506889668,16.2506889668 -100,0,22.7,42.93,21.89,42.3266666667,22.6,43.9277777778,21.39,41.3633333333,19.0288888889,61.0683333333,4.8,79.7566666667,18.5888888889,35.45,22.275,42.8816666667,18.29,41.9333333333,4.9666666667,764.2666666667,82.3333333333,3,40,2.1333333333,17.94709604,17.94709604 -140,0,22.7,42.73,21.89,42.1333333333,22.5611111111,43.8816666667,21.3233333333,41.29,20.3038888889,84.11,4.9,82.3966666667,18.5777777778,35.4327777778,22.29,42.845,18.29,41.8333333333,4.9333333333,764.3833333333,82.6666666667,3,40,2.1666666667,19.4166308269,19.4166308269 -120,0,22.7,42.4666666667,21.89,41.86,22.5,43.745,21.29,41.2,20.2811111111,84.2266666667,4.8333333333,85.9233333333,18.5555555556,35.3816666667,22.3066666667,42.6661111111,18.29,41.5666666667,4.9,764.5,83,3,40,2.2,39.2721685581,39.2721685581 -120,0,22.7,42.2666666667,21.89,41.7,22.5,43.6938888889,21.23,41.0666666667,19.8472222222,81.3938888889,4.6566666667,87.79,18.5833333333,35.4833333333,22.3677777778,42.7,18.29,41.45,4.85,764.6,83.5,3.1666666667,40,2.2333333333,30.2174119861,30.2174119861 -140,0,22.7,42.1633333333,21.89,41.7,22.5,43.5922222222,21.2,40.9,19.765,78.8505555556,4.53,88.2633333333,18.5833333333,35.535,22.39,42.7611111111,18.2,41.4,4.8,764.7,84,3.3333333333,40,2.2666666667,38.129487657,38.129487657 -120,0,22.7,42.09,21.89,41.79,22.5,43.565,21.2,40.9,19.6611111111,76.5055555556,4.4,89.0333333333,18.5777777778,35.58,22.4083333333,42.9305555556,18.2,41.4,4.75,764.8,84.5,3.5,40,2.3,11.7930221371,11.7930221371 -130,10,22.7,42,21.89,41.79,22.5,43.5,21.2,40.79,19.5888888889,73.8911111111,4.4666666667,89.1,18.5888888889,35.59,22.4877777778,43.2111111111,18.2,41.4,4.7,764.9,85,3.6666666667,40,2.3333333333,14.2992338398,14.2992338398 -80,10,22.7,41.925,21.89,41.79,22.4938888889,43.53,21.1333333333,40.79,19.5055555556,71.81,4.59,88.4266666667,18.5666666667,35.5961111111,22.5388888889,43.6488888889,18.2,41.4,4.65,765,85.5,3.8333333333,40,2.3666666667,15.8778334502,15.8778334502 -70,0,22.7,41.9,21.89,41.79,22.4694444444,43.6077777778,21.2,41.2333333333,19.5,70.1377777778,4.59,87.1666666667,18.5777777778,35.7911111111,22.5944444444,44.3344444444,18.2,41.29,4.6,765.1,86,4,40,2.4,46.0953354137,46.0953354137 -70,10,22.6666666667,42.03,21.8566666667,41.8633333333,22.445,43.6583333333,21.175,41.875,19.4144444444,68.9188888889,4.5,85.89,18.6,36.3105555556,22.6888888889,45.3961111111,18.2,41.29,4.5,765.15,86,3.8333333333,40,2.3,22.5218411186,22.5218411186 -70,0,22.6,42.2233333333,21.79,41.73,22.39,43.8383333333,21.1666666667,42.06,19.4083333333,67.9633333333,4.5,84.8666666667,18.6,36.66,22.705,45.5733333333,18.23,42.4333333333,4.4,765.2,86,3.6666666667,40,2.2,6.297395064,6.297395064 -100,0,22.6,42.73,21.745,41.845,22.4816666667,44.045,21.1,42.09,19.39,67.0233333333,4.5,84.6,18.6,36.8738888889,22.78,45.6877777778,18.29,43.16,4.3,765.25,86,3.5,40,2.1,7.1993046091,7.1993046091 -100,0,22.5333333333,42.8633333333,21.7,41.9333333333,22.5,44.015,21.1,42.09,19.3788888889,66.2966666667,4.4333333333,84.06,18.6,37.025,22.7955555556,45.5961111111,18.23,43.6666666667,4.2,765.3,86,3.3333333333,40,2,15.5535327503,15.5535327503 -100,0,22.5,43.03,21.7,42.06,22.5166666667,44,21.0666666667,41.9666666667,19.3233333333,65.7233333333,4.3666666667,82.9933333333,18.6,37.1755555556,22.875,45.545,18.29,44.1333333333,4.1,765.35,86,3.1666666667,40,1.9,48.7644461566,48.7644461566 -70,10,22.5,43.1633333333,21.6,42.09,22.6,44,21,41.9666666667,19.3066666667,65.1477777778,4.06,81.9,18.6,37.1822222222,23.0044444444,45.5211111111,18.29,44.3266666667,4,765.4,86,3,40,1.8,11.5881636855,11.5881636855 -70,0,22.39,43.23,21.6,42.09,22.6,43.9777777778,20.9633333333,42.1266666667,19.29,64.5088888889,3.86,82.0266666667,18.6,37.3872222222,23.1,45.7511111111,18.29,44.4666666667,3.8666666667,765.3833333333,86.3333333333,2.8333333333,40,1.7166666667,1.9101418322,1.9101418322 -70,0,22.39,43.29,21.5666666667,42.2,22.6,43.9722222222,20.89,42.26,19.28,63.9355555556,3.6333333333,82.6966666667,18.6,37.5138888889,23.1,45.9377777778,18.29,44.6266666667,3.7333333333,765.3666666667,86.6666666667,2.6666666667,40,1.6333333333,28.1628493103,28.1628493103 -70,0,22.3566666667,43.4,21.5,42.1266666667,22.6,43.9388888889,20.89,42.29,19.24,63.32,3.4333333333,83.1566666667,18.6,37.59,23.1,46.0038888889,18.29,44.76,3.6,765.35,87,2.5,40,1.55,40.923147928,40.923147928 -60,0,22.29,43.3266666667,21.4633333333,42.09,22.6,44,20.89,42.29,19.225,62.8194444444,3.26,84.53,18.6,37.6205555556,23.1,46.05,18.29,44.8266666667,3.4666666667,765.3333333333,87.3333333333,2.3333333333,40,1.4666666667,1.9978172379,1.9978172379 -50,0,22.2,43.1333333333,21.39,42.03,22.6,43.9222222222,20.79,42.2,19.2,62.3261111111,3.1266666667,84.4633333333,18.6,37.7,23.1,46.08,18.29,44.9666666667,3.3333333333,765.3166666667,87.6666666667,2.1666666667,40,1.3833333333,1.5059670201,1.5059670201 -30,0,22.2,43.06,21.39,42.09,22.6,43.9666666667,20.79,42.26,19.2,61.9716666667,2.8333333333,84.3266666667,18.6,37.72,23.0944444444,45.8244444444,18.29,45.1566666667,3.2,765.3,88,2,40,1.3,44.0978918923,44.0978918923 -20,0,22.1666666667,43.03,21.3233333333,42.03,22.5944444444,43.9333333333,20.79,42.29,19.2,61.6527777778,2.6266666667,85.2666666667,18.6,37.8422222222,23.0111111111,45.9,18.29,45.3633333333,2.95,765.35,88.6666666667,2.1666666667,38.1666666667,1.1666666667,4.8111536889,4.8111536889 -50,0,22.1,43.1633333333,21.29,42,22.5111111111,44,20.73,42.29,19.2,61.4194444444,2.59,86.73,18.6,37.9,22.9327777778,46.2655555556,18.29,45.69,2.7,765.4,89.3333333333,2.3333333333,36.3333333333,1.0333333333,44.3145004567,44.3145004567 -40,0,22.0666666667,43.06,21.23,41.9333333333,22.5,43.9555555556,20.7,42.26,19.1611111111,61.1272222222,2.53,86.3966666667,18.6,37.9166666667,22.8788888889,46.6388888889,18.29,45.9633333333,2.45,765.45,90,2.5,34.5,0.9,43.997957313,43.997957313 -40,0,22,43,21.2,41.9,22.5,43.9277777778,20.7,42.2,19.1166666667,60.8633333333,2.3633333333,86.8333333333,18.6,38,22.8177777778,46.8772222222,18.29,46.1633333333,2.2,765.5,90.6666666667,2.6666666667,32.6666666667,0.7666666667,41.7938051047,41.7938051047 -50,0,21.9633333333,42.9,21.2,41.9,22.5,43.9055555556,20.7,42.23,19.1277777778,60.6222222222,2.23,86.96,18.6,38,22.79,47.0894444444,18.29,46.4333333333,1.95,765.55,91.3333333333,2.8333333333,30.8333333333,0.6333333333,27.8621864505,27.8621864505 -40,0,21.89,42.9,21.1,41.9333333333,22.5,43.9388888889,20.6333333333,42.1566666667,19.1,60.3777777778,2.145,87.545,18.6,38.025,22.715,47.4477777778,18.29,46.6333333333,1.7,765.6,92,3,29,0.5,23.3663317049,23.3663317049 -50,0,21.89,42.9,21.1,42,22.5,43.9611111111,20.6,42.1266666667,19.1,60.1122222222,2.09,88.3,18.6,38.09,22.7,47.635,18.29,46.8266666667,1.7833333333,765.65,91.8333333333,3,28.8333333333,0.5666666667,38.2056984468,38.2056984468 -40,0,21.8566666667,42.8633333333,21.1,42.03,22.5,44,20.6,42.1175,19.1,59.915,1.9633333333,87.8266666667,18.6,38.09,22.7,47.705,18.29,46.9666666667,1.8666666667,765.7,91.6666666667,3,28.6666666667,0.6333333333,43.8106642338,43.8106642338 -50,0,21.79,42.79,21.0333333333,41.9633333333,22.5111111111,43.9611111111,20.6,42.09,19.0944444444,59.7038888889,1.6333333333,86.83,18.6,38.09,22.65,47.715,18.29,47.1266666667,1.95,765.75,91.5,3,28.5,0.7,35.0976215675,35.0976215675 -50,0,21.76,42.79,21,42,22.55,43.8694444444,20.5,42.09,19.0833333333,59.53,1.36,86.43,18.6,38.09,22.6,47.775,18.29,47.2,2.0333333333,765.8,91.3333333333,3,28.3333333333,0.7666666667,34.339933272,34.339933272 -40,0,21.7,42.73,20.9175,42,22.5888888889,43.79,20.5,42.09,19.0611111111,59.3388888889,1.2,86.7333333333,18.6,38.09,22.5277777778,47.78,18.29,47.3266666667,2.1166666667,765.85,91.1666666667,3,28.1666666667,0.8333333333,31.8435200839,31.8435200839 -50,0,21.6666666667,42.6633333333,20.89,42,22.6,43.77,20.5,42.09,19,59.145,1.2,88.1333333333,18.6,38.09,22.4027777778,47.6133333333,18.3566666667,47.4,2.2,765.9,91,3,28,0.9,41.5591254015,41.5591254015 -40,0,21.6,42.59,20.8233333333,41.86,22.5388888889,43.79,20.4266666667,42.03,19,59.0294444444,1.36,89.56,18.6,38.09,22.3455555556,47.6205555556,18.39,47.5,2.1666666667,765.9,90.6666666667,3,27.1666666667,0.8166666667,18.255077512,18.255077512 -40,0,21.6,42.59,20.8233333333,41.9333333333,22.5222222222,43.79,20.4633333333,42.06,19,58.8561111111,1.5666666667,90.4333333333,18.6,38.1327777778,22.275,47.7611111111,18.39,47.56,2.1333333333,765.9,90.3333333333,3,26.3333333333,0.7333333333,28.5278489348,28.5278489348 -50,0,21.6,42.53,20.79,41.8266666667,22.5,43.79,20.39,42,19,58.6966666667,1.6,90.2633333333,18.6,38.1633333333,22.2,47.9383333333,18.3233333333,47.6266666667,2.1,765.9,90,3,25.5,0.65,31.5076121013,31.5076121013 -50,0,21.6,42.5,20.79,41.9,22.5,43.79,20.39,42,19,58.555,1.5333333333,89.8566666667,18.6,38.1633333333,22.1944444444,48.1966666667,18.39,47.76,2.0666666667,765.9,89.6666666667,3,24.6666666667,0.5666666667,30.7476300164,30.7476300164 -50,0,21.5333333333,42.5,20.76,41.9,22.5,43.79,20.39,42,19,58.465,1.3566666667,89.36,18.5944444444,38.1022222222,22.1111111111,48.3727777778,18.39,47.8266666667,2.0333333333,765.9,89.3333333333,3,23.8333333333,0.4833333333,1.8409484881,1.8409484881 -50,0,21.5,42.5,20.7,41.9,22.5,43.79,20.3566666667,41.9666666667,19,58.3266666667,1.29,89.0266666667,18.5833333333,38.145,22.1,48.515,18.39,47.9666666667,2,765.9,89,3,23,0.4,0.8642907836,0.8642907836 -40,0,21.5,42.5,20.7,41.9,22.5,43.79,20.29,41.9,18.9755555556,58.2088888889,1.2,89.2933333333,18.5833333333,38.1266666667,22.1,48.67,18.39,48,1.95,765.8666666667,89,3,24,0.35,3.4005931928,3.4005931928 -20,0,21.4633333333,42.3633333333,20.7,41.8266666667,22.5,43.79,20.29,41.9,18.9633333333,58.1116666667,1.26,89.7666666667,18.55,38.1022222222,22.05,48.7866666667,18.39,48,1.9,765.8333333333,89,3,25,0.3,14.763599576,14.763599576 -20,0,21.39,42.29,20.6,41.7,22.5,43.715,20.29,41.9,18.9572222222,57.9933333333,1.29,90.0933333333,18.5777777778,38.1022222222,22.0111111111,48.8022222222,18.39,48.09,1.85,765.8,89,3,26,0.25,6.335201906,6.335201906 -20,0,21.39,42.29,20.6,41.76,22.4816666667,43.6544444444,20.29,41.9,18.9022222222,57.8816666667,1.1725,89.3,18.55,38.09,21.9816666667,48.8816666667,18.39,48.09,1.8,765.7666666667,89,3,27,0.2,42.2357362579,42.2357362579 -40,0,21.39,42.29,20.6,41.76,22.4022222222,43.4433333333,20.29,41.9,18.89,57.7872222222,0.8666666667,88.1666666667,18.5722222222,38.09,21.89,48.9,18.39,48.09,1.75,765.7333333333,89,3,28,0.15,29.1446314543,29.1446314543 -50,0,21.3566666667,42.29,20.5333333333,41.7,22.34,43.525,20.2,41.7,18.89,57.7,0.5666666667,87.6233333333,18.5388888889,38.09,21.8844444444,48.9777777778,18.39,48.09,1.7,765.7,89,3,29,0.1,27.0165894297,27.0165894297 -60,0,21.29,42.29,20.5,41.7,22.29,43.6866666667,20.2,41.7,18.89,57.6033333333,0.4333333333,87.69,18.5277777778,38.09,21.8622222222,48.8988888889,18.39,48.09,1.7833333333,765.6166666667,89.3333333333,3,30.8333333333,0.2166666667,28.2204939751,28.2204939751 -40,0,21.29,42.29,20.5,41.7,22.245,43.735,20.2,41.7,18.89,57.4933333333,0.3,88.1333333333,18.5166666667,38.09,21.8177777778,48.8155555556,18.39,48.09,1.8666666667,765.5333333333,89.6666666667,3,32.6666666667,0.3333333333,5.5738818482,5.5738818482 -50,0,21.29,42.29,20.5,41.7,22.2,43.755,20.2,41.7,18.89,57.3683333333,0.3,88.5266666667,18.5,38.09,21.79,48.71,18.39,48.09,1.95,765.45,90,3,34.5,0.45,25.1632598229,25.1632598229 -40,0,21.23,42.23,20.5,41.7,22.2,43.79,20.1333333333,41.7,18.89,57.29,0.4333333333,89.5966666667,18.5,38.09,21.785,48.7,18.39,48.1266666667,2.0333333333,765.3666666667,90.3333333333,3,36.3333333333,0.5666666667,8.4468200454,8.4468200454 -40,0,21.2,42.09,20.4633333333,41.76,22.1944444444,43.8572222222,20.1,41.6266666667,18.8677777778,57.1844444444,0.5666666667,90.5233333333,18.5,38.09,21.71,48.6694444444,18.39,48.2,2.1166666667,765.2833333333,90.6666666667,3,38.1666666667,0.6833333333,16.5218209149,16.5218209149 -50,0,21.2,42.09,20.39,41.6725,22.1611111111,43.9,20.1,41.6266666667,18.89,57.1266666667,0.8666666667,91.5333333333,18.5,38.09,21.72,48.59,18.39,48.2,2.2,765.2,91,3,40,0.8,14.4587323419,14.4587323419 -40,0,21.1333333333,42.09,20.39,41.6633333333,22.1166666667,43.9833333333,20.1,41.59,18.8455555556,56.965,1.1333333333,92.06,18.5,38.07,21.7,48.6205555556,18.39,48.26,2.2833333333,765.1333333333,91,3.1666666667,40,0.8833333333,43.5930856154,43.5930856154 -50,0,21.1333333333,42.09,20.29,41.7,22.1,44,20.0333333333,41.53,18.8177777778,56.8561111111,1.3233333333,92.3333333333,18.5,38.09,21.6666666667,48.6272222222,18.3566666667,48.29,2.3666666667,765.0666666667,91,3.3333333333,40,0.9666666667,49.1537961178,49.1537961178 -50,0,21.1,42.09,20.29,41.7,22.1,44,20.1,41.6633333333,18.79,56.755,1.39,92.4666666667,18.5,38.07,21.6166666667,48.515,18.29,48.29,2.45,765,91,3.5,40,1.05,22.4869940081,22.4869940081 -50,0,21.1,42.09,20.29,41.6633333333,22.1,44.035,20.0333333333,41.53,18.79,56.7,1.5,92.8333333333,18.5,38.09,21.6,48.575,18.39,48.29,2.5333333333,764.9333333333,91,3.6666666667,40,1.1333333333,21.4368615649,21.4368615649 -40,0,21.0333333333,42.03,20.29,41.6633333333,22.1,44.06,20,41.53,18.79,56.6327777778,1.5666666667,92.9666666667,18.5,38.09,21.6,48.59,18.39,48.29,2.6166666667,764.8666666667,91,3.8333333333,40,1.2166666667,14.9355867412,14.9355867412 -40,0,21.0333333333,42.03,20.2,41.5,22.1222222222,44.09,20,41.59,18.79,56.59,1.73,93.16,18.5,38.09,21.5944444444,48.6083333333,18.39,48.29,2.7,764.8,91,4,40,1.3,12.9774665809,12.9774665809 -40,0,21,42,20.2,41.5,22.1,44.09,20,41.59,18.79,56.5094444444,1.8633333333,93.4333333333,18.5,38.09,21.5333333333,48.7,18.39,48.29,2.8166666667,764.6666666667,91.1666666667,4,38.1666666667,1.45,39.6675292985,39.6675292985 -40,0,21,42,20.2,41.5,22.1,44.09,19.9266666667,41.59,18.78,56.4444444444,2,93.35,18.5,38.09,21.5,48.6572222222,18.3566666667,48.26,2.9333333333,764.5333333333,91.3333333333,4,36.3333333333,1.6,0.9096582537,0.9096582537 -50,0,21,42,20.2,41.5,22.1,44.09,19.89,41.59,18.78,56.405,2.1266666667,93.5633333333,18.4938888889,38.085,21.5,48.59,18.29,48.2,3.05,764.4,91.5,4,34.5,1.75,1.7288955627,1.7288955627 -30,0,20.9266666667,42,20.1666666667,41.5,22.1,44.09,19.89,41.59,18.745,56.3022222222,2.26,93.7633333333,18.445,38.0933333333,21.4388888889,48.54,18.29,48.29,3.1666666667,764.2666666667,91.6666666667,4,32.6666666667,1.9,1.4297010493,1.4297010493 -30,0,20.89,42,20.1,41.56,22.1,44.09,19.89,41.7,18.725,56.275,2.4,93.8,18.4022222222,38.0961111111,21.4511111111,48.5744444444,18.29,48.29,3.2833333333,764.1333333333,91.8333333333,4,30.8333333333,2.05,28.4212508006,28.4212508006 -30,10,20.89,42,20.1,41.5,22.0888888889,44.08,19.89,41.7,18.74,56.14,2.4666666667,93.8666666667,18.4083333333,38.09,21.3961111111,48.51,18.3566666667,48.3633333333,3.4,764,92,4,29,2.2,44.4596750312,44.4596750312 -40,10,20.89,42.2666666667,20.1,41.56,22.0055555556,43.7688888889,19.89,41.7,18.77,56,2.53,93.9,18.4205555556,38.1205555556,21.4144444444,48.655,18.39,48.29,3.5,763.9,92,4.3333333333,30.8333333333,2.3,27.742848068,27.742848068 -60,20,20.89,42.5266666667,20.1,41.73,21.945,43.6266666667,19.89,41.8333333333,18.725,56,2.6633333333,94.0266666667,18.4083333333,38.1083333333,21.39,48.6766666667,18.39,48.23,3.6,763.8,92,4.6666666667,32.6666666667,2.4,9.8661727388,9.8661727388 -50,30,20.8566666667,42.9633333333,20.0333333333,41.79,21.8844444444,43.5494444444,19.89,42,18.7,56,2.8266666667,94.3333333333,18.4144444444,38.1144444444,21.3622222222,48.4822222222,18.39,48.1633333333,3.7,763.7,92,5,34.5,2.5,39.6215279005,39.6215279005 -50,20,20.79,43.1725,20.1,42.03,21.8011111111,43.4111111111,19.9175,42.1175,18.7,56.045,2.9666666667,94.4666666667,18.4083333333,38.1205555556,21.29,48.2872222222,18.39,48.03,3.8,763.6,92,5.3333333333,36.3333333333,2.6,47.3756466759,47.3756466759 -70,20,20.79,43.26,20.0333333333,42.03,21.79,43.3816666667,20,42.43,18.7,56.055,3.1566666667,94.7266666667,18.3961111111,38.1877777778,21.275,48.0605555556,18.39,47.9666666667,3.9,763.5,92,5.6666666667,38.1666666667,2.7,3.5620110342,3.5620110342 -60,20,20.79,43.23,20,42.1266666667,21.79,43.29,20.1,42.4666666667,18.7,56.02,3.29,94.8,18.39,38.1877777778,21.23,47.8388888889,18.39,47.8266666667,4,763.4,92,6,40,2.8,18.5519497609,18.5519497609 -60,10,20.79,43.3633333333,20,42.26,21.79,43.29,20.1,42.3266666667,18.7,56,3.5,95,18.39,38.205,21.2,47.6794444444,18.3233333333,47.79,4,763.2666666667,92.5,6,43.8333333333,2.8833333333,33.4882563562,33.4882563562 -80,0,20.79,43.4633333333,20,42.345,21.745,43.27,20.1,42.29,18.7,56,3.56,95,18.39,38.28,21.1611111111,47.535,18.3233333333,47.73,4,763.1333333333,93,6,47.6666666667,2.9666666667,0.4999178345,0.4999178345 -60,10,20.79,43.7233333333,20,42.5,21.74,43.1872222222,20.1,42.43,18.7,56,3.79,95.09,18.39,38.29,21.1,47.45,18.39,47.6633333333,4,763,93.5,6,51.5,3.05,37.494694069,37.494694069 -60,20,20.79,43.6633333333,20,42.6333333333,21.6764705882,42.8270588235,20.1,42.53,18.7,55.95,3.8633333333,95.23,18.39,38.345,21.1,47.3277777778,18.39,47.59,4,762.8666666667,94,6,55.3333333333,3.1333333333,49.2923120968,49.2923120968 -50,20,20.79,43.7233333333,19.89,42.7,21.6411764706,42.99,20.2266666667,42.7966666667,18.7,55.7672222222,4.03,95.3666666667,18.3844444444,38.11,21.0722222222,47.09,18.39,47.43,4,762.7333333333,94.5,6,59.1666666667,3.2166666667,13.6954828864,13.6954828864 -50,20,20.79,43.7233333333,19.9633333333,42.5666666667,21.6055555556,43.005,20.6633333333,42.9666666667,18.7,55.5294444444,4.165,95.5675,18.3011111111,37.845,21,46.6333333333,18.3233333333,47.29,4,762.6,95,6,63,3.3,6.9759826176,6.9759826176 -60,10,20.79,43.39,19.9633333333,42.4666666667,21.6,43,20.8566666667,42.9,18.6555555556,55.1855555556,4.2633333333,95.73,18.29,37.715,20.9694444444,46.3311111111,18.3233333333,47.1633333333,4.0833333333,762.45,95.1666666667,6.3333333333,61.8333333333,3.4,48.8202121691,48.8202121691 -170,10,20.79,43.1633333333,19.89,42.3266666667,21.5944444444,42.8483333333,20.89,42.5633333333,18.6666666667,54.9516666667,4.3333333333,95.8,18.29,37.645,20.89,46.0933333333,18.3233333333,47.03,4.1666666667,762.3,95.3333333333,6.6666666667,60.6666666667,3.5,15.3150815982,15.3150815982 -350,0,20.79,43.09,19.89,42.2,21.5333333333,42.3783333333,20.8233333333,42.0966666667,18.6277777778,54.7488888889,4.4666666667,95.9333333333,18.29,37.59,20.8788888889,45.8872222222,18.3233333333,46.76,4.25,762.15,95.5,7,59.5,3.6,28.4712056746,28.4712056746 -140,0,20.79,45.7633333333,19.89,42.3333333333,21.4327777778,42.4611111111,20.76,41.76,18.6222222222,54.6116666667,4.53,96.03,18.29,37.525,20.8566666667,45.6127777778,18.3233333333,46.5666666667,4.3333333333,762,95.6666666667,7.3333333333,58.3333333333,3.7,26.9103763625,26.9103763625 -80,0,20.8566666667,45.6966666667,19.8566666667,42.5,21.39,42.4722222222,20.6333333333,41.5666666667,18.6,54.465,4.59,96.1566666667,18.235,37.5,20.8177777778,45.3827777778,18.29,46.345,4.4166666667,761.85,95.8333333333,7.6666666667,57.1666666667,3.8,48.0729637085,48.0729637085 -50,0,20.79,44.8633333333,19.8566666667,42.6333333333,21.39,42.4333333333,20.6,41.4,18.6,54.3116666667,4.69,96.4,18.24,37.52,20.79,45.1966666667,18.29,46.1333333333,4.5,761.7,96,8,56,3.9,22.6088061114,22.6088061114 -40,0,20.79,44.6566666667,19.8566666667,42.6333333333,21.39,42.4111111111,20.5333333333,41.3266666667,18.6,54.1377777778,4.69,96.4,18.22,37.52,20.76,45.025,18.29,45.9333333333,4.6,761.6666666667,96,7.8333333333,56.1666666667,4,18.9335490111,18.9335490111 -50,0,20.79,44.4666666667,19.79,42.56,21.3733333333,42.3755555556,20.5,41.29,18.6,53.9933333333,4.8333333333,96.53,18.2,37.5,20.705,44.9327777778,18.29,45.76,4.7,761.6333333333,96,7.6666666667,56.3333333333,4.1,3.2211542246,3.2211542246 -60,10,20.79,44.4,19.79,42.5,21.29,42.3205555556,20.4266666667,41.1566666667,18.6,53.8683333333,4.9,96.6566666667,18.2,37.5,20.7,44.8022222222,18.29,45.7,4.8,761.6,96,7.5,56.5,4.2,33.5512836697,33.5512836697 -60,30,20.76,44.6566666667,19.79,42.56,21.29,42.3327777778,20.39,41.4,18.6,53.745,5.03,96.76,18.2,37.525,20.6944444444,44.7288888889,18.23,45.5,4.9,761.5666666667,96,7.3333333333,56.6666666667,4.3,3.2723552897,3.2723552897 -60,20,20.7,44.73,19.79,42.5,21.29,42.4,20.39,41.62,18.6,53.5933333333,5.09,96.9,18.2,37.59,20.6111111111,44.5572222222,18.23,45.4333333333,5,761.5333333333,96,7.1666666667,56.8333333333,4.4,10.0984453689,10.0984453689 -80,20,20.7,44.545,19.79,42.5,21.29,42.4611111111,20.4633333333,41.9666666667,18.6,53.5,5.2266666667,96.9333333333,18.1888888889,37.645,20.6,44.5,18.2,45.2,5.1,761.5,96,7,57,4.5,45.9291622508,45.9291622508 -70,20,20.7,44.53,19.79,42.4,21.29,42.525,20.5,42.1266666667,18.6,53.4205555556,5.3666666667,97.06,18.1666666667,37.715,20.5833333333,44.5,18.2,45.1266666667,5.3,761.4833333333,96,7,54.1666666667,4.7,47.8442640044,47.8442640044 -70,20,20.7,44.59,19.79,42.4,21.2955555556,42.57,20.5,42.2,18.6,53.245,5.53,97.3,18.2,37.8247368421,20.5333333333,44.5,18.2,45.06,5.5,761.4666666667,96,7,51.3333333333,4.9,11.9670816814,11.9670816814 -90,30,20.7,44.59,19.84,42.345,21.3066666667,42.59,20.5333333333,42.3266666667,18.6,53.1422222222,5.6566666667,97.3,18.2,37.9052631579,20.5,44.5,18.2,45,5.7,761.45,96,7,48.5,5.1,20.346966444,20.346966444 -60,30,20.7,44.6633333333,19.79,42.26,21.29,42.6022222222,20.6,42.4,18.6,53,5.8333333333,97.4333333333,18.1368421053,38,20.5,44.515,18.2,45,5.9,761.4333333333,96,7,45.6666666667,5.3,39.8073644028,39.8073644028 -50,20,20.7,44.8633333333,19.8566666667,42.26,21.29,42.6816666667,20.6,42.5,18.6,52.9105555556,6.0225,97.5225,18.1444444444,38.1755555556,20.4816666667,44.575,18.2,44.9333333333,6.1,761.4166666667,96,7,42.8333333333,5.5,44.0314298146,44.0314298146 -470,30,20.6333333333,44.79,19.8566666667,42.26,21.29,42.7,20.6,42.56,18.6,52.8022222222,6.2633333333,97.6566666667,18.1,38.26,20.4266666667,44.585,18.2,44.9666666667,6.3,761.4,96,7,40,5.7,47.8079584311,47.8079584311 -600,10,20.7,45.8633333333,19.8566666667,42.26,21.27,42.7511111111,20.7,42.79,18.6,52.755,6.6333333333,97.9633333333,18.1,38.4433333333,20.39,44.59,18.2,44.9,6.5333333333,761.3833333333,95.8333333333,6.6666666667,38,5.9,31.3597110449,31.3597110449 -330,10,20.7,47.73,19.8566666667,42.36,21.3972222222,43.2255555556,20.7,42.79,18.6,52.7,7.0933333333,98.1566666667,18.1,38.6388888889,20.39,44.6966666667,18.2,44.9333333333,6.7666666667,761.3666666667,95.6666666667,6.3333333333,36,6.1,10.8970401459,10.8970401459 -260,0,20.79,46.8266666667,19.8566666667,42.6933333333,21.7116666667,44.25,20.6,42.5,18.5944444444,52.755,7.4633333333,98.26,18.1555555556,38.8377777778,20.3511111111,44.845,18.2,45,7,761.35,95.5,6,34,6.3,26.2798888143,26.2798888143 -240,0,20.79,46.6933333333,19.9266666667,42.9333333333,22.1022222222,45.01,20.5333333333,42.56,18.5722222222,52.79,7.6566666667,98.4,18.1333333333,39.0377777778,20.3622222222,44.9983333333,18.2,45,7.2333333333,761.3333333333,95.3333333333,5.6666666667,32,6.5,11.9907297194,11.9907297194 -220,10,20.89,46.3633333333,20.0666666667,43.1333333333,22.4094444444,45.475,20.5,42.6566666667,18.5888888889,52.715,7.8666666667,98.4333333333,18.1777777778,39.2055555556,20.3455555556,45.1205555556,18.2,45.06,7.4666666667,761.3166666667,95.1666666667,5.3333333333,30,6.7,47.0324905589,47.0324905589 -260,10,20.9633333333,45.8233333333,20.23,43.23,22.5888888889,45.4894444444,20.5,42.8633333333,18.5777777778,52.7,8.0666666667,98.56,18.1555555556,39.4077777778,20.3288888889,45.2611111111,18.2,45.145,7.7,761.3,95,5,28,6.9,1.1568031623,1.1568031623 -300,20,21.0333333333,45.6233333333,20.3566666667,43.23,22.745,45.46,20.5,43.0966666667,18.6,52.7,8.2566666667,98.66,18.2,39.6166666667,20.29,45.4377777778,18.2,45.23,8,761.3333333333,94.1666666667,5.5,28.1666666667,7.0666666667,31.73561648,31.73561648 -70,10,21.1,45.1566666667,20.4266666667,43.26,22.9572222222,45.3438888889,20.5,43.49,18.5777777778,52.7,8.53,98.8,18.2,39.8188888889,20.29,45.5983333333,18.2,45.29,8.3,761.3666666667,93.3333333333,6,28.3333333333,7.2333333333,48.5637671431,48.5637671431 -60,20,21.1333333333,44.96,20.5,43,23.0888888889,45.0666666667,20.4633333333,43.59,18.6,52.735,8.8666666667,98.9333333333,18.2,40.0822222222,20.29,45.7905555556,18.2,45.4,8.6,761.4,92.5,6.5,28.5,7.4,5.3662268445,5.3662268445 -70,20,21.2,44.5666666667,20.5,42.8633333333,22.9983333333,44.4638888889,20.39,43.59,18.5722222222,52.745,9.2,99.06,18.2,40.3088888889,20.29,45.9661111111,18.2,45.4666666667,8.9,761.4333333333,91.6666666667,7,28.6666666667,7.5666666667,11.238128494,11.238128494 -70,30,21.23,44.3633333333,20.5,42.73,22.84,44.11,20.39,43.73,18.5222222222,52.6327777778,9.5,98.7966666667,18.2,40.5077777778,20.235,46.0722222222,18.2,45.59,9.2,761.4666666667,90.8333333333,7.5,28.8333333333,7.7333333333,7.3111370904,7.3111370904 -110,20,21.29,44.6966666667,20.6,42.59,22.775,43.9377777778,20.39,43.79,18.5,52.555,9.5,98.7966666667,18.2,40.7136842105,20.21,46.1988888889,18.2,45.6633333333,9.5,761.5,90,8,29,7.9,17.6365863183,17.6365863183 -180,20,21.29,45.4333333333,20.6,42.6633333333,22.6722222222,43.6022222222,20.39,43.845,18.5,52.555,9.5666666667,98.9633333333,18.2,40.9610526316,20.2,46.335,18.2,45.79,9.5,761.5333333333,90.1666666667,7.5,30.8333333333,7.9333333333,16.6720577981,16.6720577981 -170,20,21.365,45.37,20.6,42.73,22.5388888889,43.3511111111,20.29,44.03,18.5,52.58,9.4266666667,99.1566666667,18.2,41.1910526316,20.2,46.4761111111,18.2,45.93,9.5,761.5666666667,90.3333333333,7,32.6666666667,7.9666666667,4.3145447737,4.3145447737 -50,30,21.39,45.4666666667,20.6,42.8633333333,22.5,43.4,20.29,44.1633333333,18.5,52.6133333333,9.3,99.19,18.215,41.3616666667,20.2,46.7283333333,18.2,46.4966666667,9.5,761.6,90.5,6.5,34.5,8,48.5574530088,48.5574530088 -50,20,21.39,45.26,20.7,43.2666666667,22.4938888889,43.4,20.29,44.29,18.5,52.8105555556,9.3,99.1233333333,18.205,41.4816666667,20.2,47.1177777778,18.26,47.4966666667,9.5,761.6333333333,90.6666666667,6,36.3333333333,8.0333333333,38.547182898,38.547182898 -60,20,21.4633333333,45.4,20.87,43.57,22.4022222222,43.4,20.29,44.29,18.5,53.0616666667,9.3,99.045,18.235,41.6327777778,20.2,47.215,18.29,47.79,9.5,761.6666666667,90.8333333333,5.5,38.1666666667,8.0666666667,1.5054956428,1.5054956428 -60,20,21.6333333333,45.6633333333,21.0666666667,43.8333333333,22.4022222222,43.4488888889,20.29,44.4333333333,18.5,53.3627777778,9.33,98.9666666667,18.24,41.7288888889,20.1888888889,47.28,18.29,47.8633333333,9.5,761.7,91,5,40,8.1,47.3203760455,47.3203760455 -60,20,21.76,45.53,21.3233333333,43.9666666667,22.4022222222,43.51,20.29,44.6933333333,18.5,53.5783333333,9.4633333333,98.9666666667,18.29,41.8877777778,20.1666666667,47.29,18.29,47.9,9.6,761.7666666667,90.1666666667,5.3333333333,40,8.0666666667,23.5721919104,23.5721919104 -60,20,21.9266666667,45.4666666667,21.4633333333,43.9666666667,22.39,43.555,20.3233333333,45.23,18.55,53.8105555556,9.63,99.1233333333,18.3511111111,41.9,20.2,47.29,18.29,47.9,9.7,761.8333333333,89.3333333333,5.6666666667,40,8.0333333333,29.4969377923,29.4969377923 -70,0,22,45.3266666667,21.6,43.5633333333,22.39,43.6266666667,20.39,45.43,18.5722222222,53.8572222222,9.8233333333,99.2633333333,18.39,41.9,20.2,47.29,18.3566666667,47.9,9.8,761.9,88.5,6,40,8,49.3610120029,49.3610120029 -80,10,22.0333333333,45.33,21.6666666667,43.3633333333,22.39,43.6083333333,20.39,45.6333333333,18.5444444444,53.8205555556,10,99.3,18.39,41.9388888889,20.2,47.375,18.29,47.9,9.9,761.9666666667,87.6666666667,6.3333333333,40,7.9666666667,17.21941859,17.21941859 -90,0,22.1,45.8633333333,21.8233333333,43.4633333333,22.39,43.6883333333,20.39,45.4333333333,18.5944444444,53.9761111111,10,99.2266666667,18.39,41.9888888889,20.225,48.2133333333,18.39,47.9,10,762.0333333333,86.8333333333,6.6666666667,40,7.9333333333,33.093739755,33.093739755 -90,0,22.2,46.1933333333,21.89,43.59,22.39,43.79,20.39,45.3266666667,18.6,54.145,10,99.0266666667,18.39,41.9888888889,20.3127777778,49.1038888889,18.39,47.9,10.1,762.1,86,7,40,7.9,2.3750599823,2.3750599823 -100,0,22.26,45.86,22,43.4666666667,22.3788888889,43.79,20.39,45.3266666667,18.6,54.255,10.0666666667,98.6333333333,18.39,42,20.5044444444,49.7272222222,18.39,47.9,10.05,762.1666666667,86.1666666667,6.6666666667,40,7.8833333333,44.0498507814,44.0498507814 -90,0,22.3233333333,45.5266666667,22.0666666667,43.4666666667,22.2955555556,43.79,20.39,45.26,18.6,54.3694444444,10.1,97.8666666667,18.39,42,20.6055555556,50.2861111111,18.39,47.9,10,762.2333333333,86.3333333333,6.3333333333,40,7.8666666667,46.5990002733,46.5990002733 -100,0,22.39,45.3266666667,22.1,43.4,22.29,43.8144444444,20.39,45.2,18.6,54.4222222222,10.0333333333,97.3266666667,18.39,42,20.725,50.635,18.39,47.8266666667,9.95,762.3,86.5,6,40,7.85,47.7456872701,47.7456872701 -100,0,22.39,44.99,22.1,43.1333333333,22.29,43.8816666667,20.39,45.2666666667,18.6,54.4222222222,10,95.7933333333,18.39,42,20.8066666667,50.8638888889,18.39,47.79,9.9,762.3666666667,86.6666666667,5.6666666667,40,7.8333333333,37.7685178537,37.7685178537 -120,0,22.39,44.79,22.1333333333,42.9666666667,22.29,43.845,20.39,45.5266666667,18.6,54.3938888889,10,94.5333333333,18.39,42,20.9205555556,51.035,18.39,47.79,9.85,762.4333333333,86.8333333333,5.3333333333,40,7.8166666667,41.4277376607,41.4277376607 -120,0,22.5,44.6333333333,22.2,42.9,22.2955555556,43.715,20.39,45.73,18.6,54.3266666667,10,92.0633333333,18.39,41.9388888889,21.0388888889,50.9611111111,18.39,47.79,9.8,762.5,87,5,40,7.8,24.1828460945,24.1828460945 -120,0,22.5,44.4333333333,22.2,42.8633333333,22.3677777778,43.6816666667,20.39,45.8633333333,18.6222222222,54.3094444444,10,90.6633333333,18.39,41.9,21.1,50.7633333333,18.39,47.73,9.75,762.5833333333,87.1666666667,5,40,7.7666666667,36.2710931804,36.2710931804 -110,0,22.6,44.26,22.2,42.79,22.3788888889,43.5972222222,20.39,45.95,18.6166666667,54.245,9.9633333333,89.4566666667,18.39,41.9,21.1883333333,50.5044444444,18.39,47.7,9.7,762.6666666667,87.3333333333,5,40,7.7333333333,44.2885923781,44.2885923781 -100,0,22.6,44.095,22.2,42.7,22.3788888889,43.51,20.39,46.03,18.6055555556,54.205,9.89,88.9966666667,18.39,41.9,21.28,50.3694444444,18.3233333333,47.7,9.65,762.75,87.5,5,40,7.7,3.1215078547,3.1215078547 -100,0,22.6,44,22.2,42.7,22.3788888889,43.5,20.4633333333,46.1633333333,18.6277777778,54.225,9.89,89.43,18.39,41.9,21.3288888889,50.1672222222,18.39,47.59,9.6,762.8333333333,87.6666666667,5,40,7.6666666667,45.1472391956,45.1472391956 -80,0,22.6,43.8633333333,22.2,42.6633333333,22.39,43.4888888889,20.4266666667,46.1266666667,18.6444444444,54.235,9.8225,89.165,18.39,41.9,21.39,50.0188888889,18.39,47.59,9.55,762.9166666667,87.8333333333,5,40,7.6333333333,1.4126038295,1.4126038295 -110,0,22.6666666667,43.79,22.2225,42.59,22.39,43.4277777778,20.5,46.2,18.6555555556,54.2,9.86,88.9233333333,18.39,41.9,21.39,49.9055555556,18.3566666667,47.59,9.5,763,88,5,40,7.6,16.0981427645,16.0981427645 -90,0,22.7,43.7,22.29,42.59,22.39,43.3877777778,20.5,46.23,18.6333333333,54.1755555556,9.83,89.1,18.39,41.9,21.4205555556,49.9277777778,18.3566666667,47.53,9.35,763.1166666667,88,4.8333333333,40,7.45,6.4074688824,6.4074688824 -90,10,22.7,43.6266666667,22.3233333333,42.5,22.39,43.3694444444,20.5,46.3633333333,18.6666666667,54.23,9.89,89.7,18.39,41.9111111111,21.4572222222,49.9611111111,18.3233333333,47.5,9.2,763.2333333333,88,4.6666666667,40,7.3,5.5070956936,5.5070956936 -350,0,22.79,43.6266666667,22.39,42.4333333333,22.4083333333,43.3083333333,20.5,46.4,18.7,54.225,9.89,89.19,18.39,41.9111111111,21.4022222222,49.9333333333,18.39,47.5,9.05,763.35,88,4.5,40,7.15,25.6671119947,25.6671119947 -530,10,22.79,43.9,22.39,42.4,22.3961111111,43.3494444444,20.5,46.2666666667,18.7,54.27,9.89,89.19,18.39,41.9055555556,21.445,50.0477777778,18.29,47.5,8.9,763.4666666667,88,4.3333333333,40,7,41.6146580479,41.6146580479 -500,30,22.9266666667,51.33,22.39,42.4666666667,22.4144444444,43.735,20.5,46.7333333333,18.7,54.3138888889,9.7933333333,89.69,18.39,41.9388888889,21.4755555556,50.2205555556,18.3566666667,47.5,8.75,763.5833333333,88,4.1666666667,40,6.85,22.2854483407,22.2854483407 -100,0,23.0666666667,57.6633333333,22.5333333333,43.13,22.39,44.3405555556,20.5,48.26,18.7,54.5644444444,9.2666666667,90.83,18.39,41.8327777778,21.4938888889,50.125,18.29,47.4333333333,8.6,763.7,88,4,40,6.7,37.7955745906,37.7955745906 -110,10,23.1,53.6966666667,22.6,43.8633333333,22.4266666667,45.2227777778,20.6,48.9,18.7,54.9738888889,8.86,93.1,18.39,41.745,21.4144444444,49.7322222222,18.3566666667,47.4333333333,8.5166666667,763.8166666667,88.1666666667,3.6666666667,40,6.65,44.986476237,44.986476237 -120,20,23.1,51.1633333333,22.7,44.1633333333,22.4938888889,45.5644444444,20.6,48.4266666667,18.7,55.3227777778,8.6666666667,93.3666666667,18.39,41.5877777778,21.4694444444,49.71,18.445,47.3,8.4333333333,763.9333333333,88.3333333333,3.3333333333,40,6.6,15.4023613664,15.4023613664 -370,30,23.2,49.4266666667,22.7,44.03,22.5,45.4988888889,20.5333333333,48.4266666667,19.3305555556,73.1877777778,8.4633333333,93.4,18.39,41.4111111111,21.5,49.6327777778,18.5,47,8.35,764.05,88.5,3,40,6.55,27.8427011566,27.8427011566 -210,20,23.2,48.0933333333,22.79,43.7233333333,22.5388888889,45.3172222222,20.6666666667,48.9,19.6988888889,77.9572222222,8.39,93.4666666667,18.3961111111,41.2983333333,21.5111111111,49.6377777778,18.5,47.06,8.2666666667,764.1666666667,88.6666666667,2.6666666667,40,6.5,49.9597339425,49.9597339425 -110,20,23.2,46.96,22.79,43.59,22.6,45.0922222222,20.79,48.79,20.0416666667,81.0044444444,8.3,93.7633333333,18.4083333333,41.1844444444,21.5555555556,49.6427777778,18.39,47,8.1833333333,764.2833333333,88.8333333333,2.3333333333,40,6.45,10.1047122618,10.1047122618 -100,20,23.2,46.5,22.73,43.6633333333,22.6,44.9822222222,20.79,48.5966666667,21.7577777778,87.7016666667,8.3,93.83,18.39,41.055,21.4694444444,49.6911111111,18.39,46.9333333333,8.1,764.4,89,2,40,6.4,0.2699980745,0.2699980745 -100,20,23.2,45.99,22.73,43.53,22.5888888889,44.8022222222,20.89,48.1633333333,21.0388888889,89.8244444444,8.3,93.8966666667,18.39,40.9722222222,21.4022222222,50.3588888889,18.39,46.8633333333,7.85,764.4666666667,89.3333333333,2,38,6.2,15.2043186245,15.2043186245 -100,20,23.2,45.53,22.7,43.3333333333,22.55,44.7088888889,20.89,47.89,20.61,92.1933333333,8.3,93.6233333333,18.4144444444,40.9161111111,21.4388888889,50.8983333333,18.39,46.79,7.6,764.5333333333,89.6666666667,2,36,6,24.837670743,24.837670743 -100,20,23.2,45.1,22.6333333333,43.1266666667,22.5,44.6022222222,20.89,47.545,20.3322222222,93.2305555556,8.19,93.4,18.39,40.8022222222,21.4022222222,51.1105555556,18.39,46.76,7.35,764.6,90,2,34,5.8,1.4188581263,1.4188581263 -100,20,23.2,44.7666666667,22.6,42.9666666667,22.4938888889,44.575,21,47.3633333333,20.1222222222,93.6227777778,8.1675,93.325,18.39,40.735,21.4266666667,51.22,18.39,46.7,7.1,764.6666666667,90.3333333333,2,32,5.6,43.6301334877,43.6301334877 -100,20,23.1,44.545,22.5333333333,42.9,22.4266666667,44.4833333333,21.0666666667,47.29,19.9938888889,93.0155555556,8.0333333333,93.3666666667,18.39,40.7,21.4327777778,51.2877777778,18.39,46.6633333333,6.85,764.7333333333,90.6666666667,2,30,5.4,46.703932283,46.703932283 -110,20,23.0666666667,44.3333333333,22.4633333333,42.7233333333,22.39,44.4111111111,21.1,47.1633333333,19.9022222222,91.4561111111,7.8666666667,93.5,18.4022222222,40.735,21.4633333333,51.2822222222,18.39,46.59,6.6,764.8,91,2,28,5.2,46.543797059,46.543797059 -110,30,23,44.2,22.39,42.59,22.39,44.3877777778,21.1,47.09,19.8733333333,89.8761111111,7.66,93.3666666667,18.4022222222,40.77,21.4755555556,51.3433333333,18.39,46.5,6.4833333333,764.8166666667,92,2,27.8333333333,5.2333333333,2.3264387157,2.3264387157 -80,10,23,44.1633333333,22.34,42.545,22.39,44.3155555556,21.2,46.9666666667,19.8122222222,88.4933333333,7.4666666667,93.4633333333,18.39,40.79,21.4755555556,51.3755555556,18.39,46.5,6.3666666667,764.8333333333,93,2,27.6666666667,5.2666666667,41.7714677751,41.7714677751 -230,0,23,44.03,22.26,42.5266666667,22.34,44.2194444444,21.2,46.8266666667,19.735,87.3155555556,7.4,93.8633333333,18.39,40.775,21.5,51.4,18.39,46.5,6.25,764.85,94,2,27.5,5.3,41.7944767862,41.7944767862 -420,10,22.89,43.76,22.1333333333,42.2666666667,22.255,44.055,21.1666666667,46.0633333333,19.7,86.1744444444,7.4333333333,94.6,18.39,40.73,21.4083333333,51.2933333333,18.3233333333,46.4333333333,6.1333333333,764.8666666667,95,2,27.3333333333,5.3333333333,27.9483416467,27.9483416467 -240,0,22.89,43.6266666667,22.1,42.3266666667,22.2,44.025,21.0333333333,45.5966666667,19.6166666667,84.4866666667,7.5,94.9333333333,18.39,40.7,21.39,51.135,18.3566666667,46.4,6.0166666667,764.8833333333,96,2,27.1666666667,5.3666666667,44.0575259156,44.0575259156 -70,0,22.79,43.5,22.1,42.4,22.1611111111,44.09,20.9633333333,45.26,19.5277777778,82.3855555556,7.59,94.9666666667,18.39,40.6816666667,21.39,51.01,18.29,46.4,5.9,764.9,97,2,27,5.4,39.245866565,39.245866565 -70,0,22.79,43.5,22.1,42.5,22.1,44.1205555556,20.89,45.0666666667,19.4816666667,79.9755555556,7.59,94.9,18.39,40.565,21.39,51.04,18.29,46.29,6.05,764.95,96.5,2,27.3333333333,5.4833333333,45.2202867251,45.2202867251 -70,20,22.79,43.5,22.0333333333,42.4333333333,22.1,44.2,20.79,44.76,19.39,77.5138888889,7.6233333333,94.9966666667,18.39,40.5,21.39,51.02,18.29,46.23,6.2,765,96,2,27.6666666667,5.5666666667,35.5717402999,35.5717402999 -60,20,22.79,43.6933333333,22,42.4333333333,22.1,44.2,20.79,44.8333333333,19.39,76.9133333333,7.69,95.2633333333,18.39,40.545,21.4083333333,51.15,18.29,46.145,6.35,765.05,95.5,2,28,5.65,28.7751991418,28.7751991418 -60,20,22.7,43.8266666667,22,42.5,22.1,44.225,20.79,45,19.3622222222,76.995,7.8,95.09,18.39,40.5961111111,21.3961111111,51.3088888889,18.29,46.23,6.5,765.1,95,2,28.3333333333,5.7333333333,24.4536293554,24.4536293554 -60,30,22.7,43.9,21.89,42.59,22.0722222222,44.2366666667,20.8566666667,45.4,19.29,76.7766666667,7.8,95.03,18.4327777778,40.7227777778,21.39,51.6044444444,18.29,46.29,6.65,765.15,94.5,2,28.6666666667,5.8166666667,10.2141057374,10.2141057374 -50,20,22.7,44,21.89,42.6633333333,22.0222222222,44.145,20.89,45.6266666667,19.29,76.4016666667,7.8,95.0633333333,18.4144444444,40.72,21.39,51.8738888889,18.29,46.4333333333,6.8,765.2,94,2,29,5.9,9.5111478353,9.5111478353 -60,20,22.6333333333,43.9333333333,21.79,42.6266666667,22,44.1755555556,20.9633333333,45.7,19.29,76.0344444444,7.8,95.2633333333,18.4572222222,40.8266666667,21.39,52.065,18.29,46.56,6.8833333333,765.2,93.8333333333,2,28,5.9666666667,41.9192309259,41.9192309259 -50,20,22.6,44,21.79,42.7,22,44.1511111111,21,45.79,19.225,74.8872222222,7.8,95.5,18.445,40.8616666667,21.39,52.2427777778,18.29,46.6266666667,6.9666666667,765.2,93.6666666667,2,27,6.0333333333,44.4026952726,44.4026952726 -50,20,22.5333333333,44,21.7,42.79,22,44.2,21,45.8633333333,19.2,73.8977777778,7.8666666667,95.7,18.4572222222,40.9611111111,21.39,52.4155555556,18.29,46.76,7.05,765.2,93.5,2,26,6.1,28.3889131853,28.3889131853 -60,30,22.5,44,21.7,42.8633333333,22,44.2,21.1,46.09,19.1888888889,73.2755555556,7.9,95.995,18.4694444444,41.0072222222,21.39,52.5933333333,18.29,46.79,7.1333333333,765.2,93.3333333333,2,25,6.1666666667,18.1350238039,18.1350238039 -70,20,22.5,44.06,21.6,42.9333333333,21.9877777778,44.2,21.2,46.2,19.1888888889,72.57,7.9,96,18.4694444444,41.065,21.39,52.7,18.29,46.8633333333,7.2166666667,765.2,93.1666666667,2,24,6.2333333333,11.5557025536,11.5557025536 -60,20,22.39,44,21.6,43,21.9877777778,44.2,21.1333333333,46.26,19.1833333333,71.925,7.9,96.06,18.4816666667,41.0811111111,21.3511111111,52.7733333333,18.29,46.9,7.3,765.2,93,2,23,6.3,19.2114381236,19.2114381236 -60,20,22.39,44,21.6,43,22,44.23,21.2,46.29,19.1111111111,71.425,7.8666666667,96.1266666667,18.4755555556,41.1633333333,21.29,52.975,18.29,46.9666666667,7.25,765.2,93.6666666667,1.8333333333,27.1666666667,6.35,28.6219997448,28.6219997448 -40,10,22.39,44.06,21.5333333333,43.06,22,44.21,21.2,46.29,19.1166666667,70.9633333333,7.7266666667,95.7266666667,18.5,41.2,21.29,53.2805555556,18.29,47.09,7.2,765.2,94.3333333333,1.6666666667,31.3333333333,6.4,29.9959568423,29.9959568423 -20,0,22.29,44.23,21.5,43.23,21.9633333333,44.2,21.2,46.1633333333,19.1055555556,70.5305555556,7.5,95.3966666667,18.5,41.23,21.29,53.5444444444,18.29,47.1633333333,7.15,765.2,95,1.5,35.5,6.45,39.7227304638,39.7227304638 -20,0,22.29,44.29,21.4175,43.245,21.9327777778,44.2,21.2,46.03,19.1,70.1516666667,7.4333333333,95.6566666667,18.5,41.285,21.255,53.7977777778,18.29,47.29,7.1,765.2,95.6666666667,1.3333333333,39.6666666667,6.5,25.2293464961,25.2293464961 -20,0,22.2,44.2,21.39,43.3633333333,21.9022222222,44.2,21.1,45.9,19.1,69.8316666667,7.3,96.09,18.5,41.29,21.2,54.0172222222,18.29,47.3633333333,7.05,765.2,96.3333333333,1.1666666667,43.8333333333,6.55,27.007597778,27.007597778 -30,0,22.2,44.2,21.39,43.4,21.89,44.22,21.0333333333,45.8266666667,19.1,69.5061111111,7.2266666667,96.1566666667,18.5,41.3022222222,21.2,54.0961111111,18.29,47.53,7,765.2,97,1,48,6.6,1.2044810923,1.2044810923 -50,0,22.1666666667,44.29,21.3233333333,43.4666666667,21.84,44.145,20.9633333333,45.79,19.0388888889,69.1566666667,7.2266666667,96.6666666667,18.5,41.3572222222,21.2,54.2127777778,18.29,47.6633333333,7.05,765.1333333333,97.3333333333,1.1666666667,45,6.6833333333,38.8614584692,38.8614584692 -50,0,22.1,44.29,21.29,43.53,21.8455555556,44.2316666667,20.89,45.8633333333,19,68.8316666667,7.3666666667,97.06,18.4755555556,41.3755555556,21.1722222222,54.3083333333,18.29,47.8266666667,7.1,765.0666666667,97.6666666667,1.3333333333,42,6.7666666667,16.7467446881,16.7467446881 -50,0,22.1,44.3266666667,21.23,43.53,21.8733333333,44.275,20.8566666667,45.8633333333,19,68.5672222222,7.5,97.23,18.5,41.4,21.1333333333,54.45,18.29,47.9666666667,7.15,765,98,1.5,39,6.85,23.4239046113,23.4239046113 -40,0,22.1,44.4,21.2,43.53,21.89,44.29,20.79,45.79,19,68.35,7.5,97.1566666667,18.5,41.4166666667,21.1,54.5811111111,18.29,48.145,7.2,764.9333333333,98.3333333333,1.6666666667,36,6.9333333333,36.4915600861,36.4915600861 -40,0,22,44.29,21.2,43.59,21.9144444444,44.29,20.7,45.9,19,68.1322222222,7.4333333333,97.16,18.5,41.5,21.1,54.8627777778,18.29,48.4333333333,7.25,764.8666666667,98.6666666667,1.8333333333,33,7.0166666667,37.2359492932,37.2359492932 -40,0,22,44.3633333333,21.2,43.7,21.9816666667,44.3327777778,20.7,45.9,19,67.9222222222,7.5,97.3666666667,18.5,41.5,21.1222222222,55.1572222222,18.3566666667,48.56,7.3,764.8,99,2,30,7.1,44.5401900215,44.5401900215 -50,0,21.9633333333,44.5,21.1333333333,43.7,22.0166666667,44.4316666667,20.6666666667,45.8633333333,19,67.7405555556,7.53,97.53,18.5,41.5,21.1,55.245,18.39,48.73,7.4333333333,764.8,99,2.1666666667,32.3333333333,7.2333333333,15.0316183455,15.0316183455 -50,0,21.89,44.5,21.1,43.79,22.0444444444,44.5066666667,20.6,45.79,19,67.545,7.73,97.73,18.5,41.575,21.1,55.285,18.39,48.8633333333,7.5666666667,764.8,99,2.3333333333,34.6666666667,7.3666666667,5.0949259778,5.0949259778 -50,0,21.89,44.53,21.1,43.79,22.1,44.6327777778,20.5666666667,45.79,19,67.3938888889,7.95,98,18.5,41.59,21.1,55.235,18.39,48.9333333333,7.7,764.8,99,2.5,37,7.5,9.5344766509,9.5344766509 -50,0,21.8233333333,44.53,21.0666666667,43.9,22.1,44.6877777778,20.5,45.8633333333,18.9816666667,67.1855555556,8.1,98.09,18.5,41.59,21.1222222222,55.29,18.39,49.06,7.8333333333,764.8,99,2.6666666667,39.3333333333,7.6333333333,12.8833340132,12.8833340132 -50,0,21.79,44.53,21,43.9,22.15,44.725,20.5,45.8266666667,18.9144444444,67.0494444444,8.16,98.1566666667,18.5,41.67,21.1,55.29,18.39,49.23,7.9666666667,764.8,99,2.8333333333,41.6666666667,7.7666666667,13.6312269024,13.6312269024 -40,0,21.79,44.59,21,43.9333333333,22.2,44.77,20.5,45.925,18.9022222222,66.8833333333,8.2266666667,98.2266666667,18.5,41.79,21.1,55.235,18.39,49.3633333333,8.1,764.8,99,3,44,7.9,0.3639757517,0.3639757517 -50,0,21.79,44.6266666667,21,44,22.2,44.79,20.4266666667,45.9333333333,18.89,66.7627777778,8.36,98.3,18.5,41.8205555556,21.0722222222,55.1694444444,18.39,49.53,8.1666666667,764.75,98.8333333333,3.1666666667,45.1666666667,7.95,45.8953179186,45.8953179186 -40,0,21.79,44.7,20.945,44.09,22.2,44.79,20.39,45.9,18.89,66.5861111111,8.4266666667,98.3666666667,18.5,41.9,21.0277777778,55.1205555556,18.39,49.6633333333,8.2333333333,764.7,98.6666666667,3.3333333333,46.3333333333,8,42.0254083117,42.0254083117 -40,0,21.745,44.79,20.89,44.09,22.225,44.8205555556,20.39,45.9666666667,18.89,66.4322222222,8.5666666667,98.5,18.5,41.9,21.0388888889,55.1527777778,18.39,49.79,8.3,764.65,98.5,3.5,47.5,8.05,18.8529668143,18.8529668143 -50,0,21.7,44.79,20.89,44.1633333333,22.29,44.9,20.39,46,18.89,66.3038888889,8.69,98.5,18.5,41.9833333333,21,55.1816666667,18.39,49.8633333333,8.3666666667,764.6,98.3333333333,3.6666666667,48.6666666667,8.1,25.1019996125,25.1019996125 -40,0,21.7,44.79,20.89,44.29,22.29,44.8816666667,20.3233333333,46,18.89,66.1583333333,8.69,98.5,18.5,42.01,21,55.1633333333,18.39,49.9333333333,8.4333333333,764.55,98.1666666667,3.8333333333,49.8333333333,8.15,16.6084337397,16.6084337397 -40,0,21.7,44.9,20.84,44.2725,22.29,44.8938888889,20.29,46.09,18.89,66.03,8.8,98.5,18.5,42.085,21,55.1083333333,18.4633333333,50.06,8.5,764.5,98,4,51,8.2,39.2767613055,39.2767613055 -30,0,21.7,44.9,20.8233333333,44.3266666667,22.3066666667,44.9,20.29,46.1633333333,18.89,65.9555555556,8.8,98.5,18.5,42.09,21,55.1205555556,18.5,50.2,8.55,764.4833333333,97.8333333333,4,52.6666666667,8.2166666667,39.0812469996,39.0812469996 -20,0,21.6,44.9,20.79,44.3266666667,22.3788888889,44.9,20.29,46.2,18.8566666667,65.7205555556,8.89,98.59,18.5,42.1816666667,21,55.1388888889,18.5,50.2,8.6,764.4666666667,97.6666666667,4,54.3333333333,8.2333333333,14.3326115329,14.3326115329 -40,0,21.6,44.9666666667,20.79,44.4,22.39,44.9,20.23,46.1266666667,18.8566666667,65.5977777778,8.89,98.59,18.5,42.2,21,55.145,18.5,50.23,8.65,764.45,97.5,4,56,8.25,19.3807908567,19.3807908567 -40,0,21.6,45,20.79,44.4333333333,22.39,44.8511111111,20.2,46.09,18.8566666667,65.525,8.9266666667,98.59,18.5,42.2,21,55.09,18.5,50.29,8.7,764.4333333333,97.3333333333,4,57.6666666667,8.2666666667,29.2329349322,29.2329349322 -40,0,21.6,45,20.73,44.5,22.39,44.845,20.2,46.09,18.8011111111,65.3388888889,9,98.59,18.5,42.245,21,55.045,18.5,50.345,8.75,764.4166666667,97.1666666667,4,59.3333333333,8.2833333333,49.7075111722,49.7075111722 -40,0,21.6,45.09,20.7,44.5,22.4144444444,44.8488888889,20.2,46.09,18.8066666667,65.2616666667,9,98.59,18.5,42.29,20.9755555556,55,18.5,50.4,8.8,764.4,97,4,61,8.3,41.7867942946,41.7867942946 -50,0,21.5333333333,45.09,20.7,44.56,22.39,44.8022222222,20.2,46.1633333333,18.79,65.1733333333,9.0666666667,98.6566666667,18.5,42.29,21,54.95,18.5,50.4,8.8,764.3166666667,97,4,58,8.3,36.3427671371,36.3427671371 -50,0,21.5,45.1266666667,20.7,44.6266666667,22.39,44.7961111111,20.1,46.23,18.79,65.045,9.1,98.69,18.5,42.3572222222,20.9877777778,54.8327777778,18.5,50.4,8.8,764.2333333333,97,4,55,8.3,20.3714974923,20.3714974923 -50,0,21.5,45.2,20.7,44.7,22.39,44.8327777778,20.1666666667,46.29,18.79,64.9611111111,9.1,98.665,18.5,42.4,20.9877777778,54.79,18.5,50.4666666667,8.8,764.15,97,4,52,8.3,47.9263176327,47.9263176327 -50,0,21.5,45.23,20.7,44.7,22.39,44.8327777778,20.1,46.29,18.79,64.9,9.1,98.59,18.5,42.4,20.9816666667,54.715,18.5,50.5,8.8,764.0666666667,97,4,49,8.3,40.0982450461,40.0982450461 -40,0,21.4266666667,45.23,20.6333333333,44.6266666667,22.39,44.9222222222,20.1,46.29,18.79,64.8427777778,9.19,98.59,18.5,42.4333333333,20.89,54.7,18.5,50.5,8.8,763.9833333333,97,4,46,8.3,35.2425975259,35.2425975259 -50,0,21.4633333333,45.26,20.6,44.7,22.39,44.9,20.1,46.29,18.79,64.7144444444,9.13,98.59,18.5,42.4611111111,20.89,54.6877777778,18.5,50.59,8.8,763.9,97,4,43,8.3,37.17173615,37.17173615 -40,0,21.39,45.26,20.6,44.7,22.4327777778,44.9388888889,20.075,46.345,18.785,64.6733333333,9.19,98.59,18.5,42.4888888889,20.89,54.7127777778,18.5,50.59,8.7833333333,763.85,97.3333333333,4,40.8333333333,8.3333333333,2.0580842043,2.0580842043 -40,0,21.39,45.29,20.6,44.79,22.4022222222,44.9111111111,20.0666666667,46.3633333333,18.76,64.575,9.19,98.59,18.5,42.5,20.89,54.72,18.6,50.59,8.7666666667,763.8,97.6666666667,4,38.6666666667,8.3666666667,2.7926592855,2.7926592855 -40,0,21.39,45.29,20.6,44.79,22.4266666667,44.9705555556,20.0666666667,46.4,18.715,64.4933333333,9.1,98.59,18.5,42.525,20.89,54.78,18.6,50.59,8.75,763.75,98,4,36.5,8.4,44.8395207059,44.8395207059 -50,0,21.39,45.3266666667,20.6,44.79,22.445,44.8738888889,20,46.4,18.735,64.4222222222,9.1,98.59,18.5,42.55,20.8566666667,54.8311111111,18.5333333333,50.6266666667,8.7333333333,763.7,98.3333333333,4,34.3333333333,8.4333333333,31.0750079458,31.0750079458 -50,0,21.315,45.4,20.5333333333,44.79,22.39,44.9377777778,20,46.4,18.75,64.3166666667,9.1,98.59,18.5,42.56,20.8566666667,55.0672222222,18.6,50.7,8.7166666667,763.65,98.6666666667,4,32.1666666667,8.4666666667,35.7805456268,35.7805456268 -50,0,21.29,45.4,20.5333333333,44.9,22.3677777778,45.055,20,46.4,18.71,64.3,9.1,98.59,18.5,42.58,20.8622222222,55.1755555556,18.6,50.73,8.7,763.6,99,4,30,8.5,0.3229862661,0.3229862661 -40,10,21.29,45.5666666667,20.525,44.925,22.34,45.1144444444,20,46.4333333333,18.7,64.2938888889,9.1,98.6233333333,18.5,42.59,20.8288888889,55.2,18.6,50.79,8.7166666667,763.6,99,4,30.3333333333,8.5166666667,7.5405185577,7.5405185577 -50,20,21.29,45.7,20.5,45.06,22.255,45.0272222222,20,46.5,18.7,64.2633333333,9.1,98.6233333333,18.5,42.6572222222,20.8177777778,54.9611111111,18.6,50.7,8.7333333333,763.6,99,4,30.6666666667,8.5333333333,19.5168826147,19.5168826147 -30,10,21.29,45.9,20.5,45.1266666667,22.15,44.5944444444,19.9633333333,46.5,18.7,64.1855555556,9.1,98.6566666667,18.5,42.7,20.8011111111,54.6422222222,18.6,50.6266666667,8.75,763.6,99,4,31,8.55,35.7080938062,35.7080938062 -20,0,21.29,45.9666666667,20.4266666667,45.1266666667,22.0166666667,44.1277777778,19.9633333333,46.56,18.7,64.0972222222,9.1,98.59,18.5,42.7211111111,20.79,54.3283333333,18.6,50.5,8.7666666667,763.6,99,4,31.3333333333,8.5666666667,14.5162799861,14.5162799861 -50,0,21.29,46.2666666667,20.4633333333,45.2,21.9877777778,44.2127777778,19.9266666667,46.7,18.7,63.7655555556,9.1,98.59,18.5,42.8911111111,20.775,54.0172222222,18.6,50.4333333333,8.7833333333,763.6,99,4,31.6666666667,8.5833333333,41.8665775447,41.8665775447 -20,0,21.29,46.5266666667,20.39,45.2,21.9327777778,44.3327777778,19.9266666667,46.7,18.7,63.0638888889,9.1,98.6566666667,18.5,43.0933333333,20.71,53.6533333333,18.6,50.345,8.8,763.6,99,4,32,8.6,40.4748211615,40.4748211615 -60,10,21.29,46.59,20.39,45.29,21.9022222222,44.4,19.89,46.79,18.7,62.4677777778,9.1,98.59,18.4877777778,43.235,20.7,53.3311111111,18.6,50.26,8.8,763.6166666667,98.8333333333,4.1666666667,34.1666666667,8.5833333333,9.0933847125,9.0933847125 -50,0,21.29,46.59,20.39,45.29,21.89,44.4611111111,19.89,46.8633333333,18.7,61.9766666667,9.1,98.6566666667,18.3961111111,43.2661111111,20.6944444444,53.0255555556,18.6,50.2,8.8,763.6333333333,98.6666666667,4.3333333333,36.3333333333,8.5666666667,30.7711886941,30.7711886941 -60,0,21.29,46.4666666667,20.39,45.4,21.9022222222,44.5,19.89,46.9,18.7,61.61,9.1,98.69,18.4266666667,43.4211111111,20.6555555556,52.7316666667,18.6,50.09,8.8,763.65,98.5,4.5,38.5,8.55,4.9086035346,4.9086035346 -60,0,21.29,46.3266666667,20.39,45.4,21.945,44.5,19.89,46.9,18.7,61.2266666667,9.1,98.59,18.4022222222,43.4722222222,20.6333333333,52.5233333333,18.6,50.03,8.8,763.6666666667,98.3333333333,4.6666666667,40.6666666667,8.5333333333,13.7589782476,13.7589782476 -60,0,21.2,46.2,20.39,45.4,21.9633333333,44.5,19.89,46.9,18.6777777778,60.9555555556,9.16,98.59,18.39,43.545,20.6111111111,52.3033333333,18.6,49.9,8.8,763.6833333333,98.1666666667,4.8333333333,42.8333333333,8.5166666667,39.0072887996,39.0072887996 -50,0,21.2,46.2,20.39,45.4,21.9205555556,44.5,19.89,46.9,18.7,60.6994444444,9.19,98.59,18.39,43.5961111111,20.5944444444,52.1866666667,18.6,49.9,8.8,763.7,98,5,45,8.5,21.8771099113,21.8771099113 -40,0,21.2,46.2,20.39,45.4,21.89,44.4666666667,19.89,46.9,18.6888888889,60.4377777778,9.19,98.59,18.39,43.6877777778,20.5555555556,52.0283333333,18.6,49.76,8.8333333333,763.7,98,4.8333333333,44.3333333333,8.5333333333,11.0986140673,11.0986140673 -50,0,21.2,46.1266666667,20.3233333333,45.4,21.8066666667,44.3083333333,19.865,46.9,18.6277777778,60.13,9.19,98.59,18.39,43.755,20.5,51.8927777778,18.6,49.6266666667,8.8666666667,763.7,98,4.6666666667,43.6666666667,8.5666666667,28.6532929516,28.6532929516 -40,0,21.2,46.23,20.39,45.4,21.79,44.28,19.79,46.8266666667,18.6222222222,59.9205555556,9.2633333333,98.6566666667,18.39,43.8083333333,20.5,51.78,18.6,49.59,8.9,763.7,98,4.5,43,8.6,39.0243298723,39.0243298723 -60,0,21.2,46.29,20.39,45.4666666667,21.73,44.2861111111,19.79,46.8266666667,18.6111111111,59.7872222222,9.3,98.6566666667,18.39,43.8633333333,20.5,51.6988888889,18.6,49.53,8.9333333333,763.7,98,4.3333333333,42.3333333333,8.6333333333,7.7761215623,7.7761215623 -50,0,21.2,46.26,20.39,45.4,21.745,44.3327777778,19.79,46.8266666667,18.6,59.6377777778,9.3,98.59,18.39,43.9,20.5,51.6022222222,18.6,49.5,8.9666666667,763.7,98,4.1666666667,41.6666666667,8.6666666667,42.3564883531,42.3564883531 -50,0,21.2,46.2,20.4633333333,45.4666666667,21.7,44.2961111111,19.79,46.79,18.6222222222,59.53,9.39,98.59,18.39,43.9611111111,20.4572222222,51.5383333333,18.6,49.4333333333,9,763.7,98,4,41,8.7,12.4150905525,12.4150905525 -40,0,21.2,46.2,20.5,45.4,21.7,44.3572222222,19.79,46.79,18.6222222222,59.4327777778,9.4633333333,98.59,18.39,44,20.39,51.3877777778,18.5333333333,49.4,9.0833333333,763.6833333333,97.3333333333,4.1666666667,38.3333333333,8.6833333333,40.1049541309,40.1049541309 -40,0,21.2,46.2,20.5,45.3266666667,21.6944444444,44.3144444444,19.79,46.9333333333,18.6,59.3266666667,9.6,98.6566666667,18.39,44.015,20.39,51.2961111111,18.5333333333,49.3266666667,9.1666666667,763.6666666667,96.6666666667,4.3333333333,35.6666666667,8.6666666667,5.3495187429,5.3495187429 -50,0,21.2,46.2,20.5,45.29,21.6111111111,44.29,19.79,47,18.6,59.1722222222,9.66,98.73,18.39,44.09,20.39,51.29,18.5333333333,49.29,9.25,763.65,96,4.5,33,8.65,28.95221418,28.95221418 -20,0,21.23,46.6633333333,20.5333333333,45.2,21.6,44.3816666667,19.79,47.09,18.6,59.045,9.7266666667,98.7266666667,18.39,44.1327777778,20.3733333333,51.235,18.6,49.23,9.3333333333,763.6333333333,95.3333333333,4.6666666667,30.3333333333,8.6333333333,3.1194809242,3.1194809242 -20,10,21.29,46.4633333333,20.6,45.1266666667,21.6,44.4,19.79,47.1633333333,18.6,58.9166666667,9.8,98.7266666667,18.39,44.2,20.29,51.2,18.5,49.2,9.4166666667,763.6166666667,94.6666666667,4.8333333333,27.6666666667,8.6166666667,4.5359143405,4.5359143405 -40,10,21.29,46.3633333333,20.6333333333,45.09,21.6,44.4,19.79,47.29,18.6,58.845,9.83,98.7266666667,18.39,44.2,20.3011111111,51.1572222222,18.5,49.2,9.5,763.6,94,5,25,8.6,14.9975748151,14.9975748151 -40,0,21.29,46.23,20.7,45.09,21.6,44.4,19.79,47.29,18.6,58.775,9.9633333333,98.8,18.39,44.2,20.3011111111,51.09,18.5,49.09,9.55,763.55,93.6666666667,5,27.5,8.5833333333,32.0415076334,32.0415076334 -60,0,21.3233333333,46.1633333333,20.73,45,21.6,44.4388888889,19.79,47.4333333333,18.6,58.6694444444,10.145,98.9,18.39,44.255,20.29,51.1022222222,18.5666666667,49.09,9.6,763.5,93.3333333333,5,30,8.5666666667,24.6304532862,24.6304532862 -70,0,21.39,46.03,20.79,45,21.6,44.5,19.79,47.5,18.6,58.575,10.5333333333,99.09,18.39,44.3205555556,20.29,51.1022222222,18.5,49.09,9.65,763.45,93,5,32.5,8.55,27.7657089988,27.7657089988 -60,0,21.39,46,20.89,45,21.6055555556,44.505,19.79,47.53,18.6222222222,58.4833333333,10.7333333333,99.09,18.39,44.4055555556,20.285,51.085,18.5,49.09,9.7,763.4,92.6666666667,5,35,8.5333333333,2.9211697169,2.9211697169 -150,0,21.39,45.9333333333,20.89,44.9333333333,21.6666666667,44.545,19.79,47.59,18.6,58.3927777778,10.8,98.9333333333,18.39,44.4888888889,20.25,51.05,18.5666666667,49.09,9.75,763.35,92.3333333333,5,37.5,8.5166666667,17.1455980395,17.1455980395 -70,0,21.4266666667,46.0666666667,21,44.8633333333,21.7,44.585,19.8566666667,47.6633333333,18.6,58.29,10.8,98.8,18.3961111111,44.505,20.22,51.02,18.5333333333,49.09,9.8,763.3,92,5,40,8.5,34.002733347,34.002733347 -60,10,21.5,46.0666666667,21,44.79,21.7,44.59,19.8566666667,47.7233333333,18.6,58.275,10.7633333333,98.23,18.4266666667,44.4816666667,20.2,50.95,18.6,49.09,9.8,763.2,91.6666666667,5,38.1666666667,8.4666666667,21.7192874639,21.7192874639 -80,0,21.5,46,21.1,44.8633333333,21.7,44.59,19.89,47.8266666667,18.6,58.2,10.7633333333,98.09,18.3961111111,44.4055555556,20.2,50.8816666667,18.5666666667,49.09,9.8,763.1,91.3333333333,5,36.3333333333,8.4333333333,12.6060710405,12.6060710405 -70,0,21.5,45.9333333333,21.1666666667,44.73,21.715,44.59,19.89,47.845,18.6,58.1572222222,10.89,97.9266666667,18.4144444444,44.4222222222,20.2,50.79,18.5666666667,49.09,9.8,763,91,5,34.5,8.4,7.3214135133,7.3214135133 -70,0,21.5333333333,45.8633333333,21.2,44.6633333333,21.76,44.59,19.89,47.9,18.6222222222,58.0994444444,10.83,96.9266666667,18.4022222222,44.4111111111,20.2,50.79,18.6,49.09,9.8,762.9,90.6666666667,5,32.6666666667,8.3666666667,31.106549676,31.106549676 -70,0,21.6,45.79,21.2,44.59,21.79,44.56,19.89,47.9,18.6,58.0044444444,10.8,96.1266666667,18.4816666667,44.4833333333,20.1888888889,50.79,18.6,49.03,9.8,762.8,90.3333333333,5,30.8333333333,8.3333333333,28.9838702534,28.9838702534 -60,0,21.6,45.79,21.29,44.56,21.79,44.545,19.89,47.9,18.6,57.9111111111,10.8,95.8666666667,18.4511111111,44.4555555556,20.1833333333,50.785,18.6,49,9.8,762.7,90,5,29,8.3,27.8338804143,27.8338804143 -60,0,21.6666666667,45.79,21.29,44.5,21.8011111111,44.51,19.89,47.9,18.6,57.8572222222,10.7333333333,94.9233333333,18.4877777778,44.4888888889,20.1111111111,50.71,18.6,49,9.8,762.6,90,5.1666666667,30.8333333333,8.2833333333,1.2174422853,1.2174422853 -70,0,21.745,45.645,21.39,44.3633333333,21.8844444444,44.57,19.89,47.9,18.6388888889,57.8327777778,10.6,94.53,18.4877777778,44.4888888889,20.1333333333,50.7,18.6,49,9.8,762.5,90,5.3333333333,32.6666666667,8.2666666667,17.7094622515,17.7094622515 -40,0,21.79,45.5,21.4633333333,44.29,21.89,44.5,19.89,47.9333333333,18.6388888889,57.8277777778,10.69,94.4566666667,18.4755555556,44.4777777778,20.1111111111,50.6816666667,18.6,49,9.8,762.4,90,5.5,34.5,8.25,18.8944482012,18.8944482012 -40,0,21.8566666667,47.7666666667,21.5333333333,44.26,21.89,44.5211111111,19.89,48.06,18.6111111111,57.7222222222,10.69,93.6633333333,18.5,44.4388888889,20.1,50.6511111111,18.6,48.9666666667,9.8,762.3,90,5.6666666667,36.3333333333,8.2333333333,1.2945957598,1.2945957598 -50,0,22,47.1,21.6,44.095,21.89,44.6877777778,20,48.6266666667,18.6055555556,57.6877777778,10.5666666667,92.6333333333,18.5,44.4,20.1,50.59,18.6,48.9,9.8,762.2,90,5.8333333333,38.1666666667,8.2166666667,33.8213669951,33.8213669951 -50,0,22,46.1666666667,21.6,44,21.9083333333,44.7,20.0666666667,48.7,18.6722222222,57.6177777778,10.5,92.2266666667,18.5,44.3877777778,20.1,50.58,18.6,48.8266666667,9.8,762.1,90,6,40,8.2,2.752848214,2.752848214 -50,0,22,45.7233333333,21.7,44,22,44.7,20.1333333333,48.56,18.6333333333,57.4305555556,10.5,92.2966666667,18.5,44.3327777778,20.1,50.515,18.6,48.9666666667,9.8,762,89.8333333333,6,40,8.1833333333,2.1632358897,2.1632358897 -40,10,22,45.4633333333,21.7,43.9333333333,22,44.6327777778,20.2,48.5,18.6,57.27,10.5,92.03,18.5,44.29,20.1,50.5,18.7,49.245,9.8,761.9,89.6666666667,6,40,8.1666666667,0.2766105346,0.2766105346 -30,0,22,45.26,21.7,43.79,22,44.59,20.2,48.4,18.6222222222,57.255,10.5,91.9,18.5,44.29,20.0777777778,50.4611111111,18.7,49.29,9.8,761.8,89.5,6,40,8.15,10.3390408447,10.3390408447 -30,0,22.0666666667,45.2,21.7,43.73,22,44.575,20.2,48.3266666667,18.6444444444,57.25,10.5333333333,92.0266666667,18.5,44.29,20.0833333333,50.415,18.7,49.29,9.8,761.7,89.3333333333,6,40,8.1333333333,45.6704258337,45.6704258337 -20,0,22.1,45.09,21.73,43.7,22,44.5,20.29,48.4,18.6722222222,57.275,10.6,91.6333333333,18.5,44.28,20.0222222222,50.3144444444,18.6666666667,49.26,9.8,761.6,89.1666666667,6,40,8.1166666667,17.0548096416,17.0548096416 -30,0,22.1,45.09,21.79,43.6266666667,21.9938888889,44.5,20.29,48.3266666667,18.6888888889,57.28,10.6,90.6633333333,18.5,44.205,20.0222222222,50.2994444444,18.6666666667,49.2,9.8,761.5,89,6,40,8.1,17.9587282822,17.9587282822 -50,0,22.1,44.9666666667,21.79,43.59,21.9022222222,44.4611111111,20.29,48.26,18.6777777778,57.215,10.6,90.2633333333,18.5,44.2,20,50.22,18.6,49.06,9.8,761.4166666667,89,5.8333333333,40,8.1,43.3129791985,43.3129791985 -60,0,22.1,44.8266666667,21.79,43.53,21.9022222222,44.4944444444,20.29,48.2,18.7,57.2,10.6,90.26,18.5,44.1877777778,20,50.2,18.6,49,9.8,761.3333333333,89,5.6666666667,40,8.1,48.6795233097,48.6795233097 -60,0,22.1,44.79,21.7,43.5,21.9205555556,44.5,20.3566666667,48.1633333333,18.7,57.1033333333,10.6,90.1933333333,18.5,44.1694444444,20,50.1572222222,18.6,48.9666666667,9.8,761.25,89,5.5,40,8.1,49.0129197715,49.0129197715 -50,0,22.1,44.73,21.7,43.5,21.9633333333,44.4555555556,20.29,47.9975,18.7,57.03,10.5,90.1566666667,18.5,44.1816666667,20,50.1022222222,18.6,48.9,9.8,761.1666666667,89,5.3333333333,40,8.1,3.6356186145,3.6356186145 -60,0,22.1,44.7,21.7,43.4,22,44.5,20.29,47.8266666667,18.7,56.9944444444,10.5,90.23,18.5,44.1877777778,19.9755555556,50.09,18.6,48.9,9.8,761.0833333333,89,5.1666666667,40,8.1,23.0852953624,23.0852953624 -50,0,22.1,44.7,21.7,43.3266666667,22,44.4944444444,20.2,47.7,18.7,56.9333333333,10.5,90.3,18.5,44.2,19.945,50.09,18.6,48.8266666667,9.8,761,89,5,40,8.1,46.5408654185,46.5408654185 -50,10,22.1333333333,44.6633333333,21.79,43.29,22,44.4555555556,20.2,47.6266666667,18.7,56.9,10.5,90.4333333333,18.5,44.2,19.9022222222,50.09,18.6,48.79,9.8333333333,760.95,89.1666666667,5,40,8.15,6.5095292404,6.5095292404 -50,10,22.2,44.6633333333,21.79,43.29,22,44.4,20.1,47.59,18.7,56.845,10.5,90.4,18.5,44.2,19.9205555556,50.09,18.6,48.79,9.8666666667,760.9,89.3333333333,5,40,8.2,42.953156156,42.953156156 -50,10,22.2,44.59,21.79,43.2,22,44.4,20.1,47.59,18.7,56.79,10.5,90.4666666667,18.5,44.21,19.9083333333,50.1083333333,18.6,48.76,9.9,760.85,89.5,5,40,8.25,26.0009367601,26.0009367601 -50,0,22.2,44.59,21.79,43.2,22,44.3511111111,20.1,47.59,18.7,56.79,10.5,90.6566666667,18.5,44.23,19.9144444444,50.1205555556,18.6,48.7,9.9333333333,760.8,89.6666666667,5,40,8.3,11.2189327949,11.2189327949 -60,0,22.2,44.59,21.79,43.2,22,44.345,20.1,47.59,18.7,56.7788888889,10.5,90.4633333333,18.5,44.2,19.89,50.09,18.6,48.7,9.9666666667,760.75,89.8333333333,5,40,8.35,21.3566205348,21.3566205348 -60,0,22.2,44.56,21.79,43.2,22,44.29,20,47.5,18.7,56.5972222222,10.5,90.2966666667,18.5,44.2,19.89,50.09,18.6,48.6266666667,10,760.7,90,5,40,8.4,38.1206427468,38.1206427468 -50,0,22.2,44.5,21.79,43.1266666667,22.0666666667,44.3633333333,20,47.5,18.7,56.565,10.4266666667,89.8233333333,18.5,44.1694444444,19.89,50.09,18.6,48.59,9.9666666667,760.6333333333,89.8333333333,4.8333333333,40,8.35,29.6914152103,29.6914152103 -50,0,22.23,44.4,21.8233333333,43.09,22,44.3633333333,20.1,47.59,18.7,56.555,10.36,89.2633333333,18.5,44.09,19.89,50.09,18.6,48.59,9.9333333333,760.5666666667,89.6666666667,4.6666666667,40,8.3,35.9754685313,35.9754685313 -80,0,22.29,44.4666666667,21.89,43.09,22,44.29,20.1,47.6633333333,18.7,56.51,10.3,89.395,18.5,44.09,19.89,50.2283333333,18.6,48.59,9.9,760.5,89.5,4.5,40,8.25,14.204566821,14.204566821 -80,0,22.3233333333,44.4666666667,21.89,43,22.0666666667,44.4666666667,20.1,47.73,18.7,56.5,10.3,89.73,18.5,44.09,19.9383333333,50.6688888889,18.6,48.53,9.8666666667,760.4333333333,89.3333333333,4.3333333333,40,8.2,22.0837486093,22.0837486093 -90,0,22.39,44.4,21.9633333333,43,22.0666666667,44.4,20.1,47.8633333333,18.7,56.5,10.19,89.9633333333,18.5,44.09,20.0666666667,50.9994444444,18.6,48.53,9.8333333333,760.3666666667,89.1666666667,4.1666666667,40,8.15,37.5694175949,37.5694175949 -90,0,22.39,44.1633333333,22,42.9,22.1,44.3633333333,20.1,47.9333333333,18.7,56.5,10.19,90.2966666667,18.5,44.09,20.1883333333,51.1866666667,18.5333333333,48.5,9.8,760.3,89,4,40,8.1,46.7046170845,46.7046170845 -100,0,22.4633333333,44.09,22.0666666667,42.9,22.125,44.2225,20.1,48,18.7,56.4944444444,10.16,90.7266666667,18.5,44.09,20.28,51.3461111111,18.6,48.4333333333,9.7666666667,760.25,89.3333333333,4.1666666667,37.8333333333,8.1166666667,3.5706669441,3.5706669441 -150,0,22.5333333333,44,22.1,42.9,22.1333333333,44.1266666667,20.1,48.09,18.7,56.4666666667,10.1,91.2666666667,18.5,44.1572222222,20.3511111111,51.4888888889,18.6,48.4,9.7333333333,760.2,89.6666666667,4.3333333333,35.6666666667,8.1333333333,19.49590242,19.49590242 -540,0,22.6,44,22.1666666667,42.9,22.2,44.09,20.1666666667,48.1633333333,18.7,56.4111111111,10.0666666667,91.7266666667,18.5,44.2,20.445,51.4611111111,18.6,48.4666666667,9.7,760.15,90,4.5,33.5,8.15,6.3812717213,6.3812717213 -370,0,22.7,46.1333333333,22.29,42.9,22.2,44.1633333333,20.1333333333,48.23,18.7,56.4277777778,10.0666666667,91.9933333333,18.5,44.2,20.5833333333,51.5,18.6,48.5,9.6666666667,760.1,90.3333333333,4.6666666667,31.3333333333,8.1666666667,48.9353270503,48.9353270503 -180,0,22.7,51.2666666667,22.3566666667,43.16,22.29,45.5333333333,20.2,48.8475,18.7,56.535,10.0666666667,92.09,18.5,44.215,20.65,51.525,18.6,48.4333333333,9.6333333333,760.05,90.6666666667,4.8333333333,29.1666666667,8.1833333333,8.0585564603,8.0585564603 -150,0,22.79,52.8633333333,22.4266666667,43.7266666667,22.29,46.7333333333,20.2,50.2333333333,18.7,56.6944444444,10,92.1566666667,18.5,44.205,20.705,51.6083333333,18.6,48.4,9.6,760,91,5,27,8.2,5.7949489332,5.7949489332 -220,10,22.79,50.6633333333,22.5,44.1333333333,22.29,47.09,20.2,50.76,18.72,56.9255555556,10,92.1566666667,18.5,44.2,20.78,51.62,18.6,48.4,9.5166666667,759.95,91.1666666667,5.3333333333,26.3333333333,8.1333333333,39.3034864566,39.3034864566 -100,10,22.8233333333,49.86,22.5,44.2,22.29,47.09,20.2,50.7,18.72,57.145,9.9266666667,91.8233333333,18.5,44.2,20.8733333333,51.3394444444,18.6,48.4,9.4333333333,759.9,91.3333333333,5.6666666667,25.6666666667,8.0666666667,45.2646773774,45.2646773774 -100,10,22.89,49.5266666667,22.5666666667,44.26,22.29,46.9666666667,20.2,50.86,18.745,57.3333333333,9.89,91.5266666667,18.5166666667,44.145,20.9022222222,51.3044444444,18.6,48.4,9.35,759.85,91.5,6,25,8,29.9935051124,29.9935051124 -120,20,22.9266666667,48.6333333333,22.6,44.2,22.29,46.8266666667,20.26,51,18.75,57.4988888889,9.83,91.3333333333,18.5222222222,44.075,20.945,51.3788888889,18.6,48.4,9.2666666667,759.8,91.6666666667,6.3333333333,24.3333333333,7.9333333333,15.0068328716,15.0068328716 -100,10,23,49.8333333333,22.6,44.1266666667,22.29,46.6933333333,20.29,50.93,18.76,57.57,9.69,91.1266666667,18.5777777778,44,21.05,51.81,18.6,48.4,9.1833333333,759.75,91.8333333333,6.6666666667,23.6666666667,7.8666666667,11.3023063866,11.3023063866 -90,30,23,47.845,22.5666666667,43.7666666667,22.29,46.2266666667,20.29,50.6566666667,18.765,57.52,9.63,90.6666666667,18.55,43.9105555556,21.1,52.03,18.6,48.3633333333,9.1,759.7,92,7,23,7.8,31.92120241,31.92120241 -100,20,23,46.46,22.4266666667,43.5,22.29,45.76,20.3233333333,50.6633333333,18.765,57.3344444444,9.5,90.4,18.5333333333,43.8022222222,21.1,52.09,18.6,48.29,9.05,759.6166666667,91.6666666667,6.8333333333,23,7.7166666667,13.9512427151,13.9512427151 -110,20,22.9266666667,46,22.39,43.4,22.29,45.6266666667,20.39,50.53,18.755,57.12,9.4725,90.425,18.5,43.775,21.1277777778,52.015,18.6,48.26,9,759.5333333333,91.3333333333,6.6666666667,23,7.6333333333,23.571523698,23.571523698 -100,10,22.89,45.6333333333,22.3566666667,43.4666666667,22.29,45.5,20.5333333333,50.1933333333,18.75,56.9166666667,9.39,90.3666666667,18.5333333333,43.6816666667,21.1888888889,51.9777777778,18.6,48.2,8.95,759.45,91,6.5,23,7.55,46.1417806335,46.1417806335 -70,0,22.89,45.36,22.29,43.4666666667,22.29,45.5,20.6,49.7266666667,18.775,56.8055555556,9.2633333333,90.4966666667,18.5333333333,43.6022222222,21.25,51.9738888889,18.6,48.1633333333,8.9,759.3666666667,90.6666666667,6.3333333333,23,7.4666666667,22.351981455,22.351981455 -80,10,22.89,45.2,22.29,43.53,22.29,45.3633333333,20.6,49.3333333333,18.79,56.6672222222,9.19,90.8966666667,18.5,43.565,21.21,51.5088888889,18.6,48.09,8.85,759.2833333333,90.3333333333,6.1666666667,23,7.3833333333,8.8063349598,8.8063349598 -80,0,22.8233333333,45.0666666667,22.29,43.59,22.29,45.29,20.6,48.8,18.745,56.545,9.1,91.16,18.55,43.5,21.1111111111,51.11,18.6,48.03,8.8,759.2,90,6,23,7.3,23.2453790843,23.2453790843 -80,0,22.79,44.9666666667,22.29,43.6266666667,22.29,45.29,20.5,48.43,18.755,56.4611111111,9.1,91.2266666667,18.5277777778,43.45,21.0333333333,50.7016666667,18.6,48,8.7666666667,759.0833333333,90.1666666667,6,22.6666666667,7.2833333333,43.3568385313,43.3568385313 -70,0,22.79,44.9,22.29,43.7,22.29,45.29,20.5,48.23,18.79,56.345,9.0666666667,90.8966666667,18.5111111111,43.3816666667,20.9694444444,50.3344444444,18.6,47.9333333333,8.7333333333,758.9666666667,90.3333333333,6,22.3333333333,7.2666666667,41.031765542,41.031765542 -80,0,22.79,44.9,22.26,43.6333333333,22.29,45.245,20.39,47.8633333333,18.79,56.2166666667,9.0666666667,90.69,18.5333333333,43.29,20.9022222222,50.13,18.6,47.9,8.7,758.85,90.5,6,22,7.25,47.2963336739,47.2963336739 -60,0,22.73,44.9,22.2,43.5,22.29,45.2,20.39,47.73,18.79,56.075,9,90.9666666667,18.5277777778,43.29,20.8844444444,49.96,18.6,47.8266666667,8.6666666667,758.7333333333,90.6666666667,6,21.6666666667,7.2333333333,25.627019431,25.627019431 -80,0,22.7,44.79,22.2,43.56,22.29,45.2,20.39,47.56,18.79,55.9933333333,9,91.56,18.5666666667,43.29,20.8233333333,49.7116666667,18.6,47.79,8.6333333333,758.6166666667,90.8333333333,6,21.3333333333,7.2166666667,5.2613175125,5.2613175125 -70,0,22.7,44.79,22.1333333333,43.5,22.29,45.2,20.3233333333,47.4333333333,18.79,55.8694444444,9,91.69,18.5277777778,43.255,20.8122222222,49.5627777778,18.5333333333,47.73,8.6,758.5,91,6,21,7.2,45.6457850989,45.6457850989 -60,10,22.7,44.79,22.1,43.5,22.29,45.2,20.29,47.245,18.79,55.775,9,91.5633333333,18.5,43.2,20.77,49.3694444444,18.6,47.7,8.6666666667,758.4333333333,90.3333333333,6,24.1666666667,7.1666666667,49.4852957898,49.4852957898 -60,20,22.6333333333,44.73,22.1,43.4333333333,22.29,45.2,20.29,47.2666666667,18.79,55.7,9,90.9933333333,18.5,43.1755555556,20.73,49.365,18.6,47.7,8.7333333333,758.3666666667,89.6666666667,6,27.3333333333,7.1333333333,27.2590437788,27.2590437788 -50,0,22.6,44.6266666667,22.0666666667,43.2966666667,22.29,45.26,20.3566666667,47.7333333333,18.79,55.7,9,90.6,18.5,43.2,20.79,49.8833333333,18.6,47.7266666667,8.8,758.3,89,6,30.5,7.1,20.6115775509,20.6115775509 -50,0,22.6,44.76,21.9266666667,43.09,22.39,45.2,20.39,47.9,18.78,55.765,9,90.2633333333,18.5722222222,43.215,20.8733333333,50.6472222222,18.6666666667,48.2666666667,8.8666666667,758.2333333333,88.3333333333,6,33.6666666667,7.0666666667,28.4593861434,28.4593861434 -50,0,22.5,45.5,21.89,43.1266666667,22.39,45.2,20.39,47.9,18.735,55.8572222222,9,90.19,18.5888888889,43.26,20.9022222222,51.2633333333,18.7,48.6566666667,8.9333333333,758.1666666667,87.6666666667,6,36.8333333333,7.0333333333,46.7590180459,46.7590180459 -30,0,22.5,45.56,21.89,43.2,22.5,45.29,20.3233333333,47.9,18.71,55.95,9.0333333333,89.9333333333,18.6,43.22,20.9694444444,51.8911111111,18.7,48.8633333333,9,758.1,87,6,40,7,23.9337287378,23.9337287378 -20,0,22.5,45.3633333333,21.8566666667,43.26,22.5,45.29,20.3233333333,47.9,18.7,56.025,9.1,89.7266666667,18.6,43.255,21,52.3977777778,18.7,49,9.05,757.9666666667,86.6666666667,5.8333333333,40,6.9666666667,22.2379551153,22.2379551153 -20,0,22.4175,45.2225,21.79,43.26,22.5,45.26,20.29,47.9,18.7,56.08,9.1,89.4,18.6,43.23,21,52.8455555556,18.7,49.06,9.1,757.8333333333,86.3333333333,5.6666666667,40,6.9333333333,16.7753270012,16.7753270012 -30,0,22.39,45.1266666667,21.76,43.3266666667,22.5,45.2,20.23,47.8266666667,18.7,56.1205555556,9.16,89.1566666667,18.6,43.224,21,53.1105555556,18.7,49.1266666667,9.15,757.7,86,5.5,40,6.9,3.0984936282,3.0984936282 -40,0,22.39,45.1633333333,21.7,43.425,22.5,45.3266666667,20.2,47.79,18.7,56.1977777778,9.16,88.9633333333,18.6,43.26,21,53.3422222222,18.7,49.2,9.2,757.5666666667,85.6666666667,5.3333333333,40,6.8666666667,29.1175493854,29.1175493854 -50,0,22.3233333333,45.09,21.7,43.5,22.5,45.4666666667,20.2,47.79,18.71,56.245,9.19,88.9,18.6,43.215,20.945,53.4222222222,18.7,49.23,9.25,757.4333333333,85.3333333333,5.1666666667,40,6.8333333333,8.6207794142,8.6207794142 -60,0,22.29,45.06,21.6666666667,43.5,22.6,45.29,20.2,47.79,18.71,56.29,9.19,88.9,18.6,43.25,20.89,53.4833333333,18.7,49.29,9.3,757.3,85,5,40,6.8,41.9813121087,41.9813121087 -50,0,22.29,45,21.6,43.56,22.6,45.23,20.1333333333,47.79,18.7,56.29,9.3,88.73,18.6,43.265,20.8733333333,53.5572222222,18.76,49.3633333333,9.35,757.25,84.8333333333,5,40,6.8333333333,14.0661562793,14.0661562793 -40,0,22.2,45,21.6,43.6266666667,22.6,45.1633333333,20.1,47.7,18.7,56.29,9.36,88.3966666667,18.6,43.28,20.8011111111,53.755,18.76,49.4,9.4,757.2,84.6666666667,5,40,6.8666666667,39.6068406524,39.6068406524 -50,0,22.2,44.9333333333,21.5333333333,43.7,22.6,45.09,20.1,47.7,18.7,56.29,9.5,87.9933333333,18.6,43.29,20.79,53.9383333333,18.76,49.4666666667,9.45,757.15,84.5,5,40,6.9,36.4557916299,36.4557916299 -40,0,22.1666666667,45,21.5,43.7,22.6,45.09,20.0333333333,47.59,18.7,56.29,9.5,87.66,18.6,43.26,20.79,54.2366666667,18.79,49.5,9.5,757.1,84.3333333333,5,40,6.9333333333,42.018814187,42.018814187 -50,0,22.1,45,21.5,43.76,22.6333333333,45.2666666667,20.0333333333,47.53,18.7,56.29,9.6,87.23,18.6,43.28,20.79,54.3144444444,18.79,49.56,9.55,757.05,84.1666666667,5,40,6.9666666667,24.7404003516,24.7404003516 -40,0,22.1,45.03,21.5,43.79,22.6333333333,45.2666666667,20,47.5,18.7,56.29,9.66,86.7566666667,18.6,43.265,20.79,54.325,18.79,49.6266666667,9.6,757,84,5,40,7,47.9214718216,47.9214718216 -50,0,22.0333333333,44.9633333333,21.4266666667,43.73,22.6666666667,45.26,20,47.5,18.7,56.29,9.69,86.69,18.6,43.255,20.79,54.6,18.79,49.7,9.4666666667,756.8166666667,84.5,5,40,6.9666666667,3.841571894,3.841571894 -50,0,22,45,21.39,43.79,22.6,45.1266666667,20,47.5,18.7,56.29,9.69,86.5633333333,18.6,43.235,20.79,54.8861111111,18.79,49.73,9.3333333333,756.6333333333,85,5,40,6.9333333333,31.9734912599,31.9734912599 -50,0,22,45.06,21.39,43.79,22.6,45.09,19.9633333333,47.4333333333,18.7,56.29,9.66,86.3,18.6,43.2,20.79,55.135,18.79,49.79,9.2,756.45,85.5,5,40,6.9,42.3845183454,42.3845183454 -50,0,21.9633333333,45.1266666667,21.3233333333,43.8266666667,22.6,45.09,19.89,47.4333333333,18.7,56.29,9.5333333333,85.2333333333,18.6,43.2,20.79,55.2933333333,18.79,49.9,9.0666666667,756.2666666667,86,5,40,6.8666666667,28.0937815085,28.0937815085 -40,0,21.89,45.26,21.3233333333,43.9,22.6,45.2,19.89,47.4,18.7,56.27,9.1266666667,85.3266666667,18.6,43.2,20.78,55.4277777778,18.79,49.9666666667,8.9333333333,756.0833333333,86.5,5,40,6.8333333333,29.1935261572,29.1935261572 -40,0,21.89,45.4,21.29,43.9,22.6666666667,45.3333333333,19.89,47.4,18.7,56.245,8.9266666667,86.2,18.6,43.2,20.77,55.6222222222,18.79,50,8.8,755.9,87,5,40,6.8,46.9881590921,46.9881590921 -40,0,21.8233333333,45.4666666667,21.23,43.8266666667,22.7,45.2233333333,19.89,47.4,18.7,56.22,8.8,87.13,18.6,43.2,20.77,55.7,18.79,50,8.85,755.8833333333,86.6666666667,4.8333333333,40,6.7833333333,15.2201260789,15.2201260789 -40,0,21.79,45.53,21.2,43.8266666667,22.6333333333,45.09,19.89,47.4,18.7,56.2,8.895,88.07,18.6,43.145,20.76,55.6938888889,18.79,50,8.9,755.8666666667,86.3333333333,4.6666666667,40,6.7666666667,23.7228696584,23.7228696584 -50,0,21.79,45.59,21.2,43.9,22.5666666667,45.09,19.89,47.4,18.7,56.1816666667,9.0666666667,87.8233333333,18.6,43.1022222222,20.77,55.6022222222,18.79,50,8.95,755.85,86,4.5,40,6.75,41.4728515199,41.4728515199 -50,0,21.745,45.645,21.2,43.9,22.5,45.2233333333,19.8233333333,47.3266666667,18.7,56.1144444444,9.1,87.4233333333,18.6,43.09,20.72,55.6083333333,18.8233333333,50.1266666667,9,755.8333333333,85.6666666667,4.3333333333,40,6.7333333333,7.8337362385,7.8337362385 -50,0,21.76,45.7,21.1333333333,43.9,22.5,45.29,19.79,47.29,18.7,56.085,9.1,86.8966666667,18.6,43.09,20.735,55.725,18.8233333333,50.1266666667,9.05,755.8166666667,85.3333333333,4.1666666667,40,6.7166666667,46.5916030807,46.5916030807 -50,0,21.7,45.76,21.1,43.9,22.5666666667,45.23,19.79,47.23,18.7,56.075,9.1,86.4333333333,18.6,43.085,20.71,55.785,18.79,50.09,9.1,755.8,85,4,40,6.7,9.2978282599,9.2978282599 -40,0,21.6666666667,45.8633333333,21.1,44,22.6,45.29,19.79,47.2,18.7,56.055,9.0333333333,86.1,18.6,43.035,20.71,55.73,18.815,50.1175,9.1333333333,755.6833333333,84.6666666667,4.3333333333,40,6.6666666667,14.6411726251,14.6411726251 -50,0,21.6,45.79,21.1,44,22.6,45.29,19.79,47.2,18.7,56.02,9.0333333333,86.16,18.6,43.015,20.7,55.6033333333,18.89,50.26,9.1666666667,755.5666666667,84.3333333333,4.6666666667,40,6.6333333333,12.8195079858,12.8195079858 -40,0,21.6,45.9,21.1,44,22.6,45.2,19.76,47.1633333333,18.7,56,9.1,86.16,18.6,43,20.7,55.4988888889,18.8233333333,50.23,9.2,755.45,84,5,40,6.6,5.5269369273,5.5269369273 -40,0,21.6,45.9666666667,21.1,44,22.6,45.2,19.76,47.09,18.7,56,9.1,85.9666666667,18.6,43,20.7,55.3994444444,18.89,50.29,9.2333333333,755.3333333333,83.6666666667,5.3333333333,40,6.5666666667,3.7908564904,3.7908564904 -50,0,21.6,45.9333333333,21,43.9,22.6,45.2,19.7,47.09,18.7,55.9444444444,9.1,85.6933333333,18.6,42.9833333333,20.7,55.2922222222,18.89,50.29,9.2666666667,755.2166666667,83.3333333333,5.6666666667,40,6.5333333333,1.9263223396,1.9263223396 -30,0,21.6,45.9333333333,21,43.9,22.6,45.1175,19.7,47.09,18.7,55.9388888889,9.1,85.3,18.6,42.9333333333,20.7,55.2066666667,18.89,50.29,9.3,755.1,83,6,40,6.5,46.0965760867,46.0965760867 -30,0,21.5,45.9,20.9633333333,43.9,22.6,45.09,19.7,47.09,18.7,55.9,9.0333333333,85.3666666667,18.6,42.9,20.7,55.08,18.89,50.3633333333,9.2166666667,755.0166666667,83.1666666667,6.1666666667,40,6.4666666667,36.7205665214,36.7205665214 -30,0,21.5,45.9,20.9633333333,43.9,22.6,45.09,19.7,47.09,18.7,55.9,8.9633333333,85.5,18.6,42.9,20.7,54.9883333333,18.89,50.3633333333,9.1333333333,754.9333333333,83.3333333333,6.3333333333,40,6.4333333333,13.8147147256,13.8147147256 -40,0,21.5,46,20.89,43.9333333333,22.6,45.09,19.7,47.09,18.7,55.9,8.83,85.5,18.6,42.8694444444,20.7,54.9,18.89,50.4,9.05,754.85,83.5,6.5,40,6.4,17.5765154767,17.5765154767 -50,0,21.5,46,20.89,44,22.5666666667,45.09,19.7,47.06,18.7,55.8572222222,8.8,85.8333333333,18.6,42.79,20.7,54.8566666667,18.89,50.4,8.9666666667,754.7666666667,83.6666666667,6.6666666667,40,6.3666666667,43.4211955755,43.4211955755 -40,0,21.4633333333,45.9666666667,20.89,44,22.5666666667,45.09,19.6333333333,47,18.7,55.8022222222,8.7266666667,85.9666666667,18.6,42.79,20.7,54.9666666667,18.89,50.4,8.8833333333,754.6833333333,83.8333333333,6.8333333333,40,6.3333333333,38.5274630971,38.5274630971 -40,0,21.39,45.9,20.89,44,22.5,45.09,19.6333333333,47.03,18.7,55.79,8.6,86.1233333333,18.6,42.79,20.7,54.9611111111,18.89,50.4,8.8,754.6,84,7,40,6.3,49.5719547849,49.5719547849 -50,0,21.39,45.9,20.79,43.9,22.5,45.09,19.6333333333,46.9633333333,18.6944444444,55.775,8.5333333333,86.3966666667,18.6,42.765,20.7,54.9,18.89,50.4333333333,8.7666666667,754.55,84,6.8333333333,40,6.2666666667,48.8840342383,48.8840342383 -40,0,21.39,45.9,20.79,43.9,22.39,45.09,19.6,46.9,18.6833333333,55.73,8.5,86.85,18.6,42.72,20.7,54.8572222222,18.89,50.5,8.7333333333,754.5,84,6.6666666667,40,6.2333333333,17.1684366534,17.1684366534 -50,0,21.39,45.9,20.79,43.9,22.39,45.1633333333,19.6,46.9,18.7,55.71,8.5,86.9333333333,18.6,42.7,20.7,54.745,18.89,50.5,8.7,754.45,84,6.5,40,6.2,44.6649619611,44.6649619611 -50,0,21.39,45.9,20.79,43.9,22.39,45.29,19.6,46.9,18.65,55.645,8.5,87,18.6,42.7,20.7,54.7,18.89,50.5,8.6666666667,754.4,84,6.3333333333,40,6.1666666667,32.2174597532,32.2174597532 -50,0,21.39,45.9,20.79,43.9333333333,22.39,45.29,19.6,46.9,18.65,55.645,8.4633333333,86.9666666667,18.6,42.7,20.7,54.6205555556,18.89,50.5,8.6333333333,754.35,84,6.1666666667,40,6.1333333333,14.702867507,14.702867507 -50,0,21.365,45.9,20.79,44,22.3566666667,45.3266666667,19.6,46.9,18.6388888889,55.5933333333,8.39,86.9,18.6,42.6816666667,20.7,54.515,18.89,50.5,8.6,754.3,84,6,40,6.1,14.1273289686,14.1273289686 -50,0,21.29,45.9,20.745,44,22.3566666667,45.4,19.6,46.9,18.6,55.51,8.39,86.8333333333,18.6,42.6266666667,20.7,54.4888888889,18.9633333333,50.5,8.5833333333,754.2,84.3333333333,6,40,6.1333333333,2.7574201114,2.7574201114 -40,0,21.29,45.8633333333,20.7,44,22.39,45.4,19.6,46.79,18.6,55.5,8.39,86.9,18.6,42.6266666667,20.7,54.3994444444,18.9175,50.5225,8.5666666667,754.1,84.6666666667,6,40,6.1666666667,49.9122750713,49.9122750713 -40,0,21.29,45.79,20.7,44,22.39,45.3266666667,19.5333333333,46.79,18.6444444444,55.5344444444,8.39,87.0633333333,18.6,42.59,20.7,54.3022222222,19,50.59,8.55,754,85,6,40,6.2,48.0304859928,48.0304859928 -50,0,21.29,45.8266666667,20.7,44,22.29,45.29,19.5,46.79,18.6222222222,55.4644444444,8.39,87.33,18.6,42.59,20.7,54.2288888889,18.9266666667,50.59,8.5333333333,753.9,85.3333333333,6,40,6.2333333333,7.015642582,7.015642582 -40,0,21.29,45.8266666667,20.7,44,22.29,45.29,19.5,46.79,18.6388888889,55.45,8.3,87.53,18.6,42.59,20.6777777778,54.0822222222,18.9266666667,50.53,8.5166666667,753.8,85.6666666667,6,40,6.2666666667,47.8301166208,47.8301166208 -50,0,21.26,45.76,20.7,44,22.2,45.09,19.5,46.79,18.6277777778,55.4277777778,8.2266666667,87.3966666667,18.6,42.555,20.6555555556,53.9927777778,18.89,50.59,8.5,753.7,86,6,40,6.3,44.0349804703,44.0349804703 -50,0,21.2,45.7,20.6333333333,43.9333333333,22.2,45.1175,19.5,46.79,18.6,55.3938888889,7.83,87.7266666667,18.6,42.5,20.6722222222,53.9194444444,18.9633333333,50.59,8.3333333333,753.6666666667,86.5,6,38.1666666667,6.2166666667,11.6335272091,11.6335272091 -60,0,21.2,45.7,20.6,43.9,22.2,45.2,19.5,46.79,18.6388888889,55.345,7.5633333333,88.3333333333,18.6,42.5,20.6444444444,53.8388888889,19,50.59,8.1666666667,753.6333333333,87,6,36.3333333333,6.1333333333,40.3870619484,40.3870619484 -40,0,21.2,45.7,20.6,43.9,22.23,45.29,19.5,46.79,18.6277777778,55.345,7.2633333333,89.46,18.6,42.5,20.6222222222,53.7694444444,18.9266666667,50.59,8,753.6,87.5,6,34.5,6.05,46.3654506253,46.3654506253 -50,0,21.2,45.7,20.6,43.9,22.29,45.3633333333,19.5,46.745,18.6,55.29,7.1233333333,90.3933333333,18.6,42.5,20.6,53.7,19,50.59,7.8333333333,753.5666666667,88,6,32.6666666667,5.9666666667,41.2058112095,41.2058112095 -40,0,21.2,45.7,20.6,43.9,22.29,45.29,19.5,46.7,18.6,55.27,6.9666666667,91.1,18.6,42.4888888889,20.6,53.7,18.9266666667,50.59,7.6666666667,753.5333333333,88.5,6,30.8333333333,5.8833333333,42.6398589741,42.6398589741 -40,0,21.1333333333,45.7,20.5666666667,43.9,22.29,45.3633333333,19.4266666667,46.6266666667,18.6,55.29,6.9,91.7666666667,18.6,42.4277777778,20.6,53.6877777778,19,50.59,7.5,753.5,89,6,29,5.8,42.3621592927,42.3621592927 -40,0,21.2,45.7,20.5,43.9,22.29,45.4,19.39,46.59,18.6,55.29,7,92.6,18.6,42.4,20.5722222222,53.6083333333,19,50.59,7.6166666667,753.5,88.5,6,30.8333333333,5.8166666667,39.3996056519,39.3996056519 -40,0,21.1,45.7,20.5,43.9,22.29,45.4,19.39,46.59,18.6,55.255,7.2266666667,93.1233333333,18.6,42.4,20.5,53.6572222222,19,50.59,7.7333333333,753.5,88,6,32.6666666667,5.8333333333,36.5026791231,36.5026791231 -50,0,21.1,45.6266666667,20.5,43.9,22.29,45.4,19.39,46.59,18.6,55.21,7.3666666667,93.1233333333,18.6,42.4,20.5,53.7,19,50.6633333333,7.85,753.5,87.5,6,34.5,5.85,14.340415725,14.340415725 -50,0,21.1,45.7,20.5,43.9,22.23,45.3266666667,19.39,46.59,18.6,55.2,7.6233333333,92.9666666667,18.6,42.4,20.5,53.755,19,50.6633333333,7.9666666667,753.5,87,6,36.3333333333,5.8666666667,36.4234645502,36.4234645502 -50,0,21.1,45.7,20.5,43.9,22.29,45.4,19.39,46.59,18.6,55.2,7.83,92.6933333333,18.6,42.4,20.5277777778,53.845,19,50.6633333333,8.0833333333,753.5,86.5,6,38.1666666667,5.8833333333,27.3518902366,27.3518902366 -50,0,21,45.59,20.5,44,22.29,45.4,19.39,46.59,18.6,55.145,8.0633333333,91.7666666667,18.6,42.4,20.5333333333,53.9822222222,19,50.7,8.2,753.5,86,6,40,5.9,9.2978792265,9.2978792265 -60,10,21,45.59,20.4266666667,43.9333333333,22.29,45.3633333333,19.39,46.59,18.6,55.085,8.2633333333,91.0333333333,18.6,42.345,20.6,54.1327777778,19,50.7,8.25,753.5166666667,85.6666666667,6.1666666667,40,5.9,17.6563178771,17.6563178771 -20,0,21,45.79,20.4266666667,43.9,22.23,45.1566666667,19.39,46.59,18.6,54.96,8.39,90.1666666667,18.55,42.2088888889,20.6,53.9727777778,19,50.6633333333,8.3,753.5333333333,85.3333333333,6.3333333333,40,5.9,33.7189165992,33.7189165992 -20,0,21.1,46,20.4175,43.8175,22.1666666667,44.9666666667,19.39,46.5,18.6111111111,54.7672222222,8.39,89.3,18.5111111111,42.1022222222,20.5777777778,53.5822222222,19,50.5675,8.35,753.55,85,6.5,40,5.9,41.0349321319,41.0349321319 -30,0,21.0333333333,46,20.39,43.8633333333,22.1,44.8266666667,19.39,46.4333333333,18.6111111111,54.6266666667,8.5,88.3266666667,18.5,42.0094444444,20.5166666667,53.23,19,50.4333333333,8.4,753.5666666667,84.6666666667,6.6666666667,40,5.9,17.6968609798,17.6968609798 -40,10,21.1,45.9,20.39,43.79,22,44.56,19.39,46.29,18.6,54.4761111111,8.5,87.3933333333,18.5,41.9111111111,20.5,52.96,19,50.0633333333,8.45,753.5833333333,84.3333333333,6.8333333333,40,5.9,20.7576718763,20.7576718763 -50,20,21.1,45.7666666667,20.39,43.79,21.9266666667,44.5,19.39,46.3633333333,18.6,54.3694444444,8.6,86.1,18.5,41.8033333333,20.5,52.8277777778,19,49.5966666667,8.5,753.6,84,7,40,5.9,49.8872815282,49.8872815282 -60,0,21,45.73,20.39,43.79,21.89,44.59,19.3566666667,46.5,18.6111111111,54.2188888889,8.66,85.3666666667,18.5,41.73,20.5,52.6794444444,19,49.4666666667,8.55,753.4666666667,83.8333333333,6.8333333333,40,5.9166666667,43.4165964602,43.4165964602 -60,0,21,45.73,20.39,43.73,21.89,44.59,19.29,46.4333333333,18.6111111111,54.0972222222,8.7266666667,84.6666666667,18.5,41.6083333333,20.5,52.4922222222,19,49.2666666667,8.6,753.3333333333,83.6666666667,6.6666666667,40,5.9333333333,38.4017885546,38.4017885546 -60,0,21,45.49,20.39,43.7,21.945,44.5,19.39,46.9266666667,18.6,53.9933333333,8.8,84.0666666667,18.5,41.575,20.5,52.2772222222,18.9633333333,48.9666666667,8.65,753.2,83.5,6.5,40,5.95,25.3266810323,25.3266810323 -60,10,21,45.23,20.39,43.76,21.89,44.4,19.39,47.26,18.6,53.8694444444,8.9266666667,83.5933333333,18.5,41.53,20.5,52.1816666667,18.89,48.8266666667,8.7,753.0666666667,83.3333333333,6.3333333333,40,5.9666666667,39.9845627602,39.9845627602 -40,0,21,45.3633333333,20.29,43.7,21.89,44.4,19.8,47.45,18.6222222222,53.7994444444,9,83.4,18.5,41.5,20.5,52.065,18.89,48.56,8.75,752.9333333333,83.1666666667,6.1666666667,40,5.9833333333,6.3235513517,6.3235513517 -50,0,21,45.23,20.29,43.7,21.79,43.9,20.2,46.8333333333,18.6166666667,53.6633333333,9.1666666667,83.0966666667,18.5,41.4388888889,20.5,52,18.89,48.5,8.8,752.8,83,6,40,6,0.661059597,0.661059597 -40,0,21,45.1633333333,20.29,43.6633333333,21.79,43.8266666667,20.1333333333,46.36,18.6055555556,53.5211111111,9.395,81.4925,18.5,41.4,20.5,52.0088888889,18.89,48.3633333333,8.9833333333,752.6833333333,82.1666666667,6.5,40,6.0333333333,42.8866249509,42.8866249509 -50,0,21,45.2233333333,20.29,43.59,21.7,43.73,20.0666666667,46.1333333333,18.8538888889,61.9738888889,9.6266666667,80.2333333333,18.5,41.4,20.4938888889,51.4966666667,18.89,48.23,9.1666666667,752.5666666667,81.3333333333,7,40,6.0666666667,4.6088827541,4.6088827541 -60,0,21,45.1633333333,20.3233333333,43.59,21.7,43.8633333333,20,46,21.6611111111,87.4372222222,9.83,79.13,18.5,41.4,20.4266666667,50.9716666667,18.89,48.1633333333,9.35,752.45,80.5,7.5,40,6.1,31.3605569536,31.3605569536 -60,0,21,45.09,20.3233333333,43.6633333333,21.7,43.79,20,46.03,22.5327777778,85.0311111111,10.03,78.4633333333,18.5,41.4,20.39,51.0183333333,18.89,48.03,9.5333333333,752.3333333333,79.6666666667,8,40,6.1333333333,8.2184291212,8.2184291212 -70,0,21,45.09,20.3233333333,43.7,21.7,43.79,20,46.1633333333,21.6244444444,89.9588888889,10.4,76.7333333333,18.5,41.4,20.445,51.68,18.89,47.8633333333,9.7166666667,752.2166666667,78.8333333333,8.5,40,6.1666666667,12.8149609198,12.8149609198 -70,0,21,45.09,20.39,43.7,21.7,43.79,19.89,46.29,21.12,92.6766666667,10.66,75.1933333333,18.5,41.345,20.5,52.1622222222,18.89,47.79,9.9,752.1,78,9,40,6.2,13.9288190287,13.9288190287 -70,0,21,45.06,20.39,43.7,21.7,43.79,19.89,46.3633333333,20.8144444444,94.0505555556,10.83,73.3333333333,18.5,41.3022222222,20.5277777778,52.2,18.89,47.79,9.9666666667,751.95,77.6666666667,9.1666666667,40,6.2,10.8938567922,10.8938567922 -90,0,21,45,20.39,43.7,21.6666666667,43.76,19.89,46.4,20.5833333333,94.9133333333,11.03,72.7933333333,18.5,41.29,20.6388888889,52.1572222222,18.89,47.73,10.0333333333,751.8,77.3333333333,9.3333333333,40,6.2,14.2506569275,14.2506569275 -80,0,21,44.95,20.39,43.59,21.6,43.7,19.89,46.4666666667,20.4272222222,95.3883333333,11.2266666667,72.2266666667,18.5277777778,41.29,20.745,52.045,18.89,47.7,10.1,751.65,77,9.5,40,6.2,8.5039541591,8.5039541591 -80,0,21,44.9333333333,20.39,43.59,21.6,43.59,19.89,46.53,20.2561111111,95.9538888889,11.36,72.1,18.6,41.3144444444,20.8794444444,52.02,18.89,47.6725,10.1666666667,751.5,76.6666666667,9.6666666667,40,6.2,37.0047929115,37.0047929115 -70,0,21,45.2666666667,20.39,43.6633333333,21.6,43.59,19.89,46.59,20.0494444444,96.3216666667,11.3,71.7266666667,18.6,41.29,20.9877777778,51.95,18.89,47.53,10.2333333333,751.35,76.3333333333,9.8333333333,40,6.2,24.5051610633,24.5051610633 -60,0,21,45.4,20.39,43.7,21.6,43.6266666667,19.89,46.6266666667,19.8522222222,95.6088888889,11.2266666667,71.8666666667,18.6,41.29,21.0888888889,51.9833333333,18.89,47.4666666667,10.3,751.2,76,10,40,6.2,20.3104636166,20.3104636166 -70,10,21,45.4666666667,20.39,43.7,21.6,43.7,19.89,46.8333333333,19.715,92.8761111111,11.19,71.3666666667,18.6,41.29,21.1988888889,52.025,18.89,47.3266666667,10.3833333333,751.0166666667,75.5,10.1666666667,40,6.1833333333,44.2577471142,44.2577471142 -70,0,21,45.59,20.39,43.7,21.5,43.7,19.8233333333,46.86,19.6722222222,88.1105555556,11.13,70.7666666667,18.6,41.29,21.285,52.1755555556,18.89,47.4,10.4666666667,750.8333333333,75,10.3333333333,40,6.1666666667,19.1315509146,19.1315509146 -70,0,21,45.53,20.39,43.7,21.5,43.5,19.8233333333,46.8,19.6,83.23,11.13,70.5333333333,18.6,41.29,21.29,51.415,18.89,47.3266666667,10.55,750.65,74.5,10.5,40,6.15,38.1336087943,38.1336087943 -50,0,21,45.3633333333,20.39,43.76,21.39,43.545,19.79,46.7233333333,19.5666666667,80.485,11.19,70.4666666667,18.6,41.29,21.29,50.6822222222,18.89,47.29,10.6333333333,750.4666666667,74,10.6666666667,40,6.1333333333,44.1445408273,44.1445408273 -50,0,20.9266666667,45.29,20.39,43.7,21.39,43.6266666667,19.79,46.53,19.5388888889,77.9511111111,11.2566666667,69.8,18.6,41.245,21.265,50.2555555556,18.89,47.29,10.7166666667,750.2833333333,73.5,10.8333333333,40,6.1166666667,16.5737857809,16.5737857809 -50,0,20.89,45.26,20.3566666667,43.56,21.4633333333,43.76,19.79,46.345,19.4805555556,72.135,11.53,68.6666666667,18.6,41.1938888889,21.2,49.7666666667,18.89,47.2,10.8,750.1,73,11,40,6.1,0.8737413562,0.8737413562 -50,10,20.89,45.1266666667,20.29,43.5,21.5,43.79,19.76,46.06,19.3511111111,67.5844444444,11.745,67.65,18.6,41.1022222222,21.15,49.4294444444,18.89,47.2,10.7666666667,749.95,73,10.8333333333,40,6.0833333333,39.0512684942,39.0512684942 -60,0,20.89,45.06,20.3233333333,43.4,21.5,43.8633333333,19.7,45.9333333333,19.29,64.275,11.7633333333,66.1966666667,18.6,41.09,21.1,49.1272222222,18.89,47.2,10.7333333333,749.8,73,10.6666666667,40,6.0666666667,23.5395430354,23.5395430354 -60,0,20.89,45,20.3233333333,43.4,21.5,43.9333333333,19.7,45.9,19.26,61.735,11.63,66.53,18.6,41.045,21.0888888889,48.8461111111,18.89,47.2,10.7,749.65,73,10.5,40,6.05,2.5167245069,2.5167245069 -80,0,20.89,44.9333333333,20.29,43.3633333333,21.5,44,19.7,45.9,19.24,59.8427777778,11.69,66.8633333333,18.6833333333,41.075,21.0666666667,48.6127777778,18.89,47.09,10.6666666667,749.5,73,10.3333333333,40,6.0333333333,40.3020997182,40.3020997182 -70,0,20.89,44.9333333333,20.3566666667,43.29,21.5,44.06,19.7,45.9,19.285,58.6305555556,11.69,66.1966666667,18.7,41.065,21.1,48.46,18.89,47.09,10.6333333333,749.35,73,10.1666666667,40,6.0166666667,37.4941007933,37.4941007933 -70,0,20.89,44.9,20.3233333333,43.29,21.5,44,19.7,45.9,19.26,57.5122222222,11.6,66.2,18.7,40.9944444444,21.0166666667,48.215,18.89,47.09,10.6,749.2,73,10,40,6,42.9373567342,42.9373567342 -70,0,20.89,44.9,20.39,43.29,21.5,44.09,19.7,45.9,19.285,56.6466666667,11.6,66.7266666667,18.7,40.9333333333,21,48.065,18.89,47.03,10.6666666667,749.0333333333,72.8333333333,9.6666666667,40,6,45.7904607523,45.7904607523 -60,0,20.8233333333,44.79,20.3233333333,43.26,21.4266666667,44.03,19.7,45.9,19.29,55.8916666667,11.5666666667,67.09,18.715,40.9111111111,21,47.9205555556,18.89,46.9666666667,10.7333333333,748.8666666667,72.6666666667,9.3333333333,40,6,20.92265049,20.92265049 -190,0,20.89,44.8633333333,20.39,43.2,21.39,44,19.7,45.8633333333,19.29,55.235,11.5666666667,66.8966666667,18.79,40.9111111111,21,47.79,18.89,46.9666666667,10.8,748.7,72.5,9,40,6,42.4055862008,42.4055862008 -340,0,20.89,45.03,20.39,43.2,21.39,43.9333333333,19.7,45.79,19.3066666667,54.575,11.69,66.4933333333,18.7955555556,40.8388888889,21,47.6427777778,18.89,47.03,10.8666666667,748.5333333333,72.3333333333,8.6666666667,40,6,16.6142224567,16.6142224567 -360,0,20.9175,45.865,20.39,43.2,21.39,43.79,19.7,45.8266666667,19.3344444444,54.0977777778,11.69,66.56,18.8233333333,40.8166666667,21,47.46,18.89,47.09,10.9333333333,748.3666666667,72.1666666667,8.3333333333,40,6,7.274659758,7.274659758 -140,0,21,48.79,20.445,43.85,21.39,43.79,19.7,45.9,19.39,54.145,11.5666666667,66.5633333333,18.8455555556,40.8105555556,21,47.3511111111,18.89,47.03,11,748.2,72,8,40,6,21.3851777371,21.3851777371 -70,0,21.1,50.99,20.5,45.7566666667,21.39,44.0666666667,19.7,45.9633333333,19.39,54.5933333333,11.4266666667,66.8966666667,18.8233333333,40.74,21,47.32,18.89,47,10.9333333333,748.0833333333,72.5,7.8333333333,40,6.05,14.4880962907,14.4880962907 -160,0,21.1,50.8633333333,20.5,46.09,21.4633333333,44.46,19.7,46.2233333333,19.39,54.9444444444,11.39,66.7266666667,18.8788888889,40.78,21,47.1327777778,18.89,46.9333333333,10.8666666667,747.9666666667,73,7.6666666667,40,6.1,16.6602793499,16.6602793499 -420,0,21.1,49.2566666667,20.4633333333,45.66,21.5,44.6633333333,19.7,46.59,19.39,54.6483333333,11.39,66.5333333333,18.89,40.725,20.9755555556,47.045,18.89,46.9333333333,10.8,747.85,73.5,7.5,40,6.15,19.462207274,19.462207274 -230,0,21.1,47.9966666667,20.39,45.3266666667,21.4266666667,44.39,19.7,46.4633333333,19.39,54.1738888889,11.39,65.9333333333,18.89,40.6327777778,20.9327777778,47,18.89,46.9333333333,10.7333333333,747.7333333333,74,7.3333333333,40,6.2,16.7780323303,16.7780323303 -440,0,21.1,47.0333333333,20.3566666667,44.99,21.39,44.345,19.6333333333,46.29,19.39,53.4755555556,11.33,66,18.89,40.59,20.89,46.95,18.89,46.8633333333,10.6666666667,747.6166666667,74.5,7.1666666667,40,6.25,5.4514515097,5.4514515097 -240,0,21.1666666667,46.76,20.29,44.73,21.39,44.1633333333,19.6333333333,46.03,19.39,52.8027777778,11.1266666667,66.2266666667,18.89,40.555,20.89,46.8938888889,18.89,46.73,10.6,747.5,75,7,40,6.3,4.3948477949,4.3948477949 -460,0,21.1333333333,46.8633333333,20.29,44.73,21.39,44.03,19.6,45.745,19.4205555556,52.4805555556,10.895,66.9225,18.89,40.45,20.9205555556,47.345,18.89,46.7,10.5833333333,747.3833333333,74.8333333333,7,40,6.2666666667,45.2242860454,45.2242860454 -90,0,21.26,46.53,20.29,44.79,21.4266666667,44.09,19.6,45.79,19.4083333333,52.9466666667,10.6,68.3233333333,18.8066666667,40.4,21,47.2472222222,18.8233333333,46.6266666667,10.5666666667,747.2666666667,74.6666666667,7,40,6.2333333333,21.1036132299,21.1036132299 -240,0,21.5,45.8333333333,20.39,44.79,21.5,44.09,19.6,45.79,19.39,53.9244444444,10.3233333333,69.86,18.8288888889,40.3877777778,21,47.0572222222,18.89,46.6633333333,10.55,747.15,74.5,7,40,6.2,1.5448393882,1.5448393882 -250,0,21.5,45.7,20.39,44.79,21.5,44.09,19.6,45.8266666667,19.3511111111,54.6138888889,10.19,70.9266666667,18.8511111111,40.3877777778,20.9144444444,46.9105555556,18.8233333333,46.53,10.5333333333,747.0333333333,74.3333333333,7,40,6.1666666667,29.6276296373,29.6276296373 -90,0,21.39,45.56,20.4266666667,44.73,21.5,44.1633333333,19.6,45.9,19.3011111111,55.1405555556,9.9633333333,72.2666666667,18.8233333333,40.4,20.9083333333,46.8022222222,18.89,46.56,10.5166666667,746.9166666667,74.1666666667,7,40,6.1333333333,22.0188036328,22.0188036328 -80,0,21.4633333333,45.5,20.5,44.73,21.5,44.2,19.6,46,19.29,55.4627777778,9.89,72.8666666667,18.79,40.4,20.89,46.7088888889,18.8233333333,46.4333333333,10.5,746.8,74,7,40,6.1,14.434662112,14.434662112 -90,0,21.39,45.53,20.5333333333,44.7,21.5,44.2,19.6,46.06,19.285,55.6966666667,9.69,73,18.79,40.4,20.8622222222,46.5772222222,18.79,46.26,10.4333333333,746.7,73.6666666667,6.8333333333,40,5.95,21.361725789,21.361725789 -80,0,21.4633333333,45.8633333333,20.6,44.5666666667,21.5,44.2,19.5,46.09,19.23,55.845,9.63,72.7933333333,18.79,40.3083333333,20.79,46.4105555556,18.79,46.1266666667,10.3666666667,746.6,73.3333333333,6.6666666667,40,5.8,6.6392187844,6.6392187844 -370,10,21.5333333333,45.6,20.73,44.4666666667,21.5,44.2,19.5,46.1633333333,19.2,55.9611111111,9.5666666667,72.23,18.79,40.29,20.79,46.3022222222,18.79,46.06,10.3,746.5,73,6.5,40,5.65,23.4444429749,23.4444429749 -270,10,21.6666666667,45.0666666667,20.79,44.1333333333,21.4633333333,44.0266666667,19.5,46.06,19.2,56.02,9.5,71.9633333333,18.79,40.235,20.79,46.2288888889,18.79,45.9333333333,10.2333333333,746.4,72.6666666667,6.3333333333,40,5.5,2.5741816149,2.5741816149 -70,10,21.79,44.1933333333,20.8233333333,43.6633333333,21.39,43.7666666667,19.5,45.9333333333,19.2,55.9888888889,9.4633333333,71.7633333333,18.79,40.2,20.775,46.1022222222,18.79,45.8633333333,10.1666666667,746.3,72.3333333333,6.1666666667,40,5.35,24.1767405067,24.1767405067 -90,0,21.8566666667,44.06,20.9633333333,43.53,21.5,43.7,19.5,45.79,19.1833333333,55.9388888889,9.33,71.69,18.79,40.1277777778,20.785,46.1761111111,18.79,45.7225,10.1,746.2,72,6,40,5.2,17.4536593026,17.4536593026 -100,10,22.05,44.395,21.1,43.645,21.5,43.5666666667,19.5,45.79,19.1944444444,55.9055555556,9.1266666667,71.8966666667,18.775,40.065,20.8122222222,46.5888888889,18.79,45.6266666667,10.25,745.9833333333,71,6.1666666667,40,5.15,43.8971880241,43.8971880241 -90,10,22.1333333333,44.4333333333,21.23,43.6266666667,21.5,43.53,19.39,45.7,19.1666666667,55.9988888889,9,72.4233333333,18.765,40.005,20.8916666667,46.8433333333,18.73,45.56,10.4,745.7666666667,70,6.3333333333,40,5.1,47.8761227685,47.8761227685 -110,10,22.2,44.6933333333,21.3566666667,43.7,21.5,43.59,19.39,45.6266666667,19.1055555556,56.0911111111,9,72.56,18.74,39.95,21,46.6855555556,18.79,45.5,10.55,745.55,69,6.5,40,5.05,16.3679026649,16.3679026649 -100,0,22.3233333333,44.9666666667,21.5333333333,43.79,21.5,43.86,19.39,45.4666666667,19.1,56.2127777778,9.1266666667,72.3666666667,18.735,39.8938888889,21.0055555556,46.7916666667,18.79,45.4666666667,10.7,745.3333333333,68,6.6666666667,40,5,14.4125696621,14.4125696621 -90,0,22.39,45.4333333333,21.6666666667,43.79,21.5,44.06,19.39,45.3266666667,19.1,56.3327777778,9.33,71.8,18.71,39.8022222222,21.1055555556,47.215,18.73,45.4,10.85,745.1166666667,67,6.8333333333,40,4.95,48.7292605801,48.7292605801 -90,0,22.4266666667,45.06,21.73,43.79,21.5,44.245,19.39,45.26,19.1166666667,56.4277777778,9.4633333333,71,18.74,39.79,21.2038888889,47.8316666667,18.73,45.29,11,744.9,66,7,40,4.9,13.1086443202,13.1086443202 -100,0,22.5666666667,44.86,21.8566666667,43.73,21.5333333333,44.4,19.3233333333,45.2,19.1055555556,56.505,9.645,70.15,18.7,39.755,21.3066666667,48.3605555556,18.79,45.23,11.15,744.7166666667,65.3333333333,7.5,40,4.8833333333,40.3182532871,40.3182532871 -90,10,22.7,44.76,22.0333333333,43.59,21.6,44.4,19.29,45.045,19.1,56.6105555556,9.8,69.4333333333,18.7,39.71,21.3566666667,48.7044444444,18.76,45.26,11.3,744.5333333333,64.6666666667,8,40,4.8666666667,49.8646818334,49.8646818334 -100,10,22.76,44.6266666667,22.2266666667,43.6633333333,21.7,44.5,19.29,45,19.1,56.7977777778,9.86,69.16,18.7,39.7,21.39,48.8405555556,18.76,45.2,11.45,744.35,64,8.5,40,4.85,42.9061559611,42.9061559611 -100,20,22.9266666667,44.56,22.3233333333,43.5266666667,21.7,44.5,19.29,45,19.1,56.9822222222,10.0333333333,67.96,18.7,39.6327777778,21.4872222222,49.4877777778,18.7,45.2,11.6,744.1666666667,63.3333333333,9,40,4.8333333333,1.2579348404,1.2579348404 -90,20,23,44.6333333333,22.4633333333,43.3266666667,21.73,44.6266666667,19.29,44.8633333333,19.1,57.0911111111,10.1,67.1666666667,18.7,39.59,21.5666666667,49.835,18.7,45.2,11.75,743.9833333333,62.6666666667,9.5,40,4.8166666667,1.9467726233,1.9467726233 -90,20,23.1,44.59,22.6,43.26,21.79,44.76,19.29,44.79,19.1,57.1977777778,10.33,66.0233333333,18.7,39.555,21.6166666667,49.9611111111,18.7,45.1633333333,11.9,743.8,62,10,40,4.8,27.8334241011,27.8334241011 -90,30,23.1,44.59,22.6666666667,43.1266666667,21.8233333333,44.86,19.29,44.76,19.1,57.265,10.39,65.6233333333,18.715,39.5,21.7,50,18.7,45.09,11.7666666667,743.7333333333,62.5,9.8333333333,40,4.7666666667,10.9830135014,10.9830135014 -90,30,23.2,44.56,22.7,43.1266666667,21.89,45,19.29,44.7,19.1,57.345,10.36,65.6233333333,18.73,39.5,21.705,49.9555555556,18.7,45.09,11.6333333333,743.6666666667,63,9.6666666667,40,4.7333333333,37.3407219769,37.3407219769 -110,10,23.2,44.36,22.7,43.1266666667,21.89,45.09,19.26,44.56,19.3422222222,67.2816666667,10.2266666667,65.7633333333,18.715,39.4722222222,21.78,50.1,18.7,45.09,11.5,743.6,63.5,9.5,40,4.7,27.4225971079,27.4225971079 -80,10,23.2,44.0266666667,22.7,42.8633333333,21.89,45.03,19.2,44.56,20.4888888889,85.6027777778,10.19,65.6566666667,18.715,39.3033333333,21.79,50.0133333333,18.7,44.9666666667,11.3666666667,743.5333333333,64,9.3333333333,40,4.6666666667,15.8050915343,15.8050915343 -100,10,23.2,43.6333333333,22.7,42.6566666667,21.89,44.8633333333,19.26,44.5266666667,20.1922222222,84.3777777778,10.19,65.3233333333,18.78,39.145,21.79,49.5822222222,18.7,44.9,11.2333333333,743.4666666667,64.5,9.1666666667,40,4.6333333333,9.9095420446,9.9095420446 -90,0,23.2,43.1633333333,22.7,42.43,21.8233333333,44.6566666667,19.2,44.4,19.9283333333,80.5677777778,10.16,65.1566666667,18.78,39.005,21.7955555556,49.1161111111,18.7,44.79,11.1,743.4,65,9,40,4.6,44.0866010496,44.0866010496 -90,0,23.2,43.09,22.6333333333,42.0966666667,21.79,44.7,19.2,44.26,19.8011111111,77.485,10.0333333333,65.09,18.79,39,21.8566666667,49.115,18.7675,45.145,11.0333333333,743.3166666667,65.1666666667,9.1666666667,40,4.5833333333,8.0681935418,8.0681935418 -80,0,23.2,42.8633333333,22.6,41.8633333333,21.79,44.7,19.2,44.2,19.7138888889,74.5494444444,9.9633333333,65.2266666667,18.79,39,21.8961111111,49.1766666667,18.8566666667,46.1966666667,10.9666666667,743.2333333333,65.3333333333,9.3333333333,40,4.5666666667,39.4858154119,39.4858154119 -70,10,23.2,42.79,22.575,41.745,21.7,44.79,19.2,44.09,19.6055555556,71.9438888889,9.89,65.16,18.77,39.0027777778,21.9633333333,48.9294444444,18.89,46.83,10.9,743.15,65.5,9.5,40,4.55,46.0879123886,46.0879123886 -70,0,23.1333333333,42.8633333333,22.5,41.79,21.7,44.79,19.2,44.09,19.6,70.305,9.86,65.1566666667,18.785,39.2166666667,22.0111111111,48.8083333333,18.9633333333,47.09,10.8333333333,743.0666666667,65.6666666667,9.6666666667,40,4.5333333333,26.0630319593,26.0630319593 -70,0,23.1,42.9333333333,22.5,41.9633333333,21.7,44.79,19.2,44.09,19.5388888889,69.1744444444,9.86,64.9633333333,18.765,39.3205555556,22.0833333333,48.95,19,47.23,10.7666666667,742.9833333333,65.8333333333,9.8333333333,40,4.5166666667,1.0182191269,1.0182191269 -70,0,23.1,43.06,22.4266666667,42.09,21.7,44.8633333333,19.2,44.09,19.5,68.1966666667,9.8,65.0266666667,18.78,39.4983333333,22.1,49.0611111111,19,47.43,10.7,742.9,66,10,40,4.5,6.0767625109,6.0767625109 -80,0,23,43.09,22.39,42.23,21.7,44.845,19.2,44.2,19.5,67.3822222222,9.895,64.7,18.79,39.6205555556,22.1722222222,49.2633333333,19,47.59,10.6833333333,742.85,66,9.8333333333,40,4.5,11.0152715701,11.0152715701 -80,0,23,43.09,22.3233333333,42.3633333333,21.7,44.9,19.2,44.2,19.4205555556,66.6633333333,10.0666666667,63.96,18.77,39.735,22.215,49.6644444444,19,47.6633333333,10.6666666667,742.8,66,9.6666666667,40,4.5,31.3392479438,31.3392479438 -80,0,22.9633333333,43.1266666667,22.29,42.53,21.7,44.9666666667,19.2,44.245,19.39,66.035,10.19,63.4233333333,18.79,39.79,22.29,50.0894444444,19,47.79,10.65,742.75,66,9.5,40,4.5,35.8251706231,35.8251706231 -60,0,22.89,43.2,22.23,42.59,21.7,44.9,19.2,44.4,19.39,65.5044444444,10.2633333333,62.83,18.79,39.8572222222,22.3733333333,50.29,19,47.8633333333,10.6333333333,742.7,66,9.3333333333,40,4.5,18.7093707384,18.7093707384 -30,0,22.79,43.09,22.2,42.6266666667,21.7,44.9,19.2,44.4,19.39,64.9544444444,10.39,62.1633333333,18.79,39.9,22.4572222222,50.4083333333,18.9266666667,47.9333333333,10.6166666667,742.65,66,9.1666666667,40,4.5,21.5000433614,21.5000433614 -20,0,22.79,43.1633333333,22.1333333333,42.76,21.6666666667,44.76,19.1666666667,44.4,19.3788888889,64.5238888889,10.4633333333,61.83,18.79,39.9611111111,22.3961111111,50.5833333333,19,48.06,10.6,742.6,66,9,40,4.5,9.3911083182,9.3911083182 -20,0,22.76,43.2,22.0666666667,42.79,21.6,44.7,19.1666666667,44.4,19.2955555556,64.16,10.5333333333,61.46,18.79,40,22.39,50.9627777778,19,48.23,10.65,742.5166666667,65.6666666667,8.8333333333,40,4.4666666667,8.534049103,8.534049103 -40,0,22.7,43.2,22,42.79,21.6,44.7,19.1,44.4333333333,19.29,63.8311111111,10.6,60.8666666667,18.79,40.005,22.3066666667,51.1722222222,19,48.3633333333,10.7,742.4333333333,65.3333333333,8.6666666667,40,4.4333333333,28.0060927384,28.0060927384 -50,0,22.7,43.29,22,42.8175,21.6,44.7,19.1,44.5,19.3122222222,63.5366666667,10.6,60.53,18.79,40.06,22.29,51.3205555556,19,48.4333333333,10.75,742.35,65,8.5,40,4.4,47.6002845564,47.6002845564 -50,0,22.7,43.29,21.9266666667,42.9,21.6,44.73,19.1,44.5,19.29,63.3694444444,10.6,60.39,18.79,40.09,22.29,51.4761111111,19,48.56,10.8,742.2666666667,64.6666666667,8.3333333333,40,4.3666666667,35.9414012986,35.9414012986 -50,0,22.6666666667,43.29,21.89,42.9333333333,21.6,44.79,19.1,44.5,19.29,63.1966666667,10.7266666667,60.0933333333,18.79,40.09,22.265,51.6144444444,19,48.73,10.85,742.1833333333,64.3333333333,8.1666666667,40,4.3333333333,30.5539289606,30.5539289606 -50,0,22.5333333333,43.29,21.8233333333,42.9333333333,21.6,44.73,19.1,44.59,19.27,63.055,10.86,59.1666666667,18.79,40.09,22.2,51.6083333333,19,48.79,10.9,742.1,64,8,40,4.3,23.4224985237,23.4224985237 -50,0,22.5,43.3266666667,21.79,42.9333333333,21.6,44.73,19.1,44.59,19.27,62.8838888889,11.13,58.0933333333,18.79,40.09,22.1888888889,51.72,19,48.9,11.0833333333,742.05,63,8.3333333333,40,4.2333333333,1.2975716032,1.2975716032 -40,0,22.4266666667,43.3266666667,21.73,43,21.6333333333,44.79,19.1,44.59,19.26,62.7127777778,11.2633333333,57.6266666667,18.79,40.09,22.15,51.76,19.025,48.9975,11.2666666667,742,62,8.6666666667,40,4.1666666667,40.0997348945,40.0997348945 -40,0,22.39,43.29,21.7,43,21.7,44.79,19.1,44.53,19.245,62.4961111111,11.39,56.96,18.79,40.09,22.1,51.7,19.0333333333,49.09,11.45,741.95,61,9,40,4.1,16.4767066017,16.4767066017 -40,0,22.39,43.3633333333,21.6333333333,43,21.7,44.79,19.1,44.59,19.2,62.3266666667,11.39,56.6266666667,18.79,40.09,22.1,51.6327777778,19.1,49.2,11.6333333333,741.9,60,9.3333333333,40,4.0333333333,0.3009454231,0.3009454231 -40,0,22.34,43.4,21.6,43,21.7,44.73,19.1,44.59,19.2,62.1722222222,11.39,56.79,18.79,40.09,22.0888888889,51.58,19.1,49.26,11.8166666667,741.85,59,9.6666666667,40,3.9666666667,47.1425134805,47.1425134805 -40,0,22.29,43.4333333333,21.5666666667,43.09,21.79,44.7,19.1,44.56,19.2,62.065,11.39,57.1966666667,18.79,40.09,22.0055555556,51.5261111111,19.1,49.29,12,741.8,58,10,40,3.9,38.4943856392,38.4943856392 -50,0,22.29,43.5,21.5,43.09,21.79,44.7,19.1,44.56,19.2,61.8983333333,11.245,59.095,18.79,40.09,22.05,51.7633333333,19.1,49.3633333333,11.7666666667,741.6833333333,60,9.6666666667,40,4.1333333333,48.8079688395,48.8079688395 -40,0,22.2,43.4333333333,21.5,43.2,21.8233333333,44.73,19.1,44.59,19.2,61.745,10.9333333333,61.4666666667,18.79,40.0961111111,22.1,51.8755555556,19.1,49.4,11.5333333333,741.5666666667,62,9.3333333333,40,4.3666666667,14.2000877415,14.2000877415 -50,0,22.1333333333,43.5,21.4266666667,43.2,21.89,44.79,19.1,44.59,19.2,61.6177777778,10.7266666667,63.0666666667,18.79,40.1877777778,22.0666666667,51.8633333333,19.1,49.4666666667,11.3,741.45,64,9,40,4.6,37.4127481831,37.4127481831 -50,0,22.1,43.59,21.39,43.23,21.9633333333,44.79,19.1,44.59,19.1888888889,61.4722222222,10.66,64.3633333333,18.79,40.2,22.0055555556,51.8144444444,19.1,49.5,11.0666666667,741.3333333333,66,8.6666666667,40,4.8333333333,30.6383670424,30.6383670424 -40,0,22.1,43.59,21.39,43.3633333333,22,44.9,19.1,44.59,19.1666666667,61.3327777778,10.66,64.03,18.79,40.2,21.9755555556,51.975,19.1,49.5,10.8333333333,741.2166666667,68,8.3333333333,40,5.0666666667,25.6400715327,25.6400715327 -40,0,22.0666666667,43.6633333333,21.29,43.4,22,44.9,19.1,44.59,19.1666666667,61.245,10.69,64.3666666667,18.79,40.255,21.9877777778,52.1783333333,19.1,49.5,10.6,741.1,70,8,40,5.3,43.7218619278,43.7218619278 -40,0,22,43.6633333333,21.29,43.4666666667,22,44.9,19.0666666667,44.6633333333,19.1555555556,61.0933333333,10.69,64.56,18.79,40.29,21.9327777778,52.5383333333,19.1,49.56,10.4166666667,741.05,71.8333333333,8,38.1666666667,5.4833333333,0.664095208,0.664095208 -40,0,22,43.73,21.29,43.59,22,44.9,19.0666666667,44.6633333333,19.15,60.9833333333,10.69,64.3566666667,18.79,40.29,21.89,53.0272222222,19.1,49.6266666667,10.2333333333,741,73.6666666667,8,36.3333333333,5.6666666667,27.7747830027,27.7747830027 -40,0,21.9266666667,43.8633333333,21.23,43.53,22.1,44.9666666667,19.0666666667,44.7,19.1111111111,60.8683333333,10.5633333333,66.3566666667,18.79,40.29,21.89,53.5033333333,19.1,49.7,10.05,740.95,75.5,8,34.5,5.85,46.2048289832,46.2048289832 -50,0,21.89,43.9333333333,21.2,43.6266666667,22.1,44.9,19,44.7,19.1,60.775,10.09,71.33,18.79,40.3816666667,21.8344444444,53.7988888889,19.1,49.73,9.8666666667,740.9,77.3333333333,8,32.6666666667,6.0333333333,26.7714941525,26.7714941525 -50,0,21.89,44,21.2,43.7,22.1,44.9,19,44.73,19.1,60.6977777778,9.83,73.93,18.79,40.45,21.8066666667,53.9916666667,19.1,49.79,9.6833333333,740.85,79.1666666667,8,30.8333333333,6.2166666667,11.3924625213,11.3924625213 -50,0,21.79,44.03,21.1333333333,43.79,22.1666666667,44.9,19,44.79,19.1,60.6327777778,9.66,75.6266666667,18.79,40.555,21.79,54.3455555556,19.2,49.9,9.5,740.8,81,8,29,6.4,0.2133619622,0.2133619622 -50,0,21.79,44.1633333333,21.1333333333,43.79,22.2,44.9,19,44.8266666667,19.1,60.555,9.5333333333,77.3666666667,18.79,40.6205555556,21.79,54.6105555556,19.2,49.9666666667,9.3166666667,740.8833333333,83.1666666667,8,27.6666666667,6.5666666667,33.7371003232,33.7371003232 -40,0,21.79,44.23,21.1,43.9333333333,22.26,44.9,19,44.9,19.1,60.45,9.3233333333,80.6666666667,18.8122222222,40.735,21.79,54.775,19.2,50.03,9.1333333333,740.9666666667,85.3333333333,8,26.3333333333,6.7333333333,5.5880052852,5.5880052852 -50,0,21.79,44.29,21.1,44,22.29,44.9,19,44.9333333333,19.1,60.4,9.13,83.3933333333,18.79,40.8205555556,21.79,54.79,19.15,50.1175,8.95,741.05,87.5,8,25,6.9,5.7392935734,5.7392935734 -40,0,21.7,44.4333333333,21.1,44.09,22.29,44.9,19,45,19.1,60.33,9,86.66,18.79,40.9166666667,21.755,54.8816666667,19.2,50.2,8.7666666667,741.1333333333,89.6666666667,8,23.6666666667,7.0666666667,38.6558685685,38.6558685685 -40,0,21.7,44.5,21.0333333333,44.09,22.29,44.9,19,45.09,19.1,60.2038888889,8.9266666667,88.5333333333,18.8066666667,41.0333333333,21.7,54.845,19.2,50.23,8.5833333333,741.2166666667,91.8333333333,8,22.3333333333,7.2333333333,36.2985478598,36.2985478598 -40,0,21.7,44.59,21,44.09,22.29,44.9666666667,19,45.1633333333,19.1,60.1266666667,8.7633333333,89.53,18.7955555556,41.0461111111,21.71,54.8327777778,19.2,50.29,8.4,741.3,94,8,21,7.4,3.9198789047,3.9198789047 -50,0,21.675,44.59,21,44.09,22.29,45,19,45.23,19.1,60.075,8.6675,89.9225,18.8288888889,41.16,21.71,54.845,19.2,50.4,8.3333333333,741.4333333333,92.8333333333,7.8333333333,22,7.1666666667,0.2554242499,0.2554242499 -50,0,21.6,44.6633333333,21,44.1633333333,22.29,45,19,45.29,19.1,60.02,8.6,90.6333333333,18.8233333333,41.24,21.7,54.78,19.2,50.4,8.2666666667,741.5666666667,91.6666666667,7.6666666667,23,6.9333333333,22.7629999281,22.7629999281 -50,0,21.6,44.73,20.89,44.23,22.29,45,19,45.29,19.0722222222,59.9661111111,8.5,91.2266666667,18.8455555556,41.3083333333,21.7,54.78,19.2,50.5,8.2,741.7,90.5,7.5,24,6.7,49.4512817473,49.4512817473 -30,0,21.6,44.79,20.89,44.29,22.29,45,18.9266666667,45.3633333333,19.0666666667,59.8966666667,8.4266666667,91.7,18.8233333333,41.3266666667,21.7,54.735,19.2,50.56,8.1333333333,741.8333333333,89.3333333333,7.3333333333,25,6.4666666667,30.9724122635,30.9724122635 -30,0,21.6,44.9,20.89,44.3266666667,22.29,45,19,45.5,19.0666666667,59.8633333333,8.2933333333,91.7333333333,18.8177777778,41.3388888889,21.65,54.5755555556,19.2,50.59,8.0666666667,741.9666666667,88.1666666667,7.1666666667,26,6.2333333333,11.8686439004,11.8686439004 -20,0,21.6,44.9,20.89,44.4,22.29,45,18.89,45.5,19.0111111111,59.8022222222,7.9666666667,91.4,18.8566666667,41.3755555556,21.6,54.4166666667,19.2,50.59,8,742.1,87,7,27,6,18.0832320126,18.0832320126 -20,0,21.5,45,20.8566666667,44.3633333333,22.29,45,18.9633333333,45.5,19,59.735,7.73,91.1266666667,18.8511111111,41.4,21.6,54.345,19.2,50.6266666667,7.8333333333,742.2333333333,87.3333333333,6.5,29.1666666667,5.8833333333,37.1311161434,37.1311161434 -40,0,21.5,45,20.79,44.29,22.2,44.9,19,45.5,19,59.7,7.53,90.8666666667,18.8566666667,41.3633333333,21.6,54.2961111111,19.2,50.7,7.6666666667,742.3666666667,87.6666666667,6,31.3333333333,5.7666666667,9.8658667761,9.8658667761 -40,0,21.5,45.03,20.79,44.26,22.2,44.9,18.9266666667,45.5,19.0222222222,59.72,7.3666666667,90.56,18.8455555556,41.3511111111,21.6,54.3877777778,19.2,50.7,7.5,742.5,88,5.5,33.5,5.65,1.3107116683,1.3107116683 -50,0,21.5,45.09,20.79,44.2,22.2,44.9,18.89,45.5,19,59.6572222222,7.16,90.5,18.8288888889,41.3327777778,21.5722222222,54.4222222222,19.2,50.7,7.3333333333,742.6333333333,88.3333333333,5,35.6666666667,5.5333333333,3.5991986399,3.5991986399 -50,0,21.4266666667,45.03,20.73,44.2,22.1333333333,44.9666666667,18.89,45.5,19,59.6022222222,7.06,90.33,18.8177777778,41.3205555556,21.5111111111,54.345,19.2,50.7,7.1666666667,742.7666666667,88.6666666667,4.5,37.8333333333,5.4166666667,29.0916291182,29.0916291182 -50,0,21.4266666667,45.03,20.73,44.2,22.1,45.09,18.89,45.5,19,59.59,7,90.33,18.84,41.2955555556,21.5,54.2088888889,19.2,50.7,7,742.9,89,4,40,5.3,30.2103532362,30.2103532362 -50,0,21.39,45,20.7,44.2,22.1,45.09,18.89,45.5,19,59.575,6.8666666667,90.2933333333,18.8288888889,41.265,21.5,54.1022222222,19.2,50.7,7,743,89.1666666667,4.3333333333,40,5.3166666667,49.130245205,49.130245205 -40,0,21.39,45,20.7,44.26,22.1,45.09,18.89,45.5,19,59.52,6.7266666667,90.6266666667,18.8233333333,41.26,21.4205555556,53.9427777778,19.2,50.7,7,743.1,89.3333333333,4.6666666667,40,5.3333333333,1.4118560939,1.4118560939 -40,0,21.39,45.09,20.7,44.29,22.1666666667,45.09,18.89,45.5,19,59.4944444444,6.5266666667,90.5933333333,18.8066666667,41.225,21.4266666667,53.9366666667,19.2,50.7,7,743.2,89.5,5,40,5.35,43.1069409475,43.1069409475 -50,0,21.3233333333,45.09,20.7,44.29,22.1,45.2,18.89,45.5,19,59.4833333333,6.4666666667,91.1333333333,18.8511111111,41.255,21.39,54,19.2,50.76,7,743.3,89.6666666667,5.3333333333,40,5.3666666667,8.8711405522,8.8711405522 -40,0,21.29,45.1266666667,20.6,44.2,22.1,45.2,18.89,45.5,19,59.4611111111,6.6233333333,91.9,18.8511111111,41.255,21.39,54,19.29,50.79,7,743.4,89.8333333333,5.6666666667,40,5.3833333333,32.9811373376,32.9811373376 -40,0,21.29,45.2,20.6,44.2,22.1,45.2,18.89,45.5,19,59.4,6.69,91.695,18.8233333333,41.23,21.39,54,19.29,50.79,7,743.5,90,6,40,5.4,22.7790835546,22.7790835546 -50,0,21.29,45.2,20.6,44.2,22.1,45.26,18.89,45.4333333333,19,59.3877777778,6.5633333333,90.8933333333,18.8122222222,41.22,21.39,54.045,19.29,50.79,6.9666666667,743.6166666667,89,6.1666666667,40,5.2166666667,15.7896896126,15.7896896126 -40,0,21.29,45.2,20.6,44.2,22.1,45.29,18.89,45.4333333333,18.9633333333,59.3327777778,6.33,90.2266666667,18.79,41.2,21.39,54.055,19.29,50.86,6.9333333333,743.7333333333,88,6.3333333333,40,5.0333333333,8.3606852102,8.3606852102 -80,0,21.29,45.245,20.5333333333,44,22.1,45.29,18.8233333333,45.36,18.9877777778,59.2688888889,6.19,90.4333333333,18.79,41.06,21.3788888889,53.9722222222,19.29,50.9333333333,6.9,743.85,87,6.5,40,4.85,21.4941166108,21.4941166108 -50,0,21.26,45.8,20.5,43.8633333333,22,44.7233333333,18.8566666667,45.3633333333,18.9755555556,58.9988888889,6.2633333333,90.0966666667,18.79,40.6333333333,21.34,53.5833333333,19.29,50.76,6.8666666667,743.9666666667,86,6.6666666667,40,4.6666666667,21.7649501283,21.7649501283 -40,10,21.26,45.86,20.5,43.8633333333,21.9175,44.5675,18.8566666667,45.29,18.9755555556,58.61,6.2633333333,89.43,18.79,40.3311111111,21.29,53.1144444444,19.23,50.5,6.8333333333,744.0833333333,85,6.8333333333,40,4.4833333333,49.9406654155,49.9406654155 -40,0,21.29,45.59,20.5,43.7,21.8233333333,44.4333333333,18.79,44.995,19,58.1,6.3,89.0266666667,18.785,40.1177777778,21.275,52.6233333333,19.2,50.0333333333,6.8,744.2,84,7,40,4.3,40.2578101959,40.2578101959 -80,0,21.29,45.4633333333,20.5,43.7,21.79,44.29,18.79,44.8333333333,19.1661111111,63.9127777778,6.3666666667,88.8333333333,18.71,39.95,21.2,52.1422222222,19.26,49.6266666667,6.8333333333,744.2833333333,84.1666666667,6.8333333333,40,4.3666666667,16.8455685605,16.8455685605 -60,10,21.29,45.4,20.5,43.6633333333,21.79,44.23,18.79,44.7,19.6572222222,77.0133333333,6.4333333333,88.6233333333,18.7,39.7933333333,21.2,51.7911111111,19.2,49.06,6.8666666667,744.3666666667,84.3333333333,6.6666666667,40,4.4333333333,25.360998523,25.360998523 -40,0,21.29,45.5266666667,20.5,43.59,21.79,44.2,18.79,44.56,19.4572222222,75.6583333333,6.5,88.69,18.7,39.6816666667,21.2,51.4294444444,19.2,48.7266666667,6.9,744.45,84.5,6.5,40,4.5,14.5244797692,14.5244797692 -50,0,21.29,45.59,20.5,43.59,21.79,44.2,18.79,44.5,19.39,75.5227777778,6.69,88.69,18.705,39.6022222222,21.1944444444,51.1272222222,19.2,48.4666666667,6.9333333333,744.5333333333,84.6666666667,6.3333333333,40,4.5666666667,27.7294162661,27.7294162661 -50,0,21.29,48.4633333333,20.5,43.6633333333,21.79,44.2,18.79,44.4,19.3066666667,74.9244444444,6.7633333333,88.5633333333,18.74,39.545,21.1111111111,50.8805555556,19.2,48.2666666667,6.9666666667,744.6166666667,84.8333333333,6.1666666667,40,4.6333333333,13.2955479436,13.2955479436 -30,0,21.39,48.3666666667,20.5,44.06,21.79,44.00875,18.79,44.3266666667,19.28,74.1733333333,6.9633333333,88.06,18.715,39.4944444444,21.1611111111,50.8205555556,19.2,48.09,7,744.7,85,6,40,4.7,47.2538522677,47.2538522677 -30,10,21.3233333333,47.1666666667,20.5,44,21.79,43.8175,18.79,44.29,19.225,73.1644444444,7.23,87.3933333333,18.7,39.4111111111,21.1722222222,50.8327777778,19.2,47.9633333333,7.1,744.75,84.1666666667,6.1666666667,38.1666666667,4.65,6.338281557,6.338281557 -20,0,21.29,46.3333333333,20.4633333333,43.9,21.73,43.8266666667,18.79,44.23,19.22,72.2188888889,7.4633333333,86.1633333333,18.7,39.3327777778,21.1,50.7116666667,19.2,47.5,7.2,744.8,83.3333333333,6.3333333333,36.3333333333,4.6,22.7844444686,22.7844444686 -20,0,21.29,46.0666666667,20.4633333333,43.5666666667,21.7,43.73,18.79,44.1633333333,19.2,71.3805555556,7.6566666667,85.3566666667,18.7,39.29,21.1222222222,50.5022222222,19.2,47.36,7.3,744.85,82.5,6.5,34.5,4.55,32.7151263366,32.7151263366 -40,0,21.29,45.8333333333,20.5,43.3333333333,21.7,43.8633333333,18.79,44.09,19.1888888889,70.5983333333,7.8,83.2,18.7,39.285,21.1,50.3083333333,19.2,47.1333333333,7.4,744.9,81.6666666667,6.6666666667,32.6666666667,4.5,30.6176273501,30.6176273501 -40,0,21.29,45.6266666667,20.5,43.2,21.6,43.79,18.79,44.09,19.1333333333,69.9044444444,7.925,81.27,18.7,39.1916666667,21.1,50.265,19.2,46.86,7.5,744.95,80.8333333333,6.8333333333,30.8333333333,4.45,28.4472133615,28.4472133615 -60,0,21.23,45.3633333333,20.5,43.06,21.6,43.79,18.79,44.03,19.1388888889,68.6688888889,8.3666666667,80.1666666667,18.7,39.0872222222,21.1333333333,50.2,19.2,46.69,7.6,745,80,7,29,4.4,1.1816471699,1.1816471699 -50,0,21.23,45.1566666667,20.5,42.9333333333,21.6,43.79,18.79,43.9,19.1,66.8083333333,8.39,75.7966666667,18.7,38.9888888889,21.1111111111,50.245,19.1666666667,46.4666666667,7.6,745.1166666667,79,7.3333333333,30.8333333333,4.2,44.1693446599,44.1693446599 -60,10,21.2,45.3333333333,20.4633333333,42.79,21.6,43.79,18.79,43.9,19.1,65.315,8.33,73.7966666667,18.7,38.8872222222,21.1,50.2061111111,19.1666666667,46.2666666667,7.6,745.2333333333,78,7.6666666667,32.6666666667,4,25.6130818743,25.6130818743 -50,0,21.2,45.3333333333,20.4633333333,42.8633333333,21.7,43.9,18.79,43.8633333333,19.1,64.2777777778,8.13,72.9266666667,18.7,38.745,21.1,49.8105555556,19.1,45.9,7.6,745.35,77,8,34.5,3.8,33.5365003906,33.5365003906 -40,0,21.2,45.145,20.39,42.845,21.6333333333,43.8266666667,18.79,43.73,19.1,63.3188888889,8.19,71.9266666667,18.7,38.6033333333,21.1,49.24,19.1,45.5666666667,7.6,745.4666666667,76,8.3333333333,36.3333333333,3.6,11.1812916119,11.1812916119 -100,0,21.2,44.93,20.39,42.7,21.6,43.76,18.79,43.7,19.1,62.4144444444,8.3666666667,70.76,18.7,38.46,21.0888888889,48.7277777778,19.2,45.76,7.6,745.5833333333,75,8.6666666667,38.1666666667,3.4,5.1364707528,5.1364707528 -130,0,21.2,44.6566666667,20.39,42.5666666667,21.5333333333,43.7,18.79,43.595,19.1,61.7133333333,8.6266666667,69.76,18.705,38.3177777778,21.0277777778,48.2983333333,19.1333333333,45.7,7.6,745.7,74,9,40,3.2,5.5236810003,5.5236810003 -40,0,21.2,44.5266666667,20.5,42.6633333333,21.5,43.59,18.79,43.4333333333,19.1,60.9083333333,8.9266666667,67.3666666667,18.74,38.12,21,47.88,19.2,45.6333333333,7.7333333333,745.7666666667,73.8333333333,8.8333333333,40,3.2833333333,18.7948288862,18.7948288862 -40,0,21.2,44.5266666667,20.5,42.53,21.5333333333,43.59,18.79,43.4,19.0833333333,60.1616666667,9,65.16,18.79,37.9327777778,20.9938888889,47.4688888889,19.1333333333,45.36,7.8666666667,745.8333333333,73.6666666667,8.6666666667,40,3.3666666667,42.0958365663,42.0958365663 -50,0,21.2,44.56,20.5,42.3633333333,21.5333333333,43.59,18.79,43.3266666667,19.0611111111,59.5755555556,8.9266666667,64.3333333333,18.79,37.7922222222,20.9022222222,47.13,19.1,45.1333333333,8,745.9,73.5,8.5,40,3.45,26.9310161355,26.9310161355 -50,0,21.1333333333,44.5,20.5,42.1566666667,21.5,43.59,18.79,43.2,19.0555555556,59.1022222222,8.9266666667,64.1933333333,18.79,37.6377777778,20.89,46.8505555556,19.1,44.9333333333,8.1333333333,745.9666666667,73.3333333333,8.3333333333,40,3.5333333333,24.5703438064,24.5703438064 -50,0,21.1666666667,44.4666666667,20.5,42.06,21.5,43.59,18.79,43.1266666667,19.0277777778,58.6233333333,8.8,64.3333333333,18.79,37.545,20.89,46.5772222222,19.1,44.9,8.2666666667,746.0333333333,73.1666666667,8.1666666667,40,3.6166666667,49.3915669038,49.3915669038 -40,0,21.1,44.3266666667,20.5,42,21.5,43.5,18.79,43.06,19.0222222222,58.1866666667,8.6666666667,63.3333333333,18.8288888889,37.4944444444,20.9205555556,46.2711111111,19.1,44.9666666667,8.4,746.1,73,8,40,3.7,41.3876290666,41.3876290666 -50,0,21.2,44.0633333333,20.5,42.0266666667,21.5,43.4333333333,18.79,43,19,57.7911111111,8.5633333333,63.6,18.89,37.3805555556,20.9988888889,45.8616666667,19.2,45,8.4,746.1666666667,72,8,40,3.5166666667,7.333558274,7.333558274 -40,0,21.2,43.73,20.5666666667,41.8266666667,21.5,43.2233333333,18.8233333333,42.7,19,57.4144444444,8.9633333333,64.26,18.9572222222,37.2288888889,21.0944444444,45.5244444444,19.2,45.1333333333,8.4,746.2333333333,71,8,40,3.3333333333,9.0904689743,9.0904689743 -60,0,21.2,43.7666666667,20.5,41.79,21.5,43.09,18.89,42.6266666667,19,57.1222222222,9.39,62.0633333333,19,37.0772222222,21.0833333333,45.2116666667,19.2,45.2,8.4,746.3,70,8,40,3.15,20.3622351401,20.3622351401 -140,0,21.2,43.9,20.5,41.79,21.5,43.06,18.89,42.56,19,56.8311111111,9.4633333333,60.1233333333,19,36.9205555556,21.0333333333,44.9488888889,19.2,45.2,8.4,746.3666666667,69,8,40,2.9666666667,0.4074174096,0.4074174096 -60,0,21.1666666667,44.03,20.5,41.79,21.5,43.06,18.89,42.56,19,56.5305555556,9.445,59.59,19,36.78,21,44.82,19.2,44.9,8.4,746.4333333333,68,8,40,2.7833333333,39.3148853909,39.3148853909 -50,10,21.1666666667,44.9566666667,20.5,41.8633333333,21.4633333333,43.06,18.89,42.3525,19,56.3016666667,9.4266666667,59.9233333333,19.0055555556,36.705,21,44.5366666667,19.2,44.7,8.4,746.5,67,8,40,2.6,28.2358197612,28.2358197612 -50,0,21.2,45.29,20.5,42,21.39,43,18.89,42.145,19,56.0733333333,9.6266666667,59.9966666667,19.0888888889,36.7,21,44.4,19.2,44.79,8.35,746.5333333333,67.5,7.8333333333,40,2.65,13.2632057066,13.2632057066 -30,0,21.2,45.43,20.5666666667,42,21.39,43.03,18.89,42.2,19,55.9194444444,9.7633333333,59.7566666667,19.05,36.5633333333,20.9144444444,44.4,19.2,44.7,8.3,746.5666666667,68,7.6666666667,40,2.7,41.3606487913,41.3606487913 -50,0,21.2,45.06,20.6,42.2666666667,21.39,43.09,18.89,42.23,19,55.755,9.5633333333,59.2966666667,19.0111111111,36.4822222222,20.9083333333,44.32,19.2,44.5666666667,8.25,746.6,68.5,7.5,40,2.75,16.2357779103,16.2357779103 -40,0,21.2,44.9333333333,20.6,42.4666666667,21.39,43.23,18.8233333333,42.23,19,55.645,9.36,59.4,19,36.3816666667,20.89,44.145,19.2,44.3333333333,8.2,746.6333333333,69,7.3333333333,40,2.8,49.726496567,49.726496567 -40,10,21.2,44.9666666667,20.6,42.6,21.39,43.29,18.79,42.2,19,55.515,9.2266666667,59.8,19,36.29,20.8788888889,44.0922222222,19.2,44,8.15,746.6666666667,69.5,7.1666666667,40,2.85,11.9748172001,11.9748172001 -70,10,21.125,45.0475,20.6,42.9333333333,21.39,43.4,18.79,42.2,19,55.525,9.2633333333,60.2266666667,19.0166666667,36.4333333333,20.885,44.2083333333,19.2,43.76,8.1,746.7,70,7,40,2.9,40.6255972455,40.6255972455 -90,0,21.1666666667,45.8966666667,20.6666666667,43.1333333333,21.39,43.4666666667,18.84,42.05,19,55.59,9.2633333333,60.0266666667,19.165,36.545,21.0155555556,44.8611111111,19.2,43.76,8.1833333333,746.7166666667,69.1666666667,7.3333333333,40,2.8,1.8309772131,1.8309772131 -70,0,21.23,46.0266666667,20.7,43.4333333333,21.445,43.6,18.89,41.56,19,55.545,9.39,58.5666666667,19.2966666667,36.4327777778,21.1166666667,45.1922222222,19.2,44.0666666667,8.2666666667,746.7333333333,68.3333333333,7.6666666667,40,2.7,42.7763514686,42.7763514686 -80,10,21.29,45.9,20.76,43.5,21.4266666667,43.6566666667,18.89,41.4333333333,19,55.3933333333,9.53,57.4333333333,19.4022222222,36.2872222222,21.2727777778,45.7277777778,19.2,44.26,8.35,746.75,67.5,8,40,2.6,0.0580999069,0.0580999069 -70,0,21.29,45.6633333333,20.79,43.2233333333,21.4266666667,43.79,19,41.2233333333,19,55.1994444444,9.7633333333,56.83,19.5105555556,36.1866666667,21.4738888889,46.5377777778,19.2,44.4333333333,8.4333333333,746.7666666667,66.6666666667,8.3333333333,40,2.5,13.4515230544,13.4515230544 -90,0,21.29,45.4633333333,20.8566666667,43.09,21.5,43.9,19,41.03,19,54.9983333333,9.69,55.2233333333,19.6,35.9294444444,21.65,46.7633333333,19.26,44.6333333333,8.5166666667,746.7833333333,65.8333333333,8.6666666667,40,2.4,23.0604491313,23.0604491313 -90,0,21.3566666667,45.0266666667,20.89,43.1266666667,21.5,43.8266666667,19,40.9333333333,19,54.9038888889,9.63,55.1933333333,19.6,35.7688888889,21.715,47.1755555556,19.29,44.7,8.6,746.8,65,9,40,2.3,31.8950693123,31.8950693123 -80,0,21.29,44.9,20.89,43.1266666667,21.5333333333,43.8633333333,19,40.9333333333,19,54.8266666667,9.63,54.7266666667,19.6,35.5772222222,21.8177777778,47.7944444444,19.29,44.6266666667,8.5333333333,746.8833333333,65.1666666667,8.8333333333,40,2.2833333333,4.8676419072,4.8676419072 -70,0,21.3566666667,44.8633333333,20.89,42.6233333333,21.6,43.79,19,40.9333333333,19,54.79,9.6,55.3,19.6,35.4833333333,21.9816666667,48.0872222222,19.29,44.59,8.4666666667,746.9666666667,65.3333333333,8.6666666667,40,2.2666666667,15.863827744,15.863827744 -90,10,21.29,44.2566666667,20.8233333333,41.9566666667,21.5,43.7,19,41,19,54.7166666667,9.5333333333,55.2333333333,19.6,35.345,22.05,48.0494444444,19.29,44.53,8.4,747.05,65.5,8.5,40,2.25,28.7903868011,28.7903868011 -100,0,21.29,43.6633333333,20.79,41.4666666667,21.5,43.7,19,41.09,19,54.545,9.3233333333,56.0666666667,19.5944444444,35.2088888889,22.1166666667,47.6433333333,19.2,44.3633333333,8.3333333333,747.1333333333,65.6666666667,8.3333333333,40,2.2333333333,33.1754029146,33.1754029146 -100,10,21.29,43.53,20.73,41.3266666667,21.5,43.6633333333,18.9266666667,41.1633333333,19,54.4205555556,9.0975,56.525,19.5111111111,35.1022222222,22.2,47.1311111111,19.2,44.23,8.2666666667,747.2166666667,65.8333333333,8.1666666667,40,2.2166666667,39.5675656619,39.5675656619 -100,20,21.29,43.3633333333,20.7,41.2,21.5,43.59,18.89,41.29,18.9755555556,54.245,8.9266666667,57.3,19.4938888889,35.085,22.205,46.7355555556,19.2,44.1333333333,8.2,747.3,66,8,40,2.2,5.9146905085,5.9146905085 -110,10,21.29,43.29,20.7,41.2,21.5,43.59,18.89,41.3633333333,19,54.1277777778,8.8,57.39,19.4816666667,35.075,22.28,46.4294444444,19.2,43.9333333333,8.1,747.25,66,8,40,2.1,11.5584529703,11.5584529703 -120,20,21.26,43.2966666667,20.7,41.2,21.5,43.53,18.89,41.4333333333,18.9572222222,54.01,8.6666666667,57.7233333333,19.4083333333,34.9538888889,22.2955555556,46.09,19.2,43.69,8,747.2,66,8,40,2,17.5291015767,17.5291015767 -250,10,21.2,43.1633333333,20.7,41.26,21.5,43.5,18.89,41.4333333333,18.9511111111,53.9166666667,8.3233333333,58.4566666667,19.39,34.9,22.3566666667,45.6572222222,19.2,43.43,7.9,747.15,66,8,40,1.9,22.9167974554,22.9167974554 -160,10,21.2,43.5933333333,20.6,41.09,21.4266666667,43.4333333333,18.8566666667,41.3633333333,18.89,53.9,8.0633333333,58.99,19.3844444444,34.8633333333,22.4083333333,45.3444444444,19.2,43.23,7.8,747.1,66,8,40,1.8,3.6095488584,3.6095488584 -80,10,21.2,45,20.6,41.2233333333,21.39,43.26,18.79,41.29,18.89,53.9,7.73,59.8933333333,19.3233333333,34.8266666667,22.5,45.1544444444,19.2,43.06,7.7,747.05,66,8,40,1.7,12.1684535989,12.1684535989 -60,10,21.2,44.93,20.6,41.5666666667,21.39,43.26,18.79,41.29,18.89,53.9,7.4633333333,60.8333333333,19.29,34.8877777778,22.5055555556,44.8444444444,19.2,42.9333333333,7.6,747,66,8,40,1.6,25.9127251105,25.9127251105 -60,10,21.2,44.5966666667,20.625,41.7225,21.39,43.3266666667,18.79,41.29,18.89,53.9,7.23,61.9966666667,19.29,34.9166666667,22.5166666667,44.71,19.1,42.76,7.5833333333,747.0333333333,66,8,40,1.5833333333,25.0627219444,25.0627219444 -70,10,21.29,44.145,20.7,41.79,21.39,43.3266666667,18.79,41.245,18.89,53.9,7.03,62.9233333333,19.275,34.9277777778,22.5,44.6327777778,19.1,42.5666666667,7.5666666667,747.0666666667,66,8,40,1.5666666667,33.7264894042,33.7264894042 -390,10,21.39,43.6633333333,20.8233333333,41.7233333333,21.39,43.06,18.7,41.2,18.89,53.9277777778,7.0633333333,63.6266666667,19.2,34.9,22.4816666667,44.5483333333,19.1,42.3333333333,7.55,747.1,66,8,40,1.55,9.9770064699,9.9770064699 -350,10,21.4633333333,43.53,20.9633333333,41.53,21.39,42.925,18.7,41.2,18.89,53.9888888889,7.19,63.5,19.2,34.9833333333,22.4022222222,44.4333333333,19.1,42.1266666667,7.5333333333,747.1333333333,66,8,40,1.5333333333,26.1476391694,26.1476391694 -270,10,21.6,43.5,21.1,41.56,21.39,42.8266666667,18.7,41.09,18.89,53.9888888889,7.23,63.0933333333,19.2,35,22.39,44.3816666667,19.0666666667,41.99,7.5166666667,747.1666666667,66,8,40,1.5166666667,12.348931958,12.348931958 -260,0,21.6,43.7666666667,21.1666666667,41.5,21.4266666667,42.86,18.7,41.09,18.89,53.9722222222,7.03,62.6266666667,19.2,35,22.4327777778,44.2611111111,19,41.79,7.5,747.2,66,8,40,1.5,13.0755525082,13.0755525082 -180,10,21.73,44,21.23,41.5,21.5666666667,42.9333333333,18.7,41.06,18.89,53.9944444444,6.69,62.86,19.15,34.9833333333,22.5,43.9988888889,19.1,41.76,7.4333333333,747.1166666667,66.1666666667,8,40,1.4833333333,40.0610908982,40.0610908982 -100,10,21.93,44.2,21.29,41.5,21.6333333333,43.1266666667,18.7,41,18.89,54,6.5633333333,63.1333333333,19.1,34.9111111111,22.5,43.4644444444,19.1,41.6266666667,7.3666666667,747.0333333333,66.3333333333,8,40,1.4666666667,20.2838177094,20.2838177094 -280,0,22.1,44.0266666667,21.4266666667,41.5,21.7,43.2,18.7,41,18.89,54,6.56,63.3266666667,19.1,34.9,22.5,43.2327777778,19.1,41.4,7.3,746.95,66.5,8,40,1.45,13.314983726,13.314983726 -260,0,22.1,43.9,21.5,41.56,21.7,43.2,18.7,40.9333333333,18.89,54,6.475,63.67,19.1,34.8755555556,22.5611111111,43.0244444444,19.0333333333,41.3266666667,7.2333333333,746.8666666667,66.6666666667,8,40,1.4333333333,2.5100771105,2.5100771105 -280,0,22.1,43.4666666667,21.6,41.4666666667,21.7,43.26,18.6,40.79,18.89,54,6.4,63.9,19.1,34.9,22.6,42.845,19,41.2,7.1666666667,746.7833333333,66.8333333333,8,40,1.4166666667,40.5926225823,40.5926225823 -100,10,22.1666666667,43.2666666667,21.6,41.3266666667,21.7,43.23,18.6,40.73,18.89,53.9611111111,6.2633333333,64.5333333333,19.0944444444,34.8205555556,22.6,42.79,19,41.2,7.1,746.7,67,8,40,1.4,20.5966655514,20.5966655514 -260,20,22.23,42.9666666667,21.6,41.2,21.6333333333,43.23,18.6,40.73,18.89,53.8927777778,6.19,65.2666666667,19.0833333333,34.8572222222,22.6,42.845,19,41.09,7.1166666667,746.6166666667,67.3333333333,8.1666666667,40,1.4666666667,29.4725727639,29.4725727639 -190,30,22.29,42.7666666667,21.6666666667,41.0666666667,21.7,43.2,18.7933333333,40.99,18.89,53.775,6.09,65.8566666667,19.0166666667,34.8083333333,22.5388888889,42.7472222222,19,41.09,7.1333333333,746.5333333333,67.6666666667,8.3333333333,40,1.5333333333,1.8951020204,1.8951020204 -100,20,22.29,42.56,21.7,41.06,21.7,43.1266666667,19.5566666667,40.9666666667,18.89,53.6916666667,6.09,66.73,19,34.79,22.445,42.4766666667,19,41.045,7.15,746.45,68,8.5,40,1.6,14.3683517235,14.3683517235 -100,20,22.3566666667,42.5,21.7,41,21.7,43.06,20.1566666667,40.7666666667,18.89,53.6144444444,6.19,67.33,19,34.79,22.3288888889,42.1427777778,19,41,7.1666666667,746.3666666667,68.3333333333,8.6666666667,40,1.6666666667,24.6915121563,24.6915121563 -90,30,22.39,42.4666666667,21.7,41.06,21.7,43,20.26,40.5,18.89,53.575,6.2633333333,67.2633333333,19,34.845,22.275,41.9516666667,19,41,7.1833333333,746.2833333333,68.6666666667,8.8333333333,40,1.7333333333,14.5907840575,14.5907840575 -140,20,22.39,42.3266666667,21.7,41,21.7,43,20.2,40.6333333333,18.89,53.4833333333,6.4666666667,67.06,19,34.9,22.2044444444,41.6722222222,19,41,7.2,746.2,69,9,40,1.8,48.0015540379,48.0015540379 -430,20,22.39,42.1633333333,21.7,41.09,21.7,43,20.1,41.03,18.89,53.3683333333,6.4,67.3333333333,19,34.9277777778,22.1333333333,41.545,19,41,7.2666666667,746.1166666667,69.1666666667,9.3333333333,40,1.9166666667,31.4743919997,31.4743919997 -250,20,22.39,42.03,21.7,41.09,21.7,43,20.1,41.09,18.89,53.275,6.53,68.3333333333,19,35,22.0944444444,41.4055555556,18.89,40.9333333333,7.3333333333,746.0333333333,69.3333333333,9.6666666667,40,2.0333333333,37.9673956544,37.9673956544 -90,20,22.39,41.9,21.65,41.09,21.7,43,20.1,41.09,18.89,53.1916666667,6.6566666667,68.3333333333,18.9877777778,35.015,22.0333333333,41.2422222222,18.89,41,7.4,745.95,69.5,10,40,2.15,11.279123323,11.279123323 -100,30,22.39,41.925,21.6666666667,41.1633333333,21.7,43,20.1966666667,41.26,18.89,53.045,6.8333333333,68.09,18.9633333333,35.06,22,41.1938888889,18.89,41,7.4666666667,745.8666666667,69.6666666667,10.3333333333,40,2.2666666667,46.5349641279,46.5349641279 -90,20,22.39,42,21.6,41.09,21.7,43,20.7233333333,41.2,18.89,52.9833333333,6.9666666667,68.03,18.945,35.09,21.9694444444,41.0772222222,18.89,41,7.5333333333,745.7833333333,69.8333333333,10.6666666667,40,2.3833333333,43.9009208465,43.9009208465 -90,20,22.29,42.09,21.5666666667,41.09,21.7,43.06,21.2,40.66,18.89,52.8816666667,6.9333333333,67.9666666667,18.9511111111,35.1816666667,21.89,41.045,18.89,40.9,7.6,745.7,70,11,40,2.5,45.5977140693,45.5977140693 -90,20,22.29,42.09,21.5,41.09,21.7,43.06,21.2,40.4666666667,18.89,52.7872222222,7.06,67.9,18.9572222222,35.2,21.89,41.015,18.89,40.9,7.6666666667,745.5333333333,69.8333333333,11.3333333333,40,2.5166666667,19.5180608309,19.5180608309 -70,30,22.29,42,21.5,41.06,21.7,43.06,21.1,40.8266666667,18.89,52.6816666667,7.19,67.2666666667,18.9083333333,35.255,21.8066666667,40.9272222222,18.89,40.9,7.7333333333,745.3666666667,69.6666666667,11.6666666667,40,2.5333333333,18.5357955052,18.5357955052 -60,20,22.29,42,21.5,40.9333333333,21.7,43.09,21.0333333333,40.9,20.1033333333,76.6805555556,7.2175,67,18.9144444444,35.4505555556,21.79,41.2383333333,18.89,40.9,7.8,745.2,69.5,12,40,2.55,14.6112553077,14.6112553077 -60,20,22.29,41.9,21.39,41,21.7,43.09,20.9633333333,41.2666666667,21.5766666667,85.6366666667,7.3666666667,67,18.9205555556,35.9244444444,21.8511111111,43.1633333333,18.89,40.9633333333,7.8666666667,745.0333333333,69.3333333333,12.3333333333,40,2.5666666667,32.0941912476,32.0941912476 -60,30,22.23,41.8266666667,21.39,41.1333333333,21.7,43.1266666667,20.89,41.5266666667,20.9661111111,88.585,7.4333333333,66.7633333333,18.9083333333,36.2633333333,21.89,45.1411111111,18.89,41.1633333333,7.9333333333,744.8666666667,69.1666666667,12.6666666667,40,2.5833333333,19.4998666528,19.4998666528 -60,20,22.2,41.79,21.3566666667,41.3266666667,21.7,43.2,20.89,41.73,20.5427777778,90.3855555556,7.5,66.5633333333,18.9022222222,36.5044444444,21.9205555556,46.2433333333,18.89,41.4633333333,8,744.7,69,13,40,2.6,1.6900046612,1.6900046612 -70,20,22.2,41.79,21.29,41.4666666667,21.6666666667,43.29,20.8233333333,41.79,20.3361111111,90.9961111111,7.59,66.2333333333,18.9694444444,36.6633333333,21.9877777778,47.1238888889,18.89,41.6633333333,7.8833333333,744.5,70.6666666667,13,37.5,2.8,29.1990093072,29.1990093072 -80,20,22.2,41.79,21.26,41.5,21.6,43.29,20.89,42.0666666667,20.1822222222,90.9155555556,7.59,65.9666666667,18.9511111111,36.8588888889,21.9572222222,48.0733333333,18.89,41.86,7.7666666667,744.3,72.3333333333,13,35,3,40.7139795017,40.7139795017 -90,30,22.1333333333,41.79,21.2,41.5,21.6,43.29,21.0966666667,42.2,20.0388888889,90.6544444444,7.6233333333,66.1,18.9572222222,37.025,21.9694444444,48.8627777778,18.89,42.06,7.65,744.1,74,13,32.5,3.2,28.6140449112,28.6140449112 -90,20,22.1,41.79,21.2,41.4666666667,21.6,43.3633333333,21.7333333333,42.0266666667,19.945,90.52,7.6233333333,66.3,18.9327777778,37.1083333333,22.0166666667,49.2566666667,18.89,42.245,7.5333333333,743.9,75.6666666667,13,30,3.4,11.8015987333,11.8015987333 -90,20,22.1,41.8633333333,21.1333333333,41.4,21.6,43.4,22.1933333333,41.7666666667,19.8066666667,90.2311111111,7.59,67.5966666667,18.9755555556,37.225,22.1277777778,49.5,18.89,42.4,7.4166666667,743.7,77.3333333333,13,27.5,3.6,5.6815674878,5.6815674878 -80,20,22.0666666667,41.8633333333,21.1,41.4333333333,21.6,43.4666666667,22.8,41.6633333333,19.77,90.0133333333,7.53,70.1233333333,18.9205555556,37.3572222222,22.235,49.535,18.89,42.4666666667,7.3,743.5,79,13,25,3.8,41.3260929519,41.3260929519 -50,10,22,41.79,21.1,41.5,21.6,43.5,23,41.39,19.765,89.5805555556,7.4333333333,71.1266666667,18.9388888889,37.4277777778,22.3177777778,49.5338888889,18.89,42.6266666667,7.4166666667,743.3833333333,78.3333333333,13,27.5,3.7833333333,46.9986509415,46.9986509415 -20,0,22,42.1266666667,21.0666666667,41.56,21.5333333333,43.5,22.7266666667,41.23,19.71,89.21,7.5,70.7266666667,18.9694444444,37.535,22.39,49.2977777778,18.8233333333,42.7,7.5333333333,743.2666666667,77.6666666667,13,30,3.7666666667,1.5330811031,1.5330811031 -40,0,21.9266666667,42.26,21,41.5,21.5,43.5,22.5333333333,41.43,19.6611111111,88.8294444444,7.59,70.4666666667,18.9388888889,37.645,22.39,49.5338888889,18.89,43.03,7.65,743.15,77,13,32.5,3.75,2.0562691265,2.0562691265 -40,0,21.9633333333,42.29,21,41.73,21.4266666667,43.4333333333,22.26,41.53,19.6,88.1166666667,7.6566666667,70.4,18.9144444444,37.705,22.3511111111,49.6866666667,18.89,43.2233333333,7.7666666667,743.0333333333,76.3333333333,13,35,3.7333333333,43.7154877465,43.7154877465 -50,0,21.89,42.29,20.9175,41.8975,21.39,43.4333333333,22.0725,41.6725,19.5722222222,87.0333333333,7.7266666667,70.23,18.945,37.735,22.29,49.78,18.89,43.53,7.8833333333,742.9166666667,75.6666666667,13,37.5,3.7166666667,17.6110133529,17.6110133529 -50,0,21.84,42.245,20.89,42.0225,21.39,43.5225,21.8233333333,41.7,19.5111111111,85.3466666667,7.8,70.09,18.8961111111,37.715,22.255,49.8383333333,18.89,43.7233333333,8,742.8,75,13,40,3.7,15.3742630384,15.3742630384 -50,0,21.79,42.2,20.89,42.1633333333,21.39,43.53,21.6666666667,41.79,19.4938888889,83.7594444444,7.9,70.8933333333,18.9083333333,37.8005555556,22.22,50.0583333333,18.89,43.9333333333,7.95,742.5666666667,76.3333333333,12.8333333333,40,3.9166666667,43.5590943089,43.5590943089 -40,0,21.79,42.2,20.8566666667,42.2,21.39,43.53,21.5333333333,41.8633333333,19.4266666667,82.3822222222,7.9,72.975,18.9205555556,37.8755555556,22.22,50.1327777778,18.89,44.1333333333,7.9,742.3333333333,77.6666666667,12.6666666667,40,4.1333333333,46.1525580147,46.1525580147 -50,0,21.79,42.23,20.79,42.26,21.39,43.59,21.3566666667,41.9333333333,19.39,81.0511111111,7.9,73.7266666667,18.9266666667,37.9277777778,22.2,50.1388888889,18.89,44.3266666667,7.85,742.1,79,12.5,40,4.35,24.51264048,24.51264048 -40,0,21.73,42.29,20.79,42.29,21.39,43.59,21.29,42.06,19.39,79.7588888889,7.8666666667,75.9233333333,18.9388888889,38.01,22.2,50.1927777778,18.89,44.4666666667,7.8,741.8666666667,80.3333333333,12.3333333333,40,4.5666666667,24.614248029,24.614248029 -50,0,21.7,42.3266666667,20.73,42.3633333333,21.39,43.59,21.1666666667,42.1266666667,19.39,78.4794444444,7.8,77.13,18.945,38.055,22.1888888889,50.2922222222,18.89,44.73,7.75,741.6333333333,81.6666666667,12.1666666667,40,4.7833333333,9.2511748662,9.2511748662 -50,0,21.7,42.4,20.7,42.4333333333,21.39,43.6266666667,21.1,42.26,19.3177777778,77.2722222222,7.7633333333,77.7933333333,18.9083333333,38.0961111111,22.1055555556,50.3938888889,18.89,44.8633333333,7.7,741.4,83,12,40,5,13.0856422824,13.0856422824 -50,0,21.6666666667,42.4,20.7,42.5,21.39,43.6266666667,20.9633333333,42.3266666667,19.29,76.51,7.69,78.2,18.9205555556,38.1633333333,22.1,50.4333333333,18.89,45.1266666667,7.7666666667,741.2333333333,83.1666666667,12,40,5.1,17.4123612349,17.4123612349 -50,0,21.6,42.4,20.7,42.59,21.39,43.59,20.89,42.4,19.28,75.5861111111,7.8333333333,78.2633333333,18.9205555556,38.275,22.05,50.465,18.89,45.26,7.8333333333,741.0666666667,83.3333333333,12,40,5.2,34.5426740707,34.5426740707 -40,0,21.6,42.4333333333,20.7,42.6633333333,21.39,43.53,20.79,42.4333333333,19.205,74.4794444444,7.9,78.19,18.9083333333,38.345,22.0111111111,50.6205555556,18.89,45.4633333333,7.9,740.9,83.5,12,40,5.3,7.0186154917,7.0186154917 -40,0,21.6,42.5,20.6666666667,42.7,21.39,43.53,20.73,42.5,19.2,73.5961111111,8.0333333333,78.1,18.9144444444,38.4,21.9938888889,50.885,18.9633333333,45.6633333333,7.9666666667,740.7333333333,83.6666666667,12,40,5.4,23.8388021593,23.8388021593 -40,0,21.5666666667,42.59,20.6,42.7,21.4633333333,43.59,20.6666666667,42.59,19.2,72.6716666667,8.16,78.4333333333,18.9327777778,38.45,21.945,51.3977777778,18.945,45.895,8.0333333333,740.5666666667,83.8333333333,12,40,5.5,41.6309905006,41.6309905006 -40,0,21.5,42.6633333333,20.6,42.79,21.4266666667,43.53,20.6,42.59,19.15,71.8088888889,8.2266666667,78.59,18.9205555556,38.5,21.8961111111,51.7366666667,19,46.1266666667,8.1,740.4,84,12,40,5.6,13.2793191122,13.2793191122 -50,0,21.5,42.73,20.6,42.79,21.5,43.59,20.5,42.73,19.1,71.0822222222,8.36,78.53,18.9083333333,38.53,21.89,51.8483333333,19,46.26,8.1,740.1666666667,85.5,11.8333333333,42.8333333333,5.8333333333,38.7617366738,38.7617366738 -50,0,21.4266666667,42.73,20.5666666667,42.9,21.4633333333,43.56,20.5,42.79,19.1,70.3627777778,8.4633333333,79.9333333333,18.9327777778,38.585,21.89,52.0783333333,19,46.4333333333,8.1,739.9333333333,87,11.6666666667,45.6666666667,6.0666666667,9.2747462098,9.2747462098 -50,0,21.39,42.79,20.5666666667,42.9,21.4633333333,43.56,20.39,42.79,19.1,69.4894444444,8.2566666667,84.1266666667,18.9205555556,38.6205555556,21.89,52.335,19,46.56,8.1,739.7,88.5,11.5,48.5,6.3,19.5116763934,19.5116763934 -50,0,21.39,42.8633333333,20.5,42.9,21.5333333333,43.6266666667,20.39,42.8633333333,19.1,68.6183333333,8.1,88.13,18.8961111111,38.705,21.8511111111,52.4811111111,19,46.73,8.1,739.4666666667,90,11.3333333333,51.3333333333,6.5333333333,49.6012531104,49.6012531104 -40,0,21.3566666667,42.9333333333,20.5,42.9666666667,21.6,43.7,20.29,42.9333333333,19.0888888889,67.8761111111,8.0333333333,90.3966666667,18.9511111111,38.7922222222,21.79,52.5755555556,19,46.8633333333,8.1,739.2333333333,91.5,11.1666666667,54.1666666667,6.7666666667,7.3397962493,7.3397962493 -40,0,21.29,43,20.5,43.09,21.6,43.7,20.2675,43.045,19.0722222222,67.2366666667,8.1,92.23,18.9266666667,38.875,21.79,52.8038888889,19,46.9633333333,8.1,739,93,11,57,7,8.5572883254,8.5572883254 -50,0,21.29,43.145,20.39,43.09,21.675,43.7675,20.2,43.06,19.0611111111,66.6311111111,8.1,93.0233333333,18.89,38.9888888889,21.78,53.1238888889,19,47.09,8,739.0333333333,92.6666666667,10.5,51.1666666667,6.85,6.6332137329,6.6332137329 -40,0,21.29,43.3266666667,20.39,43.1633333333,21.7,43.73,20.1666666667,43.23,19.0166666667,66.0977777778,8.19,93.7,18.8961111111,39.055,21.755,53.275,19,47.2666666667,7.9,739.0666666667,92.3333333333,10,45.3333333333,6.7,35.5985414586,35.5985414586 -40,0,21.23,43.3266666667,20.39,43.29,21.7,43.79,20.1,43.29,19,65.5866666667,8.2633333333,94.3566666667,18.9572222222,39.145,21.73,53.29,19,47.4666666667,7.8,739.1,92,9.5,39.5,6.55,45.5925874994,45.5925874994 -50,0,21.2,43.4633333333,20.39,43.3633333333,21.7,43.79,20.1,43.4,19.0222222222,65.2505555556,7.6633333333,94.23,18.9572222222,39.2,21.72,53.215,19,47.6566666667,7.7,739.1333333333,91.6666666667,9,33.6666666667,6.4,20.8140921779,20.8140921779 -50,0,21.2,43.59,20.39,43.29,21.7,43.8266666667,20.1,43.4666666667,19,64.8688888889,7.4633333333,95.2266666667,18.9205555556,39.265,21.7,53.225,19,47.79,7.6,739.1666666667,91.3333333333,8.5,27.8333333333,6.25,39.2417737516,39.2417737516 -50,0,21.1666666667,43.7,20.3233333333,43.3633333333,21.7,43.9,20,43.4333333333,19,64.5283333333,7.73,95.6266666667,18.9144444444,39.3083333333,21.7,53.29,19,47.9,7.5,739.2,91,8,22,6.1,7.718674338,7.718674338 -50,0,21.1666666667,43.7,20.29,43.4,21.7,44,20,43.5,19,64.2927777778,7.8,95.69,18.89,39.4,21.7,53.29,19,47.9666666667,7.5666666667,739.1166666667,91,7.8333333333,25,6.1666666667,0.6145958905,0.6145958905 -40,0,21.2,43.79,20.29,43.4666666667,21.7,44,20,43.53,19,64.0283333333,7.8666666667,95.7633333333,18.9022222222,39.4,21.6611111111,53.27,19,48,7.6333333333,739.0333333333,91,7.6666666667,28,6.2333333333,4.1117722401,4.1117722401 -20,0,21.2,43.79,20.29,43.53,21.73,44,19.9266666667,43.59,19,63.7672222222,7.9666666667,95.8666666667,18.9144444444,39.4722222222,21.6222222222,53.3205555556,19,48.06,7.7,738.95,91,7.5,31,6.3,25.9546501562,25.9546501562 -30,0,21.1,43.9,20.29,43.59,21.79,44,19.89,43.7,19,63.5294444444,7.8333333333,95.7266666667,18.9327777778,39.51,21.6222222222,53.5033333333,19,48.2,7.7666666667,738.8666666667,91,7.3333333333,34,6.3666666667,3.4146251273,3.4146251273 -20,0,21.1,43.9,20.26,43.59,21.7,44,19.89,43.76,19,63.3116666667,7.56,95.59,18.9083333333,39.575,21.6,53.5,19.0666666667,48.3333333333,7.8333333333,738.7833333333,91,7.1666666667,37,6.4333333333,40.5296167126,40.5296167126 -40,0,21.1,43.9333333333,20.26,43.6633333333,21.7,44,19.89,43.79,19,63.1022222222,7.56,95.59,18.89,39.59,21.6,53.5994444444,19.1,48.5,7.9,738.7,91,7,40,6.5,3.9927720441,3.9927720441 -40,0,21.1,44,20.26,43.7,21.7,44.09,19.89,43.79,19,62.97,7.56,95.59,18.89,39.6205555556,21.6,53.59,19.0333333333,48.4633333333,8.1333333333,738.6833333333,88.8333333333,7.5,37.3333333333,6.35,7.7359489514,7.7359489514 -50,0,21.1,44.03,20.2,43.7,21.7,44.1633333333,19.79,43.8266666667,19,62.7266666667,7.4333333333,95.4633333333,18.89,39.7,21.6,53.555,19.1,48.59,8.3666666667,738.6666666667,86.6666666667,8,34.6666666667,6.2,3.364807507,3.364807507 -50,0,21.0333333333,44.03,20.2,43.7,21.7,44.2,19.79,43.9,18.9083333333,62.5694444444,7.53,95.5,18.89,39.7,21.5722222222,53.45,19,48.53,8.6,738.65,84.5,8.5,32,6.05,21.8524912256,21.8524912256 -60,0,21,44.03,20.2,43.7,21.7,44.2,19.79,43.9,18.9572222222,62.3805555556,7.59,95.5,18.89,39.755,21.5222222222,53.2472222222,19.0666666667,48.6633333333,8.8333333333,738.6333333333,82.3333333333,9,29.3333333333,5.9,37.6844729646,37.6844729646 -50,0,21,44.09,20.2,43.7,21.7,44.2,19.79,43.9666666667,18.9022222222,62.215,7.8333333333,95.66,18.9144444444,39.79,21.5,53.1022222222,19.0666666667,48.7,9.0666666667,738.6166666667,80.1666666667,9.5,26.6666666667,5.75,0.6081297295,0.6081297295 -40,0,21,44.09,20.2,43.76,21.7,44.2,19.7,43.9333333333,18.9083333333,62.1772222222,7.9,95.8,18.89,39.79,21.5,53.085,19.0666666667,48.76,9.3,738.6,78,10,24,5.6,20.3210428357,20.3210428357 -40,0,21,44.1633333333,20.1666666667,43.8266666667,21.7,44.23,19.7,44.045,18.89,62.1116666667,8,95.8,18.89,39.79,21.5,53.055,19.1,48.9,9.1833333333,738.5666666667,78.5,9.8333333333,24.6666666667,5.5833333333,20.5826405319,20.5826405319 -40,0,21,44.2,20.1,43.845,21.7,44.29,19.7,44.06,18.89,61.95,7.83,95.73,18.89,39.79,21.5,53.09,19.1,48.9,9.0666666667,738.5333333333,79,9.6666666667,25.3333333333,5.5666666667,48.8601764664,48.8601764664 -50,0,20.9175,44.2,20.1,43.9666666667,21.7,44.29,19.7,44.09,18.89,61.7472222222,7.7633333333,95.59,18.89,39.79,21.4816666667,53.0483333333,19.1,49,8.95,738.5,79.5,9.5,26,5.55,11.0703409067,11.0703409067 -40,0,20.89,44.26,20.1,44,21.7,44.3633333333,19.6333333333,44.03,18.89,61.6022222222,7.8,95.6566666667,18.89,39.8572222222,21.4327777778,52.9438888889,19.1,49,8.8333333333,738.4666666667,80,9.3333333333,26.6666666667,5.5333333333,36.8355553481,36.8355553481 -60,20,20.89,44.29,20.1,44,21.7,44.3633333333,19.6,44.09,18.89,61.4922222222,7.7266666667,95.59,18.89,39.8694444444,21.4083333333,52.9233333333,19.1,49.09,8.7166666667,738.4333333333,80.5,9.1666666667,27.3333333333,5.5166666667,41.1876597442,41.1876597442 -80,10,20.89,44.3633333333,20.1,44,21.7,44.29,19.6666666667,44.2966666667,18.89,60.4288888889,7.6266666667,95.3966666667,18.8622222222,39.6816666667,21.39,52.565,19.1,49.03,8.6,738.4,81,9,28,5.5,47.5171967875,47.5171967875 -70,0,20.89,44.7266666667,20.1,43.86,21.7,44.29,20.13,44.3633333333,18.9816666667,57.9838888889,7.4333333333,94.9966666667,18.8288888889,39.3966666667,21.3733333333,52.0638888889,19.1,48.93,8.6166666667,738.5,79.6666666667,9.3333333333,30,5.2666666667,4.926193459,4.926193459 -90,0,20.89,45.06,20.1,43.7,21.6,44.1633333333,20.53,44.1566666667,19.0166666667,56.4466666667,7.19,94.4,18.8511111111,39.2055555556,21.3788888889,51.4777777778,19.1,48.73,8.6333333333,738.6,78.3333333333,9.6666666667,32,5.0333333333,34.6209475189,34.6209475189 -70,0,20.89,45.0966666667,20.1,43.7,21.6,44.09,20.86,43.8633333333,19.0888888889,55.4933333333,7.2633333333,94.1933333333,18.79,38.96,21.3233333333,51.0272222222,19.1,48.4666666667,8.65,738.7,77,10,34,4.8,14.211319352,14.211319352 -60,20,20.9633333333,45.0966666667,20.1,43.8266666667,21.6,43.9666666667,21.1333333333,43.79,19.1,54.7655555556,7.3,93.4666666667,18.79,38.7933333333,21.29,50.6133333333,19.1,48.2666666667,8.6666666667,738.8,75.6666666667,10.3333333333,36,4.5666666667,40.0537517155,40.0537517155 -60,20,21,45.2233333333,20.1,43.9,21.6,43.8266666667,21.3233333333,43.6,19.1,54.165,7.4333333333,93.1333333333,18.79,38.645,21.28,50.2905555556,19.1,47.93,8.6833333333,738.9,74.3333333333,10.6666666667,38,4.3333333333,41.5897357394,41.5897357394 -60,20,21,45.03,20.1,43.76,21.5,43.79,21.39,43.1933333333,19.1,53.6494444444,7.5,91.9566666667,18.77,38.575,21.245,49.865,19.1,47.6566666667,8.7,739,73,11,40,4.1,33.9919279213,33.9919279213 -60,30,20.9633333333,44.9666666667,20.1,43.6266666667,21.5,43.79,21.4633333333,43.0266666667,19.1055555556,53.22,7.5,91.43,18.79,38.4833333333,21.21,49.4527777778,19,47.145,8.6833333333,738.95,73.5,10.5,40,4.1833333333,20.8019716083,20.8019716083 -60,20,20.89,44.9,20.1,43.4666666667,21.5,43.76,21.39,42.9,19.1166666667,52.9316666667,7.5633333333,91.8666666667,18.79,38.4111111111,21.21,49.2383333333,19,46.7666666667,8.6666666667,738.9,74,10,40,4.2666666667,17.1910874546,17.1910874546 -300,20,20.89,44.9566666667,20.1,43.3266666667,21.5,43.6266666667,21.39,42.8633333333,19.1,53.3027777778,7.7633333333,91.9333333333,18.77,38.4,21.2,49.1816666667,19,46.4333333333,8.65,738.85,74.5,9.5,40,4.35,14.8437338299,14.8437338299 -360,30,20.89,45.49,20.1,43.36,21.5,43.7,21.3233333333,42.8633333333,19.0888888889,54.0033333333,7.9,91.3,18.79,38.3083333333,21.1944444444,49.1022222222,19,46.2233333333,8.6333333333,738.8,75,9,40,4.4333333333,41.1066802684,41.1066802684 -160,20,20.89,45.3633333333,20.1,43.5,21.5,43.6266666667,21.29,42.79,19.0055555556,54.4244444444,8.0333333333,90.6333333333,18.755,38.29,21.1666666667,49.025,19,46.03,8.6166666667,738.75,75.5,8.5,40,4.5166666667,25.043992803,25.043992803 -110,20,20.89,45.23,20.1,43.4,21.5,43.59,21.29,42.79,19,54.6877777778,8.1,89.2933333333,18.775,38.275,21.1333333333,48.9444444444,19,45.8633333333,8.6,738.7,76,8,40,4.6,24.8393150629,24.8393150629 -80,30,20.89,45.06,20.1,43.4,21.4266666667,43.53,21.29,42.79,19,54.7611111111,8.3,87.42,18.75,38.2,21.1111111111,49.0338888889,19,45.73,8.5,738.8,76.6666666667,8.5,43.8333333333,4.6166666667,18.2180965785,18.2180965785 -80,0,20.89,44.86,20.1,43.29,21.4266666667,43.4333333333,21.29,42.8175,19,54.845,8.5666666667,86.2666666667,18.735,38.1938888889,21.1722222222,49.1772222222,19,45.5266666667,8.4,738.9,77.3333333333,9,47.6666666667,4.6333333333,42.4690740532,42.4690740532 -70,0,20.89,44.79,20.1,43.195,21.4266666667,43.4333333333,21.23,42.6333333333,19,54.9216666667,8.6666666667,81.06,18.71,38.1266666667,21.1888888889,49.2,19,45.3266666667,8.3,739,78,9.5,51.5,4.65,15.6766288099,15.6766288099 -80,0,20.89,44.73,20.1,43.03,21.39,43.4,21.2,42.26,18.945,54.95,8.86,77.7266666667,18.71,38.055,21.1111111111,49.1277777778,19,45.1633333333,8.2,739.1,78.6666666667,10,55.3333333333,4.6666666667,10.6054197415,10.6054197415 -100,0,20.89,44.545,20.1,42.8633333333,21.39,43.5,21.1333333333,42.1266666667,18.89,54.8927777778,8.89,75.9666666667,18.71,37.95,21.1333333333,48.9294444444,19,45.03,8.1,739.2,79.3333333333,10.5,59.1666666667,4.6833333333,29.2896729312,29.2896729312 -160,20,20.79,44.26,20.0333333333,42.6566666667,21.39,43.5,21,41.79,18.89,54.775,8.7566666667,76.6333333333,18.72,37.9722222222,21.1277777778,48.7994444444,18.9266666667,44.8333333333,8,739.3,80,11,63,4.7,42.1183425351,42.1183425351 -710,20,20.79,44.1266666667,20,42.6266666667,21.29,43.4,21,41.8633333333,18.89,54.75,7.5233333333,80.8,18.73,37.9666666667,21.1,48.7,19,44.5666666667,7.8833333333,739.3166666667,80.3333333333,10.5,59.1666666667,4.65,6.2691953965,6.2691953965 -660,0,20.79,44.09,20,42.6266666667,21.3566666667,43.5266666667,20.9266666667,42.03,18.89,54.6572222222,7.1233333333,85,18.765,37.9388888889,21.1333333333,48.76,18.9266666667,44.43,7.7666666667,739.3333333333,80.6666666667,10,55.3333333333,4.6,18.8765191939,18.8765191939 -300,0,20.79,44.09,20.1,42.73,21.6966666667,44.7633333333,21,42.43,18.89,54.5872222222,7.2266666667,86.2633333333,18.79,37.9,21.15,48.645,18.9266666667,44.1566666667,7.65,739.35,81,9.5,51.5,4.55,33.5801856127,33.5801856127 -300,0,20.89,44.4266666667,20.1666666667,42.73,22.03,45.43,21,42.73,18.89,54.52,7.3,85.2633333333,18.8511111111,37.9,21.1938888889,48.6866666667,18.9266666667,43.9666666667,7.5333333333,739.3666666667,81.3333333333,9,47.6666666667,4.5,9.3884230242,9.3884230242 -290,0,20.89,44.76,20.2,42.79,22.46,45.6633333333,21,42.79,18.89,54.4888888889,7.2266666667,84.9933333333,18.89,37.845,21.26,48.76,19,43.9666666667,7.4166666667,739.3833333333,81.6666666667,8.5,43.8333333333,4.45,25.2379511832,25.2379511832 -250,0,20.9633333333,44.8266666667,20.2,42.8633333333,22.7266666667,45.39,21,42.8266666667,18.89,54.4888888889,7.3666666667,85.9933333333,18.8961111111,37.79,21.3288888889,48.9233333333,19,43.9,7.3,739.4,82,8,40,4.4,1.3643423677,1.3643423677 -300,0,20.9633333333,44.9,20.2,42.9333333333,22.9266666667,45.1933333333,21,42.9666666667,18.89,54.5,7.8566666667,85.4566666667,18.9388888889,37.765,21.39,49.0272222222,19,43.9666666667,7.6333333333,739.3833333333,79.6666666667,9,40,4.2666666667,24.8148925486,24.8148925486 -370,0,21,45.3266666667,20.2,43,23.0666666667,44.8,21,43.1566666667,18.89,54.51,8.5233333333,77.2633333333,19,37.5305555556,21.4083333333,48.7572222222,19,44.09,7.9666666667,739.3666666667,77.3333333333,10,40,4.1333333333,47.3675855435,47.3675855435 -190,10,21,45.4,20.23,43.03,23.2,44.2666666667,21,43.29,18.8788888889,54.575,8.83,68.69,19,37.2266666667,21.5277777778,48.5394444444,19,43.7233333333,8.3,739.35,75,11,40,4,19.0591066959,19.0591066959 -110,0,21.1,45.6266666667,20.29,43.1633333333,23.26,43.8,21,43.26,18.8566666667,54.56,8.89,67.9566666667,19.0055555556,36.9594444444,21.5888888889,48.0883333333,19,43.53,8.6333333333,739.3333333333,72.6666666667,12,40,3.8666666667,34.9106863141,34.9106863141 -80,0,21.1,45.2933333333,20.29,43.2,23.29,43.1933333333,21,43.1266666667,18.8677777778,54.555,9.0333333333,66.9633333333,19.0444444444,36.9166666667,21.6388888889,47.8022222222,19,43.3633333333,8.9666666667,739.3166666667,70.3333333333,13,40,3.7333333333,34.4382904237,34.4382904237 -90,0,21.1333333333,44.93,20.3566666667,43.0666666667,23.23,42.8,21,43.09,18.89,54.55,9.1225,66.6725,19.1,36.7933333333,21.755,47.6327777778,19,43.43,9.3,739.3,68,14,40,3.6,23.8865338382,23.8865338382 -90,0,21.1333333333,44.79,20.29,42.8633333333,23.0666666667,42.59,21,42.9633333333,18.8844444444,54.465,9.2633333333,67.6666666667,19.1,36.6694444444,21.79,47.45,19,43.56,9.0166666667,739.35,68.5,13.5,40,3.4333333333,13.667380705,13.667380705 -350,0,21.1,44.56,20.29,42.73,23,42.59,21,43,18.8177777778,54.2722222222,9.19,69.1,19.1,36.565,21.8511111111,47.5383333333,19,43.3,8.7333333333,739.4,69,13,40,3.2666666667,37.8458166146,37.8458166146 -750,20,21.1,44.6933333333,20.29,42.59,22.89,42.5666666667,21,43,18.8566666667,54.225,9.13,67.8266666667,19.1,36.51,21.9205555556,47.645,19,43.0266666667,8.45,739.45,69.5,12.5,40,3.1,12.3766030301,12.3766030301 -520,20,21.1,44.8333333333,20.29,42.6633333333,22.8233333333,42.7,21,42.995,18.8788888889,54.1877777778,8.4633333333,70.2266666667,19.1,36.4722222222,22,47.4483333333,19,42.8266666667,8.1666666667,739.5,70,12,40,2.9333333333,26.0669741663,26.0669741663 -350,30,21.1666666667,44.9,20.29,42.845,22.945,43.045,21.0333333333,43.1266666667,18.8788888889,54.1877777778,8.13,71.3666666667,19.1,36.3805555556,21.9755555556,46.6705555556,19,42.76,7.8833333333,739.55,70.5,11.5,40,2.7666666667,30.6421620422,30.6421620422 -290,20,21.2,45.045,20.29,43.03,23.2,42.93,21.1,43.2,18.84,54.145,7.7,73,19.1,36.3083333333,21.9083333333,46.1083333333,19,42.6266666667,7.6,739.6,71,11,40,2.6,4.7524988186,4.7524988186 -260,20,21.2,45.03,20.29,43.09,23.26,42.73,21.1,43.23,18.8511111111,54.1572222222,7.4333333333,77.5933333333,19.1,36.45,21.89,45.7266666667,19,42.59,7.6833333333,739.6333333333,70.6666666667,10.8333333333,37.6666666667,2.6,28.2879381906,28.2879381906 -230,30,21.2,44.7566666667,20.29,43.1633333333,23.4933333333,42.6333333333,21.1666666667,43.43,18.8566666667,54.1633333333,7.5,79.33,19.1166666667,36.515,21.8455555556,45.3838888889,19,42.59,7.7666666667,739.6666666667,70.3333333333,10.6666666667,35.3333333333,2.6,0.8437080774,0.8437080774 -200,20,21.23,44.6266666667,20.29,43.09,23.8266666667,43.1,21.2,43.4666666667,18.8511111111,54.0711111111,7.56,78.4566666667,19.2927777778,36.575,21.89,45.1022222222,19,42.73,7.85,739.7,70,10.5,33,2.6,9.9939441192,9.9939441192 -80,20,21.29,44.5666666667,20.39,42.9,24.0333333333,43.36,21.26,43.4,18.8622222222,54.03,7.76,74.23,19.4572222222,36.47,21.9755555556,44.7744444444,19,42.8633333333,7.9333333333,739.7333333333,69.6666666667,10.3333333333,30.6666666667,2.6,20.8791900426,20.8791900426 -120,20,21.29,44.2233333333,20.39,42.7666666667,24.1,43.4333333333,21.3233333333,43.1933333333,18.8566666667,54.0144444444,8.0333333333,71.23,19.5,36.1794444444,21.9572222222,44.4655555556,19,42.8633333333,8.0166666667,739.7666666667,69.3333333333,10.1666666667,28.3333333333,2.6,10.2753044222,10.2753044222 -220,30,21.29,44.4233333333,20.29,42.4,23.9633333333,43.0633333333,21.39,42.9333333333,18.8288888889,53.8683333333,8.2266666667,70.1333333333,19.5,36.0094444444,21.9755555556,44.5933333333,19,42.79,8.1,739.8,69,10,26,2.6,18.8610703452,18.8610703452 -700,20,21.29,44.2666666667,20.29,42.4666666667,23.7633333333,42.3966666667,21.39,42.76,18.8844444444,53.8877777778,8.36,68.86,19.445,35.8411111111,22,44.6755555556,19,42.56,8.0833333333,739.85,68.8333333333,10.1666666667,28.3333333333,2.5666666667,3.8225858938,3.8225858938 -610,20,21.29,44.1333333333,20.29,42.4666666667,23.6,42.2266666667,21.39,42.6266666667,18.8288888889,53.7288888889,8.46,66.6966666667,19.39,35.7038888889,22.0833333333,44.72,19,42.36,8.0666666667,739.9,68.6666666667,10.3333333333,30.6666666667,2.5333333333,7.2486997815,7.2486997815 -370,30,21.29,44.0633333333,20.3566666667,42.3266666667,23.6666666667,42.6933333333,21.39,42.59,18.84,53.6488888889,8.46,65.8966666667,19.4205555556,35.6327777778,22.15,44.62,19,42.2,8.05,739.95,68.5,10.5,33,2.5,27.6795977028,27.6795977028 -280,20,21.29,43.73,20.5,42.1633333333,23.96,43.33,21.39,42.59,18.8788888889,53.6166666667,8.16,65.93,19.5611111111,35.5677777778,22.235,44.52,19,42.23,8.0333333333,740,68.3333333333,10.6666666667,35.3333333333,2.4666666667,33.0871280399,33.0871280399 -280,20,21.3233333333,43.6633333333,20.5666666667,42.03,24.2266666667,43.7233333333,21.5,42.56,18.84,53.5061111111,8.1,65.3966666667,19.6222222222,35.3783333333,22.29,44.5,19,42.3633333333,8.0166666667,740.05,68.1666666667,10.8333333333,37.6666666667,2.4333333333,36.7823752225,36.7823752225 -280,20,21.39,43.4633333333,20.6,41.79,24.5333333333,44.09,21.5,42.5,18.8011111111,53.3572222222,8.245,64.795,19.6,35.255,22.3511111111,44.4388888889,19,42.4,8,740.1,68,11,40,2.4,18.8104708795,18.8104708795 -260,30,21.39,43.1333333333,20.6,41.73,24.6666666667,44.1633333333,21.5,42.4666666667,18.84,53.2472222222,8.5633333333,64.3,19.6,35.1877777778,22.445,44.5055555556,19,42.2666666667,7.9833333333,740.25,69.1666666667,11.1666666667,44.1666666667,2.6166666667,43.4378576349,43.4378576349 -140,20,21.39,43.3333333333,20.73,41.6633333333,24.79,43.8633333333,21.5,42.4,18.8677777778,53.1205555556,8.7633333333,63.5666666667,19.6,35.0961111111,22.5611111111,44.8922222222,19,42.2,7.9666666667,740.4,70.3333333333,11.3333333333,48.3333333333,2.8333333333,39.7735023289,39.7735023289 -140,20,21.5,43.1333333333,20.79,41.4633333333,24.79,43.53,21.5,42.3633333333,18.8844444444,53.0494444444,8.9266666667,62.4933333333,19.6,35.09,22.6,45.3,19,42.1266666667,7.95,740.55,71.5,11.5,52.5,3.05,41.0901510972,41.0901510972 -100,20,21.5,42.86,20.9266666667,41.3633333333,24.7266666667,43.16,21.5,42.29,18.8622222222,52.9922222222,8.9266666667,62.7666666667,19.5944444444,35.09,22.6277777778,45.5033333333,19,42,7.9333333333,740.7,72.6666666667,11.6666666667,56.6666666667,3.2666666667,45.0847656233,45.0847656233 -120,0,21.6,42.6633333333,21.0666666667,41.29,24.5333333333,42.7666666667,21.5,42.145,18.8566666667,52.9611111111,8.69,62.3933333333,19.5111111111,35.035,22.6666666667,45.4777777778,19,41.9333333333,7.9166666667,740.85,73.8333333333,11.8333333333,60.8333333333,3.4833333333,49.1253670654,49.1253670654 -120,0,21.6666666667,42.59,21.15,41.1,24.3566666667,42.4666666667,21.5,42,18.8566666667,52.8988888889,8.43,66.7933333333,19.5,35.1033333333,22.705,45.3494444444,19,41.76,7.9,741,75,12,65,3.7,13.297554024,13.297554024 -100,10,21.79,42.3633333333,21.3233333333,40.8633333333,24.1975,42.1675,21.4266666667,42,18.8233333333,52.8005555556,7.7,72.0633333333,19.5,35.245,22.74,45.2527777778,19,41.7,7.9166666667,741.0166666667,74,11.8333333333,58.5,3.5166666667,39.3549185246,39.3549185246 -150,0,21.8925,42.24,21.4633333333,40.73,24.0333333333,41.9633333333,21.39,42.09,18.8633333333,52.778,7.3666666667,71.73,19.5,35.29,22.79,45.0155555556,19,41.7,7.9333333333,741.0333333333,73,11.6666666667,52,3.3333333333,9.537351504,9.537351504 -480,0,22.0666666667,42.83,21.6333333333,40.4666666667,23.89,41.8266666667,21.3233333333,42.1633333333,18.89,52.785,7.3,69.96,19.4877777778,35.28,22.78,44.9333333333,19,41.7,7.95,741.05,72,11.5,45.5,3.15,0.1874550828,0.1874550828 -320,0,22.23,43.4633333333,21.76,40.4,23.89,42.0266666667,21.29,42.23,18.89,52.775,7.3,69.3666666667,19.4205555556,35.1577777778,22.78,44.9833333333,19,41.6266666667,7.9666666667,741.0666666667,71,11.3333333333,39,2.9666666667,27.8497929452,27.8497929452 -300,0,22.3566666667,43.53,21.89,40.26,24.0666666667,42.5666666667,21.23,42.29,18.89,52.79,7.3966666667,68.4633333333,19.39,35.09,22.79,44.9777777778,19,41.7,7.9833333333,741.0833333333,70,11.1666666667,32.5,2.7833333333,20.4874638119,20.4874638119 -280,0,22.5333333333,43.59,22.03,40.2,24.26,42.76,21.2,42.3266666667,18.89,52.8694444444,7.6566666667,67.0633333333,19.39,35.09,22.79,44.9972222222,18.89,41.6633333333,8,741.1,69,11,26,2.6,46.147440013,46.147440013 -390,10,22.6666666667,43.59,22.23,40,24.36,42.8266666667,21.2,42.4,18.89,52.9166666667,7.8333333333,63.9633333333,19.39,35.045,22.79,44.7772222222,18.89,41.59,7.9666666667,741.2333333333,69.3333333333,11.1666666667,28.3333333333,2.6333333333,26.0531741893,26.0531741893 -480,20,22.9266666667,43.6233333333,22.43,39.9333333333,24.5666666667,42.8266666667,21.1,42.53,18.89,53,7.9,63.83,19.3622222222,35,22.77,44.6083333333,18.89,41.56,7.9333333333,741.3666666667,69.6666666667,11.3333333333,30.6666666667,2.6666666667,2.0696298918,2.0696298918 -460,20,23.0666666667,43.29,22.6333333333,39.6633333333,24.7633333333,43.1566666667,21.1,42.6633333333,18.89,53.075,7.8333333333,63.6266666667,19.3011111111,35,22.745,44.59,18.89,41.5,7.9,741.5,70,11.5,33,2.7,28.2925625681,28.2925625681 -380,20,23.23,49.7666666667,22.8266666667,39.59,24.9633333333,43.3633333333,21.2,43.0666666667,18.89,53.1694444444,7.9,63.4266666667,19.29,35,22.7,44.6194444444,18.89,41.4,7.8666666667,741.6333333333,70.3333333333,11.6666666667,35.3333333333,2.7333333333,10.0591289811,10.0591289811 -370,30,23.3566666667,53.4933333333,23.0333333333,39.86,25.1333333333,43.5,21.26,43.86,18.8961111111,53.3477777778,7.85,64.295,19.29,35,22.7,44.9527777778,18.89,41.3633333333,7.8333333333,741.7666666667,70.6666666667,11.8333333333,37.6666666667,2.7666666667,21.7357415939,21.7357415939 -420,10,23.5,49.7966666667,23.1666666667,40,25.2,43.5,21.3233333333,44.7266666667,18.9327777778,53.5844444444,7.6566666667,65.3233333333,19.29,35.075,22.7,45.2916666667,18.89,41.29,7.8,741.9,71,12,40,2.8,11.8536026799,11.8536026799 -100,10,23.5666666667,48.13,23.23,40.3,25.1666666667,43.3633333333,21.39,45.1933333333,19.1405555556,53.6361111111,7.59,65.8633333333,19.29,35.09,22.7,45.37,18.89,41.29,7.7833333333,742.0166666667,70.8333333333,12,37.5,2.75,49.3430155562,49.3430155562 -90,10,23.7,48.13,23.3566666667,40.6333333333,25.1,43.6966666667,21.39,44.7633333333,19.8511111111,52.5861111111,7.4666666667,66.19,19.29,35.09,22.6111111111,44.7944444444,18.89,41.29,7.7666666667,742.1333333333,70.6666666667,12,35,2.7,32.3051591287,32.3051591287 -90,0,23.7,47.13,23.39,40.7,24.9633333333,43.8633333333,21.3233333333,44.03,20.2038888889,51.3333333333,7.3333333333,66.4566666667,19.29,35.09,22.5611111111,44.525,18.89,41.29,7.75,742.25,70.5,12,32.5,2.65,39.1192378011,39.1192378011 -90,10,23.79,46.3266666667,23.4633333333,40.7,24.8233333333,43.6566666667,21.26,43.3333333333,20.4094444444,50.3388888889,7.3,66.5233333333,19.28,35.08,22.6,44.7627777778,18.89,41.23,7.7333333333,742.3666666667,70.3333333333,12,30,2.6,49.571077514,49.571077514 -80,0,23.79,44.9333333333,23.5333333333,40.6333333333,24.7266666667,43.4666666667,21.2,42.8,20.5666666667,49.5866666667,7.3666666667,66.0633333333,19.28,35.08,22.6,45.2533333333,18.89,41.2,7.7166666667,742.4833333333,70.1666666667,12,27.5,2.55,40.8570581116,40.8570581116 -90,10,23.8566666667,44.0333333333,23.6,40.4333333333,24.6,43.3266666667,21.1666666667,42.3333333333,20.7138888889,48.8466666667,7.4333333333,65.8666666667,19.255,35.055,22.6,45.4322222222,18.89,41.1266666667,7.7,742.6,70,12,25,2.5,16.0677526728,16.0677526728 -150,30,23.79,43.3666666667,23.5666666667,40.1333333333,24.4725,43.24,21.125,42.5725,21.0344444444,65.0866666667,7.5,65.3266666667,19.2,35,22.6,45.3388888889,18.89,41.09,7.7166666667,742.7166666667,69.8333333333,11.5,24.6666666667,2.5,4.9002794083,4.9002794083 -100,20,23.79,42.6233333333,23.5,39.82,24.39,43.09,21.26,43.6233333333,21.16,76.8272222222,7.6233333333,64.46,19.2,34.9388888889,22.6,45.5605555556,18.89,41.09,7.7333333333,742.8333333333,69.6666666667,11,24.3333333333,2.5,16.7435817304,16.7435817304 -100,20,23.79,42.03,23.5,39.6266666667,24.29,43,21.4266666667,43.79,20.735,76.8744444444,7.69,63.9333333333,19.2,34.9,22.6,45.4372222222,18.89,41,7.75,742.95,69.5,10.5,24,2.5,0.9426662,0.9426662 -90,30,23.79,41.645,23.5,39.6566666667,24.26,42.8333333333,21.5666666667,43.79,20.65,69.7022222222,7.69,63.59,19.2,34.9,22.5833333333,44.7666666667,18.89,40.9333333333,7.7666666667,743.0666666667,69.3333333333,10,23.6666666667,2.5,2.2137561929,2.2137561929 -80,20,23.79,41.59,23.5,39.93,24.2,42.7,21.6,43.6633333333,20.7805555556,59.5172222222,7.69,63.7233333333,19.2,34.9,22.5,44.0944444444,18.8566666667,40.8633333333,7.7833333333,743.1833333333,69.1666666667,9.5,23.3333333333,2.5,38.8603145257,38.8603145257 -100,20,23.79,41.59,23.39,40,24.1666666667,42.6633333333,21.6,43.53,20.8788888889,55.4238888889,7.69,63.8266666667,19.2,34.8327777778,22.4327777778,43.5427777778,18.8566666667,40.79,7.8,743.3,69,9,23,2.5,7.4411197449,7.4411197449 -90,20,23.79,41.6266666667,23.39,40,24.1,42.6633333333,21.6,43.29,20.9572222222,53.2183333333,7.6233333333,63.7666666667,19.2,34.845,22.3664705882,42.9982352941,18.89,40.79,7.7666666667,743.4166666667,69,9.1666666667,23.5,2.4666666667,1.9237568835,1.9237568835 -90,30,23.79,41.6266666667,23.4266666667,40.03,24,42.5,21.6,43.23,21,51.6416666667,7.6233333333,63.8266666667,19.1722222222,34.8083333333,22.29,42.6305882353,18.89,40.79,7.7333333333,743.5333333333,69,9.3333333333,24,2.4333333333,38.9487335458,38.9487335458 -70,30,23.73,41.4666666667,23.4266666667,40.03,24,42.56,21.6,43,21.0222222222,50.4983333333,7.69,63.8266666667,19.1833333333,34.79,22.2794117647,42.2541176471,18.79,40.59,7.7,743.65,69,9.5,24.5,2.4,0.9097830858,0.9097830858 -90,30,23.73,41.3266666667,23.29,39.8633333333,23.79,42.1933333333,21.6,42.9333333333,21.0722222222,49.6316666667,7.69,63.29,19.2,34.79,22.2,41.82,18.79,40.59,7.6666666667,743.7666666667,69,9.6666666667,25,2.3666666667,11.4019513712,11.4019513712 -70,20,23.7,41.1633333333,23.29,39.79,23.79,42.6,21.7,43,21.0772222222,50.1938888889,7.69,63.2975,19.15,34.775,22.2,41.5422222222,18.79,40.545,7.6333333333,743.8833333333,69,9.8333333333,25.5,2.3333333333,42.5523806596,42.5523806596 -90,0,23.7,41.03,23.2,39.7,23.79,42.9333333333,21.7,42.9333333333,21.5461111111,72.7422222222,7.5633333333,63.8933333333,19.15,34.8738888889,22.2,42.0088888889,18.79,40.5,7.6,744,69,10,26,2.3,15.665822837,15.665822837 -70,30,23.6,40.86,23.2,39.6266666667,23.79,43,21.6,42.79,21.9766666667,81.7888888889,7.3666666667,64.9933333333,19.1888888889,35.16,22.25,43.3088888889,18.79,40.56,7.5,744.0666666667,69.8333333333,10.1666666667,26.5,2.3666666667,38.3021046291,38.3021046291 -60,20,23.6,41.06,23.1,39.83,23.8233333333,43.03,21.6,42.93,21.5711111111,73.5805555556,7.3666666667,66.06,19.1888888889,35.4333333333,22.29,44.2666666667,18.8233333333,41.03,7.4,744.1333333333,70.6666666667,10.3333333333,27,2.4333333333,18.1014717789,18.1014717789 -70,20,23.5,41.3266666667,23.1,40.3633333333,23.89,43.03,21.6,43.4633333333,21.3916666667,63.8705555556,7.4,66.4333333333,19.1555555556,35.67,22.3233333333,45.1722222222,18.89,41.43,7.3,744.2,71.5,10.5,27.5,2.5,9.56259456,9.56259456 -60,20,23.5,41.5266666667,22.9633333333,40.89,23.89,43.03,21.6,43.7233333333,21.27,58.2944444444,7.3333333333,66.5,19.1666666667,35.9033333333,22.3455555556,45.7033333333,18.89,41.7666666667,7.2,744.2666666667,72.3333333333,10.6666666667,28,2.5666666667,23.758087738,23.758087738 -60,20,23.39,41.6933333333,22.89,41.1633333333,23.89,43.09,21.6,44.03,21.235,55.6038888889,7.3,66.4333333333,19.1888888889,36.06,22.29,45.9433333333,18.89,41.9666666667,7.1,744.3333333333,73.1666666667,10.8333333333,28.5,2.6333333333,12.3824026436,12.3824026436 -60,20,23.39,42.0266666667,22.79,41.09,23.79,43,21.6666666667,44.2233333333,21.1722222222,53.7994444444,7.2266666667,67.8333333333,19.1666666667,36.2366666667,22.29,46.1352941176,18.89,42.23,7,744.4,74,11,29,2.7,47.3671254353,47.3671254353 -50,30,23.29,42.2,22.73,41.1633333333,23.79,43,21.7,44.29,21.1,52.58,6.5233333333,73.0333333333,19.1777777778,36.345,22.2105882353,46.4041176471,18.89,42.3633333333,6.9,744.45,75,11,27.8333333333,2.7833333333,10.3567746468,10.3567746468 -60,20,23.29,42.26,22.6666666667,41.2,23.7,43,21.7,44.3725,21.05,51.6627777778,5.9966666667,75.4333333333,19.1722222222,36.5244444444,22.2423529412,46.9441176471,18.89,42.53,6.8,744.5,76,11,26.6666666667,2.8666666667,44.6828301414,44.6828301414 -60,20,23.2,42.23,22.6,41.2,23.6333333333,42.9333333333,21.7,44.4,21,50.8816666667,5.6566666667,77.13,19.1333333333,36.6877777778,22.29,47.3533333333,18.89,42.59,6.7,744.55,77,11,25.5,2.95,48.0113808298,48.0113808298 -60,20,23.1333333333,42.29,22.5,41.245,23.5666666667,42.9,21.79,44.4,21,50.38,5.73,77.73,19.1388888889,36.775,22.29,47.4861111111,18.89,42.73,6.6,744.6,78,11,24.3333333333,3.0333333333,48.8854843425,48.8854843425 -50,0,23.1,42.4,22.39,41.2,23.5,42.8725,21.79,44.4,20.9205555556,49.9144444444,6.0633333333,76.7566666667,19.1888888889,36.845,22.285,47.755,18.89,42.79,6.5,744.65,79,11,23.1666666667,3.1166666667,3.3888874226,3.3888874226 -50,0,23.025,42.475,22.39,41.26,23.5,42.79,21.7,44.09,20.9022222222,49.5833333333,6.1233333333,75.49,19.1388888889,36.9611111111,22.255,48.0255555556,18.89,43.03,6.4,744.7,80,11,22,3.2,1.5919791535,1.5919791535 -50,0,23,42.7,22.29,41.29,23.445,42.7225,21.6333333333,43.9633333333,20.89,49.2411111111,5.9666666667,74.8966666667,19.15,37.025,22.29,48.4488888889,18.89,43.1633333333,6.3666666667,744.7166666667,79.8333333333,10.8333333333,23,3.1166666667,22.2419188591,22.2419188591 -50,0,22.89,42.6633333333,22.23,41.23,23.39,42.6633333333,21.5666666667,43.76,20.84,48.905,5.9,75.1566666667,19.1777777778,37.0961111111,22.29,48.7127777778,18.89,43.4333333333,6.3333333333,744.7333333333,79.6666666667,10.6666666667,24,3.0333333333,16.0892277025,16.0892277025 -40,0,22.8233333333,42.59,22.2,41.2,23.39,42.59,21.4266666667,43.6266666667,20.8233333333,48.6572222222,5.8666666667,75.4333333333,19.1388888889,37.2327777778,22.285,48.79,18.9633333333,43.56,6.3,744.75,79.5,10.5,25,2.95,36.1627697246,36.1627697246 -50,0,22.79,42.5,22.1333333333,41.2,23.29,42.7,21.39,43.59,20.8011111111,48.3905555556,5.875,75.495,19.1,37.23,22.23,48.8672222222,18.89,43.73,6.2666666667,744.7666666667,79.3333333333,10.3333333333,26,2.8666666667,42.5774946809,42.5774946809 -40,0,22.79,42.5,22.0666666667,41.26,23.29,42.7,21.39,43.59,20.79,48.1966666667,5.8333333333,75.16,19.1222222222,37.29,22.23,48.9333333333,18.89,43.8633333333,6.2333333333,744.7833333333,79.1666666667,10.1666666667,27,2.7833333333,24.3306754273,24.3306754273 -40,0,22.7,42.5,22,41.2,23.2,42.6266666667,21.29,43.5,20.765,48.045,5.9,75.3,19.1,37.3083333333,22.23,48.9811111111,18.945,43.95,6.2,744.8,79,10,28,2.7,19.0312920604,19.0312920604 -60,0,22.7,42.4333333333,21.9633333333,41.2,23.2,42.7,21.23,43.4333333333,20.7,47.8983333333,5.9,75.16,19.1,37.4,22.24,49.04,18.9633333333,44.1266666667,6.2166666667,744.8,79,9.6666666667,30,2.7166666667,20.8923065802,20.8923065802 -50,0,22.6,42.29,21.89,41.2,23.2,42.7,21.1666666667,43.4,20.7,47.765,5.8333333333,75.2566666667,19.1,37.4222222222,22.2,49.045,18.89,44.26,6.2333333333,744.8,79,9.3333333333,32,2.7333333333,31.2394068926,31.2394068926 -50,0,22.6,42.29,21.8566666667,41.1633333333,23.2,42.7,21.1,43.4,20.7,47.6816666667,5.9666666667,75.4633333333,19.1,37.4722222222,22.1833333333,49.0094444444,19,44.5,6.25,744.8,79,9,34,2.75,21.2165801786,21.2165801786 -50,0,22.5666666667,42.29,21.79,41.09,23.1,42.73,21.0666666667,43.3633333333,20.6277777778,47.525,6.1233333333,74.8,19.1,37.5,22.0888888889,48.8988888889,19,44.56,6.2666666667,744.8,79,8.6666666667,36,2.7666666667,12.9125155159,12.9125155159 -40,0,22.5,42.29,21.79,41.09,23.1,42.73,21,43.29,20.6,47.4105555556,6.1233333333,74.5933333333,19.1,37.5,22.0444444444,48.7561111111,19,44.73,6.2833333333,744.8,79,8.3333333333,38,2.7833333333,47.92083106,47.92083106 -40,0,22.5,42.29,21.73,41.09,23.1,42.7,21,43.29,20.6,47.3022222222,6.1566666667,74.6266666667,19.1,37.545,22.05,48.745,19,44.79,6.3,744.8,79,8,40,2.8,1.5409033513,1.5409033513 -50,0,22.4266666667,42.23,21.7,41.1266666667,23.1,42.7,20.9266666667,43.29,20.5888888889,47.255,6.1566666667,74.56,19.1,37.58,22,48.7933333333,19,44.9,6.3,744.7666666667,79.8333333333,8.1666666667,40,2.95,12.8733645193,12.8733645193 -40,0,22.39,42.23,21.6333333333,41.1266666667,23.0333333333,42.6266666667,20.89,43.29,20.5666666667,47.2,6.3333333333,74.69,19.1,37.5961111111,22,49.0055555556,19,44.9666666667,6.3,744.7333333333,80.6666666667,8.3333333333,40,3.1,5.6858367054,5.6858367054 -50,0,22.3233333333,42.29,21.6,41.09,23.0333333333,42.7,20.865,43.2675,20.5166666667,47.1572222222,6.4,74.69,19.1,37.6633333333,22,49.255,19,45.09,6.3,744.7,81.5,8.5,40,3.25,12.1331744944,12.1331744944 -40,0,22.29,42.29,21.6,41.09,23.0333333333,42.6266666667,20.79,43.2,20.5,47.09,6.4,75.43,19.1,37.7,21.9633333333,49.29,19,45.1633333333,6.3,744.6666666667,82.3333333333,8.6666666667,40,3.4,48.5551525839,48.5551525839 -30,0,22.29,42.3633333333,21.5666666667,41.09,23.1,42.7,20.79,43.2,20.5,47.09,6.4666666667,75.9566666667,19.1,37.7,21.9205555556,49.29,19,45.3266666667,6.3,744.6333333333,83.1666666667,8.8333333333,40,3.55,42.6116403192,42.6116403192 -30,0,22.2,42.29,21.5,41.09,23.1,42.6633333333,20.73,43.2,20.4633333333,47.06,6.4,77.0333333333,19.1,37.7,21.89,49.3327777778,19,45.4666666667,6.3,744.6,84,9,40,3.7,19.8410245241,19.8410245241 -30,0,22.1333333333,42.29,21.5,41.1633333333,23.1,42.59,20.7,43.2,20.4816666667,47.075,6.4,77.3,19.1,37.745,21.89,49.2961111111,19,45.73,6.3,744.4833333333,83.5,9,38.1666666667,3.6333333333,24.004639918,24.004639918 -30,0,22.1,42.29,21.39,41.09,23.1,42.6633333333,20.7,43.2,20.4205555556,47.025,6.3666666667,77.09,19.1,37.79,21.89,49.29,19,45.79,6.3,744.3666666667,83,9,36.3333333333,3.5666666667,48.1555258622,48.1555258622 -50,0,22.1,42.4,21.39,41.09,23.1,42.7,20.6666666667,43.1633333333,20.3961111111,46.9883333333,6.375,76.8225,19.1,37.79,21.8511111111,49.2794444444,19,45.9333333333,6.3,744.25,82.5,9,34.5,3.5,47.9836709448,47.9836709448 -40,0,22.0333333333,42.3266666667,21.39,41.2,23.1,42.76,20.6,43.09,20.39,46.95,6.4666666667,76.0666666667,19.1,37.8816666667,21.79,49.1694444444,19,46.06,6.3,744.1333333333,82,9,32.6666666667,3.4333333333,40.35556569,40.35556569 -40,0,22,42.3266666667,21.3233333333,41.2,23.1,42.8266666667,20.6,43,20.39,46.9388888889,6.5,75.4933333333,19.1,37.9,21.79,49.215,19.0333333333,46.1566666667,6.3,744.0166666667,81.5,9,30.8333333333,3.3666666667,32.7746716561,32.7746716561 -50,0,22,42.4,21.29,41.23,23.1,42.9,20.6,43,20.3733333333,46.9,6.4333333333,75.16,19.1,37.9,21.77,49.45,19.0333333333,46.23,6.3,743.9,81,9,29,3.3,37.9420761717,37.9420761717 -40,0,21.89,42.4,21.29,41.29,23.1,42.9333333333,20.5,43,20.3011111111,46.9,6.5,74.99,19.1,37.9,21.765,49.555,19.1,46.345,6.2833333333,743.7833333333,80.6666666667,8.8333333333,28.8333333333,3.2166666667,35.5443604989,35.5443604989 -50,0,21.89,42.4,21.26,41.26,23.1,42.9333333333,20.5,43,20.29,46.9,6.5,74.4633333333,19.05,37.8622222222,21.775,49.59,19.0666666667,46.4666666667,6.2666666667,743.6666666667,80.3333333333,8.6666666667,28.6666666667,3.1333333333,47.3881078186,47.3881078186 -40,0,21.8566666667,42.4666666667,21.2,41.2,23.1,42.9333333333,20.5,43,20.29,46.8327777778,6.59,73.7,19.0333333333,37.915,21.775,49.535,19.0666666667,46.5266666667,6.25,743.55,80,8.5,28.5,3.05,49.0594545146,49.0594545146 -50,0,21.79,42.4,21.2,41.3266666667,23.1,42.9333333333,20.5,43,20.29,46.79,6.53,73.2266666667,19.0222222222,37.8733333333,21.7,49.5,19.0666666667,46.59,6.2333333333,743.4333333333,79.6666666667,8.3333333333,28.3333333333,2.9666666667,2.7949761483,2.7949761483 -50,0,21.79,42.5,21.2,41.3266666667,23.1,42.9333333333,20.39,42.9,20.29,46.785,6.23,72.79,19.0222222222,37.8144444444,21.7,49.515,19,46.59,6.2166666667,743.3166666667,79.3333333333,8.1666666667,28.1666666667,2.8833333333,12.2700804495,12.2700804495 -40,0,21.79,42.5,21.1666666667,41.4,23.1,43,20.39,42.9,20.29,46.74,5.9633333333,73.5966666667,19.0111111111,37.8438888889,21.7,49.6205555556,19.1,46.73,6.2,743.2,79,8,28,2.8,13.5466905544,13.5466905544 -50,0,21.76,42.53,21.1,41.4,23.1,42.9333333333,20.39,42.9,20.255,46.7116666667,5.9,74.6266666667,19.0111111111,37.9111111111,21.6777777778,49.6866666667,19.1,46.79,6.1666666667,743.1,79.1666666667,8,27.6666666667,2.7833333333,45.4574777861,45.4574777861 -50,0,21.7,42.59,21.1,41.4,23.1,43,20.39,42.9,20.2,46.59,5.76,74.4333333333,19.0222222222,37.9222222222,21.7,49.9166666667,19.1,46.79,6.1333333333,743,79.3333333333,8,27.3333333333,2.7666666667,18.8516771421,18.8516771421 -40,0,21.7,42.59,21.0333333333,41.3266666667,23.1,42.9666666667,20.39,42.9,20.2,46.59,5.56,75.0666666667,19,37.9,21.6166666667,49.7988888889,19.1,46.8633333333,6.1,742.9,79.5,8,27,2.75,13.7527689687,13.7527689687 -40,0,21.7,42.59,21.0333333333,41.4333333333,23.1,42.9666666667,20.39,42.9,20.2,46.59,5.5,75.6666666667,19,37.9,21.6,49.715,19.1,46.9,6.0666666667,742.8,79.6666666667,8,26.6666666667,2.7333333333,8.9115221868,8.9115221868 -50,0,21.6,42.5,21.0333333333,41.4333333333,23.1,43,20.29,42.845,20.2,46.59,5.5,76.1933333333,19,37.8755555556,21.6,49.8688888889,19.1,46.9,6.0333333333,742.7,79.8333333333,8,26.3333333333,2.7166666667,23.6556443851,23.6556443851 -50,0,21.6,42.5,21,41.4,23.1,43,20.29,42.79,20.2,46.555,5.5,76.6666666667,19,37.9,21.6,50.015,19.1,46.9333333333,6,742.6,80,8,26,2.7,19.9394939584,19.9394939584 -50,0,21.6,42.5,21,41.4666666667,23.1,43.03,20.29,42.79,20.2,46.53,5.5266666667,76.4966666667,19,37.9,21.6,50.04,19.1,46.9333333333,6.0666666667,742.4166666667,80,8,26.1666666667,2.7666666667,6.5830381704,6.5830381704 -50,0,21.6,42.56,20.89,41.5,23.1,43.09,20.26,42.76,20.2,46.53,5.425,77.445,19,37.9055555556,21.6,49.9722222222,19.1,47,6.1333333333,742.2333333333,80,8,26.3333333333,2.8333333333,0.9316118667,0.9316118667 -40,0,21.6,42.59,20.89,41.5,23.1,43.045,20.2,42.7,20.1611111111,46.51,5.6266666667,78.1566666667,19,37.9166666667,21.55,49.9216666667,19.1,47.06,6.2,742.05,80,8,26.5,2.9,31.095873192,31.095873192 -50,0,21.525,42.59,20.89,41.56,23.1,43.09,20.2,42.7,20.1,46.51,5.8,77.7966666667,19,37.9055555556,21.5222222222,50.055,19.1,47.09,6.2666666667,741.8666666667,80,8,26.6666666667,2.9666666667,3.9109478006,3.9109478006 -40,0,21.5,42.59,20.89,41.59,23.1,43.09,20.2,42.7,20.1,46.535,5.8,77.6566666667,19,37.9866666667,21.5111111111,50.02,19.1,47.09,6.3333333333,741.6833333333,80,8,26.8333333333,3.0333333333,32.9978559981,32.9978559981 -50,0,21.5,42.7,20.89,41.6633333333,23.1,43.06,20.2,42.7,20.1,46.535,5.9333333333,77.9666666667,19,38,21.5,50,19.1,47.09,6.4,741.5,80,8,27,3.1,36.4663859596,36.4663859596 -40,0,21.5,42.7,20.79,41.59,23.0333333333,42.9333333333,20.2,42.7,20.1,46.5855555556,6,77.76,19,38,21.5,50.02,19.1,47.09,6.4,741.2333333333,80.6666666667,7.5,26.8333333333,3.2166666667,3.5344024422,3.5344024422 -40,30,21.39,42.59,20.79,41.59,23,42.9,20.1666666667,42.7,20.1,46.6877777778,6.1233333333,77.6566666667,18.9938888889,37.9333333333,21.5,50.045,19.1,47.2,6.4,740.9666666667,81.3333333333,7,26.6666666667,3.3333333333,29.771212826,29.771212826 -50,20,21.39,42.59,20.79,41.6566666667,23,42.9666666667,20.1666666667,42.8333333333,20.0833333333,46.6177777778,6.19,77.59,18.9511111111,38,21.4694444444,50.1327777778,19.1,47.2,6.4,740.7,82,6.5,26.5,3.45,4.5398951625,4.5398951625 -70,10,21.39,42.79,20.79,41.79,22.9633333333,42.9666666667,20.23,43.36,20.0166666667,46.5433333333,6.2266666667,77.8333333333,18.9633333333,38,21.4572222222,50.3233333333,19.1,47.1266666667,6.4,740.4333333333,82.6666666667,6,26.3333333333,3.5666666667,45.1938606682,45.1938606682 -60,0,21.39,42.79,20.7,41.73,22.8233333333,42.5666666667,20.23,43.4333333333,20.0277777778,46.6005555556,6.3,77.9,18.9144444444,38,21.4388888889,50.7566666667,19.1,47.09,6.4,740.1666666667,83.3333333333,5.5,26.1666666667,3.6833333333,37.1041308623,37.1041308623 -50,0,21.39,42.9633333333,20.7,41.73,22.79,42.29,20.2,43.5,20,46.59,6.4333333333,78.1933333333,18.89,38.03,21.4572222222,51.1866666667,19.1,47.03,6.4,739.9,84,5,26,3.8,18.4495183523,18.4495183523 -50,0,21.39,43.2966666667,20.7,41.8266666667,22.79,42.23,20.2,43.5,20,46.6083333333,6.5,78.86,18.89,38.025,21.4388888889,51.275,19.1,46.9666666667,6.3333333333,739.6166666667,85.5,5,31.8333333333,3.9833333333,21.5338558541,21.5338558541 -40,0,21.39,43.3633333333,20.7,41.9666666667,22.76,42.2,20.2,43.5,20,46.725,6.4666666667,81.2633333333,18.9205555556,38.08,21.39,51.345,19.1,46.9,6.2666666667,739.3333333333,87,5,37.6666666667,4.1666666667,17.5144585082,17.5144585082 -40,0,21.39,43.29,20.7,42.1266666667,22.7,42.2,20.1333333333,43.5,20,46.8816666667,6.4,82.8566666667,18.9266666667,38.09,21.39,51.5183333333,19.1,46.9,6.2,739.05,88.5,5,43.5,4.35,1.1565061868,1.1565061868 -40,0,21.39,43.4,20.7,42.26,22.675,42.0675,20.1333333333,43.53,20,46.9277777778,6.3,84.3633333333,18.9266666667,38.1388888889,21.39,51.6022222222,19.1,46.9,6.1333333333,738.7666666667,90,5,49.3333333333,4.5333333333,16.8408065918,16.8408065918 -70,0,21.39,43.4666666667,20.6333333333,42.36,22.6,42,20.1333333333,43.59,20,47,6.3,85.3633333333,18.9511111111,38.1694444444,21.39,51.7088888889,19.1,46.8633333333,6.0666666667,738.4833333333,91.5,5,55.1666666667,4.7166666667,18.5262665502,18.5262665502 -70,0,21.39,43.5666666667,20.7,42.56,22.5,41.9666666667,20.1,43.645,20,47,6.2266666667,86.29,18.9205555556,38.0933333333,21.39,51.8144444444,19.1,46.73,6,738.2,93,5,61,4.9,8.4470913047,8.4470913047 -360,0,21.39,43.96,20.7,42.56,22.4266666667,41.7666666667,20.1,43.59,20,46.9833333333,6.2175,87.1425,18.89,38,21.3844444444,51.6272222222,19,46.43,5.9166666667,737.8333333333,93,4.8333333333,61.3333333333,4.8333333333,33.0144587788,33.0144587788 -190,0,21.39,43.76,20.6333333333,42.4333333333,22.4633333333,41.79,20.1,43.53,20,46.8816666667,6.19,87.7,18.8733333333,37.9833333333,21.3122222222,51.2805555556,19,46.1566666667,5.8333333333,737.4666666667,93,4.6666666667,61.6666666667,4.7666666667,29.9182296498,29.9182296498 -150,0,21.39,43.6266666667,20.6,42.29,22.39,41.73,20.0666666667,43.43,20,46.7672222222,6.1566666667,87.7633333333,18.79,37.8205555556,21.3011111111,50.9233333333,19,45.8333333333,5.75,737.1,93,4.5,62,4.7,6.9238840253,6.9238840253 -120,0,21.39,43.56,20.6,42.2,22.3566666667,41.7,20,43.29,20,46.645,6.09,87.8966666667,18.8344444444,37.8094444444,21.29,50.7772222222,19,45.5666666667,5.6666666667,736.7333333333,93,4.3333333333,62.3333333333,4.6333333333,5.9611553908,5.9611553908 -80,0,21.39,43.5,20.6,42.2,22.29,41.7,20.0333333333,43.3266666667,20,46.5094444444,6.06,88.2266666667,18.79,37.71,21.29,50.5733333333,19,45.2233333333,5.5833333333,736.3666666667,93,4.1666666667,62.6666666667,4.5666666667,25.9603355778,25.9603355778 -60,0,21.29,43.45,20.6,42.1266666667,22.29,41.6266666667,20.1,43.3266666667,20,46.4333333333,6,88.3666666667,18.79,37.7,21.28,50.4377777778,19,44.9633333333,5.5,736,93,4,63,4.5,34.4954654342,34.4954654342 -180,10,21.29,43.26,20.6,42.1266666667,22.26,41.56,20,43.09,19.9755555556,46.3388888889,6.06,88.2633333333,18.79,37.6205555556,21.21,50.1438888889,19,44.7233333333,5.4166666667,735.5666666667,93.6666666667,3.6666666667,63,4.5166666667,13.0022340338,13.0022340338 -180,0,21.29,43.1266666667,20.6,42,22.2,41.5,20,43.09,20,46.3177777778,6,88.19,18.79,37.59,21.215,49.965,19,44.59,5.3333333333,735.1333333333,94.3333333333,3.3333333333,63,4.5333333333,21.4738799608,21.4738799608 -480,0,21.29,42.9666666667,20.6,42,22.2,41.4,20,43,19.9327777778,46.21,5.9,88.4333333333,18.79,37.59,21.2,49.95,19,45.1666666667,5.25,734.7,95,3,63,4.55,45.9447891102,45.9447891102 -530,0,21.29,43.0266666667,20.5,41.9,22.2,41.4,20,43,19.89,46.22,5.9666666667,88.3666666667,18.79,37.59,21.245,50.0338888889,19.05,46.1425,5.1666666667,734.2666666667,95.6666666667,2.6666666667,63,4.5666666667,39.0375776798,39.0375776798 -220,0,21.29,43.23,20.5,41.9666666667,22.1666666667,41.4333333333,20,42.9333333333,19.89,46.1511111111,5.9666666667,88.4,18.78,37.59,21.29,50.05,19.0666666667,46.43,5.0833333333,733.8333333333,96.3333333333,2.3333333333,63,4.5833333333,29.1217095684,29.1217095684 -120,0,21.29,43.23,20.5,42,22.1,41.545,19.9266666667,43.06,19.89,46.245,5.9666666667,88.6666666667,18.78,37.57,21.29,50.09,19,46.29,5,733.4,97,2,63,4.6,44.6987324511,44.6987324511 -110,0,21.29,43.2233333333,20.5,42,22.1,41.59,19.89,43.09,19.89,46.3511111111,5.9666666667,89.5333333333,18.77,37.59,21.29,50.1266666667,19,46.23,5,733,97.3333333333,2.5,55.8333333333,4.6333333333,36.0187026206,36.0187026206 -100,0,21.29,43.03,20.5,42,22.1,41.59,19.89,43.03,19.89,46.3816666667,5.9,89.9933333333,18.775,37.57,21.29,50.0772222222,19,46.06,5,732.6,97.6666666667,3,48.6666666667,4.6666666667,16.9312846963,16.9312846963 -110,0,21.29,42.9666666667,20.5,42,22.1,41.5,19.89,42.9666666667,19.89,46.4,5.8666666667,90.43,18.7,37.59,21.3511111111,49.9605555556,19,45.9333333333,5,732.2,98,3.5,41.5,4.7,49.9375528307,49.9375528307 -100,10,21.29,42.9,20.4214285714,41.85,22.0333333333,41.4333333333,19.89,42.9,19.89,46.4277777778,5.8,91.4966666667,18.705,37.59,21.4083333333,50.1255555556,19,45.76,5,731.8,98.3333333333,4,34.3333333333,4.7333333333,16.6850205977,16.6850205977 -130,0,21.29,42.7,20.39,41.79,22,41.09,19.8566666667,42.8333333333,19.89,46.5944444444,5.8666666667,92.8566666667,18.735,37.59,21.4933333333,50.4877777778,19,45.6266666667,5,731.4,98.6666666667,4.5,27.1666666667,4.7666666667,43.1218733895,43.1218733895 -170,0,21.29,42.76,20.39,41.73,22,41.09,19.79,42.7,19.89,46.555,5.925,93.1675,18.71,37.59,21.5888888889,50.545,19,45.4666666667,5,731,99,5,20,4.8,24.0722907125,24.0722907125 -560,0,21.29,44.2666666667,20.39,41.8633333333,21.89,41.2,19.79,42.645,19.8677777778,46.7027777778,5.9666666667,93.4333333333,18.71,37.59,21.6,49.87,19,45.4,5,730.7166666667,98.8333333333,4.8333333333,21.5,4.7833333333,20.4782022978,20.4782022978 -430,0,21.43,44.86,20.39,42.0966666667,21.9633333333,41.4,19.79,42.59,19.89,46.9827777778,6.19,93.69,18.7,37.6327777778,21.6277777778,49.1733333333,19,45.26,5,730.4333333333,98.6666666667,4.6666666667,23,4.7666666667,12.7539524925,12.7539524925 -360,0,21.5,44.2233333333,20.39,42.43,22.1633333333,42.3233333333,19.79,42.53,19.89,47.0961111111,6.19,93.7633333333,18.7,37.7,21.7605555556,48.7711111111,19,45.2,5,730.15,98.5,4.5,24.5,4.75,16.0237911739,16.0237911739 -350,0,21.5,44.03,20.39,42.6566666667,22.4975,43.0425,19.79,42.5,19.89,47.1977777778,6.3666666667,94,18.7,37.71,21.8566666667,48.3972222222,19,45.09,5,729.8666666667,98.3333333333,4.3333333333,26,4.7333333333,47.2743372084,47.2743372084 -330,0,21.6,43.8333333333,20.4725,42.8975,22.7,43.2,19.79,42.5,19.89,47.3033333333,6.3,94,18.7,37.775,21.9572222222,48.1172222222,19,45.09,5,729.5833333333,98.1666666667,4.1666666667,27.5,4.7166666667,33.133914182,33.133914182 -280,0,21.6666666667,43.7,20.5,43,22.945,43.145,19.73,42.5,19.89,47.4,6.1266666667,93.7266666667,18.7,37.775,22.05,47.8805555556,19,45,5,729.3,98,4,29,4.7,23.7307840842,23.7307840842 -220,0,21.79,43.545,20.5,43.1266666667,23.1,42.97,19.79,42.5,19.89,47.4055555556,5.9333333333,93.8666666667,18.7,37.7,22.1055555556,47.6672222222,19,45,4.9333333333,729.3333333333,98.1666666667,4,28.8333333333,4.65,16.9515791931,16.9515791931 -150,0,21.8233333333,44.5,20.5,43.2,23.1333333333,42.5966666667,19.79,42.4666666667,19.89,47.4888888889,5.6566666667,94,18.73,37.6938888889,22.1888888889,47.46,19,44.9,4.8666666667,729.3666666667,98.3333333333,4,28.6666666667,4.6,40.3764642891,40.3764642891 -120,0,21.89,46.0933333333,20.5,43.3266666667,23.1666666667,42.4,19.73,42.4,19.89,47.6811111111,5.59,94,18.71,37.6022222222,22.255,47.3033333333,19,44.8266666667,4.8,729.4,98.5,4,28.5,4.55,43.9354465925,43.9354465925 -120,0,21.89,45.0633333333,20.5,43.4666666667,23.1,42.3266666667,19.7,42.3633333333,19.89,48.1461111111,5.6233333333,94,18.7,37.59,22.34,47.155,19,44.79,4.7333333333,729.4333333333,98.6666666667,4,28.3333333333,4.5,32.3712077923,32.3712077923 -140,0,21.89,44.5966666667,20.5,43.3633333333,22.89,41.93,19.7,42.29,19.8066666667,48.4133333333,5.6233333333,93.9333333333,18.7,37.59,22.39,47.035,19,44.695,4.6666666667,729.4666666667,98.8333333333,4,28.1666666667,4.45,39.3109590048,39.3109590048 -120,0,21.89,44.1333333333,20.5,43.23,22.8233333333,41.79,19.7,42.29,19.79,48.635,5.59,93.8,18.7,37.545,22.445,47.045,19,44.59,4.6,729.5,99,4,28,4.4,46.0783292423,46.0783292423 -130,0,21.89,43.86,20.6,43.09,22.6666666667,41.7233333333,19.7,42.23,19.79,48.7811111111,5.59,93.7266666667,18.7,37.51,22.5055555556,47.015,19,44.5,4.55,729.7,98.5,4.6666666667,33.5,4.2833333333,32.4143016827,32.4143016827 -130,0,21.89,43.6333333333,20.6,43.03,22.6,41.59,19.7,42.2,19.79,48.8877777778,5.59,93.6233333333,18.7,37.5,22.5888888889,46.9194444444,19,44.5,4.5,729.9,98,5.3333333333,39,4.1666666667,20.8606838482,20.8606838482 -130,0,21.8233333333,43.36,20.6,42.8633333333,22.5666666667,41.59,19.6333333333,42.1266666667,19.79,48.9611111111,5.59,93.69,18.7,37.545,22.6388888889,46.8327777778,19,44.4,4.45,730.1,97.5,6,44.5,4.05,31.5603944706,31.5603944706 -130,0,21.8233333333,43.23,20.6,42.73,22.5,41.59,19.6333333333,42.1266666667,19.745,49,5.56,93.56,18.7,37.515,22.7,46.9,19,44.4,4.4,730.3,97,6.6666666667,50,3.9333333333,0.1851333771,0.1851333771 -120,0,21.89,43.23,20.73,42.79,22.4633333333,41.56,19.7,42.2,19.7,49.055,5.3725,93.4,18.7,37.5,22.715,46.8938888889,19,44.29,4.35,730.5,96.5,7.3333333333,55.5,3.8166666667,33.8715022663,33.8715022663 -160,0,21.9266666667,43.0266666667,20.8566666667,42.73,22.4633333333,41.5,19.6666666667,42.1333333333,19.7,49.1205555556,4.9966666667,93.2266666667,18.7,37.3983333333,22.79,46.7266666667,19,44.29,4.3,730.7,96,8,61,3.7,36.4398794016,36.4398794016 -240,0,22,42.7666666667,21.0333333333,42.4666666667,22.5,41.5,19.6,42,19.7,49.2,4.5933333333,93.0266666667,18.7,37.245,22.79,46.3755555556,19,44.2,4.1166666667,730.9833333333,95.8333333333,7.5,57.5,3.4833333333,23.9286927623,23.9286927623 -220,0,22.1,43.7266666667,21.1666666667,42.2666666667,22.4266666667,41.36,19.6,41.9,19.7,49.2,4.26,92.8333333333,18.7,37.0877777778,22.79,46.0394444444,19,44.1266666667,3.9333333333,731.2666666667,95.6666666667,7,54,3.2666666667,7.5326102786,7.5326102786 -200,0,22.1666666667,42.86,21.3233333333,41.99,22.39,41.26,19.6,41.76,19.6888888889,49.1877777778,3.93,92.6566666667,18.7,36.8561111111,22.7955555556,45.6455555556,19,44,3.75,731.55,95.5,6.5,50.5,3.05,31.7713107099,31.7713107099 -210,0,22.23,45.2933333333,21.53,41.6566666667,22.4633333333,41.4,19.6,41.7,19.65,49.145,3.73,92.53,18.6888888889,36.6966666667,22.8788888889,45.3805555556,19,43.9333333333,3.5666666667,731.8333333333,95.3333333333,6,47,2.8333333333,34.5271748258,34.5271748258 -160,0,22.29,47.4266666667,21.73,41.3333333333,22.4266666667,41.6933333333,19.6,41.56,19.6333333333,49.1327777778,3.73,92.4666666667,18.6722222222,36.5283333333,22.9327777778,45.1372222222,19,43.76,3.3833333333,732.1166666667,95.1666666667,5.5,43.5,2.6166666667,29.4107485563,29.4107485563 -110,0,22.39,48.3633333333,21.8566666667,41.26,22.5,42.0266666667,19.5333333333,41.4333333333,19.6,49.1877777778,3.79,92.4,18.6611111111,36.3905555556,22.9877777778,44.9433333333,19,43.7,3.2,732.4,95,5,40,2.4,8.2527499995,8.2527499995 -100,0,22.39,46.23,21.89,41.2,22.5,42.26,19.5,41.3633333333,19.6,49.23,3.79,92.3,18.6666666667,36.245,22.9633333333,44.9105555556,19,43.59,3.35,732.7166666667,94.3333333333,5.1666666667,38,2.45,2.0912408479,2.0912408479 -110,0,22.39,44.6966666667,22,41.06,22.5,42.1725,19.5,41.29,19.6,49.275,3.8633333333,92.3666666667,18.6777777778,36.1755555556,22.945,45.1488888889,19,43.53,3.5,733.0333333333,93.6666666667,5.3333333333,36,2.5,23.1183576863,23.1183576863 -110,0,22.39,43.92,22,40.86,22.5,42.09,19.5,41.09,19.6,49.255,3.9333333333,92.3666666667,18.6777777778,36.1755555556,22.89,45.1627777778,19,43.4666666667,3.65,733.35,93,5.5,34,2.55,8.4137198515,8.4137198515 -120,0,22.39,43.4633333333,21.89,40.76,22.5,42,19.5,41.09,19.6,49.2,4,92.2266666667,18.6777777778,36.1755555556,22.9022222222,44.9294444444,19,43.4,3.8,733.6666666667,92.3333333333,5.6666666667,32,2.6,14.4898699131,14.4898699131 -120,0,22.3566666667,43.1333333333,21.89,40.7,22.5,41.9333333333,19.5,41,19.6,49.2,4.09,92.3,18.6444444444,36.1388888889,22.9938888889,44.6272222222,19,43.3633333333,3.95,733.9833333333,91.6666666667,5.8333333333,30,2.65,16.6949697654,16.6949697654 -120,0,22.29,42.8,21.89,40.6633333333,22.5,41.9666666667,19.5,41,19.6,49.2,4.09,92.3,18.6888888889,36.1572222222,23.05,44.4111111111,19,43.29,4.1,734.3,91,6,28,2.7,20.146708563,20.146708563 -130,0,22.29,42.43,21.89,40.53,22.4266666667,41.9,19.5,40.9666666667,19.6,49.1938888889,4,92.19,18.6777777778,36.1005555556,23.1,44.3327777778,19,43.23,4.1333333333,734.4333333333,91.3333333333,5.6666666667,30,2.8,29.3852601782,29.3852601782 -140,0,22.29,42.0966666667,21.89,40.4666666667,22.39,41.76,19.5,40.9666666667,19.6,49.1266666667,4,92.19,18.7,36.135,23.15,44.29,19,43.2,4.1666666667,734.5666666667,91.6666666667,5.3333333333,32,2.9,12.815144693,12.815144693 -130,10,22.29,41.8633333333,21.89,40.3266666667,22.4633333333,41.76,19.4633333333,40.8633333333,19.6,49.085,4.03,92.19,18.725,37.365,23.1777777778,44.42,19,43.2,4.2,734.7,92,5,34,3,37.6316336449,37.6316336449 -120,30,22.3566666667,41.6566666667,21.89,40.09,22.39,41.6266666667,19.39,40.79,19.5833333333,48.96,4.165,92.2175,19.0288888889,39.7977777778,23.2,44.3572222222,19,43.2,4.2333333333,734.8333333333,92.3333333333,4.6666666667,36,3.1,8.1302819424,8.1302819424 -120,20,22.39,41.5,21.89,40.03,22.4633333333,41.76,19.39,40.7,19.5444444444,48.9,4.19,92.3,19.4405555556,40.4811111111,23.2,44.5383333333,19,43.1266666667,4.2666666667,734.9666666667,92.6666666667,4.3333333333,38,3.2,31.6943851067,31.6943851067 -130,20,22.39,41.4333333333,22,39.9333333333,22.39,41.79,19.39,40.7,19.5111111111,48.9111111111,4.06,92.2633333333,19.6105555556,40.4316666667,23.255,44.6572222222,19,43.1633333333,4.3,735.1,93,4,40,3.3,28.8927185,28.8927185 -120,20,22.39,41.29,22,39.9333333333,22.39,41.79,19.39,40.7,19.5222222222,48.9944444444,4.06,92.2633333333,19.75,40.59,23.28,44.7077777778,19,43.09,4.2333333333,735.2666666667,93,4,40,3.2166666667,42.1536153415,42.1536153415 -120,20,22.39,41.23,21.9633333333,40,22.39,41.76,19.39,40.7,19.5222222222,49,4,92.2266666667,19.78,40.6816666667,23.29,44.7,19,43.09,4.1666666667,735.4333333333,93,4,40,3.1333333333,5.5946125998,5.5946125998 -140,20,22.39,41.2,21.89,40,22.39,41.6266666667,19.39,40.7,19.5,49.0611111111,3.9333333333,92.3,19.8066666667,40.7433333333,23.3066666667,44.6755555556,19,43.09,4.1,735.6,93,4,40,3.05,8.5720473784,8.5720473784 -120,20,22.39,41.4,21.9633333333,40,22.39,41.6633333333,19.39,40.7,19.5,49.1877777778,3.7233333333,92.3,19.8788888889,40.9044444444,23.39,44.72,19,43.09,4.0333333333,735.7666666667,93,4,40,2.9666666667,19.3902824423,19.3902824423 -270,10,22.39,41.7,21.89,39.9333333333,22.39,41.6633333333,19.39,40.7,19.5,49.275,3.59,92.3,19.9083333333,40.9777777778,23.39,44.6122222222,19.0666666667,43.09,3.9666666667,735.9333333333,93,4,40,2.8833333333,20.5567656201,20.5567656201 -650,10,22.4633333333,43.1666666667,22,39.79,22.39,41.73,19.39,40.59,19.5,49.29,3.59,92.3,19.9933333333,41.0611111111,23.34,44.2561111111,19,42.9666666667,3.9,736.1,93,4,40,2.8,19.0978301107,19.0978301107 -690,10,22.5333333333,45.0266666667,22.0666666667,39.79,22.39,41.93,19.3233333333,40.59,19.5,49.2961111111,3.59,92.3,20.0666666667,41.2666666667,23.1983333333,43.7761111111,19.0666666667,42.9666666667,3.8333333333,736.2166666667,93,4.1666666667,40,2.75,0.7261951221,0.7261951221 -340,10,22.6,50.4333333333,22.1,40.3666666667,22.39,42.2266666667,19.29,40.59,19.5,49.4627777778,3.7,92.4,20.1761111111,42.0611111111,23.0888888889,43.3577777778,19.0666666667,42.9666666667,3.7666666667,736.3333333333,93,4.3333333333,40,2.7,13.0767458118,13.0767458118 -100,10,22.73,57.4233333333,22.1975,41.7175,22.4725,43.375,19.29,40.59,19.4694444444,49.8011111111,3.5666666667,92.3333333333,20.2977777778,43.76,23.0055555556,42.9533333333,19,42.9,3.7,736.45,93,4.5,40,2.65,42.8077308228,42.8077308228 -120,10,22.79,56.09,22.29,42.8633333333,22.5666666667,44.7933333333,19.29,40.5,19.4816666667,50.2872222222,3.26,92.4,20.3961111111,44.6305555556,22.9205555556,43.1377777778,19.0666666667,42.9666666667,3.6333333333,736.5666666667,93,4.6666666667,40,2.6,47.9659955832,47.9659955832 -140,20,22.89,53.545,22.39,42.9666666667,22.6,45.3266666667,19.29,40.5,19.5,50.7155555556,3.0666666667,92.3333333333,20.4877777778,44.7044444444,22.89,43.9144444444,19.0666666667,42.9666666667,3.5666666667,736.6833333333,93,4.8333333333,40,2.55,12.3642502585,12.3642502585 -150,20,23,51.2566666667,22.39,42.8266666667,22.6,45.3266666667,19.29,41.03,19.5,50.9972222222,2.76,92.3,20.5388888889,44.4038888889,22.9694444444,44.3533333333,19.1,42.9666666667,3.5,736.8,93,5,40,2.5,1.5391775174,1.5391775174 -150,10,23,49.8633333333,22.39,42.1933333333,22.6,45.1333333333,19.3566666667,42.4233333333,19.5,51.09,2.6266666667,92.3,20.6,43.7927777778,23.0611111111,44.4555555556,19.1,42.845,3.45,736.9166666667,93,5.1666666667,40,2.4333333333,13.0062280456,13.0062280456 -160,20,23,48.6,22.39,41.8,22.6,44.86,19.39,42.79,19.4755555556,51.07,2.45,92.3,20.6611111111,43.2333333333,23.1277777778,44.3561111111,19.1,42.9,3.4,737.0333333333,93,5.3333333333,40,2.3666666667,25.6219396251,25.6219396251 -140,10,23,47.6666666667,22.5,41.6633333333,22.6,44.5266666667,19.39,42.6566666667,19.4694444444,51.035,2.29,92.3,20.6222222222,42.09,23.205,44.1327777778,19,42.6633333333,3.35,737.15,93,5.5,40,2.3,48.3455543523,48.3455543523 -150,10,23,46.4,22.4266666667,41.39,22.6,44.3266666667,19.39,42.43,19.4816666667,51.02,2.3633333333,92.3,20.5555555556,41.7988888889,23.28,43.9538888889,19,42.4633333333,3.3,737.2666666667,93,5.6666666667,40,2.2333333333,5.665475002,5.665475002 -150,10,23,45.7933333333,22.4266666667,41.2,22.6,44.06,19.39,42.1566666667,19.4755555556,50.9777777778,2.4,92.3,20.4988888889,40.9088888889,23.27,43.7472222222,19,42.1333333333,3.25,737.3833333333,93,5.8333333333,40,2.1666666667,37.8206596477,37.8206596477 -140,10,23,45.1,22.4266666667,41.0666666667,22.6,43.9333333333,19.29,41.8333333333,19.4694444444,50.9538888889,2.4,92.3,20.3961111111,40.1811111111,23.3011111111,43.62,19,41.86,3.2,737.5,93,6,40,2.1,4.4975977857,4.4975977857 -150,10,23,44.6933333333,22.39,41,22.6,43.76,19.29,41.6266666667,19.4083333333,50.8694444444,2.53,92.3,20.39,39.7377777778,23.3622222222,43.3627777778,18.9266666667,41.5266666667,3.2833333333,737.55,92.6666666667,6.3333333333,40,2.1333333333,7.0438149269,7.0438149269 -130,20,23,44.3633333333,22.39,40.9333333333,22.6,43.7,19.29,41.3633333333,19.4388888889,50.8633333333,2.59,92.2266666667,20.39,39.4305555556,23.39,43.1116666667,19,41.3266666667,3.3666666667,737.6,92.3333333333,6.6666666667,40,2.1666666667,24.0885898471,24.0885898471 -130,10,23,44.03,22.39,40.8633333333,22.6,43.59,19.29,41.23,19.4327777778,50.8327777778,2.73,92.3,20.3788888889,39.1022222222,23.3961111111,42.9077777778,18.89,41.06,3.45,737.65,92,7,40,2.2,33.8478024001,33.8478024001 -130,0,22.9266666667,43.6633333333,22.3233333333,40.79,22.6,43.53,19.29,40.995,19.445,50.8266666667,2.8633333333,92.3,20.2955555556,38.8066666667,23.4083333333,42.8738888889,18.89,40.86,3.5333333333,737.7,91.6666666667,7.3333333333,40,2.2333333333,49.283243739,49.283243739 -130,0,22.9266666667,43.33,22.29,40.73,22.5,43.4666666667,19.29,40.8633333333,19.4205555556,50.7288888889,3,92.19,20.29,38.5372222222,23.3566666667,42.79,18.89,40.6633333333,3.6166666667,737.75,91.3333333333,7.6666666667,40,2.2666666667,6.3584403717,6.3584403717 -140,0,22.89,42.93,22.29,40.79,22.5,43.4,19.29,40.73,19.39,50.6266666667,3.06,92.2633333333,20.29,38.4377777778,23.3177777778,42.765,18.89,40.53,3.7,737.8,91,8,40,2.3,46.1250389926,46.1250389926 -130,0,22.89,42.73,22.29,40.7,22.5333333333,43.3633333333,19.2,40.56,19.39,50.5094444444,3.2,92.19,20.29,38.2511111111,23.3011111111,42.8422222222,18.8233333333,40.26,3.65,737.9,90.5,7.6666666667,40,2.1833333333,27.7567110606,27.7567110606 -130,0,22.8233333333,42.4,22.23,40.6266666667,22.5333333333,43.29,19.2,40.5,19.39,50.3805555556,3.2,92.19,20.29,38.08,23.29,42.845,18.89,40.2,3.6,738,90,7.3333333333,40,2.0666666667,28.634894744,28.634894744 -100,10,22.8233333333,42.2666666667,22.1666666667,40.4,22.5666666667,43.29,19.2,40.4,19.39,50.235,3.06,92.2633333333,20.29,37.9927777778,23.3122222222,42.7561111111,18.8566666667,39.9666666667,3.55,738.1,89.5,7,40,1.95,44.5537170279,44.5537170279 -90,10,22.79,42.09,22.1,40.3,22.5,43.29,19.2,40.3266666667,19.39,50.245,2.86,92.1233333333,20.29,38.1777777778,23.3622222222,42.8877777778,18.79,39.8266666667,3.5,738.2,89,6.6666666667,40,1.8333333333,12.8449894255,12.8449894255 -80,0,22.79,42.09,22.1,40.4,22.5,43.29,19.2,40.4,19.39,50.3205555556,2.76,92.19,20.29,38.5283333333,23.4022222222,43.0616666667,18.79,40.03,3.45,738.3,88.5,6.3333333333,40,1.7166666667,48.320655711,48.320655711 -70,0,22.7,42.53,22.0666666667,40.5,22.5,43.3266666667,19.2,40.4666666667,19.39,50.3877777778,2.6266666667,92.19,20.235,38.9033333333,23.4022222222,43.4505555556,18.79,40.2966666667,3.4,738.4,88,6,40,1.6,48.9725978929,48.9725978929 -60,0,22.7,42.97,22,40.5,22.5,43.4,19.2,40.5,19.39,50.4611111111,2.5,92.19,20.2,39.145,23.39,44.1211111111,18.79,40.83,3.3333333333,738.45,88,6,40,1.5333333333,31.2456641113,31.2456641113 -70,0,22.6333333333,43.03,21.9633333333,40.59,22.5333333333,43.4,19.2,40.56,19.39,50.5,2.4,92.1566666667,20.2,39.3688888889,23.3788888889,44.5644444444,18.84,41.4475,3.2666666667,738.5,88,6,40,1.4666666667,20.3650915064,20.3650915064 -70,0,22.6,42.8633333333,21.89,40.59,22.6,43.4,19.1,40.59,19.3788888889,50.52,2.3266666667,92.1566666667,20.1666666667,39.545,23.2905555556,45.0011111111,18.8566666667,41.96,3.2,738.55,88,6,40,1.4,39.0245689778,39.0245689778 -80,0,22.6,42.79,21.8566666667,40.56,22.6,43.4,19.1,40.6633333333,19.3455555556,50.565,2.26,92.19,20.1277777778,39.6011111111,23.23,45.32,18.89,42.4633333333,3.1333333333,738.6,88,6,40,1.3333333333,9.3175335089,9.3175335089 -70,0,22.5,42.8633333333,21.79,40.5,22.6,43.4,19.1,40.7,19.3177777778,50.59,2.1266666667,92.1233333333,20.1,39.7477777778,23.2,45.4983333333,18.89,42.6633333333,3.0666666667,738.65,88,6,40,1.2666666667,13.2235064986,13.2235064986 -70,0,22.5,42.73,21.76,40.59,22.6,43.4,19.1,40.76,19.29,50.645,2.1566666667,92.1233333333,20.1,39.8572222222,23.2,45.69,18.89,42.9333333333,3,738.7,88,6,40,1.2,4.3657957576,4.3657957576 -70,0,22.39,42.56,21.7,40.59,22.6,43.3266666667,19.1,40.79,19.29,50.7,2.3633333333,92.1233333333,20.1,39.9,23.1611111111,45.8738888889,18.89,43.1333333333,3.05,738.75,88,6.3333333333,44,1.25,11.0605995404,11.0605995404 -70,0,22.39,42.5,21.7,40.59,22.6,43.29,19.1,40.79,19.29,50.7,2.4,92.19,20.0166666667,39.9,23.1,46.045,18.89,43.3266666667,3.1,738.8,88,6.6666666667,48,1.3,13.9800371253,13.9800371253 -80,10,22.3566666667,42.4,21.6333333333,40.53,22.6,43.29,19.1,40.9,19.29,50.7,2.4,92.1233333333,20,39.9277777778,23.1,46.09,18.9633333333,43.4666666667,3.15,738.85,88,7,52,1.35,10.4044978507,10.4044978507 -60,0,22.29,42.3333333333,21.6,40.4333333333,22.6666666667,43.3633333333,19.1,40.9,19.29,50.745,2.53,92.19,20,40,23.1,46.09,18.89,43.73,3.2,738.9,88,7.3333333333,56,1.4,47.6175787393,47.6175787393 -70,0,22.29,42.4,21.6,40.5,22.6,43.29,19.1,40.9,19.29,50.79,2.6633333333,92.2633333333,20,40,23.0722222222,46.1722222222,18.89,43.8633333333,3.25,738.95,88,7.6666666667,60,1.45,44.8421386071,44.8421386071 -70,0,22.23,42.2666666667,21.5,40.5,22.6,43.29,19.1,40.9333333333,19.29,50.79,2.8266666667,92.3,20,40.0411111111,23.0111111111,46.3727777778,18.9266666667,44.0666666667,3.3,739,88,8,64,1.5,43.0601862958,43.0601862958 -80,0,22.2,42.1633333333,21.4266666667,40.4333333333,22.6,43.29,19.1,41,19.29,50.79,2.9,92.3,19.9877777778,40.1977777778,23,46.5611111111,18.9266666667,44.26,3.2833333333,738.9833333333,88.1666666667,7.8333333333,60,1.5,4.7072521877,4.7072521877 -70,0,22.1333333333,42.09,21.4633333333,40.4666666667,22.6,43.29,19.0333333333,40.9333333333,19.29,50.8022222222,2.9333333333,92.3,19.9633333333,40.2911111111,22.9694444444,46.6877777778,19,44.36,3.2666666667,738.9666666667,88.3333333333,7.6666666667,56,1.5,35.5708375107,35.5708375107 -70,0,22.1,42,21.39,40.4666666667,22.6,43.29,19.0333333333,40.9333333333,19.285,50.8633333333,3,92.3,19.945,40.4377777778,22.8844444444,46.6938888889,19,44.5,3.25,738.95,88.5,7.5,52,1.5,10.3940168745,10.3940168745 -70,0,22.1,42,21.29,40.5,22.6,43.29,19,40.9,19.255,50.8388888889,2.9666666667,92.3,19.945,40.575,22.8233333333,46.6816666667,19,44.6266666667,3.2333333333,738.9333333333,88.6666666667,7.3333333333,48,1.5,2.5416350341,2.5416350341 -70,0,22,41.9,21.29,40.5,22.6,43.29,19,40.9,19.29,50.8694444444,2.845,92.245,19.9083333333,40.6205555556,22.79,46.9427777778,19,44.76,3.2166666667,738.9166666667,88.8333333333,7.1666666667,44,1.5,46.3924813434,46.3924813434 -60,0,22,41.9,21.2,40.45,22.65,43.345,19,40.9,19.29,50.8755555556,2.9,92.3,19.89,40.7,22.79,47.19,19,44.9,3.2,738.9,89,7,40,1.5,19.6494314237,19.6494314237 -70,0,21.9633333333,41.9,21.2,40.5,22.6,43.2,19,40.9,19.28,50.8877777778,3.09,92.4,19.89,40.7,22.755,47.5494444444,19,44.9666666667,3.2333333333,738.9,89,7.3333333333,40,1.55,34.2193706776,34.2193706776 -60,0,21.89,41.8266666667,21.2,40.5,22.6,43.2,18.9266666667,41,19.24,50.8388888889,3.09,92.4,19.89,40.7733333333,22.7,47.9277777778,19,45.1266666667,3.2666666667,738.9,89,7.6666666667,40,1.6,43.1269586203,43.1269586203 -70,0,21.84,41.845,21.1,40.5,22.6,43.2,19,41,19.24,50.8633333333,3.09,92.3,19.89,40.9,22.6944444444,47.9944444444,19,45.2675,3.3,738.9,89,8,40,1.65,2.8120470583,2.8120470583 -80,0,21.79,41.79,21.1,40.5,22.6,43.2,18.9633333333,41,19.215,50.845,3.09,92.3666666667,19.89,40.9055555556,22.6833333333,48.0266666667,19,45.3633333333,3.3333333333,738.9,89,8.3333333333,40,1.7,18.8427111134,18.8427111134 -60,0,21.79,41.79,21.1,40.5,22.6,43.2,18.89,41,19.2,50.8022222222,3.2,92.3,19.89,40.9888888889,22.6166666667,48.2488888889,19,45.4333333333,3.3666666667,738.9,89,8.6666666667,40,1.75,29.7172746505,29.7172746505 -80,0,21.76,41.79,21.1,40.5,22.6,43.2,18.89,41,19.2,50.8266666667,3.26,92.3666666667,19.89,41,22.6,48.4827777778,19,45.56,3.4,738.9,89,9,40,1.8,12.3805960407,12.3805960407 -70,0,21.7,41.73,21,40.3633333333,22.6,43.2,18.89,41,19.2,50.8022222222,3.29,92.3333333333,19.89,41,22.6,48.6816666667,19,45.6266666667,3.2666666667,738.9166666667,89.5,9.1666666667,40,1.7333333333,17.1120802872,17.1120802872 -60,0,21.7,41.7,21,40.29,22.6,43.2,18.89,41,19.2,50.8266666667,3.23,92.3333333333,19.89,41.055,22.5444444444,48.7,19,45.76,3.1333333333,738.9333333333,90,9.3333333333,40,1.6666666667,26.0383896763,26.0383896763 -70,0,21.6333333333,41.6266666667,20.89,40.26,22.6,43.1633333333,18.89,41,19.2,50.8511111111,3.06,92.2633333333,19.89,41.09,22.5055555556,48.6938888889,19.1,46,3,738.95,90.5,9.5,40,1.6,39.7694705287,39.7694705287 -60,0,21.6,41.59,20.89,40.2,22.6,43.03,18.89,41,19.2,50.8694444444,2.9333333333,92.19,19.89,41.09,22.5,48.6327777778,19.1,46.06,2.8666666667,738.9666666667,91,9.6666666667,40,1.5333333333,11.953513138,11.953513138 -70,0,21.6,41.59,20.8566666667,40.06,22.5,43.1266666667,18.89,41,19.2,50.9,2.79,92.09,19.89,41.025,22.4327777778,48.6694444444,19.1,46.09,2.7333333333,738.9833333333,91.5,9.8333333333,40,1.4666666667,6.1011124286,6.1011124286 -60,0,21.5,41.7,20.8566666667,40.06,22.5,43.1266666667,18.89,41.06,19.2,50.9,2.73,92.1566666667,19.89,40.9222222222,22.39,48.6022222222,19.1,46.1633333333,2.6,739,92,10,40,1.4,18.0702027516,18.0702027516 -70,0,21.5,41.7,20.79,40,22.5,43.09,18.89,41.03,19.2,50.9,2.6633333333,92.1566666667,19.8622222222,40.9888888889,22.39,48.59,19.0666666667,46.1633333333,2.5833333333,739.0333333333,92.1666666667,9.6666666667,40,1.4166666667,46.2457089452,46.2457089452 -70,0,21.4633333333,41.56,20.79,40,22.5,43.09,18.8233333333,40.9633333333,19.1666666667,50.9222222222,2.59,92.09,19.8622222222,41.065,22.3622222222,48.59,19.0666666667,46.1633333333,2.5666666667,739.0666666667,92.3333333333,9.3333333333,40,1.4333333333,49.5845284429,49.5845284429 -70,0,21.39,41.56,20.76,39.9666666667,22.5,43.09,18.79,40.9,19.1166666667,50.9611111111,2.59,92.03,19.8788888889,41.08,22.29,48.6022222222,19.1,46.2,2.55,739.1,92.5,9,40,1.45,29.4322522124,29.4322522124 -70,0,21.39,41.59,20.7,39.9666666667,22.5,43.1633333333,18.79,40.9666666667,19.1388888889,50.9777777778,2.6175,92.09,19.8566666667,41.06,22.29,48.6022222222,19.1,46.2,2.5333333333,739.1333333333,92.6666666667,8.6666666667,40,1.4666666667,35.4593283613,35.4593283613 -60,0,21.39,41.59,20.7,39.9333333333,22.5,43.09,18.79,40.9,19.1166666667,50.9777777778,2.7,92.09,19.8233333333,41.0483333333,22.285,48.59,19.1,46.2,2.5166666667,739.1666666667,92.8333333333,8.3333333333,40,1.4833333333,48.3122881618,48.3122881618 -60,0,21.29,41.7,20.7,40,22.5,43.09,18.79,40.9,19.1,51,2.73,92.09,19.8511111111,41.1472222222,22.23,48.6144444444,19.1,46.2,2.5,739.2,93,8,40,1.5,44.706415059,44.706415059 -70,0,21.29,41.7,20.7,40,22.5,43.09,18.79,40.9333333333,19.1,51,2.73,92.09,19.8122222222,41.1427777778,22.23,48.565,19.1,46.2,2.5,739.2333333333,93.1666666667,7.8333333333,40,1.5166666667,17.740022717,17.740022717 -60,0,21.29,41.7,20.625,39.925,22.5,43.06,18.79,41,19.1,51,2.6633333333,92.09,19.8288888889,41.255,22.21,48.6055555556,19.1,46.2,2.5,739.2666666667,93.3333333333,7.6666666667,40,1.5333333333,25.9863842744,25.9863842744 -60,0,21.23,41.6266666667,20.6,39.9666666667,22.5,43,18.76,41,19.1,51.04,2.59,92.09,19.8677777778,41.27,22.2,48.7,19.1,46.29,2.5,739.3,93.5,7.5,40,1.55,26.5814437298,26.5814437298 -70,0,21.2,41.7,20.6,40,22.4633333333,43,18.76,41,19.1,51.045,2.59,92.06,19.8177777778,41.1377777778,22.1888888889,48.7,19.1,46.29,2.5,739.3333333333,93.6666666667,7.3333333333,40,1.5666666667,16.217861406,16.217861406 -70,0,21.175,41.7,20.5333333333,40,22.39,43,18.76,41,19.1,51.09,2.59,92.06,19.79,41.09,22.1277777778,48.7,19.1,46.29,2.5,739.3666666667,93.8333333333,7.1666666667,40,1.5833333333,13.6845855857,13.6845855857 -70,0,21.1666666667,41.7,20.5,40,22.39,43.09,18.7,41,19.1,51.09,2.6266666667,92.1233333333,19.79,41.1816666667,22.1,48.6694444444,19.1,46.3266666667,2.5,739.4,94,7,40,1.6,37.234769878,37.234769878 -70,0,21.1,41.7,20.5,40,22.39,43.03,18.7,41,19.1,51.1327777778,2.7,92.1233333333,19.79,41.2,22.1,48.555,19.1,46.4,2.5,739.4166666667,94,7,40,1.6,28.2516787527,28.2516787527 -70,0,21.1,41.7,20.5,40,22.39,43.09,18.7,41,19.1,51.2,2.73,92.19,19.79,41.1327777778,22.1,48.5,19.1,46.29,2.5,739.4333333333,94,7,40,1.6,3.4355010837,3.4355010837 -70,0,21.0666666667,41.6633333333,20.4266666667,40,22.39,43.03,18.7,41,19.1,51.2,2.79,92.19,19.79,41.09,22.0666666667,48.4666666667,19.1,46.29,2.5,739.45,94,7,40,1.6,21.1479572812,21.1479572812 -60,0,21,41.59,20.39,40,22.4266666667,43.03,18.7,41,19.1,51.225,2.7,92.19,19.79,41.07,22.0388888889,48.4388888889,19.1,46.3266666667,2.5,739.4666666667,94,7,40,1.6,46.4554315084,46.4554315084 -70,0,21,41.59,20.39,40,22.5,43.09,18.7,41,19.0722222222,51.265,2.76,92.19,19.79,41.09,22.0277777778,48.4883333333,19.1,46.4,2.5,739.4833333333,94,7,40,1.6,19.2485110834,19.2485110834 -60,0,21,41.59,20.39,40,22.39,43,18.675,41.045,19.05,51.245,2.79,92.1233333333,19.79,41.1572222222,22.0166666667,48.56,19.1,46.4,2.5,739.5,94,7,40,1.6,20.6124951597,20.6124951597 -60,0,21,41.6566666667,20.3233333333,40,22.39,43,18.6,41,19.0277777778,51.26,2.79,92.19,19.79,41.1694444444,22,48.7427777778,19.1,46.4,2.5666666667,739.5666666667,94,6.8333333333,40,1.6666666667,36.556058214,36.556058214 -50,0,21,41.73,20.29,40.03,22.3566666667,42.0266666667,18.6,41,19.0388888889,51.3327777778,2.79,92.245,19.79,41.1144444444,22,48.9377777778,19.1,46.4,2.6333333333,739.6333333333,94,6.6666666667,40,1.7333333333,0.0627147849,0.0627147849 -60,0,21,41.7,20.29,40.2233333333,22.23,41.3,18.6,41,19.0277777778,51.3205555556,2.9,92.3,19.79,41.09,22,49,19.1,46.4,2.7,739.7,94,6.5,40,1.8,35.630327242,35.630327242 -50,0,21,41.76,20.29,40.53,22.1,41.1633333333,18.6,41,19,51.345,2.9,92.3,19.79,41.0961111111,22,49,19.1,46.3633333333,2.7666666667,739.7666666667,94,6.3333333333,40,1.8666666667,9.6198721789,9.6198721789 -60,0,20.9633333333,41.9,20.29,40.7233333333,22.0333333333,41.03,18.6,41.06,19,51.4,2.8266666667,92.2266666667,19.79,41.1877777778,22,49,19.1,46.23,2.8333333333,739.8333333333,94,6.1666666667,40,1.9333333333,0.7461956935,0.7461956935 -70,0,20.9633333333,41.9666666667,20.29,40.8266666667,21.9633333333,40.9666666667,18.6,41.09,19,51.4277777778,2.9,92.3,19.79,41.2,22,48.9888888889,19.1,46.1633333333,2.9,739.9,94,6,40,2,16.9738385244,16.9738385244 -60,0,21,42.1266666667,20.29,40.9666666667,21.89,40.8266666667,18.6,41.09,19,51.5,3,92.3,19.79,41.2,21.945,48.9833333333,19.1,46.09,3.0333333333,739.95,94,6,40,2.1333333333,1.8172781682,1.8172781682 -100,0,20.9266666667,42.2,20.26,41.06,21.89,40.8633333333,18.6,41.09,19,51.545,3.06,92.3666666667,19.79,41.1011111111,21.9694444444,48.9111111111,19.1,46.06,3.1666666667,740,94,6,40,2.2666666667,48.833071813,48.833071813 -80,20,20.89,42.3,20.2,41.02,21.815,40.79,18.6,41.09,19,51.47,3.2,92.3333333333,19.725,40.5527777778,21.8961111111,48.6283333333,19.1,45.9333333333,3.3,740.05,94,6,40,2.4,36.0906164278,36.0906164278 -100,20,20.89,42.36,20.2,40.9,21.79,40.99,18.5966666667,41.4566666667,19,51.3266666667,3.3333333333,92.4,19.6666666667,40.0961111111,21.89,48.1494444444,19.1,45.6333333333,3.4333333333,740.1,94,6,40,2.5333333333,23.4260192257,23.4260192257 -120,30,20.89,42.4666666667,20.2,40.6633333333,21.79,41.23,19.0633333333,41.93,19,51.1672222222,3.53,92.5,19.6555555556,39.8105555556,21.8733333333,47.6433333333,19.05,45.145,3.5666666667,740.15,94,6,40,2.6666666667,2.8954480775,2.8954480775 -110,20,20.89,42.4666666667,20.2,40.53,21.79,41.29,19.7333333333,41.8633333333,19,50.9933333333,3.6633333333,92.5,19.6277777778,39.6822222222,21.79,47.1916666667,19.0333333333,44.6933333333,3.7,740.2,94,6,40,2.8,3.446357674,3.446357674 -90,0,20.89,42.545,20.2,40.4,21.79,41.29,20.1933333333,41.79,19,50.8683333333,3.8266666667,92.4333333333,19.6,39.5172222222,21.79,46.9922222222,19,44.2233333333,3.8,740.2833333333,93.6666666667,6,40,2.85,42.3434608849,42.3434608849 -80,0,20.89,42.4666666667,20.2,40.3266666667,21.79,41.29,20.5333333333,41.5266666667,19,50.7266666667,3.9,92.5,19.6,39.3572222222,21.78,46.7022222222,19,43.89,3.9,740.3666666667,93.3333333333,6,40,2.9,19.3552763318,19.3552763318 -90,10,20.89,43.86,20.2,40.23,21.79,41.26,20.5333333333,41.3266666667,19,50.5416666667,4.03,92.53,19.5888888889,39.265,21.745,46.5183333333,19,43.6333333333,4,740.45,93,6,40,2.95,26.5130078536,26.5130078536 -80,0,20.89,43.8633333333,20.2,40.3633333333,21.79,41.2,20.39,40.9666666667,19,50.4333333333,4.1566666667,92.59,19.5055555556,39.1277777778,21.72,46.345,19,43.36,4.1,740.5333333333,92.6666666667,6,40,3,9.1893920675,9.1893920675 -80,0,20.89,43.4633333333,20.2,40.4,21.7,41.1633333333,20.3233333333,40.9666666667,19,50.3572222222,4.4333333333,92.7266666667,19.5,39.03,21.7,46.215,19,43.1,4.2,740.6166666667,92.3333333333,6,40,3.05,22.781304887,22.781304887 -80,0,20.89,43.1333333333,20.2,40.4,21.7,41.09,20.1666666667,40.7233333333,19,50.275,4.56,92.8,19.5,38.9833333333,21.7,46.225,19,42.8266666667,4.3,740.7,92,6,40,3.1,2.8870874434,2.8870874434 -70,0,20.89,42.9333333333,20.2,40.26,21.6666666667,40.9666666667,20.075,40.4975,19,50.1916666667,4.695,92.745,19.5,38.9277777778,21.6777777778,46.2883333333,19,42.56,4.4666666667,740.7833333333,91.6666666667,5.8333333333,40,3.2,2.4138963432,2.4138963432 -80,0,20.89,42.76,20.2,40.2,21.6,40.9,20,40.3266666667,19,50.09,4.9633333333,92.8666666667,19.5,38.9927777778,21.7,46.4,19,42.4333333333,4.6333333333,740.8666666667,91.3333333333,5.6666666667,40,3.3,12.5983148348,12.5983148348 -90,0,20.89,42.6266666667,20.1666666667,40.2,21.6,40.9333333333,19.9633333333,40.26,19,50.0094444444,5.1566666667,92.8666666667,19.5,39.145,21.6555555556,46.3677777778,19,42.2,4.8,740.95,91,5.5,40,3.4,12.5617750338,12.5617750338 -90,0,20.79,42.3633333333,20.1666666667,40.2,21.6,40.9333333333,19.8233333333,40.2,19,49.9444444444,5.3666666667,92.9333333333,19.5,39.2211111111,21.6444444444,46.4444444444,19,42.0666666667,4.9666666667,741.0333333333,90.6666666667,5.3333333333,40,3.5,1.5857527149,1.5857527149 -150,10,20.79,42.23,20.1,40.2,21.6,40.9,19.79,40.23,19,49.8683333333,5.56,93,19.5277777778,39.41,21.6277777778,46.3605555556,19,41.9666666667,5.1333333333,741.1166666667,90.3333333333,5.1666666667,40,3.6,39.4162014476,39.4162014476 -150,0,20.79,42.23,20.1,40.2,21.6,40.9666666667,19.79,40.29,18.9572222222,49.8144444444,5.8333333333,93,19.5611111111,39.23,21.6222222222,46.345,19,41.8266666667,5.3,741.2,90,5,40,3.7,49.818090233,49.818090233 -80,0,20.79,42.3633333333,20.1,40.2,21.5666666667,40.9,19.7,40.4333333333,18.9266666667,49.775,5.9,93.06,19.5,39.0855555556,21.6055555556,46.4611111111,19,42.96,5.3333333333,741.3,89.6666666667,4.8333333333,40,3.6833333333,43.2288814336,43.2288814336 -70,10,20.79,42.6333333333,20.1,40.2,21.5,40.8266666667,19.7,40.56,18.9144444444,49.72,6,93,19.5833333333,39.2,21.6722222222,46.4722222222,19.0666666667,44.0933333333,5.3666666667,741.4,89.3333333333,4.6666666667,40,3.6666666667,30.4794259369,30.4794259369 -110,10,20.79,42.5,20.1,40.26,21.5,40.76,19.6666666667,40.3633333333,18.89,49.7,6.06,93.06,19.6388888889,39.1877777778,21.6944444444,46.3766666667,19.1333333333,44.5666666667,5.4,741.5,89,4.5,40,3.65,5.2936392021,5.2936392021 -110,0,20.79,42.53,20.1,40.46,21.32,40.925,19.6,40.29,18.9327777778,49.7,6.09,93.1233333333,19.6055555556,39.03,21.765,46.21,19.2,44.7,5.4333333333,741.6,88.6666666667,4.3333333333,40,3.6333333333,36.7018658551,36.7018658551 -90,0,20.79,42.8633333333,20.05,40.645,21.2,41.26,19.5,40.6,18.8961111111,49.7,6.1566666667,93.1233333333,19.6,38.9611111111,21.8011111111,46.185,19.2,44.7,5.4666666667,741.7,88.3333333333,4.1666666667,40,3.6166666667,40.5815608799,40.5815608799 -80,0,20.7,42.8266666667,20,40.59,21.2,41.23,19.5,41.2666666667,18.89,49.71,6.19,93.19,19.5611111111,38.73,21.8011111111,45.6705555556,19.2,44.595,5.5,741.8,88,4,40,3.6,6.238858751,6.238858751 -80,0,20.76,42.9666666667,20,40.59,21.26,41.3633333333,19.5666666667,41.43,18.89,49.75,6.33,93.19,19.5,38.5022222222,21.755,45.1838888889,19.2,44.5,5.3833333333,741.8166666667,88.8333333333,4.5,38,3.6333333333,43.1256273179,43.1256273179 -80,0,20.7,42.895,20,40.4666666667,21.29,41.4,19.5,41.29,18.9327777778,49.72,6.7266666667,93.3,19.5,38.3277777778,21.7,44.8133333333,19.2,44.4666666667,5.2666666667,741.8333333333,89.6666666667,5,36,3.6666666667,45.1227471,45.1227471 -70,10,20.7,42.59,20,40.4666666667,21.29,41.3266666667,19.5,41.06,18.9083333333,49.6327777778,6.66,93.3666666667,19.445,38.13,21.7,44.57,19.2,44.3266666667,5.15,741.85,90.5,5.5,34,3.7,2.3144310922,2.3144310922 -140,0,20.7,42.1966666667,19.9633333333,39.9333333333,21.26,40.7633333333,19.4266666667,40.86,18.9022222222,49.545,6.1566666667,93.3,19.39,37.9388888889,21.6888888889,44.2166666667,19.2,44.26,5.0333333333,741.8666666667,91.3333333333,6,32,3.7333333333,34.9604780204,34.9604780204 -70,0,20.6666666667,41.0633333333,19.7633333333,39.2666666667,21.1333333333,40.03,19.39,40.76,18.89,49.4611111111,6.09,93.3,19.39,37.845,21.65,43.8961111111,19.2,44.2,4.9166666667,741.8833333333,92.1666666667,6.5,30,3.7666666667,17.5180815044,17.5180815044 -50,0,20.6,40.99,19.73,39.3266666667,21,39.8633333333,19.39,40.6266666667,18.89,49.345,5.9,93.245,19.39,37.735,21.6,43.6794444444,19.1666666667,44.09,4.8,741.9,93,7,28,3.8,8.6980634369,8.6980634369 -70,0,20.6,41.09,19.79,39.4666666667,21,39.8633333333,19.3566666667,40.5,18.89,49.1966666667,5.8333333333,93.3,19.3511111111,37.7,21.6,43.4983333333,19.1,44.03,4.8833333333,741.9666666667,93,6.8333333333,28.1666666667,3.8666666667,27.3010994191,27.3010994191 -60,0,20.6,41.09,19.79,39.5,21,39.9,19.29,40.5,18.89,49.09,5.9666666667,93.3,19.3455555556,37.6083333333,21.6,43.345,19.1666666667,43.9666666667,4.9666666667,742.0333333333,93,6.6666666667,28.3333333333,3.9333333333,22.8550908039,22.8550908039 -70,0,20.6,41.1633333333,19.79,39.56,21,39.9666666667,19.29,40.4333333333,18.89,49.0094444444,6.1233333333,93.3666666667,19.29,37.59,21.5388888889,43.275,19.1,43.9,5.05,742.1,93,6.5,28.5,4,18.9682521042,18.9682521042 -70,0,20.6,41.1633333333,19.79,39.79,21,40.03,19.29,40.4,18.89,48.8805555556,6.3966666667,93.4333333333,19.29,37.535,21.5,43.145,19.1,43.79,5.1333333333,742.1666666667,93,6.3333333333,28.6666666667,4.0666666667,17.235698679,17.235698679 -60,0,20.6,41.23,19.79,39.79,21,40.1633333333,19.29,40.4,18.89,48.775,6.66,93.4,19.29,37.52,21.5,43.085,19.1,43.79,5.2166666667,742.2333333333,93,6.1666666667,28.8333333333,4.1333333333,12.3769878759,12.3769878759 -80,10,20.5333333333,41.29,19.8566666667,40,21,40.09,19.26,40.5,18.89,48.645,6.8,93.4666666667,19.29,37.5,21.5,43.055,19.1666666667,43.79,5.3,742.3,93,6,29,4.2,45.0450398494,45.0450398494 -70,0,20.5,41.9266666667,19.79,40,21,40.1633333333,19.2,40.56,18.89,48.59,6.4,93.5,19.29,37.5,21.5055555556,43.3455555556,19.1666666667,43.73,5.4,742.4,92.1666666667,5.8333333333,30.8333333333,4.1666666667,33.4185106331,33.4185106331 -60,0,20.5666666667,42.26,19.79,40.09,21,40.3266666667,19.2,40.86,18.89,48.555,6.4,93.5,19.2955555556,37.5222222222,21.5666666667,43.635,19.1,43.59,5.5,742.5,91.3333333333,5.6666666667,32.6666666667,4.1333333333,21.7501848005,21.7501848005 -70,0,20.6,42.4,19.8566666667,40.2233333333,21,40.3266666667,19.2,41.1933333333,18.89,48.51,6.53,93.5,19.4505555556,37.9505555556,21.6983333333,43.9888888889,19.1,43.6633333333,5.6,742.6,90.5,5.5,34.5,4.1,29.9503024551,29.9503024551 -80,0,20.6,42.4,19.89,40.53,21,40.4333333333,19.29,41.4,18.89,48.5,6.7966666667,93.5,19.655,38.1144444444,21.8177777778,44.28,19.2,43.6266666667,5.7,742.7,89.6666666667,5.3333333333,36.3333333333,4.0666666667,43.0545030045,43.0545030045 -120,0,20.6,42.3633333333,19.9633333333,40.6633333333,21,40.5225,19.29,41.4,18.89,48.5,7.0933333333,93.6233333333,19.77,38.1022222222,21.9816666667,44.5672222222,19.2,43.7,5.8,742.8,88.8333333333,5.1666666667,38.1666666667,4.0333333333,48.1995455688,48.1995455688 -110,0,20.6,42.3633333333,19.945,40.7,21,40.6633333333,19.29,41.23,18.89,48.51,6.6933333333,93.5633333333,19.76,38.2088888889,22.0166666667,44.9061111111,19.2,43.6333333333,5.9,742.9,88,5,40,4,38.3626770927,38.3626770927 -120,0,20.6,42.4333333333,19.89,40.7,21,40.8266666667,19.23,41.1566666667,18.89,48.585,6.69,93.59,19.79,38.345,22.0722222222,45.6961111111,19.2,43.5,5.9666666667,742.95,87.1666666667,4.8333333333,40,3.9333333333,13.166020473,13.166020473 -110,0,20.6,42.5,19.89,40.7,21,40.9666666667,19.2,41.06,18.89,48.6022222222,6.69,93.59,19.79,38.4,22.1666666667,46.3977777778,19.2,43.5,6.0333333333,743,86.3333333333,4.6666666667,40,3.8666666667,19.1201515612,19.1201515612 -110,0,20.6,42.5,19.89,40.59,21,41,19.2,41,18.89,48.645,6.8,93.69,19.79,38.4,22.205,46.7766666667,19.2,43.4,6.1,743.05,85.5,4.5,40,3.8,27.4202803033,27.4202803033 -100,10,20.6,42.5675,19.89,40.59,21,41.06,19.2,40.9333333333,18.89,48.725,6.8666666667,93.69,19.7955555556,38.4611111111,22.26,47.2072222222,19.2,43.4,6.1666666667,743.1,84.6666666667,4.3333333333,40,3.7333333333,24.0046813851,24.0046813851 -110,0,20.6,42.53,20,40.5,21,41.09,19.2,40.9333333333,18.89,48.79,7,93.69,19.8788888889,38.5,22.3288888889,47.4611111111,19.2,43.4,6.2333333333,743.15,83.8333333333,4.1666666667,40,3.6666666667,8.8390076999,8.8390076999 -90,0,20.6,42.4666666667,20,40.56,21,41.1633333333,19.2,41.03,18.89,48.8694444444,7.06,93.7633333333,19.89,38.5,22.4205555556,47.1422222222,19.2,43.4666666667,6.3,743.2,83,4,40,3.6,9.7115442506,9.7115442506 -100,0,20.6,42.4666666667,20,40.59,21,41.2,19.2,41.09,18.89,48.9,6.8666666667,93.69,19.9694444444,38.5,22.5611111111,46.6822222222,19.2,43.4666666667,6.2,743.3,84.3333333333,4.1666666667,40,3.7166666667,9.5307440148,9.5307440148 -110,0,20.6,42.5,20,40.59,21,41.2,19.1,41,18.89,48.9722222222,6.8,93.7266666667,20,38.51,22.65,46.3188888889,19.2,43.4,6.1,743.4,85.6666666667,4.3333333333,40,3.8333333333,15.4621344642,15.4621344642 -110,0,20.6,42.4333333333,20,40.56,21,41.2,19.175,41.0675,18.89,49,6.8,93.7266666667,20.0277777778,38.535,22.755,45.9205555556,19.2,43.4,6,743.5,87,4.5,40,3.95,19.697910978,19.697910978 -100,0,20.6,42.29,20,40.5,21,41.2,19.1333333333,41.09,18.89,49.02,6.56,93.7266666667,20.1,38.4922222222,22.84,45.5294444444,19.2,43.4,5.9,743.6,88.3333333333,4.6666666667,40,4.0666666667,4.0684779407,4.0684779407 -80,0,20.6,42.23,20.1,40.4666666667,21,41.2,19.1,41.1266666667,18.89,49,6.4333333333,93.7266666667,20.1,38.2572222222,22.9327777778,45.4,19.2,43.4333333333,5.8,743.7,89.6666666667,4.8333333333,40,4.1833333333,37.6327615231,37.6327615231 -80,0,20.5,42.26,20.1,40.4,21,41.2,19.1,41.2,18.89,49,6.3,93.69,20.0944444444,38.1033333333,23,45.4,19.2,43.4333333333,5.7,743.8,91,5,40,4.3,16.7822681949,16.7822681949 -80,0,20.5,42.2,20.1,40.4,20.89,41.2,19.1,41.2,18.89,49,6.2266666667,93.69,20.0111111111,37.96,22.9327777778,45.6222222222,19.2,43.3633333333,5.6,743.95,91,4.8333333333,40,4.2166666667,46.185196063,46.185196063 -80,0,20.5,42.09,20.0333333333,40.3266666667,20.89,41.2,19.1,41.26,18.89,49,6.06,93.6266666667,20,37.9,22.89,46.0338888889,19.2,43.23,5.5,744.1,91,4.6666666667,40,4.1333333333,17.8798877168,17.8798877168 -90,0,20.5,42.03,20,40.29,20.89,41.23,19.1,41.29,18.89,49,5.9333333333,93.5,19.9877777778,37.95,22.8961111111,46.0094444444,19.1666666667,43.1633333333,5.4,744.25,91,4.5,40,4.05,17.6478577312,17.6478577312 -80,0,20.5,42.09,20,40.29,20.89,41.23,19.0333333333,41.23,18.8677777778,48.9611111111,5.8,93.4,19.9327777778,38.1572222222,22.9633333333,45.8311111111,19.1,42.9633333333,5.3,744.4,91,4.3333333333,40,3.9666666667,20.684156043,20.684156043 -70,0,20.5,42.1633333333,20,40.3633333333,20.79,41.09,19,41.2,18.8566666667,48.8988888889,5.7266666667,93.4,19.9388888889,38.27,23,45.5166666667,19.1,42.8633333333,5.2,744.55,91,4.1666666667,40,3.8833333333,10.673891101,10.673891101 -90,30,20.5,42.3666666667,20,40.3633333333,20.79,41.09,19,41.2,18.8788888889,48.8877777778,5.6566666667,93.4,19.9205555556,38.3261111111,23,45.4,19.1,42.73,5.1,744.7,91,4,40,3.8,49.6889479575,49.6889479575 -120,20,20.5,42.7,20,40.45,20.79,41.1633333333,19,41.73,18.8066666667,48.8083333333,5.59,93.4,20,38.4766666667,23,45.4055555556,19.0666666667,42.4666666667,5.0166666667,744.8,91.6666666667,3.8333333333,43.8333333333,3.8,30.1360444282,30.1360444282 -360,20,20.5,42.79,20.1,40.5666666667,20.79,41.09,19,41.93,18.8122222222,48.8266666667,5.56,93.4,20,38.6433333333,23,45.6444444444,19,42.295,4.9333333333,744.9,92.3333333333,3.6666666667,47.6666666667,3.8,27.8856604593,27.8856604593 -530,20,20.5,42.79,20.1,40.76,20.79,41.1633333333,19,42.1566666667,18.79,48.845,5.5,93.4,20,38.91,23.0055555556,46.3111111111,19,42.2,4.85,745,93,3.5,51.5,3.8,44.6995759732,44.6995759732 -620,20,20.5333333333,44.5666666667,20.2,41.03,20.79,41.2,19,42.3633333333,18.79,48.9277777778,5.35,93.245,20.0611111111,38.9555555556,23.0888888889,47.0611111111,19,42.1633333333,4.7666666667,745.1,93.6666666667,3.3333333333,55.3333333333,3.8,3.4865099587,3.4865099587 -230,10,20.6,49.12,20.2,41.6966666667,20.79,41.26,19.0333333333,42.7266666667,18.79,49.0844444444,5.2633333333,93.23,20.1,38.9027777778,23.1,47.3066666667,19,42.09,4.6833333333,745.2,94.3333333333,3.1666666667,59.1666666667,3.8,39.0982375247,39.0982375247 -100,0,20.6666666667,52.7333333333,20.29,43.1666666667,20.89,41.6566666667,19.1,43.3933333333,18.79,49.4833333333,5.19,93.1566666667,20.1,38.5855555556,23.05,46.7644444444,19,42.09,4.6,745.3,95,3,63,3.8,41.1809271085,41.1809271085 -100,20,20.79,51.1933333333,20.3566666667,43.9,20.89,41.99,19.1,44.8233333333,18.79,49.9244444444,5.19,93.19,20.0722222222,38.2016666667,22.9938888889,46.1655555556,19,42.03,4.6666666667,745.4,94.3333333333,2.8333333333,57.3333333333,3.7833333333,24.3824471836,24.3824471836 -120,20,20.79,49.86,20.5333333333,43.76,20.9266666667,42.5666666667,19.1,45.49,18.8177777778,52.5377777778,5.19,93.19,19.9938888889,37.8344444444,22.9816666667,45.8311111111,19,41.9666666667,4.7333333333,745.5,93.6666666667,2.6666666667,51.6666666667,3.7666666667,19.3332734983,19.3332734983 -140,20,20.89,48.3233333333,20.6,43.5666666667,21,42.76,19.1,45.79,19.4905555556,72.325,5.19,93.19,19.9022222222,37.62,23,45.455,19,41.9,4.8,745.6,93,2.5,46,3.75,2.6968140737,2.6968140737 -100,10,20.9633333333,47.2633333333,20.6,43.1,21,42.9,19.125,45.695,20.325,84.3294444444,5.19,93.19,19.89,37.3672222222,23,44.9738888889,19,41.76,4.8666666667,745.7,92.3333333333,2.3333333333,40.3333333333,3.7333333333,46.0318734753,46.0318734753 -110,20,21,45.9966666667,20.6,42.7666666667,21,42.8266666667,19.1333333333,45.39,20.7172222222,86.97,5.19,93.19,19.89,37.985,22.9327777778,44.43,19,41.6266666667,4.9333333333,745.8,91.6666666667,2.1666666667,34.6666666667,3.7166666667,12.7279984183,12.7279984183 -110,10,21,45.2566666667,20.7,42.43,21,42.7,19.1333333333,45.0266666667,22.1572222222,90.2611111111,5.1233333333,93.19,19.9327777778,38.6466666667,22.84,43.7411111111,18.9633333333,41.4666666667,5,745.9,91,2,29,3.7,26.0719997808,26.0719997808 -140,20,21.0333333333,44.5266666667,20.7,42.0966666667,21,42.6266666667,19.1333333333,44.7666666667,21.775,90.1011111111,5.1566666667,93.19,20,38.9627777778,22.79,43.8833333333,18.9633333333,41.4,4.9666666667,745.9666666667,91.6666666667,2,27.6666666667,3.75,41.152583505,41.152583505 -130,10,21.1,44.2666666667,20.7,41.9,20.9266666667,42.4666666667,19.2,44.59,21.1511111111,92.8566666667,5.09,93.19,20,39.1327777778,22.8744444444,44.32,18.89,41.4,4.9333333333,746.0333333333,92.3333333333,2,26.3333333333,3.8,47.2973669413,47.2973669413 -140,10,21.1333333333,44.0266666667,20.76,41.7666666667,21,42.4,19.2,44.59,20.7722222222,93.9766666667,5,93.1233333333,20,39.2633333333,22.9994444444,44.4277777778,18.89,41.4666666667,4.9,746.1,93,2,25,3.85,42.3492373084,42.3492373084 -150,10,21.2,43.8266666667,20.89,41.6633333333,21,42.4,19.2,44.6266666667,20.6316666667,94.9138888889,5,93.1233333333,20.0333333333,39.3327777778,23.0666666667,44.4388888889,18.89,41.5,4.8666666667,746.1666666667,93.6666666667,2,23.6666666667,3.9,24.6563859051,24.6563859051 -230,0,21.2,43.6633333333,20.89,41.53,21,42.3266666667,19.2,44.7,21.6166666667,95.8022222222,4.9,93.1566666667,20.0333333333,39.3816666667,23.1833333333,44.3766666667,18.89,41.5,4.8333333333,746.2333333333,94.3333333333,2,22.3333333333,3.95,5.5893481709,5.5893481709 -130,0,21.26,43.59,21,41.43,21,42.26,19.2,44.79,21.7294444444,94.8361111111,4.8333333333,93.03,20.0833333333,39.6716666667,23.225,44.235,18.89,41.59,4.8,746.3,95,2,21,4,14.6844584495,14.6844584495 -130,0,21.29,43.6266666667,21.0666666667,41.3633333333,21.025,42.2225,19.2,44.8633333333,21.3477777778,94.9861111111,4.69,93,20.0777777778,39.3666666667,23.29,44.27,18.89,41.59,4.8,746.3833333333,95,2.1666666667,21.3333333333,4,28.4727404593,28.4727404593 -120,0,21.3566666667,43.7,21.1,41.4,21.1,42.29,19.2,45.03,21.16,94.4544444444,4.69,93,20.0777777778,39.4133333333,23.29,44.28,18.89,41.6266666667,4.8,746.4666666667,95,2.3333333333,21.6666666667,4,48.8037347095,48.8037347095 -130,0,21.39,43.4666666667,21.125,41.3725,21,42.2,19.2,45.09,20.9738888889,93.4233333333,4.69,93,20.1,39.2872222222,23.3288888889,44.205,18.89,41.6175,4.8,746.55,95,2.5,22,4,12.8374784021,12.8374784021 -110,20,21.39,43.3266666667,21.2,41.29,21,42.2,19.2,45.09,20.8177777778,91.6988888889,4.69,93.03,20.1388888889,39.225,23.39,44.1755555556,18.89,41.59,4.8,746.6333333333,95,2.6666666667,22.3333333333,4,4.2975900462,4.2975900462 -130,20,21.39,43.1633333333,21.1,41.23,21,42.1633333333,19.2,45.09,20.7294444444,89.4161111111,4.69,93.09,20.2,39.29,23.4511111111,44.4266666667,18.89,41.6266666667,4.8,746.7166666667,95,2.8333333333,22.6666666667,4,48.9027340431,48.9027340431 -140,20,21.39,43.09,21.1666666667,41.29,20.9266666667,42.09,19.3233333333,45.73,20.5944444444,87.0638888889,4.69,93.09,20.215,39.3138888889,23.4572222222,44.9283333333,18.8233333333,41.7,4.8,746.8,95,3,23,4,33.2271942752,33.2271942752 -150,20,21.39,43.045,21.1,41.4,20.79,42.09,19.39,45.73,20.505,85.1261111111,4.69,93.09,20.29,39.4988888889,23.5,45.4738888889,18.8233333333,41.8266666667,4.75,746.85,94.8333333333,3,22.8333333333,3.9333333333,29.4214128749,29.4214128749 -120,30,21.39,43.09,21.1,41.4666666667,20.79,42.1633333333,19.4266666667,45.73,20.3855555556,83.3838888889,4.69,93.03,20.29,39.6572222222,23.5,45.8161111111,18.89,41.9666666667,4.7,746.9,94.6666666667,3,22.6666666667,3.8666666667,8.2227840438,8.2227840438 -70,20,21.39,43.09,21.1,41.59,20.79,42.26,19.5,45.79,20.2961111111,81.8211111111,4.69,93.09,20.3177777778,39.8105555556,23.4816666667,46.2072222222,18.8566666667,42,4.65,746.95,94.5,3,22.5,3.8,4.9694551621,4.9694551621 -80,20,21.39,43.2,21.1,41.6633333333,20.79,42.2,19.6333333333,45.8266666667,20.21,80.4238888889,4.69,93.03,20.39,39.9611111111,23.39,46.7944444444,18.79,42,4.6,747,94.3333333333,3,22.3333333333,3.7333333333,44.1779881832,44.1779881832 -80,30,21.39,43.26,21.0666666667,41.6633333333,20.79,42.2,19.7,45.7225,20.1388888889,79.1944444444,4.6233333333,92.9633333333,20.4144444444,40.0288888889,23.39,47.2261111111,18.8233333333,42.2666666667,4.55,747.05,94.1666666667,3,22.1666666667,3.6666666667,34.2807353707,34.2807353707 -70,20,21.29,43.29,21,41.6633333333,20.79,42.2,19.7,45.4633333333,20.0722222222,78.1883333333,4.5266666667,92.9333333333,20.39,40.045,23.34,47.5994444444,18.89,42.4666666667,4.5,747.1,94,3,22,3.6,33.5189445643,33.5189445643 -70,20,21.29,43.29,20.9633333333,41.7,20.79,42.2,19.79,45.26,20,77.2433333333,4.26,92.66,20.3733333333,40.3627777778,23.29,47.795,18.8566666667,42.59,4.2833333333,747.1333333333,94.5,3,28.8333333333,3.45,15.7832438126,15.7832438126 -70,30,21.29,43.3266666667,20.89,41.7,20.79,42.26,19.79,45.2,20,76.5461111111,3.7233333333,91.9933333333,20.3011111111,40.54,23.265,48.1166666667,18.8566666667,42.7233333333,4.0666666667,747.1666666667,95,3,35.6666666667,3.3,16.6963058407,16.6963058407 -70,20,21.29,43.4,20.89,41.7,20.79,42.29,19.89,45.2,19.9327777778,75.9816666667,3.39,91.6,20.29,40.5755555556,23.2,48.1022222222,18.89,42.9,3.85,747.2,95.5,3,42.5,3.15,17.9258795804,17.9258795804 -80,20,21.26,43.4,20.8233333333,41.5666666667,20.79,42.29,19.9633333333,45.1266666667,19.8622222222,75.4422222222,3.0266666667,91.2,20.29,40.6327777778,23.1722222222,48.1205555556,18.89,42.9666666667,3.6333333333,747.2333333333,96,3,49.3333333333,3,17.6420003991,17.6420003991 -70,20,21.2,43.4,20.76,41.5,20.79,42.29,20,45.0266666667,19.79,74.635,2.8266666667,90.8666666667,20.29,40.6144444444,23.1,48.145,18.89,43,3.4166666667,747.2666666667,96.5,3,56.1666666667,2.85,13.257363264,13.257363264 -60,30,21.2,43.4,20.7,41.4333333333,20.79,42.29,20,44.8266666667,19.79,73.8494444444,2.6633333333,91.0266666667,20.265,40.5494444444,23.0833333333,48.1116666667,18.89,43.06,3.2,747.3,97,3,63,2.7,40.645892499,40.645892499 -70,20,21.1333333333,43.4666666667,20.6666666667,41.3633333333,20.8233333333,42.23,20.1,44.8633333333,19.715,73.2105555556,2.53,90.8333333333,20.21,40.4111111111,23.0444444444,48.04,18.89,43.1266666667,3.3166666667,747.3666666667,97.1666666667,3,63.1666666667,2.85,43.7407675898,43.7407675898 -50,20,21.1666666667,43.4,20.6,41.29,20.89,42.2675,20.1,44.73,19.7,72.5761111111,2.545,91.15,20.2,40.3816666667,23.05,48.03,18.89,43.2,3.4333333333,747.4333333333,97.3333333333,3,63.3333333333,3,7.1718293824,7.1718293824 -30,0,21.1,43.3266666667,20.6,41.26,20.8233333333,42.2,20.1,44.6633333333,19.6611111111,71.85,2.86,91.7933333333,20.2,40.3083333333,23.0055555556,48.015,18.89,43.2,3.55,747.5,97.5,3,63.5,3.15,8.3913884358,8.3913884358 -40,0,21.0666666667,43.3633333333,20.5333333333,41.26,20.89,42.29,20.1,44.59,19.6,71.0433333333,3.1333333333,92.06,20.2,40.3877777778,23,48.2005555556,18.89,43.295,3.6666666667,747.5666666667,97.6666666667,3,63.6666666667,3.3,10.9249695088,10.9249695088 -20,0,21,43.3633333333,20.5,41.29,20.8233333333,42.23,20,44.3633333333,19.5611111111,70.4866666667,3.3266666667,92.2266666667,20.15,40.45,23,48.4983333333,18.89,43.4666666667,3.7833333333,747.6333333333,97.8333333333,3,63.8333333333,3.45,49.7033242485,49.7033242485 -60,0,21,43.4333333333,20.4633333333,41.26,20.79,42.1266666667,20,44.23,19.5,70.0238888889,3.4,92.3,20.1222222222,40.5811111111,22.9816666667,48.645,18.89,43.59,3.9,747.7,98,3,64,3.6,32.9156368156,32.9156368156 -60,0,21,43.56,20.39,41.2,20.79,42.2,19.89,44.06,19.5,69.595,3.4333333333,92.3333333333,20.1,40.6877777778,22.9266666667,48.9244444444,18.89,43.6633333333,3.9166666667,747.75,97.8333333333,3,56.8333333333,3.5833333333,41.0892570741,41.0892570741 -50,0,20.89,43.7,20.39,41.2,20.79,42.2,19.8233333333,43.9333333333,19.4633333333,69.0927777778,3.56,92.4666666667,20.1,40.7611111111,22.89,49.2327777778,18.89,43.73,3.9333333333,747.8,97.6666666667,3,49.6666666667,3.5666666667,38.6727226083,38.6727226083 -50,0,20.89,43.7225,20.3233333333,41.2,20.8566666667,42.2,19.76,43.9,19.3961111111,68.6266666667,3.6266666667,92.53,20.1,40.8877777778,22.89,49.3961111111,18.89,43.79,3.95,747.85,97.5,3,42.5,3.55,1.8235116964,1.8235116964 -50,0,20.89,43.8633333333,20.3566666667,41.29,20.89,42.2,19.7,43.9,19.39,68.1811111111,3.7,92.59,20.1,40.9611111111,22.89,49.545,18.89,43.8266666667,3.9666666667,747.9,97.3333333333,3,35.3333333333,3.5333333333,2.1586164716,2.1586164716 -50,0,20.79,43.7,20.29,41.29,20.9633333333,42.2,19.6666666667,43.8333333333,19.39,67.7933333333,3.73,92.59,20.1,41,22.8733333333,49.6288888889,18.89,43.9666666667,3.9833333333,747.95,97.1666666667,3,28.1666666667,3.5166666667,2.812190901,2.812190901 -50,0,20.79,43.7,20.26,41.26,20.9266666667,42.09,19.6,43.7,19.3788888889,67.4322222222,3.73,92.59,20.1,41.0611111111,22.79,49.535,18.89,44.03,4,748,97,3,21,3.5,28.8114321651,28.8114321651 -50,0,20.79,43.59,20.2,41.2,21,42.09,19.5333333333,43.7,19.3177777778,67.1266666667,3.73,92.59,20.1,41.1877777778,22.785,49.555,18.89,44.09,4,748.0333333333,97,3,28.3333333333,3.5,24.1455184179,24.1455184179 -50,0,20.79,43.53,20.2,41.23,21,42.09,19.5,43.7,19.29,66.7894444444,3.79,92.59,20.1,41.1561111111,22.73,49.59,18.89,44.23,4,748.0666666667,97,3,35.6666666667,3.5,6.133596052,6.133596052 -60,0,20.7,43.5,20.2,41.29,21,42.09,19.5,43.6266666667,19.29,66.5238888889,3.79,92.59,20.1,41.335,22.7,49.53,18.89,44.29,4,748.1,97,3,43,3.5,19.873666123,19.873666123 -60,0,20.7,43.5,20.1,41.29,21,42.09,19.39,43.5,19.29,66.2394444444,3.79,92.59,20.1,41.4388888889,22.6277777778,49.6055555556,18.89,44.4333333333,4,748.1333333333,97,3,50.3333333333,3.5,13.0246109795,13.0246109795 -50,0,20.7,43.4,20.1,41.3633333333,21,42.09,19.39,43.5,19.29,65.9927777778,3.7233333333,92.56,20.1,41.5,22.6,49.8627777778,18.89,44.5,4,748.1666666667,97,3,57.6666666667,3.5,32.5407689903,32.5407689903 -60,0,20.7,43.4,20.1,41.4,21.1,42.2,19.3566666667,43.5,19.26,65.7094444444,3.53,92.5,20.1,41.5,22.5666666667,50.0138888889,18.89,44.6266666667,4,748.2,97,3,65,3.5,45.2657000395,45.2657000395 -40,0,20.6,43.29,20.1,41.4,21.1,42.1266666667,19.29,43.5,19.24,65.5127777778,3.19,92.195,20.1,41.51,22.5277777778,50.3316666667,18.89,44.7,3.75,748.2666666667,97,3,64.5,3.2666666667,37.0064446935,37.0064446935 -50,0,20.6,43.29,20,41.29,21.1,42.09,19.29,43.5,19.225,65.2672222222,2.8633333333,91.7633333333,20.1,41.51,22.5,50.7227777778,18.89,44.79,3.5,748.3333333333,97,3,64,3.0333333333,42.0858560596,42.0858560596 -50,0,20.6,43.29,20,41.29,21.075,42.0675,19.29,43.4333333333,19.22,65.1083333333,2.73,91.6233333333,20.1,41.5,22.5,50.9427777778,18.89,44.8633333333,3.25,748.4,97,3,63.5,2.8,2.2119956324,2.2119956324 -30,0,20.5333333333,43.29,20,41.29,21.0666666667,42.06,19.29,43.4,19.2,64.9333333333,2.3333333333,91.0266666667,20.1,41.4333333333,22.4877777778,51.0877777778,18.89,44.9,3,748.4666666667,97,3,63,2.5666666667,21.1636398803,21.1636398803 -30,0,20.5,43.26,19.9266666667,41.29,21.0666666667,41.9666666667,19.23,43.3266666667,19.2,64.7383333333,2.1266666667,90.6933333333,20.1,41.4666666667,22.4327777778,51.07,18.89,44.975,2.75,748.5333333333,97,3,62.5,2.3333333333,43.6969773262,43.6969773262 -40,0,20.5,43.2,19.89,41.29,21,41.8266666667,19.2,43.2,19.2,64.5394444444,1.8633333333,90.4,20.1,41.4888888889,22.4022222222,50.8905555556,18.89,45,2.5,748.6,97,3,62,2.1,8.7682169979,8.7682169979 -40,0,20.5,43.2,19.89,41.29,20.9633333333,41.79,19.2,43.2,19.1777777778,64.3661111111,1.79,90.3333333333,20.1,41.5,22.39,50.715,18.89,45.1266666667,2.4,748.6,97.1666666667,3,62,2.0166666667,17.4380797194,17.4380797194 -50,0,20.4266666667,43.1266666667,19.8233333333,41.23,20.89,41.79,19.1666666667,43.2,19.1666666667,64.21,1.6666666667,90.23,20.1,41.4611111111,22.3788888889,50.745,18.89,45.2,2.3,748.6,97.3333333333,3,62,1.9333333333,31.092238985,31.092238985 -50,0,20.39,43,19.79,41.1633333333,20.89,41.79,19.1,43.2,19.1055555556,64.0605555556,1.5333333333,90.09,20.1,41.3816666667,22.3177777778,50.79,18.89,45.23,2.2,748.6,97.5,3,62,1.85,21.0850001429,21.0850001429 -50,0,20.39,43,19.79,41.09,20.89,41.79,19.1,43.09,19.1,63.9111111111,1.39,90,20.0888888889,41.2922222222,22.29,50.8144444444,18.89,45.29,2.1,748.6,97.6666666667,3,62,1.7666666667,47.1662959899,47.1662959899 -50,0,20.39,43,19.79,41.09,20.89,41.76,19.1,43.09,19.1,63.7472222222,1.3233333333,90,20.0611111111,41.2427777778,22.29,50.8261111111,18.89,45.3266666667,2,748.6,97.8333333333,3,62,1.6833333333,49.761625065,49.761625065 -40,0,20.29,42.9,19.79,41.09,20.89,41.7,19.1,43.06,19.1,63.5772222222,1.2,89.7633333333,20.0444444444,41.2277777778,22.28,51.0116666667,18.89,45.4,1.9,748.6,98,3,62,1.6,40.8785771928,40.8785771928 -50,0,20.29,42.9,19.7,41.09,20.89,41.7,19.025,42.925,19.1,63.4388888889,1.0666666667,89.5633333333,20,41.2,22.205,51.075,18.89,45.5,1.8666666667,748.6,98.1666666667,3,62,1.5833333333,45.0489242212,45.0489242212 -50,0,20.29,42.9,19.7,41.09,20.89,41.7,19,42.9,19.1,63.345,0.9,89.4333333333,20,41.1938888889,22.2,51.03,18.89,45.5,1.8333333333,748.6,98.3333333333,3,62,1.5666666667,32.7921258984,32.7921258984 -50,0,20.23,42.8266666667,19.7,41,20.89,41.59,18.9633333333,42.79,19.0388888889,63.1327777778,0.8333333333,89.4333333333,20,41.1022222222,22.2,50.9327777778,18.89,45.59,1.8,748.6,98.5,3,62,1.55,20.18182592,20.18182592 -60,0,20.2,42.7,19.7,41,20.89,41.6633333333,18.89,42.79,19,62.95,0.7,89.3333333333,20,41.09,22.1277777778,50.7772222222,18.89,45.59,1.7666666667,748.6,98.6666666667,3,62,1.5333333333,26.5085048275,26.5085048275 -50,0,20.2,42.7,19.6666666667,40.9666666667,20.9266666667,41.7,18.9633333333,42.79,19,62.8277777778,0.625,89.4475,20,41.09,22.1,50.6033333333,18.89,45.7,1.7333333333,748.6,98.8333333333,3,62,1.5166666667,25.1240511076,25.1240511076 -40,0,20.2,42.7,19.6,40.9,21,41.76,18.89,42.79,19,62.7116666667,0.6666666667,89.73,20,41.09,22.1,50.5222222222,18.89,45.7,1.7,748.6,99,3,62,1.5,42.765573482,42.765573482 -50,0,20.1333333333,42.7,19.6,40.8633333333,21,41.79,18.89,42.7,19,62.5672222222,0.7,89.8666666667,20,41.09,22.0888888889,50.3716666667,18.89,45.7,1.7,748.6333333333,99,3.1666666667,61.5,1.5,12.7016814309,12.7016814309 -50,0,20.1,42.7,19.6,40.79,21,41.79,18.89,42.7,19,62.45,0.7,89.9333333333,20,41.1572222222,22.0166666667,50.1844444444,18.89,45.7,1.7,748.6666666667,99,3.3333333333,61,1.5,41.0206221743,41.0206221743 -50,0,20.1,42.7,19.6,40.8266666667,21,41.7,18.89,42.59,19,62.3033333333,0.6,89.8333333333,20,41.2,22.0333333333,50.1427777778,18.89,45.6633333333,1.7,748.7,99,3.5,60.5,1.5,18.2182374992,18.2182374992 -50,0,20.0333333333,42.53,19.5333333333,40.8266666667,21,41.7675,18.8233333333,42.53,19,62.1794444444,0.5333333333,89.8333333333,20,41.22,22.0111111111,50.21,18.89,45.6633333333,1.7,748.7333333333,99,3.6666666667,60,1.5,39.5410476369,39.5410476369 -40,0,20.1,42.59,19.5666666667,40.79,21,41.8633333333,18.8566666667,42.4666666667,18.9816666667,62.035,0.4666666667,89.73,20,41.245,22,50.1327777778,18.89,45.7,1.7,748.7666666667,99,3.8333333333,59.5,1.5,45.4916913295,45.4916913295 -30,0,20,42.4666666667,19.5,40.79,21,41.8633333333,18.79,42.4,18.89,61.95,0.3333333333,89.53,20,41.3633333333,22,50.045,18.89,45.7,1.7,748.8,99,4,59,1.5,11.9174676365,11.9174676365 -40,0,20,42.4,19.5,40.79,21,41.79,18.79,42.29,18.89,61.8522222222,0.2,89.2633333333,20,41.29,22,49.9388888889,18.89,45.7,1.6333333333,748.8,98.8333333333,3.8333333333,59.3333333333,1.4166666667,36.1607535742,36.1607535742 -40,10,20,42.4,19.39,40.7,21,41.79,18.79,42.29,18.89,61.73,0.2,89.3966666667,20,41.235,21.9694444444,49.9,18.89,45.7,1.5666666667,748.8,98.6666666667,3.6666666667,59.6666666667,1.3333333333,0.1788522466,0.1788522466 -60,10,20,42.4,19.39,40.7,21,41.79,18.79,42.26,18.89,61.6522222222,0.1666666667,89.3666666667,20,41.145,21.9511111111,49.9922222222,18.89,45.7,1.5,748.8,98.5,3.5,60,1.25,38.1949985982,38.1949985982 -50,0,19.9633333333,42.26,19.39,40.6266666667,20.89,41.9,18.79,42.3333333333,18.89,61.53,0.0333333333,89.16,19.9816666667,41.09,21.9022222222,49.9388888889,18.89,45.56,1.4333333333,748.8,98.3333333333,3.3333333333,60.3333333333,1.1666666667,14.2670557019,14.2670557019 -50,0,19.9633333333,42.1266666667,19.39,40.7,20.89,41.9,18.79,42.53,18.8844444444,61.4055555556,0.1,89.5633333333,19.9022222222,41.09,21.89,49.9222222222,18.89,45.5,1.3666666667,748.8,98.1666666667,3.1666666667,60.6666666667,1.0833333333,17.0191277983,17.0191277983 -50,0,19.89,42.09,19.3566666667,40.7,20.8566666667,41.9,18.79,42.53,18.8511111111,61.2872222222,0.1666666667,89.69,19.9266666667,41.015,21.89,49.845,18.8566666667,45.4666666667,1.3,748.8,98,3,61,1,45.1531071332,45.1531071332 -70,0,19.89,42.1266666667,19.29,40.6266666667,20.79,41.9,18.79,42.5,18.8622222222,61.1994444444,0.1,89.7266666667,19.89,41.045,21.8844444444,49.7038888889,18.79,45.3266666667,1.5,748.8666666667,97.8333333333,3,61.3333333333,1.1833333333,43.878988002,43.878988002 -60,0,19.89,42.4,19.3233333333,40.59,20.8233333333,41.9,18.79,42.5,18.8011111111,61.0522222222,0.1,89.8,19.89,41.1816666667,21.8233333333,49.5422222222,18.89,45.3633333333,1.7,748.9333333333,97.6666666667,3,61.6666666667,1.3666666667,21.2270167191,21.2270167191 -60,0,19.89,42.7,19.3233333333,40.7233333333,20.8233333333,41.7666666667,18.73,42.5,18.79,60.9933333333,0.15,90.045,19.89,41.2,21.79,49.4388888889,18.8233333333,45.23,1.9,749,97.5,3,62,1.55,40.8239832614,40.8239832614 -60,0,19.89,42.96,19.29,40.9633333333,20.79,41.56,18.7,42.4,18.79,60.9,0.5,90.6,19.89,41.1694444444,21.79,49.345,18.8566666667,45.1333333333,2.1,749.0666666667,97.3333333333,3,62.3333333333,1.7333333333,13.0860553705,13.0860553705 -410,0,19.89,43.06,19.29,41.1633333333,20.73,41.56,18.7,42.3266666667,18.79,60.8327777778,0.7666666667,90.8,19.89,41.0922222222,21.78,49.1722222222,18.79,44.9333333333,2.3,749.1333333333,97.1666666667,3,62.6666666667,1.9166666667,29.2093661381,29.2093661381 -70,0,19.89,43,19.3233333333,41.29,20.76,41.59,18.7,42.29,18.79,60.775,1.0666666667,91.03,19.89,41.0983333333,21.78,49.09,18.79,44.76,2.5,749.2,97,3,63,2.1,1.045306446,1.045306446 -70,0,19.89,43,19.3233333333,41.29,20.7,41.53,18.7,42.23,18.79,60.6916666667,1.4,91.2966666667,19.89,41.2,21.76,49.09,18.79,44.7,2.6666666667,749.2333333333,96.8333333333,3.1666666667,63.1666666667,2.2333333333,19.8049096158,19.8049096158 -60,10,19.89,43,19.29,41.5,20.7,41.56,18.7,42.29,18.79,60.59,1.7666666667,91.5633333333,19.89,41.205,21.76,49.065,18.79,44.5,2.8333333333,749.2666666667,96.6666666667,3.3333333333,63.3333333333,2.3666666667,13.6399029987,13.6399029987 -100,0,20,45.53,19.29,41.56,20.7,41.5,18.7,42.23,18.785,60.535,2.1,91.83,19.89,41.24,21.735,49.025,18.79,44.4333333333,3,749.3,96.5,3.5,63.5,2.5,10.1394174853,10.1394174853 -70,0,20,44.0566666667,19.29,41.1633333333,20.6666666667,41.2966666667,18.7,42.2,18.73,60.5,2.5966666667,92.1233333333,19.89,41.2688888889,21.7,49.07,18.79,44.29,3.1666666667,749.3333333333,96.3333333333,3.6666666667,63.6666666667,2.6333333333,10.4749351158,10.4749351158 -70,0,19.89,43.56,19.29,41.1633333333,20.6,41.1725,18.7,42.2,18.7,60.4266666667,2.99,92.33,19.89,41.0772222222,21.7,49.005,18.79,44.23,3.3333333333,749.3666666667,96.1666666667,3.8333333333,63.8333333333,2.7666666667,5.8446470299,5.8446470299 -80,10,19.9633333333,43.4333333333,19.29,41.29,20.6,41.1266666667,18.7,42.2666666667,18.7,60.3327777778,3.36,92.53,19.89,40.8383333333,21.7,49.025,18.79,44.1633333333,3.5,749.4,96,4,64,2.9,13.599936862,13.599936862 -70,0,19.89,43.23,19.23,41.29,20.6,41.2,18.7,42.6,18.72,60.185,3.6333333333,92.6566666667,19.8677777778,40.5922222222,21.7,48.9727777778,18.79,44.0675,3.5833333333,749.4166666667,95.6666666667,4,64,2.9333333333,4.4463010388,4.4463010388 -60,0,19.89,43.23,19.23,41.3266666667,20.6,41.1266666667,18.7,42.26,18.7,59.6255555556,3.9966666667,92.8333333333,19.8622222222,40.5211111111,21.7,48.6544444444,18.79,43.86,3.6666666667,749.4333333333,95.3333333333,4,64,2.9666666667,26.7314004246,26.7314004246 -50,0,19.89,43,19.29,41.3725,20.5666666667,41.06,18.7,42.1266666667,18.7,59.1083333333,4.33,92.9,19.8233333333,40.3227777778,21.6222222222,48.27,18.79,43.6333333333,3.75,749.45,95,4,64,3,13.510458637,13.510458637 -50,0,19.89,42.9333333333,19.23,41.23,20.5,40.9333333333,18.7,41.93,18.7,58.6772222222,4.6933333333,93.0633333333,19.8733333333,40.2238888889,21.6888888889,48.1694444444,18.79,43.4333333333,3.8333333333,749.4666666667,94.6666666667,4,64,3.0333333333,20.3688597656,20.3688597656 -300,0,19.89,42.8633333333,19.29,41.1633333333,20.5,41,18.7,41.73,18.7,58.2711111111,4.9666666667,93.19,19.89,40.0772222222,21.7,48.0094444444,18.79,43.2,3.9166666667,749.4833333333,94.3333333333,4,64,3.0666666667,34.1332333162,34.1332333162 -440,0,19.89,42.79,19.29,41.03,20.4266666667,40.86,18.7,41.6633333333,18.7,57.9294444444,5.3966666667,93.3333333333,19.89,39.9388888889,21.7,47.7905555556,18.79,43.1266666667,4,749.5,94,4,64,3.1,44.8310185689,44.8310185689 -190,10,19.89,42.79,19.29,41.09,20.5,41.09,18.7,41.59,18.7,57.6672222222,5.87,93.5225,19.89,39.845,21.7,47.4255555556,18.79,42.9666666667,4.2666666667,749.4833333333,93,4,56.6666666667,3.2166666667,15.1300746016,15.1300746016 -100,0,19.89,43.1566666667,19.23,41.09,20.5,41.1633333333,18.7,41.645,18.7,57.4294444444,6.09,93.69,19.9572222222,39.735,21.715,47.2144444444,18.79,42.8266666667,4.5333333333,749.4666666667,92,4,49.3333333333,3.3333333333,2.9466245905,2.9466245905 -90,0,19.89,43.3633333333,19.29,41.23,20.5,41.29,18.7,41.8266666667,18.6777777778,57.1427777778,6.19,93.69,19.9633333333,39.5955555556,21.7855555556,47.2716666667,18.79,42.79,4.8,749.45,91,4,42,3.45,37.9529604455,37.9529604455 -100,0,19.89,43.26,19.29,41.29,20.5,41.3633333333,18.7,41.9,18.7,56.96,6.19,93.69,19.9266666667,39.5,21.8344444444,47.6422222222,18.73,42.73,5.0666666667,749.4333333333,90,4,34.6666666667,3.5666666667,3.38284506,3.38284506 -100,0,19.89,43.2,19.29,41.29,20.5,41.4333333333,18.7,42.03,18.6722222222,56.7222222222,6.4966666667,93.8666666667,19.9877777778,39.4722222222,21.9572222222,47.4627777778,18.7,42.59,5.3333333333,749.4166666667,89,4,27.3333333333,3.6833333333,30.5901279207,30.5901279207 -90,10,19.89,43.06,19.29,41.23,20.5,41.5,18.7,42.03,18.6444444444,56.55,6.6233333333,93.9333333333,20,39.3938888889,22.05,47.0394444444,18.7,42.53,5.6,749.4,88,4,20,3.8,6.8145614583,6.8145614583 -100,0,19.89,42.9333333333,19.26,41.1633333333,20.4266666667,41.4333333333,18.7,42,18.6111111111,56.3388888889,6.5,93.9,20,39.2772222222,22.1388888889,46.6283333333,18.7,42.3633333333,5.5,749.3666666667,88.1666666667,4.1666666667,20.8333333333,3.7166666667,11.9870150927,11.9870150927 -110,0,19.89,42.76,19.26,41.1633333333,20.4266666667,41.4333333333,18.7,42,18.6,56.155,6.56,93.9,20,39.1938888889,22.225,46.2266666667,18.7,42.29,5.4,749.3333333333,88.3333333333,4.3333333333,21.6666666667,3.6333333333,24.4194862782,24.4194862782 -160,0,19.9633333333,44.5666666667,19.29,41.1266666667,20.39,41.4,18.7,42,18.6222222222,55.9983333333,6.8,94,20,39.1327777778,22.3177777778,45.9144444444,18.7,42.1633333333,5.3,749.3,88.5,4.5,22.5,3.55,26.9792754436,26.9792754436 -160,0,20.2,43.9233333333,19.29,41.3333333333,20.39,41.3266666667,18.7,42.3333333333,18.6,55.845,6.8,94,20,39.1816666667,22.3788888889,45.5294444444,18.7,42.09,5.2,749.2666666667,88.6666666667,4.6666666667,23.3333333333,3.4666666667,49.2567798123,49.2567798123 -110,0,20.2,43.6633333333,19.29,41.5,20.4633333333,41.43,18.79,42.7,18.6,55.6966666667,7.16,94.2266666667,20,38.9866666667,22.4327777778,45.3522222222,18.7,42,5.1,749.2333333333,88.8333333333,4.8333333333,24.1666666667,3.3833333333,30.1494417829,30.1494417829 -90,0,20.2,44.0566666667,19.29,41.56,20.4725,41.3725,18.79,42.7,18.6,55.545,7.4333333333,94.3,20,38.7116666667,22.5111111111,45.21,18.7,41.9333333333,5,749.2,89,5,25,3.3,45.7311655977,45.7311655977 -80,0,20.26,44.1966666667,19.29,41.73,20.5,41.4666666667,18.76,42.73,18.6,55.3983333333,7.8333333333,94.4,20,38.4294444444,22.5944444444,45.1877777778,18.7,41.9,5.0166666667,749.15,88.1666666667,5,27.5,3.1833333333,11.8071808363,11.8071808363 -60,0,20.39,43.9233333333,19.29,41.8633333333,20.5,41.4333333333,18.76,42.79,18.6,55.265,7.9,94.4666666667,19.9572222222,38.1272222222,22.6,45.1877777778,18.7,41.8725,5.0333333333,749.1,87.3333333333,5,30,3.0666666667,17.628695548,17.628695548 -70,30,20.39,43.53,19.39,41.9333333333,20.4266666667,41.4333333333,18.8233333333,42.8,18.6,55.1277777778,7.4566666667,94.2966666667,19.89,37.8311111111,22.5833333333,45.1938888889,18.7,41.79,5.05,749.05,86.5,5,32.5,2.95,48.1549916673,48.1549916673 -80,20,20.5,43.29,19.39,42.05,20.39,41.4,19.1566666667,43.3333333333,18.6,55.0022222222,6.9966666667,94.03,19.8622222222,37.5638888889,22.5222222222,45.1022222222,18.7,41.6633333333,5.0666666667,749,85.6666666667,5,35,2.8333333333,10.9032503329,10.9032503329 -120,20,20.5,43.29,19.39,42.2,20.39,41.4,20.0933333333,43.3333333333,18.6,54.8277777778,6.69,93.9666666667,19.8011111111,37.3133333333,22.5611111111,45.0094444444,18.7,41.53,5.0833333333,748.95,84.8333333333,5,37.5,2.7166666667,43.6383434921,43.6383434921 -120,30,20.6,43.29,19.39,42.29,20.39,41.5,20.8333333333,42.7933333333,18.6,54.6794444444,6.83,94.0266666667,19.79,37.3872222222,22.6,44.9333333333,18.7,41.5,5.1,748.9,84,5,40,2.6,44.84501509,44.84501509 -120,20,20.6666666667,43.23,19.39,42.29,20.4633333333,41.56,21,42.4333333333,18.6,54.4922222222,7.045,94.14,19.8011111111,37.5461111111,22.6,44.9444444444,18.7,41.4333333333,5.2,748.8666666667,84.5,4.8333333333,40,2.7666666667,19.54440095,19.54440095 -110,10,20.7,42.93,19.4633333333,42.5,20.4266666667,41.5666666667,20.9266666667,42.56,18.6,54.3016666667,7.26,94.2266666667,19.8844444444,37.645,22.6,44.8755555556,18.7,41.26,5.3,748.8333333333,85,4.6666666667,40,2.9333333333,31.0481912224,31.0481912224 -100,10,20.7675,42.7675,19.4633333333,42.6333333333,20.5,41.6266666667,20.745,42.29,18.6,54.0933333333,7.3333333333,94.3,19.8622222222,37.6444444444,22.6388888889,44.9161111111,18.7,41.26,5.4,748.8,85.5,4.5,40,3.1,33.7139497628,33.7139497628 -90,10,20.79,42.9,19.86,42.5266666667,20.4633333333,41.6633333333,20.5666666667,42.4633333333,18.6,53.95,7.4633333333,94.3333333333,19.79,37.4155555556,22.6777777778,44.6738888889,18.6333333333,41.2,5.5,748.7666666667,86,4.3333333333,40,3.2666666667,16.8895087321,16.8895087321 -100,20,20.89,43.03,20.0666666667,42.4,20.39,41.59,20.5,42.7233333333,18.6,53.8033333333,7.59,94.3333333333,19.79,37.155,22.6388888889,43.8111111111,18.7,41.2,5.6,748.7333333333,86.5,4.1666666667,40,3.4333333333,46.6060981038,46.6060981038 -200,10,20.9633333333,42.9633333333,20.23,42.2,20.39,41.59,20.4633333333,42.7233333333,18.6,53.6994444444,7.59,94.3666666667,19.79,36.9983333333,22.6,43.4822222222,18.7,41.1633333333,5.7,748.7,87,4,40,3.6,24.249309639,24.249309639 -210,20,21.0333333333,42.79,20.3566666667,42.0666666667,20.4633333333,41.6633333333,20.3233333333,42.59,18.6661111111,52.83,7.59,94.3,19.78,36.8694444444,22.6166666667,43.345,18.6333333333,41.03,5.65,748.7,86.6666666667,3.6666666667,40,3.5166666667,24.3397000129,24.3397000129 -110,10,21.1,42.79,20.5,41.8633333333,20.5,41.7,20.29,42.56,18.8077777778,51.3783333333,7.4,94.1233333333,19.755,36.735,22.725,43.2772222222,18.7,41.6233333333,5.6,748.7,86.3333333333,3.3333333333,40,3.4333333333,44.1222529858,44.1222529858 -120,20,21.1,42.6633333333,20.5,41.73,20.5,41.76,20.29,42.4333333333,18.9572222222,50.5166666667,7.26,93.9966666667,19.71,36.7,22.79,43.2138888889,18.7,42.6966666667,5.55,748.7,86,3,40,3.35,24.0637219744,24.0637219744 -110,10,21.1,42.59,20.6,41.5,20.5,41.73,20.2,42.29,19.0333333333,49.8738888889,6.8666666667,93.69,19.6833333333,36.6816666667,22.84,43.2066666667,18.7,43.09,5.5,748.7,85.6666666667,2.6666666667,40,3.2666666667,22.896348685,22.896348685 -110,10,21.2,42.4666666667,20.6666666667,41.5,20.5,41.79,20.2,42.29,19.0944444444,49.4266666667,6.8,93.7633333333,19.6,36.59,22.9022222222,43.255,18.7,43.09,5.45,748.7,85.3333333333,2.3333333333,40,3.1833333333,1.3884802698,1.3884802698 -100,20,21.2,42.4,20.7,41.4,20.5,41.79,20.1,42.29,19.1277777778,49.0294444444,6.8,93.8333333333,19.6,36.6083333333,22.9327777778,43.245,18.7,43.06,5.4,748.7,85,2,40,3.1,29.0107133682,29.0107133682 -120,10,21.2,42.29,20.76,41.2666666667,20.5,41.73,20.1,42.3633333333,19.2,48.7533333333,6.9333333333,93.9666666667,19.6,36.6755555556,23,43.275,18.7,42.9333333333,5.35,748.6833333333,86.1666666667,1.8333333333,44.1666666667,3.2333333333,24.7381739202,24.7381739202 -110,20,21.26,42.29,20.79,41.2,20.5,41.79,20,42.4333333333,19.245,48.6816666667,6.8666666667,93.9333333333,19.6,36.7,23.05,43.245,18.7,42.76,5.3,748.6666666667,87.3333333333,1.6666666667,48.3333333333,3.3666666667,39.1212381306,39.1212381306 -110,0,21.29,42.4,20.8566666667,41.26,20.6,41.79,20,42.56,19.2955555556,48.5416666667,6.7266666667,93.8666666667,19.6,36.8944444444,23.1,43.29,18.7,42.6725,5.25,748.65,88.5,1.5,52.5,3.5,26.1851242394,26.1851242394 -110,0,21.3566666667,42.4,20.96,41.2,20.5333333333,41.79,19.89,42.7666666667,19.3788888889,48.3927777778,6.8,93.9,19.6055555556,37.4722222222,23.15,43.265,18.7,42.53,5.2,748.6333333333,89.6666666667,1.3333333333,56.6666666667,3.6333333333,14.6930107032,14.6930107032 -100,0,21.5333333333,42.4,21.125,40.72,20.5666666667,41.8633333333,19.89,43.1,19.4627777778,48.0344444444,6.7266666667,93.9,19.6166666667,37.3616666667,23.2,43.2,18.7,42.4,5.15,748.6166666667,90.8333333333,1.1666666667,60.8333333333,3.7666666667,6.2529056566,6.2529056566 -130,0,21.6,42.0666666667,21.26,40.5,20.5666666667,41.79,19.89,43.1333333333,19.5888888889,47.4866666667,6.45,93.64,19.6,37.215,23.2,43.2,18.7,42.3266666667,5.1,748.6,92,1,65,3.9,1.0677569662,1.0677569662 -120,10,21.73,41.9666666667,21.4266666667,40.4,20.5666666667,41.79,19.89,42.9333333333,19.6833333333,47.2166666667,6.06,93.2,19.55,37.135,23.255,43.1694444444,18.7,42.29,4.8333333333,748.6,92.5,1.1666666667,60.8333333333,3.7166666667,25.0893763383,25.0893763383 -110,0,21.79,41.9,21.5666666667,40.4,20.5666666667,41.8633333333,19.79,42.7233333333,19.715,47.0172222222,5.6,92.66,19.5,36.9377777778,23.29,43.0572222222,18.6333333333,42.1566666667,4.5666666667,748.6,93,1.3333333333,56.6666666667,3.5333333333,24.5677402709,24.5677402709 -100,0,21.79,41.76,21.6,40.26,20.6,41.9333333333,19.79,42.4633333333,19.78,46.7872222222,5.23,92.56,19.5,36.8022222222,23.2955555556,42.9105555556,18.6666666667,42.06,4.3,748.6,93.5,1.5,52.5,3.35,9.4222287298,9.4222287298 -100,0,21.8566666667,41.76,21.675,40.2675,20.6666666667,42.1333333333,19.7,42.45,19.79,46.5572222222,5.09,92.56,19.5,36.735,23.3344444444,42.885,18.6,41.9333333333,4.0333333333,748.6,94,1.6666666667,48.3333333333,3.1666666667,44.4599806098,44.4599806098 -380,0,21.89,41.645,21.7,40.06,20.79,42.2,19.7,42.6266666667,19.8177777778,46.4044444444,5.06,92.56,19.5,36.645,23.3788888889,43.0783333333,18.6,41.8633333333,3.7666666667,748.6,94.5,1.8333333333,44.1666666667,2.9833333333,37.4452203512,37.4452203512 -350,0,21.9266666667,41.53,21.76,39.9333333333,20.8566666667,42.2,19.7,42.7,19.8788888889,46.3327777778,4.8666666667,92.3666666667,19.5,36.575,23.3288888889,43.3627777778,18.6,41.79,3.5,748.6,95,2,40,2.8,21.5528918314,21.5528918314 -290,30,22,41.6633333333,21.79,39.9,20.9266666667,42.2,19.7,42.8266666667,19.8961111111,46.285,4.6566666667,92.3,19.4755555556,36.645,23.3511111111,43.7261111111,18.6,41.7,3.5833333333,748.6166666667,95,2.1666666667,40,2.8833333333,25.0976350508,25.0976350508 -390,20,22,41.7,21.79,39.9,21,42.2,19.76,43.3,20.0155555556,46.0516666667,4.53,92.3,19.5055555556,36.8872222222,23.3677777778,44.1488888889,18.6,41.7,3.6666666667,748.6333333333,95,2.3333333333,40,2.9666666667,37.3329533497,37.3329533497 -690,10,22.0666666667,41.7,21.79,39.9,21.1,42.23,19.8233333333,43.89,20.1883333333,45.6016666667,4.5,92.4,19.6,37.0116666667,23.39,44.7083333333,18.6,41.6633333333,3.75,748.65,95,2.5,40,3.05,21.4076558594,21.4076558594 -270,0,22.23,42.2,21.8566666667,39.9,21.1666666667,42.29,19.89,44.03,20.3077777778,45.6527777778,4.56,92.4666666667,19.6722222222,37.1022222222,23.39,45.3061111111,18.6,41.59,3.8333333333,748.6666666667,95,2.6666666667,40,3.1333333333,14.5950750681,14.5950750681 -750,30,22.43,43,21.9266666667,40.1333333333,21.23,42.5966666667,19.89,43.73,20.4627777778,46.1983333333,4.5,92.59,19.745,37.3761111111,23.4144444444,45.7427777778,18.6,41.56,3.9166666667,748.6833333333,95,2.8333333333,40,3.2166666667,32.4733047979,32.4733047979 -130,10,22.6633333333,47.6266666667,22,40.4,21.3566666667,43.1233333333,19.89,44.79,20.5888888889,46.7972222222,4.4333333333,92.4633333333,19.9627777778,39.5488888889,23.34,45.3044444444,18.6,41.5,4,748.7,95,3,40,3.3,8.9727768325,8.9727768325 -120,10,22.8566666667,50.0333333333,22.1333333333,41.2633333333,21.55,45.35,20,47.1666666667,20.6883333333,48.3488888889,3.99,91.6966666667,20.2616666667,41.9044444444,23.275,44.6327777778,18.6,41.5,3.7833333333,748.7,95.1666666667,2.6666666667,36.8333333333,3.1,8.5172720021,8.5172720021 -120,10,23,46.7633333333,22.26,42.0633333333,21.7,45.9,20.0666666667,47.6333333333,20.78,48.4866666667,3.53,90.6966666667,20.5205555556,42.595,23.22,44.265,18.6,41.5,3.5666666667,748.7,95.3333333333,2.3333333333,33.6666666667,2.9,33.4491335205,33.4491335205 -130,30,23,46.23,22.29,42.1633333333,21.76,45.8266666667,20.1,47.6633333333,20.8511111111,48,2.9633333333,90.09,20.6722222222,42.4394444444,23.24,44.0811111111,18.6,41.4666666667,3.35,748.7,95.5,2,30.5,2.7,17.8397052572,17.8397052572 -130,10,23,45.0933333333,22.3566666667,42.03,21.79,45.49,20.1,47.53,20.89,47.4372222222,2.7233333333,89.9333333333,20.7,41.8727777778,23.24,43.82,18.575,41.4,3.1333333333,748.7,95.6666666667,1.6666666667,27.3333333333,2.5,17.5065176561,17.5065176561 -130,0,23.0666666667,44.3666666667,22.39,41.7233333333,21.79,45.1566666667,20.2,46.99,20.9122222222,51.0966666667,2.5225,89.85,20.7,41.78,23.255,43.6077777778,18.5666666667,41.3266666667,2.9166666667,748.7,95.8333333333,1.3333333333,24.1666666667,2.3,31.1754670111,31.1754670111 -120,10,23.1,43.7666666667,22.39,41.53,21.79,44.7233333333,20.1333333333,46.5966666667,21.2205555556,72.4016666667,2.4333333333,89.8666666667,20.75,41.5016666667,23.29,43.46,18.5333333333,41.26,2.7,748.7,96,1,21,2.1,40.0105522596,40.0105522596 -120,0,23.1,43.2266666667,22.39,41.245,21.79,44.39,20.1,46.2233333333,20.9661111111,72.5483333333,2.4333333333,90.1966666667,20.6433333333,40.215,23.29,43.3083333333,18.5333333333,41.2,2.6666666667,748.7166666667,96.1666666667,1.1666666667,28.3333333333,2.1,11.9542110246,11.9542110246 -130,30,23.2,42.7233333333,22.39,41,21.79,44.0266666667,20.1,45.9633333333,20.7927777778,69.8755555556,2.5,90.73,20.4683333333,39.5416666667,23.29,43.3005555556,18.5,41.09,2.6333333333,748.7333333333,96.3333333333,1.3333333333,35.6666666667,2.1,41.4854548057,41.4854548057 -120,30,23.1333333333,42.4633333333,22.39,40.86,21.79,43.8266666667,20.1333333333,45.6333333333,20.6,67.5166666667,2.59,91.03,20.39,39.33,23.29,43.5716666667,18.5,41.03,2.6,748.75,96.5,1.5,43,2.1,33.3104072022,33.3104072022 -130,20,23.1,42.0266666667,22.39,40.7,21.79,43.56,20.26,45.4333333333,20.4694444444,65.4227777778,2.53,91.09,20.3066666667,39.1377777778,23.29,43.8977777778,18.5,40.9666666667,2.5666666667,748.7666666667,96.6666666667,1.6666666667,50.3333333333,2.1,17.0335635426,17.0335635426 -130,30,23.1,41.8266666667,22.39,40.6266666667,21.79,43.4333333333,20.9,44.895,20.3288888889,63.6816666667,2.4,90.8333333333,20.29,39.01,23.29,44.2366666667,18.5,40.9,2.5333333333,748.7833333333,96.8333333333,1.8333333333,57.6666666667,2.1,11.629177595,11.629177595 -140,20,23.0666666667,41.6,22.29,40.5,21.79,43.1633333333,21.5666666667,44.0566666667,20.245,62.1444444444,2.4666666667,91.1666666667,20.29,38.7588888889,23.29,44.3694444444,18.5,40.8633333333,2.5,748.8,97,2,65,2.1,27.007433679,27.007433679 -130,20,23,41.3175,22.29,40.4333333333,21.79,43.03,21.76,43.33,20.1388888889,60.9122222222,2.6266666667,91.4966666667,20.225,38.2944444444,23.29,44.4,18.5,40.79,2.7,748.7666666667,96.8333333333,2,57.8333333333,2.2666666667,25.5337391165,25.5337391165 -140,20,23,41.23,22.2,40.29,21.79,42.8633333333,21.73,43.3333333333,20.0722222222,59.7927777778,2.76,91.69,20.1611111111,37.7822222222,23.29,44.3694444444,18.5,40.7,2.9,748.7333333333,96.6666666667,2,50.6666666667,2.4333333333,41.07054997,41.07054997 -120,30,22.89,41.1633333333,22.2,40.23,21.79,42.73,21.73,43.1266666667,20,58.9627777778,2.8266666667,91.8666666667,20.1,37.7327777778,23.29,44.285,18.5,40.7,3.1,748.7,96.5,2,43.5,2.6,35.6985586579,35.6985586579 -120,20,22.89,41.09,22.1,40.2,21.79,42.59,21.6666666667,43.0266666667,19.945,58.38,2.9666666667,92,20.1166666667,37.8022222222,23.29,44.1794444444,18.5,40.59,3.3,748.6666666667,96.3333333333,2,36.3333333333,2.7666666667,46.389966365,46.389966365 -140,20,22.79,40.9666666667,22.0333333333,40.0666666667,21.73,42.53,21.6,42.7666666667,19.8511111111,57.8911111111,3.06,92.06,20.2,37.8572222222,23.29,44.0122222222,18.5,40.59,3.5,748.6333333333,96.1666666667,2,29.1666666667,2.9333333333,4.8052062979,4.8052062979 -130,20,22.79,40.9,22,40,21.7,42.4,21.5666666667,42.56,19.78,57.46,3,92,20.2,37.9222222222,23.29,43.7388888889,18.5,40.56,3.7,748.6,96,2,22,3.1,17.2870896175,17.2870896175 -120,20,22.7,40.9,21.9266666667,40,21.7,42.3266666667,21.5,42.5,19.765,57.17,2.9,92,20.2,37.9,23.2955555556,43.5194444444,18.5,40.5,3.5,748.5333333333,96,2.1666666667,22.6666666667,2.9,36.16072156,36.16072156 -90,20,22.7,40.8266666667,21.8566666667,39.8633333333,21.7,42.1633333333,21.5,42.3633333333,19.7,56.7805555556,2.9,92,20.2,37.7733333333,23.3788888889,43.1422222222,18.5,40.5,3.3,748.4666666667,96,2.3333333333,23.3333333333,2.7,15.7259050757,15.7259050757 -40,10,22.6666666667,40.76,21.79,39.79,21.625,41.92,21.4266666667,42.23,19.6277777778,56.4083333333,2.9,92,20.1611111111,37.8033333333,23.39,43.1811111111,18.5,40.5,3.1,748.4,96,2.5,24,2.5,42.7026377409,42.7026377409 -70,0,22.6,40.8333333333,21.76,39.76,21.6,41.93,21.39,42.26,19.6111111111,56.1855555556,2.9333333333,92,20.1611111111,38.2455555556,23.39,43.6444444444,18.5,40.6,2.9,748.3333333333,96,2.6666666667,24.6666666667,2.3,18.7959045288,18.7959045288 -60,0,22.5666666667,41.1633333333,21.7,39.7,21.5,42.1566666667,21.39,42.0666666667,19.55,56.1083333333,3.06,92.1266666667,20.1666666667,38.5644444444,23.3066666667,44.2094444444,18.5,41.545,2.7,748.2666666667,96,2.8333333333,25.3333333333,2.1,20.4638841213,20.4638841213 -60,0,22.5,41.09,21.6,39.8266666667,21.5,42.29,21.26,41.8633333333,19.5111111111,56.1305555556,3.1266666667,92.19,20.1777777778,38.9105555556,23.29,44.6488888889,18.5666666667,42.1333333333,2.5,748.2,96,3,26,1.9,44.3430657615,44.3430657615 -50,0,22.4633333333,41.06,21.6,39.9666666667,21.5,42.4333333333,21.1333333333,41.79,19.4938888889,56.2772222222,3.2,92.19,20.2,39.1105555556,23.235,44.9033333333,18.6,42.4333333333,2.5833333333,748.1833333333,95.8333333333,3,25.8333333333,1.95,10.5728112743,10.5728112743 -60,0,22.39,41,21.5666666667,40.03,21.5,42.5,21.0666666667,41.7,19.4266666667,56.3572222222,3.06,92.06,20.2,39.3638888889,23.2,45.1905555556,18.5333333333,42.6333333333,2.6666666667,748.1666666667,95.6666666667,3,25.6666666667,2,11.2865385716,11.2865385716 -60,0,22.39,41.1266666667,21.5,40.195,21.5,42.59,21,41.7,19.39,56.4,2.9333333333,92,20.2,39.6105555556,23.1777777778,45.3344444444,18.6,42.79,2.75,748.15,95.5,3,25.5,2.05,14.8708808818,14.8708808818 -60,0,22.3233333333,41.2,21.4266666667,40.29,21.5,42.59,20.8566666667,41.7,19.39,56.4111111111,2.8266666667,91.8666666667,20.2,39.6327777778,23.1777777778,45.8055555556,18.6,42.8633333333,2.8333333333,748.1333333333,95.3333333333,3,25.3333333333,2.1,12.9041412612,12.9041412612 -60,0,22.26,41.29,21.39,40.4,21.5,42.7,20.79,41.7,19.3511111111,56.4777777778,2.9,92,20.1444444444,39.59,23.2,47.0888888889,18.6,43.03,2.9166666667,748.1166666667,95.1666666667,3,25.1666666667,2.15,35.1841552765,35.1841552765 -70,0,22.2,41.29,21.3233333333,40.4666666667,21.5,42.7,20.7,41.73,19.3122222222,56.4333333333,2.9,92,20.1055555556,39.6388888889,23.2,47.6322222222,18.6,43.09,3,748.1,95,3,25,2.2,19.9826676515,19.9826676515 -90,0,22.1666666667,41.3266666667,21.29,40.5,21.5,42.59,20.7,41.79,19.29,56.45,2.9,92,20.1,39.645,23.2,48.0433333333,18.6,43.23,3,748.05,95,2.8333333333,24.3333333333,2.2166666667,14.2694037058,14.2694037058 -80,0,22.1,41.4,21.23,40.5,21.5,42.59,20.6333333333,41.79,19.29,56.4611111111,2.76,91.8666666667,20.1,39.7,23.2,47.9194444444,18.6,43.29,3,748,95,2.6666666667,23.6666666667,2.2333333333,4.8712049494,4.8712049494 -60,0,22.1,41.5,21.2,40.59,21.5,42.59,20.5,41.9,19.275,56.415,2.7,91.8,20.1,39.715,23.2,47.6588888889,18.6,43.4333333333,3,747.95,95,2.5,23,2.25,0.4444293329,0.4444293329 -60,0,22,41.4333333333,21.2,40.59,21.5666666667,42.59,20.5,41.9666666667,19.2,56.29,2.7,91.9,20.1,39.8227777778,23.22,47.8616666667,18.6,43.56,3,747.9,95,2.3333333333,22.3333333333,2.2666666667,16.7771665147,16.7771665147 -40,0,22,41.5,21.1666666667,40.59,21.5333333333,42.59,20.39,42,19.2,56.285,2.7,91.9,20.1,39.9277777778,23.2,48.0622222222,18.6,43.7,3,747.85,95,2.1666666667,21.6666666667,2.2833333333,47.5702821044,47.5702821044 -50,0,21.89,41.5,21.1,40.59,21.5333333333,42.59,20.39,42,19.2,56.255,2.7,91.9,20.1,40.035,23.1277777778,48.1205555556,18.6,43.76,3,747.8,95,2,21,2.3,17.2444614116,17.2444614116 -50,0,21.89,41.56,21.1,40.59,21.5,42.59,20.3566666667,42.03,19.1611111111,56.215,2.76,91.9,20.1,40.1022222222,23.1,48.015,18.6,43.9,2.9166666667,747.7166666667,94.8333333333,2,21.6666666667,2.1833333333,48.4718993655,48.4718993655 -50,0,21.8566666667,41.56,21.0333333333,40.53,21.5,42.59,20.29,42.1633333333,19.1,56.2,2.69,91.745,20.1,40.1938888889,23.0444444444,47.8666666667,18.6,43.9666666667,2.8333333333,747.6333333333,94.6666666667,2,22.3333333333,2.0666666667,26.1936185765,26.1936185765 -40,0,21.79,41.5,20.9633333333,40.53,21.5,42.59,20.2,42.03,19.1,56.1816666667,2.3333333333,91.1666666667,20.1,40.2,23.0055555556,47.7911111111,18.6,44.03,2.75,747.55,94.5,2,23,1.95,0.6517386064,0.6517386064 -40,0,21.79,41.5,20.89,40.59,21.5,42.5225,20.2,42.09,19.1,56.1144444444,2.1266666667,90.8333333333,20.1,40.1327777778,22.9816666667,47.71,18.6,44.1633333333,2.6666666667,747.4666666667,94.3333333333,2,23.6666666667,1.8333333333,37.5981163932,37.5981163932 -30,0,21.73,41.5,20.89,40.5,21.5,42.5,20.1666666667,42.09,19.1,56.09,1.9666666667,90.7266666667,20.1,40.1005555556,22.9022222222,47.6755555556,18.6666666667,44.26,2.5833333333,747.3833333333,94.1666666667,2,24.3333333333,1.7166666667,4.415401211,4.415401211 -50,0,21.7,41.5,20.89,40.5,21.5,42.5,20.1,42.09,19.0722222222,56.0283333333,1.9666666667,90.9333333333,20.1,40.255,22.89,47.8233333333,18.6,44.295,2.5,747.3,94,2,25,1.6,47.0862575807,47.0862575807 -50,0,21.6333333333,41.4333333333,20.8566666667,40.5,21.5,42.5,20.1,42.06,19.0222222222,55.9333333333,2.09,91.2266666667,20.1,40.345,22.8066666667,48.1488888889,18.6,44.4,2.4833333333,747.2333333333,93.8333333333,2.1666666667,24.5,1.5666666667,12.31423266,12.31423266 -60,0,21.6,41.4,20.79,40.5,21.39,42.53,20.0333333333,41.9333333333,19,55.9,2.1633333333,91.3666666667,20.1,40.4,22.79,48.4794444444,18.6,44.5,2.4666666667,747.1666666667,93.6666666667,2.3333333333,24,1.5333333333,39.570293983,39.570293983 -50,0,21.6,41.4,20.76,40.5,21.39,42.53,20,41.9,19,55.8816666667,2.1633333333,91.4666666667,20.1,40.4,22.79,48.7655555556,18.6666666667,44.6333333333,2.45,747.1,93.5,2.5,23.5,1.5,39.4405797706,39.4405797706 -50,0,21.5666666667,41.3266666667,20.7,40.56,21.39,42.5,20,41.9,19,55.8144444444,1.9633333333,91.1933333333,20.1,40.3327777778,22.79,49.1238888889,18.6,44.59,2.4333333333,747.0333333333,93.3333333333,2.6666666667,23,1.4666666667,5.0908336067,5.0908336067 -70,0,21.5,41.4,20.7,40.59,21.39,42.5,20,41.9,19,55.79,1.7266666667,90.56,20.1,40.29,22.715,49.3422222222,18.6,44.6633333333,2.4166666667,746.9666666667,93.1666666667,2.8333333333,22.5,1.4333333333,36.0022070003,36.0022070003 -50,0,21.39,41.26,20.6,40.5,21.39,42.56,19.9266666667,41.9,18.9755555556,55.775,1.46,90.1,20.1,40.29,22.7,49.475,18.6666666667,44.76,2.4,746.9,93,3,22,1.4,46.6898143874,46.6898143874 -60,0,21.39,41.2,20.6,40.5,21.39,42.5,19.89,41.9,18.9083333333,55.71,1.26,89.9666666667,20.0833333333,40.275,22.6722222222,49.6022222222,18.6666666667,44.76,2.1833333333,746.8666666667,93.3333333333,2.8333333333,28.6666666667,1.2333333333,2.6326892199,2.6326892199 -60,0,21.39,41.2,20.6,40.5,21.39,42.5,19.865,41.8725,18.89,55.7,1.0666666667,89.5666666667,20.0944444444,40.3033333333,22.6111111111,49.6572222222,18.7,44.79,1.9666666667,746.8333333333,93.6666666667,2.6666666667,35.3333333333,1.0666666667,39.5081520663,39.5081520663 -50,0,21.39,41.26,20.6,40.5,21.4633333333,42.6333333333,19.8566666667,41.8633333333,18.89,55.6816666667,0.7666666667,89.1233333333,20.0888888889,40.3877777778,22.5833333333,49.715,18.7,44.79,1.75,746.8,94,2.5,42,0.9,16.6547366418,16.6547366418 -60,0,21.29,41.2,20.5,40.5,21.39,42.5,19.79,41.79,18.89,55.6144444444,0.7,89.19,20.0722222222,40.4261111111,22.5,49.8483333333,18.6666666667,44.79,1.5333333333,746.7666666667,94.3333333333,2.3333333333,48.6666666667,0.7333333333,26.2872294872,26.2872294872 -50,0,21.29,41.2,20.5,40.5,21.39,42.5,19.79,41.73,18.8844444444,55.585,0.6,89.1933333333,20.0611111111,40.3694444444,22.5,49.9944444444,18.6,44.73,1.3166666667,746.7333333333,94.6666666667,2.1666666667,55.3333333333,0.5666666667,42.0442834729,42.0442834729 -50,0,21.29,41.2,20.4633333333,40.4666666667,21.39,42.53,19.76,41.79,18.8566666667,55.5433333333,0.8,89.925,20.0055555556,40.3144444444,22.5,49.9111111111,18.6,44.79,1.1,746.7,95,2,62,0.4,45.5267244135,45.5267244135 -60,0,21.2,41.09,20.4633333333,40.4666666667,21.39,42.53,19.7,41.79,18.8788888889,55.4988888889,1.0666666667,90.4933333333,20.0222222222,40.4222222222,22.5,49.8816666667,18.6666666667,44.8633333333,1.2833333333,746.65,95,2.1666666667,62.3333333333,0.5833333333,28.4357112949,28.4357112949 -60,0,21.2,41.09,20.39,40.4,21.29,42.4666666667,19.7,41.79,18.8011111111,55.4111111111,1.3233333333,90.8333333333,20,40.4,22.4205555556,49.67,18.7,44.9,1.4666666667,746.6,95,2.3333333333,62.6666666667,0.7666666667,35.3027766105,35.3027766105 -60,0,21.1666666667,41.06,20.3233333333,40.4,21.29,42.4,19.7,41.79,18.79,55.3572222222,1.4633333333,91.0266666667,20,40.4,22.39,49.555,18.7,44.9,1.65,746.55,95,2.5,63,0.95,31.4927843865,31.4927843865 -60,0,21.1,41,20.29,40.3266666667,21.2,42.26,19.7,41.8633333333,18.79,55.29,1.6333333333,91.3,20,40.4661111111,22.3677777778,49.4888888889,18.7,45,1.8333333333,746.5,95,2.6666666667,63.3333333333,1.1333333333,21.9389613252,21.9389613252 -50,0,21.1,41,20.29,40.4,21.2,42.1175,19.7,41.79,18.79,55.275,1.76,91.3666666667,20,40.58,22.3288888889,49.4055555556,18.7,45,2.0166666667,746.45,95,2.8333333333,63.6666666667,1.3166666667,41.965870792,41.965870792 -30,0,21.1,41,20.29,40.4,21.2,42.03,19.6,41.7,18.79,55.21,1.9333333333,91.59,20,40.52,22.29,49.4,18.7,45,2.2,746.4,95,3,64,1.5,14.008582395,14.008582395 -30,0,21,41,20.23,40.3266666667,21.1,42,19.6,41.7,18.79,55.1916666667,2.06,91.6566666667,20,40.6105555556,22.29,49.3083333333,18.675,44.975,2.2833333333,746.3166666667,95,3,63.6666666667,1.5833333333,47.6470960653,47.6470960653 -20,0,21,41,20.2,40.23,21.1,42,19.6,41.73,18.745,55.1266666667,2.23,91.8333333333,20,40.7811111111,22.29,49.275,18.6666666667,44.9666666667,2.3666666667,746.2333333333,95,3,63.3333333333,1.6666666667,40.61748971,40.61748971 -40,0,20.9633333333,41,20.2,40.29,21,41.8633333333,19.6,41.73,18.72,55.1022222222,2.3633333333,91.9,20,40.8877777778,22.235,49.23,18.7,45.09,2.45,746.15,95,3,63,1.75,21.7309264117,21.7309264117 -60,0,20.89,41,20.1,40.29,21,41.79,19.5666666667,41.79,18.72,55.09,2.5,92.03,20,40.8083333333,22.2,49.1388888889,18.7,45.09,2.5333333333,746.0666666667,95,3,62.6666666667,1.8333333333,0.6756240502,0.6756240502 -60,0,20.89,41,20.1,40.29,20.9633333333,41.79,19.5,41.79,18.7,55.015,2.56,92.09,20,40.79,22.2,49.2527777778,18.6333333333,45.03,2.6166666667,745.9833333333,95,3,62.3333333333,1.9166666667,48.8964570453,48.8964570453 -60,0,20.89,41,20.1,40.29,20.89,41.79,19.5,41.79,18.7,55,2.6266666667,92.1233333333,20,40.8083333333,22.1888888889,49.28,18.7,45.09,2.7,745.9,95,3,62,2,21.9227349851,21.9227349851 -50,0,20.79,40.9333333333,20.1,40.29,20.89,41.79,19.5,41.79,18.7,54.9611111111,2.76,92.19,20,40.9,22.1666666667,49.29,18.6666666667,45.06,2.6666666667,745.7833333333,95,3.1666666667,62.1666666667,1.95,8.0273980158,8.0273980158 -50,0,20.79,41,20.1,40.29,20.89,41.79,19.5,41.9,18.7,54.8755555556,2.8266666667,92.2266666667,20,40.9661111111,22.15,49.29,18.6,45.06,2.6333333333,745.6666666667,95,3.3333333333,62.3333333333,1.9,6.4923631959,6.4923631959 -60,0,20.79,41,20,40.2,20.89,41.79,19.5,41.9,18.7,54.8033333333,2.9,92.3,20,41.06,22.1222222222,49.2688888889,18.7,45.2,2.6,745.55,95,3.5,62.5,1.85,3.1903528841,3.1903528841 -50,0,20.73,41,20,40.2,20.89,41.79,19.4266666667,41.8266666667,18.7,54.74,2.9,92.3,20,41.09,22.1,49.1022222222,18.7,45.26,2.5666666667,745.4333333333,95,3.6666666667,62.6666666667,1.8,1.084281283,1.084281283 -50,0,20.7,41.09,20,40.2,20.89,41.79,19.4633333333,41.8633333333,18.65,54.6794444444,2.9,92.3,20,41.145,22.0388888889,48.9538888889,18.6666666667,45.26,2.5333333333,745.3166666667,95,3.8333333333,62.8333333333,1.75,13.0674880114,13.0674880114 -50,0,20.675,41.0675,19.9266666667,40.2,20.89,41.8633333333,19.39,41.79,18.6333333333,54.6266666667,2.8266666667,92.16,20,41.1755555556,22,48.9,18.6666666667,45.26,2.5,745.2,95,4,63,1.7,29.4043546659,29.4043546659 -70,0,20.6,41,19.89,40.2,20.89,41.9333333333,19.39,41.79,18.6,54.59,2.79,92.1233333333,20,41.3477777778,22,48.8327777778,18.7,45.3266666667,2.4833333333,745.15,94.6666666667,4.1666666667,56,1.65,10.4804695817,10.4804695817 -90,10,20.6,41,19.89,40.2,20.89,42,19.39,41.79,18.6,54.57,2.79,92.19,20,41.9044444444,22,48.79,18.7,45.4,2.4666666667,745.1,94.3333333333,4.3333333333,49,1.6,22.4556409055,22.4556409055 -60,0,20.6,41.2666666667,19.89,40.2,20.89,42,19.39,41.76,18.6,54.56,2.79,92.19,20,41.9294444444,21.9877777778,48.79,18.7,45.3633333333,2.45,745.05,94,4.5,42,1.55,16.6393535677,16.6393535677 -60,0,20.6,41.4633333333,19.89,40.26,20.89,42.06,19.39,41.76,18.6,54.545,2.73,92.1233333333,20,41.5405555556,21.9327777778,48.79,18.7,45.29,2.4333333333,745,93.6666666667,4.6666666667,35,1.5,1.0741376784,1.0741376784 -70,10,20.6,41.59,19.79,40.3266666667,20.9633333333,42.06,19.39,41.8333333333,18.6,54.4427777778,2.7,92.19,19.945,40.9861111111,21.89,48.6472222222,18.7,45.26,2.4166666667,744.95,93.3333333333,4.8333333333,28,1.45,20.1724480139,20.1724480139 -50,0,20.6,41.5666666667,19.79,40.3266666667,20.89,41.82,19.3233333333,41.4266666667,18.6,54.2822222222,2.7,92.19,19.8288888889,40.0672222222,21.89,48.2555555556,18.7,45.1266666667,2.4,744.9,93,5,21,1.4,19.4930972881,19.4930972881 -50,0,20.6,41.9,19.79,40.26,20.8233333333,41.6266666667,19.29,40.99,18.6,54.1427777778,2.7,92.19,19.725,39.4266666667,21.8066666667,47.6622222222,18.65,44.745,2.45,744.8333333333,92.6666666667,4.8333333333,22,1.4,4.0835025604,4.0835025604 -50,0,20.6,41.79,19.79,40.2,20.79,41.4666666667,19.29,40.73,18.6,53.96,2.7,92.1233333333,19.6611111111,38.8911111111,21.79,47.3311111111,18.7,44.3633333333,2.5,744.7666666667,92.3333333333,4.6666666667,23,1.4,33.1493799225,33.1493799225 -40,0,20.6,41.73,19.79,40.2,20.79,41.4,19.29,40.3633333333,18.6,53.7872222222,2.79,92.19,19.6,38.4194444444,21.79,46.9811111111,18.7,44.3633333333,2.55,744.7,92,4.5,24,1.4,12.713211251,12.713211251 -60,0,20.6,41.56,19.73,40.1266666667,20.79,41.29,19.29,40.1566666667,18.6,53.5572222222,2.79,92.1233333333,19.6,38.0972222222,21.78,46.6916666667,18.7,44.3633333333,2.6,744.6333333333,91.6666666667,4.3333333333,25,1.4,36.9925308041,36.9925308041 -40,10,20.5333333333,41.5,19.7,40.06,20.73,41.23,19.26,39.93,18.5388888889,53.455,2.9,92.19,19.55,37.8311111111,21.725,46.4205555556,18.7,44.23,2.65,744.5666666667,91.3333333333,4.1666666667,26,1.4,49.7677367646,49.7677367646 -40,0,20.5,41.3333333333,19.7,40,20.76,41.2,19.2,39.73,18.5,53.2116666667,2.9666666667,92.19,19.5,37.5305555556,21.7,46.12,18.7,44.09,2.7,744.5,91,4,27,1.4,30.7883375557,30.7883375557 -80,0,20.5,41.2,19.7,39.9,20.7,41.0666666667,19.2,39.56,18.5,52.9083333333,3,92.19,19.5,37.2772222222,21.6777777778,45.92,18.7,43.83,2.75,744.4333333333,90.1666666667,4,29.1666666667,1.3166666667,36.9082750403,36.9082750403 -330,0,20.5,40.9666666667,19.7,39.76,20.7,40.8633333333,19.2,39.4333333333,18.5,52.765,3,92.19,19.4572222222,37.0811111111,21.6888888889,46.0088888889,18.7,43.5266666667,2.8,744.3666666667,89.3333333333,4,31.3333333333,1.2333333333,38.1986601162,38.1986601162 -260,0,20.5,40.9,19.6333333333,39.6266666667,20.6333333333,40.6566666667,19.1,39.4,18.5,52.5933333333,3.09,92.3,19.39,36.845,21.6277777778,45.7933333333,18.7,43.2666666667,2.85,744.3,88.5,4,33.5,1.15,20.2737106127,20.2737106127 -100,0,20.39,40.76,19.7,39.7,20.6,40.59,19.1,39.295,18.5,52.4922222222,3.1566666667,92.3333333333,19.39,36.6427777778,21.6,45.3494444444,18.6,42.7966666667,2.9,744.2333333333,87.6666666667,4,35.6666666667,1.0666666667,28.8163275342,28.8163275342 -70,0,20.39,40.6266666667,19.6333333333,39.6266666667,20.6,40.59,19.1,39.2,18.5,52.4161111111,3.29,92.4,19.39,36.46,21.6,44.8255555556,18.6,42.39,2.95,744.1666666667,86.8333333333,4,37.8333333333,0.9833333333,49.2018683115,49.2018683115 -70,0,20.39,40.56,19.6,39.5,20.6,40.59,19.1,39.09,18.5,52.2772222222,3.4333333333,92.4333333333,19.3511111111,36.3033333333,21.6,44.4316666667,18.6,42.1333333333,3,744.1,86,4,40,0.9,32.1677221684,32.1677221684 -70,0,20.39,40.4333333333,19.6,39.5,20.6,40.59,19.1,39.03,18.5,52.1277777778,3.56,92.5,19.3122222222,36.1794444444,21.5722222222,43.9688888889,18.6,41.86,3.15,744.0166666667,84.8333333333,4.3333333333,40,0.8333333333,42.4267546274,42.4267546274 -80,0,20.39,40.29,19.6,39.4,20.6,40.59,19.1,38.9666666667,18.5,52.01,3.59,92.4,19.29,36.0094444444,21.5333333333,43.5577777778,18.6,41.6333333333,3.3,743.9333333333,83.6666666667,4.6666666667,40,0.7666666667,22.7428573766,22.7428573766 -80,0,20.3566666667,40.1633333333,19.6,39.3266666667,20.6,40.59,19.1,38.8266666667,18.5,51.8933333333,3.59,92.4,19.29,35.8561111111,21.5,43.23,18.6,41.4333333333,3.45,743.85,82.5,5,40,0.7,43.606039742,43.606039742 -50,0,20.3566666667,40.09,19.5,39.26,20.6,40.56,19,38.59,18.5,51.6994444444,3.7666666667,92.5633333333,19.285,35.7166666667,21.5,42.9072222222,18.5666666667,41.1633333333,3.6,743.7666666667,81.3333333333,5.3333333333,40,0.6333333333,7.4981321697,7.4981321697 -60,0,20.29,39.9666666667,19.5,39.2,20.6,40.4333333333,19,38.59,18.5,51.575,4.0933333333,92.7633333333,19.255,35.545,21.4755555556,42.6127777778,18.5,41.03,3.75,743.6833333333,80.1666666667,5.6666666667,40,0.5666666667,24.7883525095,24.7883525095 -50,0,20.29,39.9,19.5,39.06,20.6,40.3633333333,19,38.56,18.5,51.5,4.2266666667,92.76,19.248,35.382,21.4877777778,42.4094444444,18.5,40.8633333333,3.9,743.6,79,6,40,0.5,29.9853958306,29.9853958306 -50,0,20.29,39.8633333333,19.5,38.9333333333,20.525,40.2675,19,38.5,18.4633333333,51.3861111111,4.4333333333,92.9,19.2,35.265,21.4022222222,42.0983333333,18.5,40.73,4.05,743.5,78.3333333333,5.8333333333,40,0.5333333333,27.1570179029,27.1570179029 -60,0,20.29,39.73,19.5666666667,38.8633333333,20.5,40.2,19,38.5,18.4877777778,51.255,4.6233333333,92.9,19.2,35.1177777778,21.4511111111,41.8872222222,18.5,40.45,4.2,743.4,77.6666666667,5.6666666667,40,0.5666666667,41.0938960966,41.0938960966 -70,0,20.29,39.7,19.5666666667,38.73,20.5,40.2,19.0666666667,38.56,18.5,51.1177777778,4.69,92.9,19.2,34.95,21.3961111111,41.6172222222,18.5333333333,40.2233333333,4.35,743.3,77,5.5,40,0.6,43.2816487853,43.2816487853 -650,10,20.29,39.6266666667,19.6,38.6333333333,20.5,40.2,19.1,38.59,18.4388888889,50.9277777778,4.8333333333,92.8,19.2,34.7933333333,21.39,41.4611111111,18.6,39.9633333333,4.5,743.2,76.3333333333,5.3333333333,40,0.6333333333,49.4272559299,49.4272559299 -680,0,20.29,39.3333333333,19.6,38.36,20.5333333333,40.3266666667,19.1,38.59,18.4877777778,50.8816666667,4.9666666667,92.6,19.2,34.645,21.4816666667,41.5144444444,18.5,39.9,4.65,743.1,75.6666666667,5.1666666667,40,0.6666666667,9.1934412718,9.1934412718 -390,0,20.29,39.2,19.6,38.29,20.7266666667,40.7333333333,19.1,38.59,18.4388888889,50.74,4.7966666667,91.83,19.205,34.57,21.5277777778,41.4111111111,18.5,39.9,4.8,743,75,5,40,0.7,16.4723862894,16.4723862894 -310,0,20.29,39.6666666667,19.6,38.29,21.0333333333,41.1566666667,19.1,38.6633333333,18.4205555556,50.6572222222,4.4633333333,90.3566666667,19.28,34.5172222222,21.6611111111,41.4944444444,18.5,39.9,4.7166666667,742.8333333333,74.6666666667,5.1666666667,40,0.55,19.027393579,19.027393579 -300,0,20.29,40.2666666667,19.6,38.29,21.2266666667,41.29,19.1,38.8266666667,18.39,50.53,4.19,90.445,19.3288888889,34.3277777778,21.725,41.8283333333,18.5,39.9,4.6333333333,742.6666666667,74.3333333333,5.3333333333,40,0.4,25.2344136476,25.2344136476 -140,0,20.39,40.8,19.675,38.4475,21.4266666667,41.2,19.1666666667,38.9,18.39,50.5,4.2266666667,90.6666666667,19.39,34.155,21.8572222222,42.2155555556,18.5333333333,39.8333333333,4.55,742.5,74,5.5,40,0.25,29.5558012906,29.5558012906 -280,0,20.39,41.06,19.7,38.76,21.5666666667,41.1266666667,19.2,38.9,18.4022222222,50.51,4.4933333333,91.06,19.4083333333,34.045,21.9388888889,42.0294444444,18.6,39.7,4.4666666667,742.3333333333,73.6666666667,5.6666666667,40,0.1,0.8355163271,0.8355163271 -140,0,20.5,41.36,19.7,39.0666666667,21.6,41.06,19.2,38.9,18.4022222222,50.4822222222,4.69,90.83,19.5,33.9822222222,22,41.7933333333,18.6,39.59,4.3833333333,742.1666666667,73.3333333333,5.8333333333,40,-0.05,20.386054588,20.386054588 -400,0,20.5666666667,41.4333333333,19.7,39.2,21.6,40.8,19.2,38.9,18.39,50.4333333333,4.69,90.3566666667,19.5,33.7933333333,22.05,41.72,18.6,39.6633333333,4.3,742,73,6,40,-0.2,10.7073468855,10.7073468855 -190,0,20.6,41.6933333333,19.5666666667,39.4633333333,21.5,40.4666666667,19.2,38.9,18.3961111111,50.3933333333,4.59,89.0266666667,19.5166666667,33.645,22.1661111111,41.5366666667,18.6,39.7,4.55,741.8833333333,71.8333333333,5.8333333333,40,-0.2,29.4484390062,29.4484390062 -220,0,20.6,42.1,19.4266666667,39.6633333333,21.4266666667,40.3266666667,19.2,38.8266666667,18.4083333333,50.3494444444,4.6566666667,89.0933333333,19.5888888889,33.575,22.3483333333,41.335,18.6,39.7,4.8,741.7666666667,70.6666666667,5.6666666667,40,-0.2,45.0634662178,45.0634662178 -390,0,20.6333333333,41.8333333333,19.39,39.4666666667,21.39,40.1633333333,19.2,38.79,18.39,50.275,5.1,89.7933333333,19.6,33.4888888889,22.5044444444,41.1377777778,18.6,39.8266666667,5.05,741.65,69.5,5.5,40,-0.2,46.9747367897,46.9747367897 -190,0,20.7,41.3425,19.39,39.4,21.39,39.9633333333,19.26,38.79,18.39,50.1694444444,5.4333333333,89.5333333333,19.6883333333,33.4216666667,22.65,41.025,18.6666666667,40.1,5.3,741.5333333333,68.3333333333,5.3333333333,40,-0.2,19.9808894191,19.9808894191 -480,0,20.7,40.9633333333,19.4266666667,39.3266666667,21.29,39.79,19.29,38.8266666667,18.39,50.075,5.66,88.3666666667,19.78,33.2772222222,22.7805555556,40.9205555556,18.7,40.4333333333,5.55,741.4166666667,67.1666666667,5.1666666667,40,-0.2,48.1972398353,48.1972398353 -350,0,20.73,40.49,19.4266666667,39.4,21.3566666667,40.0633333333,19.29,38.9,18.39,49.95,5.8666666667,86.7,19.8916666667,33.26,22.9094444444,40.7144444444,18.76,40.6333333333,5.8,741.3,66,5,40,-0.2,35.7641577953,35.7641577953 -340,0,20.79,40.23,19.5,39.5,21.5966666667,41.5933333333,19.29,38.8266666667,18.39,49.8572222222,6.06,85.66,20,33.12,23.0166666667,40.3866666667,18.79,40.9,5.8333333333,741.2,66,5,40,-0.1666666667,9.5683937543,9.5683937543 -530,0,20.8233333333,40.36,19.5,39.56,21.9425,42.625,19.29,38.8266666667,18.39,49.79,5.8666666667,83.3266666667,20.0722222222,32.9833333333,23.1,40.225,18.79,40.9,5.8666666667,741.1,66,5,40,-0.1333333333,37.3878868064,37.3878868064 -510,0,20.89,40.56,19.5,39.59,22.26,42.9,19.29,38.79,18.39,49.715,5.9333333333,83.8666666667,20.0888888889,32.835,23.1983333333,40.0333333333,18.79,40.745,5.9,741,66,5,40,-0.1,26.321683987,26.321683987 -230,0,21,40.59,19.5,39.6633333333,22.5333333333,42.6,19.29,38.79,18.39,49.7,6,82.7266666667,20.1388888889,32.6988888889,23.3066666667,39.9722222222,18.79,40.6633333333,5.9333333333,740.9,66,5,40,-0.0666666667,8.5575799341,8.5575799341 -110,0,21,40.6633333333,19.5666666667,39.73,22.6666666667,42.2666666667,19.39,38.76,18.39,49.6572222222,6.1233333333,82.3,20.245,32.6022222222,23.3788888889,39.735,18.79,40.59,5.9666666667,740.8,66,5,40,-0.0333333333,13.9592223684,13.9592223684 -80,0,21.0333333333,40.3633333333,19.5666666667,39.6566666667,22.7,41.4966666667,19.39,38.7,18.39,49.6144444444,6.19,82.36,20.285,32.5094444444,23.39,39.5172222222,18.79,40.59,6,740.7,66,5,40,0,25.3093407024,25.3093407024 -80,0,21.1,39.9633333333,19.6,39.5,22.5666666667,40.7566666667,19.39,38.6633333333,18.39,49.585,6.14,80.25,20.275,32.3561111111,23.3961111111,39.2533333333,18.79,40.53,5.9833333333,740.6666666667,66,5,40,-0.0166666667,26.8171561649,26.8171561649 -80,0,21.1333333333,39.86,19.6,39.5,22.3566666667,40.3333333333,19.39,38.59,18.39,49.56,6.09,78.86,20.3066666667,32.2288888889,23.4877777778,39.1694444444,18.79,40.5,5.9666666667,740.6333333333,66,5,40,-0.0333333333,29.5968871214,29.5968871214 -100,0,21.2,40.1333333333,19.6333333333,39.4,22.29,40.26,19.39,38.59,18.39,49.5044444444,6.09,77.5933333333,20.4616666667,32.1572222222,23.6,39.045,18.8566666667,41.1666666667,5.95,740.6,66,5,40,-0.05,21.6386682703,21.6386682703 -110,0,21.23,39.99,19.7,39.3175,22.2,40,19.39,38.53,18.39,49.4333333333,6.0266666667,79.7966666667,20.5833333333,32.1327777778,23.745,38.96,18.89,42.0266666667,5.9333333333,740.5666666667,66,5,40,-0.0666666667,18.8819190022,18.8819190022 -120,0,21.29,39.6566666667,19.7,39.3633333333,22.1333333333,39.9333333333,19.39,38.5,18.39,49.3572222222,5.6933333333,78.8633333333,20.5111111111,32.0144444444,23.79,38.8327777778,18.89,41.7666666667,5.9166666667,740.5333333333,66,5,40,-0.0833333333,40.5197322369,40.5197322369 -110,0,21.29,39.3333333333,19.7,39.3633333333,21.9633333333,39.76,19.39,38.4,18.39,49.245,5.2633333333,80.6566666667,20.5055555556,31.8288888889,23.8066666667,38.8083333333,18.89,41.6566666667,5.9,740.5,66,5,40,-0.1,29.075326398,29.075326398 -110,0,21.29,39.1266666667,19.76,39.23,21.9633333333,39.6266666667,19.39,38.3266666667,18.39,49.1083333333,5.19,81.4633333333,20.5666666667,31.6972222222,23.9461111111,38.735,18.89,41.79,5.75,740.5,66.5,4.8333333333,40,-0.1333333333,27.7422570507,27.7422570507 -100,0,21.3233333333,39.06,19.79,39.09,21.89,39.56,19.39,38.26,18.39,49.045,5.3333333333,82.1566666667,20.6277777778,31.5388888889,24.0722222222,38.6511111111,18.9633333333,41.8633333333,5.6,740.5,67,4.6666666667,40,-0.1666666667,12.8280058154,12.8280058154 -90,0,21.39,40.2666666667,19.8566666667,39.03,21.89,39.56,19.39,38.2,18.39,48.9833333333,5.4,81.3633333333,20.6888888889,31.4694444444,24.1983333333,38.545,18.9633333333,41.79,5.45,740.5,67.5,4.5,40,-0.2,34.8271581461,34.8271581461 -70,0,21.6,38.56,19.7266666667,36.7233333333,21.76,39.4,19.39,38.09,18.39,48.9,5.4,80.7666666667,20.76,31.3238888889,24.29,38.4294444444,18.9266666667,41.79,5.3,740.5,68,4.3333333333,40,-0.2333333333,6.2201156048,6.2201156048 -70,0,21.6,37.5,19.6,36.6633333333,21.7,39,19.39,38.1633333333,18.39,48.8177777778,5.3333333333,80.4933333333,20.7,31.21,24.235,38.3144444444,18.9266666667,41.6566666667,5.15,740.5,68.5,4.1666666667,40,-0.2666666667,32.6712557115,32.6712557115 -200,0,21.5333333333,37.6333333333,19.6,37.0666666667,21.6,38.59,19.39,37.9666666667,18.39,48.63,5.06,79.6633333333,20.6611111111,31.1611111111,24.2,38.3727777778,18.89,41.56,5,740.5,69,4,40,-0.3,35.0536822225,35.0536822225 -280,0,21.4633333333,37.73,19.6,37.26,21.5333333333,38.53,19.39,37.7666666667,18.39,48.4872222222,4.7933333333,80.5233333333,20.5833333333,31.1,24.15,38.6611111111,18.89,41.5,4.75,740.55,70.5,4,40,-0.25,2.8266462032,2.8266462032 -180,0,21.39,37.99,19.5666666667,37.5966666667,21.5,38.59,19.29,37.59,18.39,48.3116666667,4.5266666667,80.5233333333,20.5555555556,31.1055555556,24.1111111111,39.0894444444,18.89,41.3333333333,4.5,740.6,72,4,40,-0.2,45.9164491505,45.9164491505 -180,0,21.39,43.4233333333,19.5,38.3966666667,21.4175,38.4725,19.29,37.53,18.39,48.255,4.3333333333,80.9966666667,20.5,31.1888888889,24.1,39.435625,18.89,41.1266666667,4.25,740.65,73.5,4,40,-0.15,36.0979810474,36.0979810474 -90,0,21.39,43.7566666667,19.5,39.3966666667,21.3233333333,38.56,19.26,37.2966666667,18.3788888889,48.3105555556,4.0266666667,81.43,20.4083333333,31.1555555556,24.0882352941,39.4882352941,18.89,40.9,4,740.7,75,4,40,-0.1,28.6031833268,28.6031833268 -90,0,21.39,42.1666666667,19.5,39.93,21.26,38.59,19.2,37.09,18.3788888889,48.45,3.8266666667,82.1633333333,20.39,31.2,24.0444444444,39.4444444444,18.8566666667,40.7233333333,3.75,740.75,76.5,4,40,-0.05,28.1471542083,28.1471542083 -100,0,21.39,41.1,19.5,39.8333333333,21.2,38.7233333333,19.2,36.9666666667,18.39,48.4888888889,3.6,82.345,20.3288888889,31.1388888889,24.0222222222,39.6733333333,18.79,40.59,3.5,740.8,78,4,40,0,23.6187404953,23.6187404953 -100,0,21.29,40.4,19.5,39.7,21.2,38.8266666667,19.2,36.9,18.39,48.5,3.3333333333,82.59,20.28,31.0888888889,24.0222222222,39.9866666667,18.79,40.3633333333,3.4166666667,740.8666666667,78.3333333333,3.8333333333,40,-0.0333333333,14.9348111707,14.9348111707 -130,0,21.29,40,19.5,39.59,21.2,38.9,19.1,36.9,18.39,48.5,3.2,83.53,20.205,31.0944444444,24,40.1655555556,18.79,40.1566666667,3.3333333333,740.9333333333,78.6666666667,3.6666666667,40,-0.0666666667,19.2100578221,19.2100578221 -430,0,21.3233333333,39.7966666667,19.5,39.59,21.2,38.9333333333,19.1,36.9,18.3733333333,48.4944444444,3.23,85,20.1888888889,31.1888888889,24,40.29,18.79,39.9666666667,3.25,741,79,3.5,40,-0.1,2.7922440087,2.7922440087 -110,20,21.39,40.6633333333,19.6,39.5,21.2,39,19.1,36.9633333333,18.3122222222,48.4333333333,3.29,85.6666666667,20.1055555556,31.275,24,40.2635294118,18.79,39.8266666667,3.1666666667,741.0666666667,79.3333333333,3.3333333333,40,-0.1333333333,46.06617518,46.06617518 -110,10,21.5333333333,40.2666666667,19.6975,39.4475,21.23,39.03,19.1,37.03,18.3733333333,48.4,3.29,85.9633333333,20.1,31.34,24,40.2,18.76,39.7,3.0833333333,741.1333333333,79.6666666667,3.1666666667,40,-0.1666666667,10.2289955015,10.2289955015 -120,10,21.6666666667,39.8,19.79,39.0966666667,21.29,39.09,19.05,36.95,18.34,48.4,3.29,86.1566666667,20.0388888889,31.39,24,40.1766666667,18.7,39.5666666667,3,741.2,80,3,40,-0.2,43.2166722021,43.2166722021 -110,10,21.73,39.03,19.9266666667,38.8633333333,21.29,38.9,19,36.9,18.3344444444,48.3327777778,3.29,86.3666666667,20,31.4083333333,24,40.01,18.7,39.4666666667,2.9166666667,741.2166666667,80.5,3,40,-0.1833333333,7.6562936418,7.6562936418 -110,30,21.79,38.9633333333,20,38.73,21.29,38.9666666667,19,36.9,18.3233333333,48.29,3.29,86.7,20,31.4933333333,24,39.8983333333,18.7,39.3266666667,2.8333333333,741.2333333333,81,3,40,-0.1666666667,45.9950894001,45.9950894001 -120,30,21.8233333333,38.7233333333,20.1333333333,38.6333333333,21.29,38.9666666667,19.0333333333,37.96,18.3677777778,48.255,3.29,86.9633333333,19.9205555556,31.5777777778,24,39.7144444444,18.7,39.1633333333,2.75,741.25,81.5,3,40,-0.15,44.3528058939,44.3528058939 -90,10,21.89,38.4633333333,20.2,38.4333333333,21.3566666667,38.8266666667,19.1666666667,39.0333333333,18.3122222222,48.2,3.3633333333,87.09,19.89,31.5533333333,23.9694444444,39.5122222222,18.7,39.03,2.6666666667,741.2666666667,82,3,40,-0.1333333333,36.6700598737,36.6700598737 -100,10,22.0333333333,38.6333333333,20.23,38.29,21.39,38.7,19.29,39.29,18.3566666667,48.2,3.4,86.4933333333,19.8622222222,31.5722222222,23.9022222222,39.1572222222,18.7,38.9,2.5833333333,741.2833333333,82.5,3,40,-0.1166666667,38.6563672218,38.6563672218 -100,10,22.1,38.8266666667,20.3566666667,38.3633333333,21.39,38.76,19.29,39.3633333333,18.3288888889,48.1755555556,3.4,86.3666666667,19.79,31.5,23.8122222222,38.9222222222,18.7,38.9,2.5,741.3,83,3,40,-0.1,30.3967873915,30.3967873915 -100,0,22.1,38.745,20.4266666667,38.4,21.5,38.9,19.29,39.4333333333,18.3455555556,48.1755555556,3.3633333333,86.1266666667,19.78,31.5,23.8288888889,38.9388888889,18.6666666667,38.7966666667,2.45,741.3,83,2.8333333333,40,-0.15,39.222368761,39.222368761 -100,0,22.1,38.56,20.5,38.4,21.5,38.9,19.29,39.2266666667,18.34,48.2,3.23,85.7933333333,19.725,31.5,23.79,38.9611111111,18.6,38.53,2.4,741.3,83,2.6666666667,40,-0.2,34.5668874565,34.5668874565 -100,0,22.1666666667,38.4333333333,20.6,38.4,21.5,38.8633333333,19.26,38.7966666667,18.3455555556,48.2,3.09,85.8966666667,19.7,31.5,23.79,39.025,18.6,38.43,2.35,741.3,83,2.5,40,-0.25,28.7040860276,28.7040860276 -110,0,22.2,38.2,20.6,38.4,21.5,38.79,19.2,38.4633333333,18.3288888889,48.1755555556,3.03,86.03,19.6722222222,31.4694444444,23.79,39.1905555556,18.6,38.29,2.3,741.3,83,2.3333333333,40,-0.3,30.1928151515,30.1928151515 -100,10,22.2,38.2,20.6,38.4,21.5,38.79,19.2,38.2233333333,18.5744444444,58.2772222222,3,86.35,19.6111111111,31.4022222222,23.79,39.475,18.6,38.19,2.25,741.3,83,2.1666666667,40,-0.35,19.8867120547,19.8867120547 -180,0,22.2,38.1333333333,20.6,38.3266666667,21.5,38.79,19.1333333333,38.1633333333,20.5627777778,86.9377777778,3,86.3333333333,19.5944444444,31.1538888889,23.79,39.5583333333,18.6,38.2,2.2,741.3,83,2,40,-0.4,5.752335221,5.752335221 -110,30,22.2,37.86,20.5,38.1333333333,21.5,38.73,19.1,38.06,20.6077777778,86.3911111111,3,86.4,19.5333333333,30.9511111111,23.765,39.345,18.6,38.0666666667,2.2,741.3,83.5,1.8333333333,40,-0.3333333333,11.3631880376,11.3631880376 -90,20,22.1,37.59,20.5,37.9333333333,21.5,38.56,19.1,38.06,20.235,86.0572222222,3,86.4333333333,19.5055555556,31.0611111111,23.77,39.2688888889,18.6,38.09,2.2,741.3,84,1.6666666667,40,-0.2666666667,49.2146367091,49.2146367091 -80,20,22.1,37.59,20.4633333333,37.9,21.4266666667,38.36,19.2,38.5,20.3916666667,81.7227777778,2.9333333333,86.5,19.5166666667,31.1277777778,23.6988888889,38.9888888889,18.6,38.09,2.2,741.3,84.5,1.5,40,-0.2,19.6842285804,19.6842285804 -80,20,22.1,37.59,20.39,37.9666666667,21.39,38.26,19.26,38.9,20.55,75.405,3,86.5,19.5,31.2,23.5888888889,38.6172222222,18.5666666667,38.06,2.2,741.3,85,1.3333333333,40,-0.1333333333,6.3003668678,6.3003668678 -80,20,22.1,37.59,20.3566666667,38.09,21.39,38.1266666667,19.39,39.2666666667,20.6833333333,70.7155555556,3,86.5,19.5,31.245,23.445,38.2805555556,18.5,38,2.2,741.3,85.5,1.1666666667,40,-0.0666666667,47.2122429986,47.2122429986 -60,30,22,37.5,20.29,38.09,21.39,38.09,19.4633333333,39.5266666667,20.6722222222,67.1666666667,2.8633333333,86.0933333333,19.5,31.3238888889,23.3733333333,38.0238888889,18.5,37.9666666667,2.2,741.3,86,1,40,0,41.4764504996,41.4764504996 -80,20,22,37.5,20.23,38.09,21.3233333333,38.4233333333,19.5,39.8,21.5372222222,83.6877777778,2.73,85.9666666667,19.5,31.8405555556,23.265,38.0188888889,18.5,37.9,2.0333333333,741.3166666667,86.8333333333,1.1666666667,37.6666666667,-0.0333333333,32.7609302476,32.7609302476 -70,30,21.9633333333,37.73,20.1666666667,38.23,21.29,38.7666666667,19.6,39.9333333333,22.1822222222,89.4294444444,2.59,86.2933333333,19.5,32.3094444444,23.22,38.6888888889,18.5,38.1566666667,1.8666666667,741.3333333333,87.6666666667,1.3333333333,35.3333333333,-0.0666666667,5.4121699533,5.4121699533 -70,20,21.89,37.8633333333,20.1,38.43,21.29,38.9,19.6,40.06,21.4816666667,91.8105555556,2.6633333333,86.5,19.5,32.5644444444,23.225,39.7705555556,18.5,38.3633333333,1.7,741.35,88.5,1.5,33,-0.1,21.3462430285,21.3462430285 -40,20,21.89,38,20.0666666667,38.5,21.26,39.06,19.7,40.23,21.16,92.3,2.59,86.2666666667,19.5055555556,32.8588888889,23.215,40.5427777778,18.5,38.6566666667,1.5333333333,741.3666666667,89.3333333333,1.6666666667,30.6666666667,-0.1333333333,9.2851025984,9.2851025984 -50,20,21.89,38.06,20,38.5,21.2,39,19.76,40.29,21.0611111111,90.7105555556,2.53,85.7266666667,19.5388888889,33.045,23.2,41.03,18.5,38.79,1.3666666667,741.3833333333,90.1666666667,1.8333333333,28.3333333333,-0.1666666667,21.2702619261,21.2702619261 -50,30,21.79,38.09,19.89,38.59,21.2,39.03,19.73,40.3633333333,20.9205555556,88.1955555556,2.3333333333,85.0233333333,19.5,33.2427777778,23.2,41.4661111111,18.5,38.79,1.2,741.4,91,2,26,-0.2,11.9594930322,11.9594930322 -50,20,21.79,38.09,19.89,38.6633333333,21.2,39.1633333333,19.79,40.3633333333,20.8016666667,85.8472222222,2.1266666667,84.5633333333,19.5,33.3988888889,23.2,41.91,18.5,38.8633333333,1.2333333333,741.4333333333,90.6666666667,2,26,-0.2,24.2766811862,24.2766811862 -60,20,21.7,38.09,19.8566666667,38.7,21.1,39.2,19.89,40.4666666667,20.6822222222,83.8811111111,1.9666666667,84.4,19.5,33.5555555556,23.1388888889,42.3255555556,18.5,39.03,1.2666666667,741.4666666667,90.3333333333,2,26,-0.2,5.7762636687,5.7762636687 -60,20,21.7,38.195,19.79,38.7,21.0333333333,39.2,19.89,40.4666666667,20.5611111111,82.0772222222,1.8725,84.375,19.5,33.6877777778,23.1,42.6905555556,18.5,39.2233333333,1.3,741.5,90,2,26,-0.2,45.3154236777,45.3154236777 -60,20,21.6333333333,38.29,19.7,38.73,21,39.2,19.89,40.5,20.4694444444,80.935,1.79,84.3,19.5,33.755,23.1,43.0044444444,18.5,39.3266666667,1.3333333333,741.5333333333,89.6666666667,2,26,-0.2,23.6030439963,23.6030439963 -60,20,21.6,38.4,19.7,38.79,21,39.2675,19.89,40.5,20.3511111111,80.6083333333,1.76,84.26,19.5,33.8083333333,23.05,43.1511111111,18.5,39.4666666667,1.3666666667,741.5666666667,89.3333333333,2,26,-0.2,17.7733624587,17.7733624587 -50,0,21.6,38.4,19.6666666667,38.76,21,39.3633333333,20,40.5,20.265,80.5761111111,1.7,84.4,19.5,33.8633333333,23,43.3416666667,18.5,39.59,1.4,741.6,89,2,26,-0.2,9.8938409588,9.8938409588 -50,0,21.5,38.4,19.6,38.7,21,39.4,20,40.36,20.2,80.2561111111,1.6666666667,84.4,19.5,33.9277777778,23,43.645,18.5,39.73,1.3333333333,741.5833333333,89.1666666667,1.8333333333,25.6666666667,-0.2333333333,11.1194917117,11.1194917117 -60,0,21.5,38.4,19.5,38.7,21,39.4,19.89,39.9,20.1277777778,79.3272222222,1.6,84.4,19.5,34.005,22.9755555556,43.7811111111,18.5,39.8633333333,1.2666666667,741.5666666667,89.3333333333,1.6666666667,25.3333333333,-0.2666666667,28.1161866616,28.1161866616 -60,0,21.39,38.29,19.5,38.7,21,39.4,19.8233333333,39.5,20.0722222222,78.1688888889,1.5666666667,84.3,19.5,34.06,22.9205555556,43.8877777778,18.5,40.1266666667,1.2,741.55,89.5,1.5,25,-0.3,29.1848685942,29.1848685942 -60,0,21.39,38.23,19.39,38.6266666667,21,39.4,19.79,39.29,20.0111111111,77.0794444444,1.4266666667,84.2266666667,19.5,34.09,22.89,44.0616666667,18.5,40.26,1.1333333333,741.5333333333,89.6666666667,1.3333333333,24.6666666667,-0.3333333333,48.9086947753,48.9086947753 -100,0,21.39,38.29,19.39,38.7,21,39.5,19.73,39.29,19.9327777778,76.0522222222,1.39,84.53,19.4633333333,34.1083333333,22.9205555556,44.335,18.5,40.3266666667,1.0666666667,741.5166666667,89.8333333333,1.1666666667,24.3333333333,-0.3666666667,32.5540176011,32.5540176011 -70,0,21.3233333333,38.29,19.3566666667,38.7,20.9266666667,39.5,19.6666666667,39.29,19.8622222222,74.975,1.3233333333,84.59,19.4755555556,34.1755555556,22.9755555556,44.3116666667,18.5,40.4666666667,1,741.5,90,1,24,-0.4,38.4809489711,38.4809489711 -50,0,21.29,38.26,19.29,38.7,21,39.4333333333,19.6,39.43,19.79,73.8172222222,1.1666666667,84.5633333333,19.4083333333,34.1083333333,23.0277777778,44.1127777778,18.5,40.6266666667,0.8833333333,741.4,90.1666666667,1.1666666667,23.8333333333,-0.5,41.4743445348,41.4743445348 -50,0,21.29,38.26,19.245,38.745,20.9266666667,39.5,19.55,39.59,19.725,73.0466666667,0.9666666667,84.6233333333,19.39,34.1694444444,23.0611111111,44.3344444444,18.5,40.7,0.7666666667,741.3,90.3333333333,1.3333333333,23.6666666667,-0.6,2.2681082133,2.2681082133 -40,0,21.26,38.2,19.2,38.7,20.89,39.5,19.5,39.59,19.6888888889,72.3605555556,0.7666666667,84.4966666667,19.39,34.2027777778,23,44.5,18.5,40.8266666667,0.65,741.2,90.5,1.5,23.5,-0.7,11.1890070606,11.1890070606 -50,0,21.2,38.1266666667,19.1333333333,38.76,20.89,39.5,19.4266666667,39.59,19.6388888889,71.6388888889,0.7,85.0233333333,19.39,34.255,22.9327777778,44.5,18.5,40.9666666667,0.5333333333,741.1,90.6666666667,1.6666666667,23.3333333333,-0.8,34.1787014855,34.1787014855 -60,0,21.2,38.09,19.1666666667,38.79,20.89,39.53,19.39,39.59,19.5888888889,70.7505555556,0.7,85.5333333333,19.39,34.275,22.89,44.5,18.5,41.09,0.4166666667,741,90.8333333333,1.8333333333,23.1666666667,-0.9,33.5473131039,33.5473131039 -50,0,21.1333333333,38.09,19.1,38.8633333333,20.89,39.59,19.39,39.53,19.5166666667,69.8961111111,0.7,86.06,19.39,34.29,22.8288888889,44.4444444444,18.5,41.1633333333,0.3,740.9,91,2,23,-1,26.4883168857,26.4883168857 -30,0,21.1,38.09,19.1,38.9,20.89,39.7,19.3566666667,39.5,19.5,69.06,0.75,86.245,19.39,34.29,22.79,44.5338888889,18.5,41.29,0.2,740.8333333333,91.1666666667,2,22.8333333333,-1.0666666667,22.5427967031,22.5427967031 -40,0,21.1,38.09,19.0333333333,38.9,20.89,39.6266666667,19.29,39.5,19.445,68.1766666667,0.7,86.4633333333,19.3844444444,34.3144444444,22.79,44.6327777778,18.5,41.3633333333,0.1,740.7666666667,91.3333333333,2,22.6666666667,-1.1333333333,48.6978775822,48.6978775822 -20,0,21.0333333333,38.03,19,38.9,20.89,39.59,19.26,39.43,19.39,67.3822222222,0.5666666667,86.2566666667,19.3566666667,34.345,22.745,44.745,18.5,41.4333333333,0,740.7,91.5,2,22.5,-1.2,11.9691792293,11.9691792293 -50,0,21.0333333333,38.09,18.9266666667,38.9666666667,20.89,39.59,19.2,39.3633333333,19.39,66.7855555556,0.5,86.3666666667,19.3233333333,34.4,22.7,44.9394444444,18.5,41.5,-0.1,740.6333333333,91.6666666667,2,22.3333333333,-1.2666666667,34.6636169706,34.6636169706 -50,0,21,38.09,18.89,38.9333333333,20.89,39.59,19.2,39.4,19.3288888889,66.0861111111,0.4333333333,86.2266666667,19.3011111111,34.4,22.7,45.2327777778,18.5,41.6266666667,-0.2,740.5666666667,91.8333333333,2,22.1666666667,-1.3333333333,6.9082195289,6.9082195289 -40,0,20.9633333333,38.09,18.89,39,20.84,39.695,19.2,39.3266666667,19.29,65.5794444444,0.2333333333,85.6666666667,19.3011111111,34.4,22.6611111111,45.4205555556,18.5,41.7,-0.3,740.5,92,2,22,-1.4,19.9012675672,19.9012675672 -50,0,20.89,38.09,18.89,39,20.8233333333,39.73,19.1666666667,39.29,19.26,65.0072222222,0.1,85.4666666667,19.29,34.4,22.6,45.525,18.5,41.79,-0.1666666667,740.4333333333,92,2,22.1666666667,-1.2833333333,3.827967972,3.827967972 -50,0,20.89,38.09,18.8233333333,38.9333333333,20.79,39.73,19.1,39.29,19.215,64.44,0,85.9666666667,19.29,34.4,22.6,45.6133333333,18.5333333333,41.8266666667,-0.0333333333,740.3666666667,92,2,22.3333333333,-1.1666666667,5.1694791531,5.1694791531 -60,0,20.8233333333,38.03,18.79,38.9,20.79,39.73,19.1,39.29,19.2,63.9955555556,0.0666666667,86.8266666667,19.29,34.4,22.5277777778,45.77,18.5333333333,41.9,0.1,740.3,92,2,22.5,-1.05,24.9230530695,24.9230530695 -50,0,20.79,38.06,18.79,38.9666666667,20.79,39.73,19.1,39.29,19.2,63.5838888889,0.1666666667,87.6933333333,19.29,34.4,22.5,45.725,18.5666666667,42.03,0.2333333333,740.2333333333,92,2,22.6666666667,-0.9333333333,25.932977756,25.932977756 -60,0,20.79,38.06,18.7,39,20.8566666667,39.8633333333,19,39.09,19.15,63.1955555556,0.4333333333,88.1666666667,19.29,34.4,22.4877777778,45.6877777778,18.5,42.09,0.3666666667,740.1666666667,92,2,22.8333333333,-0.8166666667,12.0271526393,12.0271526393 -50,0,20.76,38.09,18.7,39,20.79,39.8633333333,19,39.09,19.1111111111,62.895,0.7,88.6,19.29,34.4611111111,22.4205555556,45.7227777778,18.5,42.1266666667,0.5,740.1,92,2,23,-0.7,44.1485528834,44.1485528834 -50,0,20.7,38.09,18.7,39.09,20.8566666667,39.8633333333,19,39.09,19.1,62.6161111111,0.9666666667,88.8666666667,19.255,34.4611111111,22.4144444444,45.8144444444,18.5,42.2,0.6333333333,740.05,91.1666666667,2.1666666667,23.1666666667,-0.7,19.2491978407,19.2491978407 -50,0,20.7,38.09,18.6333333333,39.09,20.9266666667,39.79,18.9266666667,39.09,19.1,62.32,1.2633333333,89,19.23,34.4333333333,22.39,45.79,18.5,42.29,0.7666666667,740,90.3333333333,2.3333333333,23.3333333333,-0.7,9.2826304142,9.2826304142 -50,0,20.7,38.09,18.6,39.09,20.9266666667,39.79,18.89,39.09,19.0388888889,61.9738888889,1.4633333333,89,19.2,34.4277777778,22.39,45.78,18.5,42.3633333333,0.9,739.95,89.5,2.5,23.5,-0.7,15.4961331864,15.4961331864 -40,0,20.6666666667,38.06,18.6,39.2,20.9266666667,39.9,18.89,39.09,19,61.745,1.6,88.8666666667,19.22,34.53,22.3733333333,45.76,18.5,42.4,1.0333333333,739.9,88.6666666667,2.6666666667,23.6666666667,-0.7,11.102452327,11.102452327 -50,0,20.6,38.06,18.5333333333,39.2,21,39.9,18.89,39.09,19,61.5566666667,1.6,88.525,19.2,34.555,22.29,45.77,18.5,42.4666666667,1.1666666667,739.85,87.8333333333,2.8333333333,23.8333333333,-0.7,49.0300533944,49.0300533944 -50,0,20.6,38.09,18.5,39.29,21,39.9,18.89,39.09,18.9816666667,61.345,1.6,88.16,19.2,34.59,22.29,45.79,18.5666666667,42.5,1.3,739.8,87,3,24,-0.7,41.8785640039,41.8785640039 -60,0,20.6,38.09,18.5,39.29,21,39.9,18.89,39.09,18.9755555556,61.1722222222,1.6333333333,88.16,19.2,34.57,22.28,45.7327777778,18.5,42.56,1.2666666667,739.7333333333,87.1666666667,2.8333333333,23.8333333333,-0.7,47.5730142556,47.5730142556 -50,0,20.5666666667,38.09,18.4633333333,39.29,21.0333333333,39.9333333333,18.8566666667,39.09,18.9388888889,61.0283333333,1.76,88.1,19.2,34.59,22.225,45.6005555556,18.5,42.73,1.2333333333,739.6666666667,87.3333333333,2.6666666667,23.6666666667,-0.7,41.0184447188,41.0184447188 -50,0,20.5,38.1633333333,18.39,39.3633333333,21.1,40.06,18.79,39.09,18.89,60.8388888889,1.79,87.9666666667,19.2,34.59,22.2,45.58,18.5666666667,42.79,1.2,739.6,87.5,2.5,23.5,-0.7,12.1259719715,12.1259719715 -50,0,20.5,38.2,18.39,39.4,21.1,40.09,18.79,39.09,18.89,60.6794444444,1.79,87.8333333333,19.2,34.59,22.2,45.525,18.5666666667,42.8266666667,1.1666666667,739.5333333333,87.6666666667,2.3333333333,23.3333333333,-0.7,19.304115267,19.304115267 -50,0,20.5,38.2,18.39,39.4,21.1,40.09,18.79,39.09,18.8844444444,60.4872222222,1.9,87.8666666667,19.1666666667,34.59,22.2,45.5,18.5666666667,42.9,1.1333333333,739.4666666667,87.8333333333,2.1666666667,23.1666666667,-0.7,49.0857027587,49.0857027587 -20,0,20.445,38.145,18.39,39.4333333333,21.1,40.1266666667,18.79,39.09,18.8455555556,60.2866666667,1.9,87.66,19.1055555556,34.59,22.1722222222,45.4944444444,18.6,42.9,1.1,739.4,88,2,23,-0.7,15.6474113697,15.6474113697 -30,0,20.39,38.2,18.3233333333,39.5,21.1,40.1725,18.79,39.09,18.8344444444,60.1422222222,1.9,87.6233333333,19.1,34.59,22.1111111111,45.4333333333,18.5333333333,42.9,1.2,739.2833333333,87.8333333333,2,23.1666666667,-0.6333333333,7.3528643232,7.3528643232 -20,0,20.39,38.2,18.3233333333,39.5,21.1,40.09,18.79,39.09,18.8344444444,60.0644444444,1.9666666667,87.69,19.1,34.59,22.1,45.4,18.55,42.95,1.3,739.1666666667,87.6666666667,2,23.3333333333,-0.5666666667,19.6437676321,19.6437676321 -40,0,20.3566666667,38.23,18.3233333333,39.56,21,40,18.73,39.09,18.79,59.8444444444,2.09,87.8,19.1,34.59,22.0388888889,45.2655555556,18.5333333333,43,1.4,739.05,87.5,2,23.5,-0.5,44.6264426108,44.6264426108 -50,0,20.29,38.29,18.29,39.59,21,40.06,18.7,39.09,18.79,59.73,2.09,87.7266666667,19.1,34.59,22.0444444444,45.2522222222,18.6,43,1.5,738.9333333333,87.3333333333,2,23.6666666667,-0.4333333333,43.2841904578,43.2841904578 -60,0,20.29,38.29,18.29,39.59,21,40.09,18.7,39.09,18.785,59.6033333333,2.09,87.69,19.1,34.59,22.0111111111,45.2672222222,18.5666666667,43.09,1.6,738.8166666667,87.1666666667,2,23.8333333333,-0.3666666667,31.1007826705,31.1007826705 -50,0,20.29,38.29,18.26,39.6633333333,21,40.1633333333,18.7,39.09,18.71,59.53,2.1633333333,87.69,19.1,34.6572222222,22,45.29,18.5,43.09,1.7,738.7,87,2,24,-0.3,26.1686951737,26.1686951737 -50,0,20.2,38.29,18.26,39.6633333333,21,40.2,18.7,39.09,18.7,59.3738888889,2.1633333333,87.5933333333,19.1,34.7,22,45.29,18.6,43.09,1.5166666667,738.5833333333,88,2,30.6666666667,-0.3166666667,13.179066556,13.179066556 -50,0,20.2,38.29,18.26,39.7,21,40.2,18.7,39.09,18.7,59.29,1.9633333333,86.4666666667,19.1,34.7,21.9938888889,45.235,18.5333333333,43.1633333333,1.3333333333,738.4666666667,89,2,37.3333333333,-0.3333333333,30.1024876419,30.1024876419 -50,0,20.2,38.29,18.2,39.7,21,40.2,18.6333333333,39.09,18.7,59.235,1.5666666667,85.63,19.0722222222,34.6694444444,21.9022222222,45.22,18.5666666667,43.2,1.15,738.35,90,2,44,-0.35,9.6809274401,9.6809274401 -50,0,20.1333333333,38.3633333333,18.2,39.7,21,40.26,18.6,39.09,18.7,59.145,1.575,86.8475,19.0444444444,34.7216666667,21.89,45.255,18.5666666667,43.2,0.9666666667,738.2333333333,91,2,50.6666666667,-0.3666666667,47.4298806745,47.4298806745 -40,0,20.1666666667,38.4,18.2,39.79,21,40.29,18.6,39.03,18.7,59.035,1.6,87.3,19,34.6755555556,21.89,45.29,18.5666666667,43.23,0.7833333333,738.1166666667,92,2,57.3333333333,-0.3833333333,41.5641435189,41.5641435189 -50,0,20.1,38.4,18.1333333333,39.79,21,40.3633333333,18.6,39.09,18.6777777778,58.95,1.6,87.33,19,34.7,21.8622222222,45.3094444444,18.5,43.29,0.6,738,93,2,64,-0.4,40.3838610859,40.3838610859 -40,0,20.1,38.4333333333,18.1,39.9,21,40.4,18.6,39.09,18.6166666667,58.8033333333,1.5333333333,87.2633333333,19,34.7,21.8011111111,45.23,18.5,43.29,0.7166666667,737.9166666667,92.6666666667,2,56.6666666667,-0.3333333333,41.6070723208,41.6070723208 -50,0,20.0333333333,38.4333333333,18.1,39.9,21,40.4,18.6,39.09,18.6,58.75,1.5,87.4966666667,19,34.7,21.79,45.2,18.5,43.29,0.8333333333,737.8333333333,92.3333333333,2,49.3333333333,-0.2666666667,44.4103173213,44.4103173213 -90,0,20.0666666667,38.4666666667,18.1,39.9,21,40.4333333333,18.5666666667,39.09,18.6,58.6938888889,1.6333333333,88.0233333333,19,34.7,21.79,45.245,18.5,43.3266666667,0.95,737.75,92,2,42,-0.2,8.5224343813,8.5224343813 -70,0,20,38.4,18.1,39.9,21,40.5,18.5666666667,39.09,18.6,58.6022222222,1.8266666667,88.3666666667,19,34.7,21.785,45.245,18.5,43.4666666667,1.0666666667,737.6666666667,91.6666666667,2,34.6666666667,-0.1333333333,47.8659936809,47.8659936809 -60,0,20,39,18.1,40.1933333333,20.9633333333,40.2966666667,18.6,39.09,18.6,58.5094444444,1.9666666667,88.4333333333,19,34.745,21.745,45.25,18.6,43.56,1.1833333333,737.5833333333,91.3333333333,2,27.3333333333,-0.0666666667,39.4143011305,39.4143011305 -70,0,20.0666666667,39.5333333333,18.1,40.6,20.89,39.89,18.5333333333,39.2233333333,18.6,58.2944444444,2.2,88.3666666667,19,34.77,21.725,45.2,18.5333333333,43.5,1.3,737.5,91,2,20,0,18.8612440135,18.8612440135 -60,10,20.0333333333,39.53,18.1,40.9,20.79,39.7,18.6,39.53,18.6,56.0305555556,2.26,88.2266666667,18.9633333333,34.78,21.7,45.225,18.6,43.3633333333,1.5,737.3166666667,90.1666666667,2.1666666667,20.8333333333,0.05,39.4497867557,39.4497867557 -130,0,20.025,39.695,18.1,40.9666666667,20.79,39.678,18.6,39.7233333333,18.6,55.4405555556,2.4333333333,88.03,18.945,34.78,21.7,45.3572222222,18.6,43.1566666667,1.7,737.1333333333,89.3333333333,2.3333333333,21.6666666667,0.1,22.9652518872,22.9652518872 -340,0,20.0666666667,39.8633333333,18.1,41.1566666667,20.79,39.6633333333,18.6,39.9333333333,18.5944444444,55.9577777778,2.56,88.03,18.9144444444,34.7094444444,21.7,45.3694444444,18.5,43.045,1.9,736.95,88.5,2.5,22.5,0.15,11.0167204053,11.0167204053 -230,0,20.0333333333,39.79,18.1,41.23,20.79,39.6333333333,18.6,39.7266666667,18.5611111111,55.3433333333,2.7666666667,88.06,18.89,34.2466666667,21.6833333333,45.0427777778,18.5,42.7233333333,2.1,736.7666666667,87.6666666667,2.6666666667,23.3333333333,0.2,28.3197708894,28.3197708894 -80,0,20.1,39.73,18.1666666667,41.06,20.73,39.5,18.6,39.3333333333,18.6,53.4988888889,2.9666666667,87.8666666667,18.8177777778,33.9072222222,21.6222222222,44.5922222222,18.5,42.39,2.3,736.5833333333,86.8333333333,2.8333333333,24.1666666667,0.25,0.7708656136,0.7708656136 -40,10,20.0333333333,39.4,18.1666666667,40.86,20.7,39.26,18.6,39.1266666667,18.6,52.3388888889,3.23,87.4933333333,18.79,33.6966666667,21.6,44.2244444444,18.5,41.7966666667,2.5,736.4,86,3,25,0.3,33.8011690648,33.8011690648 -50,0,20.0333333333,39.2666666667,18.1666666667,40.6633333333,20.6333333333,39.1266666667,18.6,38.8633333333,18.6,51.66,3.3633333333,86.8933333333,18.78,33.525,21.5611111111,43.8633333333,18.5,41.39,2.5833333333,736.2833333333,85.6666666667,3.1666666667,25.1666666667,0.35,22.0396143966,22.0396143966 -70,0,20,39.06,18.1666666667,40.53,20.6,39.06,18.5333333333,38.73,18.6166666667,51.0944444444,3.45,85.9,18.74,33.4166666667,21.5388888889,43.5083333333,18.4633333333,40.8633333333,2.6666666667,736.1666666667,85.3333333333,3.3333333333,25.3333333333,0.4,15.3991672094,15.3991672094 -70,0,20,38.9333333333,18.1333333333,40.3633333333,20.6,38.9333333333,18.6,38.56,18.6277777778,50.6838888889,3.59,85.4933333333,18.755,33.3205555556,21.5166666667,43.2772222222,18.4633333333,40.4633333333,2.75,736.05,85,3.5,25.5,0.45,17.4868482049,17.4868482049 -80,0,20,38.79,18.2,40.29,20.6,38.9,18.5333333333,38.5,18.6,50.2377777778,3.6633333333,85.1,18.71,33.255,21.4938888889,43.0877777778,18.39,39.93,2.8333333333,735.9333333333,84.6666666667,3.6666666667,25.6666666667,0.5,29.4882397749,29.4882397749 -60,0,20,38.73,18.1,40.145,20.5333333333,38.8266666667,18.5,38.4,18.6,49.8922222222,3.79,84.3966666667,18.7,33.2,21.4816666667,42.8805555556,18.39,39.73,2.9166666667,735.8166666667,84.3333333333,3.8333333333,25.8333333333,0.55,14.958075399,14.958075399 -50,0,19.9633333333,38.2666666667,18.1,39.8333333333,20.5,38.56,18.5,38.29,18.6,49.56,3.79,84.6566666667,18.6777777778,33.1755555556,21.4694444444,42.765,18.3233333333,39.4666666667,3,735.7,84,4,26,0.6,11.963804171,11.963804171 -320,0,19.89,38,18.1,39.6266666667,20.5,38.4333333333,18.5,38.43,18.6,49.3227777778,3.9333333333,85.5333333333,18.65,33.145,21.4205555556,42.7288888889,18.3233333333,39.3266666667,2.9833333333,735.55,85.1666666667,4.1666666667,32.5,0.7666666667,46.4308536844,46.4308536844 -390,10,19.89,38.1566666667,18.1333333333,39.6633333333,20.4266666667,38.39,18.5,38.53,18.6,48.7755555556,4.1266666667,86.2,18.6277777778,33.2066666667,21.3961111111,42.8688888889,18.29,39.09,2.9666666667,735.4,86.3333333333,4.3333333333,39,0.9333333333,31.9069232093,31.9069232093 -300,0,19.89,38.3633333333,18.2,39.8633333333,20.5666666667,38.8633333333,18.5,38.6633333333,18.6,48.3333333333,4.3333333333,86.2266666667,18.6166666667,33.26,21.39,43.0338888889,18.29,38.9633333333,2.95,735.25,87.5,4.5,45.5,1.1,25.7107951562,25.7107951562 -310,0,19.89,38.73,18.26,40.2,20.86,39.5966666667,18.5,38.9,18.6,48.0555555556,4.3333333333,86.1,18.6611111111,33.7611111111,21.39,43.2027777778,18.29,38.8633333333,2.9333333333,735.1,88.6666666667,4.6666666667,52,1.2666666667,8.5884533124,8.5884533124 -250,10,19.89,38.79,18.2,40.26,21.1333333333,39.79,18.5,38.7666666667,18.6,48.9394444444,4.4633333333,86.6333333333,18.7,34.09,21.445,43.4377777778,18.29,38.73,2.9166666667,734.95,89.8333333333,4.8333333333,58.5,1.4333333333,33.8426353526,33.8426353526 -250,10,19.89,39.1933333333,18.2,40.5966666667,21.3233333333,39.7,18.5,38.8266666667,18.5888888889,50.0183333333,4.6566666667,86.8333333333,18.7,34.085,21.5,43.5,18.29,39.23,2.9,734.8,91,5,65,1.6,20.4065962695,20.4065962695 -130,0,19.9633333333,40.2666666667,18.26,40.99,21.4633333333,39.7,18.5,38.9666666667,18.5055555556,50.7205555556,4.6566666667,85.8933333333,18.6833333333,33.9933333333,21.55,43.45,18.29,39.29,2.9166666667,734.65,91.5,5,64.5,1.6833333333,25.9977636742,25.9977636742 -100,10,20.0333333333,44.0633333333,18.29,41.9566666667,21.6333333333,39.6333333333,18.5,39.0666666667,18.5,51.2461111111,4.53,85.6333333333,18.65,33.95,21.6166666667,43.4538888889,18.29,39.2,2.9333333333,734.5,92,5,64,1.7666666667,45.8985750563,45.8985750563 -100,10,20.1,43.2225,18.29,42.43,21.625,39.1925,18.5,39.3333333333,18.5,51.6755555556,4.6233333333,86.4633333333,18.6666666667,33.9666666667,21.7,43.7205555556,18.29,39.1266666667,2.95,734.35,92.5,5,63.5,1.85,46.5203111293,46.5203111293 -220,0,20.1,42.3666666667,18.29,42.5,21.5333333333,39.09,18.5,39.73,18.5,52.0644444444,4.6233333333,85.73,18.6777777778,34.0733333333,21.755,44.0055555556,18.29,38.95,2.9666666667,734.2,93,5,63,1.9333333333,18.2669593021,18.2669593021 -240,10,20.1,42.29,18.29,42.4333333333,21.39,39.09,18.5,39.73,18.4633333333,52.2411111111,4.56,86.1333333333,18.6888888889,34.3777777778,21.79,44.2422222222,18.29,38.8333333333,2.9833333333,734.05,93.5,5,62.5,2.0166666667,37.5241853064,37.5241853064 -150,0,20.1,42.5633333333,18.3233333333,42.6333333333,21.39,39.09,18.5,39.56,18.4572222222,52.3877777778,4.56,86.4,18.7,34.3694444444,21.785,43.4338888889,18.23,38.6266666667,3,733.9,94,5,62,2.1,12.1384684695,12.1384684695 -100,0,20.2,42.4633333333,18.3233333333,42.9666666667,21.39,39.09,18.5,39.4333333333,18.39,52.4883333333,4.545,86.4,18.7,34.2772222222,21.74,43.0572222222,18.23,38.6266666667,3.0333333333,733.7333333333,94.1666666667,4.8333333333,62.3333333333,2.15,36.2408375368,36.2408375368 -110,0,20.2,42.4633333333,18.3233333333,43,21.39,39.1633333333,18.5,39.3633333333,18.39,52.58,4.6233333333,87.1666666667,18.7,34.37,21.71,42.8738888889,18.23,38.6266666667,3.0666666667,733.5666666667,94.3333333333,4.6666666667,62.6666666667,2.2,36.043256463,36.043256463 -100,10,20.23,42.1633333333,18.39,42.9333333333,21.29,39.23,18.5,39.29,18.39,52.6388888889,4.69,87.2266666667,18.7,34.7227777778,21.715,42.765,18.2,38.59,3.1,733.4,94.5,4.5,63,2.25,3.5319421557,3.5319421557 -90,0,20.29,41.89,18.5333333333,42.9666666667,21.29,39.29,18.5,39.2,18.39,52.5994444444,4.59,87.1933333333,18.755,34.8872222222,21.755,42.6277777778,18.2,38.59,3.1333333333,733.2333333333,94.6666666667,4.3333333333,63.3333333333,2.3,0.0685879728,0.0685879728 -100,0,20.3233333333,41.6633333333,18.7266666667,42.9,21.29,39.3266666667,18.5,39.1175,18.39,52.4205555556,4.6566666667,87.8,18.77,35.0338888889,21.755,42.51,18.2,38.59,3.1666666667,733.0666666667,94.8333333333,4.1666666667,63.6666666667,2.35,31.9067495642,31.9067495642 -90,0,20.39,41.53,18.995,42.69,21.23,39.3266666667,18.5,39.09,18.39,52.3022222222,4.8333333333,87.9333333333,18.79,35.2427777778,21.79,42.4327777778,18.2,38.59,3.2,732.9,95,4,64,2.4,27.0308000967,27.0308000967 -100,0,20.5333333333,41.4666666667,19.23,42.3633333333,21.2,39.4,18.5666666667,39.4266666667,18.39,52.245,4.8333333333,87.6,18.79,35.3633333333,21.79,42.3494444444,18.2,38.59,3.2833333333,732.75,95,4.1666666667,63.8333333333,2.4833333333,39.8028350435,39.8028350435 -100,10,20.6,41.2666666667,19.3566666667,42.0966666667,21.2,39.4666666667,18.9666666667,40.0933333333,18.39,52.23,4.9333333333,88.0266666667,18.79,35.3816666667,21.8066666667,42.6844444444,18.2,38.59,3.3666666667,732.6,95,4.3333333333,63.6666666667,2.5666666667,29.0950518916,29.0950518916 -100,10,20.7,41.0266666667,19.5,41.6933333333,21.2,39.5,19.63,40.7,18.39,52.1572222222,5.1266666667,88.3,18.8705555556,36.0416666667,21.89,42.9277777778,18.2,38.73,3.45,732.45,95,4.5,63.5,2.65,23.6719241599,23.6719241599 -100,10,20.76,40.8266666667,19.5666666667,41.36,21.1333333333,39.5,20.0966666667,40.6266666667,18.39,52.09,5.3,88.1566666667,19.1494444444,37.2844444444,21.9572222222,43.035,18.2,38.79,3.5333333333,732.3,95,4.6666666667,63.3333333333,2.7333333333,49.5235903421,49.5235903421 -100,10,20.79,40.56,19.6,41.06,21.1,39.59,20.4933333333,40.5,18.39,52.075,5.2266666667,87.8233333333,19.33,37.5338888889,22,43.17,18.2,38.79,3.6166666667,732.15,95,4.8333333333,63.1666666667,2.8166666667,49.3896446307,49.3896446307 -100,0,20.8566666667,40.56,19.6666666667,41.06,21.1,39.53,20.9,40.36,18.3622222222,52.02,5.26,88.1333333333,19.4816666667,37.775,22.0833333333,43.5583333333,18.2,38.79,3.7,732,95,5,63,2.9,14.3719991902,14.3719991902 -80,0,20.89,40.53,19.7,41,21.1,39.59,21.3,40.26,18.3233333333,52,5.4,88.4,19.5222222222,37.8666666667,22.1,43.5372222222,18.2,38.79,3.7166666667,731.9166666667,95,5,56,2.9166666667,35.597174929,35.597174929 -80,0,20.9633333333,40.7233333333,19.76,41.06,21.1,39.6633333333,21.5666666667,40.1266666667,18.3011111111,52,5.3666666667,88.2633333333,19.4572222222,37.3466666667,22.0611111111,43.0094444444,18.2,38.79,3.7333333333,731.8333333333,95,5,49,2.9333333333,10.5606228346,10.5606228346 -70,0,21.0333333333,40.7,19.8233333333,41.06,21.1,39.7,21.43,39.99,18.29,52,5.3,88.3966666667,19.34,36.9294444444,22,42.3816666667,18.2,38.79,3.75,731.75,95,5,42,2.95,7.882483711,7.882483711 -60,0,21.1,40.7,19.9633333333,41,21.1,39.7675,21.29,39.6566666667,18.29,52,5.3666666667,88.43,19.235,36.4911111111,21.9816666667,41.8605555556,18.2,38.8633333333,3.7666666667,731.6666666667,95,5,35,2.9666666667,49.4428133825,49.4428133825 -70,0,21.15,40.59,20.0666666667,40.9666666667,21.1,39.79,21.0666666667,39.3333333333,18.29,51.9388888889,5.5,88.6233333333,19.1722222222,36.1944444444,21.89,41.4416666667,18.2,38.9,3.7833333333,731.5833333333,95,5,28,2.9833333333,40.7957762363,40.7957762363 -70,0,21.29,40.1966666667,20.2,40.5666666667,21.1,39.76,20.9266666667,39.1266666667,18.29,51.9038888889,5.4,88.295,19.1,36.0311111111,21.89,41.2027777778,18.2,38.9,3.8,731.5,95,5,21,3,32.1640624665,32.1640624665 -80,0,21.29,39.73,20.1,39.7966666667,21.1,39.5666666667,20.76,38.8633333333,18.29,51.7672222222,5.3333333333,88.59,19.1277777778,36.3877777778,21.89,41.2633333333,18.2,38.9666666667,3.7833333333,731.4333333333,95,5,20.8333333333,2.9833333333,28.0164357857,28.0164357857 -80,0,21.3233333333,39.8333333333,20.1666666667,39.53,21.1,39.26,20.6333333333,38.73,18.29,51.645,5.3333333333,88.3966666667,19.2,36.6755555556,21.89,41.5222222222,18.2,38.9666666667,3.7666666667,731.3666666667,95,5,20.6666666667,2.9666666667,24.882991903,24.882991903 -100,0,21.39,39.6266666667,20.23,39.6266666667,21.1,39.2,20.4633333333,38.6633333333,18.29,51.555,5.1566666667,87.9,19.1722222222,36.5111111111,21.945,41.6877777778,18.2,38.9,3.75,731.3,95,5,20.5,2.95,19.0794917173,19.0794917173 -100,0,21.5,39.6633333333,20.3566666667,39.6266666667,21.1,39.29,20.3233333333,38.53,18.29,51.5,4.9633333333,87.9666666667,19.1,36.2288888889,22.0166666667,41.6511111111,18.2,38.9,3.7333333333,731.2333333333,95,5,20.3333333333,2.9333333333,34.7850756836,34.7850756836 -90,0,21.5,39.53,20.39,39.5,21.1,39.29,20.26,38.4666666667,18.29,51.4611111111,4.8,88.2933333333,19.0833333333,35.9788888889,22.1333333333,41.6694444444,18.2,38.9,3.7166666667,731.1666666667,95,5,20.1666666667,2.9166666667,26.0206533363,26.0206533363 -100,0,21.5,39.5,20.39,39.4333333333,21.1333333333,39.4,20.175,38.4,18.29,51.4222222222,4.8,88.7,19.0333333333,35.7411111111,22.1994444444,41.535,18.1666666667,38.76,3.7,731.1,95,5,20,2.9,16.3649414666,16.3649414666 -90,0,21.5666666667,39.4333333333,20.445,39.45,21.2,39.4,20.0333333333,38.3266666667,18.29,51.4,4.69,89.2266666667,19,35.5872222222,22.26,41.4777777778,18.1,38.7,3.6666666667,731.0666666667,95.1666666667,5,24,2.9,30.7343532098,30.7343532098 -60,0,21.6,39.3633333333,20.39,39.4,21.2,39.4333333333,19.89,38.4,18.29,51.3572222222,4.69,89.6266666667,18.9938888889,35.5044444444,22.3288888889,41.4888888889,18.1,38.59,3.6333333333,731.0333333333,95.3333333333,5,28,2.9,5.6470744079,5.6470744079 -90,0,21.6,39.29,20.39,39.4,21.2,39.5,19.8233333333,38.3266666667,18.29,51.3022222222,4.59,89.8333333333,18.9266666667,35.4111111111,22.3622222222,41.4666666667,18.1,38.59,3.6,731,95.5,5,32,2.9,29.8344377894,29.8344377894 -60,0,21.5,39.29,20.29,39.4,21.1333333333,39.4333333333,19.73,38.3266666667,18.29,51.29,4.59,89.9666666667,18.89,35.3327777778,22.29,41.575,18.1,38.59,3.5666666667,730.9666666667,95.6666666667,5,36,2.9,38.9816424809,38.9816424809 -80,0,21.5,39.23,20.29,39.4,21.1333333333,39.5,19.73,38.4,18.29,51.218,4.5,90.2266666667,18.89,35.29,22.3122222222,41.59,18.1,38.59,3.5333333333,730.9333333333,95.8333333333,5,40,2.9,26.6481444123,26.6481444123 -90,20,21.5,39.2,20.26,39.4,21.1,39.5,19.6,38.3266666667,18.29,51.145,4.5,90.3666666667,18.89,35.275,22.3288888889,41.59,18.1,38.59,3.5,730.9,96,5,44,2.9,26.7731285654,26.7731285654 -100,30,21.4266666667,39.1266666667,20.2,39.4,21.1,39.4333333333,19.6,38.6,18.27,51.07,4.3666666667,90.4966666667,18.89,35.225,22.4205555556,41.57,18.1,38.59,3.5,730.9166666667,96,5,47.5,2.9,24.1945702932,24.1945702932 -160,10,21.39,39.09,20.2,39.3633333333,21,39.29,19.6,39.0666666667,18.265,51.065,4.3,90.83,18.9022222222,35.5261111111,22.5166666667,41.6022222222,18.0333333333,38.53,3.5,730.9333333333,96,5,51,2.9,23.0300925206,23.0300925206 -410,20,21.39,39.09,20.2,39.29,21.0666666667,39.43,19.6,39.2,18.235,50.9777777778,4.2633333333,91,18.9572222222,35.6877777778,22.6,41.6022222222,18.0333333333,38.53,3.5,730.95,96,5,54.5,2.9,39.9142507231,39.9142507231 -550,20,21.39,39.1266666667,20.2,39.29,21.1333333333,39.5,19.6,39.29,18.26,50.9666666667,4.2633333333,91.1266666667,19.0166666667,35.7811111111,22.6388888889,41.5561111111,18,38.5,3.5,730.9666666667,96,5,58,2.9,4.706660856,4.706660856 -500,20,21.4633333333,39.26,20.2,39.3633333333,21.2,39.5225,19.6,39.43,18.255,50.9438888889,4.19,91.14,19.1,35.8633333333,22.65,41.7127777778,18,38.5,3.5,730.9833333333,96,5,61.5,2.9,47.8666166309,47.8666166309 -550,10,21.5,40.745,20.2,39.4633333333,21.26,39.7233333333,19.6,39.6566666667,18.21,50.8816666667,4.19,91.19,19.1111111111,35.9,22.6,41.9688888889,18,38.5,3.5,731,96,5,65,2.9,10.6563728652,10.6563728652 -140,10,21.6333333333,44.1333333333,20.26,39.9233333333,21.3233333333,40.1333333333,19.6,40.0633333333,18.235,50.98,4.19,91.19,19.1277777778,35.9388888889,22.6,42.3727777778,18,38.5,3.5,731.0333333333,96,4.8333333333,64.8333333333,2.9,20.5219943658,20.5219943658 -80,10,21.9,45.1333333333,20.39,41.1966666667,21.4633333333,40.86,19.5333333333,41.1966666667,18.28,51.28,4.19,91.26,19.1055555556,35.8233333333,22.6,42.2944444444,18,38.5,3.5,731.0666666667,96,4.6666666667,64.6666666667,2.9,34.2616126873,34.2616126873 -90,10,22.1333333333,43.9966666667,20.39,41.99,21.4633333333,41.0266666667,19.6,42.3233333333,18.24,51.5672222222,4.19,91.3333333333,19.1,35.645,22.6,42.225,18,38.5,3.5,731.1,96,4.5,64.5,2.9,27.1803261829,27.1803261829 -120,30,22.2,43.53,20.5,42.06,21.39,40.9,19.6,43,18.26,51.7983333333,4.19,91.3,19.1,35.4983333333,22.6,42.5161111111,18,38.5,3.5,731.1333333333,96,4.3333333333,64.3333333333,2.9,8.5321138147,8.5321138147 -120,10,22.1666666667,42.6233333333,20.5,42,21.39,41.2,19.6,43.46,18.255,51.8988888889,4.19,91.3,19.05,35.345,22.6,42.6694444444,17.9266666667,38.5,3.5,731.1666666667,96,4.1666666667,64.1666666667,2.9,35.2397529874,35.2397529874 -90,10,22.1,42.03,20.5,41.6633333333,21.39,41.2,19.7,43.4966666667,18.255,51.9611111111,4.1566666667,91.4,19,35.255,22.6222222222,42.5072222222,17.9266666667,38.5,3.5,731.2,96,4,64,2.9,34.5649648225,34.5649648225 -80,0,22.1,41.6333333333,20.5,41.53,21.5,41.2233333333,19.675,42.6175,18.265,51.9722222222,4.09,91.4,19,35.2,22.5722222222,42.1622222222,17.89,38.5,3.4666666667,731.25,96.1666666667,4,62.3333333333,2.9,26.5395303955,26.5395303955 -80,0,22.1,41.36,20.6,41.79,21.5,41.03,19.6,41.9266666667,18.23,51.9333333333,4.09,91.4,18.9877777778,35.1327777778,22.4572222222,41.7311111111,17.89,38.5,3.4333333333,731.3,96.3333333333,4,60.6666666667,2.9,44.6455015452,44.6455015452 -80,0,22.2,41.1333333333,20.675,41.74,21.5,41,19.6,41.43,18.27,51.9777777778,4.09,91.4666666667,18.9694444444,35.045,22.3622222222,41.3555555556,17.89,38.5,3.4,731.35,96.5,4,59,2.9,16.1055437289,16.1055437289 -70,0,22.2,40.9333333333,20.7,41.59,21.5,40.9333333333,19.5333333333,41.0966666667,18.265,51.9433333333,4.06,91.4666666667,18.9022222222,35,22.285,41.155,17.89,38.5,3.3666666667,731.4,96.6666666667,4,57.3333333333,2.9,41.4125947747,41.4125947747 -80,0,22.29,40.76,20.73,41.4,21.5,40.9,19.5,40.76,18.26,51.8877777778,4,91.4,18.89,35,22.21,40.7683333333,17.89,38.5,3.3333333333,731.45,96.8333333333,4,55.6666666667,2.9,38.9080234803,38.9080234803 -70,0,22.29,40.6266666667,20.79,41.4,21.5,40.9,19.5,40.5666666667,18.27,51.9,4,91.5,18.89,34.9944444444,22.1388888889,40.5933333333,17.89,38.5,3.3,731.5,97,4,54,2.9,4.5982714277,4.5982714277 -60,0,22.29,40.56,20.8233333333,41.23,21.5,40.79,19.4633333333,40.3333333333,18.215,51.8033333333,4,91.5,18.89,34.9333333333,22.0888888889,40.46,17.89,38.5,3.2666666667,731.55,97.1666666667,3.8333333333,53,2.8833333333,47.6264162455,47.6264162455 -80,0,22.3566666667,40.36,20.89,41.29,21.5,40.79,19.39,40.1266666667,18.235,51.765,4,91.56,18.89,34.9222222222,22.0277777778,40.3155555556,17.89,38.5,3.2333333333,731.6,97.3333333333,3.6666666667,52,2.8666666667,27.5256350054,27.5256350054 -80,0,22.39,40.2,20.89,41.23,21.5,40.7,19.39,39.9666666667,18.24,51.705,3.975,91.5675,18.89,34.9,21.9877777778,40.1794444444,17.8233333333,38.5,3.2,731.65,97.5,3.5,51,2.85,40.9161404474,40.9161404474 -80,0,22.39,40.2,20.8233333333,41.23,21.5,40.6266666667,19.39,39.9,18.24,51.7,3.9,91.59,18.8288888889,34.8327777778,21.8961111111,40.035,17.8233333333,38.5,3.1666666667,731.7,97.6666666667,3.3333333333,50,2.8333333333,25.1977798529,25.1977798529 -70,0,22.3566666667,40.09,20.79,41.2,21.5,40.56,19.3566666667,39.76,18.23,51.6327777778,3.9,91.69,18.8011111111,34.775,21.84,39.95,17.79,38.5,3.1333333333,731.75,97.8333333333,3.1666666667,49,2.8166666667,35.4654533206,35.4654533206 -80,0,22.29,40.03,20.79,41.2,21.5,40.5,19.29,39.6266666667,18.25,51.59,3.9,91.6233333333,18.8233333333,34.73,21.79,39.8083333333,17.79,38.5,3.1,731.8,98,3,48,2.8,40.862861264,40.862861264 -70,0,22.29,40,20.76,41.1633333333,21.5,40.4333333333,19.29,39.56,18.275,51.585,3.79,91.59,18.8066666667,34.715,21.79,39.79,17.84,38.5,3.0833333333,731.8666666667,98,2.8333333333,46.1666666667,2.7833333333,5.4651590995,5.4651590995 -60,20,22.2675,39.8975,20.7,41.03,21.39,40.26,19.29,39.5,18.235,51.51,3.79,91.59,18.7955555556,34.71,21.775,39.76,17.8233333333,38.5,3.0666666667,731.9333333333,98,2.6666666667,44.3333333333,2.7666666667,32.461018546,32.461018546 -30,10,22.2,39.79,20.7,40.9666666667,21.39,40.2,19.29,39.7633333333,18.235,51.535,3.76,91.69,18.8066666667,35.045,21.7,39.8983333333,17.8233333333,38.5,3.05,732,98,2.5,42.5,2.75,21.4276597835,21.4276597835 -40,10,22.1666666667,39.9333333333,20.6333333333,40.6333333333,21.39,40.29,19.29,40.3633333333,18.2,51.6205555556,3.7,91.69,18.9461111111,35.9588888889,21.71,40.9233333333,17.89,39.3,3.0333333333,732.0666666667,98,2.3333333333,40.6666666667,2.7333333333,4.7681874712,4.7681874712 -30,10,22.1,40.06,20.5,40.29,21.39,40.3633333333,19.29,40.5666666667,18.2,51.6755555556,3.7,91.69,19,36.2327777778,21.775,41.8972222222,17.89,40.16,3.0166666667,732.1333333333,98,2.1666666667,38.8333333333,2.7166666667,4.1472538491,4.1472538491 -40,0,22.1,40.06,20.5,40.3633333333,21.39,40.53,19.29,40.7,18.2,51.71,3.7,91.69,19.0611111111,36.5183333333,21.79,42.6822222222,18,40.7666666667,3,732.2,98,2,37,2.7,18.3773096418,18.3773096418 -70,10,22.0333333333,39.9333333333,20.39,40.4333333333,21.39,40.59,19.29,40.8266666667,18.2,51.785,3.7,91.7266666667,19.0777777778,36.745,21.79,43.2383333333,18,41.0266666667,2.9833333333,732.3166666667,98,2,36,2.6833333333,26.2295746943,26.2295746943 -60,0,21.9633333333,39.9,20.3233333333,40.56,21.39,40.59,19.2675,40.8725,18.2,51.8205555556,3.7,91.8,19.1,36.79,21.79,43.7211111111,18,41.3266666667,2.9666666667,732.4333333333,98,2,35,2.6666666667,43.5084298486,43.5084298486 -70,10,21.89,39.9,20.26,40.59,21.39,40.59,19.2,40.8633333333,18.2,51.9,3.59,91.69,19.1,36.8144444444,21.79,44.0888888889,18,41.5266666667,2.95,732.55,98,2,34,2.65,5.805244029,5.805244029 -40,10,21.8566666667,39.9,20.175,40.6725,21.39,40.59,19.2,40.9,18.2,51.95,3.6633333333,91.7633333333,19.0777777778,36.7761111111,21.79,44.3588888889,18,41.7,2.9333333333,732.6666666667,98,2,33,2.6333333333,41.2518122932,41.2518122932 -60,0,21.79,39.9,20.1,40.7,21.39,40.59,19.2,40.9666666667,18.1777777778,51.9777777778,3.59,91.7266666667,19.1,36.9155555556,21.79,44.545,18,41.8333333333,2.9166666667,732.7833333333,98,2,32,2.6166666667,44.4106845418,44.4106845418 -50,10,21.79,39.9,20.1,40.79,21.39,40.59,19.2,41,18.2,52,3.53,91.9333333333,19.1,37.0733333333,21.79,44.7166666667,18,41.9333333333,2.9,732.9,98,2,31,2.6,48.3209780301,48.3209780301 -50,0,21.79,39.9,20.0333333333,40.73,21.39,40.59,19.2,41.06,18.2,52.015,3.4666666667,92.1566666667,19.1,37.2755555556,21.79,44.79,18,42.1333333333,2.8666666667,732.95,98.1666666667,2.1666666667,28.5,2.6,33.3393592504,33.3393592504 -60,10,21.7,39.9333333333,19.89,40.79,21.39,40.53,19.2,41.09,18.2,52.09,3.4,92.165,19.1,37.4611111111,21.735,44.8738888889,18,42.36,2.8333333333,733,98.3333333333,2.3333333333,26,2.6,8.1681147916,8.1681147916 -40,0,21.6333333333,39.86,19.89,40.79,21.39,40.59,19.2,41.09,18.1888888889,52.09,3.4,92.19,19.1,37.545,21.7,45.045,18,42.6333333333,2.8,733.05,98.5,2.5,23.5,2.6,16.1975093535,16.1975093535 -60,10,21.6,39.9,19.79,40.79,21.39,40.59,19.1,41.09,18.1611111111,52.09,3.4,92.19,19.1,37.6572222222,21.74,45.1722222222,18,42.86,2.7666666667,733.1,98.6666666667,2.6666666667,21,2.6,12.559574272,12.559574272 -60,10,21.6,39.9,19.79,40.79,21.39,40.53,19.1,41.09,18.1111111111,52.09,3.4,92.19,19.1,37.715,21.7,45.3205555556,18,43.06,2.7333333333,733.15,98.8333333333,2.8333333333,18.5,2.6,45.635239,45.635239 -60,0,21.5,39.9,19.7,40.9,21.4266666667,40.53,19.1,41.09,18.1277777778,52.09,3.3266666667,92.3,19.1,37.7983333333,21.755,45.5383333333,18,43.23,2.7,733.2,99,3,16,2.6,17.7039904054,17.7039904054 -50,0,21.5,39.9,19.7,40.8266666667,21.445,40.5725,19.1,41.1633333333,18.1055555556,52.1144444444,3.4,92.3,19.1,37.95,21.725,45.67,18,43.3633333333,2.7,733.2166666667,99,2.8333333333,16.5,2.6,18.6839511269,18.6839511269 -50,0,21.39,39.79,19.6666666667,40.8633333333,21.5,40.7,19,41.09,18.1,52.1266666667,3.29,92.3333333333,19.1,38.04,21.73,46.0427777778,18.05,43.645,2.7,733.2333333333,99,2.6666666667,17,2.6,42.0108948252,42.0108948252 -60,0,21.39,39.79,19.6,40.8633333333,21.5,40.7,19,41.1633333333,18.1,52.1022222222,3.29,92.4,19.1,38,21.71,46.5772222222,18.1,43.9333333333,2.7,733.25,99,2.5,17.5,2.6,6.7120995722,6.7120995722 -50,0,21.39,39.79,19.5666666667,40.9333333333,21.5,40.7,19,41.2,18.1,52.09,3.29,92.4333333333,19.1,38.015,21.71,47.0838888889,18.1,44.06,2.7,733.2666666667,99,2.3333333333,18,2.6,27.0339307841,27.0339307841 -50,0,21.29,39.79,19.5,41,21.5,40.79,19,41.2,18.1,52.1144444444,3.23,92.4333333333,19.1,38.09,21.735,47.3877777778,18.1,44.23,2.7,733.2833333333,99,2.1666666667,18.5,2.6,25.7622874575,25.7622874575 -50,0,21.29,39.79,19.5,41.03,21.4266666667,40.73,19,41.2,18.1,52.1022222222,3.2,92.4,19.1277777778,38.2027777778,21.765,47.3083333333,18.1,44.3633333333,2.7,733.3,99,2,19,2.6,46.54776596,46.54776596 -60,0,21.26,39.79,19.4266666667,41.03,21.4266666667,40.73,19,41.2,18.1,52.1022222222,3.2,92.4,19.1555555556,38.3633333333,21.73,47.3022222222,18.1,44.5,2.7,733.3666666667,98.8333333333,2,22.1666666667,2.5666666667,38.5747414897,38.5747414897 -50,0,21.2,39.79,19.39,41.03,21.4266666667,40.73,18.9633333333,41.2,18.1,52.09,3.2,92.4,19.1888888889,38.4,21.72,47.3805555556,18.1,44.56,2.7,733.4333333333,98.6666666667,2,25.3333333333,2.5333333333,35.6138442294,35.6138442294 -60,0,21.2,39.79,19.39,41.09,21.5,40.73,18.945,41.2,18.1,52.1144444444,3.2,92.4666666667,19.1777777778,38.4,21.7,47.3805555556,18.1,44.73,2.7,733.5,98.5,2,28.5,2.5,3.9190580836,3.9190580836 -70,0,21.1333333333,39.8633333333,19.3566666667,41.2,21.5,40.79,18.89,41.2,18.0888888889,52.08,3.2,92.5,19.2,38.4883333333,21.6166666667,47.1966666667,18.1,44.79,2.7,733.5666666667,98.3333333333,2,31.6666666667,2.4666666667,27.8319047415,27.8319047415 -40,0,21.1,39.9,19.29,41.26,21.5,40.7,18.89,41.2,18.0888888889,52.08,3.2,92.5,19.2,38.6105555556,21.6,47.09,18.1,44.9,2.7,733.6333333333,98.1666666667,2,34.8333333333,2.4333333333,10.2191807004,10.2191807004 -30,0,21.1,39.9,19.29,41.245,21.5,40.76,18.89,41.2,18.0833333333,52.075,3.2,92.4,19.2,38.715,21.5944444444,47.1416666667,18.1666666667,44.9666666667,2.7,733.7,98,2,38,2.4,48.317523906,48.317523906 -30,0,21.0666666667,39.9,19.2,41.23,21.39,40.73,18.89,41.2,18.0944444444,52.085,3.2,92.475,19.2,38.79,21.5333333333,47.4277777778,18.1333333333,45,2.7,733.7833333333,97.8333333333,2,37.8333333333,2.3833333333,43.3432609541,43.3432609541 -40,0,21,39.9,19.2,41.29,21.39,40.79,18.89,41.2,18.1,52.045,3.2,92.4333333333,19.2,38.7961111111,21.5555555556,47.4555555556,18.1333333333,45,2.7,733.8666666667,97.6666666667,2,37.6666666667,2.3666666667,34.8954813089,34.8954813089 -60,0,21,39.9333333333,19.1,41.3266666667,21.39,40.8266666667,18.89,41.29,18.0666666667,51.9866666667,3.2,92.4,19.2,38.8877777778,21.5333333333,47.525,18.1,45,2.7,733.95,97.5,2,37.5,2.35,14.2484628363,14.2484628363 -60,0,21,40,19.1,41.4,21.3233333333,40.9,18.89,41.29,18.0888888889,52.0088888889,3.2,92.4666666667,19.2,38.9833333333,21.5,47.7627777778,18.1666666667,45.06,2.7,734.0333333333,97.3333333333,2,37.3333333333,2.3333333333,37.7745922655,37.7745922655 -60,0,20.89,40,19.0666666667,41.4,21.39,40.9,18.8566666667,41.26,18.0611111111,51.9611111111,3.29,92.53,19.2,39,21.5,47.8083333333,18.1666666667,45.09,2.7,734.1166666667,97.1666666667,2,37.1666666667,2.3166666667,47.2876141313,47.2876141313 -70,0,20.89,40,19.0666666667,41.4666666667,21.39,40.9,18.79,41.2,18,51.9,3.23,92.4633333333,19.2,39,21.5,47.7961111111,18.1666666667,45.1633333333,2.7,734.2,97,2,37,2.3,25.5586461048,25.5586461048 -60,0,20.8566666667,40.06,19,41.4333333333,21.39,40.79,18.8566666667,41.26,18.0222222222,51.9222222222,3.26,92.4666666667,19.2,39,21.4877777778,47.7983333333,18.2,45.2,2.6666666667,734.2333333333,96.6666666667,2,40.1666666667,2.2166666667,40.9884770517,40.9884770517 -60,0,20.79,40,19,41.5,21.39,40.8725,18.79,41.2,18,51.9,3.2,92.4,19.2,39.02,21.4144444444,47.72,18.2,45.26,2.6333333333,734.2666666667,96.3333333333,2,43.3333333333,2.1333333333,21.7227112036,21.7227112036 -60,0,20.79,40.09,19,41.53,21.39,40.8266666667,18.79,41.2,18,51.9,3.1633333333,92.4,19.2,39,21.445,47.745,18.2,45.29,2.6,734.3,96,2,46.5,2.05,30.6278639007,30.6278639007 -50,0,20.79,40.09,19,41.59,21.39,40.79,18.79,41.2,18,51.9,3.09,92.4666666667,19.2,38.9833333333,21.39,47.755,18.2,45.3266666667,2.5666666667,734.3333333333,95.6666666667,2,49.6666666667,1.9666666667,11.7721988587,11.7721988587 -50,0,20.76,40.09,18.9633333333,41.59,21.39,40.8633333333,18.79,41.2,18,51.9,3.09,92.4666666667,19.2,38.845,21.39,47.78,18.2,45.4,2.5333333333,734.3666666667,95.3333333333,2,52.8333333333,1.8833333333,17.9197404068,17.9197404068 -50,0,20.7,40.1725,18.89,41.6633333333,21.39,40.8266666667,18.79,41.2,18,51.9,3.09,92.4,19.2,38.8383333333,21.3733333333,47.71,18.2,45.4,2.5,734.4,95,2,56,1.8,4.9975554459,4.9975554459 -60,0,20.7,40.2,18.89,41.6266666667,21.39,40.9,18.79,41.1633333333,18,51.845,3,92.3,19.2,38.9888888889,21.3233333333,47.78,18.2,45.4,2.5,734.45,95.1666666667,2.1666666667,54.8333333333,1.8166666667,10.2989619831,10.2989619831 -60,0,20.6666666667,40.1633333333,18.8233333333,41.5666666667,21.39,40.9,18.79,41.1633333333,18,51.8572222222,2.9333333333,92.3,19.2,39.015,21.3233333333,47.7088888889,18.2,45.4,2.5,734.5,95.3333333333,2.3333333333,53.6666666667,1.8333333333,20.5913292244,20.5913292244 -60,0,20.6,40.09,18.79,41.53,21.39,40.8266666667,18.79,41.2,18,51.8572222222,2.9,92.3,19.2,39.09,21.29,47.6022222222,18.2,45.4,2.5,734.55,95.5,2.5,52.5,1.85,27.603222616,27.603222616 -60,0,20.6,40.2,18.79,41.53,21.39,40.8633333333,18.79,41.1175,18,51.8144444444,2.9,92.3,19.2,39.1572222222,21.29,47.555,18.2,45.4,2.5,734.6,95.6666666667,2.6666666667,51.3333333333,1.8666666667,25.5448631011,25.5448631011 -50,0,20.6,40.2,18.79,41.5,21.39,40.79,18.73,41.09,17.9877777778,51.8144444444,2.9,92.3,19.2,39.2,21.29,47.45,18.2,45.4,2.5,734.65,95.8333333333,2.8333333333,50.1666666667,1.8833333333,29.2476313305,29.2476313305 -60,0,20.5666666667,40.2,18.79,41.5,21.39,40.79,18.7,41.09,17.9572222222,51.8022222222,2.9,92.2633333333,19.2,39.1938888889,21.29,47.3816666667,18.2,45.4,2.5,734.7,96,3,49,1.9,48.3098642668,48.3098642668 -40,0,20.5,40.2,18.7,41.5,21.39,40.79,18.7,41.09,17.9144444444,51.8266666667,2.9,92.19,19.2,39.1022222222,21.29,47.245,18.2,45.4,2.4833333333,734.75,96.1666666667,2.8333333333,47.8333333333,1.9166666667,34.3971392023,34.3971392023 -50,0,20.5,40.23,18.7,41.5,21.4266666667,40.8266666667,18.7,41.09,17.9144444444,51.79,2.79,92.1233333333,19.2,39.09,21.26,47.1027777778,18.2,45.4,2.4666666667,734.8,96.3333333333,2.6666666667,46.6666666667,1.9333333333,44.0341890324,44.0341890324 -50,0,20.5,40.29,18.7,41.5,21.5,40.9,18.7,41.09,17.945,51.79,2.79,92.1233333333,19.2,39.09,21.25,46.9966666667,18.2,45.4666666667,2.45,734.85,96.5,2.5,45.5,1.95,34.9535109825,34.9535109825 -50,0,20.5,40.29,18.6333333333,41.53,21.5,40.8633333333,18.7,41.03,17.9755555556,51.79,2.76,92.09,19.2,39.0961111111,21.225,46.9327777778,18.2,45.5,2.4333333333,734.9,96.6666666667,2.3333333333,44.3333333333,1.9666666667,18.0401888909,18.0401888909 -70,0,20.4266666667,40.23,18.7,41.53,21.4266666667,40.73,18.7,41.03,17.9877777778,51.79,2.7,92.09,19.2,39.1633333333,21.2,46.9,18.2,45.5,2.4166666667,734.95,96.8333333333,2.1666666667,43.1666666667,1.9833333333,43.2804847835,43.2804847835 -50,0,20.39,40.23,18.6,41.5,21.39,40.76,18.6666666667,41,17.9205555556,51.79,2.59,92,19.2,39.2,21.2,46.8877777778,18.2,45.5,2.4,735,97,2,42,2,41.2397539592,41.2397539592 -40,0,20.39,40.29,18.6,41.5,21.4633333333,40.8333333333,18.6666666667,41.06,17.9511111111,51.79,2.59,92,19.2,39.2,21.15,46.8572222222,18.2,45.56,2.4,735.0666666667,97,1.8333333333,41.3333333333,2,34.7154333489,34.7154333489 -40,0,20.29,40.29,18.6,41.4666666667,21.39,40.7,18.6,41,17.9022222222,51.79,2.59,92.06,19.2,39.2,21.1611111111,46.79,18.2,45.5,2.4,735.1333333333,97,1.6666666667,40.6666666667,2,6.944286311,6.944286311 -30,0,20.29,40.29,18.6,41.4,21.39,40.745,18.6,41,17.89,51.79,2.59,92,19.2,39.245,21.1444444444,46.765,18.2,45.5,2.4,735.2,97,1.5,40,2,5.4548005923,5.4548005923 -60,0,20.29,40.29,18.5,41.5,21.3233333333,40.76,18.6,41,17.89,51.79,2.59,92,19.2,39.2961111111,21.1055555556,46.6816666667,18.2,45.5,2.4,735.2666666667,97,1.3333333333,39.3333333333,2,27.3840880254,27.3840880254 -50,20,20.29,40.29,18.5,41.5,21.29,40.8266666667,18.6,41,17.9144444444,51.765,2.59,92,19.2,39.3083333333,21.1,46.59,18.2,45.6633333333,2.4,735.3333333333,97,1.1666666667,38.6666666667,2,13.7805145001,13.7805145001 -60,0,20.29,40.4333333333,18.4633333333,41.7,21.23,40.7666666667,18.6,40.9633333333,17.89,51.7116666667,2.6266666667,92.03,19.2,39.19,21.0944444444,46.5583333333,18.2,45.53,2.4,735.4,97,1,38,2,34.0725562419,34.0725562419 -140,0,20.2225,40.4725,18.4633333333,41.76,21.1666666667,40.56,18.6666666667,40.89,17.89,51.5244444444,2.7,92.09,19.1277777778,38.7377777778,21.0833333333,46.1977777778,18.2,45.1933333333,2.4166666667,735.4666666667,97,1,37.5,2,42.89502881,42.89502881 -60,0,20.2,40.7233333333,18.4633333333,41.6633333333,21.1,40.36,18.6,40.43,17.89,51.2572222222,2.73,92.19,19.1,38.4477777778,21.0166666667,45.7066666667,18.2,44.86,2.4333333333,735.5333333333,97,1,37,2,2.2405815194,2.2405815194 -60,0,20.2,40.9,18.4633333333,41.59,21.1,40.26,18.6,40.23,17.89,51.0366666667,2.79,92.19,19.0722222222,38.2116666667,21,45.3005555556,18.2,44.49,2.45,735.6,97,1,36.5,2,12.9504165961,12.9504165961 -60,10,20.2,41.0266666667,18.4633333333,41.6633333333,21.1,40.1266666667,18.6,40.145,17.89,50.845,2.9,92.3,19,37.9305555556,21,44.99,18.2,44.1566666667,2.4666666667,735.6666666667,97,1,36,2,44.175384345,44.175384345 -100,20,20.2,40.9,18.4633333333,41.59,21.0666666667,40.09,18.6,40.2266666667,17.9022222222,50.6672222222,3,92.2266666667,19,37.745,20.9205555556,44.7572222222,18.2,43.7966666667,2.4833333333,735.7333333333,97,1,35.5,2,38.2151376572,38.2151376572 -430,30,20.2,40.9,18.39,41.4666666667,21.0666666667,40.09,18.7933333333,40.7666666667,17.9022222222,50.53,3,92.2266666667,19,37.6938888889,20.89,44.5366666667,18.2,43.53,2.5,735.8,97,1,35,2,12.2894666507,12.2894666507 -90,20,20.2,40.9,18.39,41.4,21,39.9666666667,19.4266666667,40.9666666667,17.89,50.3983333333,3.09,92.3,19,37.5922222222,20.8788888889,44.3877777778,18.2,43.1933333333,2.5333333333,735.8833333333,96.6666666667,1.1666666667,35.1666666667,2,18.4612206649,18.4612206649 -80,20,20.2,40.9,18.39,41.4,21,39.9,20.0333333333,40.8266666667,17.89,50.265,3.09,92.3,18.9511111111,37.5861111111,20.8511111111,44.265,18.2,42.9333333333,2.5666666667,735.9666666667,96.3333333333,1.3333333333,35.3333333333,2,1.7556254286,1.7556254286 -100,30,20.2,40.7233333333,18.39,41.2,21,39.79,20.6966666667,40.56,17.89,50.1694444444,3.09,92.3,18.9755555556,37.7633333333,20.8177777778,44.1305555556,18.1666666667,42.6633333333,2.6,736.05,96,1.5,35.5,2,45.0314876158,45.0314876158 -110,40,20.2,40.53,18.39,41.1266666667,21,39.73,20.9633333333,40.0266666667,17.89,50.1022222222,3.1633333333,92.3666666667,19,37.8338888889,20.7955555556,44.0611111111,18.1666666667,42.59,2.6333333333,736.1333333333,95.6666666667,1.6666666667,35.6666666667,2,5.349473306,5.349473306 -100,30,20.2,40.4666666667,18.39,41.23,21,39.7,20.9633333333,39.6333333333,17.89,50.035,3.23,92.4333333333,18.9694444444,37.5294444444,20.79,44,18.2,42.6333333333,2.6666666667,736.2166666667,95.3333333333,1.8333333333,35.8333333333,2,22.9032657691,22.9032657691 -110,40,20.2,40.5266666667,18.39,41.3633333333,21,39.7,20.8233333333,39.5,17.8788888889,49.9888888889,3.3633333333,92.5,18.89,37.23,20.79,43.9833333333,18.1333333333,42.4333333333,2.7,736.3,95,2,36,2,1.2187969871,1.2187969871 -100,40,20.1666666667,40.59,18.39,41.4,20.89,39.59,20.79,39.79,17.8788888889,49.8994444444,3.4333333333,92.53,18.89,36.9822222222,20.79,43.8694444444,18.1333333333,42.2233333333,2.7,736.4,95,2.1666666667,37,1.9833333333,22.7129326435,22.7129326435 -90,30,20.1666666667,40.59,18.39,41.4666666667,20.89,39.6633333333,20.73,39.73,17.89,49.8266666667,3.56,92.59,18.89,36.7933333333,20.77,43.735,18.2,42.03,2.7,736.5,95,2.3333333333,38,1.9666666667,17.0078137773,17.0078137773 -70,40,20.1,40.59,18.39,41.5,20.89,39.6633333333,20.6,39.56,17.89,49.735,3.6633333333,92.6566666667,18.8622222222,36.62,20.77,43.6877777778,18.1,41.8333333333,2.7,736.6,95,2.5,39,1.95,16.8749392382,16.8749392382 -40,30,20.1666666667,40.6633333333,18.39,41.56,20.89,39.545,20.6,39.4333333333,17.8177777778,49.6205555556,3.53,92.59,18.8733333333,36.6666666667,20.72,43.6633333333,18.1,41.57,2.7,736.7,95,2.6666666667,40,1.9333333333,39.7771188756,39.7771188756 -60,40,20.2,40.7,18.39,41.5,20.8233333333,39.53,20.5666666667,39.5,17.8288888889,49.59,3.5,92.59,18.945,36.745,20.735,43.745,18.1,41.3266666667,2.7,736.8,95,2.8333333333,41,1.9166666667,5.1822748617,5.1822748617 -320,20,20.1333333333,40.7,18.39,41.56,20.79,39.5,20.5,39.4333333333,17.8288888889,49.535,3.6333333333,92.59,19,36.8083333333,20.73,43.7761111111,18.1,41.1633333333,2.7,736.9,95,3,42,1.9,14.3604166922,14.3604166922 -400,20,20.1,40.6633333333,18.39,41.5,20.73,39.5,20.4633333333,39.29,17.8288888889,49.4988888889,3.6633333333,92.56,19.0277777778,36.9972222222,20.745,43.8877777778,18.1,41.03,2.75,737,95,2.8333333333,43.1666666667,1.9666666667,26.6989815864,26.6989815864 -200,20,20.1,40.59,18.39,41.5,20.6666666667,39.3333333333,20.39,39.23,17.8066666667,49.4166666667,3.53,92.4333333333,19.1,37.09,20.76,44.0333333333,18.0333333333,40.8266666667,2.8,737.1,95,2.6666666667,44.3333333333,2.0333333333,5.4972816259,5.4972816259 -100,10,20.1,40.7233333333,18.39,41.4,20.6,39.26,20.29,39.0266666667,17.79,49.4,3.45,92.295,19.1,37.045,20.745,43.8677777778,18.1,40.8266666667,2.85,737.2,95,2.5,45.5,2.1,27.1325459238,27.1325459238 -120,10,20.2,40.8633333333,18.4633333333,41.4666666667,20.6666666667,39.4,20.23,38.8266666667,17.79,49.3816666667,3.4333333333,92.2933333333,19.1,37.1088888889,20.705,43.5155555556,18.0333333333,40.53,2.9,737.3,95,2.3333333333,46.6666666667,2.1666666667,18.4673378826,18.4673378826 -120,10,20.2,40.8633333333,18.5,41.3633333333,20.6666666667,39.5266666667,20.1,38.845,17.7955555556,49.2922222222,3.6333333333,92.56,19.1,37.1866666667,20.76,43.3805555556,18.0333333333,40.4633333333,2.95,737.4,95,2.1666666667,47.8333333333,2.2333333333,48.8443808747,48.8443808747 -70,0,20.23,40.9333333333,18.5666666667,41.29,20.7,39.59,20,38.8333333333,17.8066666667,49.215,3.6633333333,92.4333333333,19.1166666667,37.7905555556,20.8733333333,42.9016666667,18.0333333333,40.29,3,737.5,95,2,49,2.3,25.1231632777,25.1231632777 -100,10,20.29,41,18.7,41.53,20.6333333333,39.39,19.9266666667,38.6266666667,17.8177777778,49.225,3.53,92.3,19.225,38.17,20.8177777778,42.3827777778,18.0333333333,40.23,3.05,737.55,94,2.1666666667,51.6666666667,2.2,4.4426706852,4.4426706852 -90,10,20.29,41.09,18.76,41.59,20.5,39.53,19.8566666667,38.5266666667,17.8177777778,49.1966666667,3.56,92.3,19.29,38.2088888889,20.7955555556,42.5061111111,18,40.06,3.1,737.6,93,2.3333333333,54.3333333333,2.1,29.8687708913,29.8687708913 -100,10,20.29,41.2233333333,18.79,41.45,20.5,39.6633333333,19.79,38.5266666667,17.8288888889,49.1694444444,3.5,92.3,19.28,38.0461111111,20.8566666667,42.7083333333,18,40,3.15,737.65,92,2.5,57,2,12.217021978,12.217021978 -120,10,20.3233333333,41.26,18.89,41.4,20.5,39.8266666667,19.7,38.4666666667,17.8066666667,49.145,3.6266666667,92.3333333333,19.225,37.7772222222,20.9572222222,42.8572222222,18,39.9,3.2,737.7,91,2.6666666667,59.6666666667,1.9,33.638373646,33.638373646 -270,10,20.4633333333,43.3333333333,18.9633333333,41.4666666667,20.5,40.0266666667,19.7,38.4666666667,17.8288888889,49.1377777778,3.7,92.3333333333,19.2,37.5772222222,21.0722222222,42.9,18,39.8266666667,3.25,737.75,90,2.8333333333,62.3333333333,1.8,0.0597675098,0.0597675098 -210,10,20.6666666667,43.3633333333,19.0333333333,41.9266666667,20.5,40.29,19.6666666667,38.3633333333,17.8344444444,49.23,3.9,92.33,19.2,37.4327777778,21.1,42.9,18,39.7,3.3,737.8,89,3,65,1.7,20.1610634453,20.1610634453 -240,0,20.6666666667,45.0966666667,19.1,42.2,20.5,40.3633333333,19.6,38.23,17.8177777778,49.23,3.9,91.9966666667,19.2,37.2772222222,21.1,42.9,18,39.7,3.3166666667,737.9333333333,88.8333333333,3,64.8333333333,1.6833333333,45.2832136187,45.2832136187 -90,0,20.73,45.6933333333,19.1333333333,42.23,20.6,41.23,19.5666666667,38.2,17.79,49.335,3.9,91.6333333333,19.22,36.9688888889,21.1761111111,42.8327777778,18,39.73,3.3333333333,738.0666666667,88.6666666667,3,64.6666666667,1.6666666667,23.476857529,23.476857529 -100,10,20.8566666667,45.8266666667,19.26,42.43,20.6,41.3633333333,19.5,38.2,17.79,49.4833333333,4.0266666667,91.6333333333,19.2,36.63,21.3177777778,42.7144444444,18,39.79,3.35,738.2,88.5,3,64.5,1.65,31.9313502172,31.9313502172 -100,10,21.0333333333,45.1333333333,19.3233333333,42.4666666667,20.6,41.5,19.5,38.09,17.8066666667,49.545,4.3,91.46,19.1388888889,36.3283333333,21.4083333333,42.55,18,39.79,3.3666666667,738.3333333333,88.3333333333,3,64.3333333333,1.6333333333,43.4645882575,43.4645882575 -80,20,21.1,44.6666666667,19.39,42.3266666667,20.625,41.6175,19.5,38.03,17.8177777778,49.59,4.3,90.7266666667,19.1,36.0461111111,21.5,42.645,18,39.7225,3.3833333333,738.4666666667,88.1666666667,3,64.1666666667,1.6166666667,39.4881951855,39.4881951855 -110,20,21.23,43.66,19.5,42.1633333333,20.7,41.79,19.39,37.9,17.8122222222,49.6144444444,4.19,89.8333333333,19.1,36.0694736842,21.5,42.8361111111,17.9266666667,39.6266666667,3.4,738.6,88,3,64,1.6,47.1516216989,47.1516216989 -100,20,21.29,43.1933333333,19.5666666667,42.03,20.73,41.86,19.39,37.9,17.8622222222,49.6633333333,4.115,89.025,19.1,36.2,21.55,42.8016666667,17.89,39.4666666667,3.3833333333,738.6833333333,88.1666666667,3,64,1.6,47.5004398031,47.5004398031 -100,20,21.3233333333,42.7233333333,19.6333333333,41.9,20.8566666667,42,19.39,37.9,17.8511111111,49.6388888889,4.1566666667,89,19.1736842105,36.2663157895,21.6,42.7733333333,17.89,39.4,3.3666666667,738.7666666667,88.3333333333,3,64,1.6,10.193725815,10.193725815 -100,20,21.39,42.33,19.7,41.8266666667,20.8566666667,41.6933333333,19.3233333333,37.8266666667,17.8011111111,49.565,4.19,88.2933333333,19.2,36.29,21.6722222222,43.0477777778,17.89,39.26,3.35,738.85,88.5,3,64,1.6,38.8222745154,38.8222745154 -100,20,21.39,41.85,19.73,41.56,20.79,41.4333333333,19.29,37.79,17.8622222222,49.565,4.2633333333,88.7,19.2,36.29,21.7,43.2211111111,17.89,39.2,3.3333333333,738.9333333333,88.6666666667,3,64,1.6,34.418080817,34.418080817 -100,20,21.4266666667,41.4,19.79,41.36,20.8233333333,41.29,19.29,37.79,17.8622222222,49.545,4.2633333333,87.9633333333,19.2,36.29,21.715,43.4827777778,17.89,39.09,3.3166666667,739.0166666667,88.8333333333,3,64,1.6,39.0032561612,39.0032561612 -100,20,21.5,41,19.79,41.0266666667,20.8233333333,41.1566666667,19.29,37.79,17.8011111111,49.4833333333,4.2633333333,88.09,19.2,36.1733333333,21.77,43.6722222222,17.8233333333,38.9633333333,3.3,739.1,89,3,64,1.6,25.3705356969,25.3705356969 -100,20,21.5,40.6633333333,19.8566666667,40.9,20.79,41.1566666667,19.29,37.8266666667,17.8233333333,49.4333333333,4.1566666667,87.56,19.2,35.9777777778,21.78,43.7344444444,17.89,38.9,3.2833333333,739.2333333333,89.3333333333,3.1666666667,64,1.65,18.70900254,18.70900254 -110,10,21.5,40.59,19.89,41.09,20.8566666667,41.29,19.29,38.1,17.8511111111,49.4388888889,4.09,87.56,19.1444444444,35.7722222222,21.79,43.4316666667,17.89,38.8266666667,3.2666666667,739.3666666667,89.6666666667,3.3333333333,64,1.7,45.3370337025,45.3370337025 -110,20,21.5,40.9,19.9633333333,41.03,20.89,41.1633333333,19.29,38.5966666667,17.8455555556,49.45,4.1566666667,87.1233333333,19.1,35.55,21.79,43.33,17.79,38.56,3.25,739.5,90,3.5,64,1.75,42.6548855845,42.6548855845 -110,20,21.5,41.1,20,40.69,20.89,41.03,19.29,39.1233333333,17.8566666667,49.3755555556,3.9633333333,87.33,19.1,35.4655555556,21.8511111111,43.4261111111,17.79,38.5,3.2333333333,739.6333333333,90.3333333333,3.6666666667,64,1.8,41.1937093362,41.1937093362 -110,10,21.5,40.9,20,40.5,20.89,40.9333333333,19.29,39.8,17.8677777778,49.3755555556,3.76,88.3266666667,19.1444444444,36.1522222222,21.89,43.065,17.79,38.5,3.2166666667,739.7666666667,90.6666666667,3.8333333333,64,1.85,9.9893174134,9.9893174134 -120,20,21.5,40.6266666667,20,40.5,20.89,41,19.29,40.1333333333,17.8677777778,49.3755555556,3.7,89.2666666667,19.2,36.7088888889,21.8844444444,42.4377777778,17.79,38.5,3.2,739.9,91,4,64,1.9,42.9542348138,42.9542348138 -110,20,21.5,40.4666666667,20,40.59,20.89,41,19.3233333333,40.4333333333,17.89,49.4055555556,3.7,89.93,19.26,37.6844444444,21.8011111111,42.0877777778,17.79,38.5,3.1166666667,740.05,91.3333333333,4,63.8333333333,1.85,26.0267988313,26.0267988313 -110,10,21.5,40.4,20,40.59,20.89,41.2666666667,19.39,40.56,17.8788888889,49.4388888889,3.7,90.4566666667,19.3566666667,37.9,21.79,42.3588888889,17.79,38.5,3.0333333333,740.2,91.6666666667,4,63.6666666667,1.8,19.0992683987,19.0992683987 -100,10,21.39,40.6633333333,20,40.7666666667,20.9633333333,41.4666666667,19.39,40.7,17.8788888889,49.4222222222,3.56,90.4966666667,19.29,37.2955555556,21.79,42.5755555556,17.79,38.5,2.95,740.35,92,4,63.5,1.75,46.916796884,46.916796884 -80,0,21.39,40.53,20,40.9666666667,20.89,41.4,19.39,40.76,17.89,49.4222222222,3.4333333333,90.6233333333,19.2,36.6977777778,21.8733333333,42.72,17.79,38.4333333333,2.8666666667,740.5,92.3333333333,4,63.3333333333,1.7,42.5964281661,42.5964281661 -110,10,21.39,40.5,19.89,40.9666666667,20.79,41.4333333333,19.39,40.79,17.89,49.4,3.4,90.8666666667,19.1777777778,36.4088888889,21.89,42.725,17.79,38.29,2.7833333333,740.65,92.6666666667,4,63.1666666667,1.65,43.0382670718,43.0382670718 -100,10,21.39,40.5,19.89,40.7666666667,20.79,41.475,19.39,40.8633333333,17.89,49.3694444444,3.4,91.195,19.2,36.5,21.8961111111,42.9872222222,17.79,38.29,2.7,740.8,93,4,63,1.6,38.0440771696,38.0440771696 -110,10,21.3566666667,40.5,19.8566666667,40.49,20.79,41.4,19.3566666667,40.86,17.8788888889,49.28,3.4,91.4,19.2,36.4526315789,21.9877777778,43.4711111111,17.79,38.23,2.7333333333,740.9333333333,93,4,63,1.65,0.1055084867,0.1055084867 -100,20,21.29,40.5,19.79,40.29,20.8566666667,41.5266666667,19.3566666667,40.86,17.8511111111,49.255,3.3266666667,91.5,19.2,36.4,22,43.7088888889,17.76,38.2,2.7666666667,741.0666666667,93,4,63,1.7,5.107394373,5.107394373 -90,10,21.26,40.26,19.76,40.29,20.79,41.4666666667,19.29,40.6633333333,17.8622222222,49.1877777778,3.3266666667,91.56,19.2,36.4,22,43.9044444444,17.7,38.1266666667,2.8,741.2,93,4,63,1.75,21.0975419031,21.0975419031 -160,20,21.2,40.26,19.6333333333,40.23,20.89,41.9,19.29,40.53,17.8455555556,49.1511111111,3.29,91.56,19.2,36.4,22.0833333333,44.0761111111,17.7,38.09,2.8333333333,741.3333333333,93,4,63,1.8,8.7823055452,8.7823055452 -120,20,21.1666666667,40.5266666667,19.5666666667,40.29,20.8233333333,41.6333333333,19.29,40.3333333333,17.8233333333,49.0461111111,3.1566666667,91.3666666667,19.235,36.4388888889,22.1,44.0922222222,17.7,38.09,2.8666666667,741.4666666667,93,4,63,1.85,40.2157422854,40.2157422854 -100,20,21.1,40.35,19.5666666667,40.43,20.76,41.4333333333,19.29,40.0666666667,17.8066666667,49.015,3,91.09,19.29,36.535,22.1222222222,43.8961111111,17.7,38,2.9,741.6,93,4,63,1.9,45.7609083503,45.7609083503 -90,30,21.1,40.5333333333,19.4633333333,40.43,20.6333333333,41.4333333333,19.29,39.745,17.79,48.9388888889,2.9333333333,91.23,19.255,36.4427777778,22.15,43.655,17.7,38,2.9166666667,741.75,92.6666666667,3.8333333333,56.1666666667,1.8666666667,13.6242988287,13.6242988287 -80,30,21.0666666667,40.7,19.39,40.3633333333,20.7,41.53,19.2,39.53,17.79,48.9222222222,3,91.3333333333,19.2,36.13,22.1944444444,43.4761111111,17.7,38,2.9333333333,741.9,92.3333333333,3.6666666667,49.3333333333,1.8333333333,16.1190172541,16.1190172541 -170,40,21,40.6266666667,19.3566666667,40.5,20.7,41.53,19.2,39.59,18.0086666667,58.0733333333,3,91.4666666667,19.2,35.8833333333,22.1666666667,43.3105555556,17.7,38,2.95,742.05,92,3.5,42.5,1.8,29.0221307427,29.0221307427 -320,20,21,40.6333333333,19.29,40.4333333333,20.7,41.5,19.23,39.9933333333,18.265,68.7127777778,3.09,91.59,19.1555555556,35.645,22.1944444444,43.1816666667,17.7,38.3266666667,2.9666666667,742.2,91.6666666667,3.3333333333,35.6666666667,1.7666666667,45.2930983971,45.2930983971 -400,20,20.9266666667,40.9,19.2,40.45,20.7,41.4333333333,19.29,40.3266666667,18.2,69.6661111111,3.03,91.3966666667,19.205,35.58,22.2,42.9822222222,17.7,38.4,2.9833333333,742.35,91.3333333333,3.1666666667,28.8333333333,1.7333333333,36.8636221159,36.8636221159 -400,10,20.89,40.9933333333,19.1,40.53,20.6333333333,41.5266666667,19.29,39.8333333333,18.15,69.7316666667,2.9,91,19.28,35.535,22.2,42.7672222222,17.7,38.4,3,742.5,91,3,22,1.7,37.2515574214,37.2515574214 -340,30,20.89,41.8,19.1,40.7233333333,20.76,42.06,19.29,39.5666666667,18.1,68.4916666667,2.9,91,19.3288888889,35.4944444444,22.2,42.6022222222,17.6,38.2,2.95,742.6666666667,90.3333333333,3.5,23.1666666667,1.5333333333,32.1099873167,32.1099873167 -120,10,20.89,45.0666666667,19.0666666667,42,20.6666666667,41.76,19.26,39.56,18.0888888889,66.9983333333,2.9333333333,90.7,19.39,35.3127777778,22.2144444444,42.4538888889,17.6,38.1333333333,2.9,742.8333333333,89.6666666667,4,24.3333333333,1.3666666667,7.104338659,7.104338659 -120,10,20.89,46.7333333333,19.0666666667,43.3933333333,20.6,41.6266666667,19.2,39.56,18.0833333333,64.9811111111,3,90.2933333333,19.3788888889,35.0244444444,22.1111111111,41.9416666667,17.6,38,2.85,743,89,4.5,25.5,1.2,24.4167707395,24.4167707395 -120,10,20.89,45.6333333333,19.0333333333,43.56,20.6,41.79,19.2,39.73,18.0333333333,62.4416666667,3,89.9,19.3066666667,34.7572222222,22.1,41.8138888889,17.6,37.9666666667,2.8,743.1666666667,88.3333333333,5,26.6666666667,1.0333333333,14.7474054713,14.7474054713 -120,20,20.89,45.0266666667,19.1,43.4333333333,20.6,41.93,19.2,39.93,18,60.6877777778,3.0225,89.7975,19.3177777778,34.5366666667,22.1277777778,42.1088888889,17.6,37.9,2.75,743.3333333333,87.6666666667,5.5,27.8333333333,0.8666666667,7.6492345775,7.6492345775 -110,10,20.9633333333,43.86,19.1333333333,43.2233333333,20.6,42.0666666667,19.2,39.8633333333,18,59.4722222222,3.09,89.4966666667,19.3066666667,34.335,22.2,42.1177777778,17.6,37.79,2.7,743.5,87,6,29,0.7,4.8624416813,4.8624416813 -120,10,20.89,43.0666666667,19.2,42.9633333333,20.6,42.095,19.2,39.73,18,58.5588888889,3.1266666667,88.9333333333,19.3288888889,34.2861111111,22.21,41.9316666667,17.6,37.7225,2.6166666667,743.6666666667,87,6,28.8333333333,0.6166666667,30.8394950465,30.8394950465 -130,10,21,42.43,19.2,42.6633333333,20.6,42,19.2,39.4666666667,18,57.7777777778,3.1266666667,88.6,19.39,34.3877777778,22.235,41.7288888889,17.6,37.7,2.5333333333,743.8333333333,87,6,28.6666666667,0.5333333333,28.771845845,28.771845845 -130,20,21,42.0966666667,19.2,42.53,20.5,42,19.1333333333,39.2666666667,18.1544444444,60.5238888889,3.09,88.4333333333,19.39,34.3033333333,22.28,41.58,17.5,37.7,2.45,744,87,6,28.5,0.45,8.0945634749,8.0945634749 -290,20,21,41.79,19.2,42.5,20.5,42,19.1,39.06,19.5377777778,84.475,3.09,88.2933333333,19.39,34.2938888889,22.29,41.4377777778,17.5666666667,37.6266666667,2.3666666667,744.1666666667,87,6,28.3333333333,0.3666666667,0.0100190402,0.0100190402 -120,40,21,41.8633333333,19.2,42.56,20.5,42.09,19.1,39,20.2422222222,88.7066666667,3.09,87.5333333333,19.39,34.5411111111,22.29,41.2572222222,17.5,37.59,2.2833333333,744.3333333333,87,6,28.1666666667,0.2833333333,11.413807713,11.413807713 -120,40,21,41.7233333333,19.23,42.53,20.5,42.09,19.1333333333,39.7333333333,20.5583333333,85.3194444444,3.09,85.8666666667,19.445,34.9177777778,22.29,41.1177777778,17.5,37.59,2.2,744.5,87,6,28,0.2,44.3564234069,44.3564234069 -110,10,21,41.3975,19.29,42.4633333333,20.4633333333,41.9666666667,19.2,40.8666666667,20.0744444444,83.0383333333,3.09,85,19.5166666667,35.1572222222,22.29,40.9194444444,17.5,37.56,2.2,744.6333333333,87.6666666667,5.6666666667,26.6666666667,0.3,40.1025979547,40.1025979547 -160,20,21,41.1266666667,19.29,42.1633333333,20.39,41.9666666667,19.29,41.34,20.19,85.8722222222,3.03,84.4,19.6,35.1694444444,22.3011111111,40.78,17.5,37.5,2.2,744.7666666667,88.3333333333,5.3333333333,25.3333333333,0.4,30.7214954286,30.7214954286 -150,0,21,40.9666666667,19.29,41.9633333333,20.39,42.09,19.29,40.5633333333,20.7122222222,90.57,3,84.9966666667,19.6,35.2366666667,22.3511111111,40.8627777778,17.5,37.53,2.2,744.9,89,5,24,0.5,39.5476617618,39.5476617618 -130,0,21,40.9666666667,19.29,41.79,20.39,42.03,19.29,40.23,20.1905555556,91.4311111111,3,84.9966666667,19.6166666667,35.4272222222,22.39,41.2705555556,17.5666666667,37.6633333333,2.2,745.0333333333,89.6666666667,4.6666666667,22.6666666667,0.6,39.6199131967,39.6199131967 -130,10,21,40.8633333333,19.29,41.79,20.3233333333,42,19.29,39.7966666667,19.9272222222,90.6838888889,2.9333333333,85.3666666667,19.6888888889,36.0055555556,22.39,41.265,17.5,37.6633333333,2.2,745.1666666667,90.3333333333,4.3333333333,21.3333333333,0.7,26.9880091888,26.9880091888 -150,0,21,40.73,19.3566666667,41.6633333333,20.3233333333,41.86,19.23,39.39,19.7761111111,88.7222222222,2.9333333333,85.5,19.7,35.9027777778,22.4327777778,41.0733333333,17.5,37.59,2.2,745.3,91,4,20,0.8,20.6012181938,20.6012181938 -110,0,21,40.59,19.29,41.4975,20.39,41.79,19.2,39.06,19.6333333333,86.6066666667,2.9,85.7933333333,19.7,35.6427777778,22.5,40.8972222222,17.5,37.56,2.2333333333,745.4166666667,91.3333333333,4,20.1666666667,0.9,37.7166486578,37.7166486578 -100,20,21,40.53,19.29,41.3266666667,20.39,41.79,19.2,38.86,19.5111111111,84.6227777778,2.9,85.9333333333,19.6722222222,35.4877777778,22.5,40.7016666667,17.5,37.5,2.2666666667,745.5333333333,91.6666666667,4,20.3333333333,1,46.2166175013,46.2166175013 -100,30,20.9266666667,40.4666666667,19.29,41.26,20.39,41.7,19.2,39.0666666667,19.4027777778,82.5538888889,2.9,85.95,19.6,35.8266666667,22.5722222222,40.63,17.5,37.3633333333,2.3,745.65,92,4,20.5,1.1,24.9520541285,24.9520541285 -70,20,20.9266666667,40.6,19.23,41,20.39,41.76,19.26,39.8,19.2911111111,80.875,2.8633333333,86.5333333333,19.6,36.2327777778,22.6333333333,40.9488888889,17.5,38.03,2.3333333333,745.7666666667,92.3333333333,4,20.6666666667,1.2,28.7596141454,28.7596141454 -70,10,20.89,40.6633333333,19.1333333333,40.76,20.29,41.76,19.3233333333,40.4333333333,19.205,79.4794444444,2.79,87.4666666667,19.6,36.3816666667,22.6111111111,41.2755555556,17.6,39.1966666667,2.3666666667,745.8833333333,92.6666666667,4,20.8333333333,1.3,10.9464699868,10.9464699868 -50,0,20.8233333333,40.59,19.1333333333,40.8333333333,20.29,41.7,19.39,40.5,19.1277777778,78.3438888889,2.7,88.7566666667,19.6,36.4722222222,22.5833333333,41.7855555556,17.6,39.7233333333,2.4,746,93,4,21,1.4,8.1575781689,8.1575781689 -50,10,20.79,40.9333333333,19.0666666667,41.06,20.29,41.745,19.3566666667,40.4666666667,19.0833333333,77.29,2.7,89.2966666667,19.5388888889,36.515,22.5,42.3155555556,17.7,40.0666666667,2.4333333333,746.15,92.8333333333,4.1666666667,21.5,1.4,44.1317754914,44.1317754914 -50,10,20.79,41.06,19,41,20.29,41.79,19.29,40.4,19,76.1727777778,2.7,89.76,19.5,36.57,22.4938888889,42.4938888889,17.625,40.295,2.4666666667,746.3,92.6666666667,4.3333333333,22,1.4,23.4397121589,23.4397121589 -30,0,20.79,41,19,41.1633333333,20.29,41.79,19.29,40.5,18.9572222222,74.7794444444,2.6266666667,89.9666666667,19.5,36.6572222222,22.4022222222,42.1427777778,17.6,40.5266666667,2.5,746.45,92.5,4.5,22.5,1.4,0.9598304867,0.9598304867 -50,10,20.79,41.1333333333,18.9266666667,41.2233333333,20.2,41.6633333333,19.29,40.5,18.89,73.4822222222,2.6266666667,90.1933333333,19.5,36.725,22.3066666667,42.3638888889,17.6,40.73,2.5333333333,746.6,92.3333333333,4.6666666667,23,1.4,40.806859266,40.806859266 -60,10,20.7,41.09,19,41.29,20.2,41.59,19.26,40.5,18.8511111111,72.27,2.7,90.4666666667,19.5,36.7961111111,22.265,42.56,17.6666666667,40.93,2.5666666667,746.75,92.1666666667,4.8333333333,23.5,1.4,2.1378696314,2.1378696314 -60,0,20.7,41.1633333333,18.9266666667,41.29,20.2,41.7,19.2,40.5,18.79,71.1294444444,2.7,90.5633333333,19.4755555556,36.8911111111,22.22,42.7805555556,17.7,41.1266666667,2.6,746.9,92,5,24,1.4,3.7036955124,3.7036955124 -60,10,20.6666666667,41.2,18.89,41.23,20.2,41.7,19.1666666667,40.5,18.775,70.1816666667,2.76,90.7633333333,19.4572222222,37.02,22.2,43.0644444444,17.7,41.26,2.5833333333,747.05,92.1666666667,5.1666666667,30.6666666667,1.4166666667,23.934702843,23.934702843 -50,0,20.6,41.2,18.8233333333,41.1566666667,20.23,41.7666666667,19.15,40.5,18.7,69.3938888889,2.79,91,19.4083333333,37.0955555556,22.1888888889,43.2988888889,17.7,41.4333333333,2.5666666667,747.2,92.3333333333,5.3333333333,37.3333333333,1.4333333333,23.5754515044,23.5754515044 -60,10,20.6,41.2,18.79,41.2,20.23,41.8266666667,19.1,40.5,18.6777777778,68.6511111111,2.8633333333,91.5933333333,19.3961111111,37.2788888889,22.1388888889,43.5338888889,17.7,41.56,2.55,747.35,92.5,5.5,44,1.45,14.119075879,14.119075879 -60,0,20.5666666667,41.1266666667,18.79,41.2,20.2,41.7,19.1,40.5,18.6888888889,67.9,2.79,91.6233333333,19.39,37.5138888889,22.1,43.7655555556,17.7,41.6566666667,2.5333333333,747.5,92.6666666667,5.6666666667,50.6666666667,1.4666666667,10.6487142504,10.6487142504 -60,10,20.5,41.2,18.7,41.29,20.26,41.76,19.1,40.5,18.6055555556,67.13,2.79,91.69,19.4144444444,37.735,22.1166666667,44.1488888889,17.7,41.8633333333,2.5166666667,747.65,92.8333333333,5.8333333333,57.3333333333,1.4833333333,30.9385458706,30.9385458706 -70,10,20.5,41.1266666667,18.7,41.3633333333,20.29,41.79,19.1,40.5,18.6,66.535,2.79,91.8333333333,19.39,37.9277777778,22.1166666667,44.4638888889,17.7,42.03,2.5,747.8,93,6,64,1.5,3.0559998006,3.0559998006 -50,0,20.5,41.2,18.6333333333,41.36,20.29,41.79,19.0333333333,40.4333333333,18.5777777778,66.0027777778,2.73,91.9,19.39,38.015,22.1111111111,44.6883333333,17.7,42.1633333333,2.4833333333,747.9333333333,93,6,64,1.4666666667,14.1555353999,14.1555353999 -60,10,20.39,41.09,18.625,41.5,20.3233333333,41.6633333333,19,40.4,18.5611111111,65.535,2.645,91.85,19.39,38.1205555556,22.1,44.9427777778,17.7,42.3266666667,2.4666666667,748.0666666667,93,6,64,1.4333333333,49.0983889671,49.0983889671 -60,0,20.39,41.09,18.6,41.56,20.39,41.59,19,40.4,18.5111111111,65.09,2.59,91.9,19.39,38.255,22.1,45,17.7,42.4666666667,2.45,748.2,93,6,64,1.4,46.637713199,46.637713199 -30,10,20.39,41.09,18.5666666667,41.7,20.3566666667,41.5,18.89,40.4,18.5,64.7033333333,2.59,91.9,19.39,38.345,22.0777777778,45.0511111111,17.7,42.6266666667,2.4333333333,748.3333333333,93,6,64,1.3666666667,28.3225569059,28.3225569059 -40,10,20.3233333333,41.09,18.5,41.76,20.29,41.5,18.89,40.4,18.4755555556,64.2666666667,2.59,91.9,19.3961111111,38.4105555556,22.0277777778,45.1511111111,17.7,42.76,2.4166666667,748.4666666667,93,6,64,1.3333333333,5.203967297,5.203967297 -40,0,20.29,41.09,18.5,41.8266666667,20.29,41.4,18.89,40.4,18.4877777778,63.9072222222,2.53,91.9,19.4327777778,38.5388888889,21.9694444444,45.3638888889,17.7,42.8266666667,2.4,748.6,93,6,64,1.3,34.8204247188,34.8204247188 -50,10,20.29,41.1633333333,18.5,41.9,20.29,41.3266666667,18.89,40.4,18.3961111111,63.4416666667,2.5,91.9,19.39,38.5194444444,21.9022222222,45.66,17.7,42.9666666667,2.4166666667,748.7833333333,93,6,60,1.3166666667,23.2838393305,23.2838393305 -70,0,20.29,41.2,18.39,41.8266666667,20.2,41.245,18.89,40.4,18.39,63.13,2.5,91.9666666667,19.39,38.3805555556,21.8733333333,45.9427777778,17.745,43.09,2.4333333333,748.9666666667,93,6,56,1.3333333333,27.4947231053,27.4947231053 -60,10,20.29,41.2,18.39,41.9,20.2,41.2,18.8233333333,40.3266666667,18.3733333333,62.8038888889,2.5,91.9333333333,19.39,38.2961111111,21.79,46.0572222222,17.7,43.23,2.45,749.15,93,6,52,1.35,47.00151016,47.00151016 -50,10,20.2,41.1266666667,18.39,41.9333333333,20.2,41.2,18.8566666667,40.3633333333,18.3122222222,62.5072222222,2.5,92,19.39,38.4477777778,21.79,46.2038888889,17.7,43.29,2.4666666667,749.3333333333,93,6,48,1.3666666667,2.8455349966,2.8455349966 -70,0,20.2,41.2,18.3233333333,42,20.2,41.1633333333,18.79,40.3633333333,18.29,62.2144444444,2.5,91.9333333333,19.39,38.5911111111,21.78,46.265,17.7,43.4,2.4833333333,749.5166666667,93,6,44,1.3833333333,15.8725349465,15.8725349465 -50,10,20.1666666667,41.1633333333,18.29,42,20.2,41.09,18.8566666667,40.43,18.29,61.9027777778,2.5,91.9333333333,19.39,38.6877777778,21.73,46.205,17.76,43.4666666667,2.5,749.7,93,6,40,1.4,26.4556579408,26.4556579408 -50,0,20.1666666667,41.1633333333,18.29,42.06,20.2,41.09,18.79,40.29,18.29,61.6572222222,2.5,91.9,19.39,38.7611111111,21.715,46.215,17.79,43.59,2.4833333333,749.85,93,6,38.1666666667,1.3833333333,2.2941251169,2.2941251169 -70,10,20.1,41.2,18.29,42.03,20.2,41.03,18.79,40.3266666667,18.27,61.395,2.5,91.9,19.39,38.8877777778,21.7,46.2783333333,17.79,43.6633333333,2.4666666667,750,93,6,36.3333333333,1.3666666667,45.5561026931,45.5561026931 -50,0,20.1,41.2,18.29,42.03,20.2,41,18.79,40.4,18.265,61.1616666667,2.5,91.8666666667,19.39,38.8816666667,21.7,46.4,17.79,43.73,2.45,750.15,93,6,34.5,1.35,48.3659278019,48.3659278019 -70,10,20.05,41.1,18.2,41.9333333333,20.2,41,18.73,40.4,18.21,60.9127777778,2.5,91.8,19.39,38.845,21.6611111111,46.3633333333,17.79,43.79,2.4333333333,750.3,93,6,32.6666666667,1.3333333333,45.7748099463,45.7748099463 -60,10,20.0666666667,41.1633333333,18.2,41.9333333333,20.29,41.09,18.79,40.4,18.22,60.7688888889,2.4,91.69,19.39,38.9,21.6,46.4377777778,17.79,43.9,2.4166666667,750.45,93,6,30.8333333333,1.3166666667,29.3964225566,29.3964225566 -50,0,20,41.09,18.2,41.9666666667,20.29,41.09,18.73,40.4,18.2,60.5572222222,2.4,91.69,19.39,38.8755555556,21.6,46.555,17.79,43.9666666667,2.4,750.6,93,6,29,1.3,15.1274847216,15.1274847216 -40,10,20,41.09,18.1333333333,41.9,20.29,41.06,18.7,40.3266666667,18.2,60.3933333333,2.4,91.7633333333,19.39,38.7833333333,21.5888888889,46.6144444444,17.79,44,2.3833333333,750.8,92.3333333333,6.1666666667,28,1.2,21.2025160668,21.2025160668 -30,0,20,41.1633333333,18.1,41.9,20.23,40.9333333333,18.7,40.4,18.2,60.23,2.29,91.7633333333,19.39,38.745,21.5277777778,46.59,17.79,44.06,2.3666666667,751,91.6666666667,6.3333333333,27,1.1,46.7609232641,46.7609232641 -40,10,19.9633333333,41.2,18.1,41.975,20.26,40.8333333333,18.7,40.3266666667,18.2,60.0733333333,2.29,91.7633333333,19.39,38.7461111111,21.5,46.59,17.79,44.09,2.35,751.2,91,6.5,26,1,9.690239816,9.690239816 -50,10,19.89,41.2,18.1,42,20.2,40.7,18.7,40.3266666667,18.1722222222,59.95,2.2,91.6566666667,19.39,38.8877777778,21.5,46.57,17.79,44.1633333333,2.3333333333,751.4,90.3333333333,6.6666666667,25,0.9,46.6539745103,46.6539745103 -60,0,19.89,41.2,18.1,41.9666666667,20.2,40.7,18.7,40.29,18.1,59.8277777778,2.2,91.6566666667,19.39,38.9611111111,21.4694444444,46.5372222222,17.79,44.2,2.3166666667,751.6,89.6666666667,6.8333333333,24,0.8,16.0688995617,16.0688995617 -70,10,19.89,41.2,18.0333333333,41.8266666667,20.2,40.76,18.7,40.29,18.1,59.71,2.2,91.59,19.39,39,21.4205555556,46.4327777778,17.79,44.2,2.3,751.8,89,7,23,0.7,39.6171372849,39.6171372849 -60,0,19.79,41.03,18,41.9,20.2,40.73,18.6333333333,40.29,18.1,59.6277777778,2.2,91.59,19.39,39,21.4327777778,46.4761111111,17.79,44.2,2.3333333333,751.9833333333,88.6666666667,6.8333333333,25.8333333333,0.6666666667,43.566579523,43.566579523 -60,10,19.79,41.03,18,41.9,20.2,40.73,18.7,40.29,18.1,59.51,2.29,91.69,19.39,39,21.39,46.3816666667,17.8566666667,44.26,2.3666666667,752.1666666667,88.3333333333,6.6666666667,28.6666666667,0.6333333333,47.6054143044,47.6054143044 -50,10,19.79,41,18,41.9,20.245,40.7,18.6666666667,40.26,18.0777777778,59.4388888889,2.29,91.69,19.39,39,21.39,46.29,17.84,44.3,2.4,752.35,88,6.5,31.5,0.6,17.7255606861,17.7255606861 -60,0,19.79,41.06,17.9266666667,41.9,20.29,40.7,18.6,40.2,18.05,59.32,2.3266666667,91.69,19.39,39,21.3844444444,46.3816666667,17.79,44.29,2.4333333333,752.5333333333,87.6666666667,6.3333333333,34.3333333333,0.5666666667,42.2469811048,42.2469811048 -50,10,19.7,41.06,17.89,41.9,20.29,40.7,18.6,40.23,18.0333333333,59.2138888889,2.4,91.69,19.3733333333,39.005,21.34,46.4,17.79,44.29,2.4666666667,752.7166666667,87.3333333333,6.1666666667,37.1666666667,0.5333333333,42.5096425111,42.5096425111 -60,0,19.7,41.06,17.89,41.9,20.29,40.7,18.6,40.29,18.0111111111,59.0872222222,2.4,91.69,19.3288888889,39.015,21.3177777778,46.4,17.79,44.29,2.5,752.9,87,6,40,0.5,35.0478709326,35.0478709326 -50,10,19.7,41.06,17.89,41.9,20.3566666667,40.7,18.6,40.23,18,59.0044444444,2.4,91.6233333333,19.3566666667,39.035,21.3066666667,46.4,17.79,44.29,2.4666666667,753.0833333333,86,6.1666666667,40,0.3166666667,18.532197352,18.532197352 -70,0,19.7,41,17.89,41.9,20.29,40.6266666667,18.6,40.23,18,58.9111111111,2.29,91.4,19.3677777778,39.1266666667,21.2955555556,46.3083333333,17.79,44.29,2.4333333333,753.2666666667,85,6.3333333333,40,0.1333333333,1.2945668423,1.2945668423 -40,10,19.6666666667,40.9666666667,17.8566666667,41.8633333333,20.29,40.6266666667,18.6,40.2,18,58.8083333333,2.29,91.3333333333,19.3677777778,39.1266666667,21.29,46.245,17.79,44.29,2.4,753.45,84,6.5,40,-0.05,44.9404063518,44.9404063518 -50,10,19.6666666667,40.9666666667,17.79,41.79,20.3566666667,40.59,18.575,40.2,17.9816666667,58.745,2.26,91.1266666667,19.3344444444,39.145,21.29,46.1938888889,17.79,44.29,2.3666666667,753.6333333333,83,6.6666666667,40,-0.2333333333,37.7185645862,37.7185645862 -30,10,19.6,40.9,17.79,41.79,20.3566666667,40.59,18.5,40.2,17.9083333333,58.6083333333,2.2,90.975,19.3344444444,39.2194444444,21.245,46.0822222222,17.79,44.29,2.3333333333,753.8166666667,82,6.8333333333,40,-0.4166666667,18.4682062827,18.4682062827 -70,20,19.6,40.9,17.79,41.8633333333,20.3233333333,40.6266666667,18.5,40.2,17.9083333333,58.565,2.26,90.8333333333,19.39,39.5688888889,21.265,46.1866666667,17.89,44.7,2.3,754,81,7,40,-0.6,26.521114097,26.521114097 -50,10,19.6,41.0266666667,17.79,41.9633333333,20.3233333333,40.7,18.5,40.2,17.9144444444,58.4944444444,2.1633333333,89.99,19.39,39.4505555556,21.235,46.1744444444,17.89,44.6266666667,2.1333333333,754.2,80.6666666667,6.8333333333,40,-0.8166666667,45.6987331505,45.6987331505 -40,10,19.6,41.2666666667,17.79,42.1633333333,20.26,40.7,18.5333333333,40.29,17.89,58.4333333333,1.9633333333,88.8633333333,19.3288888889,39.13,21.2,45.9255555556,17.89,44.56,1.9666666667,754.4,80.3333333333,6.6666666667,40,-1.0333333333,10.0577948964,10.0577948964 -50,0,19.6,41.3266666667,17.79,42.2,20.2,40.6266666667,18.5333333333,40.23,17.89,58.3572222222,1.76,87.13,19.3011111111,38.8283333333,21.1277777778,45.7144444444,17.89,44.4333333333,1.8,754.6,80,6.5,40,-1.25,12.7820671536,12.7820671536 -50,0,19.6,41.1333333333,17.7225,42.2,20.2,40.56,18.5,40.2,17.89,58.29,1.6333333333,85.9233333333,19.29,38.5772222222,21.1,45.4677777778,17.89,44.3633333333,1.6333333333,754.8,79.6666666667,6.3333333333,40,-1.4666666667,22.0154256676,22.0154256676 -80,0,19.5333333333,40.9333333333,17.7,42.0666666667,20.2,40.56,18.5,40.2,17.89,58.215,1.4633333333,84.7666666667,19.285,38.2566666667,21.1,45.2266666667,17.8233333333,44.1566666667,1.4666666667,755,79.3333333333,6.1666666667,40,-1.6833333333,37.2601550189,37.2601550189 -50,10,19.5,41,17.7,41.8333333333,20.2,40.6333333333,18.5,39.66,17.8733333333,58.0538888889,1.3233333333,83.7666666667,19.21,37.2477777778,21.0388888889,44.6533333333,17.8566666667,44.1333333333,1.3,755.2,79,6,40,-1.9,7.9786601942,7.9786601942 -40,0,19.5,41,17.76,41.5666666667,20.2,40.5,18.4266666667,39.1933333333,17.8566666667,57.6577777778,1.26,83.06,19.1611111111,36.4144444444,20.9816666667,43.9616666667,17.8566666667,43.86,1.3333333333,755.4166666667,79.3333333333,5.6666666667,40,-1.8333333333,36.4010304329,36.4010304329 -40,0,19.5,40.76,18.0666666667,40.8633333333,20.1666666667,40.3633333333,18.39,38.7233333333,17.8233333333,57.2127777778,1.1333333333,82.9933333333,19.1,35.9433333333,20.9022222222,43.3105555556,17.79,43.2666666667,1.3666666667,755.6333333333,79.6666666667,5.3333333333,40,-1.7666666667,44.4060901762,44.4060901762 -50,10,19.5,40.6266666667,18,40.73,20.1,40.1566666667,18.39,38.4633333333,17.79,56.6761111111,1.1,82.9,19.0166666667,35.5638888889,20.84,42.61,17.8566666667,42.86,1.4,755.85,80,5,40,-1.7,36.1099671572,36.1099671572 -320,10,19.39,40.3333333333,17.9633333333,40.56,20.05,39.85,18.3566666667,38.26,17.8066666667,56.1883333333,1.1,82.76,19,35.1772222222,20.8122222222,42.0727777778,17.89,42.79,1.4333333333,756.0666666667,80.3333333333,4.6666666667,40,-1.6333333333,21.5891753789,21.5891753789 -310,10,19.39,40.26,17.89,40.3,20,39.7233333333,18.29,38.0666666667,17.7955555556,55.66,1.1333333333,82.4233333333,18.9083333333,34.8233333333,20.79,41.5822222222,17.89,42.6,1.4666666667,756.2833333333,80.6666666667,4.3333333333,40,-1.5666666667,38.8548683142,38.8548683142 -90,10,19.39,40.06,17.79,39.9666666667,20,39.4633333333,18.29,37.8633333333,17.79,55.1255555556,1.2,81.8966666667,18.89,34.4944444444,20.765,41.1255555556,17.89,42.1333333333,1.5,756.5,81,4,40,-1.5,4.5554244891,4.5554244891 -50,10,19.39,39.86,17.79,39.7666666667,20,39.3633333333,18.29,37.73,17.79,54.8288888889,1.39,81.6633333333,18.89,34.235,20.71,40.7805555556,17.89,42.0266666667,1.7,756.6333333333,80.3333333333,4.3333333333,40,-1.4166666667,0.9447592543,0.9447592543 -70,10,19.39,39.6266666667,17.79,39.6633333333,20,39.23,18.29,37.6333333333,17.775,54.63,1.4633333333,81.2633333333,18.84,33.9666666667,20.7,40.4305555556,17.89,41.6933333333,1.9,756.7666666667,79.6666666667,4.6666666667,40,-1.3333333333,27.814325178,27.814325178 -70,20,19.3233333333,39.7,17.79,39.59,20,39.1266666667,18.29,37.36,17.75,54.4427777778,1.6,80.695,18.79,33.7288888889,20.65,40.0777777778,17.8566666667,41.16,2.1,756.9,79,5,40,-1.25,22.7746577701,22.7746577701 -60,10,19.29,39.6633333333,17.8233333333,39.59,20,39.3333333333,18.29,37.23,17.755,54.2266666667,1.79,80.33,18.79,33.5294444444,20.6,39.7733333333,17.8566666667,40.7666666667,2.3,757.0333333333,78.3333333333,5.3333333333,40,-1.1666666667,4.9140296644,4.9140296644 -60,10,19.29,39.59,17.89,39.53,20,39.4,18.315,37.29,17.77,54.0294444444,1.93,79.93,18.79,33.3277777778,20.6,39.62,17.8233333333,40.2233333333,2.5,757.1666666667,77.6666666667,5.6666666667,40,-1.0833333333,21.0778403911,21.0778403911 -70,10,19.29,40.2333333333,18.0333333333,39.5,19.9266666667,39.3266666667,18.4633333333,37.3633333333,17.735,53.8311111111,2.2666666667,78.16,18.79,33.1794444444,20.6,39.3983333333,17.89,39.89,2.7,757.3,77,6,40,-1,4.5675038942,4.5675038942 -270,10,19.4475,43.97,18.1666666667,39.6333333333,19.89,39.4,18.5333333333,37.4,17.7,53.6177777778,2.4666666667,77.3666666667,18.79,33.0294444444,20.5666666667,39.2144444444,17.89,39.7,2.8833333333,757.4833333333,75.8333333333,6,40,-1.0333333333,14.8648570641,14.8648570641 -740,20,19.5,42.1333333333,18.26,39.1966666667,19.89,39.1933333333,18.6,37.3266666667,17.7,53.45,2.6266666667,76.0666666667,18.79,32.8311111111,20.5388888889,39.0294444444,17.89,39.7,3.0666666667,757.6666666667,74.6666666667,6,40,-1.0666666667,1.7749762745,1.7749762745 -590,10,19.5,40.7333333333,18.26,38.0566666667,19.9266666667,38.56,18.7,37.3633333333,17.7,53.2933333333,2.76,75.5933333333,18.79,32.5677777778,20.5277777778,38.915,17.89,39.4,3.25,757.85,73.5,6,40,-1.1,17.7851824905,17.7851824905 -380,10,19.5,40.66,18.36,37.79,20.1333333333,38.8333333333,18.7,37.29,17.7,53.145,2.9633333333,74.9666666667,18.79,32.3805555556,20.5555555556,38.7472222222,17.89,39.26,3.4333333333,758.0333333333,72.3333333333,6,40,-1.1333333333,12.4436471728,12.4436471728 -280,10,19.5,40.9666666667,18.6,37.8175,20.46,39.36,18.73,37.26,17.7,53.0183333333,3.2233333333,72.8266666667,18.8288888889,32.2488888889,20.5555555556,38.6105555556,17.89,39.2,3.6166666667,758.2166666667,71.1666666667,6,40,-1.1666666667,43.959018751,43.959018751 -240,10,19.5,40.8266666667,18.76,37.9666666667,20.7266666667,39.56,18.79,37.2,17.7,52.845,3.4633333333,69.8666666667,18.89,32.0772222222,20.5833333333,38.4255555556,17.89,39.26,3.8,758.4,70,6,40,-1.2,15.8989440301,15.8989440301 -250,10,19.6,40.79,18.8233333333,38.1266666667,20.86,39.6266666667,18.89,37.1633333333,17.7,52.6966666667,3.6633333333,66.9933333333,18.89,31.8644444444,20.5833333333,38.2144444444,17.89,39.5,4,758.5333333333,68.8333333333,5.8333333333,40,-1.25,16.0560252261,16.0560252261 -210,10,19.6,40.79,18.9633333333,38.2,21,39.7,18.9633333333,37.09,17.7,52.565,3.86,66.1666666667,18.9022222222,31.66,20.6,38.0694444444,17.89,39.4333333333,4.2,758.6666666667,67.6666666667,5.6666666667,40,-1.3,42.3943973263,42.3943973263 -80,20,19.7,40.9,19.0333333333,38.23,21.1333333333,39.7233333333,19.0333333333,37.03,17.6888888889,52.4488888889,4.06,63.3,18.9938888889,31.4983333333,20.6,37.8805555556,17.9266666667,39.23,4.4,758.8,66.5,5.5,40,-1.35,19.0635191975,19.0635191975 -70,10,19.76,40.8266666667,19.1,38.23,21.2675,39.42,19.1,37.03,17.65,52.2977777778,4.2266666667,62.3633333333,19.0277777778,31.3177777778,20.6,37.6427777778,17.9266666667,39.29,4.6,758.9333333333,65.3333333333,5.3333333333,40,-1.4,13.7562161079,13.7562161079 -50,10,19.79,40.49,19.1,38.2,21.23,38.89,19.1,37,17.6611111111,52.1733333333,4.3666666667,61.5633333333,19.1166666667,31.1983333333,20.6388888889,37.4988888889,17.89,39.2,4.8,759.0666666667,64.1666666667,5.1666666667,40,-1.45,45.8971751388,45.8971751388 -60,10,19.8566666667,40.23,19.1,38.09,21.115,38.545,19.1,36.9333333333,17.6333333333,52.1266666667,4.5,61,19.29,31,20.7,37.245,17.9175,39.245,5,759.2,63,5,40,-1.5,43.8472468057,43.8472468057 -50,10,19.89,39.7966666667,19.1,38.06,21,38.2,19.1,36.9666666667,17.6222222222,51.9205555556,4.59,59.1933333333,19.3916666667,30.8472222222,20.725,37.0955555556,17.9266666667,39.2,5,759.3,62.8333333333,5.5,40,-1.5333333333,16.3242398063,16.3242398063 -50,10,19.9633333333,39.53,19.1,38,21,38.09,19.1666666667,36.9,17.6083333333,51.7675,4.8,60.79,19.5333333333,30.79,20.8566666667,36.9777777778,18,39.2,5,759.4,62.6666666667,6,40,-1.5666666667,4.5614340459,4.5614340459 -50,20,20.1,39.43,19.18,37.9833333333,20.89,37.9,19.2,36.79,17.6041666667,51.58375,5.3,56.4,19.79,30.5,21.1,36.7,18,39,5,759.5,62.5,6.5,40,-1.6,9.9296864355,9.9296864355 -530,10,20.1666666667,39.1566666667,19.26,37.9666666667,20.865,37.8725,19.2,36.79,17.6,51.4,5.35,56.55,19.79,30.445,21.1,36.7,18,39,5,759.6,62.3333333333,7,40,-1.6333333333,8.8643243071,8.8643243071 -370,10,20.26,39.0666666667,19.2,37.845,20.79,37.79,19.2,36.79,17.6,51.2,5.4,56.2,19.79,30.39,21.1,36.59,18,39,5,759.7,62.1666666667,7.5,40,-1.6666666667,24.3466866435,24.3466866435 -300,10,20.26,39.4,19.2,37.9,21.29,39.5,19.2,36.73,17.6,50.995,6,56.9,19.7,30.29,21.0666666667,36.4666666667,18,38.8816666667,5,759.8,62,8,40,-1.7,7.065020781,7.065020781 -290,10,20.29,39.3333333333,19.29,38.09,21.34,39.545,19.2,36.79,17.6,50.79,5.95,56.525,19.79,30.2,21.1,36.4333333333,18,38.8633333333,5.0833333333,759.9,61.6666666667,7.8333333333,40,-1.7166666667,28.0157151748,28.0157151748 -270,10,20.365,39.35,19.29,38.1633333333,21.6333333333,39.6266666667,19.2,36.7,17.7,50.79,6.045,55.095,19.73,30.1333333333,21.1,36.29,18,38.9633333333,5.1666666667,760,61.3333333333,7.6666666667,40,-1.7333333333,3.6686854553,3.6686854553 -240,10,20.39,39.4666666667,19.29,38.29,21.76,39.7,19.2,36.7,17.6,50.6633333333,5.9725,53.82,19.76,29.9633333333,21.1,36.23,18,39.1633333333,5.25,760.1,61,7.5,40,-1.75,46.0681129014,46.0681129014 -220,20,20.4266666667,39.53,19.29,38.29,21.88,39.495,19.1,36.7,17.6,50.565,5.9483333333,54.5133333333,19.825,29.9266666667,21.15,36.115,18.05,39.9316666667,5.3333333333,760.2,60.6666666667,7.3333333333,40,-1.7666666667,13.9010241022,13.9010241022 -150,0,20.5,39.53,19.29,38.29,22,39.29,19.1666666667,36.6266666667,17.6,50.4666666667,5.9241666667,55.2066666667,19.89,29.89,21.2,36,18.1,40.7,5.4166666667,760.3,60.3333333333,7.1666666667,40,-1.7833333333,1.7198090558,1.7198090558 -60,0,20.5333333333,39.5266666667,19.3566666667,38.3633333333,22.0333333333,39.26,19.2,36.56,17.6,50.4,5.9,55.9,19.9633333333,29.8233333333,21.2,35.8633333333,18.1,40.7266666667,5.5,760.4,60,7,40,-1.8,22.7035131771,22.7035131771 -310,0,20.6,39.0666666667,19.39,38.2233333333,22.1,38.9266666667,19.1333333333,36.56,17.6,50.3266666667,6,52.4,20.1,29.8566666667,21.26,35.93,18.1666666667,41.06,5.5166666667,760.5166666667,60.3333333333,7,40,-1.7,26.1980849435,26.1980849435 -340,0,20.7,38.99,19.39,38.0225,22,38.49,19.2,36.56,17.6,50.26,6.045,52.245,20.2266666667,29.73,21.29,35.9666666667,18.2,41.3266666667,5.5333333333,760.6333333333,60.6666666667,7,40,-1.6,11.7824167362,11.7824167362 -100,0,20.7,38.6566666667,19.39,38,21.9266666667,38.1566666667,19.2,36.5,17.6,50.2,6.0675,54.4725,20.29,29.5,21.29,35.8175,18.1333333333,41.6,5.55,760.75,61,7,40,-1.5,44.039220328,44.039220328 -60,0,20.7,38.4666666667,19.39,37.9,21.76,37.76,19.1,36.3333333333,17.6,50.06,6.09,56.7,20.29,29.4266666667,21.29,35.7,18.1666666667,41.9333333333,5.5666666667,760.8666666667,61.3333333333,7,40,-1.4,25.0658305013,25.0658305013 -60,0,20.7,38.4,19.3233333333,37.8266666667,21.6333333333,37.5666666667,19.1,36,17.6,50,6.0266666667,56.4633333333,20.2,29.29,21.2,35.59,18.1,42.06,5.5833333333,760.9833333333,61.6666666667,7,40,-1.3,18.799399538,18.799399538 -70,0,20.7,38.26,19.29,37.76,21.5666666667,37.29,19.1,35.9,17.6,49.8633333333,5.76,55.39,20.2,29.29,21.2,35.53,18.2,42.2,5.6,761.1,62,7,40,-1.2,41.9133616611,41.9133616611 -60,0,20.7,38.0666666667,19.3566666667,37.7,21.5,37.23,19.1,36.0266666667,17.6,49.73,5.76,55.7266666667,20.2633333333,29.1666666667,21.39,35.3633333333,18.2,42.2,5.5666666667,761.2333333333,62,7,40,-1.2333333333,38.8425331796,38.8425331796 -60,0,20.73,37.79,19.39,37.59,21.445,37.145,19.1,36.1633333333,17.6,49.59,5.95,54.545,20.39,29.0333333333,21.39,35.23,18.2,42.245,5.5333333333,761.3666666667,62,7,40,-1.2666666667,41.4916990791,41.4916990791 -50,0,20.79,37.73,19.39,37.53,21.3566666667,37.09,19.1,36.03,17.6,49.53,6.045,54.4575,20.39,28.945,21.5,35.2,18.2,42.2,5.5,761.5,62,7,40,-1.3,15.7391792396,15.7391792396 -50,0,20.76,37.59,19.39,37.4666666667,21.29,37.1633333333,19.0666666667,35.6933333333,17.6,49.3633333333,6.14,54.37,20.3566666667,28.8566666667,21.4266666667,35.1266666667,18.1333333333,42.2,5.4666666667,761.6333333333,62,7,40,-1.3333333333,2.1876572515,2.1876572515 -40,0,20.7,37.59,19.3233333333,37.4,21.26,37.09,19.0666666667,35.5,17.6,49.23,5.9675,54.6025,20.29,28.79,21.3233333333,35.09,18.1666666667,42.1633333333,5.4333333333,761.7666666667,62,7,40,-1.3666666667,38.7886262033,38.7886262033 -30,0,20.7,37.4666666667,19.3233333333,37.29,21.2,37.03,19,35.345,17.6,49.1633333333,5.795,54.835,20.39,28.76,21.39,35.03,18.1666666667,42.09,5.4,761.9,62,7,40,-1.4,30.7695661671,30.7695661671 -30,0,20.7,37.3266666667,19.39,37.23,21.1,37,19,35.29,17.6,49.03,5.6225,55.0675,20.4633333333,28.7,21.4266666667,34.9333333333,18.2,42.09,5.3333333333,762.05,62.3333333333,6.6666666667,40,-1.3833333333,10.3042055736,10.3042055736 -30,0,20.79,37.29,19.39,37.06,21.1,37,19,35.29,17.6,48.9,5.45,55.3,20.5333333333,28.6666666667,21.5,34.86,18.2,42.03,5.2666666667,762.2,62.6666666667,6.3333333333,40,-1.3666666667,6.2638800242,6.2638800242 -50,0,20.79,37.29,19.39,36.9333333333,21,36.8633333333,19,35.1633333333,17.6,48.79,5.4,55.5333333333,20.6666666667,28.5333333333,21.5333333333,34.76,18.2,42,5.2,762.35,63,6,40,-1.35,48.1395367882,48.1395367882 -40,0,20.79,37.2,19.39,36.8633333333,21,36.79,19,35.09,17.6,48.79,5.4,54.86,20.7,28.4633333333,21.6,34.6266666667,18.2,42,5.1333333333,762.5,63.3333333333,5.6666666667,40,-1.3333333333,21.521217667,21.521217667 -50,0,20.79,37.2,19.4633333333,36.79,21,36.9,19,35.06,17.6,48.6633333333,5.3333333333,54.4,20.76,28.3233333333,21.7,34.59,18.2,42,5.0666666667,762.65,63.6666666667,5.3333333333,40,-1.3166666667,31.7673205049,31.7673205049 -40,0,20.79,37.2,19.5,36.79,21,36.9,19,35,17.6,48.59,5.4,54.7566666667,20.79,28.2,21.7,34.53,18.2,42,5,762.8,64,5,40,-1.3,25.7010922069,25.7010922069 -40,0,20.76,37.2,19.5,36.73,21,36.9333333333,18.9633333333,34.9,17.6,48.5,5.4,54.09,20.79,28.1333333333,21.7,34.5,18.2,41.9666666667,4.7666666667,762.95,65.3333333333,4.8333333333,40,-1.25,33.2518738578,33.2518738578 -60,10,20.7,37.2,19.4633333333,36.6333333333,20.9266666667,37,18.89,34.9,17.6,48.4333333333,5.4,54.5,20.79,28.0666666667,21.7,34.4333333333,18.2,41.9,4.5333333333,763.1,66.6666666667,4.6666666667,40,-1.2,12.6227144036,12.6227144036 -80,0,20.7,37.2233333333,19.315,36.5,20.89,37.0666666667,18.89,35.1566666667,17.6,48.3633333333,5.25,56.6771428571,20.73,28,21.6,34.4333333333,18.2,41.9,4.3,763.25,68,4.5,40,-1.15,4.7657575458,4.7657575458 -110,20,20.7,36.89,19.23,36.36,20.89,37.0666666667,18.89,35.23,17.6,48.29,5.1,58.8542857143,20.6666666667,28.0333333333,21.6,34.6333333333,18.2,41.9,4.0666666667,763.4,69.3333333333,4.3333333333,40,-1.1,10.3669819888,10.3669819888 -110,30,20.6,36.7,19.2,36.4633333333,20.79,36.9,18.89,35.53,17.5666666667,48.2,4.5266666667,60.2966666667,20.6,28.1666666667,21.7,35.0666666667,18.2,41.79,3.8333333333,763.55,70.6666666667,4.1666666667,40,-1.05,22.8521624114,22.8521624114 -100,20,20.6,36.7,19.2,36.59,20.79,36.9666666667,18.89,36.0633333333,17.5,48.1266666667,4.26,59.89,20.5,28.46,21.7675,35.295,18.2,41.73,3.6,763.7,72,4,40,-1,27.4250964983,27.4250964983 -140,20,20.6333333333,36.6566666667,19.23,36.7666666667,20.79,37,18.9266666667,36.5,17.5,48,4.0266666667,60.8933333333,20.4266666667,28.6,21.79,35.4666666667,18.2,41.6633333333,3.4,763.8666666667,73.3333333333,3.8333333333,40,-0.95,44.6727600414,44.6727600414 -310,20,20.7,36.79,19.3566666667,36.9666666667,20.79,37,19,36.5,17.5,47.9333333333,3.7666666667,62.1666666667,20.39,28.73,21.89,35.7666666667,18.1333333333,41.6633333333,3.2,764.0333333333,74.6666666667,3.6666666667,40,-0.9,26.3026971603,26.3026971603 -290,20,20.79,36.8266666667,19.4266666667,37.23,20.79,37,19,36.1333333333,17.5,47.9,3.49,63.3,20.3233333333,28.79,21.89,35.9666666667,18.15,41.745,3,764.2,76,3.5,40,-0.85,33.6445827852,33.6445827852 -250,10,20.8566666667,37.0266666667,19.5666666667,37.43,20.79,37,19,36,17.5666666667,47.9,3.29,63.8933333333,20.29,28.79,21.89,36.1266666667,18.1,41.9333333333,2.8,764.3666666667,77.3333333333,3.3333333333,40,-0.8,2.1071004681,2.1071004681 -310,40,20.9266666667,39.9266666667,19.6,37.7,20.79,37.06,18.89,36.0966666667,17.5,47.9,3.0266666667,64.79,20.1975,28.79,21.89,36.2,18.1,42,2.6,764.5333333333,78.6666666667,3.1666666667,40,-0.75,17.4903689418,17.4903689418 -110,10,21,44.8666666667,19.6,37.9,20.76,37.2666666667,18.89,36.8233333333,17.5,47.9666666667,2.795,65.895,20.1,28.8566666667,21.9633333333,36.06,18.1,41.93,2.4,764.7,80,3,40,-0.7,8.737151511,8.737151511 -110,20,21.1,44.6,19.7,38.36,20.76,37.6,19.05,39.2,17.5,48.1566666667,2.6266666667,66.9233333333,20.0666666667,28.89,21.89,36,18.1,41.79,2.1833333333,764.8166666667,80.8333333333,3,40,-0.7833333333,26.1304661632,26.1304661632 -370,0,21.1666666667,42.3333333333,19.7,38.5,20.79,37.9333333333,19.2,40.3266666667,17.5,48.3633333333,2.56,67.5333333333,20,28.89,21.9266666667,36.6333333333,18.1,41.6333333333,1.9666666667,764.9333333333,81.6666666667,3,40,-0.8666666667,45.1484348858,45.1484348858 -140,30,21.29,40.7933333333,19.79,38.53,20.8566666667,38.06,19.26,40.4,17.5,48.5,2.4333333333,67.8666666667,19.9633333333,29,22,37.2333333333,18.1,41.36,1.75,765.05,82.5,3,40,-0.95,36.0443203128,36.0443203128 -440,30,21.29,40,19.8566666667,38.59,20.89,38.2,19.3933333333,40.3633333333,17.55,52.295,2.26,68.1933333333,19.89,29,22,37.6566666667,18.1666666667,40.6966666667,1.5333333333,765.1666666667,83.3333333333,3,40,-1.0333333333,13.8800404849,13.8800404849 -150,30,21.34,39.245,19.89,38.4666666667,20.89,38.1266666667,19.7933333333,40.0966666667,18.0933333333,67.7666666667,2.26,68.6666666667,19.79,29.0333333333,22.0666666667,37.93,18.1666666667,40.23,1.3166666667,765.2833333333,84.1666666667,3,40,-1.1166666667,16.3422148325,16.3422148325 -260,20,21.39,38.9333333333,19.9633333333,38.5266666667,21,38,20.4266666667,39.6,18.36,58.0266666667,2.26,68.8333333333,19.79,29.1,22.1,38.23,18.2,39.93,1.1,765.4,85,3,40,-1.2,35.5326432153,35.5326432153 -290,30,21.39,39.06,20,38.9633333333,21,38,20.9666666667,39.1933333333,18.5666666667,53.1,2.2,69.1666666667,19.76,29.1333333333,22.1,38.43,18.1333333333,39.73,1,765.55,85.5,2.8333333333,40,-1.2166666667,10.8522061375,10.8522061375 -110,20,21.5,39.1266666667,20,39.3633333333,21,38.03,21.4933333333,38.6,18.73,50.1566666667,2.06,70.0666666667,19.7,29.2,22.0666666667,38.16,18.1,39.56,0.9,765.7,86,2.6666666667,40,-1.2333333333,21.1359298555,21.1359298555 -100,30,21.5,39.2,20.0333333333,39.6566666667,21,38.09,21.8266666667,37.9933333333,18.8566666667,48.6966666667,1.9333333333,70.5933333333,19.6,29.2,22,37.6333333333,18.1,39.4333333333,0.8,765.85,86.5,2.5,40,-1.25,47.2410265007,47.2410265007 -100,30,21.5666666667,39.1266666667,20.1,39.845,21.0333333333,38.1566666667,21.79,37.26,18.9266666667,47.5566666667,1.76,71.3666666667,19.6,29.2,22,37.1,18.1,39.26,0.7,766,87,2.3333333333,40,-1.2666666667,12.2843451099,12.2843451099 -90,20,21.5666666667,39.1266666667,20.1,39.73,21.1,38.29,21.6633333333,37.1266666667,19,46.7566666667,1.5666666667,71.8933333333,19.5666666667,29.29,21.9266666667,36.6933333333,18.1,39.2,0.6,766.15,87.5,2.1666666667,40,-1.2833333333,2.4591914844,2.4591914844 -360,30,21.6,38.9,20.1,39.6633333333,21,38.2,21.4633333333,37.06,19.0333333333,46.0266666667,1.3566666667,73.0633333333,19.5,29.29,21.89,36.5,18.1,39.09,0.5,766.3,88,2,40,-1.3,26.6477211728,26.6477211728 -270,30,21.6,38.9,20.1,39.53,21,38.2,21.3233333333,36.9333333333,19.1,45.5666666667,1.29,74.0633333333,19.5,29.39,21.89,36.345,18.1,39.03,0.4,766.4166666667,88.3333333333,1.8333333333,40,-1.3333333333,9.9051045137,9.9051045137 -70,30,21.6,38.76,20.1,39.3633333333,20.89,38.23,21.29,37.03,19.1333333333,45.0266666667,1.1,74.0633333333,19.4266666667,29.3233333333,21.945,36.545,18.1,38.79,0.3,766.5333333333,88.6666666667,1.6666666667,40,-1.3666666667,28.3383057686,28.3383057686 -90,20,21.6,38.6266666667,20.1,39.3633333333,20.89,38.29,21.23,37.03,19.26,44.7666666667,0.9,74.8633333333,19.39,29.39,22,36.6266666667,18.025,38.6175,0.2,766.65,89,1.5,40,-1.4,22.4210258806,22.4210258806 -100,30,21.7,38.5,20.1,39.2,20.89,38.4,21.1,36.8333333333,19.23,44.43,0.55,74.845,19.39,29.39,22,36.7,18,38.5,0.1,766.7666666667,89.3333333333,1.3333333333,40,-1.4333333333,39.4873939222,39.4873939222 -100,30,21.7,38.4333333333,20.1,39.1266666667,20.89,38.4333333333,21.0333333333,36.6266666667,19.29,44.1566666667,-0.0666666667,75.0666666667,19.3566666667,29.39,22,36.79,18.0666666667,38.56,0,766.8833333333,89.6666666667,1.1666666667,40,-1.4666666667,16.2098851288,16.2098851288 -90,30,21.73,38.3633333333,20.1,39.06,20.9633333333,38.5,20.9633333333,36.7,19.39,43.7233333333,-0.2666666667,76.3333333333,19.29,29.4175,21.9266666667,36.79,18,38.36,-0.1,767,90,1,40,-1.5,20.798758138,20.798758138 -70,30,21.73,38.29,20.1,38.9333333333,20.9633333333,38.4,20.89,36.76,19.39,43.4633333333,-0.2333333333,77.3933333333,19.29,29.5,21.9266666667,36.9,18,38.26,-0.1833333333,767.1333333333,90.1666666667,1.1666666667,40,-1.5666666667,23.4262116253,23.4262116253 -70,30,21.7,38.29,20.0666666667,38.7233333333,20.89,38.4,20.89,37.395,19.39,43.2,-0.5,76.7933333333,19.29,29.6666666667,21.9266666667,36.9666666667,18,38.0666666667,-0.2666666667,767.2666666667,90.3333333333,1.3333333333,40,-1.6333333333,9.8493949976,9.8493949976 -80,20,21.7,38.43,20,38.7233333333,20.89,38.53,20.89,37.73,19.39,43.1266666667,-0.8666666667,76.7933333333,19.29,30.0666666667,21.9266666667,37.3,18,38.1933333333,-0.35,767.4,90.5,1.5,40,-1.7,43.1194422417,43.1194422417 -50,30,21.7,38.6266666667,19.9633333333,38.9333333333,20.89,38.59,20.89,37.8633333333,19.39,43.09,-1.0666666667,77.3933333333,19.29,30.3233333333,22,37.6933333333,18,38.4666666667,-0.4333333333,767.5333333333,90.6666666667,1.6666666667,40,-1.7666666667,4.8685776652,4.8685776652 -60,30,21.6333333333,38.6266666667,19.89,39.06,20.89,38.6566666667,20.89,38,19.39,43.09,-1.1,78.1333333333,19.29,30.53,21.9633333333,38.2266666667,18,38.5,-0.5166666667,767.6666666667,90.8333333333,1.8333333333,40,-1.8333333333,5.5135609116,5.5135609116 -50,30,21.6666666667,38.79,19.79,39.23,20.89,38.8633333333,20.8233333333,38,19.39,43.03,-1.1,78.9933333333,19.29,30.7633333333,21.89,38.6933333333,18,38.5,-0.6,767.8,91,2,40,-1.9,0.2734597307,0.2734597307 -50,30,21.6,38.8175,19.73,39.3633333333,20.9266666667,39.0666666667,20.8566666667,38.1633333333,19.3233333333,43,-1.23,78.59,19.29,31.03,21.89,39.1933333333,18,38.6266666667,-0.6,767.9333333333,91.1666666667,2,38.1666666667,-1.8833333333,43.0928081158,43.0928081158 -50,30,21.5333333333,38.9666666667,19.6666666667,39.5,21,39.2,20.79,38.1633333333,19.3233333333,43,-1.43,78.9233333333,19.26,31.2,21.89,39.4666666667,18,38.76,-0.6,768.0666666667,91.3333333333,2,36.3333333333,-1.8666666667,35.2054936346,35.2054936346 -40,30,21.5,39,19.6,39.56,21,39.23,20.79,38.3266666667,19.29,43,-1.4633333333,79.56,19.26,31.3266666667,21.8233333333,39.6566666667,18,38.8266666667,-0.6,768.2,91.5,2,34.5,-1.85,49.8397073476,49.8397073476 -60,30,21.5,39,19.5666666667,39.73,21,39.3633333333,20.93,38.5266666667,19.29,43,-1.1966666667,81.2933333333,19.26,31.5,21.89,39.8633333333,18,38.9,-0.6,768.3333333333,91.6666666667,2,32.6666666667,-1.8333333333,25.4680291051,25.4680291051 -60,30,21.4633333333,39,19.4266666667,39.79,21,39.3266666667,21.4266666667,38.6633333333,19.26,42.9666666667,-1.2633333333,80.4233333333,19.2,31.5,21.79,40.0666666667,18,39.03,-0.6,768.4666666667,91.8333333333,2,30.8333333333,-1.8166666667,36.5956512513,36.5956512513 -60,30,21.39,39,19.39,39.845,21,39.4666666667,21.9666666667,38.59,19.2,42.9,-1.53,79.8233333333,19.2,31.6333333333,21.79,40.245,18,39.09,-0.6,768.6,92,2,29,-1.8,42.6217149477,42.6217149477 -60,20,21.39,39.09,19.3566666667,40.03,21,39.53,22.26,38.16,19.26,43,-1.73,80.0633333333,19.2,31.76,21.76,40.4,18,39.2,-0.6,768.6666666667,91.3333333333,1.8333333333,28.5,-1.9,16.0227436339,16.0227436339 -60,30,21.39,39.09,19.23,40.03,21,39.53,22.1333333333,37.8266666667,19.2,43,-1.79,81.1175,19.2,31.8233333333,21.7,40.4666666667,18,39.26,-0.6,768.7333333333,90.6666666667,1.6666666667,28,-2,15.3143118136,15.3143118136 -60,30,21.29,39.09,19.2,40.1266666667,21,39.59,22.0666666667,37.76,19.2,43,-1.79,82.0266666667,19.2,31.89,21.6666666667,40.5,18,39.4333333333,-0.6,768.8,90,1.5,27.5,-2.1,4.9510634504,4.9510634504 -60,30,21.29,39.09,19.1333333333,40.2,21,39.59,21.9266666667,37.76,19.2,42.9333333333,-1.79,81.8966666667,19.1666666667,32,21.6,40.5,18,39.5675,-0.6,768.8666666667,89.3333333333,1.3333333333,27,-2.2,37.0747611742,37.0747611742 -50,10,21.29,39.09,19.0666666667,40.29,21,39.7,21.8566666667,37.9333333333,19.1,43,-1.79,81.69,19.1,32.06,21.55,40.745,18,39.6633333333,-0.6,768.9333333333,88.6666666667,1.1666666667,26.5,-2.3,39.1912288964,39.1912288964 -50,10,21.23,39.09,19,40.29,21,39.76,21.73,37.9333333333,19.1,43,-1.8266666667,81.7,19.1,32.09,21.5,41.1933333333,17.9266666667,39.7,-0.6,769,88,1,26,-2.4,34.3208359438,34.3208359438 -30,0,21.2,39.09,19,40.1633333333,21.0666666667,39.76,21.5666666667,37.7,18.9633333333,43.4566666667,-1.8266666667,81.56,19.1,32.1725,21.5,41.6,18,39.76,-0.7666666667,769.1,89.1666666667,1,25.5,-2.3833333333,35.6695410097,35.6695410097 -30,10,21.1333333333,39.03,18.9266666667,40.03,21.0666666667,39.79,21.4266666667,37.7,18.89,44.1233333333,-1.9633333333,80.8633333333,19.1,32.2,21.5,41.9633333333,18,39.9,-0.9333333333,769.2,90.3333333333,1,25,-2.3666666667,5.68578901,5.68578901 -30,10,21.1,38.9,18.8566666667,39.93,21,39.73,21.34,37.9,18.79,44.7566666667,-2.1633333333,80.7966666667,19.1,32.29,21.5,42.09,18,39.9666666667,-1.1,769.3,91.5,1,24.5,-2.35,36.551277258,36.551277258 -20,0,21.1,38.8266666667,18.79,39.73,21,39.8266666667,21.1666666667,37.9,18.79,45.2966666667,-2.26,81.5333333333,19.1,32.3633333333,21.39,42.03,18,40.03,-1.2666666667,769.4,92.6666666667,1,24,-2.3333333333,24.9407531577,24.9407531577 -60,10,21.0666666667,38.76,18.79,39.79,21,39.9,21.0333333333,37.9,18.7,45.7666666667,-2.2,81.9333333333,19.0666666667,32.26,21.39,42.2233333333,18,40.1633333333,-1.4333333333,769.5,93.8333333333,1,23.5,-2.3166666667,22.667075356,22.667075356 -50,10,21,38.6266666667,18.73,39.73,20.9633333333,39.9333333333,20.8566666667,37.9,18.7,46.175,-1.9,83.1333333333,19,32.26,21.39,42.53,18,40.2,-1.6,769.6,95,1,23,-2.3,47.1863897983,47.1863897983 -50,0,21,38.59,18.6666666667,39.79,20.9633333333,40,20.79,37.9,18.6333333333,46.4666666667,-1.9666666667,82.66,19,32.4,21.3233333333,42.59,18,40.26,-1.5666666667,769.65,95.1666666667,1,22.5,-2.2333333333,24.0383074735,24.0383074735 -40,10,20.9266666667,38.53,18.6,39.79,21,40,20.7,37.9333333333,18.6,46.6266666667,-2.03,82.56,19,32.4,21.3566666667,42.7666666667,18,40.3266666667,-1.5333333333,769.7,95.3333333333,1,22,-2.1666666667,8.0150168855,8.0150168855 -40,10,20.89,38.5,18.6,39.8266666667,21,40,20.6333333333,37.9333333333,18.6,46.8333333333,-2.09,82.3666666667,19,32.4,21.29,42.9,18,40.4,-1.5,769.75,95.5,1,21.5,-2.1,21.9631925109,21.9631925109 -50,0,20.8566666667,38.3633333333,18.6,39.9,21,40.03,20.5,37.9,18.5666666667,47.03,-2.2,82.33,19,32.4666666667,21.29,42.9333333333,18,40.5,-1.4666666667,769.8,95.6666666667,1,21,-2.0333333333,26.1965580401,26.1965580401 -50,10,20.79,38.29,18.5,39.9,21,40.09,20.4266666667,37.9,18.5,47.1633333333,-2.2,82.1233333333,18.9633333333,32.5,21.29,42.9333333333,18,40.5,-1.4333333333,769.85,95.8333333333,1,20.5,-1.9666666667,28.501654393,28.501654393 -40,10,20.79,38.29,18.5,39.8266666667,21,40.1266666667,20.3566666667,37.9,18.5,47.3266666667,-2.29,81.85,18.9633333333,32.5,21.26,42.93,17.9633333333,40.59,-1.4,769.9,96,1,20,-1.9,37.2271392844,37.2271392844 -60,0,20.73,38.29,18.39,39.79,21,40.2,20.29,37.9666666667,18.4266666667,47.4,-2.3266666667,82.1666666667,18.9633333333,32.5,21.2,42.73,17.9633333333,40.6633333333,-1.6,769.9,95,1,27.5,-2.25,41.1646874389,41.1646874389 -40,10,20.7,38.2,18.39,39.79,21,40.2,20.2,37.9,18.39,47.5,-2.4,81.76,18.89,32.5,21.2,42.7,18,40.7,-1.8,769.9,94,1,35,-2.6,20.3919395688,20.3919395688 -40,0,20.7,38.2,18.3233333333,39.79,21,40.2,20.2,37.9,18.39,47.56,-2.59,81.3666666667,18.89,32.53,21.1333333333,42.6266666667,18,40.76,-2,769.9,93,1,42.5,-2.95,31.148552883,31.148552883 -20,10,20.6,38.09,18.29,39.79,21,40.23,20.1,37.9,18.29,47.7,-2.6633333333,81.1,18.89,32.59,21.1,42.5,18,40.9,-2.2,769.9,92,1,50,-3.3,38.6034613708,38.6034613708 -20,10,20.6,38.09,18.29,39.79,21,40.29,20.0333333333,37.8266666667,18.29,47.76,-2.8266666667,80.83,18.89,32.59,21.1,42.5,18,40.925,-2.4,769.9,91,1,57.5,-3.65,32.8827509424,32.8827509424 -40,0,20.6,38.09,18.26,39.76,20.945,40.2,20,37.8266666667,18.29,47.8266666667,-2.9,81.1633333333,18.89,32.59,21.1,42.5,18,41,-2.6,769.9,90,1,65,-4,35.2886528824,35.2886528824 -50,10,20.5333333333,38.09,18.2,39.7,20.89,40.23,19.9266666667,37.9,18.29,47.9,-2.9333333333,80.9933333333,18.89,32.59,21.1,42.45,18,41.03,-2.65,769.9333333333,90.8333333333,1,62.5,-3.9333333333,6.5509839216,6.5509839216 -40,0,20.5,38.09,18.2,39.7,20.89,40.29,19.8566666667,37.8633333333,18.2,47.9,-3.06,81.06,18.84,32.59,21.1,42.4333333333,18,41.09,-2.7,769.9666666667,91.6666666667,1,60,-3.8666666667,10.090703622,10.090703622 -60,10,20.5,38.09,18.1333333333,39.7,20.89,40.29,19.79,37.79,18.2,47.9666666667,-2.9333333333,81.6333333333,18.8233333333,32.59,21.1,42.5,18,41.09,-2.75,770,92.5,1,57.5,-3.8,13.9384791953,13.9384791953 -60,10,20.5,38.09,18.1,39.7,20.89,40.29,19.79,37.745,18.2,48,-3.1333333333,80.8266666667,18.79,32.59,21.1,42.5,18,41.1633333333,-2.8,770.0333333333,93.3333333333,1,55,-3.7333333333,27.6809844654,27.6809844654 -50,0,20.4266666667,38.03,18.1,39.76,20.89,40.29,19.7,37.7,18.2,48.06,-3.29,80.69,18.79,32.59,21.0666666667,42.4666666667,17.9266666667,41.2,-2.85,770.0666666667,94.1666666667,1,52.5,-3.6666666667,31.6007854417,31.6007854417 -40,10,20.39,38,18.0666666667,39.76,20.89,40.29,19.7,37.7,18.2,48.09,-3.3633333333,80.69,18.79,32.59,21,42.4,17.9266666667,41.26,-2.9,770.1,95,1,50,-3.6,19.4021930103,19.4021930103 -50,0,20.39,38,18,39.76,20.89,40.29,19.6,37.59,18.2,48.1633333333,-3.5,80.9,18.79,32.59,21,42.3633333333,17.9633333333,41.29,-2.8833333333,770.1833333333,95.1666666667,0.8333333333,49.3333333333,-3.55,34.3731223955,34.3731223955 -40,10,20.29,38,17.9633333333,39.79,20.89,40.29,19.6,37.59,18.15,48.2,-3.36,81.4266666667,18.76,32.6633333333,21,42.29,17.9633333333,41.29,-2.8666666667,770.2666666667,95.3333333333,0.6666666667,48.6666666667,-3.5,33.9818667737,33.9818667737 -40,10,20.29,38,17.89,39.79,20.89,40.3266666667,19.5666666667,37.59,18.1666666667,48.23,-3.5,80.995,18.7,32.59,20.9266666667,42.29,17.9266666667,41.3266666667,-2.85,770.35,95.5,0.5,48,-3.45,17.8731592256,17.8731592256 -30,0,20.29,38,17.89,39.8266666667,20.89,40.4,19.5,37.59,18.1,48.29,-3.53,81.1266666667,18.7,32.7,20.9266666667,42.29,17.9266666667,41.4,-2.8333333333,770.4333333333,95.6666666667,0.3333333333,47.3333333333,-3.4,6.7135912715,6.7135912715 -20,10,20.2,37.9,17.8233333333,39.8266666667,20.89,40.4,19.5,37.59,18.1,48.29,-3.4633333333,81.8666666667,18.7,32.7,20.89,42.29,17.89,41.4,-2.8166666667,770.5166666667,95.8333333333,0.1666666667,46.6666666667,-3.35,18.3504305896,18.3504305896 -40,0,20.2,37.9,17.79,39.9,20.89,40.3266666667,19.4266666667,37.59,18.1,48.3633333333,-3.3266666667,82.49,18.7,32.7,20.89,42.29,17.89,41.4,-2.8,770.6,96,0,46,-3.3,22.8534233291,22.8534233291 -40,10,20.1666666667,37.9,17.79,39.8266666667,20.79,40.29,19.39,37.59,18.1,48.4,-3.5266666667,81.4233333333,18.7,32.7,20.89,42.2,17.89,41.4,-2.8666666667,770.6666666667,95.6666666667,0.1666666667,46,-3.4166666667,19.5526733412,19.5526733412 -50,10,20.1,37.9,17.79,39.845,20.79,40.29,19.39,37.59,18.0333333333,48.3266666667,-3.7666666667,80.8633333333,18.7,32.7,20.89,42.2,17.89,41.4666666667,-2.9333333333,770.7333333333,95.3333333333,0.3333333333,46,-3.5333333333,26.0016766377,26.0016766377 -50,0,20.1,37.9,17.7,39.9,20.79,40.29,19.3566666667,37.59,18.0666666667,48.3633333333,-3.9,80.73,18.7,32.7,20.89,42.1266666667,17.89,41.5,-3,770.8,95,0.5,46,-3.65,1.2272435008,1.2272435008 -40,10,20.1,37.9,17.7,39.9,20.79,40.29,19.29,37.59,18,48.29,-3.7,81.93,18.6,32.59,20.8233333333,42.1266666667,17.89,41.5,-3.0666666667,770.8666666667,94.6666666667,0.6666666667,46,-3.7666666667,31.1026857817,31.1026857817 -40,0,20,37.79,17.6666666667,39.9666666667,20.79,40.3266666667,19.29,37.59,18,48.3266666667,-3.8333333333,81.3966666667,18.6,32.59,20.8566666667,42.1633333333,17.89,41.53,-3.1333333333,770.9333333333,94.3333333333,0.8333333333,46,-3.8833333333,40.4388017487,40.4388017487 -50,20,20,37.79,17.6,39.9,20.79,40.4,19.29,37.59,18,48.4,-4.09,80.4966666667,18.6333333333,32.7,20.79,42.09,17.89,41.645,-3.2,771,94,1,46,-4,28.549348563,28.549348563 -50,10,19.9633333333,37.79,17.6666666667,40,20.79,40.4,19.2,37.4,17.9633333333,48.4,-4.1566666667,80.43,18.6333333333,32.6266666667,20.79,42.1566666667,17.9633333333,41.59,-3.25,771.1,93.6666666667,1,43.5,-4.1,38.1174181937,38.1174181937 -60,40,19.9633333333,37.79,17.6,40,20.76,40.26,19.2,37.4,17.9633333333,48.4,-4.06,80.8966666667,18.6,32.7,20.79,42.29,17.9633333333,41.7,-3.3,771.2,93.3333333333,1,41,-4.2,7.23110541,7.23110541 -60,20,19.9266666667,37.8266666667,17.5666666667,40.1266666667,20.7,40.1266666667,19.2,37.4633333333,17.89,48.4333333333,-3.86,81.63,18.6,32.7,20.7,42.245,17.89,41.7,-3.35,771.3,93,1,38.5,-4.3,38.7149099377,38.7149099377 -40,0,19.9266666667,37.9,17.5,40.26,20.7,39.9666666667,19.2,37.6633333333,17.89,48.5,-3.8266666667,82.0233333333,18.6,32.6266666667,20.7,42.06,17.89,41.56,-3.4,771.4,92.6666666667,1,36,-4.4,8.2559510251,8.2559510251 -40,0,19.89,37.8633333333,17.5,40.2233333333,20.6333333333,39.5666666667,19.2,37.54,17.89,48.0966666667,-4.0266666667,81.1633333333,18.5666666667,32.1233333333,20.7,41.86,17.89,41.5,-3.45,771.5,92.3333333333,1,33.5,-4.5,30.096348084,30.096348084 -40,0,19.8233333333,37.79,17.5,39.89,20.5666666667,38.93,19.2,36.9,17.9633333333,46.6966666667,-4.3,80.695,18.5,31.6633333333,20.6,41.1933333333,17.89,41.26,-3.5,771.6,92,1,31,-4.6,14.3642039387,14.3642039387 -50,0,19.79,37.76,17.4633333333,39.5266666667,20.5,38.73,19.1333333333,36.5,18,45.4966666667,-4.3,80.8933333333,18.4633333333,31.1933333333,20.6,40.8,17.8233333333,40.9266666667,-3.1666666667,771.7,92,1,36,-4.2666666667,12.9015640472,12.9015640472 -60,0,19.79,37.7,17.4633333333,39.4,20.39,38.4666666667,19.1,36.1633333333,18.0666666667,44.83,-4.16,81.7666666667,18.39,30.86,20.5,40.2966666667,17.8566666667,40.46,-2.8333333333,771.8,92,1,41,-3.9333333333,4.9881896935,4.9881896935 -520,0,19.79,37.6633333333,17.5,39.26,20.39,38.4,19.1,36.03,18.1,44.095,-3.8633333333,82.5,18.39,30.5666666667,20.5,39.9633333333,17.79,40,-2.5,771.9,92,1,46,-3.6,19.9179989635,19.9179989635 -690,0,19.79,37.7966666667,17.5,39.1266666667,20.29,38.39,19,35.6633333333,18.1,43.5266666667,-3.79,82.2933333333,18.3233333333,30.36,20.4633333333,39.6,17.79,39.6333333333,-2.1666666667,772,92,1,51,-3.2666666667,48.8259363687,48.8259363687 -420,0,19.7,38,17.5,39.1566666667,20.43,38.8633333333,18.9266666667,35.53,18.1,43.1933333333,-3.76,82.26,18.29,30.2266666667,20.39,39.3266666667,17.79,39.3,-1.8333333333,772.1,92,1,56,-2.9333333333,20.9872959298,20.9872959298 -310,0,19.7,37.9666666667,17.5,39.43,20.86,39.3266666667,18.89,35.4,18.1,43.09,-3.6266666667,82.5933333333,18.29,30.1,20.39,39.06,17.79,38.8333333333,-1.5,772.2,92,1,61,-2.6,26.4187315595,26.4187315595 -270,0,19.7,37.9666666667,17.5,39.59,21.1333333333,39.4,18.89,35.3266666667,18.1,43.03,-3.4666666667,82.56,18.29,30,20.3233333333,38.9333333333,17.79,38.5,-1.2666666667,772.2,93,1,61,-2.2333333333,38.8336856267,38.8336856267 -230,0,19.7,38,17.525,39.6725,21.36,39.3333333333,18.89,35.1633333333,18.1666666667,43,-3.3266666667,82.6266666667,18.29,29.9266666667,20.26,38.6633333333,17.79,38.5,-1.0333333333,772.2,94,1,61,-1.8666666667,17.1903708717,17.1903708717 -230,0,19.7,38,17.6,39.7,21.5666666667,39.1266666667,18.89,35.03,18.1666666667,42.9333333333,-3.0266666667,83.2566666667,18.29,29.79,20.2,38.53,17.79,38.5,-0.8,772.2,95,1,61,-1.5,3.1656239531,3.1656239531 -150,0,19.7,38.09,17.6333333333,39.73,21.73,38.8333333333,18.9266666667,35.2666666667,18.2,42.8633333333,-2.6933333333,83.7966666667,18.23,29.73,20.2,38.3633333333,17.79,38.26,-0.5666666667,772.2,96,1,61,-1.1333333333,21.1198375677,21.1198375677 -70,10,19.7,38.09,17.76,39.79,21.79,38.5,19.0666666667,35.5266666667,18.2,42.73,-2.1233333333,84.8233333333,18.29,29.79,20.2,38.245,17.73,38.1266666667,-0.3333333333,772.2,97,1,61,-0.7666666667,48.2942435658,48.2942435658 -100,0,19.79,38.23,17.86,39.7,21.8566666667,38.1,19.1333333333,35.59,18.2,42.56,-1.5233333333,85.3633333333,18.29,29.79,20.2,38.09,17.79,37.8333333333,-0.1,772.2,98,1,61,-0.4,17.3538920819,17.3538920819 -390,0,19.79,38.29,18.0666666667,39.7,21.6633333333,37.7666666667,19.2,35.6633333333,18.2,42.4333333333,-1,85.7266666667,18.29,29.89,20.2,38.03,17.79,37.595,0.2,772.2166666667,96.5,1.1666666667,61.5,-0.3333333333,25.7891207933,25.7891207933 -270,10,19.79,39.2,18.23,39.4,21.55,37.94,19.23,35.73,18.2,42.29,-0.6,86.06,18.29,29.89,20.1333333333,37.9666666667,17.79,37.4333333333,0.5,772.2333333333,95,1.3333333333,62,-0.2666666667,23.2044863165,23.2044863165 -280,0,19.79,39.1266666667,18.3566666667,39.1266666667,21.6333333333,38.4633333333,19.29,35.79,18.2,42.29,-0.2333333333,86.3666666667,18.29,29.89,20.1333333333,37.9,17.79,37.3633333333,0.8,772.25,93.5,1.5,62.5,-0.2,31.9523673155,31.9523673155 -260,0,19.89,39.4633333333,18.5666666667,39.09,21.76,38.53,19.39,35.7,18.23,42.29,0.075,86.5925,18.29,29.815,20.2,37.745,17.79,37.23,1.1,772.2666666667,92,1.6666666667,63,-0.1333333333,21.1678679916,21.1678679916 -240,10,19.89,39.6633333333,18.7,39.03,21.9266666667,38.4666666667,19.39,35.7,18.23,42.29,0.3333333333,86.83,18.29,29.79,20.2,37.76,17.8233333333,37.2666666667,1.4,772.2833333333,90.5,1.8333333333,63.5,-0.0666666667,22.0696999226,22.0696999226 -260,0,20,39.4333333333,18.79,38.6333333333,22.0666666667,38.3266666667,19.5,35.79,18.29,42.3633333333,0.5666666667,87.2266666667,18.39,29.7,20.2,37.6266666667,17.89,37.4,1.7,772.3,89,2,64,0,13.1798331393,13.1798331393 -190,0,20.0666666667,39.5,18.8566666667,38.56,22.23,37.9666666667,19.6,35.79,18.29,42.29,0.8333333333,87.3,18.39,29.7,20.2,37.43,17.89,37.59,1.9,772.2833333333,85.3333333333,2.3333333333,60,-0.45,0.9015827905,0.9015827905 -120,0,20.0333333333,39.53,19,38.5,22.29,37.6933333333,19.6,35.79,18.29,42.2,1.1333333333,87.2,18.4266666667,29.7,20.2,37.23,17.89,37.59,2.1,772.2666666667,81.6666666667,2.6666666667,56,-0.9,17.7532037371,17.7532037371 -70,0,20.1666666667,39.4633333333,19.0666666667,38.5,22.29,37.4,19.7,35.79,18.29,42.2,1.3266666667,87.06,18.5,29.7,20.2,37.06,17.89,37.53,2.3,772.25,78,3,52,-1.35,21.350446716,21.350446716 -50,0,20.23,39.1633333333,19.1333333333,38.3633333333,22.23,36.9266666667,19.76,35.79,18.34,42.1,1.5666666667,86.9333333333,18.5333333333,29.5666666667,20.2,36.9333333333,17.89,37.6633333333,2.5,772.2333333333,74.3333333333,3.3333333333,48,-1.8,11.5951845073,11.5951845073 -70,0,20.29,39.03,19.1333333333,37.7633333333,22.03,36.6,19.76,35.7,18.39,41.8333333333,1.7,86.4666666667,18.6,29.4266666667,20.23,36.76,17.9266666667,37.7,2.7,772.2166666667,70.6666666667,3.6666666667,44,-2.25,47.790106223,47.790106223 -40,0,20.29,37.6966666667,18.8566666667,35.43,21.8233333333,35.86,19.76,35.7,18.3233333333,41.2933333333,1.86,85.2333333333,18.73,29.39,20.29,36.6266666667,17.9266666667,37.7,2.9,772.2,67,4,40,-2.7,10.4013254168,10.4013254168 -40,0,20.315,36.8975,18.8566666667,35.5633333333,21.6666666667,35.1633333333,19.79,35.7,18.3233333333,40.3633333333,2.06,83.9666666667,18.93,29.3233333333,20.3233333333,36.43,18,37.79,3.0333333333,772.1166666667,66.6666666667,4,40,-2.65,47.5307860295,47.5307860295 -40,0,20.39,36.6266666667,19,35.9633333333,21.5333333333,35.09,19.8566666667,35.76,18.39,39.9633333333,2.23,80.36,19.0666666667,29.1666666667,20.4633333333,36.23,18,37.79,3.1666666667,772.0333333333,66.3333333333,4,40,-2.6,36.0825338284,36.0825338284 -60,0,20.5333333333,36.4666666667,19.0666666667,36.2233333333,21.39,35.1266666667,19.9266666667,35.7,18.39,39.79,2.3633333333,77.5,19.26,29.0333333333,20.6333333333,35.9666666667,18,38.2266666667,3.3,771.95,66,4,40,-2.55,45.5166400876,45.5166400876 -80,0,20.6,36.2666666667,19.15,36.4,21.3233333333,35.26,20,35.6266666667,18.39,39.73,2.6266666667,74.5633333333,19.46,28.79,20.76,35.8266666667,18,38.8933333333,3.4333333333,771.8666666667,65.6666666667,4,40,-2.5,14.8660123348,14.8660123348 -170,0,20.73,36.29,19.23,36.4633333333,21.29,35.23,20,35.59,18.4266666667,39.7,2.8333333333,72.1633333333,19.6666666667,28.79,20.96,35.6633333333,18,39.6333333333,3.5666666667,771.7833333333,65.3333333333,4,40,-2.45,45.9728918388,45.9728918388 -70,0,20.8566666667,36.29,19.29,36.53,21.29,35.43,20,35.53,18.5,39.76,3.03,70.43,19.8233333333,28.6,21.1,35.4633333333,18,40.0266666667,3.7,771.7,65,4,40,-2.4,46.4619131992,46.4619131992 -60,0,20.9266666667,36.33,19.3233333333,36.59,21.39,35.5666666667,20,35.5,18.5333333333,39.8266666667,3.09,68.83,19.9633333333,28.5333333333,21.3233333333,35.26,18,40.3,3.8166666667,771.6833333333,64,3.8333333333,40,-2.5166666667,22.5938659161,22.5938659161 -70,0,21.0666666667,36.53,19.39,36.59,21.39,35.7,20,35.5,18.6,39.9,3.345,66.85,20.1,28.4633333333,21.4633333333,35.1266666667,18.0333333333,40.53,3.9333333333,771.6666666667,63,3.6666666667,40,-2.6333333333,27.5076135295,27.5076135295 -60,0,21.1,36.4,19.4266666667,36.6266666667,21.29,35.845,20,35.5,18.6333333333,39.9,3.53,63.8633333333,20.1,28.39,21.6333333333,34.9666666667,18.1,40.59,4.05,771.65,62,3.5,40,-2.75,31.0426617041,31.0426617041 -70,0,21.1666666667,36.3266666667,19.5,36.7,21.29,35.9,19.9266666667,35.5,18.7,39.9,3.59,60.4566666667,20.2,28.26,21.7,34.7666666667,18.1,40.56,4.1666666667,771.6333333333,61,3.3333333333,40,-2.8666666667,40.4961865279,40.4961865279 -80,0,21.2,36.26,19.5,36.59,21.29,35.9,19.9633333333,35.4,18.7,39.8633333333,3.8266666667,59.5,20.2225,28.175,21.79,34.4666666667,18.1666666667,40.5,4.2833333333,771.6166666667,60,3.1666666667,40,-2.9833333333,15.0632749428,15.0632749428 -70,0,21.2,36.26,19.5,36.59,21.29,36.03,19.9175,35.4,18.7,39.79,3.9,58.4266666667,20.3566666667,28.0333333333,21.79,34.295,18.2,40.3633333333,4.4,771.6,59,3,40,-3.1,15.8257840201,15.8257840201 -70,0,21.29,36.26,19.5666666667,36.59,21.29,36.09,19.9266666667,35.3266666667,18.73,39.79,3.9333333333,57.03,20.5333333333,27.93,21.79,34.1266666667,18.2,40.29,4.4166666667,771.5,58.3333333333,3,40,-3.2166666667,29.9617187004,29.9617187004 -70,0,21.29,36.2,19.5666666667,36.6633333333,21.29,36,20,35.29,18.79,39.73,4.06,55.1566666667,20.6666666667,27.73,21.79,33.93,18.2,40.2,4.4333333333,771.4,57.6666666667,3,40,-3.3333333333,0.6225310382,0.6225310382 -30,0,21.39,36.06,19.6,36.73,21.29,36,20,35.23,18.79,39.7,4.1233333333,53.8333333333,20.8233333333,27.5666666667,21.8566666667,33.79,18.2,40.1266666667,4.45,771.3,57,3,40,-3.45,42.1894824482,42.1894824482 -30,0,21.4633333333,36,19.6,36.79,21.26,35.8633333333,20,35.1633333333,18.79,39.6266666667,4.19,51.3666666667,20.9633333333,27.4266666667,21.9266666667,33.56,18.2,40.06,4.4666666667,771.2,56.3333333333,3,40,-3.5666666667,25.3115364001,25.3115364001 -30,0,21.5333333333,35.8633333333,19.6333333333,36.73,21.26,35.79,20,35.03,18.84,39.645,4.3,51.13,21.1333333333,27.1666666667,22.0666666667,33.4333333333,18.26,40.06,4.4833333333,771.1,55.6666666667,3,40,-3.6833333333,43.5977228801,43.5977228801 -110,0,21.6,35.73,19.7,36.79,21.2,35.7,20.0333333333,35,18.9266666667,39.59,4.3,51.0566666667,21.26,27.0333333333,22.1333333333,33.1633333333,18.29,40.09,4.5,771,55,3,40,-3.8,43.5609002248,43.5609002248 -50,0,21.7,36.0966666667,19.7,36.7,21.2,35.7,20.1,34.9333333333,19,39.59,4.4,49.9333333333,21.4266666667,26.8266666667,22.26,33.09,18.29,40.09,4.5333333333,770.9666666667,54.3333333333,2.8333333333,40,-3.9333333333,19.8275425006,19.8275425006 -60,0,21.7,35.7725,19.7,36.2333333333,21.26,35.8333333333,20.0333333333,34.8266666667,19,39.0933333333,4.4666666667,49.9933333333,21.5,26.6333333333,22.4266666667,32.9666666667,18.29,40.2,4.5666666667,770.9333333333,53.6666666667,2.6666666667,40,-4.0666666667,23.4973089537,23.4973089537 -50,0,21.76,34.86,19.7,35.5266666667,21.2,35.5,20.1,34.8266666667,19,38.5666666667,4.5,47.2333333333,21.6333333333,26.39,22.5666666667,32.8266666667,18.29,40.2,4.6,770.9,53,2.5,40,-4.2,3.3193175448,3.3193175448 -50,0,21.79,34.73,19.76,35.4,21.23,35.2,20.1,34.76,19.0333333333,38.4,4.5,46.7,21.76,26.2633333333,22.6,32.6633333333,18.29,40.2,4.6333333333,770.8666666667,52.3333333333,2.3333333333,40,-4.3333333333,16.4312178036,16.4312178036 -50,0,21.79,34.73,19.84,35.45,21.29,35.2,20.1,34.6266666667,19.1,38.4,4.59,44.9666666667,21.89,26.03,22.6666666667,32.53,18.29,40.2,4.6666666667,770.8333333333,51.6666666667,2.1666666667,40,-4.4666666667,41.1384611041,41.1384611041 -40,0,21.79,34.79,19.9266666667,35.5,21.29,35.1633333333,20.1,34.5,19.1333333333,38.4,4.53,42.9666666667,21.9633333333,25.7633333333,22.7,32.3633333333,18.29,40.09,4.7,770.8,51,2,40,-4.6,30.1299169892,30.1299169892 -50,0,21.79,34.73,20,35.4333333333,21.29,35.09,20.1,34.4333333333,19.2,38.4,4.5,43.145,22,25.6333333333,22.76,32.23,18.29,40.09,4.6,770.7166666667,51.5,2.1666666667,40,-4.5833333333,44.9148648768,44.9148648768 -50,10,21.79,34.76,20,35.29,21.2,35.09,20.0666666667,34.3333333333,19.2,38.4,4.4,44.4666666667,22,25.36,22.76,32.06,18.34,40,4.5,770.6333333333,52,2.3333333333,40,-4.5666666667,25.2661219798,25.2661219798 -50,0,21.79,34.7,20,35.29,21.2,35.09,20,34.1266666667,19.26,38.4,4.26,44.7266666667,22,25.26,22.76,31.9266666667,18.39,40,4.4,770.55,52.5,2.5,40,-4.55,49.4485426345,49.4485426345 -60,0,21.79,34.6633333333,20,35.1633333333,21.2,35.045,20,33.9666666667,19.2,38.26,4.06,45.2666666667,22,25.1333333333,22.79,31.6666666667,18.39,39.9333333333,4.3,770.4666666667,53,2.6666666667,40,-4.5333333333,8.3775958163,8.3775958163 -40,0,21.79,34.53,20,35.03,21.2,35,20,33.6933333333,19.26,38.2,4,44.6666666667,22,24.9633333333,22.79,31.5333333333,18.39,39.9,4.2,770.3833333333,53.5,2.8333333333,40,-4.5166666667,9.7574471496,9.7574471496 -50,0,21.79,34.29,20,34.8633333333,21.2,35,19.9633333333,33.4666666667,19.2,37.9,3.9,44.9566666667,22,24.8233333333,22.79,31.39,18.39,39.9,4.1,770.3,54,3,40,-4.5,47.5635675713,47.5635675713 -50,0,21.79,34.29,20,34.79,21.2,34.9,19.89,33.4,19.2,37.9,3.9,45.29,22,24.79,22.79,31.39,18.39,39.79,3.75,770.2666666667,55.8333333333,3,40,-4.4,26.2962405919,26.2962405919 -50,0,21.76,34.3083333333,19.895,34.745,21.15,34.83,19.84,33.2,19.2,37.845,3.5466666667,46.4566666667,21.9633333333,24.695,22.745,31.31,18.39,39.79,3.4,770.2333333333,57.6666666667,3,40,-4.3,20.5481998506,20.5481998506 -60,0,21.73,34.3266666667,19.79,34.7,21.1,34.76,19.79,33,19.2,37.79,3.1933333333,47.6233333333,21.9266666667,24.6,22.7,31.23,18.39,39.79,3.05,770.2,59.5,3,40,-4.2,42.8113090224,42.8113090224 -40,0,21.7,34.3266666667,19.7,34.7,21.0333333333,34.76,19.79,32.9333333333,19.1333333333,37.79,2.7966666667,48.6966666667,21.8566666667,24.53,22.7,31.29,18.39,39.73,2.7,770.1666666667,61.3333333333,3,40,-4.1,3.2217380241,3.2217380241 -70,0,21.7,34.4,19.6333333333,34.6266666667,21,34.8266666667,19.73,32.9,19.1,37.9333333333,2.33,50.1566666667,21.73,24.39,22.6666666667,31.4266666667,18.3233333333,39.7,2.35,770.1333333333,63.1666666667,3,40,-4,18.6058177962,18.6058177962 -70,0,21.6,34.2,19.5666666667,34.7,20.9266666667,34.9666666667,19.73,32.9,19.1,38,1.7666666667,52.16,21.6666666667,24.4633333333,22.6,31.5666666667,18.3233333333,39.7,2,770.1,65,3,40,-3.9,4.5421355171,4.5421355171 -90,0,21.575,34.2225,19.5,34.7,20.89,34.9666666667,19.6666666667,33.06,19.1,38,1.2333333333,53.4933333333,21.6,24.4633333333,22.7,31.86,18.3566666667,39.56,1.85,770.1166666667,65.5,2.6666666667,40,-3.95,48.1086283573,48.1086283573 -90,0,21.5,34.29,19.5,34.86,20.8233333333,34.9666666667,19.6,33,19.1,37.9333333333,0.7,54.8333333333,21.4633333333,24.6333333333,22.7,32.1333333333,18.29,39.4333333333,1.7,770.1333333333,66,2.3333333333,40,-4,35.0890336791,35.0890336791 -100,0,21.5,34.3266666667,19.4725,35,20.8566666667,34.9666666667,19.5666666667,33.03,19.0333333333,37.79,0.225,56.3,21.39,24.8266666667,22.7,32.36,18.29,39.26,1.55,770.15,66.5,2,40,-4.05,2.5073549245,2.5073549245 -180,0,21.5,34.4,19.4633333333,35,20.8566666667,34.9666666667,19.5,33.09,19.1,37.73,-0.2,57.6333333333,21.3566666667,25.0666666667,22.7,32.56,18.29,39.1266666667,1.4,770.1666666667,67,1.6666666667,40,-4.1,45.9114791127,45.9114791127 -390,10,21.5,34.7333333333,19.5,35.09,20.89,35.09,19.5,33.1266666667,19.1333333333,37.56,-0.5666666667,59.3233333333,21.29,25.26,22.7,32.86,18.29,38.9666666667,1.25,770.1833333333,67.5,1.3333333333,40,-4.15,10.8502615476,10.8502615476 -370,20,21.5,35.9266666667,19.5,35.03,20.89,35.1633333333,19.4266666667,33.0666666667,19.2,37.4333333333,-0.8333333333,60.3233333333,21.1666666667,25.26,22.7,33.06,18.29,38.795,1.1,770.2,68,1,40,-4.2,43.5025029466,43.5025029466 -120,20,21.6,39.2566666667,19.6,35.6333333333,20.89,35.4633333333,19.39,33.4933333333,19.23,37.7933333333,-1.1633333333,61.1966666667,21.1,25.2,22.7,33.23,18.29,38.7,0.8833333333,770.15,69.1666666667,1,38.1666666667,-4.2,25.3086899174,25.3086899174 -100,10,21.6666666667,40.0566666667,19.6666666667,36.3,20.9725,36.145,19.39,34.1,19.3566666667,38.6666666667,-1.3566666667,62.4633333333,20.9633333333,25.39,22.7,33.1566666667,18.29,38.7,0.6666666667,770.1,70.3333333333,1,36.3333333333,-4.2,24.7734187986,24.7734187986 -120,30,21.73,38.8933333333,19.7,36.8266666667,21,36.7233333333,19.39,34.2,19.5333333333,39.2,-1.73,63.5266666667,20.8233333333,25.39,22.6,32.9633333333,18.29,38.7,0.45,770.05,71.5,1,34.5,-4.2,26.8982587149,26.8982587149 -120,30,21.79,39.0266666667,19.76,36.7666666667,21.0666666667,36.9,19.39,34.2,19.6,39.1266666667,-1.845,65.15,20.76,25.39,22.6,33.2233333333,18.29,38.53,0.2333333333,770,72.6666666667,1,32.6666666667,-4.2,41.3238792797,41.3238792797 -100,20,21.89,38.7566666667,19.79,36.6633333333,21,36.9,19.39,34.6,19.73,38.7666666667,-1.9225,66.37,20.675,25.4725,22.6,33.8,18.29,38.59,0.0166666667,769.95,73.8333333333,1,30.8333333333,-4.2,41.9599397341,41.9599397341 -90,20,21.89,37.4966666667,19.79,36.53,21,36.9,19.5,35.5,19.79,38.3,-2,67.59,20.6,25.5,22.6666666667,34.1933333333,18.29,38.53,-0.2,769.9,75,1,29,-4.2,39.2304644687,39.2304644687 -90,20,22,36.3633333333,19.89,36.4666666667,21,36.9,19.5666666667,35.8333333333,19.8233333333,37.8633333333,-2,68.0633333333,20.5,25.6,22.6666666667,34.3333333333,18.29,38.53,-0.45,769.8666666667,76.5,1,28.1666666667,-4.1833333333,33.2883090246,33.2883090246 -80,20,22,35.89,19.9633333333,36.1933333333,20.89,36.76,19.6333333333,35.9,19.9633333333,37.6566666667,-2.045,68.14,20.4266666667,25.5333333333,22.575,33.8975,18.29,38.6266666667,-0.7,769.8333333333,78,1,27.3333333333,-4.1666666667,26.7320583807,26.7320583807 -120,30,22,35.6633333333,20.1,36.06,20.8233333333,36.6266666667,19.7,35.4266666667,20,37.4666666667,-2.3228571429,68.6371428571,20.3566666667,25.6333333333,22.5,33.39,18.29,38.7,-0.95,769.8,79.5,1,26.5,-4.15,43.4131046408,43.4131046408 -110,20,22,35.53,20.1,35.9333333333,20.79,36.59,19.73,35.39,20.0666666667,37.4,-2.5145454545,69.7272727273,20.29,25.7,22.3566666667,32.9666666667,18.2,38.59,-1.2,769.7666666667,81,1,25.6666666667,-4.1333333333,25.654167321,25.654167321 -140,20,22.0333333333,35.26,20.2,35.9,20.79,36.59,19.79,35.4633333333,20.1,37.54,-2.5,70.29,20.26,25.76,22.29,32.9,18.2,38.7233333333,-1.45,769.7333333333,82.5,1,24.8333333333,-4.1166666667,11.4876860753,11.4876860753 -120,20,22.1,35.1266666667,20.26,35.9,20.8233333333,36.4,19.8233333333,35.5666666667,21.6666666667,80.7933333333,-2.5,70.83,20.2,25.7,22.29,33.0933333333,18.2,38.9,-1.7,769.7,84,1,24,-4.1,46.9885696308,46.9885696308 -110,30,22.1,34.8633333333,20.29,35.8633333333,20.89,36.4,20.0966666667,35.7,21.2,76.5333333333,-2.64,70.3725,20.1,25.7,22.23,34.0333333333,18.26,39.0266666667,-1.6666666667,769.6833333333,83.8333333333,1,24.1666666667,-4.0833333333,0.9756009676,0.9756009676 -100,10,22.1,34.695,20.29,35.73,20.89,36.29,20.7333333333,35.56,20.6333333333,76.0633333333,-2.8175,70.7975,20.0333333333,25.6333333333,22.245,34.375,18.2,38.93,-1.6333333333,769.6666666667,83.6666666667,1,24.3333333333,-4.0666666667,0.4044466536,0.4044466536 -110,0,22.1,34.59,20.39,35.6633333333,20.89,36.29,21.0666666667,35.2266666667,20.4266666667,74.0633333333,-3.0266666667,71.06,20,25.7,22.2,34.5,18.2,38.6566666667,-1.6,769.65,83.5,1,24.5,-4.05,2.9049199424,2.9049199424 -80,0,22.1,34.5,20.39,35.59,20.89,36.26,21.0666666667,34.4,21.2633333333,87.8333333333,-3.2,71.36,20,25.7,22.2,34.6566666667,18.2,38.4233333333,-1.5666666667,769.6333333333,83.3333333333,1,24.6666666667,-4.0333333333,28.3222259139,28.3222259139 -90,0,22.1,34.5,20.3233333333,35.59,20.89,36.1266666667,20.9266666667,34,21.1966666667,86.1,-3.2,72.3,19.89,25.7,22.2,34.93,18.26,38.2233333333,-1.5333333333,769.6166666667,83.1666666667,1,24.8333333333,-4.0166666667,15.6852412387,15.6852412387 -90,0,22.1,34.5,20.29,35.56,20.89,36.1266666667,20.76,33.5266666667,20.8266666667,81.93,-3.2666666667,72.4633333333,19.89,25.7,22.1666666667,35.1266666667,18.2,37.9666666667,-1.5,769.6,83,1,25,-4,17.1713759657,17.1713759657 -70,0,22.1,34.4333333333,20.29,35.5,20.89,36.1266666667,20.6333333333,33.1933333333,20.6333333333,78.93,-3.4,73.1966666667,19.79,25.7,22.1,35.2,18.2,37.7,-1.55,769.5166666667,83.3333333333,1,24.5,-4,0.6527728052,0.6527728052 -70,0,22.1,34.3633333333,20.2,35.4,20.89,36.09,20.5666666667,32.9666666667,20.43,75.5633333333,-3.36,73.73,19.79,25.7,22.0666666667,35.2,18.2,37.4333333333,-1.6,769.4333333333,83.6666666667,1,24,-4,2.02095313,2.02095313 -50,0,22.0333333333,34.23,20.2,35.3266666667,20.865,36.0675,20.4266666667,32.9,20.23,72.5633333333,-3.5,73.8633333333,19.7,25.79,22.0666666667,35.3333333333,18.2,37.2233333333,-1.65,769.35,84,1,23.5,-4,5.8862897451,5.8862897451 -40,10,22,34.09,20.2,35.2,20.79,36.06,20.3566666667,32.9333333333,20.1666666667,69.3666666667,-3.56,74.5333333333,19.7,25.79,22,35.6266666667,18.2,36.9633333333,-1.7,769.2666666667,84.3333333333,1,23,-4,12.1945148567,12.1945148567 -50,0,22,34.1633333333,20.0666666667,35.1266666667,20.6666666667,36.2,20.29,33.3333333333,20.0333333333,67.6333333333,-3.56,75,19.6333333333,26.3,22,35.9,18.2,37.5666666667,-1.75,769.1833333333,84.6666666667,1,22.5,-4,36.4564750111,36.4564750111 -50,0,21.9633333333,34.29,19.9633333333,35.03,20.6,36.3333333333,20.245,33.745,19.89,65.9666666667,-3.53,75.8,19.7,26.6333333333,21.9633333333,36.39,18.2,38.1,-1.8,769.1,85,1,22,-4,22.2230934771,22.2230934771 -60,0,21.89,34.3633333333,19.89,35.09,20.5,36.53,20.1666666667,34.1266666667,19.8233333333,64.3666666667,-3.7233333333,75.4,19.7,27.05,21.89,36.7233333333,18.2,38.59,-2,768.9833333333,85.5,1,29,-4.1333333333,46.7502752203,46.7502752203 -60,0,21.8566666667,34.7,19.79,35.1266666667,20.5,36.6633333333,20.1,34.3333333333,19.7,62.3966666667,-4.03,75.3566666667,19.7,27.3233333333,21.9266666667,37.4266666667,18.2,38.7233333333,-2.2,768.8666666667,86,1,36,-4.2666666667,16.1695371266,16.1695371266 -60,0,21.8566666667,34.76,19.73,35.26,20.5,36.8266666667,20,34.4333333333,19.6333333333,61.1233333333,-4.1566666667,75.6233333333,19.6333333333,27.4633333333,22,37.8333333333,18.2,38.9,-2.4,768.75,86.5,1,43,-4.4,32.0676698815,32.0676698815 -60,0,21.79,34.8633333333,19.6666666667,35.4,20.5,36.9666666667,20,34.56,19.6,59.8933333333,-4.2266666667,75.9633333333,19.6,27.6333333333,21.945,38.245,18.2,38.9666666667,-2.6,768.6333333333,87,1,50,-4.5333333333,41.8720725225,41.8720725225 -60,0,21.79,34.79,19.5333333333,35.4,20.5,37.03,19.9633333333,34.73,19.5333333333,59.1666666667,-4.375,76.0475,19.6,27.76,21.89,38.53,18.2,39,-2.8,768.5166666667,87.5,1,57,-4.6666666667,47.518229438,47.518229438 -60,0,21.76,34.86,19.5,35.4333333333,20.5,37.09,19.89,34.79,19.4633333333,58.0933333333,-4.4666666667,76.3,19.6,27.9266666667,21.89,38.7233333333,18.2,39.06,-3,768.4,88,1,64,-4.8,37.7014836762,37.7014836762 -60,0,21.7,35,19.4266666667,35.4333333333,20.39,37,19.79,34.8266666667,19.365,57.2225,-4.5,76.4,19.6,28.0666666667,21.8566666667,38.8633333333,18.2,39.09,-3.1166666667,768.25,88.6666666667,1.1666666667,63.8333333333,-4.8,26.7825662391,26.7825662391 -40,0,21.6,35.1266666667,19.3566666667,35.26,20.39,37.06,19.79,34.9,19.29,56.53,-4.56,76.5266666667,19.5666666667,28.23,21.79,38.8633333333,18.2,39.09,-3.2333333333,768.1,89.3333333333,1.3333333333,63.6666666667,-4.8,6.6684670164,6.6684670164 -50,0,21.6,35.3333333333,19.29,35.2,20.39,37.09,19.7,35,19.29,55.9,-4.4333333333,77.1666666667,19.5,28.3566666667,21.79,38.9,18.2,39.09,-3.35,767.95,90,1.5,63.5,-4.8,38.3438709192,38.3438709192 -40,0,21.55,35.45,19.26,35.2,20.3233333333,37.1633333333,19.7,35,19.23,55.5,-4.56,77.1666666667,19.5,28.5,21.73,38.9666666667,18.2,39.09,-3.4666666667,767.8,90.6666666667,1.6666666667,63.3333333333,-4.8,35.297419515,35.297419515 -50,0,21.5,35.5,19.1333333333,35.26,20.39,37.23,19.6,35,19.2,55.0266666667,-4.4666666667,78.0633333333,19.5,28.5666666667,21.76,39.23,18.2,39.09,-3.5833333333,767.65,91.3333333333,1.8333333333,63.1666666667,-4.8,35.5251808651,35.5251808651 -70,0,21.4266666667,35.36,19.1,35.6,20.39,37.29,19.6,34.9333333333,19.1333333333,54.7666666667,-4.3333333333,78.6633333333,19.5,28.7,21.7,39.49,18.2,39.1633333333,-3.7,767.5,92,2,63,-4.8,39.117846766,39.117846766 -60,0,21.39,35.3633333333,18.9633333333,35.6566666667,20.3233333333,37.3266666667,19.5666666667,35,19.1,54.5266666667,-4.1266666667,79.4966666667,19.5,28.76,21.7,39.86,18.2,39.29,-3.4833333333,767.3666666667,91,2.1666666667,56,-4.7333333333,40.0639728876,40.0639728876 -60,0,21.3233333333,35.29,18.89,35.8633333333,20.39,37.4,19.5,35,19.0333333333,54.1933333333,-3.9333333333,79.9566666667,19.4633333333,28.8233333333,21.7,40.1933333333,18.2,39.3725,-3.2666666667,767.2333333333,90,2.3333333333,49,-4.6666666667,5.8296794654,5.8296794654 -60,0,21.29,35.29,18.89,36.03,20.34,37.5,19.5,35,19,53.93,-3.76,80.5,19.39,28.89,21.6,40.5666666667,18.2,39.4,-3.05,767.1,89,2.5,42,-4.6,18.8954347395,18.8954347395 -50,0,21.29,35.29,18.8233333333,36.09,20.4266666667,37.6266666667,19.4266666667,34.9333333333,19,53.6566666667,-3.6266666667,80.7,19.39,28.9266666667,21.6,40.8333333333,18.2,39.53,-2.8333333333,766.9666666667,88,2.6666666667,35,-4.5333333333,20.1175369904,20.1175369904 -70,0,21.2,35.29,18.76,36.2,20.5,37.7,19.39,35,18.9633333333,53.5266666667,-3.5,80.69,19.39,29.0666666667,21.6,41.0666666667,18.2,39.59,-2.6166666667,766.8333333333,87,2.8333333333,28,-4.4666666667,40.131822566,40.131822566 -60,0,21.2,35.3633333333,18.7,36.26,20.5,37.7,19.39,34.9333333333,18.89,53.3266666667,-3.5,80.69,19.29,29.1,21.6,41.3333333333,18.2,39.59,-2.4,766.7,86,3,21,-4.4,47.5471772486,47.5471772486 -60,0,21.1,35.26,18.6666666667,36.4,20.5666666667,37.7,19.39,35,18.89,53.1633333333,-3.5,80.4333333333,19.29,29.1,21.5,41.6566666667,18.2,39.59,-2.5333333333,766.6333333333,86.3333333333,2.6666666667,20.8333333333,-4.5,42.3768313485,42.3768313485 -70,0,21.1,35.3333333333,18.6,36.4,20.6,37.7,19.3566666667,35,18.8233333333,52.9633333333,-3.595,80.025,19.29,29.245,21.5,41.93,18.2,39.6266666667,-2.6666666667,766.5666666667,86.6666666667,2.3333333333,20.6666666667,-4.6,34.6265942208,34.6265942208 -60,0,21.0666666667,35.3333333333,18.5666666667,36.5,20.6,37.7,19.29,35,18.79,52.76,-3.76,79.5333333333,19.29,29.29,21.5,42.1266666667,18.2,39.7,-2.8,766.5,87,2,20.5,-4.7,31.2049158034,31.2049158034 -40,0,21,35.2,18.5,36.56,20.6,37.73,19.29,35,18.79,52.6266666667,-3.9633333333,78.86,19.29,29.3566666667,21.5,42.4,18.2,39.6633333333,-2.9333333333,766.4333333333,87.3333333333,1.6666666667,20.3333333333,-4.8,40.9301408683,40.9301408683 -40,0,21,35.2,18.5,36.7,20.6,37.8633333333,19.23,34.9333333333,18.79,52.56,-4.1566666667,78.6666666667,19.2,29.29,21.5,42.5,18.2,39.6633333333,-3.0666666667,766.3666666667,87.6666666667,1.3333333333,20.1666666667,-4.9,11.6716659861,11.6716659861 -30,0,20.9266666667,35.2,18.4266666667,36.6266666667,20.6,38,19.2,34.9333333333,18.73,52.36,-4.4333333333,78.2633333333,19.2,29.3566666667,21.5,42.5,18.2,39.6266666667,-3.2,766.3,88,1,20,-5,48.0237275129,48.0237275129 -60,0,20.89,35.2,18.39,36.7,20.6,38,19.2,34.9333333333,18.7,52.2,-4.5,79.1233333333,19.2,29.3233333333,21.5,42.4333333333,18.2,39.6266666667,-3.1333333333,766.1833333333,87.6666666667,1.1666666667,20.1666666667,-4.9666666667,14.5081517287,14.5081517287 -60,0,20.8233333333,35.1266666667,18.39,36.7,20.5,38.09,19.2,34.9,18.7,52.1175,-4.3,80.3966666667,19.2,29.39,21.39,42.29,18.2,39.6266666667,-3.0666666667,766.0666666667,87.3333333333,1.3333333333,20.3333333333,-4.9333333333,27.5272234692,27.5272234692 -70,0,20.79,35.09,18.29,36.7666666667,20.5,38.1633333333,19.2,34.9,18.6333333333,51.9633333333,-4.3666666667,79.5966666667,19.2,29.4266666667,21.39,42.23,18.2,39.7,-3,765.95,87,1.5,20.5,-4.9,17.9088215111,17.9088215111 -70,0,20.79,35.09,18.29,36.8266666667,20.5333333333,38.1633333333,19.1666666667,35,18.6,51.8633333333,-4.59,79.0333333333,19.2,29.5,21.39,42.2,18.2,39.6266666667,-2.9333333333,765.8333333333,86.6666666667,1.6666666667,20.6666666667,-4.8666666667,30.2433838486,30.2433838486 -50,0,20.7,35.23,18.26,36.8633333333,20.6,38.09,19.1,34.9333333333,18.6,51.73,-4.53,79.56,19.1333333333,29.5333333333,21.39,42.2,18.2,39.7,-2.8666666667,765.7166666667,86.3333333333,1.8333333333,20.8333333333,-4.8333333333,10.5871147243,10.5871147243 -70,0,20.7,35.245,18.2,36.8725,20.6,38.1266666667,19.1,35,18.6,51.6633333333,-4.69,79.0333333333,19.1333333333,29.6,21.39,42.26,18.2,39.7,-2.8,765.6,86,2,21,-4.8,42.9968715296,42.9968715296 -50,0,20.7,35.3633333333,18.2,36.9,20.6,38.2,19.1,35,18.5333333333,51.59,-4.5633333333,80.3666666667,19.1,29.6,21.39,42.1266666667,18.2,39.7,-2.8333333333,765.5333333333,86,2,20.8333333333,-4.8333333333,21.8053370481,21.8053370481 -60,0,20.6,35.23,18.1,37,20.6,38.23,19,34.9,18.5,51.5,-4.6233333333,79.56,19.1,29.6,21.3566666667,42.06,18.2,39.7,-2.8666666667,765.4666666667,86,2,20.6666666667,-4.8666666667,25.1868784777,25.1868784777 -60,0,20.6,35.29,18.1,37,20.6,38.29,19,34.9,18.5,51.4333333333,-4.7633333333,79.0333333333,19.1,29.6333333333,21.3566666667,42,18.2,39.7,-2.9,765.4,86,2,20.5,-4.9,48.1477237656,48.1477237656 -60,0,20.5666666667,35.4,18.0333333333,36.9633333333,20.6,38.29,18.9633333333,34.9,18.4633333333,51.3333333333,-4.7633333333,79.3566666667,19.0333333333,29.6333333333,21.29,41.9,18.2,39.7,-2.9333333333,765.3333333333,86,2,20.3333333333,-4.9333333333,32.4796197703,32.4796197703 -70,0,20.5,35.4666666667,18.0333333333,37.03,20.6,38.29,18.89,34.9,18.39,51.1266666667,-4.7633333333,79.5633333333,19,29.6,21.29,41.8266666667,18.2,39.7,-2.9666666667,765.2666666667,86,2,20.1666666667,-4.9666666667,1.2912189006,1.2912189006 -40,0,20.5,35.5,18,37,20.6,38.29,18.9633333333,34.9,18.39,51.09,-4.64,79.945,19,29.6666666667,21.29,41.76,18.2,39.76,-3,765.2,86,2,20,-5,14.8513093707,14.8513093707 -40,0,20.5,35.5,18,37,20.7,38.5,18.89,34.9,18.39,50.9633333333,-4.7266666667,79.5233333333,19,29.7,21.29,41.7,18.1333333333,39.79,-3.0666666667,765.1333333333,86.3333333333,2,20,-5.0333333333,4.5280038845,4.5280038845 -40,0,20.39,35.4,17.89,37.03,20.7,38.5,18.89,34.845,18.3566666667,50.9666666667,-4.8666666667,79.0633333333,19,29.7,21.23,41.59,18.2,39.79,-3.1333333333,765.0666666667,86.6666666667,2,20,-5.0666666667,10.2691312088,10.2691312088 -50,0,20.39,35.4,17.89,37.09,20.6,38.4333333333,18.89,34.9,18.3566666667,50.9,-4.9,79.3,19,29.7,21.23,41.53,18.2,39.79,-3.2,765,87,2,20,-5.1,36.7368015344,36.7368015344 -60,0,20.39,35.4,17.89,37.09,20.6,38.5,18.89,34.8266666667,18.3566666667,50.8633333333,-5.0266666667,78.76,18.89,29.76,21.2,41.3633333333,18.2,39.8633333333,-3.2666666667,764.9333333333,87.3333333333,2,20,-5.1333333333,24.0697059664,24.0697059664 -60,0,20.39,35.4,17.8233333333,37.09,20.5,38.56,18.79,34.79,18.29,50.73,-5.06,78.8566666667,18.89,29.76,21.2,41.29,18.2,39.79,-3.3333333333,764.8666666667,87.6666666667,2,20,-5.1666666667,5.5654366384,5.5654366384 -60,0,20.29,35.4,17.79,37.09,20.5,38.56,18.79,34.79,18.29,50.6633333333,-5,79.2633333333,18.89,29.79,21.2,41.2,18.2,39.79,-3.4,764.8,88,2,20,-5.2,14.3391130725,14.3391130725 -60,0,20.29,35.4,17.79,37.09,20.5666666667,38.59,18.79,34.79,18.29,50.59,-5.03,78.9933333333,18.89,29.79,21.2,41.2,18.1,39.79,-3.55,764.6833333333,87.8333333333,1.8333333333,27.3333333333,-5.35,12.4464964494,12.4464964494 -70,0,20.26,35.4666666667,17.76,37.1266666667,20.5,38.59,18.79,34.79,18.29,50.5266666667,-5.1566666667,78.5333333333,18.89,29.79,21.15,41.09,18.1,39.8633333333,-3.7,764.5666666667,87.6666666667,1.6666666667,34.6666666667,-5.5,39.2163578654,39.2163578654 -50,0,20.2,35.4,17.7,37.1266666667,20.55,38.59,18.73,34.79,18.2675,50.45,-5.4,78.1,18.8233333333,29.73,21.2,41.09,18.1666666667,39.9,-3.85,764.45,87.5,1.5,42,-5.65,31.1756840209,31.1756840209 -70,0,20.2,35.4,17.7,37.1633333333,20.6,38.59,18.73,34.79,18.2,50.3266666667,-5.4,78.96,18.79,29.73,21.1333333333,41.09,18.1,39.9,-4,764.3333333333,87.3333333333,1.3333333333,49.3333333333,-5.8,12.9316300619,12.9316300619 -50,0,20.2,35.4,17.7,37.1633333333,20.6,38.53,18.7,34.79,18.2,50.2,-5.53,78.73,18.79,29.73,21.1666666667,41.09,18.1,39.9333333333,-4.15,764.2166666667,87.1666666667,1.1666666667,56.6666666667,-5.95,40.3863498359,40.3863498359 -70,10,20.1666666667,35.4333333333,17.6666666667,37.1633333333,20.5666666667,38.6266666667,18.7,34.73,18.2,50.1266666667,-5.4633333333,79.79,18.79,29.6233333333,21.1,41.09,18.1666666667,39.9333333333,-4.3,764.1,87,1,64,-6.1,10.8842937509,10.8842937509 -60,30,20.1,35.75,17.6,36.8975,20.5,38.6266666667,18.7,34.56,18.2,48.3933333333,-5.4333333333,79.7333333333,18.73,29.0233333333,21.1,40.7966666667,18.1,39.79,-4.3166666667,763.9833333333,87.6666666667,1,63.8333333333,-6.0166666667,40.6576342531,40.6576342531 -50,20,20.1,35.5666666667,17.6,36.5666666667,20.5,38.4666666667,18.7,34.2266666667,18.2,48.1333333333,-5.56,78.86,18.7,28.53,21.0333333333,40.13,18.1,39.6566666667,-4.3333333333,763.8666666667,88.3333333333,1,63.6666666667,-5.9333333333,9.1827286757,9.1827286757 -60,10,20,35.1633333333,17.5,36.1333333333,20.4266666667,38.1333333333,18.7,34.1333333333,18.2,48.16,-5.69,79.15,18.6333333333,28.1966666667,20.9633333333,39.43,18.1,39.345,-4.35,763.75,89,1,63.5,-5.85,21.1068417178,21.1068417178 -70,10,20,34.89,17.5,35.9333333333,20.39,37.8333333333,18.7,34.06,18.2,46.7666666667,-5.66,78.93,18.6,27.93,20.8766666667,38.90125,18.0666666667,38.99,-4.3666666667,763.6333333333,89.6666666667,1,63.3333333333,-5.7666666667,43.5227477807,43.5227477807 -60,0,20,34.8,17.5,35.9333333333,20.315,37.625,18.7,33.9,18.29,45.13,-5.712,78.858,18.5333333333,27.6633333333,20.79,38.3725,18,38.73,-4.3833333333,763.5166666667,90.3333333333,1,63.1666666667,-5.6833333333,13.695278042,13.695278042 -60,0,20,35,17.5,36.1333333333,20.2257142857,37.1785714286,18.7,33.7666666667,18.29,44.13,-5.6233333333,79.6666666667,18.5666666667,27.4633333333,20.772,38.176,18.0666666667,38.5266666667,-4.4,763.4,91,1,63,-5.6,17.5276706577,17.5276706577 -60,0,20,35.2966666667,17.5,36.29,20.2,37.054,18.7633333333,33.89,18.29,43.1233333333,-5.4666666667,80.5633333333,18.5,27.3233333333,20.7,37.7957142857,18,38.2666666667,-4.15,763.3,90.6666666667,1.3333333333,63.1666666667,-5.4166666667,21.5523555642,21.5523555642 -60,10,19.9266666667,35.1633333333,17.4266666667,36.29,20.2,36.9857142857,19.17,34.24,18.29,42.53,-5.4,80.23,18.5,27.2,20.6,37.4,18.1,38.0266666667,-3.9,763.2,90.3333333333,1.6666666667,63.3333333333,-5.2333333333,13.8248349656,13.8248349656 -60,0,19.9633333333,35.3333333333,17.4633333333,36.3633333333,20.14,36.798,19.53,34.43,18.2,43.2266666667,-5.4666666667,79.66,18.4266666667,27.0666666667,20.6,37.3242857143,18.1,37.7666666667,-3.65,763.1,90,2,63.5,-5.05,9.3361930107,9.3361930107 -50,0,19.9633333333,35.1266666667,17.39,36.29,20.1,36.79,19.6,34.5266666667,18.26,44.36,-5.4,79.66,18.39,26.84,20.56,37.076,18,37.43,-3.4,763,89.6666666667,2.3333333333,63.6666666667,-4.8666666667,22.5125760073,22.5125760073 -50,10,19.89,34.8633333333,17.4633333333,36.2233333333,20.2,36.736,19.6,34.3266666667,18.4266666667,50.6666666667,-5.2,80.5633333333,18.39,26.76,20.5,36.958,18,37.1566666667,-3.15,762.9,89.3333333333,2.6666666667,63.8333333333,-4.6833333333,29.9615715863,29.9615715863 -60,0,19.89,34.79,17.39,35.9633333333,20.2128571429,36.78,19.4633333333,33.7966666667,18.5666666667,50.9333333333,-4.7933333333,81.6966666667,18.3233333333,26.7,20.5,36.79,18,36.8333333333,-2.9,762.8,89,3,64,-4.5,15.7328561414,15.7328561414 -80,0,19.8566666667,34.6633333333,17.39,35.76,20.29,36.9,19.39,33.4633333333,18.5666666667,50,-4.33,82.3333333333,18.3566666667,26.7,20.456,36.59,18,36.5666666667,-2.55,762.6833333333,88,2.6666666667,64.1666666667,-4.3166666667,22.3698178655,22.3698178655 -80,0,19.79,34.53,17.39,35.5666666667,20.272,36.878,19.29,33.2233333333,18.5,48.745,-4.0633333333,82.3333333333,18.29,26.8266666667,20.39,36.59,17.89,36.2333333333,-2.2,762.5666666667,87,2.3333333333,64.3333333333,-4.1333333333,47.6321821334,47.6321821334 -30,10,19.79,34.26,17.5,35.2233333333,20.2,36.696,19.23,32.89,18.395,47.895,-3.8322222222,82.5066666667,18.4266666667,28.3633333333,20.35,36.047,17.89,35.6933333333,-1.85,762.45,86,2,64.5,-3.95,28.8891987526,28.8891987526 -80,0,19.79,34.1266666667,17.5,35.09,20.1285714286,36.2385714286,19.23,32.7,18.29,47.045,-3.545625,82.53375,18.5666666667,29.03,20.37,35.9,17.89,35.56,-1.5,762.3333333333,85,1.6666666667,64.6666666667,-3.7666666667,37.682129757,37.682129757 -20,0,19.76,33.9,17.5333333333,34.76,19.956,35.79,19.29,32.76,18.2257142857,46.6528571429,-3.2816666667,82.6983333333,18.5,28.9,20.29,35.2933333333,17.8233333333,34.5,-1.15,762.2166666667,84,1.3333333333,64.8333333333,-3.5833333333,32.2735405294,32.2735405294 -100,0,19.7,33.8266666667,17.6666666667,34.7,19.9214285714,35.79,19.29,32.8266666667,18.2,46.1242857143,-2.83,83.1266666667,18.4266666667,28.5666666667,20.29,35.7666666667,17.53,33.4,-0.8,762.1,83,1,65,-3.4,11.670641345,11.670641345 -50,0,19.7,33.79,17.8233333333,34.5,19.89,35.812,19.3566666667,32.9666666667,18.2,45.61,-2.3,83.35,18.39,28.2266666667,20.2225,35.9,17.39,33.1933333333,-0.5166666667,761.9833333333,81.8333333333,1,57.6666666667,-3.3166666667,16.5197533555,16.5197533555 -100,0,19.7,33.8175,17.9975,34.32,19.89,35.9285714286,19.39,32.9633333333,18.2,45.2828571429,-1.8333333333,83.6233333333,18.39,28.0333333333,20.2,35.8266666667,17.5,34.6333333333,-0.2333333333,761.8666666667,80.6666666667,1,50.3333333333,-3.2333333333,30.9354337631,30.9354337631 -80,0,19.7,34.0266666667,18.2266666667,34.26,19.89,36.09,19.39,33.09,18.16,45.59,-1.5666666667,83.7633333333,18.3233333333,27.7266666667,20.2,35.6633333333,17.5,35.5,0.05,761.75,79.5,1,43,-3.15,6.2888705754,6.2888705754 -60,0,19.7,34.1933333333,18.3233333333,34.4333333333,19.9842857143,36.09,19.5,33.2,18.1,45.59,-1.3266666667,83.9633333333,18.3233333333,27.5333333333,20.2,35.59,17.6,35.545,0.3333333333,761.6333333333,78.3333333333,1,35.6666666667,-3.0666666667,30.0831938512,30.0831938512 -80,10,19.7,34.4666666667,18.53,34.56,19.956,36.112,19.5,33.26,18.1,45.572,-1,84.2966666667,18.3566666667,27.26,20.2,35.4666666667,17.6333333333,35.6566666667,0.6166666667,761.5166666667,77.1666666667,1,28.3333333333,-2.9833333333,26.8479136401,26.8479136401 -90,0,19.7,34.73,18.6333333333,35.1566666667,20,36.2,19.5,33.29,18.1,45.5,-0.6333333333,84.6233333333,18.3566666667,27.2,20.2,35.3266666667,17.7,35.79,0.9,761.4,76,1,21,-2.9,43.4850156889,43.4850156889 -70,0,19.76,34.99,18.76,35.5633333333,20,36.156,19.5,33.3633333333,18.1,45.4,-0.3666666667,84.83,18.39,27.1666666667,20.1,35.0425,17.73,35.79,1.0833333333,761.2666666667,75.3333333333,1.1666666667,21.3333333333,-2.8333333333,37.2849087114,37.2849087114 -50,0,19.79,36.0333333333,18.8233333333,35.5,20,36.1528571429,19.6,33.4333333333,18.0142857143,45.3057142857,-0.1333333333,84.6233333333,18.4633333333,27.1,20.1666666667,34.8266666667,17.79,35.73,1.2666666667,761.1333333333,74.6666666667,1.3333333333,21.6666666667,-2.7666666667,18.9119998831,18.9119998831 -60,0,19.8566666667,37.5666666667,18.9633333333,35.5,20.06,36.358,19.6,33.5,18,45.376,0.1333333333,84.8966666667,18.5,27.0666666667,20.2,34.7,17.79,35.682,1.45,761,74,1.5,22,-2.7,39.9852773407,39.9852773407 -120,0,20,38.6,19.0333333333,35.6266666667,20.1,36.6685714286,19.6,33.5,18,45.515,0.44,84.816,18.5,27,20.2,34.5666666667,17.79,35.634,1.6333333333,760.8666666667,73.3333333333,1.6666666667,22.3333333333,-2.6333333333,39.7599164629,39.7599164629 -40,10,20,37.6666666667,19.1,35.76,20.125,36.9,19.6333333333,33.7666666667,18,45.59,0.7,84.65,18.65,26.89,20.2,34.3333333333,17.79,35.6633333333,1.8166666667,760.7333333333,72.6666666667,1.8333333333,22.6666666667,-2.5666666667,43.2818949688,43.2818949688 -90,0,20.1,38.0633333333,19.1,35.79,20.2,37,19.7,34.16,17.9633333333,45.59,0.8714285714,84.4414285714,18.73,26.89,20.2,34.1266666667,17.79,35.776,2,760.6,72,2,23,-2.5,43.9990609419,43.9990609419 -50,0,20.1,37.3233333333,19.1,35.73,20.0571428571,36.7685714286,19.73,34.5666666667,17.89,45.645,1.098,84.12,18.79,26.8233333333,20.29,34.06,17.8566666667,35.9666666667,2.1,760.4166666667,71.6666666667,2,22.6666666667,-2.4833333333,36.1561695579,36.1561695579 -30,10,20.1,36.6933333333,19.1,35.3333333333,20,36.814,19.79,34.96,17.89,45.59,1.4685714286,83.6,18.89,26.79,20.29,34,17.89,36.0966666667,2.2,760.2333333333,71.3333333333,2,22.3333333333,-2.4666666667,48.7969457987,48.7969457987 -60,0,20.1,36.7666666667,19.1,35.2,20,37.5257142857,19.73,35.3333333333,17.89,45.53,1.736,81.914,18.89,26.73,20.3566666667,33.9,17.89,36.29,2.3,760.05,71,2,22,-2.45,25.7648167084,25.7648167084 -40,0,20.2,36.5266666667,19.2,35.2,20,38.054,19.73,35.2,17.89,45.3633333333,1.9542857143,81.2671428571,18.89,26.7,20.29,33.9,17.89,36.5,2.4,759.8666666667,70.6666666667,2,21.6666666667,-2.4333333333,24.2800296284,24.2800296284 -50,0,20.2,36.1933333333,19.2,35.1266666667,20,38.0257142857,19.7,35.1333333333,17.89,45.29,2.156,80.118,18.9633333333,26.7,20.39,33.76,17.89,36.9,2.5,759.6833333333,70.3333333333,2,21.3333333333,-2.4166666667,27.8622903512,27.8622903512 -60,0,20.29,35.8633333333,19.2,35,20,37.98,19.7,34.86,17.89,45.26,2.2257142857,77.5257142857,19.0333333333,26.7,20.4633333333,33.76,17.89,37.6933333333,2.6,759.5,70,2,21,-2.4,26.4184039086,26.4184039086 -50,0,20.29,35.5966666667,19.2,34.9333333333,20,37.9428571429,19.6,34.49,17.89,45.1266666667,2.29,75.1875,19.1666666667,26.7,20.5333333333,33.6633333333,17.89,38.1,2.7333333333,759.3333333333,69.5,1.8333333333,21.6666666667,-2.3666666667,22.9061252205,22.9061252205 -60,0,20.39,35.2233333333,19.2,34.6633333333,20.06,37.96,19.6,34.23,17.84,44.995,2.4,73.074,19.23,26.7,20.6666666667,33.59,17.9266666667,38.1933333333,2.8666666667,759.1666666667,69,1.6666666667,22.3333333333,-2.3333333333,44.5656991331,44.5656991331 -80,10,20.4633333333,35.03,19.2,34.59,20,37.9,19.6,34.06,17.8566666667,44.8633333333,2.5371428571,72.5542857143,19.29,26.6333333333,20.84,33.545,18,37.86,3,759,68.5,1.5,23,-2.3,7.4030567543,7.4030567543 -100,0,20.5,34.95,19.26,34.59,20.02,37.816,19.6,33.9333333333,17.79,44.7514285714,2.6633333333,71.36,19.4266666667,26.6333333333,21.1333333333,33.79,18,38.03,3.1333333333,758.8333333333,68,1.3333333333,23.6666666667,-2.2666666667,30.6238987134,30.6238987134 -100,0,20.6,34.79,19.29,34.4,20.1,37.5957142857,19.6,33.79,17.79,44.7,2.8266666667,69.5,19.5,26.6333333333,21.26,33.93,18,38.195,3.2666666667,758.6666666667,67.5,1.1666666667,24.3333333333,-2.2333333333,3.4434279543,3.4434279543 -90,0,20.6,34.73,19.29,34.4,20.1,37.356,19.6,33.79,17.8042857143,44.6057142857,2.9,68.1666666667,19.6333333333,26.6,21.39,34.1266666667,18,38.3633333333,3.4,758.5,67,1,25,-2.2,29.2714400333,29.2714400333 -100,0,20.6333333333,34.7,19.29,34.4,20.1,37.2228571429,19.6,33.6633333333,17.83,44.536,2.9333333333,67.4666666667,19.76,26.6,21.4633333333,34.3333333333,18.1,38.4333333333,3.4833333333,758.3666666667,67,1.1666666667,24.3333333333,-2.1333333333,28.2844572212,28.2844572212 -100,0,20.7,34.6266666667,19.29,34.4,20.1,37.016,19.6666666667,33.6633333333,17.79,44.4714285714,3.06,67.4666666667,19.9266666667,26.5666666667,21.6333333333,34.5666666667,18.1,38.5,3.5666666667,758.2333333333,67,1.3333333333,23.6666666667,-2.0666666667,45.774197171,45.774197171 -50,0,20.79,34.4666666667,19.39,34.4333333333,20.1714285714,36.8685714286,19.6,33.56,17.79,44.4,3.23,67.1266666667,20.0666666667,26.5,21.7,34.7,18.1,38.53,3.65,758.1,67,1.5,23,-2,7.4809534824,7.4809534824 -50,0,20.8566666667,34.4666666667,19.39,34.4333333333,20.1,36.656,19.65,33.545,17.79,44.3371428571,3.29,66.5333333333,20.23,26.5,21.89,34.79,18.1,38.59,3.7333333333,757.9666666667,67,1.6666666667,22.3333333333,-1.9333333333,40.6173878,40.6173878 -40,0,20.9266666667,34.4333333333,19.4266666667,34.53,20.1571428571,36.3928571429,19.6666666667,33.5,17.79,44.356,3.3633333333,65.8666666667,20.3566666667,26.4266666667,21.89,34.79,18.1,38.49,3.8166666667,757.8333333333,67,1.8333333333,21.6666666667,-1.8666666667,33.7652419345,33.7652419345 -50,0,21,34.2266666667,19.5,34.4633333333,20.18,36.25,19.7,33.5,17.79,44.4,3.43,66.06,20.5,26.29,22,34.5266666667,18.1,38.3633333333,3.9,757.7,67,2,21,-1.8,25.3493514028,25.3493514028 -60,0,21,34,19.5,34.26,20.1,36.0257142857,19.6333333333,33.4333333333,17.79,44.29,3.6566666667,65.2,20.5333333333,26.1666666667,22.0666666667,34.3266666667,18.1,38.4,3.75,757.6333333333,68,2,21.1666666667,-1.7333333333,36.9586450164,36.9586450164 -50,0,21,34,19.5,34.1266666667,20.2,35.856,19.6,33.3633333333,17.79,44.15,3.73,64.2,20.6,26.0333333333,22.2,34.06,18.1,38.4666666667,3.6,757.5666666667,69,2,21.3333333333,-1.6666666667,2.5572101236,2.5572101236 -60,0,21.1,34,19.5666666667,34.06,20.2,35.79,19.6,33.29,17.79,44.09,3.79,64.0633333333,20.6,25.89,22.2,33.9333333333,18.1,38.53,3.45,757.5,70,2,21.5,-1.6,49.2658129078,49.2658129078 -60,0,21.1,33.9333333333,19.5,34,20.2,35.714,19.6,33.2,17.79,44.0257142857,3.8633333333,64.33,20.6,25.89,22.2,33.76,18.1,38.59,3.3,757.4333333333,71,2,21.6666666667,-1.5333333333,23.001235479,23.001235479 -60,0,21,33.79,19.5,34,20.2642857143,35.6685714286,19.6,33.2,17.79,43.9,4.16,63.96,20.5,25.89,22.2,33.7,18.1,38.59,3.15,757.3666666667,72,2,21.8333333333,-1.4666666667,37.7706711181,37.7706711181 -60,0,21,33.79,19.5,34,20.2675,35.60875,19.5,33.26,17.7771428571,43.8842857143,4.4,63.25,20.4266666667,25.8233333333,22.1,33.6633333333,18.1,38.59,3,757.3,73,2,22,-1.4,43.5343018733,43.5343018733 -50,0,21,33.79,19.39,33.9,20.2,35.5,19.5,33.2,17.7,43.79,4.5,62.6933333333,20.3566666667,25.8233333333,22.0333333333,33.59,18.1,38.59,2.9333333333,757.2166666667,73.6666666667,2.1666666667,21.8333333333,-1.35,27.4341322831,27.4341322831 -70,0,21,33.73,19.3233333333,33.9,20.2,35.4714285714,19.39,33.09,17.7385714286,43.7642857143,4.5,62.3,20.23,25.8233333333,21.9633333333,33.6266666667,18.1,38.59,2.8666666667,757.1333333333,74.3333333333,2.3333333333,21.6666666667,-1.3,15.2305628289,15.2305628289 -90,0,20.89,33.59,19.29,33.9,20.2,35.44,19.39,33.2233333333,17.754,43.656,4.4333333333,61.9666666667,20.1666666667,25.8233333333,21.89,33.76,18.1,38.59,2.8,757.05,75,2.5,21.5,-1.25,22.191408684,22.191408684 -100,0,20.89,33.59,19.2225,33.8175,20.2,35.4,19.39,33.4333333333,17.7,43.5514285714,4.1566666667,61.6666666667,20.1,25.9633333333,21.89,34.03,18.0333333333,38.53,2.7333333333,756.9666666667,75.6666666667,2.6666666667,21.3333333333,-1.2,0.5249021691,0.5249021691 -100,0,20.84,33.45,19.2,33.79,20.2,35.356,19.3233333333,33.56,17.7,43.536,4.03,62.3933333333,20,26.0333333333,21.9725,34.2675,18,38.5,2.6666666667,756.8833333333,76.3333333333,2.8333333333,21.1666666667,-1.15,10.9213197022,10.9213197022 -100,0,20.79,33.5,19.2,33.8266666667,20.1714285714,35.29,19.29,33.7666666667,17.7,43.5642857143,3.9666666667,62.9333333333,20,26.2266666667,22,34.4666666667,18,38.5,2.6,756.8,77,3,21,-1.1,30.4114751867,30.4114751867 -80,0,20.79,33.56,19.2,33.9,20.14,35.272,19.29,33.9,17.7,43.5,3.8266666667,63.06,19.89,26.39,22.0666666667,34.73,18,38.56,2.4333333333,756.7333333333,78.1666666667,2.8333333333,28.1666666667,-1.05,24.6302029351,24.6302029351 -70,0,20.76,33.6266666667,19.1,33.9333333333,20.1,35.2385714286,19.26,33.9666666667,17.6857142857,43.47,3.6633333333,63.6933333333,19.8233333333,26.3233333333,22.0666666667,34.93,18,38.6266666667,2.2666666667,756.6666666667,79.3333333333,2.6666666667,35.3333333333,-1,13.3456723182,13.3456723182 -70,0,20.7,33.76,19.1,34.06,20.1,35.2,19.2,33.9666666667,17.675,43.3725,3.53,64.0933333333,19.76,26.4266666667,22.1,35.1266666667,18,38.7,2.1,756.6,80.5,2.5,42.5,-0.95,22.7540219086,22.7540219086 -70,0,20.7,33.79,19.1,34.1266666667,20.1,35.1528571429,19.2,34.045,17.64,43.334,3.2233333333,64.3233333333,19.7,26.5666666667,22.0333333333,35.2,18,38.79,1.9333333333,756.5333333333,81.6666666667,2.3333333333,49.6666666667,-0.9,22.7803216781,22.7803216781 -80,0,20.7,33.73,19.0333333333,34.0666666667,20.1,35.178,19.1,34.09,17.6428571429,43.2642857143,2.9633333333,64.8633333333,19.6666666667,26.6666666667,22,35.2,18,38.8633333333,1.7666666667,756.4666666667,82.8333333333,2.1666666667,56.8333333333,-0.85,18.7728454359,18.7728454359 -90,0,20.7,33.7,19.1,34.06,20.1,35.1371428571,19.1,34.09,17.6,43.2,2.49,65.1,19.6,26.6666666667,22,35.26,18,38.9333333333,1.6,756.4,84,2,64,-0.8,22.7288713097,22.7288713097 -90,0,20.7,33.7,19.1,34.06,20.1,35.09,19.1,34.23,17.6285714286,43.2257142857,2.0966666667,65.7666666667,19.5,26.79,22,35.29,18,39,1.4,756.3833333333,84.8333333333,2,63.6666666667,-0.8666666667,21.9879541313,21.9879541313 -90,0,20.7,33.76,19.1,34.09,20.1,35.09,19.1,34.3633333333,17.6,43.178,1.7266666667,66.8966666667,19.4633333333,26.79,22,35.29,18,39,1.2,756.3666666667,85.6666666667,2,63.3333333333,-0.9333333333,5.8971723309,5.8971723309 -90,0,20.7,33.7,19.1,34.1633333333,20.1,35.09,19,34.4333333333,17.6,43.0257142857,1.46,67.5633333333,19.39,26.8566666667,22,35.29,18,39,1,756.35,86.5,2,63,-1,34.0886925347,34.0886925347 -100,0,20.73,33.7,19.23,34.23,20.1285714286,35.09,19,34.5,17.6,43.054,1.26,68.6933333333,19.39,26.9266666667,22,35.3633333333,18,39,0.8,756.3333333333,87.3333333333,2,62.6666666667,-1.0666666667,21.5155115002,21.5155115002 -90,0,20.79,33.7,19.29,34.29,20.2,35,19,34.5,17.5571428571,43.0257142857,1.05,69.27,19.3233333333,27.0666666667,22,35.4,18,39,0.6,756.3166666667,88.1666666667,2,62.3333333333,-1.1333333333,30.8289606823,30.8289606823 -100,0,20.8233333333,33.73,19.4266666667,34.3266666667,20.2128571429,34.9142857143,19,34.4333333333,17.6,43,0.9333333333,69.9333333333,19.29,27.1,22,35.4666666667,18,39,0.4,756.3,89,2,62,-1.2,15.0545758544,15.0545758544 -180,10,20.9633333333,33.73,19.5666666667,34.3266666667,20.29,34.9,19,34.5,17.6,43.0257142857,0.7666666667,70.3933333333,19.23,27.1,22,35.6566666667,18,39.06,0.4333333333,756.2833333333,89.3333333333,1.8333333333,61.8333333333,-1.1166666667,32.4791097315,32.4791097315 -100,10,21.0333333333,33.9566666667,19.6,34.2,20.29,34.9,19,34.5,17.5,43.09,0.7,71.2,19.2,27.1,22,35.8633333333,18,39.09,0.4666666667,756.2666666667,89.6666666667,1.6666666667,61.6666666667,-1.0333333333,20.625459007,20.625459007 -80,0,21.1,34.23,19.6666666667,34.26,20.29,35,18.89,34.5,17.5857142857,43.09,0.5666666667,71.3566666667,19.2,27.1666666667,22,35.5266666667,18,39.09,0.5,756.25,90,1.5,61.5,-0.95,4.539419245,4.539419245 -80,0,21.1333333333,34.1266666667,19.79,34.4333333333,20.2385714286,35.14,18.89,34.5,17.54,43.09,0.5,72.1633333333,19.1,27.2,22,35.2666666667,18,39.09,0.5333333333,756.2333333333,90.3333333333,1.3333333333,61.3333333333,-0.8666666667,14.5086758654,14.5086758654 -60,0,21.26,34.2,19.865,34.4475,20.2,35.296,18.9633333333,34.59,17.5714285714,43.09,0.5333333333,72.66,19.1,27.26,21.89,34.9666666667,18,39.09,0.5666666667,756.2166666667,90.6666666667,1.1666666667,61.1666666667,-0.7833333333,33.7743525859,33.7743525859 -70,0,21.29,34.06,19.89,34.23,20.1285714286,35.5,18.9633333333,34.59,17.5,43.09,0.5333333333,72.9933333333,19.0666666667,27.29,21.89,34.7666666667,18,39.09,0.6,756.2,91,1,61,-0.7,16.5254146559,16.5254146559 -60,0,21.365,33.8975,19.9266666667,34.06,20.1375,35.5225,18.89,34.7,17.5428571429,43.09,0.6,73.4633333333,19,27.29,21.79,34.45,18,39.1725,0.6,756.1333333333,90.6666666667,1,61.1666666667,-0.75,16.2164460402,16.2164460402 -80,0,21.39,33.73,20,34,20.1,35.59,18.89,34.7,17.5,43.09,0.6,73.73,19,27.3233333333,21.7,34.26,18,39.2,0.6,756.0666666667,90.3333333333,1,61.3333333333,-0.8,14.2573167919,14.2573167919 -70,10,21.39,33.6633333333,20,34,20.1,35.59,18.9266666667,34.79,17.6857142857,50.9685714286,0.7,74.0633333333,19,27.39,21.7,34.1266666667,18,39.2,0.6,756,90,1,61.5,-0.85,13.9311771607,13.9311771607 -100,0,21.4633333333,33.6633333333,20,33.9333333333,20.12,35.572,18.9266666667,34.79,20.736,83.59,0.7,74.2633333333,18.89,27.5,21.6666666667,34.2933333333,18,39.2,0.6,755.9333333333,89.6666666667,1,61.6666666667,-0.9,48.2723374153,48.2723374153 -90,0,21.39,33.6266666667,20,34.1266666667,20.2,35.5,18.89,34.79,19.9385714286,84.3828571429,0.7,74.478,18.89,27.5,21.6,35.0333333333,18.1,39.29,0.6,755.8666666667,89.3333333333,1,61.8333333333,-0.95,14.8952901945,14.8952901945 -130,0,21.39,33.7,19.9266666667,34.26,20.2,35.5,18.89,34.8266666667,19.574,89.694,0.6333333333,74.53,18.89,27.5,21.6,35.83,18.0333333333,39.29,0.6,755.8,89,1,62,-1,36.2502751639,36.2502751639 -100,10,21.3233333333,33.7666666667,19.89,34.36,20.2,35.5,18.89,34.9,19.4971428571,88.5971428571,0.5,75.0633333333,18.89,27.5,21.6,36.4233333333,18.1,39.3266666667,0.55,755.8,89,1.1666666667,62,-1.05,39.609342895,39.609342895 -100,0,21.3233333333,34.0266666667,19.89,34.6333333333,20.2,35.518,18.89,34.9333333333,18.83,80,0.5666666667,75.33,18.79,27.5,21.7,37.2266666667,18.1,39.4,0.5,755.8,89,1.3333333333,62,-1.1,30.9665250476,30.9665250476 -90,0,21.39,34.23,19.9266666667,34.86,20.2257142857,35.6214285714,18.8233333333,34.9333333333,18.9528571429,69.3214285714,0.6,75.35,18.79,27.5,21.7,37.645,18.1,39.4666666667,0.45,755.8,89,1.5,62,-1.15,15.9744799021,15.9744799021 -90,0,21.39,34.43,20,35.06,20.2,35.7,18.8566666667,35,19,60.10625,0.5333333333,75.16,18.79,27.5,21.79,38.3,18.1,39.2666666667,0.4,755.8,89,1.6666666667,62,-1.2,47.8549012216,47.8549012216 -60,0,21.3566666667,34.6266666667,20,35.36,20.2,35.7928571429,18.8566666667,35.1333333333,19,55.896,0.4,75.3666666667,18.73,27.5333333333,21.79,38.7666666667,18.0666666667,38.6333333333,0.35,755.8,89,1.8333333333,62,-1.25,11.6483724327,11.6483724327 -60,0,21.29,34.76,19.9266666667,35.6333333333,20.2,35.92,18.8566666667,35.29,19,53.0285714286,0.1333333333,74.9666666667,18.73,27.6,21.8233333333,39.09,18,38.2266666667,0.3,755.8,89,2,62,-1.3,9.300895792,9.300895792 -60,0,21.29,34.8266666667,19.89,35.73,20.2,36.0257142857,18.8566666667,35.3633333333,19,50.354,-0.2,74.9666666667,18.7,27.6,21.89,39.03,18,37.5633333333,0.0666666667,755.7333333333,89.5,2,62,-1.45,19.0875301138,19.0875301138 -60,10,21.29,34.9,19.8233333333,35.79,20.2,36.134,18.89,35.5,19,48.71,-0.6,75,18.7,27.6,21.79,38.6633333333,18,37.1566666667,-0.1666666667,755.6666666667,90,2,62,-1.6,35.8429328888,35.8429328888 -70,0,21.29,34.9333333333,19.79,35.89,20.1428571429,36.2,18.8233333333,35.56,19,47.416,-0.9333333333,75.2,18.7,27.86,21.79,38.59,18,36.7233333333,-0.4,755.6,90.5,2,62,-1.75,47.2786259372,47.2786259372 -30,10,21.23,34.9333333333,19.73,36.2233333333,20.08,36.236,18.79,35.8266666667,19,46.4285714286,-1.3233333333,75.6333333333,18.7,28.1933333333,21.76,38.73,18,36.59,-0.6333333333,755.5333333333,91,2,62,-1.9,7.7841926017,7.7841926017 -40,0,21.2,35.03,19.7,36.4,20,36.2642857143,18.79,36.0266666667,19,45.62,-1.53,76.0933333333,18.7,28.4266666667,21.7,38.93,18,36.8,-0.8666666667,755.4666666667,91.5,2,62,-2.05,26.8261438818,26.8261438818 -50,0,21.2,35.09,19.6333333333,36.4,20,36.4,18.79,36.2,19,45.0214285714,-1.7,77.2266666667,18.76,28.5666666667,21.7,39.1266666667,17.9266666667,37.3933333333,-1.1,755.4,92,2,62,-2.2,15.7446975354,15.7446975354 -40,0,21.1666666667,35.23,19.55,36.45,19.9057142857,36.4857142857,18.79,36.2,19,44.52,-1.7,77.7666666667,18.79,28.73,21.7,39.26,18,37.645,-0.95,755.3833333333,91.6666666667,2.1666666667,62,-2.1,41.2061816431,41.2061816431 -50,0,21.1,35.3975,19.4633333333,36.59,19.89,36.576,18.7,36.1633333333,19,44.0285714286,-1.7,78.8266666667,18.79,28.8566666667,21.7,39.53,17.9633333333,37.73,-0.8,755.3666666667,91.3333333333,2.3333333333,62,-2,34.7733259085,34.7733259085 -60,0,21.1,35.5,19.39,36.59,19.89,36.7,18.7,36.09,18.956,43.554,-1.76,79.0333333333,18.7,29.0333333333,21.675,39.59,17.9633333333,37.8633333333,-0.65,755.35,91,2.5,62,-1.9,31.704055157,31.704055157 -50,0,21.1,35.59,19.29,36.73,19.89,36.736,18.7,36,18.89,43.2842857143,-1.79,79.3566666667,18.7,29.1,21.6,39.7233333333,17.9633333333,37.9333333333,-0.5,755.3333333333,90.6666666667,2.6666666667,62,-1.8,14.3889121828,14.3889121828 -60,0,21.0333333333,35.59,19.23,36.73,19.89,36.8057142857,18.7,36,18.89,42.994,-1.79,80.1633333333,18.7,29.23,21.6,39.79,17.9633333333,38,-0.35,755.3166666667,90.3333333333,2.8333333333,62,-1.7,20.3761626035,20.3761626035 -60,0,21,35.6266666667,19.1666666667,36.8266666667,19.89,36.856,18.6,35.845,18.89,42.7257142857,-1.76,80.8666666667,18.7,29.3566666667,21.5333333333,39.79,17.9633333333,38.09,-0.2,755.3,90,3,62,-1.6,15.7337203273,15.7337203273 -60,0,20.9266666667,35.6266666667,19.1,36.9,19.89,36.9125,18.6,35.79,18.85,42.46,-1.795,80.72,18.7,29.39,21.5,39.86,17.9633333333,38.1633333333,-0.25,755.3333333333,90.1666666667,3,61.8333333333,-1.6333333333,37.4753279728,37.4753279728 -50,0,20.89,35.6266666667,19,36.9333333333,19.89,37,18.5333333333,35.79,18.8185714286,42.2228571429,-1.9666666667,80.7,18.7,29.39,21.5,40.1333333333,18,38.29,-0.3,755.3666666667,90.3333333333,3,61.6666666667,-1.6666666667,46.4807256241,46.4807256241 -50,0,20.89,35.7,19,37,19.89,37,18.5,35.7,18.79,42.052,-2.03,81.3666666667,18.7,29.55,21.5,40.36,18,38.3633333333,-0.35,755.4,90.5,3,61.5,-1.7,42.5287758233,42.5287758233 -40,0,20.8566666667,35.6633333333,18.89,37.09,19.8757142857,37,18.5,35.7,18.79,41.8685714286,-2.03,81.56,18.7,29.6,21.4266666667,40.5,17.89,38.4333333333,-0.4,755.4333333333,90.6666666667,3,61.3333333333,-1.7333333333,47.227844235,47.227844235 -30,0,20.79,35.59,18.8233333333,37.09,19.79,36.94,18.5,35.7,18.79,41.7,-1.9333333333,82.0933333333,18.6333333333,29.6,21.39,40.7666666667,17.89,38.5,-0.45,755.4666666667,90.8333333333,3,61.1666666667,-1.7666666667,45.3662836575,45.3662836575 -30,0,20.79,35.59,18.79,37.2,19.79,36.9714285714,18.5,35.6266666667,18.7128571429,41.5542857143,-2,81.8333333333,18.6,29.6,21.39,41.0266666667,17.89,38.5,-0.5,755.5,91,3,61,-1.8,11.6214671405,11.6214671405 -60,0,20.73,35.59,18.73,37.2,19.79,37.09,18.39,35.5,18.7,41.48,-2,82.16,18.6,29.6666666667,21.39,41.2666666667,17.9633333333,38.5,-0.4333333333,755.4333333333,90.3333333333,3.3333333333,61.3333333333,-1.8333333333,32.6335425721,32.6335425721 -60,0,20.7,35.59,18.7,37.29,19.79,37.09,18.39,35.5,18.7,41.4,-2,82.4333333333,18.6,29.73,21.3233333333,41.4666666667,17.9266666667,38.53,-0.3666666667,755.3666666667,89.6666666667,3.6666666667,61.6666666667,-1.8666666667,24.2364271893,24.2364271893 -60,0,20.7,35.59,18.6333333333,37.23,19.81,37.156,18.39,35.5,18.7,41.29,-1.8,83.8266666667,18.6,29.79,21.3233333333,41.8,17.9266666667,38.6633333333,-0.3,755.3,89,4,62,-1.9,25.5063015036,25.5063015036 -50,0,20.6,35.5,18.6,37.23,19.89,37.2385714286,18.39,35.5,18.7,41.2128571429,-1.5333333333,84.3666666667,18.6,29.79,21.3233333333,42.06,17.9633333333,38.79,-0.2333333333,755.2333333333,88.3333333333,4.3333333333,62.3333333333,-1.9333333333,41.9671635958,41.9671635958 -50,0,20.6,35.5,18.6,37.29,19.89,37.29,18.3566666667,35.5,18.6333333333,41.1266666667,-1.4266666667,84.0266666667,18.6,29.79,21.3233333333,42.3266666667,17.89,38.8633333333,-0.1666666667,755.1666666667,87.6666666667,4.6666666667,62.6666666667,-1.9666666667,21.3452312979,21.3452312979 -60,0,20.6,35.5,18.5,37.29,19.9371428571,37.29,18.29,35.5,18.6,41.0128571429,-1.4266666667,84.1666666667,18.6,29.8566666667,21.3233333333,42.3266666667,17.89,38.9333333333,-0.1,755.1,87,5,63,-2,1.5500442008,1.5500442008 -50,0,20.5333333333,35.56,18.5,37.29,20,37.312,18.29,35.5,18.6,40.9714285714,-1.4266666667,84.0233333333,18.6,29.8566666667,21.3233333333,42.4,17.89,39.06,-0.2166666667,755.0833333333,86.8333333333,4.8333333333,63,-2.1333333333,29.1379691218,29.1379691218 -50,0,20.5,35.6266666667,18.39,37.29,20,37.4,18.29,35.5,18.6,40.9,-1.5666666667,83.23,18.5333333333,29.89,21.3233333333,42.4,17.89,39.09,-0.3333333333,755.0666666667,86.6666666667,4.6666666667,63,-2.2666666667,16.546743887,16.546743887 -60,0,20.5,35.7,18.39,37.3266666667,20,37.4,18.26,35.4666666667,18.6,40.8371428571,-1.79,82.8233333333,18.5333333333,29.89,21.29,42.29,17.89,39.2,-0.45,755.05,86.5,4.5,63,-2.4,34.2399082961,34.2399082961 -50,0,20.4266666667,35.6266666667,18.3233333333,37.4,20,37.4142857143,18.2,35.4,18.56,40.772,-1.8175,83.14,18.5,29.89,21.29,42.23,17.89,39.26,-0.5666666667,755.0333333333,86.3333333333,4.3333333333,63,-2.5333333333,41.2692061625,41.2692061625 -60,0,20.39,35.59,18.29,37.4333333333,20,37.5,18.23,35.3266666667,18.5285714286,40.7,-1.9666666667,82.8233333333,18.5,29.9633333333,21.29,42.145,17.89,39.4,-0.6833333333,755.0166666667,86.1666666667,4.1666666667,63,-2.6666666667,45.3609288321,45.3609288321 -40,0,20.39,35.6633333333,18.29,37.56,20.0714285714,37.5642857143,18.2225,35.3175,18.5,40.7,-2,82.7266666667,18.5,29.9266666667,21.29,41.9666666667,17.89,39.4,-0.8,755,86,4,63,-2.8,32.4604198104,32.4604198104 -40,0,20.3566666667,35.7,18.2,37.53,20.1,37.59,18.2,35.29,18.5,40.6371428571,-2.06,82.8,18.5,29.9266666667,21.29,41.8266666667,17.89,39.4,-0.9333333333,754.95,86.5,3.8333333333,62.8333333333,-2.8666666667,41.9413575088,41.9413575088 -30,0,20.29,35.7,18.2,37.59,20.1,37.59,18.2,35.29,18.5,40.572,-2.09,82.9,18.5,30,21.26,41.7,17.89,39.4666666667,-1.0666666667,754.9,87,3.6666666667,62.6666666667,-2.9333333333,19.0713580814,19.0713580814 -30,0,20.26,35.7,18.1,37.7,20.04,37.536,18.2,35.29,18.4214285714,40.4285714286,-2.1633333333,82.8333333333,18.5,30,21.2,41.76,17.89,39.5,-1.2,754.85,87.5,3.5,62.5,-3,23.8222185755,23.8222185755 -50,0,20.2,35.7,18.1,37.7,20,37.5642857143,18.1666666667,35.29,18.434,40.4,-2.2,82.9333333333,18.5,30,21.26,41.7233333333,17.89,39.5,-1.3333333333,754.8,88,3.3333333333,62.3333333333,-3.0666666667,7.8814126435,7.8814126435 -50,0,20.2,35.7,18,37.6633333333,19.934,37.59,18.1666666667,35.23,18.4057142857,40.3057142857,-2.26,82.8,18.39,29.89,21.2,41.59,17.9633333333,39.59,-1.4666666667,754.75,88.5,3.1666666667,62.1666666667,-3.1333333333,24.111276085,24.111276085 -60,0,20.1333333333,35.7,18,37.59,20,37.6528571429,18.1,35.2,18.39,40.29,-2.26,83.1233333333,18.39,29.89,21.2,41.4666666667,17.89,39.59,-1.6,754.7,89,3,62,-3.2,39.5485703251,39.5485703251 -70,0,20.1,35.7,18,37.6633333333,19.978,37.7,18.1,35.2,18.39,40.2642857143,-2.2,83.1233333333,18.39,29.89,21.1333333333,41.4,17.89,39.59,-1.45,754.6833333333,88.1666666667,3.1666666667,62.5,-3.1833333333,37.4608161859,37.4608161859 -50,0,20.1,35.7,18,37.6633333333,19.9725,37.7,18.1,35.2,18.39,40.2,-2.2,83.4633333333,18.39,29.89,21.2,41.3633333333,17.89,39.59,-1.3,754.6666666667,87.3333333333,3.3333333333,63,-3.1666666667,46.3903897558,46.3903897558 -50,0,20.0666666667,35.76,17.9633333333,37.7,20,37.7,18.1,35.2,18.3471428571,40.2,-2.1266666667,83.6566666667,18.39,29.9266666667,21.1333333333,41.23,17.89,39.7,-1.15,754.65,86.5,3.5,63.5,-3.15,10.8267837437,10.8267837437 -50,0,20,35.7,17.89,37.7,20,37.7,18.0666666667,35.1633333333,18.31,40.134,-2,83.7266666667,18.39,29.9266666667,21.1,41.1633333333,17.89,39.7,-1,754.6333333333,85.6666666667,3.6666666667,64,-3.1333333333,0.7108863792,0.7108863792 -60,0,20,35.7,17.79,37.59,20,37.7,18,35.09,18.3614285714,40.09,-1.9333333333,83.9933333333,18.39,30,21.1,41.09,17.89,39.7,-0.85,754.6166666667,84.8333333333,3.8333333333,64.5,-3.1166666667,8.7137448369,8.7137448369 -50,0,20,35.7,17.79,37.59,20,37.754,18,35.09,18.29,40.09,-1.6666666667,84.3,18.39,30,21.1,41,17.89,39.7,-0.7,754.6,84,4,65,-3.1,17.1307049692,17.1307049692 -60,0,19.9266666667,35.7,17.79,37.6266666667,20,37.7514285714,18,35.09,18.29,40.0771428571,-1.46,84.4333333333,18.3566666667,30,21.0333333333,40.9333333333,17.89,39.73,-0.7333333333,754.6,84.1666666667,3.8333333333,65,-3.1166666667,33.4464780404,33.4464780404 -60,0,19.9266666667,35.7,17.79,37.7,20,37.79,18,35.09,18.29,40.054,-1.195,84.4,18.29,30.0666666667,21,40.9,17.89,39.79,-0.7666666667,754.6,84.3333333333,3.6666666667,65,-3.1333333333,48.6925464822,48.6925464822 -40,0,19.89,35.76,17.73,37.7,20.0571428571,37.8842857143,18,35.09,18.29,40.0642857143,-1,83.7966666667,18.29,30,21.0666666667,40.9666666667,17.89,39.79,-0.8,754.6,84.5,3.5,65,-3.15,32.0521357004,32.0521357004 -40,0,19.89,35.76,17.7,37.79,20.1,37.9,17.9633333333,35.09,18.29,40,-0.9333333333,83.53,18.29,30.0666666667,21,40.9,17.89,39.79,-0.8333333333,754.6,84.6666666667,3.3333333333,65,-3.1666666667,34.3074753182,34.3074753182 -30,0,19.79,35.7,17.7,37.79,20.1,37.9285714286,17.89,35.1633333333,18.29,40,-0.7666666667,83.1566666667,18.29,30.0333333333,21,40.9,17.89,39.8633333333,-0.8666666667,754.6,84.8333333333,3.1666666667,65,-3.1833333333,38.9739643782,38.9739643782 -30,0,19.79,35.79,17.6666666667,37.8633333333,20.06,37.96,17.89,35.2,18.236,40,-0.6333333333,82.9633333333,18.29,30.1,21,40.9,17.89,39.9,-0.9,754.6,85,3,65,-3.2,20.9960172302,20.9960172302 -60,0,19.79,35.79,17.6,37.79,20,37.9,17.89,35.2,18.2,40.01125,-0.4666666667,82.4333333333,18.29,30.1,21,40.8725,17.89,39.9666666667,-0.7833333333,754.5666666667,85,3,64.6666666667,-3.0666666667,23.0446611065,23.0446611065 -50,0,19.76,35.79,17.6666666667,37.8633333333,19.956,37.92,17.89,35.2,18.2,40.09,-0.4,82.0333333333,18.29,30.1,21,40.79,17.89,40,-0.6666666667,754.5333333333,85,3,64.3333333333,-2.9333333333,6.0537617072,6.0537617072 -60,0,19.7,35.79,17.6,37.8633333333,20,38,17.89,35.2,18.2,40.09,-0.3,81.4233333333,18.29,30.2,20.9266666667,40.76,17.89,40,-0.55,754.5,85,3,64,-2.8,45.0625165249,45.0625165249 -50,0,19.7,35.8266666667,17.6,37.9333333333,19.934,38.09,17.89,35.2,18.2,40.09,-0.2333333333,80.8966666667,18.29,30.2,20.9266666667,40.76,17.89,40,-0.4333333333,754.4666666667,85,3,63.6666666667,-2.6666666667,17.7874291665,17.7874291665 -60,0,19.7,35.9,17.6,38,19.9685714286,38.1528571429,17.8233333333,35.2,18.2,40.09,-0.1666666667,80.4666666667,18.29,30.245,20.89,40.8266666667,17.8233333333,39.9333333333,-0.3166666667,754.4333333333,85,3,63.3333333333,-2.5333333333,33.3852531156,33.3852531156 -60,10,19.6666666667,35.9,17.5,38,20,38.2,17.8233333333,35.2,18.2,40.2328571429,-0.1,80.26,18.2,30.2,20.89,40.9,17.89,40.1266666667,-0.2,754.4,85,3,63,-2.4,38.8155543595,38.8155543595 -50,10,19.6666666667,35.9666666667,17.5,38,20,38.2,17.79,35.23,18.1,40.556,0,79.9333333333,18.2,30.1333333333,20.89,41,17.89,40.4,-0.1333333333,754.45,84.6666666667,3.1666666667,63.3333333333,-2.4,9.2796505778,9.2796505778 -80,0,19.6666666667,36.1633333333,17.5,37.93,20,38.09,17.79,35.29,18.0857142857,41.5342857143,0.0666666667,79.7266666667,18.1666666667,29.7266666667,20.8233333333,40.6666666667,17.8566666667,40.2966666667,-0.0666666667,754.5,84.3333333333,3.3333333333,63.6666666667,-2.4,28.9197480422,28.9197480422 -70,10,19.6,36.09,17.5,37.73,19.9371428571,37.94,17.79,35.1633333333,18,42.198,0.2,79.1666666667,18.1,29.46,20.79,39.8333333333,17.8566666667,40.09,0,754.55,84,3.5,64,-2.4,12.631454505,12.631454505 -50,0,19.6,36.1566666667,17.5,37.56,19.87,37.816,17.79,35.03,18,42.8114285714,0.2,78.76,18.1,29.26,20.73,39.3,17.79,39.7233333333,0.0666666667,754.6,83.6666666667,3.6666666667,64.3333333333,-2.4,16.2324747071,16.2324747071 -30,0,19.6,36.3633333333,17.5,37.5,19.8614285714,37.7,17.79,34.8633333333,17.89,43.2,0.3333333333,78.2666666667,18.1,29.0666666667,20.7,38.7966666667,17.79,39.4633333333,0.1333333333,754.65,83.3333333333,3.8333333333,64.6666666667,-2.4,33.0398497521,33.0398497521 -40,0,19.6,36.26,17.5,37.4666666667,19.79,37.46,17.73,34.73,17.89,43.41,0.425,77.525,18,28.79,20.6333333333,38.39,17.79,38.96,0.2,754.7,83,4,65,-2.4,8.9315243182,8.9315243182 -40,20,19.6,36.1266666667,17.5,37.3266666667,19.79,37.3528571429,17.7,34.56,17.89,43.656,0.5,77.1,18,28.73,20.6,38.06,17.79,38.5666666667,0.25,754.7666666667,82.6666666667,4,57.6666666667,-2.4,33.9255021652,33.9255021652 -50,20,19.6,36.06,17.6,37.1633333333,19.79,37.334,17.7,34.56,17.8185714286,43.7,0.5333333333,76.7,18,28.6666666667,20.5333333333,37.86,17.7,38.2966666667,0.3,754.8333333333,82.3333333333,4,50.3333333333,-2.4,22.8556982707,22.8556982707 -60,10,19.6,35.9333333333,17.525,36.9975,19.7225,37.2225,18.0233333333,34.9633333333,17.79,43.834,0.6666666667,76.4333333333,18,28.5333333333,20.5,37.56,17.7,37.9633333333,0.35,754.9,82,4,43,-2.4,19.4361142814,19.4361142814 -50,0,19.5,35.8333333333,17.5,36.8266666667,19.7,37.1685714286,18.43,34.9633333333,17.79,44.0371428571,0.7333333333,75.9566666667,17.9633333333,28.5,20.5,37.4333333333,17.7,37.69,0.4,754.9666666667,81.6666666667,4,35.6666666667,-2.4,5.7180015719,5.7180015719 -170,0,19.5,35.7,17.5,36.7,19.7,37.054,18.5,34.6,17.79,44.196,0.9111111111,75.3422222222,17.89,28.4266666667,20.39,37.06,17.7,37.79,0.45,755.0333333333,81.3333333333,4,28.3333333333,-2.4,33.8664735784,33.8664735784 -270,0,19.5,35.9,17.5,36.6266666667,19.7,36.9142857143,18.4266666667,34.2666666667,17.79,44.3528571429,0.9666666667,74.7666666667,17.89,28.3566666667,20.39,36.86,17.7,37.73,0.5,755.1,81,4,21,-2.4,49.8131048167,49.8131048167 -70,0,19.5,35.8633333333,17.5,36.56,19.64,36.758,18.34,34.145,17.754,44.4,1.1666666667,74.3666666667,17.89,28.29,20.39,36.6633333333,17.7,37.56,0.6,755.1166666667,80.6666666667,4,21.1666666667,-2.35,13.9360804809,13.9360804809 -90,30,19.5,35.79,17.5666666667,36.4333333333,19.6,36.59,18.26,34.1266666667,17.7,44.3528571429,1.3233333333,73.7,17.89,28.29,20.39,36.53,17.7,37.4333333333,0.7,755.1333333333,80.3333333333,4,21.3333333333,-2.3,47.1039316617,47.1039316617 -90,20,19.5,35.76,17.6333333333,36.29,19.6,36.59,18.2,34.26,17.7,44.316,1.53,73.4333333333,17.89,28.23,20.29,36.345,17.7,37.26,0.8,755.15,80,4,21.5,-2.25,49.5847562328,49.5847562328 -260,20,19.5,35.7,17.7,36.23,19.6,36.6371428571,18.29,34.5666666667,17.7,44.2,1.7666666667,72.7666666667,17.79,28.1666666667,20.29,36.1633333333,17.7,37.0666666667,0.9,755.1666666667,79.6666666667,4,21.6666666667,-2.2,37.5623516156,37.5623516156 -150,20,19.5,35.59,17.79,36.06,19.6,36.656,18.29,34.8333333333,17.7,44.156,1.975,71.925,17.79,28.1,20.29,36.09,17.7,37.1666666667,1,755.1833333333,79.3333333333,4,21.8333333333,-2.15,20.2340793912,20.2340793912 -80,30,19.5,35.59,17.8566666667,36,19.6428571429,36.7071428571,18.39,35.03,17.6571428571,44.0128571429,2.1266666667,71.1666666667,17.79,28.1,20.26,36.1566666667,17.76,38.0266666667,1.1,755.2,79,4,22,-2.1,27.3168613552,27.3168613552 -60,20,19.5,35.4,17.89,36.03,19.7,36.656,18.39,35.1633333333,17.6,43.94,2.3,70.7,17.79,28.1,20.2,36.3633333333,17.79,38.53,1.25,755.25,78.1666666667,4,21.8333333333,-2.1166666667,9.7504497389,9.7504497389 -60,20,19.5666666667,35.3266666667,17.9633333333,36.09,19.6142857143,36.5242857143,18.5,35.3266666667,17.6,43.845,2.5666666667,69.4266666667,17.79,28.1,20.2,36.4666666667,17.79,38.59,1.4,755.3,77.3333333333,4,21.6666666667,-2.1333333333,16.0247844877,16.0247844877 -70,20,19.6,35.29,18.0333333333,36.03,19.6,36.4,18.5666666667,35.4666666667,17.6,43.79,2.8333333333,68.6333333333,17.79,28.1,20.2,36.4,17.79,38.56,1.55,755.35,76.5,4,21.5,-2.15,34.58044664,34.58044664 -50,20,19.6,35.29,18.1666666667,36.09,19.6,36.3214285714,18.6,35.53,17.6,43.7,3.1266666667,67.43,17.79,28.1,20.1,36.4,17.79,38.5,1.7,755.4,75.6666666667,4,21.3333333333,-2.1666666667,48.3785414835,48.3785414835 -130,30,19.7,35.3633333333,18.23,36.03,19.6,36.2,18.6666666667,35.8633333333,17.5857142857,43.7128571429,3.35,65.9425,17.79,28.0333333333,20.1,36.4,17.79,38.5,1.85,755.45,74.8333333333,4,21.1666666667,-2.1833333333,27.7550040861,27.7550040861 -540,20,19.7,35.43,18.29,36.03,19.6571428571,36.2514285714,18.8,36.1566666667,17.54,43.754,3.6,65.0933333333,17.79,28.0333333333,20.0666666667,36.3333333333,17.79,38.36,2,755.5,74,4,21,-2.2,4.9141686293,4.9141686293 -510,20,19.7,36.16,18.4266666667,35.9333333333,19.7,36.312,19.26,36.23,17.5428571429,43.8685714286,3.9333333333,63.5566666667,17.79,28,20,36.2,17.79,38.1333333333,2.1166666667,755.5333333333,73.5,4,21.1666666667,-2.1666666667,6.655708293,6.655708293 -200,20,19.76,36.9,18.5666666667,36.06,19.7,36.4285714286,19.86,35.8333333333,17.56,43.834,4.1266666667,62.4966666667,17.79,28,20,36.2,17.79,37.9333333333,2.2333333333,755.5666666667,73,4,21.3333333333,-2.1333333333,41.5828715195,41.5828715195 -200,30,19.8233333333,37.0666666667,18.6333333333,36.09,19.7,36.5,20,35.5,17.5142857143,43.9,4.3333333333,60.7666666667,17.73,28,20,36.1266666667,17.79,37.79,2.35,755.6,72.5,4,21.5,-2.1,13.701699255,13.701699255 -180,20,19.9633333333,37.66,18.7,36.09,19.7128571429,36.5128571429,20,35.6566666667,17.56,43.92,4.475,59.9,17.79,28,20,36.06,17.79,37.73,2.4666666667,755.6333333333,72,4,21.6666666667,-2.0666666667,29.5970515581,29.5970515581 -190,20,20,38.59,18.76,36.1633333333,19.79,36.59,20,35.8633333333,17.5285714286,44,4.6675,59.025,17.79,27.9633333333,20,36,17.79,37.645,2.5833333333,755.6666666667,71.5,4,21.8333333333,-2.0333333333,37.9905519774,37.9905519774 -100,20,20.0666666667,38.8633333333,18.79,36.4333333333,19.79,36.6685714286,19.9266666667,36,17.5,44.09,5.0266666667,58.7333333333,17.79,27.89,19.89,35.9666666667,17.79,37.5,2.7,755.7,71,4,22,-2,40.2903760318,40.2903760318 -240,20,20.1,38.395,18.79,36.56,19.79,36.79,19.9266666667,36,17.5,44.2357142857,5.16,56.9633333333,17.79,27.89,19.89,35.9,17.79,37.4333333333,2.8166666667,755.7,70.6666666667,4.3333333333,22.5,-1.9666666667,4.4271325343,4.4271325343 -140,20,20.1333333333,38.2966666667,18.8233333333,36.73,19.8471428571,36.9928571429,20,36.045,17.5,44.312,5.3,56.2966666667,17.79,27.89,19.89,35.79,17.79,37.29,2.9333333333,755.7,70.3333333333,4.6666666667,23,-1.9333333333,46.0470389342,46.0470389342 -100,30,20.2,37.89,18.89,36.73,19.89,37.09,20,36.06,17.5,44.4,5.3,55.4566666667,17.79,27.89,19.8233333333,35.73,17.79,37.29,3.05,755.7,70,5,23.5,-1.9,6.1751640984,6.1751640984 -90,20,20.29,37.6333333333,18.89,36.7,19.9685714286,37.1528571429,20,36.06,17.5,44.5,5.3285714286,54.78,17.79,27.89,19.79,35.656,17.79,37.2,3.1666666667,755.7,69.6666666667,5.3333333333,24,-1.8666666667,24.7403983842,24.7403983842 -70,20,20.29,37.4333333333,18.89,36.6266666667,19.9371428571,37.1214285714,19.89,36.09,17.5,44.5,5.536,54.856,17.79,27.89,19.79,35.5675,17.79,37.1266666667,3.2833333333,755.7,69.3333333333,5.6666666667,24.5,-1.8333333333,49.037110561,49.037110561 -70,30,20.29,36.9,18.89,36.43,19.956,37,19.89,36.03,17.5,44.44,5.59,53.57,17.79,27.8233333333,19.79,35.5,17.79,37.06,3.4,755.7,69,6,25,-1.8,29.0072417702,29.0072417702 -60,20,20.29,36.5666666667,18.89,36.23,19.9371428571,36.9857142857,19.89,35.9666666667,17.5,44.3214285714,5.672,53.318,17.79,27.79,19.79,35.4428571429,17.79,37,3.4,755.7,69.5,5.8333333333,25,-1.7,29.1056975839,29.1056975839 -60,20,20.39,37.1233333333,18.89,36.09,19.934,36.94,19.89,35.9,17.456,44.254,5.8285714286,52.9214285714,17.73,27.79,19.79,35.44,17.76,36.9666666667,3.4,755.7,70,5.6666666667,25,-1.6,0.1334011322,0.1334011322 -70,0,20.3233333333,36.5966666667,18.89,36.03,19.9371428571,36.9,19.89,35.76,17.4842857143,44.2771428571,5.9,52.476,17.79,27.79,19.7257142857,35.4,17.7,36.8266666667,3.4,755.7,70.5,5.5,25,-1.5,44.8775081662,44.8775081662 -50,0,20.39,36.1933333333,18.79,35.8633333333,19.89,36.9,19.89,35.5666666667,17.456,44.236,5.97,51.8842857143,17.7,27.79,19.7,35.4,17.7,36.7,3.4,755.7,71,5.3333333333,25,-1.4,21.8614127836,21.8614127836 -50,0,20.39,35.8,18.79,35.73,19.9528571429,36.8842857143,19.76,34.8333333333,17.5,44.2,6.045,51.28625,17.7,27.79,19.7,35.3371428571,17.7,36.6266666667,3.4,755.7,71.5,5.1666666667,25,-1.3,1.2773274444,1.2773274444 -50,0,20.39,35.4,18.79,35.56,19.956,36.834,19.6333333333,34.5,17.5,44.09,6.074,51.172,17.7,27.79,19.7,35.29,17.7,36.59,3.4,755.7,72,5,25,-1.2,39.8596670828,39.8596670828 -40,0,20.4633333333,35.1266666667,18.79,35.4333333333,19.9528571429,36.79,19.5666666667,34.1333333333,17.5,44.0385714286,6.2214285714,50.2714285714,17.76,27.79,19.7,35.2642857143,17.7,36.53,3.45,755.7166666667,72,4.8333333333,24.3333333333,-1.15,30.5803506868,30.5803506868 -50,0,20.5,34.93,18.79,35.26,19.956,36.754,19.5,34,17.5,43.98,6.576,50.24,17.76,27.7,19.6,35.054,17.7,36.4,3.5,755.7333333333,72,4.6666666667,23.6666666667,-1.1,49.2842272739,49.2842272739 -40,0,20.5,34.6566666667,18.79,35.2,19.89,36.7,19.39,33.76,17.45875,43.8175,6.69,48.4,17.7,27.7,19.6,34.9428571429,17.7,36.3214285714,3.55,755.75,72,4.5,23,-1.05,13.2853700896,13.2853700896 -20,0,20.5,34.4666666667,18.79,35.06,19.89,36.678,19.3233333333,33.7,17.4214285714,43.6214285714,6.69,48.9333333333,17.7,27.73,19.6,34.9,17.7,36.156,3.6,755.7666666667,72,4.3333333333,22.3333333333,-1,6.2939108117,6.2939108117 -40,0,20.4266666667,34.3266666667,18.79,34.925,19.89,36.59,19.29,33.7,17.39,43.5,6.69,49.6933333333,17.7,27.79,19.6,34.9,17.7,36.1057142857,3.65,755.7833333333,72,4.1666666667,21.6666666667,-0.95,36.1341660493,36.1341660493 -20,0,20.39,34.1633333333,18.73,34.8266666667,19.85,36.554,19.23,33.6266666667,17.39,43.4428571429,6.5633333333,49.8933333333,17.7,27.79,19.6,34.79,17.7,36.145,3.7,755.8,72,4,21,-0.9,29.571987153,29.571987153 -40,0,20.39,34.09,18.7,34.8266666667,19.79,36.4857142857,19.1666666667,33.59,17.39,43.378,6.2633333333,50.9666666667,17.7,27.79,19.5571428571,34.8985714286,17.7,36.072,3.6,755.85,73.6666666667,3.8333333333,21.1666666667,-0.7,46.6318347491,46.6318347491 -50,0,20.39,34,18.6333333333,34.7666666667,19.79,36.4,19.1,33.59,17.39,43.29,6.19,51.3,17.7,27.89,19.54,35,17.7,36,3.5,755.9,75.3333333333,3.6666666667,21.3333333333,-0.5,25.4517306341,25.4517306341 -40,0,20.29,33.9666666667,18.6,34.7,19.79,36.3685714286,19.05,33.545,17.39,43.2,6.2266666667,50.8633333333,17.7,27.89,19.5,35,17.7,35.96,3.4,755.95,77,3.5,21.5,-0.3,24.6987366001,24.6987366001 -50,0,20.29,33.9,18.6,34.7,19.79,36.4,18.9633333333,33.4,17.39,43.1371428571,6.3,49.53,17.7,27.8566666667,19.5,35,17.7,35.8371428571,3.3,756,78.6666666667,3.3333333333,21.6666666667,-0.1,45.8036299446,45.8036299446 -50,0,20.26,33.8633333333,18.5666666667,34.59,19.79,36.3528571429,18.89,33.4,17.39,43.134,6.1566666667,49.6666666667,17.7,27.79,19.4528571429,34.9571428571,17.66,35.736,3.2,756.05,80.3333333333,3.1666666667,21.8333333333,0.1,44.9504317134,44.9504317134 -40,0,20.2,33.79,18.5,34.59,19.79,36.378,18.89,33.4,17.39,43.0514285714,6.03,50.6,17.7,27.79,19.478,35,17.6285714286,35.5957142857,3.1,756.1,82,3,22,0.3,20.1371645322,20.1371645322 -50,0,20.2,33.79,18.5,34.59,19.79,36.29,18.8233333333,33.4,17.39,43,5.7,52.6,17.7,27.8925,19.4214285714,35.0257142857,17.64,35.44,3.1,756.1166666667,81.5,2.8333333333,23.1666666667,0.2,17.4791465863,17.4791465863 -50,0,20.1333333333,33.79,18.4266666667,34.59,19.79,36.29,18.76,33.5,17.39,42.9142857143,5.4333333333,54.86,17.7,28.0666666667,19.39,35.09,17.6142857143,35.3985714286,3.1,756.1333333333,81,2.6666666667,24.3333333333,0.1,24.8977645533,24.8977645533 -80,10,20.0666666667,33.79,18.39,34.59,19.79,36.2128571429,18.7,33.56,17.39,42.9,5.23,56.8,17.7,28.1333333333,19.39,35.1657142857,17.6,35.29,3.1,756.15,80.5,2.5,25.5,0,46.7464591027,46.7464591027 -90,0,20,33.79,18.39,34.6633333333,19.77875,36.10875,18.7,33.73,17.39,42.8214285714,5.09,57.9933333333,17.7,28.26,19.39,35.35,17.6,35.29,3.1,756.1666666667,80,2.3333333333,26.6666666667,-0.1,8.3886525827,8.3886525827 -80,0,20,33.9,18.39,34.8266666667,19.736,36.218,18.7,33.79,17.35,42.856,5.045,59.395,17.7,28.39,19.4214285714,35.6471428571,17.6,35.29,3.1,756.1833333333,79.5,2.1666666667,27.8333333333,-0.2,45.1173560577,45.1173560577 -100,0,20,33.9666666667,18.3233333333,34.9,19.7257142857,36.29,18.6666666667,33.9333333333,17.29,42.79,4.8833333333,60.6083333333,17.6333333333,28.39,19.5,36.036,17.6,35.2771428571,3.1,756.2,79,2,29,-0.3,24.6135792346,24.6135792346 -100,0,20,34.1266666667,18.36,35,19.754,36.254,18.6,34.06,17.29,42.79,4.8333333333,61.0633333333,17.6,28.5333333333,19.6125,36.20875,17.6,35.2,2.9833333333,756.2333333333,80.1666666667,2,27.8333333333,-0.2166666667,28.2858155435,28.2858155435 -80,0,20,34.26,18.6333333333,34.9333333333,19.7385714286,36.2,18.6,34.1266666667,17.29,42.7642857143,4.6266666667,62.0333333333,17.6,28.6666666667,19.7128571429,36.4414285714,17.6,35.2,2.8666666667,756.2666666667,81.3333333333,2,26.6666666667,-0.1333333333,6.1647890601,6.1647890601 -80,0,19.89,34.4333333333,18.6333333333,34.79,19.7,36.178,18.6,34.26,17.29,42.7,4.2933333333,63.1666666667,17.6,28.73,19.79,36.554,17.6,35.2,2.75,756.3,82.5,2,25.5,-0.05,37.7265073708,37.7265073708 -70,0,19.89,34.56,18.6,34.86,19.7,36.09,18.5666666667,34.3266666667,17.29,42.7,4.1266666667,64.0666666667,17.6,28.79,19.79,36.6685714286,17.5142857143,35.2,2.6333333333,756.3333333333,83.6666666667,2,24.3333333333,0.0333333333,21.8796552625,21.8796552625 -70,0,19.89,34.6266666667,18.5333333333,35.06,19.7,36.054,18.5,34.4666666667,17.29,42.7,3.9333333333,64.7333333333,17.6,28.9266666667,19.89,36.79,17.5,35.2,2.5166666667,756.3666666667,84.8333333333,2,23.1666666667,0.1166666667,31.7347366479,31.7347366479 -80,0,19.89,34.6266666667,18.5333333333,35.2,19.7385714286,35.88,18.5,34.59,17.29,42.7,3.76,65.26,17.6,29,19.9528571429,36.8528571429,17.5,35.2,2.4,756.4,86,2,22,0.2,13.7006456265,13.7006456265 -90,0,20,34.7,18.6,35.2675,19.7,35.772,18.5,34.6633333333,17.29,42.736,3.7,65.5933333333,17.5333333333,29,20.02,36.978,17.5,35.2,2.3666666667,756.4833333333,86.3333333333,2.1666666667,22.1666666667,0.2333333333,31.6565915709,31.6565915709 -80,0,20,34.7,18.6,35.29,19.7385714286,35.7,18.5,34.73,17.2514285714,42.7514285714,3.56,66.9233333333,17.6,29.0666666667,20.1,37.09,17.5,35.2,2.3333333333,756.5666666667,86.6666666667,2.3333333333,22.3333333333,0.2666666667,21.7432439676,21.7432439676 -160,0,20.0333333333,34.7666666667,18.7,35.4333333333,19.79,35.7,18.4725,34.8725,17.26,42.76,3.4333333333,68.13,17.5,29.2,20.14,37.2,17.456,35.156,2.3,756.65,87,2.5,22.5,0.3,28.2263012487,28.2263012487 -440,0,20.1,34.9,18.7,35.5,19.79,35.7,18.39,34.9666666667,17.2,42.7771428571,3.26,69.5,17.5,29.26,20.1285714286,37.2514285714,17.4214285714,35.1214285714,2.2666666667,756.7333333333,87.3333333333,2.6666666667,22.6666666667,0.3333333333,12.3525795643,12.3525795643 -230,0,20.1,34.9666666667,18.79,35.5,19.79,35.7,18.39,35.1266666667,17.2,42.8214285714,3.1266666667,70.36,17.5,29.39,20.2,37.29,17.434,35.2,2.2333333333,756.8166666667,87.6666666667,2.8333333333,22.8333333333,0.3666666667,39.2144319951,39.2144319951 -260,0,20.1333333333,35.4333333333,18.8566666667,35.56,19.8614285714,35.7957142857,18.39,35.26,17.2,42.9,2.9666666667,71.7566666667,17.5,29.4633333333,20.2385714286,37.3371428571,17.4057142857,35.2,2.2,756.9,88,3,23,0.4,47.5920819212,47.5920819212 -180,10,20.26,36.36,18.89,35.5,19.89,35.79,18.39,35.4,17.2385714286,42.9985714286,2.9,72.2966666667,17.5,29.6,20.236,37.4,17.39,35.2,2.1166666667,756.9166666667,89.1666666667,2.8333333333,27,0.5,22.7976731025,22.7976731025 -100,10,20.3233333333,37.2266666667,18.89,35.56,19.89,36.0085714286,18.39,35.4666666667,17.236,43.076,2.8633333333,72.8566666667,17.5,29.675,20.29,37.1785714286,17.39,35.218,2.0333333333,756.9333333333,90.3333333333,2.6666666667,31,0.6,14.1886388883,14.1886388883 -90,0,20.4633333333,37.9666666667,19,35.7666666667,19.956,36.276,18.39,35.7666666667,17.2,43.2257142857,2.79,73.345,17.5,29.76,20.29,37.054,17.39,35.29,1.95,756.95,91.5,2.5,35,0.7,17.1331764665,17.1331764665 -90,0,20.5,36.9,19,35.9666666667,20.0714285714,36.51,18.39,36.0266666667,17.2,43.334,2.7,73.945,17.5,29.79,20.3185714286,37.1685714286,17.39,35.29,1.8666666667,756.9666666667,92.6666666667,2.3333333333,39,0.8,24.2928494932,24.2928494932 -90,0,20.5,36.5666666667,19.1,36.09,20.1,36.5,18.39,36.3266666667,17.2,43.4571428571,2.6633333333,74.3966666667,17.5,29.79,20.39,37.29,17.39,35.29,1.7833333333,756.9833333333,93.8333333333,2.1666666667,43,0.9,34.4869816559,34.4869816559 -80,10,20.5333333333,36.29,19.1,36.1633333333,20.1,36.5,18.39,36.4,17.218,43.518,2.59,74.99,17.5,29.89,20.4842857143,37.4542857143,17.39,35.29,1.7,757,95,2,47,1,17.2830377123,17.2830377123 -70,10,20.6,36.29,19.2,36.2,20.04,36.44,18.39,36.53,17.2257142857,43.59,2.5,75.66,17.5,29.9633333333,20.5,37.552,17.39,35.29,1.6333333333,757.05,95,2,49.3333333333,0.9333333333,16.907711653,16.907711653 -70,30,20.6333333333,36.4666666667,19.2,36.2,20,36.4,18.39,36.59,17.254,43.754,2.5,75.9933333333,17.5,30,20.4685714286,37.2642857143,17.35,35.334,1.5666666667,757.1,95,2,51.6666666667,0.8666666667,38.1306757336,38.1306757336 -70,20,20.6333333333,36.2666666667,19.2,36.23,19.89,36.4,18.5966666667,37.1266666667,17.2,43.7514285714,2.4,76.53,17.5,30.0666666667,20.39,36.96,17.3614285714,35.4,1.5,757.15,95,2,54,0.8,0.3391533392,0.3391533392 -100,20,20.6,36,19.2,36.29,19.89,36.4142857143,19.1233333333,37.2,17.218,43.812,2.3266666667,76.6566666667,17.39,30,20.3757142857,36.6914285714,17.35,35.4,1.4333333333,757.2,95,2,56.3333333333,0.7333333333,44.8751802673,44.8751802673 -90,10,20.6666666667,36,19.3233333333,36.3633333333,19.90375,36.45,19.8333333333,37.06,17.2514285714,43.9,2.29,77.16,17.4633333333,30.0666666667,20.29,36.59,17.3614285714,35.4,1.3666666667,757.25,95,2,58.6666666667,0.6666666667,39.9888096843,39.9888096843 -80,10,20.73,36,19.39,36.29,19.956,36.4,20.2933333333,36.7266666667,17.29,44,2.29,77.4933333333,17.39,30.1,20.3185714286,36.6214285714,17.33,35.4,1.3,757.3,95,2,61,0.6,18.0312942481,18.0312942481 -80,0,20.8566666667,36,19.5333333333,36.3633333333,20,36.4,20.3566666667,36.1,17.2514285714,43.9571428571,2.26,77.9966666667,17.39,30.1,20.33,36.834,17.3042857143,35.4,1.2666666667,757.3166666667,95.3333333333,2,58.1666666667,0.6,45.589307684,45.589307684 -90,0,20.9266666667,35.8633333333,19.6975,36.2675,20.06,36.46,20.23,35.7666666667,17.236,43.96,2.2,78.19,17.39,30.1,20.39,36.9571428571,17.29,35.4,1.2333333333,757.3333333333,95.6666666667,2,55.3333333333,0.6,7.6302704052,7.6302704052 -80,0,21.0666666667,35.79,19.79,36.1266666667,20.0857142857,36.4857142857,20.0666666667,35.56,17.2257142857,44.0257142857,2.2,78.16,17.39,30.1666666667,20.4725,37.15,17.29,35.4,1.2,757.35,96,2,52.5,0.6,44.4639223744,44.4639223744 -90,10,21.1,35.6633333333,19.89,36.06,20.1,36.5,19.9175,35.5,17.2,44,2.2,78.4333333333,17.39,30.2,20.5,37.276,17.29,35.46,1.1666666667,757.3666666667,96.3333333333,2,49.6666666667,0.6,32.9496529885,32.9496529885 -90,0,21.175,35.5675,19.9633333333,35.9333333333,20.1,36.5,19.8233333333,35.4333333333,17.2257142857,44.0771428571,2.09,78.59,17.39,30.2,20.5285714286,37.4971428571,17.29,35.4857142857,1.1333333333,757.3833333333,96.6666666667,2,46.8333333333,0.6,46.7862304067,46.7862304067 -80,0,21.26,35.56,20,35.8633333333,20.14,36.554,19.7,35.4333333333,17.236,44.134,2.09,78.59,17.39,30.2,20.6,37.59,17.29,35.5,1.1,757.4,97,2,44,0.6,35.0929433363,35.0929433363 -80,0,21.29,35.4666666667,20.0666666667,35.79,20.2,36.5,19.7,35.56,17.2385714286,44.1371428571,2.09,78.59,17.39,30.2,20.6,37.6528571429,17.29,35.5,1.0666666667,757.45,97,2,42.1666666667,0.5833333333,30.565949867,30.565949867 -80,10,21.3566666667,35.4,20.1,35.76,20.2,36.5,19.6,35.6266666667,17.254,44.2,2.0675,78.615,17.39,30.2,20.66,37.754,17.29,35.5,1.0333333333,757.5,97,2,40.3333333333,0.5666666667,17.912741995,17.912741995 -60,0,21.3233333333,35.29,20.1666666667,35.6266666667,20.2,36.4714285714,19.6,35.76,17.2771428571,44.2514285714,2,78.7633333333,17.39,30.2,20.7,37.8371428571,17.29,35.5514285714,1,757.55,97,2,38.5,0.55,3.019707778,3.019707778 -40,20,21.39,35.23,20.1333333333,35.56,20.2,36.4,19.5,35.86,17.29,44.33125,2,79.1233333333,17.39,30.26,20.736,37.79,17.29,35.536,0.9666666667,757.6,97,2,36.6666666667,0.5333333333,37.6150641707,37.6150641707 -30,20,21.39,35.2,20.2,35.56,20.1285714286,36.5085714286,19.5,36.06,17.236,44.236,2,79.2633333333,17.39,30.36,20.7385714286,37.9228571429,17.29,35.7285714286,0.9333333333,757.65,97,2,34.8333333333,0.5166666667,15.9356948454,15.9356948454 -30,0,21.39,35.1266666667,20.1666666667,35.3633333333,20,36.656,19.39,36.23,17.2,44.2,2,79.2266666667,17.39,30.5666666667,20.7,38.252,17.39,36.82,0.9,757.7,97,2,33,0.5,29.0296499152,29.0296499152 -60,0,21.39,35.09,20.1,35.3633333333,19.9214285714,36.7257142857,19.3233333333,36.29,17.2,44.236,2,79.2266666667,17.39,30.7,20.7,38.5957142857,17.4214285714,37.4514285714,0.8,757.75,97.3333333333,1.8333333333,29.3333333333,0.4333333333,36.03407091,36.03407091 -50,0,21.3233333333,35.09,20,35.4333333333,19.79,36.79,19.26,36.29,17.2,44.3528571429,1.9666666667,79.53,17.4633333333,30.8266666667,20.7,39.036,17.39,37.68375,0.7,757.8,97.6666666667,1.6666666667,25.6666666667,0.3666666667,4.9737129943,4.9737129943 -40,0,21.29,35.1266666667,20,35.5,19.8614285714,36.8842857143,19.2,36.29,17.2,44.48,1.9,79.59,17.5,30.9266666667,20.6857142857,39.3557142857,17.412,37.812,0.6,757.85,98,1.5,22,0.3,7.7023371006,7.7023371006 -50,0,21.29,35.2,19.9633333333,35.6266666667,19.79,36.9,19.2,36.3266666667,17.2,44.518,1.9,79.56,17.5,31,20.6,39.576,17.4528571429,37.9285714286,0.5,757.9,98.3333333333,1.3333333333,18.3333333333,0.2333333333,36.46333121,36.46333121 -50,0,21.29,35.2,19.89,35.76,19.79,36.9,19.1333333333,36.4,17.2,44.59,1.8266666667,79.4333333333,17.5,31.1333333333,20.5714285714,39.7642857143,17.39,37.9,0.4,757.95,98.6666666667,1.1666666667,14.6666666667,0.1666666667,23.6334633781,23.6334633781 -40,0,21.29,35.26,19.79,35.73,19.79,36.9,19.0666666667,36.4666666667,17.2,44.7,1.79,79.2633333333,17.5,31.2,20.5,39.834,17.4371428571,38.0242857143,0.3,758,99,1,11,0.1,5.7896003942,5.7896003942 -50,10,21.2,35.2,19.79,35.8633333333,19.79,36.9857142857,19,36.4,17.16,44.79,1.73,79.1233333333,17.5,31.2,20.4371428571,39.9,17.412,38.04,0.2666666667,758.0666666667,99,1,10.8333333333,0.0833333333,13.0142773967,13.0142773967 -50,0,21.2,35.26,19.7,35.9333333333,19.85,37.076,18.89,36.5,17.2,44.834,1.6666666667,79.1933333333,17.5,31.2,20.39,39.92,17.5,38.2,0.2333333333,758.1333333333,99,1,10.6666666667,0.0666666667,45.3508491628,45.3508491628 -60,0,21.1,35.3266666667,19.625,35.95,19.89,37.2,18.89,36.5,17.15,44.9,1.5333333333,79.6666666667,17.5,31.29,20.39,40.0957142857,17.456,38.29,0.2,758.2,99,1,10.5,0.05,39.0496936627,39.0496936627 -50,0,21.1,35.4,19.5333333333,36.06,19.89,37.236,18.8566666667,36.4666666667,17.1,45,1.4633333333,80.03,17.5,31.29,20.29,40.44,17.4842857143,38.3842857143,0.1666666667,758.2666666667,99,1,10.3333333333,0.0333333333,32.2953891358,32.2953891358 -20,0,21.1,35.5,19.5,36.1266666667,19.95875,37.29,18.79,36.425,17.14,45,1.39,80.23,17.5,31.39,20.3185714286,40.6528571429,17.5,38.4,0.1333333333,758.3333333333,99,1,10.1666666667,0.0166666667,26.0161643848,26.0161643848 -30,0,21.0333333333,35.5,19.4266666667,36.2,20,37.29,18.79,36.5,17.2,45.0225,1.39,80.3666666667,17.5,31.39,20.29,40.916,17.5,38.4285714286,0.1,758.4,99,1,10,0,47.4610220175,47.4610220175 -20,0,21,35.5,19.39,36.29,20,37.312,18.7,36.5,17.2,45.09,1.445,80.3225,17.5,31.39,20.2642857143,41.2957142857,17.5,38.634,0.1333333333,758.4,99,1,11.1666666667,0.0333333333,23.4160488704,23.4160488704 -40,0,21,35.59,19.3233333333,36.29,20,37.4,18.7,36.5,17.14,45.156,1.39,80.33,17.5,31.4633333333,20.2,41.78,17.5,38.84,0.1666666667,758.4,99,1,12.3333333333,0.0666666667,23.0960790999,23.0960790999 -50,0,20.9266666667,35.6633333333,19.26,36.29,20,37.4,18.6666666667,36.5,17.16,45.2,1.29,80.5633333333,17.5,31.5,20.2,42.116,17.5,38.978,0.2,758.4,99,1,13.5,0.1,47.8544429759,47.8544429759 -50,10,20.89,35.73,19.2,36.29,20,37.4857142857,18.6,36.5,17.1285714286,45.2,1.3566666667,80.69,17.5,31.5,20.2,42.454,17.5,39.1214285714,0.2333333333,758.4,99,1,14.6666666667,0.1333333333,2.9688072391,2.9688072391 -50,0,20.89,35.79,19.1666666667,36.4,20,37.518,18.6,36.4333333333,17.1,45.2,1.39,80.59,17.5,31.5,20.2,42.7425,17.5,39.236,0.2666666667,758.4,99,1,15.8333333333,0.1666666667,34.3936334713,34.3936334713 -50,0,20.79,35.79,19.1,36.4666666667,20,37.59,18.6,36.5,17.1,45.236,1.39,80.6566666667,17.5,31.5333333333,20.2,43.0371428571,17.5,39.3842857143,0.3,758.4,99,1,17,0.2,4.1083340882,4.1083340882 -50,0,20.79,35.79,19.0666666667,36.4666666667,20.1,37.736,18.5,36.5,17.1,45.29,1.29,81.0633333333,17.5,31.6,20.12,43.218,17.5,39.42,0.3333333333,758.4166666667,99,1.1666666667,17.1666666667,0.2166666667,16.1054687575,16.1054687575 -40,0,20.76,35.9,19,36.4666666667,20.1,37.7771428571,18.5,36.5,17.1,45.378,1.29,81.2633333333,17.5,31.6,20.1,43.478,17.5,39.5,0.3666666667,758.4333333333,99,1.3333333333,17.3333333333,0.2333333333,45.0374475098,45.0374475098 -50,0,20.7,35.9,18.9633333333,36.5,20.1,37.754,18.5,36.5,17.1,45.4,1.29,81.19,17.5,31.6,20.1,43.59,17.5,39.5,0.4,758.45,99,1.5,17.5,0.25,28.1770482892,28.1770482892 -40,0,20.7,35.9,18.89,36.56,20.1,37.79,18.5,36.5,17.1,45.4,1.29,81.2633333333,17.5,31.6333333333,20.1,43.59,17.5571428571,39.5514285714,0.4333333333,758.4666666667,99,1.6666666667,17.6666666667,0.2666666667,13.5950725409,13.5950725409 -40,0,20.7,35.9,18.8233333333,36.5666666667,20.1,37.79,18.39,36.4,17.1,45.4,1.26,81.3,17.5,31.7,20.1,43.674,17.56,39.612,0.4666666667,758.4833333333,99,1.8333333333,17.8333333333,0.2833333333,42.4321770435,42.4321770435 -50,0,20.6,35.8266666667,18.8233333333,36.6266666667,20.1,37.8057142857,18.39,36.4666666667,17.1,45.46,1.2,81.3666666667,17.5,31.7,20.08,43.772,17.5714285714,39.7,0.5,758.5,99,2,18,0.3,8.1779932836,8.1779932836 -40,10,20.6,35.9,18.76,36.59,20.12,37.9,18.39,36.5,17.0714285714,45.4714285714,1.1,81.6933333333,17.5,31.7,20,43.7,17.54,39.7,0.5166666667,758.5,99,2,17.8333333333,0.3333333333,43.5384391109,43.5384391109 -30,0,20.5,35.9,18.7,36.59,20.2,37.9,18.39,36.5,17.1,45.5,1.1,82.0266666667,17.5,31.7,20,43.745,17.5375,39.75625,0.5333333333,758.5,99,2,17.6666666667,0.3666666667,30.9418527409,30.9418527409 -30,0,20.5,35.9,18.7,36.7,20.2,37.9,18.3566666667,36.5,17.1,45.5,1.1,82.16,17.5,31.7,20,43.9,17.6,39.79,0.55,758.5,99,2,17.5,0.4,33.6125942296,33.6125942296 -30,0,20.5,35.9,18.675,36.7675,20.2,37.9,18.29,36.5,17.1,45.5128571429,1.1,82.4333333333,17.5,31.79,20,43.9,17.54,39.812,0.5666666667,758.5,99,2,17.3333333333,0.4333333333,19.9314569705,19.9314569705 -50,0,20.4266666667,35.9,18.6,36.79,20.18,37.9,18.29,36.5,17.1,45.59,1.1,82.59,17.5,31.79,20,43.95,17.5714285714,39.9,0.5833333333,758.5,99,2,17.1666666667,0.4666666667,27.4582211743,27.4582211743 -40,0,20.39,35.9,18.5666666667,36.8266666667,20.1,37.9,18.26,36.4666666667,17.1,45.59,1.1,82.53,17.5,31.79,20,43.94,17.54,40,0.6,758.5,99,2,17,0.5,7.1358402027,7.1358402027 -50,0,20.39,35.9,18.5,36.9,20.1,37.9,18.2,36.4666666667,17.1,45.634,1.1,82.7966666667,17.5,31.79,20,44,17.6,40,0.6666666667,758.5666666667,99.1666666667,2.1666666667,14.8333333333,0.5833333333,42.2811374534,42.2811374534 -50,0,20.39,35.9,18.5,37,20.1,37.9285714286,18.2,36.5,17.1,45.6083333333,1.1333333333,83.0633333333,17.5,31.79,19.9214285714,44,17.56,40.018,0.7333333333,758.6333333333,99.3333333333,2.3333333333,12.6666666667,0.6666666667,0.2840302419,0.2840302419 -50,0,20.29,35.9333333333,18.5,37.06,20.1,37.96,18.2,36.5,17.1,45.7,1.2,83.33,17.4266666667,31.79,19.934,43.9,17.6,40.09,0.8,758.7,99.5,2.5,10.5,0.75,25.7950994885,25.7950994885 -60,10,20.29,36,18.39,37.09,20.1,38,18.2,36.5,17.0714285714,45.6685714286,1.1,83.4633333333,17.445,31.89,19.89,43.9,17.6,40.09,0.8666666667,758.7666666667,99.6666666667,2.6666666667,8.3333333333,0.8333333333,16.3010497927,16.3010497927 -40,0,20.2,36,18.39,37.09,20.2,38.036,18.2,36.5,17.06,45.656,1.0333333333,83.4633333333,17.4633333333,31.89,19.89,43.9,17.6,40.1528571429,0.9333333333,758.8333333333,99.8333333333,2.8333333333,6.1666666667,0.9166666667,40.2319355868,40.2319355868 -50,0,20.2,36,18.29,37.2,20.2,38.09,18.2,36.5,17.0571428571,45.6528571429,0.7333333333,82.8966666667,17.39,31.89,19.89,43.9,17.6,40.2,1,758.9,100,3,4,1,31.9242318394,31.9242318394 -40,0,20.2,36.09,18.29,37.2,20.2,38.09,18.2,36.5,17.1,45.736,0.6,83.2966666667,17.4633333333,31.9633333333,19.89,43.9,17.6,40.2642857143,0.85,758.9666666667,99.8333333333,2.8333333333,6.5,0.8333333333,39.5007515675,39.5007515675 -50,0,20.1333333333,36.09,18.29,37.29,20.2,38.112,18.1,36.53,17.0142857143,45.7128571429,0.5666666667,83.5933333333,17.39,31.89,19.89,43.9,17.6,40.29,0.7,759.0333333333,99.6666666667,2.6666666667,9,0.6666666667,18.1776385638,18.1776385638 -40,0,20.1,36.1266666667,18.29,37.29,20.2,38.1685714286,18.1,36.59,17,45.7,0.4333333333,83.0666666667,17.39,31.89,19.89,43.9,17.6,40.3528571429,0.55,759.1,99.5,2.5,11.5,0.5,12.4607259524,12.4607259524 -20,0,20.1,36.2,18.26,37.4,20.2,38.2,18.1,36.53,17,45.7,0.1666666667,82.3666666667,17.39,31.89,19.84,43.8,17.58,40.4,0.4,759.1666666667,99.3333333333,2.3333333333,14,0.3333333333,22.0964771346,22.0964771346 -40,0,20.0666666667,36.1633333333,18.2,37.4,20.2,38.2,18.1,36.59,17,45.7,0.0333333333,82.56,17.39,31.89,19.8328571429,43.6371428571,17.5714285714,40.4,0.25,759.2333333333,99.1666666667,2.1666666667,16.5,0.1666666667,4.2458865908,4.2458865908 -30,0,20.0666666667,36.1633333333,18.2,37.4,20.2,38.2,18,36.5,17,45.7,-0.2333333333,82.6266666667,17.39,31.9633333333,19.79,43.59,17.6,40.4,0.1,759.3,99,2,19,0,16.2712043501,16.2712043501 -40,0,20,36.2,18.1333333333,37.4,20.1714285714,38.2,18,36.5,17,45.754,-0.3666666667,82.0333333333,17.39,31.9266666667,19.79,43.59,17.6,40.4571428571,-0.1,759.3666666667,99,2,24.3333333333,-0.2166666667,37.4867974664,37.4867974664 -40,0,20,36.2,18.1,37.5,20.16,38.2,18,36.5,17,45.79,-0.6333333333,80.7266666667,17.39,32,19.745,43.515,17.6,40.5,-0.3,759.4333333333,99,2,29.6666666667,-0.4333333333,29.6429224312,29.6429224312 -50,0,19.89,36.2,18.0333333333,37.5,20.1,38.2385714286,18,36.5,17,45.79,-0.8,80.575,17.39,32,19.736,43.46,17.6,40.5,-0.5,759.5,99,2,35,-0.65,41.6913613561,41.6913613561 -40,0,19.89,36.2,18,37.5,20.1,38.254,18,36.5,17,45.79,-0.9666666667,81.5,17.39,31.9266666667,19.7,43.4,17.6,40.5,-0.7,759.5666666667,99,2,40.3333333333,-0.8666666667,37.921446003,37.921446003 -50,0,19.89,36.29,17.9725,37.5675,20.1,38.29,18,36.5,17,45.79,-1.0333333333,82.3,17.39,32,19.7,43.44,17.6,40.5514285714,-0.9,759.6333333333,99,2,45.6666666667,-1.0833333333,17.3557010712,17.3557010712 -50,10,19.89,36.29,17.89,37.59,20.1,38.29,18,36.5,17,45.79,-1.1666666667,82.4333333333,17.39,32,19.7,43.4,17.6,40.63,-1.1,759.7,99,2,51,-1.3,45.383960288,45.383960288 -50,0,19.8566666667,36.26,17.89,37.5266666667,20.1,38.2128571429,17.89,36.4,17,45.6942857143,-1.2,82.8966666667,17.3566666667,31.7233333333,19.7,43.4,17.6,40.8371428571,-1.1166666667,759.75,98.5,2,52.6666666667,-1.3833333333,21.0435586283,21.0435586283 -60,20,19.79,36.2,17.89,37.3266666667,20.1,38.218,17.89,36.2666666667,17,45.356,-1.26,82.3566666667,17.29,31.3233333333,19.7,42.74,17.6,40.656,-1.1333333333,759.8,98,2,54.3333333333,-1.4666666667,2.8922114172,2.8922114172 -100,10,19.79,36.1,17.79,37.06,20.1,38.2642857143,18.0966666667,36.5,17,45.2228571429,-1.4266666667,82.03,17.29,31.1333333333,19.675,42.3,17.6,40.3575,-1.15,759.85,97.5,2,56,-1.55,33.6240935605,33.6240935605 -40,0,19.73,36.1566666667,17.79,36.9333333333,20.1,38.2,18.3566666667,36.6266666667,17,45.072,-1.5,82.3633333333,17.2225,30.82,19.6,41.6616666667,17.5428571429,40.04,-1.1666666667,759.9,97,2,57.6666666667,-1.6333333333,29.3197840219,29.3197840219 -40,10,19.73,36.29,17.79,36.9666666667,20.0857142857,38.1242857143,18.39,36.1333333333,17,44.9285714286,-1.4633333333,82.9966666667,17.2,30.7,19.54,41.22,17.5,39.794,-1.1833333333,759.95,96.5,2,59.3333333333,-1.7166666667,37.667992455,37.667992455 -30,0,19.7,36.4666666667,17.79,36.9666666667,20,37.94,18.3233333333,35.86,17,44.754,-1.39,83.2633333333,17.2,30.5666666667,19.5,40.845,17.5,39.4971428571,-1.2,760,96,2,61,-1.8,20.0002267025,20.0002267025 -40,0,19.7,36.4,17.7,37.09,20,37.8214285714,18.29,35.8266666667,17,44.6371428571,-1.4266666667,83.33,17.2,30.5,19.5,40.4433333333,17.5,39.054,-0.9833333333,760.05,95.6666666667,2.1666666667,61.3333333333,-1.6166666667,40.8043575822,40.8043575822 -30,0,19.7,36.4,17.7,37.09,19.934,37.656,18.29,35.8266666667,17,44.516,-1.5,83.3966666667,17.1666666667,30.3566666667,19.456,40.08,17.4371428571,38.7242857143,-0.7666666667,760.1,95.3333333333,2.3333333333,61.6666666667,-1.4333333333,42.6903753192,42.6903753192 -50,0,19.7,36.2666666667,17.7,37.06,19.9057142857,37.5385714286,18.29,35.8333333333,17,44.4,-1.3566666667,83.93,17.1666666667,30.29,19.39,39.795,17.39,38.374,-0.55,760.15,95,2.5,62,-1.25,34.0814877534,34.0814877534 -60,10,19.7,36.09,17.7,36.9333333333,19.89,37.5,18.23,35.5666666667,16.956,44.2,-1.29,84.2633333333,17.1,30.2,19.39,39.5666666667,17.39,38.1942857143,-0.3333333333,760.2,94.6666666667,2.6666666667,62.3333333333,-1.0666666667,49.344679981,49.344679981 -200,0,19.7,36.09,17.6666666667,36.8333333333,19.8614285714,37.3971428571,18.2,35.3633333333,16.9985714286,43.8114285714,-1.26,84.5266666667,17.1,30.4,19.31,39.398,17.39,37.754,-0.1166666667,760.25,94.3333333333,2.8333333333,62.6666666667,-0.8833333333,31.5151131363,31.5151131363 -340,0,19.6666666667,36.86,17.6,36.7,19.79,36.95,18.2,35.23,17.12,42.8,-1.2,84.3333333333,17.1,30.39,19.29,39.29,17.39,37.6242857143,0.1,760.3,94,3,63,-0.7,24.8433317407,24.8433317407 -150,0,19.6666666667,38.8,17.6,36.79,19.7257142857,36.7571428571,18.1,35.09,17.2257142857,41.9971428571,-1.05,84.845,17.1,30.3233333333,19.29,39.1233333333,17.39,37.48,0.45,760.3666666667,93,2.8333333333,56,-0.5166666667,41.4921656717,41.4921656717 -120,0,19.6333333333,37.8,17.6,36.8633333333,19.7,36.7,18.1,35.03,17.29,41.514,-0.7666666667,85.53,17.1,30.29,19.29,38.96,17.39,37.2257142857,0.8,760.4333333333,92,2.6666666667,49,-0.3333333333,33.2928521791,33.2928521791 -70,0,19.6333333333,37.1333333333,17.6333333333,37.03,19.7,36.7,18.1,34.8633333333,17.3471428571,41.1257142857,-0.5666666667,85.73,17.1,30.29,19.2385714286,38.7228571429,17.39,36.96,1.15,760.5,91,2.5,42,-0.15,38.6674152454,38.6674152454 -70,0,19.6,36.8333333333,17.76,37.09,19.7,36.7,18.1,34.79,17.39,40.7675,-0.3333333333,85.8666666667,17.1,30.2,19.2,38.59,17.39,36.7385714286,1.5,760.5666666667,90,2.3333333333,35,0.0333333333,42.7296598325,42.7296598325 -90,0,19.6,36.7,17.86,37,19.7,36.7,18.1333333333,34.79,17.39,40.59,0,86.06,17.1,30.2,19.2,38.5,17.39,36.516,1.85,760.6333333333,89,2.1666666667,28,0.2166666667,30.9595111525,30.9595111525 -70,10,19.6,36.73,18.1,36.875,19.7,36.7514285714,18.2225,34.8975,17.5,40.29,0.3333333333,86.2266666667,17.1333333333,30.23,19.2,38.4333333333,17.39,36.3685714286,2.2,760.7,88,2,21,0.4,46.7979008332,46.7979008332 -80,0,19.6,36.8633333333,18.2,36.6266666667,19.7,36.79,18.29,35,17.5,40.2642857143,0.5333333333,86.4333333333,17.1333333333,30.29,19.16,38.356,17.39,36.236,2.4166666667,760.75,87.8333333333,2.1666666667,21.3333333333,0.5833333333,29.3869951391,29.3869951391 -170,0,19.6,36.8633333333,18.3233333333,36.5266666667,19.7,36.7514285714,18.3233333333,35,17.5,40.09,0.8666666667,86.53,17.2,30.29,19.16,38.29,17.39,36.2128571429,2.6333333333,760.8,87.6666666667,2.3333333333,21.6666666667,0.7666666667,44.2425156478,44.2425156478 -700,0,19.6,36.8633333333,18.4633333333,36.4666666667,19.7,36.834,18.39,35,17.5,39.9557142857,1.26,86.73,17.2,30.29,19.15,38.2675,17.412,36.218,2.85,760.85,87.5,2.5,22,0.95,45.9307379788,45.9307379788 -580,0,19.6,37.1,18.5,35.9666666667,19.7657142857,37.3,18.4266666667,35.03,17.5,39.845,1.89,87.09,17.2,30.3233333333,19.14,38.178,17.5,36.3685714286,3.0666666667,760.9,87.3333333333,2.6666666667,22.3333333333,1.1333333333,0.9875850519,0.9875850519 -320,10,19.6,37.03,18.5666666667,35.8266666667,19.996,38,18.5,35.1633333333,17.5,39.79,2.1633333333,87.09,17.2,30.4725,19.18,38.09,17.5,36.4,3.2833333333,760.95,87.1666666667,2.8333333333,22.6666666667,1.3166666667,49.9123905436,49.9123905436 -280,10,19.6,37.09,18.6,35.9333333333,20.2928571429,38.2385714286,18.5,35.1633333333,17.5,39.8971428571,2.4333333333,87.3966666667,17.26,30.6333333333,19.1333333333,38.1633333333,17.5,36.47,3.5,761,87,3,23,1.5,6.185616483,6.185616483 -260,10,19.6,37.03,18.6,36.06,20.64,38.2,18.4266666667,35.03,17.54,40.2,2.6333333333,87.7966666667,17.2,30.6333333333,19.1,38.1083333333,17.5,36.936,3.7333333333,761.0333333333,86.6666666667,3.1666666667,24,1.6666666667,27.1321226959,27.1321226959 -350,0,19.6,37.1633333333,18.6333333333,36.36,20.8085714286,38.0128571429,18.39,35,17.6,40.6657142857,3.03,88.0633333333,17.26,30.76,19.16,38.09,17.5714285714,37.7285714286,3.9666666667,761.0666666667,86.3333333333,3.3333333333,25,1.8333333333,19.0265730838,19.0265730838 -390,0,19.6,37.2,18.7,36.56,20.976,37.714,18.39,35.06,17.58,41.552,3.1633333333,88.19,17.29,30.89,19.1,38.09,17.6,38.145,4.2,761.1,86,3.5,26,2,23.6709533376,23.6709533376 -270,0,19.6,37.26,18.7,36.7,21.1714285714,37.5642857143,18.39,35.23,17.4685714286,42.1685714286,3.2,87.9666666667,17.29,30.9633333333,19.15,38.09,17.6,38.9114285714,4.4333333333,761.1333333333,85.6666666667,3.6666666667,27,2.1666666667,48.5613067052,48.5613067052 -320,0,19.7,37.4333333333,18.7,36.8333333333,21.33,37.254,18.4633333333,35.29,17.39,42.634,3.2225,87.95,17.3233333333,31.0333333333,19.18,38.558,17.6142857143,39.9557142857,4.6666666667,761.1666666667,85.3333333333,3.8333333333,28,2.3333333333,6.3246810809,6.3246810809 -480,0,19.7,37.6333333333,18.73,37.03,21.4528571429,37.1528571429,18.5,35.4633333333,17.39,42.98,3.43,88.4933333333,17.4633333333,31.1666666667,19.2,39.2,17.7,40.478,4.9,761.2,85,4,29,2.5,27.8198379092,27.8198379092 -610,0,19.8933333333,41.9666666667,18.79,37.3633333333,21.5,37.13,18.5666666667,35.59,17.39,43.332,3.6933333333,88.66,17.6333333333,31.23,19.236,39.2,17.7,40.6942857143,5.1166666667,761.1666666667,84,4,29,2.55,13.8905445114,13.8905445114 -610,0,20.1,44.2333333333,18.8233333333,39.2333333333,21.5285714286,37.6214285714,18.6333333333,35.73,17.39,44.1714285714,4.0266666667,88.8666666667,17.8266666667,31.29,19.434,39.2,17.7,40.94,5.3333333333,761.1333333333,83,4,29,2.6,26.8389700796,26.8389700796 -390,0,20.2,42.1966666667,18.9633333333,40.1,21.815,39.1925,18.7,35.79,17.33,44.976,4.43,89.0633333333,18.0333333333,31.3233333333,19.6,39.054,17.6714285714,41.0228571429,5.55,761.1,82,4,29,2.65,34.1931116651,34.1931116651 -340,0,20.26,41.2566666667,19.0333333333,40.2,22.074,40.074,18.7,35.9,17.3471428571,45.3128571429,4.9566666667,88.93,18.1666666667,31.39,19.65,38.9166666667,17.7,41.156,5.7666666667,761.0666666667,81,4,29,2.7,26.9676553318,26.9676553318 -240,0,20.3233333333,40.4233333333,19.1,40.0666666667,22.4685714286,41.0614285714,18.76,35.9666666667,17.33,45.518,5.2266666667,87.6333333333,18.23,31.39,19.736,38.82,17.7,41.2642857143,5.9833333333,761.0333333333,80,4,29,2.75,14.7291794536,14.7291794536 -260,0,20.39,39.89,19.1,39.7233333333,22.7,41.6175,18.79,36,17.29,45.6214285714,5.4333333333,87.6333333333,18.29,31.39,19.79,38.59,17.7,41.334,6.2,761,79,4,29,2.8,36.1699903267,36.1699903267 -210,0,20.39,39.49,19.1,39.3975,22.8975,42.025,18.7225,36.0675,17.29,45.59,5.7266666667,86.7,18.29,31.39,19.79,38.50875,17.6571428571,41.3671428571,6.35,760.9333333333,77.5,4,30.8333333333,2.65,49.6881871135,49.6881871135 -140,0,20.39,39.23,19.1,39.0666666667,23.02,42.14,18.7,36.09,17.29,45.59,5.8666666667,85.1,18.29,31.39,19.79,38.4,17.7,41.5,6.5,760.8666666667,76,4,32.6666666667,2.5,44.940874551,44.940874551 -70,0,20.39,39.4266666667,19.1666666667,38.4566666667,23.0714285714,41.2857142857,18.76,35.9666666667,17.29,45.554,6.09,83.3233333333,18.29,31.39,19.79,38.29,17.7,41.5,6.65,760.8,74.5,4,34.5,2.35,15.4845378827,15.4845378827 -50,0,20.39,39.2333333333,19.1,37.73,22.66,39.09,18.76,35.9666666667,17.29,45.5257142857,6.2966666667,81.7966666667,18.3566666667,31.39,19.8566666667,38.275,17.7,41.5,6.8,760.7333333333,73,4,36.3333333333,2.2,42.1515083639,42.1515083639 -50,0,20.5,38.7233333333,19,37.49,22.3814285714,38.0271428571,18.7,35.8633333333,17.29,45.29,6.59,78.29,18.5,31.4633333333,19.89,38.094,17.7,41.5,6.95,760.6666666667,71.5,4,38.1666666667,2.05,16.6324443184,16.6324443184 -110,0,20.5,38.47,19,37.43,22.2,37.4333333333,18.7,35.79,17.29,45.1371428571,6.6566666667,75.5633333333,18.575,31.2925,19.89,38,17.718,41.5,7.1,760.6,70,4,40,1.9,0.454624847,0.454624847 -350,0,20.5,38.23,19.0333333333,37.6266666667,22.0666666667,37.1133333333,18.73,35.8266666667,17.29,45,7.1,73.59,18.6666666667,31.26,19.9214285714,37.9714285714,17.79,41.4285714286,7.05,760.55,69.3333333333,4.1666666667,40,1.7166666667,19.5539522334,19.5539522334 -210,0,20.5333333333,38.1633333333,19.1,37.7,21.89,36.9,18.79,35.9,17.29,45,7.8333333333,70.73,18.8233333333,31.2,20.04,37.9,17.79,41.4,7,760.5,68.6666666667,4.3333333333,40,1.5333333333,0.8843300398,0.8843300398 -50,0,20.6,38.03,19.1666666667,37.7,21.79,36.79,18.79,35.9666666667,17.29,44.94,8.0333333333,66.9,18.9633333333,31.0666666667,20.1,37.856,17.79,41.2857142857,6.95,760.45,68,4.5,40,1.35,9.8218423198,9.8218423198 -60,0,20.6333333333,38.1266666667,19.1666666667,37.7,21.7128571429,36.79,18.79,35.9,17.29,45,8.195,64.8425,19.1333333333,30.8566666667,20.2,37.656,17.85,41.276,6.9,760.4,67.3333333333,4.6666666667,40,1.1666666667,23.3176752925,23.3176752925 -60,0,20.7,38.2,19.23,37.8266666667,21.64,36.79,18.8233333333,36.03,17.29,45,8.36,62.63,19.26,30.79,20.33,37.554,17.89,41.4,6.85,760.35,66.6666666667,4.8333333333,40,0.9833333333,46.5610752231,46.5610752231 -50,0,20.73,38.1633333333,19.29,37.9,21.6,36.79,18.8233333333,35.9633333333,17.29,45,8.39,61.9633333333,19.39,30.5666666667,20.39,37.4,17.89,41.44,6.8,760.3,66,5,40,0.8,38.7637073756,38.7637073756 -330,0,20.79,38.03,19.39,37.79,21.5,36.9,18.8233333333,35.9,17.29,45,8.39,62.5566666667,19.4633333333,30.5,20.476,37.378,17.89,41.5,6.9166666667,760.3,66.1666666667,5,38.1666666667,0.9333333333,2.754978626,2.754978626 -380,0,20.8233333333,38.2266666667,19.39,37.8633333333,21.525,37.075,18.89,35.9666666667,17.29,45.09,8.2633333333,59.5566666667,19.6,30.3266666667,20.6,37.2257142857,17.89,41.5,7.0333333333,760.3,66.3333333333,5,36.3333333333,1.0666666667,2.8485744609,2.8485744609 -280,0,20.89,38.7666666667,19.5,38.03,21.6971428571,38.0285714286,18.89,35.76,17.29,45.1528571429,8.19,59.2966666667,19.6666666667,30.2,20.7,37.09,17.89,41.5,7.15,760.3,66.5,5,34.5,1.2,35.5999898515,35.5999898515 -240,0,20.9266666667,39.1933333333,19.5,38.1633333333,22.04,38.834,18.89,35.7,17.29,45.24,8.1,59.7566666667,19.73,30.03,20.718,36.994,17.89,41.475,7.2666666667,760.3,66.6666666667,5,32.6666666667,1.3333333333,38.0146585871,38.0146585871 -220,0,21,39.3266666667,19.6,38.29,22.2225,38.925,18.89,35.59,17.29,45.4285714286,8.1,60.3633333333,19.8566666667,29.89,20.79,36.7642857143,17.934,41.4,7.3833333333,760.3,66.8333333333,5,30.8333333333,1.4666666667,45.3893027385,45.3893027385 -190,0,21,39.23,19.6,38.29,22.39,38.9285714286,18.89,35.53,17.29,45.59,8.19,60.3633333333,19.8566666667,29.8566666667,20.79,36.7,17.9371428571,41.4,7.5,760.3,67,5,29,1.6,7.3891683947,7.3891683947 -200,0,21,39.29,19.6,38.4,22.5,38.9,18.84,35.45,17.29,45.7357142857,8.13,59.89,19.79,29.79,20.79,36.678,17.89,41.4,7.3333333333,760.25,67.3333333333,5,30.8333333333,1.5333333333,3.673986916,3.673986916 -120,0,21,39.2233333333,19.6,38.3175,22.5857142857,38.6785714286,18.8566666667,35.3633333333,17.29,45.812,8.0333333333,58.5633333333,19.79,29.76,20.79,36.59,17.9214285714,41.4,7.1666666667,760.2,67.6666666667,5,32.6666666667,1.4666666667,30.1118448609,30.1118448609 -50,0,21,39.03,19.6,38.23,22.66,38.418,18.79,35.23,17.29,45.9,7.8333333333,58.6233333333,19.79,29.6333333333,20.7771428571,36.4985714286,18,41.4,7,760.15,68,5,34.5,1.4,43.3517801575,43.3517801575 -50,0,21,38.8333333333,19.6,38.2,22.66,37.858,18.79,35.1633333333,17.29,45.94,7.8,58.0333333333,19.7,29.5666666667,20.7,36.378,17.9214285714,41.4,6.8333333333,760.1,68.3333333333,5,36.3333333333,1.3333333333,24.9663928058,24.9663928058 -60,0,21,38.6266666667,19.5333333333,38.1266666667,22.414,37.356,18.79,35.09,17.29,45.9428571429,7.8,57.5666666667,19.6333333333,29.4266666667,20.7,36.29,17.934,41.4,6.6666666667,760.05,68.6666666667,5,38.1666666667,1.2666666667,12.4490882037,12.4490882037 -40,0,21,38.3333333333,19.5666666667,38,22.29,37.1116666667,18.73,35.2,17.29,45.9,7.6566666667,58.4966666667,19.6,29.39,20.7,36.2128571429,17.89,41.3214285714,6.5,760,69,5,40,1.2,5.99433803,5.99433803 -50,0,21,38.07,19.5,38,22.1725,36.87,18.73,35.2,17.29,45.8214285714,7.53,59.4966666667,19.575,29.39,20.6285714286,36.1214285714,17.934,41.29,6.3333333333,759.9666666667,70.1666666667,4.8333333333,40,1.2666666667,13.4598540724,13.4598540724 -90,0,21,37.9,19.4633333333,37.8633333333,22.04,36.736,18.7,35.29,17.29,45.79,7.33,60.3666666667,19.5,29.4633333333,20.6,36.2,17.9057142857,41.29,6.1666666667,759.9333333333,71.3333333333,4.6666666667,40,1.3333333333,47.9737621848,47.9737621848 -410,0,20.9633333333,37.6333333333,19.39,37.79,21.934,36.674,18.7,35.3633333333,17.29,45.7228571429,7.0925,61.3725,19.4633333333,29.5666666667,20.5285714286,36.2257142857,17.89,41.272,6,759.9,72.5,4.5,40,1.4,20.2705729869,20.2705729869 -320,0,20.89,37.5,19.29,37.8266666667,21.976,37.052,18.6666666667,35.4,17.29,45.59,6.7933333333,61.99,19.39,29.5666666667,20.56,36.67,17.89,41.2,5.8333333333,759.8666666667,73.6666666667,4.3333333333,40,1.4666666667,38.185299118,38.185299118 -310,0,20.89,37.7,19.29,38.0266666667,22.15,37.545,18.6,35.4,17.29,45.59,6.3966666667,62.8266666667,19.3566666667,29.7,20.5571428571,37.0085714286,17.89,41.09,5.6666666667,759.8333333333,74.8333333333,4.1666666667,40,1.5333333333,4.978462134,4.978462134 -280,0,20.8233333333,37.7,19.26,38.23,22.35,37.59,18.6,35.4,17.29,45.59,5.9966666667,63.2333333333,19.29,29.7,20.6,37.2,17.89,41.1214285714,5.5,759.8,76,4,40,1.6,49.8948032968,49.8948032968 -250,0,20.89,38.03,19.2,38.3633333333,22.54,37.516,18.6,35.4666666667,17.29,45.6057142857,5.5266666667,64.46,19.2,29.6333333333,20.7,37.536,17.89,41.112,5.2666666667,759.8166666667,77,3.8333333333,40,1.55,19.7375121759,19.7375121759 -180,0,20.8233333333,38.09,19.2,38.6266666667,22.7,37.2257142857,18.5,35.6266666667,17.29,45.718,5.1933333333,65.3333333333,19.2,29.76,20.7,37.7225,17.89,41.2,5.0333333333,759.8333333333,78,3.6666666667,40,1.5,38.1808544043,38.1808544043 -110,0,20.79,38.23,19.1333333333,38.7,22.79,36.9,18.5,35.7,17.29,45.79,4.7966666667,66.5333333333,19.1,29.79,20.7,38.0357142857,17.89,41.236,4.8,759.85,79,3.5,40,1.45,15.1885542669,15.1885542669 -90,20,20.79,38.3633333333,19.1,38.8266666667,22.7,36.71,18.5,35.73,17.29,45.9,4.4633333333,67.46,19.1,29.8566666667,20.79,38.2,17.8328571429,41.2385714286,4.5666666667,759.8666666667,80,3.3333333333,40,1.4,18.5487550101,18.5487550101 -90,30,20.79,38.29,19.0333333333,38.8266666667,22.5,36.4,18.5,35.93,17.29,45.9,4.195,68.4475,19,29.79,20.745,38.2,17.83,41.298,4.3333333333,759.8833333333,81,3.1666666667,40,1.35,15.6378548825,15.6378548825 -40,0,20.79,38.29,19.0666666667,38.8633333333,22.3583333333,36.3633333333,18.8,36.53,17.29,45.9,3.86,69.7666666667,19,29.79,20.79,38.2,17.79,41.2257142857,4.1,759.9,82,3,40,1.3,22.40467628,22.40467628 -30,0,20.79,38.06,19,38.73,22.254,36.46,19.0666666667,36.73,17.29,45.878,3.6333333333,70.9933333333,18.89,29.9266666667,20.79,37.96,17.79,41.2,4.0833333333,759.8333333333,82,3.1666666667,40,1.2666666667,25.5007293657,25.5007293657 -50,0,20.73,37.9333333333,18.9633333333,38.59,22.1,36.5,19.1,36.45,17.2642857143,45.7642857143,3.5,72.2666666667,18.89,30,20.6557142857,37.7857142857,17.79,41.2514285714,4.0666666667,759.7666666667,82,3.3333333333,40,1.2333333333,14.6038325736,14.6038325736 -50,0,20.7,37.7,18.89,38.4975,22.0285714286,36.4285714286,19,36.23,17.29,45.7,3.3633333333,72.5966666667,18.79,30,20.6,37.616,17.79,41.29,4.05,759.7,82,3.5,40,1.2,46.1177261313,46.1177261313 -50,0,20.7,37.7,18.8233333333,38.3266666667,22,36.356,18.9266666667,36.23,17.29,45.5928571429,3.23,73.4566666667,18.79,30,20.52,37.42,17.79,41.29,4.0333333333,759.6333333333,82,3.6666666667,40,1.1666666667,4.9981684308,4.9981684308 -50,0,20.6,37.3633333333,18.79,38.2,21.9057142857,36.2385714286,18.89,36.23,17.254,45.44,3.09,74.4966666667,18.76,30.1,20.445,37.345,17.79,41.25625,4.0166666667,759.5666666667,82,3.8333333333,40,1.1333333333,35.0078666001,35.0078666001 -40,0,20.6,37.23,18.73,38.1266666667,21.87,36.2,18.8233333333,36.23,17.2257142857,45.2957142857,3.03,75.29,18.7,30.1,20.39,37.236,17.79,41.054,4,759.5,82,4,40,1.1,0.7492025848,0.7492025848 -40,0,20.5666666667,37.1633333333,18.7,38.06,21.79,36.2,18.79,36.2,17.2,45.156,3.09,75.8666666667,18.6,30.1,20.35,37.254,17.79,40.9528571429,4.1,759.4333333333,81,4.3333333333,40,1.0166666667,48.8412965788,48.8412965788 -50,0,20.5,37.09,18.7,38,21.7675,36.2,18.73,36.2,17.2,45.0385714286,3.0225,75.95,18.6,30.125,20.29,37.2,17.79,40.714,4.2,759.3666666667,80,4.6666666667,40,0.9333333333,25.0112345559,25.0112345559 -40,0,20.5,37,18.6,37.9,21.68,36.178,18.7,36.2,17.218,44.96,3,76.2,18.5333333333,30.2,20.2385714286,37.2,17.79,40.3971428571,4.3,759.3,79,5,40,0.85,22.3906622734,22.3906622734 -50,0,20.39,36.79,18.6,37.9,21.6,36.09,18.7,36.2,17.2257142857,44.85,3.03,76.5,18.5,30.2,20.2,37.26,17.79,39.79,4.4,759.2333333333,78,5.3333333333,40,0.7666666667,46.9353013556,46.9353013556 -50,0,20.39,36.73,18.5,37.79,21.5857142857,36.09,18.6666666667,36.26,17.2,44.656,3.09,76.4333333333,18.5,30.2,20.1666666667,37.4,17.79,39.6333333333,4.5,759.1666666667,77,5.6666666667,40,0.6833333333,20.7607663004,20.7607663004 -50,0,20.3566666667,36.6633333333,18.5,37.79,21.5,36.07875,18.6,36.2,17.2,44.5385714286,3.23,76.2,18.39,30.1,20.1,37.4,17.79,39.36,4.6,759.1,76,6,40,0.6,32.5605889433,32.5605889433 -40,0,20.29,36.59,18.39,37.59,21.5,36,18.5666666667,36.2,17.2,44.48,3.29,75.9333333333,18.39,30.1,20.1,37.4666666667,17.76,39.0266666667,4.5833333333,759.05,76.1666666667,6,40,0.6333333333,35.2661416982,35.2661416982 -40,0,20.29,36.56,18.39,37.59,21.4214285714,36,18.5,36.2,17.2,44.3685714286,3.5,75.56,18.3566666667,30.2,20,37.4,17.7,38.8266666667,4.5666666667,759,76.3333333333,6,40,0.6666666667,18.8223073375,18.8223073375 -30,0,20.23,36.4333333333,18.3566666667,37.59,21.39,36,18.5,36.2,17.2,44.2,3.5,75.2266666667,18.29,30.2,20,37.4,17.7,38.56,4.55,758.95,76.5,6,40,0.7,21.1983923684,21.1983923684 -20,0,20.2,36.3633333333,18.29,37.59,21.3328571429,36.0771428571,18.5,36.2,17.2,44.1371428571,3.6266666667,74.83,18.26,30.2,19.9633333333,37.4666666667,17.7,38.5,4.5333333333,758.9,76.6666666667,6,40,0.7333333333,39.2739687115,39.2739687115 -30,0,20.2,36.29,18.29,37.59,21.272,36.09,18.39,36.2,17.16,44.072,3.76,74.43,18.26,30.2,19.89,37.4,17.7,38.43,4.5166666667,758.85,76.8333333333,6,40,0.7666666667,2.4244555389,2.4244555389 -50,0,20.1333333333,36.29,18.23,37.53,21.2,36.1685714286,18.39,36.26,17.2,43.9714285714,3.8266666667,73.83,18.26,30.26,19.89,37.4,17.7,38.23,4.5,758.8,77,6,40,0.8,28.7395593128,28.7395593128 -50,0,20.1333333333,36.23,18.2,37.4666666667,21.16,36.2,18.39,36.2,17.2,43.856,3.9666666667,73.4966666667,18.2,30.2,19.8233333333,37.3266666667,17.7,38.06,4.65,758.6666666667,76.3333333333,6.1666666667,40,0.8,5.5574398721,5.5574398721 -50,0,20.0666666667,36.1633333333,18.2,37.4,21.1,36.1371428571,18.315,36.2675,17.2,43.7385714286,4.2266666667,72.8633333333,18.2,30.23,19.79,37.29,17.7,37.9333333333,4.8,758.5333333333,75.6666666667,6.3333333333,40,0.8,36.025242554,36.025242554 -40,0,20,36.09,18.2,37.4,21.1,36.09,18.29,36.29,17.2,43.678,4.3666666667,72.1966666667,18.2,30.29,19.79,37.29,17.6666666667,37.76,4.95,758.4,75,6.5,40,0.8,47.4578665569,47.4578665569 -40,0,20,36.09,18.125,37.4,21.1,36.09,18.29,36.4,17.2,43.59,4.4333333333,71.0266666667,18.1333333333,30.29,19.76,37.29,17.6,37.6266666667,5.1,758.2666666667,74.3333333333,6.6666666667,40,0.8,34.8360411939,34.8360411939 -50,0,19.9266666667,36.09,18.1,37.4,21.06,36.054,18.29,36.4666666667,17.2,43.554,4.56,70.5,18.1333333333,30.29,19.7,37.29,17.6,37.56,5.25,758.1333333333,73.6666666667,6.8333333333,40,0.8,45.9169061505,45.9169061505 -50,0,19.9633333333,36.09,18.0666666667,37.3633333333,21,36,18.29,36.5,17.2,43.4375,4.69,70.1566666667,18.1,30.3233333333,19.7,37.29,17.6,37.5,5.4,758,73,7,40,0.8,21.6206460027,21.6206460027 -30,0,19.89,36.09,18,37.3633333333,21,36,18.23,36.5,17.1571428571,43.4,4.7975,70.0225,18.1,30.39,19.6333333333,37.23,17.6,37.4,5.5166666667,757.9,72.8333333333,7.3333333333,40,0.8833333333,38.8251363067,38.8251363067 -50,0,19.89,36.09,18,37.3633333333,21,36,18.2,36.5,17.12,43.378,4.9,70,18.05,30.39,19.6,37.29,17.6,37.29,5.6333333333,757.8,72.6666666667,7.6666666667,40,0.9666666667,42.5554560963,42.5554560963 -50,0,19.8233333333,36.03,18,37.29,20.89,36,18.2,36.5,17.2,43.29,5.03,69.7633333333,18,30.39,19.6,37.29,17.6,37.29,5.75,757.7,72.5,8,40,1.05,38.0094114342,38.0094114342 -50,0,19.79,36,18,37.4,20.9371428571,35.9142857143,18.2,36.5,17.16,43.2,5.1566666667,69.5633333333,18,30.4633333333,19.6,37.29,17.5333333333,37.2,5.8666666667,757.6,72.3333333333,8.3333333333,40,1.1333333333,31.2976270914,31.2976270914 -40,10,19.79,36.0666666667,18,37.4,20.89,35.9,18.2,36.56,17.1714285714,43.2,5.3,69.4,18,30.5333333333,19.5333333333,37.29,17.6,37.2,5.9833333333,757.5,72.1666666667,8.6666666667,40,1.2166666667,8.8593331049,8.8593331049 -30,0,19.79,36.26,17.9633333333,37.53,20.89,35.9,18.2,36.59,17.14,43.2,5.3,69.5266666667,18,30.7266666667,19.5333333333,37.6566666667,17.5333333333,37.1933333333,6.1,757.4,72,9,40,1.3,2.9832465458,2.9832465458 -20,0,19.7,36.4633333333,17.89,37.6633333333,20.89,36,18.2,36.6633333333,17.1428571429,43.2257142857,5.4,69.7266666667,18,30.9266666667,19.6,37.99,17.6,37.6,6.1333333333,757.2833333333,72.3333333333,9,40,1.4166666667,45.0342316297,45.0342316297 -30,0,19.7,36.59,17.89,37.79,20.89,36.0514285714,18.1,36.7,17.1,43.4,5.4666666667,69.8666666667,18,31,19.65,38.55,17.6,37.8266666667,6.1666666667,757.1666666667,72.6666666667,9,40,1.5333333333,36.7238123901,36.7238123901 -50,0,19.7,36.7,17.89,37.8633333333,20.83,36.112,18.1,36.7,17.1,43.4571428571,5.6233333333,69.8666666667,18,31.1333333333,19.7,39,17.6,37.9666666667,6.2,757.05,73,9,40,1.65,32.9344352591,32.9344352591 -50,0,19.7,36.7,17.89,37.9333333333,20.79,36.2642857143,18.1,36.73,17.1,43.554,5.7633333333,69.66,18,31.2,19.6333333333,39.26,17.6,38.1266666667,6.2333333333,756.9333333333,73.3333333333,9,40,1.7666666667,48.7894613529,48.7894613529 -50,0,19.6,36.6266666667,17.89,38,20.79,36.4,18.1,36.79,17.1,43.6214285714,5.8,69.53,18,31.3233333333,19.6,39.4333333333,17.6,38.3333333333,6.2666666667,756.8166666667,73.6666666667,9,40,1.8833333333,6.6475209314,6.6475209314 -60,0,19.6666666667,36.8333333333,17.8233333333,38.0666666667,20.8328571429,36.5371428571,18,36.73,17.1,43.79,5.8666666667,69.99,18,31.39,19.5333333333,39.56,17.6,38.4,6.3,756.7,74,9,40,2,30.9619599488,30.9619599488 -50,0,19.6,36.79,17.8233333333,38.2,20.865,36.6725,18,36.79,17.1,43.8057142857,5.9,71.23,18,31.5333333333,19.5666666667,39.8266666667,17.6,38.4,6.1666666667,756.55,76.1666666667,9.3333333333,37,2.2333333333,19.8920422816,19.8920422816 -40,0,19.6,36.8633333333,17.79,38.23,20.89,36.776,18,36.79,17.1,43.92,5.8333333333,72.8233333333,18,31.6,19.5666666667,40.0266666667,17.6,38.53,6.0333333333,756.4,78.3333333333,9.6666666667,34,2.4666666667,48.8340232638,48.8340232638 -40,0,19.6,36.9333333333,17.79,38.29,20.89,36.9,18,36.8725,17.1,44,5.7633333333,74.6566666667,18,31.7,19.5,40.5,17.6,38.7233333333,5.9,756.25,80.5,10,31,2.7,9.1298031854,9.1298031854 -50,0,19.6,37,17.79,38.4,20.89,36.9,18,36.9666666667,17.1,44.036,5.6233333333,76.53,18,31.76,19.5,40.8333333333,17.6,38.9333333333,5.7666666667,756.1,82.6666666667,10.3333333333,28,2.9333333333,34.2251107795,34.2251107795 -40,0,19.5666666667,37.1266666667,17.79,38.4975,20.89,36.97,17.9633333333,37,17.1,44.1057142857,5.4666666667,78.9266666667,18,31.89,19.5,41.1933333333,17.6,39.06,5.6333333333,755.95,84.8333333333,10.6666666667,25,3.1666666667,7.6796762063,7.6796762063 -50,0,19.5,37.2,17.73,38.59,20.89,37.09,17.89,37.06,17.1,44.218,5.325,80.875,18,31.9633333333,19.5,41.66,17.6,39.3266666667,5.5,755.8,87,11,22,3.4,35.3588816826,35.3588816826 -50,0,19.5,37.2,17.79,38.7,20.8614285714,37.0642857143,17.89,37.1266666667,17.1,44.29,5.3,82.9666666667,18,32.03,19.5,42.4566666667,17.6,39.5266666667,5.4333333333,755.7333333333,88.1666666667,10.6666666667,25.8333333333,3.5333333333,7.5338744442,7.5338744442 -60,0,19.5,37.2,17.79,38.76,20.79,37.09,17.89,37.26,17.1,44.29,5.3,84.2666666667,17.9266666667,32.1633333333,19.5,43.0633333333,17.6,39.645,5.3666666667,755.6666666667,89.3333333333,10.3333333333,29.6666666667,3.6666666667,20.4009916284,20.4009916284 -40,0,19.5,37.29,17.7,38.8266666667,20.79,37.1842857143,17.89,37.29,17.1,44.3842857143,5.3,85.1333333333,17.945,32.245,19.5,43.8,17.6,39.8266666667,5.3,755.6,90.5,10,33.5,3.8,19.1717605456,19.1717605456 -30,0,19.5,37.3633333333,17.7,38.9,20.772,37.218,17.89,37.3633333333,17.08,44.44,5.3,85.8233333333,18,32.3266666667,19.5,44.06,17.6,40.0266666667,5.2333333333,755.5333333333,91.6666666667,9.6666666667,37.3333333333,3.9333333333,0.9942625649,0.9942625649 -20,0,19.445,37.4,17.7,39,20.7,37.2642857143,17.89,37.4333333333,17.0714285714,44.4714285714,5.2266666667,86.3633333333,18,32.4,19.5,44.2666666667,17.6,40.1566666667,5.1666666667,755.4666666667,92.8333333333,9.3333333333,41.1666666667,4.0666666667,1.9765207311,1.9765207311 -30,0,19.39,37.4333333333,17.7,39.06,20.66,37.254,17.89,37.5,17.0625,44.485,5.19,86.8566666667,17.89,32.53,19.5666666667,44.4,17.6,40.29,5.1,755.4,94,9,45,4.2,6.2808140414,6.2808140414 -20,0,19.39,37.5,17.7,39.1266666667,20.6,37.2,17.89,37.53,17.04,44.536,5.19,87.5233333333,17.89,32.59,19.5333333333,44.53,17.6,40.4333333333,5.1666666667,755.2833333333,93.8333333333,9.1666666667,48.3333333333,4.25,37.0293063694,37.0293063694 -50,0,19.39,37.53,17.7,39.2,20.58,37.2,17.8233333333,37.59,17.0428571429,44.5514285714,5.19,88.2933333333,17.89,32.7,19.5333333333,44.59,17.6,40.56,5.2333333333,755.1666666667,93.6666666667,9.3333333333,51.6666666667,4.3,21.4277997846,21.4277997846 -50,0,19.39,37.59,17.6333333333,39.23,20.5,37.2257142857,17.79,37.59,17.06,44.656,5.2633333333,88.7,17.89,32.76,19.6,44.745,17.6,40.73,5.3,755.05,93.5,9.5,55,4.35,34.375093563,34.375093563 -50,0,19.39,37.7,17.6333333333,39.29,20.5,37.29,17.79,37.6633333333,17.1,44.7257142857,5.3,88.9633333333,17.89,32.8266666667,19.6,44.79,17.6,40.8633333333,5.3666666667,754.9333333333,93.3333333333,9.6666666667,58.3333333333,4.4,6.779876037,6.779876037 -60,0,19.3233333333,37.7,17.6,39.3266666667,20.5,37.3528571429,17.79,37.73,17,44.7,5.3666666667,89.1566666667,17.89,32.9,19.5333333333,44.8633333333,17.6,41.03,5.4333333333,754.8166666667,93.1666666667,9.8333333333,61.6666666667,4.45,7.3746812297,7.3746812297 -40,0,19.29,37.79,17.6,39.4,20.5,37.4,17.79,37.79,17,44.7,5.4333333333,89.3966666667,17.89,33,19.5,44.9,17.6,41.1633333333,5.5,754.7,93,10,65,4.5,2.916701301,2.916701301 -50,0,19.29,37.8633333333,17.6,39.4333333333,20.5,37.4,17.79,37.8266666667,17.04,44.798,5.5,89.59,17.89,33.06,19.5,44.9666666667,17.6333333333,41.36,5.55,754.6166666667,93.5,9.8333333333,64.3333333333,4.6166666667,44.9382916442,44.9382916442 -50,0,19.29,37.9,17.6,39.56,20.5,37.44,17.79,37.9,17.0428571429,44.8371428571,5.59,89.8333333333,17.89,33.1266666667,19.5,45.1566666667,17.6333333333,41.4333333333,5.6,754.5333333333,94,9.6666666667,63.6666666667,4.7333333333,24.036067829,24.036067829 -40,0,19.29,37.9666666667,17.6,39.59,20.5,37.5,17.745,37.95,17,44.9,5.59,89.9666666667,17.89,33.2,19.5,45.3633333333,17.6666666667,41.56,5.65,754.45,94.5,9.5,63,4.85,27.5827684323,27.5827684323 -50,0,19.29,38,17.6,39.6633333333,20.5,37.5,17.79,38.03,17,44.8685714286,5.69,90.3333333333,17.8566666667,33.26,19.5,45.5,17.6666666667,41.6333333333,5.7,754.3666666667,95,9.3333333333,62.3333333333,4.9666666667,13.7478312477,13.7478312477 -50,0,19.23,38,17.5,39.79,20.5,37.5,17.73,38.09,17,44.92,5.7975,90.5675,17.8566666667,33.3333333333,19.5,45.56,17.6333333333,41.7666666667,5.75,754.2833333333,95.5,9.1666666667,61.6666666667,5.0833333333,29.3707785313,29.3707785313 -50,0,19.2,38.03,17.5,39.8175,20.5,37.5,17.7,38.1266666667,17,45,5.8333333333,90.69,17.89,33.4333333333,19.5333333333,45.7,17.7,41.9666666667,5.8,754.2,96,9,61,5.2,49.6091391775,49.6091391775 -50,0,19.2,38.09,17.5,39.9666666667,20.5857142857,37.5128571429,17.7,38.2,17,45,5.9333333333,90.9333333333,17.8233333333,33.5,19.5333333333,45.7,17.6333333333,41.9633333333,5.9333333333,754.1666666667,95.5,9.1666666667,57.5,5.25,35.9516622615,35.9516622615 -40,0,19.2,38.2,17.5,40.03,20.6,37.59,17.7,38.23,17,45.0771428571,6,91,17.79,33.53,19.5,45.7,17.625,42.045,6.0666666667,754.1333333333,95,9.3333333333,54,5.3,27.181450848,27.181450848 -30,0,19.2,38.26,17.5,40.09,20.66,37.656,17.7,38.3633333333,17,45.112,6.03,91.1,17.79,33.59,19.5,45.76,17.6666666667,42.1633333333,6.2,754.1,94.5,9.5,50.5,5.35,31.1972850119,31.1972850119 -20,0,19.1666666667,38.29,17.5,40.2,20.6571428571,37.6528571429,17.7,38.4333333333,17,45.2,6.1566666667,91.3,17.79,33.645,19.5,45.79,17.7,42.3266666667,6.3333333333,754.0666666667,94,9.6666666667,47,5.4,33.6813739617,33.6813739617 -30,0,19.1666666667,38.3633333333,17.5,40.26,20.6,37.7,17.7,38.5,17,45.2,6.3,91.4,17.79,33.79,19.5,45.79,17.7,42.4,6.4666666667,754.0333333333,93.5,9.8333333333,43.5,5.45,30.4246225744,30.4246225744 -40,10,19.2,38.45,17.5,40.3266666667,20.6,37.7,17.7,38.53,17,45.2128571429,6.3666666667,91.3333333333,17.79,33.8633333333,19.5,45.9,17.6333333333,42.4633333333,6.6,754,93,10,40,5.5,34.4103413634,34.4103413634 -50,0,19.1666666667,38.53,17.5,40.4,20.6,37.754,17.7,38.59,17,45.312,6.4333333333,91.3333333333,17.79,33.9,19.5,45.9,17.7,42.59,6.65,753.95,93.3333333333,9.6666666667,42,5.6166666667,19.3620611797,19.3620611797 -50,0,19.1,38.59,17.5,40.5,20.6,37.8371428571,17.7,38.6266666667,17,45.4,6.5,91.3333333333,17.79,33.9666666667,19.4633333333,45.9666666667,17.7,42.7,6.7,753.9,93.6666666667,9.3333333333,44,5.7333333333,26.0013137711,26.0013137711 -50,0,19.1,38.6266666667,17.5,40.5,20.6,37.9,17.7,38.7,17,45.4,6.59,91.4,17.79,34,19.39,45.9,17.7,42.7,6.75,753.85,94,9,46,5.85,29.08688311,29.08688311 -50,0,19.1,38.7,17.5,40.59,20.6,37.9428571429,17.6,38.7,17,45.4857142857,6.6566666667,91.4666666667,17.79,34.06,19.4266666667,46.0666666667,17.6666666667,42.7,6.8,753.8,94.3333333333,8.6666666667,48,5.9666666667,37.1833044919,37.1833044919 -50,0,19.1,38.73,17.5,40.6633333333,20.6,38,17.6,38.7,17,45.518,6.7266666667,91.5,17.79,34.2,19.4175,46.2225,17.6,42.7,6.85,753.75,94.6666666667,8.3333333333,50,6.0833333333,37.8950900282,37.8950900282 -40,0,19.1,38.79,17.39,40.6266666667,20.6,38.0257142857,17.6,38.79,17,45.59,6.8666666667,91.6266666667,17.79,34.26,19.39,46.29,17.6333333333,42.73,6.9,753.7,95,8,52,6.2,35.1280871546,35.1280871546 -50,0,19.1,38.9,17.39,40.7,20.6,38.09,17.6,38.8633333333,17,45.65875,6.9,91.7266666667,17.7,34.29,19.39,46.4333333333,17.6333333333,42.73,6.9583333333,753.75,95.1666666667,7.8333333333,53,6.2833333333,33.992746158,33.992746158 -40,0,19.1,38.9,17.39,40.8266666667,20.6,38.09,17.6,38.9333333333,17,45.7,6.9666666667,91.8666666667,17.7,34.3633333333,19.39,46.56,17.6666666667,42.8633333333,7.0166666667,753.8,95.3333333333,7.6666666667,54,6.3666666667,38.9781566686,38.9781566686 -50,0,19,38.9333333333,17.39,40.9,20.6,38.112,17.6,39,17,45.7,7.09,91.9333333333,17.7,34.4333333333,19.39,46.7,17.6,42.79,7.075,753.85,95.5,7.5,55,6.45,9.6561569255,9.6561569255 -50,0,19,39,17.39,40.9333333333,20.6,38.2,17.6,39.09,17,45.754,7.165,91.95,17.7,34.5,19.39,46.7,17.6333333333,42.9333333333,7.1333333333,753.9,95.6666666667,7.3333333333,56,6.5333333333,41.9837819994,41.9837819994 -50,0,19,39.09,17.39,41,20.6,38.2,17.6,39.1266666667,17,45.79,7.19,92,17.76,34.59,19.39,46.73,17.7,43,7.1916666667,753.95,95.8333333333,7.1666666667,57,6.6166666667,40.5967594706,40.5967594706 -40,0,19,39.1633333333,17.39,41.09,20.6857142857,38.3557142857,17.6,39.2,17,45.79,7.3,92.3333333333,17.7,34.6633333333,19.39,46.8633333333,17.6,43,7.25,754,96,7,58,6.7,42.5821973477,42.5821973477 -30,0,19,39.2,17.39,41.2,20.7,38.29,17.6,39.29,16.9842857143,45.8842857143,7.3,92.4666666667,17.7,34.73,19.39,47.03,17.6,43,7.3083333333,754.05,96.1666666667,6.8333333333,59,6.7833333333,21.9050042215,21.9050042215 -30,0,19,39.26,17.39,41.2,20.7,38.3214285714,17.6,39.29,16.934,45.9,7.4333333333,92.6233333333,17.7,34.79,19.39,47.1633333333,17.6666666667,43.09,7.3666666667,754.1,96.3333333333,6.6666666667,60,6.8666666667,26.1527751689,26.1527751689 -10,0,19,39.3266666667,17.39,41.3266666667,20.7,38.4,17.5666666667,39.4,16.9214285714,45.9285714286,7.5,92.69,17.7,34.9,19.3566666667,47.29,17.65,43.1725,7.425,754.15,96.5,6.5,61,6.95,8.6071807309,8.6071807309 -40,0,18.9266666667,39.4,17.39,41.4,20.6142857143,38.3057142857,17.5,39.4666666667,17,46,7.59,92.7266666667,17.7,34.9666666667,19.3566666667,47.3633333333,17.6,43.2,7.4833333333,754.2,96.6666666667,6.3333333333,62,7.0333333333,5.1625214168,5.1625214168 -80,0,18.89,39.53,17.39,41.5666666667,20.58,38.29,17.5333333333,39.5,16.9528571429,46,7.6566666667,92.8666666667,17.7,35.145,19.29,47.6266666667,17.6666666667,43.26,7.5416666667,754.25,96.8333333333,6.1666666667,63,7.1166666667,19.8039413313,19.8039413313 -50,0,18.9633333333,40.1233333333,17.39,41.9,20.4685714286,38.1942857143,17.5333333333,39.56,16.934,46,7.8,92.9,17.7,35.8,19.29,47.76,17.6666666667,43.26,7.6,754.3,97,6,64,7.2,0.1990802004,0.1990802004 -60,0,19,40.545,17.5,42.3266666667,20.39,38.2,17.5,39.73,16.9214285714,46.0642857143,7.8666666667,92.9666666667,17.7,36.1333333333,19.3233333333,48.03,17.6333333333,43.2666666667,7.7166666667,754.3,97,6,62.6666666667,7.3166666667,1.7417500145,1.7417500145 -40,0,19.1,41.03,17.5,42.5266666667,20.39,38.2771428571,17.5,39.93,17,46.2,8.0333333333,93.03,17.6,36.4633333333,19.3233333333,48.09,17.7,43.3266666667,7.8333333333,754.3,97,6,61.3333333333,7.4333333333,16.3279461325,16.3279461325 -50,10,19.1666666667,41.1633333333,17.6333333333,42.8266666667,20.39,38.345,17.5,40.1566666667,17,46.2514285714,8.1,93.09,17.6,36.6633333333,19.3566666667,48.2,17.6,43.26,7.95,754.3,97,6,60,7.55,33.8442349923,33.8442349923 -40,10,19.23,41.23,17.7,43,20.39,38.4,17.5,40.29,17,46.3725,8.19,93.045,17.6,36.995,19.29,48.1266666667,17.6,43.2,8.0666666667,754.3,97,6,58.6666666667,7.6666666667,3.2291090116,3.2291090116 -50,0,19.29,41.29,17.8233333333,43.03,20.39,38.4285714286,17.5,40.53,17,46.4714285714,8.2633333333,93.1566666667,17.6,37.1633333333,19.29,48.1266666667,17.6333333333,43.23,8.1833333333,754.3,97,6,57.3333333333,7.7833333333,48.3219849644,48.3219849644 -40,10,19.4266666667,41.53,17.9633333333,43.03,20.456,38.59,17.5,40.6633333333,17,46.59,8.4266666667,93.2266666667,17.6,37.4333333333,19.29,48.3975,17.6333333333,43.29,8.3,754.3,97,6,56,7.9,18.7609630171,18.7609630171 -270,0,19.5666666667,41.53,18.23,43.09,20.4528571429,38.7042857143,17.5,40.8266666667,18.0828571429,73.7185714286,8.5666666667,93.2266666667,17.6,37.56,19.29,48.7966666667,17.7,43.53,8.4333333333,754.35,96.1666666667,6,53.3333333333,7.8833333333,28.6091525457,28.6091525457 -150,0,19.6333333333,41.53,18.3566666667,43.03,20.52,38.79,17.5,40.9666666667,18.696,83.514,8.7266666667,93.4,17.6,37.8266666667,19.3233333333,49.1933333333,17.7,43.53,8.5666666667,754.4,95.3333333333,6,50.6666666667,7.8666666667,20.2067724545,20.2067724545 -360,0,19.76,41.59,18.5333333333,42.9666666667,20.5571428571,38.8214285714,17.5,41.23,18.3242857143,80.3942857143,8.95,93.4,17.6,37.9666666667,19.39,49.4666666667,17.7,43.89,8.7,754.45,94.5,6,48,7.85,36.4253188833,36.4253188833 -540,0,19.96,41.8266666667,18.6666666667,42.9,20.6,38.9,17.5,41.3725,18.06,76.356,9.0666666667,93.4666666667,17.6,38.1266666667,19.39,49.3633333333,17.7,43.9633333333,8.8333333333,754.5,93.6666666667,6,45.3333333333,7.8333333333,30.7569947909,30.7569947909 -280,0,20.1666666667,41.8266666667,18.96,42.8633333333,20.6571428571,38.97,17.5666666667,41.6,17.9371428571,74.31,9.1666666667,93.4333333333,17.6,38.26,19.4633333333,49.23,17.7,44,8.9666666667,754.55,92.8333333333,6,42.6666666667,7.8166666667,15.5622650287,15.5622650287 -150,0,20.4266666667,41.56,19.1666666667,42.6566666667,20.7,39.072,17.6333333333,42.1333333333,17.87,72.034,9.36,93.5,17.6,38.4,19.6333333333,48.93,17.7,44,9.1,754.6,92,6,40,7.8,47.636463528,47.636463528 -110,0,20.5666666667,41.4333333333,19.495,42.3,20.7,39.0257142857,17.7,42.6,17.77875,69.03375,9.5333333333,93.5,17.6,38.4666666667,19.76,48.6566666667,17.7,44.09,9.1166666667,754.6666666667,91.6666666667,6,38.1666666667,7.7833333333,8.4444913547,8.4444913547 -280,0,20.73,41.26,19.7,41.93,20.79,39.09,17.7,43.03,17.7,65.6785714286,9.6,93.4333333333,17.6,38.53,19.89,48.5266666667,17.7,44.09,9.1333333333,754.7333333333,91.3333333333,6,36.3333333333,7.7666666667,47.7619081968,47.7619081968 -420,0,20.79,41.2,19.76,41.73,20.8471428571,39.1528571429,17.7,43.2966666667,17.7,62.77,9.5666666667,93.2633333333,17.6666666667,38.6633333333,19.9633333333,48.3266666667,17.7,44.06,9.15,754.8,91,6,34.5,7.75,12.9298610147,12.9298610147 -180,0,20.9266666667,41.06,19.9266666667,41.5266666667,20.89,39.2,17.79,43.6566666667,17.6571428571,60.8657142857,9.5666666667,93.19,17.7,38.8266666667,20.1,48.26,17.7,44.0225,9.1666666667,754.8666666667,90.6666666667,6,32.6666666667,7.7333333333,41.0433428362,41.0433428362 -100,0,21,40.9333333333,20,41.3266666667,20.8185714286,39.2,17.79,43.93,17.64,59.478,9.5666666667,92.9666666667,17.65,38.845,20.1666666667,48.0666666667,17.7,44.09,9.1833333333,754.9333333333,90.3333333333,6,30.8333333333,7.7166666667,18.8689547009,18.8689547009 -80,0,21.0333333333,40.79,20.1,41.1633333333,20.79,39.2,17.8233333333,44.1266666667,17.6,58.4542857143,9.5666666667,92.8333333333,17.7,38.9,20.29,47.93,17.7,44.09,9.2,755,90,6,29,7.7,29.5926627121,29.5926627121 -90,0,21.1,40.73,20.1,41.03,20.8042857143,39.2285714286,17.89,44.26,17.6,57.514,9.63,92.8666666667,17.7,39,20.3566666667,47.73,17.7,44.09,9.2,755.0166666667,90.8333333333,5.8333333333,29,7.8166666667,34.2029427062,34.2029427062 -70,0,21.15,40.545,20.23,40.8633333333,20.89,39.378,17.89,44.3266666667,17.6,56.8828571429,9.7633333333,92.8666666667,17.7,39.06,20.39,47.7,17.7,44.09,9.2,755.0333333333,91.6666666667,5.6666666667,29,7.9333333333,33.1781865214,33.1781865214 -90,0,21.23,40.4,20.29,40.73,20.89,39.3371428571,17.89,44.4,17.6,56.296,9.69,92.5,17.7,39.1266666667,20.4633333333,47.76,17.6333333333,44.03,9.2,755.05,92.5,5.5,29,8.05,37.6036602538,37.6036602538 -70,0,21.29,40.4,20.3233333333,40.56,20.89,39.4,18,44.5,17.6,55.7,9.69,92.5,17.7,39.2,20.5,47.79,17.7,44.09,9.2,755.0666666667,93.3333333333,5.3333333333,29,8.1666666667,24.0456007188,24.0456007188 -320,0,21.29,40.29,20.39,40.5,20.89,39.4,18,44.6333333333,17.6,55.12,9.66,92.3666666667,17.7,39.3266666667,20.5666666667,47.79,17.7,44.09,9.2,755.0833333333,94.1666666667,5.1666666667,29,8.2833333333,26.7070877948,26.7070877948 -590,0,21.29,40.23,20.39,40.4,20.912,39.54,18.1,45.23,17.6,54.7714285714,9.7333333333,92.56,17.7,39.4666666667,20.6,48,17.7,44.1266666667,9.2,755.1,95,5,29,8.4,2.776131162,2.776131162 -320,0,21.39,41.9566666667,20.4633333333,40.4,21.1,40.4971428571,18.1666666667,45.3633333333,17.6,54.458,9.89,92.6566666667,17.7,39.59,20.6,48.06,17.7,44.1266666667,9.35,755.05,93.5,5.1666666667,30.8333333333,8.3,24.4004943874,24.4004943874 -310,0,21.53,45.0966666667,20.6,40.5,21.474,42.4,18.3233333333,46.1,17.6,54.2642857143,9.9633333333,92.6566666667,17.7,39.6633333333,20.65,47.895,17.7,44.2,9.5,755,92,5.3333333333,32.6666666667,8.2,48.7179897726,48.7179897726 -310,0,21.7,43.0266666667,20.6666666667,40.6933333333,21.9,43.38125,18.4633333333,46.56,17.6,54.054,10.29,92.64,17.7,39.79,20.6333333333,47.86,17.7,44.2,9.65,754.95,90.5,5.5,34.5,8.1,34.8802807159,34.8802807159 -300,0,21.7,42.36,20.8233333333,40.79,22.31,43.91,18.39,45.6,17.6,53.9428571429,10.5,91.4666666667,17.7,39.8633333333,20.7,48,17.7,44.2,9.8,754.9,89,5.6666666667,36.3333333333,8,44.1160010058,44.1160010058 -270,0,21.73,42.2,20.89,40.79,22.598,44.156,18.3566666667,45.43,17.6,53.834,10.5,90.06,17.7,39.9,20.73,48.03,17.7,44.2,9.95,754.85,87.5,5.8333333333,38.1666666667,7.9,19.1659889766,19.1659889766 -250,0,21.8566666667,42.2,21,40.6633333333,22.8185714286,44.2,18.29,45.23,17.6,53.6942857143,10.63,87.83,17.7,39.8266666667,20.79,48.1633333333,17.7,44.2,10.1,754.8,86,6,40,7.8,43.9916276839,43.9916276839 -220,0,21.9266666667,41.9666666667,21,40.53,23.1,44.014,18.26,45.06,17.6,53.554,10.69,85.69,17.7,39.79,20.8233333333,48.3,17.7,44.3333333333,10.0833333333,754.8,86,6.1666666667,38.1666666667,7.8,27.66139335,27.66139335 -110,0,22,41.9,21.1,40.545,23.1571428571,43.5285714286,18.2,44.86,17.6,53.4428571429,10.69,83.8966666667,17.7,39.79,20.89,48.56,17.73,44.3633333333,10.0666666667,754.8,86,6.3333333333,36.3333333333,7.8,15.324238746,15.324238746 -90,0,22.1,41.9,21.1,40.3633333333,23.18,42.98,18.2,44.6633333333,17.6,53.316,10.69,83.0966666667,17.7,39.79,20.9266666667,48.6266666667,17.73,44.29,10.05,754.8,86,6.5,34.5,7.8,40.3568698675,40.3568698675 -80,0,22.0333333333,41.2933333333,21.1,40.23,23.0285714286,42.2857142857,18.2,44.59,17.6,53.1685714286,10.69,83.06,17.76,39.73,21,48.6266666667,17.7,44.29,10.0333333333,754.8,86,6.6666666667,32.6666666667,7.8,35.9227558714,35.9227558714 -80,0,22.1,41.56,21.1333333333,40.2666666667,22.85,41.71,18.2,44.4666666667,17.6,53,10.5633333333,84.06,17.73,39.79,21,48.43,17.73,44.29,10.0166666667,754.8,86,6.8333333333,30.8333333333,7.8,20.4785004957,20.4785004957 -80,0,22.1666666667,41.36,21.2,40.1933333333,22.6557142857,40.9071428571,18.1333333333,44.4,17.6,53,10.5,84.6566666667,17.745,39.8175,21,48.0966666667,17.73,44.29,10,754.8,86,7,29,7.8,34.4354224508,34.4354224508 -70,0,22.1666666667,40.6333333333,21.2,40,22.58,40.516,18.1666666667,44.29,17.6,52.98,10.5,85.0633333333,17.79,39.9,21.0666666667,47.6933333333,17.73,44.29,9.9333333333,754.7166666667,86.6666666667,7,27.5,7.85,19.4176335703,19.4176335703 -70,0,22.1666666667,40.4333333333,21.2,40,22.4685714286,40.2957142857,18.1,44.23,17.6,52.85875,10.36,85.1966666667,17.79,39.9333333333,21.0666666667,47.4333333333,17.73,44.29,9.8666666667,754.6333333333,87.3333333333,7,26,7.9,2.9260878335,2.9260878335 -50,0,22.2,40.3633333333,21.2,40,22.39,40.09,18.1,44.2,17.6,52.7257142857,10.2266666667,85.7966666667,17.79,40,21.1,47.2233333333,17.76,44.29,9.8,754.55,88,7,24.5,7.95,24.6412093984,24.6412093984 -60,0,22.2,40.29,21.2,40,22.3328571429,40.0128571429,18.1,44.1266666667,17.6,52.7,10.16,86.4266666667,17.79,40.03,21.1,47.03,17.7,44.29,9.7333333333,754.4666666667,88.6666666667,7,23,8,21.6641946463,21.6641946463 -60,10,22.2,40.29,21.23,40.03,22.272,39.98,18.1,44.09,17.6428571429,52.6842857143,10.1,87.3,17.79,40.09,21.1,46.9666666667,17.7,44.29,9.6666666667,754.3833333333,89.3333333333,7,21.5,8.05,23.9890288562,23.9890288562 -80,10,22.2,40.29,21.29,40.1633333333,22.2,39.9,18.1,44.09,17.6,52.572,9.9633333333,88.13,17.79,40.23,21.1,46.7666666667,17.76,44.29,9.6,754.3,90,7,20,8.1,32.3569204891,32.3569204891 -80,0,22.2,40.23,21.29,40.2,22.1,40.036,18.1,44.83,17.6428571429,52.5385714286,9.89,88.9233333333,17.79,40.29,21.0666666667,46.6266666667,17.79,44.29,9.6,754.25,90.3333333333,7.1666666667,23.3333333333,8.1333333333,22.0004284987,22.0004284987 -90,0,22.29,40.26,21.3566666667,40.1266666667,22.1,40.09,18.1,45.2966666667,17.64,52.5,9.89,89.6,17.79,40.3266666667,21.0666666667,47.0933333333,17.79,44.29,9.6,754.2,90.6666666667,7.3333333333,26.6666666667,8.1666666667,32.8280772548,32.8280772548 -90,0,22.3566666667,40.2,21.4266666667,40,22.1,40.112,18.2,45.6566666667,17.7,52.4857142857,9.8225,90.025,17.79,40.4666666667,21.1,47.8,17.79,44.29,9.6,754.15,91,7.5,30,8.2,29.5468996279,29.5468996279 -90,0,22.4266666667,40.09,21.5666666667,39.9333333333,22.1,40.1528571429,18.26,45.99,17.7,52.4,9.8,90.4933333333,17.79,40.6266666667,21.175,48.27,17.79,44.29,9.6,754.1,91.3333333333,7.6666666667,33.3333333333,8.2333333333,13.2582984865,13.2582984865 -80,0,22.5666666667,40.03,21.73,39.8633333333,22.1,40.09,18.29,46.3,17.7,52.3214285714,9.7633333333,90.9966666667,17.79,40.7,21.2,48.6333333333,17.79,44.29,9.6,754.05,91.6666666667,7.8333333333,36.6666666667,8.2666666667,45.3101507621,45.3101507621 -90,0,22.6,39.9,21.79,39.73,22.0428571429,40.1214285714,18.39,46.53,17.7,52.29,9.69,91.33,17.79,40.8266666667,21.23,49.03,17.79,44.29,9.6,754,92,8,40,8.3,48.50633475,48.50633475 -90,0,22.6666666667,39.9666666667,21.8233333333,39.7,22.06,40.156,18.39,46.6633333333,17.7,52.2771428571,9.69,91.66,17.79,40.9,21.29,49.43,17.79,44.2,9.6,753.95,92.3333333333,8.1666666667,43.5,8.3666666667,1.8772249459,1.8772249459 -100,0,22.7,39.9,21.89,39.6266666667,22.0285714286,40.1214285714,18.4266666667,46.7666666667,17.7,52.2,9.69,91.8666666667,17.79,41.03,21.3233333333,49.9633333333,17.79,44.2,9.6,753.9,92.6666666667,8.3333333333,47,8.4333333333,48.4120510053,48.4120510053 -100,0,22.7,39.9,21.89,39.59,22.04,40.134,18.5,46.9,17.7,52.2,9.6,92.0633333333,17.79,41.1633333333,21.39,50.1633333333,17.79,44.1266666667,9.6,753.85,93,8.5,50.5,8.5,22.4916761392,22.4916761392 -90,0,22.73,39.8633333333,21.89,39.59,22.0714285714,40.1685714286,18.5,47,17.7,52.2,9.6,92.3966666667,17.8566666667,41.29,21.39,50.5666666667,17.79,44.1266666667,9.6,753.8,93.3333333333,8.6666666667,54,8.5666666667,37.8439861815,37.8439861815 -100,10,22.79,39.79,21.89,39.59,22.075,40.21125,18.5666666667,47,17.7385714286,52.2,9.6,92.66,17.79,41.29,21.4633333333,50.96,17.79,44.09,9.6,753.75,93.6666666667,8.8333333333,57.5,8.6333333333,43.7184589682,43.7184589682 -80,0,22.79,40.0266666667,21.89,39.59,22.1,40.272,18.6,47,17.736,52.2,9.6,92.8666666667,17.8233333333,41.4633333333,21.5,51.1633333333,17.79,44.09,9.6,753.7,94,9,61,8.7,13.0185296992,13.0185296992 -140,0,22.79,39.9,21.89,39.6633333333,22.1285714286,40.2,18.6,47,17.7,52.2,9.6,93.03,17.84,41.5725,21.5666666667,51.09,17.79,44.09,9.6,753.7166666667,94.3333333333,9,61.5,8.75,34.1676199576,34.1676199576 -440,0,22.8233333333,39.8266666667,21.89,39.7,22.14,40.2,18.6,47,17.7,52.156,9.6,93.09,17.89,41.76,21.5333333333,51.09,17.79,44.09,9.6,753.7333333333,94.6666666667,9,62,8.8,8.7113145855,8.7113145855 -340,0,22.89,39.9666666667,21.89,39.76,22.2,40.4,18.6666666667,47.06,17.7771428571,52.1057142857,9.63,93.2266666667,17.89,41.8266666667,21.6,51.09,17.79,44.09,9.6,753.75,95,9,62.5,8.85,19.9566822266,19.9566822266 -170,0,22.9266666667,48.2,21.89,40.1333333333,22.2,40.96,18.6333333333,47.4666666667,17.79,52.24,9.69,93.3666666667,17.89,41.9,21.6333333333,50.8633333333,17.79,44.09,9.6,753.7666666667,95.3333333333,9,63,8.9,4.8450785689,4.8450785689 -100,0,23,52.9266666667,21.89,40.8,22.2642857143,41.7642857143,18.7,48.4666666667,17.7642857143,52.4971428571,9.69,93.4,17.89,42.03,21.7,50.79,17.79,44.09,9.6,753.7833333333,95.6666666667,9,63.5,8.95,26.8448273418,26.8448273418 -120,0,23,49.75,22,41.36,22.33,42.4,18.79,49.1266666667,17.79,52.79,9.69,93.4,17.89,42.09,21.73,50.5266666667,17.79,44.09,9.6,753.8,96,9,64,9,12.8182033077,12.8182033077 -200,0,23,46.23,22,41.5,22.39,42.4,18.73,49.1266666667,17.79,52.9414285714,9.69,93.4,17.89,42.23,21.79,50.2666666667,17.79,44.09,9.7333333333,753.8,95.3333333333,9.3333333333,62.3333333333,9.0333333333,49.698116025,49.698116025 -300,0,23,45.8233333333,21.9633333333,41.4,22.39,42.376,18.79,49.0266666667,17.79,53.054,9.7633333333,93.4,17.89,42.29,21.79,50.0266666667,17.79,44.1266666667,9.8666666667,753.8,94.6666666667,9.6666666667,60.6666666667,9.0666666667,1.6507208813,1.6507208813 -100,10,23,47.5966666667,21.89,41.4666666667,22.39,42.7375,18.79,48.9666666667,17.79,53.10375,9.8,93.4,17.89,42.4333333333,21.79,49.845,17.79,44.2,10,753.8,94,10,59,9.1,32.898986293,32.898986293 -80,0,23,46.0633333333,21.89,41.73,22.39,43,18.79,49.2666666667,17.79,53.2257142857,9.89,93.5,17.89,42.5,21.79,49.5925,17.79,44.2,10.1333333333,753.8,93.3333333333,10.3333333333,57.3333333333,9.1333333333,34.5300338347,34.5300338347 -70,10,23,44.8333333333,21.89,41.79,22.39,42.8971428571,18.865,49.4,17.79,53.334,9.89,93.4333333333,17.89,42.59,21.79,49.3266666667,17.79,44.2,10.2666666667,753.8,92.6666666667,10.6666666667,55.6666666667,9.1666666667,27.8460971196,27.8460971196 -70,0,23,44.3,21.89,41.8266666667,22.39,42.9,18.89,49.3266666667,17.79,53.4571428571,9.9266666667,93.3666666667,17.89,42.6633333333,21.79,49.245,17.8233333333,44.23,10.4,753.8,92,11,54,9.2,3.5833935603,3.5833935603 -80,0,22.9633333333,43.6,21.8233333333,41.9,22.3042857143,42.7385714286,18.89,49.06,17.79,53.518,10.0666666667,93.3666666667,17.89,42.73,21.89,49.29,17.89,44.29,10.4666666667,753.8166666667,92,10.6666666667,55.3333333333,9.2666666667,33.0283113173,33.0283113173 -140,10,22.89,43.2666666667,21.79,41.9,22.29,42.59,18.89,48.9333333333,18.3928571429,72.2971428571,10.1,93.4,17.89,42.8633333333,21.89,49.23,17.8233333333,44.36,10.5333333333,753.8333333333,92,10.3333333333,56.6666666667,9.3333333333,5.7713081944,5.7713081944 -110,20,22.8566666667,42.9666666667,21.73,41.9666666667,22.29,42.5257142857,18.89,48.8266666667,18.64,68.83,10.1,93.4,18,43,21.89,49.2,17.89,44.5,10.6,753.85,92,10,58,9.4,39.1522169579,39.1522169579 -90,20,22.79,42.9666666667,21.6666666667,42.5666666667,22.29,42.4,19.0966666667,49.16,18.85,61.1514285714,10.19,93.3666666667,17.9266666667,43,21.89,49.0666666667,17.8233333333,44.4333333333,10.6666666667,753.8666666667,92,9.6666666667,59.3333333333,9.4666666667,37.6048424165,37.6048424165 -100,20,22.79,43.23,21.6,43.0266666667,22.29,42.4,19.7333333333,48.9233333333,19,57.458,10.19,93.3666666667,18,43.1266666667,21.79,48.6633333333,17.89,44.5,10.7333333333,753.8833333333,92,9.3333333333,60.6666666667,9.5333333333,23.0126217823,23.0126217823 -90,20,22.73,43.3633333333,21.55,43.345,22.29,42.42,20.26,48.2566666667,19.0714285714,55.6685714286,10.2266666667,93.3,18,43.2,21.79,48.53,17.89,44.5,10.8,753.9,92,9,62,9.6,32.9111735336,32.9111735336 -90,30,22.7,43.29,21.5,43.5666666667,22.29,42.5,20.8333333333,47.7233333333,19.14,54.276,10.3,93.3,18,43.29,21.76,48.26,17.89,44.5,10.8,753.9166666667,92,9,58.3333333333,9.6,39.1209225403,39.1209225403 -100,20,22.6333333333,43.23,21.4266666667,43.6266666667,22.29,42.5,21.2266666667,47.39,19.2,53.48,10.39,93.3,18,43.4333333333,21.7,48.1266666667,17.89,44.5,10.8,753.9333333333,92,9,54.6666666667,9.6,43.625300983,43.625300983 -90,20,22.6,43.1633333333,21.3566666667,43.7,22.29,42.5,21.5,46.8333333333,19.2,52.796,10.39,93.2266666667,18,43.56,21.7,48.06,17.89,44.53,10.8,753.95,92,9,51,9.6,15.0026582298,15.0026582298 -110,20,22.6,43.1633333333,21.29,43.7,22.29,42.5,21.4266666667,46.5666666667,19.2642857143,52.2957142857,10.39,93.19,18,43.6266666667,21.6333333333,47.9333333333,17.89,44.59,10.8,753.9666666667,92,9,47.3333333333,9.6,34.6034402144,34.6034402144 -90,30,22.5,43.1633333333,21.2,43.7,22.2257142857,42.4285714286,21.29,46.5,19.29,51.82,10.4633333333,93.19,18,43.7,21.6,47.79,17.89,44.59,10.8,753.9833333333,92,9,43.6666666667,9.6,27.1152958856,27.1152958856 -60,20,22.5,43.1633333333,21.2,43.7,22.2,42.29,21.23,46.4333333333,19.29,51.4971428571,10.5,93.19,18,43.79,21.6,47.73,17.89,44.59,10.8,754,92,9,40,9.6,23.6636928865,23.6636928865 -60,20,22.39,43.09,21.1666666667,43.6633333333,22.175,42.29,21.1666666667,46.4333333333,19.216,51.5,10.5,93.19,18,43.6566666667,21.5666666667,47.89,17.89,44.73,10.85,754.1,91.8333333333,9,38,9.6166666667,0.7789050578,0.7789050578 -60,20,22.39,43.195,21.1,43.53,22.1,42.29,21.1,46.5,19.0285714286,52.0928571429,10.5333333333,93.1233333333,18,43.3333333333,21.5666666667,48.4233333333,17.89,44.79,10.9,754.2,91.6666666667,9,36,9.6333333333,33.5025415523,33.5025415523 -60,30,22.3233333333,43.29,21,43.4,22.08,42.272,21,46.4,18.89,52.874,10.6,93.115,18,43.1266666667,21.6,49.1933333333,17.89,44.7,10.95,754.3,91.5,9,34,9.65,43.1081817835,43.1081817835 -50,20,22.29,43.26,20.9266666667,43.3266666667,22,42.2,21,46.4,18.8042857143,53.2685714286,10.6,93.09,18.1,43.06,21.6,49.66,17.89,44.7,11,754.4,91.3333333333,9,32,9.6666666667,3.2004705397,3.2004705397 -50,20,22.23,43.1266666667,20.89,43.4,22,42.2,21.0966666667,46.4333333333,18.736,53.716,10.63,93.1233333333,18.1,42.9333333333,21.6,50.3966666667,17.89,44.7,11.05,754.5,91.1666666667,9,30,9.6833333333,38.3729374385,38.3729374385 -70,20,22.2,43.09,20.8233333333,43.3266666667,22,42.1057142857,21.6225,46.225,18.7,54.1214285714,10.63,93.0633333333,18.0333333333,42.73,21.6666666667,51.1233333333,17.89,44.7,11.1,754.6,91,9,28,9.7,27.1822639741,27.1822639741 -50,20,22.1333333333,43.09,20.79,43.29,22,42.09,22.1933333333,45.86,18.7,54.44,10.69,93.1233333333,18.1,42.73,21.7,51.4633333333,17.89,44.7,11.0666666667,754.6166666667,90.6666666667,9.3333333333,27.5,9.6,40.2204352664,40.2204352664 -40,20,22.0666666667,43.06,20.73,43.3633333333,22,42.0257142857,22.6966666667,45.43,18.6142857143,54.5514285714,10.63,93.0633333333,18.1,42.59,21.675,51.6725,17.89,44.7,11.0333333333,754.6333333333,90.3333333333,9.6666666667,27,9.5,28.7485523149,28.7485523149 -30,20,22,43,20.7,43.4,21.89,42,23.0966666667,45.1566666667,18.6,54.656,10.66,93.1566666667,18.1,42.53,21.6,51.76,17.89,44.7,11,754.65,90,10,26.5,9.4,44.8287683073,44.8287683073 -30,20,22,43.09,20.6333333333,43.4,21.89,42,23.4933333333,44.8333333333,18.525,54.7675,10.6,93.03,18.1,42.4666666667,21.5333333333,51.9333333333,17.89,44.7,10.9666666667,754.6666666667,89.6666666667,10.3333333333,26,9.3,39.130543347,39.130543347 -40,0,21.9266666667,43.1633333333,20.6,43.4,21.83,41.96,23.76,44.2333333333,18.5,54.79,10.5666666667,93.03,18.1,42.4,21.5333333333,52,17.89,44.73,10.9333333333,754.6833333333,89.3333333333,10.6666666667,25.5,9.2,31.0248322785,31.0248322785 -50,0,21.89,43.4633333333,20.5333333333,43.4666666667,21.79,41.9571428571,23.6333333333,43.5266666667,18.434,54.79,10.5,93.03,18.1,42.29,21.5,52.1266666667,17.89,44.79,10.9,754.7,89,11,25,9.1,24.072607921,24.072607921 -50,0,21.8233333333,43.53,20.55,43.5,21.79,42,23.36,43.3266666667,18.4528571429,54.8114285714,10.4633333333,93.0266666667,18.1,42.23,21.5,52.2,18,44.9,10.8166666667,754.7666666667,89.5,10.8333333333,31.5,9.1,28.8030582946,28.8030582946 -50,0,21.79,43.4,20.4633333333,43.56,21.79,42,23.0666666667,43.2,18.39,54.79,10.39,92.9,18.1,42.145,21.5,52.29,18,44.9,10.7333333333,754.8333333333,90,10.6666666667,38,9.1,26.9073380041,26.9073380041 -50,0,21.79,43.4,20.39,43.5,21.79,42,22.86,43.2,18.39,54.79,10.36,92.9,18.1,42.06,21.5,52.3633333333,18,44.9666666667,10.65,754.9,90.5,10.5,44.5,9.1,34.9211460212,34.9211460212 -70,0,21.7,43.4,20.39,43.59,21.79,42,22.5666666667,43.09,18.39,54.754,10.3,92.9,18.1,42,21.5,52.6266666667,18,45,10.5666666667,754.9666666667,91,10.3333333333,51,9.1,4.5447992743,4.5447992743 -40,0,21.7,43.4,20.39,43.59,21.79,42,22.4266666667,43.09,18.3471428571,54.7642857143,10.3,92.9,18.1,41.9,21.4266666667,52.7,18,45.06,10.4833333333,755.0333333333,91.5,10.1666666667,57.5,9.1,8.3731932449,8.3731932449 -50,0,21.6,43.29,20.3566666667,43.59,21.8757142857,42.0257142857,22.1666666667,43.1266666667,18.35,54.754,10.2266666667,92.8333333333,18.1,41.9,21.4633333333,52.76,18,45.2,10.4,755.1,92,10,64,9.1,35.4211904574,35.4211904574 -50,0,21.6,43.29,20.29,43.59,21.89,42,22.0333333333,43.26,18.3185714286,54.7257142857,10.19,92.8,18.1,41.8633333333,21.39,52.7,18,45.26,10.4,755.2,92,9.8333333333,63.6666666667,9.1166666667,1.5894290642,1.5894290642 -40,0,21.6,43.29,20.29,43.7,21.89,42,21.8566666667,43.29,18.29,54.7,10.19,92.8,18.1,41.79,21.39,52.7,18,45.29,10.4,755.3,92,9.6666666667,63.3333333333,9.1333333333,1.4187106281,1.4187106281 -40,0,21.6,43.29,20.23,43.6266666667,21.89,42,21.73,43.3633333333,18.29,54.7,10.245,92.85,18.1666666667,41.79,21.39,52.7,18,45.3633333333,10.4,755.4,92,9.5,63,9.15,9.7265088465,9.7265088465 -50,0,21.5333333333,43.29,20.2,43.6266666667,21.89,42.0514285714,21.5666666667,43.4633333333,18.29,54.7,10.3,92.8,18.1,41.79,21.39,52.76,18,45.4,10.4,755.5,92,9.3333333333,62.6666666667,9.1666666667,29.0465227445,29.0465227445 -60,0,21.5,43.29,20.2,43.7,21.89,42.09,21.5,43.59,18.29,54.7,10.3,92.8,18.1666666667,41.7,21.3233333333,52.7,18,45.4666666667,10.4,755.6,92,9.1666666667,62.3333333333,9.1833333333,9.9809706211,9.9809706211 -50,0,21.5,43.29,20.1666666667,43.7,21.89,42.09,21.29,43.6266666667,18.2,54.554,10.3,92.69,18.1,41.7,21.26,52.79,18.0666666667,45.56,10.4,755.7,92,9,62,9.2,32.9188735224,32.9188735224 -40,0,21.4633333333,43.26,20.1,43.7,21.89,42.054,21.23,43.7,18.2,54.5,10.3,92.69,18.1666666667,41.7,21.2,52.8633333333,18,45.5,10.35,755.7166666667,92.5,8.8333333333,61.8333333333,9.2166666667,32.6841956587,32.6841956587 -50,0,21.39,43.2,20.1,43.79,21.89,42,21.1,43.745,18.2,54.5,10.19,92.59,18.1666666667,41.7,21.2,53.1266666667,18,45.59,10.3,755.7333333333,93,8.6666666667,61.6666666667,9.2333333333,46.1587086204,46.1587086204 -40,0,21.39,43.2,20.1,43.79,21.89,42,21,43.79,18.2,54.5,10.19,92.6566666667,18.1333333333,41.7,21.1333333333,53.26,18,45.59,10.25,755.75,93.5,8.5,61.5,9.25,4.0018846164,4.0018846164 -20,0,21.39,43.2,20.0666666667,43.79,21.89,42,20.9266666667,43.8633333333,18.2,54.46,10.19,92.69,18.2,41.7,21.1,53.495,18,45.59,10.2,755.7666666667,94,8.3333333333,61.3333333333,9.2666666667,41.1293733632,41.1293733632 -20,0,21.39,43.2,20,43.79,21.89,42,20.8566666667,43.9666666667,18.2,54.4,10.13,92.69,18.2,41.7,21.1,54.0666666667,18,45.59,10.15,755.7833333333,94.5,8.1666666667,61.1666666667,9.2833333333,4.4185603154,4.4185603154 -40,0,21.3233333333,43.26,20,43.8266666667,21.89,42,20.73,43.9666666667,18.2,54.4,10.16,92.69,18.1333333333,41.6266666667,21.1,54.3333333333,18.0666666667,45.6633333333,10.1,755.8,95,8,61,9.3,42.3579461174,42.3579461174 -50,0,21.29,43.29,20,43.9,21.89,42,20.6666666667,44.06,18.2,54.4,10.16,92.69,18.2,41.59,21.1,54.6566666667,18,45.6633333333,10.1,755.85,95,8.1666666667,57.1666666667,9.3166666667,14.0085755847,14.0085755847 -60,0,21.29,43.29,19.945,43.9,21.89,42.018,20.6,44.06,18.2,54.4,10.19,92.6566666667,18.2,41.6633333333,21.1,54.8633333333,18.05,45.745,10.1,755.9,95,8.3333333333,53.3333333333,9.3333333333,1.803862059,1.803862059 -50,0,21.29,43.29,19.89,43.9333333333,21.89,42.09,20.5666666667,44.09,18.1428571429,54.3842857143,10.19,92.6566666667,18.2,41.7,21.0666666667,55.1266666667,18.1,45.79,10.1,755.95,95,8.5,49.5,9.35,39.3570747809,39.3570747809 -40,0,21.29,43.29,19.89,44,21.89,42.09,20.5,44.1633333333,18.12,54.312,10.19,92.59,18.2,41.7,21,55.26,18.0333333333,45.73,10.1,756,95,8.6666666667,45.6666666667,9.3666666667,47.2728887922,47.2728887922 -40,0,21.26,43.26,19.89,44.03,21.89,42.09,20.4633333333,44.26,18.1714285714,54.3528571429,10.19,92.59,18.2,41.7,21,55.29,18.0333333333,45.73,10.1,756.05,95,8.8333333333,41.8333333333,9.3833333333,23.7353799515,23.7353799515 -50,0,21.2,43.26,19.8233333333,44.03,21.89,42.09,20.39,44.26,18.1625,54.33125,10.2633333333,92.6266666667,18.2,41.6633333333,21,55.23,18.1,45.8633333333,10.1,756.1,95,9,38,9.4,16.5811975719,16.5811975719 -50,0,21.2,43.29,19.79,44,21.89,42.09,20.29,44.29,18.2,54.29,10.19,92.5,18.2,41.59,21,55.2,18.1,45.9,10.1,756.1166666667,95,8.8333333333,41,9.4,19.9011848657,19.9011848657 -50,0,21.2,43.29,19.79,44.06,21.89,42.156,20.29,44.3633333333,18.1428571429,54.29,10.16,92.53,18.2,41.6633333333,21,55.1266666667,18.1,45.9666666667,10.1,756.1333333333,95,8.6666666667,44,9.4,49.7970486758,49.7970486758 -50,0,21.1,43.29,19.79,44.09,21.89,42.1371428571,20.26,44.4,18.1,54.29,10.145,92.59,18.2,41.6633333333,21,55.06,18.1,46,10.1,756.15,95,8.5,47,9.4,33.924476977,33.924476977 -50,0,21.1,43.3633333333,19.79,44.1633333333,21.89,42.2,20.2,44.4,18.1,54.2257142857,10.1,92.59,18.2,41.59,21,55.06,18.1,46,10.1,756.1666666667,95,8.3333333333,50,9.4,12.5117673888,12.5117673888 -50,0,21.1,43.4,19.7,44.2,21.89,42.1214285714,20.1666666667,44.4,18.1,54.2,10.1,92.53,18.2,41.6633333333,20.89,55.2,18.1,46.09,10.1,756.1833333333,95,8.1666666667,53,9.4,33.1401844625,33.1401844625 -40,0,21.1,43.4,19.7,44.26,21.89,42.09,20.1,44.4666666667,18.1,54.2,10.1,92.53,18.1333333333,41.7,20.89,55.2,18.1,46.09,10.1,756.2,95,8,56,9.4,5.9618114494,5.9618114494 -50,0,21.1,43.4,19.7,44.29,21.89,42.09,20.1,44.53,18.1,54.2,10.19,92.5,18.2,41.7,20.89,55.3266666667,18.1,46.2,10.1,756.2333333333,94.8333333333,8,50,9.3666666667,44.5914571639,44.5914571639 -40,0,21,43.4,19.7,44.29,21.89,42.09,20.0333333333,44.53,18.1,54.1685714286,10.19,92.5,18.2,41.7,20.89,55.4,18.1,46.2,10.1,756.2666666667,94.6666666667,8,44,9.3333333333,38.112372451,38.112372451 -40,0,21,43.4,19.6666666667,44.29,21.89,42.1685714286,20,44.5,18.1,54.156,10.19,92.5,18.1333333333,41.7,20.89,55.4,18.1666666667,46.23,10.1,756.3,94.5,8,38,9.3,10.3607923025,10.3607923025 -50,0,21,43.4333333333,19.6666666667,44.3633333333,21.956,42.156,19.89,44.53,18.1,54.09,10.19,92.5,18.2,41.7,20.89,55.4,18.1,46.29,10.1,756.3333333333,94.3333333333,8,32,9.2666666667,24.7586245183,24.7586245183 -60,0,21,43.5,19.6,44.4,21.89,42.1528571429,19.89,44.59,18.1,54.09,10.19,92.5,18.2,41.7,20.89,55.26,18.2,46.3266666667,10.1,756.3666666667,94.1666666667,8,26,9.2333333333,39.0315304394,39.0315304394 -30,0,21,43.5,19.6,44.4,21.89,42.2,19.89,44.59,18.1,54.09,10.19,92.4333333333,18.1333333333,41.7,20.815,55.095,18.1333333333,46.4,10.1,756.4,94,8,20,9.2,44.8070902494,44.8070902494 -30,0,21,43.5,19.6,44.4333333333,21.89,42.1214285714,19.89,44.59,18.1,54.09,10.19,92.3666666667,18.2,41.7,20.79,54.9333333333,18.2,46.4,10.1666666667,756.3666666667,93.3333333333,8,23.3333333333,9.15,7.862178958,7.862178958 -20,0,20.9633333333,43.5,19.6,44.5,21.89,42.2,19.8233333333,44.6266666667,18.0714285714,54.0128571429,10.2633333333,92.3,18.2,41.6633333333,20.79,54.76,18.2,46.475,10.2333333333,756.3333333333,92.6666666667,8,26.6666666667,9.1,15.8344661584,15.8344661584 -40,0,20.89,43.5,19.6,44.5,21.89,42.2,19.8233333333,44.6266666667,18.08,53.98,10.33,92.2633333333,18.2,41.59,20.79,54.6266666667,18.2,46.5,10.3,756.3,92,8,30,9.05,11.123431765,11.123431765 -50,0,20.89,43.53,19.525,44.5,21.84,42.15875,19.79,44.59,18.0714285714,53.9714285714,10.39,92.0633333333,18.2,41.59,20.79,54.59,18.2,46.53,10.3666666667,756.2666666667,91.3333333333,8,33.3333333333,9,8.6455903249,8.6455903249 -40,0,20.89,43.59,19.5,44.56,21.79,42.2,19.79,44.59,18,53.9,10.39,91.5933333333,18.1666666667,41.59,20.79,54.53,18.2,46.59,10.4333333333,756.2333333333,90.6666666667,8,36.6666666667,8.95,14.243425685,14.243425685 -50,0,20.89,43.59,19.5,44.53,21.79,42.1528571429,19.7,44.59,18.0285714286,53.8657142857,10.4633333333,91.3333333333,18.1666666667,41.59,20.79,54.4,18.2,46.59,10.5,756.2,90,8,40,8.9,38.828727894,38.828727894 -40,0,20.8233333333,43.53,19.5,44.59,21.79,42.134,19.7,44.59,18,53.79,10.4633333333,91.06,18.2,41.59,20.79,54.4,18.2,46.6633333333,10.5333333333,756.2,89.6666666667,8.1666666667,40,8.8666666667,43.3165915543,43.3165915543 -50,0,20.79,43.5,19.5,44.59,21.79,42.2,19.7,44.7,18.0428571429,53.8371428571,10.39,91,18.1333333333,41.53,20.79,54.26,18.2,46.7,10.5666666667,756.2,89.3333333333,8.3333333333,40,8.8333333333,20.0656229397,20.0656229397 -60,0,20.79,43.56,19.5,44.59,21.79,42.2,19.7,44.7,18.04,53.834,10.39,91.09,18.1666666667,41.5,20.73,54.2,18.2,46.7,10.6,756.2,89,8.5,40,8.8,12.5817731139,12.5817731139 -50,0,20.79,43.59,19.5,44.7,21.8614285714,42.2257142857,19.6666666667,44.6633333333,18.0571428571,53.7928571429,10.4266666667,91,18.1666666667,41.5,20.76,54.2,18.2,46.7,10.6333333333,756.2,88.6666666667,8.6666666667,40,8.7666666667,42.9837822565,42.9837822565 -40,0,20.79,43.59,19.5,44.7,21.89,42.236,19.6,44.59,18.02,53.718,10.5,90.8666666667,18.1333333333,41.5,20.7,54.2,18.2,46.76,10.6666666667,756.2,88.3333333333,8.8333333333,40,8.7333333333,10.7611311716,10.7611311716 -40,0,20.79,43.59,19.4633333333,44.6633333333,21.89,42.2771428571,19.6,44.6266666667,18.0285714286,53.6471428571,10.6,90.4933333333,18.2,41.5,20.7,54.1633333333,18.2,46.79,10.7,756.2,88,9,40,8.7,36.9918705896,36.9918705896 -50,0,20.7675,43.59,19.39,44.59,21.89,42.2,19.6,44.7,18.0625,53.6925,10.6,90.1,18.2,41.5,20.7,54.09,18.2,46.8633333333,10.6833333333,756.25,88.1666666667,9,40,8.7166666667,19.4500043755,19.4500043755 -40,0,20.7,43.59,19.39,44.6266666667,21.89,42.2,19.6,44.7,18,53.59,10.6,89.5933333333,18.2,41.5,20.7,53.9666666667,18.26,47.06,10.6666666667,756.3,88.3333333333,9,40,8.7333333333,20.4990345868,20.4990345868 -50,0,20.7,43.6266666667,19.39,44.6266666667,21.79,42.2,19.6,44.7,18,53.5771428571,10.66,89.3333333333,18.2,41.5,20.7,53.9,18.26,47.06,10.65,756.35,88.5,9,40,8.75,24.9617640977,24.9617640977 -40,0,20.7,43.7,19.39,44.7,21.79,42.2,19.5,44.7,18,53.5,10.69,89.19,18.2,41.5,20.7,53.79,18.23,47.03,10.6333333333,756.4,88.6666666667,9,40,8.7666666667,28.4916601959,28.4916601959 -50,10,20.7,43.8,19.39,44.7,21.79,42.2,19.5,44.73,18,53.5,10.69,89.2633333333,18.2,41.5666666667,20.7,53.79,18.29,47.2233333333,10.6166666667,756.45,88.8333333333,9,40,8.7833333333,30.8986882912,30.8986882912 -90,0,20.7,44.06,19.39,44.8266666667,21.7257142857,42.0957142857,19.5,44.8633333333,18,53.356,10.66,89.4333333333,18.1333333333,41.8333333333,20.6666666667,53.5266666667,18.29,47.2,10.6,756.5,89,9,40,8.8,32.1897219168,32.1897219168 -50,0,20.7,44.4266666667,19.39,44.9666666667,21.7,42,19.5,44.9333333333,18.0714285714,53.2771428571,10.6,89.56,18.1,42.1266666667,20.6,53.3266666667,18.29,47.2,10.6,756.5333333333,89.1666666667,8.8333333333,38.1666666667,8.8333333333,24.3887522724,24.3887522724 -30,0,20.7,44.7,19.39,45.1566666667,21.6428571429,41.8957142857,19.4266666667,45,18.02,53.156,10.5666666667,89.8966666667,18.1,42.3333333333,20.6,53.09,18.29,47.2,10.6,756.5666666667,89.3333333333,8.6666666667,36.3333333333,8.8666666667,6.0606000945,6.0606000945 -10,10,20.7,44.7233333333,19.39,45.29,21.6,41.92,19.39,45.0666666667,18.0285714286,53.0571428571,10.5,90.2966666667,18.1,42.5666666667,20.5333333333,53,18.29,47.2,10.6,756.6,89.5,8.5,34.5,8.9,18.3073052089,18.3073052089 -40,20,20.7,44.59,19.39,45.5,21.5285714286,42,19.39,45.2,18.06,53.054,10.6,90.4666666667,18.1,42.7,20.6,52.9333333333,18.29,47.2,10.6,756.6333333333,89.6666666667,8.3333333333,32.6666666667,8.9333333333,14.0574339195,14.0574339195 -60,20,20.7,44.79,19.39,45.5675,21.456,41.96,19.4266666667,45.36,18.0571428571,53,10.66,90.4666666667,18.1,42.845,20.5,52.9,18.29,47.2,10.6,756.6666666667,89.8333333333,8.1666666667,30.8333333333,8.9666666667,41.2233049283,41.2233049283 -170,30,20.7,44.79,19.39,45.59,21.39,41.9857142857,19.5666666667,45.6933333333,18.04,52.98,10.8,90.1666666667,18.1,43,20.5,52.9,18.29,47.26,10.6,756.7,90,8,29,9,30.8448218741,30.8448218741 -150,20,20.7,44.79,19.4633333333,45.59,21.39,42,20.13,45.8633333333,18.0285714286,52.9285714286,10.86,89.8333333333,18.1,43,20.5,52.79,18.29,47.29,10.6833333333,756.6666666667,89.6666666667,8.1666666667,30.8333333333,9.0333333333,0.6071473123,0.6071473123 -70,30,20.7,44.79,19.4633333333,45.59,21.39,42,20.4633333333,45.4633333333,18,52.9,10.89,89.3966666667,18.1,43.09,20.5,52.73,18.29,47.3633333333,10.7666666667,756.6333333333,89.3333333333,8.3333333333,32.6666666667,9.0666666667,48.4009631095,48.4009631095 -60,30,20.7,44.7,19.39,45.59,21.39,42,20.5,45.3266666667,18,52.9,10.9975,89.115,18.1,43.1633333333,20.5,52.7,18.29,47.4333333333,10.85,756.6,89,8.5,34.5,9.1,14.1485672095,14.1485672095 -60,30,20.7,44.76,19.4633333333,45.6633333333,21.39,42,20.5,45.4666666667,18,52.9,11.1,89.09,18.1,43.23,20.5,52.7,18.3566666667,47.56,10.9333333333,756.5666666667,88.6666666667,8.6666666667,36.3333333333,9.1333333333,39.504213084,39.504213084 -60,20,20.7,44.7,19.5,45.59,21.39,41.95,20.5666666667,45.6266666667,18.06,52.9,11.3,88.59,18.1,43.29,20.5,52.79,18.3066666667,47.59,11.0166666667,756.5333333333,88.3333333333,8.8333333333,38.1666666667,9.1666666667,36.3498591352,36.3498591352 -60,30,20.7,44.76,19.5666666667,45.59,21.39,41.9,20.5,45.6266666667,18.08,52.878,11.3642857143,88.2114285714,18.1,43.4,20.5,52.93,18.29,47.59,11.1,756.5,88,9,40,9.2,34.3645734247,34.3645734247 -60,20,20.7,44.73,19.6,45.59,21.39,41.9666666667,20.5,45.7,18,52.79,11.39,87.36,18.1,43.4666666667,20.5,53.03,18.3566666667,47.59,11.0666666667,756.5166666667,88.6666666667,8.8333333333,44,9.2666666667,3.8956226781,3.8956226781 -80,20,20.7,44.79,19.6666666667,45.6633333333,21.39,41.9333333333,20.5,45.6266666667,18.06,52.856,11.4057142857,87.4985714286,18.1,43.53,20.5,53.2233333333,18.3566666667,47.5,11.0333333333,756.5333333333,89.3333333333,8.6666666667,48,9.3333333333,41.1453626468,41.1453626468 -80,20,20.7,44.93,19.73,45.7,21.39,42,20.5,45.6266666667,18.0571428571,52.79,11.5,87.656,18.1,43.59,20.6,53.26,18.29,47.5,11,756.55,90,8.5,52,9.4,25.1600797055,25.1600797055 -80,20,20.7,45,19.79,45.6266666667,21.4266666667,42.1266666667,20.675,45.82,18.48,60.332,11.4214285714,87.5285714286,18.1,43.6266666667,20.6666666667,53.2,18.29,47.4625,10.9666666667,756.5666666667,90.6666666667,8.3333333333,56,9.4666666667,33.8317543617,33.8317543617 -90,30,20.76,45,19.8233333333,45.6566666667,21.5,42.2,21.26,45.86,20.8571428571,86.9385714286,11.39,88.036,18.1,43.76,20.6666666667,52.4,18.29,47.425,10.9333333333,756.5833333333,91.3333333333,8.1666666667,60,9.5333333333,36.4466913394,36.4466913394 -80,20,20.79,45.0666666667,19.89,45.79,21.5333333333,42.2,21.9266666667,45.46,20.516,87.02,11.39,87.8928571429,18.1333333333,43.8266666667,20.6666666667,52.5266666667,18.29,47.4333333333,10.9,756.6,92,8,64,9.6,12.8609426552,12.8609426552 -80,20,20.79,45.26,20,45.79,21.6,42.2,22.26,45,19.9228571429,89.5671428571,11.412,88.156,18.1333333333,43.9,20.7,52.2966666667,18.29,47.4,10.9666666667,756.55,91.5,8.1666666667,60,9.5833333333,25.179858366,25.179858366 -80,20,20.8233333333,45.5,20.0666666667,45.8633333333,21.6,42.2,22.2,44.59,19.35625,91.34625,11.5,88.0257142857,18.1333333333,44,20.7,52.03,18.3566666667,47.4,11.0333333333,756.5,91,8.3333333333,56,9.5666666667,44.3985149032,44.3985149032 -80,20,20.89,45.5,20.2,45.7233333333,21.6,42.26,22.1333333333,44.6633333333,19.18,90.996,11.636,87.93,18.2,44,20.79,52,18.3566666667,47.4,11.1,756.45,90.5,8.5,52,9.55,0.8326923591,0.8326923591 -80,20,20.89,45.5,20.26,45.59,21.5,42.3266666667,22.0666666667,44.7,19.1,88.9,11.69,87.58,18.2,44.09,20.865,52.0675,18.34,47.3175,11.1666666667,756.4,90,8.6666666667,48,9.5333333333,6.93135357,6.93135357 -100,20,20.9633333333,45.4333333333,20.3233333333,45.5,21.5,42.4,22,44.7,19.1,85.914,11.712,87.696,18.2,44.09,20.9633333333,52.09,18.29,47.23,11.2333333333,756.35,89.5,8.8333333333,44,9.5166666667,30.3617769619,30.3617769619 -100,20,21,45.4,20.39,45.3975,21.5333333333,42.4333333333,21.8566666667,44.76,19.0428571429,84.2714285714,11.7528571429,87.6242857143,18.15,44.2,21,52.09,18.3233333333,47.2,11.3,756.3,89,9,40,9.5,8.2377206185,8.2377206185 -70,20,21.0666666667,45.4,20.39,45.23,21.6,42.5,21.79,44.76,19,83.02,11.89,87.16,18.1666666667,44.29,21.0666666667,52.09,18.3233333333,47.2,11.35,756.2666666667,88.8333333333,9.1666666667,40,9.5166666667,21.1745998706,21.1745998706 -70,30,21.1,45.4,20.4266666667,45.2,21.6,42.5,21.76,44.8266666667,19,81.9,11.89,86.4214285714,18.1,44.3633333333,21.1333333333,51.9666666667,18.39,47.1633333333,11.4,756.2333333333,88.6666666667,9.3333333333,40,9.5333333333,31.1434833216,31.1434833216 -100,0,21.1,45.4,20.5,45.2,21.5333333333,42.5,21.7,44.9,18.89,80.26,11.912,86.098,18.2,44.4,21.2,51.9,18.39,47.09,11.45,756.2,88.5,9.5,40,9.55,9.3249530531,9.3249530531 -70,0,21.1,45.53,20.5,45.06,21.5,42.53,21.6666666667,44.8633333333,18.8328571429,78.7414285714,12.0714285714,85.5542857143,18.2,44.4,21.23,51.8266666667,18.29,47.06,11.5,756.1666666667,88.3333333333,9.6666666667,40,9.5666666667,47.7316237637,47.7316237637 -80,0,21.1,45.8633333333,20.5,44.9333333333,21.5,42.59,21.5333333333,44.79,18.79,76.954,12.19,85.15,18.2,44.4333333333,21.29,51.8266666667,18.3566666667,47.06,11.55,756.1333333333,88.1666666667,9.8333333333,40,9.5833333333,35.9366859775,35.9366859775 -100,0,21.1,45.8333333333,20.5333333333,44.8266666667,21.4633333333,42.7,21.4633333333,44.79,18.7257142857,75.0357142857,12.1385714286,85.1628571429,18.2,44.5,21.39,51.8266666667,18.3566666667,47.09,11.6,756.1,88,10,40,9.6,14.1764865024,14.1764865024 -110,20,21.1666666667,45.5666666667,20.6,44.9,21.445,42.745,21.39,44.93,18.7,72.576,12.118,85.258,18.2,44.5,21.39,51.9666666667,18.3566666667,47.03,11.55,756.05,88.3333333333,10,37.8333333333,9.6166666667,27.9879762093,27.9879762093 -120,20,21.2,45.4,20.6333333333,44.9,21.39,42.7,21.7633333333,45.1333333333,18.7,70.6514285714,12.1257142857,84.7685714286,18.2,44.56,21.5,52.1633333333,18.39,47,11.5,756,88.6666666667,10,35.6666666667,9.6333333333,42.6715558977,42.6715558977 -110,20,21.2675,45.3725,20.7,44.9,21.5,42.8633333333,21.89,44.86,18.7,68.84,12.06,84.12,18.2,44.59,21.5,51.89,18.39,47,11.45,755.95,89,10,33.5,9.65,18.6113172909,18.6113172909 -110,20,21.3566666667,45.29,20.73,44.9,21.5,42.8633333333,21.89,44.8266666667,18.7,67.3285714286,11.93125,85.0475,18.2,44.59,21.6,51.5266666667,18.39,47,11.4,755.9,89.3333333333,10,31.3333333333,9.6666666667,21.4041903382,21.4041903382 -100,20,21.39,45.29,20.79,44.8266666667,21.5,42.9,21.8233333333,44.9,18.7,65.93,11.9057142857,85.7542857143,18.2,44.7,21.6,51.2666666667,18.39,47,11.35,755.85,89.6666666667,10,29.1666666667,9.6833333333,2.9936983949,2.9936983949 -90,20,21.39,45.23,20.8233333333,44.79,21.5666666667,42.9,21.745,44.95,18.7,64.9085714286,12,85.59,18.2,44.7,21.6333333333,51.06,18.39,46.9666666667,11.3,755.8,90,10,27,9.7,34.3195640016,34.3195640016 -110,30,21.4633333333,45.3333333333,20.89,44.79,21.6,42.9333333333,21.76,45.09,18.7,64,12.0428571429,85.1828571429,18.2,44.7,21.7,51,18.39,46.9,11.4333333333,755.7166666667,89,9.8333333333,29.1666666667,9.6666666667,0.6547523546,0.6547523546 -100,20,21.4633333333,45.2,20.89,44.76,21.6,43.06,21.7,45.09,18.7,63.1714285714,12.1,84.66,18.2,44.7,21.73,50.9,18.39,46.9,11.5666666667,755.6333333333,88,9.6666666667,31.3333333333,9.6333333333,3.7755363388,3.7755363388 -110,20,21.4266666667,45.1266666667,20.89,44.7,21.5666666667,43.09,21.7,45.2,18.7,62.38,12.1928571429,83.7285714286,18.2,44.7,21.79,50.7666666667,18.39,46.9,11.7,755.55,87,9.5,33.5,9.6,25.7896430558,25.7896430558 -110,20,21.5,45.2,20.89,44.6633333333,21.5666666667,43.09,21.7,45.2,18.6428571429,61.7128571429,12.318,82.938,18.2,44.6266666667,21.9266666667,50.6633333333,18.39,46.9,11.8333333333,755.4666666667,86,9.3333333333,35.6666666667,9.5666666667,7.2065612767,7.2065612767 -100,20,21.5,46.4333333333,20.8233333333,44.53,21.6,43.1266666667,21.7,45.2,18.66,61.154,12.4685714286,81.7071428571,18.2,44.6633333333,22,50.53,18.39,46.8725,11.9666666667,755.3833333333,85,9.1666666667,37.8333333333,9.5333333333,9.4166143099,9.4166143099 -110,20,21.5666666667,47.8933333333,20.79,44.53,21.6,43.2,21.6333333333,45.2,18.7,60.6685714286,12.5,81.54,18.2,44.59,22.05,50.545,18.39,46.79,12.1,755.3,84,9,40,9.5,48.5397449462,48.5397449462 -110,20,21.5,47.1333333333,20.79,44.6633333333,21.6,43.2,21.6,45.2,18.64,60.2,12.5428571429,79.9,18.2,44.59,22.1333333333,50.3633333333,18.39,46.79,12.1,755.25,84,9.3333333333,40,9.4833333333,41.7497889721,41.7497889721 -100,20,21.5,46.86,20.745,44.79,21.6,43.2,21.6,45.2,18.6142857143,59.8671428571,12.5,80.12,18.2,44.6633333333,22.2,50.23,18.39,46.79,12.1,755.2,84,9.6666666667,40,9.4666666667,25.4884698894,25.4884698894 -80,30,21.5,46.5266666667,20.7,44.8266666667,21.6,43.2,21.6,45.29,18.6,59.56,12.5428571429,80.1142857143,18.2,44.59,22.29,50.2233333333,18.39,46.8266666667,12.1,755.15,84,10,40,9.45,18.0500272429,18.0500272429 -60,20,21.5,46.4666666667,20.7,44.8266666667,21.6,43.2,21.6,45.29,18.6,59.316,12.54,80.8,18.29,44.73,22.3566666667,50.03,18.39,46.8266666667,12.1,755.1,84,10.3333333333,40,9.4333333333,26.3524480397,26.3524480397 -50,20,21.5,46.3633333333,20.7,44.79,21.5,43.1266666667,21.6,45.4,18.6,59.1685714286,12.5857142857,80.5285714286,18.29,44.79,22.29,49.7233333333,18.39,46.79,12.1,755.05,84,10.6666666667,40,9.4166666667,10.6461496325,10.6461496325 -190,20,21.5,46.23,20.7,44.79,21.5,43.2,21.6,45.4,18.6,58.96,12.478,80.16,18.29,44.8266666667,22.23,49.39,18.39,46.79,12.1,755,84,11,40,9.4,0.2524783253,0.2524783253 -180,20,21.5,46.3,20.6333333333,44.8266666667,21.5,43.2,21.6,45.4666666667,18.6,58.8242857143,12.39,80.24,18.29,44.9,22.1,48.9,18.39,46.8633333333,12.05,754.9666666667,84,11,40,9.3666666667,9.7076717997,9.7076717997 -110,20,21.5,48.5,20.6333333333,44.9,21.5,43.32,21.6666666667,45.6,18.6,58.736,12.3,80.13,18.29,44.9,22.1,49.0266666667,18.39,46.79,12,754.9333333333,84,11,40,9.3333333333,44.441197766,44.441197766 -110,30,21.5,48.9266666667,20.6,45.1566666667,21.5,43.56,22.1633333333,45.6333333333,18.5714285714,58.7,12.2057142857,80.0371428571,18.29,44.8266666667,22.1,49.1266666667,18.39,46.79,11.95,754.9,84,11,40,9.3,11.8745636428,11.8745636428 -100,20,21.5666666667,47.8666666667,20.6,45.29,21.5,43.7,22.43,45.1666666667,18.6,58.656,12.172,80.016,18.29,44.9,22.1666666667,49.26,18.39,46.79,11.9,754.8666666667,84,11,40,9.2666666667,22.341015772,22.341015772 -100,20,21.55,47.2,20.7,45.5,21.5666666667,43.76,22.5,44.7,18.5571428571,58.5385714286,12.1,80.3714285714,18.29,44.8266666667,22.2,49.4333333333,18.39,46.79,11.85,754.8333333333,84,11,40,9.2333333333,41.7656012345,41.7656012345 -100,20,21.6,46.5266666667,20.7,45.4333333333,21.6,43.79,22.4266666667,44.6266666667,18.6,58.418,12,80.34,18.29,44.79,22.2,49.5,18.39,46.79,11.8,754.8,84,11,40,9.2,33.7654890609,33.7654890609 -100,20,21.6,46.3266666667,20.7,45.4,21.6,43.8633333333,22.29,44.59,18.5714285714,58.2642857143,11.9242857143,80.5942857143,18.29,44.79,22.29,49.7,18.39,46.76,11.7166666667,754.8,84.3333333333,10.8333333333,40,9.1833333333,23.4256027965,23.4256027965 -200,30,21.6,46.06,20.76,45.3266666667,21.6,43.79,22.2,44.5,18.6,58.156,11.836,80.756,18.29,44.79,22.29,49.7,18.39,46.76,11.6333333333,754.8,84.6666666667,10.6666666667,40,9.1666666667,32.0602280204,32.0602280204 -500,20,21.6666666667,46.3933333333,20.79,45.2,21.6,43.79,22.2,44.5,18.6,57.9985714286,11.8,80.8571428571,18.29,44.79,22.29,49.73,18.39,46.79,11.55,754.8,85,10.5,40,9.15,13.3887160802,13.3887160802 -340,20,21.73,48.2933333333,20.8566666667,45.2,21.6,43.9633333333,22.1666666667,44.6266666667,18.6,57.9,11.69,81.10875,18.29,44.79,22.29,49.8633333333,18.39,46.73,11.4666666667,754.8,85.3333333333,10.3333333333,40,9.1333333333,32.6127704,32.6127704 -120,0,21.8566666667,50.3666666667,20.9266666667,45.5266666667,21.6666666667,44.5566666667,22.1,44.76,18.6,57.9285714286,11.654,81.554,18.29,44.73,22.29,49.6,18.39,46.7,11.3833333333,754.8,85.6666666667,10.1666666667,40,9.1166666667,45.2625858714,45.2625858714 -160,10,22,50.4,21,46.2666666667,21.79,45.6933333333,22.0666666667,44.76,18.6,58.134,11.6,81.7257142857,18.29,44.7,22.3566666667,49.4666666667,18.39,46.7225,11.3,754.8,86,10,40,9.1,17.1915848972,17.1915848972 -320,0,22,50.2666666667,21.0333333333,46.53,21.8566666667,46.1,22,44.76,18.6,58.3142857143,11.6,82.176,18.29,44.7,22.5,49.56,18.39,46.73,11.2333333333,754.7833333333,86.8333333333,9.8333333333,37.6666666667,9.1666666667,26.5263089677,26.5263089677 -240,0,22.0333333333,48.8333333333,21.1,46.53,21.89,46.1633333333,21.89,44.9333333333,18.6,58.4,11.5285714286,82.7242857143,18.29,44.7,22.575,49.475,18.39,46.7,11.1666666667,754.7666666667,87.6666666667,9.6666666667,35.3333333333,9.2333333333,48.5142461141,48.5142461141 -340,20,22.1666666667,48.1666666667,21.15,46.45,21.89,45.9633333333,21.89,45.1333333333,18.6,58.4,11.39,84.1,18.29,44.73,22.6,49.4666666667,18.3233333333,46.7,11.1,754.75,88.5,9.5,33,9.3,29.7370533226,29.7370533226 -140,20,22.2,47.3633333333,21.23,46.2,21.89,45.76,21.79,45.23,18.6,58.4,11.25,85.3085714286,18.29,44.79,22.6,49.53,18.39,46.79,11.0333333333,754.7333333333,89.3333333333,9.3333333333,30.6666666667,9.3666666667,27.7003019932,27.7003019932 -400,20,22.26,46.9633333333,21.29,46.0666666667,21.89,45.5666666667,21.79,45.3633333333,18.6,58.3057142857,11.136,86.25,18.29,44.9,22.6,49.53,18.39,46.79,10.9666666667,754.7166666667,90.1666666667,9.1666666667,28.3333333333,9.4333333333,42.0397975715,42.0397975715 -230,20,22.29,46.6333333333,21.39,45.7233333333,21.89,45.3633333333,21.79,45.5,18.6,58.236,11.0714285714,86.8942857143,18.3566666667,44.9,22.73,49.4666666667,18.39,46.79,10.9,754.7,91,9,26,9.5,21.6421808582,21.6421808582 -140,30,22.29,46.36,21.39,45.53,21.9633333333,45.23,21.79,45.56,18.6,58.0957142857,11,87.576,18.3233333333,45,22.79,49.3266666667,18.39,46.8633333333,10.85,754.7,91.3333333333,8.8333333333,32.3333333333,9.5,6.3769408851,6.3769408851 -100,20,22.3233333333,46.06,21.5,45.4666666667,22,45.06,21.76,45.59,18.7,58.09,10.9057142857,87.9114285714,18.39,45,22.79,49.26,18.39,46.9666666667,10.8,754.7,91.6666666667,8.6666666667,38.6666666667,9.5,47.3789817886,47.3789817886 -70,20,22.39,45.9333333333,21.5,45.2666666667,22,44.8975,21.76,45.59,18.6571428571,57.9557142857,10.854,88.212,18.39,45.03,22.79,49.1266666667,18.39,46.9,10.75,754.7,92,8.5,45,9.5,32.4886414688,32.4886414688 -80,30,22.39,45.6633333333,21.6,45.06,22,44.79,21.79,45.59,18.7,57.8633333333,10.8257142857,88.5,18.39,45.09,22.6666666667,48.9666666667,18.39,46.9,10.7,754.7,92.3333333333,8.3333333333,51.3333333333,9.5,17.7284253878,17.7284253878 -310,20,22.4633333333,45.59,21.6,44.9333333333,21.89,44.79,21.79,45.59,18.7,57.6528571429,10.8,88.734,18.3233333333,45.09,22.5333333333,48.9,18.39,46.9,10.65,754.7,92.6666666667,8.1666666667,57.6666666667,9.5,34.5266178367,34.5266178367 -410,20,22.5,45.56,21.6,44.8633333333,21.89,44.73,21.79,45.59,18.7,57.4285714286,10.7371428571,88.9557142857,18.39,45.09,22.4633333333,48.8333333333,18.39,46.9,10.6,754.7,93,8,64,9.5,4.4538227608,4.4538227608 -80,20,22.5,45.3975,21.6,44.73,21.9266666667,44.7,21.79,45.59,18.7,57.254,10.672,89.172,18.39,45.09,22.3233333333,48.6266666667,18.39,46.9,10.55,754.6833333333,93.1666666667,8,58.1666666667,9.4833333333,34.4854728901,34.4854728901 -90,30,22.5,45.23,21.6666666667,44.7233333333,21.9266666667,44.7,21.79,45.645,18.7,57.1371428571,10.6,89.4685714286,18.39,45.09,22.29,48.8266666667,18.39,46.9,10.5,754.6666666667,93.3333333333,8,52.3333333333,9.4666666667,0.9184115916,0.9184115916 -100,20,22.5,45.09,21.6,44.59,22,44.6633333333,21.79,45.7,18.7,57.072,10.56,89.84,18.39,45.09,22.29,48.9666666667,18.39,46.9,10.45,754.65,93.5,8,46.5,9.45,44.489766378,44.489766378 -90,20,22.5,45.03,21.6,44.5,21.9266666667,44.53,21.8566666667,45.76,18.7,56.9285714286,10.5,90.11,18.39,45.09,22.29,49.2666666667,18.39,46.9,10.4,754.6333333333,93.6666666667,8,40.6666666667,9.4333333333,22.9764907388,22.9764907388 -90,30,22.39,44.9,21.5333333333,44.56,22,44.5,21.8233333333,45.73,18.7,56.79,10.5,90.3,18.39,45.09,22.23,49.4,18.39,46.9,10.35,754.6166666667,93.8333333333,8,34.8333333333,9.4166666667,1.1727540521,1.1727540521 -70,20,22.39,44.9666666667,21.5,44.59,22,44.4333333333,21.89,45.79,18.7,56.7385714286,10.5,90.2685714286,18.39,45.09,22.2,49.6566666667,18.39,46.9,10.3,754.6,94,8,29,9.4,13.8061819831,13.8061819831 -60,30,22.39,45.03,21.4266666667,44.53,21.89,44.29,21.8233333333,45.6566666667,18.7,56.634,10.5,90.09,18.39,45.06,22.1333333333,49.8633333333,18.39,46.925,10.3833333333,754.55,92.5,8.1666666667,30.8333333333,9.2166666667,39.3632712658,39.3632712658 -60,20,22.39,45.03,21.39,44.5,21.89,44.3633333333,21.89,45.79,18.7,56.6685714286,10.5,89.9414285714,18.39,44.875,22.2,50.1266666667,18.39,47,10.4666666667,754.5,91,8.3333333333,32.6666666667,9.0333333333,20.7267773338,20.7267773338 -60,20,22.39,45,21.3233333333,44.5,21.89,44.4,22.0966666667,46,18.7,56.79,10.5,89.676,18.39,44.6266666667,22.2,50.3333333333,18.39,46.8633333333,10.55,754.45,89.5,8.5,34.5,8.85,18.2726295665,18.2726295665 -60,20,22.39,45,21.26,44.5,21.89,44.4,22.3566666667,45.7266666667,18.7,56.8528571429,10.5125,89.03375,18.39,44.5,22.2,50.69,18.39,46.79,10.6333333333,754.4,88,8.6666666667,36.3333333333,8.6666666667,26.4998039464,26.4998039464 -60,30,22.3233333333,45,21.2,44.5,21.79,44.29,22.5,45.59,18.68,56.9,10.5714285714,87.9285714286,18.4633333333,44.4333333333,22.1666666667,51.03,18.39,46.79,10.7166666667,754.35,86.5,8.8333333333,38.1666666667,8.4833333333,9.2069907347,9.2069907347 -60,20,22.39,45,21.1333333333,44.5,21.79,44.29,22.5,45.59,18.6428571429,56.9,10.6,86.354,18.5,44.26,22.1,51.1633333333,18.4633333333,46.8633333333,10.8,754.3,85,9,40,8.3,49.2439865484,49.2439865484 -60,20,22.29,44.9666666667,21.0666666667,44.56,21.89,44.29,22.39,45.4666666667,18.64,56.94,10.6,84.7385714286,18.5,44.1266666667,22.1,51.3266666667,18.4266666667,46.8266666667,10.7333333333,754.2166666667,84.6666666667,9,40,8.1833333333,23.6720189219,23.6720189219 -50,30,22.29,44.9,21,44.56,21.89,44.29,22.39,45.4,18.6142857143,57,10.6,83.558,18.5,43.9666666667,22.1,51.4666666667,18.4266666667,46.8266666667,10.6666666667,754.1333333333,84.3333333333,9,40,8.0666666667,37.033380405,37.033380405 -60,20,22.26,44.76,21,44.56,21.8233333333,44.1266666667,22.39,45.4,18.6,57,10.5571428571,82.6785714286,18.5,43.8266666667,22.1,51.5666666667,18.39,46.76,10.6,754.05,84,9,40,7.95,19.1576640354,19.1576640354 -60,20,22.2,44.7,20.9266666667,44.5,21.89,44.1175,22.39,45.4,18.6,57,10.6,81.276,18.5,43.76,22.0333333333,51.7,18.4633333333,46.76,10.5333333333,753.9666666667,83.6666666667,9,40,7.8333333333,21.0891805938,21.0891805938 -40,30,22.2,44.6633333333,20.89,44.5,21.89,44.1633333333,22.3566666667,45.4666666667,18.6,56.9,10.6,80.8514285714,18.5,43.6266666667,22,51.73,18.4633333333,46.76,10.4666666667,753.8833333333,83.3333333333,9,40,7.7166666667,25.8705132874,25.8705132874 -40,20,22.1333333333,44.59,20.8233333333,44.36,21.89,44.09,22.3566666667,45.4,18.6,56.9,10.558,80.538,18.5,43.5,22,51.8633333333,18.4633333333,46.76,10.4,753.8,83,9,40,7.6,44.9305574526,44.9305574526 -40,20,22.1,44.59,20.79,44.3266666667,21.89,44.03,22.3566666667,45.4,18.6,56.9,10.3257142857,79.8828571429,18.5,43.4333333333,22.0666666667,52.09,18.5,46.79,10.3,753.7,83.5,8.6666666667,40,7.5833333333,30.0767935929,30.0767935929 -50,20,22.0333333333,44.53,20.79,44.4,21.89,44.06,22.29,45.2666666667,18.6,56.9,10.19,79.93,18.5,43.26,22,52.2966666667,18.4266666667,46.73,10.2,753.6,84,8.3333333333,40,7.5666666667,18.9646292478,18.9646292478 -70,30,22.1,44.5,20.7,44.3266666667,21.89,44,22.29,45.2,18.6,56.856,10.1385714286,79.2642857143,18.5,43.2,22.0666666667,52.5,18.5,46.79,10.1,753.5,84.5,8,40,7.55,40.8749686088,40.8749686088 -60,20,22,44.3633333333,20.7,44.4,21.89,44,22.29,45.2,18.6,56.79,10.08,79.376,18.5,43.06,22,52.56,18.5,46.79,10,753.4,85,7.6666666667,40,7.5333333333,34.9586164462,34.9586164462 -70,20,22,44.29,20.6666666667,44.3633333333,21.9633333333,44,22.29,45.2,18.6,56.736,10,80.0957142857,18.5,43,21.89,52.5,18.5,46.79,9.9,753.3,85.5,7.3333333333,40,7.5166666667,22.6202296093,22.6202296093 -60,30,21.9633333333,44.29,20.6,44.29,22,44,22.29,45.2,18.6,56.7,10,80.756,18.5,42.8633333333,21.89,52.56,18.5,46.79,9.8,753.2,86,7,40,7.5,43.8755374402,43.8755374402 -60,10,21.89,44.29,20.6,44.29,22,44,22.29,45.2,18.6,56.7,10.1371428571,80.2228571429,18.5,42.79,21.9633333333,52.8266666667,18.5,46.79,9.8,753.1333333333,86,7.1666666667,40,7.5166666667,20.4628448701,20.4628448701 -50,10,21.89,44.3266666667,20.6,44.29,22,44,22.26,45.1,18.6,56.656,10.19,79.918,18.5,42.7,21.89,52.9666666667,18.5,46.79,9.8,753.0666666667,86,7.3333333333,40,7.5333333333,23.1505907956,23.1505907956 -60,0,21.8233333333,44.3266666667,20.5,44.4,22,44,22.2,44.8266666667,18.6,56.6371428571,10.19,79.58,18.5,42.6175,21.89,53.1266666667,18.5,46.79,9.8,753,86,7.5,40,7.55,0.8757475298,0.8757475298 -60,0,21.79,44.29,20.5,44.4,22.0333333333,44.03,22.1666666667,44.56,18.56,56.59,10.1,79.976,18.5,42.59,21.89,53.3333333333,18.5,46.9333333333,9.8,752.9333333333,86,7.6666666667,40,7.5666666667,1.4294482651,1.4294482651 -60,0,21.79,44.29,20.39,44.4,22.0333333333,44.03,22.1,44.4333333333,18.6,56.59,10.1,80.31,18.5,42.5,21.89,53.73,18.5,46.9333333333,9.8,752.8666666667,86,7.8333333333,40,7.5833333333,43.9583542873,43.9583542873 -60,0,21.79,44.2,20.39,44.4,22.1,44.09,22,44.29,18.6,56.59,10.04,80.518,18.5,42.5,21.89,53.93,18.5,46.9,9.8,752.8,86,8,40,7.6,15.5456127715,15.5456127715 -50,0,21.73,44.2,20.39,44.4,22.1,44.03,21.9266666667,44.29,18.5571428571,56.5385714286,10,80.6328571429,18.5,42.4,21.89,54.145,18.5,46.9,9.85,752.8,85.3333333333,8.1666666667,40,7.5333333333,11.56783076,11.56783076 -50,10,21.7,44.2,20.29,44.4666666667,22.1,44,21.8566666667,44.26,18.56,56.536,9.89,80.65,18.5,42.4,21.89,54.2,18.5,47,9.9,752.8,84.6666666667,8.3333333333,40,7.4666666667,48.4408771619,48.4408771619 -60,0,21.7,44.2,20.29,44.4666666667,22.1,44,21.79,44.2,18.6,56.5,9.89,80.50875,18.5,42.4,21.89,54.2,18.5,47,9.95,752.8,84,8.5,40,7.4,19.7262700181,19.7262700181 -50,0,21.7,44.2,20.29,44.5,22.0666666667,43.9666666667,21.7,44.2,18.56,56.46,9.9528571429,79.7814285714,18.5,42.3266666667,21.79,54.1633333333,18.5,47,10,752.8,83.3333333333,8.6666666667,40,7.3333333333,20.7868985948,20.7868985948 -60,0,21.6333333333,44.1266666667,20.29,44.5,22.075,44.02,21.6333333333,44.1266666667,18.5428571429,56.4285714286,10,79.338,18.5,42.29,21.79,54.09,18.5,47,10.05,752.8,82.6666666667,8.8333333333,40,7.2666666667,11.5033050068,11.5033050068 -60,0,21.6,44.09,20.29,44.53,22.1,44,21.6,44.09,18.58,56.4,10,78.9971428571,18.5,42.23,21.79,54.06,18.5666666667,47.03,10.1,752.8,82,9,40,7.2,43.60798907,43.60798907 -60,0,21.6,44.09,20.23,44.53,22.1,44,21.5333333333,44.1633333333,18.5428571429,56.4,10,78.68,18.5,42.1633333333,21.79,54,18.5666666667,47.03,10.0833333333,752.7833333333,82,9,40,7.1833333333,12.3207021737,12.3207021737 -60,0,21.6,44,20.2,44.5,22.1,44,21.5,44.2,18.56,56.29,10,78.4257142857,18.5,42.09,21.79,53.9666666667,18.5,47.03,10.0666666667,752.7666666667,82,9,40,7.1666666667,33.5511446698,33.5511446698 -50,0,21.6,44,20.2,44.56,22.1,44,21.4266666667,44.1266666667,18.5142857143,56.29,10,78.34,18.5,42.09,21.79,53.9,18.5,47.03,10.05,752.75,82,9,40,7.15,40.8778996323,40.8778996323 -60,0,21.6,44,20.1,44.6266666667,22.1,44,21.39,44.09,18.54,56.29,10,78.2685714286,18.5,42.03,21.79,53.9,18.6,47.09,10.0333333333,752.7333333333,82,9,40,7.1333333333,26.3932577102,26.3932577102 -40,0,21.5,44,20.1,44.6266666667,22.1,43.9333333333,21.39,44.09,18.5,56.2642857143,10,77.84,18.5,42,21.79,53.9,18.6,47.09,10.0166666667,752.7166666667,82,9,40,7.1166666667,49.4059462915,49.4059462915 -50,0,21.5,44,20.1,44.7,22.1,44,21.3233333333,44.09,18.5,56.2,10.0142857143,77.3571428571,18.5,41.9333333333,21.79,54,18.6,47.09,10,752.7,82,9,40,7.1,0.2160609351,0.2160609351 -20,0,21.5,44,20.0333333333,44.6266666667,22.1,43.9,21.26,44.1633333333,18.5,56.2,10.1,76.8,18.5,41.9666666667,21.79,53.9333333333,18.6,47.09,10.0166666667,752.6666666667,82,9.1666666667,40,7.1,44.5762346149,44.5762346149 -40,0,21.5,44,20,44.59,22.0333333333,43.8266666667,21.26,44.1633333333,18.5,56.2,10.1,76.3285714286,18.5,41.9,21.79,53.8633333333,18.6,47.1842857143,10.0333333333,752.6333333333,82,9.3333333333,40,7.1,38.1566033466,38.1566033466 -50,0,21.39,43.9,20,44.59,22,43.79,21.2,44.09,18.5,56.09,10.19,75.554,18.5,41.79,21.73,53.79,18.6,47.2,10.05,752.6,82,9.5,40,7.1,45.6093769288,45.6093769288 -50,0,21.39,43.8266666667,20,44.59,22,43.79,21.2,44.09,18.5,56.09,10.2371428571,75.3857142857,18.5,41.79,21.79,53.6633333333,18.6,47.2,10.0666666667,752.5666666667,82,9.6666666667,40,7.1,13.6359252851,13.6359252851 -70,0,21.39,43.79,20,44.59,22,43.8633333333,21.1,44.09,18.5,56.06,10.19,75.234,18.5,41.79,21.73,53.53,18.6,47.2,10.0833333333,752.5333333333,82,9.8333333333,40,7.1,26.6675520223,26.6675520223 -50,0,21.39,43.79,19.9633333333,44.59,22,43.79,21.1,44.09,18.5,56,10.19,75.2214285714,18.5,41.7,21.73,53.3633333333,18.6,47.29,10.1,752.5,82,10,40,7.1,17.7736756275,17.7736756275 -50,0,21.39,43.79,19.89,44.59,22,43.8633333333,21.1,44.09,18.5,55.9333333333,10.19,75.19,18.5,41.7,21.73,53.23,18.6,47.29,10.0666666667,752.5,82,10,40,7.0833333333,28.2472898602,28.2472898602 -50,0,21.39,43.79,19.89,44.59,22,43.79,21.0333333333,44.03,18.5,55.9,10.1128571429,75.3414285714,18.5,41.59,21.7,53.0266666667,18.6,47.29,10.0333333333,752.5,82,10,40,7.0666666667,14.8392748204,14.8392748204 -50,0,21.29,43.79,19.89,44.6266666667,22,43.79,21,44,18.5,55.9,10.1,75.42,18.5,41.59,21.745,52.8725,18.6,47.3214285714,10,752.5,82,10,40,7.05,31.8632491049,31.8632491049 -50,0,21.29,43.79,19.89,44.6266666667,22,43.79,21,44,18.5,55.8633333333,10.1,75.4428571429,18.5,41.59,21.7,52.73,18.64,47.44,9.9666666667,752.5,82,10,40,7.0333333333,48.2510654372,48.2510654372 -60,0,21.29,43.79,19.8566666667,44.6633333333,22,43.79,21,44.06,18.5,55.79,10.154,75.19,18.5,41.53,21.7,52.7,18.6285714286,47.4842857143,9.9333333333,752.5,82,10,40,7.0166666667,38.5901689297,38.5901689297 -70,0,21.29,43.79,19.79,44.59,22,43.79,21,44,18.5,55.79,10.1385714286,75.2271428571,18.5,41.5,21.7,52.6266666667,18.64,47.536,9.9,752.5,82,10,40,7,5.7893992984,5.7893992984 -50,0,21.29,43.79,19.79,44.59,22,43.79,20.89,44,18.5,55.73,10.118,74.996,18.5,41.5,21.7,52.59,18.6428571429,47.5385714286,9.9166666667,752.4333333333,82,9.8333333333,40,7,15.9348384594,15.9348384594 -60,0,21.29,43.79,19.79,44.59,22,43.76,20.89,44.06,18.5,55.7,10.1642857143,74.9285714286,18.5,41.5,21.7,52.59,18.6,47.59,9.9333333333,752.3666666667,82,9.6666666667,40,7,0.1776860328,0.1776860328 -50,0,21.2,43.7,19.79,44.59,22,43.7,20.89,44.09,18.5,55.7,10.1675,74.86,18.5,41.4333333333,21.7,52.4,18.6142857143,47.6057142857,9.95,752.3,82,9.5,40,7,21.5770545648,21.5770545648 -50,0,21.2,43.7,19.79,44.59,22,43.7,20.8233333333,44.03,18.5,55.59,10.19,74.44,18.5,41.4,21.7,52.4,18.66,47.656,9.9666666667,752.2333333333,82,9.3333333333,40,7,35.382172442,35.382172442 -50,0,21.2,43.7,19.79,44.6266666667,22,43.7,20.79,44,18.5,55.59,10.1514285714,74.4,18.5,41.4,21.7,52.29,18.7,47.7,9.9833333333,752.1666666667,82,9.1666666667,40,7,22.1193205914,22.1193205914 -60,10,21.175,43.7225,19.79,44.6266666667,22,43.7,20.79,44,18.4633333333,55.5266666667,10.154,74.534,18.5,41.3633333333,21.6333333333,52.0966666667,18.7,47.79,10,752.1,82,9,40,7,38.9515752904,38.9515752904 -50,0,21.1666666667,44.79,19.7,44.6933333333,21.9266666667,43.6266666667,20.79,44,18.4633333333,55.5266666667,10.1257142857,74.5542857143,18.5,41.29,21.6666666667,52.06,18.6285714286,47.7257142857,9.8666666667,752.05,83.5,8.8333333333,44,7.1333333333,2.7931038989,2.7931038989 -50,10,21.2,44.9,19.7,44.9666666667,21.89,43.5,20.7,43.9666666667,18.5,55.53,10.06,74.94,18.5,41.29,21.6,51.9333333333,18.7,47.776,9.7333333333,752,85,8.6666666667,48,7.2666666667,21.2962633697,21.2962633697 -60,10,21.2,44.9,19.7,45.0666666667,21.89,43.4333333333,20.7,43.9,18.4266666667,55.53,10,75.4785714286,18.5,41.29,21.6,51.7233333333,18.7,47.9,9.6,751.95,86.5,8.5,52,7.4,38.4395265253,38.4395265253 -70,0,21.1,44.86,19.7,45.26,21.8566666667,43.26,20.7,43.8633333333,18.4266666667,55.5,10,76.074,18.5,41.29,21.6,51.39,18.7,47.9,9.4666666667,751.9,88,8.3333333333,56,7.5333333333,20.4647325096,20.4647325096 -50,0,21.1666666667,45,19.7,45.2,21.8566666667,43.26,20.7,43.73,18.4266666667,55.36,9.9214285714,77.2685714286,18.5,41.3725,21.5,50.9,18.7,47.7542857143,9.3333333333,751.85,89.5,8.1666666667,60,7.6666666667,43.7544426532,43.7544426532 -50,0,21.2,44.9666666667,19.7,45.1266666667,21.8566666667,43.2,20.6333333333,43.6266666667,18.4266666667,55.2,9.8,78.016,18.5,41.4,21.5,50.5666666667,18.66,47.634,9.2,751.8,91,8,64,7.8,47.4234432215,47.4234432215 -30,0,21.2,44.8266666667,19.7,45.1266666667,21.79,43.2,20.7,43.7,18.445,55.1175,9.8,78.3114285714,18.5,41.4333333333,21.39,50.0266666667,18.7,47.5257142857,9.1333333333,751.8,91.1666666667,7.8333333333,64,7.7666666667,9.9940695683,9.9940695683 -50,10,21.1666666667,44.76,19.7,45.1266666667,21.79,43.1633333333,20.6,43.5,18.5,54.9633333333,9.8,77.936,18.4266666667,41.36,21.39,49.8266666667,18.66,47.46,9.0666666667,751.8,91.3333333333,7.6666666667,64,7.7333333333,0.7603214006,0.7603214006 -140,0,21.1666666667,44.6266666667,19.7,45,21.79,43.09,20.6,43.5,18.4266666667,54.76,9.8,77.4,18.4266666667,41.3266666667,21.3566666667,49.59,18.68,47.4,9,751.8,91.5,7.5,64,7.7,9.7271176171,9.7271176171 -130,0,21.1,44.59,19.7,44.8633333333,21.7,43.09,20.6,43.4666666667,18.5,54.7,9.8,77.3,18.4266666667,41.3266666667,21.29,49.59,18.6666666667,47.2477777778,8.9333333333,751.8,91.6666666667,7.3333333333,64,7.6666666667,7.0283430978,7.0283430978 -50,10,21.1,44.53,19.7,44.79,21.7,43.01,20.6,43.4,18.4633333333,54.5266666667,9.8,77.5785714286,18.39,41.29,21.245,49.495,18.7,47.71,8.8666666667,751.8,91.8333333333,7.1666666667,64,7.6333333333,14.7633247194,14.7633247194 -50,0,21.1,44.4666666667,19.7,44.76,21.73,42.9666666667,20.5,43.4,18.4633333333,54.4,9.778,78.04,18.4633333333,41.3633333333,21.26,49.3333333333,18.79,48,8.8,751.8,92,7,64,7.6,38.5040696478,38.5040696478 -80,0,21.1,44.4,19.7,44.76,21.73,42.9,20.5,43.4,18.4633333333,54.3633333333,9.6642857143,79.2685714286,18.39,41.29,21.2,49.2,18.79,47.9428571429,8.8333333333,751.7833333333,92.5,7.1666666667,59.1666666667,7.7,34.5131264301,34.5131264301 -330,0,21.1,44.3266666667,19.7,44.8266666667,21.7,42.79,20.5,43.4333333333,18.4633333333,54.3633333333,9.5,81.776,18.39,41.3633333333,21.1666666667,49,18.79,47.834,8.8666666667,751.7666666667,93,7.3333333333,54.3333333333,7.8,32.5238529476,32.5238529476 -230,0,21.1,44.4,19.7,44.9666666667,21.625,42.64,20.5,43.5,18.5,54.26,9.4371428571,83.3985714286,18.4633333333,41.56,21.1,48.9333333333,18.79,47.7642857143,8.9,751.75,93.5,7.5,49.5,7.9,3.7327981554,3.7327981554 -70,0,21,44.3266666667,19.6,45,21.6,42.53,20.5,43.5,18.4266666667,54.1266666667,9.39,84.594,18.39,41.56,21.1,48.8633333333,18.79,47.656,8.9333333333,751.7333333333,94,7.6666666667,44.6666666667,8,45.129033085,45.129033085 -40,10,21,44.4,19.6,45.06,21.5666666667,42.5,20.5,43.56,18.39,53.9666666667,9.39,85.4657142857,18.39,41.73,21.1,48.79,18.79,47.5771428571,8.9666666667,751.7166666667,94.5,7.8333333333,39.8333333333,8.1,6.6469816607,6.6469816607 -40,10,21,44.53,19.6,45.09,21.5,42.5,20.4633333333,43.59,18.39,53.9,9.434,86.174,18.39,41.79,21.0666666667,48.7233333333,18.79,47.5,9,751.7,95,8,35,8.2,10.5413021869,10.5413021869 -70,0,21,44.59,19.6,45.03,21.5,42.5,20.39,43.6175,18.4266666667,53.9,9.4528571429,86.5242857143,18.39,41.9,21,48.59,18.79,47.4714285714,9.0833333333,751.7166666667,94.6666666667,8,39.6666666667,8.2333333333,7.7580198995,7.7580198995 -60,0,21,44.53,19.6,45.03,21.5,42.5,20.39,43.76,18.5,53.8266666667,9.5125,87.13125,18.39,41.9666666667,21,48.56,18.79,47.356,9.1666666667,751.7333333333,94.3333333333,8,44.3333333333,8.2666666667,2.7254331275,2.7254331275 -80,10,21,44.59,19.6666666667,45.1633333333,21.5,42.5,20.39,43.79,18.39,53.7,9.618,87.34,18.39,42.09,21,48.5,18.79,47.2385714286,9.25,751.75,94,8,49,8.3,35.7383218477,35.7383218477 -50,10,21,44.6633333333,19.6333333333,45.1266666667,21.5,42.5,20.39,43.79,18.4633333333,53.76,9.7685714286,87.5928571429,18.39,42.09,21,48.5,18.79,47.178,9.3333333333,751.7666666667,93.6666666667,8,53.6666666667,8.3333333333,41.2327399594,41.2327399594 -40,0,21,44.7,19.7,45.2,21.5,42.5,20.3233333333,43.9,18.4633333333,53.6633333333,9.89,87.554,18.39,42.2,20.9266666667,48.5,18.79,47.09,9.4166666667,751.7833333333,93.3333333333,8,58.3333333333,8.3666666667,20.7626791904,20.7626791904 -50,10,21,44.7,19.7,45.2,21.5,42.5,20.39,43.9,18.4633333333,53.59,10.0542857143,87.28,18.39,42.245,20.89,48.4666666667,18.79,47,9.5,751.8,93,8,63,8.4,48.227389995,48.227389995 -360,0,20.9633333333,44.76,19.7,45.2,21.5,42.56,20.39,43.9333333333,18.4266666667,53.5,10.274,86.896,18.39,42.26,20.89,48.4,18.79,46.9428571429,9.6,751.7833333333,92.3333333333,8,59.1666666667,8.4,16.1593207158,16.1593207158 -390,0,20.9633333333,44.7,19.7,45.1633333333,21.4266666667,42.5,20.3233333333,44,18.5,53.545,10.4214285714,86.0571428571,18.39,42.29,20.89,48.4,18.754,46.9,9.7,751.7666666667,91.6666666667,8,55.3333333333,8.4,23.8735149265,23.8735149265 -300,0,20.89,44.8266666667,19.76,45.09,21.6333333333,43.1666666667,20.29,44,18.4266666667,53.4333333333,10.54,85.216,18.39,42.3633333333,20.8233333333,48.2666666667,18.79,46.8214285714,9.8,751.75,91,8,51.5,8.4,48.6541040242,48.6541040242 -260,0,20.89,44.9666666667,19.745,45.3,21.8266666667,43.6933333333,20.29,44.06,18.4266666667,53.4333333333,10.6671428571,84.4414285714,18.39,42.4,20.79,48.2,18.79,46.79,9.9,751.7333333333,90.3333333333,8,47.6666666667,8.4,48.5173272318,48.5173272318 -270,0,21,45.23,19.79,45.6266666667,22.1633333333,43.9,20.29,44.09,18.4266666667,53.4333333333,10.8,83.578,18.4633333333,42.4666666667,20.79,48.2,18.79,46.79,10,751.7166666667,89.6666666667,8,43.8333333333,8.4,45.6468151533,45.6468151533 -230,0,21,45.3633333333,19.79,45.7,22.3566666667,43.7666666667,20.29,44.09,18.5,53.59,10.8642857143,83.1185714286,18.5,42.59,20.79,48.2,18.736,46.79,10.1,751.7,89,8,40,8.4,47.1380612697,47.1380612697 -340,0,21,45.6266666667,19.79,45.9333333333,22.5333333333,43.6333333333,20.29,44.09,18.4266666667,53.53,10.8,82.63,18.5,42.59,20.79,48.2,18.7,46.79,10.1833333333,751.6833333333,89,7.8333333333,38.1666666667,8.4666666667,33.5677759489,33.5677759489 -230,0,21,46.0333333333,19.79,46.06,22.6666666667,43.4333333333,20.29,44.1633333333,18.4633333333,53.6633333333,10.8128571429,83.1114285714,18.5,42.7,20.73,48.2,18.7,46.7,10.2666666667,751.6666666667,89,7.6666666667,36.3333333333,8.5333333333,34.6133169835,34.6133169835 -100,0,21.1,48.2333333333,19.79,47.0666666667,22.8233333333,43.2,20.29,44.23,18.4633333333,53.7233333333,10.89,83.51,18.5,42.7,20.7,48.2,18.7257142857,46.7257142857,10.35,751.65,89,7.5,34.5,8.6,5.2343310905,5.2343310905 -90,0,21.1,47.5666666667,19.79,47.4666666667,22.865,43.15,20.29,44.29,18.39,53.86,10.9214285714,83.4114285714,18.5,42.79,20.7,48.2,18.7,46.736,10.4333333333,751.6333333333,89,7.3333333333,32.6666666667,8.6666666667,33.3185489406,33.3185489406 -90,0,21.1,47.3333333333,19.79,47.3633333333,22.6633333333,42.86,20.29,44.29,18.4633333333,54.06,11.1,83.276,18.5,42.79,20.7,48.2,18.7,46.7675,10.5166666667,751.6166666667,89,7.1666666667,30.8333333333,8.7333333333,25.352430786,25.352430786 -110,0,21.1,47.1266666667,19.79,47.1566666667,22.5,42.79,20.29,44.3633333333,18.5,54.1633333333,11.1514285714,83.4128571429,18.5,42.9333333333,20.7,48.2,18.7,46.79,10.6,751.6,89,7,29,8.8,5.1410005195,5.1410005195 -100,0,21.0333333333,46.76,19.89,47.0266666667,22.4266666667,42.73,20.29,44.4333333333,18.5,54.1633333333,11.256,83.694,18.5,43,20.7,48.2,18.7,46.7,10.5666666667,751.5,90,6.8333333333,32.8333333333,8.9333333333,0.4114117473,0.4114117473 -130,0,21.1,46.6266666667,19.89,46.8266666667,22.39,42.59,20.29,44.5,18.5,54.06,11.3,84.09,18.5,43.09,20.6333333333,48.1266666667,18.65,46.645,10.5333333333,751.4,91,6.6666666667,36.6666666667,9.0666666667,49.3665859685,49.3665859685 -120,0,21.1,46.69,19.89,46.7,22.39,42.59,20.29,44.56,18.4266666667,53.9333333333,11.2242857143,84.0371428571,18.5,43.1633333333,20.6666666667,48.26,18.7,46.736,10.5,751.3,92,6.5,40.5,9.2,23.9188583218,23.9188583218 -60,0,21.1333333333,47.03,19.89,46.9,22.29,42.7,20.29,44.7,18.5,54,11,84.62,18.5,43.3266666667,20.6,48.2,18.7,46.7642857143,10.4666666667,751.2,93,6.3333333333,44.3333333333,9.3333333333,31.502171373,31.502171373 -40,0,21.2,47.1566666667,19.89,47.06,22.23,42.6266666667,20.29,44.7,18.478,53.98,10.7266666667,85.8833333333,18.5,43.4,20.6,48.29,18.7,46.79,10.4333333333,751.1,94,6.1666666667,48.1666666667,9.4666666667,45.6812753808,45.6812753808 -40,0,21.2,46.9,19.89,47,22.1666666667,42.73,20.2,44.73,18.456,53.96,10.63,87.0333333333,18.5,43.5,20.6,48.29,18.7,46.79,10.4,751,95,6,52,9.6,22.2306753858,22.2306753858 -30,0,21.1333333333,46.8266666667,19.89,46.9666666667,22.1,42.79,20.2,44.79,18.5,54,10.69,88.39,18.5,43.595,20.5666666667,48.4,18.7,46.9,10.3333333333,750.9666666667,95.3333333333,6,50.5,9.5833333333,18.8722999301,18.8722999301 -50,0,21.1666666667,46.7,19.89,46.8266666667,22,42.73,20.2,44.9,18.5,53.9,10.83,88.9966666667,18.5,43.76,20.5666666667,48.4,18.7,46.9571428571,10.2666666667,750.9333333333,95.6666666667,6,49,9.5666666667,11.5646724589,11.5646724589 -50,0,21.1,46.7,19.89,46.76,22,42.79,20.2,44.9666666667,18.5,53.8371428571,10.83,89.19,18.5,43.8266666667,20.5,48.5,18.7,47.018,10.2,750.9,96,6,47.5,9.55,16.130984982,16.130984982 -60,0,21.1666666667,46.56,19.89,46.7,21.9633333333,42.8266666667,20.2,45.09,18.5,53.77875,10.7633333333,89.4633333333,18.5,43.9666666667,20.5,48.56,18.7,47.09,10.1333333333,750.8666666667,96.3333333333,6,46,9.5333333333,0.1369078527,0.1369078527 -50,0,21.1,46.4333333333,19.89,46.59,21.89,42.9,20.2,45.1633333333,18.5,53.7,10.69,89.73,18.5,44.09,20.5,48.6266666667,18.7,47.29,10.0666666667,750.8333333333,96.6666666667,6,44.5,9.5166666667,32.6325875358,32.6325875358 -50,0,21.1,46.29,19.89,46.5,21.89,42.9,20.2,45.23,18.5,53.6685714286,10.69,89.9333333333,18.5,44.1633333333,20.5,48.7,18.7514285714,47.4228571429,10,750.8,97,6,43,9.5,18.6701460276,18.6701460276 -50,0,21.1,46.1566666667,19.89,46.56,21.89,42.9,20.2,45.29,18.5,53.59,10.69,90.1266666667,18.5,44.23,20.5,48.79,18.79,47.516,9.5833333333,750.8166666667,97.1666666667,5.8333333333,42.8333333333,9.1166666667,48.0297295609,48.0297295609 -50,0,21.1,46.2,19.89,46.59,21.79,42.79,20.2,45.4,18.5,53.5128571429,10.69,90.3333333333,18.5,44.29,20.5,48.79,18.79,47.4,9.1666666667,750.8333333333,97.3333333333,5.6666666667,42.6666666667,8.7333333333,7.5098778005,7.5098778005 -60,0,21.1,46.1266666667,19.8233333333,46.59,21.79,42.79,20.2,45.4,18.5,53.5,10.69,90.3333333333,18.5,44.4,20.445,48.8,18.754,47.356,8.75,750.85,97.5,5.5,42.5,8.35,12.3892656062,12.3892656062 -70,0,21.1,46.09,19.8233333333,46.6266666667,21.79,42.79,20.2,45.4333333333,18.5,53.5,10.69,90.5633333333,18.5,44.4,20.5,48.9,18.7385714286,47.3214285714,8.3333333333,750.8666666667,97.6666666667,5.3333333333,42.3333333333,7.9666666667,26.0916119791,26.0916119791 -70,0,21.1,46.09,19.89,46.7,21.7675,42.845,20.2,45.56,18.5,53.5,10.69,90.7633333333,18.5,44.5,20.4266666667,48.8266666667,18.754,47.29,7.9166666667,750.8833333333,97.8333333333,5.1666666667,42.1666666667,7.5833333333,20.9356128238,20.9356128238 -60,0,21.0666666667,46.06,19.89,46.6633333333,21.7,42.8633333333,20.2,45.59,18.5,53.4857142857,10.69,90.8,18.5,44.56,20.39,48.9,18.7257142857,47.29,7.5,750.9,98,5,42,7.2,46.9333827728,46.9333827728 -50,0,21.0666666667,46.1333333333,19.89,46.6633333333,21.7,42.9333333333,20.2,45.6633333333,18.5,53.44,10.63,90.9333333333,18.5,44.59,20.39,48.9666666667,18.7,47.29,7.2666666667,750.9833333333,97.8333333333,5.1666666667,45.1666666667,6.95,28.3039970091,28.3039970091 -50,0,21,46.03,19.79,46.56,21.7,43,20.2,45.7,18.5,53.4,10.2666666667,90.8966666667,18.5,44.59,20.39,49,18.7385714286,47.29,7.0333333333,751.0666666667,97.6666666667,5.3333333333,48.3333333333,6.7,41.6294437018,41.6294437018 -40,0,21.0666666667,46.1633333333,19.79,46.4333333333,21.7,43,20.1333333333,45.6266666667,18.5,53.356,9.3333333333,90.6233333333,18.5,44.43,20.39,48.9333333333,18.7,47.272,6.8,751.15,97.5,5.5,51.5,6.45,35.5272176093,35.5272176093 -40,0,21,45.995,19.79,46.26,21.7,42.9333333333,20.1,45.395,18.5,53.29,8.2933333333,90.2633333333,18.5,44.03,20.3566666667,48.7233333333,18.7,47.2,6.5666666667,751.2333333333,97.3333333333,5.6666666667,54.6666666667,6.2,1.6726578935,1.6726578935 -40,0,21,45.8333333333,19.73,46.1266666667,21.6666666667,42.8633333333,20.1,45.1333333333,18.5,53.236,7.9666666667,90.0633333333,18.5,43.6933333333,20.29,48.53,18.7,47.09,6.3333333333,751.3166666667,97.1666666667,5.8333333333,57.8333333333,5.95,32.7066936647,32.7066936647 -30,0,21,45.6266666667,19.7,45.9666666667,21.6,42.73,20.1,44.9333333333,18.5,53.1685714286,7.595,89.795,18.5,43.36,20.3566666667,48.3333333333,18.7,46.94875,6.1,751.4,97,6,61,5.7,27.6444011834,27.6444011834 -30,0,21,45.4666666667,19.7,45.8266666667,21.6,42.6633333333,20.1,44.6633333333,18.456,52.916,7.33,89.4333333333,18.5,43.06,20.3566666667,48.1266666667,18.7,46.7542857143,6.0166666667,751.4833333333,97.3333333333,5.5,58.8333333333,5.65,17.4465663731,17.4465663731 -40,0,21,45.3266666667,19.7,45.6633333333,21.6,42.59,20.1,44.53,18.4842857143,52.8214285714,7.0633333333,89.2266666667,18.5,42.7925,20.29,47.9666666667,18.7,46.616,5.9333333333,751.5666666667,97.6666666667,5,56.6666666667,5.6,7.5353948749,7.5353948749 -80,0,20.89,45.09,19.6333333333,45.53,21.5,42.5,20,44.2233333333,18.5,52.772,6.7633333333,89.0266666667,18.5,42.4633333333,20.29,47.9,18.6714285714,46.44,5.85,751.65,98,4.5,54.5,5.55,22.7311428403,22.7311428403 -150,0,20.89,45.09,19.6,45.5,21.5,42.5,20,44.03,18.5,52.6685714286,6.6233333333,88.8333333333,18.5,42.1633333333,20.29,47.79,18.64,46.2,5.7666666667,751.7333333333,98.3333333333,4,52.3333333333,5.5,2.098418551,2.098418551 -390,10,20.89,45.09,19.6,45.36,21.39,42.3633333333,20,43.8633333333,18.456,52.514,6.4666666667,88.73,18.5,42.5566666667,20.29,47.8633333333,18.6857142857,46.11,5.6833333333,751.8166666667,98.6666666667,3.5,50.1666666667,5.45,28.0529308598,28.0529308598 -240,0,20.89,45.09,19.5,45.26,21.39,42.29,20,43.6566666667,18.39,52.2542857143,6.26,88.53,18.6333333333,43.5,20.4266666667,48.03,18.6,45.878,5.6,751.9,99,3,48,5.4,6.1525326804,6.1525326804 -240,20,20.9266666667,44.9666666667,19.5,45.295,21.39,42.4,20,43.4666666667,18.412,52.156,6.09,88.3666666667,18.76,43.5666666667,20.5666666667,48.09,18.6714285714,45.79,5.5833333333,752.0333333333,98.8333333333,3,43.3333333333,5.3666666667,45.669304335,45.669304335 -230,40,21,44.8266666667,19.5666666667,45.4666666667,21.4633333333,42.4666666667,20,43.3266666667,18.4528571429,52.1528571429,6.03,88.2266666667,18.89,43.56,20.6333333333,48,18.6,45.554,5.5666666667,752.1666666667,98.6666666667,3,38.6666666667,5.3333333333,4.0871420177,4.0871420177 -240,30,21,44.76,19.6333333333,45.5,21.5,42.5,20,43.3266666667,18.456,52.156,6.03,88.1233333333,18.9633333333,43.36,20.7,48,18.6,45.4271428571,5.55,752.3,98.5,3,34,5.3,42.4303059233,42.4303059233 -240,30,21.0666666667,44.6266666667,19.7,45.4333333333,21.5,42.4333333333,20,43.4,18.4842857143,52.1214285714,6.09,88.1233333333,19,43.2233333333,20.79,47.845,18.6,45.272,5.5333333333,752.4333333333,98.3333333333,3,29.3333333333,5.2666666667,7.9094175482,7.9094175482 -190,20,21.1333333333,44.73,19.73,45.3633333333,21.5,42.4,20.1,43.53,18.5,52.09,6.09,88.06,19.0666666667,43.09,20.89,47.79,18.6,45.2,5.5166666667,752.5666666667,98.1666666667,3,24.6666666667,5.2333333333,10.3619689122,10.3619689122 -100,10,21.26,45.3233333333,19.8566666667,45.29,21.525,42.425,20.1666666667,43.6633333333,18.5,52.13125,6.09,88,19.1,42.6933333333,20.89,47.6566666667,18.6,45.09,5.5,752.7,98,3,20,5.2,45.5616911291,45.5616911291 -120,10,21.5666666667,45.76,19.9266666667,45.73,21.6666666667,42.56,20.2,43.4666666667,18.5,52.2642857143,6.09,88,19.1,42.36,20.89,47.29,18.6,45.0385714286,5.5,752.7166666667,97.5,2.8333333333,20.6666666667,5.1333333333,20.0003406149,20.0003406149 -120,20,21.7,45.9,20.0666666667,45.8633333333,21.79,42.7,20.2,43.3266666667,18.5,52.4,6.09,87.9333333333,19,42,20.9633333333,47.29,18.56,44.98,5.5,752.7333333333,97,2.6666666667,21.3333333333,5.0666666667,1.8939972739,1.8939972739 -110,20,21.7,45.43,20.2,45.6333333333,21.73,42.7,20.1666666667,43.1333333333,18.4685714286,52.3685714286,6.09,87.8666666667,19.0666666667,42.8,21.1333333333,47.26,18.6,44.9971428571,5.5,752.75,96.5,2.5,22,5,1.9710103632,1.9710103632 -120,20,21.7,45.1566666667,20.2,45.3,21.7,42.7666666667,20.1,42.9333333333,18.514,55.52,6.03,87.7266666667,19.3233333333,43.59,21.26,47.1266666667,18.6,45.2,5.5,752.7666666667,96,2.3333333333,22.6666666667,4.9333333333,32.222416834,32.222416834 -160,40,21.6,44.8333333333,20.2,44.9666666667,21.76,42.9,20.1,42.995,19.0114285714,70.41,6,87.8,19.4633333333,43.59,21.39,47.09,18.6,45.1057142857,5.5,752.7833333333,95.5,2.1666666667,23.3333333333,4.8666666667,29.0128669119,29.0128669119 -120,30,21.6,44.595,20.2,44.7666666667,21.79,42.79,20.5233333333,43.4333333333,18.89,73.036,6,87.8,19.5333333333,43.59,21.4633333333,47.1633333333,18.6,45.036,5.5,752.8,95,2,24,4.8,25.8367470233,25.8367470233 -140,30,21.6,44.36,20.2,44.73,21.79,42.79,21.0633333333,43.4333333333,18.8328571429,73.2271428571,6,87.8666666667,19.6666666667,43.59,21.5333333333,47.1633333333,18.6,44.9714285714,5.4666666667,752.8666666667,95.3333333333,1.8333333333,30.8333333333,4.8166666667,38.0181651213,38.0181651213 -110,30,21.7,44.29,20.26,44.8633333333,21.79,42.76,21.6,42.8633333333,18.79,72.538,5.8666666667,87.7633333333,19.7,43.43,21.6,47.03,18.6,44.9,5.4333333333,752.9333333333,95.6666666667,1.6666666667,37.6666666667,4.8333333333,22.3597678123,22.3597678123 -110,30,21.7,44.1566666667,20.23,44.73,21.79,42.7,21.6,42.7966666667,18.79,71.2971428571,5.8,87.69,19.745,42.8425,21.73,46.9666666667,18.5571428571,44.7542857143,5.4,753,96,1.5,44.5,4.85,33.7091506575,33.7091506575 -120,20,21.7,43.9666666667,20.29,44.79,21.7,42.59,21.6,43.03,18.99,75.614,5.8,87.8333333333,19.7,42.36,21.79,46.8266666667,18.6,44.634,5.3666666667,753.0666666667,96.3333333333,1.3333333333,51.3333333333,4.8666666667,24.7219058569,24.7219058569 -310,20,21.7,43.8266666667,20.3233333333,44.59,21.7,42.59,21.5333333333,42.9633333333,20.1971428571,88.61,5.7266666667,87.9,19.6666666667,41.7966666667,21.89,46.6633333333,18.5714285714,44.59,5.3333333333,753.1333333333,96.6666666667,1.1666666667,58.1666666667,4.8833333333,34.0449362411,34.0449362411 -110,30,21.7,43.76,20.39,44.53,21.7,42.56,21.4633333333,42.7233333333,20.656,90.83,5.69,87.9333333333,19.6,41.39,21.89,46.53,18.56,44.5,5.3,753.2,97,1,65,4.9,17.8583935834,17.8583935834 -110,20,21.76,43.6266666667,20.39,44.3633333333,21.6333333333,42.4333333333,21.39,42.8633333333,20.9214285714,87.9114285714,5.69,88,19.6,41.1633333333,22,46.4,18.525,44.4125,5.2666666667,753.25,97,1,57.5,4.85,34.9454409443,34.9454409443 -110,20,21.79,43.56,20.4725,44.2675,21.6,42.4,21.4633333333,43.1,20.456,83.374,5.69,88,19.5333333333,41.03,22,46.4,18.5,44.2928571429,5.2333333333,753.3,97,1,50,4.8,22.9059442878,22.9059442878 -100,30,21.79,43.4333333333,20.5666666667,44.2,21.6,42.4,21.39,42.9,20.2385714286,74.9242857143,5.69,88,19.4633333333,41.03,22,46.6266666667,18.5,44.2,5.2,753.35,97,1,42.5,4.75,41.8723133975,41.8723133975 -70,20,21.79,43.3633333333,20.6,44.06,21.6,42.29,21.39,42.7233333333,20.08,69.174,5.69,88.03,19.39,41.2233333333,22,46.76,18.5428571429,44.2,5.1666666667,753.4,97,1,35,4.7,47.5783675443,47.5783675443 -90,20,21.79,43.29,20.6,43.9333333333,21.6,42.29,21.39,42.59,20,65.7685714286,5.69,88.09,19.39,41.4633333333,22,46.8633333333,18.5,44.09,5.1333333333,753.45,97,1,27.5,4.65,36.1671073479,36.1671073479 -70,20,21.79,43.1633333333,20.6,43.8633333333,21.6,42.2,21.39,42.5,19.89,62.88,5.6233333333,88.03,19.39,41.59,21.9266666667,46.79,18.5,44.0128571429,5.1,753.5,97,1,20,4.6,47.0018106047,47.0018106047 -60,30,21.79,43.09,20.6,43.73,21.6,42.2,21.39,42.4333333333,19.8757142857,60.9571428571,5.6233333333,88.03,19.3566666667,41.59,21.89,47.19,18.5,43.94,5.1,753.5166666667,97,1,20,4.6,4.3084327248,4.3084327248 -70,20,21.79,43.06,20.6,43.7,21.6,42.2,21.39,42.4266666667,19.79,59.354,5.6233333333,88.03,19.29,41.6633333333,21.89,47.5,18.5,43.9,5.1,753.5333333333,97,1,20,4.6,33.5595624754,33.5595624754 -50,20,21.79,43,20.5333333333,43.7,21.5,42.23,21.39,42.8333333333,19.79,58.5228571429,5.6233333333,88.03,19.29,42.03,21.89,47.9,18.5,44,5.1,753.55,97,1,20,4.6,13.0587621126,13.0587621126 -60,20,21.79,43.1266666667,20.5666666667,43.8266666667,21.5,42.29,21.5,43.09,19.754,57.674,5.6233333333,87.9333333333,19.29,42.2966666667,21.79,48.2666666667,18.5,44.14,5.1,753.5666666667,97,1,20,4.6,16.5225759847,16.5225759847 -60,20,21.79,43.2,20.5,43.9,21.5,42.3266666667,21.5,43.1633333333,19.7,57.0685714286,5.64,88,19.29,42.6266666667,21.79,48.4666666667,18.5,44.254,5.1,753.5833333333,97,1,20,4.6,23.8208132912,23.8208132912 -80,20,21.76,43.23,20.4633333333,43.9666666667,21.5,42.4,21.5,43.345,19.68,56.498,5.6233333333,88,19.29,42.76,21.79,48.7666666667,18.5,44.3685714286,5.1,753.6,97,1,20,4.6,44.3417655188,44.3417655188 -90,30,21.745,43.3175,20.39,43.9666666667,21.5,42.4,21.5,43.4333333333,19.6,55.9228571429,5.59,88,19.29,42.79,21.73,48.9666666667,18.5,44.44,4.9833333333,753.65,96.3333333333,1.3333333333,27.5,4.3833333333,43.5455735307,43.5455735307 -70,20,21.7,43.4,20.39,44.09,21.5,42.4,21.5,43.5,19.6,55.41,5.53,87.9333333333,19.29,42.79,21.79,49.09,18.5,44.5128571429,4.8666666667,753.7,95.6666666667,1.6666666667,35,4.1666666667,3.8689403678,3.8689403678 -50,20,21.7,43.4333333333,20.3233333333,44.09,21.5,42.4,21.6,43.59,19.56,54.96,5.4666666667,87.9333333333,19.29,42.79,21.79,49.09,18.5,44.59,4.75,753.75,95,2,42.5,3.95,19.0629875753,19.0629875753 -40,20,21.7,43.5,20.29,44.23,21.5,42.3266666667,21.6,43.59,19.5,54.64,5.3333333333,87.8,19.29,42.79,21.79,49.2,18.5,44.6214285714,4.6333333333,753.8,94.3333333333,2.3333333333,50,3.7333333333,23.8258402911,23.8258402911 -50,20,21.6,43.53,20.29,44.29,21.5,42.3633333333,21.5666666667,43.56,19.5,54.378,4.9933333333,87.5266666667,19.29,42.7,21.79,49.1266666667,18.5,44.736,4.5166666667,753.85,93.6666666667,2.6666666667,57.5,3.5166666667,26.4267813065,26.4267813065 -60,20,21.6,43.59,20.1666666667,44.2,21.4266666667,42.29,21.5666666667,43.56,19.5,53.9971428571,4.66,87.3333333333,19.29,42.86,21.79,49.03,18.5,44.8057142857,4.4,753.9,93,3,65,3.3,29.0360106388,29.0360106388 -60,30,21.6,43.59,20.1666666667,44.2,21.39,42.2,21.6,43.59,19.5,53.754,4.5,87.2633333333,19.29,43.1333333333,21.79,49.03,18.5,44.9,4.3333333333,753.8666666667,92.6666666667,2.6666666667,60.8333333333,3.1833333333,28.2088189851,28.2088189851 -80,20,21.5333333333,43.59,20.1,44.09,21.39,42.26,21.6,43.59,19.4371428571,53.4214285714,4.4333333333,87.19,19.29,43.1566666667,21.79,48.93,18.5,44.9714285714,4.2666666667,753.8333333333,92.3333333333,2.3333333333,56.6666666667,3.0666666667,38.5631192126,38.5631192126 -70,20,21.5,43.59,20.025,44.0225,21.3566666667,42.2,21.6333333333,43.6266666667,19.39,53.116,4.4,87.09,19.29,43.23,21.73,48.73,18.56,45,4.2,753.8,92,2,52.5,2.95,11.9976410642,11.9976410642 -70,20,21.4266666667,43.53,20,43.9333333333,21.3566666667,42.26,21.8266666667,43.5,19.39,52.8971428571,4.4,87.09,19.29,43.09,21.7,48.5,18.5,45.0514285714,4.1333333333,753.7666666667,91.6666666667,1.6666666667,48.3333333333,2.8333333333,17.6413565059,17.6413565059 -70,20,21.39,43.4,19.89,43.9,21.39,42.2,21.89,43.29,19.39,52.7,4.3666666667,87.1233333333,19.29,43.09,21.7,48.4333333333,18.52,45.09,4.0666666667,753.7333333333,91.3333333333,1.3333333333,44.1666666667,2.7166666667,39.8987630499,39.8987630499 -70,30,21.39,43.5266666667,19.89,43.9,21.39,42.2,21.89,43.1566666667,19.39,52.5542857143,4.3666666667,87.2633333333,19.29,43.2,21.6666666667,48.4,18.5714285714,45.1214285714,4,753.7,91,1,40,2.6,49.5656313491,49.5656313491 -60,20,21.39,43.79,19.8566666667,43.93,21.39,42.23,21.89,43.09,19.37,52.374,4.4,87.4,19.29,43.2,21.6,48.4,18.5,45.236,3.9833333333,753.7,91.8333333333,1.1666666667,37.3333333333,2.7166666667,35.3362095775,35.3362095775 -60,10,21.39,43.79,19.79,43.93,21.4633333333,42.3633333333,21.8233333333,42.9633333333,19.29,52.2257142857,4.4,87.4666666667,19.29,43.2,21.6,48.53,18.525,45.29,3.9666666667,753.7,92.6666666667,1.3333333333,34.6666666667,2.8333333333,9.3644338078,9.3644338078 -60,10,21.29,43.7,19.76,44.0666666667,21.55,42.4,21.8566666667,42.96,19.29,52.09,4.4,87.59,19.29,43.2,21.575,48.6175,18.5857142857,45.29,3.95,753.7,93.5,1.5,32,2.95,33.4365950548,33.4365950548 -60,0,21.29,43.76,19.7,44.2,21.6,42.4,21.79,42.5,19.29,51.9557142857,4.4,87.6233333333,19.29,43.09,21.5,48.76,18.56,45.312,3.9333333333,753.7,94.3333333333,1.6666666667,29.3333333333,3.0666666667,7.504164055,7.504164055 -60,0,21.26,43.6633333333,19.7,44.23,21.6,42.4,21.6666666667,42.1933333333,19.29,51.878,4.3333333333,87.6233333333,19.29,43.09,21.5,49.0666666667,18.5285714286,45.4,3.9166666667,753.7,95.1666666667,1.8333333333,26.6666666667,3.1833333333,30.8838727884,30.8838727884 -60,0,21.2,43.59,19.6333333333,44.23,21.6333333333,42.4333333333,21.6,41.9333333333,19.2257142857,51.6471428571,4.3,87.59,19.29,43.09,21.5,49.26,18.54,45.4,3.9,753.7,96,2,24,3.3,49.5526287472,49.5526287472 -50,0,21.2,43.5,19.6,44.29,21.7,42.5,21.5,41.79,19.2,51.5,4.3,87.59,19.29,43.2233333333,21.5,49.53,18.5285714286,45.4142857143,3.8833333333,753.7333333333,96,1.8333333333,24.3333333333,3.2833333333,4.4075561222,4.4075561222 -50,0,21.2,43.5,19.6,44.29,21.7,42.5,21.39,41.7,19.2,51.3985714286,4.19,87.53,19.29,43.29,21.5,49.7966666667,18.56,45.5,3.8666666667,753.7666666667,96,1.6666666667,24.6666666667,3.2666666667,35.6326868059,35.6326868059 -60,0,21.1,43.5,19.5666666667,44.3266666667,21.76,42.5,21.39,41.7,19.2,51.29,4.19,87.59,19.29,43.29,21.5,49.9333333333,18.5285714286,45.5642857143,3.85,753.8,96,1.5,25,3.25,3.6244569812,3.6244569812 -40,0,21.1,43.56,19.5,44.4,21.79,42.5,21.29,41.59,19.2,51.2257142857,4.1566666667,87.59,19.29,43.3266666667,21.4266666667,49.9333333333,18.56,45.59,3.8333333333,753.8333333333,96,1.3333333333,25.3333333333,3.2333333333,16.3910136092,16.3910136092 -30,0,21.1,43.5,19.4633333333,44.4,21.79,42.5,21.23,41.4633333333,19.2,51.09,4.09,87.59,19.29,43.4,21.4266666667,49.9633333333,18.5571428571,45.6971428571,3.8166666667,753.8666666667,96,1.1666666667,25.6666666667,3.2166666667,24.1428283858,24.1428283858 -50,0,21.0666666667,43.4666666667,19.39,44.4,21.7,42.5,21.1,41.4,19.2,51.0385714286,4.09,87.69,19.29,43.4,21.4266666667,50.03,18.56,45.79,3.8,753.9,96,1,26,3.2,8.7522271555,8.7522271555 -40,0,21,43.4,19.39,44.4333333333,21.7,42.5,21.1,41.4666666667,19.16,50.98,4.09,87.69,19.29,43.53,21.4266666667,50.1333333333,18.5571428571,45.8685714286,3.7833333333,753.8666666667,95.8333333333,1.1666666667,26.1666666667,3.15,35.8806441771,35.8806441771 -70,0,21,43.4,19.3233333333,44.5,21.7,42.59,21,41.29,19.1285714286,50.9,4.19,87.69,19.29,43.59,21.5,50.4666666667,18.5,45.9,3.7666666667,753.8333333333,95.6666666667,1.3333333333,26.3333333333,3.1,34.2104535084,34.2104535084 -60,0,21,43.4,19.29,44.5,21.7,42.59,21,41.29,19.1,50.9,4.19,87.69,19.29,43.7,21.39,50.4,18.5571428571,45.9142857143,3.75,753.8,95.5,1.5,26.5,3.05,40.2636809857,40.2636809857 -60,0,21,43.4,19.29,44.5,21.7,42.6266666667,20.89,41.4,19.1,50.80375,4.2633333333,87.7633333333,19.29,43.7,21.4633333333,50.4666666667,18.6,46,3.7333333333,753.7666666667,95.3333333333,1.6666666667,26.6666666667,3,29.6832028893,29.6832028893 -50,0,21,43.4,19.29,44.56,21.7,42.7,20.89,41.4,19.1,50.7385714286,4.2633333333,87.7633333333,19.29,43.7,21.39,50.4,18.6,46,3.7166666667,753.7333333333,95.1666666667,1.8333333333,26.8333333333,2.95,17.8991133813,17.8991133813 -60,0,20.89,43.3633333333,19.2,44.5,21.79,42.59,20.815,41.3175,19.1,50.7,4.3,87.8,19.29,43.6266666667,21.39,50.3266666667,18.6,46,3.7,753.7,95,2,27,2.9,4.5109927072,4.5109927072 -50,0,20.89,43.29,19.2,44.56,21.73,42.6633333333,20.79,41.3633333333,19.1,50.6214285714,4.3,87.8,19.29,43.6633333333,21.39,50.1633333333,18.5571428571,46.0771428571,3.7,753.7,95,2,26.1666666667,2.9,34.2846347368,34.2846347368 -60,0,20.89,43.29,19.2,44.59,21.73,42.6633333333,20.76,41.5,19.1,50.554,4.245,87.745,19.29,43.53,21.39,50.03,18.58,46.112,3.7,753.7,95,2,25.3333333333,2.9,22.8612157982,22.8612157982 -50,0,20.89,43.29,19.2,44.59,21.79,42.6633333333,20.7,41.5,19.0428571429,50.4428571429,4.1566666667,87.7266666667,19.29,43.4333333333,21.39,50,18.5714285714,46.2,3.7,753.7,95,2,24.5,2.9,11.8105600588,11.8105600588 -60,0,20.79,43.2,19.1666666667,44.6266666667,21.79,42.745,20.7,41.5,19.04,50.418,4.09,87.8,19.29,43.5,21.3233333333,50,18.6,46.29,3.7,753.7,95,2,23.6666666667,2.9,35.9137236956,35.9137236956 -70,0,20.79,43.2,19.1,44.7,21.79,42.7,20.6333333333,41.4333333333,19.0428571429,50.3371428571,4.06,87.7633333333,19.29,43.5,21.39,49.95,18.6,46.29,3.7,753.7,95,2,22.8333333333,2.9,6.6206558258,6.6206558258 -60,0,20.79,43.2,19.1,44.7,21.79,42.76,20.6,41.4,19.06,50.356,4,87.69,19.29,43.5,21.39,50.06,18.58,46.356,3.7,753.7,95,2,22,2.9,33.7553030578,33.7553030578 -60,0,20.79,43.2,19.0333333333,44.6266666667,21.79,42.7,20.6,41.4,19,50.29,4,87.69,19.29,43.4333333333,21.39,49.9333333333,18.5714285714,46.4285714286,3.7,753.75,95,2,22.5,2.9,2.3056617007,2.3056617007 -50,0,20.79,43.1633333333,19,44.59,21.79,42.7,20.6,41.45,19,50.29,4,87.69,19.29,43.4333333333,21.3566666667,49.76,18.6,46.536,3.7,753.8,95,2,23,2.9,5.8479881031,5.8479881031 -50,0,20.73,43.09,19,44.53,21.79,42.76,20.5,41.5,19,50.29,3.9333333333,87.69,19.29,43.5,21.29,49.7,18.5625,46.65875,3.7,753.85,95,2,23.5,2.9,47.8998024017,47.8998024017 -60,0,20.7,43.09,19,44.53,21.79,42.7,20.5,41.5,19,50.29,4,87.69,19.29,43.4333333333,21.3233333333,49.76,18.6,46.7514285714,3.7,753.9,95,2,24,2.9,48.7882088171,48.7882088171 -50,0,20.7,43.09,19,44.59,21.79,42.7,20.5,41.5,19,50.29,3.9666666667,87.69,19.29,43.4,21.39,49.6266666667,18.6,46.856,3.7,753.95,95,2,24.5,2.9,22.6167015615,22.6167015615 -60,0,20.7,43.09,18.89,44.5,21.79,42.7,20.4266666667,41.5,19,50.29,3.9,87.7633333333,19.29,43.4,21.3566666667,49.59,18.6,46.9,3.7,754,95,2,25,2.9,7.0477622678,7.0477622678 -40,0,20.7,43.09,18.89,44.5,21.79,42.73,20.39,41.53,19,50.29,3.76,87.6233333333,19.29,43.4,21.29,49.53,18.6,47,3.7333333333,754,95,2,24.1666666667,2.9333333333,46.8684436404,46.8684436404 -40,0,20.7,43.09,18.89,44.5,21.8566666667,42.8633333333,20.39,41.59,19,50.29,3.7,87.7633333333,19.29,43.3633333333,21.29,49.4666666667,18.6,47,3.7666666667,754,95,2,23.3333333333,2.9666666667,28.8446467835,28.8446467835 -40,0,20.6666666667,43.06,18.89,44.5,21.79,42.7,20.39,41.59,19,50.29,3.7,87.8,19.29,43.29,21.29,49.4,18.6,47,3.8,754,95,2,22.5,3,30.2906773752,30.2906773752 -50,0,20.6,43,18.79,44.4,21.79,42.7,20.3233333333,41.59,18.934,50.272,3.76,87.7266666667,19.29,43.2,21.29,49.3633333333,18.6,47.0642857143,3.8333333333,754,95,2,21.6666666667,3.0333333333,43.0634721648,43.0634721648 -50,0,20.6,42.9666666667,18.79,44.4,21.79,42.6633333333,20.29,41.59,18.9214285714,50.2,3.8266666667,87.7266666667,19.29,43.26,21.29,49.29,18.6,47.09,3.8666666667,754,95,2,20.8333333333,3.0666666667,4.6254690387,4.6254690387 -60,0,20.6,42.9666666667,18.79,44.4,21.79,42.6633333333,20.29,41.59,18.956,50.29,3.9,87.8,19.29,43.3633333333,21.29,49.29,18.6142857143,47.1057142857,3.9,754,95,2,20,3.1,26.5687344014,26.5687344014 -40,10,20.6,43.1266666667,18.79,44.5,21.7,42.6,20.29,41.6633333333,18.9371428571,50.29,3.95,87.69,19.29,43.23,21.29,49.43,18.68,47.178,3.8833333333,754.1,95,1.8333333333,27.5,3.1,31.4712498686,31.4712498686 -80,0,20.6,43.26,18.79,44.76,21.6333333333,42.2666666667,20.29,41.59,18.89,50.236,3.79,87.59,19.29,43.29,21.26,49.43,18.6,47.09,3.8666666667,754.2,95,1.6666666667,35,3.1,46.4621975902,46.4621975902 -50,0,20.6,43.4633333333,18.79,45,21.5666666667,42.03,20.2,41.4633333333,18.89,50.2,3.73,87.6566666667,19.29,43.29,21.2,49.23,18.6,47,3.85,754.3,95,1.5,42.5,3.1,39.0869695926,39.0869695926 -50,0,20.6,43.7233333333,18.79,45.06,21.5,42.09,20.2,41.6633333333,18.89,50.09,3.7,87.6233333333,19.29,43.3266666667,21.2,48.9666666667,18.6,46.9142857143,3.8333333333,754.4,95,1.3333333333,50,3.1,49.8339754879,49.8339754879 -50,0,20.6,43.59,18.79,45.29,21.5,42.145,20.2,41.79,18.89,50.01125,3.7,87.69,19.29,43.4,21.1333333333,48.7666666667,18.6,46.878,3.8166666667,754.5,95,1.1666666667,57.5,3.1,36.98759533,36.98759533 -40,10,20.6,43.59,18.79,45.3633333333,21.5,42.09,20.2,41.79,18.89,50.0128571429,3.73,87.69,19.29,43.4333333333,21.1,48.5266666667,18.6,46.79,3.8,754.6,95,1,65,3.1,43.3931879117,43.3931879117 -90,0,20.6,43.59,18.79,45.5,21.4266666667,41.9633333333,20.2,41.86,18.89,50.172,3.79,87.69,19.29,43.6333333333,21.1,48.2675,18.6,46.79,3.8666666667,754.6666666667,95.1666666667,1.1666666667,64.6666666667,3.1833333333,47.1829650691,47.1829650691 -50,0,20.6,43.7233333333,18.79,45.4333333333,21.39,41.8266666667,20.2,41.9333333333,18.89,50.5571428571,3.8266666667,87.6233333333,19.29,43.1233333333,21.1,47.9633333333,18.6,46.7228571429,3.9333333333,754.7333333333,95.3333333333,1.3333333333,64.3333333333,3.2666666667,41.9304620824,41.9304620824 -60,0,20.6,43.9,18.79,45.1633333333,21.39,41.9,20.1,42,18.79,50.79,3.9666666667,87.69,19.23,42.3966666667,20.9633333333,47.5266666667,18.6,46.476,4,754.8,95.5,1.5,64,3.35,37.3714570655,37.3714570655 -60,0,20.6,43.9,18.8566666667,45.09,21.39,41.8266666667,20.1,41.9,18.79,50.9414285714,4.1233333333,87.8666666667,19.2,41.5633333333,20.89,47.1933333333,18.6,46.0957142857,4.0666666667,754.8666666667,95.6666666667,1.6666666667,63.6666666667,3.4333333333,7.6231457293,7.6231457293 -70,0,20.6,43.6333333333,18.79,44.7233333333,21.39,41.9666666667,20.1,41.5666666667,18.79,51.054,4.2633333333,87.8666666667,19.2,41.0966666667,20.89,46.93,18.6,45.754,4.1333333333,754.9333333333,95.8333333333,1.8333333333,63.3333333333,3.5166666667,38.3175779949,38.3175779949 -50,0,20.6,43.32,18.79,44.53,21.39,42,20.1,41.3333333333,18.79,51.09,4.4333333333,87.8333333333,19.1,40.6,20.8233333333,46.5966666667,18.6,45.4214285714,4.2,755,96,2,63,3.6,47.7453903644,47.7453903644 -30,0,20.6,43.1266666667,18.8566666667,44.3333333333,21.39,41.9333333333,20.0333333333,41.1266666667,18.754,51.156,4.56,87.8333333333,19.1,40.1933333333,20.79,46.26,18.58,45.02,4.3833333333,755.0833333333,95,2.3333333333,57,3.6166666667,23.9020672161,23.9020672161 -280,0,20.5666666667,43,18.79,44.1266666667,21.3566666667,41.8633333333,20,40.8633333333,18.7385714286,51.09,4.76,87.8333333333,19.05,39.8,20.79,46.1266666667,18.5,44.5957142857,4.5666666667,755.1666666667,94,2.6666666667,51,3.6333333333,24.1254413151,24.1254413151 -70,0,20.5666666667,42.9333333333,18.8233333333,44,21.29,41.73,20.0666666667,41.1233333333,18.736,51.054,4.9666666667,87.8333333333,19,39.4666666667,20.79,45.8333333333,18.5,44.254,4.75,755.25,93,3,45,3.65,3.6105619627,3.6105619627 -390,0,20.5,42.8266666667,18.89,43.86,21.29,41.56,20.4933333333,41.59,18.7,51.0257142857,5.09,87.8333333333,19,39.3266666667,20.73,45.7,18.5,44.0225,4.9333333333,755.3333333333,92,3.3333333333,39,3.6666666667,32.9351202818,32.9351202818 -80,0,20.5666666667,42.9666666667,18.9266666667,43.7,21.29,41.4333333333,20.8266666667,41.4633333333,18.7,51,5.115,87.7975,19,39.1633333333,20.7,45.4666666667,18.5,43.6785714286,5.1166666667,755.4166666667,91,3.6666666667,33,3.6833333333,8.5915332311,8.5915332311 -250,0,20.6,42.93,19,43.595,21.26,41.29,21.1966666667,41.39,18.7,50.9142857143,5.2633333333,87.7633333333,19,38.9633333333,20.7,45.3266666667,18.5,43.418,5.3,755.5,90,4,27,3.7,27.2930228501,27.2930228501 -220,0,20.6,42.73,19.0666666667,43.5,21.2,41.29,21.6566666667,41.53,18.7,50.9,5.3333333333,87.7633333333,18.89,38.76,20.6666666667,45.06,18.5,43.1942857143,5.4,755.55,88.5,4.1666666667,29.1666666667,3.55,16.0233276663,16.0233276663 -70,0,20.6,42.6633333333,19.1,43.4666666667,21.2,41.2,22.1,40.8333333333,18.7,50.8685714286,5.4666666667,87.69,18.89,38.5666666667,20.6,44.86,18.5,42.96,5.5,755.6,87,4.3333333333,31.3333333333,3.4,21.4994296897,21.4994296897 -80,0,20.5333333333,42.53,19.1,43.4,21.2,41.26,22.0333333333,40.36,18.7,50.79,5.76,87.7266666667,18.89,38.3633333333,20.6,44.6333333333,18.5,42.6914285714,5.6,755.65,85.5,4.5,33.5,3.25,28.3412265009,28.3412265009 -70,0,20.6,42.4,19.1333333333,43.2233333333,21.2,41.3266666667,21.8566666667,40.3633333333,18.7,50.7128571429,5.9666666667,87.7266666667,18.89,38.23,20.5333333333,44.5,18.5,42.516,5.7,755.7,84,4.6666666667,35.6666666667,3.1,49.0657900693,49.0657900693 -70,0,20.6,42.3266666667,19.2,43.03,21.2,41.4,21.79,40.29,18.7,50.634,6.09,87.7633333333,18.89,38.0266666667,20.5,44.26,18.5,42.3214285714,5.8,755.75,82.5,4.8333333333,37.8333333333,2.95,37.0570654166,37.0570654166 -400,0,20.6,42.1633333333,19.2,42.76,21.2,41.29,21.6666666667,40.1633333333,18.6285714286,50.5257142857,6.23,87.69,18.89,37.8266666667,20.5,44.2,18.5,41.96,5.9,755.8,81,5,40,2.8,48.9886088297,48.9886088297 -180,0,20.6,42.09,19.26,42.7,21.2,41.2,21.6,40.09,18.6,50.4,6.4333333333,87.69,18.89,37.76,20.5,44.06,18.5,41.8242857143,6.0166666667,755.8833333333,81,5,38,2.9333333333,38.7209066539,38.7209066539 -60,0,20.6,42.09,19.3233333333,42.6633333333,21.2,41.2,21.6,40,18.6,50.3842857143,6.6266666667,87.69,18.89,37.7,20.5,43.9333333333,18.5,41.678,6.1333333333,755.9666666667,81,5,36,3.0666666667,9.9571151426,9.9571151426 -60,0,20.6,42.03,19.39,42.53,21.1666666667,41.2,21.6,40.06,18.6,50.29,6.7266666667,87.69,18.89,37.7,20.5,43.745,18.5,41.59,6.25,756.05,81,5,34,3.2,9.0600001626,9.0600001626 -60,0,20.7,42.06,19.5,42.4666666667,21.1666666667,41.26,21.5,40.145,18.6285714286,50.2514285714,6.9333333333,87.69,18.89,37.7,20.5,43.6266666667,18.5,41.7,6.3666666667,756.1333333333,81,5,32,3.3333333333,16.814958246,16.814958246 -40,0,20.7,42,19.5666666667,42.3266666667,21.2,41.09,21.5,40.3266666667,18.6,50.2,7.1933333333,87.8666666667,19,37.56,20.5,43.6266666667,18.5,41.7,6.4833333333,756.2166666667,81,5,30,3.4666666667,6.6040007281,6.6040007281 -50,0,20.73,41.9,19.7,42.26,21.2,41.03,21.5,40.4,18.6285714286,50.1371428571,7.5266666667,87.8666666667,19.0666666667,37.5,20.5,43.59,18.5,41.66,6.6,756.3,81,5,28,3.6,24.9991433462,24.9991433462 -40,0,20.79,41.8175,19.7,42.1266666667,21.2,41,21.6,40.4333333333,18.65,50.0675,7.8,87.9333333333,19.1,37.4,20.5,43.53,18.5,41.5,6.65,756.3333333333,80.8333333333,5,27.5,3.6166666667,21.9964831136,21.9964831136 -190,0,20.79,41.73,19.79,41.9,21.2,40.9333333333,21.5333333333,40.4333333333,18.66,50.054,7.9333333333,88,19.1,37.3266666667,20.5,43.3333333333,18.5,41.4,6.7,756.3666666667,80.6666666667,5,27,3.6333333333,5.5201379349,5.5201379349 -50,0,21,43.4666666667,19.79,42.16,21.1333333333,40.79,21.6633333333,40.5,18.6285714286,49.9542857143,8.1,88.2266666667,19.2,37.145,20.5,43.2,18.5,41.4,6.75,756.4,80.5,5,26.5,3.65,22.425813484,22.425813484 -60,0,21,43.8,19.79,42.59,21.2,40.79,22.0633333333,40.5,18.64,50.036,8.0333333333,88.3,19.2,37.06,20.5,43.06,18.5,41.316,6.8,756.4333333333,80.3333333333,5,26,3.6666666667,36.5550278919,36.5550278919 -170,0,21.2,45.5933333333,19.79,42.7966666667,21.2,40.79,22.5,40.0633333333,18.6142857143,49.9842857143,8.05,88.545,19.2,36.9333333333,20.5,43.06,18.5,41.1214285714,6.85,756.4666666667,80.1666666667,5,25.5,3.6833333333,40.2176811709,40.2176811709 -180,0,21.26,44.9266666667,19.89,43.09,21.2,40.79,22.5,39.73,18.6,50,8.16,88.66,19.2,36.8633333333,20.5,42.9,18.5,41,6.9,756.5,80,5,25,3.7,36.1669424688,36.1669424688 -190,0,21.3233333333,44.16,19.89,43.0225,21.2,40.9,22.3566666667,39.56,18.6,50,8.16,88.8,19.2,36.73,20.5,42.9666666667,18.5,40.8385714286,6.7166666667,756.5,80.1666666667,4.6666666667,27.5,3.55,13.1733447779,13.1733447779 -160,0,21.39,43.9,19.89,43.6666666667,21.2,40.9,22.23,39.5,18.6,50.09,8.19,88.9333333333,19.2,36.6633333333,20.5,42.79,18.5,40.616,6.5333333333,756.5,80.3333333333,4.3333333333,30,3.4,45.6193750026,45.6193750026 -180,0,21.4266666667,44.36,19.89,44.83,21.29,41.03,22.1,39.4,18.6,50.2514285714,8.19,89.06,19.2,36.53,20.5,42.79,18.5,40.4714285714,6.35,756.5,80.5,4,32.5,3.25,4.7832779237,4.7832779237 -40,10,21.5,44.6333333333,19.89,45.03,21.29,41.09,22.1,39.4,18.6,50.438,7.73,89.0233333333,19.2,36.3633333333,20.39,42.5266666667,18.5,40.356,6.1666666667,756.5,80.6666666667,3.6666666667,35,3.1,10.0513514597,10.0513514597 -40,10,21.5,44.5266666667,19.89,44.93,21.29,41.2,21.9633333333,39.1333333333,18.6,50.6214285714,6.1233333333,86.83,19.1333333333,36.23,20.39,42.2666666667,18.5,40.23375,5.9833333333,756.5,80.8333333333,3.3333333333,37.5,2.95,6.5870539751,6.5870539751 -70,20,21.5,44.4666666667,19.8233333333,44.53,21.29,41.26,21.89,38.9333333333,18.6,50.7,4.5175,86.475,19.1,35.93,20.39,42.0266666667,18.5,40.1528571429,5.8,756.5,81,3,40,2.8,42.1219730983,42.1219730983 -60,30,21.5,44.1,19.79,44.2233333333,21.2,41.245,21.79,38.9,18.6,50.7771428571,4.2266666667,87.2,19.1,35.79,20.3233333333,41.9,18.5,40.276,6.0666666667,756.5166666667,80.8333333333,3,40,3.0333333333,37.3841432505,37.3841432505 -60,20,21.5,43.6933333333,19.79,43.9633333333,21.2,41.29,21.79,38.9666666667,18.6,50.772,4.43,87.6333333333,19.0666666667,35.76,20.29,41.79,18.5,40.4285714286,6.3333333333,756.5333333333,80.6666666667,3,40,3.2666666667,41.02381923,41.02381923 -60,20,21.4633333333,43.1933333333,19.7,43.6333333333,21.2,41.3633333333,21.79,39,18.6,50.7,5.09,88.09,19,35.76,20.29,41.79,18.5,40.79,6.6,756.55,80.5,3,40,3.5,33.7314980105,33.7314980105 -40,20,21.39,42.9333333333,19.7,43.36,21.1666666667,41.3633333333,21.79,39.1333333333,18.6,50.59,5.6666666667,88.3,19,35.8266666667,20.3233333333,42.2666666667,18.5142857143,40.8528571429,6.8666666667,756.5666666667,80.3333333333,3,40,3.7333333333,22.0857419772,22.0857419772 -50,20,21.39,42.56,19.7,43.06,21.1666666667,41.29,21.79,39.3266666667,18.6,50.4985714286,6.1266666667,88.4333333333,19,35.9,20.365,42.4,18.54,40.92,7.1333333333,756.5833333333,80.1666666667,3,40,3.9666666667,13.4729733691,13.4729733691 -40,30,21.39,42.5,19.7,42.9333333333,21.1666666667,41.29,21.865,39.4975,18.58,50.4,6.2266666667,88.4333333333,19,36,20.3566666667,42.4,18.5428571429,41,7.4,756.6,80,3,40,4.2,5.1797648892,5.1797648892 -60,20,21.39,42.3633333333,19.7,42.76,21.1,41.29,21.89,39.59,18.5714285714,50.3214285714,6.2266666667,88.4333333333,19,35.9333333333,20.3233333333,42.26,18.5,41,7.1666666667,756.7166666667,78.8333333333,3.5,40,3.7333333333,33.8208169094,33.8208169094 -60,20,21.3233333333,42.29,19.7,42.6266666667,21.1,41.23,21.89,39.59,18.56,50.2,5.9666666667,88.3333333333,19,35.76,20.3233333333,42.1266666667,18.5,40.9428571429,6.9333333333,756.8333333333,77.6666666667,4,40,3.2666666667,19.9957962264,19.9957962264 -90,30,21.29,42.09,19.6,42.3633333333,21.1,41.29,21.89,39.53,18.5857142857,50.1371428571,5.8333333333,88.3333333333,19,35.5666666667,20.29,41.8633333333,18.52,40.92,6.7,756.95,76.5,4.5,40,2.8,28.9711215883,28.9711215883 -340,20,21.29,42.1566666667,19.6666666667,42.23,21.1,41.26,22,39.5,18.6,50.016,6.34,88.35,19.1333333333,35.49,20.3566666667,41.5966666667,18.5571428571,41.0642857143,6.4666666667,757.0666666667,75.3333333333,5,40,2.3333333333,47.6118945866,47.6118945866 -220,20,21.3566666667,43.49,19.76,42.3633333333,21.1,41.2,22,39.5,18.6,49.9,6.3266666667,88.3633333333,19.2,35.195,20.39,41.26,18.56,41.2,6.2333333333,757.1833333333,74.1666666667,5.5,40,1.8666666667,17.6139676827,17.6139676827 -70,30,21.39,45.8233333333,19.7,44.03,21.1,41.06,22,39.59,18.6,49.94,5.3266666667,87.8966666667,19.2,35.03,20.39,41.2,18.5142857143,41.0542857143,6,757.3,73,6,40,1.4,38.2474563317,38.2474563317 -60,20,21.39,46.49,19.7,45.4,21.1666666667,41,22,39.53,18.6,50.0514285714,5,87.9,19.2,34.79,20.3566666667,41.06,18.58,40.918,5.8333333333,757.3666666667,74.3333333333,5.3333333333,40,1.4833333333,44.3954520277,44.3954520277 -50,20,21.39,45.6233333333,19.7,45.2666666667,21.2,41.1266666667,22,39.0266666667,18.5875,50.2175,5,87.9,19.2,34.73,20.29,40.9333333333,18.5,40.7642857143,5.6666666667,757.4333333333,75.6666666667,4.6666666667,40,1.5666666667,36.1856190022,36.1856190022 -50,20,21.39,44.9566666667,19.6,44.595,21.2,41.2,21.9266666667,38.8266666667,18.56,50.312,4.9666666667,87.9,19.1666666667,34.59,20.3233333333,40.79,18.5,40.656,5.5,757.5,77,4,40,1.65,42.6654468407,42.6654468407 -50,30,21.29,44.0633333333,19.6,44.1,21.2,41.29,21.89,38.56,18.5714285714,50.4,4.8333333333,87.8333333333,19.1,34.59,20.3233333333,40.73,18.5,40.4985714286,5.3333333333,757.5666666667,78.3333333333,3.3333333333,40,1.7333333333,0.0978477299,0.0978477299 -50,10,21.29,43.53,19.5333333333,43.7666666667,21.2,41.29,21.8233333333,38.36,18.56,50.356,4.6566666667,87.73,19.1,34.59,20.29,40.59,18.5,40.378,5.1666666667,757.6333333333,79.6666666667,2.6666666667,40,1.8166666667,15.0724436389,15.0724436389 -60,10,21.2,42.93,19.5,43.3333333333,21.1666666667,41.29,21.79,38.2,18.5,50.29,4.53,87.6566666667,19.0333333333,34.53,20.23,40.4633333333,18.5,40.2257142857,5,757.7,81,2,40,1.9,25.3213630407,25.3213630407 -50,0,21.2,42.53,19.4266666667,43,21.1,41.29,21.73,38.2,18.5,50.214,4.3,87.53,19,34.5,20.2,40.3633333333,18.5,40.09,5.0166666667,757.8333333333,81.6666666667,2,40,2.05,19.565056276,19.565056276 -50,10,21.1666666667,42.1333333333,19.39,42.6333333333,21.1,41.29,21.6666666667,38.0266666667,18.5285714286,50.0642857143,4.3666666667,87.59,19,34.5,20.2,40.29,18.4842857143,40.0242857143,5.0333333333,757.9666666667,82.3333333333,2,40,2.2,36.5313258138,36.5313258138 -40,20,21.1,41.9333333333,19.39,42.4333333333,21.1,41.1333333333,21.6,38.0266666667,18.5,49.9,4.53,87.69,19,34.5,20.2,40.29,18.434,39.878,5.05,758.1,83,2,40,2.35,10.2831568103,10.2831568103 -40,30,21.1,41.9,19.3566666667,42.1333333333,21.1,41,21.6,38.1566666667,18.5,49.77,4.59,87.69,19,34.5,20.2,40.29,18.4214285714,39.8214285714,5.0666666667,758.2333333333,83.6666666667,2,40,2.5,6.4074538532,6.4074538532 -80,20,21.0333333333,41.0333333333,19.23,41.3933333333,21,40.4233333333,21.6,38.3633333333,18.5,49.6214285714,4.5266666667,87.7633333333,18.89,34.59,20.1333333333,40.3266666667,18.39,39.754,5.0833333333,758.3666666667,84.3333333333,2,40,2.65,6.1939492356,6.1939492356 -280,20,21,40.4,19.1,41.06,21,40.09,21.6,38.53,18.5,49.4,4.26,87.5633333333,18.89,34.6633333333,20.2,40.6,18.39,39.7,5.1,758.5,85,2,40,2.8,15.850946866,15.850946866 -390,20,21,40.4,19.1,41.06,20.89,40.23,21.6,38.695,18.5,49.2071428571,3.9666666667,87.2633333333,18.89,34.7,20.2,40.995,18.39,39.7,4.9166666667,758.6,85.1666666667,1.8333333333,40,2.65,27.2863374907,27.2863374907 -290,20,21,40.5666666667,19.1333333333,41.1266666667,20.89,40.3633333333,21.6,38.8633333333,18.478,49.096,3.8266666667,87.19,18.89,34.7,20.3233333333,41.3266666667,18.39,39.634,4.7333333333,758.7,85.3333333333,1.6666666667,40,2.5,31.1943341978,31.1943341978 -300,30,21,40.8333333333,19.2,41.2,20.9633333333,40.3333333333,21.6333333333,38.9633333333,18.4214285714,48.8528571429,3.79,87.19,18.8566666667,34.79,20.4633333333,41.4666666667,18.39,39.59,4.55,758.8,85.5,1.5,40,2.35,20.2991528204,20.2991528204 -210,10,21,41.212,19.2,41.2,20.9633333333,40.26,21.7,39.09,18.5,48.79,3.6633333333,87.23,18.79,34.79,20.6333333333,41.6266666667,18.39,39.7,4.3666666667,758.9,85.6666666667,1.3333333333,40,2.2,28.2545841997,28.2545841997 -90,0,21.1,41.845,19.26,41.46,21,40.23,21.6666666667,38.99,18.5,48.79,3.39,86.8233333333,18.79,34.9,20.7,41.5,18.3757142857,39.6371428571,4.1833333333,759,85.8333333333,1.1666666667,40,2.05,7.6690472546,7.6690472546 -110,10,21.2,42.3633333333,19.3233333333,42.1933333333,21.0666666667,40.3633333333,21.6,38.79,18.456,48.812,2.9,85.9933333333,18.79,34.95,20.73,41.3266666667,18.33,39.59,4,759.1,86,1,40,1.9,41.5441235295,41.5441235295 -110,10,21.2,42.2666666667,19.39,42.4666666667,21.0333333333,40.3266666667,21.5,38.56,18.4528571429,48.8814285714,2.5666666667,85.6,18.79,34.9,20.79,41.4666666667,18.29,39.59,3.8666666667,759.2,87.1666666667,1,40,1.95,10.4983501253,10.4983501253 -120,10,21.2,41.86,19.4266666667,42.6266666667,21.1,40.4,21.4266666667,38.4333333333,18.5,49,2.2233333333,84.9566666667,18.79,34.8633333333,20.8233333333,41.53,18.29,39.59,3.7333333333,759.3,88.3333333333,1,40,2,22.3924778169,22.3924778169 -130,20,21.23,41.59,19.5,42.6266666667,21.1,40.5,21.39,38.29,18.4057142857,48.9714285714,2.03,84.7633333333,18.79,34.79,20.9633333333,41.53,18.29,39.5771428571,3.6,759.4,89.5,1,40,2.05,37.3469149927,37.3469149927 -120,0,21.29,41.4633333333,19.55,42.4,21.1,40.5,21.39,38.3633333333,18.434,49.036,2.1566666667,85.6,18.7,34.79,21.0333333333,41.53,18.29,39.5,3.4666666667,759.5,90.6666666667,1,40,2.1,24.067570176,24.067570176 -80,0,21.29,41.26,19.6,42.1633333333,21.1,40.5,21.39,38.3333333333,18.39,49,2.43,86.2,18.7,34.8633333333,21.1666666667,41.53,18.29,39.4714285714,3.3333333333,759.6,91.8333333333,1,40,2.15,17.1957930201,17.1957930201 -90,0,21.29,41.1266666667,19.6666666667,42.09,21.1,40.5,21.3233333333,38.1266666667,18.39,48.9,2.6266666667,86.4633333333,18.7,34.79,21.2,41.3333333333,18.29,39.5,3.2,759.7,93,1,40,2.2,43.0249489378,43.0249489378 -90,0,21.39,41,19.79,42.09,21.1333333333,40.4666666667,21.26,38.0266666667,18.39,48.9,2.7,86.59,18.7,34.79,21.1333333333,41.1266666667,18.29,39.5,3.15,759.75,92.5,1,40,2.0666666667,49.7914719977,49.7914719977 -240,20,21.39,40.9333333333,19.8566666667,42.09,21.2,40.3266666667,21.2,37.9,18.39,48.9,2.56,86.33,18.7,34.79,20.9633333333,40.8333333333,18.29,39.44,3.1,759.8,92,1,40,1.9333333333,26.1183320894,26.1183320894 -90,10,21.5,42.6666666667,19.9266666667,42.03,21.245,40.345,21.2,38.2,18.39,48.9,2.36,85.93,18.7,34.79,20.89,40.6266666667,18.29,39.4,3.05,759.85,91.5,1,40,1.8,32.3189695366,32.3189695366 -80,30,21.5666666667,42.8,20,42.2233333333,21.29,40.6266666667,21.2,38.26,18.39,48.9,1.93,85.06,18.7,34.79,20.8566666667,40.43,18.29,39.4,3,759.9,91,1,40,1.6666666667,4.9994996749,4.9994996749 -90,20,21.6,42.29,20.0333333333,42.4333333333,21.29,40.7,21.2,38.5966666667,18.39,49,1.6633333333,84.6,18.7,34.93,20.79,40.23,18.2642857143,39.3685714286,2.95,759.95,90.5,1,40,1.5333333333,2.6847002679,2.6847002679 -90,20,21.6666666667,42.0966666667,20.1,42.36,21.26,40.56,21.2,38.8633333333,18.4057142857,50.2385714286,1.3266666667,84.09,18.73,35.0666666667,20.7,40.1633333333,18.272,39.316,2.9,760,90,1,40,1.4,9.272597963,9.272597963 -110,20,21.7,41.6,20.1333333333,42.06,21.2,40.56,21.2,38.8333333333,19.138,72.2,1.125,84.1675,18.8566666667,35.3333333333,20.7,40.1633333333,18.2385714286,39.2,2.75,760.05,90.3333333333,1,37.6666666667,1.3,19.8774511809,19.8774511809 -90,10,21.7,41.3266666667,20.2,41.86,21.26,40.6633333333,21.2,38.645,20.55,86.8214285714,1.0333333333,84.3333333333,18.9266666667,35.4333333333,20.6666666667,40.23,18.2,39.2,2.6,760.1,90.6666666667,1,35.3333333333,1.2,39.0182226663,39.0182226663 -80,10,21.73,40.93,20.2,41.59,21.2,40.59,21.2,38.7,21.84,86.3,0.8,83.975,19,35.56,20.675,40.6225,18.2,39.1371428571,2.45,760.15,91,1,33,1.1,3.7901573814,3.7901573814 -90,0,21.79,40.73,20.26,41.59,21.2,40.4666666667,21.1,38.43,21.0214285714,89.65,0.6333333333,83.76,19.0333333333,35.6266666667,20.7,41.66,18.2,39.09,2.3,760.2,91.3333333333,1,30.6666666667,1,38.928523846,38.928523846 -90,0,21.79,40.56,20.29,41.3633333333,21.2,40.3266666667,21.1,38.23,20.498,91.956,0.4666666667,83.7266666667,19.1,35.6266666667,20.7,42.4266666667,18.2,39.0642857143,2.15,760.25,91.6666666667,1,28.3333333333,0.9,9.431599977,9.431599977 -80,0,21.79,40.36,20.29,41.23,21.2,40.4333333333,21,37.9666666667,20.1971428571,93.0957142857,0.4,83.8,19.0666666667,35.59,20.7,42.9,18.2,39,2,760.3,92,1,26,0.8,37.9170188098,37.9170188098 -50,10,21.79,40.1,20.29,41,21.2,40.36,21,37.8266666667,20,93.554,0.4,84.03,19,35.59,20.73,43.09,18.2,38.9142857143,1.7166666667,760.3,92.8333333333,1.1666666667,25.5,0.65,32.1441209526,32.1441209526 -50,0,21.79,39.9666666667,20.29,40.9333333333,21.2,40.23,20.89,37.9,19.8485714286,93.0142857143,0.3333333333,84.09,19,35.7233333333,20.73,43.2966666667,18.2,38.8725,1.4333333333,760.3,93.6666666667,1.3333333333,25,0.5,35.2508531767,35.2508531767 -50,0,21.79,40.0266666667,20.26,40.8633333333,21.1333333333,40.29,20.89,38.0266666667,19.772,91.96,0.1666666667,83.9666666667,19.0333333333,36.0666666667,20.7,43.8,18.2,38.978,1.15,760.3,94.5,1.5,24.5,0.35,43.5512005119,43.5512005119 -50,0,21.79,40.1933333333,20.2,40.79,21.1,40.3266666667,20.79,38.03,19.7,90.5928571429,0.1,83.9666666667,19.1,36.5266666667,20.76,44.1933333333,18.2,39.1471428571,0.8666666667,760.3,95.3333333333,1.6666666667,24,0.2,43.5520946747,43.5520946747 -50,0,21.79,40.6,20.15,40.845,21.0333333333,40.3266666667,20.79,38.09,19.7,89.14,0.1333333333,84.1233333333,19.1,36.86,20.79,44.4633333333,18.2,39.58,0.5833333333,760.3,96.1666666667,1.8333333333,23.5,0.05,6.016470585,6.016470585 -60,0,21.76,40.9333333333,20,40.8266666667,21,40.4,20.79,38.1266666667,19.6428571429,87.9528571429,0.1333333333,84.0633333333,19.1,37,20.79,44.7233333333,18.2,39.8542857143,0.3,760.3,97,2,23,-0.1,16.5278397151,16.5278397151 -60,0,21.7,41,19.9266666667,40.9666666667,21,40.4,20.73,38.2,19.54,86.48,0.0333333333,83.9933333333,19,37,20.79,45.03,18.2,40.076,0.2666666667,760.35,97,2,22.5,-0.1333333333,48.4862680431,48.4862680431 -50,0,21.7,41.03,19.8566666667,40.9666666667,21,40.5,20.7,38.23,19.4685714286,84.7971428571,-0.1,83.9333333333,19,37,20.79,45.1633333333,18.2,40.2957142857,0.2333333333,760.4,97,2,22,-0.1666666667,45.979488967,45.979488967 -50,0,21.7,41.09,19.79,41.0266666667,21,40.5,20.7,38.3633333333,19.39,83.034,-0.2333333333,83.7633333333,19,37.03,20.79,45.4633333333,18.2,40.536,0.2,760.45,97,2,21.5,-0.2,1.1718457798,1.1718457798 -40,0,21.6,40.9666666667,19.7,41.09,21,40.5,20.6666666667,38.4,19.39,81.9228571429,-0.3666666667,83.4966666667,19,37.09,20.79,45.7233333333,18.2,40.6971428571,0.1666666667,760.5,97,2,21,-0.2333333333,4.5183000504,4.5183000504 -50,0,21.6,40.9,19.6333333333,41.09,21,40.4,20.6666666667,38.4666666667,19.33,80.61,-0.5,83.65,19,37.23,20.79,45.79,18.2,40.832,0.1333333333,760.55,97,2,20.5,-0.2666666667,38.3971669362,38.3971669362 -50,0,21.5666666667,40.79,19.6,41.09,21,40.4,20.6,38.4,19.29,79.2685714286,-0.4666666667,84.0633333333,19,37.29,20.73,45.79,18.2257142857,41.0571428571,0.1,760.6,97,2,20,-0.3,38.8786965865,38.8786965865 -50,0,21.5,40.73,19.5333333333,41.09,20.9633333333,40.4,20.6,38.4666666667,19.2,77.534,-0.4,84.1233333333,19,37.4,20.7,45.79,18.2,41.2,0.2166666667,760.6166666667,96.8333333333,1.8333333333,27.1666666667,-0.2166666667,48.9116830751,48.9116830751 -50,0,21.5,40.7,19.5,41.1266666667,20.9633333333,40.4,20.5666666667,38.53,19.2,76.3842857143,-0.5,84.2266666667,19,37.5266666667,20.7,45.79,18.2,41.3542857143,0.3333333333,760.6333333333,96.6666666667,1.6666666667,34.3333333333,-0.1333333333,17.3117228202,17.3117228202 -50,0,21.4266666667,40.5666666667,19.4266666667,41.1266666667,20.9266666667,40.5,20.5,38.53,19.2,75.316,-0.4333333333,84.56,19,37.59,20.6666666667,45.8266666667,18.254,41.576,0.45,760.65,96.5,1.5,41.5,-0.05,39.6275366889,39.6275366889 -50,0,21.39,40.5,19.3566666667,41.1633333333,21,40.5,20.5,38.545,19.1285714286,74.4542857143,-0.0666666667,85.1566666667,19,37.6633333333,20.6666666667,46.0266666667,18.2642857143,41.7,0.5666666667,760.6666666667,96.3333333333,1.3333333333,48.6666666667,0.0333333333,38.0057721399,38.0057721399 -50,0,21.39,40.5,19.29,41.1633333333,21,40.53,20.5,38.53,19.1,73.39,-0.0666666667,85.03,19,37.9633333333,20.6,46,18.254,42,0.6833333333,760.6833333333,96.1666666667,1.1666666667,55.8333333333,0.1166666667,46.5143842506,46.5143842506 -50,0,21.29,40.4,19.26,41.1633333333,21,40.53,20.4266666667,38.53,19.0375,72.59625,-0.2333333333,84.8,19,38.1633333333,20.6,46.1266666667,18.2385714286,42.2,0.8,760.7,96,1,63,0.2,22.6885690587,22.6885690587 -40,0,21.29,40.4,19.2,41.03,21,40.5,20.39,38.5,19,71.7657142857,-0.3,84.8,19,38.36,20.6,46.2,18.29,42.478,0.6166666667,760.6833333333,96.3333333333,1,61.3333333333,0.0666666667,11.014225462,11.014225462 -40,0,21.2,40.26,19.2,41.09,21,40.56,20.39,38.56,18.978,71.214,-0.3333333333,84.73,19,38.5675,20.6,46.4333333333,18.2642857143,42.59,0.4333333333,760.6666666667,96.6666666667,1,59.6666666667,-0.0666666667,15.7558434294,15.7558434294 -50,0,21.175,40.1725,19.1333333333,41.09,21,40.56,20.39,38.53,18.89,70.4971428571,-0.4666666667,84.3966666667,19,38.6633333333,20.6,46.5,18.254,42.754,0.25,760.65,97,1,58,-0.2,0.6589344121,0.6589344121 -50,0,21.1,40.09,19.0666666667,41.09,21,40.5,20.39,38.53,18.89,69.716,-0.5333333333,84.06,19.0666666667,38.76,20.6,46.59,18.2771428571,42.9285714286,0.0666666667,760.6333333333,97.3333333333,1,56.3333333333,-0.3333333333,25.973827776,25.973827776 -50,0,21.1,40.09,19,41.09,21,40.6633333333,20.29,38.5,18.8328571429,69.0257142857,-0.6666666667,83.4666666667,19,38.76,20.6,46.7233333333,18.29,43.054,-0.1166666667,760.6166666667,97.6666666667,1,54.6666666667,-0.4666666667,4.5858546742,4.5858546742 -50,0,21.1,40.03,18.945,41.09,21,40.53,20.29,38.5,18.79,68.336,-0.8333333333,82.7633333333,19.0666666667,38.9333333333,20.5666666667,46.7,18.29,43.1685714286,-0.3,760.6,98,1,53,-0.6,31.1107428512,31.1107428512 -30,0,21,39.9,18.89,41.09,21,40.4666666667,20.29,38.4333333333,18.79,67.7971428571,-1.0333333333,82.4966666667,19,39,20.5,46.76,18.29,43.2,-0.45,760.5666666667,98,1.1666666667,54.3333333333,-0.75,33.4682553657,33.4682553657 -50,0,21,39.9,18.89,41.09,20.9266666667,40.3266666667,20.29,38.4333333333,18.754,67.114,-1.1333333333,82.4,19,39,20.5,46.76,18.29,43.2928571429,-0.6,760.5333333333,98,1.3333333333,55.6666666667,-0.9,24.9118304695,24.9118304695 -40,0,20.9633333333,39.79,18.79,41,21,40.3266666667,20.2,38.4,18.7,66.4071428571,-1.2,82.7,19,39,20.5,46.6266666667,18.29,43.4,-0.75,760.5,98,1.5,57,-1.05,12.8512892989,12.8512892989 -50,0,20.89,39.79,18.79,41,21,40.3266666667,20.2,38.4,18.7,65.614,-1.2,82.9333333333,19,38.9,20.5,46.59,18.29,43.46,-0.9,760.4666666667,98,1.6666666667,58.3333333333,-1.2,21.125129296,21.125129296 -40,0,20.8233333333,39.73,18.76,40.9666666667,20.945,40.4,20.2,38.4,18.7,64.8657142857,-1.29,82.9933333333,19,38.9,20.5,46.59,18.29,43.5,-1.05,760.4333333333,98,1.8333333333,59.6666666667,-1.35,43.3220210485,43.3220210485 -50,0,20.8233333333,39.73,18.7,40.9666666667,21,40.4333333333,20.2,38.4,18.7,64.014,-1.3566666667,82.66,19.1,39.06,20.5,46.59,18.29,43.59,-1.2,760.4,98,2,61,-1.5,9.3360207509,9.3360207509 -50,0,20.79,39.7,18.7,41,21.0666666667,40.56,20.2,38.29,18.6142857143,63.4214285714,-1.4266666667,82.53,19.0333333333,38.9333333333,20.4266666667,46.4633333333,18.29,43.6528571429,-1.1166666667,760.3833333333,98.1666666667,1.8333333333,57.6666666667,-1.4,23.8108690595,23.8108690595 -60,0,20.73,39.7,18.6333333333,40.9333333333,21.1,40.56,20.2,38.29,18.64,62.918,-1.5,82.4633333333,19,38.9,20.39,46.5,18.29,43.718,-1.0333333333,760.3666666667,98.3333333333,1.6666666667,54.3333333333,-1.3,44.2249924643,44.2249924643 -50,0,20.7,39.7,18.5666666667,40.8266666667,21.1,40.5,20.1666666667,38.29,18.6,62.4228571429,-1.6,82.1233333333,19,38.9,20.39,46.4333333333,18.29,43.8214285714,-0.95,760.35,98.5,1.5,51,-1.2,39.8936267826,39.8936267826 -50,0,20.7,39.7,18.5666666667,40.9,21.1,40.4333333333,20.1,38.43,18.6,61.916,-1.6666666667,81.9966666667,19.0333333333,38.9633333333,20.39,46.3633333333,18.29,43.9,-0.8666666667,760.3333333333,98.6666666667,1.3333333333,47.6666666667,-1.1,25.9287014487,25.9287014487 -40,0,20.7,39.59,18.5,40.9,21.1,40.5,20.1,38.745,18.6,61.5257142857,-1.8266666667,81.6566666667,19.0333333333,39.03,20.39,46.29,18.29,43.9571428571,-0.7833333333,760.3166666667,98.8333333333,1.1666666667,44.3333333333,-1,28.0281585874,28.0281585874 -50,0,20.7,39.6633333333,18.5,40.9666666667,21.1,40.59,20.0666666667,38.8333333333,18.6,61.245,-1.856,81.734,19,38.754,20.39,46.2,18.29,44,-0.7,760.3,99,1,41,-0.9,30.1615265082,30.1615265082 -40,0,20.6,39.7,18.39,40.9666666667,21.1,40.59,20.0666666667,38.7,18.6,60.93,-1.9,81.65,19,38.7,20.39,46.09,18.29,44,-0.85,760.25,98.5,1,39.6666666667,-1.1166666667,28.1059302972,28.1059302972 -60,0,20.6,39.7,18.39,40.9,21.1,40.59,20,38.5,18.6,60.6566666667,-1.8266666667,81.8966666667,19,38.718,20.39,46.03,18.29,44.0771428571,-1,760.2,98,1,38.3333333333,-1.3333333333,45.4913888942,45.4913888942 -50,0,20.6,39.7,18.39,40.9,21.1,40.59,20,38.5,18.6,60.3333333333,-1.8266666667,81.8666666667,19,38.79,20.39,45.9,18.29,44.09,-1.15,760.15,97.5,1,37,-1.55,42.805229628,42.805229628 -50,0,20.575,39.7,18.3233333333,40.9,21.2,40.59,20,38.4666666667,18.6,60.0666666667,-1.8266666667,81.9333333333,19,38.83125,20.39,45.8266666667,18.29,44.09,-1.3,760.1,97,1,35.6666666667,-1.7666666667,47.7787773358,47.7787773358 -50,0,20.5,39.7,18.29,41,21.2,40.59,20,38.4,18.5,59.76,-1.8633333333,81.9,19,39,20.29,45.79,18.29,44.09,-1.45,760.05,96.5,1,34.3333333333,-1.9833333333,14.1359128058,14.1359128058 -50,0,20.5,39.6633333333,18.29,41,21.2,40.53,19.9633333333,38.4,18.5,59.595,-1.8633333333,81.76,19,38.9857142857,20.3566666667,45.79,18.29,44.1371428571,-1.6,760,96,1,33,-2.2,46.9792268705,46.9792268705 -40,0,20.5,39.59,18.245,41,21.2,40.59,19.89,38.4,18.5,59.36,-2,81.595,19,38.9,20.29,45.79,18.29,44.09,-1.5,760,96.3333333333,1.1666666667,33.6666666667,-2.05,30.2055634675,30.2055634675 -50,0,20.39,39.56,18.2,41,21.2,40.59,19.89,38.4,18.5,59.1633333333,-2,81.69,19,38.9285714286,20.29,45.79,18.29,44.1214285714,-1.4,760,96.6666666667,1.3333333333,34.3333333333,-1.9,18.6805190169,18.6805190169 -40,0,20.39,39.56,18.2,41,21.2,40.59,19.89,38.4,18.4266666667,58.9633333333,-2,81.83,19,38.9,20.29,45.79,18.29,44.2,-1.3,760,97,1.5,35,-1.75,27.550676174,27.550676174 -50,0,20.39,39.5,18.2,41.03,21.2,40.6633333333,19.8566666667,38.3633333333,18.5,58.8633333333,-2.03,81.76,19,38.9,20.23,45.73,18.29,44.2514285714,-1.2,760,97.3333333333,1.6666666667,35.6666666667,-1.6,37.3029967188,37.3029967188 -40,0,20.39,39.5,18.1333333333,41.09,21.2,40.59,19.8566666667,38.29,18.5,58.73,-2.09,81.9,19,38.9,20.2,45.6266666667,18.272,44.272,-1.1,760,97.6666666667,1.8333333333,36.3333333333,-1.45,29.6310571139,29.6310571139 -40,0,20.3233333333,39.5,18.1,41.09,21.2,40.645,19.79,38.2,18.4633333333,58.43,-2,81.9,19,38.9,20.2,45.7,18.2642857143,44.3428571429,-1,760,98,2,37,-1.3,47.4734817399,47.4734817399 -30,0,20.3233333333,39.5,18.0333333333,41.03,21.2,40.59,19.79,38.2,18.39,58.23,-2,81.6933333333,19,38.9,20.2,45.7,18.29,44.4,-1.25,759.9666666667,97.3333333333,1.8333333333,37.1666666667,-1.6333333333,4.9290623749,4.9290623749 -30,0,20.29,39.4333333333,18.0666666667,41.2,21.2,40.59,19.79,38.2,18.39,58.06,-2.23,81.06,19,38.9571428571,20.2,45.7,18.29,44.4,-1.5,759.9333333333,96.6666666667,1.6666666667,37.3333333333,-1.9666666667,4.6855294495,4.6855294495 -40,0,20.29,39.4333333333,18,41.2,21.1,40.7,19.79,38.2,18.39,57.9333333333,-2.29,81.06,19,39,20.2,45.7,18.245,44.345,-1.75,759.9,96,1.5,37.5,-2.3,14.5483047003,14.5483047003 -50,0,20.23,39.3266666667,18,41.23,21.1,40.76,19.76,38.23,18.39,57.76,-2.4,80.8,19,39,20.2,45.6266666667,18.218,44.312,-2,759.8666666667,95.3333333333,1.3333333333,37.6666666667,-2.6333333333,4.3067916646,4.3067916646 -40,10,20.23,39.3266666667,18,41.23,21.1,40.79,19.7,38.29,18.39,57.6266666667,-2.3266666667,81.1333333333,19,39.09,20.2,45.59,18.2514285714,44.3528571429,-2.25,759.8333333333,94.6666666667,1.1666666667,37.8333333333,-2.9666666667,16.6497731116,16.6497731116 -70,0,20.2,39.29,17.9633333333,41.29,21.1,40.79,19.7,38.245,18.3566666667,57.56,-2.29,81.2266666667,19,39.1057142857,20.2,45.6633333333,18.236,44.476,-2.5,759.8,94,1,38,-3.3,27.4544041022,27.4544041022 -90,0,20.2,39.43,17.89,41.29,21,40.6633333333,19.7,38.2,18.29,57.36,-2.3633333333,81.1,19,39.36,20.2,45.8266666667,18.29,44.4985714286,-2.55,759.8166666667,94.6666666667,1,39.3333333333,-3.2666666667,13.3432447561,13.3432447561 -50,0,20.2,39.6266666667,17.8566666667,41.53,21,40.59,19.7,38.2,18.29,57.2,-2.4,81.16,19,39.3685714286,20.15,45.7675,18.29,44.4,-2.6,759.8333333333,95.3333333333,1,40.6666666667,-3.2333333333,13.8457563124,13.8457563124 -60,10,20.2,39.9,17.8566666667,41.7966666667,21,40.43,19.7,38.1633333333,18.29,57.2,-2.4666666667,80.9666666667,19,39.014,20.2,45.53,18.29,44.4,-2.65,759.85,96,1,42,-3.2,16.2108911551,16.2108911551 -40,0,20.2,40.03,17.8566666667,42.09,20.9266666667,40.23,19.7,38.09,18.29,57.06,-2.545,80.595,18.9842857143,38.77,20.1,45.29,18.29,44.254,-2.7,759.8666666667,96.6666666667,1,43.3333333333,-3.1666666667,49.2644835496,49.2644835496 -80,0,20.2,40.09,17.79,42.2233333333,20.89,40.0266666667,19.6,37.9666666667,18.29,56.7266666667,-2.59,80.4633333333,18.89,38.436,20.1,45.23,18.2128571429,44.04,-2.75,759.8833333333,97.3333333333,1,44.6666666667,-3.1333333333,41.9664172106,41.9664172106 -50,0,20.15,40.745,17.8233333333,42.23,20.8233333333,39.7666666667,19.6,37.8266666667,18.29,56.6333333333,-2.53,80.8633333333,18.8185714286,37.6528571429,20.0666666667,44.99,18.2,43.776,-2.8,759.9,98,1,46,-3.1,44.7459916933,44.7459916933 -40,0,20.2,40.2966666667,17.89,42.23,20.76,39.56,19.6,37.5266666667,18.29,56.225,-2.3633333333,81.2266666667,18.754,36.82,20,44.5966666667,18.2,43.3971428571,-2.4333333333,759.9166666667,98.3333333333,1,44.1666666667,-2.6833333333,38.2781723747,38.2781723747 -40,0,20.2,40.03,17.89,41.895,20.76,39.4333333333,19.6,37.3266666667,18.29,55.8,-2.23,81.56,18.7,36.3285714286,20,44.1,18.2,42.916,-2.0666666667,759.9333333333,98.6666666667,1,42.3333333333,-2.2666666667,0.1859011245,0.1859011245 -40,0,20.2,39.76,17.89,41.56,20.7,39.4,19.5666666667,37.06,18.23,55.0666666667,-2.1633333333,81.4966666667,18.68,35.86,19.9266666667,43.7666666667,18.1285714286,42.4342857143,-1.7,759.95,99,1,40.5,-1.85,25.9090460371,25.9090460371 -40,10,20.1333333333,39.6266666667,17.89,41.36,20.7,39.3266666667,19.5,36.9333333333,18.3566666667,53.9933333333,-2.03,81.83,18.6,35.3971428571,19.89,43.4,18.18,42.02,-1.3333333333,759.9666666667,99.3333333333,1,38.6666666667,-1.4333333333,2.3929258808,2.3929258808 -40,0,20.1,39.4666666667,17.9266666667,41.06,20.7,39.2233333333,19.5,36.76,18.4266666667,52.4966666667,-1.76,82.3666666667,18.6,35.12,19.89,43.0666666667,18.1428571429,41.5285714286,-0.9666666667,759.9833333333,99.6666666667,1,36.8333333333,-1.0166666667,25.7959388313,25.7959388313 -70,0,20.1,39.3266666667,18,40.86,20.6333333333,39.03,19.5,36.6266666667,18.5,51.5566666667,-1.4933333333,82.8333333333,18.6,34.84625,19.89,42.7233333333,18.1,41.014,-0.6,760,100,1,35,-0.6,40.0119796628,40.0119796628 -90,10,20.1,39.1633333333,18,40.56,20.6,38.845,19.5,36.4666666667,18.4633333333,51.1666666667,-1.1333333333,83.4666666667,18.6571428571,35.9828571429,19.8233333333,42.4633333333,18.1571428571,40.4914285714,-0.2333333333,759.9333333333,98.6666666667,1,39,-0.3333333333,24.553592864,24.553592864 -60,0,20.1,39.03,18,40.36,20.6,38.7,19.5,36.4,18.39,51.6933333333,-0.8666666667,83.9933333333,18.754,36.5,19.79,42.2233333333,18.18,39.776,0.1333333333,759.8666666667,97.3333333333,1,43,-0.0666666667,32.5034420122,32.5034420122 -80,0,20.1,38.79,18.1333333333,40.2,20.6,38.7,19.5,36.4,18.3233333333,52,-0.5333333333,84.4966666667,18.7642857143,36.5257142857,19.79,41.83,17.9214285714,38.5542857143,0.5,759.8,96,1,47,0.2,34.5331813558,34.5331813558 -90,0,20.1,38.6566666667,18.2,40.0666666667,20.5,38.5,19.5,36.4666666667,18.3233333333,51.86,-0.2666666667,84.8966666667,18.7,36.5,19.79,41.1666666667,17.6,38.2,0.8666666667,759.7333333333,94.6666666667,1,51,0.4666666667,49.1880382644,49.1880382644 -50,0,20,38.4666666667,18.23,39.76,20.5,38.5,19.5,36.6266666667,18.29,51.66,-0.0666666667,85.1233333333,18.6142857143,36.14,19.79,41.6933333333,17.5142857143,37.8957142857,1.2333333333,759.6666666667,93.3333333333,1,55,0.7333333333,12.1227859985,12.1227859985 -60,0,20,38.3266666667,18.3566666667,39.5666666667,20.5,38.59,19.575,36.7,18.23,51.1333333333,0.1333333333,85.33,18.6,35.794,19.79,41.79,17.478,38.332,1.6,759.6,92,1,59,1,29.2129089125,29.2129089125 -80,0,20,38.2,18.4266666667,39.3266666667,20.5,38.6633333333,19.6,36.76,18.2,50.8266666667,0.3666666667,85.6233333333,18.6,35.5642857143,19.79,41.79,17.4971428571,41.1114285714,2.2,759.5666666667,90.6666666667,1,52.8333333333,1.2666666667,32.8715501586,32.8715501586 -50,10,20,38.3333333333,18.5,39.4,20.5333333333,38.73,19.6333333333,36.79,18.2,51.1,0.775,85.8725,18.6,35.356,19.7,41.56,17.7,40.96,2.8,759.5333333333,89.3333333333,1,46.6666666667,1.5333333333,48.3577113715,48.3577113715 -60,0,20,38.73,18.7,39.73,20.6,38.79,19.7,36.8633333333,18.2,51.4,1.1933333333,86.1266666667,18.6,35.2385714286,19.7,41.36,17.7128571429,40.6142857143,3.4,759.5,88,1,40.5,1.8,26.1888147448,26.1888147448 -60,0,20.0666666667,38.99,18.76,39.93,20.6,38.9333333333,19.73,36.9,18.2,51.4,1.7633333333,86.3966666667,18.6,35.178,19.7,41.145,17.84,40.425,4,759.4666666667,86.6666666667,1,34.3333333333,2.0666666667,1.2434827397,1.2434827397 -50,0,20.1,39.2666666667,18.9266666667,40.03,20.6,39.06,19.79,36.9666666667,18.2,51.26,2.2966666667,86.73,18.6,35.09,19.7,40.9666666667,17.89,40.378,4.6,759.4333333333,85.3333333333,1,28.1666666667,2.3333333333,38.0758289015,38.0758289015 -30,0,20.1,39.5266666667,19.0666666667,40.3633333333,20.6,39.1266666667,19.8233333333,37.03,18.1333333333,51.2,2.89,87.0633333333,18.6,35.09,19.7,40.9,17.9371428571,40.2642857143,5.2,759.4,84,1,22,2.6,7.1594377514,7.1594377514 -40,0,20.1,39.7666666667,19.2,40.7233333333,20.6,39.2,19.89,37.1633333333,18.1333333333,51.1633333333,3.2966666667,87.2633333333,18.6571428571,35.09,19.7,40.76,18,40.09,5.35,759.35,81.6666666667,1.1666666667,25,2.3166666667,45.6579941208,45.6579941208 -70,0,20.175,40.025,19.26,40.8633333333,20.5666666667,39.23,19.9266666667,37.2,18.2,51.09,3.6566666667,87.4333333333,18.7,35.016,19.7,40.6266666667,18,40.0242857143,5.5,759.3,79.3333333333,1.3333333333,28,2.0333333333,28.2991557266,28.2991557266 -80,0,20.2,40.4,19.39,40.79,20.5,39.29,20,37.2,18.2,51.03,3.8633333333,87.5,18.7,34.8685714286,19.79,40.4,18.06,39.9,5.65,759.25,77,1.5,31,1.75,41.7902947636,41.7902947636 -120,0,20.29,40.8633333333,19.5,40.8933333333,20.5,39.2,20.0333333333,37.23,18.1,50.9666666667,4.0633333333,87.6233333333,18.79,34.79,19.79,40.3266666667,18.1,39.8528571429,5.8,759.2,74.6666666667,1.6666666667,34,1.4666666667,15.6269854051,15.6269854051 -40,10,20.29,40.59,19.5,40.3,20.5,39.0666666667,20.1,37.3633333333,18.1,50.9,4.19,87.69,18.8471428571,34.6971428571,19.79,40.1633333333,18.1,39.856,5.95,759.15,72.3333333333,1.8333333333,37,1.1833333333,44.1177080153,44.1177080153 -70,0,20.3233333333,40.6933333333,19.5333333333,39.9,20.5,39,20.2,37.4,18.1,50.76,4.4333333333,87.8333333333,18.976,34.536,19.79,40.03,18.1428571429,39.8371428571,6.1,759.1,70,2,40,0.9,10.5357306544,10.5357306544 -40,0,20.39,40.6333333333,19.6,39.6266666667,20.5666666667,39,20.26,37.4666666667,18.1,50.6266666667,4.56,87.8333333333,19.1714285714,34.3971428571,19.89,39.9666666667,18.12,39.856,6.1166666667,759,68.1666666667,2,40,0.5166666667,39.3207105342,39.3207105342 -50,0,20.5,40.5633333333,19.6,39.7,20.6,39.45,20.29,37.4,18.1,50.56,4.5,87.83,19.2,34.054,19.9633333333,39.8266666667,18.2,39.8685714286,6.1333333333,758.9,66.3333333333,2,40,0.1333333333,5.9165092767,5.9165092767 -50,0,20.5,40.0966666667,19.6,39.6266666667,20.6333333333,40.0966666667,20.29,37.4,18.1,50.4333333333,4.56,87.7633333333,19.2771428571,33.9271428571,20,39.56,18.2,39.7,6.15,758.8,64.5,2,40,-0.25,26.370084146,26.370084146 -50,10,20.5,39.7233333333,19.6,39.3633333333,20.7,40.29,20.29,37.29,18.1,50.26,4.8,87.8666666667,19.29,33.772,20,39.5,18.2,39.6371428571,6.1666666667,758.7,62.6666666667,2,40,-0.6333333333,14.7460551234,14.7460551234 -50,0,20.5,39.4633333333,19.6,39.23,20.7,40.29,20.29,37.29,18.1,50.2,4.8666666667,87.8666666667,19.29,33.7,20.0333333333,39.4,18.2,39.612,6.1833333333,758.6,60.8333333333,2,40,-1.0166666667,1.5608792193,1.5608792193 -50,0,20.6,39.2233333333,19.6,39.0266666667,20.7,40.29,20.29,37.29,18.1,50.06,5.0633333333,87.9633333333,19.39,33.5,20.1,39.3266666667,18.2,39.7,6.2,758.5,59,2,40,-1.4,2.9863475938,2.9863475938 -140,0,20.6,39.03,19.6,38.9,20.79,40.26,20.29,37.2675,18.1,49.86,5.3725,88.1925,19.39,33.385,20.1,39.2,18.2,39.7,6.1666666667,758.35,59.6666666667,2,36.6666666667,-1.2666666667,49.5474709431,49.5474709431 -60,0,20.6,38.8266666667,19.6,38.6633333333,20.73,40.2,20.29,37.26,18.1,49.6633333333,5.7666666667,88.4333333333,19.4057142857,33.29,20.1666666667,39.1266666667,18.2128571429,39.7128571429,6.1333333333,758.2,60.3333333333,2,33.3333333333,-1.1333333333,12.5439935131,12.5439935131 -240,0,20.6,38.9666666667,19.6,38.59,20.73,40.06,20.29,37.2,18.1,49.53,6.0633333333,88.5,19.456,33.236,20.2,39.03,18.29,39.79,6.1,758.05,61,2,30,-1,27.6936328853,27.6936328853 -200,0,20.6,38.93,19.6,38.59,20.73,39.9333333333,20.29,37.2,18.1,49.4666666667,6.19,88.56,19.5,33.1214285714,20.26,39.2233333333,18.29,39.7257142857,6.0666666667,757.9,61.6666666667,2,26.6666666667,-0.8666666667,40.9765002434,40.9765002434 -230,0,20.6,38.79,19.6,38.53,20.7,39.76,20.29,37.09,18.0333333333,49.3266666667,6.3666666667,88.59,19.54,32.96,20.4266666667,39.36,18.29,39.736,6.0333333333,757.75,62.3333333333,2,23.3333333333,-0.7333333333,24.3871709215,24.3871709215 -90,0,20.6666666667,38.7233333333,19.6,38.4,20.7,39.7,20.29,37.03,18.1,49.26,6.3,88.53,19.6,32.7385714286,20.6,39.5675,18.29,39.7128571429,6,757.6,63,2,20,-0.6,11.0735206516,11.0735206516 -190,0,20.6666666667,38.6633333333,19.6,38.4,20.6666666667,39.5266666667,20.29,37,18.0333333333,49.1266666667,6.19,88.2266666667,19.66,32.572,20.76,39.6633333333,18.29,39.638,6.0666666667,757.5,62.1666666667,2,23.3333333333,-0.7166666667,5.2127535688,5.2127535688 -90,0,20.7,38.56,19.6,38.26,20.6,39.4,20.29,36.9333333333,18.0333333333,49,6.1233333333,88.16,19.7,32.3971428571,20.9266666667,39.8266666667,18.3185714286,39.79,6.1333333333,757.4,61.3333333333,2,26.6666666667,-0.8333333333,41.0642159637,41.0642159637 -90,0,20.7,38.32,19.6,38.1266666667,20.6333333333,39.29,20.29,36.8633333333,18.025,48.8425,6.26,88.1,19.79,32.156,21,39.9666666667,18.39,39.9,6.2,757.3,60.5,2,30,-0.95,30.1925681764,30.1925681764 -80,0,20.76,38.2,19.6,38.045,20.7,39.23,20.29,36.79,18,48.64,6.5266666667,88.2266666667,19.8914285714,31.9614285714,21.1333333333,40.2,18.39,40.2557142857,6.2666666667,757.2,59.6666666667,2,33.3333333333,-1.0666666667,31.4497734536,31.4497734536 -80,0,20.79,38.1633333333,19.7,38.06,20.7,39.0266666667,20.29,36.7,18,48.56,6.6233333333,87.9666666667,20,31.752,21.26,40.1266666667,18.39,40.7725,6.3333333333,757.1,58.8333333333,2,36.6666666667,-1.1833333333,17.1989064431,17.1989064431 -230,0,20.79,38.09,19.7,38,20.76,38.8266666667,20.29,36.7,18,48.4333333333,6.69,87.8333333333,20.0714285714,31.6,21.5,39.93,18.39,41.018,6.4,757,58,2,40,-1.3,32.727150782,32.727150782 -420,0,20.79,38.1266666667,19.7,37.9666666667,20.7,38.79,20.26,36.59,18.0666666667,48.43,6.5266666667,87.0933333333,20.06,31.35,21.5666666667,39.6566666667,18.39,41.29,6.4,756.9333333333,57.5,2,40,-1.4333333333,13.3358024643,13.3358024643 -150,0,20.79,38.2,19.7,37.9,20.7225,38.7675,20.2,36.53,18.0666666667,48.3633333333,6.3333333333,87.0933333333,20.0571428571,31.2242857143,21.6,39.4666666667,18.39,41.254,6.4,756.8666666667,57,2,40,-1.5666666667,0.7931036293,0.7931036293 -80,0,20.79,38.26,19.7,37.79,20.73,38.6266666667,20.2,36.5,18.0333333333,48.23,6.2633333333,86.76,20.08,31.058,21.6666666667,39.3266666667,18.39,41.0242857143,6.4,756.8,56.5,2,40,-1.7,15.2677018661,15.2677018661 -90,0,20.8566666667,38.1266666667,19.7,37.73,20.73,38.56,20.2,36.4333333333,18.0333333333,48.1566666667,6.2633333333,86.9,20.0714285714,30.89,21.73,39.2233333333,18.39,40.976,6.4,756.7333333333,56,2,40,-1.8333333333,1.3877910911,1.3877910911 -110,0,20.89,38,19.7,37.56,20.79,38.5,20.2,36.3633333333,18,48.09,6.53,86.4,20.1,30.83,21.79,39.03,18.39,40.8114285714,6.4,756.6666666667,55.5,2,40,-1.9666666667,28.4196172957,28.4196172957 -100,0,20.9633333333,37.86,19.7,37.4333333333,20.79,38.3633333333,20.2,36.3633333333,18,47.95,6.895,87.095,20.1985714286,30.9814285714,21.9266666667,38.9666666667,18.5,40.71,6.4,756.6,55,2,40,-2.1,27.8182924725,27.8182924725 -100,0,21,37.8,19.73,37.3633333333,20.8566666667,38.29,20.23,36.5666666667,18,47.79,7.33,87.6,20.31,31.2,22.0666666667,38.9,18.4685714286,40.68,6.3333333333,756.5333333333,55.5,2,40,-2.05,13.2087193313,13.2087193313 -100,0,21.0666666667,38,19.79,37.29,20.89,38.1633333333,20.29,36.7675,18,47.73,7.6233333333,87.3,20.4214285714,31.2257142857,22.23,38.76,18.5,41.116,6.2666666667,756.4666666667,56,2,40,-2,48.000386823,48.000386823 -80,0,21.1,37.79,19.89,37.29,20.89,38.09,20.29,36.79,18.0666666667,47.76,7.69,85.3,20.54,31.2,22.3566666667,38.6266666667,18.5,41.4971428571,6.2,756.4,56.5,2,40,-1.95,39.1055252636,39.1055252636 -70,0,21.1,37.79,19.89,37.29,20.89,38,20.29,36.8266666667,18,47.7,7.59,83.2,20.5142857143,31.1285714286,22.39,38.3633333333,18.5,41.7,6.1333333333,756.3333333333,57,2,40,-1.9,41.3913148106,41.3913148106 -80,0,21.1,37.8,19.79,37.2,20.89,38,20.3566666667,36.8266666667,18,47.7,7.53,82.66,20.478,31.04,22.39,38.29,18.5,41.6828571429,6.0666666667,756.2666666667,57.5,2,40,-1.85,23.8661084091,23.8661084091 -70,0,21.1,37.9333333333,19.79,37.26,20.8566666667,37.9666666667,20.3566666667,36.76,18.0666666667,47.76,7.5,83.6,20.39,30.9214285714,22.4266666667,38.23,18.456,41.438,6,756.2,58,2,40,-1.8,22.7356280317,22.7356280317 -80,0,21.1,37.7233333333,19.79,37.2,20.79,37.9,20.29,36.7,18.0666666667,47.6633333333,7.3666666667,83.06,20.39,30.754,22.4266666667,38.43,18.5,41.4657142857,5.8,756.1333333333,61,1.8333333333,40,-1.35,12.044285296,12.044285296 -90,0,21.1,37.53,19.73,37.1266666667,20.79,37.9,20.29,36.59,18,47.53,7.0933333333,84.23,20.3042857143,30.5414285714,22.445,38.69,18.434,40.62,5.6,756.0666666667,64,1.6666666667,40,-0.9,44.9097588775,44.9097588775 -80,0,21.1,37.29,19.7,37.09,20.79,37.8266666667,20.29,36.53,18,47.4666666667,6.6933333333,83.8966666667,20.2225,30.27,22.5,38.79,18.4057142857,39.8971428571,5.4,756,67,1.5,40,-0.45,44.124030089,44.124030089 -80,0,21.1,37.2225,19.7,37.03,20.7,37.76,20.26,36.4,18,47.4,6.2,83.7566666667,20.18,30.14,22.5,38.8633333333,18.39,39.378,5.2,755.9333333333,70,1.3333333333,40,0,22.3113762797,22.3113762797 -80,0,21.1,37.1266666667,19.6,36.8633333333,20.7,37.7,20.2,36.1266666667,18,47.3266666667,5.7933333333,82.8966666667,20.1,30.1,22.5,39.1933333333,18.39,38.9228571429,5,755.8666666667,73,1.1666666667,40,0.45,31.8135680398,31.8135680398 -90,0,21.1,37.09,19.6,36.79,20.7,37.59,20.2,35.9666666667,18.0666666667,47.26,5.3966666667,83.19,20,30.1,22.5,39.5266666667,18.39,38.7,4.8,755.8,76,1,40,0.9,24.8060645419,24.8060645419 -100,0,21.1,37.09,19.6,36.8633333333,20.7,37.59,20.1333333333,35.8266666667,18,47.1266666667,5.1233333333,83.5966666667,19.9842857143,30.1142857143,22.5,39.7,18.3757142857,38.3414285714,4.6166666667,755.8166666667,76,1,40,0.7333333333,49.4575035991,49.4575035991 -90,10,21.1,37.06,19.5666666667,37,20.7,37.59,20.1,35.7,18,47.06,4.83,84.03,19.89,30.238,22.5,39.7,18.29,37.954,4.4333333333,755.8333333333,76,1,40,0.5666666667,46.8481736607,46.8481736607 -110,10,21.1,37.06,19.5,37.06,20.7,37.545,20.0333333333,35.6266666667,18,47,4.6233333333,84.23,19.89,30.4971428571,22.5,39.59,18.3328571429,37.6942857143,4.25,755.85,76,1,40,0.4,26.4178314595,26.4178314595 -120,10,21.1,36.9666666667,19.5333333333,37.03,20.7,37.59,20.0666666667,36.1566666667,18,46.9,4.4666666667,84.3333333333,19.85,30.79,22.4266666667,39.53,18.29,37.46,4.0666666667,755.8666666667,76,1,40,0.2333333333,5.8617820032,5.8617820032 -100,30,21.1,36.9,19.6,37.09,20.76,37.4666666667,20.0666666667,36.49,18,46.8266666667,4.2725,84.2725,19.79,31.01,22.39,39.3633333333,18.29,37.3371428571,3.8833333333,755.8833333333,76,1,40,0.0666666667,14.2447580118,14.2447580118 -190,30,21.1333333333,36.9,19.7,37.29,20.76,37.3266666667,20.1333333333,36.8266666667,18,46.79,3.9633333333,83.8966666667,19.79,31.296,22.39,39.23,18.245,37.1675,3.7,755.9,76,1,40,-0.1,22.1042219666,22.1042219666 -100,10,21.26,37.16,19.76,37.23,20.8233333333,37.3266666667,20.2,36.9666666667,18,46.79,3.6933333333,83.3933333333,19.7514285714,31.5,22.3566666667,38.99,18.236,37.052,3.45,755.9333333333,77,1.1666666667,40,-0.1833333333,34.988452727,34.988452727 -100,10,21.3233333333,38.13,19.89,37.1633333333,20.89,37.4666666667,20.29,37.29,18,46.79,3.3,82.6,19.736,31.6,22.29,38.6566666667,18.2,36.9,3.2,755.9666666667,78,1.3333333333,40,-0.2666666667,9.6777364146,9.6777364146 -90,10,21.39,38.2566666667,19.89,37.1633333333,20.89,37.6266666667,20.29,37.2225,18,46.79,2.9,81.9666666667,19.7642857143,31.6428571429,22.29,38.5,18.2,36.79,2.95,756,79,1.5,40,-0.35,34.431830782,34.431830782 -70,0,21.39,38.1666666667,20,37.2,20.9633333333,37.7,20.23,37,18,46.79,2.5666666667,81.76,19.79,31.7,22.23,38.4333333333,18.2,36.6971428571,2.7,756.0333333333,80,1.6666666667,40,-0.4333333333,14.6643268294,14.6643268294 -90,0,21.4633333333,38.2333333333,20,37.26,20.9633333333,37.8633333333,20.2,36.9333333333,18,46.8633333333,2.1933333333,81.23,19.8328571429,31.8071428571,22.2,38.4666666667,18.2,36.536,2.45,756.0666666667,81,1.8333333333,40,-0.5166666667,3.847953584,3.847953584 -80,10,21.5,37.7233333333,20.1333333333,37.5,20.89,37.73,20.2,37.2666666667,18.66,69.2633333333,1.86,81.23,19.79,31.7,22.2,38.4,18.2,36.4285714286,2.2,756.1,82,2,40,-0.6,2.5936770253,2.5936770253 -110,0,21.5666666667,37.53,20.2,37.56,21,37.59,20.1666666667,37.53,18.9933333333,70.33,1.6666666667,81.4,19.9228571429,32.3257142857,22.2,38.4333333333,18.2,36.29,2.05,756.05,82.5,1.8333333333,38,-0.65,26.287760085,26.287760085 -120,10,21.6,37.5666666667,20.3233333333,37.9333333333,21,37.59,20.1,37.6633333333,19,56.86,1.5333333333,81.5266666667,19.956,32.554,22.2,38.5,18.2,36.29,1.9,756,83,1.6666666667,36,-0.7,27.4091309984,27.4091309984 -120,20,21.6666666667,37.76,20.39,37.9333333333,21,37.7,20.1,37.79,19.0666666667,52.2666666667,1.2266666667,81.0933333333,19.9685714286,32.5642857143,22.2,38.4,18.2,36.29,1.75,755.95,83.5,1.5,34,-0.75,28.7974016042,28.7974016042 -160,20,21.73,37.7233333333,20.39,37.9666666667,21.0666666667,37.8333333333,20.1,37.53,19.3333333333,57.4333333333,0.9666666667,80.6933333333,19.89,32.59,22.2675,38.3725,18.2,36.29,1.6,755.9,84,1.3333333333,32,-0.8,41.836478305,41.836478305 -120,30,21.79,37.4633333333,20.39,37.9,21.1,37.8633333333,20.1,37.1333333333,19.5975,71.1225,0.7666666667,80.9,19.9214285714,32.59,22.29,38.29,18.16,36.4,1.45,755.85,84.5,1.1666666667,30,-0.85,4.2544881813,4.2544881813 -110,20,21.79,37.29,20.39,37.8266666667,21.1,37.8633333333,20.1,37.2666666667,19.4633333333,61.8633333333,0.5666666667,80.76,19.934,32.59,22.29,38.29,18.1571428571,36.4571428571,1.3,755.8,85,1,28,-0.9,23.2652369654,23.2652369654 -120,20,21.8233333333,37.29,20.39,37.8725,21.0666666667,37.9,20.2,37.1633333333,19.6633333333,56.1966666667,0.2666666667,80.53,19.9685714286,32.59,22.29,38.23,18.14,36.5,1.2833333333,755.8166666667,85.3333333333,1,27.6666666667,-0.8833333333,4.4152056333,4.4152056333 -110,20,21.89,37.29,20.39,37.73,21,37.9,20.2,37.2233333333,19.8566666667,53.79,0.1333333333,80.59,20,32.5,22.29,38.1633333333,18.1,36.4285714286,1.2666666667,755.8333333333,85.6666666667,1,27.3333333333,-0.8666666667,19.1543183755,19.1543183755 -110,20,21.9266666667,37.2,20.4633333333,37.7,21,37.9,20.5233333333,37.6633333333,20,51.3333333333,-0.0333333333,81.16,19.9842857143,32.3671428571,22.29,38.09,18.1,36.4,1.25,755.85,86,1,27,-0.85,19.7921545594,19.7921545594 -110,20,22,37.1266666667,20.39,37.76,21,37.9,20.93,37.39,20,48.8,-0.175,81.32,19.89,32.2966666667,22.29,38.1266666667,18.1,36.4,1.2333333333,755.8666666667,86.3333333333,1,26.6666666667,-0.8333333333,36.5127904457,36.5127904457 -90,30,22,37.06,20.39,37.79,21,37.9666666667,21.1,37.2,20,46.53,-0.2,81.9933333333,19.8757142857,32.4714285714,22.29,38.2,18.1,36.378,1.2166666667,755.8833333333,86.6666666667,1,26.3333333333,-0.8166666667,38.7571465573,38.7571465573 -110,20,22,36.9333333333,20.4633333333,37.73,21,38,21.0333333333,37.1266666667,20,45.2633333333,-0.2333333333,82.3333333333,19.79,32.3214285714,22.29,38.23,18.1,36.29,1.2,755.9,87,1,26,-0.8,45.5708350521,45.5708350521 -90,20,22,36.8633333333,20.39,37.7,21,38,21,37.1266666667,19.89,44.0933333333,-0.3,82.4666666667,19.7,32.29,22.29,38.3633333333,18.1,36.2,1.1833333333,755.8833333333,87,1,25.5,-0.8166666667,28.5247964552,28.5247964552 -70,20,22,36.73,20.39,37.6266666667,21,38,21,37.2,19.89,43.4266666667,-0.4,82.5,19.7,32.4385714286,22.39,38.59,18.0571428571,36.1528571429,1.1666666667,755.8666666667,87,1,25,-0.8333333333,41.9183751917,41.9183751917 -80,30,22.0666666667,36.9,20.39,37.7666666667,20.9266666667,38.06,21.1966666667,37.29,19.8566666667,43.8333333333,-0.4,82.5,19.7,32.88,22.4633333333,38.7966666667,18.1,36.218,1.15,755.85,87,1,24.5,-0.85,23.4421668109,23.4421668109 -80,20,22,36.9666666667,20.39,37.9,20.79,38.2,21.39,37.245,19.73,45.3,-0.4,82.7633333333,19.7,33.2257142857,22.5,39.1566666667,18.1,36.3971428571,1.1333333333,755.8333333333,87,1,24,-0.8666666667,39.4063019776,39.4063019776 -70,20,22,37.03,20.3566666667,38,20.73,38.26,21.39,37.3633333333,19.5666666667,47.0333333333,-0.4666666667,82.5633333333,19.7,33.634,22.5666666667,39.5633333333,18.1,36.736,1.1166666667,755.8166666667,87,1,23.5,-0.8833333333,34.6842417261,34.6842417261 -90,20,21.9266666667,37.1633333333,20.29,38.06,20.7,38.3266666667,21.3233333333,37.4333333333,19.4266666667,48.1666666667,-0.6,82.4633333333,19.7,33.8542857143,22.6,39.8266666667,18.1,36.9542857143,1.1,755.8,87,1,23,-0.9,46.0614226526,46.0614226526 -90,20,21.89,37.3266666667,20.26,38.1266666667,20.6333333333,38.4,21.39,37.6333333333,19.39,49.2933333333,-0.5333333333,82.9233333333,19.7,34.018,22.6,40.0266666667,18.1,37.145,0.9833333333,755.8,87,1.1666666667,22.5,-1.0166666667,1.6161432606,1.6161432606 -60,20,21.89,37.4,20.2,38.2,20.6,38.4,21.8333333333,37.9,19.3233333333,50.0333333333,-0.5,83.33,19.7,34.1942857143,22.7,40.2666666667,18.1,37.276,0.8666666667,755.8,87,1.3333333333,22,-1.1333333333,8.0662918626,8.0662918626 -60,30,21.79,37.29,20.1,38.29,20.6,38.4666666667,22.3666666667,37.8266666667,19.29,50.7266666667,-0.7,82.4566666667,19.7,34.59,22.7,40.5266666667,18.0571428571,37.3814285714,0.75,755.8,87,1.5,21.5,-1.25,32.0019110455,32.0019110455 -50,20,21.79,37.29,20.0333333333,38.29,20.6,38.5,22.86,37.49,19.23,51.1333333333,-0.7666666667,82.6666666667,19.7,34.6057142857,22.6,40.6566666667,18.1,37.59,0.6333333333,755.8,87,1.6666666667,21,-1.3666666667,23.7400548765,23.7400548765 -70,20,21.79,37.4,19.9633333333,38.4,20.6,38.5,22.9266666667,37.0966666667,19.1666666667,51.5966666667,-0.8333333333,82.5333333333,19.66,34.76,22.5333333333,40.99,18.0857142857,37.6842857143,0.5166666667,755.8,87,1.8333333333,20.5,-1.4833333333,14.5503914682,14.5503914682 -60,20,21.73,37.4,19.89,38.4666666667,20.6,38.53,22.76,36.9,19.1,51.93,-1.1333333333,82.06,19.7,35.0957142857,22.39,41.245,18.02,37.776,0.4,755.8,87,2,20,-1.6,41.3465858903,41.3465858903 -70,20,21.7,37.5,19.8566666667,38.56,20.6,38.59,22.6333333333,36.9,19.05,52.145,-1.2,82.0925,19.7,35.29,22.3566666667,41.4633333333,18.0571428571,37.9285714286,0.3666666667,755.8,87.5,2,20.1666666667,-1.55,9.4097857247,9.4097857247 -60,30,21.625,37.5,19.79,38.5675,20.6,38.59,22.5666666667,36.9333333333,19,52.3266666667,-1.1333333333,82.4566666667,19.7,35.4414285714,22.29,41.6633333333,18.1,38.09,0.3333333333,755.8,88,2,20.3333333333,-1.5,13.8053914881,13.8053914881 -60,20,21.6,37.5,19.73,38.59,20.6,38.59,22.4266666667,36.9333333333,18.9266666667,52.4666666667,-0.8666666667,83.2266666667,19.7,35.54,22.26,41.76,18.0857142857,38.1528571429,0.3,755.8,88.5,2,20.5,-1.45,16.5964894579,16.5964894579 -50,0,21.5666666667,37.5,19.6666666667,38.59,20.6,38.6633333333,22.3566666667,36.9333333333,18.89,52.7,-0.6666666667,83.56,19.7,35.7642857143,22.2,41.76,18.02,38.218,0.2666666667,755.8,89,2,20.6666666667,-1.4,38.1684542401,38.1684542401 -50,10,21.5,37.6333333333,19.6,38.53,20.6,38.59,22.29,37,18.89,52.76,-0.5666666667,83.69,19.7,35.856,22.1666666667,41.9333333333,18.1,38.3214285714,0.2333333333,755.8,89.5,2,20.8333333333,-1.35,3.0524801463,3.0524801463 -20,0,21.5,37.73,19.5666666667,38.59,20.6,38.59,22.1666666667,36.6333333333,18.79,52.73,-0.6333333333,83.43,19.6571428571,35.7514285714,22.1,42.1333333333,18.06,38.5,0.2,755.8,90,2,21,-1.3,26.6960317967,26.6960317967 -30,0,21.4266666667,37.79,19.5,38.59,20.6,38.59,22.0333333333,36.4333333333,18.772,52.79,-0.8,83.1233333333,19.68,35.79,22.1,42.2,18.08,38.572,0.35,755.8166666667,89.8333333333,2,21.5,-1.1666666667,27.82000117,27.82000117 -20,0,21.39,37.9,19.39,38.3633333333,20.6,38.6633333333,21.89,36.4,18.7,52.79,-0.7333333333,83.3966666667,19.6,35.79,22.0333333333,42.1266666667,18.0333333333,38.53,0.5,755.8333333333,89.6666666667,2,22,-1.0333333333,42.4850965152,42.4850965152 -40,0,21.39,37.9,19.39,38.29,20.6,38.7,21.7633333333,36.4,18.7,52.9,-0.5666666667,83.76,19.6,35.79,22,42.23,18.1,38.7233333333,0.65,755.85,89.5,2,22.5,-0.9,18.5380301788,18.5380301788 -60,0,21.29,37.9,19.29,38.26,20.6,38.7,21.6666666667,36.3633333333,18.7,52.9,-0.4333333333,84.0266666667,19.6,35.8528571429,22,42.43,18.1,38.86,0.8,755.8666666667,89.3333333333,2,23,-0.7666666667,1.6182622639,1.6182622639 -50,0,21.29,37.9,19.29,38.1266666667,20.6,38.7,21.5333333333,36.3633333333,18.7,52.9,-0.3333333333,84.0266666667,19.6,35.978,21.89,42.5666666667,18.1,39,0.95,755.8833333333,89.1666666667,2,23.5,-0.6333333333,14.2139621545,14.2139621545 -50,0,21.26,37.8633333333,19.2,38,20.6666666667,38.76,21.39,36.29,18.6285714286,52.8214285714,-0.4,83.8333333333,19.6,36.13125,21.8233333333,42.7,18.1,39.1266666667,1.1,755.9,89,2,24,-0.5,31.4914878458,31.4914878458 -40,0,21.2,37.79,19.2,38.06,20.7,38.8266666667,21.29,36.3633333333,18.6,52.79,-0.3,84.1566666667,19.6,36.2257142857,21.8566666667,43.1266666667,18.1,39.26,1.0833333333,755.8333333333,88.8333333333,2.1666666667,23.8333333333,-0.55,28.9617714239,28.9617714239 -40,0,21.1,37.79,19.1,38.1266666667,20.7,38.9666666667,21.23,36.23,18.6,52.7771428571,-0.3666666667,83.8233333333,19.6,36.44,21.79,43.2,18.1,39.4333333333,1.0666666667,755.7666666667,88.6666666667,2.3333333333,23.6666666667,-0.6,42.3355429433,42.3355429433 -40,0,21.1,37.79,19.1,38.26,20.7,39,21.1,36.2,18.54,52.7,-0.3,84.06,19.6,36.5,21.7,43.29,18.1,39.56,1.05,755.7,88.5,2.5,23.5,-0.65,47.372612427,47.372612427 -50,0,21.0666666667,37.76,19,38.4333333333,20.7,39.06,21.1,36.2,18.5,52.7,-0.2333333333,84.06,19.6,36.5,21.7,43.3633333333,18.1,39.73,1.0333333333,755.6333333333,88.3333333333,2.6666666667,23.3333333333,-0.7,35.4624491185,35.4624491185 -50,0,21,37.7,19,38.56,20.7,39.09,21,36.09,18.5,52.656,0,84.445,19.6,36.5257142857,21.7,43.53,18.1,39.8175,1.0166666667,755.5666666667,88.1666666667,2.8333333333,23.1666666667,-0.75,48.6208974035,48.6208974035 -60,0,21,37.7,18.9633333333,38.6266666667,20.76,39.09,20.9266666667,36.09,18.4842857143,52.5771428571,0.2333333333,84.6933333333,19.6,36.634,21.7,43.7233333333,18.1,39.9666666667,1,755.5,88,3,23,-0.8,46.2594879675,46.2594879675 -50,0,20.9266666667,37.7,18.9633333333,38.76,20.73,39.09,20.8566666667,36.09,18.39,52.5,0.3666666667,84.8333333333,19.6,36.6528571429,21.6666666667,43.76,18.1,40.03,0.9166666667,755.5,88.3333333333,2.6666666667,23,-0.8333333333,39.1725158202,39.1725158202 -50,0,20.89,37.6266666667,18.89,38.9,20.79,39.09,20.79,36.1633333333,18.39,52.4714285714,0.5333333333,85.09,19.6,36.656,21.6,43.7,18.1,40.09,0.8333333333,755.5,88.6666666667,2.3333333333,23,-0.8666666667,23.520902649,23.520902649 -40,0,20.815,37.6175,18.815,38.9,20.79,39.09,20.7,36.2,18.39,52.4,0.7333333333,85.23,19.6,36.7,21.6,43.745,18.1,40.2,0.75,755.5,89,2,23,-0.9,46.8698330456,46.8698330456 -30,0,20.79,37.59,18.79,38.9,20.79,39.09,20.7,36.26,18.39,52.4,0.7666666667,85.1566666667,19.56,36.754,21.5666666667,43.76,18.1,40.26,0.6666666667,755.5,89.3333333333,1.6666666667,23,-0.9333333333,22.747703467,22.747703467 -30,0,20.79,37.59,18.76,39,20.79,39.23,20.6,36.23,18.33,52.378,0.6333333333,84.8233333333,19.5857142857,36.7642857143,21.5,43.7,18.1,40.4,0.5833333333,755.5,89.6666666667,1.3333333333,23,-0.9666666667,43.1708859862,43.1708859862 -20,0,20.79,37.59,18.7,39,20.79,39.29,20.6,36.3633333333,18.3025,52.27875,0.4,84.2266666667,19.58,36.7,21.5,43.7,18.1,40.4666666667,0.5,755.5,90,1,23,-1,40.206689504,40.206689504 -40,0,20.7,37.7,18.7,39.09,20.73,39.3633333333,20.5,36.5,18.3185714286,52.2257142857,0.3333333333,84.16,19.5,36.7,21.5,43.7,18.1,40.6266666667,0.35,755.5,90.8333333333,1,29.6666666667,-1.0166666667,12.1598533588,12.1598533588 -50,0,20.7,37.7,18.7,39.09,20.7,39.4,20.5,36.5,18.29,52.2,0.2,84.06,19.5,36.736,21.4266666667,43.53,18.0333333333,40.6266666667,0.2,755.5,91.6666666667,1,36.3333333333,-1.0333333333,21.3192729396,21.3192729396 -50,0,20.7,37.7,18.6333333333,39.1266666667,20.7,39.4,20.4633333333,36.56,18.29,52.1528571429,0.2,84,19.5,36.79,21.4266666667,43.53,18.0666666667,40.76,0.05,755.5,92.5,1,43,-1.05,45.7731586765,45.7731586765 -50,0,20.7,37.7,18.6333333333,39.1266666667,20.73,39.4,20.39,36.5,18.29,52.134,0.1,84,19.5,36.856,21.39,43.5,18.0666666667,40.8333333333,-0.1,755.5,93.3333333333,1,49.6666666667,-1.0666666667,46.1680766894,46.1680766894 -50,0,20.6666666667,37.6633333333,18.6,39.09,20.79,39.4,20.39,36.5,18.2514285714,52.0514285714,0.1,84,19.5,36.9,21.39,43.4333333333,18.1,40.9,-0.25,755.5,94.1666666667,1,56.3333333333,-1.0833333333,0.4425300867,0.4425300867 -50,0,20.6,37.59,18.6,39.1633333333,20.79,39.5,20.3233333333,36.5,18.29,52,0,83.7633333333,19.5,37,21.39,43.4,18.1,40.9666666667,-0.4,755.5,95,1,63,-1.1,49.065906927,49.065906927 -50,0,20.6,37.59,18.5333333333,39.23,20.79,39.5,20.29,36.545,18.2128571429,51.9142857143,-0.2,83.3566666667,19.5,37.0128571429,21.3233333333,43.4,18.1,41.03,-0.5,755.55,95.1666666667,1,62.6666666667,-1.1833333333,20.5347078037,20.5347078037 -40,0,20.6,37.59,18.5333333333,39.29,20.79,39.4633333333,20.2,36.4333333333,18.2,51.9,-0.4666666667,82.5933333333,19.5,37.156,21.29,43.3633333333,18.1,41.09,-0.6,755.6,95.3333333333,1,62.3333333333,-1.2666666667,14.259531023,14.259531023 -50,0,20.5,37.59,18.5,39.29,20.79,39.53,20.2,36.5,18.2,51.9,-0.7,82.25,19.5,37.2,21.29,43.29,18.1,41.1266666667,-0.7,755.65,95.5,1,62,-1.35,27.8657096904,27.8657096904 -50,0,20.5,37.59,18.5,39.29,20.79,39.53,20.2,36.53,18.2,51.9,-0.8,82.2,19.5,37.236,21.23,43.23,18.1,41.2,-0.8,755.7,95.6666666667,1,61.6666666667,-1.4333333333,6.9175661309,6.9175661309 -50,0,20.5,37.59,18.4633333333,39.3633333333,20.79,39.59,20.2,36.53,18.2,51.8371428571,-1.0333333333,81.7966666667,19.5,37.3528571429,21.23,43.23,18.1,41.2,-0.9,755.75,95.8333333333,1,61.3333333333,-1.5166666667,29.9276716425,29.9276716425 -50,0,20.4266666667,37.53,18.39,39.29,20.79,39.59,20.1,36.56,18.16,51.79,-1.1666666667,81.4633333333,19.5,37.4,21.2,43.1633333333,18.1,41.2225,-1,755.8,96,1,61,-1.6,45.3375510289,45.3375510289 -40,0,20.39,37.5,18.39,39.3266666667,20.79,39.59,20.1,36.56,18.2,51.79,-1.3233333333,81.3666666667,19.5,37.4285714286,21.1333333333,43.09,18.1,41.3633333333,-0.9333333333,755.8166666667,96,1.1666666667,61.3333333333,-1.5333333333,20.5182135687,20.5182135687 -40,0,20.39,37.5,18.3233333333,39.4,20.89,39.7,20.0666666667,36.56,18.1,51.79,-1.39,81.56,19.5,37.5,21.2,43.2,18.1,41.4,-0.8666666667,755.8333333333,96,1.3333333333,61.6666666667,-1.4666666667,38.1835624576,38.1835624576 -30,0,20.39,37.5,18.29,39.3633333333,20.89,39.7,20,36.5,18.1,51.79,-1.29,82.26,19.5,37.554,21.1333333333,43.2,18.1,41.4,-0.8,755.85,96,1.5,62,-1.4,15.0189169566,15.0189169566 -20,0,20.39,37.5,18.29,39.3975,20.8566666667,39.7,20,36.5,18.1,51.736,-1.23,82.6666666667,19.5,37.64,21.1,43.09,18.1,41.5,-0.7333333333,755.8666666667,96,1.6666666667,62.3333333333,-1.3333333333,38.2042450015,38.2042450015 -30,0,20.34,37.5,18.29,39.5,20.79,39.7,20,36.5,18.1,51.7,-0.9333333333,83.3233333333,19.5,37.718,21.1,43.09,18.1,41.5,-0.6666666667,755.8833333333,96,1.8333333333,62.6666666667,-1.2666666667,27.5963252527,27.5963252527 -70,10,20.29,37.53,18.2,39.4,20.79,39.7,19.9633333333,36.59,18.1,51.7,-0.7333333333,83.7966666667,19.5,37.85,21.1,43.1633333333,18.1,41.6566666667,-0.6,755.9,96,2,63,-1.2,8.3623902639,8.3623902639 -80,0,20.29,37.7966666667,18.2,39.4666666667,20.7675,39.7675,19.89,36.59,18.0857142857,51.6842857143,-0.6666666667,83.9,19.5,38.09,21.0333333333,43.3,18.1,41.8633333333,-0.6,755.9333333333,95.8333333333,1.8333333333,62.6666666667,-1.2166666667,30.2166203037,30.2166203037 -60,10,20.29,38.0966666667,18.2,39.6266666667,20.7,39.73,19.89,36.7,18,51.59,-0.6666666667,83.8333333333,19.5,37.88,21.1,43.4333333333,18.1,41.9,-0.6,755.9666666667,95.6666666667,1.6666666667,62.3333333333,-1.2333333333,28.3051021048,28.3051021048 -40,0,20.29,38.49,18.2,39.8333333333,20.7,39.6633333333,19.89,36.7,18.0428571429,51.6371428571,-0.8333333333,83.2966666667,19.434,37.538,21,43.26,18.1,41.8266666667,-0.6,756,95.5,1.5,62,-1.25,31.7966780043,31.7966780043 -40,0,20.29,38.5,18.2,40.2,20.7,39.59,19.8566666667,36.76,18,51.59,-0.9666666667,82.9633333333,19.39,37.1942857143,21,43.1266666667,18.1,41.76,-0.6,756.0333333333,95.3333333333,1.3333333333,61.6666666667,-1.2666666667,42.7752893767,42.7752893767 -80,0,20.29,38.4333333333,18.1333333333,40.26,20.7,39.59,19.79,36.7,18,51.59,-0.9,83.26,19.39,36.96,20.89,42.9666666667,18.1,41.7,-0.6,756.0666666667,95.1666666667,1.1666666667,61.3333333333,-1.2833333333,30.9309702483,30.9309702483 -210,0,20.23,38.39,18.1,40.3333333333,20.6333333333,39.4633333333,19.79,36.79,18,51.552,-0.8333333333,83.5933333333,19.3042857143,36.4,20.89,42.8266666667,18.1,41.56,-0.6,756.1,95,1,61,-1.3,17.8549471428,17.8549471428 -260,0,20.29,38.6633333333,18.1666666667,40.2,20.6,39.1633333333,19.79,36.73,18,51.3685714286,-0.5,84.15,19.236,35.698,20.8566666667,42.2666666667,18.1,41.36,-0.25,756.15,94.1666666667,1,60.1666666667,-1.0833333333,43.9804361202,43.9804361202 -180,0,20.29,38.6333333333,18.1333333333,40.06,20.5333333333,39.03,19.745,36.645,18,50.94375,-0.0333333333,84.76,19.2,35.1685714286,20.8566666667,41.86,18.0666666667,40.96,0.1,756.2,93.3333333333,1,59.3333333333,-0.8666666667,31.6493342514,31.6493342514 -80,0,20.23,38.36,18.2,39.9333333333,20.5,38.9,19.76,36.56,18,50.59,0.2333333333,84.9666666667,19.1,34.71,20.79,41.3333333333,18,40.5,0.45,756.25,92.5,1,58.5,-0.65,6.7728335503,6.7728335503 -60,0,20.2,38.29,18.2,39.76,20.5,38.9,19.76,36.6333333333,18,50.38,0.6333333333,85.2266666667,19.1,34.4657142857,20.73,41.0666666667,18.0666666667,40.1,0.8,756.3,91.6666666667,1,57.6666666667,-0.4333333333,0.5134274601,0.5134274601 -70,10,20.2,38.29,18.2,39.6266666667,20.5333333333,38.7,20.2333333333,36.8633333333,17.978,50.116,0.8333333333,85.4333333333,19.04,34.152,20.76,40.7233333333,18,39.7666666667,1.15,756.35,90.8333333333,1,56.8333333333,-0.2166666667,25.7439165493,25.7439165493 -110,20,20.2,38.23,18.23,39.6633333333,20.5333333333,38.5666666667,20.6933333333,36.73,17.89,49.94,0.9666666667,85.33,19,33.9285714286,20.7,40.4633333333,18,39.43,1.5,756.4,90,1,56,0,44.1325908876,44.1325908876 -350,30,20.2,38.29,18.29,39.53,20.39,38.2,21.1633333333,36.7233333333,17.89,49.656,0.8333333333,84.9966666667,19,33.7,20.7,40.26,18,39.02,1.75,756.4666666667,89.1666666667,1.1666666667,57.3333333333,0.1166666667,16.3587955059,16.3587955059 -250,20,20.2,38.4633333333,18.29,39.6566666667,20.3233333333,38.3333333333,21.29,36.39,17.89,49.5242857143,0.6666666667,84.5933333333,18.9371428571,33.5542857143,20.6333333333,40,18,38.6566666667,2,756.5333333333,88.3333333333,1.3333333333,58.6666666667,0.2333333333,4.1106713354,4.1106713354 -130,20,20.2,38.7966666667,18.29,39.8633333333,20.29,38.59,21.2,36.0666666667,17.912,49.378,0.6666666667,84.5266666667,18.89,33.418,20.6,39.8333333333,18,38.4666666667,2.25,756.6,87.5,1.5,60,0.35,48.8137320499,48.8137320499 -100,20,20.2,39.0666666667,18.36,40.3,20.3566666667,38.59,21.26,36.3333333333,17.9214285714,49.2642857143,1.3,85.5,18.89,33.29,20.5333333333,39.6266666667,18,38.1933333333,2.5,756.6666666667,86.6666666667,1.6666666667,61.3333333333,0.4666666667,2.8174335952,2.8174335952 -100,20,20.1333333333,39.3333333333,18.575,40.5225,20.39,38.59,21.29,36.6266666667,17.89,49.156,1.8333333333,85.9,18.89,33.2,20.5,39.5,18.0333333333,37.8633333333,2.75,756.7333333333,85.8333333333,1.8333333333,62.6666666667,0.5833333333,37.0821782853,37.0821782853 -100,30,20.15,39.645,18.6666666667,40.7966666667,20.39,38.59,21.3566666667,36.76,17.89,49.0385714286,2.03,85.9333333333,18.89,33.1057142857,20.5,39.4333333333,18.0333333333,37.6566666667,3,756.8,85,2,64,0.7,45.1850661193,45.1850661193 -90,20,20.1,39.86,18.73,41.09,20.5,38.7,21.4266666667,36.9633333333,17.89,49,2.2966666667,86.2,18.89,33.036,20.5,39.245,18.1,37.59,3.25,756.8166666667,83.5,2.1666666667,56.8333333333,0.6833333333,14.6188410698,14.6188410698 -100,20,20.1,40.06,18.8566666667,41.1633333333,20.5,38.75,21.5666666667,37.09,17.89,48.9714285714,2.6566666667,86.4333333333,18.89,32.9285714286,20.4633333333,39.0266666667,18.1,37.59,3.5,756.8333333333,82,2.3333333333,49.6666666667,0.6666666667,38.4691770887,38.4691770887 -80,20,20.1,40.1566666667,19.0333333333,40.9666666667,20.5,38.9,21.6333333333,37.1266666667,17.89,48.9,2.93,86.56,18.89,32.79,20.39,38.8266666667,18.1,37.5,3.75,756.85,80.5,2.5,42.5,0.65,19.1602924373,19.1602924373 -80,30,20.1,40.3633333333,19.1666666667,40.6933333333,20.5,38.9333333333,21.76,37.2,17.89,48.8057142857,3.2666666667,86.7266666667,18.89,32.6214285714,20.5,38.76,18.1,37.5,4,756.8666666667,79,2.6666666667,35.3333333333,0.6333333333,14.1981359106,14.1981359106 -270,20,20.2,40.4333333333,19.29,40.56,20.5,39,21.8233333333,37.23,17.89,48.772,3.5925,86.9,18.9371428571,32.4271428571,20.4266666667,38.6266666667,18.1,37.4666666667,4.25,756.8833333333,77.5,2.8333333333,28.1666666667,0.6166666667,10.9455861966,10.9455861966 -770,20,20.2,40.5,19.29,40.4333333333,20.5,39.1566666667,21.89,37.29,17.89,48.6528571429,3.8633333333,87,19,32.272,20.4266666667,38.4333333333,18.1666666667,37.4,4.5,756.9,76,3,21,0.6,16.8551824754,16.8551824754 -540,30,20.2,40.6266666667,19.39,40.2966666667,20.6333333333,39.7633333333,22,37.09,17.89,48.554,4.16,87.03,19,32.1214285714,20.4266666667,38.3,18.2,37.3633333333,4.65,756.9166666667,74,3.1666666667,24.1666666667,0.3333333333,8.0937165883,8.0937165883 -360,20,20.26,40.8333333333,19.4633333333,40.03,20.9933333333,41.1666666667,22,37.03,17.89,48.5257142857,4.3666666667,86.8966666667,19,31.956,20.39,38.06,18.2,37.29,4.8,756.9333333333,72,3.3333333333,27.3333333333,0.0666666667,40.7426043879,40.7426043879 -300,20,20.26,41,19.5,39.6333333333,21.4,41.6933333333,22.1,37,17.89,48.5,4.3666666667,86.1966666667,19,31.7528571429,20.39,37.9333333333,18.2,37.26,4.95,756.95,70,3.5,30.5,-0.2,47.6175005315,47.6175005315 -270,30,20.26,41.1333333333,19.5666666667,39.36,21.7633333333,41.8633333333,22.1333333333,37.03,17.89,48.5,4.8333333333,86.59,19.02,31.64,20.39,37.6633333333,18.2,37.3333333333,5.1,756.9666666667,68,3.6666666667,33.6666666667,-0.4666666667,43.1149259093,43.1149259093 -250,20,20.39,41.4,19.6,39.26,22.03,41.6566666667,22.2,36.9633333333,17.89,48.5,5.4,84.26,19.1,31.5285714286,20.4633333333,37.59,18.23,37.6566666667,5.25,756.9833333333,66,3.8333333333,36.8333333333,-0.7333333333,43.0041991291,43.0041991291 -230,20,20.39,41.3266666667,19.6,39.1266666667,22.3233333333,41.2966666667,22.23,36.8266666667,17.8614285714,48.4714285714,5.3333333333,82.86,19.1,31.35,20.39,37.3333333333,18.23,37.73,5.4,757,64,4,40,-1,23.9626498544,23.9626498544 -210,20,20.39,41.3,19.6,38.8633333333,22.4633333333,40.89,22.29,36.8266666667,17.85,48.46,5.3666666667,75.5,19.1571428571,31.1414285714,20.39,37.1266666667,18.245,37.745,5.5166666667,756.9833333333,62.8333333333,3.8333333333,37.8333333333,-1.1333333333,7.3007665109,7.3007665109 -160,30,20.4633333333,40.9,19.6666666667,38.79,22.6,40.49,22.3233333333,36.76,17.89,48.4285714286,5.8333333333,75.9666666667,19.274,30.958,20.5,36.93,18.26,37.6333333333,5.6333333333,756.9666666667,61.6666666667,3.6666666667,35.6666666667,-1.2666666667,12.5701723504,12.5701723504 -70,20,20.6333333333,40.9966666667,19.73,38.8266666667,22.5333333333,40.1566666667,22.39,36.5666666667,17.89,48.4,6.6,73.46,19.4685714286,30.6971428571,20.5666666667,36.73,18.26,37.56,5.75,756.95,60.5,3.5,33.5,-1.4,16.7868026532,16.7868026532 -80,20,20.7,40.33,19.79,38.8266666667,22.3566666667,39.8333333333,22.4633333333,36.2966666667,17.89,48.356,6.6,72.2666666667,19.456,30.35,20.7,36.56,18.29,37.9333333333,5.8666666667,756.9333333333,59.3333333333,3.3333333333,31.3333333333,-1.5333333333,17.2371768625,17.2371768625 -350,20,20.7,39.7966666667,19.76,38.6633333333,22.29,39.7,22.39,35.9633333333,17.8757142857,48.21,6.1266666667,73.36,19.39,30.1557142857,20.6333333333,36.36,18.29,37.9333333333,5.9833333333,756.9166666667,58.1666666667,3.1666666667,29.1666666667,-1.6666666667,11.6756627103,11.6756627103 -710,30,20.7,39.53,19.7,38.53,22.2,39.5966666667,22.39,35.6633333333,17.85,48.036,5.8666666667,71.9,19.412,30.1,20.6333333333,36.2,18.23,37.8266666667,6.1,756.9,57,3,27,-1.8,33.3907938795,33.3907938795 -450,20,20.79,38.93,19.745,38.345,22.26,40.3966666667,22.39,35.59,17.89,47.9714285714,6.0666666667,63.3333333333,19.5285714286,30.0285714286,20.7,36.1266666667,18.29,38.4333333333,6.0333333333,756.8666666667,57.1666666667,3.1666666667,29.1666666667,-1.8333333333,16.1127483589,16.1127483589 -350,20,20.865,38.5425,19.8233333333,38.06,22.6633333333,41.7933333333,22.29,35.4333333333,17.89,47.9,6.7333333333,62.7333333333,19.7,29.85,20.84,35.95,18.29,39.4266666667,5.9666666667,756.8333333333,57.3333333333,3.3333333333,31.3333333333,-1.8666666667,21.2814430823,21.2814430823 -280,20,20.89,38.0666666667,19.89,37.8,23.07,42.65,22.29,35.5,17.89,47.7542857143,7.3333333333,61.2333333333,19.7771428571,29.6671428571,20.89,35.6633333333,18.29,39.9,5.9,756.8,57.5,3.5,33.5,-1.9,14.1518660472,14.1518660472 -300,20,21,38.5566666667,19.865,37.4225,23.3566666667,42.8,22.3566666667,35.59,17.89,47.7,7.26,59.6333333333,19.736,29.478,20.8233333333,35.4633333333,18.29,40.23,5.8333333333,756.7666666667,57.6666666667,3.6666666667,35.6666666667,-1.9333333333,8.0091631971,8.0091631971 -250,20,21,39.09,19.8233333333,37.3266666667,23.5,41.5266666667,22.29,35.6633333333,17.89,47.6685714286,7.14,61.395,19.7,29.3614285714,20.8566666667,35.3633333333,18.29,40.23,5.7666666667,756.7333333333,57.8333333333,3.8333333333,37.8333333333,-1.9666666667,45.782702812,45.782702812 -230,30,21,39.16,19.79,37.4,23.5666666667,40.5266666667,22.39,35.7,17.89,47.59,7.0933333333,52.5933333333,19.6,29.1,20.79,35.23,18.29,39.9666666667,5.7,756.7,58,4,40,-2,8.9078663266,8.9078663266 -110,20,21,38.6333333333,19.79,37.4,23.6333333333,39.5633333333,22.39,35.6266666667,17.89,47.5128571429,6.8333333333,53.9266666667,19.6,29.1,20.7,35.2,18.29,39.7666666667,5.5166666667,756.7166666667,60.1666666667,3.6666666667,40,-1.7166666667,19.9875727529,19.9875727529 -60,20,21,38.4,19.79,37.4,23.6333333333,38.8966666667,22.39,35.53,17.89,47.48,6.69,55.36,19.6,29.14,20.7,35.2,18.29,39.7,5.3333333333,756.7333333333,62.3333333333,3.3333333333,40,-1.4333333333,24.5495027397,24.5495027397 -60,30,21,38.26,19.79,37.3266666667,23.4633333333,38.2233333333,22.3233333333,35.6633333333,17.89,47.3214285714,6.69,57.4333333333,19.6,29.0714285714,20.7,35.1633333333,18.29,39.6266666667,5.15,756.75,64.5,3,40,-1.15,41.9759064331,41.9759064331 -300,20,21,38.0266666667,19.76,37.0266666667,23.3233333333,38.09,22.29,35.7,17.89,47.2,6.0333333333,58.8266666667,19.6,29,20.7,35.09,18.29,39.4666666667,4.9666666667,756.7666666667,66.6666666667,2.6666666667,40,-0.8666666667,24.7857749462,24.7857749462 -290,20,20.9266666667,38.1,19.7,36.9666666667,23.1666666667,38,22.29,35.6633333333,17.8757142857,47.0714285714,4.8933333333,64.76,19.5125,29.15,20.6666666667,35.2,18.29,39.2666666667,4.7833333333,756.7833333333,68.8333333333,2.3333333333,40,-0.5833333333,17.7892100066,17.7892100066 -250,20,20.9633333333,38.6566666667,19.6,37.4566666667,23.1,37.9333333333,22.29,35.59,17.83,46.94,4.19,72.4966666667,19.4371428571,29.2657142857,20.6,35.26,18.23,38.59,4.6,756.8,71,2,40,-0.3,15.4227062943,15.4227062943 -230,20,20.9633333333,38.99,19.6,38.0633333333,23.1333333333,37.9,22.2,35.53,17.8614285714,46.9714285714,4.33,75.83,19.39,29.496,20.5333333333,35.4333333333,18.29,38.53,4.6,756.7666666667,70.6666666667,2,38,-0.35,15.3096595546,15.3096595546 -220,20,21,39.5,19.5,38.6933333333,23.2,37.8266666667,22.2,35.6633333333,17.89,47.036,4.4333333333,77,19.39,29.7257142857,20.5333333333,35.56,18.2,38.1,4.6,756.7333333333,70.3333333333,2,36,-0.4,21.3960097404,21.3960097404 -130,30,21,39.8333333333,19.5,39.0266666667,23.29,37.76,22.2,35.9633333333,17.89,47.1528571429,4.56,77.6,19.39,29.934,20.5,35.8266666667,18.2,38.03,4.6,756.7,70,2,34,-0.45,35.8289502328,35.8289502328 -80,0,21.0333333333,40.03,19.5333333333,39.4633333333,23.29,37.6266666667,22.1333333333,36.09,17.89,47.276,5.1,78.49,19.4842857143,30.0714285714,20.5,35.9,18.26,38.5633333333,4.6,756.6666666667,69.6666666667,2,32,-0.5,28.7582881516,28.7582881516 -80,0,21.1,40.09,19.6,39.7233333333,23.26,37.5266666667,22.1,35.8633333333,17.89,47.4285714286,5.4933333333,77.4233333333,19.5,30,20.5333333333,35.9333333333,18.26,39.0266666667,4.6,756.6333333333,69.3333333333,2,30,-0.55,46.0662776371,46.0662776371 -80,0,21.0666666667,39.9666666667,19.5666666667,39.79,23.0666666667,37.3266666667,22.0333333333,35.39,17.89,47.634,5.5266666667,75.99,19.4685714286,29.9685714286,20.6,36.1333333333,18.26,38.7666666667,4.6,756.6,69,2,28,-0.6,34.6256993362,34.6256993362 -70,0,21,39.8266666667,19.5,39.79,22.79,37.29,21.89,35.06,17.89,47.7128571429,5.26,75.3233333333,19.39,29.89,20.7,36.4333333333,18.26,38.5633333333,4.6666666667,756.6,68.5,2,30,-0.65,28.2396737486,28.2396737486 -80,0,21,39.76,19.445,39.745,22.6633333333,37.23,21.8233333333,34.9333333333,17.89,47.79,5,75.6333333333,19.39,29.9528571429,20.76,36.56,18.2,38.23,4.7333333333,756.6,68,2,32,-0.7,47.6463393541,47.6463393541 -70,10,21,39.595,19.39,39.6333333333,22.4633333333,37.29,21.7,34.76,17.89,47.79,4.8666666667,75.5,19.37,30,20.89,36.8266666667,18.2,38.2,4.8,756.6,67.5,2,34,-0.75,4.6933226753,4.6933226753 -80,0,21,39.2266666667,19.3233333333,39.5,22.39,37.23,21.6333333333,34.6266666667,17.89,47.7,4.64,75.445,19.29,30.0714285714,20.9175,36.9975,18.2,38.1266666667,4.8666666667,756.6,67,2,36,-0.8,49.7285438469,49.7285438469 -90,0,20.89,39,19.29,39.26,22.29,37,21.5666666667,34.7,17.89,47.59,4.7266666667,76.3966666667,19.29,30.1,21.0666666667,37.1633333333,18.2,38,4.9333333333,756.6,66.5,2,38,-0.85,36.8276083958,36.8276083958 -90,0,20.89,39,19.29,39.2,22.1666666667,36.8633333333,21.5,34.7,17.89,47.4985714286,4.8666666667,76.6566666667,19.29,30.1857142857,21.1,37.4333333333,18.2,37.9333333333,5,756.6,66,2,40,-0.9,34.9608322489,34.9608322489 -80,0,20.89,38.8633333333,19.26,39.06,22.1,36.73,21.4633333333,34.76,17.89,47.378,4.9333333333,76.9333333333,19.272,30.236,21.1666666667,37.56,18.2,37.9,4.9166666667,756.6,67.1666666667,2.3333333333,37.8333333333,-0.7333333333,44.399562676,44.399562676 -80,0,20.89,38.73,19.2,39,21.9633333333,36.6266666667,21.3233333333,34.7,17.8471428571,47.29,5,71,19.2,30.1714285714,21.2,37.6266666667,18.2,37.8266666667,4.8333333333,756.6,68.3333333333,2.6666666667,35.6666666667,-0.5666666667,9.3041948276,9.3041948276 -80,0,20.8566666667,38.7233333333,19.2,38.8633333333,21.89,36.6266666667,21.29,34.73,17.89,47.254,4.9,65.9633333333,19.2,30.1,21.2,37.7,18.2,37.76,4.75,756.6,69.5,3,33.5,-0.4,18.364374293,18.364374293 -100,0,20.79,38.53,19.2,38.79,21.8566666667,36.6633333333,21.23,34.6566666667,17.8757142857,47.1242857143,4.8333333333,66.5633333333,19.1857142857,30.0428571429,21.29,37.7,18.2,37.5666666667,4.6666666667,756.6,70.6666666667,3.3333333333,31.3333333333,-0.2333333333,38.3394437144,38.3394437144 -90,0,20.8233333333,38.5,19.2,38.56,21.79,36.59,21.2,34.59,17.85,46.98,4.59,67.3266666667,19.1,29.978,21.29,37.6266666667,18.1666666667,37.3633333333,4.5833333333,756.6,71.8333333333,3.6666666667,29.1666666667,-0.0666666667,44.2973370431,44.2973370431 -100,20,20.8233333333,38.1666666667,19.2,38.3,21.6666666667,36.4666666667,21.1,34.095,17.89,46.8685714286,4.53,67.9333333333,19.1,29.89,21.29,37.4666666667,18.1,37.23,4.5,756.6,73,4,27,0.1,6.1621892033,6.1621892033 -110,30,20.79,37.76,19.2,37.8333333333,21.6,36.4,21,33.79,17.85,46.62,4.4666666667,68.1266666667,19.1,30.1,21.3566666667,37.3266666667,18.1,37.06,4.25,756.6666666667,74.3333333333,3.5,27.3333333333,0.0833333333,12.8363478929,12.8363478929 -720,20,20.8566666667,37.76,19.26,37.6266666667,21.6,36.3633333333,21,33.9,17.8757142857,46.5114285714,4.3333333333,68,19.1,30.31,21.39,37.1633333333,18.1,36.9333333333,4,756.7333333333,75.6666666667,3,27.6666666667,0.0666666667,46.6159265838,46.6159265838 -530,20,20.9266666667,39.0266666667,19.3233333333,37.5,21.6,36.29,21,33.9666666667,17.83,46.316,4.2633333333,66.83,19.1,30.58,21.4633333333,37.09,18.1,36.745,3.75,756.8,77,2.5,28,0.05,35.8445613878,35.8445613878 -100,10,21.0666666667,45.7666666667,19.4633333333,38.3,21.6,36.4333333333,21.0333333333,34.2266666667,17.8328571429,46.2642857143,4.1233333333,68.1633333333,19.1,30.7928571429,21.39,37,18.0666666667,36.56,3.5,756.8666666667,78.3333333333,2,28.3333333333,0.0333333333,9.9074702477,9.9074702477 -100,10,21.2,47.96,19.6333333333,40.3,21.6,36.6933333333,21.0333333333,34.8333333333,17.79,46.58,4.06,68.8966666667,19.1,31,21.39,36.8,18,36.4333333333,3.25,756.9333333333,79.6666666667,1.5,28.6666666667,0.0166666667,25.0551657402,25.0551657402 -90,10,21.26,45.7,19.7,40.9666666667,21.6333333333,37.2266666667,21.0666666667,35.7266666667,17.8757142857,47.1385714286,3.9333333333,69.3633333333,19.0142857143,30.9214285714,21.39,36.9,18.0666666667,36.3633333333,3,757,81,1,29,0,31.0418908135,31.0418908135 -90,0,21.39,43.86,19.8233333333,40.6633333333,21.7,37.6333333333,21,36.1333333333,17.89,47.5,3.79,70.0633333333,19.075,31.245,21.39,36.9666666667,18,36.29,2.8833333333,757.0333333333,81.5,1,28.5,-0.0333333333,24.4994132663,24.4994132663 -100,0,21.39,42.3933333333,19.9633333333,40.4633333333,21.7,37.9333333333,21,36.2666666667,17.89,47.7,3.7675,70.3425,19.12,31.412,21.5,37.09,18,36.26,2.7666666667,757.0666666667,82,1,28,-0.0666666667,48.669164232,48.669164232 -130,0,21.5,41.3333333333,20.15,39.995,21.7,37.9333333333,21,36.4666666667,17.89,47.79,3.6266666667,71.2,19.2,31.5285714286,21.5,37.1633333333,18,36.2,2.65,757.1,82.5,1,27.5,-0.1,27.5413028197,27.5413028197 -120,0,21.5,40.6666666667,20.23,39.6633333333,21.7,37.8633333333,20.89,36.53,17.89,47.79,3.59,71.8966666667,19.2,31.7,21.5333333333,37.29,18,36.1633333333,2.5333333333,757.1333333333,83,1,27,-0.1333333333,37.9414905561,37.9414905561 -120,0,21.55,39.995,20.29,39.53,21.7,37.79,20.89,36.59,17.89,47.79,3.4633333333,72.03,19.2514285714,31.7657142857,21.6,37.29,18,36.09,2.4166666667,757.1666666667,83.5,1,26.5,-0.1666666667,13.4733848972,13.4733848972 -130,40,21.6,39.5266666667,20.3233333333,39.1633333333,21.745,37.7,20.89,36.7666666667,17.8471428571,47.7514285714,3.0266666667,72.3566666667,19.29,31.912,21.7,37.29,17.9633333333,36.09,2.3,757.2,84,1,26,-0.2,25.3253173083,25.3253173083 -130,20,21.6,39.1933333333,20.4633333333,39.03,21.79,37.56,21.03,37.0266666667,17.85,47.7,2.7666666667,73.1633333333,19.29,32.0257142857,21.79,37.3266666667,17.9633333333,36.09,2.2166666667,757.2166666667,85.1666666667,1,32.3333333333,-0.1,10.200313176,10.200313176 -130,20,21.73,38.93,20.5,38.6933333333,21.79,37.5,21.46,37.09,18.2628571429,62.2714285714,2.73,74.2566666667,19.29,32,21.79,37.4,18,36.2,2.1333333333,757.2333333333,86.3333333333,1,38.6666666667,0,36.9695420144,36.9695420144 -160,30,21.79,38.6566666667,20.5666666667,38.4333333333,21.79,37.4666666667,21.8666666667,37.2233333333,19.556,83.936,2.79,74.8633333333,19.29,31.8942857143,21.89,37.5,18,36.1266666667,2.05,757.25,87.5,1,45,0.1,13.0076627247,13.0076627247 -90,20,21.79,38.4666666667,20.6333333333,38.29,21.79,37.3266666667,22.1333333333,36.6633333333,19.7957142857,85.2542857143,2.9,75.4633333333,19.29,31.89,21.89,37.5,18,36.1266666667,1.9666666667,757.2666666667,88.6666666667,1,51.3333333333,0.2,47.5529978517,47.5529978517 -100,20,21.79,38.2666666667,20.7,38.23,21.79,37.29,22.2,36.59,19.14625,85.07125,2.9,75.73,19.3614285714,32.2928571429,21.89,37.5,18,36.2,1.8833333333,757.2833333333,89.8333333333,1,57.6666666667,0.3,21.1833737791,21.1833737791 -90,20,21.89,38.09,20.7,38.2666666667,21.79,37.23,22.1,36.3633333333,19.04,71.256,2.9,76.1933333333,19.456,33.09,21.89,37.56,17.89,36.2,1.8,757.3,91,1,64,0.4,9.7497501876,9.7497501876 -60,30,21.89,38.2233333333,20.7,38.5266666667,21.79,37.23,22.025,36.1175,19.2514285714,61.7128571429,2.9666666667,76.4666666667,19.39,33.2514285714,21.8566666667,37.7,17.89,36.2,1.85,757.3,91,1,64.1666666667,0.45,41.9086208451,41.9086208451 -70,20,22,38.4,20.7,38.73,21.73,37.29,22,35.9333333333,19.412,56.078,2.9666666667,76.76,19.37,33.4,21.8566666667,37.8333333333,17.89,36.2,1.9,757.3,91,1,64.3333333333,0.5,36.5754631232,36.5754631232 -50,20,22,38.3266666667,20.7,38.79,21.7,37.4,21.9633333333,35.9,19.5,52.8971428571,2.9,77.0266666667,19.29,33.4714285714,21.8566666667,38,17.89,36.2,1.95,757.3,91,1,64.5,0.55,2.8653124813,2.8653124813 -70,20,22.0666666667,38.3333333333,20.79,38.76,21.7,37.4,21.9633333333,35.8266666667,19.6,50.39,2.8633333333,77.3,19.29,33.634,21.79,38,17.89,36.2,2,757.3,91,1,64.6666666667,0.6,45.4599327757,45.4599327757 -80,20,22,38.1266666667,20.73,38.7,21.7,37.5,21.89,35.79,19.6,49.0085714286,2.79,77.3,19.29,33.7257142857,21.76,38.2666666667,17.89,36.2,2.05,757.3,91,1,64.8333333333,0.65,7.8397453297,7.8397453297 -70,20,22,38.09,20.7,38.6633333333,21.6333333333,37.5,21.89,35.73,19.6,47.88,2.6633333333,77.4633333333,19.272,33.678,21.7,38.4666666667,17.89,36.23,2.1,757.3,91,1,65,0.7,14.8333863472,14.8333863472 -70,30,22,38.03,20.7,38.53,21.6,37.59,21.89,35.7,19.6714285714,47.01,2.5675,77.82,19.2,33.59,21.7,38.5,17.89,36.29,2.1166666667,757.3,90.8333333333,1,64.8333333333,0.7,38.8011168106,38.8011168106 -60,20,22,37.9666666667,20.6,38.4,21.6,37.59,21.89,35.6266666667,19.7,46.21,2.5,78.2966666667,19.2,33.59,21.7,38.56,17.89,36.2,2.1333333333,757.3,90.6666666667,1,64.6666666667,0.7,35.0689857267,35.0689857267 -60,20,22,37.9,20.6,38.4,21.5666666667,37.73,21.89,35.8,19.6142857143,45.7185714286,2.5,78.5633333333,19.2,33.7042857143,21.6,38.5666666667,17.89,36.26,2.15,757.3,90.5,1,64.5,0.7,0.6633198354,0.6633198354 -70,20,21.89,37.9333333333,20.5666666667,38.53,21.5,37.8633333333,21.89,36.06,19.6,45.516,2.5,78.83,19.2,33.894,21.6,38.76,17.89,36.36,2.1666666667,757.3,90.3333333333,1,64.3333333333,0.7,23.5312627396,23.5312627396 -60,30,21.89,38.06,20.4175,38.64,21.39,37.8266666667,21.89,36.36,19.5714285714,45.3685714286,2.5,79.3333333333,19.2,34.1942857143,21.6,39.0966666667,17.89,36.56,2.1833333333,757.3,90.1666666667,1,64.1666666667,0.7,19.2424707115,19.2424707115 -60,20,21.84,38.145,20.3233333333,38.8633333333,21.39,37.9,21.89,36.5,19.5,45.156,2.5,79.5266666667,19.2,34.5,21.6,39.3633333333,17.89,36.73,2.2,757.3,90,1,64,0.7,27.1790487343,27.1790487343 -60,30,21.79,38.29,20.26,39,21.39,38,21.89,36.53,19.5,45.0385714286,2.53,79.76,19.2,34.6528571429,21.5666666667,39.5,17.89,36.8633333333,2.1666666667,757.2833333333,90.8333333333,1,62.1666666667,0.7833333333,9.2049987405,9.2049987405 -60,20,21.79,38.3633333333,20.2,39.1333333333,21.39,37.9,21.89,36.59,19.5,44.918,2.59,79.9,19.2,34.92,21.5,39.6725,17.89,37.03,2.1333333333,757.2666666667,91.6666666667,1,60.3333333333,0.8666666667,43.2186667691,43.2186667691 -60,20,21.7,38.5,20.0666666667,39.29,21.39,37.9,21.89,36.86,19.5,44.7642857143,2.7,79.9666666667,19.2,35.254,21.5,39.93,17.89,37.1633333333,2.1,757.25,92.5,1,58.5,0.95,45.1445017941,45.1445017941 -60,20,21.7,38.56,20,39.3633333333,21.3233333333,38,21.89,37,19.39,44.5,2.7,79.9,19.2257142857,35.4657142857,21.4633333333,40.09,17.89,37.23,2.0666666667,757.2333333333,93.3333333333,1,56.6666666667,1.0333333333,21.9485620735,21.9485620735 -40,0,21.6,38.6266666667,19.9633333333,39.4333333333,21.39,38.06,21.89,36.9,19.39,44.4271428571,2.6633333333,80.1233333333,19.29,35.736,21.39,40.2233333333,17.89,37.3633333333,2.0333333333,757.2166666667,94.1666666667,1,54.8333333333,1.1166666667,34.3097251374,34.3097251374 -30,0,21.6,38.76,19.89,39.56,21.29,38.06,21.8233333333,36.6933333333,19.39,44.29,2.59,80.19,19.2385714286,35.79,21.3566666667,40.4633333333,17.89,37.5666666667,2,757.2,95,1,53,1.2,21.8957434525,21.8957434525 -30,0,21.5,39.09,19.79,39.4,21.29,38.06,21.76,36.4666666667,19.39,44.2257142857,2.59,80.3,19.236,35.856,21.29,40.7966666667,17.89,37.76,1.9666666667,757.15,94.6666666667,1.1666666667,52.6666666667,1.1333333333,15.4145830427,15.4145830427 -30,0,21.5,39.1633333333,19.73,39.4666666667,21.29,38.09,21.675,36.295,19.33,44.09,2.59,80.3,19.2642857143,35.9714285714,21.26,41.23,17.89,38.0666666667,1.9333333333,757.1,94.3333333333,1.3333333333,52.3333333333,1.0666666667,17.4805087736,17.4805087736 -40,10,21.39,39.2,19.7,39.4,21.29,38.03,21.6,36.2,19.3042857143,44.09,2.5,80.5,19.29,36.134,21.2,41.3633333333,17.89,38.3333333333,1.9,757.05,94,1.5,52,1,21.5132540092,21.5132540092 -50,0,21.39,39.2,19.6333333333,39.3266666667,21.2,38,21.5,36.09,19.29,44.036,2.5,80.5,19.29,36.2128571429,21.2,41.6933333333,17.89,38.5,1.8666666667,757,93.6666666667,1.6666666667,51.6666666667,0.9333333333,9.9273936241,9.9273936241 -50,0,21.3566666667,39.29,19.6,39.29,21.2,38,21.4266666667,36.03,19.2642857143,43.94,2.5,80.695,19.29,36.29,21.1333333333,42.1,17.89,38.5,1.8333333333,756.95,93.3333333333,1.8333333333,51.3333333333,0.8666666667,3.6278832471,3.6278832471 -40,0,21.29,39.29,19.5333333333,39.29,21.2,38.03,21.39,36,19.2,43.79,2.4666666667,80.9,19.29,36.3214285714,21.1666666667,42.5666666667,17.89,38.6333333333,1.8,756.9,93,2,51,0.8,0.744645996,0.744645996 -60,0,21.29,39.2,19.5,39.2,21.2,38.09,21.3233333333,36.06,19.2,43.73375,2.4,80.9666666667,19.29,36.5,21.1666666667,42.96,17.89,38.86,1.7833333333,756.8666666667,93.1666666667,1.8333333333,52.3333333333,0.8,0.2745713107,0.2745713107 -50,0,21.23,39.2,19.5,39.2,21.2,38.09,21.26,36.06,19.2,43.7,2.4,81.1233333333,19.29,36.5771428571,21.1,43.4266666667,17.89,39.06,1.7666666667,756.8333333333,93.3333333333,1.6666666667,53.6666666667,0.8,11.8203781312,11.8203781312 -50,0,21.2,39.1633333333,19.39,39.2,21.2,38.09,21.2,36,19.2,43.656,2.4,81.1233333333,19.29,36.656,21.1,43.9,17.89,39.1566666667,1.75,756.8,93.5,1.5,55,0.8,44.4898857502,44.4898857502 -50,0,21.1333333333,39.09,19.3233333333,39.2,21.2,38.09,21.1666666667,36.03,19.2,43.6214285714,2.26,80.9333333333,19.29,36.7642857143,21.1,44.23,17.89,39.3633333333,1.7333333333,756.7666666667,93.6666666667,1.3333333333,56.3333333333,0.8,47.7707052953,47.7707052953 -40,0,21.1,39.09,19.29,39.2,21.2,38.09,21.1,36.09,19.14,43.59,2.1266666667,80.7266666667,19.29,36.79,21.0333333333,44.23,17.89,39.4333333333,1.7166666667,756.7333333333,93.8333333333,1.1666666667,57.6666666667,0.8,5.1892268471,5.1892268471 -40,10,21.1,39.09,19.2225,39.2,21.2,38.2,21.0666666667,36.06,19.1142857143,43.59,1.9666666667,80.76,19.29,36.7514285714,21.1,44.4333333333,17.9633333333,39.56,1.7,756.7,94,1,59,0.8,23.6208944698,23.6208944698 -40,0,21,39,19.2,39.26,21.2,38.2,21,36,19.1,43.536,1.9,80.9666666667,19.29,36.718,21.0333333333,44.4333333333,17.89,39.73,1.6833333333,756.65,94,1,57.8333333333,0.8,16.6748074698,16.6748074698 -40,0,21,39.045,19.1,39.3266666667,21.2,38.29,20.9633333333,36,19.1,43.5,1.76,80.8333333333,19.29,36.7257142857,21,44.4,17.9633333333,39.79,1.6666666667,756.6,94,1,56.6666666667,0.8,5.0295712077,5.0295712077 -50,0,20.9266666667,39.06,19.1,39.4,21.26,38.3633333333,20.89,36,19.1,43.46,1.7,81.0933333333,19.29,36.79,21,44.4,18,39.9,1.65,756.55,94,1,55.5,0.8,25.690338097,25.690338097 -50,0,20.89,39.09,19.0666666667,39.5,21.2,38.29,20.89,36,19.1,43.4,1.73,81.66,19.29,36.8842857143,20.945,44.5,17.9266666667,39.9666666667,1.6333333333,756.5,94,1,54.3333333333,0.8,14.1253894311,14.1253894311 -30,0,20.89,39.09,19,39.5,21.29,38.4,20.8233333333,36,19.04,43.334,1.79,82.06,19.29,36.9,20.9633333333,44.5,17.9266666667,40.1266666667,1.6166666667,756.45,94,1,53.1666666667,0.8,17.7102487069,17.7102487069 -30,0,20.79,39,19,39.73,21.29,38.4,20.79,36,19.0428571429,43.2642857143,1.79,82.3,19.29,36.9,20.89,44.5,18,40.2,1.6,756.4,94,1,52,0.8,4.1159212589,4.1159212589 -20,0,20.79,39,18.9266666667,39.93,21.29,38.4333333333,20.73,36,19,43.2,1.79,82.2266666667,19.29,37.036,20.89,44.4666666667,17.9266666667,40.3266666667,1.5666666667,756.3,93.6666666667,1,51.3333333333,0.7166666667,32.9212023178,32.9212023178 -40,0,20.76,39,18.9633333333,40.03,21.29,38.5,20.7,36.09,19,43.2,1.79,81.9666666667,19.29,37.09,20.89,44.4,18,40.4666666667,1.5333333333,756.2,93.3333333333,1,50.6666666667,0.6333333333,3.323603957,3.323603957 -40,10,20.7,39,18.8233333333,40.09,21.29,38.5,20.7,36.09,19,43.2,1.73,81.6933333333,19.29,37.09,20.89,44.4,17.9266666667,40.53,1.5,756.1,93,1,50,0.55,16.0726316739,16.0726316739 -60,0,20.7,39,18.79,40.09,21.23,38.5,20.6333333333,36.03,19,43.2,1.395,81.195,19.29,37.1057142857,20.89,44.4,18,40.6633333333,1.4666666667,756,92.6666666667,1,49.3333333333,0.4666666667,41.2069414277,41.2069414277 -40,0,20.7,39.06,18.79,40.09,21.26,38.56,20.6,36,19,43.09,1.2,81.5333333333,19.29,37.2,20.8233333333,44.3266666667,18,40.73,1.4333333333,755.9,92.3333333333,1,48.6666666667,0.3833333333,29.8169457936,29.8169457936 -50,0,20.6,39,18.79,40.2,21.2,38.56,20.6,36,19,43.09,1.1333333333,81.8,19.2,37.09,20.8233333333,44.3266666667,18,40.8175,1.4,755.8,92,1,48,0.3,19.2738149897,19.2738149897 -60,0,20.6,39,18.73,40.2,21.23,38.59,20.5666666667,36.03,19,43.09,1.1,81.9633333333,19.2385714286,37.1528571429,20.79,44.26,18,40.9,1.25,755.75,92.6666666667,1,46.3333333333,0.25,2.8663741192,2.8663741192 -50,0,20.6,38.9666666667,18.7,40.2,21.29,38.59,20.5,36.09,18.9214285714,43.09,1.1,82.23,19.254,37.254,20.79,44.1266666667,18,40.9333333333,1.1,755.7,93.3333333333,1,44.6666666667,0.2,37.5425440958,37.5425440958 -40,0,20.5333333333,38.9666666667,18.7,40.26,21.29,38.59,20.5,36.09,18.89,43.09,1.1,82.5633333333,19.2514285714,37.29,20.79,44,18,41,0.95,755.65,94,1,43,0.15,38.9339273446,38.9339273446 -40,0,20.5,39,18.6,40.2,21.29,38.6633333333,20.5,36.1633333333,18.89,43.0128571429,1.1666666667,82.8966666667,19.2,37.254,20.73,43.9333333333,18,41.09,0.8,755.6,94.6666666667,1,41.3333333333,0.1,13.2702439209,13.2702439209 -50,0,20.5,39,18.6,40.26,21.29,38.7,20.5,36.2,18.89,43,1.2,82.9633333333,19.2,37.2671428571,20.73,43.9,18,41.09,0.65,755.55,95.3333333333,1,39.6666666667,0.05,31.0146427481,31.0146427481 -50,10,20.4633333333,38.9666666667,18.6,40.29,21.29,38.7,20.4266666667,36.2,18.89,43,1.2,83.03,19.218,37.42,20.73,43.9,18,41.1266666667,0.5,755.5,96,1,38,0,3.7291914807,3.7291914807 -40,0,20.4633333333,38.9666666667,18.575,40.29,21.29,38.79,20.39,36.2,18.85,42.96,1.23,83.16,19.2257142857,37.4285714286,20.7,43.79,18,41.2,0.6,755.4666666667,95.8333333333,1,39.3333333333,0.0666666667,27.4530946277,27.4530946277 -50,0,20.39,38.9,18.5666666667,40.29,21.29,38.79,20.39,36.2,18.8185714286,42.9285714286,1.23,83.2266666667,19.2,37.4,20.7,43.73,18,41.29,0.7,755.4333333333,95.6666666667,1,40.6666666667,0.1333333333,13.872198516,13.872198516 -50,0,20.39,38.9,18.5,40.29,21.29,38.79,20.39,36.2,18.79,42.88625,1.2,83.1233333333,19.2,37.4,20.7,43.7,18,41.29,0.8,755.4,95.5,1,42,0.2,48.5354409902,48.5354409902 -50,0,20.3233333333,38.9,18.5,40.3633333333,21.29,38.79,20.3233333333,36.26,18.79,42.812,1.26,83.2633333333,19.2,37.42,20.7,43.7,17.89,41.3266666667,0.9,755.3666666667,95.3333333333,1,43.3333333333,0.2666666667,10.7054196415,10.7054196415 -50,0,20.29,38.9333333333,18.4266666667,40.3266666667,21.29,38.79,20.29,36.29,18.79,42.8214285714,1.29,83.4,19.2,37.5,20.6,43.59,17.9633333333,41.4,1,755.3333333333,95.1666666667,1,44.6666666667,0.3333333333,5.4482208099,5.4482208099 -10,0,20.29,38.9333333333,18.5,40.4,21.29,38.79,20.29,36.29,18.79,42.79,1.29,83.4666666667,19.2,37.4,20.6,43.59,18,41.4,1.1,755.3,95,1,46,0.4,8.7850930518,8.7850930518 -20,0,20.29,39,18.39,40.4,21.29,38.8633333333,20.29,36.4,18.79,42.8057142857,1.29,83.56,19.2,37.5371428571,20.6,43.6633333333,18,41.4666666667,1.1,755.25,95.1666666667,1,44.6666666667,0.4166666667,44.0859490074,44.0859490074 -30,0,20.29,39,18.39,40.4,21.29,38.9,20.29,36.4,18.736,42.878,1.29,83.5475,19.2,37.59,20.6,43.79,18,41.5,1.1,755.2,95.3333333333,1,43.3333333333,0.4333333333,24.6470230748,24.6470230748 -40,0,20.2,38.9,18.3566666667,40.5,21.23,38.9,20.2,36.29,18.7642857143,42.79,1.29,83.6233333333,19.2,37.59,20.6,43.79,18,41.56,1.1,755.15,95.5,1,42,0.45,29.7921386664,29.7921386664 -60,0,20.26,38.9666666667,18.3566666667,40.5,21.2,38.9333333333,20.2,36.29,18.7,42.834,1.29,83.69,19.2,37.634,20.6,43.9,18,41.59,1.1,755.1,95.6666666667,1,40.6666666667,0.4666666667,41.9830165105,41.9830165105 -50,0,20.2,38.9,18.29,40.59,21.2,39,20.2,36.29,18.7,42.8528571429,1.29,83.69,19.2,37.7,20.6,43.9666666667,18,41.6633333333,1.1,755.05,95.8333333333,1,39.3333333333,0.4833333333,19.0439710743,19.0439710743 -70,10,20.2,38.9,18.29,40.59,21.2,39,20.2,36.3266666667,18.7,42.876,1.26,83.56,19.2,37.76,20.6,44,18,41.745,1.1,755,96,1,38,0.5,25.8687217138,25.8687217138 -70,0,20.2,39.03,18.26,40.59,21.2,39,20.1333333333,36.5266666667,18.7,43.1214285714,1.2,83.2266666667,19.2,38,20.6,44.1333333333,17.9633333333,41.8633333333,1.05,754.9833333333,95.8333333333,1,38.6666666667,0.4333333333,2.9673724785,2.9673724785 -40,10,20.2,39.3633333333,18.2,40.6633333333,21.1666666667,38.7233333333,20.1666666667,36.4333333333,18.7,43.67,1.2,83.3,19.2,37.96,20.5,44.1633333333,17.9633333333,41.79,1,754.9666666667,95.6666666667,1,39.3333333333,0.3666666667,1.0754609481,1.0754609481 -40,0,20.2,39.4633333333,18.2,40.8266666667,21.1666666667,38.59,20.1,36.5,18.6142857143,43.8371428571,1.2,83.3666666667,19.2,37.6785714286,20.5,44.03,18,41.76,0.95,754.95,95.5,1,40,0.3,8.1650420907,8.1650420907 -50,0,20.2,39.59,18.2,40.9666666667,21.1,38.59,20.1,36.4666666667,18.5946428571,44.1310714286,1.2,83.5,19.2,37.45,20.5,43.7233333333,18,41.7,0.9,754.9333333333,95.3333333333,1,40.6666666667,0.2333333333,48.5471792286,48.5471792286 -40,0,20.1666666667,39.6566666667,18.2,40.9666666667,21.1,38.59,20.0333333333,36.3266666667,18.575,44.425,1.2,83.5,19.0833333333,36.7466666667,20.4266666667,43.39,18,41.6333333333,0.85,754.9166666667,95.1666666667,1,41.3333333333,0.1666666667,36.0149925807,36.0149925807 -40,0,20.1,39.73,18.2,40.8266666667,21.1,38.4666666667,20,36.1633333333,18.54,44.594,1.3233333333,83.9333333333,19,36.074,20.39,42.9,18,41.4333333333,0.8,754.9,95,1,42,0.1,44.0531613422,44.0531613422 -80,0,20.1,39.6633333333,18.2,40.6633333333,21.0333333333,38.2666666667,20,36.03,18.5,44.8971428571,1.4633333333,84.06,18.9214285714,35.6942857143,20.39,42.5,18,41.1333333333,0.9333333333,754.9166666667,94.8333333333,1,44.1666666667,0.2,22.3046678468,22.3046678468 -60,0,20.1,39.6633333333,18.2,40.4475,21,38.1633333333,20,35.9666666667,18.5,45.09,1.6,84.09,18.89,35.254,20.29,42.1333333333,17.9266666667,40.86,1.0666666667,754.9333333333,94.6666666667,1,46.3333333333,0.3,49.6057152981,49.6057152981 -300,0,20.1,39.73,18.2,40.4,20.9266666667,38.03,19.9266666667,35.9,18.5,45.2357142857,1.6666666667,84.23,18.89,35.04,20.29,41.8,17.89,40.5266666667,1.2,754.95,94.5,1,48.5,0.4,15.6043479219,15.6043479219 -70,0,20.1,39.5925,18.2,40.4,20.89,38,19.89,35.9,18.478,45.334,1.8266666667,84.3666666667,18.83,34.794,20.26,41.49,17.89,40.2666666667,1.3333333333,754.9666666667,94.3333333333,1,50.6666666667,0.5,20.2454047045,20.2454047045 -360,10,20.1,39.4,18.2,40.3266666667,20.8566666667,37.8333333333,19.89,35.8266666667,18.39,45.29,2.0266666667,84.56,18.79,34.5257142857,20.2,41.1566666667,17.89,39.9666666667,1.4666666667,754.9833333333,94.1666666667,1,52.8333333333,0.6,30.8240583516,30.8240583516 -170,0,20.1,39.29,18.23,40.2,20.79,37.6266666667,19.8566666667,35.76,18.39,45.29,2.3,84.745,18.79,34.4,20.2,40.93,17.89,39.7666666667,1.6,755,94,1,55,0.7,49.0417061257,49.0417061257 -330,0,20.1,39.1566666667,18.23,40.0666666667,20.7,37.56,19.8566666667,35.76,18.39,45.3528571429,2.6566666667,84.9,18.7385714286,34.2542857143,20.2,40.73,17.8566666667,39.4666666667,1.7833333333,755,93,1,56.1666666667,0.7333333333,13.482676656,13.482676656 -210,0,20,38.9666666667,18.29,39.93,20.7,37.4333333333,19.89,35.79,18.37,45.4,2.93,84.9,18.7,34.134,20.1,40.5,17.8566666667,39.8,1.9666666667,755,92,1,57.3333333333,0.7666666667,29.6004140633,29.6004140633 -310,0,20,38.9,18.3566666667,39.73,20.6666666667,37.29,19.89,35.79,18.3185714286,45.4,3.1566666667,84.83,18.7,33.9971428571,20.1,40.86,17.9266666667,41.0966666667,2.15,755,91,1,58.5,0.8,25.187840662,25.187840662 -350,0,20.0333333333,38.8266666667,18.4266666667,39.59,20.6,37.29,19.8233333333,35.73,18.3275,45.4,3.3633333333,84.4966666667,18.7,33.79,20.1,41.06,18,41.29,2.3333333333,755,90,1,59.6666666667,0.8333333333,17.7199978032,17.7199978032 -140,0,20.0333333333,38.7666666667,18.5,39.53,20.6,37.29,19.815,35.7225,18.29,45.4,3.6566666667,84.19,18.7,33.6971428571,20.1,41.09,18,41.06,2.5166666667,755,89,1,60.8333333333,0.8666666667,9.6853319439,9.6853319439 -90,0,20,38.4,18.5,39.3333333333,20.6,37.43,19.8566666667,35.76,18.29,45.3842857143,3.93,83.8566666667,18.7,33.572,20.1,41.09,18,40.9333333333,2.7,755,88,1,62,0.9,10.1162457955,10.1162457955 -400,0,20.0666666667,38.26,18.5,39.1266666667,20.6,37.3633333333,19.8566666667,35.76,18.29,45.334,4.16,82.5,18.6285714286,33.3971428571,20,40.9,18,40.6,2.8333333333,754.9333333333,86.3333333333,1,55,0.75,12.0697462698,12.0697462698 -230,0,20.0333333333,38.1266666667,18.5,38.9666666667,20.6,37.23,19.79,35.7,18.29,45.29,4.3666666667,81.1666666667,18.6,33.2,20,40.8266666667,18,40.2233333333,2.9666666667,754.8666666667,84.6666666667,1,48,0.6,3.5838938318,3.5838938318 -60,0,20.1,38.2,18.5,38.8266666667,20.6,36.9666666667,19.8233333333,35.73,18.236,45.2,4.53,78.9266666667,18.6,33.0928571429,20,40.7233333333,18,40.03,3.1,754.8,83,1,41,0.45,23.4181723907,23.4181723907 -70,0,20.1,38.06,18.5333333333,38.56,20.6,36.9,19.8233333333,35.6566666667,18.2385714286,45.1242857143,4.73,77,18.6,32.98,20,40.59,18,39.7233333333,3.2333333333,754.7333333333,81.3333333333,1,34,0.3,42.4916714546,42.4916714546 -80,0,20.1,38.06,18.6,38.5,20.5666666667,36.79,19.79,35.56,18.2,45,4.9633333333,76.3633333333,18.6,32.9,19.89,40.5,17.9266666667,39.53,3.3666666667,754.6666666667,79.6666666667,1,27,0.15,27.3215548601,27.3215548601 -70,0,20.1,37.8633333333,18.5666666667,38.4,20.5,36.79,19.79,35.5,18.2,45,5.1566666667,75.6966666667,18.56,32.79,19.89,40.4333333333,17.89,39.26,3.5,754.6,78,1,20,0,45.0986401294,45.0986401294 -60,0,20.1,37.73,18.5666666667,38.3266666667,20.5,36.7,19.76,35.5,18.2,44.9,5.3666666667,74.06,18.5428571429,32.7128571429,19.89,40.29,17.89,39.1266666667,3.7166666667,754.55,76.1666666667,1,20.8333333333,-0.15,12.0672976598,12.0672976598 -50,0,20.1333333333,37.7,18.6,38.26,20.5,36.7,19.76,35.4333333333,18.2,44.8371428571,5.56,71.7933333333,18.52,32.616,19.89,40.23,17.89,38.93,3.9333333333,754.5,74.3333333333,1,21.6666666667,-0.3,43.6842488125,43.6842488125 -30,0,20.1333333333,37.6266666667,18.675,38.15,20.5,36.7,19.79,35.29,18.2,44.79,5.7266666667,69.9666666667,18.5571428571,32.5,19.8566666667,40.1333333333,17.89,38.73,4.15,754.45,72.5,1,22.5,-0.45,27.1879522945,27.1879522945 -40,0,20.1333333333,37.4666666667,18.7,37.9333333333,20.4266666667,36.6266666667,19.79,35.29,18.2,44.7257142857,5.9333333333,68.2333333333,18.54,32.29,19.79,39.86,17.89,38.5,4.3666666667,754.4,70.6666666667,1,23.3333333333,-0.6,37.9829888581,37.9829888581 -50,0,20.2,37.4,18.7,37.76,20.39,36.59,19.76,35.1633333333,18.2,44.7,6.4,65.75,18.5142857143,32.15,19.79,39.76,17.89,38.5,4.5833333333,754.35,68.8333333333,1,24.1666666667,-0.75,28.8276456995,28.8276456995 -390,0,20.2,37.245,18.76,37.6266666667,20.39,36.53,19.76,35.09,18.2,44.656,6.66,63.66,18.5,31.9675,19.79,39.6266666667,17.89,38.26,4.8,754.3,67,1,25,-0.9,30.663364369,30.663364369 -410,0,20.2,37.3,18.79,37.59,20.39,36.7233333333,19.79,35.09,18.2,44.554,6.9933333333,62.8,18.5,31.83,19.79,39.5,17.89,38.2,4.8666666667,754.2333333333,66.5,1,25.1666666667,-0.95,23.7492496497,23.7492496497 -630,0,20.2,37.4333333333,18.79,37.6633333333,20.5666666667,37.5566666667,19.79,35.09,18.2,44.5385714286,7.4333333333,60.5266666667,18.5,31.7257142857,19.79,39.36,17.89,37.9666666667,4.9333333333,754.1666666667,66,1,25.3333333333,-1,30.0827487605,30.0827487605 -450,0,20.3233333333,38.83,18.8233333333,37.8666666667,20.8266666667,38.4233333333,19.7,35.09,18.2,44.5,7.5,56.1333333333,18.5,31.6,19.76,39.1333333333,17.89,37.9,5,754.1,65.5,1,25.5,-1.05,44.0055793966,44.0055793966 -420,0,20.4633333333,41.63,18.89,39,21.2633333333,38.9633333333,19.7,35.09,18.2,44.5257142857,7.9666666667,54.1266666667,18.5428571429,31.4371428571,19.7,38.975,17.89,37.8633333333,5.0666666667,754.0333333333,65,1,25.6666666667,-1.1,48.848890455,48.848890455 -370,0,20.5333333333,41.23,19,40.36,21.5966666667,39.1633333333,19.79,35.1266666667,18.1,44.736,8.2333333333,51.7333333333,18.5,31.272,19.7,38.8266666667,17.89,37.73,5.1333333333,753.9666666667,64.5,1,25.8333333333,-1.15,47.4784012535,47.4784012535 -170,0,20.6,41.23,19.0666666667,41.0266666667,21.89,39.29,19.79,35.295,18.1571428571,45.0971428571,8.46,48.9,18.5714285714,31.1714285714,19.76,38.79,17.89,37.6633333333,5.2,753.9,64,1,26,-1.2,16.397077078,16.397077078 -70,0,20.7,41.3333333333,19.1333333333,41.7966666667,21.9633333333,39.1566666667,19.79,35.4666666667,18.2,45.416,8.66,47.6333333333,18.6,30.956,19.7,38.73,17.89,37.59,5.2666666667,753.7833333333,62.6666666667,1,26,-1.4333333333,11.2880067434,11.2880067434 -60,0,20.76,40.9266666667,19.2,41.33,22.0666666667,38.96,19.79,35.6266666667,18.2,45.7257142857,8.83,47.6233333333,18.6,30.82,19.79,38.6633333333,17.89,37.545,5.3333333333,753.6666666667,61.3333333333,1,26,-1.6666666667,12.4697640422,12.4697640422 -60,0,20.8233333333,40.2966666667,19.2,40.6333333333,21.9266666667,38.6266666667,19.79,35.7,18.2,45.9,8.9633333333,48.03,18.6,30.794,19.73,38.53,17.89,37.26,5.4,753.55,60,1,26,-1.9,32.0243994356,32.0243994356 -70,0,20.89,39.83,19.2,40.2266666667,21.76,38.26,19.79,35.6633333333,18.2,45.9,9.1,48.1966666667,18.6,30.7257142857,19.7,38.43,17.89,37.0666666667,5.4666666667,753.4333333333,58.6666666667,1,26,-2.1333333333,32.9842868727,32.9842868727 -70,0,20.89,39.2966666667,19.23,39.7233333333,21.6333333333,38.0666666667,19.79,35.59,18.2,45.878,9.1,47.7966666667,18.6,30.56,19.7,38.1566666667,17.89,36.8333333333,5.5333333333,753.3166666667,57.3333333333,1,26,-2.3666666667,18.3405053103,18.3405053103 -60,0,20.89,38.9633333333,19.29,39.39,21.6,37.7233333333,19.79,35.4666666667,18.175,45.70875,9.0666666667,45.7266666667,18.6,30.3671428571,19.7,37.93,17.89,36.5666666667,5.6,753.2,56,1,26,-2.6,13.932587381,13.932587381 -70,0,20.89,38.5266666667,19.29,38.99,21.5333333333,37.4633333333,19.79,35.4,18.2,45.5642857143,9.0666666667,42.2666666667,18.6,30.16,19.7,37.73,17.89,36.3633333333,5.6666666667,753.1333333333,54.1666666667,1.1666666667,28.3333333333,-3.0166666667,36.8889837409,36.8889837409 -60,0,20.89,38.2666666667,19.3566666667,38.5966666667,21.4633333333,37.2233333333,19.79,35.29,18.2,45.356,8.89,38.1933333333,18.6285714286,30,19.7,37.43,17.89,36.0966666667,5.7333333333,753.0666666667,52.3333333333,1.3333333333,30.6666666667,-3.4333333333,5.0633289153,5.0633289153 -40,0,20.89,37.93,19.39,38.1933333333,21.39,37.03,19.79,35.29,18.2,45.2228571429,8.9633333333,36.1933333333,18.64,29.79,19.7,37.1566666667,17.89,35.6933333333,5.8,753,50.5,1.5,33,-3.85,30.3364741849,30.3364741849 -40,0,20.89,37.73,19.4175,37.725,21.39,36.9,19.79,35.26,18.2,45.072,9.19,36.04,18.7,29.6257142857,19.7,36.8633333333,17.89,35.36,5.8666666667,752.9333333333,48.6666666667,1.6666666667,35.3333333333,-4.2666666667,9.2443660367,9.2443660367 -130,0,20.89,37.43,19.5,37.3,21.3233333333,36.8266666667,19.8566666667,35.2,18.1571428571,44.85,9.39,35.33,18.7,29.37,19.76,36.73,17.89,35.1933333333,5.9333333333,752.8666666667,46.8333333333,1.8333333333,37.6666666667,-4.6833333333,2.2442032816,2.2442032816 -40,0,20.89,37.23,19.4266666667,36.93,21.245,36.645,19.8233333333,35.03,18.2,44.7,9.39,36.53,18.7642857143,29.1971428571,19.76,36.4666666667,17.89,35.66,6,752.8,45,2,40,-5.1,34.6199190943,34.6199190943 -50,0,20.89,36.995,19.5,36.73,21.1666666667,36.53,19.89,34.9633333333,18.1857142857,44.54,9.33,34.1333333333,18.79,28.956,19.7,36.3266666667,18,36.9933333333,5.9333333333,752.7166666667,45.8333333333,2,40,-4.9166666667,31.7399617285,31.7399617285 -50,0,20.79,36.6633333333,19.4633333333,36.5266666667,21.1,36.53,19.8233333333,34.79,18.16,44.378,9.33,34.3933333333,18.79,28.7528571429,19.7,36.26,18,37.5266666667,5.8666666667,752.6333333333,46.6666666667,2,40,-4.7333333333,48.5642697313,48.5642697313 -60,0,20.79,36.4633333333,19.39,36.3266666667,21.1,36.3633333333,19.8233333333,34.6566666667,18.1285714286,44.2257142857,9.19,34.29,18.79,28.62,19.7,36.0666666667,17.9266666667,38,5.8,752.55,47.5,2,40,-4.55,35.1065075374,35.1065075374 -40,0,20.79,36.26,19.3566666667,36.1633333333,21.1,36.29,19.79,34.3633333333,18.14,44.09,8.99,34.43,18.7642857143,28.5,19.7,35.8333333333,18,38,5.7333333333,752.4666666667,48.3333333333,2,40,-4.3666666667,47.0241073403,47.0241073403 -50,0,20.79,36.1266666667,19.29,36.03,21.0666666667,36.1633333333,19.79,34.23,18.1142857143,43.9557142857,8.3966666667,35.2666666667,18.7,28.39,19.7,35.6266666667,18,37.7966666667,5.6666666667,752.3833333333,49.1666666667,2,40,-4.1833333333,43.2315354235,43.2315354235 -40,0,20.7,36.09,19.26,35.9666666667,21,36.09,19.76,34.09,18.1,43.878,8.0633333333,36.6666666667,18.7,28.4528571429,19.7,35.59,18,37.4633333333,5.6,752.3,50,2,40,-4,6.7230996792,6.7230996792 -50,0,20.7,36.03,19.2,35.8266666667,20.9633333333,36.1633333333,19.7,34.0225,18.1,43.7642857143,7.8666666667,36.3966666667,18.7,28.4175,19.7,35.56,18,37.26,5.55,752.2333333333,53.3333333333,2.1666666667,37,-3.3,5.0315702101,5.0315702101 -40,0,20.7,35.8633333333,19.2,35.76,20.89,36.03,19.7,33.9333333333,18.1,43.59,7.8,36.73,18.7,28.37,19.6333333333,35.4333333333,18,37.1266666667,5.5,752.1666666667,56.6666666667,2.3333333333,34,-2.6,28.516191477,28.516191477 -50,0,20.7,35.79,19.2,35.6266666667,20.9633333333,36.2,19.7,33.8633333333,18.1,43.5385714286,8.13,36.6266666667,18.7,28.2257142857,19.6666666667,35.4666666667,17.945,36.895,5.45,752.1,60,2.5,31,-1.9,48.1294711703,48.1294711703 -60,0,20.6666666667,35.6333333333,19.2,35.4666666667,20.89,36.1266666667,19.7,33.73,18.1,43.48,8.2633333333,35.5,18.6,28,19.6,35.4,18,36.6633333333,5.4,752.0333333333,63.3333333333,2.6666666667,28,-1.2,48.9459395059,48.9459395059 -50,0,20.6,35.5,19.2,35.4,20.89,36.03,19.7,33.6633333333,18.1,43.3685714286,8.16,33.2566666667,18.6,27.9842857143,19.6,35.26,18,36.53,5.35,751.9666666667,66.6666666667,2.8333333333,25,-0.5,8.7369999499,8.7369999499 -50,0,20.6,35.4,19.1666666667,35.26,20.89,36.03,19.6333333333,33.53,18.1,43.254,8.1,32.1966666667,18.6,27.89,19.6,35.1266666667,17.89,36.2233333333,5.3,751.9,70,3,22,0.2,46.029573516,46.029573516 -40,0,20.6,35.3266666667,19.1,35.2,20.8566666667,36.06,19.6,33.5,18.1,43.1528571429,7.83,31.53,18.6,27.89,19.6,35,17.89,36.03,5.1666666667,751.8833333333,70.5,3,22.1666666667,0.1666666667,44.1261716071,44.1261716071 -30,0,20.5,35.2,19,35.09,20.79,36,19.6,33.5,18.06,43.08,7.5633333333,31.4633333333,18.5,27.89,19.5333333333,34.9333333333,17.89,35.8333333333,5.0333333333,751.8666666667,71,3,22.3333333333,0.1333333333,41.4445655304,41.4445655304 -40,0,20.5,35.2,19,35.09,20.79,35.6333333333,19.6,33.4,18.0285714286,42.9285714286,7.1266666667,32.0233333333,18.5,27.9842857143,19.5,34.9,17.89,35.6266666667,4.9,751.85,71.5,3,22.5,0.1,44.1515693674,44.1515693674 -60,0,20.5,35.29,19,35.23,20.79,35.4333333333,19.6,33.4,18.06,42.916,6.7975,32.7675,18.5,28.02,19.5,34.9666666667,17.8566666667,35.43,4.7666666667,751.8333333333,72,3,22.6666666667,0.0666666667,29.1526362067,29.1526362067 -80,0,20.4266666667,35.23,18.9175,35.3175,20.7,35.2,19.5666666667,33.5,18.0857142857,42.8214285714,6.4633333333,35.9333333333,18.5,28.1714285714,19.6,35.0966666667,17.8566666667,35.23,4.6333333333,751.8166666667,72.5,3,22.8333333333,0.0333333333,5.3737175069,5.3737175069 -100,0,20.39,35.2,18.89,35.4666666667,20.7,35.2,19.5,33.56,18.04,42.736,6.1266666667,40.0666666667,18.5,28.434,19.6666666667,35.49,17.79,35.09,4.5,751.8,73,3,23,0,44.4682380999,44.4682380999 -110,0,20.39,35.26,18.8233333333,35.53,20.6,35.1266666667,19.5,33.73,18,42.7,5.9333333333,42.1266666667,18.4842857143,28.7228571429,19.73,35.86,17.79,35.09,4.4166666667,751.8,73.8333333333,2.8333333333,22.8333333333,0.0666666667,9.5127713634,9.5127713634 -100,0,20.445,35.6,18.89,35.6633333333,20.6,35.2225,19.5,33.8633333333,18,42.7,5.6566666667,44.3333333333,18.39,28.872,19.8566666667,36.2666666667,17.79,35.1266666667,4.3333333333,751.8,74.6666666667,2.6666666667,22.6666666667,0.1333333333,43.074665207,43.074665207 -90,0,20.39,35.73,18.89,35.79,20.6,35.29,19.5,34.03,18,42.634,5.53,45.4666666667,18.39,29.0285714286,19.9266666667,36.6933333333,17.79,35.2,4.25,751.8,75.5,2.5,22.5,0.2,7.5274211238,7.5274211238 -110,0,20.39,35.79,18.9633333333,35.79,20.7,35.5,19.4266666667,34.09,18,42.6528571429,5.3,46.6666666667,18.39,29.2,20.0666666667,37.16,17.79,35.2,4.1666666667,751.8,76.3333333333,2.3333333333,22.3333333333,0.2666666667,21.1643583374,21.1643583374 -310,0,20.39,35.7,19,35.9,20.6333333333,35.4333333333,19.4633333333,34.29,18,42.656,5.16,47.5333333333,18.39,29.2914285714,20.1,37.53,17.79,35.2,4.0833333333,751.8,77.1666666667,2.1666666667,22.1666666667,0.3333333333,35.0018235971,35.0018235971 -200,0,20.4633333333,36.4266666667,19.0666666667,35.9666666667,20.6333333333,35.4333333333,19.4633333333,34.43,18,42.7,4.9666666667,48.4966666667,18.33,29.412,20.1666666667,37.53,17.79,35.29,4,751.8,78,2,22,0.4,10.6580660562,10.6580660562 -210,10,20.5333333333,38.7633333333,19.2,36,20.7,35.5,19.39,34.6,18,42.754,4.9,49.3633333333,18.29,29.5285714286,20.2,37.645,17.79,35.29,3.95,751.7666666667,78.1666666667,2.1666666667,21.8333333333,0.3833333333,22.2503012395,22.2503012395 -90,10,20.6666666667,39.8966666667,19.26,36.06,20.7,35.73,19.39,35,18,42.84,4.7633333333,50.2333333333,18.29,29.64,20.2,37.6,17.76,35.29,3.9,751.7333333333,78.3333333333,2.3333333333,21.6666666667,0.3666666667,19.3000465631,19.3000465631 -90,0,20.7,39.73,19.3233333333,36.53,20.7,35.79,19.39,35,18,43,4.6233333333,51.0333333333,18.29,29.7128571429,20.2,37.2666666667,17.7,35.29,3.85,751.7,78.5,2.5,21.5,0.35,37.3755173641,37.3755173641 -100,10,20.76,40.1233333333,19.39,36.93,20.7,36.0666666667,19.39,34.93,18,43.2957142857,4.4666666667,51.8666666667,18.29,29.81,20.2,37.2666666667,17.7,35.345,3.8,751.6666666667,78.6666666667,2.6666666667,21.3333333333,0.3333333333,3.7747005117,3.7747005117 -100,10,20.79,39.3,19.5,37.36,20.7,36.26,19.39,34.79,18,43.536,4.4,52.0666666667,18.3185714286,29.9971428571,20.26,37.4666666667,17.7,35.4,3.75,751.6333333333,78.8333333333,2.8333333333,21.1666666667,0.3166666667,10.9400415095,10.9400415095 -80,10,20.79,38.6333333333,19.5666666667,37.56,20.7,36.4,19.39,34.6633333333,18,43.7042857143,4.2633333333,52.0266666667,18.39,30.236,20.3566666667,37.6266666667,17.7,35.4,3.7,751.6,79,3,21,0.3,40.492670692,40.492670692 -90,20,20.89,38.1933333333,19.6333333333,37.56,20.76,36.4,19.3233333333,34.53,18.14,48.714,4.19,51.7666666667,18.4528571429,30.41,20.3566666667,37.7,17.7,35.29,3.65,751.5666666667,79.5,2.8333333333,20.8333333333,0.3333333333,22.1822028048,22.1822028048 -130,40,20.89,37.8,19.7,37.4333333333,20.79,36.4666666667,19.39,34.6333333333,18.6714285714,66.6657142857,4.0266666667,51.6633333333,18.5,30.625,20.4266666667,37.79,17.7,35.29,3.6,751.5333333333,80,2.6666666667,20.6666666667,0.3666666667,22.9051343049,22.9051343049 -80,30,20.9266666667,37.56,19.73,37.2666666667,20.79,36.4,19.5966666667,35.16,18.736,57.66,3.7675,52.4475,18.56,30.736,20.5,37.8633333333,17.7,35.29,3.55,751.5,80.5,2.5,20.5,0.4,7.4751038104,7.4751038104 -90,20,21,37.56,19.79,37.4,20.79,36.4,20.2666666667,35.6266666667,19.01,52.9642857143,3.59,53.7333333333,18.6,30.7257142857,20.5,37.9,17.7,35.29,3.5,751.4666666667,81,2.3333333333,20.3333333333,0.4333333333,0.4889984732,0.4889984732 -100,0,21.0333333333,37.6266666667,19.89,37.53,20.79,36.4,20.8666666667,35.7,19.274,49.62,3.4666666667,55.1233333333,18.6,30.89,20.5666666667,37.9666666667,17.7,35.29,3.45,751.4333333333,81.5,2.1666666667,20.1666666667,0.4666666667,27.3739642696,27.3739642696 -150,0,21.1,37.6266666667,19.9175,37.645,20.76,36.4,21.2,35.2666666667,19.58,55.2571428571,3.3266666667,56.1233333333,18.6142857143,31.0557142857,20.6333333333,38.03,17.7,35.29,3.4,751.4,82,2,20,0.5,6.8153224653,6.8153224653 -100,10,21.1,37.43,20,37.53,20.76,36.4,21.1333333333,34.8,20.874,83.016,3.26,57.1333333333,18.66,31.218,20.7,38.09,17.6666666667,35.26,3.35,751.3833333333,81.6666666667,2,20.1666666667,0.4166666667,22.1831097268,22.1831097268 -100,0,21.1666666667,37.23,20.0333333333,37.29,20.8233333333,36.4,20.9633333333,34.4666666667,21.0557142857,79.6214285714,3.1266666667,57.9333333333,18.7,31.3928571429,20.7,38.09,17.6,35.2,3.3,751.3666666667,81.3333333333,2,20.3333333333,0.3333333333,32.5161645887,32.5161645887 -100,0,21.2,37,20.1,37.29,20.89,36.45,20.8233333333,34.3266666667,21.212,80.356,3.06,58.8966666667,18.7,31.6,20.7,38.09,17.6666666667,35.29,3.25,751.35,81,2,20.5,0.25,35.9190282878,35.9190282878 -100,0,21.2675,37,20.1,37.26,20.89,36.4666666667,20.6666666667,34.1633333333,22.2671428571,86.9642857143,3,59.5633333333,18.7,31.6985714286,20.7,38.5266666667,17.6,35.29,3.2,751.3333333333,80.6666666667,2,20.6666666667,0.1666666667,42.3176812823,42.3176812823 -80,0,21.29,37,20.1,37.2,20.89,36.5,20.6,34.09,21.314,90.14,2.9666666667,60.7633333333,18.7,31.89,20.76,39.1933333333,17.6,35.29,3.15,751.3166666667,80.3333333333,2,20.8333333333,0.0833333333,45.5817373004,45.5817373004 -90,0,21.29,36.9,20.1,37.09,20.89,36.5,20.5,34.09,20.8571428571,90.6228571429,2.9,61.6966666667,18.7385714286,32.09,20.79,39.53,17.6,35.29,3.1,751.3,80,2,21,0,32.3116154643,32.3116154643 -50,10,21.29,36.8266666667,20.1,37.09,20.79,36.5,20.4266666667,34.03,20.68,89.07,2.8633333333,62.1566666667,18.7,32.09,20.8566666667,39.6633333333,17.6,35.29,3.0833333333,751.25,80,2,21.1666666667,-0.0333333333,19.5749399369,19.5749399369 -50,10,21.29,36.7,20.1,37.06,20.79,36.6333333333,20.29,34.145,20.5714285714,85.3657142857,2.6566666667,62.49,18.7,32.22,20.89,39.8266666667,17.6,35.3633333333,3.0666666667,751.2,80,2,21.3333333333,-0.0666666667,6.3478408963,6.3478408963 -50,0,21.29,36.7,20.0333333333,36.8,20.7,36.73,20.29,34.5666666667,20.40625,80.975,2.56,62.86,18.7,32.5,20.89,40.295,17.6333333333,35.7633333333,3.05,751.15,80,2,21.5,-0.1,26.75890557,26.75890557 -50,0,21.29,36.59,19.9633333333,36.7,20.7,36.79,20.23,34.76,20.2,78.354,2.36,63.1333333333,18.7,32.7257142857,20.89,40.9,17.7,36.7175,3.0333333333,751.1,80,2,21.6666666667,-0.1333333333,11.3058102666,11.3058102666 -40,0,21.23,36.59,19.89,36.76,20.7,36.9333333333,20.2,34.9333333333,20.1428571429,77.1285714286,2.29,63.9966666667,18.7,32.976,20.8566666667,41.2666666667,17.7,37.06,3.0166666667,751.05,80,2,21.8333333333,-0.1666666667,39.3576358212,39.3576358212 -40,0,21.2,36.7,19.8566666667,36.79,20.7,37,20.1333333333,35,20.04,76.176,2.29,64.19,18.7,33.2985714286,20.79,41.5266666667,17.7,37.23,3,751,80,2,22,-0.2,49.9454959412,49.9454959412 -40,0,21.2,36.76,19.79,36.8633333333,20.6,36.9,20.0666666667,35.06,20,75.3685714286,2.245,63.7,18.7,33.478,20.79,41.9633333333,17.7,37.43,2.7833333333,751,80.8333333333,2,21.6666666667,-0.2666666667,21.473855339,21.473855339 -20,0,21.1,36.9333333333,19.7,37,20.6,36.9666666667,20,35.06,19.85,74.7,1.99,63.0633333333,18.7,33.6214285714,20.79,42.2233333333,17.7,37.6266666667,2.5666666667,751,81.6666666667,2,21.3333333333,-0.3333333333,46.2306623231,46.2306623231 -20,0,21.1,37.06,19.6333333333,36.9333333333,20.6,36.9,19.9633333333,35.09,19.79,73.8342857143,1.6633333333,62.8633333333,18.7,33.9,20.79,42.4633333333,17.7,37.76,2.35,751,82.5,2,21,-0.4,0.9331975016,0.9331975016 -30,0,21.1,37.36,19.5666666667,37,20.5333333333,36.9666666667,19.89,35.1633333333,19.736,72.836,1.2266666667,63.23,18.7,34.0628571429,20.73,42.6633333333,17.7,37.9,2.1333333333,751,83.3333333333,2,20.6666666667,-0.4666666667,31.3242009957,31.3242009957 -60,0,21.0333333333,37.5,19.5,37.06,20.5,36.9,19.89,35.2,19.7,71.6814285714,0.9666666667,63.49,18.7,34.112,20.7,42.89,17.7,37.9666666667,1.9166666667,751,84.1666666667,2,20.3333333333,-0.5333333333,24.9751639669,24.9751639669 -50,0,21,37.4,19.39,37,20.5,36.9666666667,19.89,35.2,19.6,70.7,0.8333333333,64.1933333333,18.7,34.2,20.7,43.09,17.7,38.2666666667,1.7,751,85,2,20,-0.6,22.860107664,22.860107664 -50,0,21,37.4,19.39,36.9333333333,20.5,37.06,19.79,35.2,19.5142857143,69.7814285714,0.9666666667,64.5266666667,18.7,34.4,20.7,43.09,17.7,38.4666666667,1.7833333333,750.9333333333,84,2.1666666667,20.3333333333,-0.6833333333,43.3302574791,43.3302574791 -40,0,20.9633333333,37.3633333333,19.29,36.95,20.5,37.06,19.79,35.2,19.478,68.814,1.0333333333,64.6233333333,18.7128571429,34.5371428571,20.7,43.03,17.7,38.5,1.8666666667,750.8666666667,83,2.3333333333,20.6666666667,-0.7666666667,23.9725235035,23.9725235035 -40,0,20.89,37.29,19.26,36.9666666667,20.5,37.09,19.7,35.2,19.39,67.8828571429,1.1666666667,64.69,18.73,34.6933333333,20.6,42.8633333333,17.7,38.5,1.95,750.8,82,2.5,21,-0.85,26.859170734,26.859170734 -50,0,20.8566666667,37.2233333333,19.2,36.9666666667,20.5,37.09,19.7,35.2,19.39,67.24,1.3233333333,64.6566666667,18.7,34.8057142857,20.6,42.8633333333,17.7,38.6566666667,2.0333333333,750.7333333333,81,2.6666666667,21.3333333333,-0.9333333333,39.258506964,39.258506964 -50,0,20.79,37.0675,19.1,37,20.5,37.1633333333,19.7,35.2,19.3042857143,66.5714285714,1.39,64.59,18.7385714286,34.9285714286,20.5,43.0666666667,17.7,38.8633333333,2.1166666667,750.6666666667,80,2.8333333333,21.6666666667,-1.0166666667,35.5344348587,35.5344348587 -40,0,20.79,37,19.1,37,20.5,37.2,19.6333333333,35.1266666667,19.272,65.714,1.5,64.5633333333,18.79,35.09,20.5,43.26,17.7,39.03,2.2,750.6,79,3,22,-1.1,20.6875674892,20.6875674892 -60,0,20.7,36.9,19,36.9333333333,20.5,37.2,19.6,35.1633333333,19.2,64.8942857143,1.5666666667,64.5633333333,18.79,34.9985714286,20.5,43.4333333333,17.7,39.1633333333,2.2,750.5833333333,78.6666666667,3.1666666667,22.1666666667,-1.15,36.8507693755,36.8507693755 -50,0,20.7,36.9,19,37.06,20.5,37.2,19.6,35.09,19.16,64.014,1.6,64.2266666667,18.736,34.96,20.4266666667,43.6333333333,17.7,39.4,2.2,750.5666666667,78.3333333333,3.3333333333,22.3333333333,-1.2,14.6523953299,14.6523953299 -50,0,20.6666666667,36.8633333333,18.89,37.09,20.5,37.2,19.6,35.09,19.1285714286,63.2671428571,1.6666666667,64.3,18.7642857143,35.0642857143,20.39,44.03,17.7,39.4666666667,2.2,750.55,78,3.5,22.5,-1.25,7.5435470673,7.5435470673 -40,0,20.6,36.79,18.8233333333,37.09,20.5,37.2,19.5,35.2,19.1,62.516,1.7,63.99,18.79,35.134,20.39,44.2233333333,17.7,39.5,2.2,750.5333333333,77.6666666667,3.6666666667,22.6666666667,-1.3,19.5909668924,19.5909668924 -40,0,20.6,36.79,18.79,37.1266666667,20.5,37.26,19.5,35.2,19.0285714286,61.6528571429,1.7,63.565,18.79,35.2385714286,20.39,44.69,17.7,39.595,2.2,750.5166666667,77.3333333333,3.8333333333,22.8333333333,-1.35,41.5563132032,41.5563132032 -30,0,20.6,36.73,18.79,37.2,20.5,37.2,19.5,35.2,19,60.82,1.7,63.1566666667,18.79,35.2,20.39,44.9333333333,17.7,39.7,2.2,750.5,77,4,23,-1.4,25.5509472219,25.5509472219 -30,0,20.5,36.7,18.76,37.23,20.5,37.2,19.4266666667,35.1266666667,18.9528571429,60.3285714286,1.7,63.1633333333,18.7642857143,35.1214285714,20.39,45,17.7,39.73,2.1166666667,750.4333333333,77.5,3.8333333333,22.8333333333,-1.4166666667,7.9441216192,7.9441216192 -20,0,20.5,36.7,18.7,37.29,20.5,37.2,19.4633333333,35.1633333333,18.934,59.816,1.6333333333,62.83,18.7,35.09,20.29,44.9666666667,17.7,39.79,2.0333333333,750.3666666667,78,3.6666666667,22.6666666667,-1.4333333333,41.6948149796,41.6948149796 -40,0,20.5,36.7,18.6666666667,37.26,20.4266666667,37.2,19.39,35.09,18.89,59.3971428571,1.4633333333,62.8633333333,18.7,35.2985714286,20.29,44.9666666667,17.7,39.8266666667,1.95,750.3,78.5,3.5,22.5,-1.45,5.2578933304,5.2578933304 -50,0,20.5,36.7,18.6,37.26,20.39,37.1266666667,19.39,35.09,18.84,59,1.2633333333,62.93,18.7,35.334,20.29,45.06,17.7,39.9,1.8666666667,750.2333333333,79,3.3333333333,22.3333333333,-1.4666666667,0.6962257787,0.6962257787 -50,0,20.39,36.6266666667,18.6,37.29,20.39,37.2,19.39,35.09,18.8185714286,58.5542857143,0.8666666667,63.83,18.7,35.29,20.29,45,17.7,39.9,1.7833333333,750.1666666667,79.5,3.1666666667,22.1666666667,-1.4833333333,42.6838214509,42.6838214509 -40,0,20.39,36.6266666667,18.6,37.29,20.39,37.2,19.39,35.09,18.79,58.1785714286,0.6,64.3633333333,18.7,35.29,20.29,44.9666666667,17.7,39.9666666667,1.7,750.1,80,3,22,-1.5,48.7149064546,48.7149064546 -40,0,20.3566666667,36.7,18.5,37.3266666667,20.39,37.26,19.39,35.1633333333,18.79,57.9,0.3666666667,65.5,18.7128571429,35.4414285714,20.29,44.8266666667,17.7,40.03,1.6333333333,750.0833333333,80.5,3,21.8333333333,-1.4666666667,17.4382285448,17.4382285448 -50,0,20.29,36.7,18.5,37.4,20.4633333333,37.26,19.29,35.1633333333,18.79,57.6685714286,0.3,65.9,18.79,35.518,20.2,44.56,17.7,40.1633333333,1.5666666667,750.0666666667,81,3,21.6666666667,-1.4333333333,28.5683047958,28.5683047958 -40,0,20.29,36.7,18.39,37.29,20.39,37.2,19.29,35.09,18.7,57.356,-0.0333333333,66.3266666667,18.7257142857,35.6942857143,20.2,44.5,17.7,40.29,1.5,750.05,81.5,3,21.5,-1.4,32.3121027439,32.3121027439 -40,0,20.23,36.6266666667,18.39,37.29,20.445,37.245,19.29,35.09,18.7,57.1371428571,-0.1,67.3266666667,18.79,35.754,20.2,44.4666666667,17.7,40.3633333333,1.4333333333,750.0333333333,82,3,21.3333333333,-1.3666666667,33.0474911723,33.0474911723 -50,0,20.2,36.59,18.39,37.29,20.39,37.2,19.29,35.1633333333,18.7,56.9,-0.0666666667,68.66,18.79,35.7514285714,20.2,44.4,17.7,40.5,1.3666666667,750.0166666667,82.5,3,21.1666666667,-1.3333333333,41.8420642614,41.8420642614 -60,0,20.2,36.59,18.29,37.29,20.4633333333,37.26,19.23,35.09,18.7,56.5957142857,0.0666666667,69.2,18.772,35.79,20.1666666667,44.3633333333,17.7,40.5,1.3,750,83,3,21,-1.3,37.056620454,37.056620454 -50,0,20.1,36.59,18.29,37.29,20.4633333333,37.26,19.23,35.09,18.6,56.29,0.1666666667,68.8666666667,18.7642857143,35.79,20.1666666667,44.29,17.7,40.59,1.3,749.9833333333,82.6666666667,3,20.8333333333,-1.35,26.3135477318,26.3135477318 -40,0,20.1,36.59,18.2,37.23,20.4633333333,37.26,19.2,35.06,18.6,56.1371428571,0.1666666667,68.9333333333,18.736,35.79,20.1,44.29,17.7,40.59,1.3,749.9666666667,82.3333333333,3,20.6666666667,-1.4,12.8277956159,12.8277956159 -50,0,20.1,36.59,18.2,37.23,20.4633333333,37.26,19.2,35.06,18.58,55.918,0.25,68.95,18.7642857143,35.8528571429,20.1,44.29,17.7,40.7,1.3,749.95,82,3,20.5,-1.45,2.6020719204,2.6020719204 -40,0,20.0666666667,36.59,18.2,37.29,20.4633333333,37.26,19.2,35.09,18.5714285714,55.6942857143,0.1666666667,68.4,18.736,35.96,20.1,44.1633333333,17.76,40.7,1.3,749.9333333333,81.6666666667,3,20.3333333333,-1.5,6.5683825989,6.5683825989 -20,0,20,36.59,18.1333333333,37.29,20.4266666667,37.23,19.1,35.09,18.56,55.4,0.0333333333,68.5933333333,18.71125,36.01125,20.1,44.09,17.7,40.79,1.3,749.9166666667,81.3333333333,3,20.1666666667,-1.55,15.8390794415,15.8390794415 -30,0,20,36.59,18.1,37.29,20.5,37.29,19.1666666667,35.09,18.5285714286,55.2385714286,0,69,18.7257142857,36.09,20.0333333333,43.9333333333,17.7,40.8725,1.3,749.9,81,3,20,-1.6,7.8754880698,7.8754880698 -30,0,20,36.59,18.1,37.29,20.39,37.23,19.1,35.09,18.5,55.016,0,69.06,18.7,35.96,20.025,43.925,17.76,40.9,1.2166666667,749.9166666667,81,3.1666666667,20.3333333333,-1.6833333333,39.7596274153,39.7596274153 -40,0,19.9633333333,36.59,18.0666666667,37.26,20.39,37.29,19.1,35.09,18.5,54.8685714286,-0.2333333333,69.0266666667,18.7,36.0785714286,20,43.9,17.7,40.9,1.1333333333,749.9333333333,81,3.3333333333,20.6666666667,-1.7666666667,35.7282135985,35.7282135985 -60,0,19.89,36.59,18,37.26,20.39,37.29,19.1,35.09,18.456,54.656,-0.3666666667,69.2333333333,18.7,36.218,20,43.9,17.7,40.9666666667,1.05,749.95,81,3.5,21,-1.85,37.0231274399,37.0231274399 -50,0,19.89,36.59,18,37.3266666667,20.39,37.3633333333,19.1,35.09,18.4528571429,54.5385714286,-0.4,70.2266666667,18.7,36.1942857143,20,43.9,17.7,41,0.9666666667,749.9666666667,81,3.6666666667,21.3333333333,-1.9333333333,36.8500687997,36.8500687997 -40,0,19.89,36.59,18,37.3266666667,20.5,37.4333333333,19,35,18.478,54.458,-0.4666666667,70.16,18.7,36.036,19.9633333333,43.9,17.7,41,0.8833333333,749.9833333333,81,3.8333333333,21.6666666667,-2.0166666667,19.1737687448,19.1737687448 -50,0,19.89,36.59,17.9633333333,37.4333333333,20.5,37.5,19,35,18.39,54.2257142857,-0.5333333333,70.33,18.7,36.09,19.9633333333,43.9,17.73,41.03,0.8,750,81,4,22,-2.1,5.6566271931,5.6566271931 -40,0,19.89,36.59,17.89,37.5,20.5,37.5,19,35,18.39,54.09,-0.5333333333,70.93,18.7,36.112,20,43.9,17.73,41.03,0.7166666667,750.0166666667,81.5,3.8333333333,29.1666666667,-2.1166666667,24.9646818382,24.9646818382 -40,0,19.79,36.5,17.89,37.5,20.5,37.5,19,35,18.39,53.9985714286,-0.5,71.6333333333,18.7,36.2257142857,19.9266666667,43.9,17.7,41.09,0.6333333333,750.0333333333,82,3.6666666667,36.3333333333,-2.1333333333,23.149129888,23.149129888 -40,0,19.79,36.56,17.8233333333,37.4333333333,20.5,37.5,19,35.06,18.37,53.9,-0.5,71.5666666667,18.7,36.334,19.89,43.9,17.7,41.09,0.55,750.05,82.5,3.5,43.5,-2.15,23.8237780402,23.8237780402 -50,0,19.79,36.56,17.79,37.5,20.5,37.5,19,35.06,18.29,53.8214285714,-0.4666666667,72.3333333333,18.7,36.3685714286,19.89,43.9,17.76,41.09,0.4666666667,750.0666666667,83,3.3333333333,50.6666666667,-2.1666666667,3.4824578674,3.4824578674 -60,0,19.73,36.5,17.79,37.56,20.5,37.545,18.89,35.09,18.29,53.7,-0.4,72.1933333333,18.7,36.4,19.89,43.9,17.7,41.09,0.3833333333,750.0833333333,83.5,3.1666666667,57.8333333333,-2.1833333333,41.0160481697,41.0160481697 -50,0,19.7,36.53,17.79,37.56,20.5,37.5,18.89,35.09,18.29,53.6725,-0.4333333333,71.7966666667,18.7,36.4714285714,19.89,43.9,17.7,41.09,0.3,750.1,84,3,65,-2.2,32.5473914505,32.5473914505 -50,0,19.7,36.59,17.76,37.59,20.5,37.5,18.89,35.09,18.29,53.5771428571,-0.5,71.5925,18.7,36.5,19.89,43.9,17.7,41.09,0.3166666667,750.1166666667,83.5,3.1666666667,57.5,-2.25,23.1992032495,23.1992032495 -40,0,19.7,36.59,17.7,37.59,20.5,37.5,18.89,35.09,18.29,53.48,-0.5666666667,71.5933333333,18.7,36.5,19.8233333333,43.8266666667,17.7,41.1633333333,0.3333333333,750.1333333333,83,3.3333333333,50,-2.3,15.2403334738,15.2403334738 -40,0,19.6666666667,36.56,17.7,37.7,20.5,37.5,18.8566666667,35.06,18.2642857143,53.3685714286,-0.6333333333,71.6333333333,18.7,36.5,19.79,43.79,17.7,41.09,0.35,750.15,82.5,3.5,42.5,-2.35,27.3358328617,27.3358328617 -40,0,19.6666666667,36.6333333333,17.7,37.7,20.5,37.5,18.84,35.0675,18.2,53.29,-0.6333333333,71.9666666667,18.7,36.5,19.79,43.79,17.7,41.2,0.3666666667,750.1666666667,82,3.6666666667,35,-2.4,10.5521944584,10.5521944584 -30,0,19.6,36.53,17.6,37.73,20.5,37.5,18.8566666667,35.3633333333,18.2,53.2128571429,-0.5,71.9566666667,18.7,36.59,19.79,43.79,17.7,41.1266666667,0.3833333333,750.1833333333,81.5,3.8333333333,27.5,-2.45,35.6121101882,35.6121101882 -40,20,19.6,36.6633333333,17.6666666667,37.93,20.4633333333,37.43,19.1966666667,35.9333333333,18.2,53.178,-0.4333333333,71.5633333333,18.7,36.59,19.79,43.8633333333,17.7,41.045,0.4,750.2,81,4,20,-2.5,30.4420725675,30.4420725675 -60,20,19.6,36.9633333333,17.6333333333,38.03,20.39,37.1566666667,19.6566666667,36.1333333333,18.2,53.09,-0.2666666667,71.1666666667,18.7,36.536,19.79,44.1266666667,17.7,40.9666666667,0.55,750.3,80.3333333333,4,20.3333333333,-2.4666666667,9.1272147256,9.1272147256 -70,20,19.6666666667,37.1633333333,17.7,38.1633333333,20.29,37.06,20.1633333333,36.2,18.2,53.054,-0.1333333333,70.6333333333,18.7,36.5642857143,19.79,44.26,17.7,40.9,0.7,750.4,79.6666666667,4,20.6666666667,-2.4333333333,43.610064825,43.610064825 -70,30,19.6,37.06,17.7,38.4,20.29,37.06,20.3566666667,36.0666666667,18.2,53,0.0666666667,69.73,18.7,36.656,19.79,44.29,17.7,40.76,0.85,750.5,79,4,21,-2.4,17.6221461035,17.6221461035 -60,10,19.6,37.1333333333,17.76,38.4666666667,20.39,37.2,20.39,35.8333333333,18.14,52.94,0.2666666667,68.9966666667,18.7,36.7985714286,19.79,44.29,17.7,40.6266666667,1,750.6,78.3333333333,4,21.3333333333,-2.3666666667,2.2717412445,2.2717412445 -60,0,19.6,37.2666666667,17.79,38.53,20.3233333333,37.2,20.39,35.7,18.1714285714,52.8685714286,0.6333333333,67.9233333333,18.7,36.96,19.79,44.29,17.7,40.3633333333,1.15,750.7,77.6666666667,4,21.6666666667,-2.3333333333,6.8815787439,6.8815787439 -90,0,19.6666666667,37.6,17.8566666667,38.6633333333,20.29,37.1633333333,20.29,35.76,18.1,52.1,0.8333333333,66.9233333333,18.71125,37.295,19.79,44.2,17.7,40.23,1.3,750.8,77,4,22,-2.3,15.3658887255,15.3658887255 -40,0,19.6333333333,37.8,17.9266666667,38.8266666667,20.29,37.09,20.29,35.76,18.1857142857,50.1342857143,1.1633333333,66.1633333333,18.79,37.1942857143,19.79,44.2,17.7,40.06,1.5833333333,750.8333333333,76,4.3333333333,22.3333333333,-2.2333333333,20.0395354652,20.0395354652 -60,0,19.7,38.1333333333,18,38.9666666667,20.29,37.2,20.2,35.7666666667,18.218,48.792,1.43,64.4966666667,18.754,36.856,19.79,44.23,17.76,39.9333333333,1.8666666667,750.8666666667,75,4.6666666667,22.6666666667,-2.1666666667,48.634023522,48.634023522 -70,10,19.73,41.3333333333,18.1333333333,39.1933333333,20.29,37.2,20.2,36.16,18.2257142857,47.9857142857,1.7666666667,62.26,18.7,36.5842857143,19.79,44.23,17.79,39.5266666667,2.15,750.9,74,5,23,-2.1,8.2188648055,8.2188648055 -310,0,19.79,40.4666666667,18.2925,39.475,20.29,37.1633333333,20.29,36.73,18.2,48.616,2.0266666667,61.3333333333,18.718,36.554,19.79,44.1633333333,17.79,39.4,2.4333333333,750.9333333333,73,5.3333333333,23.3333333333,-2.0333333333,35.7159153442,35.7159153442 -290,0,19.79,39.93,18.4633333333,39.5,20.29,37.1633333333,20.29,36.73,18.1571428571,49.31,2.395,58.95,18.7514285714,36.8214285714,19.79,44.09,17.8233333333,39.1633333333,2.7166666667,750.9666666667,72,5.6666666667,23.6666666667,-1.9666666667,0.1125324285,0.1125324285 -60,0,19.79,39.73,18.6333333333,39.4,20.29,37.2,20.29,36.6,18.2,49.796,2.73,57.0933333333,18.79,36.416,19.79,44.26,17.89,39.03,3,751,71,6,24,-1.9,49.779406772,49.779406772 -50,0,19.79,39.5266666667,18.76,39.0666666667,20.29,37.29,20.29,36.2666666667,18.1285714286,50,2.99,55.7,18.7514285714,35.9057142857,19.79,44.0666666667,17.89,38.6933333333,3.25,751,69.1666666667,6,26.6666666667,-2.0333333333,43.4954582946,43.4954582946 -60,0,19.79,39.3266666667,18.8233333333,38.6333333333,20.29,37.29,20.2,36.09,18.1,50,3.23,53.8233333333,18.754,35.316,19.79,43.6933333333,17.89,38.5,3.5,751,67.3333333333,6,29.3333333333,-2.1666666667,4.0439693374,4.0439693374 -50,10,19.79,39.1,18.89,38.36,20.2,37.1633333333,20.26,36.1633333333,18.1,49.9857142857,3.3633333333,52.29,18.79,34.7671428571,19.79,43.3,17.89,38.1333333333,3.75,751,65.5,6,32,-2.3,44.3022556719,44.3022556719 -130,0,19.79,38.76,19.0333333333,38.06,20.2,37.09,20.29,36.06,18.1,49.878,3.53,50.4966666667,18.79,34.21,19.89,42.8633333333,17.89,37.9333333333,4,751,63.6666666667,6,34.6666666667,-2.4333333333,28.0604875064,28.0604875064 -380,0,19.79,38.6266666667,19.1,37.9333333333,20.2,37,20.29,35.8975,18.1,49.7257142857,3.7233333333,49.63,18.8042857143,34.3414285714,19.8233333333,42.2633333333,17.89,37.7666666667,4.25,751,61.8333333333,6,37.3333333333,-2.5666666667,17.4725390505,17.4725390505 -320,0,19.79,38.6266666667,19.1,38.03,20.1333333333,37.06,20.29,35.6566666667,18.1,49.554,3.9633333333,49.3933333333,18.956,34.736,19.9266666667,41.7233333333,17.89,37.9,4.5,751,60,6,40,-2.7,9.0253341594,9.0253341594 -130,0,19.79,38.7,19.1,38.1633333333,20.1333333333,37.06,20.29,35.79,18.075,49.41,4.23,48.6666666667,19.0714285714,34.7385714286,20.0666666667,41.4633333333,17.945,37.8,4.5833333333,751,59,6.1666666667,40,-2.8666666667,45.2630939195,45.2630939195 -110,0,19.8233333333,38.79,19.1,38.1266666667,20.2,37,20.29,35.79,18.0142857143,49.2385714286,4.4333333333,45.9966666667,19.1,34.356,20.23,41.1633333333,17.89,37.5266666667,4.6666666667,751,58,6.3333333333,40,-3.0333333333,44.1587091074,44.1587091074 -100,0,19.89,38.79,19.1,38.1266666667,20.1333333333,37,20.39,35.9,18.1,49.134,4.6266666667,42.1966666667,19.0142857143,33.4185714286,20.29,40.9633333333,17.89,37.2666666667,4.75,751,57,6.5,40,-3.2,16.7568008183,16.7568008183 -100,0,19.89,38.79,19.15,38.045,20.2,36.86,20.39,35.8266666667,18.0571428571,48.9828571429,4.8666666667,39.2633333333,19,32.516,20.445,40.645,17.89,37.0266666667,4.8333333333,751,56,6.6666666667,40,-3.3666666667,45.4702284303,45.4702284303 -100,10,19.89,38.73,19.2,37.9666666667,20.2,36.9,20.39,35.7,18,48.754,5.1266666667,37.6566666667,19,31.7285714286,20.5333333333,40.5266666667,17.89,36.7666666667,4.9166666667,751,55,6.8333333333,40,-3.5333333333,48.0201157392,48.0201157392 -110,0,19.89,38.56,19.2,37.8266666667,20.2,36.9,20.4633333333,35.7,18,48.6371428571,5.2266666667,34.1633333333,19.04,31.04,20.6666666667,40.2666666667,17.89,36.4666666667,5,751,54,7,40,-3.7,33.8698689244,33.8698689244 -100,0,19.9633333333,38.5,19.2,37.6633333333,20.2,36.9,20.5,35.6633333333,18,48.536,5.4333333333,32.6966666667,19.2085714286,31.0428571429,20.73,40.1333333333,17.89,36.1933333333,5.0833333333,750.9666666667,53.5,7.1666666667,40,-3.75,14.5422232454,14.5422232454 -90,0,20,38.1333333333,19.2,37.59,20.2,36.9,20.5,35.53,18,48.4285714286,5.7266666667,30.4,19.372,31,20.8566666667,39.9333333333,17.89,35.99,5.1666666667,750.9333333333,53,7.3333333333,40,-3.8,47.6640158799,47.6640158799 -100,0,20.0666666667,37.9333333333,19.23,37.53,20.2,36.9,20.6,35.43,18,48.29,5.8666666667,29.8,19.5714285714,30.9214285714,21.0333333333,39.6633333333,17.89,35.73,5.25,750.9,52.5,7.5,40,-3.85,41.8871120433,41.8871120433 -100,0,20.1,37.6633333333,19.29,37.53,20.2,36.9,20.6,35.23,18,48.15,6.09,28.1,19.7,30.79,21.2266666667,39.4633333333,17.89,35.4666666667,5.3333333333,750.8666666667,52,7.6666666667,40,-3.9,41.6602990124,41.6602990124 -70,0,20.1666666667,37.53,19.29,37.3633333333,20.23,36.8266666667,20.6,35.09,18,48.072,6.3666666667,28.8966666667,19.82,30.8628571429,21.36,39.1633333333,17.9633333333,35.3266666667,5.4166666667,750.8333333333,51.5,7.8333333333,40,-3.95,22.7993653156,22.7993653156 -70,0,20.23,37.4333333333,19.29,37.2675,20.29,36.9,20.6666666667,35.1633333333,18,47.9285714286,6.6266666667,28.83,19.872,31.06,21.5666666667,39.03,18,35.6266666667,5.5,750.8,51,8,40,-4,3.7279915879,3.7279915879 -70,10,20.29,37.6333333333,19.29,37.1266666667,20.245,36.845,20.6,34.93,18,47.754,6.69,27.2333333333,20.075,31.125,21.73,38.8633333333,18,35.8333333333,5.6333333333,750.7833333333,50.8333333333,7.8333333333,40,-3.9166666667,27.470580407,27.470580407 -50,0,20.3233333333,37.6266666667,19.39,37.09,20.2,36.8633333333,20.6,34.53,18,47.7,6.7633333333,27.8266666667,20.1285714286,30.9214285714,21.79,38.6566666667,18,36.1566666667,5.7666666667,750.7666666667,50.6666666667,7.6666666667,40,-3.8333333333,19.7915777797,19.7915777797 -120,0,20.39,37.76,19.39,37.09,20.2,36.79,20.5666666667,34.1333333333,18,47.616,6.9333333333,26.9666666667,20.2,30.5,21.89,38.56,18,36.29,5.9,750.75,50.5,7.5,40,-3.75,19.8627337697,19.8627337697 -480,0,20.39,37.395,19.39,36.9666666667,20.2,36.79,20.5,34,18,47.5,7.1266666667,26.0933333333,20.2514285714,30.5714285714,21.9633333333,38.2266666667,18,36.7633333333,6.0333333333,750.7333333333,50.3333333333,7.3333333333,40,-3.6666666667,42.3484394909,42.3484394909 -330,0,20.5,37.0633333333,19.39,36.9666666667,20.2,36.99,20.5,34.03,18,47.46,7.1233333333,25.5333333333,20.29,30.316,22,37.6933333333,18,37.8233333333,6.1666666667,750.7166666667,50.1666666667,7.1666666667,40,-3.5833333333,4.8939520726,4.8939520726 -290,10,20.5,36.93,19.4266666667,36.5266666667,20.46,37.8666666667,20.5,34.09,18,47.2385714286,7.19,26.0666666667,20.3614285714,29.8242857143,22.0666666667,37.36,18,38.5966666667,6.3,750.7,50,7,40,-3.5,0.5340252537,0.5340252537 -260,0,20.5333333333,37.36,19.5,36.3266666667,20.7266666667,38.3333333333,20.5,34.03,18,47.072,7.3333333333,26.0333333333,20.5,29.56,22.1,36.9,18.0666666667,38.99,6.3333333333,750.7333333333,49.6666666667,6.8333333333,40,-3.5666666667,23.9616114879,23.9616114879 -220,0,20.6,37.5,19.5,36.2,21.1333333333,38.56,20.5,33.9,18,46.9714285714,7.3333333333,25.3666666667,20.5571428571,29.1971428571,22.1,36.5666666667,18.1,39.245,6.3666666667,750.7666666667,49.3333333333,6.6666666667,40,-3.6333333333,31.3175508985,31.3175508985 -190,0,20.7,37.73,19.5,36.1266666667,21.3266666667,38.5,20.5,33.9,18,46.9,7.1233333333,25.4966666667,20.6,28.896,22.2,36.2233333333,18.1,39.4333333333,6.4,750.8,49,6.5,40,-3.7,1.5031490824,1.5031490824 -70,0,20.76,37.79,19.5,36.09,21.5333333333,38.2966666667,20.5,33.76,18,46.8057142857,7.19,26.0966666667,20.6714285714,28.6,22.2,35.9633333333,18.1,39.56,6.4333333333,750.8333333333,48.6666666667,6.3333333333,40,-3.7666666667,16.5354893892,16.5354893892 -70,0,20.79,37.76,19.5666666667,36.03,21.6,37.89,20.5,33.7,18,46.79,7.1233333333,25.8633333333,20.736,28.254,22.23,35.76,18.1,39.7,6.4666666667,750.8666666667,48.3333333333,6.1666666667,40,-3.8333333333,26.0510859662,26.0510859662 -60,0,20.8566666667,37.6266666667,19.6,35.9666666667,21.5666666667,37.43,20.5,33.59,18,46.7257142857,7.2633333333,26.39,20.79,28.0414285714,22.315,35.57,18.1,39.76,6.5,750.9,48,6,40,-3.9,16.8035067501,16.8035067501 -60,0,20.89,37.43,19.6,35.8266666667,21.4266666667,37.0966666667,20.5,33.59,18,46.656,7.3666666667,25.6666666667,20.85,27.852,22.39,35.3266666667,18.1,39.79,6.4333333333,750.95,48,6.1666666667,40,-3.95,32.9262583633,32.9262583633 -80,0,20.89,37.1566666667,19.6,35.76,21.39,36.8633333333,20.5,33.5,18,46.5385714286,7.3,24.9333333333,20.8614285714,27.6428571429,22.39,35.1333333333,18.1666666667,39.79,6.3666666667,751,48,6.3333333333,40,-4,6.6879915888,6.6879915888 -60,10,20.9266666667,36.6933333333,19.6,35.6266666667,21.3233333333,36.6566666667,20.5,33.4333333333,18,46.37,7.35,24.245,20.89,27.35,22.39,34.9333333333,18.1333333333,39.8633333333,6.3,751.05,48,6.5,40,-4.05,3.106107912,3.106107912 -60,0,21,36.36,19.7,35.56,21.29,36.4666666667,20.5,33.4,18,46.272,7.3666666667,24.7266666667,20.9057142857,27.1814285714,22.5,34.8333333333,18.2,39.8633333333,6.2333333333,751.1,48,6.6666666667,40,-4.1,32.1971645113,32.1971645113 -60,0,20.9633333333,36.1633333333,19.7,35.4333333333,21.29,36.3266666667,20.5,33.3266666667,18,46.1214285714,7.3,25.5333333333,20.956,27.018,22.5,34.7,18.1333333333,39.9,6.1666666667,751.15,48,6.8333333333,40,-4.15,14.2534848652,14.2534848652 -60,0,20.9633333333,36.03,19.7,35.26,21.26,36.26,20.4633333333,33.26,18,46,7.3,25.2266666667,21,26.8185714286,22.5333333333,34.56,18.2,39.9,6.1,751.2,48,7,40,-4.2,30.3616469493,30.3616469493 -70,0,21,35.8633333333,19.7225,35.1725,21.2,36.1266666667,20.39,33.1266666667,18,45.8514285714,7.2266666667,24.96,21,26.66,22.6,34.4333333333,18.1666666667,39.8266666667,6.0833333333,751.2166666667,48.6666666667,6.8333333333,38.1666666667,-4.0333333333,25.2301121363,25.2301121363 -40,0,21,35.73,19.79,35.03,21.2,36,20.39,33.09,18,45.772,7.19,24.9266666667,21.0857142857,26.6142857143,22.6,34.26,18.1666666667,39.9,6.0666666667,751.2333333333,49.3333333333,6.6666666667,36.3333333333,-3.8666666667,36.1185577582,36.1185577582 -40,0,21,35.59,19.79,34.9,21.1666666667,35.8333333333,20.39,33.09,18,45.7,7.19,25.4666666667,21.1,26.478,22.6,34.1266666667,18.2,39.79,6.05,751.25,50,6.5,34.5,-3.7,43.4155723895,43.4155723895 -50,0,21,35.53,19.79,34.8266666667,21.1,35.7,20.39,33,18,45.554,7.09,25.0966666667,21.1,26.3614285714,22.7,34.06,18.1333333333,39.79,6.0333333333,751.2666666667,50.6666666667,6.3333333333,32.6666666667,-3.5333333333,32.2524485295,32.2524485295 -60,0,21.0333333333,35.4,19.79,34.7,21.1,35.56,20.39,32.9333333333,18,45.4428571429,7.03,25.4966666667,21.2,26.16,22.7,34,18.2,39.79,6.0166666667,751.2833333333,51.3333333333,6.1666666667,30.8333333333,-3.3666666667,21.8689254485,21.8689254485 -60,0,21.025,35.175,19.79,34.5,21.0333333333,35.5,20.29,32.6333333333,18,45.36,6.8666666667,25.96,21.1571428571,26.0428571429,22.7,33.9,18.2,39.79,6,751.3,52,6,29,-3.2,33.6096082232,33.6096082232 -60,0,21,34.7666666667,19.76,34.1633333333,21,35.4,20.29,32.475,18,45.1214285714,6.7266666667,27.1666666667,21.14,25.934,22.7,33.9,18.2,39.79,5.8,751.3,53,5.8333333333,29,-3.1333333333,18.2573592057,18.2573592057 -70,0,21,34.6266666667,19.7,34.03,21,35.4,20.29,32.3266666667,18,44.96,6.4333333333,28.0333333333,21.0714285714,25.8185714286,22.6,33.7,18.2,39.79,5.6,751.3,54,5.6666666667,29,-3.0666666667,35.0425288547,35.0425288547 -60,10,21,34.76,19.6666666667,33.8333333333,20.9633333333,35.29,20.2,32.09,18,44.7928571429,6.1,29.4933333333,20.9816666667,25.73,22.5333333333,33.7,18.15,39.79,5.4,751.3,55,5.5,29,-3,20.3898224398,20.3898224398 -80,0,20.9633333333,34.2233333333,19.5333333333,33.36,20.89,35.23,20.2,32.03,18,44.616,5.73,31.1566666667,20.88,25.787,22.4633333333,33.6333333333,18.1666666667,39.7,5.2,751.3,56,5.3333333333,29,-2.9333333333,12.9235312808,12.9235312808 -80,0,20.89,34.2233333333,19.5,33.3266666667,20.79,35.09,20.1666666667,32.09,17.9528571429,44.4714285714,5.4633333333,32.69,20.83,26.174,22.39,33.5675,18.1,39.7,5,751.3,57,5.1666666667,29,-2.8666666667,21.5463907458,21.5463907458 -90,10,20.89,34.89,19.5,33.4666666667,20.79,35.09,20.1,32.09,17.89,44.356,5.1266666667,33.8666666667,20.79,26.4685714286,22.39,33.8266666667,18.1,39.7,4.8,751.3,58,5,29,-2.8,42.3285492696,42.3285492696 -100,0,20.89,35.03,19.4633333333,33.6566666667,20.79,35.03,20,32,17.89,44.29,4.8666666667,34.6666666667,20.7,26.716,22.39,33.9666666667,18.1,39.7,4.6333333333,751.3666666667,58.5,5.1666666667,28.6666666667,-2.85,37.4191657407,37.4191657407 -90,10,20.8566666667,34.8266666667,19.39,33.93,20.79,35.09,20,32,17.89,44.272,4.495,36.05,20.7,27.2514285714,22.39,34.145,18.1,39.7,4.4666666667,751.4333333333,59,5.3333333333,28.3333333333,-2.9,43.1536500226,43.1536500226 -100,0,20.79,34.9,19.39,34.1266666667,20.73,35.06,19.9633333333,32,17.89,44.2,4.23,37.3933333333,20.7,27.5,22.3566666667,34.4333333333,18.1,39.7,4.3,751.5,59.5,5.5,28,-2.95,35.1982040564,35.1982040564 -90,10,20.79,35.3266666667,19.39,34.3333333333,20.79,35,19.89,32,17.89,44.2,3.9633333333,38.3333333333,20.6285714286,27.3928571429,22.3566666667,34.6933333333,18.1,39.7,4.1333333333,751.5666666667,60,5.6666666667,27.6666666667,-3,26.5404966078,26.5404966078 -90,10,20.8566666667,35.1933333333,19.4266666667,34.5966666667,20.76,35.09,19.8566666667,31.9633333333,17.89,44.1057142857,3.6633333333,39.49,20.56,27.254,22.39,35.33,18.1,39.7,3.9666666667,751.6333333333,60.5,5.8333333333,27.3333333333,-3.05,17.7488254965,17.7488254965 -80,10,20.89,35.4266666667,19.5666666667,34.79,20.7,35.09,19.79,31.89,17.89,44.09,3.53,41.23,20.5,27.2,22.39,35.59,18.1,39.79,3.8,751.7,61,6,27,-3.1,19.5898552891,19.5898552891 -80,10,20.9633333333,35.96,19.6,34.79,20.73,35.1266666667,19.76,31.89,17.89,44.1214285714,3.4333333333,41.29,20.434,27.08,22.29,35.29,18.1,39.79,3.6666666667,751.8333333333,61.5,5.8333333333,26.8333333333,-3.1166666667,8.7825998547,8.7825998547 -80,0,21.0333333333,35.9666666667,19.675,34.9475,20.79,35.26,19.7,31.89,17.89,44.2,3.4333333333,41.29,20.3614285714,27,22.29,35.43,18.0666666667,39.76,3.5333333333,751.9666666667,62,5.6666666667,26.6666666667,-3.1333333333,26.5000314568,26.5000314568 -80,0,21.1,35.7666666667,19.76,35.3333333333,20.79,35.29,19.7,31.9633333333,17.89,44.2514285714,3.2233333333,41,20.29,27,22.29,36.0966666667,18.0666666667,39.7,3.4,752.1,62.5,5.5,26.5,-3.15,15.8516217838,15.8516217838 -140,10,21.1333333333,35.5,19.79,35.5,20.79,35.29,19.7,31.9633333333,18.1075,55.72,2.9633333333,41.3933333333,20.2385714286,26.9985714286,22.29,36.3633333333,18.1,39.2333333333,3.2666666667,752.2333333333,63,5.3333333333,26.3333333333,-3.1666666667,41.705305432,41.705305432 -110,10,21.2,35.5,19.8566666667,35.4333333333,20.79,35.29,19.6,31.9933333333,18.66,69.58,2.8633333333,41.53,20.18,26.772,22.29,36.59,18.1,38.9666666667,3.1333333333,752.3666666667,63.5,5.1666666667,26.1666666667,-3.1833333333,1.803647948,1.803647948 -100,0,21.29,35.29,19.89,35.3266666667,20.8233333333,35.3266666667,19.6666666667,32.4,18.4214285714,70.15,2.79,42.0566666667,20.1,26.7,22.29,36.59,18.0666666667,38.8333333333,3,752.5,64,5,26,-3.2,15.0535354041,15.0535354041 -110,10,21.315,35.2675,19.9633333333,35.3266666667,20.89,35.3266666667,19.7,32.9266666667,18.35,69.574,2.59,43.03,20,26.6,22.29,36.59,18.0666666667,38.56,2.8833333333,752.6,64.5,5,26,-3.2166666667,22.7358705481,22.7358705481 -100,0,21.39,35.1266666667,20.1,35.4,20.89,35.2,19.7,33.025,18.29,68.6114285714,2.53,43.43,20,26.7628571429,22.29,36.59,18,37.99,2.7666666667,752.7,65,5,26,-3.2333333333,39.8835524684,39.8835524684 -100,0,21.4266666667,35.1266666667,20.1,35.4,20.9633333333,35.1266666667,19.7,32.8266666667,18.236,67.214,2.3333333333,44.1666666667,19.934,26.79,22.29,36.5,18,37.565,2.65,752.8,65.5,5,26,-3.25,38.8540369924,38.8540369924 -110,0,21.5,35.1266666667,20.23,35.4,21,35.09,19.6,32.56,18.2,65.4971428571,2.1266666667,44.9666666667,19.89,26.79,22.29,36.4333333333,18,37.1566666667,2.5333333333,752.9,66,5,26,-3.2666666667,37.9835937638,37.9835937638 -110,0,21.6,35.09,20.29,35.4,21,35.09,19.6,32.4333333333,18.1,62.76,2.09,46.36,19.85,26.754,22.29,36.26,18.0666666667,36.9,2.4166666667,753,66.5,5,26,-3.2833333333,33.0673361081,33.0673361081 -110,0,21.6,35.03,20.29,35.4,21.0333333333,35.1266666667,19.6,32.29,18.1285714286,60.8085714286,2.03,46.5,19.7514285714,26.7,22.29,36.1266666667,18,36.5666666667,2.3,753.1,67,5,26,-3.3,0.9981709998,0.9981709998 -110,0,21.7,35,20.3566666667,35.4,21.1,35.1266666667,19.6,32.23,18.1,59.13,1.95,47.145,19.772,26.7,22.29,36.06,18,36.3633333333,2.25,753.1333333333,66.8333333333,5,26,-3.3666666667,11.0425895662,11.0425895662 -100,0,21.7,35,20.39,35.4,21.1,35.09,19.5666666667,32.09,18.1,57.9228571429,1.79,47.6933333333,19.7,26.7257142857,22.23,35.9333333333,18,36.1566666667,2.2,753.1666666667,66.6666666667,5,26,-3.4333333333,12.3454417218,12.3454417218 -100,0,21.7,35,20.39,35.4,21.1,35.09,19.5,32.03,18.04,56.71,1.79,48.3,19.66,26.754,22.2,35.6633333333,18,35.9666666667,2.15,753.2,66.5,5,26,-3.5,33.2192690694,33.2192690694 -100,0,21.7,35,20.39,35.4666666667,21.1,35,19.5,31.9633333333,18.0571428571,55.8957142857,1.7,48.4266666667,19.6,26.7,22.2,35.53,18,35.8266666667,2.1,753.2333333333,66.3333333333,5,26,-3.5666666667,5.1625938155,5.1625938155 -90,0,21.7,34.9,20.39,35.4666666667,21.1,35.06,19.5,31.89,18,55.18,1.5666666667,48.6266666667,19.6,26.7,22.2,35.45,17.9266666667,35.76,2.05,753.2666666667,66.1666666667,5,26,-3.6333333333,5.9157794924,5.9157794924 -90,10,21.7,34.8266666667,20.39,35.4333333333,21.1,35,19.5,31.79,18,54.4971428571,1.5,49.2266666667,19.5625,26.78,22.2,35.29,18,35.6266666667,2,753.3,66,5,26,-3.7,43.8108118949,43.8108118949 -50,10,21.7,34.9,20.39,35.4333333333,21.1,35,19.4266666667,31.8566666667,18,54.054,1.5,49.5,19.5285714286,27.2114285714,22.2,35.43,17.9266666667,35.6666666667,1.95,753.35,66.5,5,25.8333333333,-3.65,22.5137306261,22.5137306261 -60,10,21.6333333333,34.8266666667,20.29,35.1933333333,21,35.03,19.39,32.1266666667,18,53.9428571429,1.43,49.5,19.64,28.216,22.23,35.83,18,36.6,1.9,753.4,67,5,25.6666666667,-3.6,7.3638270958,7.3638270958 -50,0,21.6,34.76,20.2225,34.95,20.9266666667,35.1633333333,19.39,32.3333333333,17.978,53.878,1.3566666667,49.8333333333,19.7,28.8985714286,22.29,36.3633333333,18,37.5,1.85,753.45,67.5,5,25.5,-3.55,14.2438004608,14.2438004608 -60,0,21.6,34.7,20.1333333333,35,20.945,35.345,19.39,32.4333333333,17.89,53.79,1.3566666667,50.1566666667,19.7,29.376,22.3233333333,36.8,18,37.76,1.8,753.5,68,5,25.3333333333,-3.5,16.7609162279,16.7609162279 -80,0,21.5,34.73,20.0666666667,35,20.89,35.53,19.39,32.56,17.89,53.656,1.29,50.29,19.7,29.7928571429,22.3233333333,37.1333333333,18,37.9333333333,1.75,753.55,68.5,5,25.1666666667,-3.45,37.1668694541,37.1668694541 -80,0,21.5,34.8633333333,20,35.06,20.8233333333,35.59,19.39,32.6266666667,17.89,53.5385714286,1.1666666667,50.3666666667,19.7,30.14,22.29,37.5666666667,18,38.06,1.7,753.6,69,5,25,-3.4,20.3576801694,20.3576801694 -80,0,21.5,35,19.89,35.09,20.89,35.7,19.39,32.76,17.89,53.48,1.0333333333,50.96,19.7,30.51,22.29,37.76,18,38.23,1.6,753.65,69.6666666667,5,24.5,-3.3833333333,29.8830070184,29.8830070184 -70,0,21.4266666667,35,19.8233333333,35.03,20.8233333333,35.7,19.39,32.9,17.89,53.4,1.0666666667,51.6566666667,19.7,30.872,22.39,37.9633333333,18,38.29,1.5,753.7,70.3333333333,5,24,-3.3666666667,44.1516802413,44.1516802413 -80,10,21.39,35.045,19.76,34.9666666667,20.8566666667,35.79,19.39,33,17.89,53.254,0.9333333333,52.0633333333,19.7,31.0714285714,22.39,38.1633333333,18,38.3266666667,1.4,753.75,71,5,23.5,-3.35,16.7426065658,16.7426065658 -70,0,21.3566666667,35.1266666667,19.7,34.9,20.79,35.79,19.3233333333,33,17.89,53.2,0.7666666667,52.3233333333,19.7,31.14,22.3233333333,38.2,18,38.3725,1.3,753.8,71.6666666667,5,23,-3.3333333333,35.2823770605,35.2823770605 -60,0,21.29,35.2,19.6666666667,34.9666666667,20.89,35.9,19.29,33.09,17.8471428571,53.04,0.7,53.1425,19.7,31.2514285714,22.39,38.26,18,38.3633333333,1.2,753.85,72.3333333333,5,22.5,-3.3166666667,34.6410471248,34.6410471248 -50,0,21.29,35.29,19.5333333333,34.9,20.89,35.9666666667,19.29,33.1633333333,17.81,52.9,0.7,53.7933333333,19.7,31.332,22.3566666667,38.4633333333,18,38.5,1.1,753.9,73,5,22,-3.3,23.2217924204,23.2217924204 -60,0,21.23,35.23,19.5,34.8266666667,20.89,36,19.29,33.2,17.8185714286,52.7957142857,0.6666666667,54.1,19.6285714286,31.4528571429,22.29,38.6633333333,18,38.5,1.05,753.9,73.1666666667,4.8333333333,22,-3.3,27.7014665888,27.7014665888 -50,0,21.2,35.2,19.4266666667,34.8266666667,20.89,36.06,19.29,33.2,17.79,52.59,0.5333333333,54.4933333333,19.64,31.64,22.29,38.86,18,38.5666666667,1,753.9,73.3333333333,4.6666666667,22,-3.3,11.9089993532,11.9089993532 -40,0,21.1333333333,35.2,19.39,35.0666666667,20.89,36.09,19.29,33.23,17.79,52.5385714286,0.6,55.0966666667,19.6714285714,31.91,22.23,39,18,38.8333333333,0.95,753.9,73.5,4.5,22,-3.3,39.0369911329,39.0369911329 -60,0,21.1,35.2,19.3233333333,35.2,20.89,36.1633333333,19.23,33.23,17.79,52.44,0.6,55.3633333333,19.64,32.076,22.2,39.1266666667,18,38.9333333333,0.9,753.9,73.6666666667,4.3333333333,22,-3.3,34.6471746918,34.6471746918 -30,0,21.1,35.2,19.26,35.29,20.89,36.23,19.2,33.23,17.79,52.3214285714,0.6,55.4,19.6714285714,32.2642857143,22.2,39.26,18,39.06,0.85,753.9,73.8333333333,4.1666666667,22,-3.3,44.8872282635,44.8872282635 -40,0,21,35.09,19.2,35.29,20.89,36.29,19.2,33.23,17.79,52.2,0.6,55.4,19.66,32.46,22.0666666667,39.5,18,39.2,0.8,753.9,74,4,22,-3.3,22.8768036468,22.8768036468 -30,0,21,35.09,19.1666666667,35.4,20.89,36.29,19.2,33.23,17.79,52.1371428571,0.5,55.6666666667,19.6,32.5242857143,22,39.5,18,39.26,0.7833333333,753.9166666667,74,4.1666666667,22.1666666667,-3.3333333333,30.8401758084,30.8401758084 -40,0,20.89,35.06,19.1,35.4,20.8233333333,36.23,19.2,33.29,17.772,52.036,0.5,56.1933333333,19.62,32.74,21.9266666667,39.5,18,39.4333333333,0.7666666667,753.9333333333,74,4.3333333333,22.3333333333,-3.3666666667,0.2443718724,0.2443718724 -50,0,20.89,35.06,19.0666666667,35.5,20.79,36.23,19.2,33.3266666667,17.7642857143,51.9285714286,0.5,56.4333333333,19.6285714286,32.8528571429,21.89,39.5,18,39.56,0.75,753.95,74,4.5,22.5,-3.4,22.4937332794,22.4937332794 -60,0,20.89,35.09,19,35.5,20.79,36.29,19.2,33.4,17.7,51.856,0.4333333333,56.56,19.6,32.9,21.8233333333,39.56,18,39.7,0.7333333333,753.9666666667,74,4.6666666667,22.6666666667,-3.4333333333,41.4751051809,41.4751051809 -50,0,20.8233333333,35.03,18.89,35.59,20.79,36.29,19.2,33.4,17.7,51.7771428571,0.4666666667,56.4666666667,19.6,33.0371428571,21.79,39.73,18,39.7,0.7166666667,753.9833333333,74,4.8333333333,22.8333333333,-3.4666666667,41.6376202134,41.6376202134 -50,0,20.79,35,18.8566666667,35.59,20.79,36.29,19.2,33.4,17.736,51.7,0.3333333333,56.4,19.6,33.112,21.73,39.8633333333,18,39.7,0.7,754,74,5,23,-3.5,34.1243129224,34.1243129224 -60,0,20.73,35,18.79,35.59,20.79,36.29,19.2,33.4,17.7257142857,51.6214285714,0.2666666667,56.86,19.6,33.2,21.7,40.1566666667,18,39.7,0.6666666667,754.05,74,5,23,-3.5333333333,41.6555249132,41.6555249132 -50,0,20.7,35,18.79,35.7,20.73,36.4,19.1333333333,33.4,17.7,51.554,0.2,56.6666666667,19.6,33.29,21.7,40.43,18.0333333333,39.79,0.6333333333,754.1,74,5,23,-3.5666666667,16.4479088387,16.4479088387 -60,0,20.7,35,18.79,35.7,20.79,36.4,19.1,33.45,17.7,51.4857142857,0.25,56.69,19.6,33.44,21.6333333333,40.6933333333,18.0333333333,39.73,0.6,754.15,74,5,23,-3.6,10.9187424998,10.9187424998 -60,0,20.6,35,18.7,35.73,20.79,36.4,19.1,33.5,17.7,51.4,0.1666666667,56.4266666667,19.6,33.5128571429,21.6333333333,40.9,18,39.79,0.5666666667,754.2,74,5,23,-3.6333333333,28.1141522573,28.1141522573 -40,0,20.6,35,18.7,35.79,20.79,36.4,19.1,33.5,17.7,51.4,0.1,56.76,19.6,33.59,21.5666666667,41.0966666667,18,39.7675,0.5333333333,754.25,74,5,23,-3.6666666667,14.2410213477,14.2410213477 -50,0,20.6,35,18.6,35.7,20.79,36.5,19,33.4,17.7,51.29,0,56.7666666667,19.6,33.5514285714,21.5,41.3633333333,18.0666666667,39.76,0.5,754.3,74,5,23,-3.7,11.3504957524,11.3504957524 -50,0,20.5,35,18.6,35.7,20.79,36.5,19.0666666667,33.4666666667,17.7,51.2771428571,0,56.9,19.6,33.59,21.5,41.5,18.0666666667,39.76,0.45,754.3166666667,74.1666666667,5,23.5,-3.7166666667,41.0678292043,41.0678292043 -50,0,20.5,35.06,18.6,35.79,20.79,36.53,19.0333333333,33.4333333333,17.7,51.2,0,57.06,19.6,33.59,21.5,41.56,18,39.7,0.4,754.3333333333,74.3333333333,5,24,-3.7333333333,48.9392927266,48.9392927266 -40,0,20.5,35.09,18.5333333333,35.79,20.79,36.53,19.0333333333,33.4333333333,17.7,51.2,-0.1333333333,57.06,19.6,33.656,21.5,41.56,18,39.7,0.35,754.35,74.5,5,24.5,-3.75,33.9227225282,33.9227225282 -30,0,20.5,35.09,18.4633333333,35.8633333333,20.73,36.5,19,33.4,17.7,51.09,-0.1,57.73,19.6,33.7,21.4266666667,41.4333333333,18,39.76,0.3,754.3666666667,74.6666666667,5,25,-3.7666666667,27.2756849881,27.2756849881 -30,0,20.39,35.09,18.4633333333,35.8633333333,20.73,36.5,19,33.4666666667,17.6428571429,50.9814285714,-0.1666666667,57.6566666667,19.6,33.7,21.4633333333,41.4666666667,18,39.79,0.25,754.3833333333,74.8333333333,5,25.5,-3.7833333333,12.3187066172,12.3187066172 -40,0,20.3233333333,35.09,18.39,35.9,20.7,36.5,19,33.4666666667,17.6,50.9,-0.2333333333,58.06,19.6,33.7671428571,21.3233333333,41.4,18,39.79,0.2,754.4,75,5,26,-3.8,45.8729764097,45.8729764097 -50,0,20.3566666667,35.09,18.39,35.9,20.7,36.5,19,33.4666666667,17.6,50.878,-0.3,58.3333333333,19.58,33.92,21.39,41.29,18,39.79,0.15,754.4833333333,75.5,5,25.6666666667,-3.75,40.8548965119,40.8548965119 -50,0,20.29,35.1633333333,18.29,35.9333333333,20.7,36.5,18.9266666667,33.5,17.6,50.79,-0.3333333333,58.53,19.5428571429,34,21.39,41.23,18,39.79,0.1,754.5666666667,76,5,25.3333333333,-3.7,45.6263700849,45.6263700849 -40,0,20.26,35.1633333333,18.29,36,20.6333333333,36.5,19,33.5,17.6,50.754,-0.4,58.59,19.5,34.09,21.29,41.145,18,39.79,0.05,754.65,76.5,5,25,-3.65,37.1599015663,37.1599015663 -50,0,20.2,35.09,18.29,35.9666666667,20.6666666667,36.56,18.89,33.5,17.6,50.7,-0.5,59.4333333333,19.5285714286,34.0257142857,21.26,41.06,18,39.8633333333,0,754.7333333333,77,5,24.6666666667,-3.6,11.9057111442,11.9057111442 -50,0,20.2,35.1266666667,18.29,35.9666666667,20.6,36.5,18.89,33.5,17.6,50.7,-0.5666666667,59.6333333333,19.5,34.174,21.26,41,18,39.8266666667,-0.05,754.8166666667,77.5,5,24.3333333333,-3.55,46.2035324425,46.2035324425 -60,0,20.2,35.2,18.2,35.95,20.6,36.59,18.89,33.5,17.6,50.6685714286,-0.5333333333,60.0266666667,19.5,34.29,21.2,40.8633333333,18,39.8266666667,-0.1,754.9,78,5,24,-3.5,12.2528268606,12.2528268606 -70,0,20.1666666667,35.2,18.2,36,20.6,36.59,18.89,33.5,17.6,50.59,-0.55,60.22,19.5,34.29,21.2,40.79,18,39.79,-0.1,754.9333333333,77.6666666667,5.1666666667,24.3333333333,-3.55,24.0520789521,24.0520789521 -50,0,20.1,35.2,18.2,36,20.6,36.59,18.89,33.59,17.6,50.59,-0.5333333333,60.4,19.5,34.3528571429,21.1333333333,40.76,18,39.79,-0.1,754.9666666667,77.3333333333,5.3333333333,24.6666666667,-3.6,30.4026007419,30.4026007419 -50,0,20.1,35.2,18.1,36.09,20.6,36.59,18.865,33.5675,17.54,50.536,-0.5333333333,60.76,19.5,34.4,21.2,40.7,18,39.7,-0.1,755,77,5.5,25,-3.65,1.8145237002,1.8145237002 -60,0,20.1,35.1266666667,18.1,36.09,20.6,36.6633333333,18.79,33.5,17.5285714286,50.5,-0.5333333333,60.7,19.5,34.4,21.1,40.76,18,39.76,-0.1,755.0333333333,76.6666666667,5.6666666667,25.3333333333,-3.7,17.5840395619,17.5840395619 -40,0,20.0666666667,35.1633333333,18.0666666667,36.06,20.6,36.59,18.89,33.59,17.54,50.4,-0.5,60.6633333333,19.5,34.4,21.1,40.76,18,39.79,-0.1,755.0666666667,76.3333333333,5.8333333333,25.6666666667,-3.75,32.843525894,32.843525894 -50,0,20,35.09,18,36.06,20.6,36.59,18.89,33.59,17.5571428571,50.4,-0.5666666667,60.59,19.5,34.4,21.0666666667,40.6633333333,18,39.79,-0.1,755.1,76,6,26,-3.8,43.3876141789,43.3876141789 -30,0,20,35.09,18,36.09,20.6,36.7,18.79,33.59,17.54,50.334,-0.7,60.8,19.5,34.44,21.0666666667,40.6633333333,18,39.79,-0.15,755.15,76.6666666667,6,25.5,-3.75,43.7916602008,43.7916602008 -40,0,20,35.09,18,36.09,20.6,36.7,18.79,33.59,17.5,50.29,-0.7,61.2666666667,19.5,34.4714285714,21,40.59,18,39.79,-0.2,755.2,77.3333333333,6,25,-3.7,28.4209443489,28.4209443489 -40,0,20,35.09,18,36.1266666667,20.6,36.7,18.79,33.59,17.5,50.29,-0.7,61.3266666667,19.5,34.475,21,40.59,18,39.79,-0.25,755.25,78,6,24.5,-3.65,11.1892018467,11.1892018467 -50,0,19.89,35.09,17.9266666667,36.1266666667,20.5333333333,36.7,18.79,33.59,17.5,50.2128571429,-0.7666666667,61.5266666667,19.5,34.5,21,40.5,18.0333333333,39.8266666667,-0.3,755.3,78.6666666667,6,24,-3.6,34.7936005099,34.7936005099 -50,0,19.89,35.09,17.89,36.1266666667,20.5,36.6266666667,18.79,33.6266666667,17.5,50.134,-0.7,61.76,19.4057142857,34.4142857143,21,40.5,18.0333333333,39.8266666667,-0.35,755.35,79.3333333333,6,23.5,-3.55,7.0389370318,7.0389370318 -50,0,19.89,35.09,17.89,36.2,20.5,36.7,18.79,33.6266666667,17.5,50.09,-0.7,61.7,19.39,34.4,20.9633333333,40.5,18,39.79,-0.4,755.4,80,6,23,-3.5,1.9298541476,1.9298541476 -50,0,19.8233333333,35.03,17.8566666667,36.2,20.4266666667,36.6566666667,18.7,33.59,17.5,50.09,-0.8,61.89,19.39,34.3685714286,20.89,40.5,17.9266666667,39.79,-0.3833333333,755.5333333333,79.6666666667,5.8333333333,23,-3.5333333333,31.9259870448,31.9259870448 -50,0,19.8566666667,35,17.79,36.2,20.5,36.73,18.7,33.6633333333,17.5,50.0385714286,-0.8,62.09,19.39,34.4,20.89,40.56,18,40,-0.3666666667,755.6666666667,79.3333333333,5.6666666667,23,-3.5666666667,12.5678841141,12.5678841141 -50,0,19.79,35,17.79,36.2,20.4633333333,36.76,18.7,33.7,17.5,50,-0.8333333333,62.2,19.39,34.4571428571,20.89,40.5,18,39.9333333333,-0.35,755.8,79,5.5,23,-3.6,16.9936872902,16.9936872902 -60,0,19.79,35,17.79,36.2,20.39,36.7,18.7,33.7,17.5,50,-0.9,62.2675,19.39,34.5,20.79,40.4333333333,18,40,-0.3333333333,755.9333333333,78.6666666667,5.3333333333,23,-3.6333333333,30.4545939085,30.4545939085 -50,0,19.79,35,17.73,36.29,20.39,36.7,18.7,33.7,17.434,49.834,-0.9,62.29,19.39,34.5642857143,20.79,40.45,18,40,-0.3166666667,756.0666666667,78.3333333333,5.1666666667,23,-3.6666666667,27.8655080125,27.8655080125 -90,0,19.79,35,17.73,36.29,20.39,36.7,18.7,33.7,17.4371428571,49.8371428571,-0.7666666667,62.2233333333,19.35,34.59,20.79,40.56,18,40.1566666667,-0.3,756.2,78,5,23,-3.7,33.3558791783,33.3558791783 -70,0,19.73,35.2666666667,17.79,36.29,20.39,36.5666666667,18.7,33.6633333333,17.39,49.65625,-0.6333333333,61.9633333333,19.3757142857,34.4971428571,20.79,40.5266666667,18,40.3633333333,-0.15,756.3333333333,77.1666666667,5.1666666667,23,-3.7,15.951918927,15.951918927 -90,0,19.7,35.73,17.79,36.3633333333,20.39,36.26,18.7,33.4633333333,17.39,49.334,-0.4333333333,61.49,19.37,34.196,20.73,40.1933333333,18,40.2233333333,-5.55111512312578E-17,756.4666666667,76.3333333333,5.3333333333,23,-3.7,8.4151676856,8.4151676856 -50,0,19.7,35.99,17.79,36.29,20.3233333333,36.2,18.6666666667,33.1333333333,17.4685714286,49.0642857143,-0.2333333333,60.8966666667,19.29,33.7,20.7,39.6933333333,18,39.9633333333,0.15,756.6,75.5,5.5,23,-3.7,4.0411276626,4.0411276626 -30,10,19.79,35.9,17.89,36.4,20.29,36.09,18.675,32.875,17.456,48.674,0.0333333333,60.0266666667,19.2,32.776,20.7,39.36,18,39.6333333333,0.3,756.7333333333,74.6666666667,5.6666666667,23,-3.7,25.5470918957,25.5470918957 -30,10,19.79,35.9,17.89,36.3266666667,20.29,36.03,18.6333333333,32.5666666667,17.39,48.2842857143,0.2333333333,59.2266666667,19.2,32.4557142857,20.6333333333,38.9666666667,18,39.3,0.45,756.8666666667,73.8333333333,5.8333333333,23,-3.7,47.2785476479,47.2785476479 -50,10,19.79,35.9666666667,18,36.06,20.2,35.9,18.6666666667,32.3633333333,17.434,48.052,0.4666666667,57.6966666667,19.254,32.378,20.6333333333,38.7666666667,18,38.8333333333,0.6,757,73,6,23,-3.7,17.7919810521,17.7919810521 -70,10,19.79,35.75,18,35.86,20.2,35.8266666667,18.6666666667,32.49,17.39,47.8685714286,0.6666666667,56.4233333333,19.29,32.1214285714,20.6,38.6633333333,18,38.425,0.75,757,72.3333333333,6.1666666667,23.5,-3.6833333333,29.0786324302,29.0786324302 -90,0,19.79,35.5666666667,18.1,35.7233333333,20.1,35.79,18.7,32.9633333333,17.39,47.554,0.8666666667,55.1666666667,19.29,31.85,20.6,38.53,18,38.0666666667,0.9,757,71.6666666667,6.3333333333,24,-3.6666666667,39.5204677712,39.5204677712 -150,0,19.79,35.4333333333,18.1666666667,35.53,20.1,35.73,18.76,33.1633333333,17.39,47.3,1.0666666667,54.0933333333,19.29,31.7385714286,20.5666666667,38.4666666667,18,37.6,1.05,757,71,6.5,24.5,-3.65,36.8063232629,36.8063232629 -70,0,19.73,36.2266666667,18.23,35.4333333333,20.1,35.7,18.79,33.1633333333,17.39,47.096,1.1333333333,52.93,19.29,31.794,20.5,38.4,18.0666666667,37.2666666667,1.2,757,70.3333333333,6.6666666667,25,-3.6333333333,30.8485043934,30.8485043934 -50,0,19.79,36.7,18.29,35.5,20.1,35.6266666667,18.8566666667,33.2966666667,17.39,46.8214285714,1.3266666667,52.3233333333,19.29,31.8114285714,20.5333333333,38.5,18,36.6633333333,1.35,757,69.6666666667,6.8333333333,25.5,-3.6166666667,43.8101091306,43.8101091306 -50,0,19.73,36.1666666667,18.39,35.26,20.1,35.56,18.89,33.3633333333,17.39,46.79,1.5333333333,51.1666666667,19.33,32.236,20.6,38.7666666667,18,36.59,1.5,757,69,7,26,-3.6,25.4598536296,25.4598536296 -50,0,19.7,35.7233333333,18.4633333333,35.1266666667,20.1,35.56,18.9633333333,33.29,17.4371428571,46.9542857143,1.8,50.6266666667,19.39,32.3842857143,20.6,38.79,18.0333333333,36.5666666667,1.8333333333,757.05,67.6666666667,7.3333333333,26,-3.5833333333,35.7871027081,35.7871027081 -50,0,19.7,35.53,18.5333333333,35.06,20.1,35.6266666667,19.0333333333,33.3266666667,17.434,47.036,2.19,48.595,19.39,32.36,20.6,38.73,18.1,36.6266666667,2.1666666667,757.1,66.3333333333,7.6666666667,26,-3.5666666667,43.2375283097,43.2375283097 -60,0,19.7,35.4,18.7266666667,35,20.1,35.7,19.1666666667,33.4,17.39,47.0257142857,2.6266666667,46.8633333333,19.39,32.0957142857,20.5,38.79,18.1,37.2566666667,2.5,757.15,65,8,26,-3.55,36.4863706403,36.4863706403 -50,0,19.76,35.4,18.9266666667,34.9666666667,20.1,35.6266666667,19.23,33.53,17.434,47.134,2.8333333333,46.3233333333,19.39,31.89,20.5666666667,38.6566666667,18.1,38.0566666667,2.8333333333,757.2,63.6666666667,8.3333333333,26,-3.5333333333,21.7815933516,21.7815933516 -60,0,19.79,35.3633333333,19.0666666667,34.9,20.1,35.7,19.23,33.53,17.4057142857,47.1057142857,3.0666666667,45.2233333333,19.4175,31.8025,20.5,38.4666666667,18.1,38.7266666667,3.1666666667,757.25,62.3333333333,8.6666666667,26,-3.5166666667,3.787203785,3.787203785 -30,0,19.79,35.29,19.1,34.79,20.1,35.7,19.3233333333,33.6266666667,17.39,47.09,3.3333333333,44.4966666667,19.5,31.7128571429,20.5,38.3266666667,18.1,39.1333333333,3.5,757.3,61,9,26,-3.5,26.7241647816,26.7241647816 -30,0,19.79,35.3266666667,19.1666666667,34.73,20.1,35.745,19.39,33.7,17.39,47.0257142857,3.6266666667,42,19.5,31.62,20.55,38.245,18.1,39.4333333333,3.65,757.3,59.8333333333,9,26,-3.6,36.4833919797,36.4833919797 -30,0,19.8566666667,35.4666666667,19.29,34.7,20.1,35.6266666667,19.4266666667,33.73,17.39,47,3.76,38.9333333333,19.5,31.5,20.6,38.2,18.1,39.56,3.8,757.3,58.6666666667,9,26,-3.7,25.339042733,25.339042733 -30,0,19.89,35.5,19.39,34.56,20.0666666667,35.6333333333,19.5,33.79,17.39,46.9428571429,4.0633333333,37.5666666667,19.5,31.5,20.6,38.1266666667,18.2,39.73,3.95,757.3,57.5,9,26,-3.8,49.1236991482,49.1236991482 -50,0,19.89,35.56,19.39,34.4333333333,20,35.5,19.5,33.845,17.39,46.9,4.2633333333,35.8333333333,19.5142857143,31.4057142857,20.6,38.09,18.1333333333,39.79,4.1,757.3,56.3333333333,9,26,-3.9,27.9842854594,27.9842854594 -60,0,19.9266666667,35.56,19.4266666667,34.4,20,35.53,19.6,33.9,17.39,46.9,4.4966666667,35.6966666667,19.62,31.312,20.6,38.03,18.2,39.9,4.25,757.3,55.1666666667,9,26,-4,28.6766218254,28.6766218254 -60,0,20,35.4333333333,19.5,34.4,20,35.59,19.6666666667,33.9666666667,17.39,46.79,4.69,34.63,19.7257142857,31.1714285714,20.7,38,18.2,39.9666666667,4.4,757.3,54,9,26,-4.1,34.2710894067,34.2710894067 -50,0,20.0333333333,35.29,19.5,34.4,20,35.53,19.73,34,17.39,46.79,4.8333333333,33.4666666667,19.83,31.04,20.7,37.9333333333,18.15,40,4.5666666667,757.3,53.8333333333,9,28.3333333333,-4.0166666667,10.4373820941,10.4373820941 -50,0,20.125,35.2675,19.5666666667,34.4666666667,20,35.53,19.79,34,17.39,46.77875,4.9666666667,32.9933333333,19.9671428571,31.0428571429,20.86,37.8633333333,18.1,40,4.7333333333,757.3,53.6666666667,9,30.6666666667,-3.9333333333,40.5638027587,40.5638027587 -50,0,20.26,35.2,19.6,34.53,20.1,35.4666666667,19.89,34,17.39,46.7,5.16,32.26,20.12,30.958,21.0666666667,37.79,18.1666666667,40.06,4.9,757.3,53.5,9,33,-3.85,39.0370886424,39.0370886424 -50,0,20.4266666667,35.2,19.6666666667,34.6633333333,20.1,35.4,19.89,34,17.39,46.7,5.3666666667,31.5933333333,20.2928571429,30.8328571429,21.1633333333,37.59,18.2,40,5.0666666667,757.3,53.3333333333,9,35.3333333333,-3.7666666667,31.1985105858,31.1985105858 -60,0,20.5666666667,35.1266666667,19.7,34.73,20.1,35.4,20,34,17.39,46.656,5.5,29.1266666667,20.5,30.79,21.3566666667,37.4633333333,18.2,40,5.2333333333,757.3,53.1666666667,9,37.6666666667,-3.6833333333,44.5786747849,44.5786747849 -50,0,20.6333333333,35.03,19.7,34.73,20.1,35.3266666667,20,34.06,17.39,46.59,5.56,29.2,20.6428571429,30.7771428571,21.46,37.26,18.2,39.9666666667,5.4,757.3,53,9,40,-3.6,29.5134767657,29.5134767657 -50,0,20.76,35.03,19.79,34.7,20.1333333333,35.3633333333,20,34.1266666667,17.39,46.59,5.745,27.995,20.774,30.7,21.6,37.1266666667,18.2,39.9,5.45,757.3,52.8333333333,8.8333333333,38,-3.5666666667,45.1984022162,45.1984022162 -60,0,20.8233333333,35,19.79,34.6266666667,20.2,35.29,20,34.2,17.39,46.59,5.8,27.2966666667,20.9214285714,30.6285714286,21.73,37.0266666667,18.23,39.9333333333,5.5,757.3,52.6666666667,8.6666666667,36,-3.5333333333,22.8422693908,22.8422693908 -40,0,20.89,34.9333333333,19.79,34.6633333333,20.2,35.29,20.0333333333,34.23,17.39,46.554,5.8,27.43,21.1,30.5,21.8566666667,36.9,18.29,39.9333333333,5.55,757.3,52.5,8.5,34,-3.5,32.9506883281,32.9506883281 -30,0,20.9266666667,34.8633333333,19.8566666667,34.6633333333,20.2,35.23,20.1,34.3633333333,17.39,46.5,5.9633333333,27.5333333333,21.1571428571,30.4228571429,22,36.6633333333,18.29,39.9,5.6,757.3,52.3333333333,8.3333333333,32,-3.4666666667,43.2716712239,43.2716712239 -30,0,21.0666666667,34.8633333333,19.89,34.59,20.2,35.2,20.1,34.5,17.434,46.536,6.09,26.8666666667,21.274,30.33,22.0666666667,36.59,18.29,39.9,5.65,757.3,52.1666666667,8.1666666667,30,-3.4333333333,19.5079103461,19.5079103461 -30,0,21.1,34.79,19.89,34.6633333333,20.2,35.2,20.1666666667,34.5,17.39,46.4571428571,6.3,26.19,21.4685714286,30.29,22.2,36.3633333333,18.3233333333,39.79,5.7,757.3,52,8,28,-3.4,36.0987568856,36.0987568856 -50,0,21.1666666667,34.73,19.89,34.7,20.2,35.2,20.2,34.53,17.39,46.4,6.2266666667,26.4566666667,21.6,30.2,22.26,36.29,18.39,39.73,5.75,757.35,51.8333333333,8.1666666667,30,-3.4333333333,31.1252831831,31.1252831831 -60,0,21.2,34.59,19.89,34.76,20.2,35.2,20.2,34.59,17.4371428571,46.4428571429,6.2266666667,26.6933333333,21.7371428571,30.1857142857,22.3233333333,36.1633333333,18.39,39.7,5.8,757.4,51.6666666667,8.3333333333,32,-3.4666666667,18.7928006751,18.7928006751 -60,0,21.26,34.59,20,34.79,20.2,35.2,20.2,34.6266666667,17.39,46.4,6.3,26.5666666667,21.872,30.08,22.4975,35.9975,18.39,39.7,5.85,757.45,51.5,8.5,34,-3.5,13.0863516824,13.0863516824 -60,0,21.39,34.5,20.0333333333,34.8266666667,20.23,35.23,20.26,34.76,17.39,46.4,6.3333333333,24.8566666667,22,29.9685714286,22.6,35.8266666667,18.5,39.7,5.9,757.5,51.3333333333,8.6666666667,36,-3.5333333333,32.1475254837,32.1475254837 -50,0,21.4633333333,34.5,20.1,34.8266666667,20.29,35.29,20.29,34.845,17.456,46.416,6.4,24.0633333333,22.1,29.85,22.7,35.6633333333,18.4266666667,39.6266666667,5.95,757.55,51.1666666667,8.8333333333,38,-3.5666666667,46.8659005594,46.8659005594 -60,0,21.5333333333,34.4666666667,20.1,34.79,20.29,35.29,20.29,34.9333333333,17.4214285714,46.3214285714,6.3,24.06,22.2371428571,29.79,22.7,35.53,18.5,39.7,6,757.6,51,9,40,-3.6,11.1650892301,11.1650892301 -40,0,21.6,34.4,20.1666666667,34.79,20.3566666667,35.29,20.29,35,17.39,46.29,6.3666666667,25.06,22.3233333333,29.73,22.79,35.4,18.5,39.7,5.9666666667,757.6333333333,50.3333333333,8.8333333333,40,-3.8,34.7696882091,34.7696882091 -50,0,21.6,34.4,20.2,34.76,20.39,35.29,20.39,35.03,17.39,46.29,6.4,24.5,22.4266666667,29.6666666667,22.8566666667,35.4,18.5,39.59,5.9333333333,757.6666666667,49.6666666667,8.6666666667,40,-4,17.4573146505,17.4573146505 -50,0,21.6666666667,34.4,20.26,34.76,20.39,35.29,20.39,35.09,17.39,46.29,6.4666666667,24.36,22.5,29.5333333333,22.9266666667,35.26,18.5,39.59,5.9,757.7,49,8.5,40,-4.2,43.5185592039,43.5185592039 -50,0,21.7,34.4,20.29,34.76,20.39,35.29,20.39,35.09,17.39,46.29,6.4666666667,24.1266666667,22.5,29.4633333333,23,35.2,18.5,39.59,5.8666666667,757.7333333333,48.3333333333,8.3333333333,40,-4.4,0.468323729,0.468323729 -60,0,21.7,34.3633333333,20.29,34.7,20.4633333333,35.3633333333,20.39,35.09,17.39,46.29,6.3333333333,23.7933333333,22.5,29.3233333333,23,35.09,18.5,39.59,5.8333333333,757.7666666667,47.6666666667,8.1666666667,40,-4.6,44.593598973,44.593598973 -50,0,21.7,34.03,20.2266666667,33.6233333333,20.4633333333,35.3333333333,20.2266666667,32.2633333333,17.4633333333,46.3633333333,6.245,23.5,22.4633333333,29.26,23,35.09,18.5,39.59,5.8,757.8,47,8,40,-4.8,11.1023251899,11.1023251899 -40,0,21.5666666667,32.5933333333,20.1,32.29,20.39,35,19.96,30.7966666667,17.39,46.145,6.19,23.5633333333,22.39,29.26,22.89,35.06,18.5,39.7,5.75,757.8333333333,47.5,7.8333333333,40,-4.7,22.8875975707,22.8875975707 -30,0,21.5,32.0666666667,20.0666666667,31.9266666667,20.4633333333,34.4,19.8566666667,30.93,17.39,45.8633333333,6.1233333333,23.43,22.3566666667,29.2,22.8233333333,34.9333333333,18.5,39.76,5.7,757.8666666667,48,7.6666666667,40,-4.6,33.900969883,33.900969883 -20,0,21.4633333333,31.76,20,31.6,20.3233333333,34.1266666667,19.79,30.7233333333,17.4633333333,45.73,6.09,23.8666666667,22.23,29.1333333333,22.76,34.8633333333,18.5,39.79,5.65,757.9,48.5,7.5,40,-4.5,37.0246493607,37.0246493607 -40,0,21.39,31.4266666667,19.89,31.4633333333,20.26,34.09,19.79,30.89,17.4266666667,45.5,6.09,23.7933333333,22.1666666667,29.1,22.7,34.79,18.5,39.79,5.6,757.9333333333,49,7.3333333333,40,-4.4,49.2571885232,49.2571885232 -60,0,21.3566666667,31.5333333333,19.89,31.39,20.2,34.1633333333,19.79,30.89,17.4266666667,45.3,6.09,24.6633333333,22.1,29.0333333333,22.6,34.59,18.5,39.79,5.55,757.9666666667,49.5,7.1666666667,40,-4.3,26.6779170022,26.6779170022 -40,0,21.29,31.6666666667,19.89,31.5666666667,20.2,34.23,19.73,31,17.39,45.1633333333,6.09,25.4566666667,22,29,22.5333333333,34.59,18.5,39.8633333333,5.5,758,50,7,40,-4.2,1.0419605765,1.0419605765 -60,0,21.29,31.9266666667,19.8233333333,31.7,20.2,34.29,19.73,31.0666666667,17.39,45.03,5.9666666667,25.9633333333,21.9266666667,28.9266666667,22.4633333333,34.59,18.5,39.9,5.4,758.0833333333,50.5,6.8333333333,40,-4.1666666667,19.7689663153,19.7689663153 -60,0,21.29,32.06,19.79,31.9566666667,20.2,34.4,19.7,31.23,17.4633333333,45.06,5.8333333333,25.6966666667,21.8566666667,28.9633333333,22.39,34.6633333333,18.5,39.9,5.3,758.1666666667,51,6.6666666667,40,-4.1333333333,28.1511392677,28.1511392677 -60,0,21.26,32.26,19.73,32.2233333333,20.2,34.4,19.7,31.3566666667,17.39,45,5.7633333333,25.5,21.79,28.9633333333,22.29,34.79,18.4633333333,39.8633333333,5.2,758.25,51.5,6.5,40,-4.1,0.4263010458,0.4263010458 -50,0,21.2,32.3333333333,19.7,32.45,20.2,34.4,19.6666666667,31.5,17.39,44.9,5.69,25.6933333333,21.7,28.9266666667,22.23,34.73,18.4633333333,39.8633333333,5.1,758.3333333333,52,6.3333333333,40,-4.0666666667,11.232017295,11.232017295 -50,0,21.2,32.53,19.6666666667,32.59,20.23,34.5,19.6,31.6333333333,17.4633333333,44.9666666667,5.56,26.3666666667,21.6333333333,28.86,22.15,34.845,18.39,39.79,5,758.4166666667,52.5,6.1666666667,40,-4.0333333333,13.8526274939,13.8526274939 -50,0,21.2,32.6633333333,19.6,32.6633333333,20.29,34.56,19.6,31.795,17.39,44.9,5.3666666667,27.3,21.6,28.89,22.0666666667,35,18.4633333333,39.8633333333,4.9,758.5,53,6,40,-4,20.8293610718,20.8293610718 -50,0,21.1,32.8266666667,19.5666666667,32.8266666667,20.29,34.53,19.6,31.9566666667,17.4633333333,44.9666666667,5.1566666667,28.3633333333,21.5333333333,28.9633333333,22,35,18.4633333333,39.8633333333,4.75,758.6,53.6666666667,6,40,-3.9666666667,25.6536789588,25.6536789588 -60,0,21.1,32.9,19.5,32.9666666667,20.29,34.59,19.5333333333,32.1633333333,17.4266666667,44.9633333333,4.9633333333,29.5566666667,21.4633333333,29.0666666667,21.9633333333,35.09,18.39,39.79,4.6,758.7,54.3333333333,6,40,-3.9333333333,38.762742863,38.762742863 -40,0,21.0666666667,32.9333333333,19.39,33.03,20.29,34.7,19.5,32.6266666667,17.4266666667,45.03,4.6566666667,30.9566666667,21.365,29,21.89,35.1633333333,18.39,39.9,4.45,758.8,55,6,40,-3.9,43.014076585,43.014076585 -30,0,21,33,19.3233333333,33.1633333333,20.23,34.7,19.5,32.7,17.39,45,4.53,31.23,21.29,29.0666666667,21.76,35.1266666667,18.39,39.9,4.3,758.9,55.6666666667,6,40,-3.8666666667,7.9359758063,7.9359758063 -40,0,21,33,19.29,33.4,20.2,34.59,19.5,32.7,17.39,45,4.35,31.645,21.26,29.1666666667,21.7,35.2,18.39,39.9,4.15,759,56.3333333333,6,40,-3.8333333333,2.6351012522,2.6351012522 -40,0,20.89,33.2,19.23,33.4,20.2,34.6633333333,19.5,32.76,17.39,45.03,4.1566666667,32.19,21.2,29.1666666667,21.6666666667,35.1633333333,18.39,39.9,4,759.1,57,6,40,-3.8,8.6325056618,8.6325056618 -50,0,20.89,33.26,19.2,33.6266666667,20.2,34.7,19.39,32.73,17.39,45.09,4.03,33.2633333333,21.1,29.23,21.6,35.1633333333,18.39,39.9666666667,3.9666666667,759.25,57,6.1666666667,40,-3.85,9.1724656755,9.1724656755 -60,0,20.8566666667,33.3633333333,19.1333333333,33.76,20.2,34.7,19.39,32.6566666667,17.39,45.09,3.8633333333,34.5,21.1,29.29,21.5,35.2,18.39,40,3.9333333333,759.4,57,6.3333333333,40,-3.9,24.3591879611,24.3591879611 -40,0,20.79,33.3633333333,19.1,33.9333333333,20.2,34.79,19.39,32.59,17.3233333333,45.09,3.79,34.96,21,29.39,21.5,35.26,18.3233333333,40,3.9,759.55,57,6.5,40,-3.95,41.616387479,41.616387479 -50,0,20.79,33.53,19.0333333333,34,20.2,34.8633333333,19.3233333333,32.59,17.39,45.1633333333,3.6633333333,35.5,21,29.4633333333,21.39,35.29,18.29,40,3.8666666667,759.7,57,6.6666666667,40,-4,3.2474608044,3.2474608044 -50,0,20.73,33.59,18.9633333333,34.1266666667,20.1666666667,35.0666666667,19.29,32.73,17.39,45.2,3.59,35.76,20.89,29.5333333333,21.39,35.3633333333,18.29,40.06,3.8333333333,759.85,57,6.8333333333,40,-4.05,39.596119686,39.596119686 -60,0,20.7,33.7,18.89,34.2,20.1,35.2,19.29,32.79,17.39,45.2,3.5,36.03,20.89,29.6,21.29,35.4,18.3566666667,40.09,3.8,760,57,7,40,-4.1,2.6359958923,2.6359958923 -60,0,20.7,33.76,18.89,34.29,20.1,35.23,19.29,32.9333333333,17.29,45.2,3.4333333333,36.4233333333,20.8566666667,29.6666666667,21.23,35.3266666667,18.3566666667,40.09,3.65,760.05,57.8333333333,6.6666666667,38.1666666667,-4.0333333333,30.8453414124,30.8453414124 -80,10,20.7,33.79,18.8233333333,34.29,20.1,35.29,19.29,33.06,17.29,45.2,3.3633333333,36.89,20.79,29.6666666667,21.2,35.4,18.29,40.09,3.5,760.1,58.6666666667,6.3333333333,36.3333333333,-3.9666666667,17.446446768,17.446446768 -130,10,20.6333333333,33.73,18.79,34.3266666667,20.1,35.26,19.2,33.09,17.69,56.2666666667,3.23,37.1633333333,20.7,29.73,21.1333333333,35.5266666667,18.29,39.83,3.35,760.15,59.5,6,34.5,-3.9,11.5981958224,11.5981958224 -110,20,20.6,33.73,18.79,34.4,20.1,35.2,19.2,33.1633333333,19.1633333333,81.3333333333,3.1633333333,37.8,20.7,29.79,21.1333333333,35.86,18.29,39.9333333333,3.2,760.2,60.3333333333,5.6666666667,32.6666666667,-3.8333333333,17.6245676703,17.6245676703 -100,10,20.6,33.79,18.7,34.59,20.1,35.2,19.2,33.0633333333,19.9266666667,86.6666666667,3.09,38.2666666667,20.6,29.6,21.26,36,18.29,39.9333333333,3.05,760.25,61.1666666667,5.3333333333,30.8333333333,-3.7666666667,43.9038190409,43.9038190409 -80,10,20.5666666667,33.8633333333,18.7,34.1,20.0666666667,35.1333333333,19.2,32.5925,20.3333333333,88.8,2.8633333333,38.9266666667,20.5333333333,29.6,21.29,35.5633333333,18.29,39.4233333333,2.9,760.3,62,5,29,-3.7,2.7675341698,2.7675341698 -100,0,20.5,33.6566666667,18.6333333333,33.5666666667,19.9266666667,34.9333333333,19.1333333333,32.2666666667,20.93,89.8333333333,2.73,39.4,20.5,29.1933333333,21.29,35.2725,18.29,39.1633333333,2.8333333333,760.3,62.3333333333,5,30.8333333333,-3.6833333333,5.0853451947,5.0853451947 -110,0,20.5,33.43,18.6,33.0266666667,19.89,34.79,19.1,31.9,20.4566666667,90.3,2.5,40.0666666667,20.4266666667,28.9266666667,21.3566666667,35.5266666667,18.29,38.96,2.7666666667,760.3,62.6666666667,5,32.6666666667,-3.6666666667,6.6864376189,6.6864376189 -120,0,20.4266666667,33.1566666667,18.6,32.9,19.89,34.79,19.1,31.6333333333,19.9,92.23,2.4333333333,40.8,20.39,29.1,21.4266666667,35.73,18.29,38.5,2.7,760.3,63,5,34.5,-3.65,24.7473226278,24.7473226278 -70,0,20.39,33.1266666667,18.5,33.09,19.79,34.79,19.0666666667,31.4633333333,19.5666666667,92.8966666667,2.245,41.7,20.315,29.075,21.5,35.79,18.245,37.7,2.6333333333,760.3,63.3333333333,5,36.3333333333,-3.6333333333,26.1065101949,26.1065101949 -70,0,20.39,33.1266666667,18.5,33.1633333333,19.79,34.8633333333,19,31.3233333333,19.3566666667,92.49,2.2,43.3,20.29,28.9266666667,21.6,35.9633333333,18.23,37.0266666667,2.5666666667,760.3,63.6666666667,5,38.1666666667,-3.6166666667,39.1053538653,39.1053538653 -70,0,20.3566666667,33.09,18.5,33.23,19.79,34.79,18.9633333333,31.29,19.23,91.63,2.1266666667,43.8333333333,20.2,28.76,21.5333333333,36.09,18.23,36.6333333333,2.5,760.3,64,5,40,-3.6,4.2467712075,4.2467712075 -60,10,20.315,33.195,18.5,33.29,19.79,34.79,18.9633333333,31.29,19.1666666667,89.7966666667,1.93,44.4333333333,20.2,28.7,21.5,36.09,18.2,36.2233333333,2.4,760.3666666667,65,5.1666666667,40,-3.5166666667,9.3013376929,9.3013376929 -50,0,20.3233333333,33.3633333333,18.5,33.36,19.76,34.79,18.9266666667,31.5233333333,19.0333333333,87.73,1.8633333333,45.5666666667,20.2,29.2633333333,21.4266666667,36.1633333333,18.2,36.3633333333,2.3,760.4333333333,66,5.3333333333,40,-3.4333333333,45.7430860144,45.7430860144 -50,0,20.29,33.3266666667,18.4266666667,33.4333333333,19.7,34.79,18.9266666667,31.93,18.89,85.195,1.9,46.2666666667,20.2,29.5966666667,21.39,36.5,18.2,36.6266666667,2.2,760.5,67,5.5,40,-3.35,33.1426512217,33.1426512217 -60,0,20.29,33.4,18.39,33.5,19.7,34.9333333333,18.89,32.1266666667,18.79,82.8933333333,1.8266666667,46.9333333333,20.2,30.0666666667,21.39,36.8333333333,18.2,36.96,2.1,760.5666666667,68,5.6666666667,40,-3.2666666667,0.9872719995,0.9872719995 -50,0,20.23,33.4,18.39,33.56,19.76,35.06,18.89,32.26,18.73,81.7,1.6666666667,47.7933333333,20.2,30.3266666667,21.39,37.3,18.2,37.23,2,760.6333333333,69,5.8333333333,40,-3.1833333333,8.9246320073,8.9246320073 -30,0,20.23,33.3266666667,18.29,33.6266666667,19.7,35.09,18.89,32.4,18.7,80.23,1.6,48.5933333333,20.2,30.6633333333,21.39,37.6333333333,18.2,37.29,1.9,760.7,70,6,40,-3.1,8.0357261933,8.0357261933 -40,0,20.2,33.29,18.29,33.76,19.76,35.09,18.89,32.4666666667,18.6333333333,79.0966666667,1.5,49.6666666667,20.2,30.9966666667,21.39,37.9633333333,18.2,37.4,1.8666666667,760.7,70,6,40,-3.1333333333,27.3891520803,27.3891520803 -30,0,20.1333333333,33.29,18.29,33.9333333333,19.7,35.2,18.89,32.53,18.5,77.73,1.5,50.1933333333,20.2,31.36,21.39,38.2966666667,18.2,37.4666666667,1.8333333333,760.7,70,6,40,-3.1666666667,29.9726959434,29.9726959434 -40,0,20.1,33.3633333333,18.23,34,19.7,35.2,18.89,32.59,18.4266666667,76.5966666667,1.39,50.86,20.2,31.6333333333,21.39,38.5666666667,18.2,37.53,1.8,760.7,70,6,40,-3.2,7.2214039974,7.2214039974 -60,0,20.1,33.29,18.2,34.09,19.6,35.145,18.79,32.59,18.39,75.49,1.39,51.1933333333,20.1666666667,31.9933333333,21.39,38.8333333333,18.2,37.6633333333,1.7666666667,760.7,70,6,40,-3.2333333333,7.1838391479,7.1838391479 -50,0,20.1,33.3266666667,18.1333333333,34.1633333333,19.6,35.2,18.79,32.59,18.39,74.63,1.3566666667,51.3666666667,20.1666666667,32.4,21.29,39.39,18.2,37.7666666667,1.7333333333,760.7,70,6,40,-3.2666666667,40.5689101783,40.5689101783 -60,0,20.0333333333,33.3266666667,18.1,34.3,19.6,35.26,18.79,32.7,18.29,73.46,1.29,51.96,20.2,32.73,21.29,39.7233333333,18.2,37.9,1.7,760.7,70,6,40,-3.3,20.7071132492,20.7071132492 -70,0,20,33.29,18.1,34.4,19.6,35.29,18.79,32.7,18.29,72.5333333333,1.1666666667,52.1933333333,20.2,32.8633333333,21.29,39.9333333333,18.2,38.1566666667,1.65,760.7166666667,70.5,6,40,-3.2333333333,11.0985152889,11.0985152889 -50,0,20,33.3633333333,18.0333333333,34.3266666667,19.6,35.29,18.79,32.76,18.2,71.4566666667,1.1,52.8225,20.2,33,21.29,40,18.2,38.43,1.6,760.7333333333,71,6,40,-3.1666666667,10.0472721038,10.0472721038 -50,0,19.9633333333,33.5,18,34.4333333333,19.6,35.4,18.79,32.79,18.2,70.93,1.1,53.3633333333,20.1333333333,33.06,21.29,40.145,18.2,38.59,1.55,760.75,71.5,6,40,-3.1,45.5187713378,45.5187713378 -60,0,19.89,33.5,18,34.56,19.6,35.4,18.73,32.79,18.1,70.3,1.1,53.7666666667,20.1666666667,33.09,21.2,40.09,18.2,38.7233333333,1.5,760.7666666667,72,6,40,-3.0333333333,37.2489714529,37.2489714529 -50,0,19.89,33.53,17.89,34.59,19.6,35.4,18.7,32.9,18.1,69.5,1.1,53.9,20.1,33.1633333333,21.2,40.09,18.2,39.1,1.45,760.7833333333,72.5,6,40,-2.9666666667,13.8658397715,13.8658397715 -40,0,19.89,33.59,17.89,34.6633333333,19.6,35.4,18.7,32.9,18,68.23,1,54.0966666667,20.1,33.45,21.1666666667,40.2666666667,18.2,39.36,1.4,760.8,73,6,40,-2.9,33.7184112752,33.7184112752 -30,0,19.8566666667,33.59,17.89,34.73,19.6,35.4333333333,18.7,32.9333333333,18,67.29,1,54.3633333333,20.1,33.59,21.1,40.5266666667,18.2,39.56,1.4,760.8166666667,73,6,40,-2.9,15.5006546527,15.5006546527 -40,0,19.79,33.59,17.89,34.79,19.6,35.5,18.7,33,17.9633333333,66.3933333333,1,54.4633333333,20.1,33.59,21.1,40.86,18.2,39.73,1.4,760.8333333333,73,6,40,-2.9,39.4067056361,39.4067056361 -30,0,19.79,33.59,17.79,34.79,19.6,35.5,18.7,33,17.89,65.6666666667,1,54.7233333333,20.1,33.7,21.1,41.06,18.2,39.8633333333,1.4,760.85,73,6,40,-2.9,45.5544883385,45.5544883385 -60,0,19.79,33.59,17.79,34.79,19.6,35.5,18.7,33,17.89,64.745,0.9666666667,54.9633333333,20.1,33.76,21,41.1266666667,18.2,40.03,1.4,760.8666666667,73,6,40,-2.9,32.1171511547,32.1171511547 -50,0,19.79,33.59,17.76,34.9,19.5333333333,35.59,18.7,33.09,17.8566666667,63.9233333333,0.9,55.2966666667,20.1,33.8633333333,21,41.3333333333,18.2,40.1633333333,1.4,760.8833333333,73,6,40,-2.9,49.5485520223,49.5485520223 -50,0,19.7,33.7,17.7,34.9,19.5333333333,35.59,18.7,33.09,17.8566666667,63.4633333333,0.8666666667,55.79,20.1,33.8633333333,21,41.7666666667,18.2,40.3266666667,1.4,760.9,73,6,40,-2.9,49.075412727,49.075412727 -50,0,19.7,33.7,17.7,35,19.5333333333,35.59,18.6,33.03,17.79,62.7966666667,0.7333333333,56.0633333333,20.1,34,21,41.9666666667,18.2,40.4,1.35,760.9333333333,73.5,5.8333333333,40,-2.8833333333,19.5000873064,19.5000873064 -60,0,19.7,33.73,17.7,35,19.5333333333,35.59,18.6,33.09,17.79,62.39,0.6666666667,56.03,20.0333333333,34,20.9633333333,42.1566666667,18.2,40.53,1.3,760.9666666667,74,5.6666666667,40,-2.8666666667,23.5752968467,23.5752968467 -40,0,19.6333333333,33.73,17.6666666667,35,19.5333333333,35.6266666667,18.6,33.09,17.79,61.99,0.4666666667,56.43,20,34.03,20.89,42.3633333333,18.2,40.59,1.25,761,74.5,5.5,40,-2.85,40.9770175815,40.9770175815 -60,0,19.6,33.73,17.6666666667,35.06,19.6,35.7,18.6,33.09,17.79,61.5966666667,0.3333333333,57.4,20,34.1633333333,20.89,42.5966666667,18.1666666667,40.7,1.2,761.0333333333,75,5.3333333333,40,-2.8333333333,29.0086917696,29.0086917696 -60,0,19.6,33.79,17.6,35,19.6,35.7,18.6,33.1266666667,17.76,61.2966666667,0.0666666667,57.5933333333,20,34.2,20.89,42.79,18.1,40.76,1.15,761.0666666667,75.5,5.1666666667,40,-2.8166666667,12.5592836761,12.5592836761 -50,0,19.6,33.79,17.6,35,19.7,35.9,18.6,33.1266666667,17.7,61.03,-0.05,59.495,20,34.1266666667,20.89,43,18.2,40.8266666667,1.1,761.1,76,5,40,-2.8,3.1518502859,3.1518502859 -50,0,19.6,33.8633333333,17.6,35.09,19.7,35.8266666667,18.6,33.2,17.7,60.6633333333,-0.1333333333,60.5566666667,20,34.09,20.89,43.06,18.2,40.9,0.95,761.1,77,4.8333333333,40,-2.7666666667,23.3229727834,23.3229727834 -30,0,19.6,33.9,17.5,35.2,19.7,35.79,18.5666666667,33.2,17.7,60.4633333333,-0.1333333333,61.3633333333,20,34.09,20.8233333333,42.9,18.2,41,0.8,761.1,78,4.6666666667,40,-2.7333333333,18.382418924,18.382418924 -30,0,19.5333333333,33.9,17.5,35.2,19.7,35.93,18.5666666667,33.26,17.7,60.1633333333,-0.1,62.3,20,34.09,20.89,42.9,18.2,41,0.65,761.1,79,4.5,40,-2.7,25.4194788984,25.4194788984 -30,0,19.5,34,17.4633333333,35.26,19.7,36,18.5,33.26,17.7,59.9633333333,-0.1,62.7666666667,20,34.09,20.79,42.7,18.2,41.09,0.5,761.1,80,4.3333333333,40,-2.6666666667,41.4996341453,41.4996341453 -40,0,19.5,34,17.4633333333,35.26,19.7,36,18.5,33.26,17.7,59.76,-0.1666666667,63.3233333333,19.9633333333,34.23,20.7675,42.595,18.2,41.09,0.35,761.1,81,4.1666666667,40,-2.6333333333,47.6621833397,47.6621833397 -60,0,19.5,34.03,17.4633333333,35.29,19.7,36.03,18.5,33.29,17.6333333333,59.5,-0.3,64.39,19.89,34.3633333333,20.7,42.5,18.2,41.09,0.2,761.1,82,4,40,-2.6,26.6307012062,26.6307012062 -60,0,19.4266666667,34.03,17.39,35.29,19.7,36.09,18.5,33.3633333333,17.6,59.3333333333,-0.2333333333,64.83,19.89,34.45,20.73,42.4,18.2,41,0.1666666667,761.1,82.8333333333,4.1666666667,40,-2.5,46.2438990595,46.2438990595 -50,0,19.39,34.09,17.39,35.4,19.7,36.09,18.5,33.4,17.6,59.1266666667,-0.3666666667,64.6233333333,19.89,34.6266666667,20.73,42.4,18.2,41,0.1333333333,761.1,83.6666666667,4.3333333333,40,-2.4,47.8091750178,47.8091750178 -50,0,19.39,34.09,17.39,35.4,19.7,36.09,18.5,33.4,17.6,58.9666666667,-0.4666666667,66.1666666667,19.89,34.76,20.7,42.29,18.1333333333,40.9666666667,0.1,761.1,84.5,4.5,40,-2.3,47.8181833168,47.8181833168 -50,0,19.3233333333,34.09,17.3566666667,35.4333333333,19.76,36.2,18.39,33.29,17.6,58.8266666667,-0.2666666667,67.7,19.89,34.76,20.7,42.23,18.2,40.9666666667,0.0666666667,761.1,85.3333333333,4.6666666667,40,-2.2,48.8787352224,48.8787352224 -50,0,19.29,34.2,17.29,35.5,19.7,36.2,18.39,33.29,17.6,58.645,-0.1666666667,67.69,19.89,34.7,20.7,42.29,18.1666666667,41.03,0.0333333333,761.1,86.1666666667,4.8333333333,40,-2.1,44.2856102134,44.2856102134 -50,0,19.29,34.26,17.29,35.5,19.7,36.29,18.39,33.4,17.5666666667,58.3633333333,-0.3,68.23,19.89,34.8266666667,20.6333333333,42.1566666667,18.1666666667,41.09,0,761.1,87,5,40,-2,10.7685679686,10.7685679686 -50,0,19.29,34.29,17.29,35.56,19.7,36.29,18.39,33.4,17.5,58.23,-0.4666666667,68.4266666667,19.89,34.9,20.6,42,18.1666666667,41.09,0.0166666667,761.1666666667,87,4.8333333333,40,-1.9666666667,9.6918021562,9.6918021562 -50,0,19.29,34.3633333333,17.29,35.6633333333,19.7,36.4,18.39,33.4,17.5,58.06,-0.5333333333,69.9,19.8233333333,34.86,20.6666666667,42.06,18.1666666667,41.09,0.0333333333,761.2333333333,87,4.6666666667,40,-1.9333333333,1.1101206066,1.1101206066 -40,0,19.2,34.29,17.29,35.6633333333,19.76,36.4,18.39,33.4,17.5,57.9333333333,-0.4333333333,71.1666666667,19.89,35,20.6,42,18.1666666667,41.09,0.05,761.3,87,4.5,40,-1.9,7.5429970631,7.5429970631 -40,0,19.2,34.29,17.2,35.59,19.79,36.4,18.39,33.5,17.5,57.76,-0.5,71.7225,19.89,35.1266666667,20.6,42,18.1,41.09,0.0666666667,761.3666666667,87,4.3333333333,40,-1.8666666667,43.6049966258,43.6049966258 -40,0,19.2,34.4,17.2,35.6633333333,19.79,36.4,18.39,33.5,17.5,57.5666666667,-0.4333333333,72.33,19.89,35.26,20.6,42,18.1,41,0.0833333333,761.4333333333,87,4.1666666667,40,-1.8333333333,19.9728523148,19.9728523148 -30,0,19.2,34.4,17.2,35.7,19.73,36.4,18.3233333333,33.5,17.5,57.4,-0.5,72.5666666667,19.8233333333,35.23,20.6,41.9333333333,18.1,41,0.1,761.5,87,4,40,-1.8,48.4457349055,48.4457349055 -50,0,19.1,34.4,17.2,35.76,19.7,36.5,18.3233333333,33.5,17.5,57.3266666667,-0.5,72.9666666667,19.8233333333,35.1566666667,20.5,41.9,18.2,41.09,0.05,761.55,87.5,4,37.3333333333,-1.7666666667,45.3611235251,45.3611235251 -60,0,19.1,34.4666666667,17.1,35.79,19.7,36.5,18.29,33.545,17.39,57.06,-0.5666666667,73.63,19.79,35.1633333333,20.5,41.9,18.1333333333,41.09,0,761.6,88,4,34.6666666667,-1.7333333333,42.3614074825,42.3614074825 -40,0,19.1666666667,34.5,17.1,35.9,19.7,36.5,18.29,33.59,17.39,56.9333333333,-0.5,74.1566666667,19.79,35.09,20.5,42,18.1,41.09,-0.05,761.65,88.5,4,32,-1.7,11.0979907447,11.0979907447 -80,10,19.1,34.5,17.1,35.9,19.7,36.5,18.29,33.59,17.39,56.7675,-0.5,74.4,19.79,35.39,20.4266666667,41.86,18.1,41.1633333333,-0.1,761.7,89,4,29.3333333333,-1.6666666667,20.7951428019,20.7951428019 -70,0,19.1,34.59,17.1,35.9333333333,19.7,36.59,18.29,33.6266666667,17.39,56.7,-0.5666666667,74.26,19.79,35.6633333333,20.39,41.79,18.1,41.2,-0.15,761.75,89.5,4,26.6666666667,-1.6333333333,48.4527246794,48.4527246794 -60,10,19.1,34.7233333333,17.1,36.1333333333,19.7,36.59,18.29,33.7,17.39,56.79,-0.6,74.9966666667,19.79,35.56,20.39,41.79,18.1,41.1175,-0.2,761.8,90,4,24,-1.6,29.1785260662,29.1785260662 -50,0,19.1,34.6633333333,17,36.06,19.7,36.4666666667,18.29,33.7,17.39,56.79,-0.6,75.5966666667,19.73,35.36,20.39,41.995,18.1,41.03,-0.2,761.8166666667,90.3333333333,4,23.6666666667,-1.5666666667,23.6103817122,23.6103817122 -50,0,19.0333333333,34.39,16.9266666667,35.9333333333,19.7,36.3266666667,18.23,33.7,17.39,56.53,-0.6333333333,75.9,19.7,35.1,20.39,41.93,18.1,40.8633333333,-0.2,761.8333333333,90.6666666667,4,23.3333333333,-1.5333333333,33.6114340462,33.6114340462 -40,0,19,34,16.89,35.8266666667,19.6,36.09,18.2,33.7,17.3233333333,56.6633333333,-0.7,76.3,19.7,34.8633333333,20.3233333333,41.73,18.0333333333,40.6566666667,-0.2,761.85,91,4,23,-1.5,17.6671322668,17.6671322668 -40,10,19,34.1175,16.89,35.9666666667,19.6,36.03,18.2,33.7,17.3233333333,56.7,-0.6666666667,76.93,19.6333333333,34.6566666667,20.3566666667,41.56,18.1,40.4666666667,-0.2,761.8666666667,91.3333333333,4,22.6666666667,-1.4666666667,34.9338583532,34.9338583532 -50,0,19,34.6233333333,16.89,36.0666666667,19.6,35.8333333333,18.2,33.73,17.39,56.7,-0.6,77.4566666667,19.6,34.4666666667,20.29,41.36,18.1,40.2666666667,-0.2,761.8833333333,91.6666666667,4,22.3333333333,-1.4333333333,22.7371664252,22.7371664252 -30,0,19,34.86,16.89,36.3333333333,19.5333333333,35.6266666667,18.2,33.79,17.29,56.645,-0.5,77.69,19.6,34.3266666667,20.29,41.1633333333,18,39.9666666667,-0.2,761.9,92,4,22,-1.4,32.3560986551,32.3560986551 -130,0,19,35.1333333333,17,36.6266666667,19.4633333333,35.3633333333,18.2,33.79,17.29,56.6633333333,-0.4,77.745,19.5,34.2233333333,20.29,41.03,18,39.8266666667,-0.0333333333,762.0333333333,90.3333333333,4.1666666667,23,-1.4833333333,30.6896414491,30.6896414491 -400,0,19,35.2,16.9266666667,36.7,19.39,35.43,18.2,33.8633333333,17.29,56.59,-0.3,77.5633333333,19.5,34.03,20.2,40.79,18,39.6633333333,0.1333333333,762.1666666667,88.6666666667,4.3333333333,24,-1.5666666667,13.3212918299,13.3212918299 -320,0,19,35.26,17,36.8266666667,19.4266666667,35.53,18.2,33.9,17.29,55.59,-0.1666666667,77.0933333333,19.5,33.9666666667,20.2,40.73,18,39.59,0.3,762.3,87,4.5,25,-1.65,46.37616697,46.37616697 -350,0,19,35.4333333333,17,36.9666666667,19.4266666667,35.53,18.2,33.9,17.3566666667,55.6633333333,-0.0333333333,76.5,19.5,33.9,20.2,40.59,18,39.4666666667,0.4666666667,762.4333333333,85.3333333333,4.6666666667,26,-1.7333333333,14.1727106064,14.1727106064 -110,0,19,35.5,17.0333333333,37,19.39,35.53,18.2,33.7966666667,17.29,55.76,0.1666666667,75.4266666667,19.4633333333,33.3333333333,20.1333333333,40.4633333333,18,39.4,0.6333333333,762.5666666667,83.6666666667,4.8333333333,27,-1.8166666667,41.9358809944,41.9358809944 -70,0,18.89,35.56,17.1,37,19.39,35.5225,18.2,33.4633333333,17.29,55.5666666667,0.3666666667,74.0266666667,19.39,32.8,20.1666666667,40.0633333333,18,39.1333333333,0.8,762.7,82,5,28,-1.9,31.1335077044,31.1335077044 -70,0,18.89,35.5,17.1333333333,36.76,19.3233333333,35.4333333333,18.2,33.4,17.29,55.2233333333,0.5666666667,71.4666666667,19.29,32.2966666667,20.1666666667,39.6566666667,18,38.8,1.0666666667,762.75,80.3333333333,5.1666666667,28.1666666667,-1.95,35.6453325017,35.6453325017 -80,0,18.89,35.3633333333,17.32,36.4975,19.39,35.4,18.2675,33.45,17.29,54.9633333333,0.8333333333,69.1333333333,19.29,31.9566666667,20.1,39.26,18.1,38.3933333333,1.3333333333,762.8,78.6666666667,5.3333333333,28.3333333333,-2,11.9825160364,11.9825160364 -80,0,18.9633333333,35.23,17.6333333333,36.0966666667,19.3233333333,35.4,18.3566666667,33.3266666667,17.29,54.6,1.1633333333,65.6333333333,19.29,31.5966666667,20.1,39.0666666667,18.1666666667,37.8,1.6,762.85,77,5.5,28.5,-2.05,41.328694101,41.328694101 -80,0,19,35.09,17.96,35.6,19.29,35.4333333333,18.4266666667,33.2,17.29,54.3266666667,1.43,63.1,19.23,31.2633333333,20.0666666667,38.7966666667,18.1333333333,37.56,1.8666666667,762.9,75.3333333333,5.6666666667,28.6666666667,-2.1,34.9443744402,34.9443744402 -40,0,19,35.03,18.1666666667,35.1333333333,19.29,35.4333333333,18.5,33.2,17.2,53.93,1.7666666667,59.6,19.2,30.93,20.0666666667,38.59,18.2,37.6333333333,2.1333333333,762.95,73.6666666667,5.8333333333,28.8333333333,-2.15,30.1452867803,30.1452867803 -40,0,19,34.9666666667,18.3233333333,34.7233333333,19.29,35.29,18.5333333333,33.09,17.26,53.6566666667,2.0266666667,57.7266666667,19.2,30.6633333333,20,38.3333333333,18.2,37.6266666667,2.4,763,72,6,29,-2.2,33.6495616823,33.6495616823 -50,0,19.0666666667,34.9,18.39,34.4633333333,19.29,35.3633333333,18.6,33.03,17.2,53.2966666667,2.36,55.5666666667,19.2,30.26,20,38.0666666667,18.2,37.925,2.6166666667,762.9666666667,69.6666666667,6.1666666667,30.8333333333,-2.4666666667,5.5609829724,5.5609829724 -340,0,19.0666666667,34.7966666667,18.4266666667,34.1266666667,19.26,35.2233333333,18.7,33,17.2,52.89,2.56,53.96,19.26,30.2,20,37.8333333333,18.2,38.46,2.8333333333,762.9333333333,67.3333333333,6.3333333333,32.6666666667,-2.7333333333,15.3333064751,15.3333064751 -390,0,19.0666666667,34.6633333333,18.5666666667,34.0666666667,19.2,35.1633333333,18.76,33.06,17.2,52.6333333333,2.86,51.2233333333,19.29,29.945,20,37.4975,18.2,38.83,3.05,762.9,65,6.5,34.5,-3,36.9611195987,36.9611195987 -600,0,19.1,34.59,18.7,33.8633333333,19.23,35.23,18.79,33.06,17.2,52.3,3.06,49.4233333333,19.29,29.6333333333,20,37.0966666667,18.1333333333,39.2233333333,3.2666666667,762.8666666667,62.6666666667,6.6666666667,36.3333333333,-3.2666666667,20.9078192129,20.9078192129 -700,0,19.1,34.7175,18.76,33.6566666667,19.29,35.3633333333,18.8566666667,33.1333333333,17.2,51.93,3.245,45.995,19.29,29.36,20,36.7233333333,18.2,39.4333333333,3.4833333333,762.8333333333,60.3333333333,6.8333333333,38.1666666667,-3.5333333333,40.3172244783,40.3172244783 -430,0,19.1,34.8333333333,18.89,33.59,19.46,35.9933333333,18.89,33.06,17.2,51.6566666667,3.53,44.3,19.29,29.0666666667,20,36.4633333333,18.2,39.56,3.7,762.8,58,7,40,-3.8,25.5906279432,25.5906279432 -320,0,19.2,34.9,18.9633333333,33.59,19.7266666667,36.6,18.89,32.9333333333,17.2,51.3,3.6633333333,42.0266666667,19.29,28.86,20,36.1333333333,18.2,39.73,3.8333333333,762.8166666667,57.8333333333,7,37.8333333333,-3.7333333333,34.2512068572,34.2512068572 -250,0,19.26,35.0266666667,19.0333333333,33.53,20.0666666667,36.8266666667,19,32.8633333333,17.1666666667,50.93,3.9333333333,40.53,19.29,28.6333333333,20,35.9333333333,18.2,39.79,3.9666666667,762.8333333333,57.6666666667,7,35.6666666667,-3.6666666667,48.9965941873,48.9965941873 -240,0,19.3233333333,35.1,19.1,33.4633333333,20.26,36.7666666667,19,32.6566666667,17.1,50.6566666667,4.1266666667,38.13,19.29,28.4266666667,20.1,35.76,18.2,39.79,4.1,762.85,57.5,7,33.5,-3.6,16.9587520882,16.9587520882 -140,0,19.39,34.4333333333,18.9633333333,32.03,20.5,35.6333333333,19.1,32.56,17.1,50.43,4.3333333333,35.8333333333,19.39,28.1666666667,20.0333333333,35.5,18.2,39.79,4.2333333333,762.8666666667,57.3333333333,7,31.3333333333,-3.5333333333,11.0538994195,11.0538994195 -70,0,19.39,33.3333333333,18.89,31.3566666667,20.5,34.4333333333,19.1666666667,32.36,17.1,50.23,4.4666666667,35.1666666667,19.4633333333,28.0333333333,20.1,35.3333333333,18.1666666667,39.9,4.3666666667,762.8833333333,57.1666666667,7,29.1666666667,-3.4666666667,39.7650873754,39.7650873754 -80,0,19.4633333333,33.2,18.9266666667,31.46,20.5666666667,33.9,19.23,32.1266666667,17.1,49.9,4.53,33.8333333333,19.6333333333,27.79,20.1,35,18.1666666667,39.8266666667,4.5,762.9,57,7,27,-3.4,14.2974441638,14.2974441638 -110,0,19.5333333333,33.26,19,31.6666666667,20.3925,33.595,19.29,32.1266666667,17.1,49.5666666667,4.6566666667,33.96,19.76,27.6633333333,20.23,34.76,18.1,39.8633333333,4.6166666667,762.85,56.1666666667,7,27.1666666667,-3.4833333333,4.9099860014,4.9099860014 -660,0,19.6,33.2,19.0333333333,31.9566666667,20.23,33.4333333333,19.3233333333,32.09,17.1,49.2233333333,4.8333333333,34.06,19.9266666667,27.4633333333,20.3566666667,34.5666666667,18.1666666667,39.79,4.7333333333,762.8,55.3333333333,7,27.3333333333,-3.5666666667,47.610465961,47.610465961 -610,0,19.8233333333,34.9666666667,19.125,32.2225,20.39,34.3233333333,19.39,32.09,17.1,48.9633333333,4.9666666667,32.6666666667,20.0666666667,27.39,20.5333333333,34.3333333333,18.2,39.9,4.85,762.75,54.5,7,27.5,-3.65,49.3205117877,49.3205117877 -390,0,19.89,34.9666666667,19.2,32.4666666667,20.53,35.1966666667,19.4633333333,32.09,17.1,48.76,5.03,32.83,20.23,27.2,20.6666666667,34.1266666667,18.2,39.9,4.9666666667,762.7,53.6666666667,7,27.6666666667,-3.7333333333,3.0865659239,3.0865659239 -360,0,20.0333333333,34.8666666667,19.29,32.73,20.96,36.13,19.5,32.09,17.1,48.7,5.1566666667,31.6233333333,20.3566666667,27.0666666667,20.86,33.8633333333,18.2,39.79,5.0833333333,762.65,52.8333333333,7,27.8333333333,-3.8166666667,12.7212483785,12.7212483785 -260,0,20.1666666667,33.9266666667,19.29,32.79,21.2933333333,37.0566666667,19.5,32.03,17.1,48.56,5.3333333333,31.6933333333,20.5333333333,27.0666666667,21.0666666667,33.73,18.2,39.73,5.2,762.6,52,7,28,-3.9,43.6952488264,43.6952488264 -250,0,20.23,33.43,19.29,32.76,21.6633333333,37.89,19.5,32,17.1,48.4333333333,5.4,30.6333333333,20.6666666667,26.9266666667,21.23,33.43,18.2,39.6633333333,5.2666666667,762.55,52,6.8333333333,30,-3.8666666667,10.2978141978,10.2978141978 -220,0,20.3566666667,33.1566666667,19.29,32.7,21.8566666667,38.2233333333,19.5,32,17.1,48.26,5.4333333333,30.5933333333,20.8233333333,26.79,21.29,33.1566666667,18.2,39.4975,5.3333333333,762.5,52,6.6666666667,32,-3.8333333333,2.9574967455,2.9574967455 -150,10,20.4266666667,34.0666666667,19.39,32.6266666667,22.0666666667,37.5666666667,19.5,32.03,17.1,48.1266666667,5.56,30.6666666667,20.9633333333,26.73,21.46,32.9666666667,18.26,39.4,5.4,762.45,52,6.5,34,-3.8,47.3793472396,47.3793472396 -100,0,20.5666666667,34.4,19.39,32.76,21.9266666667,36.4933333333,19.5,32.09,17.1,48,5.745,28.245,21.1,26.5666666667,21.625,32.7225,18.29,39.26,5.4666666667,762.4,52,6.3333333333,36,-3.7666666667,34.0629374376,34.0629374376 -600,0,20.6,34.3266666667,19.39,33.23,21.76,35.49,19.6,32.06,17.1,47.9333333333,5.8,27.7633333333,21.1975,26.3425,21.76,32.53,18.29,39.2,5.5333333333,762.35,52,6.1666666667,38,-3.7333333333,16.6417186148,16.6417186148 -590,0,20.6975,35,19.3233333333,33.3633333333,21.6333333333,35.29,19.6,31.9266666667,17.1,47.9,5.9333333333,27.43,21.3566666667,26.23,21.89,32.3633333333,18.3566666667,39,5.6,762.3,52,6,40,-3.7,25.713177619,25.713177619 -370,0,20.79,35.26,19.29,33.4333333333,21.7633333333,35.6266666667,19.6,31.89,17.1,47.9,5.9,25.1666666667,21.5,26.03,21.9633333333,32.23,18.29,38.9333333333,5.6833333333,762.2833333333,50.8333333333,6,40,-3.9333333333,10.4765182128,10.4765182128 -290,0,20.9266666667,35.4333333333,19.29,33.56,21.9633333333,35.7,19.6,31.8233333333,17.1,47.9,5.9,25.6266666667,21.6333333333,25.8233333333,22.1333333333,32.0233333333,18.39,38.76,5.7666666667,762.2666666667,49.6666666667,6,40,-4.1666666667,18.1237649056,18.1237649056 -230,0,21.0666666667,35.4333333333,19.29,33.6266666667,22.1333333333,35.76,19.6333333333,31.86,17.1,47.9,6.03,26.2333333333,21.73,25.6,22.26,31.8233333333,18.39,38.7,5.85,762.25,48.5,6,40,-4.4,8.4474835778,8.4474835778 -250,0,21.2,35.1633333333,19.29,33.7,22.3266666667,35.7,19.7,32.1333333333,17.1,47.8266666667,6.1566666667,24.9666666667,21.8566666667,25.5333333333,22.4266666667,31.5666666667,18.39,38.7,5.9333333333,762.2333333333,47.3333333333,6,40,-4.6333333333,8.6323715281,8.6323715281 -210,0,21.26,35.03,19.39,33.7,22.4266666667,35.5,19.7,32.29,17.1,47.76,6.1233333333,24.73,22.0333333333,25.29,22.5,31.36,18.39,38.7,6.0166666667,762.2166666667,46.1666666667,6,40,-4.8666666667,43.7922280049,43.7922280049 -130,0,21.4266666667,34.79,19.39,33.7,22.5,35.36,19.76,32.29,17.1,47.7,6.19,24.5233333333,22.1,25.23,22.6,31.03,18.4633333333,38.76,6.1,762.2,45,6,40,-5.1,32.1665472467,32.1665472467 -90,0,21.5,34.73,19.4266666667,33.7,22.5333333333,35.0266666667,19.73,32.1333333333,17.1,47.59,6.2266666667,23.9633333333,22.23,25,22.7266666667,31.03,18.4633333333,38.5,6.1,762.2333333333,45.1666666667,5.8333333333,40,-5.0333333333,33.3745292621,33.3745292621 -580,0,21.6,34.6266666667,19.5,33.76,22.575,34.8725,19.79,32,17.1,47.53,6.3666666667,23.5566666667,22.3566666667,25,22.79,31.03,18.5,38.5,6.1,762.2666666667,45.3333333333,5.6666666667,40,-4.9666666667,1.5528829652,1.5528829652 -610,0,21.6666666667,34.5666666667,19.5333333333,33.9,22.5,34.93,19.79,31.84,17.1,47.5,6.5,23.86,22.4266666667,24.8566666667,22.8566666667,30.89,18.5,38.4333333333,6.1,762.3,45.5,5.5,40,-4.9,6.7861142335,6.7861142335 -390,0,21.7,33.7966666667,19.6,33.9,22.6633333333,36.2333333333,19.79,31.7,17.1,47.5,6.5,24.0666666667,22.5666666667,24.73,22.9266666667,30.6,18.5,38.4,6.1,762.3333333333,45.6666666667,5.3333333333,40,-4.8333333333,27.2007482941,27.2007482941 -320,0,21.7,33.39,19.65,33.79,22.8566666667,37.0933333333,19.79,31.6333333333,17.1,47.4,6.4,24.19,22.6333333333,24.6,23,30.46,18.5,38.3266666667,6.1,762.3666666667,45.8333333333,5.1666666667,40,-4.7666666667,6.8953930167,6.8953930167 -290,0,21.73,33.0266666667,19.7,33.56,23.23,37.9266666667,19.79,31.6,17.1666666667,47.3266666667,6.4,24.2633333333,22.7,24.46,23.0333333333,30.29,18.5,38.29,6.1,762.4,46,5,40,-4.7,15.6630149577,15.6630149577 -270,0,21.79,32.8266666667,19.7,33.4333333333,23.3566666667,38.4,19.79,31.5333333333,17.1,47.26,6.3666666667,23.9666666667,22.79,24.26,23.1,30.23,18.5,38.23,6.0666666667,762.4166666667,46.6666666667,5,40,-4.5666666667,40.1413206593,40.1413206593 -240,0,21.73,32.9333333333,19.79,33.26,23.6,38.4666666667,19.79,31.4633333333,17.1666666667,47.2,6.3,22.76,22.79,24.1333333333,23.1,30.0666666667,18.5,38.2,6.0333333333,762.4333333333,47.3333333333,5,40,-4.4333333333,44.2225197563,44.2225197563 -230,0,21.79,33.66,19.79,33.2,23.5333333333,37.3333333333,19.79,31.39,17.1,47.09,6.3,23.75,22.8233333333,24,23.1,30,18.55,38.2,6,762.45,48,5,40,-4.3,14.5250036498,14.5250036498 -190,0,21.79,33.7,19.79,33.2,23.5,36.0566666667,19.76,31.4266666667,17.1,47.09,6.3,25.2233333333,22.89,23.9266666667,23.1,29.89,18.5666666667,38.2,5.9666666667,762.4666666667,48.6666666667,5,40,-4.1666666667,46.7419443768,46.7419443768 -70,0,21.79,33.5666666667,19.79,33.0666666667,23.5,35.39,19.76,31.5666666667,17.1,47,6.2266666667,24.8233333333,22.79,23.6666666667,23.1,29.8233333333,18.6,38.03,5.9333333333,762.4833333333,49.3333333333,5,40,-4.0333333333,11.7440909147,11.7440909147 -50,0,21.79,33.3333333333,19.79,32.9,23.5,35.1333333333,19.73,31.73,17.1666666667,46.9333333333,6.19,25.63,22.84,23.575,23.1,29.7,18.5333333333,38.09,5.9,762.5,50,5,40,-3.9,11.6842217161,11.6842217161 -50,0,21.79,33,19.79,32.8266666667,23.36,34.7266666667,19.79,31.93,17.2,46.76,6.1233333333,26.63,22.79,23.4266666667,23.1,29.675,18.6,38.09,5.6666666667,762.5833333333,52,4.8333333333,40,-3.6333333333,22.8788905079,22.8788905079 -60,0,21.7,32.645,19.89,32.7233333333,23.0666666667,34.3333333333,19.79,32,17.2,46.595,6.06,26.5633333333,22.79,23.29,23.0333333333,29.6,18.6,38.09,5.4333333333,762.6666666667,54,4.6666666667,40,-3.3666666667,20.1060421416,20.1060421416 -410,0,21.7,32.4333333333,19.89,32.39,22.86,34.0666666667,19.73,31.9266666667,17.2,46.4333333333,5.9333333333,26.9566666667,22.73,23.29,22.9633333333,29.6,18.5,38.2,5.2,762.75,56,4.5,40,-3.1,1.1013643234,1.1013643234 -340,0,21.6333333333,32.4333333333,19.79,32.03,22.6666666667,33.9,19.7,31.8566666667,17.2,46.2233333333,5.7633333333,28.2966666667,22.6666666667,23.26,22.89,29.7266666667,18.5666666667,38.2,4.9666666667,762.8333333333,58,4.3333333333,40,-2.8333333333,27.6734202635,27.6734202635 -280,0,21.6,32.9266666667,19.73,32.1633333333,22.6666666667,34.3,19.7,31.8566666667,17.2,46.03,5.6233333333,29.8233333333,22.5333333333,23.2,22.89,30.13,18.5,38.2,4.7333333333,762.9166666667,60,4.1666666667,40,-2.5666666667,3.6563365022,3.6563365022 -300,20,21.6,33.26,19.6666666667,32.3266666667,22.96,35.1333333333,19.7,32.1266666667,17.26,46.06,5.2966666667,32.86,22.4633333333,23.23,22.89,30.53,18.5,38.2,4.5,763,62,4,40,-2.3,43.0554777267,43.0554777267 -280,20,21.6,32.8633333333,19.6,32.5266666667,23.1,35.5266666667,19.7,32.3333333333,17.2,46,4.8966666667,34.4666666667,22.3233333333,23.29,22.89,30.86,18.5,38.23,4.1833333333,763.0666666667,64,3.8333333333,38,-2.2,31.7501378944,31.7501378944 -510,20,21.5333333333,32.99,19.5666666667,32.6933333333,23.23,35.73,19.7,32.53,17.2,45.9666666667,4.56,36.16,22.1666666667,23.3233333333,22.89,31.1333333333,18.5,38.29,3.8666666667,763.1333333333,66,3.6666666667,36,-2.1,45.1268697274,45.1268697274 -530,20,21.5,33.7566666667,19.5,33.16,23.2225,35.42,19.7,32.6633333333,17.2,45.9,4.3666666667,37.4333333333,22.0333333333,23.4633333333,22.89,31.46,18.5,38.29,3.55,763.2,68,3.5,34,-2,2.3851461825,2.3851461825 -210,20,21.5,34.63,19.39,34.2,23.2,34.9633333333,19.7,32.79,17.2,46.0666666667,4.1266666667,38.9666666667,21.9633333333,23.5666666667,22.89,31.7266666667,18.5,38.29,3.2333333333,763.2666666667,70,3.3333333333,32,-1.9,45.0531296781,45.0531296781 -260,10,21.5,36.36,19.39,35.9266666667,23.39,35.06,19.79,32.8333333333,17.2,46.4,3.9333333333,40.1,21.89,23.76,22.89,32.0666666667,18.5,38.29,2.9166666667,763.3333333333,72,3.1666666667,30,-1.8,25.7863291074,25.7863291074 -110,10,21.5666666667,38.0266666667,19.39,36.75,23.2633333333,34.9333333333,19.79,32.76,17.2,46.8,3.76,41.3966666667,21.79,24.0333333333,22.8233333333,32.1266666667,18.4266666667,38.23,2.6,763.4,74,3,28,-1.7,18.3708258788,18.3708258788 -100,10,21.5,37.8333333333,19.29,37,23.0666666667,34.8633333333,19.76,33.1933333333,17.2,47.1933333333,3.6266666667,42.0633333333,21.73,24.0333333333,22.76,32.0966666667,18.4633333333,38.26,2.4166666667,763.4333333333,74.5,3,27.6666666667,-1.7666666667,17.9993814207,17.9993814207 -90,20,21.5666666667,37.36,19.29,36.8,23,34.79,19.7,33.4666666667,17.2,47.4,3.3,43.045,21.5666666667,24.0333333333,22.7,32.43,18.39,38.2,2.2333333333,763.4666666667,75,3,27.3333333333,-1.8333333333,36.3588373642,36.3588373642 -80,0,21.6,37.06,19.29,36.43,22.76,34.6633333333,19.7,33.4,17.26,47.4666666667,2.9,44.5,21.5,24.1666666667,22.7,32.7666666667,18.39,38.23,2.05,763.5,75.5,3,27,-1.9,45.7776855794,45.7776855794 -100,10,21.6,36.86,19.29,36.29,22.6333333333,34.53,19.7,33.4,17.29,47.3633333333,2.5,44.8333333333,21.3566666667,24.23,22.76,33.1,18.39,38.29,1.8666666667,763.5333333333,76,3,26.6666666667,-1.9666666667,41.0707030911,41.0707030911 -90,10,21.6,36.6933333333,19.29,36.1633333333,22.5,34.5,19.6,33.26,17.23,47.23,1.9,45.7666666667,21.29,24.3566666667,22.79,33.4633333333,18.39,38.29,1.6833333333,763.5666666667,76.5,3,26.3333333333,-2.0333333333,11.493306153,11.493306153 -130,20,21.6,36.3,19.29,36.03,22.4266666667,34.4333333333,19.6,33.2,17.5,56.79,1.4933333333,46.8333333333,21.2,24.4266666667,22.79,33.6633333333,18.39,38.03,1.5,763.6,77,3,26,-2.1,47.4995363737,47.4995363737 -120,30,21.6,35.9966666667,19.39,35.89,22.39,34.4,19.6333333333,33.6666666667,18.1666666667,73.73,1.0666666667,48.7333333333,21.1333333333,24.5666666667,22.79,34.03,18.39,38.03,1.25,763.6,77.5,2.8333333333,25.3333333333,-2.25,13.9041763032,13.9041763032 -110,20,21.6,35.53,19.39,36.4966666667,22.39,34.4666666667,19.9666666667,34.1333333333,18.0333333333,61,1,51.1266666667,21.05,24.7,22.79,34.2233333333,18.39,37.9633333333,1,763.6,78,2.6666666667,24.6666666667,-2.4,9.3870488345,9.3870488345 -110,30,21.6,35.4666666667,19.5,37.09,22.3566666667,34.6266666667,20.63,34.06,18.175,54.445,0.6,51.23,21,24.79,22.79,34.45,18.39,38.09,0.75,763.6,78.5,2.5,24,-2.55,21.6659324244,21.6659324244 -100,20,21.625,35.4,19.5,36.9633333333,22.29,34.7,21.0966666667,33.86,18.26,51.0666666667,0.1333333333,51.5633333333,20.9266666667,24.8566666667,22.73,34.6566666667,18.39,38.2,0.5,763.6,79,2.3333333333,23.3333333333,-2.7,49.2545507965,49.2545507965 -80,20,21.7,35.3266666667,19.6,36.6633333333,22.26,34.7,21.6333333333,33.4966666667,18.4266666667,48.5966666667,-0.4,52.7933333333,20.8566666667,24.89,22.79,34.93,18.39,38.26,0.25,763.6,79.5,2.1666666667,22.6666666667,-2.85,29.1665225988,29.1665225988 -80,20,21.79,35.1633333333,19.6,36.53,22.2,34.7,21.7,32.89,18.5,47.1966666667,-0.8,53.7333333333,20.79,24.89,22.79,35.2666666667,18.3566666667,38.29,0,763.6,80,2,22,-3,38.1325231981,38.1325231981 -80,30,21.79,35.03,19.7,36.4666666667,22.1,34.7,21.6,32.59,18.6,45.63,-1.0666666667,54.8233333333,20.7,25,22.79,35.4666666667,18.29,38.3633333333,-0.0333333333,763.5666666667,80.8333333333,1.8333333333,21.6666666667,-2.9166666667,9.1132780421,9.1132780421 -110,20,21.8233333333,34.9666666667,19.7,36.3266666667,22.0333333333,34.6266666667,21.46,32.4633333333,18.6666666667,44.63,-1.26,55.8233333333,20.6333333333,25,22.73,35.6266666667,18.3566666667,38.29,-0.0666666667,763.5333333333,81.6666666667,1.6666666667,21.3333333333,-2.8333333333,42.5114093348,42.5114093348 -110,20,21.89,34.9,19.7,36.26,21.9633333333,34.59,21.39,32.4333333333,18.73,43.6233333333,-1.5333333333,56.7266666667,20.6,25.0333333333,22.79,35.7,18.3566666667,38.29,-0.1,763.5,82.5,1.5,21,-2.75,40.1947304141,40.1947304141 -110,30,21.89,34.76,19.7,36.1266666667,21.89,34.59,21.3233333333,32.4333333333,18.79,43.03,-1.6,57.8,20.5333333333,25.1,22.79,35.79,18.29,38.29,-0.1333333333,763.4666666667,83.3333333333,1.3333333333,20.6666666667,-2.6666666667,7.0529718883,7.0529718883 -110,20,21.89,34.7,19.7,36,21.89,34.645,21.2,32.29,18.8233333333,42.4,-1.6,59.2933333333,20.5,25.1333333333,22.79,35.8633333333,18.29,38.29,-0.1666666667,763.4333333333,84.1666666667,1.1666666667,20.3333333333,-2.5833333333,29.9050971167,29.9050971167 -100,20,21.89,34.56,19.7,36,21.8566666667,34.6633333333,21.1,32.2,18.89,42.0666666667,-1.6975,59.795,20.4266666667,25.2,22.79,36.09,18.29,38.29,-0.2,763.4,85,1,20,-2.5,15.8829472726,15.8829472726 -90,30,21.89,34.4333333333,19.745,35.845,21.79,34.53,21.1,32.2,19,41.6,-1.93,60.2333333333,20.39,25.23,22.79,36.2233333333,18.29,38.23,-0.4,763.4666666667,85.8333333333,1.1666666667,27.1666666667,-2.55,25.6809540908,25.6809540908 -60,20,21.9633333333,34.5,19.76,35.9633333333,21.79,34.53,21,32.1933333333,19,41.3266666667,-1.76,62.36,20.39,25.43,22.8233333333,36.36,18.29,38.1633333333,-0.6,763.5333333333,86.6666666667,1.3333333333,34.3333333333,-2.6,23.6085707555,23.6085707555 -50,20,21.89,34.7,19.7,36.1633333333,21.73,34.7233333333,21,32.5266666667,19,41.4,-1.76,62.5666666667,20.39,25.86,22.8233333333,36.5,18.29,38.09,-0.8,763.6,87.5,1.5,41.5,-2.65,40.6378559652,40.6378559652 -70,20,21.9266666667,34.7,19.7,36.3266666667,21.6666666667,34.9333333333,21.0966666667,33.0666666667,19,41.3266666667,-1.8333333333,63.7566666667,20.39,26.1333333333,22.79,36.6266666667,18.29,38.2666666667,-1,763.6666666667,88.3333333333,1.6666666667,48.6666666667,-2.7,11.1436948529,11.1436948529 -60,30,21.9266666667,34.7,19.7,36.4666666667,21.6,35.06,21.4966666667,33.4666666667,19,41.1633333333,-1.6333333333,65.43,20.39,26.36,22.73,36.8333333333,18.29,38.4975,-1.2,763.7333333333,89.1666666667,1.8333333333,55.8333333333,-2.75,43.4073919198,43.4073919198 -60,20,21.89,34.73,19.6,36.53,21.5,35.23,22.0666666667,33.59,19,41.09,-1.5,66.4266666667,20.39,26.5666666667,22.6666666667,37.03,18.29,38.6633333333,-1.4,763.8,90,2,63,-2.8,14.1727247741,14.1727247741 -60,20,21.89,34.79,19.6,36.6633333333,21.5,35.29,22.3266666667,33.39,19.0333333333,41,-1.5666666667,66.6933333333,20.39,26.7633333333,22.6,37.2233333333,18.29,38.7,-1.3333333333,763.7666666667,90.3333333333,1.8333333333,62.8333333333,-2.6833333333,9.1297103208,9.1297103208 -40,20,21.89,34.8266666667,19.6,36.79,21.39,35.29,22.26,33.1633333333,19.0333333333,40.9333333333,-1.7,67.0333333333,20.3233333333,26.9633333333,22.6,37.5666666667,18.29,38.7,-1.2666666667,763.7333333333,90.6666666667,1.6666666667,62.6666666667,-2.5666666667,6.486250821,6.486250821 -40,20,21.89,34.9,19.5333333333,36.8633333333,21.39,35.29,22.2,33.1633333333,19.1,40.9666666667,-1.76,67.1,20.29,27.15,22.6,37.8333333333,18.29,38.7,-1.2,763.7,91,1.5,62.5,-2.45,12.8440420376,12.8440420376 -40,30,21.79,34.9,19.5,37.03,21.29,35.2,22.1,33.3,19.075,40.8725,-1.8266666667,68.2633333333,20.26,27.3233333333,22.5,38.1566666667,18.29,38.7,-1.1333333333,763.6666666667,91.3333333333,1.3333333333,62.3333333333,-2.3333333333,27.4419088033,27.4419088033 -40,20,21.79,34.9975,19.4266666667,37.09,21.23,35.2,22.0333333333,33.5,19,40.79,-1.9666666667,68.4566666667,20.2,27.39,22.5,38.565,18.29,38.79,-1.0666666667,763.6333333333,91.6666666667,1.1666666667,62.1666666667,-2.2166666667,6.8603631807,6.8603631807 -70,20,21.79,35.09,19.39,37.1266666667,21.1666666667,35.09,21.8566666667,33.7,19,40.7,-2.0666666667,68.4333333333,20.2,27.5333333333,22.5,39.0633333333,18.29,38.8633333333,-1,763.6,92,1,62,-2.1,44.5212318911,44.5212318911 -60,20,21.76,35.29,19.3233333333,37.2,21.1,35.1633333333,21.79,33.76,19,40.7,-2.1266666667,69.0333333333,20.2,27.6,22.39,39.4333333333,18.29,38.9,-1.1166666667,763.55,92.6666666667,1,60,-2.1166666667,35.0271768752,35.0271768752 -60,20,21.7,35.43,19.29,37.29,21.1,35.29,21.76,33.9,18.9266666667,40.59,-2.09,69.69,20.2,27.73,22.39,39.5,18.29,38.9,-1.2333333333,763.5,93.3333333333,1,58,-2.1333333333,13.9204730862,13.9204730862 -60,30,21.6666666667,35.43,19.23,37.29,21.1,35.29,21.7,33.9666666667,19,40.59,-2.1175,69.57,20.2,27.8566666667,22.29,39.59,18.29,39,-1.35,763.45,94,1,56,-2.15,28.4104756895,28.4104756895 -60,20,21.6,35.29,19.2,37.3266666667,21.1,35.3266666667,21.6666666667,34.06,18.9633333333,40.59,-2.2,70.0633333333,20.2,27.9266666667,22.29,39.59,18.29,38.9333333333,-1.4666666667,763.4,94.6666666667,1,54,-2.1666666667,1.6472616582,1.6472616582 -60,20,21.6,35.4,19.1333333333,37.4,21.1,35.3266666667,21.6,34.06,18.89,40.53,-2.2,69.8933333333,20.1333333333,28,22.2,39.59,18.29,38.8633333333,-1.5833333333,763.35,95.3333333333,1,52,-2.1833333333,6.3597884611,6.3597884611 -50,20,21.5333333333,35.3266666667,19.0666666667,37.5,21,35.29,21.55,34.2,18.89,40.5,-2.26,69.96,20.1,28.1,22.2,39.59,18.29,38.79,-1.7,763.3,96,1,50,-2.2,34.5348352566,34.5348352566 -60,30,21.5,35.4,19,37.5,21,35.26,21.5,34.23,18.8233333333,40.4333333333,-2.5666666667,68.7966666667,20.1,28.1666666667,22.1,39.73,18.29,38.8633333333,-1.8333333333,763.25,96,1,47.5,-2.35,21.3348511257,21.3348511257 -60,20,21.4266666667,35.3266666667,18.89,37.59,21,35.2,21.5,34.29,18.79,40.29,-2.8333333333,68.6566666667,20.1,28.2,22.0333333333,39.8633333333,18.29,38.8633333333,-1.9666666667,763.2,96,1,45,-2.5,34.6870356589,34.6870356589 -60,10,21.39,35.83,18.79,37.53,21,35.23,21.39,34.1266666667,18.79,40.29,-3.03,68.6233333333,20.0333333333,28.2,22.0666666667,40.23,18.29,38.76,-2.1,763.15,96,1,42.5,-2.65,34.1355998069,34.1355998069 -50,0,21.3233333333,36.03,18.79,37.53,20.9266666667,35.23,21.3233333333,34.26,18.79,40.29,-3.2233333333,68.7633333333,20,28.29,22,40.3633333333,18.29,38.7,-2.2333333333,763.1,96,1,40,-2.8,34.9861572147,34.9861572147 -20,0,21.29,36.1566666667,18.76,37.59,20.9633333333,35.26,21.26,34.1633333333,18.79,40.29,-3.29,69.1566666667,20,28.29,21.9633333333,40.59,18.29,38.7,-2.3666666667,763.05,96,1,37.5,-2.95,14.2665290274,14.2665290274 -20,0,21.29,36.29,18.7,37.59,20.89,35.2,21.1333333333,34.09,18.7,40.26,-3.29,69.7566666667,20,28.39,21.89,40.59,18.29,38.73,-2.5,763,96,1,35,-3.1,36.6999015794,36.6999015794 -30,0,21.2,36.26,18.7,37.5,20.8566666667,35.09,21.0666666667,34.09,18.76,40.2,-3.26,69.9633333333,20,28.39,21.89,40.8266666667,18.29,38.8633333333,-2.5333333333,763,96,1.1666666667,35.3333333333,-3.1333333333,14.5066463621,14.5066463621 -40,0,21.2,36.2,18.7,37.5,20.8566666667,35.1633333333,21,34.09,18.7,40.2,-3.26,69.8233333333,19.89,28.39,21.8233333333,40.9666666667,18.29,39,-2.5666666667,763,96,1.3333333333,35.6666666667,-3.1666666667,0.0718615134,0.0718615134 -50,0,21.1666666667,36.09,18.6,37.2,20.8233333333,35.2666666667,20.8566666667,34.09,18.7,40.2,-3.4,69.76,19.89,28.4633333333,21.79,41.2266666667,18.29,38.9333333333,-2.6,763,96,1.5,36,-3.2,5.9539609239,5.9539609239 -50,0,21.1,36.09,18.6,37.1266666667,20.89,35.4,20.79,34.09,18.7,40.2,-3.4666666667,69.9666666667,19.89,28.5,21.79,41.56,18.29,38.9,-2.6333333333,763,96,1.6666666667,36.3333333333,-3.2333333333,48.5207453952,48.5207453952 -50,0,21.1,36.09,18.5,37.06,20.89,35.4333333333,20.6666666667,34.09,18.7,40.2,-3.4333333333,70.1566666667,19.89,28.525,21.7,41.7666666667,18.29,38.8266666667,-2.6666666667,763,96,1.8333333333,36.6666666667,-3.2666666667,12.6990705612,12.6990705612 -60,0,21.0333333333,35.9633333333,18.5,37,20.89,35.5,20.6,34.09,18.65,40.1,-3.5,70.03,19.89,28.6666666667,21.76,41.9666666667,18.29,38.8266666667,-2.7,763,96,2,37,-3.3,33.8599457406,33.8599457406 -40,0,21,35.845,18.39,36.9,20.89,35.5,20.5,34,18.6,40.09,-3.5,70.65,19.79,28.6,21.7,42.1,18.29,38.8266666667,-2.75,762.9166666667,96,2,36,-3.3333333333,39.9327814812,39.9327814812 -40,0,20.9633333333,35.79,18.39,36.9,20.9633333333,35.5,20.4266666667,34,18.6,40.09,-3.59,70.53,19.79,28.6,21.6666666667,42.1633333333,18.29,38.8266666667,-2.8,762.8333333333,96,2,35,-3.3666666667,32.6129708556,32.6129708556 -50,0,20.89,35.79,18.3566666667,36.9,21,35.59,20.39,34,18.6,40.09,-3.4633333333,70.9233333333,19.79,28.6,21.6,42.03,18.29,38.8266666667,-2.85,762.75,96,2,34,-3.4,2.9809947009,2.9809947009 -40,0,20.8566666667,35.76,18.29,36.9666666667,21,35.6633333333,20.3233333333,34,18.6,40.09,-3.4,71.1933333333,19.79,28.6666666667,21.6,41.8633333333,18.29,38.73,-2.9,762.6666666667,96,2,33,-3.4333333333,5.8781907079,5.8781907079 -40,0,20.79,35.7,18.29,37,21,35.7,20.26,33.9666666667,18.5666666667,40.09,-3.4,71.4666666667,19.76,28.7,21.6,41.73,18.29,38.73,-2.95,762.5833333333,96,2,32,-3.4666666667,33.5620747996,33.5620747996 -60,0,20.79,35.7,18.29,37.06,21,35.7,20.2,33.9,18.5666666667,40.09,-3.4,71.59,19.7,28.7,21.6,41.6633333333,18.29,38.73,-3,762.5,96,2,31,-3.5,33.579783258,33.579783258 -30,0,20.79,35.7,18.2,37.09,21,35.745,20.2,33.9,18.5,40.09,-3.4,71.6566666667,19.7,28.7,21.5333333333,41.59,18.29,38.73,-3,762.45,96.1666666667,2,31.3333333333,-3.4833333333,12.7141289995,12.7141289995 -30,0,20.7,35.7,18.2,37.1633333333,21,35.7,20.1,33.9,18.5,40.09,-3.3633333333,72.1333333333,19.7,28.76,21.5666666667,41.4333333333,18.29,38.7,-3,762.4,96.3333333333,2,31.6666666667,-3.4666666667,11.272070941,11.272070941 -20,0,20.7,35.7,18.1,37.245,21,35.7,20.0333333333,33.8266666667,18.5,40.09,-3.29,72.4,19.7,28.79,21.5,41.4333333333,18.29,38.76,-3,762.35,96.5,2,32,-3.45,43.0573058547,43.0573058547 -30,0,20.6666666667,35.6633333333,18.1,37.29,21,35.79,20,33.79,18.5,40.09,-3.26,72.3566666667,19.7,28.79,21.4633333333,41.3333333333,18.29,38.9,-3,762.3,96.6666666667,2,32.3333333333,-3.4333333333,29.1780412081,29.1780412081 -50,0,20.6,35.59,18.0333333333,37.23,21,35.8633333333,19.9266666667,33.79,18.4266666667,40.03,-3.0666666667,73.0966666667,19.6,28.73,21.39,41.2,18.23,38.8266666667,-3,762.25,96.8333333333,2,32.6666666667,-3.4166666667,29.7063501668,29.7063501668 -40,0,20.6,35.56,18,37.29,20.89,35.9333333333,19.89,33.79,18.4266666667,40.03,-2.7233333333,73.93,19.6,28.79,21.4266666667,41.1266666667,18.29,38.845,-3,762.2,97,2,33,-3.4,22.2806689562,22.2806689562 -40,0,20.5333333333,35.5,18,37.29,20.89,35.9333333333,19.8233333333,33.73,18.39,40,-2.4633333333,74.4566666667,19.6,28.79,21.4266666667,41.0666666667,18.29,38.9,-2.7166666667,762.1333333333,97.1666666667,2,33,-3.1,29.404138471,29.404138471 -50,0,20.5,35.59,17.89,37.4333333333,20.89,36,19.79,33.7,18.39,40,-2.1633333333,75.0333333333,19.6,28.79,21.39,40.9666666667,18.29,38.9,-2.4333333333,762.0666666667,97.3333333333,2,33,-2.8,25.2641715808,25.2641715808 -50,0,20.4266666667,35.53,17.89,37.5,20.89,36,19.79,33.7,18.39,40,-1.9633333333,75.4333333333,19.6,28.89,21.39,40.9,18.29,38.9,-2.15,762,97.5,2,33,-2.5,31.9071705104,31.9071705104 -50,0,20.39,35.5,17.89,37.53,20.89,36,19.7,33.79,18.39,40,-1.745,75.745,19.5333333333,28.9633333333,21.29,40.8633333333,18.29,38.9,-1.8666666667,761.9333333333,97.6666666667,2,33,-2.2,37.5890601194,37.5890601194 -40,0,20.39,35.5,17.8233333333,37.53,20.9633333333,36,19.7,33.79,18.3233333333,40.09,-1.5666666667,76.26,19.5,29,21.29,40.79,18.29,38.9333333333,-1.5833333333,761.8666666667,97.8333333333,2,33,-1.9,7.0753846667,7.0753846667 -40,0,20.29,35.5,17.79,37.53,21,36,19.7,33.79,18.3233333333,40.09,-1.5,76.5266666667,19.5,29.025,21.29,40.79,18.29,39,-1.3,761.8,98,2,33,-1.6,23.889014835,23.889014835 -50,0,20.29,35.56,17.79,37.59,21,36,19.6333333333,33.79,18.34,40.09,-1.3566666667,76.7933333333,19.5,29.1,21.23,40.79,18.29,39,-1.1833333333,761.75,98,2,32.5,-1.4833333333,38.4213423124,38.4213423124 -50,0,20.29,35.59,17.7,37.6266666667,20.9633333333,36.03,19.6,33.79,18.29,40.09,-1.29,77.06,19.5,29.1,21.2,40.79,18.23,38.9333333333,-1.0666666667,761.7,98,2,32,-1.3666666667,15.4427583911,15.4427583911 -40,0,20.23,35.53,17.7,37.7,20.89,36.09,19.6,33.79,18.29,40.1633333333,-1.2,77.1233333333,19.4266666667,29.1,21.2,40.845,18.29,39,-0.95,761.65,98,2,31.5,-1.25,37.7186838305,37.7186838305 -30,0,20.23,35.53,17.7,37.79,20.9633333333,36.09,19.5666666667,33.79,18.29,40.2,-1.1333333333,77.3966666667,19.4633333333,29.1666666667,21.2,40.79,18.23,38.9333333333,-0.8333333333,761.6,98,2,31,-1.1333333333,10.2069587563,10.2069587563 -30,0,20.2,35.5,17.7,37.8633333333,20.89,36.09,19.5,33.79,18.29,40.2,-1.0666666667,77.7266666667,19.39,29.1666666667,21.1333333333,40.9,18.2,39,-0.7166666667,761.55,98,2,30.5,-1.0166666667,0.2420088742,0.2420088742 -40,0,20.2,35.5,17.7,37.9,20.89,36.09,19.5,33.8266666667,18.23,40.23,-0.9333333333,77.9333333333,19.39,29.2,21.1333333333,40.9,18.2,39,-0.6,761.5,98,2,30,-0.9,19.2986190668,19.2986190668 -30,10,20.2,35.53,17.6333333333,37.9,20.89,36.1633333333,19.4266666667,33.8266666667,18.29,40.43,-0.8666666667,78.0633333333,19.39,29.2,21.1,41,18.2,39.23,-0.55,761.4333333333,97.8333333333,2.1666666667,30.5,-0.8666666667,48.0430659605,48.0430659605 -70,20,20.1333333333,35.59,17.6,37.8633333333,20.84,36.145,19.39,33.79,18.2,40.89,-0.7333333333,78.2633333333,19.3566666667,28.8566666667,21.1,40.8,18.2,39.29,-0.5,761.3666666667,97.6666666667,2.3333333333,31,-0.8333333333,15.5584536144,15.5584536144 -70,30,20.1,35.6266666667,17.6,37.6566666667,20.7,36,19.5666666667,34.2266666667,18.2,41.2233333333,-0.6666666667,78.6,19.29,28.73,21.0666666667,40.2333333333,18.2,39.1633333333,-0.45,761.3,97.5,2.5,31.5,-0.8,43.0637405487,43.0637405487 -50,20,20.1,35.7,17.7,37.545,20.7,35.9333333333,19.8266666667,34.5,18.1,41.53,-0.5333333333,78.8666666667,19.2,28.4633333333,21,39.6933333333,18.2,39.03,-0.4,761.2333333333,97.3333333333,2.6666666667,32,-0.7666666667,41.7623592657,41.7623592657 -60,10,20.1,35.56,17.7,37.3633333333,20.7,35.8633333333,20,34.06,18.1,41.4633333333,-0.3666666667,79.1333333333,19.2,28.3233333333,20.9633333333,39.2233333333,18.2,38.6633333333,-0.35,761.1666666667,97.1666666667,2.8333333333,32.5,-0.7333333333,41.1071541603,41.1071541603 -90,0,20.1,35.56,17.7,37.29,20.6333333333,35.73,20.0666666667,34,18.1,41.0666666667,-0.2333333333,79.4,19.1,28.29,20.89,38.9633333333,18.2,38.59,-0.3,761.1,97,3,33,-0.7,26.9508871483,26.9508871483 -70,0,20.0666666667,35.76,17.7,37.4,20.6333333333,35.7,20,33.6333333333,18.1,41.46,-0.0666666667,79.7266666667,19.1,28.29,20.89,38.6333333333,18.2,38.495,-0.15,761.0333333333,96.3333333333,3,34.5,-0.65,34.8477318301,34.8477318301 -70,0,20,35.7,17.7,37.4666666667,20.6333333333,35.6266666667,19.9266666667,33.4333333333,18,41.86,0.1,79.9725,19.1,28.2,20.8233333333,38.36,18.1666666667,38.1633333333,-5.55111512312578E-17,760.9666666667,95.6666666667,3,36,-0.6,15.4768982087,15.4768982087 -50,0,20,35.6266666667,17.7,37.4666666667,20.6,35.5,19.89,33.26,18,42.1333333333,0.2666666667,80.23,19.0333333333,28.1333333333,20.79,38.1633333333,18.1666666667,37.9633333333,0.15,760.9,95,3,37.5,-0.55,5.2925158641,5.2925158641 -60,0,20,35.7,17.7,37.4,20.5333333333,35.4333333333,19.8233333333,33.1266666667,17.89,42.36,0.4,80.3333333333,19,28.1333333333,20.73,37.9633333333,18.1,37.76,0.3,760.8333333333,94.3333333333,3,39,-0.5,33.1970914965,33.1970914965 -140,0,20,35.73,17.7,37.4,20.5,35.4,19.76,33,17.89,42.56,0.5333333333,80.4,19,28.2,20.7,37.79,18.1,37.5666666667,0.45,760.7666666667,93.6666666667,3,40.5,-0.45,33.2621881273,33.2621881273 -170,10,20,35.79,17.7,37.3266666667,20.5,35.4,19.7,33.06,17.89,42.6566666667,0.8666666667,80.5633333333,19,28.2,20.7,37.6566666667,18.1333333333,37.5666666667,0.6,760.7,93,3,42,-0.4,15.0899541331,15.0899541331 -50,0,20,35.7,17.7,37.1633333333,20.5,35.26,19.6666666667,33,17.8233333333,42.73,1.1333333333,80.83,19,28.2225,20.6,37.4666666667,18.2,37.96,0.8,760.5833333333,92,3.5,45.1666666667,-0.3666666667,18.9530164353,18.9530164353 -30,0,20,35.6266666667,17.7,37.1633333333,20.5,35.1266666667,19.6,33,17.79,42.79,1.46,81.03,19,28.29,20.6,37.4,18.2,38.6933333333,1,760.4666666667,91,4,48.3333333333,-0.3333333333,48.6257442622,48.6257442622 -50,0,20,35.645,17.73,37.2,20.4633333333,35.0266666667,19.5666666667,33,17.79,42.9,1.6666666667,81.03,18.89,28.39,20.6,37.3633333333,18.2,38.9666666667,1.2,760.35,90,4.5,51.5,-0.3,4.709530843,4.709530843 -50,0,19.89,35.7,17.79,37.2,20.39,34.9666666667,19.5,33,17.79,42.9666666667,2.03,80.9666666667,18.89,28.39,20.5333333333,37.29,18.2,39.23,1.4,760.2333333333,89,5,54.6666666667,-0.2666666667,5.3306986229,5.3306986229 -50,0,19.9633333333,35.7,17.79,37.26,20.39,34.93,19.5,33.09,17.79,43,2.2233333333,80.76,18.89,28.39,20.5,37.2,18.2,39.29,1.6,760.1166666667,88,5.5,57.8333333333,-0.2333333333,6.6865220782,6.6865220782 -50,0,19.89,35.79,17.8566666667,37.2,20.3233333333,34.79,19.5,33.03,17.79,43.06,2.6566666667,80.59,18.89,28.39,20.5,37.1633333333,18.2,39.26,1.8,760,87,6,61,-0.2,21.813362441,21.813362441 -40,0,19.89,35.73,18,36.9666666667,20.29,34.7,19.4266666667,33.03,17.7,43.09,2.99,80.2566666667,18.89,28.4266666667,20.4266666667,37.03,18.2,39,2.0333333333,759.85,86,6,61.6666666667,-0.1333333333,6.4786529983,6.4786529983 -50,10,19.89,35.76,18.0666666667,36.9,20.29,34.7675,19.4175,33.0225,17.7,43.09,3.3,78.3966666667,18.89,28.5,20.39,37,18.2,38.7233333333,2.2666666667,759.7,85,6,62.3333333333,-0.0666666667,42.3255174886,42.3255174886 -50,0,19.89,35.8333333333,18.1333333333,36.8333333333,20.29,34.8633333333,19.39,33,17.7,43.03,3.6333333333,75.9233333333,18.89,28.5,20.39,36.9333333333,18.2,38.59,2.5,759.55,84,6,63,0,2.5459536002,2.5459536002 -50,0,20,39.5266666667,18.2,36.7,20.29,34.9333333333,19.39,33,17.7,43.09,4.1,72.2566666667,18.89,28.5,20.3566666667,36.9,18.2,38.4666666667,2.7333333333,759.4,83,6,63.6666666667,0.0666666667,13.1711021066,13.1711021066 -60,10,20,38.5266666667,18.245,36.845,20.29,35,19.39,33,17.7,43.09,4.3666666667,68.7966666667,18.89,28.5,20.29,36.8266666667,18.2,38.2666666667,2.9666666667,759.25,82,6,64.3333333333,0.1333333333,48.8490639371,48.8490639371 -100,0,20,37.8333333333,18.29,36.76,20.29,35.09,19.3233333333,33,17.7,43.09,4.545,65.2,18.89,28.5,20.29,36.76,18.1333333333,38.0266666667,3.2,759.1,81,6,65,0.2,20.969878952,20.969878952 -70,10,20,37.76,18.29,36.6266666667,20.29,35.09,19.3233333333,33,17.7,43.09,4.59,63.2333333333,18.79,28.5,20.29,36.7,18.1333333333,37.7666666667,3.2833333333,758.9333333333,81,6.3333333333,57.5,0.2833333333,37.5800196198,37.5800196198 -370,10,20,37.56,18.29,36.56,20.26,34.7666666667,19.29,33,17.7,43.1633333333,4.59,62.2333333333,18.79,28.5,20.26,36.6633333333,18.2,37.545,3.3666666667,758.7666666667,81,6.6666666667,50,0.3666666667,32.9782864312,32.9782864312 -50,10,19.9266666667,37.36,18.29,36.4333333333,20.1333333333,34.8933333333,19.29,33,17.6,43,4.7933333333,62.5566666667,18.79,28.5,20.26,36.6633333333,18.1,37.4,3.45,758.6,81,7,42.5,0.45,3.7257487536,3.7257487536 -20,0,19.9266666667,37.4633333333,18.3233333333,36.4,20.3233333333,35.6566666667,19.29,33,17.6,43,5,62.89,18.79,28.5,20.2,36.56,18.1,37.3266666667,3.5333333333,758.4333333333,81,7.3333333333,35,0.5333333333,7.7576466487,7.7576466487 -50,0,19.9266666667,37.6633333333,18.39,36.4,20.39,35.6566666667,19.29,33.1333333333,17.6,43,5,63.63,18.79,28.6333333333,20.2,36.5,18.1,37.1633333333,3.6166666667,758.2666666667,81,7.6666666667,27.5,0.6166666667,42.036649806,42.036649806 -120,0,19.89,37.5,18.39,36.4,20.39,35.79,19.26,33.26,17.6,43,5,64.49,18.79,28.7,20.1333333333,36.59,18.1,37.09,3.7,758.1,81,8,20,0.7,42.0465026633,42.0465026633 -100,10,19.89,37.36,18.39,36.3266666667,20.39,35.8633333333,19.2,33.26,17.6,42.9666666667,4.8666666667,64.7633333333,18.79,28.79,20.1333333333,36.59,18.1,37,3.6666666667,757.9833333333,82.1666666667,8.1666666667,24,0.85,37.756533362,37.756533362 -70,0,20,39.03,18.39,36.6,20.39,35.8633333333,19.2,33.4333333333,17.6,42.9666666667,4.7266666667,65.1633333333,18.745,28.865,20.1,36.7,18.1,36.9333333333,3.6333333333,757.8666666667,83.3333333333,8.3333333333,28,1,2.5654608267,2.5654608267 -50,0,20,37.9566666667,18.39,37.1333333333,20.39,35.79,19.2,33.56,17.6,43.09,4.6233333333,66.49,18.73,28.9633333333,20.1,36.7,18.1,36.8633333333,3.6,757.75,84.5,8.5,32,1.15,9.5336100203,9.5336100203 -60,0,20,37.49,18.39,37.26,20.39,35.79,19.2,33.73,17.6,43.2,4.69,67.1566666667,18.7,29.1333333333,20.0666666667,36.7,18.1,36.79,3.5666666667,757.6333333333,85.6666666667,8.6666666667,36,1.3,20.3714956646,20.3714956646 -60,0,20,37.195,18.39,37.1266666667,20.39,35.79,19.2,33.8633333333,17.6,43.2,4.6266666667,67.9566666667,18.7,29.2,20,36.6266666667,18.1,36.76,3.5333333333,757.5166666667,86.8333333333,8.8333333333,40,1.45,13.3156118216,13.3156118216 -60,0,20,37.09,18.39,37.06,20.39,35.79,19.2,34,17.6,43.2,4.5,69.6233333333,18.7,29.3233333333,20,36.6266666667,18.0333333333,36.6266666667,3.5,757.4,88,9,44,1.6,2.4475571699,2.4475571699 -60,0,20,36.9666666667,18.4633333333,37.06,20.39,35.79,19.2,34.06,17.6,43.2,4.4,71.8333333333,18.7,29.39,19.9725,36.7225,18,36.59,3.5166666667,757.1833333333,89,8.8333333333,43.5,1.7833333333,16.1508576479,16.1508576479 -70,0,20,36.8266666667,18.5,37.09,20.3566666667,35.79,19.1666666667,34.23,17.5666666667,43.2,4.3333333333,73.1666666667,18.7,29.4266666667,19.9633333333,36.79,18,36.59,3.5333333333,756.9666666667,90,8.6666666667,43,1.9666666667,10.1144813118,10.1144813118 -130,0,20,36.83,18.5,37.09,20.29,35.79,19.1,34.3425,17.5,43.2,4.2633333333,75.36,18.7,29.5666666667,19.9633333333,36.9,18,36.59,3.55,756.75,91,8.5,42.5,2.15,46.6402846971,46.6402846971 -430,10,20,37.03,18.4633333333,37.06,20.29,35.79,19.1,34.5,17.5,43.2,4.19,76.5666666667,18.7,29.7,19.89,36.9,18,36.53,3.5666666667,756.5333333333,92,8.3333333333,42,2.3333333333,49.4762484217,49.4762484217 -160,0,20.0333333333,39.0666666667,18.39,37,20.29,35.79,19.1,34.6266666667,17.5,43.2,4.09,78.545,18.7,29.76,19.89,37,18,36.5,3.5833333333,756.3166666667,93,8.1666666667,41.5,2.5166666667,30.0484064617,30.0484064617 -80,0,20.1,40.7333333333,18.39,37.495,20.3566666667,35.79,19.1,34.8333333333,17.5,43.3266666667,4.19,80.5333333333,18.7,29.9266666667,19.89,37,18,36.5,3.6,756.1,94,8,41,2.7,19.8030590313,19.8030590313 -20,0,20.1,39.5666666667,18.5,38.2666666667,20.39,35.9333333333,19.0333333333,35.0666666667,17.5,43.5266666667,4.19,81.1333333333,18.6333333333,30,19.8233333333,37.03,18,36.5,3.75,755.9333333333,93.5,8.1666666667,45,2.7666666667,12.6916124369,12.6916124369 -20,0,20.1,39.2933333333,18.5,38.4,20.39,36,19.1,35.26,17.5,43.73,4.3,81.7933333333,18.6,30.1333333333,19.8233333333,37.09,18,36.5,3.9,755.7666666667,93,8.3333333333,49,2.8333333333,48.8546647481,48.8546647481 -40,0,20.2,38.6,18.5333333333,38.3633333333,20.3566666667,36.09,19.1,35.4633333333,17.5,43.8633333333,4.3666666667,82.1266666667,18.6,30.26,19.79,37.2,18,36.59,4.05,755.6,92.5,8.5,53,2.9,46.9149036217,46.9149036217 -60,0,20.2,38.2666666667,18.6,38.23,20.29,36.09,19.1,35.59,17.5,43.9333333333,4.4333333333,82.2266666667,18.6,30.4266666667,19.79,37.2,18,36.59,4.2,755.4333333333,92,8.6666666667,57,2.9666666667,20.2031954774,20.2031954774 -50,0,20.26,37.93,18.6333333333,38.23,20.29,36.09,19.0333333333,35.6566666667,17.5,44,4.5,82.3,18.6,30.5,19.79,37.29,17.9266666667,36.59,4.35,755.2666666667,91.5,8.8333333333,61,3.0333333333,48.0046523502,48.0046523502 -60,0,20.26,37.73,18.7,38.23,20.3566666667,36.09,19.0333333333,35.73,17.5,44,4.53,82.19,18.6,30.6333333333,19.79,37.3633333333,17.89,36.7,4.5,755.1,91,9,65,3.1,14.4768204773,14.4768204773 -40,0,20.3233333333,37.5,18.73,38.2,20.39,36.09,19.1,35.9333333333,17.5,44,4.6566666667,82.19,18.6,30.76,19.76,37.4,17.89,36.7,4.4833333333,754.9666666667,92,9,57.3333333333,3.25,14.3618635368,14.3618635368 -40,0,20.3233333333,37.5,18.79,38.1266666667,20.39,36.03,19.0333333333,35.9333333333,17.5,44,4.69,82.1233333333,18.6,30.8233333333,19.7,37.4666666667,17.89,36.7,4.4666666667,754.8333333333,93,9,49.6666666667,3.4,14.9118723231,14.9118723231 -50,0,20.39,37.3633333333,18.89,38.06,20.4633333333,36.06,19,36,17.5,44.0675,4.69,82.33,18.6,30.9175,19.7,37.5,17.89,36.76,4.45,754.7,94,9,42,3.55,13.202253182,13.202253182 -40,0,20.4633333333,37.29,18.89,37.9333333333,20.4633333333,36.06,19,36.06,17.5,44.09,4.59,82.93,18.6,31.0666666667,19.7,37.56,17.89,36.79,4.4333333333,754.5666666667,95,9,34.3333333333,3.7,37.9756312002,37.9756312002 -50,10,20.5,37.1633333333,18.9266666667,37.9,20.5,36.06,19,36.23,17.5,44.09,4.6566666667,83.5233333333,18.5666666667,31.2,19.7,37.6266666667,17.89,36.8633333333,4.4166666667,754.4333333333,96,9,26.6666666667,3.85,4.8511792324,4.8511792324 -50,0,20.525,37.0675,19,37.8266666667,20.5,36,19,36.3633333333,17.5,44.09,4.69,83.9966666667,18.5,31.3266666667,19.7,37.7,17.89,36.9,4.4,754.3,97,9,19,4,8.6947347852,8.6947347852 -50,0,20.6,36.9333333333,19,37.76,20.5,36,19,36.4333333333,17.5,44.09,4.69,84.33,18.6,31.4266666667,19.7,37.73,17.89,36.9666666667,4.5,754.1833333333,96.5,9,26.5,4.0166666667,24.3700185907,24.3700185907 -50,0,20.6333333333,36.9,19,37.7,20.5,36,19,36.56,17.5,44.09,4.7266666667,84.6233333333,18.6,31.5666666667,19.6333333333,37.79,17.89,37,4.6,754.0666666667,96,9,34,4.0333333333,40.4642721172,40.4642721172 -50,0,20.7,36.9,19.0333333333,37.7,20.5,36,19,36.645,17.5,44.09,4.825,84.8225,18.5,31.73,19.6,37.9,17.89,37,4.7,753.95,95.5,9,41.5,4.05,14.3212319119,14.3212319119 -40,0,20.7,36.79,19.1,37.7,20.575,36,19,36.79,17.5,44.09,4.9,85.06,18.5,31.79,19.6,37.9333333333,17.89,37.09,4.8,753.8333333333,95,9,49,4.0666666667,11.4163612016,11.4163612016 -30,0,20.7,36.79,19.1,37.7,20.6,36,19,36.8633333333,17.5,44.2,5,85.19,18.5,31.9266666667,19.6,38,17.89,37.09,4.9,753.7166666667,94.5,9,56.5,4.0833333333,19.6879090858,19.6879090858 -20,0,20.79,36.76,19.1,37.7,20.6,36,19,36.9333333333,17.5,44.2,5.06,85.2633333333,18.5,32.06,19.6,38.09,17.79,37.09,5,753.6,94,9,64,4.1,47.905098286,47.905098286 -20,0,20.79,36.7,19.2,37.645,20.6,35.9333333333,19,37.06,17.5,44.2,5.09,85.4333333333,18.5,32.1266666667,19.6,38.1633333333,17.79,37.09,5.0833333333,753.4666666667,94.1666666667,9.1666666667,59.8333333333,4.2166666667,15.7198548899,15.7198548899 -30,10,20.79,36.7,19.2,37.59,20.5666666667,35.9,19,37.1266666667,17.5,44.2,5.09,85.5,18.5,32.26,19.6,38.23,17.8566666667,37.26,5.1666666667,753.3333333333,94.3333333333,9.3333333333,55.6666666667,4.3333333333,10.376918246,10.376918246 -60,0,20.79,36.76,19.2,37.59,20.5,35.9666666667,19,37.2,17.5,44.23,5.2266666667,85.66,18.5,32.36,19.5333333333,38.29,17.79,37.2225,5.25,753.2,94.5,9.5,51.5,4.45,42.551748408,42.551748408 -80,0,20.79,37.09,19.2,37.8266666667,20.5,36.03,19,37.4266666667,17.5,44.29,5.3,85.8,18.5,32.5,19.5666666667,38.5666666667,17.79,37.29,5.3333333333,753.0666666667,94.6666666667,9.6666666667,47.3333333333,4.5666666667,2.2745847004,2.2745847004 -90,0,20.79,37.1633333333,19.2,37.9,20.5,36.1633333333,19.0666666667,37.96,17.4266666667,44.36,5.4,85.8,18.5,32.53,19.5666666667,39.16,17.79,37.3266666667,5.4166666667,752.9333333333,94.8333333333,9.8333333333,43.1666666667,4.6833333333,48.6032821122,48.6032821122 -100,0,20.79,37.2,19.2,38.03,20.5333333333,36.29,19.1,38.2666666667,17.5,44.56,5.4,85.8,18.5,32.6633333333,19.6333333333,39.5966666667,17.79,37.4,5.5,752.8,95,10,39,4.8,46.6005978407,46.6005978407 -110,10,20.79,37.26,19.2,38.1633333333,20.6,36.3633333333,19.1,38.4666666667,17.5,44.73,5.5,86,18.5,32.8266666667,19.76,39.93,17.79,37.5,5.5666666667,752.8,95.1666666667,9.8333333333,40.5,4.8833333333,48.6453576828,48.6453576828 -570,30,20.89,37.4333333333,19.2,38.29,20.6,36.4333333333,19.1,38.6266666667,17.4266666667,44.73,5.56,86,18.5,32.9,19.9266666667,40.23,17.79,37.5,5.6333333333,752.8,95.3333333333,9.6666666667,42,4.9666666667,37.9584670649,37.9584670649 -430,20,20.89,37.7666666667,19.2,38.29,20.6,36.56,19.1666666667,38.9,17.4266666667,44.86,5.59,86,18.5,33.03,20.0666666667,40.43,17.79,37.53,5.7,752.8,95.5,9.5,43.5,5.05,38.8554444187,38.8554444187 -280,10,20.89,41.1333333333,19.23,38.6,20.6,36.7666666667,19.29,39.2,17.445,45.05,5.6566666667,86.06,18.5,33.1725,20.23,40.5666666667,17.79,37.59,5.7666666667,752.8,95.6666666667,9.3333333333,45,5.1333333333,8.3925332408,8.3925332408 -90,10,20.9633333333,42.86,19.29,39.3933333333,20.6,36.9666666667,19.29,39.1266666667,17.4266666667,45.26,5.7266666667,86.09,18.5,33.26,20.29,40.7,17.79,37.7,5.8333333333,752.8,95.8333333333,9.1666666667,46.5,5.2166666667,9.5635257196,9.5635257196 -110,0,21.2,42.6966666667,19.4266666667,40.2566666667,20.6,37.5,19.29,39.06,17.5,45.8,5.8666666667,86.1566666667,18.5,33.4333333333,20.3233333333,40.53,17.79,37.7,5.9,752.8,96,9,48,5.3,5.7774327695,5.7774327695 -90,0,21.2675,41.9475,19.5,40.7233333333,20.6,37.76,19.29,38.9333333333,17.5,46.1933333333,5.9633333333,86.2266666667,18.5,33.56,20.3233333333,40.7233333333,17.79,37.79,6.0166666667,752.6833333333,96,8.8333333333,47.5,5.4166666667,24.4201637455,24.4201637455 -90,0,21.3566666667,41.1,19.6,40.76,20.7,38.03,19.2,39,17.4266666667,46.5,6.115,86.3,18.5,33.7,20.39,40.86,17.79,37.8633333333,6.1333333333,752.5666666667,96,8.6666666667,47,5.5333333333,24.9824980507,24.9824980507 -90,0,21.39,40.2966666667,19.6,40.6266666667,20.7,38.09,19.2,39.3333333333,17.5,46.76,6.2633333333,86.3666666667,18.5,33.8333333333,20.39,41.1333333333,17.79,37.9333333333,6.25,752.45,96,8.5,46.5,5.65,14.6115236101,14.6115236101 -90,0,21.39,39.89,19.7,40.5266666667,20.7,38.09,19.2,39.545,17.5,46.9,6.4,86.4,18.5,33.9333333333,20.5,41.53,17.79,38,6.3666666667,752.3333333333,96,8.3333333333,46,5.7666666667,37.9175525974,37.9175525974 -90,20,21.4266666667,39.56,19.7,40.3266666667,20.745,38.09,19.2,39.7,17.4266666667,46.8266666667,6.4,86.4,18.4266666667,34,20.525,41.695,17.79,38.1266666667,6.4833333333,752.2166666667,96,8.1666666667,45.5,5.8833333333,12.4612915795,12.4612915795 -100,20,21.4266666667,39.36,19.7,40.1633333333,20.76,38.09,19.26,39.9,17.5233333333,46.8333333333,6.53,86.5,18.39,34.23,20.6,41.8633333333,17.79,38.26,6.6,752.1,96,8,45,6,20.1161040342,20.1161040342 -120,20,21.39,39.1633333333,19.7,40.03,20.79,38.09,19.29,40,17.9966666667,46.2933333333,6.6566666667,86.56,18.39,34.29,20.6333333333,42.1566666667,17.79,38.4,6.7,752.0166666667,96,8,47.6666666667,6.1,17.6889784983,17.6889784983 -100,30,21.39,39.03,19.745,40,20.79,38.09,19.43,40.2666666667,18.3233333333,45.46,6.7266666667,86.53,18.39,34.4333333333,20.7,42.43,17.79,38.4666666667,6.8,751.9333333333,96,8,50.3333333333,6.2,24.8747985228,24.8747985228 -110,20,21.5,38.9666666667,19.7,39.9,20.8233333333,38.1266666667,19.9266666667,40.3333333333,18.53,45,6.8,86.53,18.39,34.56,20.79,42.6266666667,17.79,38.5,6.9,751.85,96,8,53,6.3,48.0303353514,48.0303353514 -80,20,21.5,38.8266666667,19.7,39.9,20.89,38.2,20.4,39.9266666667,18.6333333333,44.6633333333,6.9333333333,86.59,18.39,34.7,20.79,42.76,17.79,38.5,7,751.7666666667,96,8,55.6666666667,6.4,27.8755899635,27.8755899635 -80,20,21.4266666667,38.73,19.76,39.8633333333,20.89,38.09,20.7,39.59,18.7,44.4633333333,7,86.59,18.39,34.76,20.89,43.03,17.79,38.5,7.1,751.6833333333,96,8,58.3333333333,6.5,29.0046541486,29.0046541486 -80,20,21.4266666667,38.73,19.7,39.8633333333,20.89,38.09,20.6333333333,39.53,18.79,44.1633333333,7.03,86.6233333333,18.4266666667,34.9633333333,20.89,43.09,17.79,38.5,7.2,751.6,96,8,61,6.6,35.1395734469,35.1395734469 -100,20,21.39,38.59,19.7,39.9,20.8566666667,38.06,20.6,39.53,18.8566666667,44.03,7.1566666667,86.69,18.5,35.1633333333,21,43.2,17.79,38.56,7.2333333333,751.5,96.1666666667,7.6666666667,58.5,6.6666666667,48.5019835294,48.5019835294 -90,30,21.39,38.59,19.7,39.9,20.8566666667,38.06,20.6,39.59,18.89,43.9,7.19,86.69,18.39,35.23,21,43.2,17.79,38.73,7.2666666667,751.4,96.3333333333,7.3333333333,56,6.7333333333,5.9895136394,5.9895136394 -90,0,21.39,38.59,19.7,39.9,20.8233333333,38.1266666667,20.6,39.59,20.2966666667,70.8333333333,7.2633333333,86.7633333333,18.39,35.29,21.0666666667,43.33,17.79,38.79,7.3,751.3,96.5,7,53.5,6.8,26.9919033977,26.9919033977 -90,0,21.39,38.6633333333,19.7,39.9666666667,20.89,38.1266666667,20.5333333333,39.53,20.66,81.0933333333,7.4,86.8,18.445,35.495,21,44.13,17.79,38.8266666667,7.3333333333,751.2,96.6666666667,6.6666666667,51,6.8666666667,49.6748948237,49.6748948237 -120,0,21.3566666667,38.73,19.7,40.09,20.89,38.1266666667,20.4633333333,39.3633333333,20.6,87.02,7.4666666667,86.8,18.4266666667,35.6566666667,21.0333333333,45,17.79,38.9666666667,7.3666666667,751.1,96.8333333333,6.3333333333,48.5,6.9333333333,22.9350954643,22.9350954643 -60,0,21.29,38.79,19.7,40.1633333333,20.89,38.2,20.39,39.29,21.0666666667,88.9333333333,7.5,86.8,18.5,35.8633333333,21.0333333333,45.1266666667,17.79,39.0666666667,7.4,751,97,6,46,7,4.5742240269,4.5742240269 -60,0,21.29,38.9333333333,19.7,40.36,20.89,38.1266666667,20.29,39.4,20.19,89.4333333333,7.56,86.8,18.39,35.9333333333,21.1,45.4333333333,17.79,39.2,7.5166666667,750.9333333333,97,6.1666666667,49.1666666667,7.1,1.4492885792,1.4492885792 -60,0,21.29,39.06,19.6333333333,40.56,20.8233333333,38.1266666667,20.23,39.4,19.5966666667,84.56,7.64,86.85,18.4633333333,36.06,21.1,45.56,17.79,39.23,7.6333333333,750.8666666667,97,6.3333333333,52.3333333333,7.2,4.339672951,4.339672951 -50,10,21.29,39.245,19.6,40.86,20.79,38.09,20.1666666667,39.53,19.5333333333,74.0666666667,7.7266666667,86.9,18.4633333333,36.2,21.1,45.59,17.79,39.29,7.75,750.8,97,6.5,55.5,7.3,28.0300227692,28.0300227692 -40,0,21.29,39.6266666667,19.6,41.1333333333,20.79,38.1633333333,20.1,39.6633333333,19.5333333333,67.26,7.8,86.8333333333,18.39,36.2,21.0333333333,45.59,17.79,39.4333333333,7.8666666667,750.7333333333,97,6.6666666667,58.6666666667,7.4,20.3534244327,20.3534244327 -50,0,21.29,39.76,19.6,41.3633333333,20.79,38.23,20.05,39.645,19.4633333333,61.2233333333,7.9,86.9,18.5,36.06,21.1,45.86,17.8566666667,39.7666666667,7.9833333333,750.6666666667,97,6.8333333333,61.8333333333,7.5,21.9823640422,21.9823640422 -50,10,21.2,39.9,19.6,41.29,20.7225,38.3175,19.9633333333,39.59,19.39,57.63,7.9,86.9,18.5,35.9333333333,21.1,46.1333333333,17.89,40.03,8.1,750.6,97,7,65,7.6,23.2160214917,23.2160214917 -60,0,21.2,39.9,19.6,41.4333333333,20.7,38.4,19.89,39.59,19.39,54.86,8,86.8666666667,18.5,35.8633333333,21.05,46.345,17.89,40.1633333333,8.1666666667,750.5333333333,96.5,7.3333333333,58.6666666667,7.6,7.0559393498,7.0559393498 -50,0,21.1666666667,40.03,19.5333333333,41.56,20.7,38.4,19.8566666667,39.56,19.3233333333,53.3333333333,8,86.8,18.5,35.79,21.0666666667,46.53,17.89,40.23,8.2333333333,750.4666666667,96,7.6666666667,52.3333333333,7.6,28.9791877498,28.9791877498 -40,0,21.1,40.09,19.5,41.645,20.7,38.4,19.79,39.5,19.29,51.9966666667,8.1,86.9666666667,18.5,35.79,21,46.59,17.89,40.29,8.3,750.4,95.5,8,46,7.6,34.9358105916,34.9358105916 -20,0,21.1,40.1266666667,19.5,41.7,20.6666666667,38.3633333333,19.7,39.5,19.29,51.59,8.16,86.9,18.5,35.79,20.89,46.6633333333,17.89,40.3266666667,8.3666666667,750.3333333333,95,8.3333333333,39.6666666667,7.6,19.7682005819,19.7682005819 -20,0,21.1,40.2,19.5,41.76,20.6,38.29,19.7,39.5,19.2,49.7,8.2266666667,86.9333333333,18.5,35.79,20.89,46.6633333333,17.89,40.4,8.4333333333,750.2666666667,94.5,8.6666666667,33.3333333333,7.6,49.7411325807,49.7411325807 -30,10,21.0666666667,40.1633333333,19.39,41.7,20.6,38.4,19.6666666667,39.4666666667,19.2,49.5975,8.3,86.9333333333,18.5,35.73,20.8233333333,46.7666666667,17.89,40.4666666667,8.5,750.2,94,9,27,7.6,22.8099613683,22.8099613683 -40,0,21,40.09,19.39,41.7,20.6,38.4666666667,19.6,39.4666666667,19.2,49.0966666667,8.3,86.9,18.5,35.79,20.8233333333,46.9666666667,17.89,40.53,8.5,750.0833333333,92.3333333333,8.8333333333,29.1666666667,7.3333333333,4.4119526865,4.4119526865 -60,0,21,40.2,19.39,41.7,20.5,38.5,19.6,39.4333333333,19.2,48.6,8.2266666667,86.8333333333,18.5,35.73,20.79,47.2666666667,17.9633333333,40.59,8.5,749.9666666667,90.6666666667,8.6666666667,31.3333333333,7.0666666667,20.7679107669,20.7679107669 -50,0,21,40.2,19.3233333333,41.7,20.5,38.56,19.5333333333,39.5,19.1333333333,48.2666666667,8.1,86.8,18.5,35.76,20.79,47.5266666667,18,40.73,8.5,749.85,89,8.5,33.5,6.8,17.0126433717,17.0126433717 -50,0,21,40.29,19.29,41.76,20.5333333333,38.59,19.5,39.5,19.1,47.9,8.0333333333,86.7266666667,18.5,35.7,20.79,47.7666666667,18,40.79,8.5,749.7333333333,87.3333333333,8.3333333333,35.6666666667,6.5333333333,38.7579945731,38.7579945731 -50,0,20.9266666667,40.29,19.29,41.7,20.6,38.59,19.5,39.5,19.1,47.6266666667,8,86.59,18.5,35.7,20.73,47.9666666667,17.9266666667,40.9,8.5,749.6166666667,85.6666666667,8.1666666667,37.8333333333,6.2666666667,12.3004626483,12.3004626483 -50,0,20.89,40.29,19.26,41.6633333333,20.6,38.59,19.39,39.4666666667,19.1,47.3333333333,8,86.53,18.5333333333,35.6633333333,20.7,48.3,18,40.9,8.5,749.5,84,8,40,6,21.9160716399,21.9160716399 -50,0,20.89,40.29,19.26,41.6633333333,20.6,38.59,19.39,39.4,19.075,47.0425,8.05,86.5,18.5333333333,35.59,20.7,48.6333333333,17.9266666667,41.03,8.45,749.4166666667,84.5,8,40,6.0166666667,17.9141400382,17.9141400382 -40,10,20.79,40.2,19.2,41.59,20.6,38.53,19.39,39.4,19,46.73,8.0333333333,86.2633333333,18.5,35.59,20.7,48.9333333333,18,41.1633333333,8.4,749.3333333333,85,8,40,6.0333333333,20.006576064,20.006576064 -50,0,20.79,40.2,19.2,41.59,20.6,38.59,19.3233333333,39.4,19,46.4666666667,8.1,86.0633333333,18.5,35.59,20.7,49.1333333333,18,41.23,8.35,749.25,85.5,8,40,6.05,14.3304691301,14.3304691301 -50,0,20.79,40.09,19.1666666667,41.56,20.6,38.59,19.29,39.4,19,46.3266666667,8.16,85.7966666667,18.5,35.5,20.7,49.4,18,41.29,8.3,749.1666666667,86,8,40,6.0666666667,2.4669154896,2.4669154896 -50,0,20.7675,40.09,19.1,41.5,20.6,38.59,19.29,39.4,19,46.1633333333,8.1,85.4633333333,18.5,35.5,20.6333333333,49.4,18,41.4,8.25,749.0833333333,86.5,8,40,6.0833333333,6.8239865825,6.8239865825 -50,0,20.7,40.09,19.1,41.59,20.6,38.59,19.29,39.4,19,46.03,8.1,85.0933333333,18.5,35.5,20.6666666667,49.5266666667,18,41.4666666667,8.2,749,87,8,40,6.1,1.9622021005,1.9622021005 -50,0,20.7,40.09,19.1,41.59,20.6,38.59,19.2,39.29,18.9633333333,45.9,8.1,84.6933333333,18.5,35.5,20.6,49.4,18,41.59,8.1,748.9,87.8333333333,7.6666666667,43.1666666667,6.1333333333,37.2470266069,37.2470266069 -40,0,20.7,40.09,19.0666666667,41.56,20.6,38.59,19.2,39.29,18.89,45.8266666667,8.1,83.8633333333,18.5,35.4666666667,20.6,49.4,18,41.59,8,748.8,88.6666666667,7.3333333333,46.3333333333,6.1666666667,17.3619386274,17.3619386274 -40,0,20.7,40.1266666667,19,41.5,20.6,38.59,19.2,39.29,18.89,45.6633333333,8.1,83.3966666667,18.5,35.4,20.6,49.3633333333,18,41.7,7.9,748.7,89.5,7,49.5,6.2,14.8152723094,14.8152723094 -30,0,20.6333333333,40.0666666667,19,41.5,20.6666666667,38.6633333333,19.2,39.29,18.89,45.59,8.1,83.06,18.5,35.3633333333,20.5333333333,49.3633333333,18.0666666667,41.76,7.8,748.6,90.3333333333,6.6666666667,52.6666666667,6.2333333333,8.7252055528,8.7252055528 -20,10,20.6,40,19,41.5,20.7,38.7,19.1666666667,39.29,18.89,45.5,8.0333333333,83.2,18.5,35.29,20.5666666667,49.4333333333,18.0666666667,41.8633333333,7.7,748.5,91.1666666667,6.3333333333,55.8333333333,6.2666666667,35.5705365422,35.5705365422 -30,0,20.6,40.06,19,41.5,20.7,38.7,19.1,39.29,18.89,45.4333333333,7.9,83.66,18.5,35.3633333333,20.5666666667,49.5,18.075,41.8725,7.6,748.4,92,6,59,6.3,1.9380841521,1.9380841521 -50,0,20.6,40.09,18.89,41.5,20.7,38.7,19.1,39.29,18.8233333333,45.23,7.9,83.9333333333,18.5,35.3633333333,20.5,49.7,18.1,41.9666666667,7.6,748.2666666667,90.8333333333,6.1666666667,53.5,6.1166666667,23.8011362148,23.8011362148 -50,0,20.5333333333,40.09,18.89,41.56,20.7,38.76,19.1,39.29,18.8233333333,45.23,7.9,83.9333333333,18.5,35.4,20.5,49.76,18.1,42.03,7.6,748.1333333333,89.6666666667,6.3333333333,48,5.9333333333,1.9631156698,1.9631156698 -50,0,20.5,40.09,18.8566666667,41.56,20.73,38.79,19.1,39.29,18.79,45.1633333333,7.8333333333,83.5333333333,18.5,35.4,20.5,49.79,18.1,42.09,7.6,748,88.5,6.5,42.5,5.75,12.4645308591,12.4645308591 -40,0,20.5,40.09,18.79,41.5,20.79,38.79,19.1,39.29,18.79,45.09,7.6566666667,83.2666666667,18.5,35.4,20.5,49.79,18.1,42.2,7.6,747.8666666667,87.3333333333,6.6666666667,37,5.5666666667,38.2500483305,38.2500483305 -50,0,20.4633333333,40.09,18.79,41.5,20.7,38.79,19,39.23,18.79,45,7.59,82.7933333333,18.5,35.4,20.5,49.79,18.1,42.2,7.6,747.7333333333,86.1666666667,6.8333333333,31.5,5.3833333333,26.8420776469,26.8420776469 -50,0,20.39,40.03,18.79,41.5,20.7,38.79,19,39.29,18.79,45,7.59,82.0966666667,18.5,35.4,20.5,49.73,18.1,42.29,7.6,747.6,85,7,26,5.2,27.1085167537,27.1085167537 -30,0,20.39,40.09,18.76,41.56,20.7,38.79,19,39.2,18.79,44.9,7.59,81.1175,18.5,35.4,20.5,49.7,18.1,42.29,7.6,747.55,84.3333333333,7,26.5,5.0833333333,42.5880143885,42.5880143885 -60,0,20.39,40.09,18.76,41.56,20.7,38.79,19,39.2,18.79,44.8175,7.53,79.8,18.5,35.4,20.5,49.6266666667,18.1,42.4,7.6,747.5,83.6666666667,7,27,4.9666666667,32.5891191722,32.5891191722 -50,0,20.3566666667,40,18.7,41.5,20.79,38.79,18.9633333333,39.2,18.73,44.79,7.5,78.8933333333,18.5,35.29,20.5,49.4666666667,18.1,42.4,7.6,747.45,83,7,27.5,4.85,2.494126698,2.494126698 -50,0,20.3566666667,40,18.7,41.5,20.79,38.8633333333,18.89,39.2,18.7,44.7,7.5,78.0333333333,18.5,35.29,20.5,49.4,18.1,42.4,7.6,747.4,82.3333333333,7,28,4.7333333333,2.5045938557,2.5045938557 -50,0,20.3566666667,40,18.7,41.5,20.79,38.9,18.89,39.2,18.7,44.6266666667,7.4,76.7666666667,18.5,35.26,20.5,49.26,18.1,42.4,7.6,747.35,81.6666666667,7,28.5,4.6166666667,48.951797164,48.951797164 -40,0,20.29,40,18.7,41.5,20.79,38.9,18.89,39.1175,18.7,44.56,7.4,76.2266666667,18.5,35.2,20.5,49.1266666667,18.1,42.4333333333,7.6,747.3,81,7,29,4.5,12.8146780073,12.8146780073 -50,0,20.23,40,18.6,41.4,20.8566666667,38.9,18.89,39.09,18.7,44.5,7.4666666667,75.5233333333,18.5,35.2,20.4633333333,48.93,18.1,42.4333333333,7.55,747.2166666667,80.8333333333,7,30.8333333333,4.4333333333,2.1019844105,2.1019844105 -30,0,20.29,40,18.6,41.4,20.84,38.95,18.89,39.06,18.7,44.4666666667,7.4,75.19,18.5,35.1266666667,20.39,48.79,18.1,42.4333333333,7.5,747.1333333333,80.6666666667,7,32.6666666667,4.3666666667,23.224211589,23.224211589 -50,0,20.23,39.9333333333,18.6,41.3633333333,20.8566666667,38.9666666667,18.89,39,18.7,44.4,7.4,75.2966666667,18.5,35.09,20.39,48.76,18.1,42.4333333333,7.45,747.05,80.5,7,34.5,4.3,16.9163748506,16.9163748506 -40,0,20.2,39.9,18.6,41.29,20.79,39,18.79,38.9,18.7,44.29,7.4,74.8966666667,18.5,35.09,20.39,48.6725,18.2,42.5,7.4,746.9666666667,80.3333333333,7,36.3333333333,4.2333333333,12.264109368,12.264109368 -30,0,20.1333333333,39.9,18.5666666667,41.29,20.79,39,18.79,38.9,18.6333333333,44.23,7.4,73.6666666667,18.4266666667,35,20.39,48.53,18.1333333333,42.5,7.35,746.8833333333,80.1666666667,7,38.1666666667,4.1666666667,27.5470542023,27.5470542023 -30,0,20.1,39.9,18.5,41.2675,20.79,39,18.79,38.9,18.6,44.09,7.4,72.86,18.5,35,20.3566666667,48.4,18.1,42.5,7.3,746.8,80,7,40,4.1,27.8308663634,27.8308663634 -30,0,20.1,39.9,18.5,41.2,20.79,39,18.79,38.8266666667,18.6,44.09,7.3666666667,71.9,18.4633333333,34.9666666667,20.29,48.3266666667,18.1,42.53,7.2666666667,746.6833333333,80.5,7.1666666667,37.6666666667,4.1333333333,25.3952052793,25.3952052793 -30,0,20.1,39.9,18.5,41.2,20.79,39,18.79,38.79,18.6,44,7.3,71.9,18.39,34.8266666667,20.29,48.1633333333,18.1666666667,42.59,7.2333333333,746.5666666667,81,7.3333333333,35.3333333333,4.1666666667,14.7870592773,14.7870592773 -50,0,20.1,39.9,18.4633333333,41.1633333333,20.79,39,18.79,38.73,18.6,43.9333333333,7.19,72.3266666667,18.39,34.79,20.29,48.03,18.1666666667,42.59,7.2,746.45,81.5,7.5,33,4.2,2.1188440151,2.1188440151 -50,0,20,39.79,18.39,41.09,20.79,39.09,18.79,38.7,18.6,43.9,7.19,72.8666666667,18.39,34.79,20.29,47.9,18.1666666667,42.6633333333,7.1666666667,746.3333333333,82,7.6666666667,30.6666666667,4.2333333333,46.1068158853,46.1068158853 -40,0,20,39.79,18.4633333333,41.1633333333,20.79,39.09,18.79,38.7,18.6,43.8266666667,7.2633333333,73.4633333333,18.39,34.79,20.29,47.9,18.2,42.7,7.1333333333,746.2166666667,82.5,7.8333333333,28.3333333333,4.2666666667,5.1360483048,5.1360483048 -40,10,20,39.79,18.39,41.09,20.7,39.09,18.7,38.7,18.5,43.9333333333,7.19,74.0425,18.39,34.79,20.29,48,18.1333333333,42.76,7.1,746.1,83,8,26,4.3,35.0232361816,35.0232361816 -70,0,20,39.8633333333,18.39,41.09,20.7,39.09,18.7,38.7,18.5666666667,43.9333333333,7.1233333333,74.5266666667,18.39,34.79,20.29,47.86,18.2,42.79,7,746.0666666667,83,8.1666666667,28.3333333333,4.2,19.6065064054,19.6065064054 -60,0,20,40.09,18.39,41.09,20.7,39,18.7,38.7,18.5666666667,44.1666666667,6.7633333333,75.4666666667,18.39,34.9333333333,20.2,47.2666666667,18.1333333333,42.73,6.9,746.0333333333,83,8.3333333333,30.6666666667,4.1,17.971132556,17.971132556 -60,0,20,40.1633333333,18.39,41,20.7,39,18.7,38.7,18.5,44.36,6.6233333333,77.3266666667,18.3233333333,35,20.2,46.8,18.2,42.56,6.8,746,83,8.5,33,4,32.5583835598,32.5583835598 -70,0,20,40.2,18.4633333333,41,20.6666666667,38.76,18.7,38.7,18.5,44.145,6.56,76.2,18.29,35,20.1,46.1333333333,18.1333333333,42.5,6.7,745.9666666667,83,8.6666666667,35.3333333333,3.9,33.2391942036,33.2391942036 -60,30,20,40.2,18.39,40.9,20.6,38.7,18.7,38.7,18.4633333333,44.7266666667,6.4333333333,75.6,18.29,34.9333333333,20.1666666667,45.86,18.2,42.3633333333,6.6,745.9333333333,83,8.8333333333,37.6666666667,3.8,16.1451742635,16.1451742635 -230,20,20,40.1633333333,18.39,40.9,20.6,38.7,18.7633333333,38.9266666667,18.39,45.2666666667,6.4,75.7633333333,18.29,34.8633333333,20.1666666667,45.43,18.1333333333,42.23,6.5,745.9,83,9,40,3.7,17.0215006336,17.0215006336 -230,20,20,40.145,18.39,40.9,20.6,38.7,19.2925,39.3225,18.39,45.8,6.4,74.8966666667,18.29,34.79,20.0333333333,45.03,18.1333333333,42.0266666667,6.1666666667,746.05,83.6666666667,8.3333333333,40,3.5,43.399996357,43.399996357 -240,30,20,40.03,18.39,40.9,20.5,38.7,20.0333333333,39.23,18.39,46.06,6.5,73.5933333333,18.26,34.7233333333,20.0333333333,44.6333333333,18.1333333333,41.8266666667,5.8333333333,746.2,84.3333333333,7.6666666667,40,3.3,42.8949186113,42.8949186113 -70,20,20,40.03,18.39,40.79,20.5,38.7,20.5966666667,38.8333333333,18.29,46.5566666667,6.5,71.5266666667,18.2,34.59,20.0333333333,44.3,18.1,41.6633333333,5.5,746.35,85,7,40,3.1,38.2331190864,38.2331190864 -210,30,20,40.09,18.39,40.73,20.5,38.7,20.93,38.6266666667,18.43,49.6966666667,6.53,67.7566666667,18.2,34.3633333333,20,44.0266666667,18.1,41.53,5.1666666667,746.5,85.6666666667,6.3333333333,40,2.9,42.6204601419,42.6204601419 -70,20,20,40.1633333333,18.5,40.76,20.5333333333,38.59,21.2633333333,38.2966666667,18.6333333333,51.1666666667,6.6566666667,67.1566666667,18.2,34.23,20,43.9,18.1,41.3633333333,4.8333333333,746.65,86.3333333333,5.6666666667,40,2.7,2.5754803792,2.5754803792 -80,30,20,40.09,18.5,40.76,20.5333333333,38.53,21.39,37.89,18.7,49.5,6.59,64.5,18.2,34.1,19.89,43.6,18.1,41.23,4.5,746.8,87,5,40,2.5,17.9604424746,17.9604424746 -40,20,20,40,18.65,40.745,20.5,38.5,21.29,37.5266666667,18.6,47.8333333333,6.53,62.0266666667,18.2,33.5666666667,19.89,43.2233333333,18.1,40.995,4.7833333333,746.75,84.1666666667,5.3333333333,40,2.2666666667,9.4269467168,9.4269467168 -260,20,20.0666666667,40,18.86,40.43,20.5,38.5,21.29,37.3266666667,18.6,46.8333333333,6.4,61.33,18.2633333333,35.6966666667,19.89,42.9633333333,18.1333333333,40.3633333333,5.0666666667,746.7,81.3333333333,5.6666666667,40,2.0333333333,20.1397226541,20.1397226541 -410,0,20.0333333333,39.8266666667,19.0666666667,40.1566666667,20.5,38.5,21.29,37.29,18.6,45.73,6.4,62.6633333333,18.4633333333,36.2233333333,19.89,42.6333333333,18.2,39.89,5.35,746.65,78.5,6,40,1.8,35.5171527248,35.5171527248 -110,0,20.1,39.6933333333,19.3233333333,39.8333333333,20.5,38.5,21.29,37.29,18.5333333333,45.99,6.4,56.39,18.5666666667,36.53,19.8233333333,41.8333333333,18.23,39.8666666667,5.6333333333,746.6,75.6666666667,6.3333333333,40,1.5666666667,49.7883167118,49.7883167118 -70,0,20.1,39.6633333333,19.445,39.6,20.5,38.5,21.26,37.1633333333,18.39,46.3266666667,6.425,55.4725,18.5,36.33,19.79,41.1,18.29,40.1266666667,5.9166666667,746.55,72.8333333333,6.6666666667,40,1.3333333333,28.6467984901,28.6467984901 -90,0,20.1666666667,39.59,19.65,39.27,20.4266666667,38.4333333333,21.2,37.03,18.39,46.4666666667,6.56,55.3,18.5,35.5633333333,19.79,41.4333333333,18.2,38.7966666667,6.2,746.5,70,7,40,1.1,26.6511912341,26.6511912341 -60,10,20.2,39.4666666667,19.76,38.8,20.5,38.5,21.29,37.09,18.3566666667,46.5,6.69,55.0933333333,18.5,35.0966666667,19.79,41.2,18.2,38.7233333333,6.25,746.5,69.3333333333,7.3333333333,40,1,28.6615872057,28.6615872057 -190,0,20.2,39.2666666667,19.9266666667,38.4,20.5,38.4333333333,21.29,37.09,18.3566666667,46.4333333333,6.69,53.9,18.5,34.44,19.79,41.1266666667,18.26,40.8633333333,6.3,746.5,68.6666666667,7.6666666667,40,0.9,8.008656383,8.008656383 -230,0,20.23,39.1266666667,20.0666666667,38.2,20.5,38.4333333333,21.29,36.9,18.29,46.4633333333,6.9333333333,52.8266666667,18.5,33.9,19.79,40.9,18.26,40.7233333333,6.35,746.5,68,8,40,0.8,22.9688296444,22.9688296444 -130,0,20.29,39.2,20.23,38,20.5666666667,38.5,21.29,36.8266666667,18.3566666667,46.6633333333,7.1266666667,50.5666666667,18.5,33.5666666667,19.79,40.7666666667,18.29,41.1933333333,6.4,746.5,67.3333333333,8.3333333333,40,0.7,31.7214944051,31.7214944051 -60,0,20.3233333333,39.1633333333,20.3566666667,37.86,20.6,38.4666666667,21.26,36.6633333333,18.29,46.845,7.7266666667,50.7666666667,18.6,33.2233333333,19.79,40.1933333333,18.29,41.6,6.45,746.5,66.6666666667,8.6666666667,40,0.6,46.3843672536,46.3843672536 -90,0,20.39,39.09,20.39,38.23,20.6,38.4,21.2,36.59,18.29,47,8,48.2333333333,18.6,32.9633333333,19.79,39.9333333333,18.29,42.03,6.5,746.5,66,9,40,0.5,25.9953981149,25.9953981149 -120,0,20.4633333333,39.4,20.4633333333,38.23,20.6,38.4,21.2,36.7,18.29,47,8.0333333333,43.9666666667,18.6,32.7233333333,19.79,39.7966666667,18.3566666667,42.1633333333,6.7166666667,746.4333333333,64.8333333333,9,40,0.45,15.9516567015,15.9516567015 -70,0,20.4633333333,39.5266666667,20.5,38.49,20.6,38.4,21.15,36.6725,18.29,47.09,8.16,43.3,18.6,32.4633333333,19.79,39.4633333333,18.39,42.2,6.9333333333,746.3666666667,63.6666666667,9,40,0.4,0.3041298827,0.3041298827 -60,0,20.55,40.45,20.5,38.23,20.6,38.4,21.2,36.53,18.23,47.03,8.1,41.1966666667,18.6,32.2233333333,19.79,39.2233333333,18.39,42.26,7.15,746.3,62.5,9,40,0.35,48.2847235049,48.2847235049 -110,0,20.6333333333,41.9266666667,20.5,38.1266666667,20.6,38.6266666667,21.2,36.59,18.2,47.1266666667,8.16,40.7233333333,18.6666666667,32.03,19.79,39.03,18.39,42.23,7.3666666667,746.2333333333,61.3333333333,9,40,0.3,31.4358644886,31.4358644886 -70,0,20.7,41.6666666667,20.5,38.2,20.6666666667,38.76,21.2,36.59,18.2,47.26,8.3,38.63,18.79,31.6933333333,19.8233333333,38.8633333333,18.39,42.23,7.5833333333,746.1666666667,60.1666666667,9,40,0.25,33.6166511639,33.6166511639 -140,0,20.7,40.46,20.4266666667,38.09,20.7,38.79,21.29,36.6566666667,18.2,47.29,8.36,36.2966666667,18.8566666667,31.4266666667,19.89,38.73,18.39,42.1633333333,7.8,746.1,59,9,40,0.2,43.3938986738,43.3938986738 -70,0,20.7,40.2,20.5,37.9633333333,20.7,38.79,21.29,36.93,18.2,47.29,8.46,34.5566666667,19,31.1666666667,20,38.3333333333,18.39,42.09,7.9333333333,745.9333333333,58.1666666667,8.8333333333,40,0.1333333333,30.6613291032,30.6613291032 -50,0,20.79,40.1966666667,20.5,37.7,20.7,38.59,21.29,37.6933333333,18.2,47.2,8.6,34.6966666667,19.0666666667,31.0333333333,20.075,38.07,18.39,42.09,8.0666666667,745.7666666667,57.3333333333,8.6666666667,40,0.0666666667,17.2898657969,17.2898657969 -50,0,20.79,40.33,20.5,37.7,20.7,38.7233333333,21.29,37.8266666667,18.2,47.1266666667,8.7933333333,35.8,19.1,30.79,20.1,37.9,18.39,42,8.2,745.6,56.5,8.5,40,0,6.4982147887,6.4982147887 -60,0,20.89,39.9,20.5,37.6266666667,20.7,39.03,21.23,37.4,18.2,47.09,9.0666666667,36.5266666667,19.1,30.73,20.1,37.7233333333,18.39,42,8.3333333333,745.4333333333,55.6666666667,8.3333333333,40,-0.0666666667,44.7808575816,44.7808575816 -50,0,20.89,39.5,20.4633333333,37.4,20.7,39.09,21.23,37.3266666667,18.2,47.03,9.4,34.29,19.2,30.5666666667,20.1666666667,37.59,18.39,41.9666666667,8.4666666667,745.2666666667,54.8333333333,8.1666666667,40,-0.1333333333,18.3134034043,18.3134034043 -150,0,20.89,38.99,20.39,37.1266666667,20.7,39.06,21.2,37.06,18.2,46.9,9.7266666667,32.4566666667,19.2,30.4266666667,20.1666666667,37.4,18.39,41.9,8.6,745.1,54,8,40,-0.2,27.5169970351,27.5169970351 -40,0,20.9633333333,38.79,20.39,36.9666666667,20.7,38.9333333333,21.1333333333,36.6666666667,18.2,46.8266666667,9.9333333333,31.3966666667,19.2,30.26,20.1,37.3266666667,18.39,41.9,8.3833333333,744.9,57,8.3333333333,40,0.2666666667,49.6822179412,49.6822179412 -80,0,21.0333333333,38.9,20.39,36.9,20.7,38.76,21.1,36.1,18.1333333333,46.6633333333,10.1966666667,31.6566666667,19.2,30.2,20.1333333333,37.3266666667,18.39,41.9,8.1666666667,744.7,60,8.6666666667,40,0.7333333333,42.9971332196,42.9971332196 -80,0,21.1666666667,39.9,20.4633333333,36.53,20.7,38.7,21.0333333333,35.7666666667,18.2,46.59,10.6633333333,30.8566666667,19.34,30.15,20.3266666667,37.5266666667,18.39,41.9,7.95,744.5,63,9,40,1.2,15.7895043725,15.7895043725 -100,0,21.1666666667,37.5933333333,20.3233333333,35.4566666667,20.6666666667,38.6333333333,20.9633333333,35.5633333333,18.1666666667,46.5,10.59,31.06,19.39,29.9633333333,20.5333333333,37.59,18.39,41.8266666667,7.7333333333,744.3,66,9.3333333333,40,1.6666666667,24.3376160506,24.3376160506 -70,10,21.1,37.0666666667,20.23,35.3266666667,20.6,38.36,20.89,35.23,18.1666666667,46.36,9.7966666667,38.2666666667,19.39,29.9633333333,20.6666666667,37.6633333333,18.39,41.79,7.5166666667,744.1,69,9.6666666667,40,2.1333333333,20.902234409,20.902234409 -70,0,21.1333333333,36.9666666667,20.29,35.4,20.6,38.1333333333,20.8233333333,35.1266666667,18.15,46.045,9.7333333333,42.2333333333,19.4266666667,30.1333333333,20.8233333333,37.86,18.4633333333,41.8633333333,7.3,743.9,72,10,40,2.6,26.9020815264,26.9020815264 -70,0,21.2,36.9666666667,20.29,35.5,20.6,37.86,20.8233333333,35.1266666667,18.1666666667,45.8633333333,9.7933333333,41.5,19.5,30.2,20.9633333333,37.86,18.4633333333,41.8633333333,7.4666666667,743.7,70.5,9.8333333333,38.1666666667,2.4166666667,3.7552473717,3.7552473717 -80,0,21.29,37.09,20.29,35.56,20.6,37.56,20.79,35.1266666667,18.1666666667,45.73,8.7333333333,51.2266666667,19.6,30.3233333333,21.0333333333,37.8266666667,18.4633333333,41.8633333333,7.6333333333,743.5,69,9.6666666667,36.3333333333,2.2333333333,15.246080386,15.246080386 -60,0,21.29,37.03,20.29,35.73,20.6,37.4333333333,20.79,35.2675,18.1333333333,45.59,8.66,51.3,19.6666666667,30.4633333333,21.1,37.8266666667,18.5,41.9,7.8,743.3,67.5,9.5,34.5,2.05,13.5966642643,13.5966642643 -70,0,21.29,37.09,20.29,35.8633333333,20.65,37.4,20.73,35.23,18.1333333333,45.53,8.83,47.29,19.7,30.5333333333,21.2,37.6633333333,18.5,41.9,7.9666666667,743.1,66,9.3333333333,32.6666666667,1.8666666667,40.9111467772,40.9111467772 -60,0,21.29,37,20.29,35.9333333333,20.7,37.3633333333,20.7,35.2,18.1,45.5,9.09,44.8966666667,19.7,30.5333333333,21.1333333333,37.59,18.5,41.8633333333,8.1333333333,742.9,64.5,9.1666666667,30.8333333333,1.6833333333,4.416268284,4.416268284 -60,0,21.29,37,20.29,35.9333333333,20.7,37.29,20.6333333333,35.0666666667,18.1,45.5,9.6666666667,40.3266666667,19.6,30.3566666667,21.1,37.4666666667,18.5,41.79,8.3,742.7,63,9,29,1.5,17.4593535485,17.4593535485 -60,0,21.29,36.9666666667,20.26,35.8333333333,20.7,37.29,20.6,34.93,18.1,45.4,9.8,36.8,19.6,30.23,21.1,37.4,18.5,41.76,8.05,742.6333333333,64.1666666667,9.1666666667,28.1666666667,1.5333333333,42.5935633713,42.5935633713 -60,0,21.29,36.9,20.26,35.7,20.6333333333,37.23,20.6,34.79,18.1,45.3266666667,9.86,34.39,19.6,30.0666666667,21.1,37.2,18.5,41.7,7.8,742.5666666667,65.3333333333,9.3333333333,27.3333333333,1.5666666667,49.0175534156,49.0175534156 -80,0,21.23,36.79,20.1666666667,35.59,20.6,37.2,20.5666666667,34.7,18.1,45.26,9.7266666667,33.9966666667,19.6,29.9266666667,21.1,37.2,18.445,41.645,7.55,742.5,66.5,9.5,26.5,1.6,44.9873334263,44.9873334263 -80,0,21.23,36.5966666667,20.075,35.5675,20.6,37.2,20.5,34.7,18.1,45.2,8.945,40.45,19.5,29.8233333333,21.1,37.595,18.4633333333,41.6333333333,7.3,742.4333333333,67.6666666667,9.6666666667,25.6666666667,1.6333333333,16.6318235802,16.6318235802 -80,0,21.1666666667,36.29,20,35.5,20.5,37.2,20.39,34.73,18.1,45.2,7.8,51.03,19.5,29.9633333333,21.1333333333,38.1333333333,18.4633333333,41.5,7.05,742.3666666667,68.8333333333,9.8333333333,24.8333333333,1.6666666667,30.3781409864,30.3781409864 -80,0,21.1,36.3633333333,19.89,35.6266666667,20.5,37.2,20.39,34.79,18.1,45.2,7.1333333333,57.4233333333,19.39,30.0666666667,21.26,38.86,18.4266666667,41.4333333333,6.8,742.3,70,10,24,1.7,13.2230450283,13.2230450283 -70,0,21.1,36.53,19.8233333333,35.7,20.5,37.2,20.3566666667,34.9333333333,18.1,45.09,5.8266666667,62.0333333333,19.39,30.26,21.29,39.83,18.4266666667,41.5,6.3333333333,742.3333333333,72.6666666667,9.6666666667,26.6666666667,1.7166666667,25.7877358468,25.7877358468 -80,0,21.1,36.59,19.7,35.8266666667,20.5,37.26,20.29,35.06,18.0333333333,45.03,5.0333333333,66.0333333333,19.29,30.4266666667,21.29,40.2233333333,18.39,41.5,5.8666666667,742.3666666667,75.3333333333,9.3333333333,29.3333333333,1.7333333333,10.8715704991,10.8715704991 -90,0,21,36.5,19.7,35.9666666667,20.5,37.23,20.2,35,18.1,45.06,4.8,68.5966666667,19.29,30.5,21.3233333333,40.59,18.39,41.5,5.4,742.4,78,9,32,1.75,5.232639506,5.232639506 -80,0,21,36.56,19.6,36.0666666667,20.5,37.29,20.2,35.06,18.0333333333,45,4.8,69.3966666667,19.2,30.55,21.39,40.53,18.39,41.4666666667,4.9333333333,742.4333333333,80.6666666667,8.6666666667,34.6666666667,1.7666666667,27.235444088,27.235444088 -110,0,20.9266666667,36.6266666667,19.6,36.26,20.5,37.29,20.1,35.1266666667,18.0666666667,44.9666666667,4.9333333333,70.03,19.2,30.6333333333,21.5333333333,40.4,18.39,41.4,4.4666666667,742.4666666667,83.3333333333,8.3333333333,37.3333333333,1.7833333333,48.263187462,48.263187462 -120,0,21,36.76,19.7,36.5,20.5,37.29,20.1,35.2,18.0666666667,44.9666666667,4.9333333333,70.03,19.1333333333,30.76,21.6,40.2666666667,18.39,41.4333333333,4,742.5,86,8,40,1.8,40.4006797355,40.4006797355 -120,0,20.9633333333,36.76,19.7,36.5,20.5,37.29,20.1,35.29,18.05,44.845,4.8666666667,70.3666666667,19.1,30.8233333333,21.6333333333,40,18.39,41.5,3.9166666667,742.5166666667,86.8333333333,7.5,40,1.8666666667,21.5845554485,21.5845554485 -100,0,20.89,36.76,19.7,36.6266666667,20.5,37.29,20.0333333333,35.3633333333,18,44.79,4.8,70.6333333333,19.1,30.89,21.7,39.86,18.39,41.3633333333,3.8333333333,742.5333333333,87.6666666667,7,40,1.9333333333,46.1083723465,46.1083723465 -100,0,20.89,36.7,19.76,36.7,20.5333333333,37.26,20,35.45,18,44.79,4.6566666667,71.5,19,30.9266666667,21.7,39.76,18.39,41.03,3.75,742.55,88.5,6.5,40,2,11.9752520113,11.9752520113 -90,0,20.89,36.76,19.8233333333,36.73,20.6,37.2,20,35.53,18,44.79,4.59,72.36,19,31,21.7,39.6266666667,18.39,40.2966666667,3.6666666667,742.5666666667,89.3333333333,6,40,2.0666666667,37.7881598542,37.7881598542 -290,0,21,36.9333333333,19.89,36.79,20.6,37.09,20,35.6633333333,18,44.8633333333,4.5,73.0633333333,19,31.1,21.7,39.59,18.39,39.9633333333,3.5833333333,742.5833333333,90.1666666667,5.5,40,2.1333333333,35.4523281916,35.4523281916 -330,0,21.1,38.2725,20,36.76,20.6333333333,37.1566666667,19.9633333333,35.7666666667,18,45.03,4.4333333333,73.2633333333,18.9266666667,31.1666666667,21.7,39.59,18.39,39.6333333333,3.5,742.6,91,5,40,2.2,0.5930323503,0.5930323503 -220,0,21.2,41.2233333333,20.0666666667,36.8333333333,20.7,37.6966666667,19.89,35.9666666667,18,45.09,4.4,73.8333333333,18.89,31.23,21.7,39.59,18.3233333333,39.36,3.5333333333,742.6833333333,90,5.5,40,2.05,48.3263714239,48.3263714239 -210,0,21.29,42.2333333333,20.2,37.36,20.73,38.7566666667,19.89,36.3,18,45.3266666667,4.4,74.0266666667,18.89,31.29,21.7,39.6633333333,18.3566666667,39.1333333333,3.5666666667,742.7666666667,89,6,40,1.9,38.1097220234,38.1097220234 -260,0,21.29,42.9,20.26,37.6333333333,20.79,39.3633333333,19.89,36.6333333333,18,45.5266666667,4.4,74.09,18.8566666667,31.29,21.79,39.7666666667,18.29,38.86,3.6,742.85,88,6.5,40,1.75,29.8870199709,29.8870199709 -250,0,21.39,42.8666666667,20.3233333333,37.9333333333,20.89,39.7666666667,19.89,36.9333333333,18,45.7666666667,4.2633333333,73.16,18.79,31.29,21.79,40.0266666667,18.29,38.7,3.6333333333,742.9333333333,87,7,40,1.6,46.8870302313,46.8870302313 -250,0,21.39,41.9266666667,20.39,38.0225,20.89,39.8266666667,19.89,37.06,18,45.9666666667,3.9966666667,72.56,18.79,31.29,21.79,40.3,18.29,38.7,3.6666666667,743.0166666667,86,7.5,40,1.45,8.2378146821,8.2378146821 -630,0,21.39,42.1,20.39,38.09,20.89,39.76,19.8566666667,37.1633333333,18,46.1266666667,3.5266666667,73.5233333333,18.79,31.29,21.815,40.6725,18.29,38.6266666667,3.7,743.1,85,8,40,1.3,31.2486984301,31.2486984301 -90,10,21.53,48.4333333333,20.5,38.49,20.89,40.1666666667,19.79,37.2966666667,18,46.26,3.3266666667,74.93,18.79,31.29,21.7633333333,40.4566666667,18.29,38.4666666667,3.3833333333,743.2666666667,86.5,7.5,42.1666666667,1.2333333333,19.6865987265,19.6865987265 -70,10,21.7,49.93,20.5,39.6966666667,21,41.03,19.79,38.1,18,46.6333333333,3.3633333333,76.1333333333,18.79,31.29,21.7,39.8333333333,18.29,38.3266666667,3.0666666667,743.4333333333,88,7,44.3333333333,1.1666666667,0.0334087061,0.0334087061 -110,10,21.7,46.6566666667,20.5,39.93,21,41.29,19.8566666667,38.8333333333,18,47.1,3.3633333333,76.26,18.7,31.29,21.6333333333,39.6266666667,18.29,38.26,2.75,743.6,89.5,6.5,46.5,1.1,48.7913194229,48.7913194229 -120,30,21.7,44.6666666667,20.5,39.73,21,41.26,19.79,39.1933333333,18,47.53,3.4333333333,76.4,18.7,31.29,21.6333333333,39.59,18.29,38.1266666667,2.4333333333,743.7666666667,91,6,48.6666666667,1.0333333333,33.4414455458,33.4414455458 -140,30,21.7,43.5333333333,20.5,39.4666666667,21,41.2,19.93,39.6,18,47.6633333333,3.6333333333,76,18.7,31.29,21.7,39.53,18.29,38.09,2.1166666667,743.9333333333,92.5,5.5,50.8333333333,0.9666666667,1.5314479242,1.5314479242 -170,20,21.73,42.0566666667,20.5666666667,39.2666666667,21.0333333333,41.06,20.4266666667,39.5266666667,18.5,55.5666666667,3.8266666667,73.63,18.7,31.26,21.79,39.3633333333,18.29,38.09,1.8,744.1,94,5,53,0.9,13.492758444,13.492758444 -130,10,21.79,41.1966666667,20.6,39.03,21.1,40.8,21.0333333333,39.1333333333,18.96,68.0333333333,3.8266666667,72.1566666667,18.7,31.2,21.79,39.29,18.29,37.9666666667,1.9166666667,744.1333333333,92.8333333333,5.6666666667,49,0.85,29.3907021289,29.3907021289 -110,20,21.8233333333,40.5266666667,20.6666666667,39.1633333333,21.1333333333,40.2966666667,21.4266666667,38.2633333333,18.945,61.65,2.4,77.8566666667,18.6666666667,31.1666666667,21.89,39.26,18.29,37.7666666667,2.0333333333,744.1666666667,91.6666666667,6.3333333333,45,0.8,24.3027836783,24.3027836783 -130,20,21.89,40.1333333333,20.73,38.8333333333,21.1333333333,39.89,21.4266666667,37.3966666667,19.1633333333,60.4933333333,2.0666666667,80.73,18.6,31.0333333333,21.9633333333,39.1266666667,18.2,37.56,2.15,744.2,90.5,7,41,0.75,44.280622981,44.280622981 -130,20,21.9266666667,39.5633333333,20.79,38.5,21,39.6633333333,21.34,37.19,19.3566666667,59.3,1.73,81.6666666667,18.6,31,21.89,39.06,18.2,37.4333333333,2.2666666667,744.2333333333,89.3333333333,7.6666666667,37,0.7,9.1215685476,9.1215685476 -130,20,22,39.0966666667,20.8233333333,38.1333333333,21,39.53,21.29,37.3633333333,19.5,57.6966666667,1.6633333333,82.06,18.6,30.9266666667,21.9633333333,38.9333333333,18.2,37.26,2.3833333333,744.2666666667,88.1666666667,8.3333333333,33,0.65,34.3064383604,34.3064383604 -130,20,22,38.6333333333,20.89,37.86,21,39.345,21.29,37.29,19.4266666667,56.63,1.6,82.2266666667,18.6,30.89,22,38.76,18.2,37.2,2.5,744.3,87,9,29,0.6,15.1809266652,15.1809266652 -140,30,22.075,38.32,20.89,37.5266666667,20.9633333333,39.1633333333,21.29,37.29,19.26,55.5933333333,1.6666666667,82.3,18.6,30.89,22,38.6266666667,18.2,37.09,2.5,744.3,86.6666666667,9,30.8333333333,0.5333333333,24.1007123725,24.1007123725 -100,20,22.1,38.0666666667,20.89,37.3266666667,20.9633333333,39.03,21.23,37.1566666667,19.2,54.7933333333,1.79,82.3,18.6,30.8233333333,22.1,38.56,18.1333333333,37.03,2.5,744.3,86.3333333333,9,32.6666666667,0.4666666667,27.922313381,27.922313381 -90,10,22.1,37.8333333333,20.89,37.1333333333,21,38.9,21.26,37.06,19.0666666667,53.9233333333,1.9,82.3666666667,18.6,30.89,22.1,38.56,18.2,36.9666666667,2.5,744.3,86,9,34.5,0.4,34.9758198601,34.9758198601 -80,0,22.1,37.6266666667,20.89,37,20.9266666667,38.7666666667,21.2,36.9333333333,19,53.2566666667,1.9666666667,82.3,18.6,30.9266666667,22,38.7666666667,18.1333333333,36.9,2.5,744.3,85.6666666667,9,36.3333333333,0.3333333333,4.4747112435,4.4747112435 -80,10,22.1,37.5,20.89,37.03,20.9633333333,38.6633333333,21.1666666667,36.4,18.9633333333,52.5633333333,1.1,81.83,18.6,30.9266666667,22,39.0266666667,18.15,36.9,2.5,744.3,85.3333333333,9,38.1666666667,0.2666666667,42.9621058051,42.9621058051 -70,0,22.1,37.4333333333,20.89,37.09,20.89,38.59,21.0333333333,35.9266666667,18.89,52.03,0.8333333333,81.5633333333,18.5666666667,30.79,21.89,39.2,18.1666666667,36.79,2.5,744.3,85,9,40,0.2,28.246124112,28.246124112 -80,0,22.1,37.26,20.79,37,20.89,38.59,20.89,35.6333333333,18.79,51.2666666667,0.7,81.4,18.5666666667,30.73,21.8233333333,39.1266666667,18.1,36.73,2.5,744.4,85.6666666667,8.5,37.8333333333,0.3166666667,22.5948185427,22.5948185427 -60,0,22.0333333333,37.0666666667,20.76,37,20.89,38.59,20.8233333333,35.36,18.79,50.8,0.7,81.3333333333,18.5,30.7,21.79,39.09,18.1,36.59,2.5,744.5,86.3333333333,8,35.6666666667,0.4333333333,14.6798075177,14.6798075177 -60,10,22,36.9666666667,20.7,36.9333333333,20.89,38.5266666667,20.7,35.1633333333,18.76,50.4,0.7,81.3,18.5,30.7,21.79,39.2,18.1,36.53,2.5,744.6,87,7.5,33.5,0.55,27.6524974615,27.6524974615 -70,0,22,36.9666666667,20.6666666667,36.7966666667,20.8233333333,38.4,20.6333333333,35.09,18.7,50.0666666667,0.7666666667,81.3,18.5,30.73,21.73,39.26,18.1,36.6966666667,2.5,744.7,87.6666666667,7,31.3333333333,0.6666666667,33.1929258187,33.1929258187 -40,0,21.9633333333,37,20.5333333333,36.59,20.79,38.5,20.6,35.53,18.7,49.9333333333,0.8,81.4,18.5,30.9966666667,21.7,39.4,18.1,37.4233333333,2.5,744.8,88.3333333333,6.5,29.1666666667,0.7833333333,49.4657739066,49.4657739066 -50,0,21.89,37,20.4633333333,36.6633333333,20.79,38.5,20.5333333333,35.6633333333,18.7,50,0.8,81.4,18.5,31.34,21.7,39.66,18.1333333333,37.9333333333,2.5,744.9,89,6,27,0.9,5.4523456376,5.4523456376 -50,0,21.8566666667,37.09,20.39,36.6633333333,20.79,38.4666666667,20.5,35.8266666667,18.6,50,0.8,81.4333333333,18.5666666667,31.5,21.6666666667,40.03,18.2,38.06,2.3333333333,744.8666666667,89.8333333333,5.6666666667,29.1666666667,0.85,47.8455559933,47.8455559933 -50,0,21.79,37.09,20.3566666667,36.7,20.79,38.4,20.4266666667,35.8266666667,18.6,50.06,0.7333333333,81.56,18.5,31.5666666667,21.6,40.1633333333,18.1,38.3266666667,2.1666666667,744.8333333333,90.6666666667,5.3333333333,31.3333333333,0.8,43.2891432894,43.2891432894 -50,0,21.79,37.2,20.29,36.76,20.76,38.4,20.3566666667,35.8266666667,18.55,50,0.7,81.59,18.5333333333,31.73,21.5,40.5,18.1666666667,38.4666666667,2,744.8,91.5,5,33.5,0.75,19.8900596006,19.8900596006 -30,0,21.79,37.2,20.1666666667,36.79,20.76,38.4,20.29,35.9,18.5,50,0.6333333333,81.53,18.5333333333,31.79,21.5,40.9,18.1333333333,38.59,1.8333333333,744.7666666667,92.3333333333,4.6666666667,35.6666666667,0.7,26.0586789227,26.0586789227 -60,0,21.7,37.3266666667,20.1,36.8633333333,20.7,38.4666666667,20.29,36,18.5,50,0.6,81.5,18.5,31.8233333333,21.39,41.4266666667,18.2,38.59,1.6666666667,744.7333333333,93.1666666667,4.3333333333,37.8333333333,0.65,42.8460518131,42.8460518131 -50,0,21.7,37.4666666667,20,36.8266666667,20.76,38.4,20.2,36,18.5,50,0.625,81.5225,18.5,31.89,21.39,41.9,18.2,38.6566666667,1.5,744.7,94,4,40,0.6,0.0341063715,0.0341063715 -50,0,21.6,37.5,20,36.9,20.7,38.5,20.2,36.06,18.5,50,0.7,81.53,18.5333333333,31.9266666667,21.3566666667,42.3266666667,18.2,38.8633333333,1.6333333333,744.6333333333,93.1666666667,4.1666666667,40,0.6166666667,8.8764329674,8.8764329674 -50,0,21.5333333333,37.56,19.89,36.9333333333,20.73,38.5,20.1666666667,36.09,18.4633333333,49.8633333333,0.7333333333,81.5,18.5333333333,32,21.29,42.6,18.2,39.0666666667,1.7666666667,744.5666666667,92.3333333333,4.3333333333,40,0.6333333333,8.5033014184,8.5033014184 -40,0,21.55,37.59,19.8233333333,36.9333333333,20.79,38.5,20.1,36.09,18.39,49.79,0.8666666667,81.5,18.5666666667,32.09,21.29,43.3666666667,18.2,39.26,1.9,744.5,91.5,4.5,40,0.65,28.8875540951,28.8875540951 -50,0,21.5,37.59,19.76,37.03,20.79,38.4666666667,20.0666666667,36.1633333333,18.39,49.76,1.0333333333,81.53,18.5,32.09,21.29,43.96,18.1333333333,39.4333333333,2.0333333333,744.4333333333,90.6666666667,4.6666666667,40,0.6666666667,20.9362754715,20.9362754715 -50,0,21.4266666667,37.53,19.7,37.09,20.79,38.4,20,36.09,18.39,49.7,1.1666666667,81.59,18.5,32.09,21.29,44.59,18.175,39.6725,2.1666666667,744.3666666667,89.8333333333,4.8333333333,40,0.6833333333,31.6764147137,31.6764147137 -40,0,21.39,37.5,19.6666666667,37.1633333333,20.79,38.5,20,36.2,18.3566666667,49.73,1.1333333333,81.56,18.5,32.1633333333,21.29,44.7233333333,18.1666666667,39.8633333333,2.3,744.3,89,5,40,0.7,31.8876559264,31.8876559264 -50,0,21.39,37.5,19.6,37.09,20.79,38.5,20,36.2,18.29,49.79,1.26,81.56,18.5,32.2,21.2,44.9333333333,18.2,39.9633333333,2.4,744.2333333333,89.1666666667,5.1666666667,37.1666666667,0.8166666667,43.6671564239,43.6671564239 -50,0,21.29,37.5,19.5,37.245,20.79,38.5,19.89,36.2,18.29,49.76,1.4266666667,81.59,18.5,32.2,21.2,45.1333333333,18.2,40.1633333333,2.5,744.1666666667,89.3333333333,5.3333333333,34.3333333333,0.9333333333,36.1133318394,36.1133318394 -50,0,21.29,37.5,19.4633333333,37.29,20.79,38.56,19.89,36.26,18.29,49.7,1.5666666667,81.59,18.5,32.29,21.2,45.3266666667,18.2,40.3266666667,2.6,744.1,89.5,5.5,31.5,1.05,45.981551602,45.981551602 -50,0,21.26,37.4666666667,19.39,37.3633333333,20.79,38.59,19.79,36.2,18.29,49.6633333333,1.73,81.56,18.5,32.29,21.2,45.4,18.2,40.4666666667,2.7,744.0333333333,89.6666666667,5.6666666667,28.6666666667,1.1666666667,47.1128549194,47.1128549194 -40,0,21.2,37.4,19.3566666667,37.5,20.8566666667,38.6633333333,19.79,36.2,18.29,49.59,1.8633333333,81.5,18.5,32.29,21.1333333333,45.4,18.2,40.53,2.8,743.9666666667,89.8333333333,5.8333333333,25.8333333333,1.2833333333,32.3077175417,32.3077175417 -40,0,21.1666666667,37.4,19.29,37.56,20.89,38.6633333333,19.79,36.23,18.26,49.5,2.1266666667,81.6566666667,18.5,32.29,21.1,45.5,18.2,40.59,2.9,743.9,90,6,23,1.4,13.2542693405,13.2542693405 -30,0,21.1,37.4,19.26,37.6633333333,20.89,38.59,19.73,36.29,18.2,49.4333333333,2.2,81.53,18.5,32.4,21.1,45.56,18.2,40.7,2.7166666667,743.8166666667,91,5.8333333333,30,1.3666666667,48.2438095263,48.2438095263 -30,0,21.1,37.4,19.2,37.6633333333,20.89,38.7,19.7,36.29,18.2,49.3633333333,2.2,81.59,18.5,32.5,21.1,45.56,18.2,40.76,2.5333333333,743.7333333333,92,5.6666666667,37,1.3333333333,40.367399517,40.367399517 -20,0,21.1,37.4,19.2,37.7,20.89,38.7,19.7,36.29,18.2,49.29,2.1266666667,81.59,18.5,32.5,21.1,45.5,18.2,40.9,2.35,743.65,93,5.5,44,1.3,32.0231087855,32.0231087855 -40,0,21,37.4,19.1333333333,37.7,20.89,38.73,19.7,36.3266666667,18.2,49.245,2,81.5,18.5,32.5,21.0666666667,45.4,18.2,40.9666666667,2.1666666667,743.5666666667,94,5.3333333333,51,1.2666666667,3.442769032,3.442769032 -50,0,21,37.4,19.1,37.79,20.8233333333,38.73,19.7,36.4,18.1666666667,49.2,2,81.56,18.5,32.5,21,45.3266666667,18.2,41,1.9833333333,743.4833333333,95,5.1666666667,58,1.2333333333,39.4478549599,39.4478549599 -60,0,20.9266666667,37.4,19.1,37.79,20.89,38.8266666667,19.6,36.29,18.1,49.2,2,81.5,18.5,32.5,21,45.4333333333,18.2,41.06,1.8,743.4,96,5,65,1.2,17.2123567318,17.2123567318 -50,0,20.9266666667,37.4,19.0666666667,37.9,20.89,38.8175,19.6,36.29,18.1333333333,49.1633333333,2.09,81.56,18.5,32.5,21,45.5,18.23,41.1266666667,1.95,743.3,96,5.1666666667,58.5,1.35,32.5960233225,32.5960233225 -40,0,20.89,37.4,19,37.9,20.89,38.79,19.6,36.3633333333,18.2,49.09,2.1633333333,81.5,18.5,32.59,20.9633333333,45.5,18.23,41.2,2.1,743.2,96,5.3333333333,52,1.5,13.0649191327,13.0649191327 -60,0,20.8233333333,37.3266666667,19,38,20.9633333333,38.79,19.6,36.4,18.1,49.09,2.23,81.4633333333,18.5,32.59,20.89,45.5,18.23,41.23,2.25,743.1,96,5.5,45.5,1.65,44.2291698186,44.2291698186 -40,0,20.79,37.4,18.9266666667,38.06,20.89,38.79,19.5333333333,36.4,18.1,49.09,2.3633333333,81.53,18.4633333333,32.56,20.89,45.4,18.29,41.3633333333,2.4,743,96,5.6666666667,39,1.8,29.2829262908,29.2829262908 -50,0,20.79,37.4,18.89,38.09,20.89,38.9,19.5,36.4333333333,18.1,49.23,2.4333333333,81.53,18.39,32.56,20.89,45.4,18.29,41.4333333333,2.55,742.9,96,5.8333333333,32.5,1.95,49.8652955983,49.8652955983 -40,0,20.79,37.4,18.89,38.1633333333,20.89,38.9,19.5,36.5,18.1,49.3633333333,2.56,81.4633333333,18.4633333333,32.6633333333,20.89,45.36,18.245,41.45,2.7,742.8,96,6,26,2.1,5.1814816077,5.1814816077 -50,0,20.7,37.4333333333,18.8566666667,38.2,20.9266666667,38.9,19.5,36.5,18.1,49.4,2.8266666667,81.53,18.39,32.59,20.89,45.5,18.29,41.5,2.9,742.7333333333,95.3333333333,5.8333333333,28.3333333333,2.2,41.8754180311,41.8754180311 -50,0,20.7,37.5,18.79,38.2,21,38.9,19.5,36.56,18.1,49.3266666667,2.9666666667,81.59,18.39,32.7,20.8233333333,45.6933333333,18.29,41.5,3.1,742.6666666667,94.6666666667,5.6666666667,30.6666666667,2.3,48.8296210766,48.8296210766 -50,0,20.7,37.5,18.79,38.29,20.9266666667,38.9,19.4633333333,36.56,18,49.2,3.03,81.6233333333,18.39,32.7,20.8233333333,45.8266666667,18.29,41.56,3.3,742.6,94,5.5,33,2.4,13.0111636827,13.0111636827 -40,0,20.7,37.56,18.79,38.4,21,38.9,19.39,36.56,18,49.2,3.1633333333,81.69,18.39,32.79,20.79,45.79,18.29,41.6266666667,3.5,742.5333333333,93.3333333333,5.3333333333,35.3333333333,2.5,41.8512569042,41.8512569042 -50,0,20.6,37.5,18.79,38.4666666667,21,38.9,19.39,36.59,18.0333333333,49.1266666667,3.2,81.69,18.39,32.79,20.79,45.79,18.29,41.7,3.7,742.4666666667,92.6666666667,5.1666666667,37.6666666667,2.6,7.6030044234,7.6030044234 -40,0,20.6,37.56,18.76,38.4333333333,21,38.9,19.39,36.6633333333,18.1,49.1266666667,3.2,81.69,18.39,32.9,20.79,45.895,18.26,41.6633333333,3.9,742.4,92,5,40,2.7,18.9745041193,18.9745041193 -50,0,20.6,37.59,18.7,38.5,21,38.9,19.39,36.7,18.0666666667,49.06,3.03,81.7266666667,18.39,32.9,20.76,46.09,18.26,41.7233333333,3.9833333333,742.45,90.5,5.1666666667,40,2.55,33.7574173464,33.7574173464 -40,0,20.6,37.59,18.7,38.59,21,38.9,19.39,36.76,18,49,3.2925,81.745,18.39,32.9,20.7,46.09,18.29,41.8266666667,4.0666666667,742.5,89,5.3333333333,40,2.4,4.7281964566,4.7281964566 -60,0,20.5666666667,37.59,18.7,38.6633333333,21,38.9,19.3566666667,36.79,18,48.9,3.56,81.7266666667,18.39,33,20.7,46.23,18.29,41.9,4.15,742.55,87.5,5.5,40,2.25,17.5808072323,17.5808072323 -40,0,20.5,37.6633333333,18.6666666667,38.6633333333,21,38.9,19.29,36.79,18,48.8266666667,3.6266666667,81.7266666667,18.39,33,20.7,46.29,18.29,42,4.2333333333,742.6,86,5.6666666667,40,2.1,9.1073786491,9.1073786491 -20,0,20.5,37.7,18.6,38.6633333333,21,39,19.29,36.9,18,48.79,3.7,81.8,18.39,33,20.7,46.29,18.29,42,4.3166666667,742.65,84.5,5.8333333333,40,1.95,3.2280961517,3.2280961517 -30,0,20.4266666667,37.7,18.6,38.7,21,39,19.29,36.9,18,48.79,3.7,81.8,18.39,33,20.7,46.29,18.29,42.03,4.4,742.7,83,6,40,1.8,23.1538067223,23.1538067223 -20,0,20.39,37.7,18.6,38.7,21,38.9333333333,19.29,36.9,18,48.79,3.5666666667,81.8666666667,18.39,33,20.7,46.29,18.29,42.09,4.25,742.7666666667,84,5.8333333333,38.1666666667,1.8,17.8758400027,17.8758400027 -40,0,20.39,37.76,18.6,38.73,20.9175,39,19.29,36.9,17.9633333333,48.76,3.26,81.8666666667,18.39,33.06,20.7,46.23,18.29,42.09,4.1,742.8333333333,85,5.6666666667,36.3333333333,1.8,0.3075786983,0.3075786983 -40,0,20.3566666667,37.79,18.5333333333,38.79,20.89,39.06,19.23,36.8266666667,17.9633333333,48.7,3.2,81.8,18.39,33.09,20.7,46.2,18.29,42.1633333333,3.95,742.9,86,5.5,34.5,1.8,38.7072341749,38.7072341749 -50,0,20.29,37.79,18.5,38.79,20.89,39.2,19.2,36.79,17.89,48.59,3.26,81.7633333333,18.39,33.03,20.7,46.1266666667,18.29,42.2,3.8,742.9666666667,87,5.3333333333,32.6666666667,1.8,14.0008246643,14.0008246643 -50,0,20.29,37.8266666667,18.5,38.79,20.89,39.2,19.2,36.79,17.89,48.59,3.2,81.69,18.3566666667,33.06,20.6,46.06,18.29,42.2,3.65,743.0333333333,88,5.1666666667,30.8333333333,1.8,26.8334697816,26.8334697816 -40,0,20.29,37.9,18.5,38.79,20.89,39.23,19.2,36.79,17.89,48.6633333333,3.1633333333,81.8333333333,18.29,33.06,20.6,46,18.29,42.2,3.5,743.1,89,5,29,1.8,43.4409619658,43.4409619658 -60,10,20.23,37.9,18.5,38.79,20.89,39.29,19.2,36.79,17.89,48.59,3.03,81.76,18.29,33.09,20.6,46.1266666667,18.29,42.2675,3.4166666667,743.1666666667,89.6666666667,4.8333333333,28,1.8333333333,40.0822265889,40.0822265889 -50,20,20.2,38,18.5,38.8633333333,20.89,39.2,19.2,36.8266666667,17.89,48.59,2.9,81.8,18.29,33.09,20.6666666667,46.1266666667,18.29,42.23,3.3333333333,743.2333333333,90.3333333333,4.6666666667,27,1.8666666667,43.9007110894,43.9007110894 -70,10,20.2,38.1933333333,18.5,38.8633333333,20.89,39.2,19.26,37.16,17.89,48.59,2.9,81.8,18.29,33.09,20.6,45.6333333333,18.29,42.1633333333,3.25,743.3,91,4.5,26,1.9,27.723634697,27.723634697 -50,0,20.2,38.4633333333,18.39,38.9,20.89,39.06,19.5333333333,37.56,17.89,48.59,2.8633333333,81.7633333333,18.29,33.09,20.6,45.36,18.29,42.09,3.1666666667,743.3666666667,91.6666666667,4.3333333333,25,1.9333333333,20.5964667955,20.5964667955 -50,10,20.2,38.6633333333,18.4266666667,39,20.89,39,19.6666666667,37.4333333333,17.89,48.59,2.79,81.69,18.29,33.09,20.5,44.7966666667,18.29,42.09,3.0833333333,743.4333333333,92.3333333333,4.1666666667,24,1.9666666667,15.1324555394,15.1324555394 -50,0,20.2,38.79,18.5,39.26,20.8566666667,38.8633333333,19.7,37.4,17.89,48.5,2.9,81.69,18.29,33.09,20.5,44.33,18.29,42.03,3,743.5,93,4,23,2,30.3557871841,30.3557871841 -50,0,20.2,38.8633333333,18.4633333333,39.4,20.79,38.79,19.7,37.4,17.89,48.5,2.9,81.665,18.29,33.09,20.4633333333,43.7666666667,18.29,42,3.1166666667,743.6,93,4.1666666667,24,2.1,43.5885728803,43.5885728803 -100,30,20.2,38.9,18.4633333333,39.4666666667,20.79,38.79,19.6,37.3266666667,17.8233333333,47.9933333333,2.9666666667,81.59,18.29,33.1175,20.39,43.32,18.29,42,3.2333333333,743.7,93,4.3333333333,25,2.2,9.0671089711,9.0671089711 -60,20,20.2,39.0266666667,18.4633333333,39.59,20.73,38.79,19.6666666667,37.5266666667,17.9633333333,46.9333333333,3.2,81.69,18.29,33.1266666667,20.39,43.1266666667,18.29,41.8633333333,3.35,743.8,93,4.5,26,2.3,1.5264776186,1.5264776186 -70,20,20.2,39.23,18.39,39.7233333333,20.7,38.6633333333,20.0666666667,37.73,18.1,46.0633333333,3.26,81.7633333333,18.29,33.1333333333,20.39,42.93,18.29,41.79,3.4666666667,743.9,93,4.6666666667,27,2.4,11.4655007608,11.4655007608 -60,30,20.2,39.29,18.39,39.9333333333,20.7,38.59,20.4,37.79,18.1666666667,45.5966666667,3.26,81.6566666667,18.23,32.9333333333,20.3233333333,42.6566666667,18.29,41.6633333333,3.5833333333,744,93,4.8333333333,28,2.5,49.1203922429,49.1203922429 -60,20,20.2,39.26,18.39,40,20.7,38.56,20.8933333333,37.6633333333,18.2,44.94,3.3333333333,81.6566666667,18.2,32.8266666667,20.29,42.3333333333,18.29,41.4633333333,3.7,744.1,93,5,29,2.6,16.7383724358,16.7383724358 -60,30,20.2,39.1266666667,18.39,40.06,20.7,38.4333333333,21.125,37.47,18.29,44.6,3.53,81.7633333333,18.2,32.9,20.29,42.1266666667,18.23,41.1633333333,3.7,744.25,93.1666666667,5,29,2.6333333333,12.1006860398,12.1006860398 -160,40,20.2,38.8633333333,18.39,39.9333333333,20.5666666667,37.5666666667,21.2,37.0966666667,18.29,44.2666666667,3.59,81.6233333333,18.1666666667,32.8633333333,20.2,41.76,18.23,40.89,3.7,744.4,93.3333333333,5,29,2.6666666667,38.678906532,38.678906532 -200,30,20.1333333333,38.79,18.39,39.6333333333,20.295,37.27,21.1,37,18.23,43.9666666667,3.73,81.6566666667,18.1,32.8633333333,20.2,41.7,18.2,40.6333333333,3.7,744.55,93.5,5,29,2.7,19.0708121983,19.0708121983 -70,30,20.1,38.6633333333,18.39,39.5,20.0333333333,37.26,21.1,36.9333333333,18.29,43.7666666667,3.79,81.59,18.1333333333,32.8633333333,20.1666666667,41.5,18.2,40.6933333333,3.7,744.7,93.6666666667,5,29,2.7333333333,37.0968506904,37.0968506904 -130,30,20.1,38.53,18.39,39.3633333333,19.9266666667,37.5666666667,21,36.73,18.26,43.6266666667,3.8266666667,81.59,18.1333333333,32.8633333333,20.1666666667,41.5,18.29,41.9333333333,3.7,744.85,93.8333333333,5,29,2.7666666667,36.1481269705,36.1481269705 -90,30,20.1,38.76,18.39,39.23,19.9266666667,37.5666666667,21,36.93,18.2,44.0333333333,3.9666666667,81.53,18.1,32.9,20.1666666667,41.59,18.29,42.4,3.7,745,94,5,29,2.8,16.3484976394,16.3484976394 -80,30,20.1,38.54,18.39,39.09,19.89,37.7,21.1,37.23,18.1,44.5,4.09,81.59,18.1,32.9666666667,20.1,41.53,18.29,42.214,3.7166666667,745.25,93.1666666667,5.1666666667,28.3333333333,2.6833333333,0.0459253322,0.0459253322 -80,30,20.0666666667,38.4666666667,18.39,39.09,19.9266666667,37.7,21.1,37.2671428571,18.1,44.8725,4.1925,81.4975,18.1,33,20.1,41.425,18.29,41.9966666667,3.7333333333,745.5,92.3333333333,5.3333333333,27.6666666667,2.5666666667,42.7647339064,42.7647339064 -70,30,20.0666666667,38.5,18.5,39.3266666667,19.89,37.8266666667,21.1,37.23,18.1,45.09,4.3666666667,81.4333333333,18.1,33,20.0777777778,41.1566666667,18.29,41.6933333333,3.75,745.75,91.5,5.5,27,2.45,12.6201549778,12.6201549778 -70,40,20.0666666667,38.4666666667,18.6966666667,39.3266666667,19.89,37.96,21.1666666667,37.29,18.1,45.23,4.51125,81.59,18.2,32.8877777778,20.05,40.8425,18.3471428571,41.3828571429,3.7666666667,746,90.6666666667,5.6666666667,26.3333333333,2.3333333333,0.1758108963,0.1758108963 -70,30,20.025,38.6175,18.8925,39.245,19.8566666667,38.06,21.218,37.156,18.1,45.26,4.6385714286,81.51,18.2,32.8144444444,20.0555555556,40.6366666667,18.39,41.112,3.7833333333,746.25,89.8333333333,5.8333333333,25.6666666667,2.2166666667,18.8534004497,18.8534004497 -50,30,20.05,38.745,19.0666666667,39.2,19.81,38.134,21.29,37.0966666667,18.06,45.316,4.594,81.67,18.2,32.72,20.0333333333,40.4444444444,18.39,40.952,3.8,746.5,89,6,25,2.1,18.5886872234,18.5886872234 -50,20,20.0666666667,39.1933333333,19.1,39.0966666667,19.79,38.2,21.3042857143,36.8985714286,18,45.29,4.5114285714,81.7214285714,18.2,32.6266666667,20.0625,40.30875,18.39,40.76,4.05,746.6666666667,88.3333333333,5.8333333333,24.8333333333,2.2333333333,0.9011910995,0.9011910995 -60,20,20.1,38.8233333333,19.1,38.4266666667,19.8233333333,38.1266666667,21.39,36.71,18,45.35875,4.623,81.83,18.2514285714,32.5957142857,20.0571428571,40.1214285714,18.39,40.9966666667,4.3,746.8333333333,87.6666666667,5.6666666667,24.6666666667,2.3666666667,45.3263611998,45.3263611998 -80,20,20,38.1675,19.1,37.8966666667,19.79,38.09,21.456,36.678,18,45.3175,4.88,81.96,18.29,32.5675,20.1,39.9685714286,18.412,41.214,4.55,747,87,5.5,24.5,2.5,31.5445149317,31.5445149317 -90,30,20.0666666667,38.1633333333,19.2,37.66,19.79,38.06,21.5,36.7,18,45.2385714286,5.074,82.114,18.40375,32.475,20.1,39.7771428571,18.4371428571,41.4571428571,4.8,747.1666666667,86.3333333333,5.3333333333,24.3333333333,2.6333333333,47.0221982221,47.0221982221 -70,20,20.1,38.23,19.26,37.6633333333,19.84,37.9666666667,21.6714285714,36.8428571429,18,45.09,5.375,82.42375,18.5714285714,32.4285714286,20.1142857143,39.7,18.4633333333,41.5966666667,5.05,747.3333333333,85.6666666667,5.1666666667,24.1666666667,2.7666666667,10.5306857382,10.5306857382 -80,30,20.125,38.29,19.29,37.6266666667,19.89,37.925,21.77875,36.925,18,45.045,5.652,82.872,18.625,32.30375,20.2,39.545,18.478,41.572,5.3,747.5,85,5,24,2.9,40.2640560409,40.2640560409 -80,20,20.2,38.4,19.39,37.5675,19.9175,37.9,21.8328571429,37.0385714286,18,45,5.8666666667,83.26,18.7,32.2675,20.2385714286,39.4142857143,18.5,41.59,5.5833333333,747.5833333333,82.8333333333,5.1666666667,26.6666666667,2.7833333333,28.8047644077,28.8047644077 -80,30,20.2128571429,38.3528571429,19.39,37.45,19.9371428571,37.8528571429,21.9214285714,37,18,45,6.1233333333,83.695,18.7514285714,32.1214285714,20.29,39.29,18.478,41.518,5.8666666667,747.6666666667,80.6666666667,5.3333333333,29.3333333333,2.6666666667,27.8257024474,27.8257024474 -250,20,20.27,38.3511111111,19.39,37.29,20,37.79,22,37,18,45,6.2877777778,83.9,18.79,32.0128571429,20.29,39.2,18.4633333333,41.56,6.15,747.75,78.5,5.5,32,2.55,12.6875897986,12.6875897986 -80,30,20.3328571429,38.8542857143,19.5,37.475,20,37.8371428571,22,36.975,18,44.9125,6.3333333333,83.9666666667,18.84,32.0225,20.34125,39.05625,18.5,41.7642857143,6.4333333333,747.8333333333,76.3333333333,5.6666666667,34.6666666667,2.4333333333,29.0091814357,29.0091814357 -90,20,20.4371428571,38.8085714286,19.5,37.5,20.0625,37.9625,22.0428571429,37.0385714286,18,44.9285714286,6.4,83.1933333333,19.1142857143,31.8471428571,20.5333333333,38.9133333333,18.5,41.8175,6.7166666667,747.9166666667,74.1666666667,5.8333333333,37.3333333333,2.3166666667,40.8126287395,40.8126287395 -330,20,20.55,38.6225,19.5625,37.5,20.1,38,22.1,37.0257142857,17.9725,44.975,6.52,81.075,19.29375,31.68375,20.6971428571,38.6814285714,18.5,41.9,7,748,72,6,40,2.2,15.422440914,15.422440914 -100,30,20.6714285714,38.4,19.6,37.5,20.2,37.975,22.1,36.8828571429,17.9842857143,45,6.98,79.5066666667,19.4528571429,31.4685714286,20.8471428571,38.3685714286,18.5,41.9,6.8333333333,748.05,73,6,40,2.2333333333,30.8622287237,30.8622287237 -430,20,20.7,38.28,19.7,37.59,20.2,37.9,22.125,36.73375,17.98625,45,7.1688888889,74.9166666667,19.5,31.3614285714,20.89,38.2257142857,18.5,41.9,6.6666666667,748.1,74,6,40,2.2666666667,6.2464755028,6.2464755028 -80,20,20.7514285714,38.0642857143,19.7,37.59,20.2,37.9,22.1857142857,36.7,17.9842857143,45,7.37,70.2542857143,19.5285714286,31.2771428571,20.9528571429,38.0642857143,18.5125,41.9,6.5,748.15,75,6,40,2.3,30.573469575,30.573469575 -240,30,20.8275,37.92375,19.77875,37.49875,20.2,37.9,22.2,36.5957142857,17.95875,45,7.53,66.7266666667,19.7225,31.175,21.1142857143,37.9271428571,18.5428571429,41.8371428571,6.3333333333,748.2,76,6,40,2.3333333333,13.5705409921,13.5705409921 -260,20,20.9214285714,37.7385714286,19.79,37.3685714286,20.2,37.9,22.2,36.4285714286,17.9842857143,45.0257142857,7.93625,64.74625,19.8614285714,31.0257142857,21.2385714286,37.7228571429,18.6,41.75625,6.1666666667,748.25,77,6,40,2.3666666667,9.8030923633,9.8030923633 -70,0,21,37.6842857143,19.89,37.2675,20.2,37.9714285714,22.2225,36.3175,18,45,8.3,61.9966666667,19.945,30.85375,21.29,37.5642857143,18.6,41.7,6,748.3,78,6,40,2.4,22.0768225263,22.0768225263 -80,10,21.0714285714,37.5771428571,19.89,37.2,20.2,38,22.2,36.0828571429,18,45,8.0257142857,63.2071428571,20,30.73,21.29,37.4128571429,18.6,41.63125,6.2833333333,748.35,76.6666666667,5.6666666667,40,2.4166666667,35.2365269442,35.2365269442 -60,0,21.0857142857,37.47,19.89,37.27,20.2,38,22.075,35.785,18,45,7.1266666667,65.5966666667,19.95875,30.6875,21.2642857143,37.2642857143,18.6,41.7,6.5666666667,748.4,75.3333333333,5.3333333333,40,2.4333333333,3.7762782653,3.7762782653 -60,0,21.075,37.245,19.9528571429,37.2257142857,20.21125,37.9125,21.9685714286,35.5,17.93125,44.9625,6.4414285714,64.6714285714,19.8614285714,30.6,21.2,37.1685714286,18.6,41.7,6.85,748.45,74,5,40,2.45,9.2070362996,9.2070362996 -200,0,21.1,37.2,20,37.1371428571,20.2771428571,37.8214285714,21.89,35.2675,17.9214285714,44.9,6.34,64.116,19.865,30.525,21.2,37.09,18.6,41.65875,7.1333333333,748.5,72.6666666667,4.6666666667,40,2.4666666667,20.1967967441,20.1967967441 -400,0,21.1714285714,37.1142857143,20,36.95,20.29,37.79,21.79,34.9333333333,17.89,44.845,6.634,63.418,20.06,30.35,21.3566666667,36.9966666667,18.6,41.5514285714,7.4166666667,748.55,71.3333333333,4.3333333333,40,2.4833333333,38.6650997563,38.6650997563 -100,0,21.2128571429,37.0385714286,20,36.8214285714,20.29,37.7,21.79,34.9,17.945,44.79,6.95,63.3,20.26875,30.24375,21.4971428571,36.7642857143,18.6375,41.53375,7.7,748.6,70,4,40,2.5,48.932659952,48.932659952 -50,0,21.29,37.09,20.0625,36.85875,20.3328571429,37.7,21.75625,34.9,17.9842857143,44.79,7.345,61.55,20.4371428571,30.1571428571,21.6714285714,36.59,18.7,41.5,7.7166666667,748.65,69,4.1666666667,40,2.3166666667,10.8853252721,10.8853252721 -50,0,21.3757142857,37.01,20.1,36.8242857143,20.39,37.59,21.7,34.845,17.9725,44.79,7.8375,57.14,20.525,29.9825,21.745,36.4375,18.7,41.4714285714,7.7333333333,748.7,68,4.3333333333,40,2.1333333333,7.7169792377,7.7169792377 -60,0,21.39,36.8371428571,20.0857142857,36.7257142857,20.39,37.55,21.6222222222,34.6044444444,17.9511111111,44.77,7.7685714286,54.91,20.48625,29.84,21.7,36.28125,18.6625,41.4625,7.75,748.75,67,4.5,40,1.95,17.4285318702,17.4285318702 -50,0,21.39,36.62,20,36.6057142857,20.4528571429,37.5514285714,21.5571428571,34.4857142857,17.95875,44.71125,7.53375,54.07,20.39,29.65,21.65,36.1175,18.6285714286,41.4285714286,7.7666666667,748.8,66,4.6666666667,40,1.7666666667,4.7561122919,4.7561122919 -40,0,21.39,36.4571428571,20,36.59,20.4266666667,37.4333333333,21.4633333333,34.3633333333,17.89,44.7,7.475,54.77,20.39,29.58,21.62,36,18.6142857143,41.4142857143,7.7833333333,748.85,65,4.8333333333,40,1.5833333333,31.8669220665,31.8669220665 -50,0,21.4266666667,36.4,20,36.5,20.5,37.5,21.4214285714,34.3214285714,17.89,44.6371428571,7.56875,55.3225,20.4725,29.5,21.7128571429,35.9285714286,18.6714285714,41.4,7.8,748.9,64,5,40,1.4,13.4399248287,13.4399248287 -50,0,21.5,36.3371428571,20,36.4285714286,20.5,37.4,21.39,34.3528571429,17.9685714286,44.59,7.62,57.7542857143,20.5,29.4528571429,21.79,35.7483333333,18.7,41.4,7.6666666667,748.95,64.3333333333,4.8333333333,40,1.35,14.0296924743,14.0296924743 -70,0,21.5,36.1942857143,20,36.4,20.5,37.3175,21.3025,34.38625,17.89,44.5675,7.4888888889,58.7866666667,20.4685714286,29.4528571429,21.7225,35.995,18.7,41.4,7.5333333333,749,64.6666666667,4.6666666667,40,1.3,42.3590610502,42.3590610502 -80,0,21.5,36.1371428571,20,36.4285714286,20.5222222222,37.23,21.2675,34.3725,17.9755555556,44.5,7.3714285714,58.3514285714,20.39,29.39,21.77875,36.3225,18.65,41.345,7.4,749.05,65,4.5,40,1.25,41.9155149255,41.9155149255 -230,0,21.4685714286,36.4071428571,20,36.4714285714,20.6,37.09,21.2,34.33125,17.9371428571,44.5,7.03125,58.0825,20.3471428571,29.4371428571,21.79,36.6114285714,18.6428571429,41.3114285714,7.2666666667,749.1,65.3333333333,4.3333333333,40,1.2,10.1246529375,10.1246529375 -280,0,21.5,37.1214285714,20,36.53,20.6,37.1633333333,21.2,34.44,17.9633333333,44.5,6.9714285714,59.4385714286,20.39,29.5,21.89,36.92,18.6428571429,41.2542857143,7.1333333333,749.15,65.6666666667,4.1666666667,40,1.15,4.057070869,4.057070869 -240,0,21.6,39.11,20,37.42,20.6,37.4114285714,21.1,34.55625,17.9371428571,44.6214285714,7.05625,57.9675,20.365,29.4175,21.9685714286,37,18.7,41.29,7,749.2,66,4,40,1.1,46.2679854827,46.2679854827 -220,0,21.7,39.2833333333,20,38.3685714286,20.6875,37.8,21.0714285714,34.5642857143,17.945,44.94375,7.07875,53.8075,20.39,29.28,22.0857142857,37.0128571429,18.7,41.2385714286,6.85,749.2666666667,67,3.6666666667,40,1.1333333333,10.9932637308,10.9932637308 -100,0,21.6571428571,40.8128571429,20.0714285714,38.74,20.7,38.06,21.0166666667,34.515,18,45.28,6.8714285714,53.7514285714,20.3066666667,29.2,22.12,37.036,18.675,41.1725,6.7,749.3333333333,68,3.3333333333,40,1.1666666667,5.1090736291,5.1090736291 -110,0,21.6,39.3685714286,20.0571428571,38.72,20.7,38.2,21,34.5,18,45.515,6.7175,54.2975,20.29,29.18,22.2,36.9833333333,18.6714285714,41.1685714286,6.55,749.4,69,3,40,1.2,30.8200350381,30.8200350381 -110,0,21.6142857143,38.8214285714,20,38.4257142857,20.7,38.156,20.978,34.5,18,45.612,6.545,54.58375,20.218,29.04,22.2675,36.925,18.6,41.09,6.4,749.4666666667,70,2.6666666667,40,1.2333333333,18.8321592635,18.8321592635 -120,0,21.6428571429,38.4542857143,20,38.2642857143,20.7,38.0514285714,20.89,34.57875,17.9725,45.65875,6.3875,55.41,20.2,29.0571428571,22.34,37,18.6285714286,41.09,6.25,749.5333333333,71,2.3333333333,40,1.2666666667,30.2606805461,30.2606805461 -90,0,21.6,38.07,20,38.1371428571,20.7,37.95,20.8614285714,34.6528571429,18,45.5771428571,6.3428571429,56.4214285714,20.1285714286,29.1,22.39,37,18.6142857143,41.0128571429,6.1,749.6,72,2,40,1.3,13.4771159501,13.4771159501 -110,0,21.6428571429,37.9228571429,19.90375,37.99625,20.7,37.8114285714,20.79,34.7675,17.9057142857,45.5128571429,6.4,56.9075,20.075,29.075,22.39,37.09,18.6142857143,41.0128571429,5.8166666667,749.6833333333,73.1666666667,2.1666666667,40,1.2666666667,35.1523868274,35.1523868274 -90,10,21.6,37.6266666667,19.89,37.845,20.7,37.6725,20.79,34.8528571429,17.89,45.4,6.29625,55.845,20,29.0142857143,22.39,37.09,18.6428571429,41.0385714286,5.5333333333,749.7666666667,74.3333333333,2.3333333333,40,1.2333333333,14.3124476424,14.3124476424 -90,10,21.6,37.6685714286,19.89,37.6925,20.7257142857,37.59,20.75625,34.73375,17.9528571429,45.2642857143,5.89625,54.925,19.9685714286,29.1,22.39,37.09,18.6,41,5.25,749.85,75.5,2.5,40,1.2,23.9037851454,23.9037851454 -90,0,21.6142857143,37.7642857143,19.89,37.5385714286,20.75625,37.59,20.7,34.7828571429,17.89,45.2,5.5657142857,56.2514285714,19.89,29.1,22.3614285714,37.1528571429,18.6,41.09,4.9666666667,749.9333333333,76.6666666667,2.6666666667,40,1.1666666667,14.3035944551,14.3035944551 -80,10,21.6222222222,37.5944444444,19.90375,37.45,20.79,37.5,20.7,34.9428571429,17.89,45.2,5.095,59.477,19.8233333333,29.0833333333,22.29,37.3266666667,18.6,41.09,4.6833333333,750.0166666667,77.8333333333,2.8333333333,40,1.1333333333,15.5723591335,15.5723591335 -80,10,21.6571428571,37.54,20,37.4,20.79,37.4,20.6,35.08,17.89,45.2,4.4975,61.295,19.79,29.2,22.29,37.3114285714,18.6,41.09,4.4,750.1,79,3,40,1.1,0.0532922801,0.0532922801 -90,0,21.6714285714,38.1214285714,20,37.3214285714,20.8185714286,37.4285714286,20.6,35.2225,17.89,45.1725,3.93,62.5725,19.7257142857,29.29,22.25625,37.13625,18.6,41.09,4.1,750.05,80.5,2.8333333333,40,1.05,33.5555048659,33.5555048659 -90,0,21.6571428571,37.4985714286,20,37.4428571429,20.815,37.45,20.6,35.0257142857,17.9214285714,45.1057142857,3.445,63.57,19.7,29.3185714286,22.2,37.23,18.6,41.09,3.8,750,82,2.6666666667,40,1,4.7172351391,4.7172351391 -100,10,21.6,37.1342857143,20.0571428571,37.5,20.8185714286,37.4285714286,20.5625,34.85875,17.89,45.1057142857,2.9977777778,65.5155555556,19.6857142857,29.3757142857,22.2,37.3814285714,18.6,40.9357142857,3.5,749.95,83.5,2.5,40,0.95,18.3573875111,18.3573875111 -120,10,21.6,36.9842857143,20.1,37.4285714286,20.865,37.3975,20.5,34.79,18.0228571429,53.2242857143,2.73125,66.92,19.6,29.39,22.2,37.5642857143,18.6,40.6371428571,3.2,749.9,85,2.3333333333,40,0.9,37.5407413463,37.5407413463 -130,0,21.6714285714,36.9571428571,20.2514285714,37.3528571429,20.9528571429,37.3214285714,20.5,34.7642857143,18.55,66.47375,2.325,67.525,19.5714285714,29.4685714286,22.2,37.6371428571,18.6,40.1414285714,2.9,749.85,86.5,2.1666666667,40,0.85,37.4560329365,37.4560329365 -100,0,21.7128571429,36.9857142857,20.3471428571,37.3371428571,21.0625,37.23375,20.39,34.6175,20.4114285714,87.0814285714,1.97125,68.09625,19.5428571429,29.5142857143,22.1857142857,37.4842857143,18.6,39.6785714286,2.6,749.8,88,2,40,0.8,47.2551355488,47.2551355488 -110,0,21.8185714286,36.9,20.4528571429,37.2771428571,21.2,37.2,20.39,34.6528571429,20.7828571429,86.2228571429,1.75,68.85,19.5,29.6,22.1857142857,38.1571428571,18.5857142857,39.31,2.4166666667,749.8,88.5,2,38,0.7,0.3925990197,0.3925990197 -100,0,21.9214285714,36.8371428571,20.5428571429,37.2,21.2,37.1685714286,20.365,34.7,20.2642857143,87.6271428571,1.5322222222,70.1588888889,19.4371428571,29.5428571429,22.1857142857,38.6371428571,18.5857142857,38.9642857143,2.2333333333,749.8,89,2,36,0.6,8.1896485179,8.1896485179 -90,0,22,36.8685714286,20.6428571429,37.2385714286,21.25625,37.15875,20.29,34.7,20,81.9542857143,1.3275,70.76875,19.4057142857,29.6,22.2,38.79,18.5285714286,38.79,2.05,749.8,89.5,2,34,0.5,15.0457138778,15.0457138778 -70,0,22.0875,37.02125,20.7514285714,37.3214285714,21.29,37.2514285714,20.29,34.7,20.0571428571,69.8714285714,1.1666666667,71.2877777778,19.39,29.6,22.1333333333,38.9983333333,18.5,38.4642857143,1.8666666667,749.8,90,2,32,0.4,16.6679413989,16.6679413989 -80,0,22.1857142857,37.1214285714,20.79,37.4571428571,21.29,37.3725,20.29,34.6685714286,20.1,57.80875,1.0375,71.6325,19.3328571429,29.7,22.1857142857,39.3214285714,18.5,38.0828571429,1.6833333333,749.8,90.5,2,30,0.3,1.1288234033,1.1288234033 -80,0,22.2385714286,37.2257142857,20.89,37.59,21.29,37.5128571429,20.27875,34.6175,20.2,52.8428571429,0.9125,71.9375,19.29,29.7,22.1,39.3528571429,18.5,37.7385714286,1.5,749.8,91,2,28,0.2,2.6195544982,2.6195544982 -80,0,22.29,37.2,20.89,37.545,21.3757142857,37.59,20.2,34.5385714286,20.2,49.92,0.8,72.835,19.29,29.7,22.1,39.3214285714,18.5,37.49625,1.4666666667,749.7333333333,91.1666666667,2.1666666667,27.1666666667,0.1833333333,12.5748346909,12.5748346909 -90,0,22.3185714286,37.1214285714,20.9371428571,37.4571428571,21.39,37.59,20.2,34.55625,20.29,47.4785714286,0.7222222222,73.1822222222,19.29,29.7,22.0285714286,39.2257142857,18.5,37.2514285714,1.4333333333,749.6666666667,91.3333333333,2.3333333333,26.3333333333,0.1666666667,12.9376335884,12.9376335884 -70,0,22.3757142857,37.0385714286,20.9685714286,37.29,21.4685714286,37.6528571429,20.2,34.5,20.3185714286,45.9071428571,0.7625,73.76875,19.2675,29.675,22,39.2257142857,18.5,37.0642857143,1.4,749.6,91.5,2.5,25.5,0.15,22.9440667084,22.9440667084 -60,0,22.39,36.8725,21,37.2514285714,21.4528571429,37.5514285714,20.1857142857,34.5,20.39,44.6428571429,0.8777777778,74.5466666667,19.2,29.6428571429,21.9685714286,39.29,18.4214285714,36.85,1.3666666667,749.5333333333,91.6666666667,2.6666666667,24.6666666667,0.1333333333,32.0476199384,32.0476199384 -60,0,22.4214285714,36.9285714286,21,37.4571428571,21.3471428571,37.5,20.1625,34.59,20.39,43.9242857143,0.925,75.0375,19.2,29.9371428571,21.9528571429,39.51,18.40375,36.73375,1.3333333333,749.4666666667,91.8333333333,2.8333333333,23.8333333333,0.1166666667,19.0186089254,19.0186089254 -40,0,22.4528571429,36.9857142857,21,37.59,21.25625,37.6475,20.1,34.6685714286,20.3614285714,44.1471428571,1.0333333333,75.7066666667,19.2514285714,30.1685714286,21.89,39.7671428571,18.39,36.7385714286,1.3,749.4,92,3,23,0.1,10.7769261696,10.7769261696 -50,10,22.5,36.9666666667,21,37.5771428571,21.1142857143,37.7257142857,20.1,34.7925,20.1142857143,45.6385714286,1.1125,76.235,19.27875,30.39375,21.89,40.0671428571,18.39,36.9428571429,1.4166666667,749.3,92,3,23,0.2166666667,19.1746761673,19.1746761673 -50,0,22.5,36.9,21,37.5,21.05,37.8175,20.1,34.9,19.89375,47.215,1.2,76.44875,19.2128571429,30.4685714286,21.89,40.4542857143,18.39,37.1114285714,1.5333333333,749.2,92,3,23,0.3333333333,30.2134855883,30.2134855883 -60,0,22.5,36.9,20.9725,37.5,21,37.8842857143,20.075,34.95,19.7514285714,48.3071428571,1.2,76.6788888889,19.2,30.6285714286,21.89,40.76,18.39,37.2925,1.65,749.1,92,3,23,0.45,15.4520623619,15.4520623619 -50,0,22.4214285714,36.7571428571,20.9083333333,37.5,20.9725,37.9,20.0428571429,35,19.6571428571,49.1528571429,1.23375,76.96875,19.2,30.75625,21.8757142857,41,18.39,37.4,1.7666666667,749,92,3,23,0.5666666667,22.7234486956,22.7234486956 -50,0,22.39,36.7,20.8328571429,37.4428571429,20.9214285714,37.9285714286,20,35.0225,19.5714285714,49.8257142857,1.27875,77.335,19.2,30.8328571429,21.815,41.195,18.39,37.4857142857,1.8833333333,748.9,92,3,23,0.6833333333,15.8151617274,15.8151617274 -60,0,22.39,36.815,20.79,37.4285714286,20.89,37.9,20,35.09,19.5,50.4228571429,1.23375,77.13375,19.2,30.9685714286,21.8233333333,41.3266666667,18.39,37.6057142857,2,748.8,92,3,23,0.8,2.5732942624,2.5732942624 -40,10,22.39,36.79,20.7257142857,37.4571428571,20.89,37.8371428571,20,35.1175,19.4175,50.8975,1.175,76.9625,19.2,31.05,21.79,41.3175,18.39,37.7128571429,2.1166666667,748.6666666667,91,3,24,0.7666666667,38.0740083638,38.0740083638 -50,0,22.365,36.79,20.7,37.4,20.865,37.8175,20,35.2385714286,19.3614285714,51.3142857143,1.15,77.2475,19.2,31.1571428571,21.715,41.4,18.39,37.8371428571,2.2333333333,748.5333333333,90,3,25,0.7333333333,8.086896094,8.086896094 -40,10,22.29,37.0042857143,20.6571428571,37.3528571429,20.89,38,19.9725,35.29,19.29,51.6814285714,1.1,77.23125,19.2,31.2,21.7,41.5,18.39,37.9285714286,2.35,748.4,89,3,26,0.7,36.3517424907,36.3517424907 -40,0,22.29,37.1785714286,20.5571428571,37.29,20.8471428571,37.9571428571,19.9214285714,35.3057142857,19.245,51.8975,1.21,77.7944444444,19.15,31.2675,21.7257142857,41.5257142857,18.4214285714,38.5257142857,2.4666666667,748.2666666667,88,3,27,0.6666666667,1.8695642822,1.8695642822 -60,0,22.29,37.1214285714,20.5,37.29,20.8185714286,37.9285714286,19.9175,35.33125,19.2,52.0642857143,1.3525,78.28375,19.1571428571,31.29,21.6571428571,41.4571428571,18.5,38.8214285714,2.5833333333,748.1333333333,87,3,28,0.6333333333,11.6781294113,11.6781294113 -60,10,22.2385714286,37.0128571429,20.39,37.29,20.79,38,19.89,35.3842857143,19.1428571429,52.1214285714,1.445,78.45875,19.1,31.3525,21.6,41.4666666667,18.5,39.0257142857,2.7,748,86,3,29,0.6,6.620724767,6.620724767 -50,0,22.2,36.9285714286,20.3471428571,37.29,20.79,37.9,19.89,35.4,19.1,52.33125,1.55,78.5,19.1,31.39,21.5571428571,41.6214285714,18.5,39.1528571429,2.7833333333,747.8333333333,85.3333333333,3.1666666667,30.8333333333,0.55,46.6868643649,46.6868643649 -40,0,22.1333333333,36.9,20.29,37.29,20.79,37.9,19.8614285714,35.3685714286,19.0571428571,52.4714285714,1.6375,78.4625,19.1,31.4371428571,21.5,41.8828571429,18.4685714286,39.2957142857,2.8666666667,747.6666666667,84.6666666667,3.3333333333,32.6666666667,0.5,47.1842976054,47.1842976054 -40,0,22.1,36.9,20.2,37.2,20.79,37.9,19.79,35.29,19,52.5642857143,1.6975,78.4625,19.1,31.5,21.5,42.1225,18.5,39.425,2.95,747.5,84,3.5,34.5,0.45,41.5702626808,41.5702626808 -60,0,22.1,36.8057142857,20.1571428571,37.2257142857,20.7675,37.9,19.79,35.29,18.9725,52.63125,1.83375,78.27125,19.0714285714,31.5,21.4371428571,42.4,18.5,39.5385714286,3.0333333333,747.3333333333,83.3333333333,3.6666666667,36.3333333333,0.4,10.9442241024,10.9442241024 -40,0,22,36.5771428571,20.1142857143,37.2,20.7642857143,37.9,19.79,35.29,18.9083333333,52.7,2.0475,77.975,19.1,31.6,21.4816666667,42.7116666667,18.5,39.6266666667,3.1166666667,747.1666666667,82.6666666667,3.8333333333,38.1666666667,0.35,47.6910896017,47.6910896017 -50,0,22,36.5257142857,20.0857142857,37.0928571429,20.7257142857,37.9,19.79,35.29,18.89,52.75625,2.23125,77.68,19.0625,31.5625,21.4528571429,43.08,18.5,39.7,3.2,747,82,4,40,0.3,12.7941163024,12.7941163024 -50,0,21.9214285714,36.4857142857,20,37,20.7225,37.9,19.79,35.29,18.8185714286,52.7257142857,2.44875,77.16,19.0666666667,31.5666666667,21.4214285714,43.5828571429,18.4685714286,39.7642857143,3.3333333333,746.8333333333,81.1666666667,4.1666666667,40,0.2833333333,34.5461485093,34.5461485093 -50,0,21.89,36.4285714286,19.9371428571,36.9571428571,20.79,37.9,19.79,35.29,18.79,52.7,2.6085714286,76.35,19.025,31.5625,21.39,43.7385714286,18.5,39.8528571429,3.4666666667,746.6666666667,80.3333333333,4.3333333333,40,0.2666666667,8.3630069275,8.3630069275 -60,0,21.83,36.378,19.89,36.9,20.79,37.9,19.73375,35.29,18.79,52.7,2.83125,75.35875,19,31.6,21.39,43.9714285714,18.4842857143,39.9285714286,3.6,746.5,79.5,4.5,40,0.25,36.3854113501,36.3854113501 -40,10,21.79,36.29,19.8328571429,36.9,20.79,37.9285714286,19.7,35.29,18.79,52.7514285714,2.9625,74.29375,19,31.575,21.3614285714,44.0642857143,18.4685714286,39.9714285714,3.7333333333,746.3333333333,78.6666666667,4.6666666667,40,0.2333333333,38.6213484569,38.6213484569 -50,0,21.79,36.29,19.79,36.9,20.79,37.9,19.7,35.3175,18.7257142857,52.7257142857,3.1371428571,73.1614285714,19,31.6,21.3042857143,44.3928571429,18.4842857143,40.0371428571,3.8666666667,746.1666666667,77.8333333333,4.8333333333,40,0.2166666667,18.2530823746,18.2530823746 -40,0,21.7128571429,36.29,19.7128571429,36.8685714286,20.79,37.9,19.7,35.29,18.7,52.7,3.25625,71.88375,19,31.6,21.3042857143,44.7228571429,18.5,40.09,4,746,77,5,40,0.2,37.5542103196,37.5542103196 -40,0,21.7,36.2257142857,19.7,36.8842857143,20.79,38,19.7,35.29,18.6571428571,52.6528571429,3.3725,70.25,19,31.6285714286,21.29,44.9,18.5,40.18625,4.0666666667,745.8333333333,76.3333333333,5.5,40,0.15,28.1972956145,28.1972956145 -50,0,21.6333333333,36.2,19.6571428571,36.8842857143,20.79,37.925,19.7,35.29,18.6888888889,52.6877777778,3.4625,68.93125,18.9633333333,31.6,21.29,44.8475,18.5,40.245,4.1333333333,745.6666666667,75.6666666667,6,40,0.1,45.130229753,45.130229753 -50,0,21.6,36.09,19.6,36.8842857143,20.79,38,19.6777777778,35.29,18.6,52.5675,3.59,67.6175,18.9175,31.6875,21.27,44.7255555556,18.5,40.3528571429,4.2,745.5,75,6.5,40,0.05,46.263406775,46.263406775 -50,0,21.6,36.09,19.5714285714,36.9428571429,20.815,38.03375,19.6285714286,35.29,18.6,52.5642857143,3.6725,66.70875,18.9371428571,31.6571428571,21.2385714286,44.6371428571,18.5,40.4428571429,4.2666666667,745.3333333333,74.3333333333,7,40,0,42.0595424948,42.0595424948 -50,0,21.5142857143,36.09,19.5,37,20.8185714286,38.0642857143,19.6,35.29,18.55,52.57875,3.8685714286,65.6657142857,18.9175,31.625,21.2,44.5,18.5,40.5385714286,4.3333333333,745.1666666667,73.6666666667,7.5,40,-0.05,33.9952101582,33.9952101582 -40,0,21.5,36.09,19.4842857143,37.0771428571,20.8775,38.18625,19.6,35.29,18.5714285714,52.5771428571,3.975,64.4925,18.89,31.6714285714,21.2,44.5128571429,18.5,40.59,4.4,745,73,8,40,-0.1,15.9861969645,15.9861969645 -60,10,21.445,36.045,19.39,37.09,20.89,38.2,19.6,35.29,18.5142857143,52.5,4.07875,64.3475,18.89,31.7,21.2,44.675,18.5,40.7,4.3166666667,744.75,74.3333333333,7.8333333333,43.5,0.0666666667,31.4773897175,31.4773897175 -20,0,21.39,36,19.39,37.1057142857,20.89,38.2,19.6,35.29,18.5,52.5,4.09,64.08,18.89,31.7,21.2,44.7257142857,18.5,40.7,4.2333333333,744.5,75.6666666667,7.6666666667,47,0.2333333333,35.8082374674,35.8082374674 -30,0,21.39,36.03,19.3566666667,37.2,20.9214285714,38.2,19.6,35.29,18.5,52.4857142857,4.0514285714,65.37,18.89,31.7,21.2,44.72,18.5,40.754,4.15,744.25,77,7.5,50.5,0.4,33.8234175812,33.8234175812 -30,0,21.3185714286,36.09,19.29,37.29,20.89,38.2514285714,19.6,35.29,18.4528571429,52.3671428571,3.9,67.52,18.89,31.7,21.2,44.59,18.5,40.79,4.0666666667,744,78.3333333333,7.3333333333,54,0.5666666667,33.1993502448,33.1993502448 -30,0,21.29,36.09,19.29,37.29,20.89,38.29,19.5625,35.29,18.39,52.29,3.75625,69.75,18.89,31.7385714286,21.2,44.5514285714,18.5,40.8371428571,3.9833333333,743.75,79.6666666667,7.1666666667,57.5,0.7333333333,18.4643849265,18.4643849265 -50,0,21.29,36.09,19.29,37.4,20.89,38.29,19.5142857143,35.3842857143,18.39,52.23375,3.6685714286,71.5257142857,18.89,31.79,21.1428571429,44.5,18.5,40.9,3.9,743.5,81,7,61,0.9,47.1009070403,47.1009070403 -50,0,21.275,36.1816666667,19.2,37.3685714286,20.89,38.3725,19.5,35.4,18.39,52.2,3.645,72.47125,18.89,31.79,21.1,44.5,18.5,40.9666666667,3.9166666667,743.2666666667,81.6666666667,7,57.5,1.0166666667,6.3452827279,6.3452827279 -50,0,21.2,36.09,19.2,37.4428571429,20.9057142857,38.3685714286,19.5,35.4857142857,18.39,52.10375,3.6942857143,73.1242857143,18.84,31.84,21.1,44.5,18.5,41,3.9333333333,743.0333333333,82.3333333333,7,54,1.1333333333,29.7467170516,29.7467170516 -50,0,21.2,36.1371428571,19.1833333333,37.5,20.9371428571,38.3685714286,19.5,35.53375,18.39,52.09,3.80875,73.3375,18.79,31.8328571429,21.1,44.5,18.5,41.0642857143,3.95,742.8,83,7,50.5,1.25,22.6149157272,22.6149157272 -40,10,21.1571428571,36.2,19.1,37.5385714286,20.89,38.4,19.5,35.59,18.3757142857,52.0642857143,3.98625,73.2975,18.79,31.89,21.1,44.5,18.5,41.1371428571,3.9666666667,742.5666666667,83.6666666667,7,47,1.3666666667,31.2079585623,31.2079585623 -40,0,21.1,36.2128571429,19.1,37.59,20.9528571429,38.4714285714,19.5,35.6175,18.29,52.09,4.1057142857,73.6085714286,18.79,31.93125,21.1,44.59,18.5,41.2,3.9833333333,742.3333333333,84.3333333333,7,43.5,1.4833333333,11.0875283368,11.0875283368 -50,0,21.1,36.29,19.0875,37.68625,20.89,38.5225,19.4371428571,35.6371428571,18.29,52.09,4.223,74.016,18.79,32,21.1,44.7,18.5,41.22,4,742.1,85,7,40,1.6,14.6581056993,14.6581056993 -40,0,21.05,36.30375,19.0375,37.73375,20.89,38.5257142857,19.43125,35.65875,18.29,52.0257142857,4.2144444444,74.9166666667,18.79,32,21.1,44.6528571429,18.5,41.29,3.95,741.8833333333,86,7.1666666667,43.5,1.7166666667,12.2615448665,12.2615448665 -60,0,21,36.29,19,37.79,20.89,38.59,19.39,35.7,18.29,52,4.1025,76.11875,18.79,32.0642857143,21.0714285714,44.5642857143,18.5,41.29,3.9,741.6666666667,87,7.3333333333,47,1.8333333333,27.4404262775,27.4404262775 -40,0,21,36.3214285714,19,37.9,21,38.59,19.39,35.7,18.29,51.925,4.03375,76.9575,18.79,32.09,21.0571428571,44.5642857143,18.5,41.4,3.85,741.45,88,7.5,50.5,1.95,0.8663701243,0.8663701243 -60,0,20.9371428571,36.4,18.9371428571,37.9428571429,21,38.59,19.39,35.79,18.2385714286,51.8214285714,4,77.51,18.79,32.1685714286,21.025,44.595,18.5,41.4,3.8,741.2333333333,89,7.6666666667,54,2.0666666667,41.5064558736,41.5064558736 -40,0,20.9633333333,36.45,18.9266666667,37.9666666667,21,38.65875,19.39,35.83125,18.2514285714,51.7514285714,3.925,77.95875,18.79,32.2,21.0333333333,44.6266666667,18.5,41.4142857143,3.75,741.0166666667,90,7.8333333333,57.5,2.1833333333,47.8754119016,47.8754119016 -50,0,20.89,36.5,18.89,38.0514285714,21,38.59,19.39,35.9,18.2257142857,51.7,3.8842857143,78.3685714286,18.79,32.25625,21.0285714286,44.5571428571,18.5,41.4857142857,3.7,740.8,91,8,61,2.3,46.6094318544,46.6094318544 -40,0,20.89,36.5642857143,18.89,38.09,21,38.6685714286,19.39,35.9125,18.2,51.6175,3.9,78.97125,18.79,32.29,21,44.5,18.5,41.5,3.7214285714,740.7547619048,91.0476190476,7.8571428571,60.5,2.330952381,46.724959556,46.724959556 -40,10,20.8042857143,36.59,18.89,38.1842857143,21,38.7,19.3614285714,35.9428571429,18.2,51.59,3.9,79.2975,18.7514285714,32.3371428571,20.9842857143,44.5,18.5,41.5225,3.7428571429,740.7095238095,91.0952380952,7.7142857143,60,2.3619047619,39.1532577691,39.1532577691 -50,0,20.79,36.59,18.8328571429,38.2,21,38.7,19.365,36,18.2,51.545,3.9375,79.47375,18.71125,32.4,20.9371428571,44.5385714286,18.5,41.59,3.7642857143,740.6642857143,91.1428571429,7.5714285714,59.5,2.3928571429,17.0524894958,17.0524894958 -40,0,20.79,36.6371428571,18.79,38.2,21,38.7675,19.3042857143,36.0642857143,18.2,51.5,3.99875,79.69125,18.7,32.4,20.89,44.6057142857,18.5,41.6057142857,3.7857142857,740.619047619,91.1904761905,7.4285714286,59,2.4238095238,35.12379569,35.12379569 -50,0,20.79,36.7,18.79,38.245,21,38.79,19.29,36.1175,18.1714285714,51.5,4.0514285714,79.7528571429,18.7,32.4857142857,20.89,44.8214285714,18.5,41.7257142857,3.8071428571,740.5738095238,91.2380952381,7.2857142857,58.5,2.4547619048,4.7802968416,4.7802968416 -40,0,20.7128571429,36.7771428571,18.79,38.29,21,38.8214285714,19.29,36.1685714286,18.1625,51.425,4.09,79.875,18.7,32.5,20.89,44.8633333333,18.5,41.9,3.8285714286,740.5285714286,91.2857142857,7.1428571429,58,2.4857142857,35.7360985014,35.7360985014 -20,0,20.7,37.0228571429,18.79,38.4,21,38.75625,19.29,36.2225,18.1571428571,51.3142857143,4.09,79.9571428571,18.7,32.5514285714,20.89,45.045,18.5,41.9,3.85,740.4833333333,91.3333333333,7,57.5,2.5166666667,44.3736230605,44.3736230605 -30,0,20.7,37.145,18.7,38.6266666667,20.9214285714,38.6214285714,19.29,36.2385714286,18.23375,49.0875,4.09,80,18.7,32.59,20.89,44.8857142857,18.5,41.9166666667,3.8714285714,740.4380952381,91.380952381,6.8571428571,57,2.5476190476,28.114586242,28.114586242 -20,0,20.6833333333,37.2933333333,18.7,38.9828571429,20.89,38.5257142857,19.2675,36.2675,18.3471428571,47.6542857143,4.09,80.0642857143,18.7,32.6214285714,20.8614285714,44.4114285714,18.5,41.9,3.8928571429,740.3928571429,91.4285714286,6.7142857143,56.5,2.5785714286,21.7428468401,21.7428468401 -50,0,20.6,37.3633333333,18.7,39.2416666667,20.8025,38.4125,19.2771428571,36.29,18.39,46.6714285714,4.09,80.1275,18.7,32.6842857143,20.8185714286,44.2257142857,18.5,41.9,3.9142857143,740.3476190476,91.4761904762,6.5714285714,56,2.6095238095,17.178483319,17.178483319 -50,20,20.6,37.5966666667,18.7,39.4142857143,20.79,38.4,19.245,36.345,18.4214285714,46.2,4.09,80.2971428571,18.7,32.7,20.79,43.9285714286,18.5,42.08,3.9357142857,740.3023809524,91.5238095238,6.4285714286,55.5,2.6404761905,20.7327245502,20.7327245502 -80,10,20.6,37.7257142857,18.7,39.3633333333,20.6625,37.80875,19.245,36.475,18.3275,46.725,4.1025,80.4125,18.6714285714,32.58,20.7642857143,43.5957142857,18.5333333333,42.06,3.9571428571,740.2571428571,91.5714285714,6.2857142857,55,2.6714285714,26.5042953077,26.5042953077 -50,0,20.6,37.76,18.7,39.0966666667,20.6,37.7771428571,19.29,36.59,18.29,47.2542857143,4.1614285714,80.5385714286,18.6,32.55625,20.7,43.2071428571,18.5,41.8971428571,3.9785714286,740.2119047619,91.619047619,6.1428571429,54.5,2.7023809524,36.6941946326,36.6941946326 -50,10,20.5833333333,38.06,18.7,39,20.6,37.8428571429,19.29,36.65875,18.2642857143,47.4571428571,4.1757142857,80.6785714286,18.6,32.59,20.7,42.8114285714,18.5,41.6633333333,4,740.1666666667,91.6666666667,6,54,2.7333333333,5.7279852335,5.7279852335 -50,0,20.5333333333,38.23,18.65,38.95,20.6,37.8175,19.29,36.7,18.2,47.62,4.245,80.925,18.6,32.6214285714,20.6285714286,42.4071428571,18.5166666667,41.4333333333,4.0214285714,740.1214285714,91.7142857143,5.8571428571,53.5,2.7642857143,46.1692960816,46.1692960816 -50,0,20.5,38.1633333333,18.6,38.9166666667,20.6,37.9,19.29,36.75625,18.2,47.7,4.3,81.1066666667,18.5285714286,32.6685714286,20.6,42.1242857143,18.5,41.26,4.0428571429,740.0761904762,91.7619047619,5.7142857143,53,2.7952380952,17.7401630091,17.7401630091 -40,0,20.5,38.09,18.6,38.92,20.6,37.9,19.2771428571,36.79,18.2,47.79,4.3833333333,81.19,18.5,32.71125,20.5714285714,41.9285714286,18.5,41.018,4.0642857143,740.030952381,91.8095238095,5.5714285714,52.5,2.8261904762,9.3582322472,9.3582322472 -50,10,20.4633333333,37.9966666667,18.6,38.96,20.6,38,19.2514285714,36.7771428571,18.1714285714,47.79,4.4857142857,81.37,18.5,32.7642857143,20.5285714286,41.7385714286,18.5,40.856,4.0857142857,739.9857142857,91.8571428571,5.4285714286,52,2.8571428571,37.1462781797,37.1462781797 -40,0,20.39,37.8633333333,18.6,39,20.6,38,19.2675,36.7675,18.1571428571,47.8685714286,4.6233333333,81.5633333333,18.5,32.8685714286,20.5,41.615,18.5,40.76,4.1071428571,739.9404761905,91.9047619048,5.2857142857,51.5,2.8880952381,25.1087296405,25.1087296405 -40,0,20.4214285714,37.8971428571,18.6,39,20.6,38,19.2257142857,36.7257142857,18.175,47.9,4.67,81.67,18.48625,32.9,20.5,41.4625,18.4633333333,40.6266666667,4.1285714286,739.8952380952,91.9523809524,5.1428571429,51,2.919047619,36.5692992928,36.5692992928 -50,0,20.39,37.96,18.6,39,20.6,38,19.2,36.7,18.1571428571,47.9,4.7266666667,81.69,18.4371428571,32.9428571429,20.5,41.3633333333,18.5,40.53,4.15,739.85,92,5,50.5,2.95,22.4656880833,22.4656880833 -50,0,20.39,37.9,18.5571428571,39.0257142857,20.6,38,19.2,36.7,18.125,48,4.8875,81.87375,18.43125,33.02125,20.445,41.245,18.4214285714,40.2571428571,4.1714285714,739.8047619048,92.0476190476,4.8571428571,50,2.980952381,16.3693585317,16.3693585317 -50,0,20.39,37.845,18.6,39.0642857143,20.6,38,19.2,36.7,18.1,48,4.95,81.9,18.4214285714,33.0957142857,20.4266666667,41.1266666667,18.39,40.1214285714,4.1928571429,739.7595238095,92.0952380952,4.7142857143,49.5,3.0119047619,1.3537045103,1.3537045103 -50,0,20.29,37.92,18.6,39.09,20.6,38,19.1571428571,36.7128571429,18.1,48,4.9625,81.78375,18.4725,33.2,20.39,41.2,18.39,40.02125,4.2142857143,739.7142857143,92.1428571429,4.5714285714,49,3.0428571429,28.1480552396,28.1480552396 -50,0,20.3233333333,38,18.6,39.0385714286,20.6,37.9666666667,19.1857142857,36.7,18.1,47.95,4.55,80.9,18.39,33.1266666667,20.39,41.2,18.39,39.9333333333,4.2357142857,739.669047619,92.1904761905,4.4285714286,48.5,3.0738095238,18.9441785682,18.9441785682 -50,0,20.39,38,18.6285714286,39,20.6,37.85875,19.1,36.6214285714,18.0714285714,47.8428571429,4.09625,81.06875,18.4175,33.02125,20.39,40.9714285714,18.39,39.7925,4.2571428571,739.6238095238,92.2380952381,4.2857142857,48,3.1047619048,15.1813185308,15.1813185308 -20,0,20.3328571429,38,18.6857142857,39,20.6,37.79,19.1,36.5,18.1,47.79,3.88625,81.38375,18.39,32.9,20.29,40.8528571429,18.39,39.6528571429,4.2785714286,739.5785714286,92.2857142857,4.1428571429,47.5,3.1357142857,5.0346445292,5.0346445292 -20,0,20.39,37.9285714286,18.73375,38.9,20.5714285714,37.79,19.1,36.4285714286,18.05,47.63375,3.79,81.5,18.39,32.75625,20.29,40.6214285714,18.39,39.5257142857,4.3,739.5333333333,92.3333333333,4,47,3.1666666667,6.5384502639,6.5384502639 -30,0,20.39,37.79,18.79,38.8685714286,20.5285714286,37.79,19.1,36.3685714286,18,47.4271428571,3.7675,81.5,18.39,32.6528571429,20.29,40.4714285714,18.39,39.3828571429,4.3214285714,739.4880952381,92.380952381,3.8571428571,46.5,3.1976190476,32.5050726184,32.5050726184 -30,0,20.39,37.7,18.8614285714,38.8371428571,20.5,37.83125,19.1,36.29,18,47.2642857143,3.9375,81.4875,18.39,32.59,20.2642857143,40.2957142857,18.39,39.2225,4.3428571429,739.4428571429,92.4285714286,3.7142857143,46,3.2285714286,16.3693670998,16.3693670998 -60,0,20.39,37.5642857143,18.9371428571,38.7614285714,20.5,37.79,19.1,36.2257142857,18,47.1971428571,3.96125,81.4375,18.39,32.5257142857,20.26,40.145,18.3185714286,39.0514285714,4.3642857143,739.3976190476,92.4761904762,3.5714285714,45.5,3.2595238095,16.0767618916,16.0767618916 -50,0,20.4371428571,38.2685714286,19.0285714286,38.59,20.5,37.79,19.0714285714,36.1685714286,18,47.3685714286,4.2228571429,81.51,18.39,32.5,20.2,39.9571428571,18.3471428571,38.9571428571,4.3857142857,739.3523809524,92.5238095238,3.4285714286,45,3.2904761905,0.8674749639,0.8674749639 -50,0,20.5,39.4371428571,19.1285714286,38.5385714286,20.5,37.79,19.0375,36.13125,18,47.4428571429,4.4975,81.45,18.39,32.4714285714,20.2,39.8528571429,18.3185714286,38.8214285714,4.4071428571,739.3071428571,92.5714285714,3.2857142857,44.5,3.3214285714,22.9978304356,22.9978304356 -50,0,20.5714285714,41.5257142857,19.21125,38.51125,20.55,37.83125,19.0285714286,36.1214285714,18.0142857143,47.3828571429,4.79625,81.60375,18.39,32.5,20.1714285714,39.79,18.3185714286,38.7128571429,4.4285714286,739.2619047619,92.619047619,3.1428571429,44,3.3523809524,11.6638302454,11.6638302454 -40,0,20.6,41.475,19.29,38.5385714286,20.6,37.9285714286,19.0625,36.15875,18,47.2385714286,4.99875,81.665,18.39,32.5257142857,20.1571428571,39.79,18.29,38.7,4.45,739.2166666667,92.6666666667,3,43.5,3.3833333333,48.8416027278,48.8416027278 -50,0,20.6,40.7566666667,19.34,38.5,20.6,38,19.05,36.1816666667,18,47.2,5.115,81.7175,18.39,32.59,20.1166666667,39.79,18.3185714286,38.7,4.4714285714,739.1714285714,92.7142857143,2.8571428571,43,3.4142857143,20.1285031857,20.1285031857 -50,0,20.62,41.396,19.4266666667,38.4,20.6,38,19,36.2,18,47.06,5.436,81.714,18.39,32.656,20.14,39.772,18.33,38.7,4.4928571429,739.1261904762,92.7619047619,2.7142857143,42.5,3.4452380952,27.3147230386,27.3147230386 -40,0,20.7,41.712,19.52,38.378,20.6,38.13,19.0166666667,36.215,18,46.9666666667,5.995,81.7083333333,18.39,32.775,20.1,39.7,18.29,38.7,4.5142857143,739.080952381,92.8095238095,2.5714285714,42,3.4761904762,13.4867329965,13.4867329965 -60,0,20.7,40.7,19.6,38.2771428571,20.6,38.1633333333,19.0166666667,36.23,18.0142857143,46.9,6.4,81.92375,18.39,32.79,20.1,39.7514285714,18.29,38.7,4.5357142857,739.0357142857,92.8571428571,2.4285714286,41.5,3.5071428571,14.2135658418,14.2135658418 -50,0,20.7,39.8242857143,19.6857142857,38.2385714286,20.6142857143,38.1057142857,19.025,36.29,18,46.79,6.4285714286,82.1185714286,18.39,32.8528571429,20.1,39.7128571429,18.3042857143,38.7,4.5571428571,738.9904761905,92.9047619048,2.2857142857,41,3.5380952381,27.0697314525,27.0697314525 -70,0,20.7,39.2,19.7,38.2,20.6428571429,38.1371428571,19.0285714286,36.3214285714,18.0285714286,46.79,6.66625,82.23125,18.39,32.9,20.0666666667,39.6633333333,18.3328571429,38.7,4.5785714286,738.9452380952,92.9523809524,2.1428571429,40.5,3.569047619,25.9317013784,25.9317013784 -340,0,20.775,38.7966666667,19.7,38.145,20.7,38.09,19,36.3083333333,18,46.7,6.7214285714,82.4,18.39,32.95,20.0285714286,39.6214285714,18.34,38.7,4.6,738.9,93,2,40,3.6,10.5843918398,10.5843918398 -270,0,20.79,38.5725,19.75625,38.1475,20.675,38.15875,19,36.4,18,46.6266666667,6.8777777778,82.4777777778,18.39,33,20,39.59,18.365,38.7,4.8,738.8833333333,92.3333333333,2.3333333333,40,3.6833333333,17.8236528183,17.8236528183 -100,0,20.79,38.312,19.83,38.018,20.7,38.156,19,36.4,18,46.59,7,82.48,18.39,33.072,20,39.59,18.29,38.7,5,738.8666666667,91.6666666667,2.6666666667,40,3.7666666667,45.3599647386,45.3599647386 -50,0,20.8233333333,38.3266666667,19.9083333333,37.915,20.6714285714,38.1685714286,19,36.4666666667,18,46.59,7.22125,82.53375,18.39,33.09,20,39.5514285714,18.29,38.6528571429,5.2,738.85,91,3,40,3.85,40.0232076994,40.0232076994 -50,0,20.89,38.29,20.05,37.745,20.6857142857,38.1842857143,19,36.5,18,46.5,7.5514285714,82.59,18.39,33.2,20,39.5,18.3471428571,38.7,5.4,738.8333333333,90.3333333333,3.3333333333,40,3.9333333333,25.6215329748,25.6215329748 -70,0,20.956,38.732,20.1,37.6083333333,20.7,38.2,19.0285714286,36.5771428571,18,46.4666666667,7.8257142857,82.7685714286,18.4528571429,33.2514285714,20,39.5,18.37,38.7,5.6,738.8166666667,89.6666666667,3.6666666667,40,4.0166666667,23.7056149286,23.7056149286 -60,0,20.98625,38.80875,20.2,37.5642857143,20.7128571429,38.2,19.0857142857,36.6842857143,18,46.4,8.0828571429,82.8285714286,18.4685714286,33.3685714286,20,39.5,18.39,38.7,5.8,738.8,89,4,40,4.1,10.2539777406,10.2539777406 -80,0,21.0428571429,39.1571428571,20.29,37.5642857143,20.79,38.2771428571,19.1,36.6842857143,18,46.4,8.0475,83.00875,18.5,33.3214285714,20,39.5,18.39,38.7,5.6666666667,738.8,88.5,3.8333333333,38,3.8833333333,27.2912269691,27.2912269691 -60,0,21.1,39.5542857143,20.29,37.6242857143,20.8185714286,38.3214285714,19.1,36.6214285714,18.0333333333,46.4333333333,7.4257142857,82.65,18.5714285714,33.2257142857,20,39.4571428571,18.39,38.7,5.5333333333,738.8,88,3.6666666667,36,3.6666666667,9.6519512357,9.6519512357 -40,0,21.1,39.03,20.29,37.7,20.79,38.2642857143,19.1,36.6214285714,18,46.4,7.245,82.59625,18.5714285714,33.0514285714,20,39.378,18.39,38.7,5.4,738.8,87.5,3.5,34,3.45,32.1946901269,32.1946901269 -520,0,21.1,38.7071428571,20.29,37.7,20.8042857143,38.2685714286,19.1,36.5675,18,46.4,7.4714285714,82.78,18.5285714286,32.9142857143,20,39.2675,18.39,38.7,5.2666666667,738.8,87,3.3333333333,32,3.2333333333,5.2589505445,5.2589505445 -680,0,21.1,38.9,20.29,37.56,20.9266666667,38.83,19.1,36.5,18.05,46.45,7.4625,82.445,18.5,32.8371428571,20,39.1528571429,18.4057142857,38.7128571429,5.1333333333,738.8,86.5,3.1666666667,30,3.0166666667,45.5979962251,45.5979962251 -390,0,21.0857142857,38.3428571429,20.0928571429,36.4957142857,21.20875,40.46625,19.1,36.45,18,46.345,7.5242857143,82.4957142857,18.5857142857,32.7771428571,20,39.09,18.39,38.7,5,738.8,86,3,28,2.8,7.3406775249,7.3406775249 -350,0,20.9214285714,36.1614285714,19.2685714286,35.8671428571,21.4783333333,40.5,19.1142857143,36.2828571429,18.025,46.30625,8.00875,82.72,18.7514285714,32.7257142857,20.1,39.0385714286,18.5,38.88,5.4,738.85,83.5,2.6666666667,30,2.7333333333,22.3181484034,22.3181484034 -270,0,20.77875,35.32125,18.89,35.38,21.6625,39.5375,19.2,36.0975,18.05,46.2175,8.3175,80.4975,18.9175,32.4975,20.2,38.8685714286,18.5,39.22,5.8,738.9,81,2.3333333333,32,2.6666666667,39.7873385693,39.7873385693 -260,0,20.79,36.1733333333,19.1142857143,35.9242857143,21.7257142857,38.7085714286,19.2,36,18.025,46.0225,7.87125,78.15,18.9842857143,32.3214285714,20.2257142857,38.6942857143,18.5,39.1214285714,6.2,738.95,78.5,2,34,2.6,42.086690024,42.086690024 -260,0,20.8185714286,37.8214285714,19.2642857143,37.2814285714,21.9214285714,39.0971428571,19.1714285714,36,18.0666666667,45.9666666667,7.41,77.1375,18.9214285714,32.2514285714,20.2,38.59,18.5,39.0642857143,6.6,739,76,1.6666666667,36,2.5333333333,9.9713423057,9.9713423057 -210,0,20.89,38.5828571429,19.4214285714,37.9371428571,22.1,39.3685714286,19.1714285714,36,18,45.8816666667,7.3428571429,77.9,18.9214285714,32.2,20.2,38.5,18.5,39.0771428571,7,739.05,73.5,1.3333333333,38,2.4666666667,12.0564621058,12.0564621058 -190,0,20.89,38.7642857143,19.5271428571,38.1971428571,22.23375,39.105,19.1,36,18.0333333333,45.9666666667,7.4971428571,78.1828571429,18.89,32.1842857143,20.1428571429,38.5,18.5,39.09,7.4,739.1,71,1,40,2.4,0.7564797881,0.7564797881 -90,0,20.89,38.7257142857,19.6,38.1371428571,22.3042857143,38.71,19.125,36.0675,18,46.0771428571,7.79625,78.635,18.89,32.09,20.1428571429,38.4,18.5,38.8842857143,7.4166666667,739.1166666667,69.6666666667,1,40,2.15,45.4760309309,45.4760309309 -390,0,20.89,38.7257142857,19.6,38.1214285714,22.29,38.5257142857,19.1571428571,36.09,18.0285714286,46.1214285714,8.18625,78.92,18.89,32.0642857143,20.1,38.4,18.5,38.79,7.4333333333,739.1333333333,68.3333333333,1,40,1.9,39.0269519761,39.0269519761 -270,0,20.89,38.7642857143,19.6,38.1371428571,22.3328571429,38.8828571429,19.175,36.09,18.0333333333,46.1566666667,8.11,75.5242857143,18.89,32,20.1,38.3057142857,18.5,38.79,7.45,739.15,67,1,40,1.65,11.4392809919,11.4392809919 -250,0,20.89,38.79,19.6,38.2385714286,22.445,39,19.1,36.1371428571,18.025,46.14,7.6675,74.355,18.89,32.0675,20.1285714286,38.29,18.5,38.79,7.4666666667,739.1666666667,65.6666666667,1,40,1.4,36.2653649296,36.2653649296 -240,0,20.9214285714,38.8842857143,19.65,38.3116666667,22.6285714286,38.7542857143,19.1,36.0414285714,18.0333333333,46.1566666667,7.3985714286,69.3071428571,19,31.8785714286,20.1571428571,38.2257142857,18.5,38.79,7.4833333333,739.1833333333,64.3333333333,1,40,1.15,8.8957482949,8.8957482949 -240,0,21,38.79,19.6857142857,38.2614285714,22.7771428571,38.3814285714,19.1,35.9,18,46.2,7.1057142857,68.6285714286,19,31.6285714286,20.1666666667,38.06,18.5,38.79,7.5,739.2,63,1,40,0.9,44.2195249605,44.2195249605 -210,0,20.9371428571,38.7,19.7,38.2771428571,22.8733333333,38.1783333333,19.1,35.9714285714,18.0333333333,46.23,6.7425,69.795,19,31.7,20.1571428571,38,18.5,38.79,7.2666666667,739.2166666667,65.1666666667,1,37.1666666667,1.1166666667,47.8441524203,47.8441524203 -180,0,21,38.59,19.736,38.178,22.9633333333,37.7116666667,19.1,35.7966666667,18.0666666667,46.3633333333,6.78625,65.0225,19.0571428571,31.5714285714,20.1833333333,37.9666666667,18.5,38.7614285714,7.0333333333,739.2333333333,67.3333333333,1,34.3333333333,1.3333333333,17.8185897064,17.8185897064 -100,0,21,38.59,19.79,37.985,22.9685714286,37.3971428571,19.1,35.585,18.1,46.3175,6.8,59.4228571429,19.1,31.365,20.2385714286,37.9557142857,18.5428571429,38.5514285714,6.8,739.25,69.5,1,31.5,1.55,43.0615872261,43.0615872261 -70,0,21,38.2957142857,19.79,37.5814285714,22.79,37.0285714286,19.1,35.3685714286,18.1,46.29,6.64,57.4225,19.2,31.0542857143,20.3566666667,38.09,18.5285714286,38.4428571429,6.5666666667,739.2666666667,71.6666666667,1,28.6666666667,1.7666666667,37.9380062572,37.9380062572 -90,0,21,37.9971428571,19.90875,37.20375,22.625,36.75,19.1,35.29,18.1,46.058,6.3475,60.62,19.2,30.79,20.5375,38.23375,18.575,38.2675,6.3333333333,739.2833333333,73.8333333333,1,25.8333333333,1.9833333333,8.2291236729,8.2291236729 -90,0,21,37.8685714286,19.86,37.0483333333,22.5166666667,36.645,19.1,35.29,18.1333333333,45.9333333333,5.79625,63.83625,19.2,30.79,20.71,38.29,18.6,38.215,6.1,739.3,76,1,23,2.2,26.5015355311,26.5015355311 -90,0,20.9685714286,37.78,19.6857142857,37.2642857143,22.39,36.59,19.1,35.3685714286,18.1333333333,45.73,5.20875,65.6225,19.2,30.79,20.8566666667,38.3633333333,18.6,38.18625,5.7,739.3666666667,77.8333333333,1,25.8333333333,2.1166666667,30.9524610173,30.9524610173 -90,0,20.9528571429,37.8528571429,19.525,37.41,22.3025,36.55625,19.1,35.4125,18.1,45.59,4.61,67.07125,19.2,30.89,20.95875,38.5,18.5428571429,38.09,5.3,739.4333333333,79.6666666667,1,28.6666666667,2.0333333333,0.5914309528,0.5914309528 -110,0,20.9057142857,38.0114285714,19.4371428571,37.5542857143,22.2385714286,36.4428571429,19.0571428571,35.4685714286,18.1,45.59,4.0385714286,68.6771428571,19.1666666667,30.89,21.0333333333,38.53,18.5,38.09,4.9,739.5,81.5,1,31.5,1.95,16.3795543835,16.3795543835 -90,0,20.9057142857,37.9,19.3471428571,37.7542857143,22.1142857143,36.4571428571,19.0285714286,35.4971428571,18.1,45.5,3.5966666667,70.1255555556,19.1125,30.945,21.0714285714,38.5642857143,18.5,38.09,4.5,739.5666666667,83.3333333333,1,34.3333333333,1.8666666667,42.7109963261,42.7109963261 -100,10,20.945,37.815,19.29,37.9666666667,22.0666666667,36.4666666667,19,35.5,18.1,45.5,3.2475,71.49375,19.1,31,21.1714285714,38.6371428571,18.5,38.09,4.1,739.6333333333,85.1666666667,1,37.1666666667,1.7833333333,11.1197661958,11.1197661958 -310,10,21,37.7128571429,19.29,38.15,22,36.545,19,35.5,18.1,45.4333333333,3.00875,72.49625,19.0857142857,30.9842857143,21.2385714286,38.6814285714,18.5,38.01125,3.7,739.7,87,1,40,1.7,9.2386338627,9.2386338627 -330,10,21.1,37.9975,19.29,38.2,21.9685714286,36.59,19,35.59,18.0333333333,45.3266666667,2.8044444444,73.3411111111,19.0375,31.025,21.3185714286,38.79,18.5,38,3.5,739.7333333333,87.8333333333,1,37,1.6333333333,44.7540598921,44.7540598921 -90,10,21.1714285714,39.7428571429,19.29,38.4271428571,21.89,36.6057142857,19,35.59,18.025,45.3175,2.6528571429,73.7685714286,19,31,21.29,38.7083333333,18.5,37.9,3.3,739.7666666667,88.6666666667,1,34,1.5666666667,49.588839151,49.588839151 -100,0,21.23,39.6633333333,19.29,38.9971428571,21.8471428571,36.8214285714,18.89,35.59,18.02,45.458,2.5225,74.3975,18.9633333333,31,21.29,38.5514285714,18.4842857143,37.7514285714,3.1,739.8,89.5,1,31,1.5,32.8748803353,32.8748803353 -110,10,21.29,39.315,19.29,39.174,21.79,36.9,18.89,35.6214285714,18.0333333333,45.5666666667,2.4571428571,75.2142857143,18.9371428571,31,21.29,38.59,18.4371428571,37.6242857143,2.9,739.8333333333,90.3333333333,1,28,1.4333333333,44.8370641214,44.8370641214 -100,10,21.3471428571,38.8114285714,19.29,39.35875,21.79,37.0257142857,18.89,35.6371428571,18.05,45.6675,2.4125,75.47125,18.9057142857,31.0285714286,21.39,38.59,18.4214285714,37.5257142857,2.7,739.8666666667,91.1666666667,1,25,1.3666666667,38.4627714287,38.4627714287 -100,10,21.39,38.4985714286,19.29,39.4,21.79,37.09,18.89,35.65875,18.1,45.79,2.45,76.17,18.89,31.0857142857,21.4685714286,38.6685714286,18.39,37.4571428571,2.5,739.9,92,1,22,1.3,45.0788098271,45.0788098271 -100,20,21.39,38.2633333333,19.29,39.4,21.79,37.09,18.89,35.645,18.1,45.79,2.4375,76.19375,18.89,31.1,21.5571428571,38.7,18.4057142857,37.3828571429,2.4666666667,739.9166666667,92.1666666667,1.1666666667,22,1.2833333333,9.6621355508,9.6621355508 -120,20,21.39,37.9828571429,19.29,39.3685714286,21.7128571429,37.09,18.89,35.7542857143,18.0666666667,45.76,2.30625,76.19,18.79,31,21.6,38.7,18.39,37.3057142857,2.4333333333,739.9333333333,92.3333333333,1.3333333333,22,1.2666666667,48.8310493762,48.8310493762 -120,20,21.39,37.7985714286,19.29,39.1371428571,21.7,37.09,18.9685714286,36.7814285714,18.1,45.79,2.1725,76.395,18.79,31.0571428571,21.6285714286,38.7257142857,18.39,37.2257142857,2.4,739.95,92.5,1.5,22,1.25,44.9037030921,44.9037030921 -130,20,21.39,37.5385714286,19.29,39,21.6857142857,37.0771428571,19.0714285714,37.5514285714,18.1,45.73,2.1725,76.83375,18.79,31.1,21.6857142857,38.7771428571,18.39,37.2,2.3666666667,739.9666666667,92.6666666667,1.6666666667,22,1.2333333333,29.1428318946,29.1428318946 -140,20,21.4214285714,37.3528571429,19.29,38.9,21.6,37,19.2925,37.97,18.1,45.7,2.1725,77.115,18.7642857143,31.1,21.7385714286,38.7,18.3471428571,37.09,2.3333333333,739.9833333333,92.8333333333,1.8333333333,22,1.2166666667,44.1676851362,44.1676851362 -130,20,21.5,37.29,19.29,38.9285714286,21.6,36.9857142857,19.7242857143,38.1528571429,18.1,45.645,2.09375,76.85625,18.7257142857,31.1571428571,21.79,38.6266666667,18.3328571429,37.0771428571,2.3,740,93,2,22,1.2,16.4134759922,16.4134759922 -110,10,21.5,37.245,19.29,39,21.6,36.9333333333,20.3828571429,37.7642857143,18.1333333333,45.4233333333,1.83125,76.23125,18.7,31.1285714286,21.8185714286,38.6214285714,18.3471428571,37,2.2,740.05,93,2,22.3333333333,1.1,43.8313940656,43.8313940656 -150,0,21.5,37.1685714286,19.29,39,21.6,36.9,20.5857142857,37.01,18.9085714286,66.4257142857,1.745,76.53375,18.7,31.1,21.89,38.59,18.29,37,2.1,740.1,93,2,22.6666666667,1,2.4305282277,2.4305282277 -100,0,21.5714285714,37.09,19.29,39.0385714286,21.6,36.9,20.5428571429,36.5385714286,19.5133333333,77.7166666667,1.6375,76.60375,18.7,31.1,21.89,38.5642857143,18.3185714286,36.9428571429,2,740.15,93,2,23,0.9,4.4964707922,4.4964707922 -90,0,21.6,37.09,19.29,39.09,21.6,36.8175,20.3614285714,36.0571428571,19.2385714286,68.5257142857,1.51125,76.3625,18.7,31.1,22,38.46,18.29,36.9,1.9,740.2,93,2,23.3333333333,0.8,35.9913929016,35.9913929016 -110,0,21.5714285714,37.09,19.29,39.1685714286,21.5285714286,36.8528571429,20.2771428571,35.8085714286,19.1,62.7985714286,1.23125,75.47125,18.7,31.0714285714,22,38.4,18.29,36.8685714286,1.8,740.25,93,2,23.6666666667,0.7,14.9022984784,14.9022984784 -120,0,21.6,37,19.2128571429,39.1057142857,21.4685714286,36.8685714286,20.1571428571,35.5771428571,19.0142857143,58.4814285714,1.0333333333,75.1916666667,18.6428571429,30.9371428571,22.0428571429,38.4285714286,18.29,36.79,1.7,740.3,93,2,24,0.6,11.9238902698,11.9238902698 -120,0,21.6,37,19.2,39.09,21.39,36.76,20,35.4,19,56.33,1.0625,76.01875,18.6333333333,30.9266666667,22.1,38.3816666667,18.29,36.7,1.6333333333,740.3166666667,92.8333333333,1.8333333333,23.8333333333,0.5166666667,27.3539805436,27.3539805436 -110,0,21.6,37,19.2,39.0642857143,21.39,36.7257142857,19.89,35.29,18.9685714286,54.6614285714,1.025,76.18125,18.6,30.89,22.1571428571,38.21,18.29,36.6528571429,1.5666666667,740.3333333333,92.6666666667,1.6666666667,23.6666666667,0.4333333333,45.7250086474,45.7250086474 -70,0,21.5166666667,37,19.1428571429,39.09,21.39,36.8214285714,19.8328571429,35.28,18.89,53.1,0.9375,75.97125,18.6,31.0542857143,22.215,38.16,18.29,36.71,1.5,740.35,92.5,1.5,23.5,0.35,8.9853662648,8.9853662648 -50,0,21.5,37.09,19.1,39.09,21.39,36.9666666667,19.79,35.4666666667,18.89,51.7342857143,0.9,76.2685714286,18.6,31.218,22.29,38.36,18.29,37.1933333333,1.4333333333,740.3666666667,92.3333333333,1.3333333333,23.3333333333,0.2666666667,26.2200204306,26.2200204306 -60,10,21.5,37.156,19.05,39.1966666667,21.39,37,19.7,35.59,18.815,50.55,0.9,76.19,18.6,31.39,22.218,38.652,18.29,37.4466666667,1.3666666667,740.3833333333,92.1666666667,1.1666666667,23.1666666667,0.1833333333,24.0085626137,24.0085626137 -40,0,21.5,37.2,19,39.3633333333,21.39,37.1333333333,19.7,35.73,18.8566666667,49.8666666667,0.8,76.0633333333,18.6,31.5333333333,22.1666666667,39.1566666667,18.29,37.6633333333,1.3,740.4,92,1,23,0.1,20.009895612,20.009895612 -40,0,21.39,37.23,18.89,39.53,21.39,37.29,19.6333333333,35.79,18.79,48.9233333333,0.8,76.33,18.6,31.6666666667,22.1,39.49,18.29,37.8266666667,1.1666666667,740.4166666667,92.8333333333,1,29.5,0.1,46.0108040133,46.0108040133 -50,0,21.39,37.29,18.89,39.59,21.39,37.3633333333,19.5666666667,35.9,18.79,48.39,0.8666666667,76.4666666667,18.6,31.79,21.9633333333,39.7,18.29,38.0266666667,1.0333333333,740.4333333333,93.6666666667,1,36,0.1,42.1713573858,42.1713573858 -40,0,21.39,37.4,18.8566666667,39.7,21.39,37.4333333333,19.5,35.9666666667,18.79,47.7966666667,0.8,76.4,18.6,31.79,21.89,39.76,18.29,38.23,0.9,740.45,94.5,1,42.5,0.1,16.7382790591,16.7382790591 -50,0,21.3233333333,37.4,18.79,39.7,21.39,37.5,19.4633333333,36,18.79,47.39,0.9,77.03,18.6,31.9266666667,21.79,39.86,18.29,38.3633333333,0.7666666667,740.4666666667,95.3333333333,1,49,0.1,12.8080110531,12.8080110531 -40,0,21.29,37.4,18.76,39.79,21.39,37.59,19.39,36,18.79,46.93,0.9,77.03,18.6,32,21.79,40.06,18.29,38.5666666667,0.6333333333,740.4833333333,96.1666666667,1,55.5,0.1,7.0732443011,7.0732443011 -50,0,21.23,37.3266666667,18.7,39.79,21.39,37.59,19.39,36.1266666667,18.73,46.6566666667,0.9,77.26,18.6,32.09,21.7,40.3266666667,18.29,38.7,0.5,740.5,97,1,62,0.1,49.7891176725,49.7891176725 -60,0,21.2,37.29,18.6666666667,39.8633333333,21.39,37.59,19.3233333333,36.2,18.7,46.3333333333,0.9666666667,77.4666666667,18.6,32.09,21.7,40.5266666667,18.29,38.7,0.5166666667,740.5,97,1,62,0.1166666667,32.0225578034,32.0225578034 -50,10,21.2,37.3633333333,18.6,39.8633333333,21.39,37.59,19.29,36.2,18.7,46.0666666667,1.1,77.69,18.6,32.1266666667,21.6666666667,40.86,18.3566666667,38.8333333333,0.5333333333,740.5,97,1,62,0.1333333333,19.0028155223,19.0028155223 -50,0,21.1666666667,37.4,18.5666666667,39.9,21.39,37.6266666667,19.29,36.26,18.7,45.8333333333,1.1,77.69,18.6,32.2,21.6,41.06,18.29,39.03,0.55,740.5,97,1,62,0.15,21.3863951736,21.3863951736 -40,0,21.1,37.4,18.5,39.9,21.39,37.7,19.26,36.26,18.7,45.6266666667,1.1,77.8,18.6,32.2,21.6,41.3266666667,18.3566666667,39.09,0.5666666667,740.5,97,1,62,0.1666666667,26.961483073,26.961483073 -40,0,21.1,37.4,18.5,40,21.4266666667,37.73,19.2,36.2,18.6666666667,45.4,1.1,77.8,18.6,32.2,21.6,41.5266666667,18.29,39.23,0.5833333333,740.5,97,1,62,0.1833333333,24.9229570036,24.9229570036 -50,0,21.1,37.4,18.5,39.9333333333,21.4266666667,37.73,19.1333333333,36.29,18.6666666667,45.26,1.1333333333,77.9333333333,18.6,32.2,21.5,41.8266666667,18.3566666667,39.3633333333,0.6,740.5,97,1,62,0.2,12.2672971222,12.2672971222 -40,0,21,37.29,18.39,39.79,21.39,37.79,19.2,36.29,18.6666666667,45.1333333333,1.1333333333,77.9333333333,18.5333333333,32.2,21.4266666667,42.0266666667,18.39,39.53,0.6,740.4666666667,97,1.1666666667,61.8333333333,0.2,43.8116777223,43.8116777223 -40,0,21,37.23,18.39,39.79,21.39,37.79,19.1,36.29,18.6,44.9333333333,1.0666666667,77.83,18.5333333333,32.23,21.4266666667,42.4266666667,18.3233333333,39.6633333333,0.6,740.4333333333,97,1.3333333333,61.6666666667,0.2,31.1673027114,31.1673027114 -30,0,20.9266666667,37.2,18.3566666667,39.9,21.39,37.79,19.1,36.29,18.6,44.79,0.875,77.3225,18.5333333333,32.29,21.4266666667,42.76,18.3566666667,39.73,0.6,740.4,97,1.5,61.5,0.2,27.1839431021,27.1839431021 -30,0,20.9266666667,37.2,18.29,39.9,21.39,37.79,19.0666666667,36.29,18.6,44.73,0.7,76.7266666667,18.5,32.29,21.39,43.03,18.3566666667,39.8633333333,0.6,740.3666666667,97,1.6666666667,61.3333333333,0.2,41.062961088,41.062961088 -30,10,20.89,37.2,18.29,39.9,21.39,37.8266666667,19,36.29,18.6,44.59,0.6,76.4666666667,18.5,32.29,21.39,43.09,18.3233333333,40,0.6,740.3333333333,97,1.8333333333,61.1666666667,0.2,26.8221963546,26.8221963546 -50,0,20.89,37.2,18.2225,39.9,21.365,37.9,19,36.29,18.6,44.5225,0.6,76.4666666667,18.5,32.29,21.29,43.06,18.39,40.0675,0.6,740.3,97,2,61,0.2,3.2624118379,3.2624118379 -40,0,20.84,37.2,18.2,39.9666666667,21.29,37.9,19,36.29,18.6,44.4333333333,0.5,76.53,18.5,32.29,21.29,43.0675,18.39,40.1633333333,0.5166666667,740.2833333333,97.3333333333,1.6666666667,59.8333333333,0.15,32.6236112858,32.6236112858 -50,0,20.79,37.2,18.1666666667,40,21.26,37.8633333333,18.9266666667,36.29,18.6,44.29,0.5,76.7966666667,18.5,32.29,21.23,43.09,18.39,40.23,0.4333333333,740.2666666667,97.6666666667,1.3333333333,58.6666666667,0.1,24.7067412944,24.7067412944 -40,0,20.73,37.2,18.1,40,21.2,37.79,18.9266666667,36.29,18.6,44.23,0.5333333333,77.0633333333,18.5,32.29,21.26,43.1633333333,18.39,40.3633333333,0.35,740.25,98,1,57.5,0.05,7.3858452728,7.3858452728 -50,0,20.7,37.2,18,40,21.1,37.7,18.9266666667,36.29,18.6,44.1633333333,0.6,77.19,18.5,32.29,21.2,43.2233333333,18.39,40.4333333333,0.2666666667,740.2333333333,98.3333333333,0.6666666667,56.3333333333,0,36.3813476171,36.3813476171 -60,0,20.7,37.2,18,40,21.1,37.7,18.89,36.29,18.5333333333,44.03,0.6,77.4333333333,18.5,32.29,21.2,43.36,18.39,40.5,0.1833333333,740.2166666667,98.6666666667,0.3333333333,55.1666666667,-0.05,32.5863504782,32.5863504782 -50,0,20.7,37.2,17.89,40.03,21.1,37.7,18.89,36.29,18.5,44,0.6666666667,77.7666666667,18.5,32.29,21.1333333333,43.56,18.39,40.53,0.1,740.2,99,0,54,-0.1,7.7302530059,7.7302530059 -50,0,20.6333333333,37.1266666667,17.89,40.09,21.1,37.7,18.89,36.29,18.5,43.9333333333,0.7,77.6566666667,18.5,32.29,21.1666666667,43.6266666667,18.39,40.59,0.1,740.2,99,0.1666666667,53.6666666667,-0.1,32.7209862764,32.7209862764 -50,10,20.6,37.2,17.89,40.09,21.0333333333,37.6266666667,18.8233333333,36.23,18.5,43.9,0.7,77.6566666667,18.5,32.29,21.1,43.7,18.39,40.7,0.1,740.2,99,0.3333333333,53.3333333333,-0.1,43.385588564,43.385588564 -40,0,20.6,37.2,17.89,40.03,21.0333333333,37.6266666667,18.79,36.2,18.5,43.9,0.8,77.9966666667,18.5,32.3266666667,21.1666666667,43.59,18.39,40.76,0.1,740.2,99,0.5,53,-0.1,39.4854589831,39.4854589831 -40,0,20.5666666667,37.2,17.79,40,21,37.73,18.79,36.2,18.5,43.76,0.8666666667,78.33,18.5,32.4,21.1,43.59,18.39,40.79,0.1,740.2,99,0.6666666667,52.6666666667,-0.1,19.8684365721,19.8684365721 -50,0,20.5,37.2,17.73,40,21,37.73,18.79,36.2,18.5,43.7,0.9,78.3666666667,18.4633333333,32.29,21.1,43.59,18.39,40.8633333333,0.1,740.2,99,0.8333333333,52.3333333333,-0.1,4.0811788524,4.0811788524 -40,0,20.5,37.2,17.7,40.09,20.89,37.7,18.73,36.2,18.4633333333,43.6633333333,0.9,78.3666666667,18.39,32.29,21.0333333333,43.59,18.39,40.9333333333,0.1,740.2,99,1,52,-0.1,42.5004953751,42.5004953751 -40,0,20.5,37.2,17.7,40.09,20.89,37.7,18.7,36.2,18.4633333333,43.6633333333,1,78.595,18.5,32.3266666667,21,43.5,18.39,41,0.15,740.2333333333,99,1,49.3333333333,-0.05,48.6858844757,48.6858844757 -60,0,20.39,37.09,17.6,40.09,20.89,37.6633333333,18.7,36.2,18.4266666667,43.53,1.0666666667,78.6566666667,18.5,32.4,21,43.5,18.39,41.03,0.2,740.2666666667,99,1,46.6666666667,0,34.4157402869,34.4157402869 -50,0,20.39,37.09,17.6,40.1633333333,20.89,37.6633333333,18.7,36.2,18.4266666667,43.53,1.0666666667,78.7966666667,18.39,32.29,21,43.4,18.39,41.09,0.25,740.3,99,1,44,0.05,2.173278667,2.173278667 -50,0,20.3566666667,37.1266666667,17.5666666667,40.23,20.89,37.6633333333,18.7,36.26,18.4633333333,43.56,1.23,78.9633333333,18.39,32.29,21,43.4,18.39,41.09,0.3,740.3333333333,99,1,41.3333333333,0.1,4.6220520511,4.6220520511 -40,0,20.3566666667,37.2,17.5666666667,40.29,20.89,37.59,18.7,36.23,18.39,43.5,1.29,79.09,18.39,32.3266666667,20.9266666667,43.4,18.39,41.1633333333,0.35,740.3666666667,99,1,38.6666666667,0.15,26.3298166334,26.3298166334 -40,0,20.29,37.2,17.5,40.29,20.89,37.59,18.7,36.29,18.39,43.5,1.29,79.09,18.39,32.3266666667,20.9266666667,43.3266666667,18.39,41.2,0.4,740.4,99,1,36,0.2,43.3202543994,43.3202543994 -20,0,20.29,37.2,17.5,40.4475,20.865,37.5675,18.6333333333,36.29,18.39,43.45,1.29,79.09,18.39,32.4,20.89,43.3633333333,18.39,41.2,0.4333333333,740.4166666667,98.6666666667,1,37.3333333333,0.2,10.3522818536,10.3522818536 -20,0,20.29,37.2,17.5,40.5,20.79,37.56,18.7,36.29,18.39,43.4333333333,1.39,79.09,18.39,32.4,20.89,43.29,18.39,41.26,0.4666666667,740.4333333333,98.3333333333,1,38.6666666667,0.2,17.9878358496,17.9878358496 -30,0,20.26,37.1633333333,17.5,40.5,20.79,37.59,18.6333333333,36.29,18.39,43.4,1.4633333333,79.1566666667,18.39,32.4,20.89,43.29,18.39,41.29,0.5,740.45,98,1,40,0.2,31.2795206788,31.2795206788 -50,0,20.2,37.09,17.4266666667,40.5,20.73,37.53,18.6,36.29,18.39,43.4,1.5,79.19,18.39,32.4,20.79,43.2,18.39,41.3633333333,0.5333333333,740.4666666667,97.6666666667,1,41.3333333333,0.2,47.8795786155,47.8795786155 -50,0,20.2,37.1266666667,17.39,40.5,20.7,37.59,18.6,36.29,18.29,43.4,1.5,79.19,18.39,32.4,20.8566666667,43.26,18.39,41.4,0.5666666667,740.4833333333,97.3333333333,1,42.6666666667,0.2,42.1960562118,42.1960562118 -50,0,20.2,37.2,17.39,40.5,20.7,37.59,18.6,36.29,18.29,43.4,1.6,79.19,18.39,32.4,20.79,43.2,18.39,41.4,0.6,740.5,97,1,44,0.2,10.5310651124,10.5310651124 -40,0,20.1666666667,37.2,17.3566666667,40.5,20.7,37.6266666667,18.6,36.29,18.29,43.4,1.6,79.19,18.39,32.4666666667,20.79,43.2,18.39,41.4,0.7,740.5666666667,96.8333333333,1,44.3333333333,0.2666666667,0.7633324829,0.7633324829 -50,0,20.1,37.2,17.29,40.5,20.76,37.7,18.6,36.4,18.29,43.3266666667,1.6333333333,79.2266666667,18.39,32.4,20.79,43.29,18.39,41.4666666667,0.8,740.6333333333,96.6666666667,1,44.6666666667,0.3333333333,46.1627038196,46.1627038196 -40,0,20.1,37.2,17.29,40.59,20.79,37.73,18.5333333333,36.4,18.29,43.4,1.7,79.3,18.39,32.4666666667,20.79,43.23,18.39,41.5,0.9,740.7,96.5,1,45,0.4,12.8874767805,12.8874767805 -50,0,20.1,37.2,17.29,40.59,20.79,37.79,18.5,36.4,18.29,43.4,1.8266666667,79.4333333333,18.3566666667,32.5,20.7,43.29,18.39,41.5,1,740.7666666667,96.3333333333,1,45.3333333333,0.4666666667,6.9282489945,6.9282489945 -40,0,20.1,37.29,17.29,40.6266666667,20.79,37.79,18.5,36.4,18.29,43.29,1.9,79.425,18.3566666667,32.5,20.7,43.29,18.39,41.5,1.1,740.8333333333,96.1666666667,1,45.6666666667,0.5333333333,0.8131904993,0.8131904993 -50,0,20.0333333333,37.29,17.29,40.6266666667,20.79,37.8633333333,18.5,36.4333333333,18.29,43.29,1.9,79.4,18.29,32.5,20.7,43.3266666667,18.39,41.56,1.2,740.9,96,1,46,0.6,35.8190025319,35.8190025319 -60,0,20,37.29,17.2,40.59,20.8233333333,37.9333333333,18.5,36.5,18.29,43.29,1.9,79.4,18.29,32.5,20.7,43.4666666667,18.39,41.59,1.2,740.9333333333,96.1666666667,1,44,0.6333333333,32.7099273796,32.7099273796 -50,0,20,37.29,17.2,40.59,20.89,38,18.5,36.5,18.29,43.29,1.9,79.4,18.29,32.5,20.7,43.53,18.39,41.59,1.2,740.9666666667,96.3333333333,1,42,0.6666666667,46.1445765104,46.1445765104 -40,0,20,37.29,17.2,40.59,20.89,38,18.5,36.5,18.29,43.3266666667,1.9,79.3,18.29,32.5,20.7,43.6633333333,18.39,41.59,1.2,741,96.5,1,40,0.7,33.1530174124,33.1530174124 -50,0,19.9266666667,37.29,17.2,40.6633333333,20.89,38,18.5,36.5,18.29,43.3266666667,1.9,79.3,18.29,32.56,20.7,43.7,18.39,41.59,1.2,741.0333333333,96.6666666667,1,38,0.7333333333,17.1172543312,17.1172543312 -30,0,19.89,37.3266666667,17.2,40.7,20.89,38,18.4266666667,36.5,18.29,43.29,1.9,79.3333333333,18.29,32.56,20.7,43.7,18.39,41.6266666667,1.2,741.0666666667,96.8333333333,1,36,0.7666666667,41.1554204533,41.1554204533 -50,0,19.89,37.4,17.2,40.7,20.89,38.06,18.39,36.4333333333,18.23,43.29,1.9666666667,79.4,18.29,32.53,20.6666666667,43.76,18.39,41.76,1.2,741.1,97,1,34,0.8,25.9799502674,25.9799502674 -40,0,19.89,37.4,17.2,40.7,20.9266666667,38.09,18.39,36.5,18.26,43.3633333333,2.03,79.4633333333,18.29,32.59,20.6,43.7,18.39,41.7,1.3,741.1666666667,96.8333333333,1,35.3333333333,0.8666666667,17.2422042582,17.2422042582 -40,0,19.89,37.4,17.1,40.79,20.8925,38.0475,18.39,36.5,18.2,43.3175,2.1633333333,79.59,18.29,32.59,20.6,43.7,18.4266666667,41.8266666667,1.4,741.2333333333,96.6666666667,1,36.6666666667,0.9333333333,7.5604121201,7.5604121201 -80,0,19.79,37.745,17.1,40.93,20.79,37.7,18.39,36.53,18.2,43.4,2.23,79.6233333333,18.29,32.59,20.6,43.7,18.4266666667,41.9,1.5,741.3,96.5,1,38,1,48.3505007345,48.3505007345 -30,0,19.8233333333,38.2666666667,17.1,41.2,20.79,37.6633333333,18.39,36.59,18.23,43.3333333333,2.3633333333,79.69,18.29,32.53,20.6,43.6633333333,18.39,41.76,1.6,741.3666666667,96.3333333333,1,39.3333333333,1.0666666667,42.4315569224,42.4315569224 -30,0,19.89,38.5266666667,17.1,41.2,20.73,37.53,18.39,36.7666666667,18.29,43,2.5,79.8333333333,18.2,32.26,20.6,43.3975,18.39,41.6266666667,1.7,741.4333333333,96.1666666667,1,40.6666666667,1.1333333333,44.5405484643,44.5405484643 -30,0,19.8566666667,38.3333333333,17.2,41.06,20.7,37.4666666667,18.39,36.9,18.29,42.6633333333,2.56,79.8333333333,18.2,32.2,20.5333333333,43.0666666667,18.39,41.3333333333,1.8,741.5,96,1,42,1.2,39.3572148285,39.3572148285 -40,0,19.79,38.1266666667,17.1333333333,40.9333333333,20.7,37.3266666667,18.39,37,18.29,42.4633333333,2.73,79.9333333333,18.1666666667,32.06,20.5,42.7966666667,18.39,41.0666666667,1.95,741.5166666667,95.1666666667,1,45.3333333333,1.2166666667,32.0220651804,32.0220651804 -40,0,19.79,38.06,17.2,40.9333333333,20.6,37.1633333333,18.39,37,18.29,42.26,2.79,79.9333333333,18.1,32,20.5,42.59,18.39,40.7233333333,2.1,741.5333333333,94.3333333333,1,48.6666666667,1.2333333333,12.6158648054,12.6158648054 -50,0,19.79,38,17.2,41,20.6,37.09,18.39,37.09,18.29,42.4,2.9333333333,80.03,18.1,32,20.5,42.3633333333,18.3233333333,40.53,2.25,741.55,93.5,1,52,1.25,26.2702081818,26.2702081818 -50,0,19.79,37.8633333333,17.2,40.9666666667,20.6,37.1266666667,18.39,37.03,18.26,42.9633333333,3.095,80.09,18.1,31.9266666667,20.5,42.29,18.3566666667,40.1,2.4,741.5666666667,92.6666666667,1,55.3333333333,1.2666666667,29.6156250639,29.6156250639 -60,0,19.79,37.79,17.26,40.8266666667,20.6,37.1266666667,18.39,37,18.2,43.2966666667,3.3333333333,80.1566666667,18.1,31.8566666667,20.5,42.29,18.29,39.8266666667,2.55,741.5833333333,91.8333333333,1,58.6666666667,1.2833333333,22.2681830637,22.2681830637 -60,0,19.79,37.56,17.29,40.6333333333,20.5,36.9666666667,18.39,37,18.2,43.5,3.6566666667,80.3333333333,18.1,31.79,20.5,42.43,18.29,39.76,2.7,741.6,91,1,62,1.3,48.435609939,48.435609939 -50,0,19.79,37.4333333333,17.29,40.4333333333,20.5,36.9,18.39,36.9666666667,18.2,43.79,3.93,80.4,18.1,31.76,20.5,42.56,18.29,39.6266666667,2.75,741.6666666667,91.1666666667,1.1666666667,59.8333333333,1.3833333333,19.3729085266,19.3729085266 -50,0,19.79,37.26,17.3233333333,40.1333333333,20.5,36.8633333333,18.39,36.9,18.125,43.79,4.2266666667,80.4666666667,18.1,31.7,20.5,42.4333333333,18.29,39.43,2.8,741.7333333333,91.3333333333,1.3333333333,57.6666666667,1.4666666667,23.8804955268,23.8804955268 -70,0,19.79,37.2,17.39,39.9333333333,20.5,36.79,18.39,36.9,18.1,43.8633333333,4.3666666667,80.4,18.1,31.6666666667,20.5,42.26,18.29,39.23,2.85,741.8,91.5,1.5,55.5,1.55,44.7422796744,44.7422796744 -70,0,19.79,37.1633333333,17.39,39.8633333333,20.4633333333,36.7,18.39,36.8266666667,19.06,68.7566666667,4.6233333333,80.2666666667,18.1,31.6,20.5,42,18.29,39.06,2.9,741.8666666667,91.6666666667,1.6666666667,53.3333333333,1.6333333333,8.2113575656,8.2113575656 -80,0,19.79,37.09,17.39,39.73,20.4633333333,36.76,18.39,36.79,21,84.0966666667,4.5633333333,77.7933333333,18.1,31.4633333333,20.4266666667,41.4666666667,18.29,38.86,2.95,741.9333333333,91.8333333333,1.8333333333,51.1666666667,1.7166666667,37.4318250222,37.4318250222 -90,0,19.7,36.9666666667,17.39,39.56,20.5,36.76,18.39,36.79,20.2233333333,85.4,4.2633333333,71.26,18.1,31.3233333333,20.5,42.1333333333,18.26,38.6633333333,3,742,92,2,49,1.8,41.440647922,41.440647922 -80,0,19.7,36.8266666667,17.39,39.36,20.4266666667,36.5666666667,18.29,36.545,19.63,86.4666666667,4.19,65.4666666667,18.1,31.03,20.6333333333,42.1333333333,18.26,38.59,3.15,742.0166666667,90.8333333333,2,51.5,1.7666666667,10.969910631,10.969910631 -90,0,19.7,36.6633333333,17.39,39.045,20.39,36.4,18.29,36.3633333333,19.2266666667,85.2933333333,4.6,65.2333333333,18.1,30.7225,20.76,41.8,18.2,38.19,3.3,742.0333333333,89.6666666667,2,54,1.7333333333,28.8302792236,28.8302792236 -90,0,19.7,36.53,17.39,38.8633333333,20.39,36.3725,18.3566666667,36.23,18.9975,83.6725,4.9333333333,63.9666666667,18.1,30.5333333333,20.8233333333,41.3633333333,18.2,37.93,3.45,742.05,88.5,2,56.5,1.7,6.3248724793,6.3248724793 -60,0,19.7,36.4,17.4633333333,38.8633333333,20.39,36.23,18.29,36.2,18.7633333333,80.73,5.16,66.3566666667,18.1,30.6,20.9633333333,41.23,18.2,37.73,3.6,742.0666666667,87.3333333333,2,59,1.6666666667,7.7252610005,7.7252610005 -50,0,19.7,36.3175,17.5,38.79,20.29,36.06,18.29,36.2,18.6333333333,75.8333333333,5.4333333333,67.23,18.1,30.6666666667,21.0333333333,41.06,18.2,37.59,3.75,742.0833333333,86.1666666667,2,61.5,1.6333333333,6.343773671,6.343773671 -60,0,19.7,36.29,17.5666666667,38.73,20.29,35.9333333333,18.3566666667,36.2,18.7,71.9666666667,5.9633333333,66.2266666667,18.1,30.7,21.1,41,18.2,37.53,3.9,742.1,85,2,64,1.6,25.2848154283,25.2848154283 -90,0,19.7,36.29,17.6,38.56,20.26,35.76,18.3566666667,36.2,18.7,66.0633333333,6.09,62.7666666667,18.1,30.7,21.15,40.745,18.2,37.4666666667,4.0166666667,742.1333333333,85.6666666667,1.8333333333,62.1666666667,1.8166666667,4.9549916526,4.9549916526 -80,0,19.7,36.29,17.6,38.4333333333,20.2,35.7,18.39,36.2,18.6333333333,60.0566666667,6.1233333333,61.6,18.1,30.7,21.23,40.56,18.2,37.4,4.1333333333,742.1666666667,86.3333333333,1.6666666667,60.3333333333,2.0333333333,3.2121043885,3.2121043885 -70,0,19.7,36.29,17.7,38.4666666667,20.2,35.7,18.3233333333,36.26,18.5666666667,55.8633333333,6.2175,62.67,18.1,30.76,21.3566666667,40.4333333333,18.2,37.29,4.25,742.2,87,1.5,58.5,2.25,0.005321682,0.005321682 -80,0,19.7,36.29,17.7,38.4,20.2,35.76,18.29,36.29,18.5666666667,53.6633333333,6.4333333333,62.0933333333,18.1,30.8233333333,21.39,40.3633333333,18.2,37.29,4.3666666667,742.2333333333,87.6666666667,1.3333333333,56.6666666667,2.4666666667,12.5181273674,12.5181273674 -90,0,19.7,36.29,17.73,38.3633333333,20.2,35.79,18.3566666667,36.3633333333,18.5,51.7266666667,6.7266666667,62.2,18.1,30.89,21.39,40.29,18.2,37.23,4.4833333333,742.2666666667,88.3333333333,1.1666666667,54.8333333333,2.6833333333,20.3747701715,20.3747701715 -80,0,19.7,36.29,17.79,38.29,20.2,35.8633333333,18.39,36.4,18.5,50.3933333333,7,61.5333333333,18.1,31,21.4266666667,40.29,18.2,37.29,4.6,742.3,89,1,53,2.9,11.3409460988,11.3409460988 -70,10,19.7,36.2966666667,17.79,37.9333333333,20.2,35.8333333333,18.39,36.4,18.5,49.1966666667,7.0633333333,60.8266666667,18.1,31,21.5,40.1566666667,18.2,37.29,4.7666666667,742.35,86.1666666667,1,48.1666666667,2.5666666667,12.451971753,12.451971753 -80,0,19.6333333333,35.7566666667,17.73,37.3266666667,20.0666666667,35.5,18.3566666667,36.1333333333,18.5,48.4566666667,7.33,60.1,18.1,31,21.5333333333,39.9333333333,18.2,37.29,4.9333333333,742.4,83.3333333333,1,43.3333333333,2.2333333333,24.316341884,24.316341884 -80,0,19.6,35.9266666667,17.79,37.4,20,35.4633333333,18.3566666667,36.06,18.5,47.5633333333,7.6,60.6,18.1,31,21.6,40.1333333333,18.2,37.29,5.1,742.45,80.5,1,38.5,1.9,15.2118137106,15.2118137106 -70,0,19.6,36.4,17.79,37.4666666667,20,35.6633333333,18.3566666667,35.9666666667,18.5,46.9566666667,8,62.0666666667,18.1,30.89,21.6,40.23,18.2,37.23,5.2666666667,742.5,77.6666666667,1,33.6666666667,1.5666666667,0.0738949864,0.0738949864 -80,0,19.6,36.6633333333,17.8233333333,37.6566666667,20.1,35.8266666667,18.29,35.9,18.5,46.1933333333,8.1666666667,60.9,18.1,30.8233333333,21.6666666667,40.5633333333,18.2,37.1633333333,5.4333333333,742.55,74.8333333333,1,28.8333333333,1.2333333333,46.4930302813,46.4930302813 -360,0,19.6,36.6633333333,17.89,37.8633333333,20.1,35.9,18.29,35.9,18.5,45.9333333333,8.5,61.0933333333,18.1,30.79,21.7,40.9666666667,18.2,37.03,5.6,742.6,72,1,24,0.9,37.8178246669,37.8178246669 -610,0,19.6,36.59,17.89,37.9333333333,20.1,36,18.29,35.9975,18.4633333333,45.9566666667,8.4633333333,57.23,18.1,30.73,21.7,40.9666666667,18.29,37.3266666667,5.65,742.6166666667,70.3333333333,1,26.6666666667,0.6,44.8471368407,44.8471368407 -190,0,19.6,36.59,17.89,38.2666666667,20.1,36.06,18.29,36.09,18.39,46.6966666667,8.4633333333,58.6966666667,18.1,30.7,21.73,40.7966666667,18.29,37.4666666667,5.7,742.6333333333,68.6666666667,1,29.3333333333,0.3,38.3684800239,38.3684800239 -120,0,19.6,36.73,17.945,38.895,20.1,36.2,18.3233333333,36.09,18.39,47.3,8.36,56.8633333333,18.1,30.7,21.73,40.53,18.245,37.345,5.75,742.65,67,1,32,0,16.4428925957,16.4428925957 -90,0,19.6,36.93,18,38.73,20.1,36.1266666667,18.39,36.09,18.39,47.6333333333,8.1666666667,56.6633333333,18.1,30.7,21.79,40.16,18.2,37.29,5.8,742.6666666667,65.3333333333,1,34.6666666667,-0.3,6.4202121692,6.4202121692 -90,0,19.6,36.9,18,38.73,20.1,36.1266666667,18.3566666667,36.03,18.34,47.845,7.8966666667,55.76,18.1666666667,30.6666666667,21.79,39.7666666667,18.2,37.23,5.85,742.6833333333,63.6666666667,1,37.3333333333,-0.6,15.0024303701,15.0024303701 -100,0,19.6,36.8725,18,38.59,20.1,36.06,18.29,36.09,18.29,48,7.5633333333,55.0933333333,18.1666666667,30.6,21.79,39.59,18.2,37.09,5.9,742.7,62,1,40,-0.9,23.8739441498,23.8739441498 -110,0,19.6,36.8633333333,18,38.53,20.0333333333,36,18.39,36.2666666667,18.29,48,7.2633333333,49.4666666667,18.3233333333,30.7,21.8566666667,39.7233333333,18.2,37.1633333333,6.1666666667,742.7166666667,60.5,1,38,-1.0166666667,14.4465374062,14.4465374062 -120,0,19.7,36.9,18,38.5,20,35.9666666667,18.39,36.4,18.3566666667,47.9666666667,7.2425,54.5975,18.53,30.5666666667,22.0666666667,40,18.29,37.4333333333,6.4333333333,742.7333333333,59,1,36,-1.1333333333,19.9033102486,19.9033102486 -350,0,19.76,36.9,18,38.4333333333,20.0666666667,36.0266666667,18.5,36.5,18.29,47.9,7.4,49.7233333333,18.73,30.2266666667,22.2925,39.8975,18.29,37.56,6.7,742.75,57.5,1,34,-1.25,1.1702918564,1.1702918564 -480,0,19.79,36.8633333333,18,38.4,20.1333333333,36.1933333333,18.5666666667,36.5,18.29,47.79,7.4666666667,48.1933333333,18.8566666667,30.0333333333,22.4633333333,39.6566666667,18.3233333333,37.8266666667,6.9666666667,742.7666666667,56,1,32,-1.3666666667,5.2937866421,5.2937866421 -330,0,19.79,36.79,18.0666666667,38.4,20.26,36.9933333333,18.5333333333,36.5,18.29,47.79,7.4,47.2666666667,19,29.6933333333,22.5,39.1933333333,18.39,37.9666666667,7.2333333333,742.7833333333,54.5,1,30,-1.4833333333,22.583585931,22.583585931 -450,0,19.89,37.0666666667,18.1,38.26,20.6966666667,38.4266666667,18.6,36.5,18.29,47.6633333333,7.23,45.86,19.0666666667,29.5,22.5,38.7266666667,18.39,37.9633333333,7.5,742.8,53,1,28,-1.6,22.9468802339,22.9468802339 -590,0,19.89,37.26,18.1,38.0666666667,21.03,38.9,18.6,36.5,18.23,47.53,7.09,46.9333333333,19.1,29.2266666667,22.5333333333,38.1933333333,18.4633333333,38.09,7.25,742.8333333333,55.3333333333,1.1666666667,30,-1.3,23.3041341766,23.3041341766 -340,0,19.9266666667,37.26,18.1,37.9,21.3933333333,38.9666666667,18.6,36.5,18.2,47.5,7.09,48.0333333333,19.1,29.0333333333,22.5333333333,37.86,18.39,37.8633333333,7,742.8666666667,57.6666666667,1.3333333333,32,-1,47.6230357657,47.6230357657 -210,0,20,37.0666666667,18.1,37.8266666667,21.6666666667,38.7666666667,18.6,36.4,18.2,47.36,7.1566666667,51.2933333333,19.1333333333,28.8266666667,22.5,37.5266666667,18.39,37.79,6.75,742.9,60,1.5,34,-0.7,23.9610595047,23.9610595047 -140,0,20.0333333333,36.7,18.1,37.76,21.9266666667,38.46,18.6,36.4,18.2,47.26,7.1566666667,48.89,19.2,28.6333333333,22.5,37.2666666667,18.4633333333,37.8333333333,6.5,742.9333333333,62.3333333333,1.6666666667,36,-0.4,5.0312004052,5.0312004052 -70,0,20.1,36.6266666667,18.1,37.7,22,37.9266666667,18.6,36.3633333333,18.2,47.2,6.9633333333,48.1633333333,19.1,28.39,22.39,36.8333333333,18.39,37.5666666667,6.25,742.9666666667,64.6666666667,1.8333333333,38,-0.1,22.0784632606,22.0784632606 -70,0,20.0666666667,35.7666666667,18.0666666667,37.0266666667,22.0666666667,37.1966666667,18.6,36.03,18.2,47.1633333333,6.56,49.2933333333,19.1,28.3233333333,22.3233333333,36.5666666667,18.39,37.3333333333,6,743,67,2,40,0.2,38.6052842834,38.6052842834 -70,0,20,34.5666666667,17.9266666667,36.4333333333,21.86,35.9966666667,18.5,35.1933333333,18.2,47.03,6.4333333333,51.5666666667,19.1,28.7333333333,22.29,36.3333333333,18.39,37.1266666667,5.7666666667,743.05,67.3333333333,2.1666666667,40,0.0666666667,20.38511188,20.38511188 -60,10,20,34.23,17.89,36.4333333333,21.7,35.1,18.5,34.8425,18.1333333333,46.9,6.4666666667,51.4566666667,19.1,29.1333333333,22.23,36.0666666667,18.3566666667,37.06,5.5333333333,743.1,67.6666666667,2.3333333333,40,-0.0666666667,34.3981944141,34.3981944141 -60,10,20,34.23,17.8233333333,36.4333333333,21.6333333333,34.7666666667,18.4266666667,34.6566666667,18.1333333333,46.8266666667,6.26,50.93,19,29,22.1,36.06,18.3566666667,36.9333333333,5.3,743.15,68,2.5,40,-0.2,31.4621997764,31.4621997764 -60,10,20,34.4,17.79,36.85,21.5,34.7,18.39,34.6266666667,18.1,46.6633333333,6.19,52.2233333333,18.9725,28.9175,22.0333333333,35.9333333333,18.29,36.845,5.0666666667,743.2,68.3333333333,2.6666666667,40,-0.3333333333,1.1464243522,1.1464243522 -60,10,20,34.4666666667,17.8233333333,37.2,21.39,34.59,18.39,34.76,18.1,46.5675,6.0633333333,51.63,18.89,28.89,21.9633333333,35.8633333333,18.29,36.7,4.8333333333,743.25,68.6666666667,2.8333333333,40,-0.4666666667,39.1362603172,39.1362603172 -60,10,20,34.73,18.03,37.1266666667,21.3233333333,34.59,18.39,34.8266666667,18.1,46.4333333333,5.73,52.0333333333,18.89,28.8233333333,21.89,35.79,18.29,36.6266666667,4.6,743.3,69,3,40,-0.6,3.9720963687,3.9720963687 -320,10,20,35.1675,18.1,36.9,21.26,34.6633333333,18.39,34.9666666667,18.1,46.4,5.32,52.8475,18.89,28.89,21.79,35.6633333333,18.29,36.4666666667,4.25,743.35,71.1666666667,3,40,-0.55,49.4170920108,49.4170920108 -320,10,20.0666666667,37.3666666667,18.1,37.0266666667,21.2,34.53,18.3566666667,35.1266666667,18.1,46.4,4.8966666667,53.7633333333,18.8566666667,28.79,21.79,35.53,18.29,36.3266666667,3.9,743.4,73.3333333333,3,40,-0.5,41.0325011355,41.0325011355 -270,10,20.1,38.6,18.1333333333,38.5633333333,21.0666666667,34.6933333333,18.29,35.26,18.1,46.4,4.3966666667,55.1233333333,18.79,28.79,21.7,35.5,18.29,36.26,3.55,743.45,75.5,3,40,-0.45,45.4186082003,45.4186082003 -100,20,20.1,39.4666666667,18.2,40.03,21,35.2333333333,18.29,35.5666666667,18.1,46.5266666667,3.9966666667,56.4566666667,18.79,28.79,21.7,35.96,18.29,36.2,3.2,743.5,77.6666666667,3,40,-0.4,11.3391872612,11.3391872612 -90,10,20.1333333333,39.7666666667,18.26,41.0266666667,20.89,35.89,18.29,35.8333333333,18,46.86,3.6,57.8666666667,18.79,28.8566666667,21.7,36.495,18.2,36.06,2.85,743.55,79.8333333333,3,40,-0.35,12.1123220539,12.1123220539 -80,20,20.26,39.3,18.2,40.7666666667,20.89,36.2233333333,18.29,36.3,18.0666666667,47.1933333333,3.1933333333,58.46,18.7,28.9266666667,21.6333333333,36.7666666667,18.2,36,2.5,743.6,82,3,40,-0.3,5.3888297291,5.3888297291 -90,10,20.29,38.7666666667,18.2,40.43,20.89,36.29,18.29,36.6333333333,18.0333333333,47.4633333333,2.6333333333,59.7333333333,18.7,29,21.7,36.9,18.2,35.9,2.4166666667,743.6333333333,82.6666666667,2.8333333333,40,-0.2666666667,37.9358023172,37.9358023172 -220,10,20.29,38.3,18.1333333333,40.1566666667,20.8233333333,36.29,18.29,36.8266666667,18.0333333333,47.53,2.4333333333,61.0666666667,18.7,29.0333333333,21.6666666667,36.76,18.2,35.8266666667,2.3333333333,743.6666666667,83.3333333333,2.6666666667,40,-0.2333333333,47.3392452113,47.3392452113 -80,20,20.29,38.6566666667,18.1,40.13,20.79,36.29,18.29,36.9,18,47.56,2.4633333333,62.8333333333,18.6333333333,29.0333333333,21.6,36.6266666667,18.2,35.76,2.25,743.7,84,2.5,40,-0.2,10.1983509376,10.1983509376 -90,20,20.3566666667,39.0633333333,18.1,40.8633333333,20.73,36.29,18.29,37.03,18,47.56,2.6633333333,63.7666666667,18.6,29.0333333333,21.6,36.3266666667,18.2,35.7,2.1666666667,743.7333333333,84.6666666667,2.3333333333,40,-0.1666666667,17.4249818083,17.4249818083 -90,30,20.39,39,18.1,41.0266666667,20.7,36.36,18.29,37.1633333333,18,47.7,2.6266666667,64.1,18.6,29.1,21.5333333333,36.4,18.2,35.6633333333,2.0833333333,743.7666666667,85.3333333333,2.1666666667,40,-0.1333333333,39.2008688417,39.2008688417 -90,20,20.39,38.7933333333,18.1,40.6933333333,20.6333333333,36.3,18.2,37.23,18,47.7,2.7,64.4933333333,18.5333333333,29.1333333333,21.5,36.43,18.2,35.59,2,743.8,86,2,40,-0.1,30.1943231607,30.1943231607 -70,20,20.29,38.3333333333,18,40.1333333333,20.39,36.1566666667,18.26,37.3633333333,18,47.7,2.7,65.0633333333,18.5333333333,29.2,21.5,36.29,18.1,35.59,2.2,743.85,86.1666666667,2.1666666667,37,0.1166666667,6.9727613823,6.9727613823 -70,30,20.29,38.1266666667,17.9266666667,39.9333333333,20.39,36.29,18.2,37.345,18,47.6266666667,2.7,65.5966666667,18.5,29.29,21.4633333333,36.0266666667,18.1,35.53,2.4,743.9,86.3333333333,2.3333333333,34,0.3333333333,20.9877236746,20.9877236746 -70,20,20.26,37.8333333333,17.89,39.6333333333,20.29,36.4333333333,18.2,37.29,18,47.56,2.79,66.6,18.5,29.3566666667,21.39,35.7666666667,18.1,35.5,2.6,743.95,86.5,2.5,31,0.55,1.9609608571,1.9609608571 -70,30,20.2,37.5,17.8233333333,39.3,20.29,36.56,18.2,37.29,17.9266666667,47.6333333333,2.93,67.6666666667,18.4633333333,29.39,21.39,35.6633333333,18.1,35.5,2.8,744,86.6666666667,2.6666666667,28,0.7666666667,42.7450676099,42.7450676099 -90,20,20.2,37.3333333333,17.84,39.145,20.29,36.59,18.2,37.29,18.1666666667,56.9966666667,3.1566666667,70.0966666667,18.445,29.5725,21.39,35.59,18.1,35.5,3,744.05,86.8333333333,2.8333333333,25,0.9833333333,21.6354495496,21.6354495496 -70,20,20.1333333333,37.2,17.79,39.09,20.23,36.53,18.1333333333,37.3633333333,18.6,65.8725,3.3175,71.47,18.39,29.76,21.29,35.59,18.1,35.5,3.2,744.1,87,3,22,1.2,30.1649851375,30.1649851375 -70,20,20.1,37.2,17.73,39.1633333333,20.29,36.59,18.1,37.29,18.8266666667,64.16,3.4,72.5233333333,18.39,29.96,21.29,35.6633333333,18.0333333333,35.5,3.1666666667,744.1333333333,88.3333333333,3,22.5,1.3666666667,21.0565541638,21.0565541638 -70,20,20.1,37.2,17.7,39.23,20.2,36.5,18.1,37.29,19.0666666667,59.9933333333,3.4333333333,73.43,18.39,30.1666666667,21.29,35.7,18,35.53,3.1333333333,744.1666666667,89.6666666667,3,23,1.5333333333,27.1441398887,27.1441398887 -130,20,20,37.2,17.7,39.29,20.2,36.5,18.1,37.2,19.26,60.1333333333,3.5,73.8966666667,18.39,30.36,21.23,35.7,18,35.59,3.1,744.2,91,3,23.5,1.7,5.8988564997,5.8988564997 -90,10,20,37.23,17.7,39.4,20.1,36.53,18.1,37.2,20.0333333333,81.4,3.5,74.1933333333,18.39,30.5666666667,21.2,35.7,18,35.7,3.0666666667,744.2333333333,92.3333333333,3,24,1.8666666667,39.8495517904,39.8495517904 -90,10,20,37.29,17.7,39.4666666667,20.1,36.59,18.0666666667,37.06,19.96,78.0666666667,3.56,74.5266666667,18.39,30.6333333333,21.2,35.76,18,35.76,3.0333333333,744.2666666667,93.6666666667,3,24.5,2.0333333333,31.533508352,31.533508352 -90,20,20,37.29,17.7,39.6266666667,20.1,36.59,18,37,19.6666666667,73.36,3.59,74.8666666667,18.39,30.76,21.2,35.79,18,35.9,3,744.3,95,3,25,2.2,40.2728275512,40.2728275512 -100,10,20,37.29,17.6333333333,39.7,20.1,36.6633333333,18,36.9,19.5333333333,70.76,3.59,75.06,18.3566666667,30.89,21.15,35.79,18,35.9,3.0333333333,744.3166666667,94.8333333333,3.1666666667,25,2.2166666667,38.2040634518,38.2040634518 -100,20,19.89,37.4333333333,17.6,39.7,20.1,36.7,18,36.9,19.3266666667,67.9333333333,3.6266666667,75.16,18.29,30.9633333333,21.1333333333,35.79,17.9266666667,35.9333333333,3.0666666667,744.3333333333,94.6666666667,3.3333333333,25,2.2333333333,31.4708424499,31.4708424499 -100,10,19.89,37.5,17.6,39.76,20.1,36.76,18,36.9,19.2,65.8,3.7,75.3666666667,18.29,31.0333333333,21.1,35.8266666667,18,36,3.1,744.35,94.5,3.5,25,2.25,18.3562740334,18.3562740334 -80,20,19.89,37.5666666667,17.6,39.8266666667,20.1,36.79,18,36.9,19.1,63.4,3.7,75.19,18.29,31.1,21.1,35.9,18,36,3.1333333333,744.3666666667,94.3333333333,3.6666666667,25,2.2666666667,43.1067578145,43.1067578145 -80,0,19.89,37.76,17.6,39.9,20.1,36.79,18,36.9,19.0333333333,61.5266666667,3.6266666667,75.19,18.29,31.1333333333,21.0333333333,35.86,18,36,3.1666666667,744.3833333333,94.1666666667,3.8333333333,25,2.2833333333,29.2334651807,29.2334651807 -60,0,19.79,37.9,17.6,39.9666666667,20.1,36.9,18,36.9,19,60.2666666667,3.59,75.3333333333,18.29,31.26,21.1,36.1933333333,17.9266666667,36.1933333333,3.2,744.4,94,4,25,2.3,36.2671522889,36.2671522889 -40,0,19.79,37.8266666667,17.6,39.9666666667,20.1,36.9666666667,17.9633333333,37,18.9266666667,59.7266666667,3.6633333333,75.4666666667,18.29,31.39,21.1333333333,36.6933333333,18,36.6,3.2333333333,744.4166666667,93.6666666667,4,27.5,2.2833333333,12.7939209342,12.7939209342 -50,0,19.76,37.79,17.5666666667,40,20.1,37,17.89,37,18.8566666667,59.16,3.59,75.2633333333,18.3566666667,31.4633333333,21.2,37.16,18,36.9333333333,3.2666666667,744.4333333333,93.3333333333,4,30,2.2666666667,34.5210250118,34.5210250118 -50,0,19.7,37.79,17.5,40,20.1,37,17.89,37,18.79,58.7666666667,3.59,75.2633333333,18.29,31.5,21.2,37.8,18,37.1333333333,3.3,744.45,93,4,32.5,2.25,47.7642200771,47.7642200771 -30,0,19.7,37.79,17.5,40,20.1,37.09,17.89,37.09,18.79,58.2966666667,3.59,75.3,18.29,31.5666666667,21.2,38.1933333333,18,37.3266666667,3.3333333333,744.4666666667,92.6666666667,4,35,2.2333333333,16.1725575803,16.1725575803 -30,0,19.7,37.73,17.5,40,20.1,37.09,17.89,37.09,18.73,57.89,3.59,75.4725,18.29,31.6,21.1666666667,38.6266666667,18,37.4975,3.3666666667,744.4833333333,92.3333333333,4,37.5,2.2166666667,3.6427366314,3.6427366314 -30,0,19.7,37.7,17.5,40,20.1,37.145,17.89,37.09,18.7,57.49,3.6633333333,75.73,18.365,31.675,21.1,38.8333333333,18,37.7233333333,3.4,744.5,92,4,40,2.2,41.0275281407,41.0275281407 -30,0,19.6333333333,37.7,17.39,39.9,20.1,37.2,17.89,37.09,18.6333333333,57.0966666667,3.7,75.8,18.3233333333,31.76,21.1,39.2666666667,18,37.8266666667,3.4,744.5333333333,92.1666666667,4.1666666667,37.8333333333,2.2166666667,19.9175838148,19.9175838148 -50,0,19.6,37.7,17.39,39.9666666667,20.1,37.2,17.89,37.09,18.6,56.69,3.6266666667,75.7266666667,18.3566666667,31.79,21.1,39.5266666667,18,37.9666666667,3.4,744.5666666667,92.3333333333,4.3333333333,35.6666666667,2.2333333333,17.0389450854,17.0389450854 -40,0,19.6,37.7,17.39,40,20.1,37.29,17.89,37.09,18.5666666667,56.4666666667,3.7,75.9,18.29,31.79,21.1,39.8266666667,18,38.23,3.4,744.6,92.5,4.5,33.5,2.25,8.4499292541,8.4499292541 -50,0,19.6,37.7,17.39,40,20.1,37.29,17.79,37.09,18.5,56.3266666667,3.7,75.9666666667,18.29,31.89,21.0333333333,39.8266666667,18,38.3633333333,3.4,744.6333333333,92.6666666667,4.6666666667,31.3333333333,2.2666666667,10.2186438045,10.2186438045 -50,0,19.5,37.7,17.39,40,20.1,37.29,17.79,37.09,18.5,56.2,3.6633333333,75.46,18.29,31.89,21,39.8266666667,18,38.5,3.4,744.6666666667,92.8333333333,4.8333333333,29.1666666667,2.2833333333,20.0871053385,20.0871053385 -40,0,19.5,37.7,17.3233333333,40,20.1,37.29,17.79,37.09,18.5,56.1266666667,3.59,74.6666666667,18.29,31.9266666667,21,39.9666666667,18,38.5,3.4,744.7,93,5,27,2.3,25.9139250033,25.9139250033 -50,0,19.4633333333,37.6633333333,17.29,40,20.1,37.29,17.79,37.09,18.4266666667,56,3.4666666667,74.23,18.29,31.9266666667,20.9633333333,40.36,18,38.7666666667,3.3666666667,744.7,93,5,29.1666666667,2.2833333333,11.3299645483,11.3299645483 -50,0,19.4633333333,37.6633333333,17.29,40,20.1,37.3633333333,17.79,37.09,18.4266666667,55.9333333333,3.4,73.8966666667,18.29,32,20.89,40.6933333333,18,38.9666666667,3.3333333333,744.7,93,5,31.3333333333,2.2666666667,25.4978735,25.4978735 -50,0,19.4633333333,37.6633333333,17.26,39.9666666667,20.1,37.4,17.79,37.09,18.39,55.79,3.4,74.19,18.29,32,20.89,41.145,18,39.1266666667,3.3,744.7,93,5,33.5,2.25,34.7116306075,34.7116306075 -50,0,19.39,37.59,17.2,39.9,20.1,37.4,17.79,37.09,18.39,55.73,3.4,74.2633333333,18.29,32,20.8566666667,41.4,18,39.26,3.2666666667,744.7,93,5,35.6666666667,2.2333333333,9.2691599973,9.2691599973 -40,0,19.39,37.59,17.26,39.9666666667,20.1,37.4,17.73,37.09,18.29,55.6633333333,3.4,75.0633333333,18.29,32,20.79,41.4666666667,18,39.4333333333,3.2333333333,744.7,93,5,37.8333333333,2.2166666667,11.0887064482,11.0887064482 -50,0,19.39,37.59,17.2,39.9,20.1666666667,37.4,17.7,37.09,18.29,55.53,3.4,75.9233333333,18.29,32.09,20.79,41.83,18,39.56,3.2,744.7,93,5,40,2.2,12.9085928318,12.9085928318 -40,0,19.39,37.59,17.2,39.9,20.2,37.4,17.7,37.09,18.29,55.5,3.4,76.3333333333,18.29,32.09,20.79,42.2233333333,18,39.73,3.25,744.7333333333,93,5.1666666667,40,2.2333333333,10.8330806717,10.8330806717 -50,0,19.3233333333,37.6633333333,17.2,39.9,20.1333333333,37.4,17.7,37.09,18.23,55.36,3.4,76.4,18.29,32.09,20.79,42.4333333333,18,39.8633333333,3.3,744.7666666667,93,5.3333333333,40,2.2666666667,14.4772708183,14.4772708183 -40,0,19.29,37.7,17.1666666667,39.9666666667,20.1,37.4,17.7,37.1725,18.2,55.26,3.345,76.4,18.29,32.1633333333,20.79,42.4333333333,18,40.03,3.35,744.8,93,5.5,40,2.3,3.6550882272,3.6550882272 -30,0,19.29,37.7,17.1,39.9666666667,20.1,37.4666666667,17.7,37.2,18.2,55.2,3.4,76.6233333333,18.29,32.2,20.79,42.53,18,40.09,3.4,744.8333333333,93,5.6666666667,40,2.3333333333,7.3251873604,7.3251873604 -40,0,19.29,37.7,17.1,40,20.2,37.5,17.7,37.2,18.2,55.09,3.4,76.6233333333,18.29,32.2,20.73,42.6633333333,18,40.23,3.45,744.8666666667,93,5.8333333333,40,2.3666666667,34.8509739619,34.8509739619 -20,0,19.23,37.6266666667,17.1,40,20.2,37.5,17.7,37.2,18.2,55.03,3.3633333333,77.0633333333,18.23,32.1266666667,20.76,42.73,18,40.3175,3.5,744.9,93,6,40,2.4,22.9425184894,22.9425184894 -40,0,19.2,37.7,17.1,40,20.2,37.5,17.7,37.2,18.1,54.9,3.0966666667,78.13,18.29,32.2,20.7,42.79,18,40.4,3.4166666667,744.9166666667,93,5.8333333333,38.1666666667,2.3166666667,3.3162381849,3.3162381849 -50,0,19.2,37.7,17.1,40,20.2,37.53,17.7,37.26,18.1,54.8266666667,2.8633333333,78.69,18.29,32.2,20.7,42.9633333333,18,40.4333333333,3.3333333333,744.9333333333,93,5.6666666667,36.3333333333,2.2333333333,3.7861491553,3.7861491553 -40,0,19.2,37.7,17.1,40,20.1333333333,37.59,17.6,37.09,18.1,54.745,2.79,78.69,18.2,32.2,20.7,43.1633333333,18,40.5,3.25,744.95,93,5.5,34.5,2.15,48.5012307414,48.5012307414 -50,0,19.2,37.7,17.0333333333,39.9333333333,20.2,37.59,17.6666666667,37.1633333333,18.1,54.59,2.8266666667,78.6233333333,18.2,32.2,20.7,43.1266666667,18.0666666667,40.6633333333,3.1666666667,744.9666666667,93,5.3333333333,32.6666666667,2.0666666667,4.1849069647,4.1849069647 -40,0,19.1,37.7,17.0333333333,40,20.2,37.59,17.6,37.1266666667,18.1,54.53,2.9666666667,78.69,18.2,32.2,20.7,43.26,18,40.59,3.0833333333,744.9833333333,93,5.1666666667,30.8333333333,1.9833333333,29.4829303166,29.4829303166 -50,0,19.1,37.73,17,40,20.2,37.7,17.6,37.1266666667,18.1,54.4666666667,3.03,78.6233333333,18.2,32.26,20.7,43.3266666667,18.0333333333,40.6566666667,3,745,93,5,29,1.9,3.3442955581,3.3442955581 -50,0,19.1,37.79,17,40,20.2,37.7,17.6,37.2,18.0333333333,54.3266666667,3.09,78.69,18.2,32.23,20.7,43.4,18.0333333333,40.73,2.9166666667,745.0166666667,93.3333333333,5.3333333333,30.8333333333,1.8666666667,29.3684620527,29.3684620527 -50,0,19.1,37.79,17,40,20.29,37.79,17.6,37.2,18.0333333333,54.23,3.09,78.59,18.2,32.29,20.6666666667,43.3633333333,18.0333333333,40.7666666667,2.8333333333,745.0333333333,93.6666666667,5.6666666667,32.6666666667,1.8333333333,25.4391774186,25.4391774186 -50,0,19.0333333333,37.73,16.9266666667,40,20.29,37.79,17.6,37.2,18.0333333333,54.1566666667,3.09,78.53,18.2,32.29,20.6,43.29,18.0333333333,40.8266666667,2.75,745.05,94,6,34.5,1.8,19.237811747,19.237811747 -50,0,19.1,37.79,16.9266666667,40.06,20.29,37.8266666667,17.6,37.2,18,54,3.09,78.5,18.2,32.29,20.6,43.4,18,40.9,2.6666666667,745.0666666667,94.3333333333,6.3333333333,36.3333333333,1.7666666667,26.9906717353,26.9906717353 -40,0,19.0333333333,37.79,17,40.06,20.29,37.9,17.6,37.2,18,54,3.03,78.3666666667,18.2,32.4,20.6,43.45,18,40.9666666667,2.5833333333,745.0833333333,94.6666666667,6.6666666667,38.1666666667,1.7333333333,49.7678203275,49.7678203275 -40,0,19,37.79,16.89,40.09,20.29,37.79,17.6,37.2,18,53.9,2.79,77.9333333333,18.2,32.4,20.6,43.4,18.0333333333,41.0666666667,2.5,745.1,95,7,40,1.7,22.7087376406,22.7087376406 -40,0,19,37.79,16.89,40.09,20.29,37.8633333333,17.5666666667,37.23,17.9266666667,53.8266666667,2.79,77.7266666667,18.2,32.4,20.6,43.29,18.0333333333,41.2,2.5833333333,745.1166666667,94.3333333333,7.1666666667,40,1.7,31.381756172,31.381756172 -50,0,19,37.79,16.89,40.09,20.29,37.9,17.5,37.23,17.89,53.79,2.745,77.495,18.2,32.4,20.5333333333,43.3633333333,18.0666666667,41.26,2.6666666667,745.1333333333,93.6666666667,7.3333333333,40,1.7,17.2005867935,17.2005867935 -50,0,19,37.79,16.89,40.09,20.29,37.9,17.5,37.245,17.89,53.73,2.73,77.3666666667,18.1,32.4,20.5666666667,43.29,18,41.26,2.75,745.15,93,7.5,40,1.7,31.2246511457,31.2246511457 -40,0,18.9633333333,37.79,16.89,40.09,20.29,37.9,17.5,37.26,17.89,53.6633333333,2.79,77.3,18.1666666667,32.4,20.5,43.23,18.0666666667,41.3633333333,2.8333333333,745.1666666667,92.3333333333,7.6666666667,40,1.7,49.5238424395,49.5238424395 -30,0,18.89,37.8633333333,16.89,40.09,20.29,37.9666666667,17.5,37.2,17.89,53.59,2.6633333333,77.1566666667,18.1,32.4,20.5,43.2,18.0666666667,41.3633333333,2.9166666667,745.1833333333,91.6666666667,7.8333333333,40,1.7,0.9893912124,0.9893912124 -30,0,18.89,37.9,16.8566666667,40.09,20.29,37.9333333333,17.5,37.23,17.89,53.56,2.59,76.9633333333,18.1,32.4,20.5,43.2,18,41.4,3,745.2,91,8,40,1.7,8.2115455181,8.2115455181 -30,0,18.89,37.9,16.79,40.0225,20.29,38,17.5,37.23,17.8233333333,53.4333333333,2.73,76.8666666667,18.1,32.4,20.5,43.29,18,41.475,3,745.2333333333,91,7.8333333333,40,1.7,3.3422556124,3.3422556124 -30,0,18.89,37.9,16.79,40.06,20.29,37.9333333333,17.5,37.29,17.89,53.4,2.73,76.8,18.1,32.4,20.5,43.29,18,41.5,3,745.2666666667,91,7.6666666667,40,1.7,40.760118654,40.760118654 -40,0,18.89,37.9,16.79,40.09,20.2,37.9,17.4266666667,37.23,17.815,53.3175,2.7,76.56,18.1,32.4,20.39,43.2,18,41.53,3,745.3,91,7.5,40,1.7,13.3658146835,13.3658146835 -50,0,18.79,37.9,16.79,40.09,20.2,37.9666666667,17.5,37.29,17.79,53.23,2.76,76.4333333333,18.1,32.5,20.4633333333,43.26,18,41.59,3,745.3333333333,91,7.3333333333,40,1.7,23.1725699268,23.1725699268 -50,0,18.79,37.9,16.79,40.1266666667,20.2,38,17.4266666667,37.23,17.79,53.1633333333,2.79,76.3,18.1,32.5,20.4633333333,43.26,18,41.6266666667,3,745.3666666667,91,7.1666666667,40,1.7,28.0762315495,28.0762315495 -50,0,18.79,37.9,16.79,40.2,20.2,38.06,17.5,37.29,17.79,53.09,2.79,76.2266666667,18.1,32.5,20.39,43.2,18,41.7,3,745.4,91,7,40,1.7,18.7903598533,18.7903598533 -60,0,18.79,37.9,16.7,40.2,20.2,38.09,17.4266666667,37.29,17.79,53.09,2.76,76.19,18.1,32.5,20.39,43.23,18.0333333333,41.8266666667,2.9166666667,745.45,91.3333333333,7,38,1.6666666667,8.2641851739,8.2641851739 -50,0,18.79,37.9,16.7,40.2,20.2,38.09,17.39,37.26,17.79,53.09,2.6266666667,76.0633333333,18.1,32.5,20.39,43.29,18.0333333333,41.8266666667,2.8333333333,745.5,91.6666666667,7,36,1.6333333333,4.0162057499,4.0162057499 -40,0,18.7,38,16.7,40.2,20.29,38.2,17.39,37.26,17.76,53,2.59,76,18.1,32.5,20.3566666667,43.29,18,41.79,2.75,745.55,92,7,34,1.6,10.5646456708,10.5646456708 -40,0,18.76,38,16.7,40.2,20.29,38.2,17.39,37.29,17.7,53,2.59,75.9333333333,18.1,32.5,20.29,43.29,18,41.8633333333,2.6666666667,745.6,92.3333333333,7,32,1.5666666667,21.9285367988,21.9285367988 -40,0,18.7,38,16.7,40.2,20.29,38.29,17.39,37.29,17.76,52.9,2.6266666667,75.8333333333,18.1,32.5,20.29,43.29,18,41.9,2.5833333333,745.65,92.6666666667,7,30,1.5333333333,2.9273720342,2.9273720342 -40,0,18.7,38,16.7,40.2,20.29,38.29,17.39,37.29,17.7,52.8266666667,2.7225,75.875,18.1,32.5,20.29,43.29,18,41.9,2.5,745.7,93,7,28,1.5,36.974782485,36.974782485 -50,0,18.7,38,16.7,40.2,20.29,38.29,17.39,37.29,17.73,52.76,2.8633333333,75.8666666667,18.1,32.5,20.29,43.45,18,41.9333333333,2.5666666667,745.7333333333,93.3333333333,6.6666666667,26.6666666667,1.6,31.7179557052,31.7179557052 -50,0,18.7,38,16.7,40.2,20.29,38.29,17.39,37.29,17.73,52.7,2.7233333333,75.7966666667,18.1,32.5,20.29,43.53,18,42,2.6333333333,745.7666666667,93.6666666667,6.3333333333,25.3333333333,1.7,3.9922203403,3.9922203403 -50,0,18.6666666667,38.06,16.7,40.2,20.29,38.29,17.39,37.29,17.7,52.6633333333,2.7233333333,75.59,18.0333333333,32.5,20.29,43.59,18,42,2.7,745.8,94,6,24,1.8,16.4017620031,16.4017620031 -50,0,18.6666666667,38.06,16.7,40.2,20.29,38.29,17.34,37.29,17.7,52.59,2.9,75.6566666667,18.0666666667,32.56,20.29,43.76,18,42,2.7666666667,745.8333333333,94.3333333333,5.6666666667,22.6666666667,1.9,9.3532548053,9.3532548053 -20,0,18.6,38.03,16.6666666667,40.26,20.29,38.29,17.29,37.3266666667,17.7,52.56,2.9666666667,75.53,18,32.5,20.29,43.7,18.0666666667,42,2.8333333333,745.8666666667,94.6666666667,5.3333333333,21.3333333333,2,3.8506753976,3.8506753976 -20,0,18.6,38.1633333333,16.6,40.1266666667,20.29,38.29,17.29,37.4,17.7,52.5,3.03,75.4666666667,18,32.5,20.29,43.76,18.0666666667,42.06,2.9,745.9,95,5,20,2.1,27.3809391423,27.3809391423 -30,0,18.6,38.36,16.6333333333,40.53,20.26,38.0633333333,17.29,37.4,17.6666666667,52.4666666667,3.1633333333,75.4,18,32.56,20.29,43.8333333333,18,42.09,2.9,746,95,5.1666666667,20,2.1,14.8178886739,14.8178886739 -40,0,18.6,38.56,16.7,41.065,20.125,37.7225,17.29,37.4,17.6,52.3266666667,3.2,75.3666666667,18,32.59,20.29,44,18.025,42.045,2.9,746.1,95,5.3333333333,20,2.1,41.1315226811,41.1315226811 -60,0,18.6,38.79,16.7,41.3633333333,20.1,37.7,17.3933333333,37.7266666667,17.6,52.1933333333,3.26,75.3666666667,18,32.5,20.29,43.86,18.0333333333,42.03,2.9,746.2,95,5.5,20,2.1,21.9836760196,21.9836760196 -70,10,18.6,38.93,16.7,41.4,20,37.59,17.7933333333,38.1333333333,17.6,51.725,3.26,75.3666666667,18,32.5,20.23,43.4666666667,18,41.8333333333,2.9,746.3,95,5.6666666667,20,2.1,12.4074369669,12.4074369669 -90,0,18.7,39.2,16.76,41.4,20,37.59,18.1966666667,38.29,17.6,51.3,3.1266666667,75.3,17.89,32.4666666667,20.23,43.2666666667,18,41.5666666667,2.9,746.4,95,5.8333333333,20,2.1,8.5440363851,8.5440363851 -80,0,18.7,39.26,16.79,41.1633333333,20,37.5,18.4633333333,38.1566666667,17.6,50.93,3.09,75.2633333333,17.89,32.4,20.2,43.09,18,41.2233333333,2.9,746.5,95,6,20,2.1,22.4257300841,22.4257300841 -50,0,18.7,39.55,16.79,41.1633333333,19.9266666667,37.5,18.5666666667,37.7233333333,17.6,50.5966666667,3.09,75.19,17.89,32.4,20.2,43.03,18,41.03,2.8666666667,746.55,95,6,20.3333333333,2.0666666667,2.5170866051,2.5170866051 -50,0,18.79,39.56,16.89,41.29,19.89,37.5,18.5,37.53,17.6,50.26,2.8333333333,75.1566666667,17.89,32.3266666667,20.2,43,18,40.7233333333,2.8333333333,746.6,95,6,20.6666666667,2.0333333333,27.4951287662,27.4951287662 -40,0,18.8566666667,39.5,16.89,41.23,19.89,37.5,18.4633333333,37.43,17.6,50.1,2.5666666667,75.03,17.8566666667,32.2233333333,20.2,43,18,40.4633333333,2.8,746.65,95,6,21,2,45.8983370685,45.8983370685 -50,10,18.9266666667,39.4,17,41.2,19.89,37.4333333333,18.39,37.23,17.6,49.82,2.2966666667,75,17.8566666667,32.09,20.23,42.9,17.9633333333,40.1333333333,2.7666666667,746.7,95,6,21.3333333333,1.9666666667,20.821376727,20.821376727 -60,0,19,39.3266666667,17.0666666667,41.2,19.89,37.4333333333,18.4266666667,37.4266666667,17.6,49.6266666667,2.045,74.9,17.79,31.9633333333,20.29,42.8266666667,17.89,39.8,2.7333333333,746.75,95,6,21.6666666667,1.9333333333,23.7617578474,23.7617578474 -80,0,19,39.06,17.2,41.23,19.89,37.4,18.6933333333,37.76,17.5333333333,49.43,2.2233333333,74.8666666667,17.79,31.89,20.26,42.6333333333,18,39.76,2.7,746.8,95,6,22,1.9,40.4112883029,40.4112883029 -100,0,19,38.9333333333,17.26,41.29,19.89,37.4,19.3333333333,37.76,17.5333333333,49.29,2.53,74.8,17.79,31.89,20.2,42.56,17.9266666667,39.6266666667,2.8166666667,746.8,94.6666666667,6,25,1.9833333333,20.6168425968,20.6168425968 -80,0,19.1,39,17.4266666667,41.2,19.89,37.4,19.7933333333,37.6266666667,17.5,49.1633333333,2.7233333333,74.8666666667,17.79,31.89,20.29,42.495,17.89,39.3633333333,2.9333333333,746.8,94.3333333333,6,28,2.0666666667,47.0231993473,47.0231993473 -60,0,19.1,38.9333333333,17.5,41.0666666667,19.89,37.4,20.3933333333,37.5266666667,17.5,49.03,3.03,74.9633333333,17.79,31.89,20.29,42.2233333333,17.89,39.23,3.05,746.8,94,6,31,2.15,21.7780785286,21.7780785286 -60,0,19.1333333333,39,17.5333333333,40.76,19.89,37.4,20.795,37.175,17.5,48.8633333333,3.1633333333,75.03,17.79,31.9633333333,20.29,41.9633333333,17.89,39.1333333333,3.1666666667,746.8,93.6666666667,6,34,2.2333333333,29.3179392349,29.3179392349 -70,0,19.2,39,17.6,40.76,19.89,37.4,21.1333333333,36.6933333333,17.5,48.73,3.3266666667,75.09,17.79,32.09,20.4266666667,41.79,17.89,39,3.2833333333,746.8,93.3333333333,6,37,2.3166666667,31.5941621084,31.5941621084 -70,0,19.3233333333,39.06,17.73,40.93,19.89,37.4333333333,21.0666666667,36.53,17.5,48.56,3.4666666667,75.1566666667,17.79,32.1633333333,20.5,41.73,17.89,39,3.4,746.8,93,6,40,2.4,32.8842772404,32.8842772404 -90,20,19.39,39.06,17.8566666667,40.79,19.8233333333,37.4333333333,20.86,36.59,17.5,48.4333333333,3.6266666667,75.19,17.79,32.2,20.5,41.49,17.89,38.9333333333,3.5333333333,746.8333333333,93,6.1666666667,40,2.5166666667,43.0151011678,43.0151011678 -90,30,19.4266666667,39.09,17.9266666667,40.5266666667,19.79,37.4333333333,20.7,36.6266666667,17.5,48.3633333333,3.7,75.19,17.79,32.26,20.5,41.29,17.89,38.79,3.6666666667,746.8666666667,93,6.3333333333,40,2.6333333333,19.9061719701,19.9061719701 -90,20,19.5,39.03,18.025,40.345,19.79,37.5,20.6333333333,36.7,17.5,48.29,3.7,75.1566666667,17.79,32.29,20.6,41.1633333333,17.89,38.7,3.8,746.9,93,6.5,40,2.75,42.4270164222,42.4270164222 -100,20,19.5,38.9666666667,18.1666666667,40.4,19.79,37.5,20.5,36.7,17.5,48.1633333333,3.7,75.03,17.79,32.29,20.6666666667,41.1633333333,17.8233333333,38.5666666667,3.9333333333,746.9333333333,93,6.6666666667,40,2.8666666667,40.5999146285,40.5999146285 -90,20,19.5666666667,38.8266666667,18.23,40.29,19.79,37.5,20.4266666667,36.7,17.5,48.0675,3.2333333333,75.09,17.79,32.29,20.7,41.06,17.8233333333,38.5,4.0666666667,746.9666666667,93,6.8333333333,40,2.9833333333,18.0941682542,18.0941682542 -80,20,19.6,38.79,18.3566666667,40.29,19.79,37.5,20.3566666667,36.56,17.5,48,2.5666666667,75.09,17.79,32.2,20.7,40.9333333333,17.89,38.5,4.2,747,93,7,40,3.1,35.5879134033,35.5879134033 -80,30,19.6,38.73,18.39,39.93,19.79,37.5,20.29,36.5,17.5,47.8633333333,2.5666666667,75,17.79,32.2,20.79,40.79,17.8233333333,38.5,4.3333333333,746.9833333333,92.5,6.8333333333,40,3.15,42.9449030547,42.9449030547 -80,20,19.6,38.59,18.4633333333,39.73,19.79,37.5,20.2,36.4,17.5,47.79,2.9,74.9333333333,17.79,32.2,20.79,40.73,17.8233333333,38.4333333333,4.4666666667,746.9666666667,92,6.6666666667,40,3.2,28.6062021158,28.6062021158 -90,0,19.6,38.86,18.5,39.5266666667,19.79,37.5,20.2,36.4666666667,17.5,47.7,3.2,75,17.79,32.2,20.8233333333,40.8266666667,17.79,38.26,4.6,746.95,91.5,6.5,40,3.25,20.737897465,20.737897465 -80,0,19.6666666667,39.06,18.5,39.3266666667,19.79,37.5,20.1,36.4666666667,17.5,47.6266666667,3.36,75.03,17.7,32.2,20.89,40.9,17.79,38.2,4.7333333333,746.9333333333,91,6.3333333333,40,3.3,46.3105255854,46.3105255854 -80,0,19.73,39.0266666667,18.6333333333,39.2,19.8233333333,37.5666666667,20.0333333333,36.2666666667,17.5,47.5,3.56,75.09,17.76,32.26,21,40.9,17.79,38.2,4.8666666667,746.9166666667,90.5,6.1666666667,40,3.35,28.641012765,28.641012765 -80,0,19.8566666667,38.8266666667,18.76,39.1266666667,19.89,37.7,19.89,36.2,17.5,47.5,3.7,75.1566666667,17.79,32.29,21,41.1,17.79,38.1266666667,5,746.9,90,6,40,3.4,32.2750639287,32.2750639287 -60,0,20.0333333333,38.76,18.9266666667,39.06,19.89,37.7,19.8233333333,36.0666666667,17.5,47.5,3.9,75.1566666667,17.79,32.29,21,41.3266666667,17.79,38.09,4.7833333333,746.95,90.1666666667,6,37,3.2333333333,41.4544048021,41.4544048021 -50,0,20.1666666667,38.5666666667,19.0666666667,38.9333333333,19.89,37.7,19.7,36,17.5,47.5,4,75.19,17.79,32.4,21.0666666667,41.4666666667,17.79,38.03,4.5666666667,747,90.3333333333,6,34,3.0666666667,17.3201330239,17.3201330239 -50,0,20.29,38.4666666667,19.2,38.76,19.89,37.7,19.6333333333,35.9333333333,17.5,47.3633333333,3.7266666667,75.19,17.79,32.4,21,40.99,17.79,37.9666666667,4.35,747.05,90.5,6,31,2.9,43.0359013379,43.0359013379 -50,0,20.3566666667,38.3266666667,19.26,38.7,19.89,37.7,19.5666666667,35.8633333333,17.5666666667,47.29,2.7233333333,74.9666666667,17.79,32.3633333333,20.9725,40.3975,17.79,37.9,4.1333333333,747.1,90.6666666667,6,28,2.7333333333,15.8246298786,15.8246298786 -70,0,20.39,38.1633333333,19.29,38.56,19.8566666667,37.6633333333,19.4725,35.74,17.5,47.29,2.59,74.8333333333,17.79,32.23,20.89,39.8,17.79,37.8633333333,3.9166666667,747.15,90.8333333333,6,25,2.5666666667,3.3733209013,3.3733209013 -70,0,20.4633333333,38.09,19.3566666667,38.4333333333,19.79,37.59,19.3233333333,35.59,17.5,47.23,2.9333333333,74.8666666667,17.79,32.2,20.89,39.43,17.79,37.73,3.7,747.2,91,6,22,2.4,21.7630787753,21.7630787753 -80,0,20.5333333333,37.9666666667,19.5,38.29,19.79,37.59,19.3566666667,35.7,17.5,47.1633333333,3.1333333333,74.8,17.79,32.2,20.89,39.1566666667,17.79,37.6633333333,3.5833333333,747.2333333333,91.1666666667,5.6666666667,25,2.3,12.9904756555,12.9904756555 -70,0,20.6,37.8266666667,19.5,38.23,19.79,37.6633333333,19.29,35.76,17.5,47.09,3.4,74.9,17.73,32.2,20.89,39.06,17.79,37.59,3.4666666667,747.2666666667,91.3333333333,5.3333333333,28,2.2,21.2521159556,21.2521159556 -90,0,20.6,37.7,19.5666666667,38.09,19.79,37.59,19.2,35.7,17.5,47.06,3.0666666667,74.76,17.73,32.2,20.89,38.86,17.79,37.59,3.35,747.3,91.5,5,31,2.1,46.1734389188,46.1734389188 -80,10,20.6,37.6266666667,19.525,38.0225,19.79,37.59,19.2,35.76,17.5,47,2.29,74.5,17.79,32.145,20.8233333333,38.86,17.79,37.5,3.2333333333,747.3333333333,91.6666666667,4.6666666667,34,2,28.5979277804,28.5979277804 -70,0,20.6,38.2666666667,19.5333333333,37.9333333333,19.8566666667,37.6633333333,19.1666666667,35.86,17.5,46.9,2.3633333333,74.56,17.79,32,20.9633333333,39,17.79,37.4333333333,3.1166666667,747.3666666667,91.8333333333,4.3333333333,37,1.9,17.4613221432,17.4613221432 -70,0,20.6,37.7266666667,19.5,37.76,19.79,37.5,19.1,36.1333333333,17.5666666667,46.8633333333,2.6933333333,74.76,17.79,32,21,39.09,17.79,37.3633333333,3,747.4,92,4,40,1.8,39.7822907544,39.7822907544 -80,0,20.6,37.3633333333,19.5,37.6266666667,19.79,37.5,19.1,36.36,17.5,46.79,3.0266666667,74.9666666667,17.79,31.9633333333,21.0666666667,39.2233333333,17.79,37.3633333333,2.8666666667,747.4,92.1666666667,4,43.5,1.6833333333,23.5883855144,23.5883855144 -70,0,20.6,37.23,19.4633333333,37.5,19.89,37.5,19.1,36.56,17.5333333333,46.6633333333,3.19,75.045,17.79,31.9633333333,21.1333333333,39.3266666667,17.79,37.3633333333,2.7333333333,747.4,92.3333333333,4,47,1.5666666667,32.668145874,32.668145874 -70,0,20.6,37.09,19.39,37.5,19.89,37.5,19.1,36.7666666667,17.6,46.6633333333,3.6566666667,75.16,17.86,32.03,21.2,39.6,17.79,37.3633333333,2.6,747.4,92.5,4,50.5,1.45,23.6214721459,23.6214721459 -80,0,20.5666666667,37.09,19.39,37.5,19.89,37.5,19.1,36.9666666667,17.6,46.7,3.73,75.3,18,32.09,21.3233333333,40,17.79,37.5,2.4666666667,747.4,92.6666666667,4,54,1.3333333333,38.4960231255,38.4960231255 -70,0,20.5,37.09,19.3233333333,37.56,19.89,37.4333333333,19.1,37.03,17.5333333333,46.7,3.7666666667,75.5,18,32.1266666667,21.39,40.06,17.79,37.56,2.3333333333,747.4,92.8333333333,4,57.5,1.2166666667,23.0066981982,23.0066981982 -70,0,20.5,37,19.29,37.59,20,37.5,19.1,37.1633333333,17.6,46.59,4.0933333333,75.5,18.0666666667,32.26,21.4266666667,40.36,17.79,37.59,2.2,747.4,93,4,61,1.1,19.6572717512,19.6572717512 -50,0,20.5,37,19.29,37.59,20,37.4333333333,19.1,37.2,17.6,46.53,4.4633333333,75.5,18.2,32.1333333333,21.5666666667,40.4333333333,17.79,37.59,2.3333333333,747.4,92.6666666667,3.6666666667,57.5,1.2,31.5472517046,31.5472517046 -50,0,20.5,37.03,19.2,37.5,20,37.4,19.1,37.2,17.6,46.4,4.53,75.4333333333,18.2,32,21.7,40.4666666667,17.8566666667,37.6633333333,2.4666666667,747.4,92.3333333333,3.3333333333,54,1.3,23.7722122809,23.7722122809 -50,0,20.5,37.09,19.2,37.5,20,37.4,19.1,37.1633333333,17.6,46.4,4.6233333333,75.43,18.2,31.89,21.7,40.4,17.79,37.59,2.6,747.4,92,3,50.5,1.4,4.6319571906,4.6319571906 -100,0,20.39,37,19.1666666667,37.5,20,37.3633333333,19.1,37.09,17.6,46.3266666667,4.6233333333,75.83,18.2,32.0233333333,21.7,39.6233333333,17.89,37.59,2.7333333333,747.4,91.6666666667,2.6666666667,47,1.5,40.1090230094,40.1090230094 -140,0,20.39,37.06,19.1,37.6333333333,20,37.29,19,36.9666666667,17.6,46.4,4.4333333333,76.03,18.23,32.09,21.6333333333,39.0966666667,17.89,37.59,2.8666666667,747.4,91.3333333333,2.3333333333,43.5,1.6,39.1155735706,39.1155735706 -510,0,20.3566666667,37.3,19.0666666667,37.7233333333,20,37.29,19,37.07,17.6,46.29,4.16,76.1566666667,18.29,32.03,21.65,39,17.79,37.5,3,747.4,91,2,40,1.7,5.67397821,5.67397821 -370,10,20.29,39.0266666667,19,37.6633333333,20,37.29,19,37.26,17.6,46.1566666667,3.93,76.3666666667,18.23,31.79,21.7,39,17.8566666667,37.5,2.95,747.45,90.8333333333,1.8333333333,40,1.6166666667,10.7806274667,10.7806274667 -330,0,20.29,39.9,19,38.73,20,37.59,19,37.26,17.6,46.09,3.6566666667,76.7666666667,18.23,31.73,21.7,39,17.8566666667,37.3633333333,2.9,747.5,90.6666666667,1.6666666667,40,1.5333333333,42.7452175412,42.7452175412 -250,0,20.29,39.5666666667,18.9266666667,38.79,20,37.6633333333,19,37.2,17.6,46.1633333333,3.2233333333,77.03,18.2,31.6,21.79,38.9,17.79,37.29,2.85,747.55,90.5,1.5,40,1.45,13.9314890956,13.9314890956 -440,0,20.29,39.6333333333,18.89,39.03,19.89,37.79,18.89,37.09,17.6,46.2,3.03,77.09,18.2,31.4975,21.79,38.9,17.79,37.2,2.8,747.6,90.3333333333,1.3333333333,40,1.3666666667,49.5604959899,49.5604959899 -400,0,20.29,40.3,18.815,39.2475,19.89,37.8266666667,18.89,37.09,17.6,46.26,2.8633333333,77.19,18.2,31.39,21.79,38.9,17.79,37.1633333333,2.75,747.65,90.1666666667,1.1666666667,40,1.2833333333,14.6358288242,14.6358288242 -340,10,20.29,41.0266666667,18.79,39.6933333333,19.89,37.9666666667,18.89,37.23,17.55,46.29,2.73,77.2633333333,18.1,31.29,21.8566666667,38.9666666667,17.79,37.09,2.7,747.7,90,1,40,1.2,17.2243571607,17.2243571607 -90,10,20.29,42.9666666667,18.79,41.76,19.89,38.23,18.89,37.3633333333,17.6,46.36,2.2,77.35,18.1,31.29,21.79,38.7233333333,17.76,37,2.55,747.7333333333,90.8333333333,1,37.8333333333,1.1666666667,38.8556424878,38.8556424878 -90,10,20.39,46.06,18.79,42.9,19.9633333333,38.43,18.8566666667,37.83,17.6,46.6933333333,1.7266666667,77.5,18.1,31.29,21.73,38.39,17.7,36.9333333333,2.4,747.7666666667,91.6666666667,1,35.6666666667,1.1333333333,41.9653764577,41.9653764577 -160,10,20.39,44.3933333333,18.7,42.9,20,38.86,18.79,38.2966666667,17.6,47.1566666667,1.6,77.5,18.1,31.23,21.7,38.3266666667,17.76,36.8633333333,2.25,747.8,92.5,1,33.5,1.1,26.2764042243,26.2764042243 -340,0,20.39,43.86,18.7,42.5,20.0666666667,39.1333333333,18.79,38.53,17.6,47.3633333333,1.4633333333,77.6233333333,18.1,31.2,21.76,38.3266666667,17.7,36.79,2.1,747.8333333333,93.3333333333,1,31.3333333333,1.0666666667,41.6173051693,41.6173051693 -240,10,20.315,42.75,18.6666666667,41.96,20.1,39.1633333333,18.79,38.59,17.6,47.5,1.3233333333,77.69,18.1,31.2,21.8233333333,38.29,17.7,36.7,1.95,747.8666666667,94.1666666667,1,29.1666666667,1.0333333333,27.5500632357,27.5500632357 -420,10,20.29,41.7333333333,18.6,41.4266666667,20.1,39.3633333333,18.79,38.4666666667,17.9333333333,60.2266666667,1,77.83,18,31.1,21.9633333333,38.29,17.7,36.7,1.8,747.9,95,1,27,1,26.9852971425,26.9852971425 -130,10,20.29,41.1333333333,18.5,40.99,20.2,39.4,18.79,38.3266666667,18.1,68.4633333333,0.7333333333,77.69,18,31.0333333333,22,38.2,17.7,36.59,1.6833333333,747.9166666667,95.5,1,26.1666666667,0.9666666667,36.3804949331,36.3804949331 -350,10,20.23,40.8,18.5,40.6566666667,20.2,39.5266666667,18.79,38.1333333333,18.0333333333,68.59,0.6333333333,77.5266666667,18,30.9633333333,22,38.2,17.7,36.59,1.5666666667,747.9333333333,96,1,25.3333333333,0.9333333333,12.8454834688,12.8454834688 -280,0,20.2,40.5266666667,18.39,40.56,20.2,39.4666666667,18.79,37.86,17.9633333333,67.8566666667,0.4333333333,77.3333333333,18,30.8233333333,22.0333333333,38.09,17.7,36.56,1.45,747.95,96.5,1,24.5,0.9,32.6776334085,32.6776334085 -140,10,20.2,40.2666666667,18.39,40.5,20.2,39.4,18.76,37.4666666667,17.8233333333,66.5966666667,0.5333333333,77.06,18,30.8566666667,22.1,38.03,17.7,36.5,1.3333333333,747.9666666667,97,1,23.6666666667,0.8666666667,4.329910723,4.329910723 -120,0,20.1666666667,40.0266666667,18.29,40.4,20.2,39.26,18.7,37.2666666667,17.79,64.5,0.9333333333,77,17.9266666667,30.79,22.1333333333,37.8333333333,17.7,36.4666666667,1.2166666667,747.9833333333,97.5,1,22.8333333333,0.8333333333,14.7952308296,14.7952308296 -80,0,20.1666666667,39.7666666667,18.29,40.3266666667,20.2,39.2,18.65,36.995,17.93,69.4266666667,1.0666666667,77.09,17.89,30.79,22.2,37.7,17.7,36.4,1.1,748,98,1,22,0.8,33.736645896,33.736645896 -80,10,20.1,39.56,18.26,40.2,20.2,39.06,18.6,36.76,19.76,86.53,0.9333333333,77.1566666667,17.89,30.79,22.0666666667,37.8233333333,17.7,36.3633333333,1.0166666667,748,98.1666666667,1.1666666667,28.5,0.75,30.5641820305,30.5641820305 -230,0,20.1,39.4333333333,18.2,40.2,20.26,39,18.6,36.5666666667,19.2333333333,87.59,0.5666666667,77.16,17.89,30.79,21.9175,38.62,17.6333333333,36.23,0.9333333333,748,98.3333333333,1.3333333333,35,0.7,25.2155784168,25.2155784168 -390,0,20.1,39.26,18.2,40.1333333333,20.26,38.9333333333,18.6,36.3633333333,18.7266666667,88.0933333333,0.4333333333,77.3,17.89,30.73,21.89,38.8633333333,17.6666666667,36.2233333333,0.85,748,98.5,1.5,41.5,0.65,24.9432780081,24.9432780081 -140,0,20.1,39.1266666667,18.2,40,20.2,39.1333333333,18.5333333333,36.29,18.46,87.5666666667,0.5333333333,77.3,17.89,30.7,21.89,39.1266666667,17.6,36.09,0.7666666667,748,98.6666666667,1.6666666667,48,0.6,7.6518261805,7.6518261805 -80,20,20.1,39.06,18.1,39.8633333333,20.15,39.345,18.5,36.2,18.29,86.63,0.7,77.3,17.89,30.7225,21.8233333333,39.2,17.6,36.045,0.6833333333,748,98.8333333333,1.8333333333,54.5,0.55,29.0839005262,29.0839005262 -70,20,20.1,38.9333333333,18.1,39.845,20.1,39.3266666667,18.5666666667,36.4,18.29,85.2966666667,0.6666666667,77.3,17.89,30.79,21.76,39.2,17.6,36,0.6,748,99,2,61,0.5,2.6527906768,2.6527906768 -80,20,20.1,38.76,18.1,39.8633333333,20.1,39.3266666667,18.9566666667,37,18.2,82.9,0.4,77.4333333333,17.8233333333,30.96,21.7,39.26,17.6,36,0.6666666667,748,98.6666666667,1.8333333333,61.3333333333,0.5166666667,4.1772431927,4.1772431927 -60,20,20.1,38.6266666667,18,39.79,20.1,39.2233333333,19.5633333333,37.26,18.1666666667,80.7266666667,0.2666666667,77.5,17.89,31.1666666667,21.7,39.5666666667,17.6,36.1266666667,0.7333333333,748,98.3333333333,1.6666666667,61.6666666667,0.5333333333,9.7249335144,9.7249335144 -80,30,20.1,38.5,18,39.79,20.1,39.03,20.2333333333,37.26,18.1,79.3333333333,-0.0333333333,77.59,17.89,31.29,21.7,39.8333333333,17.6,36.26,0.8,748,98,1.5,62,0.55,25.3277357551,25.3277357551 -60,20,20.1,38.5,17.9633333333,39.79,20.1,38.9666666667,20.5666666667,36.9266666667,18.0666666667,77.7566666667,-0.1666666667,77.59,17.89,31.3566666667,21.6666666667,40.23,17.6,36.4333333333,0.8666666667,748,97.6666666667,1.3333333333,62.3333333333,0.5666666667,40.3349620639,40.3349620639 -60,20,20.1,38.3633333333,17.89,39.79,20.1,38.9,20.5666666667,36.79,18,76.63,-0.2666666667,77.5,17.89,31.4266666667,21.6,40.43,17.6,36.56,0.9333333333,748,97.3333333333,1.1666666667,62.6666666667,0.5833333333,27.1206942038,27.1206942038 -60,30,20.075,38.2675,17.89,39.79,20.1,38.8266666667,20.5,36.8633333333,18,75.3266666667,-0.5333333333,77.5,17.89,31.5666666667,21.6,40.7666666667,17.6,36.6266666667,1,748,97,1,63,0.6,7.8224808327,7.8224808327 -50,20,20,38.2,17.89,39.79,20.1666666667,38.9,20.3566666667,37,18,74.3266666667,-0.5666666667,77.3666666667,17.89,31.6,21.6,40.9666666667,17.6,36.7,0.8333333333,747.95,97.1666666667,1,60.6666666667,0.45,29.4240653981,29.4240653981 -60,20,20,38.09,17.79,39.7,20.1,38.8633333333,20.29,37.06,17.9633333333,73.0333333333,-0.5,77.2266666667,17.89,31.6,21.5,41.3266666667,17.6,36.8266666667,0.6666666667,747.9,97.3333333333,1,58.3333333333,0.3,22.3005111096,22.3005111096 -60,30,20,38.03,17.79,39.7,20.1,38.93,20.29,37.2,17.89,72.1,-0.5333333333,77.1566666667,17.89,31.6333333333,21.5,41.5266666667,17.6,36.9666666667,0.5,747.85,97.5,1,56,0.15,19.1230789642,19.1230789642 -70,20,20,37.9666666667,17.73,39.7,20.1,38.9666666667,20.29,37.26,17.89,70.63,-0.6,77.09,17.89,31.7,21.5,41.8266666667,17.6,37.03,0.3333333333,747.8,97.6666666667,1,53.6666666667,1.11022302462516E-16,35.8565057628,35.8565057628 -50,20,20,37.9,17.73,39.7,20.1666666667,38.8266666667,20.26,37.26,17.8233333333,69.5633333333,-0.7333333333,77,17.89,31.7,21.5,42.0266666667,17.6,37.09,0.1666666667,747.75,97.8333333333,1,51.3333333333,-0.15,40.0909313699,40.0909313699 -40,20,20,37.8633333333,17.7,39.79,20.2,38.73,20.2,37.26,17.79,68.5233333333,-0.8666666667,77.06,17.89,31.7,21.5,42.2666666667,17.5666666667,37.2,0,747.7,98,1,49,-0.3,0.4123136867,0.4123136867 -40,30,19.9266666667,37.79,17.7,39.73,20.2,38.79,20.2,37.29,17.79,67.79,-0.9666666667,77.1933333333,17.89,31.7,21.5,42.4,17.5666666667,37.2,0,747.7,98,1,48.5,-0.3,46.6174898669,46.6174898669 -30,10,19.89,37.7,17.6,39.7,20.1,39.1266666667,20.2633333333,37.5666666667,17.79,66.8933333333,-0.9,77.4,17.89,31.76,21.5,42.6266666667,17.5666666667,37.3266666667,0,747.7,98,1,48,-0.3,30.5473445915,30.5473445915 -40,10,19.89,37.7,17.6,39.7,20.1,39.3333333333,20.53,37.5666666667,17.73,66.1666666667,-0.75,77.295,17.89,31.76,21.4266666667,42.6266666667,17.5666666667,37.4666666667,0,747.7,98,1,47.5,-0.3,12.8411312355,12.8411312355 -50,0,19.89,37.6633333333,17.6,39.73,20.1,39.4,20.6,37.0266666667,17.7,65.3333333333,-0.6,76.9666666667,17.89,31.7,21.34,42.545,17.6,37.73,0,747.7,98,1,47,-0.3,25.8239134797,25.8239134797 -50,0,19.89,37.59,17.5333333333,39.79,20.075,39.45,20.5333333333,36.9,17.7,64.7933333333,-0.5333333333,76.9,17.89,31.73,21.29,42.8,17.6,37.8975,0,747.7,98,1,46.5,-0.3,4.5315111638,4.5315111638 -50,0,19.79,37.4666666667,17.5,39.79,20.0666666667,39.2666666667,20.3566666667,36.79,17.7,64.0933333333,-0.4,76.8,17.84,31.745,21.29,43.1933333333,17.6,38.06,0,747.7,98,1,46,-0.3,1.605594391,1.605594391 -50,0,19.79,37.4,17.5,39.79,20.1,39.06,20.23,36.79,17.7,63.6333333333,-0.4,76.7266666667,17.8233333333,31.73,21.2,43.6566666667,17.6,38.23,0.0666666667,747.6833333333,97.8333333333,1,48.6666666667,-0.25,39.7099955939,39.7099955939 -50,10,19.79,37.3633333333,17.4266666667,39.79,20.1,38.9333333333,20.1,36.79,17.6,62.94,-0.3,76.8,17.89,31.79,21.2,43.99,17.6,38.3633333333,0.1333333333,747.6666666667,97.6666666667,1,51.3333333333,-0.2,10.6729424442,10.6729424442 -50,0,19.79,37.29,17.39,39.79,20.1,38.9,20.0333333333,36.73,17.6666666667,62.4233333333,-0.2333333333,76.7266666667,17.8233333333,31.73,21.1333333333,44.53,17.6,38.4,0.2,747.65,97.5,1,54,-0.15,15.629076364,15.629076364 -40,0,19.76,37.26,17.39,39.79,20.1,38.9666666667,19.8566666667,36.76,17.6,61.89,0.0333333333,76.69,17.8566666667,31.79,21.1333333333,44.7233333333,17.6,38.4,0.2666666667,747.6333333333,97.3333333333,1,56.6666666667,-0.1,15.509951592,15.509951592 -50,0,19.7,37.2,17.39,39.79,20.1,38.9,19.79,36.7,17.6,61.49,0.1,76.6233333333,17.8566666667,31.79,21.1,44.8266666667,17.5333333333,38.4633333333,0.3333333333,747.6166666667,97.1666666667,1,59.3333333333,-0.05,30.0749074668,30.0749074668 -40,0,19.7,37.2,17.39,39.79,20.1,38.9666666667,19.7,36.79,17.6,61.1566666667,0.2333333333,76.5,17.8566666667,31.79,21.1,44.9,17.6,38.6633333333,0.4,747.6,97,1,62,0,12.3197057284,12.3197057284 -50,0,19.7,37.2,17.29,39.8266666667,20.0333333333,38.8266666667,19.6333333333,36.79,17.5666666667,60.6933333333,0.3666666667,76.4333333333,17.79,31.79,21.0666666667,45.03,17.6,38.73,0.4333333333,747.5666666667,97,1.1666666667,61.8333333333,0.0166666667,27.3203605437,27.3203605437 -50,0,19.6333333333,37.2,17.29,39.8266666667,20.1,38.8266666667,19.5666666667,36.79,17.5666666667,60.36,0.4333333333,76.4333333333,17.79,31.79,21,45.09,17.6,38.8633333333,0.4666666667,747.5333333333,97,1.3333333333,61.6666666667,0.0333333333,14.5107633201,14.5107633201 -50,10,19.6,37.2,17.29,39.8633333333,20.1,38.76,19.5,36.79,17.5666666667,60.0266666667,0.5,76.5,17.79,31.79,21,45.3266666667,17.6,39,0.5,747.5,97,1.5,61.5,0.05,22.6220002281,22.6220002281 -50,0,19.6,37.2,17.23,39.79,20.1,38.6266666667,19.39,36.7,17.5,59.8266666667,0.6,76.4,17.79,31.79,21,45.4,17.6,39.06,0.5333333333,747.4666666667,97,1.6666666667,61.3333333333,0.0666666667,22.9581219493,22.9581219493 -20,0,19.6,37.2,17.26,39.8633333333,20.1,38.59,19.3233333333,36.7,17.5,59.56,0.6666666667,76.4666666667,17.79,31.8566666667,21,45.4,17.6,39.23,0.5666666667,747.4333333333,97,1.8333333333,61.1666666667,0.0833333333,34.0040730662,34.0040730662 -20,0,19.6,37.2,17.2,39.79,20.1,38.59,19.26,36.7,17.5,59.36,0.7,76.5,17.79,31.89,21,45.4,17.6,39.29,0.6,747.4,97,2,61,0.1,39.7639857722,39.7639857722 -30,0,19.5666666667,37.2,17.2,39.79,20.1,38.8,19.2,36.6266666667,17.5,59.1633333333,0.75,76.425,17.79,31.8233333333,20.9633333333,45.26,17.6,39.4,0.5166666667,747.3833333333,97.3333333333,2,52.6666666667,0.0833333333,3.7687478005,3.7687478005 -30,0,19.5,37.2,17.2,39.79,20.1,39.06,19.15,36.7,17.5,58.9633333333,0.7,76.4,17.79,31.79,20.89,45.1266666667,17.6,39.4666666667,0.4333333333,747.3666666667,97.6666666667,2,44.3333333333,0.0666666667,22.4544666708,22.4544666708 -50,0,19.5,37.2,17.2,39.79,20,39.2,19.1,36.7,17.5,58.7233333333,0.8,76.4,17.79,31.8566666667,20.89,45,17.6,39.59,0.35,747.35,98,2,36,0.05,35.1147421985,35.1147421985 -50,0,19.5,37.2,17.2,39.79,20,39.2,19.1,36.7,17.5,58.53,0.8,76.4,17.79,31.89,20.89,44.9333333333,17.6,39.6633333333,0.2666666667,747.3333333333,98.3333333333,2,27.6666666667,0.0333333333,13.9087687829,13.9087687829 -60,10,19.4633333333,37.06,17.1666666667,39.79,19.89,39.2,19,36.59,17.4633333333,58.3333333333,0.9,76.53,17.79,31.89,20.79,44.6633333333,17.6,39.8266666667,0.1833333333,747.3166666667,98.6666666667,2,19.3333333333,0.0166666667,9.7073691664,9.7073691664 -50,0,19.39,37.06,17.1,39.79,19.89,39.1725,19,36.59,17.39,58.1266666667,0.9666666667,76.6566666667,17.79,31.89,20.84,44.515,17.6,39.975,0.1,747.3,99,2,11,0,37.3996679904,37.3996679904 -40,0,19.39,37.09,17.1,39.745,19.89,39.1633333333,18.89,36.59,17.39,57.93,1,76.7266666667,17.7675,31.89,20.8566666667,44.3633333333,17.6,40.06,0.0833333333,747.2666666667,99.1666666667,1.8333333333,11.1666666667,0,5.3265072405,5.3265072405 -50,0,19.39,37.03,17.1,39.7,19.79,39.06,18.89,36.59,17.39,57.73,1,76.8,17.7,31.89,20.79,44.29,17.6,40.23,0.0666666667,747.2333333333,99.3333333333,1.6666666667,11.3333333333,0,42.1293638879,42.1293638879 -40,0,19.3566666667,37.03,17.1,39.7,19.79,39,18.8566666667,36.56,17.39,57.645,1.0666666667,76.9666666667,17.76,31.89,20.79,44.23,17.6,40.3633333333,0.05,747.2,99.5,1.5,11.5,0,37.0386577211,37.0386577211 -40,0,19.29,37.03,17.1,39.7,19.79,38.9666666667,18.79,36.5,17.39,57.3633333333,1.0666666667,76.9666666667,17.7,31.89,20.76,44.09,17.6,40.5,0.0333333333,747.1666666667,99.6666666667,1.3333333333,11.6666666667,0,22.1729753306,22.1729753306 -40,0,19.29,37,17.0333333333,39.6266666667,19.73,38.9,18.79,36.5,17.39,57.23,1.1,77.1233333333,17.7,31.89,20.7,44.03,17.6,40.56,0.0166666667,747.1333333333,99.8333333333,1.1666666667,11.8333333333,0,18.3569983463,18.3569983463 -50,0,19.29,37,17,39.56,19.7,38.79,18.73,36.5,17.39,57.06,1.1,77.19,17.7,31.89,20.76,43.93,17.6,40.6266666667,0,747.1,100,1,12,0,40.3142289608,40.3142289608 -60,0,19.26,36.9666666667,17,39.5,19.7,38.79,18.7,36.5,17.3233333333,56.9333333333,1.1333333333,77.2266666667,17.7,31.89,20.7,43.79,17.6,40.7,0.0166666667,747.1166666667,100,1,15.3333333333,0.0166666667,20.9119536332,20.9119536332 -40,10,19.2,36.9,17,39.5,19.7,38.73,18.7,36.5,17.29,56.76,1.2,77.3,17.7,31.89,20.6666666667,43.79,17.6666666667,40.8633333333,0.0333333333,747.1333333333,100,1,18.6666666667,0.0333333333,24.5631016325,24.5631016325 -30,0,19.2,36.9,17,39.5,19.7,38.73,18.6666666667,36.4,17.29,56.6266666667,1.2,77.3,17.7,31.9633333333,20.6666666667,43.8633333333,17.6,40.8633333333,0.05,747.15,100,1,22,0.05,27.5804054458,27.5804054458 -20,0,19.2,36.9,16.89,39.5,19.7,38.59,18.6,36.4,17.29,56.4666666667,1.2,77.3,17.7,31.89,20.6,43.6633333333,17.6,40.9,0.0666666667,747.1666666667,100,1,25.3333333333,0.0666666667,19.7804196738,19.7804196738 -20,0,19.2,36.9,16.89,39.5,19.7,38.59,18.6,36.4,17.29,56.3266666667,1.2,77.4,17.7,32,20.6,43.59,17.6,40.9666666667,0.0833333333,747.1833333333,100,1,28.6666666667,0.0833333333,47.0052367542,47.0052367542 -30,0,19.1666666667,36.9,16.89,39.5,19.6,38.4666666667,18.6,36.4,17.29,56.1633333333,1.0666666667,77.3666666667,17.7,32,20.5666666667,43.59,17.6,41,0.1,747.2,100,1,32,0.1,9.0269482229,9.0269482229 -50,0,19.1,36.9,16.89,39.5,19.6,38.4,18.6,36.4,17.29,56.09,1,77.3,17.7,32,20.5,43.59,17.6,41,0.1166666667,747.2166666667,99.8333333333,1.1666666667,29.6666666667,0.1,39.3026813515,39.3026813515 -40,0,19.1,36.9333333333,16.89,39.5,19.6,38.4333333333,18.525,36.425,17.29,55.9666666667,1.1,77.3333333333,17.7,32,20.5,43.59,17.6333333333,41.1566666667,0.1333333333,747.2333333333,99.6666666667,1.3333333333,27.3333333333,0.1,6.4132577274,6.4132577274 -60,0,19.1,36.9333333333,16.89,39.5,19.5333333333,38.5,18.5,36.4333333333,17.29,55.8266666667,1.1,77.3333333333,17.7,32,20.5,43.59,17.6333333333,41.23,0.15,747.25,99.5,1.5,25,0.1,6.3845761819,6.3845761819 -50,0,19.0666666667,36.9666666667,16.8566666667,39.4666666667,19.5333333333,38.4333333333,18.5,36.5,17.29,55.76,1.1666666667,77.3,17.7,32,20.5,43.7,17.6666666667,41.29,0.1666666667,747.2666666667,99.3333333333,1.6666666667,22.6666666667,0.1,38.8866167632,38.8866167632 -40,0,19,36.9,16.79,39.4,19.5333333333,38.56,18.4266666667,36.4333333333,17.23,55.5666666667,1.1666666667,77.3,17.7,32,20.4266666667,43.7,17.6,41.23,0.1833333333,747.2833333333,99.1666666667,1.8333333333,20.3333333333,0.1,21.0075181792,21.0075181792 -60,0,19,36.9,16.79,39.4,19.5333333333,38.56,18.39,36.4,17.23,55.5,1.2,77.2633333333,17.7,32,20.4633333333,43.7,17.6666666667,41.3633333333,0.2,747.3,99,2,18,0.1,35.7950966572,35.7950966572 -40,0,19,36.9,16.79,39.4,19.6,38.5675,18.39,36.4666666667,17.23,55.4333333333,1.2,77.1233333333,17.65,31.945,20.4633333333,43.9,17.675,41.47,0.2166666667,747.3666666667,99,1.8333333333,20.8333333333,0.1166666667,7.6652055373,7.6652055373 -50,0,19,36.9,16.79,39.5,19.6,38.53,18.39,36.53,17.39,55.1333333333,1.2,77.09,17.6666666667,31.9633333333,20.5,44.1,17.7,41.59,0.2333333333,747.4333333333,99,1.6666666667,23.6666666667,0.1333333333,4.4118314749,4.4118314749 -40,10,19,37.0266666667,16.76,39.6266666667,19.6,38.4,18.3233333333,36.59,17.39,55,1.26,77.09,17.6,31.89,20.39,43.6333333333,17.6333333333,41.4,0.25,747.5,99,1.5,26.5,0.15,10.2513469174,10.2513469174 -80,0,19,37.23,16.76,39.76,19.6,38.3266666667,18.29,36.7,17.34,53.69,1.39,77.09,17.6,31.9266666667,20.39,43.4333333333,17.6333333333,41.3266666667,0.2666666667,747.5666666667,99,1.3333333333,29.3333333333,0.1666666667,1.0592046427,1.0592046427 -50,0,19,37.6966666667,16.79,40,19.6,38.29,18.29,36.76,17.29,53.4,1.39,77.09,17.6,32,20.3233333333,43.1633333333,17.6666666667,41.3333333333,0.2833333333,747.6333333333,99,1.1666666667,32.1666666667,0.1833333333,29.7700746218,29.7700746218 -40,0,19,37.79,16.79,40.26,19.6,38.29,18.29,36.8633333333,17.29,53.5266666667,1.5,77.09,17.6,31.93,20.3233333333,42.9633333333,17.6666666667,41.2,0.3,747.7,99,1,35,0.2,36.1282550381,36.1282550381 -20,0,19,37.79,16.79,40.29,19.5666666667,38.1333333333,18.29,36.73,17.29,53.6633333333,1.6333333333,77.1566666667,17.6,31.73,20.26,42.5633333333,17.6,40.8633333333,0.3833333333,747.7333333333,98.6666666667,1,36,0.2333333333,26.9451648812,26.9451648812 -150,0,18.89,37.6633333333,16.79,40.1566666667,19.5,37.9333333333,18.26,36.6333333333,17.29,53.7966666667,1.79,77.09,17.5,31.5666666667,20.2,42.1566666667,17.6,40.5966666667,0.4666666667,747.7666666667,98.3333333333,1,37,0.2666666667,3.9408788551,3.9408788551 -330,0,18.89,37.59,16.8233333333,39.9,19.39,37.6633333333,18.2,36.4333333333,17.46,54.2666666667,1.97,77.115,17.5,31.5,20.2,41.9,17.6,40.1333333333,0.55,747.8,98,1,38,0.3,4.8062899383,4.8062899383 -150,0,18.89,37.5,16.89,39.9,19.39,37.4633333333,18.2,36.26,17.7266666667,54.4,2.03,77.19,17.5,31.4633333333,20.2,41.5666666667,17.6,39.86,0.6333333333,747.8333333333,97.6666666667,1,39,0.3333333333,47.3169171019,47.3169171019 -110,0,18.89,37.59,17,39.79,19.39,37.4666666667,18.2,36.2,18.0666666667,53.99,2,77.09,17.5,31.39,20.1,41.1933333333,17.6,39.5266666667,0.7166666667,747.8666666667,97.3333333333,1,40,0.3666666667,19.3105255021,19.3105255021 -60,0,18.89,37.6633333333,17,39.93,19.39,37.4,18.2,36.09,18.2,53.4566666667,2,77.09,17.5,31.39,20.1,40.9333333333,17.6,39.3266666667,0.8,747.9,97,1,41,0.4,48.3574175392,48.3574175392 -60,0,18.9266666667,37.8266666667,17.0333333333,39.9666666667,19.39,37.4,18.1333333333,36.03,18.1666666667,52.9,2,77,17.4266666667,31.3233333333,20.1,40.6333333333,17.6,38.99,0.8833333333,747.95,96.8333333333,1.5,44.6666666667,0.45,36.135010852,36.135010852 -60,0,18.9266666667,37.9,17.1,39.8266666667,19.39,37.4,18.1,35.95,18.0333333333,52.4266666667,2.06,76.9333333333,17.4633333333,31.26,20.0333333333,40.3,17.5333333333,38.6566666667,0.9666666667,748,96.6666666667,2,48.3333333333,0.5,45.7195287105,45.7195287105 -60,0,18.9266666667,37.9,17.1,39.6633333333,19.39,37.29,18.1,35.9,17.89,51.9,2.23,76.8,17.4633333333,31.26,20,40.1333333333,17.5666666667,38.4,1.05,748.05,96.5,2.5,52,0.55,41.3919742452,41.3919742452 -60,0,19,37.9,17.1666666667,39.53,19.39,37.29,18.1,35.9,17.8233333333,51.5,2.23,76.7266666667,17.39,31.2,20,39.9333333333,17.5,38.4,1.1333333333,748.1,96.3333333333,3,55.6666666667,0.6,5.2317697206,5.2317697206 -170,0,19,37.7,17.23,39.5,19.39,37.26,18.1,35.9,17.79,50.93,2.3266666667,76.56,17.39,31.26,19.9633333333,39.76,17.5333333333,38.1333333333,1.2166666667,748.15,96.1666666667,3.5,59.3333333333,0.65,5.0391558558,5.0391558558 -700,0,19,37.7,17.3566666667,39.4333333333,19.39,37.2,18.1,35.9,17.73,50.6566666667,2.4666666667,76.5,17.39,31.29,19.9633333333,39.6266666667,17.5333333333,37.9333333333,1.3,748.2,96,4,63,0.7,4.1563050705,4.1563050705 -630,0,19.1,38.1933333333,17.5,39.3633333333,19.445,37.69,18.1,35.9,17.7,50.56,2.4,76.4,17.39,31.29,19.89,39.56,17.5,37.76,1.45,748.2666666667,95.5,3.6666666667,57.1666666667,0.7666666667,21.126493765,21.126493765 -370,0,19.1666666667,39.06,17.5666666667,39.23,19.7633333333,39.2933333333,18.1,35.8266666667,17.7,50.5,2.4666666667,76.4,17.39,31.29,19.89,39.4333333333,17.5,37.6725,1.6,748.3333333333,95,3.3333333333,51.3333333333,0.8333333333,24.6094668633,24.6094668633 -280,0,19.23,39.2666666667,17.65,39.2,20.03,39.8333333333,18.0666666667,35.76,17.6,50.5,2.53,76.33,17.39,31.29,19.79,39.29,17.5,37.53,1.75,748.4,94.5,3,45.5,0.9,29.0047899121,29.0047899121 -270,0,19.3566666667,39.5266666667,17.73,39.1633333333,20.36,40.1566666667,18,35.7,17.6,50.545,2.6633333333,76.19,17.39,31.29,19.79,39.2225,17.5,37.4666666667,1.9,748.4666666667,94,2.6666666667,39.6666666667,0.9666666667,28.2288827584,28.2288827584 -350,0,19.4266666667,39.6633333333,17.8566666667,39.09,20.6333333333,40.29,18.1,35.79,17.6,50.5,2.9333333333,76.1566666667,17.39,31.29,19.79,39.1266666667,17.5,37.4,2.05,748.5333333333,93.5,2.3333333333,33.8333333333,1.0333333333,31.7211819231,31.7211819231 -590,0,19.5666666667,39.6633333333,18.0333333333,39.1633333333,20.8233333333,40.06,18.0333333333,35.73,17.5666666667,50.1633333333,3.1333333333,76.03,17.39,31.29,19.79,39.06,17.5,37.3633333333,2.2,748.6,93,2,28,1.1,22.3210615921,22.3210615921 -500,0,19.7,40.03,18.1666666667,38.9633333333,20.9633333333,39.86,18.0333333333,35.7,17.5666666667,50.03,3.23,75.9633333333,17.39,31.29,19.79,39,17.5,37.29,2.3833333333,748.6333333333,91.3333333333,2.3333333333,30,1.0166666667,44.1741679213,44.1741679213 -360,0,19.76,41.6233333333,18.23,39.1966666667,21.1333333333,39.6566666667,18.0333333333,35.7,17.5,49.76,3.3425,75.9975,17.39,31.29,19.76,38.8633333333,17.5,37.26,2.5666666667,748.6666666667,89.6666666667,2.6666666667,32,0.9333333333,23.3105369378,23.3105369378 -330,0,19.9266666667,43.9566666667,18.43,39.9966666667,21.2,40.1233333333,18.0333333333,35.6266666667,17.5,49.7,3.8333333333,75.9,17.4266666667,31.3233333333,19.7,38.73,17.5,37.1266666667,2.75,748.7,88,3,34,0.85,2.5210218388,2.5210218388 -510,0,20,46.49,18.5666666667,40,21.0666666667,40.5666666667,18.1,35.76,17.5,49.86,4.1266666667,75.8666666667,17.5,31.3233333333,19.76,38.5,17.5,37.09,2.9333333333,748.7333333333,86.3333333333,3.3333333333,36,0.7666666667,14.1667629825,14.1667629825 -630,0,20.05,46.4,18.5,40.06,21.0666666667,41.4266666667,18.1666666667,35.76,17.5,50.1333333333,4,75.8,17.5333333333,31.26,19.7,38.4333333333,17.5,37.09,3.1166666667,748.7666666667,84.6666666667,3.6666666667,38,0.6833333333,43.8354592305,43.8354592305 -410,0,20.1,45.59,18.5666666667,40.63,21.2633333333,42.6333333333,18.1666666667,35.6266666667,17.5,50.29,4.19,75.8,17.6,31.2,19.7,38.4,17.5,37.09,3.3,748.8,83,4,40,0.6,47.6151532726,47.6151532726 -290,0,20.2,45.03,18.76,41.09,21.53,43.0266666667,18.15,35.59,17.5,50.4666666667,4.4666666667,75.8,17.5,31.2,19.7,38.29,17.5,37.03,3.4166666667,748.8166666667,81.3333333333,4.1666666667,40,0.4333333333,4.9160843249,4.9160843249 -330,0,20.29,44.3933333333,19.0333333333,40.93,21.8233333333,42.8,18.15,35.5225,17.5,50.5,4.66,75.7266666667,17.5666666667,31.2,19.7,38.2,17.5,37,3.5333333333,748.8333333333,79.6666666667,4.3333333333,40,0.2666666667,14.1035239794,14.1035239794 -230,0,20.3566666667,43.6,19.1,40.5966666667,21.9633333333,41.9933333333,18.2,35.5,17.5,50.5,4.8666666667,75.8,17.6,31.1,19.7,38.1266666667,17.5,37,3.65,748.85,78,4.5,40,0.1,49.0871177171,49.0871177171 -180,0,20.4266666667,43.1333333333,19.2,40.1633333333,22.0333333333,41.2666666667,18.2,35.59,17.4633333333,50.3633333333,5.0633333333,75.7633333333,17.6666666667,31.1,19.7,37.9666666667,17.5333333333,36.8633333333,3.7666666667,748.8666666667,76.3333333333,4.6666666667,40,-0.0666666667,30.9309605858,30.9309605858 -80,0,20.5666666667,42.5266666667,19.26,39.9633333333,22.1,40.7266666667,18.26,35.6633333333,17.39,50.29,5.0633333333,75.69,17.79,30.9633333333,19.7,37.9,17.6,36.79,3.8833333333,748.8833333333,74.6666666667,4.8333333333,40,-0.2333333333,1.9863783033,1.9863783033 -70,0,20.6,41.6233333333,19.26,39.49,22.1,40.0333333333,18.26,35.4666666667,17.39,50.1633333333,4.4933333333,75.59,17.79,30.8233333333,19.7,37.79,17.6,36.7,4,748.9,73,5,40,-0.4,17.4166981364,17.4166981364 -50,0,20.6,41.03,19.2,39.23,21.96,39.4266666667,18.2,35.4,17.39,50.03,4.4333333333,75.59,17.7,30.79,19.7,37.79,17.6,36.7,3.9666666667,748.9333333333,74.3333333333,4.8333333333,40,-0.2,25.5749626434,25.5749626434 -350,0,20.6666666667,40.5333333333,19.29,39.23,21.745,38.8,18.2,35.26,17.39,49.8333333333,4.93,75.69,17.7675,30.865,19.7,37.73,17.6,36.7,3.9333333333,748.9666666667,75.6666666667,4.6666666667,40,0,10.506845708,10.506845708 -630,0,20.6666666667,40.3333333333,19.365,39.02,21.73,38.8,18.26,35.2,17.39,49.6266666667,5.2633333333,75.6233333333,17.8566666667,30.89,19.7,37.73,17.5333333333,36.79,3.9,749,77,4.5,40,0.2,18.6921433778,18.6921433778 -470,0,20.79,40.4,19.39,38.79,21.8566666667,39.2666666667,18.29,35.2,17.39,49.4666666667,5.2633333333,75.56,17.89,30.76,19.7,37.59,17.6,36.73,3.8666666667,749.0333333333,78.3333333333,4.3333333333,40,0.4,12.8781973268,12.8781973268 -310,0,20.8566666667,40.4,19.5,38.76,22.0666666667,39.4666666667,18.23,35.1266666667,17.39,49.3725,5.19,75.5,17.89,30.7,19.7,37.5225,17.6,36.6633333333,3.8333333333,749.0666666667,79.6666666667,4.1666666667,40,0.6,44.2650916171,44.2650916171 -270,0,20.9266666667,40.3633333333,19.5,38.6266666667,22.26,39.4666666667,18.29,35.2,17.39,49.23,5.445,75.59,17.9266666667,30.76,19.76,37.4333333333,17.6,36.59,3.8,749.1,81,4,40,0.8,1.6954934341,1.6954934341 -220,0,21,40.23,19.6,38.4666666667,22.4266666667,39.4666666667,18.29,35.2,17.39,49.09,5.3966666667,75.56,18,30.6333333333,19.73,37.29,17.6,36.7,4.0833333333,749.1166666667,79.8333333333,3.8333333333,40,0.8666666667,19.3253854522,19.3253854522 -240,0,21.1,40.2233333333,19.6,38.3266666667,22.5666666667,39.1933333333,18.29,35.1633333333,17.39,49.03,5.1233333333,75.56,18,30.6,19.73,37.29,17.6,36.7,4.3666666667,749.1333333333,78.6666666667,3.6666666667,40,0.9333333333,23.011954641,23.011954641 -240,10,21.1,40.03,19.6333333333,38.3266666667,22.6333333333,38.8633333333,18.29,35.09,17.39,49,5.2933333333,75.53,18,30.5333333333,19.79,37.2,17.6,36.7,4.65,749.15,77.5,3.5,40,1,12.5857890351,12.5857890351 -350,0,21.2,39.8333333333,19.7,38.3266666667,22.7,38.5966666667,18.29,35.09,17.39,48.9333333333,5.7,75.59,18.1333333333,30.6,19.79,37.1266666667,17.6666666667,36.8333333333,4.9333333333,749.1666666667,76.3333333333,3.3333333333,40,1.0666666667,27.5740397745,27.5740397745 -70,0,21.2,39.9,19.79,38.06,22.8233333333,38.36,18.29,35.09,17.39,48.9,6.0633333333,75.59,18.26,30.6,19.8233333333,37.09,17.7,37.03,5.2166666667,749.1833333333,75.1666666667,3.1666666667,40,1.1333333333,32.3449040297,32.3449040297 -180,0,21.245,40.795,19.79,37.95,22.89,38.45,18.39,35.1266666667,17.39,48.9,6.19,75.59,18.29,30.5,19.89,37.09,17.7,37.09,5.5,749.2,74,3,40,1.2,33.0550330924,33.0550330924 -190,0,21.3233333333,41.6266666667,19.79,37.9333333333,22.76,38.06,18.39,35.1266666667,17.39,49.03,6.3333333333,75.69,18.39,30.3233333333,20,37.06,17.73,37.2,5.2833333333,749.2333333333,74.1666666667,3,40,1.0333333333,44.1119642579,44.1119642579 -410,0,21.39,42.6266666667,19.79,38.1333333333,22.6333333333,37.9333333333,18.39,35.0266666667,17.39,49.09,6.26,75.6233333333,18.39,30.1666666667,20,37,17.79,37.2,5.0666666667,749.2666666667,74.3333333333,3,40,0.8666666667,45.25788381,45.25788381 -290,0,21.39,41.16,19.89,38.4,22.5333333333,38.4266666667,18.39,34.795,17.39,49.23,5.8633333333,75.59,18.39,30.0333333333,20,36.8333333333,17.73,37.1633333333,4.85,749.3,74.5,3,40,0.7,17.581131286,17.581131286 -280,0,21.39,40.6333333333,19.89,38.4666666667,22.6666666667,38.9,18.39,34.6266666667,17.39,49.29,5.59,75.59,18.5333333333,29.8566666667,20,36.6266666667,17.79,37.1633333333,4.6333333333,749.3333333333,74.6666666667,3,40,0.5333333333,2.444522921,2.444522921 -260,0,21.5,40.1,19.9266666667,38.3333333333,22.8233333333,38.9666666667,18.39,34.5266666667,17.39,49.29,5.8,75.69,18.6,29.5966666667,20.1,36.56,17.79,37.5266666667,4.4166666667,749.3666666667,74.8333333333,3,40,0.3666666667,8.2643360016,8.2643360016 -260,0,21.5,39.7666666667,20,38.2,22.9633333333,38.8266666667,18.39,34.3266666667,17.39,49.23,5.8,75.69,18.6,29.3566666667,20.1,36.36,17.79,37.2666666667,4.2,749.4,75,3,40,0.2,14.4634947646,14.4634947646 -220,0,21.4633333333,39.4666666667,19.9633333333,38.1333333333,23.1333333333,38.49,18.39,34.29,17.39,49.2,5.8333333333,75.7266666667,18.6,29.23,20.1,36.1633333333,17.79,36.9666666667,3.7666666667,749.5,78.1666666667,2.6666666667,36.6666666667,0.3,14.0016142745,14.0016142745 -200,10,21.39,39.3266666667,19.89,38.06,23.2,38.1566666667,18.39,34.3633333333,17.39,49.1266666667,5.9,75.8666666667,18.5,29.3233333333,20.0333333333,36.03,17.79,36.8266666667,3.3333333333,749.6,81.3333333333,2.3333333333,33.3333333333,0.4,2.5261821109,2.5261821109 -120,0,21.39,39.1333333333,19.89,38.23,23.29,37.8,18.39,34.4333333333,17.4633333333,49.1633333333,6.19,75.8,18.6,29.39,20.1,36,17.79,36.95,2.9,749.7,84.5,2,30,0.5,32.6887644711,32.6887644711 -50,0,21.4633333333,39,19.89,38.3633333333,23.29,37.3333333333,18.39,34.5,17.4633333333,49.09,5.9966666667,75.8666666667,18.76,29.39,20.1666666667,36,17.8233333333,37.3266666667,2.4666666667,749.8,87.6666666667,1.6666666667,26.6666666667,0.6,30.6841377169,30.6841377169 -50,0,21.5,38.76,19.89,38.245,23.23,37.0666666667,18.39,34.5,17.5,49.06,5.64,75.85,18.79,29.39,20.26,36.2,17.89,37.4,2.0333333333,749.9,90.8333333333,1.3333333333,23.3333333333,0.7,32.7341926051,32.7341926051 -50,0,21.5,38.6266666667,19.89,38.06,22.9633333333,36.6633333333,18.39,34.56,17.5,48.975,5.83,75.9333333333,18.73,29.39,20.2,36.2,17.8566666667,37.5,1.6,750,94,1,20,0.8,49.4520048029,49.4520048029 -40,0,21.39,38.3333333333,19.8233333333,37.8,22.8233333333,36.4633333333,18.39,34.59,17.5,48.8266666667,5.43,76.1266666667,18.73,30.8666666667,20.2,36.2,17.8566666667,37.6333333333,1.9166666667,750.0666666667,92.8333333333,1.1666666667,23.3333333333,0.9166666667,16.9013324194,16.9013324194 -60,0,21.39,38.0666666667,19.79,37.4666666667,22.6666666667,36.3333333333,18.39,34.6633333333,17.5,48.56,4.56,76.3666666667,18.8566666667,32.2,20.2,36.2,17.8566666667,37.6633333333,2.2333333333,750.1333333333,91.6666666667,1.3333333333,26.6666666667,1.0333333333,40.4210194363,40.4210194363 -80,0,21.29,38,19.73,37.4,22.5333333333,36.1266666667,18.39,34.7,17.5,48.4333333333,4.1,76.6266666667,18.79,32.09,20.1333333333,36.26,17.8566666667,37.7233333333,2.55,750.2,90.5,1.5,30,1.15,27.9455971555,27.9455971555 -80,0,21.29,38,19.7,37.53,22.3566666667,36.09,18.39,34.76,17.5,48.29,3.6633333333,76.8333333333,18.73,32.09,20.1,36.4633333333,17.79,37.76,2.8666666667,750.2666666667,89.3333333333,1.6666666667,33.3333333333,1.2666666667,17.7824266837,17.7824266837 -90,0,21.26,38.09,19.6333333333,37.53,22.29,36.1633333333,18.29,34.79,17.5,48.23,3.6633333333,76.9666666667,18.7,32.23,20.1,36.7233333333,17.79,37.5666666667,3.1833333333,750.3333333333,88.1666666667,1.8333333333,36.6666666667,1.3833333333,25.3045057878,25.3045057878 -70,0,21.2,38.03,19.5,37.6566666667,22.26,36.06,18.29,34.8633333333,17.5,48.09,3.76,77.16,18.7,32.3633333333,20.23,37.1566666667,17.79,37.2233333333,3.5,750.4,87,2,40,1.5,45.1473616762,45.1473616762 -70,0,21.2,37.95,19.5,37.8633333333,22.1333333333,36,18.29,35,17.5,48.03,3.5,77.4333333333,18.7,32.53,20.29,37.29,17.79,37.03,3.15,750.55,88.1666666667,1.8333333333,40,1.35,45.4516904312,45.4516904312 -90,0,21.1666666667,37.86,19.39,37.9,22.0666666667,36,18.29,35,17.39,47.8633333333,2.8633333333,77.8333333333,18.7,32.59,20.3233333333,37.2666666667,17.79,36.9,2.8,750.7,89.3333333333,1.6666666667,40,1.2,21.9167146599,21.9167146599 -80,0,21.1,38,19.3233333333,37.9666666667,22,36,18.2,34.9,17.4633333333,47.79,2.4633333333,77.9,18.6,32.59,20.39,37.4666666667,17.79,36.8266666667,2.45,750.85,90.5,1.5,40,1.05,47.9048616719,47.9048616719 -100,0,21.1,37.8633333333,19.26,37.9666666667,21.89,35.9333333333,18.2,35,17.39,47.56,1.9,78,18.6,32.59,20.5,37.7666666667,17.79,36.7,2.1,751,91.6666666667,1.3333333333,40,0.9,31.2385508674,31.2385508674 -110,0,21.1,37.79,19.2,37.9,21.8233333333,35.9333333333,18.2,35,17.4633333333,47.56,1.5666666667,77.9333333333,18.6,32.59,20.5,38.0266666667,17.79,36.6266666667,1.75,751.15,92.8333333333,1.1666666667,40,0.75,21.6451849206,21.6451849206 -190,0,21,37.7,19.1,37.9333333333,21.76,35.9,18.2,35,17.4633333333,47.43,1.4266666667,77.8333333333,18.6,32.7233333333,20.6,38.23,17.79,36.5,1.4,751.3,94,1,40,0.6,23.5855758889,23.5855758889 -330,0,21,37.7,19.0333333333,38,21.7,35.8266666667,18.1333333333,35,17.39,47.245,1.3,77.76,18.5666666667,32.73,20.6666666667,38.3633333333,17.73,36.4333333333,1.5333333333,751.3833333333,93.6666666667,1,38.1666666667,0.6666666667,27.2585729952,27.2585729952 -460,0,21,38.1633333333,19,38,21.7,35.9,18.1,35,17.39,47.18125,0.8666666667,77.6566666667,18.5,32.79,20.73,38.29,17.7,36.3633333333,1.6666666667,751.4666666667,93.3333333333,1,36.3333333333,0.7333333333,28.6392161739,28.6392161739 -140,0,21,41.5566666667,19,38.1333333333,21.7,35.9,18.1,35,17.39,47.1175,0.6666666667,77.59,18.5,32.79,20.79,38.29,17.7,36.23,1.8,751.55,93,1,34.5,0.8,26.7860664171,26.7860664171 -100,10,21.1,42.4233333333,19,38.9566666667,21.6,35.9633333333,18.1,34.9666666667,17.39,47.1266666667,0.35,77.69,18.5,32.8225,20.8233333333,38.1633333333,17.7,36.2,1.9333333333,751.6333333333,92.6666666667,1,32.6666666667,0.8666666667,39.1018220573,39.1018220573 -120,10,21.1,41.83,19.0666666667,39.5633333333,21.6,36.3475,18.1,34.9666666667,17.39,47.3266666667,0.1666666667,77.69,18.5,32.5666666667,20.8233333333,37.9633333333,17.6666666667,36.06,2.0666666667,751.7166666667,92.3333333333,1,30.8333333333,0.9333333333,13.825541432,13.825541432 -120,0,21.1333333333,41.2966666667,19.1,39.9,21.6,36.6333333333,18.0666666667,34.93,17.39,47.5266666667,0.0333333333,77.69,18.39,32.1333333333,20.8233333333,38.1266666667,17.6,36,2.2,751.8,92,1,29,1,5.221589352,5.221589352 -120,0,21.2,40.9633333333,19.1333333333,40,21.6,36.7666666667,18,34.79,17.39,47.745,-0.1666666667,77.8,18.39,31.9266666667,20.89,38.26,17.7,36,2.1166666667,751.8833333333,91.8333333333,1,29,0.9,13.0008614506,13.0008614506 -120,0,21.2,40.2666666667,19.2,40.26,21.6,36.9,18,34.79,17.39,47.79,-0.3666666667,77.7266666667,18.3233333333,31.7266666667,21,38.2,17.6333333333,35.86,2.0333333333,751.9666666667,91.6666666667,1,29,0.8,48.8442478119,48.8442478119 -110,0,21.26,39.86,19.2,40.2,21.6,36.9,18,34.79,17.39,47.79,-0.5333333333,77.69,18.3233333333,31.5333333333,21.075,38.1725,17.6333333333,35.8266666667,1.95,752.05,91.5,1,29,0.7,10.4516377556,10.4516377556 -110,10,21.29,39.43,19.26,40.2,21.6,36.8266666667,18,34.79,17.4633333333,47.8633333333,-0.6666666667,77.69,18.29,31.3566666667,21.1,38.03,17.6333333333,35.7666666667,1.8666666667,752.1333333333,91.3333333333,1,29,0.6,18.1438980624,18.1438980624 -120,30,21.29,39.0966666667,19.2,39.93,21.6,36.76,18,34.79,17.39,47.79,-0.6666666667,77.6566666667,18.29,31.23,21.1,38.09,17.6666666667,35.8633333333,1.7833333333,752.2166666667,91.1666666667,1,29,0.5,33.9103148319,33.9103148319 -90,20,21.29,38.7233333333,19.2,39.73,21.6,36.7,18.2333333333,35.33,17.39,47.73,-0.6666666667,77.6566666667,18.29,31.4633333333,21.1666666667,38.03,17.6,35.79,1.7,752.3,91,1,29,0.4,32.7902058023,32.7902058023 -80,20,21.29,38.7233333333,19.26,39.5266666667,21.5,36.59,18.76,35.6633333333,17.39,47.79,-0.7333333333,77.69,18.29,31.39,21.2,38.1266666667,17.6,35.79,1.55,752.3833333333,91.5,1,27.6666666667,0.3333333333,0.4886993673,0.4886993673 -90,20,21.29,38.56,19.2,39.4,21.5,36.59,19.4933333333,35.5633333333,17.4266666667,47.7,-0.6727272727,77.69,18.3233333333,31.7,21.2,38.2,17.6,35.79,1.4,752.4666666667,92,1,26.3333333333,0.2666666667,49.1801952943,49.1801952943 -100,30,21.29,38.225,19.2,39.1633333333,21.4633333333,36.5266666667,19.76,35.0966666667,17.4175,47.6175,-0.4909090909,77.69,18.39,31.76,21.1,38.29,17.6,35.76,1.25,752.55,92.5,1,25,0.2,42.2550884192,42.2550884192 -100,20,21.29,37.9333333333,19.1333333333,39.09,21.39,36.4,19.7,35.045,17.39,47.475,-0.4,77.69,18.3566666667,31.9266666667,21.1,38.3633333333,17.6,35.7,1.1,752.6333333333,93,1,23.6666666667,0.1333333333,23.5597540275,23.5597540275 -90,20,21.2,37.6633333333,19.1,38.9666666667,21.39,36.4,19.6666666667,35.0266666667,17.39,47.4,-0.6333333333,77.69,18.29,32,21.0666666667,38.56,17.5666666667,35.7,0.95,752.7166666667,93.5,1,22.3333333333,0.0666666667,24.4972710963,24.4972710963 -90,20,21.2,37.53,19.1,38.8266666667,21.39,36.4,19.6666666667,35.16,17.39,47.26,-0.7666666667,77.69,18.29,32,21,38.5,17.5666666667,35.6266666667,0.8,752.8,94,1,21,0,13.6730686878,13.6730686878 -90,20,21.2,37.3333333333,19,38.59,21.39,36.4,20.1966666667,35.3633333333,17.39,47.1266666667,-0.8666666667,77.69,18.29,32.06,21,38.5,17.5333333333,35.5,0.7666666667,752.8666666667,94.3333333333,1.1666666667,21,0,34.6531745512,34.6531745512 -60,20,21.2,37.1266666667,19,38.53,21.3233333333,36.5266666667,20.6566666667,35.23,17.39,46.9666666667,-0.6666666667,77.69,18.3566666667,32.1633333333,21,38.5,17.6,35.5,0.7333333333,752.9333333333,94.6666666667,1.3333333333,21,0,48.9978817175,48.9978817175 -70,20,21.1666666667,36.9666666667,18.89,38.4,21.26,36.59,21.3,35.06,17.39,46.8266666667,-0.5,77.8,18.29,32.03,20.89,38.4,17.5,35.4666666667,0.7,753,95,1.5,21,0,21.5775556164,21.5775556164 -60,0,21.1,36.9,18.89,38.3266666667,21.2,36.6633333333,21.6933333333,34.9333333333,17.39,46.79,-0.3333333333,77.69,18.29,32.0666666667,20.89,38.4666666667,17.5,35.4,0.6666666667,753.0666666667,95.3333333333,1.6666666667,21,0,8.032315562,8.032315562 -90,20,21.1,37,18.79,38.3266666667,21.1666666667,36.79,21.6666666667,34.76,18.13,68.93,-0.1333333333,77.7633333333,18.29,32.32,20.8566666667,38.6266666667,17.5,35.4666666667,0.6333333333,753.1333333333,95.6666666667,1.8333333333,21,0,46.2975205155,46.2975205155 -70,30,21.1,37.2,18.79,38.4666666667,21.1,36.8725,21.5333333333,34.9,18.5,74.1,0.0333333333,77.7266666667,18.29,32.56,20.79,38.76,17.5,35.6266666667,0.6,753.2,96,2,21,0,27.6908825152,27.6908825152 -60,20,21,37.3266666667,18.7,38.85,21.1666666667,36.9,21.3566666667,35.0666666667,18.1,64.5666666667,0.0333333333,77.8,18.29,32.8266666667,20.76,38.9333333333,17.5,35.76,0.5666666667,753.2666666667,96,1.8333333333,28.1666666667,-0.0166666667,0.8606547373,0.8606547373 -60,20,21,37.4,18.6,39.2666666667,21.1,36.9,21.29,35.3333333333,18.2,57.245,-0.0666666667,77.8333333333,18.29,32.9666666667,20.7,39.06,17.5,35.9333333333,0.5333333333,753.3333333333,96,1.6666666667,35.3333333333,-0.0333333333,16.1809380748,16.1809380748 -60,20,20.9633333333,37.53,18.5333333333,39.5266666667,21.1,36.9666666667,21.1666666667,35.5,18.2,53.9333333333,0,77.9,18.29,33.1566666667,20.6666666667,39.2,17.5,36.06,0.5,753.4,96,1.5,42.5,-0.05,39.080458472,39.080458472 -60,20,20.89,37.6633333333,18.4633333333,39.8266666667,21.1,36.9666666667,21.0333333333,35.7,18.2,52.2666666667,0.3,77.8666666667,18.29,33.3633333333,20.6,39.26,17.5,36.1266666667,0.4666666667,753.4666666667,96,1.3333333333,49.6666666667,-0.0666666667,24.0345148486,24.0345148486 -60,20,20.89,37.7666666667,18.39,39.9666666667,21.1,36.9666666667,21,35.8266666667,18.23,50.6666666667,0.5666666667,77.9333333333,18.29,33.6266666667,20.6,39.69,17.5,36.26,0.4333333333,753.5333333333,96,1.1666666667,56.8333333333,-0.0833333333,14.2116694478,14.2116694478 -60,30,20.89,37.9666666667,18.3566666667,40.2666666667,21.1,37,20.9266666667,35.9666666667,18.29,49.7333333333,0.6333333333,77.9333333333,18.29,33.76,20.5,40.1933333333,17.5,36.3266666667,0.4,753.6,96,1,64,-0.1,21.1877988419,21.1877988419 -50,20,20.79,38.03,18.29,40.4,21.0333333333,36.9333333333,20.89,36.29,18.29,48.6966666667,0.7,78,18.29,34.0666666667,20.5,40.8,17.5,36.4666666667,0.35,753.6666666667,96.3333333333,1,61.6666666667,-0.1166666667,7.5784131419,7.5784131419 -70,20,20.79,38.09,18.26,40.59,21,36.9,20.8233333333,36.23,18.29,47.9566666667,0.7666666667,78.03,18.3566666667,34.26,20.5,41.4633333333,17.5,36.53,0.3,753.7333333333,96.6666666667,1,59.3333333333,-0.1333333333,7.6830954989,7.6830954989 -60,20,20.76,38.2,18.2,40.59,21,36.9,20.76,36.3266666667,18.29,47.2666666667,0.6333333333,78.03,18.29,34.36,20.5,41.9966666667,17.5,36.6633333333,0.25,753.8,97,1,57,-0.15,25.945105392,25.945105392 -70,20,20.7,38.2675,18.2,40.6266666667,21,36.9,20.7,36.4,18.29,46.8,0.8333333333,78.1233333333,18.3566666667,34.56,20.5,42.8,17.5,36.73,0.2,753.8666666667,97.3333333333,1,54.6666666667,-0.1666666667,3.7408406846,3.7408406846 -60,30,20.7,38.29,18.1333333333,40.7,21,36.9,20.7,36.45,18.29,46.3333333333,1.0333333333,78.2633333333,18.3566666667,34.73,20.5,43.1333333333,17.5,36.8633333333,0.15,753.9333333333,97.6666666667,1,52.3333333333,-0.1833333333,43.6477718642,43.6477718642 -50,20,20.6,38.23,18.1,40.79,21,37,20.6,36.5,18.29,46,1.1,78.4,18.3566666667,34.79,20.5,43.53,17.4266666667,36.9633333333,0.1,754,98,1,50,-0.2,38.8435561908,38.8435561908 -60,20,20.6,38.29,18.1,40.8633333333,21,37,20.6,36.6333333333,18.29,45.6333333333,1.2225,78.425,18.39,34.9333333333,20.5,43.79,17.5,37.1633333333,0.2166666667,754.05,98.1666666667,1,49.8333333333,-0.0666666667,0.0928558409,0.0928558409 -50,20,20.5333333333,38.29,18,40.79,20.9633333333,37,20.8933333333,37,18.29,45.4333333333,1.4633333333,78.5,18.3233333333,35.06,20.39,43.9633333333,17.5,37.3266666667,0.3333333333,754.1,98.3333333333,1,49.6666666667,0.0666666667,37.8624802688,37.8624802688 -60,20,20.5333333333,38.3633333333,18,40.79,20.9633333333,37,21.2266666667,36.8,18.29,45.1633333333,1.6333333333,78.4333333333,18.39,35.29,20.39,44.09,17.5,37.4666666667,0.45,754.15,98.5,1,49.5,0.2,25.3934859182,25.3934859182 -70,20,20.5,38.5,17.89,40.9333333333,20.9266666667,37,21.2,36.3633333333,18.29,45.03,1.76,78.5,18.39,35.3633333333,20.39,44.2666666667,17.5,37.53,0.5666666667,754.2,98.6666666667,1,49.3333333333,0.3333333333,7.3387543787,7.3387543787 -60,30,20.5,38.5,17.89,41,20.9266666667,37.06,21.1333333333,36.29,18.26,44.7233333333,1.79,78.5,18.39,35.4666666667,20.39,44.4,17.5,37.6175,0.6833333333,754.25,98.8333333333,1,49.1666666667,0.4666666667,32.2864868329,32.2864868329 -60,20,20.39,38.4,17.8566666667,40.9666666667,20.9633333333,37.09,21.0666666667,36.4,18.2,44.59,1.8633333333,78.56,18.39,35.4,20.3566666667,44.53,17.5,37.7,0.8,754.3,99,1,49,0.6,3.4470314276,3.4470314276 -60,20,20.39,38.4,17.79,40.9666666667,20.89,37.09,21,36.3266666667,18.2,44.4666666667,1.9,78.69,18.39,35.4,20.3566666667,44.59,17.5,37.73,0.8666666667,754.3166666667,99,1,47.6666666667,0.6666666667,47.85874011,47.85874011 -50,0,20.3566666667,38.3633333333,17.79,41,20.89,37.09,20.89,36.36,18.2,44.3266666667,1.9,78.7633333333,18.39,35.4,20.29,44.8266666667,17.5,37.8633333333,0.9333333333,754.3333333333,99,1,46.3333333333,0.7333333333,24.4619594654,24.4619594654 -40,0,20.29,38.29,17.79,41,20.89,37.1266666667,20.8233333333,36.36,18.245,44.245,1.9333333333,78.9,18.39,35.4666666667,20.3566666667,45.0266666667,17.5,38,1,754.35,99,1,45,0.8,5.6887927349,5.6887927349 -50,0,20.29,38.4,17.79,41.06,20.89,37.2,20.76,36.29,18.2,44.09,1.86,78.9,18.3566666667,35.53,20.29,45.53,17.5,38.06,1.0666666667,754.3666666667,99,1,43.6666666667,0.8666666667,41.3517729146,41.3517729146 -40,0,20.29,38.4,17.7,41.09,20.9266666667,37.2,20.6333333333,36.29,18.2,44.03,1.9333333333,79,18.3566666667,35.6633333333,20.29,45.6633333333,17.5,38.2666666667,1.1333333333,754.3833333333,99,1,42.3333333333,0.9333333333,2.5454201386,2.5454201386 -50,0,20.2,38.29,17.7,41.09,21,37.2,20.5666666667,36.4,18.2,43.9,2,79,18.39,35.7,20.29,45.745,17.5666666667,38.4,1.2,754.4,99,1,41,1,13.2338977768,13.2338977768 -60,0,20.2,38.3633333333,17.7,41.09,21,37.09,20.4266666667,36.4,18.2,43.9,1.9666666667,79.1233333333,18.39,35.7,20.29,45.7,17.5,38.4,1.0166666667,754.4333333333,99,1,39.5,0.8166666667,29.5511665987,29.5511665987 -50,0,20.2,38.4,17.7,41.09,21.0666666667,37.1633333333,20.29,36.4,18.2,43.79,1.9,79.2633333333,18.39,35.8266666667,20.29,45.7,17.5,38.4,0.8333333333,754.4666666667,99,1,38,0.6333333333,13.2042651065,13.2042651065 -40,0,20.2,38.4,17.6333333333,41.1266666667,21.1,37.2,20.23,36.4,18.2,43.73,1.5966666667,79.33,18.39,35.9,20.26,45.56,17.5,38.53,0.65,754.5,99,1,36.5,0.45,34.7544920398,34.7544920398 -30,0,20.1,38.4,17.6333333333,41.0666666667,21.1,37.2,20.1,36.4,18.2,43.6633333333,1.1966666667,79.19,18.39,35.9666666667,20.2,45.5,17.5,38.6633333333,0.4666666667,754.5333333333,99,1,35,0.2666666667,7.6480916701,7.6480916701 -20,0,20.1,38.3266666667,17.6,41.06,21.1,37.2,20.0333333333,36.4,18.2,43.59,0.65,78.995,18.39,35.9,20.2,45.4333333333,17.5,38.79,0.2833333333,754.5666666667,99,1,33.5,0.0833333333,33.5100749973,33.5100749973 -30,0,20.05,38.245,17.6,41,21.1,37.2,19.89,36.4,18.2,43.56,0.1333333333,78.4933333333,18.39,36,20.2,45.4333333333,17.5,38.8633333333,0.1,754.6,99,1,32,-0.1,39.2481075367,39.2481075367 -30,0,20,38.2,17.5666666667,41,21,37.23,19.8566666667,36.3633333333,18.1333333333,43.5,-0.2,78.2266666667,18.39,36,20.2,45.29,17.5,38.9333333333,-0.05,754.6666666667,99,1,29.6666666667,-0.2333333333,0.9315412492,0.9315412492 -50,0,20,38.2,17.5,41,21,37.29,19.79,36.29,18.1333333333,43.5,-0.4666666667,78.06,18.39,36.03,20.2,45.23,17.5,39,-0.2,754.7333333333,99,1,27.3333333333,-0.3666666667,44.2515268107,44.2515268107 -50,0,20,38.1633333333,17.5,41,21,37.29,19.7,36.3266666667,18.1333333333,43.4333333333,-0.6666666667,78,18.39,36.09,20.1666666667,45.09,17.5666666667,39.03,-0.35,754.8,99,1,25,-0.5,31.2982067466,31.2982067466 -60,0,19.9266666667,38.09,17.5,41,21,37.29,19.6333333333,36.3266666667,18.2,43.29,-0.7,78.09,18.39,36.06,20.1666666667,45.03,17.5,39.09,-0.5,754.8666666667,99,1,22.6666666667,-0.6333333333,44.7409700835,44.7409700835 -50,0,19.89,38.09,17.5,41,21,37.29,19.6,36.29,18.1333333333,43.29,-0.6333333333,78.1566666667,18.39,35.9333333333,20.2,45.1266666667,17.5,39.2,-0.65,754.9333333333,99,1,20.3333333333,-0.7666666667,0.5416271975,0.5416271975 -40,0,19.89,38.09,17.4266666667,40.9333333333,21,37.29,19.5333333333,36.29,18.1,43.2,-0.4333333333,78.4333333333,18.39,35.9,20.1333333333,45.2,17.5,39.2675,-0.8,755,99,1,18,-0.9,12.1916190838,12.1916190838 -50,0,19.89,38.09,17.39,40.9,21,37.29,19.4633333333,36.26,18.1,43.2,-0.1666666667,78.56,18.39,35.925,20.1,45.09,17.5,39.3633333333,-0.75,755.0833333333,99.1666666667,1,17.5,-0.8333333333,10.7049902901,10.7049902901 -40,0,19.8233333333,38.03,17.39,40.9,21,37.3725,19.39,36.26,18.1,43.09,-0.3,78.4333333333,18.39,36,20.1,45.03,17.5,39.4,-0.7,755.1666666667,99.3333333333,1,17,-0.7666666667,14.7963957628,14.7963957628 -50,0,19.79,38,17.34,40.95,21,37.4,19.3566666667,36.29,18.1,43.09,-0.6333333333,78.3,18.39,36.09,20.0666666667,44.9666666667,17.5,39.4666666667,-0.65,755.25,99.5,1,16.5,-0.7,20.317854837,20.317854837 -50,0,19.79,38,17.29,41,21,37.5,19.3566666667,36.29,18.1,43.09,-0.7,78.2633333333,18.39,36.1633333333,20,44.9666666667,17.5,39.53,-0.6,755.3333333333,99.6666666667,1,16,-0.6333333333,26.7724866746,26.7724866746 -50,0,19.79,38,17.23,40.9333333333,21,37.5,19.29,36.29,18.1,43,-0.6333333333,78.2633333333,18.39,36.2,20,44.9,17.5666666667,39.6633333333,-0.55,755.4166666667,99.8333333333,1,15.5,-0.5666666667,42.9588545812,42.9588545812 -50,0,19.73,38,17.26,40.9666666667,21,37.53,19.23,36.23,18.0333333333,42.9333333333,-0.6,78.23,18.39,36.2,20,45.0266666667,17.5,39.7,-0.5,755.5,100,1,15,-0.5,42.4188044737,42.4188044737 -50,0,19.7,38,17.2,40.9666666667,21,37.53,19.26,36.26,18.0333333333,42.9333333333,-0.8666666667,78.03,18.39,36.2,20,45.2,17.5,39.76,-0.5166666667,755.6,99.8333333333,1.1666666667,15,-0.5333333333,0.2908235299,0.2908235299 -50,0,19.7,38.06,17.2,41,21.0666666667,37.6633333333,19.2,36.2,18.1,43,-1.1333333333,77.73,18.39,36.26,20,45.2,17.5,39.79,-0.5333333333,755.7,99.6666666667,1.3333333333,15,-0.5666666667,34.9435933167,34.9435933167 -40,0,19.7,38.06,17.1333333333,41,21,37.59,19.1,36.2,18,42.8633333333,-1.32,77.4975,18.39,36.2,20,45.2,17.5,39.79,-0.55,755.8,99.5,1.5,15,-0.6,27.4382461561,27.4382461561 -30,0,19.6333333333,37.9333333333,17.1,41,21,37.59,19.1,36.2,18,42.8633333333,-1.5666666667,77.1933333333,18.39,36.2,20,45.09,17.5,39.9,-0.5666666667,755.9,99.3333333333,1.6666666667,15,-0.6333333333,15.1027494925,15.1027494925 -20,0,19.6666666667,37.9666666667,17.1,41,21,37.59,19.0666666667,36.1633333333,18.0666666667,42.9,-1.7666666667,76.9666666667,18.39,36.23,19.9266666667,45.09,17.5,39.9666666667,-0.5833333333,756,99.1666666667,1.8333333333,15,-0.6666666667,4.5106851845,4.5106851845 -30,10,19.6,37.9,17.1,41.09,21,37.6266666667,19,36.0225,18,42.9,-1.8266666667,76.9666666667,18.39,36.29,19.9266666667,45.1266666667,17.5666666667,40.1266666667,-0.6,756.1,99,2,15,-0.7,37.0238665026,37.0238665026 -70,0,19.6,37.995,17.0333333333,41.09,20.9266666667,37.7,18.9266666667,36,18,43.1933333333,-1.76,77.03,18.4266666667,36.53,20,45.2,17.5,40.2,-0.5666666667,756.1666666667,99.1666666667,2,19,-0.65,25.0485235709,25.0485235709 -80,0,19.6,38.53,17.0333333333,41.2,20.8566666667,37.43,18.89,35.7233333333,17.9266666667,43.66,-1.7,77.1566666667,18.4266666667,36.3233333333,19.9633333333,44.7333333333,17.6,40.1633333333,-0.5333333333,756.2333333333,99.3333333333,2,23,-0.6,31.3672407414,31.3672407414 -60,10,19.6,38.7233333333,17.0333333333,41.2,20.79,37.3633333333,18.89,35.4633333333,17.89,44.2666666667,-1.43,77.6933333333,18.3566666667,35.4233333333,19.89,44.0666666667,17.6,40.03,-0.5,756.3,99.5,2,27,-0.55,41.7473198613,41.7473198613 -50,0,19.6,38.6633333333,17.0666666667,41.1633333333,20.7,37.4,18.79,35.29,17.8233333333,44.5266666667,-1.0966666667,78.0266666667,18.23,34.83,19.8566666667,43.3333333333,17.5,39.6333333333,-0.4666666667,756.3666666667,99.6666666667,2,31,-0.5,34.9820400588,34.9820400588 -50,0,19.6,38.4633333333,17.0666666667,41.09,20.7,37.1933333333,18.79,35.23,17.79,44.8266666667,-0.7333333333,78.2266666667,18.2,34.3333333333,19.79,42.6666666667,17.5,39.3,-0.4333333333,756.4333333333,99.8333333333,2,35,-0.45,42.9130746052,42.9130746052 -50,0,19.6,38.29,17.0333333333,40.8633333333,20.6,36.76,18.79,35.2,17.79,44.9666666667,-0.4666666667,78.3666666667,18.2,34,19.79,42.1,17.5,38.93,-0.4,756.5,100,2,39,-0.4,3.3702371642,3.3702371642 -40,0,19.6,38.23,17.1,40.73,20.6,36.6266666667,18.79,35.2,17.7,45.09,-0.3,78.5,18.1,33.56,19.73,41.6933333333,17.5,38.4975,-0.1833333333,756.5833333333,99.8333333333,2,38.6666666667,-0.2166666667,31.1186042032,31.1186042032 -50,0,19.6,37.9666666667,17.1333333333,40.59,20.5,36.4666666667,18.76,35.2,17.7,45.09,-0.3,78.5,18.1,33.2925,19.7,41.3333333333,17.5,38.4,0.0333333333,756.6666666667,99.6666666667,2,38.3333333333,-0.0333333333,23.8107122364,23.8107122364 -60,0,19.6,37.9,17.2,40.4975,20.5,36.3725,18.7,35.2,17.7,45.23,-0.1333333333,78.53,18.1,33.03,19.7,41.0666666667,17.5,38.0266666667,0.25,756.75,99.5,2,38,0.15,2.2181645269,2.2181645269 -60,0,19.6,37.7,17.2,40.3266666667,20.4266666667,36.23,18.7,35.2,17.7,45.3175,0.1333333333,78.59,18,32.7,19.7,40.7233333333,17.4266666667,37.7666666667,0.4666666667,756.8333333333,99.3333333333,2,37.6666666667,0.3333333333,28.4834159189,28.4834159189 -50,0,19.6,37.7,17.3233333333,40.3333333333,20.39,36.03,18.7,35.26,17.7,45.3266666667,0.4,78.7266666667,18,32.6266666667,19.6333333333,40.4633333333,17.5,37.56,0.6833333333,756.9166666667,99.1666666667,2,37.3333333333,0.5166666667,41.7129439418,41.7129439418 -40,10,19.5,37.7,17.39,40.0666666667,20.39,36.09,18.7,35.29,17.6333333333,45.23,0.8,78.8666666667,18,32.5,19.6,40.1633333333,17.5,37.4333333333,0.9,757,99,2,37,0.7,8.5377182113,8.5377182113 -50,10,19.5,37.7,17.39,39.76,20.3566666667,36,18.7,35.29,17.6333333333,45.23,1.245,78.95,18,32.4333333333,19.6,40.03,17.39,37.1633333333,1.0333333333,757.05,98.6666666667,2.1666666667,41,0.8,41.4326605038,41.4326605038 -30,10,19.5,37.6633333333,17.39,39.6266666667,20.29,36,18.7,35.4,17.6,45.09,1.7666666667,79,17.89,32.4,19.5666666667,39.9,17.39,37.09,1.1666666667,757.1,98.3333333333,2.3333333333,45,0.9,33.9358342346,33.9358342346 -30,0,19.5,37.59,17.3566666667,39.59,20.29,35.9666666667,18.7,35.4666666667,17.6,45.09,2.1,79.06,17.89,32.4,19.5,39.8266666667,17.39,37,1.3,757.15,98,2.5,49,1,26.3664725819,26.3664725819 -20,0,19.5,37.59,17.29,39.7233333333,20.29,35.8266666667,18.6666666667,35.5,17.6,45.09,2.4333333333,79.26,17.89,32.4,19.5,39.7,17.39,37,1.4333333333,757.2,97.6666666667,2.6666666667,53,1.1,40.9411928616,40.9411928616 -30,0,19.5,37.59,17.3233333333,39.9633333333,20.2,35.79,18.6,35.5,17.6,45,2.5,79.4666666667,17.89,32.4,19.4633333333,39.56,17.39,36.9666666667,1.5666666667,757.25,97.3333333333,2.8333333333,57,1.2,47.7394298301,47.7394298301 -60,0,19.39,37.53,17.4633333333,40.09,20.2,35.79,18.6,35.6266666667,17.6,45,2.56,79.53,17.89,32.4,19.39,39.5,17.39,36.9,1.7,757.3,97,3,61,1.3,10.5032263906,10.5032263906 -50,0,19.39,37.59,17.6333333333,40.0266666667,20.2,35.8266666667,18.675,35.7675,17.6,45,2.56,79.59,17.89,32.4,19.4633333333,39.4666666667,17.39,36.76,2.1333333333,757.3,95.5,2.8333333333,54.3333333333,1.4833333333,2.0302487304,2.0302487304 -50,0,19.445,37.545,17.8266666667,39.6333333333,20.2,35.8266666667,18.7,35.79,17.6,45,2.9633333333,79.7266666667,17.89,32.4333333333,19.39,39.3266666667,17.39,36.7,2.5666666667,757.3,94,2.6666666667,47.6666666667,1.6666666667,29.2299166904,29.2299166904 -40,0,19.5,37.5,18.1633333333,39.1,20.2,35.79,18.73,35.79,17.5,44.9,3.2233333333,79.8,17.89,32.5,19.39,39.26,17.5,36.7,3,757.3,92.5,2.5,41,1.85,5.5886298185,5.5886298185 -50,0,19.4266666667,37.2266666667,18.5633333333,38.0266666667,20.1333333333,35.6566666667,18.79,35.79,17.5,44.8266666667,3.6266666667,79.8333333333,17.89,32.53,19.39,39.2,17.5,36.76,3.4333333333,757.3,91,2.3333333333,34.3333333333,2.0333333333,6.564086338,6.564086338 -40,0,19.39,36.8266666667,18.5666666667,36.6333333333,20,35.2666666667,18.79,35.7,17.5,44.79,3.8333333333,79.9666666667,17.89,32.59,19.39,39.23,17.5,36.9,3.8666666667,757.3,89.5,2.1666666667,27.6666666667,2.2166666667,35.8197500813,35.8197500813 -40,0,19.39,36.9,18.5,36.5,20,35.4,18.8566666667,35.76,17.5,44.79,4.3566666667,80,17.89,32.73,19.39,39.29,17.5,36.9666666667,4.3,757.3,88,2,21,2.4,31.4798800973,31.4798800973 -50,0,19.39,37.03,18.6333333333,36.6266666667,20,35.5,18.89,35.8266666667,17.5,44.6633333333,5.0966666667,80.06,17.9633333333,32.79,19.39,39.3266666667,17.6,37.045,4.4833333333,757.3,86.5,2.1666666667,24.1666666667,2.3333333333,46.5046329307,46.5046329307 -70,0,19.4633333333,39.89,18.7,36.7,20.0666666667,35.6333333333,18.9633333333,35.9,17.5,44.53,6.0666666667,80.03,18.0333333333,32.8266666667,19.39,39.4,17.6,37.2666666667,4.6666666667,757.3,85,2.3333333333,27.3333333333,2.2666666667,23.4497364261,23.4497364261 -60,0,19.6,39.5333333333,18.76,37.0666666667,20.1,35.73,19,36,17.5,44.5,6.4,80.4233333333,18.1,32.9,19.39,39.29,17.6,37.4,4.85,757.3,83.5,2.5,30.5,2.2,15.28666995,15.28666995 -40,0,19.6,39,18.625,37.32,20.1,35.8975,19,35.9333333333,17.5,44.5,6.3,80.8666666667,18.0333333333,32.7666666667,19.39,39.29,17.6,37.3633333333,5.0333333333,757.3,82,2.6666666667,33.6666666667,2.1333333333,41.1002715002,41.1002715002 -40,0,19.5,38.79,18.6,37.56,20.1,36.06,19,35.79,17.5,44.545,6.3666666667,81.06,18.0333333333,32.7,19.39,39.29,17.6,37.23,5.2166666667,757.3,80.5,2.8333333333,36.8333333333,2.0666666667,27.3783869343,27.3783869343 -80,0,19.5666666667,38.73,18.6,37.6633333333,20.1,36.1266666667,19,35.8633333333,17.5,44.59,6.845,81.245,18.1,32.6266666667,19.39,39.1566666667,17.6,37.1266666667,5.4,757.3,79,3,40,2,11.3396075089,11.3396075089 -390,0,19.6,38.56,18.6666666667,37.59,20.1,36.2,19,35.9,17.5,44.59,7.1333333333,81.53,18.2,32.3633333333,19.5,38.9666666667,17.6666666667,37.46,5.5666666667,757.3,77.6666666667,3,40,1.9,5.4490240174,5.4490240174 -180,0,19.6666666667,38.56,18.79,37.4,20.1,36.2,19.0666666667,35.9,17.5,44.56,7.6666666667,81.59,18.26,32.1566666667,19.5666666667,38.8266666667,17.6666666667,37.76,5.7333333333,757.3,76.3333333333,3,40,1.8,40.17452423,40.17452423 -50,0,19.7,38.56,18.79,37.3266666667,20.1,36.2,19.1,35.9,17.5,44.56,8.13,81.9,18.29,31.9633333333,19.5333333333,38.6333333333,17.6666666667,37.7,5.9,757.3,75,3,40,1.7,42.6075060503,42.6075060503 -70,0,19.7,38.4333333333,18.79,37.26,20.1,36.2,19.1,35.8266666667,17.5,44.59,8.2633333333,82.0266666667,18.29,31.8233333333,19.6,38.4333333333,17.7,37.8266666667,6.0666666667,757.3,73.6666666667,3,40,1.6,17.0108349994,17.0108349994 -70,0,19.7,38.26,18.8566666667,37.2,20.1666666667,36.26,19.1,35.7,17.5,44.59,8.6,82.19,18.39,31.6666666667,19.55,38.245,17.7,37.8266666667,6.2333333333,757.3,72.3333333333,3,40,1.5,6.3137321034,6.3137321034 -220,0,19.76,38.1266666667,18.9266666667,37.0266666667,20.2,36.29,19.1,35.7,17.5,44.5,8.9333333333,82.5233333333,18.4633333333,31.5333333333,19.6333333333,38.09,17.7,37.73,6.4,757.3,71,3,40,1.4,24.3848996703,24.3848996703 -310,0,19.79,38.1933333333,19,36.8266666667,20.2,36.29,19.1,35.645,17.6933333333,57.8333333333,9.1,82.76,18.5,31.3266666667,19.7,37.9633333333,17.7,37.93,6.4166666667,757.2833333333,69.6666666667,3.1666666667,40,1.1333333333,42.8535471554,42.8535471554 -80,0,19.79,38.6,19,36.79,20.23,36.4333333333,19.1,35.56,18.4966666667,72.66,9.36,82.9666666667,18.5666666667,31.1333333333,19.7,37.76,17.7,38.03,6.4333333333,757.2666666667,68.3333333333,3.3333333333,40,0.8666666667,31.8960917415,31.8960917415 -60,10,19.79,38.995,19,36.8633333333,20.29,36.56,19.1,35.36,18.1633333333,72.7266666667,8.9633333333,81.7,18.6,30.8566666667,19.7,37.7,17.7,37.9633333333,6.45,757.25,67,3.5,40,0.6,16.244764335,16.244764335 -50,0,19.89,39.3266666667,19,37.03,20.29,36.6266666667,19.1,35.2,18.0666666667,71.6966666667,8.83,81.8933333333,18.6,30.73,19.7,37.56,17.7,38.2666666667,6.4666666667,757.2333333333,65.6666666667,3.6666666667,40,0.3333333333,45.4351852648,45.4351852648 -60,0,19.89,39.5266666667,19,37.1633333333,20.29,36.76,19.1,35.1266666667,18,70.2966666667,9.1,82.6,18.6333333333,30.6,19.76,37.36,17.7,38.4666666667,6.4833333333,757.2166666667,64.3333333333,3.8333333333,40,0.0666666667,8.8128755568,8.8128755568 -60,0,19.9266666667,39.7,19,37.5,20.29,36.8266666667,19.2,35.09,17.9633333333,68.3333333333,9.4333333333,82.9333333333,18.76,30.46,19.8233333333,37.1633333333,17.79,38.89,6.5,757.2,63,4,40,-0.2,17.278641602,17.278641602 -50,0,20,39.7,19,37.8333333333,20.29,36.9,19.2,35.03,17.89,66.5933333333,9.5633333333,82.6666666667,18.89,30.1666666667,19.89,37.03,17.79,39.1633333333,6.5666666667,757.1666666667,63.3333333333,3.8333333333,40,-0.0666666667,32.9032334848,32.9032334848 -50,0,20,39.89,19,38.09,20.39,37.03,19.2,34.9666666667,17.8566666667,64.7566666667,9.69,82.2666666667,18.89,29.96,20,36.8333333333,17.79,39.45,6.6333333333,757.1333333333,63.6666666667,3.6666666667,40,0.0666666667,38.1076397491,38.1076397491 -40,0,20,40.09,19.0666666667,38.2233333333,20.39,37.09,19.2,34.9,17.79,63.4966666667,9.6633333333,79.9633333333,19,29.8566666667,20,36.7,17.79,39.53,6.7,757.1,64,3.5,40,0.2,13.6561457301,13.6561457301 -30,0,20.1,40.3266666667,19.1,38.3266666667,20.39,37.09,19.2,34.8633333333,17.79,61.3266666667,9.39,78.6966666667,19.025,29.7225,20.1,36.6633333333,17.79,39.6633333333,6.7666666667,757.0666666667,64.3333333333,3.3333333333,40,0.3333333333,3.3087412943,3.3087412943 -20,10,20.1,40.4,19.075,38.45,20.39,37.1725,19.2,34.79,17.79,59.7333333333,9.69,80.76,19.1,29.6333333333,20.1,36.53,17.79,39.7,6.8333333333,757.0333333333,64.6666666667,3.1666666667,40,0.4666666667,18.1166189141,18.1166189141 -20,0,20.1,40.3633333333,19.0666666667,38.4666666667,20.3233333333,37.26,19.2,34.6633333333,17.745,58.245,9.74,79.9975,19.1,29.6,20.1,36.4666666667,17.79,39.76,6.9,757,65,3,40,0.6,8.0915095052,8.0915095052 -40,0,20.1,40.29,19,38.29,20.29,37.29,19.2,34.53,17.7,56.9966666667,9.89,80.8233333333,19.1,29.5333333333,20.1,36.4,17.79,39.79,6.85,757,64.6666666667,3.1666666667,40,0.5,2.3932774202,2.3932774202 -50,0,20.1,40.2,19,38.29,20.29,37.4,19.1666666667,34.43,17.7,56.09,9.4,76.4,19,29.34,20.0666666667,36.3333333333,17.79,39.79,6.8,757,64.3333333333,3.3333333333,40,0.4,24.5656192186,24.5656192186 -50,0,20.1,40.2,18.9633333333,38.2,20.29,37.4,19.1,34.23,17.7,55.4233333333,9.1666666667,72.7266666667,19,29.23,20,36.2,17.73,39.79,6.75,757,64,3.5,40,0.3,17.1054442413,17.1054442413 -60,0,20.0666666667,39.9666666667,18.89,38.1266666667,20.29,37.4666666667,19.1,34.1633333333,17.7,54.83,9.13,76.7,18.89,29.1666666667,20,36.1633333333,17.79,39.79,6.7,757,63.6666666667,3.6666666667,40,0.2,32.9239012208,32.9239012208 -40,0,20,39.8266666667,18.89,38,20.29,37.5,19.1,34.03,17.7,54.0633333333,9.19,76.8933333333,18.89,29.1,20,36.09,17.79,39.7,6.65,757,63.3333333333,3.8333333333,40,0.1,2.0824716194,2.0824716194 -40,0,20,39.7,18.8233333333,38,20.29,37.5,19,33.9666666667,17.7,53.53,9.2566666667,78.9666666667,18.89,29.1666666667,19.9633333333,36.06,17.79,39.7,6.6,757,63,4,40,0,33.248369419,33.248369419 -50,0,20,39.6266666667,18.79,38,20.29,37.4333333333,19,33.9,17.7,52.9,9.2566666667,76.3,18.8233333333,29.0333333333,19.89,36,17.79,39.59,6.6666666667,756.95,62.1666666667,3.8333333333,40,-0.15,46.9642882119,46.9642882119 -40,10,20,39.56,18.73,37.9333333333,20.29,37.5,19,33.845,17.7,52.4266666667,9.2633333333,76.3966666667,18.79,28.9633333333,19.89,35.9333333333,17.79,39.53,6.7333333333,756.9,61.3333333333,3.6666666667,40,-0.3,6.7706121481,6.7706121481 -50,0,20,39.4333333333,18.6666666667,37.8633333333,20.26,37.3633333333,19,33.7,17.6333333333,51.7966666667,9.3233333333,76.3966666667,18.79,28.8233333333,19.89,35.79,17.79,39.4,6.8,756.85,60.5,3.5,40,-0.45,44.1669148044,44.1669148044 -50,0,20,39.45,18.6666666667,37.79,20.2,37.29,19,33.6266666667,17.7,51.4633333333,9.3233333333,75.1,18.79,28.76,19.89,35.73,17.73,39.4,6.8666666667,756.8,59.6666666667,3.3333333333,40,-0.6,18.4906307142,18.4906307142 -60,0,20,39.3633333333,18.6,37.6633333333,20.29,37.3633333333,18.9266666667,33.56,17.7,50.99,9.0633333333,73.3666666667,18.79,28.6333333333,19.89,35.59,17.76,39.3266666667,6.9333333333,756.75,58.8333333333,3.1666666667,40,-0.75,28.7787459558,28.7787459558 -40,0,20,39.29,18.6,37.59,20.23,37.23,18.9266666667,33.4333333333,17.7,50.5966666667,8.7333333333,74.2966666667,18.79,28.4633333333,19.89,35.4633333333,17.7,39.3266666667,7,756.7,58,3,40,-0.9,29.551738454,29.551738454 -40,0,19.9633333333,39.1633333333,18.4633333333,37.6633333333,20.29,37.29,18.89,33.3633333333,17.6,50.1933333333,8.5333333333,75.2966666667,18.79,28.39,19.8566666667,35.3333333333,17.76,39.2233333333,6.8166666667,756.7166666667,59.3333333333,3,40,-0.75,29.473331559,29.473331559 -30,0,19.89,39.03,18.39,37.645,20.29,37.29,18.89,33.29,17.6,49.895,8.19,74.5,18.79,28.29,19.79,35.2,17.7,39.045,6.6333333333,756.7333333333,60.6666666667,3,40,-0.6,6.0384278069,6.0384278069 -40,0,19.89,38.6933333333,18.3566666667,37.6633333333,20.2,37.1266666667,18.8566666667,33.26,17.6,49.5266666667,8.0666666667,76.7333333333,18.7,28.29,19.79,35.09,17.7,38.79,6.45,756.75,62,3,40,-0.45,38.9191317721,38.9191317721 -60,0,19.89,38.5,18.29,37.6633333333,20.2,37.0666666667,18.79,33.2,17.6,49.2666666667,7.8666666667,77.9333333333,18.7,28.34,19.79,35.1633333333,17.7,38.56,6.2666666667,756.7666666667,63.3333333333,3,40,-0.3,36.1431786092,36.1431786092 -80,10,19.89,38.3633333333,18.2,37.59,20.15,36.8,18.79,33.2,17.6,48.9666666667,7.6925,77.0475,18.6666666667,28.39,19.79,35.4633333333,17.7,38.3,6.0833333333,756.7833333333,64.6666666667,3,40,-0.15,47.4435896962,47.4435896962 -100,0,19.89,38.29,18.125,37.645,20.1,36.76,18.79,33.2,17.6,48.7666666667,7.53,77.3966666667,18.6,28.39,19.8566666667,35.7233333333,17.7,37.8333333333,5.9,756.8,66,3,40,0,27.9271459556,27.9271459556 -110,0,19.8566666667,38.4266666667,18.0333333333,37.59,20.0333333333,36.6266666667,18.76,33.23,17.5,48.45,7.33,78.4666666667,18.6,28.5333333333,20.0333333333,35.9633333333,17.7,37.5666666667,5.8,756.8666666667,66.6666666667,3,40,0.0333333333,44.6738471859,44.6738471859 -110,10,19.79,38.76,18,37.73,20.1,36.7,18.7,33.29,17.5,48.26,7.0633333333,78.26,18.5333333333,28.6,20.1666666667,36.09,17.7,37.1633333333,5.7,756.9333333333,67.3333333333,3,40,0.0666666667,31.8030794733,31.8030794733 -260,20,19.79,38.59,18,37.99,20.1,36.6266666667,18.7,33.53,17.5,48.2,6.83,78.5,18.5,28.73,20.29,36.3266666667,17.7,37.03,5.6,757,68,3,40,0.1,0.9406051598,0.9406051598 -760,20,19.8566666667,38.53,17.89,38.5,20.1,36.6266666667,18.7,34.2633333333,17.5,48.06,6.5633333333,78.5,18.5,28.8566666667,20.29,36.5266666667,17.7,36.8633333333,5.5,757.0666666667,68.6666666667,3,40,0.1333333333,34.3225163058,34.3225163058 -660,10,19.89,40.8,17.89,39.1666666667,20.1,36.76,18.79,35,17.5,48,6.3666666667,78.8,18.4633333333,28.9933333333,20.39,36.59,17.7,36.6566666667,5.4,757.1333333333,69.3333333333,3,40,0.1666666667,6.164267112,6.164267112 -130,30,19.89,46.66,17.89,42.8333333333,20.1,36.73,18.79,35.06,17.5,47.9633333333,6.2266666667,78.8,18.39,29.2,20.39,36.59,17.6666666667,36.2966666667,5.3,757.2,70,3,40,0.2,9.914692922,9.914692922 -110,20,20.0333333333,48.6933333333,17.9633333333,45.0333333333,20.1,37.3233333333,18.79,35.3633333333,17.5,48.2966666667,6.06,79.1233333333,18.39,29.0666666667,20.3566666667,36.4,17.6,36.03,5.3166666667,757.1666666667,70.3333333333,3,40,0.2833333333,24.8781992705,24.8781992705 -120,20,20.1666666667,46.56,18,44.2333333333,20.1,38.1566666667,18.7225,35.195,17.5,48.6933333333,6,79.33,18.39,29,20.29,36.05,17.6,35.76,5.3333333333,757.1333333333,70.6666666667,3,40,0.3666666667,36.7330816807,36.7330816807 -130,40,20.23,44.4633333333,18,43.2333333333,20.1666666667,38.43,18.7,35.1633333333,17.5,48.9,5.9,79.59,18.39,29.0666666667,20.29,35.86,17.6,35.6266666667,5.35,757.1,71,3,40,0.45,5.039149744,5.039149744 -120,20,20.29,42.9233333333,18.1,42.5333333333,20.2,38.4666666667,18.73,36.3966666667,17.5,49,5.9,79.73,18.39,29.26,20.29,35.8666666667,17.6,35.6633333333,5.3666666667,757.0666666667,71.3333333333,3,40,0.5333333333,34.2075524386,34.2075524386 -130,20,20.39,41.6966666667,18.1,42,20.2,38.4,18.79,36.5966666667,17.5,48.86,5.7633333333,79.4666666667,18.39,29.3233333333,20.3566666667,36.4,17.6,35.6633333333,5.3833333333,757.0333333333,71.6666666667,3,40,0.6166666667,46.1143118679,46.1143118679 -120,40,20.4175,40.92,18.1333333333,41.79,20.2,38.1633333333,18.79,36.53,17.5,48.79,5.69,79.26,18.3233333333,29.4633333333,20.5333333333,36.6566666667,17.6,35.59,5.4,757,72,3,40,0.7,46.3599592797,46.3599592797 -110,40,20.5,40.39,18.2,41.6566666667,20.2,38.09,18.9966666667,37.1233333333,17.5,48.6566666667,5.4666666667,79.1266666667,18.29,29.6,20.6,36.79,17.6,35.59,5.2333333333,756.8666666667,72.5,3.1666666667,40,0.6333333333,40.9956418327,40.9956418327 -100,30,20.6333333333,39.9666666667,18.29,41.5266666667,20.2,38.06,19.63,37.56,17.5,48.56,5.26,78.8666666667,18.29,29.6666666667,20.7,37.1266666667,17.5,35.5,5.0666666667,756.7333333333,73,3.3333333333,40,0.5666666667,0.1532932394,0.1532932394 -90,30,20.7,39.6933333333,18.3566666667,41.2666666667,20.2,37.9333333333,19.9633333333,37.0266666667,17.5,48.4333333333,5.06,78.59,18.26,29.79,20.7,37.26,17.5,35.5,4.9,756.6,73.5,3.5,40,0.5,17.6606513327,17.6606513327 -100,30,20.79,39.3633333333,18.4266666667,41.06,20.26,37.93,20.0333333333,36.6933333333,17.5333333333,48.5,4.7975,78.1175,18.2,29.93,20.79,37.29,17.55,35.5,4.7333333333,756.4666666667,74,3.6666666667,40,0.4333333333,38.9064984862,38.9064984862 -100,30,20.79,39.1566666667,18.5,40.9333333333,20.26,37.8633333333,20.2933333333,36.9666666667,18.1266666667,67.9,4.59,77.8333333333,18.245,30.1,20.79,37.3633333333,17.5,35.5,4.5666666667,756.3333333333,74.5,3.8333333333,40,0.3666666667,25.6534631248,25.6534631248 -130,20,20.89,39.03,18.6,40.89,20.29,37.79,20.8933333333,36.7966666667,18.5,71.1,4.7266666667,78.66,18.3233333333,30.9933333333,20.79,37.4333333333,17.5,35.4333333333,4.4,756.2,75,4,40,0.3,0.4581635469,0.4581635469 -100,0,20.9633333333,39.1633333333,18.6,41.24,20.3233333333,37.79,21.1,36.33,18.5666666667,59.0266666667,4.8666666667,78.9333333333,18.3233333333,31.4,20.79,37.56,17.5,35.4666666667,4.45,756.1166666667,74.8333333333,4,40,0.3166666667,40.5733405729,40.5733405729 -90,0,21,39.26,18.6,41.43,20.3233333333,37.8633333333,21.0666666667,35.96,18.65,52.145,4.9333333333,79.03,18.39,31.6333333333,20.79,37.59,17.5,35.4,4.5,756.0333333333,74.6666666667,4,40,0.3333333333,5.0846642233,5.0846642233 -100,0,21,39.1266666667,18.7,41.4666666667,20.3566666667,37.9333333333,20.9266666667,35.5,18.79,49.03,5,78.9633333333,18.39,31.7,20.79,37.59,17.4633333333,35.3333333333,4.55,755.95,74.5,4,40,0.35,43.6657656799,43.6657656799 -100,0,21.1,39.1333333333,18.7,41.4,20.3566666667,37.9333333333,20.76,35.0266666667,18.8566666667,47.6966666667,5.06,78.8633333333,18.39,31.73,20.79,37.59,17.4633333333,35.26,4.6,755.8666666667,74.3333333333,4,40,0.3666666667,16.7094642296,16.7094642296 -100,0,21.1,38.9333333333,18.6666666667,41.26,20.39,37.9333333333,20.6333333333,34.7666666667,18.9266666667,46.4333333333,5.06,78.3966666667,18.39,31.93,20.79,37.59,17.4633333333,35.26,4.65,755.7833333333,74.1666666667,4,40,0.3833333333,25.0021148007,25.0021148007 -100,0,21.1,38.76,18.6,41.1266666667,20.3233333333,37.9333333333,20.4633333333,34.4666666667,18.9266666667,45.5666666667,5,78.23,18.39,31.8566666667,20.8233333333,37.6266666667,17.4633333333,35.2,4.7,755.7,74,4,40,0.4,16.5276235319,16.5276235319 -80,10,21.1,38.5666666667,18.6,40.9666666667,20.29,37.9,20.3233333333,34.3266666667,19,44.7666666667,5.06,77.8966666667,18.3233333333,31.79,20.89,37.76,17.39,35.09,4.6833333333,755.5333333333,74.3333333333,4.1666666667,40,0.45,24.8220080743,24.8220080743 -50,0,21.1,38.4,18.6,40.9,20.29,37.9,20.2266666667,34.2233333333,19,44.3,5.09,77.9,18.29,31.79,20.89,37.7,17.39,35.03,4.6666666667,755.3666666667,74.6666666667,4.3333333333,40,0.5,16.0931486054,16.0931486054 -40,0,21.0333333333,38.3266666667,18.5,40.66,20.29,38,20.075,34.2675,18.93,44.1933333333,5.03,77.9,18.29,31.8566666667,20.89,37.96,17.4266666667,35.46,4.65,755.2,75,4.5,40,0.55,18.8329150667,18.8329150667 -40,0,21,38.1633333333,18.5,40.3266666667,20.23,38,19.9266666667,34.5266666667,18.73,44.8,5,77.93,18.3233333333,32.1266666667,20.89,38.55,17.5,36.5333333333,4.6333333333,755.0333333333,75.3333333333,4.6666666667,40,0.6,6.4554643352,6.4554643352 -50,0,20.9266666667,38.09,18.39,40.23,20.2,38.09,19.89,34.7,18.6,45.53,5,78.1233333333,18.39,32.3333333333,20.89,39.0966666667,17.5,36.9633333333,4.6166666667,754.8666666667,75.6666666667,4.8333333333,40,0.65,6.5494213952,6.5494213952 -50,0,20.89,38.09,18.3233333333,40.3633333333,20.2,38.09,19.8233333333,34.76,18.5333333333,45.99,4.9333333333,77.9566666667,18.39,32.5666666667,20.89,39.49,17.5,37.2233333333,4.6,754.7,76,5,40,0.7,4.6570037142,4.6570037142 -30,0,20.865,38.0675,18.26,40.4,20.2,38.09,19.76,34.9,18.4633333333,46.3266666667,5,77.7633333333,18.39,32.76,20.79,39.9266666667,17.5,37.4633333333,4.6,754.5833333333,75.8333333333,5.1666666667,40,0.6666666667,22.3090064945,22.3090064945 -30,0,20.79,38,18.2,40.4,20.2,38.09,19.7,34.9666666667,18.39,46.5266666667,5,77.6633333333,18.3566666667,33.03,20.79,40.3333333333,17.5,37.59,4.6,754.4666666667,75.6666666667,5.3333333333,40,0.6333333333,27.9604745214,27.9604745214 -30,0,20.79,38.09,18.1666666667,40.53,20.1666666667,38.1633333333,19.6,35.09,18.3566666667,46.7666666667,5.0225,76.9725,18.3566666667,33.43,20.79,40.73,17.5,37.73,4.6,754.35,75.5,5.5,40,0.6,13.2531853626,13.2531853626 -40,0,20.73,38.09,18.1,40.59,20.1,38.09,19.6,35.09,18.29,46.9666666667,5.09,76.76,18.39,33.73,20.79,40.8633333333,17.5,37.8725,4.6,754.2333333333,75.3333333333,5.6666666667,40,0.5666666667,2.7180609992,2.7180609992 -40,0,20.7,38.06,18,40.59,20.1,38.09,19.5,35.2,18.29,47.1266666667,5.06,76.2633333333,18.39,33.8633333333,20.7675,41.1175,17.5,37.9666666667,4.6,754.1166666667,75.1666666667,5.8333333333,40,0.5333333333,33.9156142669,33.9156142669 -50,0,20.7,37.9333333333,17.9266666667,40.59,20.1,38.09,19.4266666667,35.2,18.23,47.1266666667,5.06,75.6633333333,18.39,34.045,20.7,41.2,17.5,38.1266666667,4.6,754,75,6,40,0.5,33.3974626265,33.3974626265 -50,0,20.7,37.9,17.84,40.645,20.1,38.09,19.39,35.2,18.2,47.2,5.06,75.3933333333,18.39,34.2,20.6,41.09,17.5,38.26,4.6,753.8666666667,74.5,6,40,0.4166666667,30.1423295983,30.1423295983 -50,0,20.6333333333,37.7666666667,17.79,40.6266666667,20.1,38.1633333333,19.39,35.2,18.2,47.2,5.06,74.9333333333,18.39,34.26,20.6,41.1725,17.5,38.4,4.6,753.7333333333,74,6,40,0.3333333333,20.454937208,20.454937208 -50,10,20.6,37.7,17.73,40.7,20.1,38.09,19.29,35.29,18.2,47.29,5.09,75.03,18.39,34.3266666667,20.5,41.36,17.5,38.4,4.6,753.6,73.5,6,40,0.25,7.5161705608,7.5161705608 -50,0,20.5333333333,37.7,17.7,40.7,20.1,38.09,19.29,35.3633333333,18.1,47.29,5.09,75.1566666667,18.39,34.4,20.5,41.56,17.5,38.4333333333,4.6,753.4666666667,73,6,40,0.1666666667,35.4265702888,35.4265702888 -50,0,20.5666666667,37.7,17.6333333333,40.6266666667,20.1,38.09,19.26,35.3633333333,18.1,47.29,5.09,73.8333333333,18.39,34.5,20.4633333333,41.8,17.5666666667,38.56,4.6,753.3333333333,72.5,6,40,0.0833333333,29.801962187,29.801962187 -50,0,20.5,37.6266666667,17.5666666667,40.59,20.1,38.09,19.26,35.3633333333,18.0666666667,47.26,5.09,73.3,18.39,34.56,20.39,42.1,17.5333333333,38.73,4.6,753.2,72,6,40,0,25.1350322738,25.1350322738 -50,0,20.39,37.5,17.5,40.59,20.1666666667,38.09,19.2,35.29,18,47.2,5.09,71.9266666667,18.4266666667,34.7666666667,20.39,42.3175,17.6,38.79,4.5666666667,753.0833333333,72.1666666667,5.8333333333,40,0,29.7081127181,29.7081127181 -50,0,20.39,37.5,17.5,40.53,20.2,38.09,19.1333333333,35.29,18,47.2,5.09,69.8,18.5,34.9,20.39,42.5266666667,17.6,38.9333333333,4.5333333333,752.9666666667,72.3333333333,5.6666666667,40,0,1.9992105197,1.9992105197 -50,0,20.39,37.5,17.4266666667,40.53,20.2,38.09,19.1,35.4,18,47.2,5.06,70.3,18.39,34.6633333333,20.29,42.8266666667,17.6,39,4.5,752.85,72.5,5.5,40,0,17.2877716715,17.2877716715 -40,0,20.3233333333,37.5,17.3566666667,40.5,20.2,38.06,19.1,35.345,17.9633333333,47.2,5,69.7666666667,18.39,34.7233333333,20.29,43.0266666667,17.6,39.09,4.4666666667,752.7333333333,72.6666666667,5.3333333333,40,0,16.3988542161,16.3988542161 -40,0,20.29,37.5,17.29,40.5,20.1333333333,38.06,19.0333333333,35.3266666667,17.89,47.2,4.83,69.16,18.39,34.8633333333,20.29,43.3266666667,17.5333333333,39.1633333333,4.4333333333,752.6166666667,72.8333333333,5.1666666667,40,0,21.8986895517,21.8986895517 -30,0,20.29,37.5,17.29,40.5,20.1666666667,38.06,19,35.29,17.89,47.26,4.6233333333,69.1,18.4633333333,34.93,20.29,43.525,17.5666666667,39.2,4.4,752.5,73,5,40,0,34.9478622433,34.9478622433 -30,0,20.2,37.4,17.29,40.5,20.1666666667,37.9333333333,19,35.29,17.89,47.2,4.5,69.7566666667,18.5,35.1266666667,20.29,43.7,17.5666666667,39.26,4.35,752.3,72.8333333333,5.1666666667,40,-0.0833333333,35.7598366565,35.7598366565 -30,0,20.2,37.4,17.2,40.4333333333,20.2,37.9,19,35.29,17.89,47.2,4.4,68.6675,18.5,35.2,20.29,43.79,17.6,39.3266666667,4.3,752.1,72.6666666667,5.3333333333,40,-0.1666666667,33.059110574,33.059110574 -40,0,20.2,37.4,17.2,40.5,20.2,37.9,18.9266666667,35.29,17.89,47.2,4.3,68.26,18.5,35.29,20.2,43.79,17.6,39.4,4.25,751.9,72.5,5.5,40,-0.25,42.8612579592,42.8612579592 -50,0,20.1,37.3633333333,17.1,40.4333333333,20.1,37.9,18.89,35.29,17.8566666667,47.1633333333,4.1566666667,68.2266666667,18.5,35.23,20.2,43.79,17.6,39.4333333333,4.2,751.7,72.3333333333,5.6666666667,40,-0.3333333333,42.1651919722,42.1651919722 -50,0,20.1,37.29,17.1,40.5,20.1,37.8266666667,18.89,35.29,17.79,47.09,4.03,68.2933333333,18.5,35.0666666667,20.2,43.7,17.6,39.5225,4.15,751.5,72.1666666667,5.8333333333,40,-0.4166666667,16.7433623341,16.7433623341 -40,0,20.1,37.2,17.0666666667,40.5,20.1,37.9,18.89,35.29,17.79,47.09,4.09,69.4,18.5,35.26,20.2,43.6266666667,17.6,39.59,4.1,751.3,72,6,40,-0.5,37.7561575267,37.7561575267 -40,0,20.0333333333,37.1266666667,17,40.5,20.1,37.9,18.8233333333,35.23,17.79,47.09,4.09,69.5933333333,18.5,35.29,20.1333333333,43.59,17.6,39.6266666667,4.0333333333,751.0833333333,72.3333333333,6.1666666667,40,-0.5,46.6284473194,46.6284473194 -60,0,20,37.1633333333,16.945,40.59,20.2,37.9,18.79,35.2,17.79,47.09,4.1233333333,68.3266666667,18.5,35.26,20.1333333333,43.53,17.6,39.7,3.9666666667,750.8666666667,72.6666666667,6.3333333333,40,-0.5,8.5743538453,8.5743538453 -50,0,20,37.09,16.89,40.6266666667,20.2,37.9,18.79,35.2,17.79,47.09,4.1233333333,67.7266666667,18.5,35.2,20.1,43.53,17.6,39.73,3.9,750.65,73,6.5,40,-0.5,12.5066500623,12.5066500623 -50,0,20,37.09,16.89,40.7,20.26,37.9,18.79,35.2,17.79,47.09,4.09,67.6233333333,18.5,35.2,20.1,43.59,17.6,39.79,3.8333333333,750.4333333333,73.3333333333,6.6666666667,40,-0.5,16.0471025039,16.0471025039 -60,0,19.9266666667,37.09,16.79,40.73,20.29,37.9,18.73,35.2,17.7,47.09,4.03,67.69,18.5,35.1266666667,20.1,43.7,17.6,39.79,3.7666666667,750.2166666667,73.6666666667,6.8333333333,40,-0.5,2.322284691,2.322284691 -40,0,19.89,37.09,16.79,40.8633333333,20.29,37.9,18.7,35.2,17.7,47.09,3.9,68.2,18.5,35.1266666667,20.1,43.7,17.6,39.79,3.7,750,74,7,40,-0.5,44.761733152,44.761733152 -50,0,19.89,37.09,16.79,40.9333333333,20.29,37.9,18.7,35.2,17.76,47.09,3.9,67.6666666667,18.5,35.2,20.0333333333,43.7666666667,17.6,39.9,3.75,749.8166666667,73.3333333333,7,40,-0.5833333333,8.0273896339,8.0273896339 -40,0,19.89,37.09,16.73,41.06,20.29,37.9666666667,18.7,35.2,17.7,47.09,4.03,67.19,18.5,35.1633333333,20.0333333333,43.8266666667,17.6,39.9,3.8,749.6333333333,72.6666666667,7,40,-0.6666666667,31.5359389526,31.5359389526 -50,0,19.8233333333,37.03,16.7,41.09,20.39,38,18.7,35.2,17.7,47.09,4.09,66.73,18.5,35.09,20,43.6633333333,17.6,40,3.85,749.45,72,7,40,-0.75,3.3897244954,3.3897244954 -40,0,19.79,37,16.7,41.09,20.39,38,18.6,35.2,17.7,47.09,4.09,66.9566666667,18.5,35.09,20,43.53,17.6,40,3.9,749.2666666667,71.3333333333,7,40,-0.8333333333,29.0155244526,29.0155244526 -50,0,19.79,37,16.6666666667,41.1633333333,20.39,38,18.6,35.2,17.7,47.09,4.1566666667,66.43,18.5,35.1633333333,20,43.4666666667,17.6,40,3.95,749.0833333333,70.6666666667,7,40,-0.9166666667,46.5470614145,46.5470614145 -50,0,19.76,37,16.6,41.09,20.39,38,18.6,35.2,17.7,47.09,4.1566666667,66.2633333333,18.5,35.29,19.9266666667,43.4,17.6,40,4,748.9,70,7,40,-1,46.1115572019,46.1115572019 -40,0,19.7,37,16.6,41.1266666667,20.5,38.09,18.5666666667,35.2,17.7,47.09,4.115,65.7475,18.5,35.23,19.9633333333,43.5,17.6,40,3.95,748.7333333333,70.5,6.8333333333,40,-0.9666666667,44.8331337771,44.8331337771 -20,0,19.7,37,16.6,41.2,20.5,38.03,18.5666666667,35.2,17.6333333333,47.03,4.1233333333,64.9333333333,18.4266666667,35.2666666667,19.89,43.5,17.6,40.06,3.9,748.5666666667,71,6.6666666667,40,-0.9333333333,34.3885847949,34.3885847949 -20,0,19.7,37,16.5,41.2,20.5666666667,37.9,18.5333333333,35.1266666667,17.6,47,4.09,63.36,18.4266666667,35.2666666667,19.89,43.4333333333,17.6,40.09,3.85,748.4,71.5,6.5,40,-0.9,46.4875783073,46.4875783073 -30,0,19.6333333333,36.9333333333,16.5,41.2,20.5,37.9,18.5333333333,35.2,17.6,47,4.09,63.9666666667,18.4633333333,35.1633333333,19.89,43.26,17.6,40.09,3.8,748.2333333333,72,6.3333333333,40,-0.8666666667,13.1267305347,13.1267305347 -50,0,19.6,37,16.5,41.2,20.5,37.9,18.5,35.2,17.6,47,4.09,62.6933333333,18.39,35.09,19.8233333333,43.0666666667,17.6,40.09,3.75,748.0666666667,72.5,6.1666666667,40,-0.8333333333,16.51067239,16.51067239 -40,0,19.6,37,16.4266666667,41.2,20.5,37.9666666667,18.5,35.1266666667,17.6,47,4.09,63.2333333333,18.39,35.3266666667,19.79,42.9,17.6,40.09,3.7,747.9,73,6,40,-0.8,46.6535928659,46.6535928659 -50,0,19.6,37,16.39,41.2,20.5,37.9,18.5,35.2,17.6,47,4.09,63.7333333333,18.39,35.4666666667,19.79,42.9,17.6,40.09,3.7666666667,747.7166666667,72.6666666667,6.3333333333,40,-0.7833333333,10.1144908229,10.1144908229 -60,0,19.6,37,16.39,41.2,20.5,37.9,18.5,35.2,17.6,47,4.1566666667,63.4666666667,18.445,35.59,19.79,42.9,17.6,40.1266666667,3.8333333333,747.5333333333,72.3333333333,6.6666666667,40,-0.7666666667,49.572623102,49.572623102 -50,0,19.5,37,16.39,41.29,20.55,38,18.5,35.2,17.6,47,4.19,62.2333333333,18.5,35.73,19.79,42.9666666667,17.6,40.2,3.9,747.35,72,7,40,-0.75,12.9520164104,12.9520164104 -50,0,19.5,37,16.29,41.3266666667,20.6,37.9,18.4266666667,35.1266666667,17.5333333333,47,4.19,61.96,18.5,35.79,19.79,43,17.6,40.2,3.9666666667,747.1666666667,71.6666666667,7.3333333333,40,-0.7333333333,25.2967903856,25.2967903856 -40,0,19.5,37,16.29,41.4,20.6,37.9,18.39,35.2,17.5,47,3.9666666667,61.7233333333,18.4266666667,35.8266666667,19.79,43,17.6,40.26,4.0333333333,746.9833333333,71.3333333333,7.6666666667,40,-0.7166666667,44.434684806,44.434684806 -50,0,19.5,37,16.26,41.4,20.6,37.9333333333,18.39,35.2,17.5,47,3.8266666667,60.9233333333,18.5,35.9666666667,19.79,43.09,17.6,40.3266666667,4.1,746.8,71,8,40,-0.7,43.7514602207,43.7514602207 -80,0,19.4633333333,37.03,16.26,41.4666666667,20.6,37.9333333333,18.39,35.2,17.5,47,3.79,61.1333333333,18.5333333333,36.3633333333,19.73,43.1633333333,17.6,40.5266666667,4.0666666667,746.6666666667,71.1666666667,8,40,-0.7,36.4760866738,36.4760866738 -40,10,19.39,37.2233333333,16.2,41.6266666667,20.5666666667,37.9,18.39,35.26,17.5,46.9666666667,3.79,60.9333333333,18.5333333333,36.23,19.79,43.1333333333,17.6,40.5,4.0333333333,746.5333333333,71.3333333333,8,40,-0.7,9.477876185,9.477876185 -50,0,19.4266666667,37.7266666667,16.2,41.8333333333,20.4266666667,37.6933333333,18.39,35.4333333333,17.5666666667,46.3,3.73,61.53,18.5,35.93,19.73,42.86,17.6,40.5,4,746.4,71.5,8,40,-0.7,4.3810024858,4.3810024858 -50,0,19.4266666667,38.06,16.2,42.36,20.3566666667,37.59,18.39,35.56,17.5666666667,45.7666666667,3.73,61.53,18.5,35.73,19.7,42.5266666667,17.6,40.5,3.9666666667,746.2666666667,71.6666666667,8,40,-0.7,3.508049529,3.508049529 -60,0,19.39,38,16.2,42.56,20.29,37.59,18.39,35.7,17.5,46.0266666667,3.79,61.2666666667,18.5,35.43,19.7,42.4,17.6,40.5,3.9333333333,746.1333333333,71.8333333333,8,40,-0.7,25.9676106041,25.9676106041 -70,0,19.39,38,16.2,42.8266666667,20.2,37.4,18.39,35.8266666667,17.5,46.39,3.79,59.995,18.4266666667,35.0966666667,19.7,42.1333333333,17.6,40.4666666667,3.9,746,72,8,40,-0.7,21.0194379441,21.0194379441 -30,0,19.4266666667,38.1566666667,16.2,42.9,20.2,37.3266666667,18.39,35.9666666667,17.5,46.6633333333,3.8633333333,59.3266666667,18.39,34.8633333333,19.7,41.9333333333,17.6,40.4,3.9833333333,745.9,71.3333333333,8,40,-0.75,3.6035248777,3.6035248777 -30,10,19.5,38.29,16.2,42.9333333333,20.2,37.29,18.39,36.1266666667,17.5,46.8266666667,4,58.89,18.39,34.6566666667,19.6,41.56,17.6,40.26,4.0666666667,745.8,70.6666666667,8,40,-0.8,3.3357074601,3.3357074601 -300,0,19.39,38.4633333333,16.2,43.06,20.2,37.29,18.3233333333,36.26,17.5,46.9666666667,4.06,59.2966666667,18.39,34.4666666667,19.6,41.32,17.6,40.1266666667,4.15,745.7,70,8,40,-0.85,35.2557483478,35.2557483478 -190,0,19.39,38.53,16.2,43.23,20.2,37.29,18.3233333333,36.5,17.5666666667,47.9333333333,4.2266666667,58.2266666667,18.39,34.3266666667,19.5333333333,41.1266666667,17.6,39.9666666667,4.2333333333,745.6,69.3333333333,8,40,-0.9,48.7885459675,48.7885459675 -510,10,19.445,38.45,16.2,43.0966666667,20.1333333333,37.29,18.53,36.9,17.76,49.7266666667,4.3666666667,56.7666666667,18.3566666667,33.8633333333,19.5333333333,40.9,17.6,39.7666666667,4.3166666667,745.5,68.6666666667,8,40,-0.95,18.6612447142,18.6612447142 -200,0,19.4633333333,38.3633333333,16.23,42.76,20.1,37.29,19.0966666667,36.9,17.89,49.6666666667,4.53,54.6333333333,18.29,33.4633333333,19.5333333333,40.5666666667,17.6,39.6933333333,4.4,745.4,68,8,40,-1,36.1675901921,36.1675901921 -200,10,19.39,38.29,16.23,42.5,20.0333333333,37.1566666667,19.4966666667,36.7666666667,17.8233333333,48.7266666667,4.73,54.4333333333,18.26,33.1,19.5,40.1333333333,17.625,40.3925,4.5,745.2833333333,67.5,8,40,-1.0166666667,36.0275258892,36.0275258892 -360,0,19.4266666667,38.1633333333,16.29,42.2233333333,20.1,37.29,19.7,36.26,17.76,48.5,4.9333333333,52.73,18.2,32.7666666667,19.5,39.86,17.7,41.1633333333,4.6,745.1666666667,67,8,40,-1.0333333333,9.2323588906,9.2323588906 -100,0,19.4266666667,38.03,16.29,42.0225,20.1,37.23,19.7,36.1266666667,17.7,48.5,5.06,51.53,18.2,32.45,19.39,39.5266666667,17.7,41.1633333333,4.7,745.05,66.5,8,40,-1.05,29.6111801057,29.6111801057 -60,0,19.39,38.0666666667,16.29,42.06,20,37.045,19.6666666667,36.0266666667,17.7,48.73,5.1233333333,52.0333333333,18.2,32.2233333333,19.39,39.3266666667,17.7,40.9633333333,4.8,744.9333333333,66,8,40,-1.0666666667,49.034201866,49.034201866 -70,0,19.39,38.26,16.3233333333,42.5966666667,20.0333333333,37.03,19.6,35.8266666667,17.625,48.695,5.2633333333,53.2933333333,18.1333333333,32.03,19.39,39.09,17.7,40.7233333333,4.9,744.8166666667,65.5,8,40,-1.0833333333,21.0185068776,21.0185068776 -70,0,19.4633333333,38.4,16.3233333333,42.93,20.0333333333,37.03,19.5666666667,35.6633333333,17.6,48.4633333333,5.4333333333,51.1,18.1,31.8566666667,19.39,39.03,17.7,40.4633333333,5,744.7,65,8,40,-1.1,17.0176155982,17.0176155982 -280,0,19.39,38.4,16.39,42.93,20,37.03,19.5,35.59,17.6,48.0633333333,5.56,50.0266666667,18.1,31.73,19.3566666667,38.8633333333,17.7,39.93,5.15,744.65,64,8.3333333333,40,-1.1666666667,15.5008849339,15.5008849339 -370,10,19.39,38.29,16.4633333333,42.99,20,37.09,19.39,35.49,17.6,47.5966666667,5.7266666667,49.36,18.1,31.5666666667,19.29,38.73,17.7,39.6566666667,5.3,744.6,63,8.6666666667,40,-1.2333333333,25.9987965808,25.9987965808 -50,0,19.39,38.29,16.5333333333,42.4,20,37.09,19.39,35.1566666667,17.6,47.1,5.8666666667,45.8933333333,18.1,31.4266666667,19.29,38.56,17.7,39.4,5.45,744.55,62,9,40,-1.3,21.9662571675,21.9662571675 -90,0,19.5,38.36,16.6,42.5333333333,20,37.09,19.3566666667,34.8333333333,17.6,46.7666666667,6,43.4966666667,18.1,31.26,19.29,38.4333333333,17.7,39.0666666667,5.6,744.5,61,9.3333333333,40,-1.3666666667,22.0349561423,22.0349561423 -70,0,19.5,38.7666666667,16.6,43.4,20,37,19.2225,34.4975,17.6,46.43,6.0925,42.3725,18.1,31.1333333333,19.29,38.29,17.7,38.8333333333,5.75,744.45,60,9.6666666667,40,-1.4333333333,2.5562889641,2.5562889641 -60,10,19.5,40.0633333333,16.6,43.0666666667,20,37.06,19.2,34.23,17.5333333333,46.1566666667,6.19,40.06,18,30.89,19.23,38.1566666667,17.7,38.5666666667,5.9,744.4,59,10,40,-1.5,25.6604285678,25.6604285678 -60,10,19.5,39.5966666667,16.7,42.8333333333,20,37.09,19.1,34.5966666667,17.5,45.8333333333,6.3,40.0966666667,18,30.7633333333,19.2,37.9666666667,17.7,38.5,5.9833333333,744.3833333333,59,9.8333333333,40,-1.45,49.3877457571,49.3877457571 -30,10,19.5,39.2666666667,16.7,42.3,20,37.03,19.1666666667,34.93,17.5,45.5666666667,6.3,39.29,18,30.6,19.2,37.9,17.7,38.5,6.0666666667,744.3666666667,59,9.6666666667,40,-1.4,34.2277825112,34.2277825112 -30,10,19.5,39.06,16.7,42,19.89,37.09,19.1,34.6633333333,17.5,45.26,6.4,39.6666666667,18,30.6,19.2,37.79,17.7,38.3333333333,6.15,744.35,59,9.5,40,-1.35,44.8914542794,44.8914542794 -50,0,19.5,38.3,16.7,41.6,19.89,36.7566666667,19.1,34.53,17.5,45.0666666667,6.4,38.8666666667,18,30.5,19.1333333333,37.73,17.7,38.1266666667,6.2333333333,744.3333333333,59,9.3333333333,40,-1.3,6.797793135,6.797793135 -50,10,19.5,37.1,16.6333333333,40.5333333333,19.79,36.06,19,34.26,17.5,44.76,6.4333333333,40.5966666667,18,30.4266666667,19.1,37.7,17.7,37.9666666667,6.3166666667,744.3166666667,59,9.1666666667,40,-1.25,4.9712614971,4.9712614971 -70,0,19.5,36.5,16.6333333333,39.8666666667,19.73,36.1333333333,19,34.2,17.5,44.5666666667,6.56,40.2633333333,18,30.4633333333,19.1666666667,37.7,17.7,37.9,6.4,744.3,59,9,40,-1.2,31.5244012396,31.5244012396 -50,0,19.5,37.7,16.6666666667,40.2966666667,19.76,36.1266666667,18.89,34.09,17.5,44.3333333333,6.7266666667,40.4333333333,17.9266666667,30.39,19.1,37.7,17.7,37.745,6.4166666667,744.3,59.3333333333,9,40,-1.0833333333,34.5322585083,34.5322585083 -40,0,19.5,37.7,16.6,41.1633333333,19.76,36.4,18.89,34.09,17.5,44.1266666667,6.8666666667,40.56,17.89,30.39,19.1,37.59,17.7,37.56,6.4333333333,744.3,59.6666666667,9,40,-0.9666666667,5.0751599367,5.0751599367 -50,0,19.5,37.43,16.7,40.94,19.89,36.9333333333,18.89,34.09,17.5,43.9666666667,6.8666666667,42.3933333333,17.89,30.4633333333,19.0333333333,37.53,17.7,37.5,6.45,744.3,60,9,40,-0.85,25.316498871,25.316498871 -50,0,19.5,37.23,16.7,40.4666666667,19.89,37.06,18.89,34.09,17.5,43.8266666667,6.7266666667,43.2666666667,17.89,30.55,19,37.5,17.7,37.5,6.4666666667,744.3,60.3333333333,9,40,-0.7333333333,15.3937103227,15.3937103227 -40,0,19.5,37.0266666667,16.7,40.2666666667,19.89,37.2,18.79,34.03,17.5,43.7,6.56,45.9,17.89,30.73,19,37.56,17.7,37.5,6.4833333333,744.3,60.6666666667,9,40,-0.6166666667,2.8384256642,2.8384256642 -50,0,19.5,36.8266666667,16.7,40.06,19.89,37.2,18.79,34.09,17.4725,43.4975,6.4333333333,48.36,17.89,30.79,19,37.59,17.7,37.5,6.5,744.3,61,9,40,-0.5,23.6920829746,23.6920829746 -50,0,19.5,36.6633333333,16.7,39.9333333333,19.89,37.2,18.76,34.23,17.4633333333,43.3633333333,6.4,49.2633333333,17.89,30.9266666667,19,37.6633333333,17.7,37.4333333333,6.6333333333,744.2666666667,61.6666666667,9.1666666667,40,-0.25,18.5275533702,18.5275533702 -80,0,19.4266666667,36.53,16.7,39.8266666667,20,37.2,18.7,34.29,17.39,43.26,6.4666666667,48.8633333333,17.89,31,19,37.7,17.7,37.4333333333,6.7666666667,744.2333333333,62.3333333333,9.3333333333,40,0,2.4387261481,2.4387261481 -90,0,19.4266666667,36.53,16.76,39.9666666667,19.9266666667,37.2,18.7,34.3266666667,17.39,43.2,6.66,48.7233333333,17.89,31.1,19,37.8333333333,17.7,37.5,6.9,744.2,63,9.5,40,0.25,12.4737231294,12.4737231294 -90,0,19.4266666667,36.59,16.79,40,19.89,37.09,18.7,34.4,17.39,43.2,6.9975,47.07,17.89,31.1666666667,19.1,38.23,17.7,37.4333333333,7.0333333333,744.1666666667,63.6666666667,9.6666666667,40,0.5,24.837555585,24.837555585 -80,10,19.4633333333,36.59,16.8566666667,40,19.89,37.03,18.7,34.5,17.39,43.2,7.33,43.9566666667,17.89,31.2,19.1666666667,38.29,17.7,37.5,7.1666666667,744.1333333333,64.3333333333,9.8333333333,40,0.75,37.6603338169,37.6603338169 -70,0,19.4633333333,36.59,16.89,39.8633333333,19.89,37.06,18.675,34.475,17.39,43.29,7.6233333333,43.1566666667,17.89,31.2,19.39,38.5,17.7,37.53,7.3,744.1,65,10,40,1,41.0684259958,41.0684259958 -60,0,19.5,36.7,16.89,39.79,19.8233333333,36.9333333333,18.6666666667,34.4666666667,17.4633333333,43.43,7.7633333333,42.03,17.89,31.23,19.4633333333,38.56,17.7,37.59,7.2333333333,744.2,65.1666666667,9.6666666667,40,1,3.2533718506,3.2533718506 -70,0,19.5,36.6266666667,16.9266666667,39.6633333333,19.79,36.8633333333,18.6,34.4,17.39,43.29,7.56,40.4566666667,17.89,31.23,19.6333333333,38.59,17.6666666667,37.43,7.1666666667,744.3,65.3333333333,9.3333333333,40,1,32.4612010387,32.4612010387 -100,0,19.5,36.59,17,39.6633333333,19.79,36.79,18.6,34.4666666667,17.39,43.29,7.5,40.53,17.9266666667,31.5566666667,19.7,38.59,17.6666666667,37.29,7.1,744.4,65.5,9,40,1,38.075492694,38.075492694 -110,0,19.4266666667,36.59,16.9266666667,39.73,19.79,36.6633333333,18.6,34.9933333333,17.39,43.26,7.4,40.99,18.0666666667,32.4233333333,19.79,38.59,17.6,37.06,7.0333333333,744.5,65.6666666667,8.6666666667,40,1,11.6257612477,11.6257612477 -110,0,19.39,36.53,17,39.73,19.79,36.59,18.6666666667,35.7333333333,17.39,43.2,7.4,40.1966666667,18.1,32.86,19.8566666667,38.59,17.6,37,6.9666666667,744.6,65.8333333333,8.3333333333,40,1,29.4775200542,29.4775200542 -110,0,19.39,36.6633333333,17,40.03,19.79,36.59,18.7,35.93,17.39,43.2,7.2633333333,40.3333333333,18.1,32.86,19.945,38.59,17.6,36.9666666667,6.9,744.7,66,8,40,1,37.9537672619,37.9537672619 -110,10,19.445,36.79,17,40.1633333333,19.79,36.59,18.7,35.73,17.39,43.26,7.19,40.9333333333,18.1,32.56,20,38.59,17.6,36.9,6.85,744.7833333333,65.8333333333,7.6666666667,40,0.9,17.2722267103,17.2722267103 -100,10,19.39,36.9,17,39.9666666667,19.79,36.6266666667,18.7,35.5,17.39,43.5,7.3333333333,41.2933333333,18.1,32.4333333333,20.0666666667,38.6633333333,17.6,36.745,6.8,744.8666666667,65.6666666667,7.3333333333,40,0.8,16.8873028131,16.8873028131 -110,10,19.39,36.9,17,39.9666666667,19.79,36.7,18.7,35.4333333333,17.39,43.8333333333,7.3333333333,40.0933333333,18,32.06,20.1,38.56,17.6,36.8266666667,6.75,744.95,65.5,7,40,0.7,24.2204427137,24.2204427137 -120,10,19.39,36.9666666667,17,40.045,19.79,36.7,18.7,35.4633333333,17.39,44.09,7.3,40.0333333333,18,31.9725,20.1,38.56,17.6,36.9,6.7,745.0333333333,65.3333333333,6.6666666667,40,0.6,46.4435196831,46.4435196831 -130,0,19.39,36.8266666667,16.9633333333,39.93,19.79,36.7,18.76,35.7966666667,17.39,44.09,7.2266666667,40.2933333333,18,31.8233333333,20.1,38.5,17.6,36.9,6.65,745.1166666667,65.1666666667,6.3333333333,40,0.5,0.749646069,0.749646069 -100,10,19.39,36.76,16.89,39.79,19.79,36.7,19.3333333333,36.1266666667,17.39,44.09,7.3,40.7,18,31.7,20.1666666667,38.56,17.6,36.9,6.6,745.2,65,6,40,0.4,26.6023456585,26.6023456585 -110,0,19.39,36.7,16.89,39.8266666667,19.79,36.7,19.8666666667,36.2,17.39,44.0225,7.3666666667,39.9,18,31.6333333333,20.23,38.6266666667,17.5666666667,36.8633333333,6.5833333333,745.2666666667,64.6666666667,5.6666666667,40,0.3166666667,2.1460415446,2.1460415446 -120,10,19.39,36.7,16.89,39.9,19.79,36.6266666667,20.36,35.8633333333,17.39,44,7.3,38.8333333333,17.9633333333,31.5666666667,20.29,38.7,17.5,36.79,6.5666666667,745.3333333333,64.3333333333,5.3333333333,40,0.2333333333,21.9831161085,21.9831161085 -110,0,19.39,36.7,16.89,39.9666666667,19.79,36.59,20.4266666667,35.4633333333,17.39,43.9,7.245,38.395,17.89,31.4266666667,20.3233333333,38.6633333333,17.5,36.79,6.55,745.4,64,5,40,0.15,17.3264319892,17.3264319892 -100,0,19.39,36.7,16.89,39.9666666667,19.79,36.59,20.29,35.4633333333,17.39,43.9,7.2266666667,37.3666666667,17.89,31.3566666667,20.4633333333,38.59,17.5,36.79,6.5333333333,745.4666666667,63.6666666667,4.6666666667,40,0.0666666667,42.2523657442,42.2523657442 -80,0,19.39,36.7,16.89,39.9,19.79,36.59,20.4966666667,35.6633333333,17.39,43.76,7.06,37.6933333333,17.89,31.29,20.5,38.5,17.5,36.7,6.5166666667,745.5333333333,63.3333333333,4.3333333333,40,-0.0166666667,9.8490568809,9.8490568809 -90,0,19.39,36.73,16.89,39.9666666667,19.79,36.59,21.045,35.44,17.39,43.6266666667,6.9333333333,37.36,17.89,31.2,20.5666666667,38.5,17.5,36.7,6.5,745.6,63,4,40,-0.1,31.4279595274,31.4279595274 -90,0,19.39,36.79,17.0333333333,40.03,19.79,36.59,21.4933333333,35.09,17.39,43.5,6.8,37.3933333333,17.89,31.2,20.6,38.4,17.5,36.59,6.4333333333,745.7333333333,63.1666666667,4.1666666667,40,-0.1333333333,14.2780452152,14.2780452152 -100,0,19.4266666667,36.73,17.1,40.03,19.79,36.59,21.9,35.03,17.39,43.5,6.7266666667,37.1933333333,17.89,31.1,20.6666666667,38.4,17.5,36.59,6.3666666667,745.8666666667,63.3333333333,4.3333333333,40,-0.1666666667,14.0989396023,14.0989396023 -130,20,19.5,36.79,17.23,39.8633333333,19.79,36.59,22.3233333333,34.96,17.39,43.3633333333,6.69,37.3633333333,17.89,31.0333333333,20.7,38.5,17.39,36.5,6.3,746,63.5,4.5,40,-0.2,21.109748364,21.109748364 -110,20,19.5333333333,36.79,17.29,39.79,19.79,36.59,22.3233333333,34.6266666667,17.39,43.29,6.69,37.6233333333,17.8233333333,31.16,20.7,38.5,17.39,36.4333333333,6.2333333333,746.1333333333,63.6666666667,4.6666666667,40,-0.2333333333,45.2392652282,45.2392652282 -90,10,19.6,36.93,17.3233333333,39.76,19.79,36.56,22.1333333333,34.4666666667,17.39,43.4,6.56,37.7666666667,17.89,31.76,20.73,38.6266666667,17.39,36.3266666667,6.1666666667,746.2666666667,63.8333333333,4.8333333333,40,-0.2666666667,21.7557875789,21.7557875789 -90,0,19.7,37,17.39,39.7,19.79,36.56,21.9266666667,34.3266666667,17.39,43.4,6.5,38.16,17.96,32.4233333333,20.79,38.7,17.39,36.4,6.1,746.4,64,5,40,-0.3,6.3906614319,6.3906614319 -100,0,19.76,37,17.5,39.6633333333,19.79,36.59,21.7266666667,33.9,17.39,43.4,6.3666666667,38.73,18.1666666667,33.4233333333,20.79,38.7,17.39,36.26,6.0833333333,746.5333333333,64.3333333333,5.1666666667,40,-0.2333333333,36.5867096116,36.5867096116 -120,0,19.79,37,17.5,39.7233333333,19.79,36.59,21.5333333333,33.7,17.39,43.4666666667,6.2266666667,38.99,18.4266666667,34.0666666667,20.79,38.6725,17.39,36.1266666667,6.0666666667,746.6666666667,64.6666666667,5.3333333333,40,-0.1666666667,9.462494019,9.462494019 -140,20,19.89,37.09,17.5333333333,39.8633333333,19.79,36.7,21.3566666667,33.53,17.3566666667,43.5,6.19,39.2566666667,18.5666666667,34.5266666667,20.8566666667,38.59,17.39,36.045,6.05,746.8,65,5.5,40,-0.1,25.4405708518,25.4405708518 -160,20,19.89,37.09,17.6,39.79,19.8566666667,36.76,21.23,33.59,17.3566666667,43.5,6.19,39.9966666667,18.5666666667,34.16,20.89,38.4666666667,17.3566666667,35.8633333333,6.0333333333,746.9333333333,65.3333333333,5.6666666667,40,-0.0333333333,15.6815709895,15.6815709895 -230,30,20,37.1266666667,17.7,39.9,19.89,36.7,21.1666666667,33.79,17.39,43.59,6.09,40.8966666667,18.4175,33.5925,20.9633333333,38.3266666667,17.3566666667,35.79,6.0166666667,747.0666666667,65.6666666667,5.8333333333,40,0.0333333333,36.4229114028,36.4229114028 -180,10,20.0666666667,37.3333333333,17.79,39.9,19.9725,36.7,21.0333333333,33.8633333333,17.39,43.59,6.03,41.6966666667,18.3233333333,33.1566666667,21,38.1633333333,17.29,35.7,6,747.2,66,6,40,0.1,29.4978197315,29.4978197315 -140,20,20.1333333333,38.0966666667,17.8566666667,39.8266666667,20,36.7,20.9633333333,34.09,17.39,43.645,5.9666666667,42.3,18.26,32.8333333333,21.0666666667,38.09,17.29,35.6266666667,5.95,747.3,66.1666666667,6,40,0.0833333333,36.1138538108,36.1138538108 -140,10,20.26,38.3633333333,18.0333333333,39.8266666667,20.0666666667,36.9,20.89,34.03,17.39,43.73,5.875,42.725,18.2,32.5666666667,21.1,38.06,17.29,35.59,5.9,747.4,66.3333333333,6,40,0.0666666667,23.6752629746,23.6752629746 -130,0,20.39,38.63,18.1,39.8266666667,20.0666666667,37.0266666667,20.76,33.9333333333,17.39,43.93,5.8,43,18.2,32.4633333333,21.1666666667,37.9333333333,17.29,35.53,5.85,747.5,66.5,6,40,0.05,38.8213020982,38.8213020982 -120,0,20.4633333333,37.89,18.2,39.9333333333,20.1333333333,37.06,20.7,33.9333333333,18.0966666667,68.3333333333,5.6266666667,42.73,18.2,32.4633333333,21.2,37.8633333333,17.29,35.5,5.8,747.6,66.6666666667,6,40,0.0333333333,31.8717979128,31.8717979128 -100,0,20.5333333333,37.89,18.26,40.6,20.2,37,20.5666666667,33.7,18.43,62,5.3666666667,43.0633333333,18.1666666667,32.3333333333,21.2,37.73,17.29,35.5,5.75,747.7,66.8333333333,6,40,0.0166666667,44.4056228269,44.4056228269 -110,0,20.6,38.1633333333,18.3233333333,41.39,20.23,37.1566666667,20.5,33.6266666667,18.6333333333,52.1666666667,5.1266666667,43.83,18.1666666667,32.1266666667,21.26,37.7233333333,17.29,35.4,5.7,747.8,67,6,40,0,37.6861565863,37.6861565863 -130,10,20.7,38.29,18.3233333333,41.59,20.29,37.3633333333,20.34,33.545,18.76,48.0266666667,4.9333333333,44.4233333333,18.1,31.9633333333,21.2,37.59,17.29,35.4,5.5166666667,747.95,68,5.6666666667,40,0.0333333333,1.9707687432,1.9707687432 -140,20,20.76,38.23,18.39,41.6633333333,20.29,37.5,20.29,33.7266666667,18.8233333333,45.4933333333,4.8666666667,45.1566666667,18.1,31.8233333333,21.1666666667,37.4,17.26,35.3633333333,5.3333333333,748.1,69,5.3333333333,40,0.0666666667,19.1306712106,19.1306712106 -140,30,20.8233333333,38.06,18.39,41.33,20.29,37.5,20.43,34.2666666667,18.89,44.4333333333,4.8,45.6233333333,18.1,31.7,21.1,37.4666666667,17.26,35.29,5.15,748.25,70,5,40,0.1,29.1552149341,29.1552149341 -130,20,20.89,37.8,18.39,41.06,20.39,37.4666666667,20.8933333333,34.73,19,43.46,4.6266666667,45.9333333333,18.1,31.6333333333,21.1,37.59,17.29,35.3266666667,4.9666666667,748.4,71,4.6666666667,40,0.1333333333,49.0821693907,49.0821693907 -130,20,20.9266666667,37.56,18.39,40.9333333333,20.39,37.3266666667,21.2933333333,34.8633333333,19,42.8666666667,4.2933333333,46.1933333333,18.1,31.5,21.1,37.6633333333,17.29,35.4666666667,4.7833333333,748.55,72,4.3333333333,40,0.1666666667,30.2920839284,30.2920839284 -130,30,21,37.36,18.5,40.8633333333,20.39,37.26,21.6,34.59,20.2333333333,80.9933333333,3.8633333333,47.8666666667,18.0333333333,31.36,21.0666666667,37.6566666667,17.29,35.59,4.6,748.7,73,4,40,0.2,0.669601094,0.669601094 -100,20,21,37.2,18.5,40.6566666667,20.39,37.26,21.6,34.4633333333,20.0933333333,78.8,3.73,48.4,18,31.29,21,38.1233333333,17.29,35.59,4.6666666667,748.8333333333,72.6666666667,3.6666666667,40,0.2,0.8895442705,0.8895442705 -110,30,21,37.0666666667,18.5,40.3633333333,20.29,37.3266666667,21.5666666667,34.5,19.4966666667,79.0333333333,3.43,48.8933333333,18,31.3566666667,21,38.6566666667,17.29,35.59,4.7333333333,748.9666666667,72.3333333333,3.3333333333,40,0.2,5.3679632256,5.3679632256 -110,20,21,36.845,18.5,40.1566666667,20.23,37.3266666667,21.5,34.5,19.23,79.4933333333,3.23,50.1666666667,18.1,31.73,21,38.8633333333,17.29,35.59,4.8,749.1,72,3,40,0.2,8.7603186257,8.7603186257 -120,20,21,36.6633333333,18.4633333333,39.9,20.2,37.4,21.39,34.4,19.1,79.1633333333,3.3266666667,51.7566666667,18.1,31.8566666667,20.945,38.9,17.29,35.59,4.8666666667,749.2333333333,71.6666666667,2.6666666667,40,0.2,38.8725183904,38.8725183904 -100,20,21,36.53,18.39,39.6266666667,20.2,37.3266666667,21.39,34.4,19.0333333333,78.23,3.6,52.2966666667,18.1333333333,32,21,38.9,17.29,35.5,4.9333333333,749.3666666667,71.3333333333,2.3333333333,40,0.2,12.5967625878,12.5967625878 -90,30,21,36.3633333333,18.39,39.545,20.1666666667,37.3266666667,21.29,34.4,18.9633333333,76.9666666667,3.9333333333,52.2233333333,18.15,32.1175,20.9266666667,38.9,17.29,35.5,5,749.5,71,2,40,0.2,28.0010308023,28.0010308023 -90,20,21,36.29,18.39,39.4,20.1,37.4,21.23,34.3266666667,18.89,75.4333333333,4.0925,52.09,18.2,32.29,21,38.9333333333,17.29,35.5,4.9166666667,749.5833333333,71.8333333333,1.8333333333,38.1666666667,0.25,25.2418659744,25.2418659744 -40,20,21,36.2,18.39,39.3266666667,20.1,37.4,21.26,34.4333333333,18.76,72.9666666667,4.2633333333,52.2233333333,18.1,32.3266666667,21,39,17.29,35.5,4.8333333333,749.6666666667,72.6666666667,1.6666666667,36.3333333333,0.3,29.7856833786,29.7856833786 -30,20,21,36.2,18.39,39.3266666667,20.0666666667,37.4,21.2,34.6333333333,18.625,70.6925,4.4333333333,52.09,18.1,32.4666666667,20.9266666667,39.1566666667,17.29,35.6266666667,4.75,749.75,73.5,1.5,34.5,0.35,18.6621880624,18.6621880624 -50,20,21,36.2,18.39,39.4,20,37.4,21.2,34.8266666667,18.6,69.1633333333,4.5,52.03,18.1333333333,32.6266666667,21,39.43,17.29,35.76,4.6666666667,749.8333333333,74.3333333333,1.3333333333,32.6666666667,0.4,34.0871709632,34.0871709632 -40,30,20.9266666667,36.2,18.29,39.4333333333,20,37.4333333333,21.2,34.9666666667,18.5,67.63,4.53,51.9333333333,18.1333333333,32.76,20.89,39.73,17.29,35.9633333333,4.5833333333,749.9166666667,75.1666666667,1.1666666667,30.8333333333,0.45,48.2439572457,48.2439572457 -60,20,20.89,36.29,18.29,39.5,20,37.5,21.2,35.03,18.5,66.1566666667,4.59,51.9333333333,18.1,33.03,20.89,39.99,17.29,36.1633333333,4.5,750,76,1,29,0.5,15.4619367793,15.4619367793 -50,30,20.89,36.29,18.29,39.6266666667,19.9633333333,37.53,21.2,35.1633333333,18.4633333333,64.0666666667,4.8333333333,51.2333333333,18.1666666667,33.1633333333,20.79,40.2,17.29,36.29,4.4333333333,750.1166666667,76.3333333333,1.1666666667,28.5,0.5166666667,13.1202883087,13.1202883087 -60,20,20.8566666667,36.4,18.29,39.7,19.89,37.59,21.2,35.2,18.39,62.2,4.9666666667,50.5666666667,18.2,33.4333333333,20.79,40.2,17.29,36.3633333333,4.3666666667,750.2333333333,76.6666666667,1.3333333333,28,0.5333333333,13.4471372468,13.4471372468 -60,30,20.79,36.4,18.2,39.7,19.89,37.59,21.1,35.29,18.39,60.2333333333,5.03,49.9,18.2,33.56,20.7,40.3266666667,17.29,36.53,4.3,750.35,77,1.5,27.5,0.55,2.0508828689,2.0508828689 -60,20,20.79,36.53,18.2,39.76,19.89,37.59,21.1,35.3633333333,18.3233333333,59.2933333333,5.09,49.4266666667,18.2,33.7,20.7,40.4666666667,17.29,36.59,4.2333333333,750.4666666667,77.3333333333,1.6666666667,27,0.5666666667,25.4134352552,25.4134352552 -60,20,20.73,36.59,18.1,39.8266666667,19.89,37.56,21.1,35.4333333333,18.29,58.5633333333,5.09,48.9,18.2,33.76,20.6,40.6566666667,17.29,36.7,4.1666666667,750.5833333333,77.6666666667,1.8333333333,26.5,0.5833333333,24.5837889146,24.5837889146 -60,20,20.7,36.59,18.1,39.9,19.89,37.56,21.1,35.4333333333,18.29,58.03,5.1566666667,48.4266666667,18.2,33.8266666667,20.6,40.93,17.29,36.76,4.1,750.7,78,2,26,0.6,16.9932476361,16.9932476361 -70,20,20.7,36.6633333333,18.0666666667,39.8633333333,19.9266666667,37.59,21.1,35.5,18.29,57.43,5.2633333333,48.29,18.2,33.9666666667,20.6,41.33,17.29,36.9,3.8833333333,750.8,78.3333333333,1.8333333333,25.5,0.45,32.9496141872,32.9496141872 -60,30,20.6666666667,36.79,18,39.79,20,37.53,21.1,35.56,18.23,57.03,5.19,48.49,18.2,34.1266666667,20.5333333333,41.7966666667,17.29,36.9666666667,3.6666666667,750.9,78.6666666667,1.6666666667,25,0.3,32.9938688665,32.9938688665 -60,20,20.6666666667,36.93,17.9633333333,39.86,20.0333333333,37.4,21.0666666667,35.59,18.2,56.49,5.19,48.6333333333,18.2,34.2,20.5,42.2666666667,17.29,37.09,3.45,751,79,1.5,24.5,0.15,12.749805965,12.749805965 -60,20,20.6,36.9333333333,17.89,39.9333333333,20.1,37.4,21.0666666667,35.7966666667,18.2,56.0966666667,5.1233333333,48.2266666667,18.2,34.23,20.5,42.6,17.29,37.195,3.2333333333,751.1,79.3333333333,1.3333333333,24,1.11022302462516E-16,4.5202855719,4.5202855719 -60,20,20.575,37,17.8566666667,39.9,20.1,37.29,21.36,35.9666666667,18.1666666667,55.6333333333,4.9,47.6333333333,18.2,34.3633333333,20.4633333333,43.0966666667,17.29,37.29,3.0166666667,751.2,79.6666666667,1.1666666667,23.5,-0.15,40.9577259212,40.9577259212 -50,20,20.5,37,17.79,39.9,20.1,37.29,21.5,35.8266666667,18.1,55.36,4.5675,47.925,18.2,34.4,20.39,43.565,17.29,37.4333333333,2.8,751.3,80,1,23,-0.3,3.4729370847,3.4729370847 -40,30,20.5,36.9666666667,17.79,39.79,20.1,37.29,21.5,35.79,18.1,55.1,3.9966666667,48.6,18.2,34.4975,20.39,43.8633333333,17.29,37.5,2.6166666667,751.45,80.3333333333,1,22.8333333333,-0.4166666667,20.8954617963,20.8954617963 -40,20,20.5,36.9,17.7,39.79,20.1,37.2675,21.5,35.79,18.1,54.8266666667,3.59,50.4666666667,18.26,34.7233333333,20.39,43.9633333333,17.29,37.6266666667,2.4333333333,751.6,80.6666666667,1,22.6666666667,-0.5333333333,42.4053289578,42.4053289578 -40,20,20.39,36.79,17.7,39.79,20.1,37.2,21.39,35.79,18.1,54.56,3.6633333333,51.6,18.2,34.79,20.39,44.03,17.29,37.7,2.25,751.75,81,1,22.5,-0.65,43.7971856329,43.7971856329 -70,20,20.39,36.79,17.6,39.7,20.1,37.2,21.39,35.73,18.1,54.32,3.8266666667,52.3266666667,18.2,34.8633333333,20.3566666667,44.09,17.29,37.79,2.0666666667,751.9,81.3333333333,1,22.3333333333,-0.7666666667,0.6586872856,0.6586872856 -60,20,20.39,36.79,17.6,39.7,20.1,37.1266666667,21.3566666667,35.7,18.0333333333,54,3.9666666667,52.5266666667,18.29,35,20.29,44.09,17.29,37.8633333333,1.8833333333,752.05,81.6666666667,1,22.1666666667,-0.8833333333,44.9681948288,44.9681948288 -40,0,20.3233333333,36.79,17.5,39.73,20.1,37.1266666667,21.29,35.7,18,53.76,4.09,53.03,18.29,35,20.29,44.1266666667,17.39,38.0966666667,1.7,752.2,82,1,22,-1,2.5326354313,2.5326354313 -50,0,20.29,36.9333333333,17.5,39.8633333333,20.1,37.1266666667,21.29,35.56,18,53.5666666667,4.09,53.43,18.29,35.2666666667,20.29,44.2,17.3233333333,38.29,1.55,752.3,82.8333333333,1,21.6666666667,-1.0333333333,41.1455392721,41.1455392721 -40,0,20.29,37,17.4633333333,40.06,20.1333333333,37.09,21.23,35.36,18,53.43,4.1566666667,53.4333333333,18.29,35.4666666667,20.29,44.29,17.3566666667,38.29,1.4,752.4,83.6666666667,1,21.3333333333,-1.0666666667,31.9771858281,31.9771858281 -50,0,20.2,36.9,17.39,40,20.1333333333,37.09,21.1,35.245,18,53.23,4.09,53.6333333333,18.29,35.59,20.23,44.43,17.3566666667,38.3633333333,1.25,752.5,84.5,1,21,-1.1,23.7908201758,23.7908201758 -50,0,20.2,36.9,17.3566666667,40.09,20.1666666667,37.09,20.9633333333,35.23,17.89,53.06,4.09,53.9,18.29,35.59,20.26,44.6633333333,17.39,38.53,1.1,752.6,85.3333333333,1,20.6666666667,-1.1333333333,25.5242239917,25.5242239917 -50,0,20.2,36.9,17.29,40.09,20.1666666667,37.1633333333,20.89,35.29,17.89,52.9333333333,4.09,53.7666666667,18.29,35.6266666667,20.2,44.6633333333,17.39,38.59,0.95,752.7,86.1666666667,1,20.3333333333,-1.1666666667,1.1018280289,1.1018280289 -60,0,20.1333333333,36.9,17.29,40.09,20.2,37.2,20.79,35.23,17.89,52.8633333333,3.9666666667,53.8266666667,18.29,35.8333333333,20.2,44.76,17.3566666667,38.7,0.8,752.8,87,1,20,-1.2,22.0647500246,22.0647500246 -40,0,20.1,36.9,17.29,40.09,20.2,37.2,20.73,35.29,17.89,52.73,3.9,54.1,18.29,35.79,20.2,44.7,17.3566666667,38.7,0.8,752.9333333333,87,1.1666666667,27.5,-1.2,46.2838647654,46.2838647654 -50,0,20.1,36.9666666667,17.2,40.1266666667,20.29,37.29,20.6666666667,35.3633333333,17.89,52.6633333333,3.8633333333,54.4666666667,18.29,35.8633333333,20.2,44.7,17.3233333333,38.79,0.8,753.0666666667,87,1.3333333333,35,-1.2,39.5243440871,39.5243440871 -40,0,20.0666666667,36.9666666667,17.2,40.2,20.29,37.23,20.6,35.3633333333,17.89,52.59,3.73,54.2666666667,18.3233333333,35.79,20.2,44.6266666667,17.39,38.8633333333,0.8,753.2,87,1.5,42.5,-1.2,8.1139076734,8.1139076734 -40,0,20,36.9,17.2,40.3266666667,20.29,37.2666666667,20.5,35.53,17.89,52.5,3.5,54.995,18.39,35.73,20.2,44.5,17.39,38.9333333333,0.8,753.3333333333,87,1.6666666667,50,-1.2,14.1469282564,14.1469282564 -20,0,20,36.9,17.2,40.4666666667,20.29,37.3266666667,20.5,35.59,17.89,52.36,3.3333333333,54.6933333333,18.29,35.7,20.1333333333,44.5,17.39,39,0.8,753.4666666667,87,1.8333333333,57.5,-1.2,29.0526537807,29.0526537807 -30,0,20,36.9,17.1,40.53,20.26,37.29,20.39,35.59,17.79,52.1633333333,3.0666666667,54.1666666667,18.3566666667,35.76,20.1333333333,44.5,17.39,39.06,0.8,753.6,87,2,65,-1.2,35.9927292797,35.9927292797 -40,0,19.9266666667,36.9,17.075,40.5675,20.26,37.43,20.3233333333,35.59,17.79,52.09,2.6333333333,54.7566666667,18.29,35.7,20.1333333333,44.5,17.39,39.1266666667,0.7666666667,753.6666666667,87,1.8333333333,65,-1.2333333333,16.1175307469,16.1175307469 -40,0,19.89,36.9,17,40.56,20.29,37.345,20.29,35.59,17.79,51.9666666667,2.4333333333,55.03,18.29,35.7,20.15,44.345,17.39,39.2,0.7333333333,753.7333333333,87,1.6666666667,65,-1.2666666667,8.2756382995,8.2756382995 -50,0,19.89,36.9,16.9633333333,40.59,20.23,37.23,20.23,35.59,17.79,51.9,2.1333333333,55.4933333333,18.29,35.6266666667,20.1,44.26,17.39,39.29,0.7,753.8,87,1.5,65,-1.3,47.9383347556,47.9383347556 -50,0,19.89,36.9,16.89,40.59,20.29,37.29,20.2,35.53,17.79,51.9,2,56.4933333333,18.29,35.76,20.1,44.1266666667,17.39,39.3633333333,0.6666666667,753.8666666667,87,1.3333333333,65,-1.3333333333,48.3446174418,48.3446174418 -40,0,19.89,36.9,16.89,40.6266666667,20.29,37.3266666667,20.1333333333,35.59,17.76,51.76,2,57.2666666667,18.29,35.7,20.1,44,17.39,39.4333333333,0.6333333333,753.9333333333,87,1.1666666667,65,-1.3666666667,3.7682331982,3.7682331982 -50,0,19.79,36.79,16.89,40.7,20.29,37.4,20.1,35.53,17.76,51.7,2.06,57.1933333333,18.29,35.7,20.1,44,17.39,39.5,0.6,754,87,1,65,-1.4,44.2548869527,44.2548869527 -40,0,19.79,36.79,16.79,40.6266666667,20.29,37.4,20.1,35.59,17.7,51.59,1.93,56.7,18.29,35.8333333333,20.1,44,17.39,39.53,0.4333333333,754.15,87.5,1,64.8333333333,-1.4833333333,43.0007044226,43.0007044226 -50,0,19.79,36.79,16.79,40.7,20.29,37.4666666667,20,35.5,17.7,51.59,1.73,57.1666666667,18.3233333333,35.9333333333,20.0333333333,43.9333333333,17.39,39.59,0.2666666667,754.3,88,1,64.6666666667,-1.5666666667,42.8640259779,42.8640259779 -50,0,19.73,36.79,16.7,40.7,20.29,37.5,19.9266666667,35.5,17.7,51.56,1.79,58.0966666667,18.3233333333,35.9333333333,20,43.9,17.39,39.6266666667,0.1,754.45,88.5,1,64.5,-1.65,37.6558764256,37.6558764256 -50,0,19.7,36.79,16.7,40.7,20.29,37.5,19.945,35.5,17.7,51.5,1.73,57.9566666667,18.29,35.8633333333,20,43.9,17.39,39.7,-0.0666666667,754.6,89,1,64.3333333333,-1.7333333333,36.865271593,36.865271593 -50,0,19.7,36.79,16.7,40.73,20.29,37.5,19.89,35.5,17.7,51.4666666667,1.53,58.2333333333,18.29,35.79,20,43.9,17.39,39.7,-0.2333333333,754.75,89.5,1,64.1666666667,-1.8166666667,13.5230326094,13.5230326094 -50,0,19.7,36.79,16.7,40.79,20.3566666667,37.5,19.8233333333,35.4333333333,17.7,51.4,1.1966666667,57.5666666667,18.29,35.7,20,43.7666666667,17.39,39.76,-0.4,754.9,90,1,64,-1.9,45.0466590817,45.0466590817 -40,0,19.7,36.79,16.6,40.7,20.39,37.5,19.79,35.3633333333,17.7,51.29,0.7333333333,57.8966666667,18.29,35.8333333333,19.89,43.7,17.39,39.79,-0.4333333333,755.0333333333,90.1666666667,1,64,-1.9,42.5767346751,42.5767346751 -40,0,19.6,36.7,16.6,40.7,20.39,37.5,19.79,35.29,17.6333333333,51.29,0.4,58.5475,18.29,36,19.89,43.7,17.39,39.8633333333,-0.4666666667,755.1666666667,90.3333333333,1,64,-1.9,36.6473512375,36.6473512375 -30,0,19.6,36.7,16.5,40.79,20.39,37.5,19.76,35.29,17.6,51.26,0.1333333333,59.2333333333,18.29,35.9333333333,19.89,43.56,17.39,39.9,-0.5,755.3,90.5,1,64,-1.9,15.5071897316,15.5071897316 -20,0,19.6,36.7,16.5,40.79,20.39,37.5,19.7,35.29,17.6,51.1266666667,-0.0666666667,59.6333333333,18.29,35.9333333333,19.89,43.5,17.39,39.9,-0.5333333333,755.4333333333,90.6666666667,1,64,-1.9,37.3515412444,37.3515412444 -30,0,19.5333333333,36.7,16.4633333333,40.79,20.29,37.5,19.7,35.23,17.6,51.09,-0.2666666667,60.6933333333,18.29,36.1333333333,19.89,43.5,17.39,40,-0.5666666667,755.5666666667,90.8333333333,1,64,-1.9,41.3392231916,41.3392231916 -40,0,19.5666666667,36.7,16.39,40.79,20.29,37.5,19.7,35.23,17.6,51.09,-0.2666666667,61.7666666667,18.3233333333,36.2666666667,19.89,43.56,17.39,40.1266666667,-0.6,755.7,91,1,64,-1.9,0.2178279799,0.2178279799 -90,0,19.5,36.8425,16.39,40.9,20.29,37.5,19.6,35.1566666667,17.6,51,-0.2,61.8266666667,18.39,36.7333333333,19.89,43.7666666667,17.39,40.26,-0.5333333333,755.8166666667,91.1666666667,1,63.5,-1.8166666667,32.8760324046,32.8760324046 -40,0,19.5,37.1633333333,16.365,41.0425,20.23,37.36,19.6,35.29,17.6,50.6666666667,-0.3,61.93,18.39,36.645,19.89,43.9,17.39,40.2,-0.4666666667,755.9333333333,91.3333333333,1,63,-1.7333333333,13.6944175116,13.6944175116 -50,0,19.5,37.2,16.29,41.1633333333,20.2,37.345,19.5666666667,35.23,17.7,48.89,-0.3666666667,61.79,18.39,36.3333333333,19.84,43.495,17.39,40.2,-0.4,756.05,91.5,1,62.5,-1.65,6.514059531,6.514059531 -40,0,19.5,37.0666666667,16.29,41.4633333333,20.1666666667,37.2,19.5,35.29,17.76,47.5566666667,-0.4333333333,62.0966666667,18.3233333333,36.0666666667,19.79,42.99,17.39,40.09,-0.3333333333,756.1666666667,91.6666666667,1,62,-1.5666666667,42.2404646757,42.2404646757 -50,0,19.4633333333,36.9666666667,16.29,41.6633333333,20.1,37.2,19.5,35.29,17.79,46.595,-0.5,62.43,18.29,35.7233333333,19.79,42.6566666667,17.39,40.03,-0.2666666667,756.2833333333,91.8333333333,1,61.5,-1.4833333333,38.805186504,38.805186504 -50,0,19.39,36.9,16.29,41.8266666667,20.0666666667,37.1333333333,19.5,35.3633333333,17.79,45.99,-0.5,63.0666666667,18.29,35.4633333333,19.7,42.3633333333,17.39,40,-0.2,756.4,92,1,61,-1.4,22.2394176293,22.2394176293 -40,0,19.4266666667,36.9633333333,16.29,41.9,20.0666666667,37.06,19.4633333333,35.4,17.8566666667,45.6566666667,-0.4333333333,63.8,18.29,35.2233333333,19.7,42.1566666667,17.39,40,0.15,756.5,91,1,61.3333333333,-1.2166666667,11.7032515234,11.7032515234 -60,0,19.4266666667,37.03,16.29,41.79,20,37,19.4633333333,35.4666666667,17.89,45.2233333333,-0.2333333333,64.4333333333,18.29,35.03,19.7,41.9666666667,17.39,39.9,0.5,756.6,90,1,61.6666666667,-1.0333333333,25.6743090576,25.6743090576 -80,0,19.39,37,16.29,41.73,20,37,19.39,35.5,17.89,45.03,-0.1,64.3666666667,18.29,34.8633333333,19.7,41.8266666667,17.39,39.9,0.85,756.7,89,1,62,-0.85,7.9627394793,7.9627394793 -50,0,19.39,37.2666666667,16.3233333333,41.7666666667,20,36.9333333333,19.39,35.5,17.89,44.7233333333,0.0333333333,64.7266666667,18.29,34.73,19.6333333333,41.56,17.4266666667,39.8266666667,1.2,756.8,88,1,62.3333333333,-0.6666666667,34.8506516544,34.8506516544 -50,0,19.39,37.5666666667,16.3233333333,42.0266666667,20,36.9333333333,19.5,35.645,17.89,44.4633333333,0.2333333333,65.2,18.29,34.56,19.6333333333,41.36,17.5,39.8266666667,1.55,756.9,87,1,62.6666666667,-0.4833333333,10.4356087511,10.4356087511 -20,0,19.39,37.7,16.4266666667,42,20,36.9333333333,19.6333333333,35.7,17.89,44.1333333333,0.75,65.795,18.29,34.4333333333,19.6,41.2,17.5333333333,39.6633333333,1.9,757,86,1,63,-0.3,23.5037239385,23.5037239385 -30,0,19.4633333333,37.9,16.6333333333,42.06,19.9266666667,37,19.76,35.7,17.89,43.9333333333,1.4266666667,66.1233333333,18.29,34.29,19.6,41.2,17.6,39.39,2.2666666667,757.1,84.5,1,63.1666666667,-0.1833333333,39.5961576141,39.5961576141 -40,0,19.39,37.9,17.13,41.7666666667,19.89,37,19.9266666667,35.7,17.9266666667,43.6333333333,1.96,66.2633333333,18.29,34.29,19.6,41.26,17.6333333333,39.0266666667,2.6333333333,757.2,83,1,63.3333333333,-0.0666666667,12.0755004231,12.0755004231 -50,10,19.5,37.9333333333,17.5966666667,41.1666666667,19.89,37,20.0666666667,35.8333333333,18,43.4333333333,2.6333333333,66.2633333333,18.23,34.09,19.5333333333,41.4,17.7,38.8266666667,3,757.3,81.5,1,63.5,0.05,48.9290224854,48.9290224854 -80,0,19.5,38,18.1966666667,40.4233333333,19.89,37,20.23,35.9333333333,18,43.26,3.2333333333,65.8566666667,18.29,34.09,19.6,41.59,17.7,38.73,3.3666666667,757.4,80,1,63.6666666667,0.1666666667,6.7770432914,6.7770432914 -230,0,19.5,38,18.53,39.63,19.8233333333,36.9333333333,20.3566666667,36.06,18,43.1266666667,4.0666666667,64.0266666667,18.23,33.9333333333,19.6,41.4633333333,17.7,38.79,3.7333333333,757.5,78.5,1,63.8333333333,0.2833333333,49.7591202031,49.7591202031 -210,0,19.5,38,18.96,39.1,19.89,36.9666666667,20.5333333333,36.09,18,42.8633333333,4.7333333333,61.0266666667,18.29,33.9333333333,19.5666666667,41.3633333333,17.7,38.845,4.1,757.6,77,1,64,0.4,0.6490761531,0.6490761531 -90,0,19.5,37.9,19.2266666667,38.7666666667,19.89,36.9,20.6,36.1633333333,18.0666666667,42.79,5.5333333333,55.2566666667,18.29,33.76,19.5666666667,41.23,17.73,39.7566666667,4.5166666667,757.6833333333,75.3333333333,1,57.1666666667,0.4833333333,24.985128094,24.985128094 -60,0,19.525,37.975,19.6,38.395,19.89,36.9,20.7,36.2,18.1,42.7,5.9933333333,49.59,18.29,33.6266666667,19.6,40.93,17.79,40.3633333333,4.9333333333,757.7666666667,73.6666666667,1,50.3333333333,0.5666666667,21.337588795,21.337588795 -70,0,19.6,38,19.86,37.9666666667,19.9633333333,36.9,20.76,36.1266666667,18.1,42.7,6.4966666667,45.8,18.34,33.59,19.6,40.6566666667,17.79,40.9266666667,5.35,757.85,72,1,43.5,0.65,2.0882934914,2.0882934914 -60,0,19.6,38.1266666667,20.0666666667,37.8266666667,19.945,36.9,20.8233333333,36.1266666667,18.0666666667,43.03,6.8966666667,43.86,18.39,33.56,19.6333333333,40.5,17.79,41.2,5.7666666667,757.9333333333,70.3333333333,1,36.6666666667,0.7333333333,34.6021194127,34.6021194127 -60,10,19.6,38.2,20.3233333333,37.56,20,36.9333333333,20.89,36.2,17.9266666667,43.6233333333,7.26,41.6566666667,18.39,33.5,19.7,40.375,17.79,41.23,6.1833333333,758.0166666667,68.6666666667,1,29.8333333333,0.8166666667,35.7950043632,35.7950043632 -80,0,19.6333333333,38.3266666667,20.4633333333,37.36,20,36.9333333333,21,36.2,17.89,44.44,7.4,39.6566666667,18.4266666667,33.43,19.7,40.1266666667,17.8566666667,41.3633333333,6.6,758.1,67,1,23,0.9,13.9268187224,13.9268187224 -80,0,19.7,38.4,20.6,37.1,20.1,37,21.0666666667,36.26,17.89,44.9633333333,7.53,37.8333333333,18.5,33.1566666667,19.7,39.8333333333,17.8566666667,41.4,6.9166666667,758.15,66,1.1666666667,23.5,0.9666666667,49.9131861492,49.9131861492 -70,0,19.7,38.4,20.6,36.7666666667,20.0333333333,37,21.3933333333,36.2966666667,17.8233333333,45.09,7.59,37.5666666667,18.5,32.8633333333,19.6333333333,39.5,17.8566666667,41.4666666667,7.2333333333,758.2,65,1.3333333333,24,1.0333333333,35.5472049559,35.5472049559 -70,0,19.76,38.4,20.6,36.4666666667,20,37,21.7266666667,36.03,17.79,45.23,7.8333333333,37.8666666667,18.5,32.6566666667,19.7,39.26,17.89,41.5,7.55,758.25,64,1.5,24.5,1.1,45.8146544406,45.8146544406 -70,0,19.79,38.26,20.6,36.1933333333,20.0666666667,37.1333333333,21.79,35.8633333333,17.79,45.29,7.9666666667,37.46,18.6333333333,32.3633333333,19.7,39.0666666667,17.89,41.5,7.8666666667,758.3,63,1.6666666667,25,1.1666666667,39.1702384455,39.1702384455 -80,0,19.79,38.2,20.6,35.9666666667,20.1666666667,37.2,21.8566666667,35.8633333333,17.79,45.29,8.145,36.345,18.76,32.1566666667,19.79,38.7233333333,17.89,41.5,8.1833333333,758.35,62,1.8333333333,25.5,1.2333333333,30.9296066989,30.9296066989 -170,0,19.89,38.26,20.6,35.8266666667,20.1,37.2,21.945,35.79,17.79,45.3633333333,8.33,35.0566666667,18.9266666667,31.93,19.8566666667,38.4633333333,17.89,41.4333333333,8.5,758.4,61,2,26,1.3,32.7780893189,32.7780893189 -50,10,19.9633333333,38.0666666667,20.6,35.7,20.1333333333,37.2,22,35.6333333333,17.79,45.4,8.53,35.1966666667,19,31.79,20.0333333333,38.2233333333,17.89,41.4666666667,8.6333333333,758.45,60.6666666667,1.8333333333,26,1.35,29.3348483508,29.3348483508 -60,0,20.0333333333,38.03,20.6,35.6266666667,20.1333333333,37.1266666667,22,35.5,17.79,45.4,8.7266666667,34.4266666667,19.2,31.6333333333,20.1666666667,38.03,17.89,41.4,8.7666666667,758.5,60.3333333333,1.6666666667,26,1.4,0.5623347242,0.5623347242 -60,0,20.1666666667,38.03,20.6,35.59,20.1,37.09,22,35.59,17.79,45.4,8.86,34.0933333333,19.3266666667,31.5,20.3233333333,37.8333333333,17.89,41.4,8.9,758.55,60,1.5,26,1.45,32.0441250806,32.0441250806 -70,0,20.29,37.93,20.6,35.59,20.1,37.03,22.0666666667,35.6633333333,17.79,45.4,9.0333333333,33.9,19.5333333333,31.3566666667,20.4633333333,37.6266666667,17.89,41.4666666667,9.0333333333,758.6,59.6666666667,1.3333333333,26,1.5,20.8964783233,20.8964783233 -60,0,20.3566666667,37.73,20.6,35.59,20.1,37,22.1,35.6633333333,17.76,45.4333333333,9.16,33.2333333333,19.6666666667,31.29,20.6333333333,37.4666666667,17.89,41.4,9.1666666667,758.65,59.3333333333,1.1666666667,26,1.55,26.7948252265,26.7948252265 -80,10,20.5,37.59,20.6,35.59,20.1,37,22.1,35.53,17.76,45.4333333333,9.2333333333,32.7233333333,19.79,31.1333333333,20.7,37.2666666667,17.9633333333,41.3266666667,9.3,758.7,59,1,26,1.6,30.1967340754,30.1967340754 -70,20,20.5666666667,37.59,20.5666666667,35.7,20.1666666667,37,22,35.3266666667,17.7,45.4,8.96,32.6633333333,19.79,30.9266666667,20.6666666667,36.9666666667,18,41.29,9.35,758.7166666667,58.3333333333,1,25.1666666667,1.4833333333,35.1398148923,35.1398148923 -70,30,20.5,37.3633333333,20.5,35.7,20.1666666667,37.06,22.0666666667,35.5266666667,17.7,45.4,8.96,33.3,19.7,30.79,20.6,36.8266666667,17.9633333333,41.29,9.4,758.7333333333,57.6666666667,1,24.3333333333,1.3666666667,27.1880416316,27.1880416316 -180,20,20.5,37.29,20.4633333333,35.6333333333,20.2,37.06,22.1,35.6633333333,17.7,45.4,9.1,32.6333333333,19.7,30.79,20.6,36.76,17.9633333333,41.29,9.45,758.75,57,1,23.5,1.25,22.3212315934,22.3212315934 -50,20,20.5,37.395,20.365,35.5,20.2,37.1333333333,22.1,35.4633333333,17.7,45.3266666667,9.33,33.29,19.65,30.65,20.6,36.6266666667,18,41.29,9.5,758.7666666667,56.3333333333,1,22.6666666667,1.1333333333,36.9072549976,36.9072549976 -60,0,20.6,37.8633333333,20.29,35.56,20.245,37.145,22.1333333333,35.3333333333,17.76,45.29,9.53,32.0233333333,19.7,30.5666666667,20.6,36.59,17.9266666667,41.29,9.55,758.7833333333,55.6666666667,1,21.8333333333,1.0166666667,12.718481198,12.718481198 -60,0,20.6666666667,37.6633333333,20.29,35.6633333333,20.29,37.29,22.1333333333,35.1266666667,17.7,45.23,9.83,30.6233333333,19.76,30.5,20.6666666667,36.59,17.9266666667,41.1633333333,9.6,758.8,55,1,21,0.9,21.3413406396,21.3413406396 -50,0,20.7,37.16,20.29,35.53,20.29,37.23,22.1,34.9666666667,17.7,45.2,10.03,30.23,20,30.4633333333,20.79,36.395,18,41.09,9.65,758.8666666667,55,1,21.1666666667,0.9666666667,11.2304686452,11.2304686452 -50,0,20.7,36.8266666667,20.2,35.4,20.29,37.06,22.0333333333,34.7666666667,17.7,45.1266666667,9.9633333333,28.5966666667,20,30.2633333333,20.79,36.26,18,41.03,9.7,758.9333333333,55,1,21.3333333333,1.0333333333,36.4036591258,36.4036591258 -40,0,20.73,36.79,20.2,35.4,20.29,36.9333333333,21.9633333333,34.56,17.7,45.4,9.89,28.99,19.9633333333,30.1666666667,20.79,36.2,18,41.09,9.75,759,55,1,21.5,1.1,15.7604896114,15.7604896114 -50,10,20.79,36.73,20.1,35.5,20.39,36.8633333333,21.89,34.4333333333,17.7,45.73,9.96,27.3333333333,19.9633333333,30.1,20.79,36.06,18,41,9.8,759.0666666667,55,1,21.6666666667,1.1666666667,11.1414231244,11.1414231244 -50,0,20.79,36.6633333333,20.1,35.5,20.39,36.73,21.8566666667,34.26,17.7,45.79,10.25,25.3225,20.1,30.0666666667,20.8566666667,36,18,40.9333333333,9.85,759.1333333333,55,1,21.8333333333,1.2333333333,12.4332839856,12.4332839856 -60,0,20.8566666667,36.59,20.1,35.5,20.39,36.76,21.79,34.2,17.7,45.7,10.3,23.9633333333,20.1666666667,29.86,21.0333333333,35.76,18,40.9,9.9,759.2,55,1,22,1.3,37.4029336032,37.4029336032 -50,0,20.89,36.5,20.1,35.5,20.4633333333,36.76,21.79,33.95,17.7,45.6266666667,10.2266666667,23.2633333333,20.3233333333,29.7266666667,21.1,35.6266666667,18,40.8266666667,9.8833333333,759.2333333333,54.8333333333,1.1666666667,22,1.2166666667,13.5057975887,13.5057975887 -60,0,20.9633333333,36.4333333333,20.1,35.5,20.5,36.6633333333,21.7,33.8633333333,17.7,45.4666666667,10.4333333333,21.8633333333,20.4633333333,29.6,21.1333333333,35.43,18.0333333333,40.79,9.8666666667,759.2666666667,54.6666666667,1.3333333333,22,1.1333333333,24.4305204134,24.4305204134 -50,0,21,36.29,20.1,35.4333333333,20.5,36.59,21.7,33.73,17.7,45.4,10.63,22.5633333333,20.5333333333,29.3566666667,21.2,35.23,18.1,40.73,9.85,759.3,54.5,1.5,22,1.05,34.7495081951,34.7495081951 -60,0,21.0666666667,36.29,20.1,35.4,20.6,36.4666666667,21.6,33.56,17.7,45.26,10.63,20.3566666667,20.6666666667,29.23,21.29,35.1333333333,18.1,40.6633333333,9.8333333333,759.3333333333,54.3333333333,1.6666666667,22,0.9666666667,20.7865599659,20.7865599659 -70,0,21.1,36.1633333333,20.1,35.3266666667,20.6,36.4,21.6,33.4333333333,17.7,45.2,10.6666666667,20.7333333333,20.7,29,21.29,35.06,18.1,40.53,9.8166666667,759.3666666667,54.1666666667,1.8333333333,22,0.8833333333,43.7334130867,43.7334130867 -90,10,21.1,36.09,20,35.26,20.6,36.3633333333,21.6,33.4,17.7,45.09,10.8,20.0666666667,20.7,28.86,21.4266666667,35.39,18.1333333333,40.3266666667,9.8,759.4,54,2,22,0.8,49.7421280481,49.7421280481 -90,0,21.1,36.39,20,35.26,20.6,36.29,21.5333333333,33.4,17.7,45.03,10.66,19.7266666667,20.79,28.6666666667,21.6333333333,35.7233333333,18.2,40.4,9.8,759.4333333333,53.1666666667,2,22.1666666667,0.5666666667,11.9071275345,11.9071275345 -90,0,21.1,36.53,20,35.26,20.6333333333,36.4333333333,21.5,33.3633333333,17.7,45,10.6,20.06,20.79,28.5333333333,21.8233333333,35.8266666667,18.1333333333,40.4,9.8,759.4666666667,52.3333333333,2,22.3333333333,0.3333333333,12.6799283782,12.6799283782 -100,0,21.1666666667,36.1,20,34.9266666667,20.6333333333,36.4333333333,21.5,33.29,17.7,44.9333333333,10.83,20.2633333333,20.79,29.1966666667,21.9633333333,35.9666666667,18.1,40.4,9.8,759.5,51.5,2,22.5,0.1,11.9762746734,11.9762746734 -90,0,21.1,35.36,19.6933333333,33.13,20.5666666667,36.1233333333,21.39,33.3333333333,17.79,44.79,10.89,19.53,20.8566666667,29.6566666667,22.1333333333,36.06,18.1,40.4,9.8,759.5333333333,50.6666666667,2,22.6666666667,-0.1333333333,49.4375134585,49.4375134585 -100,0,21.1,36.395,19.4175,32.495,20.36,35.6566666667,21.39,33,17.79,44.6566666667,10.89,19.23,21,30.1633333333,22.26,36.06,18.2,40.3633333333,9.8,759.5666666667,49.8333333333,2,22.8333333333,-0.3666666667,1.665628003,1.665628003 -110,0,21.1,35.83,19.4633333333,32.9233333333,20.2,35.7,21.3566666667,32.7233333333,17.73,44.43,10.89,19.69,20.9725,30.2425,22.39,36.23,18.2,40.29,9.8,759.6,49,2,23,-0.6,34.6154861734,34.6154861734 -120,10,21.1,36.1633333333,19.5666666667,33.4333333333,20.29,35.79,21.29,32.53,17.79,44.23,11.1,19.7633333333,20.89,29.96,22.39,36.29,18.2,40.29,9.7166666667,759.6666666667,50,1.8333333333,23,-0.4,19.0983855631,19.0983855631 -130,10,21.1,36.0266666667,19.7,33.5,20.29,35.79,21.26,32.5,17.79,44.145,10.96,19.29,20.8566666667,29.6933333333,22.5,36.4,18.2,40.23,9.6333333333,759.7333333333,51,1.6666666667,23,-0.2,28.8885839516,28.8885839516 -220,30,21.1,35.9,19.6,34.1333333333,20.39,35.79,21.2,32.6333333333,17.79,44.2,10.59,19.2233333333,20.8566666667,29.4266666667,22.575,36.3175,18.2,40.23,9.55,759.8,52,1.5,23,0,18.4402710875,18.4402710875 -360,20,21.1,35.9333333333,19.5333333333,34.6,20.39,35.73,21.2,33.0966666667,17.79,44.2,10.1966666667,19.49,20.76,29.1333333333,22.6666666667,36.29,18.2,40.29,9.4666666667,759.8666666667,53,1.3333333333,23,0.2,34.6376689151,34.6376689151 -680,20,21.1,36.1933333333,19.5,34.8266666667,20.39,35.7,21.26,33.5633333333,17.79,44.2,9.7,20.35,20.7,28.9266666667,22.7,36.26,18.2,40.23,9.3833333333,759.9333333333,54,1.1666666667,23,0.4,13.0919759744,13.0919759744 -520,30,21.1,38.4,19.4266666667,35.0266666667,20.39,35.76,21.29,33.9333333333,17.79,44.2,9.3233333333,21,20.6666666667,28.7266666667,22.7,36.1266666667,18.2,40.29,9.3,760,55,1,23,0.6,3.8950669463,3.8950669463 -430,20,21.1666666667,41.5266666667,19.5,36.1,20.5333333333,36.6666666667,21.29,34.06,17.79,44.2666666667,9.0633333333,22,20.6,28.5333333333,22.73,36.2,18.1666666667,40.26,8.8333333333,760.1166666667,57.3333333333,1.1666666667,30,0.7,15.3408361832,15.3408361832 -700,20,21.23,39.9666666667,19.5,36.6933333333,20.6,37.1333333333,21.39,34.545,17.79,44.4666666667,8.5,23.2633333333,20.5,29.3966666667,22.79,36.26,18.1666666667,40.2,8.3666666667,760.2333333333,59.6666666667,1.3333333333,37,0.8,48.4138894128,48.4138894128 -680,30,21.29,42.36,19.5,37.2633333333,20.7,37.5966666667,21.4266666667,34.7566666667,17.79,44.4333333333,8.0333333333,24.4566666667,20.5666666667,31.33,22.76,36.3266666667,18.1333333333,40.2,7.9,760.35,62,1.5,44,0.9,49.5051118545,49.5051118545 -180,10,21.4266666667,47.1,19.5,39.0633333333,20.76,38.2633333333,21.5,35.1633333333,17.79,44.6333333333,7.5933333333,25.6266666667,20.7,33.2966666667,22.7,36.4,18.2,40.2,7.4333333333,760.4666666667,64.3333333333,1.6666666667,51,1,49.3068377255,49.3068377255 -120,0,21.6333333333,46.8933333333,19.6,41.76,20.96,40.06,21.5,35.0266666667,17.79,45.1966666667,7.1333333333,26.5,20.6333333333,33.4966666667,22.6666666667,36.3633333333,18.1333333333,40.2,6.9666666667,760.5833333333,66.6666666667,1.8333333333,58,1.1,34.7479480319,34.7479480319 -130,10,21.9266666667,44.7666666667,19.6,42.7,21.1666666667,41.06,21.4266666667,35.0266666667,17.79,45.9233333333,6.8666666667,27.9666666667,20.4633333333,32.5333333333,22.6,36.23,18.1333333333,40.2,6.5,760.7,69,2,65,1.2,22.5540393963,22.5540393963 -120,0,22,43.5666666667,19.7,42.4666666667,21.2,40.8333333333,21.39,35.3266666667,17.79,46.5666666667,6.66,29.9,20.39,31.9266666667,22.5666666667,36.3266666667,18.1,40.09,6.4166666667,760.8166666667,68.6666666667,2,65,1.05,10.2848947281,10.2848947281 -150,20,22,42.0933333333,19.7,42.1933333333,21.2,40.5,21.39,35.4666666667,17.79,46.8333333333,6.2,31.2,20.3566666667,31.4966666667,22.5,36.4,18.1,40.0675,6.3333333333,760.9333333333,68.3333333333,2,65,0.9,8.5747132543,8.5747132543 -140,30,22,41.2933333333,19.73,41.5333333333,21.2,40.0266666667,21.29,35.5666666667,17.8566666667,47.09,5.7933333333,31.6666666667,20.23,31.0966666667,22.5,36.53,18.1,39.86,6.25,761.05,68,2,65,0.75,22.3155422835,22.3155422835 -140,20,22,40.3,19.79,40.8666666667,21.2,39.6933333333,21.29,35.76,17.79,47.09,5.73,33.03,20.1666666667,30.6933333333,22.5,36.6633333333,18.1333333333,39.9333333333,6.1666666667,761.1666666667,67.6666666667,2,65,0.6,6.4179857261,6.4179857261 -150,20,22,39.6933333333,19.79,40.4,21.23,39.3633333333,21.39,35.9,17.8233333333,47.1266666667,5.3966666667,33.3633333333,20.1,30.36,22.4266666667,36.73,18.1333333333,39.9333333333,6.0833333333,761.2833333333,67.3333333333,2,65,0.45,41.9847046142,41.9847046142 -140,30,22.05,39.19,19.84,39.975,21.23,39.0966666667,21.39,35.9,17.8233333333,47.2,4.9333333333,34.3233333333,20,30.03,22.5,36.8633333333,18.1,40.03,6,761.4,67,2,65,0.3,12.5583818415,12.5583818415 -150,20,22.1,38.7233333333,19.79,39.5666666667,21.29,38.845,21.39,35.8633333333,17.79,47.09,4.66,35.6566666667,19.9725,29.815,22.5,36.9,18.1,40.09,5.8166666667,761.4666666667,68.3333333333,2,64.6666666667,0.3666666667,10.7072818791,10.7072818791 -150,20,22.1,38.39,19.8566666667,39.4666666667,21.29,38.56,21.4633333333,35.73,17.79,47.0225,4.66,37.7966666667,19.89,29.73,22.4266666667,36.8266666667,18.1,40.09,5.6333333333,761.5333333333,69.6666666667,2,64.3333333333,0.4333333333,12.4431681354,12.4431681354 -150,30,22.1,38.1333333333,19.79,39.2666666667,21.29,38.4333333333,21.5,35.73,17.79,46.9333333333,4.9333333333,38.9966666667,19.79,29.5666666667,22.39,36.76,18.1,40.09,5.45,761.6,71,2,64,0.5,3.4979847609,3.4979847609 -140,20,22.1,37.9333333333,19.79,39.1266666667,21.29,38.1633333333,21.5,35.73,17.79,46.8633333333,5.14,40.19,19.79,29.5,22.39,36.76,18.1,40.09,5.2666666667,761.6666666667,72.3333333333,2,63.6666666667,0.5666666667,31.4549478469,31.4549478469 -110,30,22.1,37.8266666667,19.8566666667,39.2,21.29,38.03,21.5,35.7,17.79,46.73,5.09,41.5266666667,19.76,29.79,22.39,36.7,18.1,40.09,5.0833333333,761.7333333333,73.6666666667,2,63.3333333333,0.6333333333,28.7226040731,28.7226040731 -130,20,22.1,37.6933333333,19.8233333333,39,21.26,37.8633333333,21.5666666667,35.7,17.79,46.6633333333,4.9633333333,42.1333333333,19.76,29.9966666667,22.39,36.8266666667,18.1,40.09,4.9,761.8,75,2,63,0.7,16.894233285,16.894233285 -110,0,22.1,37.43,19.8233333333,38.86,21.2,37.79,21.6,35.6633333333,17.79,46.59,4.73,43.03,19.8233333333,31.4666666667,22.39,36.9,18.1,40.09,4.6,761.8833333333,76.5,2,62.6666666667,0.7,8.2661231863,8.2661231863 -110,0,22.1,37.1566666667,19.79,38.59,21.2,37.76,21.6,35.39,18.2933333333,62.9566666667,4.4633333333,44.23,19.9633333333,31.9266666667,22.39,36.9,18.1,40.06,4.3,761.9666666667,78,2,62.3333333333,0.7,0.0060327933,0.0060327933 -80,0,22.1,37.09,19.8566666667,38.6633333333,21.2,37.7,21.5,34.895,19.1,78.7633333333,4.1266666667,45.2333333333,19.8566666667,31.79,22.39,36.9666666667,18.1,39.9333333333,4,762.05,79.5,2,62,0.7,35.3630659753,35.3630659753 -80,0,22.1,37.09,19.79,38.8,21.2,37.59,21.39,34.5266666667,18.8233333333,69.6666666667,3.8,46.0933333333,19.79,31.79,22.29,37.2266666667,18.1,39.9333333333,3.7,762.1333333333,81,2,61.6666666667,0.7,7.5784324552,7.5784324552 -90,0,22.1,37.23,19.79,39.3333333333,21.2,37.53,21.3233333333,34.3266666667,18.9633333333,58.3333333333,3.56,47.5333333333,19.79,31.86,22.29,37.6333333333,18.1,39.9333333333,3.4,762.2166666667,82.5,2,61.3333333333,0.7,45.4086084501,45.4086084501 -80,0,22.1,37.3633333333,19.76,39.73,21.2,37.5,21.29,34.1633333333,19.1333333333,52.2666666667,3.36,48.5933333333,19.79,31.9266666667,22.29,37.9,18.1,39.9,3.1,762.3,84,2,61,0.7,16.7937021935,16.7937021935 -80,0,22.1,37.5,19.7,39.8633333333,21.2,37.5,21.23,34.03,19.2,49.86,3.26,50.6266666667,19.7,32,22.23,37.9,18.1,39.8266666667,3.1166666667,762.35,83.3333333333,1.8333333333,61.1666666667,0.6,32.1112620877,32.1112620877 -70,10,22.0333333333,37.4333333333,19.6,39.8266666667,21.2,37.5,21.1666666667,33.9,19.2,47.6666666667,3.1266666667,50.76,19.7,32,22.1,38.03,18.1,39.7233333333,3.1333333333,762.4,82.6666666667,1.6666666667,61.3333333333,0.5,41.1109291716,41.1109291716 -50,10,22,37.4333333333,19.6,39.9,21.2,37.5,21.1,33.9666666667,19.2,46.3933333333,2.9,51.8633333333,19.7,31.9266666667,22.1,38.1633333333,18.1,39.47,3.15,762.45,82,1.5,61.5,0.4,11.4885263494,11.4885263494 -60,0,22,37.6333333333,19.5,40.03,21.2,37.59,21.0666666667,33.9,19.0666666667,46.9966666667,2.7,52.53,19.7,32.1333333333,22.1,38.3266666667,18.1,39.3633333333,3.1666666667,762.5,81.3333333333,1.3333333333,61.6666666667,0.3,12.268746749,12.268746749 -50,0,22,37.8266666667,19.4266666667,40.09,21.1333333333,37.59,21,33.9,18.9266666667,48.1966666667,2.56,53.4266666667,19.7,32.4633333333,22.1,38.5266666667,18.1,39.4633333333,3.1833333333,762.55,80.6666666667,1.1666666667,61.8333333333,0.2,20.212424465,20.212424465 -60,0,21.9266666667,37.9666666667,19.3566666667,40.09,21.1,37.7,20.9633333333,33.9,18.76,49.3966666667,2.5,54.2933333333,19.7,32.7233333333,22.1333333333,38.79,18.1,39.6633333333,3.2,762.6,80,1,62,0.1,6.5302144154,6.5302144154 -30,0,21.8566666667,38,19.2225,40.0225,21.1,37.76,20.89,33.9,18.6333333333,49.99,2.4333333333,55.83,19.7,32.9333333333,22.1333333333,38.8633333333,18.1,39.73,3,762.6666666667,80.8333333333,1,61.6666666667,0.0333333333,10.7220374164,10.7220374164 -30,0,21.79,38.0675,19.1333333333,40.06,21.1,37.79,20.89,33.9,18.6,50.5,2.3475,55.7475,19.7,33.095,22.1,39.1566666667,18.1,39.79,2.8,762.7333333333,81.6666666667,1,61.3333333333,-0.0333333333,45.0636002584,45.0636002584 -30,0,21.73,38.09,19.0666666667,40.06,21.1,37.79,20.8233333333,33.8266666667,18.55,50.9475,2.09,56.1,19.7,33.2,22.1,39.43,18.1,39.79,2.6,762.8,82.5,1,61,-0.1,29.7334565897,29.7334565897 -40,0,21.7,38.09,19,40,21.1,37.93,20.79,33.79,18.5333333333,51.2233333333,2.2,57.1,19.7,33.36,22.0666666667,39.73,18.1,39.8633333333,2.4,762.8666666667,83.3333333333,1,60.6666666667,-0.1666666667,41.6509015486,41.6509015486 -50,0,21.7,38.09,18.89,40,21.1,38,20.79,33.79,18.4633333333,51.4,2.2,57.7666666667,19.7,33.56,22,39.79,18.1,39.9333333333,2.2,762.9333333333,84.1666666667,1,60.3333333333,-0.2333333333,14.5283899852,14.5283899852 -40,0,21.6,38,18.8233333333,39.9333333333,21.1,38,20.7,33.79,18.39,51.4,2.1633333333,57.8333333333,19.6333333333,33.6566666667,21.9633333333,39.9333333333,18.1,39.9333333333,2,763,85,1,60,-0.3,3.8934811368,3.8934811368 -50,0,21.5333333333,37.9333333333,18.76,39.9,21.1,37.9666666667,20.7,33.79,18.39,51.5,2.03,57.5,19.7,33.8633333333,21.865,40.0225,18.1333333333,40,1.95,763,84.8333333333,1,60.1666666667,-0.3666666667,48.7000907888,48.7000907888 -50,0,21.5,37.9,18.7,39.9,21.1,37.9,20.6,33.7,18.3233333333,51.56,1.8266666667,58.23,19.6666666667,34,21.79,40.2233333333,18.2,40,1.9,763,84.6666666667,1,60.3333333333,-0.4333333333,28.0098965042,28.0098965042 -60,0,21.5,37.9,18.6666666667,39.9,21.1,37.9,20.6,33.7,18.29,51.59,1.9666666667,59.8233333333,19.6,34.06,21.76,40.53,18.1,40.09,1.85,763,84.5,1,60.5,-0.5,14.9089554441,14.9089554441 -50,0,21.39,37.6633333333,18.5333333333,39.9,21.1,37.8266666667,20.6,33.7,18.29,51.59,1.9666666667,59.3333333333,19.7,34.29,21.7,40.99,18.1,40.09,1.8,763,84.3333333333,1,60.6666666667,-0.5666666667,1.2241076678,1.2241076678 -50,0,21.39,37.59,18.4633333333,39.9666666667,21.1,37.79,20.6,33.79,18.29,51.59,1.8266666667,59.1266666667,19.6333333333,34.23,21.7,41.36,18.1,40.2,1.75,763,84.1666666667,1,60.8333333333,-0.6333333333,6.9053698913,6.9053698913 -40,0,21.29,37.56,18.39,39.9666666667,21.1,37.79,20.5333333333,33.79,18.29,51.53,1.5966666667,58.93,19.6,34.4333333333,21.7,41.7666666667,18.1,40.26,1.7,763,84,1,61,-0.7,40.3274834971,40.3274834971 -50,0,21.29,37.5,18.29,40,21.1,37.9,20.5,33.79,18.26,51.5266666667,1.2633333333,59.1233333333,19.6,34.56,21.6666666667,42.36,18.1,40.29,1.5833333333,763.0333333333,84.6666666667,1,59.5,-0.7166666667,47.6025252952,47.6025252952 -50,0,21.2,37.4,18.23,40,21.1,37.9666666667,20.5,33.79,18.2,51.4,1.1,60.1,19.6,34.79,21.6,42.6933333333,18.1666666667,40.3633333333,1.4666666667,763.0666666667,85.3333333333,1,58,-0.7333333333,1.0831924621,1.0831924621 -50,0,21.2,37.4,18.2,40.1266666667,21.1,37.9333333333,20.4266666667,33.73,18.2,51.3633333333,1.1666666667,60.9666666667,19.6,34.79,21.6,43.1566666667,18.1333333333,40.4333333333,1.35,763.1,86,1,56.5,-0.75,19.52720111,19.52720111 -60,0,21.2,37.4333333333,18.1333333333,40.26,21.1,38,20.4266666667,33.79,18.2,51.29,1.1666666667,61.26,19.6,34.9,21.6,43.43,18.125,40.5,1.2333333333,763.1333333333,86.6666666667,1,55,-0.7666666667,10.8009824064,10.8009824064 -40,0,21.1333333333,37.5,18.0666666667,40.3633333333,21.1,38,20.39,33.79,18.1,51.26,0.9666666667,61.26,19.6,34.9,21.5666666667,43.59,18.1,40.56,1.1166666667,763.1666666667,87.3333333333,1,53.5,-0.7833333333,1.1811789242,1.1811789242 -30,0,21.1,37.59,18,40.3633333333,21.1,37.9333333333,20.39,33.79,18.1,51.2,0.55,61.3,19.6,34.9333333333,21.5,43.59,18.1,40.59,1,763.2,88,1,52,-0.8,38.6599084595,38.6599084595 -20,0,21.1,37.59,17.9633333333,40.5,21.1,37.9333333333,20.29,33.79,18.1,51.1633333333,0.2666666667,61.8933333333,19.6,35,21.5,43.5,18.1,40.6633333333,0.8833333333,763.2333333333,88.1666666667,1,51.1666666667,-0.8833333333,6.0106372577,6.0106372577 -40,0,21.0666666667,37.56,17.815,40.5,21.0333333333,37.86,20.29,33.79,18.1,51.09,0.2,62.9666666667,19.6,35.09,21.4266666667,43.4333333333,18.1,40.7,0.7666666667,763.2666666667,88.3333333333,1,50.3333333333,-0.9666666667,6.5524690435,6.5524690435 -50,0,21,37.5,17.79,40.56,20.89,37.79,20.29,33.79,18.1,51.06,0.2333333333,63.63,19.6,35.0675,21.39,43.4,18.1,40.76,0.65,763.3,88.5,1,49.5,-1.05,21.7472478049,21.7472478049 -50,0,21,37.5,17.7,40.59,20.8566666667,37.76,20.29,33.79,18.1,51,0.0333333333,63.4233333333,19.6,35,21.39,43.4,18.1666666667,40.79,0.5333333333,763.3333333333,88.6666666667,1,48.6666666667,-1.1333333333,33.5527666495,33.5527666495 -50,0,20.89,37.4666666667,17.6333333333,40.59,20.79,37.7,20.26,33.76,18.1,51,0.0333333333,65.0233333333,19.6,35.09,21.39,43.5666666667,18.1666666667,40.79,0.4166666667,763.3666666667,88.8333333333,1,47.8333333333,-1.2166666667,42.5019822898,42.5019822898 -50,0,20.89,37.3266666667,17.6,40.73,20.7,37.6633333333,20.2,33.76,18,50.79,0.1,65.6233333333,19.6,35.09,21.39,43.7,18.1666666667,40.9,0.3,763.4,89,1,47,-1.3,38.2716954686,38.2716954686 -70,0,20.89,37.2,17.5333333333,40.79,20.7,37.59,20.2,33.73,18,50.73,0,65.4633333333,19.6,35.1266666667,21.29,43.7,18.1666666667,40.9,0.3166666667,763.4,89.1666666667,1,46,-1.25,20.5811096705,20.5811096705 -40,0,20.8233333333,37.1266666667,17.5,41,20.7,37.59,20.2,33.79,18,50.7,0,65.8633333333,19.6,35.1266666667,21.29,43.7,18.1,41,0.3333333333,763.4,89.3333333333,1,45,-1.2,12.2029739781,12.2029739781 -60,0,20.79,36.9,17.4266666667,41,20.7,37.53,20.1666666667,33.79,18,50.6266666667,-0.1,66.03,19.6,35.2,21.29,43.7,18.1666666667,41,0.35,763.4,89.5,1,44,-1.15,35.4531573597,35.4531573597 -40,0,20.79,36.8266666667,17.39,41.09,20.7,37.5,20.1,33.79,18,50.59,-0.0333333333,66.6966666667,19.6,35.26,21.29,43.59,18.1666666667,41,0.3666666667,763.4,89.6666666667,1,43,-1.1,30.7816794957,30.7816794957 -40,0,20.79,36.7,17.39,41.1633333333,20.7,37.5,20.1,33.79,18,50.53,-0.0333333333,66.83,19.6,35.26,21.23,43.59,18.1,41.06,0.3833333333,763.4,89.8333333333,1,42,-1.05,20.1015171828,20.1015171828 -60,0,20.73,36.7,17.29,41.3266666667,20.7,37.4,20.1,33.79,17.9633333333,50.5,-0.1666666667,66.4966666667,19.6,35.26,21.2,43.4666666667,18.1333333333,41.09,0.4,763.4,90,1,41,-1,37.1664180886,37.1664180886 -40,0,20.7,36.59,17.23,41.3266666667,20.7,37.4666666667,20.1,33.79,17.89,50.4333333333,-0.2333333333,66.4333333333,19.5333333333,35.4333333333,21.2,43.3266666667,18.1333333333,41.09,0.2833333333,763.4333333333,90.5,1.1666666667,40,-1.05,46.872348059,46.872348059 -40,0,20.7,36.59,17.1666666667,41.4,20.6666666667,37.4,20.0666666667,33.79,17.89,50.4,-0.3,66.7666666667,19.6,35.4333333333,21.2,43.2,18.1666666667,41.09,0.1666666667,763.4666666667,91,1.3333333333,39,-1.1,14.2932593473,14.2932593473 -30,0,20.7,36.5,17.1,41.4666666667,20.6,37.3266666667,20,33.79,17.89,50.3266666667,-0.2,68.19,19.5,35.5,21.2,43.2,18.1666666667,41.09,0.05,763.5,91.5,1.5,38,-1.15,1.9758544513,1.9758544513 -20,0,20.7,36.5,17.1,41.4333333333,20.6,37.2,20,33.79,17.89,50.29,-0.025,69.0925,19.5,35.5,21.1666666667,43.1633333333,18.2,41.09,-0.0666666667,763.5333333333,92,1.6666666667,37,-1.2,29.3522124179,29.3522124179 -50,0,20.6,36.3633333333,17.0333333333,41.5,20.5333333333,37.26,20,33.8633333333,17.89,50.23,0.1666666667,69.9333333333,19.5,35.4,21.1,43.09,18.1,41.09,-0.1833333333,763.5666666667,92.5,1.8333333333,36,-1.25,8.6865787278,8.6865787278 -50,0,20.6,36.29,17,41.4,20.4633333333,37.2,19.9266666667,33.9,17.89,50.2,0.2333333333,70.5633333333,19.5,35.4,21.1,43.1266666667,18.1,41.09,-0.3,763.6,93,2,35,-1.3,6.0834217118,6.0834217118 -50,0,20.5,36.29,17,41.4666666667,20.4633333333,37.26,20,33.9,17.89,50.2,0.3666666667,70.7633333333,19.5,35.4333333333,21.1,43.2,18.2,41.09,-0.4166666667,763.6,93.1666666667,1.8333333333,34.5,-1.4,21.0084448452,21.0084448452 -50,0,20.5,36.29,16.89,41.59,20.39,37.2,19.9633333333,34,17.89,50.09,0.4,70.8566666667,19.5,35.5,21.1,43.1633333333,18.2,41.09,-0.5333333333,763.6,93.3333333333,1.6666666667,34,-1.5,31.2530521769,31.2530521769 -50,0,20.5,36.2,16.865,41.5675,20.39,37.2,19.89,34,17.8233333333,50.03,0.3333333333,70.8566666667,19.5,35.5,21.0333333333,43.03,18.1,41.09,-0.65,763.6,93.5,1.5,33.5,-1.6,38.8814292848,38.8814292848 -50,0,20.5,36.2,16.79,41.56,20.39,37.145,19.89,34,17.79,49.9666666667,0.2333333333,70.3933333333,19.4725,35.475,21,43,18.1666666667,41.09,-0.7666666667,763.6,93.6666666667,1.3333333333,33,-1.7,8.882973576,8.882973576 -50,0,20.39,36.145,16.79,41.59,20.4266666667,37.2,19.89,34,17.79,49.9,0.3,70.9933333333,19.39,35.4,21,42.9333333333,18.1666666667,41.06,-0.8833333333,763.6,93.8333333333,1.1666666667,32.5,-1.8,11.8803511723,11.8803511723 -50,0,20.39,36.09,16.79,41.6633333333,20.5,37.2,19.8566666667,34.06,17.79,49.9,0.2666666667,71.1633333333,19.39,35.5,21,42.9,18.1666666667,41.06,-1,763.6,94,1,32,-1.9,26.9675561925,26.9675561925 -40,0,20.39,36.09,16.76,41.7,20.5,37.23,19.79,34,17.79,49.8633333333,0.2,70.9566666667,19.4633333333,35.56,21,42.9,18.1,41,-0.9666666667,763.7,93.8333333333,1,29.8333333333,-1.8833333333,0.7982237614,0.7982237614 -50,0,20.3566666667,36.09,16.7,41.7,20.5,37.29,19.79,34,17.79,49.79,0.0666666667,70.5933333333,19.4633333333,35.59,20.89,42.9333333333,18.1666666667,41,-0.9333333333,763.8,93.6666666667,1,27.6666666667,-1.8666666667,17.9523276514,17.9523276514 -50,0,20.29,36.1633333333,16.7,41.79,20.5,37.4,19.79,34,17.79,49.79,0,70.6666666667,19.39,35.59,20.89,43,18.1666666667,41,-0.9,763.9,93.5,1,25.5,-1.85,11.4783267025,11.4783267025 -30,0,20.29,36.2,16.7,41.79,20.5666666667,37.4,19.79,34.09,17.79,49.79,0,70.8633333333,19.39,35.6266666667,20.89,43,18.1,41.06,-0.8666666667,764,93.3333333333,1,23.3333333333,-1.8333333333,9.3663471634,9.3663471634 -30,0,20.29,36.2,16.6666666667,41.8633333333,20.5,37.5,19.79,34.09,17.79,49.79,-0.2666666667,69.59,19.39,35.76,20.815,42.95,18.2,41.09,-0.8333333333,764.1,93.1666666667,1,21.1666666667,-1.8166666667,46.5715650469,46.5715650469 -30,10,20.26,36.1633333333,16.6,41.79,20.5,37.56,19.745,34.09,17.73,49.73,-0.5,69.2966666667,19.4266666667,35.86,20.8566666667,43.06,18.2,41.09,-0.8,764.2,93,1,19,-1.8,48.1999743148,48.1999743148 -80,0,20.2,36.1633333333,16.6,41.8633333333,20.5,37.59,19.7,34.09,17.79,49.76,-0.6333333333,68.8966666667,19.4266666667,36.1333333333,20.79,43.0666666667,18.2,41.23,-0.75,764.25,93.3333333333,1,18,-1.7,21.7923889169,21.7923889169 -50,0,20.2,36.4633333333,16.55,41.8266666667,20.4266666667,37.59,19.7,34.09,17.79,49.5666666667,-0.85,69.39,19.39,36.2233333333,20.79,43.0666666667,18.2,41.23,-0.7,764.3,93.6666666667,1,17,-1.6,29.0644381312,29.0644381312 -40,0,20.2,36.7233333333,16.5666666667,41.93,20.4633333333,37.6633333333,19.7,34.1266666667,17.89,48.2633333333,-1.0333333333,69.4,19.39,35.9633333333,20.76,42.6,18.2,41.2,-0.65,764.35,94,1,16,-1.5,38.1390440511,38.1390440511 -90,0,20.2,36.9,16.5,42.1566666667,20.39,37.53,19.7,34.2,17.9633333333,47.3966666667,-1.1,69.26,19.39,35.5266666667,20.7,42.2666666667,18.2,41.2,-0.6,764.4,94.3333333333,1,15,-1.4,46.7264083563,46.7264083563 -70,0,20.2,37.16,16.5,42.43,20.39,37.5,19.7,34.36,18,46.66,-1.0666666667,69.66,19.3233333333,35.3266666667,20.7,42.0266666667,18.2,41.045,-0.55,764.45,94.6666666667,1,14,-1.3,5.4657182307,5.4657182307 -280,0,20.2,37.4633333333,16.6,42.7666666667,20.39,37.5,19.7,34.6333333333,18.0666666667,46.1933333333,-0.8666666667,70.06,19.29,35.06,20.7,41.7666666667,18.2,40.9,-0.5,764.5,95,1,13,-1.2,21.5561732417,21.5561732417 -180,10,20.2,37.53,16.6,42.9666666667,20.29,37.3633333333,19.6666666667,34.7233333333,18.1,45.7233333333,-0.6666666667,70.8233333333,19.29,34.86,20.6666666667,41.5266666667,18.1333333333,40.8266666667,-0.15,764.55,94.3333333333,1,13.6666666667,-0.9666666667,38.9639277593,38.9639277593 -290,0,20.2,37.5,16.6,42.8633333333,20.29,37.29,19.6,34.59,18.1,45.53,-0.4,71.63,19.29,34.7,20.6,41.3266666667,18.2,40.6633333333,0.2,764.6,93.6666666667,1,14.3333333333,-0.7333333333,9.8074531765,9.8074531765 -80,0,20.1333333333,37.56,16.6666666667,42.79,20.3233333333,37.3266666667,19.7,34.76,18.0666666667,45.7666666667,-0.1333333333,72.09,19.29,34.5666666667,20.6,41.1633333333,18.2,40.53,0.55,764.65,93,1,15,-0.5,10.2478606394,10.2478606394 -330,0,20.1666666667,38.0266666667,16.7,42.495,20.39,37.4,19.7,34.76,18,46.1,0.0666666667,72.23,19.2,33.99,20.6,40.9633333333,18.2,40.2966666667,0.9,764.7,92.3333333333,1,15.6666666667,-0.2666666667,16.2747518742,16.2747518742 -140,0,20.1,38.6933333333,16.79,42.4,20.39,37.4,19.7,34.9333333333,17.89,46.29,0.2666666667,72.4966666667,19.175,33.4975,20.5,40.49,18.2,39.89,1.25,764.75,91.6666666667,1,16.3333333333,-0.0333333333,47.6277058711,47.6277058711 -50,10,20.1,37.84,16.8566666667,41.9266666667,20.39,37.43,19.7,34.8,17.89,46.345,0.6,73.0966666667,19.1,33.0666666667,20.5,40.1566666667,18.2,39.4666666667,1.6,764.8,91,1,17,0.2,26.5227193129,26.5227193129 -30,0,20.1,37.0566666667,17.0333333333,40.6666666667,20.3233333333,37.03,19.73,34.49,17.89,46.29,1.0966666667,73.4333333333,19.0666666667,32.7966666667,20.5,39.8633333333,18.26,39.2666666667,1.8666666667,764.8166666667,90.5,1.1666666667,20.5,0.3833333333,25.1037208131,25.1037208131 -50,10,20.1,36.33,17.2266666667,39.3933333333,20.2,36.6633333333,19.79,34.1566666667,17.89,46.2,1.43,73.6266666667,19,32.53,20.4266666667,39.5966666667,18.29,38.76,2.1333333333,764.8333333333,90,1.3333333333,24,0.5666666667,49.3162644329,49.3162644329 -50,10,20.1,36.06,17.5666666667,38.6933333333,20.2,36.59,19.89,33.8633333333,17.89,46.1266666667,1.8,73.56,19,32.3333333333,20.39,39.3633333333,18.29,38.7,2.4,764.85,89.5,1.5,27.5,0.75,18.0421035853,18.0421035853 -320,10,20.1,35.9333333333,17.8266666667,38.36,20.2,36.6633333333,19.9633333333,33.79,17.79,45.8333333333,2.1333333333,73.56,19,32.2,20.39,39.23,18.29,38.6633333333,2.6666666667,764.8666666667,89,1.6666666667,31,0.9333333333,19.3981290911,19.3981290911 -360,0,20.1,35.8333333333,18.1633333333,37.6966666667,20.2,36.2566666667,20,33.76,17.79,45.5666666667,2.6933333333,73.3666666667,19,32.06,20.39,39.09,18.29,38.59,2.9333333333,764.8833333333,88.5,1.8333333333,34.5,1.1166666667,48.5266384552,48.5266384552 -50,10,20.0333333333,35.0266666667,18.29,36.4966666667,20.1,35.4966666667,20.075,33.5425,17.79,45.43,3.175,72.6975,19,31.9266666667,20.39,39.03,18.29,38.7,3.2,764.9,88,2,38,1.3,44.1244524787,44.1244524787 -70,10,20,34.2666666667,18.39,35.3633333333,19.96,34.83,20.1,33.0966666667,17.79,45.23,3.5266666667,70.83,19,31.79,20.29,38.79,18.29,38.7,3.4833333333,764.9666666667,86.3333333333,2,40.6666666667,1.3166666667,49.5757103316,49.5757103316 -50,10,20,33.86,18.39,34.83,19.8566666667,34.3633333333,20.1666666667,32.7233333333,17.79,45.06,3.8,69.1,19,31.73,20.3233333333,38.7,18.29,38.89,3.7666666667,765.0333333333,84.6666666667,2,43.3333333333,1.3333333333,17.0864735614,17.0864735614 -70,10,19.89,33.79,18.5666666667,34.6633333333,19.79,34.29,20.1,32.53,17.79,44.9333333333,4.1266666667,67.7,19,31.76,20.3233333333,38.6266666667,18.29,39.1633333333,4.05,765.1,83,2,46,1.35,23.1742570177,23.1742570177 -40,0,19.89,33.79,18.76,34.53,19.79,34.4,20.2,32.4,17.79,44.8633333333,4.4633333333,64.4633333333,19,31.7,20.29,38.5,18.29,39.4333333333,4.3333333333,765.1666666667,81.3333333333,2,48.6666666667,1.3666666667,42.037761095,42.037761095 -30,10,19.89,33.7233333333,18.9633333333,34.09,19.73,34.0666666667,20.2,32.4,17.79,44.79,4.73,62.1233333333,19.0333333333,31.6333333333,20.29,38.4333333333,18.29,39.6333333333,4.6166666667,765.2333333333,79.6666666667,2,51.3333333333,1.3833333333,43.5999943758,43.5999943758 -30,0,19.89,33.59,18.9633333333,34.09,19.7,34.1633333333,20.23,32.5666666667,17.79,44.6633333333,5.1,59.89,19.1,31.6333333333,20.3566666667,38.1633333333,18.29,39.745,4.9,765.3,78,2,54,1.4,8.3102907403,8.3102907403 -20,10,19.89,33.5266666667,19.1333333333,33.66,19.6333333333,33.6966666667,20.29,32.76,17.79,44.53,5.3666666667,57.83,19.1,31.6,20.29,38.03,18.29,39.8266666667,5.1833333333,765.3,76.6666666667,2.3333333333,55,1.4,13.1109943963,13.1109943963 -50,10,19.8233333333,33.1933333333,18.9266666667,33.2666666667,19.4633333333,33.1,20.29,32.9333333333,17.76,44.3633333333,5.6233333333,55.6,19.1,31.5333333333,20.29,37.8633333333,18.29,39.9,5.4666666667,765.3,75.3333333333,2.6666666667,56,1.4,38.7980785454,38.7980785454 -50,0,19.76,32.9666666667,18.7,33.23,19.3233333333,32.8266666667,20.29,33.06,17.76,44.23,5.83,54.9933333333,19.2,31.5,20.29,37.79,18.29,40,5.75,765.3,74,3,57,1.4,21.7942696647,21.7942696647 -50,10,19.7,32.9,18.6333333333,33.23,19.2,32.79,20.39,33.2,17.79,44.2,6.16,53.29,19.2,31.4266666667,20.39,37.6633333333,18.29,40,6.0333333333,765.3,72.6666666667,3.3333333333,58,1.4,26.6487564542,26.6487564542 -50,0,19.6,32.76,18.5,33.245,19.1333333333,32.79,20.4633333333,33.26,17.79,44.1266666667,6.4333333333,51.6233333333,19.29,31.3566666667,20.39,37.59,18.29,40.03,6.3166666667,765.3,71.3333333333,3.6666666667,59,1.4,3.7605438731,3.7605438731 -90,10,19.6,32.8333333333,18.6633333333,33.36,19.1,33.19,20.5,33.4,17.76,44.09,6.6233333333,49.1333333333,19.3925,31.29,20.5,37.5266666667,18.29,40.03,6.6,765.3,70,4,60,1.4,8.314271667,8.314271667 -100,10,19.6333333333,33.5,18.8566666667,33.5,19.2,33.53,20.5666666667,33.4,17.7,44.0675,6.83,47.5266666667,19.5666666667,31.23,20.5666666667,37.3266666667,18.29,40.03,6.8833333333,765.2833333333,68.1666666667,4,60.5,1.2833333333,35.3987569106,35.3987569106 -60,0,19.7675,34.65,19.1,33.7666666667,19.3266666667,33.7233333333,20.6,33.4333333333,17.7,43.9333333333,7.1,47.5266666667,19.6333333333,31.1,20.7,37.2233333333,18.29,40.09,7.1666666667,765.2666666667,66.3333333333,4,61,1.1666666667,42.1458275639,42.1458275639 -40,10,19.79,34.7,19.1666666667,34.0266666667,19.39,33.9333333333,20.6666666667,33.56,17.7,43.8633333333,7.3666666667,46.5266666667,19.76,31.0333333333,20.76,37.03,18.29,39.3633333333,7.45,765.25,64.5,4,61.5,1.05,32.1325007477,32.1325007477 -30,0,19.9266666667,34.9333333333,19.23,34.2666666667,19.4633333333,34.1333333333,20.7,33.59,17.7,43.73,7.5633333333,44.6,19.89,30.9633333333,20.9266666667,36.9666666667,18.29,39.3633333333,7.7333333333,765.2333333333,62.6666666667,4,62,0.9333333333,20.6973570166,20.6973570166 -60,10,20.0666666667,35.06,19.29,34.4,19.5333333333,34.23,20.7,33.59,18.1,61.4,7.8225,41.595,19.9633333333,30.8233333333,21.0666666667,36.8266666667,18.39,39.53,8.0166666667,765.2166666667,60.8333333333,4,62.5,0.8166666667,19.8728150222,19.8728150222 -30,0,20.1333333333,35.09,19.3233333333,34.3633333333,19.6,34.3633333333,20.7,33.59,18.1,62.3333333333,8.0666666667,39.5333333333,20.1333333333,30.7266666667,21.1333333333,36.6333333333,18.39,39.53,8.3,765.2,59,4,63,0.7,9.6628931235,9.6628931235 -40,10,20.26,35.4233333333,19.39,34.29,19.6333333333,34.4633333333,20.7,33.59,18.1,62.5266666667,8.33,35.76,20.26,30.6,21.26,36.4333333333,18.39,39.53,8.4666666667,765.1333333333,58.1666666667,4,55.8333333333,0.65,2.5864468887,2.5864468887 -50,10,20.3233333333,34.99,19.4266666667,34.23,19.7,34.59,20.7,33.59,18.0333333333,62.0666666667,8.53,33.9,20.3233333333,30.26,21.39,36.1933333333,18.39,39.59,8.6333333333,765.0666666667,57.3333333333,4,48.6666666667,0.6,3.5313148168,3.5313148168 -40,0,20.39,34.5966666667,19.5,34.29,19.73,34.6633333333,20.7,33.56,18,61.36,8.7566666667,31.8,20.4633333333,30.1333333333,21.5725,35.8975,18.39,39.59,8.8,765,56.5,4,41.5,0.55,18.2765249629,18.2765249629 -50,10,20.5,34.4,19.4266666667,34.3266666667,19.79,34.59,20.7,33.5,18,60.5666666667,8.9633333333,30.46,20.6333333333,29.89,21.76,35.73,18.39,39.59,8.9666666667,764.9333333333,55.6666666667,4,34.3333333333,0.5,49.2155192769,49.2155192769 -50,0,20.5666666667,34.3266666667,19.5,34.4,19.8233333333,34.6266666667,20.7,33.4666666667,17.89,59.5333333333,9.0333333333,28.5566666667,20.76,29.7633333333,21.8233333333,35.4666666667,18.39,39.5,9.1333333333,764.8666666667,54.8333333333,4,27.1666666667,0.45,38.3900888963,38.3900888963 -50,10,20.7,34.3333333333,19.5,34.5,19.89,34.7,20.7,33.3266666667,17.89,58.7933333333,9.1,28.6966666667,20.9266666667,29.6333333333,21.89,35.2666666667,18.39,39.4333333333,9.3,764.8,54,4,20,0.4,47.2173330141,47.2173330141 -60,10,20.7,34.1266666667,19.5,34.4333333333,19.89,34.7,20.7,33.29,17.89,57.5666666667,9.33,29.1266666667,21.0666666667,29.5,22.0333333333,35,18.5,39.5,9.4166666667,764.8,53.8333333333,4,27.5,0.45,10.0946600898,10.0946600898 -50,0,20.73,33.9666666667,19.5,34.3633333333,19.89,34.7,20.7,33.29,17.89,55.9,9.4633333333,28.3933333333,21.2,29.3266666667,22.1666666667,34.9333333333,18.5,39.4666666667,9.5333333333,764.8,53.6666666667,4,35,0.5,24.5808366919,24.5808366919 -50,10,20.79,33.8266666667,19.5666666667,34.29,20,34.7,20.73,33.29,17.79,54.1966666667,9.5333333333,26.9633333333,21.26,29.2,22.29,34.76,18.5,39.4,9.65,764.8,53.5,4,42.5,0.55,47.8159138002,47.8159138002 -50,0,20.79,33.7,19.6,34.26,20.0666666667,34.7,20.79,33.29,17.79,53.1966666667,9.6,26.1566666667,21.4266666667,29,22.3566666667,34.5666666667,18.5,39.3633333333,9.7666666667,764.8,53.3333333333,4,50,0.6,47.9292421136,47.9292421136 -50,10,20.8566666667,33.6266666667,19.5333333333,34.1266666667,20,34.59,20.79,33.2,17.79,52.2333333333,9.69,24.7,21.5,28.9266666667,22.4266666667,34.4,18.5,39.29,9.8833333333,764.8,53.1666666667,4,57.5,0.65,9.0854087495,9.0854087495 -50,10,20.89,33.5,19.6,33.95,20.075,34.5675,20.79,33.2,17.79,51.4933333333,9.7633333333,24.0333333333,21.6333333333,28.76,22.5666666667,34.2666666667,18.5,39.29,10,764.8,53,4,65,0.7,31.5298873,31.5298873 -20,0,20.89,33.5,19.6,33.9,20.1,34.5,20.79,33.1633333333,17.79,50.7333333333,9.89,23.66,21.7675,28.6,22.6,34.06,18.5,39.29,9.9333333333,764.7833333333,53.8333333333,4.1666666667,65,0.85,47.974133573,47.974133573 -30,10,21,33.5,19.6,33.9,20.2,34.4666666667,20.79,33.09,17.79,49.9975,9.89,23.9933333333,21.8566666667,28.4266666667,22.6666666667,34,18.6,39.2,9.8666666667,764.7666666667,54.6666666667,4.3333333333,65,1,7.4529298581,7.4529298581 -30,0,21,33.5225,19.6,34,20.2,34.4,20.89,33.2,17.79,49.33,9.9266666667,24.0233333333,21.89,28.3566666667,22.7,33.79,18.6,39.2,9.8,764.75,55.5,4.5,65,1.15,21.2654852308,21.2654852308 -50,10,21,33.59,19.6,33.9333333333,20.2,34.4,20.8233333333,33.1266666667,17.79,48.7666666667,10.075,24.4975,21.9633333333,28.23,22.76,33.73,18.6,39.2,9.7333333333,764.7333333333,56.3333333333,4.6666666667,65,1.3,34.282706771,34.282706771 -50,10,21,33.43,19.5,33.8633333333,20.2,34.4,20.8233333333,33.1266666667,17.79,48.3,10.1,24.36,22,28.1,22.79,33.59,18.6,39.1266666667,9.6666666667,764.7166666667,57.1666666667,4.8333333333,65,1.45,41.0985364113,41.0985364113 -40,0,21,33.29,19.5,33.79,20.2,34.3266666667,20.89,33.2,17.79,47.8333333333,10.0333333333,25.2633333333,22,28.1,22.79,33.53,18.6,39.09,9.6,764.7,58,5,65,1.6,18.4899942367,18.4899942367 -50,10,21,33.3633333333,19.5,33.6933333333,20.2,34.3266666667,20.79,33.09,17.79,47.5,10.16,24.93,22.0333333333,28,22.79,33.5,18.6,39.09,9.5333333333,764.7166666667,57.8333333333,5,65,1.5166666667,45.2869431698,45.2869431698 -50,0,21,33.1566666667,19.4266666667,33.5,20.2,34.2233333333,20.79,33.09,17.79,47.1,10.2566666667,24.43,22.1,28,22.79,33.5,18.6,39.09,9.4666666667,764.7333333333,57.6666666667,5,65,1.4333333333,41.0489674076,41.0489674076 -50,0,21,33.06,19.3566666667,33.3633333333,20.2,34.09,20.79,33.09,17.79,46.7666666667,10.39,24.5633333333,22.1,28,22.79,33.4,18.6,39.09,9.4,764.75,57.5,5,65,1.35,18.722846685,18.722846685 -50,0,20.9266666667,32.7266666667,19.23,32.89,20.2,34.2,20.79,33.2,17.79,46.43,10.3233333333,24.5633333333,22.1,27.9266666667,22.79,33.4,18.6,39.09,9.3333333333,764.7666666667,57.3333333333,5,65,1.2666666667,18.0215562112,18.0215562112 -50,0,20.89,32.29,19.2,32.79,20.2,34.26,20.73,33.2,17.79,46.1566666667,10.13,24.0233333333,22,27.79,22.79,33.4,18.6,39.09,9.2666666667,764.7833333333,57.1666666667,5,65,1.1833333333,20.2593916678,20.2593916678 -50,0,20.89,32.3633333333,19.2,32.79,20.2,34.4,20.7,33.2,17.79,45.8333333333,10.0666666667,24.89,22,27.79,22.7,33.53,18.6,39.09,9.2,764.8,57,5,65,1.1,44.0405114088,44.0405114088 -40,0,20.89,32.3633333333,19.1666666667,32.9,20.2,34.4,20.7,33.26,17.79,45.5666666667,9.8666666667,24.89,22,27.79,22.7,33.59,18.6,39.09,9.05,764.8,57.3333333333,4.6666666667,57.6666666667,1.0166666667,30.6230927003,30.6230927003 -40,0,20.8233333333,32.23,19.1,32.9,20.2,34.53,20.6666666667,33.3633333333,17.79,45.26,9.69,25.4333333333,21.9266666667,27.73,22.6,33.53,18.6,39.2,8.9,764.8,57.6666666667,4.3333333333,50.3333333333,0.9333333333,40.7960485783,40.7960485783 -60,0,20.79,32.1633333333,19.1,32.9,20.2,34.59,20.6,33.29,17.79,45.1266666667,9.5633333333,25.0333333333,21.89,27.7,22.5333333333,33.59,18.6,39.2,8.75,764.8,58,4,43,0.85,39.9010291556,39.9010291556 -60,0,20.79,32.1633333333,19.1,32.9666666667,20.2,34.7,20.6,33.26,17.79,44.9666666667,9.3233333333,25.5233333333,21.8233333333,27.6333333333,22.5666666667,33.7666666667,18.6,39.2,8.6,764.8,58.3333333333,3.6666666667,35.6666666667,0.7666666667,20.0441742549,20.0441742549 -70,0,20.79,32.4333333333,19,33.1933333333,20.1333333333,34.7,20.5333333333,33.2,17.79,44.9,9.13,25.93,21.76,27.6,22.5666666667,34.1,18.6,39.2,8.45,764.8,58.6666666667,3.3333333333,28.3333333333,0.6833333333,14.0981932287,14.0981932287 -100,0,20.73,32.6333333333,19,33.5266666667,20.1,34.7,20.5,33.06,17.79,44.79,8.7633333333,26.6333333333,21.7,27.6,22.6,34.4333333333,18.6,39.2,8.3,764.8,59,3,21,0.6,37.2638546396,37.2638546396 -100,0,20.7,33.03,18.945,33.895,20.075,34.7,20.5,32.9333333333,17.79,44.73,8.5633333333,26.9,21.6,27.5,22.6666666667,34.6333333333,18.6,39.2,8.0833333333,764.8666666667,61,2.8333333333,28.3333333333,0.8333333333,12.8148577758,12.8148577758 -100,0,20.7,33.2233333333,19,34.3,20.0666666667,34.7,20.39,32.79,17.79,44.7,8.0933333333,27.8333333333,21.5333333333,27.5,22.7,34.86,18.6,39.2,7.8666666667,764.9333333333,63,2.6666666667,35.6666666667,1.0666666667,1.613935607,1.613935607 -100,10,20.7,33.4333333333,19,34.6333333333,20.1,34.6633333333,20.39,32.79,17.79,44.7,7.6933333333,28.8333333333,21.445,27.5,22.7,35,18.6,39.2,7.65,765,65,2.5,43,1.3,41.1264181021,41.1264181021 -100,0,20.7,33.595,19,34.9633333333,20.1,34.59,20.29,32.9,17.79,44.7,7.245,29.95,21.3566666667,27.5,22.76,35.1266666667,18.6,39.2,7.4333333333,765.0666666667,67,2.3333333333,50.3333333333,1.5333333333,13.1788672297,13.1788672297 -250,0,20.7,33.76,19,35.1633333333,20.2,34.59,20.29,33.0266666667,17.79,44.6633333333,6.7966666667,30.6666666667,21.29,27.5666666667,22.76,35.2,18.5,39.2,7.2166666667,765.1333333333,69,2.1666666667,57.6666666667,1.7666666667,37.532882893,37.532882893 -340,10,20.73,35.6566666667,19.0333333333,35.23,20.2,34.59,20.29,33.1266666667,17.79,44.59,6.3966666667,31.4666666667,21.2,27.6333333333,22.79,35.29,18.5666666667,39.2,7,765.2,71,2,65,2,34.9987126305,34.9987126305 -100,10,20.8566666667,37.3966666667,19.1,35.43,20.2,34.73,20.29,33.2,17.79,44.6266666667,6.0266666667,32.6666666667,21.1333333333,27.7,22.79,35.23,18.6,39.2,6.9666666667,765.2833333333,71.1666666667,2,64.8333333333,2,49.0385067882,49.0385067882 -90,0,20.89,36.8633333333,19.2,36,20.2,34.93,20.2,33.53,17.79,44.76,5.76,33.2666666667,21.1,27.7,22.76,35,18.6,39.1266666667,6.9333333333,765.3666666667,71.3333333333,2,64.6666666667,2,10.0700921495,10.0700921495 -110,10,20.9633333333,36.4633333333,19.2,36.3333333333,20.2,35.09,20.2,33.7225,17.79,44.8266666667,5.4333333333,34.1,21.0333333333,27.6333333333,22.7,35,18.5333333333,38.99,6.9,765.45,71.5,2,64.5,2,39.9615797098,39.9615797098 -120,0,21.0333333333,36.06,19.29,36.6933333333,20.2,35.1633333333,20.2,33.9666666667,17.79,44.9666666667,5.2266666667,35.2266666667,20.89,27.5333333333,22.6333333333,35.2666666667,18.5333333333,38.93,6.8666666667,765.5333333333,71.6666666667,2,64.3333333333,2,0.395741011,0.395741011 -100,0,21.1,35.86,19.29,36.9,20.29,35.29,20.2,34.03,17.79,45.03,5.2266666667,36.6,20.89,27.6,22.7,35.4666666667,18.5333333333,38.93,6.8333333333,765.6166666667,71.8333333333,2,64.1666666667,2,33.083699015,33.083699015 -100,0,21.1,35.6633333333,19.3233333333,36.9666666667,20.29,35.3633333333,20.2,34.1633333333,17.79,45.09,5.3666666667,36.9333333333,20.76,27.6,22.73,35.53,18.5333333333,38.8633333333,6.8,765.7,72,2,64,2,18.7675565016,18.7675565016 -100,0,21.1666666667,35.53,19.39,36.9,20.29,35.4,20.1,34,17.79,45.1266666667,5.2633333333,37.0966666667,20.7,27.6666666667,22.79,35.59,18.5333333333,39.03,6.6666666667,765.75,72.1666666667,2,64,1.9,6.7420584615,6.7420584615 -140,0,21.23,35.5,19.5,37,20.29,35.4,20.1,33.9333333333,17.79,45.2,5.2633333333,37.49,20.6666666667,27.6666666667,22.79,35.59,18.525,39.09,6.5333333333,765.8,72.3333333333,2,64,1.8,19.302829029,19.302829029 -160,10,21.29,35.4333333333,19.5,37,20.29,35.4,20.1,33.76,17.79,45.2,5.2633333333,37.7666666667,20.6,27.6666666667,22.79,35.59,18.5,39.09,6.4,765.85,72.5,2,64,1.7,26.7753148684,26.7753148684 -100,20,21.39,35.4,19.5333333333,36.9333333333,20.29,35.4666666667,20.1,33.7,17.79,45.2,5.19,38.36,20.5,27.73,22.79,35.59,18.5,39.09,6.2666666667,765.9,72.6666666667,2,64,1.6,13.6469934369,13.6469934369 -90,10,21.39,35.4,19.6,37,20.3233333333,35.5,20,33.5,17.79,45.2,5.33,38.7666666667,20.5,27.8566666667,22.79,35.3333333333,18.5,39.09,6.1333333333,765.95,72.8333333333,2,64,1.5,37.2144084424,37.2144084424 -80,10,21.5,35.4666666667,19.6,37,20.39,35.5,20,33.4333333333,17.79,45.26,5.0633333333,38.6333333333,20.5,27.9266666667,22.73,35.0666666667,18.5,39.2,6,766,73,2,64,1.4,2.2223535343,2.2223535343 -90,10,21.5666666667,35.4,19.6,37,20.39,35.59,19.9633333333,33.3633333333,17.79,45.29,4.4933333333,39.2633333333,20.4266666667,27.9266666667,22.7,34.76,18.5,39.2,5.8333333333,766.05,74.5,2,62,1.5333333333,4.4454901363,4.4454901363 -100,0,21.5333333333,35.3633333333,19.6,37.045,20.39,35.59,19.89,33.29,17.79,45.3633333333,4.16,40.79,20.39,27.9266666667,22.6333333333,34.6266666667,18.5,39.2,5.6666666667,766.1,76,2,60,1.6666666667,33.3704896038,33.3704896038 -90,10,21.6,35.29,19.5666666667,37.1266666667,20.4633333333,35.6633333333,19.89,33.29,19.2633333333,82.3933333333,3.895,42.495,20.3233333333,28.0666666667,22.5,35.0566666667,18.5,39.2,5.5,766.15,77.5,2,58,1.8,3.5491306568,3.5491306568 -110,0,21.6,35.3633333333,19.5,37.1266666667,20.5,35.7,19.89,33.3633333333,18.8225,75.6,3.6633333333,44.6966666667,20.29,28.1,22.5,35.9233333333,18.5,39.2,5.3333333333,766.2,79,2,56,1.9333333333,42.9252025206,42.9252025206 -90,0,21.5333333333,35.29,19.4633333333,37.36,20.5,35.76,19.89,33.53,18.6333333333,63.2666666667,3.59,45.9633333333,20.2,28.1,22.5666666667,36.5,18.5,39.2,5.1666666667,766.25,80.5,2,54,2.0666666667,25.6522891461,25.6522891461 -80,10,21.5,35.495,19.3233333333,37.6333333333,20.39,35.73,19.89,33.6633333333,18.7,55.9633333333,3.56,46.8633333333,20.2,28.1666666667,22.5,36.76,18.5,39.2,5,766.3,82,2,52,2.2,33.4746711655,33.4746711655 -70,0,21.5,35.7,19.26,38,20.39,35.79,19.89,33.9333333333,18.76,52.6966666667,3.4333333333,47.3966666667,20.2,28.23,22.5,37.3,18.5,39.2,4.9166666667,766.35,82.1666666667,2,52,2.15,42.6076089265,42.6076089265 -50,0,21.5,35.76,19.2,38.1933333333,20.39,35.9333333333,19.89,34.06,18.79,49.73,3.29,49.0666666667,20.1333333333,28.29,22.5666666667,37.6333333333,18.5,39.2,4.8333333333,766.4,82.3333333333,2,52,2.1,36.9561485131,36.9561485131 -30,10,21.39,35.79,19.1,38.53,20.39,36,19.89,34.23,18.79,48.0633333333,3.43,50.7933333333,20.1,28.39,22.5,37.9333333333,18.5,39.2,4.75,766.45,82.5,2,52,2.05,47.6722805062,47.6722805062 -20,10,21.39,35.79,19.0333333333,38.59,20.29,36.03,19.89,34.42,18.8566666667,46.7633333333,3.8,51.83,20.1,28.5966666667,22.5,38.06,18.5,39.1633333333,4.6666666667,766.5,82.6666666667,2,52,2,44.0919846878,44.0919846878 -30,0,21.39,35.9,18.89,38.6266666667,20.29,36.1633333333,19.8233333333,34.53,18.79,45.8233333333,4.06,51.7566666667,20.1,28.8233333333,22.5,38.39,18.5,39.09,4.5833333333,766.55,82.8333333333,2,52,1.95,43.4087871457,43.4087871457 -70,0,21.3233333333,35.9666666667,18.8233333333,38.76,20.2,36.23,19.89,34.6266666667,18.8566666667,45.0333333333,4.1566666667,51.3966666667,20.1,29.03,22.5,38.7966666667,18.5,39.23,4.5,766.6,83,2,52,1.9,28.8286000141,28.8286000141 -50,0,21.29,36.09,18.79,38.9633333333,20.1333333333,36.29,19.8233333333,34.6266666667,18.8566666667,44.5666666667,3.9633333333,50.53,20.1,29.1333333333,22.39,38.9633333333,18.5,39.3633333333,4.6333333333,766.6,83.3333333333,2,51,2.0666666667,43.9128824393,43.9128824393 -50,0,21.23,36.09,18.73,39.2233333333,20.1666666667,36.4,19.79,34.7,18.8233333333,44.1633333333,3.76,51.36,20.1,29.3266666667,22.39,39.2233333333,18.5,39.4,4.7666666667,766.6,83.6666666667,2,50,2.2333333333,40.3204328148,40.3204328148 -40,0,21.2,36.23,18.6,39.3266666667,20.1666666667,36.4666666667,19.79,34.7,18.8233333333,43.89,3.5666666667,52.16,20.1,29.4266666667,22.29,39.45,18.5,39.425,4.9,766.6,84,2,49,2.4,36.8842923548,36.8842923548 -40,10,21.2,36.29,18.6,39.4666666667,20.2,36.5,19.79,34.7,18.89,43.6333333333,3.1633333333,53.2666666667,20.1,29.5666666667,22.2,39.6266666667,18.5,39.5,5.0333333333,766.6,84.3333333333,2,48,2.5666666667,24.4803845882,24.4803845882 -50,0,21.1,36.4333333333,18.5,39.59,20.1333333333,36.5,19.79,34.76,18.8233333333,43.3,3.03,54.86,20.1,29.7,22.2,39.8333333333,18.5,39.5,5.1666666667,766.6,84.6666666667,2,47,2.7333333333,24.9470975366,24.9470975366 -40,0,21.1,36.5,18.4266666667,39.59,20.1,36.4633333333,19.76,34.79,18.8566666667,43.0266666667,3,56.6,20.0333333333,29.7,22.1666666667,40.3,18.5,39.56,5.3,766.6,85,2,46,2.9,3.8293313351,3.8293313351 -50,0,21.0666666667,36.56,18.39,39.7,20.1,36.59,19.7,34.79,18.8566666667,42.9,3.095,58.7,20,29.8233333333,22.1,40.6333333333,18.5,39.59,5.1833333333,766.55,84.5,2.1666666667,47,2.7166666667,30.4255623021,30.4255623021 -50,0,21,36.56,18.3233333333,39.76,20.1,36.53,19.7,34.79,18.79,42.6633333333,3.3333333333,59.4666666667,20,29.89,22.1,41.8666666667,18.5,39.6633333333,5.0666666667,766.5,84,2.3333333333,48,2.5333333333,21.9742915127,21.9742915127 -50,0,20.89,36.59,18.2,39.79,20.1,36.59,19.7,34.79,18.79,42.53,3.6266666667,59.89,20,30.0333333333,22.0333333333,42.26,18.5,39.7,4.95,766.45,83.5,2.5,49,2.35,14.3538848381,14.3538848381 -30,0,20.89,36.6633333333,18.1,39.9333333333,20.1,36.59,19.7,34.79,18.79,42.4,3.76,59.9633333333,20,30.1,22.0333333333,42.8666666667,18.5,39.7,4.8333333333,766.4,83,2.6666666667,50,2.1666666667,22.3068377352,22.3068377352 -20,0,20.89,36.7,18.1,40,20.2,36.59,19.7,34.8633333333,18.79,42.295,3.8333333333,59.5666666667,20,30.2,22.0333333333,43.26,18.5,39.7,4.7166666667,766.35,82.5,2.8333333333,51,1.9833333333,25.0459065777,25.0459065777 -30,0,20.8233333333,36.7,17.9633333333,40,20.1333333333,36.59,19.6,34.79,18.79,42.2,3.5666666667,58.8266666667,19.89,30.29,22,43.7666666667,18.5,39.76,4.6,766.3,82,3,52,1.8,49.325673352,49.325673352 -50,10,20.79,36.7,17.89,40.06,20.1,36.59,19.6,34.79,18.79,42.09,3.1333333333,59.1966666667,19.89,30.3566666667,22,43.9666666667,18.5,39.79,4.2833333333,766.3,83,2.6666666667,50.8333333333,1.65,43.3861176949,43.3861176949 -40,0,20.7,36.73,17.8566666667,40.06,20.1,36.6633333333,19.6,34.8266666667,18.79,42.09,2.9333333333,60.3966666667,19.89,30.5,21.89,44.23,18.5,39.79,3.9666666667,766.3,84,2.3333333333,49.6666666667,1.5,12.7090964699,12.7090964699 -60,0,20.7,36.79,17.79,40.06,20.0333333333,36.6266666667,19.6,34.9,18.79,42,2.6633333333,60.73,19.89,30.5,21.89,44.3633333333,18.5,39.8266666667,3.65,766.3,85,2,48.5,1.35,18.4113785392,18.4113785392 -50,0,20.7,36.79,17.79,40.1266666667,20.1,36.76,19.6,34.9,18.79,42,2.53,61.3966666667,19.89,30.6,21.89,44.5966666667,18.5,39.9,3.3333333333,766.3,86,1.6666666667,47.3333333333,1.2,36.7721027462,36.7721027462 -60,0,20.7,36.79,17.73,40.26,20.1,36.79,19.6,34.9,18.73,41.9,2.3633333333,62.1666666667,19.8233333333,30.6,21.89,44.79,18.5,39.9,3.0166666667,766.3,87,1.3333333333,46.1666666667,1.05,12.5363893807,12.5363893807 -50,0,20.6,36.7,17.7,40.4333333333,20.1,36.73,19.6,34.9,18.79,41.8266666667,2.23,62.7666666667,19.79,30.6,21.79,44.79,18.5,39.9,2.7,766.3,88,1,45,0.9,19.6357391891,19.6357391891 -40,0,20.6,36.7,17.6333333333,40.5,20.1,36.76,19.5,34.9,18.76,41.79,2.06,63.23,19.79,30.6,21.79,44.79,18.5,40,2.5833333333,766.35,88,1.1666666667,44.5,0.7833333333,8.9004126028,8.9004126028 -50,0,20.5666666667,36.79,17.6,40.5,20.1,36.76,19.5,34.9,18.7,41.79,1.9333333333,63.6233333333,19.79,30.7,21.79,44.9,18.5,40,2.4666666667,766.4,88,1.3333333333,44,0.6666666667,11.8311405065,11.8311405065 -40,0,20.5,36.79,17.5333333333,40.56,20.2,36.79,19.5,34.9,18.7,41.73,1.76,64.4,19.79,30.76,21.79,44.9,18.5,40.03,2.35,766.45,88,1.5,43.5,0.55,41.0792371025,41.0792371025 -50,10,20.5,36.79,17.5,40.6266666667,20.2,36.79,19.5,34.9,18.7,41.79,1.7,64.8,19.79,30.73,21.73,45,18.5,40.09,2.2333333333,766.5,88,1.6666666667,43,0.4333333333,21.1284400895,21.1284400895 -30,0,20.5,36.8633333333,17.4266666667,40.6266666667,20.2,36.8266666667,19.5,34.9,18.7,41.7,1.79,66.345,19.79,30.79,21.7225,45,18.5,40.09,2.1166666667,766.55,88,1.8333333333,42.5,0.3166666667,35.0078267045,35.0078267045 -40,0,20.4633333333,36.9,17.39,40.7,20.2,36.9,19.5,34.9,18.7,41.7,1.6333333333,65.8566666667,19.76,30.79,21.7,45.06,18.5,40.1266666667,2,766.6,88,2,42,0.2,45.2726515359,45.2726515359 -30,0,20.39,36.9,17.3233333333,40.7,20.2,36.9,19.5,34.9,18.7,41.6633333333,1.5666666667,66.93,19.7,30.79,21.6666666667,44.93,18.5,40.2,1.8833333333,766.5666666667,88.6666666667,2,40.8333333333,0.1833333333,35.7259867946,35.7259867946 -40,0,20.39,36.9,17.29,40.79,20.2,36.9,19.5,34.9,18.7,41.6633333333,1.5,67.1,19.7,30.8233333333,21.6,44.73,18.5,40.23,1.7666666667,766.5333333333,89.3333333333,2,39.6666666667,0.1666666667,25.2529708552,25.2529708552 -50,0,20.39,36.9,17.29,40.8633333333,20.2,37.045,19.39,34.79,18.7,41.59,1.5,67.7666666667,19.7,30.8233333333,21.6,44.7,18.5,40.29,1.65,766.5,90,2,38.5,0.15,42.7901501185,42.7901501185 -50,0,20.3566666667,36.9,17.245,40.9,20.2,37.09,19.39,34.79,18.6333333333,41.53,1.3566666667,67.3966666667,19.7,30.89,21.6,44.7,18.5,40.3266666667,1.5333333333,766.4666666667,90.6666666667,2,37.3333333333,0.1333333333,6.5230818931,6.5230818931 -40,0,20.29,36.9666666667,17.2,40.9333333333,20.2,37.1633333333,19.39,34.79,18.7,41.59,1.29,67.7966666667,19.7,30.89,21.6,44.7,18.5,40.4,1.4166666667,766.4333333333,91.3333333333,2,36.1666666667,0.1166666667,19.3425192148,19.3425192148 -50,0,20.29,37,17.2,41,20.2,37.2,19.39,34.79,18.675,41.5675,1.23,68.23,19.6,30.8233333333,21.5333333333,44.7,18.5,40.4,1.3,766.4,92,2,35,0.1,40.2087379131,40.2087379131 -60,10,20.29,37,17.2,41,20.26,37.26,19.39,34.79,18.6666666667,41.5,1.23,68.7566666667,19.6,30.89,21.5,44.7,18.5,40.4666666667,1.25,766.4,92.1666666667,1.8333333333,34.6666666667,0.0833333333,29.0504746721,29.0504746721 -50,0,20.29,37,17.1333333333,41.06,20.29,37.3266666667,19.3233333333,34.79,18.6666666667,41.4666666667,1.0666666667,68.19,19.6,30.89,21.5,44.7,18.5,40.5,1.2,766.4,92.3333333333,1.6666666667,34.3333333333,0.0666666667,31.1654319288,31.1654319288 -60,0,20.2,36.9,17.1,41.09,20.29,37.4,19.3566666667,34.79,18.6,41.4,1,68.19,19.6,30.89,21.39,44.59,18.5,40.56,1.15,766.4,92.5,1.5,34,0.05,19.902302057,19.902302057 -40,0,20.2,36.9,17.1,41.09,20.29,37.4,19.29,34.79,18.6,41.4,0.8666666667,68.1266666667,19.6,30.9633333333,21.39,44.7966666667,18.5,40.59,1.1,766.4,92.6666666667,1.3333333333,33.6666666667,0.0333333333,31.5908934921,31.5908934921 -50,0,20.2,37,17.0666666667,41.09,20.29,37.4666666667,19.34,34.845,18.6,41.4,0.7333333333,67.7933333333,19.6,31,21.39,45,18.5,40.59,1.05,766.4,92.8333333333,1.1666666667,33.3333333333,0.0166666667,47.2035794985,47.2035794985 -50,0,20.1333333333,37,17,41.03,20.29,37.4,19.29,34.79,18.6,41.4,0.4666666667,67.8966666667,19.5333333333,31,21.39,45.1333333333,18.5,40.59,1,766.4,93,1,33,0,30.1674635266,30.1674635266 -30,0,20.1,36.9,16.9633333333,41.1266666667,20.29,37.4666666667,19.29,34.79,18.6,41.4,0.3333333333,67.6233333333,19.5,31,21.4633333333,45.26,18.5,40.6633333333,0.7833333333,766.4333333333,93.1666666667,1,32.5,-0.1833333333,48.9267575555,48.9267575555 -30,0,20.1,36.9,16.89,41.2,20.29,37.5,19.23,34.8266666667,18.6,41.5,0.1666666667,67.53,19.5,31,21.39,45.2,18.5,40.7,0.5666666667,766.4666666667,93.3333333333,1,32,-0.3666666667,31.2656300142,31.2656300142 -20,0,20.1,36.9,16.89,41.23,20.29,37.5,19.23,34.8266666667,18.6,41.5,0,67.545,19.5,31,21.39,45.2,18.5,40.76,0.35,766.5,93.5,1,31.5,-0.55,46.6950832983,46.6950832983 -40,0,20.1,36.9666666667,16.8233333333,41.23,20.29,37.5,19.26,34.8633333333,18.6,41.5,-0.1,67.99,19.5,31,21.39,45.2,18.5,40.79,0.1333333333,766.5333333333,93.6666666667,1,31,-0.7333333333,19.0645305905,19.0645305905 -60,0,20,36.8266666667,16.79,41.2,20.29,37.56,19.2,34.79,18.5333333333,41.5,0,68.56,19.4633333333,30.9633333333,21.3233333333,45.09,18.5,40.8175,-0.0833333333,766.5666666667,93.8333333333,1,30.5,-0.9166666667,38.6730050435,38.6730050435 -50,0,20,36.9,16.73,41.2,20.29,37.53,19.2,34.79,18.5666666667,41.5,0.0666666667,68.96,19.39,30.89,21.3233333333,45.03,18.5,40.9,-0.3,766.6,94,1,30,-1.1,34.8770433571,34.8770433571 -40,0,20,36.8633333333,16.7,41.29,20.29,37.53,19.2,34.79,18.5,41.5,-0.0666666667,68.2966666667,19.4633333333,30.9633333333,21.29,45,18.5,40.9,-0.3333333333,766.6333333333,94,1,26.8333333333,-1.1333333333,45.9249143489,45.9249143489 -50,0,20,36.8633333333,16.7,41.3633333333,20.29,37.59,19.2,34.79,18.5,41.53,-0.2,68.1566666667,19.39,30.9633333333,21.29,44.8633333333,18.5,40.9666666667,-0.3666666667,766.6666666667,94,1,23.6666666667,-1.1666666667,6.1097232159,6.1097232159 -40,0,19.9633333333,36.9,16.6666666667,41.4,20.29,37.53,19.2,34.79,18.5,41.59,-0.2,68.59,19.39,31,21.23,44.5966666667,18.5,41,-0.4,766.7,94,1,20.5,-1.2,43.2891680277,43.2891680277 -50,0,19.89,36.9,16.6,41.4,20.29,37.5,19.1666666667,34.79,18.5,41.59,-0.2,68.7966666667,19.39,30.9266666667,21.2,44.5,18.5,41.06,-0.4333333333,766.7333333333,94,1,17.3333333333,-1.2333333333,44.9394354247,44.9394354247 -50,0,19.89,36.9,16.6,41.4,20.29,37.56,19.1,34.79,18.5,41.59,-0.1333333333,69.1666666667,19.39,31,21.2,44.5,18.5,41.09,-0.4666666667,766.7666666667,94,1,14.1666666667,-1.2666666667,20.4878335702,20.4878335702 -60,0,19.89,36.9,16.5666666667,41.5,20.29,37.5,19.1333333333,34.79,18.5,41.59,-0.2666666667,68.76,19.3233333333,31,21.2,44.4,18.5,41.09,-0.5,766.8,94,1,11,-1.3,16.2646503653,16.2646503653 -50,0,19.89,36.8266666667,16.5,41.56,20.29,37.56,19.2,34.79,18.5,41.59,-0.3,69.5333333333,19.29,31,21.2,44.3266666667,18.5,41.1266666667,-0.4833333333,766.8333333333,94.6666666667,1,10.3333333333,-1.2,47.3458800232,47.3458800232 -50,0,19.8233333333,36.8266666667,16.5,41.6266666667,20.29,37.56,19.1,34.79,18.5,41.7,-0.3666666667,69.9333333333,19.315,31,21.1666666667,44.26,18.5,41.26,-0.4666666667,766.8666666667,95.3333333333,1,9.6666666667,-1.1,27.3434301838,27.3434301838 -40,0,19.79,36.86,16.5,41.76,20.29,37.59,19.1,34.79,18.4633333333,41.73,-0.4,70.0633333333,19.3233333333,31,21.1,44.2,18.5,41.23,-0.45,766.9,96,1,9,-1,22.3929799977,22.3929799977 -40,0,19.79,37.2,16.5,41.9266666667,20.29,37.53,19.1,34.8266666667,18.39,42.1966666667,-0.3333333333,70.4566666667,19.29,31,21.1,44.23,18.5,41.29,-0.4333333333,766.9333333333,96.6666666667,1,8.3333333333,-0.9,45.6537079066,45.6537079066 -30,10,19.79,37.4,16.5,42.26,20.2,37.3633333333,19.1,34.9,18.29,43.1333333333,-0.0666666667,70.9666666667,19.29,31,21.1,44.43,18.5,41.29,-0.4166666667,766.9666666667,97.3333333333,1,7.6666666667,-0.8,27.5308082695,27.5308082695 -30,0,19.8566666667,37.7,16.5,42.4,20.2,37.29,19.1,35.045,18.29,43.66,0,70.9,19.29,30.9266666667,21.1,44.6566666667,18.5,41.29,-0.4,767,98,1,7,-0.7,7.2477533482,7.2477533482 -50,0,19.8566666667,37.7,16.5666666667,42.4,20.1666666667,37.26,19.1,35.06,18.26,44.1566666667,0.2,71.445,19.29,30.8,21.1,44.79,18.5,41.26,-0.1333333333,767.05,98.1666666667,1,7.8333333333,-0.4,47.6045046002,47.6045046002 -100,0,19.89,39.6633333333,16.6,42.33,20.1,37.26,19.0333333333,35,18.2,44.3633333333,0.5333333333,72.0633333333,19.2,30.4633333333,21.1,44.4,18.5,41.2,0.1333333333,767.1,98.3333333333,1,8.6666666667,-0.1,25.754055276,25.754055276 -70,0,19.89,40.4633333333,16.6,42.9233333333,20.1,37.29,19.1966666667,35.23,18.2,44.53,0.6666666667,72.2633333333,19.2,30.3233333333,21.1,43.9266666667,18.5333333333,41.06,0.4,767.15,98.5,1,9.5,0.2,45.0953258551,45.0953258551 -50,0,19.89,39.5633333333,16.73,42.7966666667,20.1,37.23,19.5966666667,35.49,18.2,44.6633333333,1.0333333333,72.59,19.1666666667,30.26,21,43.3333333333,18.6,40.9333333333,0.6666666667,767.2,98.6666666667,1,10.3333333333,0.5,35.9909672523,35.9909672523 -50,0,19.89,39.03,16.8566666667,42.59,20.1,37.2,19.8233333333,35.4,18.2,44.79,1.2933333333,72.73,19.1,30.2,21,43.0666666667,18.6,40.8633333333,0.9333333333,767.25,98.8333333333,1,11.1666666667,0.8,17.150895996,17.150895996 -50,10,19.89,38.6333333333,16.9266666667,42.2333333333,20.1,37,19.89,35.2666666667,18.2,44.79,1.6333333333,73.16,19.1,30.2,20.9266666667,43.2,18.625,40.74,1.2,767.3,99,1,12,1.1,36.217424518,36.217424518 -60,0,19.89,38.3,17.0666666667,41.6933333333,20,36.79,19.9266666667,35.2,18.1333333333,44.9333333333,1.9,73.4933333333,19.1,30.2,21,43.0666666667,18.7,40.1966666667,1.5666666667,767.3333333333,98.1666666667,1,15.3333333333,1.3333333333,43.0738171213,43.0738171213 -50,0,19.89,38.06,17.36,41.0333333333,20,36.8633333333,20,35.26,18.1333333333,45,2.3,73.7933333333,19.1,30.2,21,42.9333333333,18.7,39.5633333333,1.9333333333,767.3666666667,97.3333333333,1,18.6666666667,1.5666666667,18.1090017781,18.1090017781 -50,0,19.89,37.8,17.6333333333,40.4266666667,20,36.9,20.1,35.56,18.1,44.9,2.6933333333,74.06,19.1,30.2,21,43.1225,18.7,39.29,2.3,767.4,96.5,1,22,1.8,15.0629514712,15.0629514712 -40,0,19.8566666667,37.43,18.0666666667,39.5333333333,20,36.8266666667,20.1666666667,35.5,18.1,44.9,3.1566666667,74.2266666667,19.1,30.23,21.0666666667,43.1633333333,18.7,39.1333333333,2.6666666667,767.4333333333,95.6666666667,1,25.3333333333,2.0333333333,7.6443094527,7.6443094527 -60,0,19.8566666667,37.29,18.395,38.7225,19.945,36.745,20.23,35.29,18.1,44.8633333333,3.49,74.3666666667,19.1,30.29,21.1,43.26,18.7,39.06,3.0333333333,767.4666666667,94.8333333333,1,28.6666666667,2.2666666667,12.6435908838,12.6435908838 -70,0,19.79,36.9,18.7266666667,37.9566666667,19.89,36.5266666667,20.29,35.23,18.1,44.79,3.86,74.1566666667,19.1,30.29,21.1,43.1266666667,18.7,39.1266666667,3.4,767.5,94,1,32,2.5,36.5287750727,36.5287750727 -70,10,19.79,36.7666666667,18.89,36.9233333333,19.8233333333,35.9333333333,20.39,35.09,18.05,44.745,4.1266666667,73.8966666667,19.1,30.3566666667,21.2,42.8633333333,18.7,39.2,3.6833333333,767.5,93.1666666667,1,33.1666666667,2.65,9.9908118253,9.9908118253 -90,0,19.79,36.26,18.9633333333,36.39,19.7,35.59,20.39,35.03,18,44.6633333333,4.4633333333,73.3933333333,19.1,30.39,21.2,42.73,18.7,39.4633333333,3.9666666667,767.5,92.3333333333,1,34.3333333333,2.8,8.8315388537,8.8315388537 -110,0,19.79,36.1266666667,19.0333333333,35.8633333333,19.6333333333,35.4633333333,20.39,34.8633333333,18,44.53,4.73,72.3933333333,19.15,30.4175,21.29,42.6633333333,18.7,39.6633333333,4.25,767.5,91.5,1,35.5,2.95,22.3488292075,22.3488292075 -80,0,19.79,35.76,19.1666666667,35.79,19.6,35.3266666667,20.39,34.73,18,44.4666666667,5.16,71.2,19.1666666667,30.5,21.29,42.59,18.7,39.8266666667,4.5333333333,767.5,90.6666666667,1,36.6666666667,3.1,24.8700566008,24.8700566008 -90,10,19.79,35.645,19.46,35.6633333333,19.6,35.4666666667,20.5,34.6633333333,18,44.4,5.3666666667,68.2,19.2,30.5,21.39,42.5,18.7,39.9666666667,4.8166666667,767.5,89.8333333333,1,37.8333333333,3.25,13.6270278832,13.6270278832 -120,0,19.73,35.6266666667,19.5333333333,34.9966666667,19.5666666667,35.4333333333,20.4266666667,34.53,18,44.3633333333,5.695,61.495,19.2,30.5,21.4633333333,42.36,18.6666666667,40,5.1,767.5,89,1,39,3.4,29.4481998077,29.4481998077 -140,0,19.7,35.2966666667,19.26,34.2233333333,19.5,35.4333333333,20.445,34.4,18,44.29,6.16,56.0633333333,19.23,30.39,21.5,42.06,18.6,40,5.5,767.5,85.5,1.1666666667,42.6666666667,3.15,49.0672213607,49.0672213607 -110,0,19.7,34.9633333333,19.26,34.1633333333,19.5,35.4,20.4633333333,34.3333333333,18,44.4,6.4333333333,51.3966666667,19.29,30.3233333333,21.5666666667,41.9333333333,18.6333333333,40.03,5.9,767.5,82,1.3333333333,46.3333333333,2.9,28.9523374871,28.9523374871 -80,10,19.7,34.9,19.4266666667,34.06,19.5,35.4,20.4633333333,34.2,18,44.3266666667,6.6233333333,49.1566666667,19.3233333333,30.26,21.6333333333,41.56,18.7,40.09,6.3,767.5,78.5,1.5,50,2.65,0.9099680698,0.9099680698 -60,0,19.7,34.9,19.5666666667,33.9333333333,19.5333333333,35.4,20.5,34.1633333333,18,44.29,6.83,47.1566666667,19.4633333333,30.2,21.76,41.36,18.7,40.09,6.7,767.5,75,1.6666666667,53.6666666667,2.4,28.5360064823,28.5360064823 -170,10,19.7,35.03,19.6333333333,33.86,19.6,35.4,20.5666666667,34.09,18,44.23,7.1233333333,45.03,19.6,30.0666666667,21.9266666667,41.1333333333,18.7,40.09,7.1,767.5,71.5,1.8333333333,57.3333333333,2.15,15.5136335408,15.5136335408 -230,10,19.7,35.49,19.6333333333,34,19.4633333333,35.4,20.6,34,17.9633333333,44.06,7.33,42.4966666667,19.6666666667,29.9266666667,22.0666666667,40.86,18.6,40,7.5,767.5,68,2,61,1.9,30.6116538006,30.6116538006 -230,0,19.7,36.2333333333,19.6,33.9,19.39,35.5266666667,20.6666666667,34.06,17.89,44,7.66,40.7333333333,19.8233333333,29.79,22.3233333333,40.4966666667,18.625,40.0225,7.6666666667,767.4666666667,67.8333333333,2.1666666667,61.5,2.0333333333,7.0323481108,7.0323481108 -300,10,19.7,35.9666666667,19.6,33.9,19.4266666667,35.53,20.7,34.29,17.89,43.9666666667,7.8666666667,37.7333333333,19.9633333333,29.6633333333,22.53,39.89,18.7,40.03,7.8333333333,767.4333333333,67.6666666667,2.3333333333,62,2.1666666667,29.7217115178,29.7217115178 -290,0,19.79,38.4933333333,19.7,33.9333333333,19.5,35.59,20.76,34.29,17.89,43.9,8.0333333333,36.1,20.1,29.4633333333,22.73,39.5266666667,18.7,39.9666666667,8,767.4,67.5,2.5,62.5,2.3,26.4139038511,26.4139038511 -180,10,19.8566666667,41.5666666667,19.7,34.1333333333,19.5333333333,35.7666666667,20.79,34.09,17.89,43.9,8.2333333333,35.6933333333,20.1666666667,29.3233333333,22.8566666667,39.2666666667,18.7,39.8266666667,8.1666666667,767.3666666667,67.3333333333,2.6666666667,63,2.4333333333,36.6994566401,36.6994566401 -140,10,20.0333333333,41.7666666667,19.76,34.6,19.6,36.0266666667,20.79,34.03,17.89,43.9666666667,8.2266666667,32.26,20.39,29.1333333333,23.05,39.045,18.7,39.76,8.3333333333,767.3333333333,67.1666666667,2.8333333333,63.5,2.5666666667,6.0049143387,6.0049143387 -160,0,20.1,39.8333333333,19.7,34.2666666667,19.7,36.1,20.89,33.9666666667,17.89,44.09,8.4333333333,32.6666666667,20.4633333333,29,23.36,38.8333333333,18.7,39.7,8.5,767.3,67,3,64,2.7,3.9752220619,3.9752220619 -200,10,20.2,38.56,19.7,34.09,19.7,35.76,20.8233333333,33.8266666667,17.89,43.9633333333,8.63,31.2933333333,20.6333333333,28.8566666667,23.6333333333,38.6266666667,18.7,39.6633333333,8.55,767.25,65.3333333333,3,57,2.35,13.5055788211,13.5055788211 -210,10,20.26,38.6333333333,19.76,34.1266666667,19.76,35.7,20.79,33.7,17.89,43.69,8.7633333333,30.8333333333,20.76,28.73,23.79,38.4,18.7,39.59,8.6,767.2,63.6666666667,3,50,2,35.8501700801,35.8501700801 -130,0,20.3233333333,40.9,19.76,34.46,19.8233333333,36.03,20.79,33.76,17.89,43.59,8.83,27.7633333333,20.86,28.5,23.8566666667,38.3266666667,18.73,39.5,8.65,767.15,62,3,43,1.65,19.5735436399,19.5735436399 -130,10,20.4633333333,40.1666666667,19.79,35,19.89,36.3633333333,20.89,34,17.89,43.59,8.89,27.3566666667,21.075,28.4475,24.0333333333,38.26,18.79,39.5,8.7,767.1,60.3333333333,3,36,1.3,45.4594357056,45.4594357056 -110,10,20.5333333333,38.0566666667,19.79,35,19.89,36.26,20.89,34.06,17.89,43.59,9.05,26.75,21.1666666667,28.23,24.2266666667,38.2,18.79,39.4,8.75,767.05,58.6666666667,3,29,0.95,20.4681214411,20.4681214411 -110,0,20.6,36.9475,19.7,34.1333333333,19.89,35.9266666667,20.89,34.1633333333,17.89,43.53,9.19,26.4266666667,21.3233333333,28.1666666667,24.4266666667,37.9666666667,18.79,39.3266666667,8.8,767,57,3,22,0.6,16.1112468806,16.1112468806 -90,0,20.6,36,19.7,33.8,19.89,35.5266666667,20.89,34.0675,17.89,43.43,9.2633333333,26.4266666667,21.4633333333,28.0333333333,24.5666666667,37.7666666667,18.79,39.2,8.8833333333,766.9666666667,56.6666666667,3.1666666667,22,0.6166666667,37.2348335921,37.2348335921 -100,0,20.7,35.43,19.7,33.5,19.89,35.1933333333,20.8233333333,33.86,17.89,43.1566666667,9.4266666667,26.6666666667,21.6,27.8566666667,24.73,37.6633333333,18.8566666667,39.2,8.9666666667,766.9333333333,56.3333333333,3.3333333333,22,0.6333333333,21.1864301818,21.1864301818 -110,10,20.76,35.23,19.7,33.6333333333,19.89,35,20.79,33.76,17.89,42.9666666667,9.5,26.1333333333,21.6666666667,27.8566666667,24.8566666667,37.59,18.89,39.2,9.05,766.9,56,3.5,22,0.65,37.1306716697,37.1306716697 -100,0,20.79,35.0266666667,19.7,33.6,19.89,34.9333333333,20.79,33.7,17.89,42.8266666667,9.5666666667,24.2333333333,21.8233333333,27.7,25.0333333333,37.5,18.89,39.2,9.1333333333,766.8666666667,55.6666666667,3.6666666667,22,0.6666666667,0.9311333764,0.9311333764 -80,10,20.79,34.6933333333,19.6333333333,32.86,19.89,34.6333333333,20.79,33.6633333333,17.89,42.6333333333,9.5666666667,22.3666666667,21.89,27.5666666667,25.1,37.5,18.89,39.09,9.2166666667,766.8333333333,55.3333333333,3.8333333333,22,0.6833333333,4.0584254777,4.0584254777 -80,10,20.79,34.0333333333,19.6,32.3333333333,19.8233333333,34.3,20.79,33.59,17.89,42.36,9.69,20.9266666667,21.9266666667,27.3266666667,25.2,37.1966666667,18.89,39.03,9.3,766.8,55,4,22,0.7,1.4068759046,1.4068759046 -90,0,20.79,33.3666666667,19.5333333333,31.8,19.79,34.03,20.7,33.5,17.89,42.29,9.69,20.6666666667,22.0666666667,27.2,25.1333333333,36.1966666667,18.89,38.95,9.3833333333,766.7833333333,54.6666666667,3.8333333333,21.6666666667,0.6833333333,38.1626667222,38.1626667222 -80,10,20.7,32.7966666667,19.39,31.2,19.79,33.9633333333,20.7,33.4333333333,17.89,42.49,9.83,20.6,22.2,27.03,25.1,35.16,18.89,38.9,9.4666666667,766.7666666667,54.3333333333,3.6666666667,21.3333333333,0.6666666667,46.0384116508,46.0384116508 -80,0,20.7,32.39,19.2633333333,30.9933333333,19.6666666667,33.5633333333,20.7,33.3633333333,18.5666666667,66.2,9.89,20.2,22.26,26.89,25.0333333333,34.6333333333,18.9633333333,38.9,9.55,766.75,54,3.5,21,0.65,20.9333445295,20.9333445295 -90,10,20.6666666667,31.93,19.2,30.9633333333,19.6,33.1566666667,20.7,33.29,18.5,67.06,9.9266666667,20.3666666667,22.3233333333,26.76,25,34.2233333333,19.23,38.9666666667,9.6333333333,766.7333333333,53.6666666667,3.3333333333,20.6666666667,0.6333333333,35.0544026354,35.0544026354 -60,10,20.6,31.73,19.2,30.9633333333,19.7,32.9,20.6,33.2,18.3566666667,66.5,10,21.1,22.39,26.7,25,33.83,19.23,38.8266666667,9.7166666667,766.7166666667,53.3333333333,3.1666666667,20.3333333333,0.6166666667,2.5248838123,2.5248838123 -50,0,20.6333333333,31.8233333333,19.1666666667,31.1333333333,19.65,32.75,20.6,33.2,18.29,65.0933333333,10,21.46,22.39,26.5666666667,24.9633333333,33.4666666667,19.1,39,9.8,766.7,53,3,20,0.6,37.013979943,37.013979943 -70,10,20.6333333333,31.89,19.1,31.26,19.7,32.6266666667,20.6,33.09,18.26,61.6266666667,10.0666666667,21.6666666667,22.39,26.5,24.9633333333,33.3266666667,19.0333333333,38.9333333333,9.8,766.7,52.5,3.1666666667,20.8333333333,0.4666666667,33.0884728348,33.0884728348 -70,0,20.6,32.0666666667,19.1,31.695,19.7,32.7666666667,20.6,33.1633333333,18.26,57.76,10.1,21.5566666667,22.5,26.5666666667,24.945,33.345,18.9633333333,39.06,9.8,766.7,52,3.3333333333,21.6666666667,0.3333333333,40.8140717307,40.8140717307 -80,10,20.6,32.46,19.1333333333,32.4266666667,19.7,32.9666666667,20.5333333333,33.1633333333,18.445,49.395,10.1,20.89,22.5,26.5,25.0333333333,33.6266666667,18.9633333333,39.06,9.8,766.7,51.5,3.5,22.5,0.2,7.835849328,7.835849328 -80,0,20.6,32.9633333333,19.2,32.76,19.79,33.2,20.5333333333,33.09,18.6,45.2966666667,10.1,20.3333333333,22.5,26.4633333333,25.1,33.6266666667,18.89,39.2,9.8,766.7,51,3.6666666667,23.3333333333,0.0666666667,20.2147252974,20.2147252974 -70,10,20.6,33.1633333333,19.2,33.2266666667,19.79,33.26,20.5,33.09,18.6666666667,43.3633333333,10.025,19.625,22.5,26.365,25.1,33.3633333333,18.89,39.2,9.8,766.7,50.5,3.8333333333,24.1666666667,-0.0666666667,8.0589121906,8.0589121906 -80,10,20.6,33.2666666667,19.2,33.5,19.89,33.5,20.5,33.09,18.6333333333,41.8,10,19.3,22.5,26.29,25.1,33.29,19,39.2,9.8,766.7,50,4,25,-0.2,45.9821062046,45.9821062046 -70,0,20.6,33.475,19.2,33.6566666667,19.89,33.6333333333,20.5,33.09,18.7,41.0666666667,10,18.9633333333,22.5,26.1666666667,25.0666666667,33.1633333333,19,39.2,9.65,766.7,51.3333333333,3.8333333333,31.6666666667,-2.77555756156289E-17,40.3365676524,40.3365676524 -80,10,20.6,33.56,19.2,33.79,19.89,33.8266666667,20.4175,33.0225,18.79,40.2666666667,10,19.03,22.4266666667,26.0333333333,24.9266666667,33.1633333333,18.9266666667,39.2,9.5,766.7,52.6666666667,3.6666666667,38.3333333333,0.2,43.1722757174,43.1722757174 -100,0,20.6,33.7,19.3666666667,33.3966666667,19.89,33.9,20.39,32.9333333333,18.79,39.7266666667,9.86,18.7333333333,22.39,25.89,24.89,33.23,19,39.2,9.35,766.7,54,3.5,45,0.4,23.76110279,23.76110279 -90,10,20.5333333333,33.7,19.9,32.2633333333,19.89,33.9,20.39,32.9,18.7266666667,40.0566666667,9.7266666667,18.5333333333,22.39,25.89,24.9633333333,33.3633333333,18.9633333333,39.2,9.2,766.7,55.3333333333,3.3333333333,51.6666666667,0.6,14.2984959646,14.2984959646 -90,10,20.5,33.4,19.76,31.86,19.89,33.8266666667,20.39,32.9,18.6,41.0566666667,9.4633333333,18.8,22.29,25.79,25,33.53,18.89,39.2,9.05,766.7,56.6666666667,3.1666666667,58.3333333333,0.8,9.5952179749,9.5952179749 -100,0,20.5,33.2666666667,19.36,32.1933333333,19.9266666667,33.79,20.3233333333,32.9,18.5,42.03,9.33,19.1333333333,22.29,25.73,25,33.59,19,39.2,8.9,766.7,58,3,65,1,31.0950067826,31.0950067826 -60,10,20.5,33.06,19.1666666667,32.4333333333,20,33.73,20.3233333333,32.9,18.5,42.43,9.1266666667,19.6666666667,22.1666666667,25.6,25,33.7,19,39.2,8.55,766.7666666667,59.5,3,64.6666666667,1.0166666667,1.3724506949,1.3724506949 -80,0,20.5,33,19.1,32.6333333333,20,33.5266666667,20.29,32.9,18.5,42.73,8.7933333333,20.4666666667,22.1,25.6,25,33.76,19,39.2,8.2,766.8333333333,61,3,64.3333333333,1.0333333333,34.4658957212,34.4658957212 -90,10,20.5,32.9,19,32.73,20,33.4,20.29,32.9,18.4266666667,42.73,8.3666666667,21.5333333333,22,25.5333333333,25,33.8266666667,18.9633333333,39.2,7.85,766.9,62.5,3,64,1.05,24.228004308,24.228004308 -100,0,20.5,32.9,19,32.8633333333,20,33.4666666667,20.2,32.79,18.39,42.79,7.76,22.66,21.9266666667,25.6,25,33.9666666667,18.9633333333,39.2,7.5,766.9666666667,64,3,63.6666666667,1.0666666667,3.9502405212,3.9502405212 -390,10,20.6,32.9666666667,19.0666666667,33.2,20,33.4,20.2,32.79,18.39,42.8633333333,7.06,24.6566666667,21.8566666667,25.7,24.9633333333,34.09,18.89,39.2,7.15,767.0333333333,65.5,3,63.3333333333,1.0833333333,13.5787998792,13.5787998792 -440,0,20.6,32.9,19.0666666667,33.26,20,33.4,20.2,32.79,18.39,42.9333333333,6.5333333333,25.99,21.79,25.76,24.89,34.1633333333,18.89,39.1266666667,6.8,767.1,67,3,63,1.1,27.1646835143,27.1646835143 -440,0,20.6333333333,33.63,19.1333333333,33.5,20,33.425,20.2,32.8633333333,18.3233333333,43,5.8966666667,27.5,21.76,26.0333333333,24.89,34.2,18.89,39.06,6.5166666667,767.15,68.6666666667,2.8333333333,62.6666666667,1.1333333333,19.7574101738,19.7574101738 -150,0,20.76,36.4966666667,19.2,33.96,20.0666666667,33.7666666667,20.1,32.9333333333,18.29,43.03,5.4966666667,28.8333333333,21.7,26.1666666667,24.89,34.1266666667,18.9633333333,39,6.2333333333,767.2,70.3333333333,2.6666666667,62.3333333333,1.1666666667,32.903983281,32.903983281 -150,0,20.89,36.9233333333,19.34,34.795,20.1,34.1566666667,20.1,33,18.29,43.2233333333,5.0933333333,30.7266666667,21.6,26.2,24.79,34.09,18.89,38.9,5.95,767.25,72,2.5,62,1.2,36.0157289077,36.0157289077 -150,0,20.9633333333,36.39,19.5,35.3266666667,20.1666666667,34.3633333333,20.1,33,18.29,43.45,4.7175,32.3,21.6,26.26,24.73,34.09,18.89,38.9,5.6666666667,767.3,73.6666666667,2.3333333333,61.6666666667,1.2333333333,10.02714684,10.02714684 -350,10,21.1333333333,35.99,19.5666666667,35.4,20.2,34.53,20.1,33,18.29,43.6266666667,4.53,33.8666666667,21.5,26.39,24.7,34.245,18.89,38.9,5.3833333333,767.35,75.3333333333,2.1666666667,61.3333333333,1.2666666667,32.0949923713,32.0949923713 -140,10,21.26,37.5966666667,19.6333333333,35.5666666667,20.2,34.6633333333,20.1,33,18.29,43.7,4.33,35.0666666667,21.4266666667,26.3233333333,24.7,34.2233333333,18.89,38.9,5.1,767.4,77,2,61,1.3,33.612421283,33.612421283 -130,10,21.4266666667,37.7966666667,19.7,36.2333333333,20.29,35.1266666667,20.1,33.395,18.29,43.9633333333,4.0633333333,35.5933333333,21.34,26.39,24.6333333333,33.83,18.9633333333,38.9,4.9333333333,767.4666666667,77.8333333333,2,60,1.2833333333,39.9950729916,39.9950729916 -450,10,21.5666666667,37.53,19.79,36.5666666667,20.29,35.3333333333,20.1,34.1333333333,18.29,44.2233333333,3.86,38.1933333333,21.26,26.8666666667,24.5666666667,33.5,18.89,38.9,4.7666666667,767.5333333333,78.6666666667,2,59,1.2666666667,17.8700094577,17.8700094577 -230,0,21.65,36.995,19.79,36.7,20.3233333333,35.6266666667,20.1,34.6925,18.5266666667,54.7666666667,4.06,41.4666666667,21.3266666667,28.6666666667,24.5,33.36,18.89,38.9,4.6,767.6,79.5,2,58,1.25,12.2150373878,12.2150373878 -300,0,21.7,36.3333333333,19.79,36.59,20.39,35.7,20.1,34.8633333333,19.26,75.3666666667,4.0266666667,41.89,21.5,29.5333333333,24.39,33.29,18.89,38.9,4.4333333333,767.6666666667,80.3333333333,2,57,1.2333333333,35.2559311199,35.2559311199 -170,0,21.7,36.2,19.79,36.7233333333,20.39,35.7,20.1,34.9,19.1666666667,72.03,3.9666666667,44.63,21.4266666667,28.9933333333,24.3233333333,33.29,18.9633333333,38.9,4.2666666667,767.7333333333,81.1666666667,2,56,1.2166666667,0.2821189933,0.2821189933 -110,0,21.7,36.06,19.79,37.0666666667,20.39,35.7,20.1,34.9666666667,19.0333333333,70.4233333333,3.7233333333,45.3966666667,21.26,28.7266666667,24.26,33.2233333333,18.9633333333,38.9,4.1,767.8,82,2,55,1.2,10.4689646396,10.4689646396 -110,0,21.7,36,19.73,37.26,20.39,35.8266666667,20.1,35.03,18.9633333333,67.7333333333,3.4633333333,46.4566666667,21.2,28.5333333333,24.2,33.09,19,38.9,4.0833333333,767.8,82,2.1666666667,56,1.1833333333,7.6933700475,7.6933700475 -80,0,21.7,36,19.7,37.5,20.39,35.9,20.1,35.09,18.89,62.3266666667,3.1633333333,47.8333333333,21.1,28.39,24.1666666667,33.06,19,38.9,4.0666666667,767.8,82,2.3333333333,57,1.1666666667,15.7023498439,15.7023498439 -250,0,21.76,36.06,19.6333333333,37.8333333333,20.39,35.9333333333,20.1,35.2,19.1633333333,52.53,3.03,49.9,21.1,28.39,24.0333333333,32.9333333333,18.945,38.9,4.05,767.8,82,2.5,58,1.15,2.6011534967,2.6011534967 -420,0,21.79,36.2,19.6,38.23,20.39,36.06,20.1,35.26,19.3566666667,49.39,3.03,52.8266666667,21,28.29,24,32.9,18.9633333333,38.9,4.0333333333,767.8,82,2.6666666667,59,1.1333333333,7.7987297555,7.7987297555 -150,0,21.73,36.26,19.5333333333,38.43,20.3566666667,36.2,20.1,35.4333333333,19.4266666667,46.53,3.03,53.9666666667,20.9266666667,28.29,23.9266666667,32.9,18.9633333333,38.9,4.0166666667,767.8,82,2.8333333333,60,1.1166666667,40.2112241019,40.2112241019 -110,0,21.7,36.29,19.39,38.5666666667,20.29,36.26,20.1,35.5,19.5,45.2633333333,2.8633333333,54.8633333333,20.89,28.39,23.89,33,18.89,38.9,4,767.8,82,3,61,1.1,27.3705757223,27.3705757223 -100,0,21.7,36.29,19.39,38.76,20.29,36.3266666667,20.1,35.5,19.5,44.0633333333,2.73,55.53,20.89,28.39,23.8233333333,33,18.89,38.9,3.7166666667,767.85,82.8333333333,3,60,0.9666666667,44.5878238417,44.5878238417 -100,0,21.7,36.29,19.29,38.9,20.29,36.475,20.1,35.56,19.5666666667,43.3233333333,2.59,57.4666666667,20.79,28.29,23.76,33,19,38.9,3.4333333333,767.9,83.6666666667,3,59,0.8333333333,2.2507800255,2.2507800255 -100,0,21.7,36.23,19.23,38.9,20.29,36.5,20.0666666667,35.4666666667,19.6,42.6233333333,2.4725,57.62,20.79,28.29,23.7,33,18.9266666667,38.9,3.15,767.95,84.5,3,58,0.7,47.462932521,47.462932521 -80,0,21.7,36.2,19.15,39,20.3233333333,36.5,20.0666666667,35.4666666667,19.6,42.1566666667,2.4333333333,57.8933333333,20.7,28.2,23.7,32.9666666667,18.89,38.9,2.8666666667,768,85.3333333333,3,57,0.5666666667,28.4102942445,28.4102942445 -90,10,21.7,36.2,19.1,39.09,20.3233333333,36.5,20,35.4,19.6333333333,41.6633333333,2.3633333333,57.76,20.7,28.2,23.6333333333,32.8266666667,18.89,38.9,2.5833333333,768.05,86.1666666667,3,56,0.4333333333,12.4677984626,12.4677984626 -70,0,21.6666666667,36.2,19.0333333333,39.09,20.29,36.4333333333,20,35.4,19.5725,41.82,2.1566666667,57.6266666667,20.7,28.7333333333,23.6,33.1333333333,18.9633333333,38.9,2.3,768.1,87,3,55,0.3,12.4396464904,12.4396464904 -60,10,21.6,36.2,18.9633333333,38.9,20.23,36.4333333333,20,35.4,19.39,42.9566666667,2.06,58.7333333333,20.76,29.1333333333,23.675,33.975,18.9633333333,38.9,2.1666666667,768.1166666667,87,2.8333333333,55.5,0.1833333333,22.6260007941,22.6260007941 -60,0,21.6,36.09,18.89,38.9,20.2,36.4333333333,20,35.4,19.26,44.2933333333,2,58.9266666667,20.79,29.445,23.7,34.8933333333,18.9266666667,38.9,2.0333333333,768.1333333333,87,2.6666666667,56,0.0666666667,11.9603472878,11.9603472878 -30,0,21.6,36.03,18.8566666667,38.8633333333,20.2,36.5,19.89,35.4,19.1333333333,45.0333333333,1.6333333333,58.83,20.79,29.6633333333,23.6,35.53,19,38.9,1.9,768.15,87,2.5,56.5,-0.05,38.8713099179,38.8713099179 -40,0,21.5,36,18.79,38.79,20.1666666667,36.4,19.945,35.3175,19.1,45.9266666667,1.5,59.6966666667,20.79,29.93,23.6,36.1233333333,18.89,38.9333333333,1.7666666667,768.1666666667,87,2.3333333333,57,-0.1666666667,7.7306620777,7.7306620777 -30,0,21.5,36,18.7,38.9,20.1,36.4666666667,19.89,35.29,19.0333333333,46.4,1.3266666667,60.1333333333,20.79,30.1633333333,23.5666666667,36.6566666667,18.9633333333,39.06,1.6333333333,768.1833333333,87,2.1666666667,57.5,-0.2833333333,40.513766557,40.513766557 -30,0,21.5,36,18.6333333333,38.9,20.1,36.4666666667,19.89,35.2,18.9633333333,47,1.2,60.7266666667,20.79,30.43,23.5,36.8633333333,18.89,39.09,1.5,768.2,87,2,58,-0.4,31.4901021891,31.4901021891 -60,0,21.39,35.9,18.5666666667,38.9333333333,20.0333333333,36.3266666667,19.89,35.2,18.89,47.4,1.1333333333,61.5333333333,20.79,30.6333333333,23.39,37.0666666667,18.89,39.1633333333,1.4166666667,768.1833333333,87.1666666667,2,57,-0.4666666667,36.7304641637,36.7304641637 -60,0,21.39,35.9,18.5,38.9333333333,20,36.29,19.8566666667,35.1333333333,18.8566666667,47.7,1,62.0666666667,20.79,30.76,23.3233333333,37.3333333333,18.89,39.2,1.3333333333,768.1666666667,87.3333333333,2,56,-0.5333333333,42.1046879375,42.1046879375 -60,0,21.3566666667,35.9,18.39,38.8266666667,20,36.23,19.8566666667,35.06,18.79,47.8333333333,0.8666666667,62.2633333333,20.79,31.0333333333,23.29,37.6933333333,18.9633333333,39.26,1.25,768.15,87.5,2,55,-0.6,47.385516169,47.385516169 -50,0,21.29,35.9,18.3233333333,38.9,20.1,36.3266666667,19.79,35,18.79,48.0666666667,0.8666666667,62.99,20.79,31.2266666667,23.29,38.0266666667,18.89,39.29,1.1666666667,768.1333333333,87.6666666667,2,54,-0.6666666667,18.9887122484,18.9887122484 -50,0,21.26,35.79,18.26,38.76,20.1,36.3266666667,19.79,35,18.73,48.26,0.6666666667,62.6,20.79,31.4266666667,23.26,38.3266666667,18.89,39.3266666667,1.0833333333,768.1166666667,87.8333333333,2,53,-0.7333333333,12.9696026328,12.9696026328 -60,0,21.2,35.79,18.2,38.7,20.1,36.29,19.79,34.9666666667,18.7,48.4333333333,0.625,64.27,20.79,31.4266666667,23.2,38.5266666667,18.89,39.4,1,768.1,88,2,52,-0.8,7.9163863556,7.9163863556 -50,0,21.2,35.79,18.1,38.73,20.1,36.3633333333,19.79,34.9,18.6333333333,48.5,0.7,65.2266666667,20.79,31.5,23.2,38.9633333333,18.89,39.4,0.9333333333,768.1166666667,88,1.8333333333,51.5,-0.8666666667,4.8359594774,4.8359594774 -50,0,21.1333333333,35.79,18.1,38.79,20.1,36.4,19.79,34.9,18.6666666667,48.6633333333,0.4666666667,64.4666666667,20.79,31.5666666667,23.1333333333,39.2966666667,18.89,39.4666666667,0.8666666667,768.1333333333,88,1.6666666667,51,-0.9333333333,45.0957144145,45.0957144145 -60,0,21.1,35.79,18,38.8266666667,20.125,36.4,19.79,34.9,18.6,48.6633333333,0.4666666667,65.3933333333,20.7,31.8,23.1333333333,39.59,18.9266666667,39.5,0.8,768.15,88,1.5,50.5,-1,42.5337998662,42.5337998662 -50,0,21.1,35.79,17.9266666667,38.9,20.2,36.4,19.7,34.9,18.5666666667,48.73,0.4,65.6966666667,20.76,32.06,23.1333333333,39.59,19,39.5,0.7333333333,768.1666666667,88,1.3333333333,50,-1.0666666667,4.5013179188,4.5013179188 -40,0,21.0666666667,35.79,17.84,38.95,20.2,36.4333333333,19.7,34.8266666667,18.5666666667,48.8633333333,0.3333333333,66.1566666667,20.76,32.2666666667,23.1,39.7,18.89,39.59,0.6666666667,768.1833333333,88,1.1666666667,49.5,-1.1333333333,28.9819272351,28.9819272351 -40,0,21,35.73,17.76,39.03,20.2,36.5,19.7,34.8633333333,18.5,48.8266666667,0.2,66.6666666667,20.76,32.4666666667,23.1,39.7,18.89,39.59,0.6,768.2,88,1,49,-1.2,24.2533307173,24.2533307173 -40,0,21,35.7,17.7,39.09,20.2,36.4666666667,19.7,34.79,18.5,48.9,0.1333333333,67.3333333333,20.76,32.59,23.1,39.59,18.9266666667,39.7,0.5833333333,768.2333333333,88.1666666667,1,48.5,-1.2,24.6162212454,24.6162212454 -30,0,20.9266666667,35.7,17.6666666667,39.23,20.2,36.4666666667,19.7,34.79,18.5,48.9666666667,0.0666666667,67.56,20.76,32.6633333333,23.0333333333,39.4633333333,18.9266666667,39.7,0.5666666667,768.2666666667,88.3333333333,1,48,-1.2,20.7949584001,20.7949584001 -50,0,20.89,35.6633333333,17.6,39.3633333333,20.2,36.5,19.7,34.79,18.39,48.9,0,67.8933333333,20.7,32.73,23,39.4,18.89,39.7,0.55,768.3,88.5,1,47.5,-1.2,16.4734995225,16.4734995225 -60,0,20.89,35.59,17.5666666667,39.53,20.2,36.56,19.6,34.7,18.39,48.9,-0.1,67.7566666667,20.7,32.79,22.89,39.4,18.9633333333,39.76,0.5333333333,768.3333333333,88.6666666667,1,47,-1.2,37.8143434064,37.8143434064 -50,0,20.8566666667,35.56,17.5,39.59,20.2,36.6266666667,19.6,34.645,18.39,48.9,-0.1,68.23,20.7,32.79,22.89,39.4,18.9266666667,39.79,0.5166666667,768.3666666667,88.8333333333,1,46.5,-1.2,29.1016782867,29.1016782867 -60,0,20.79,35.5,17.4633333333,39.7,20.2,36.7,19.6,34.6266666667,18.39,48.9666666667,-0.1,68.7966666667,20.7,32.9333333333,22.89,39.4333333333,18.9266666667,39.79,0.5,768.4,89,1,46,-1.2,24.0545057924,24.0545057924 -60,0,20.79,35.5,17.39,39.7,20.2,36.7,19.6,34.59,18.29,49,-0.1,68.7966666667,20.7,33.1333333333,22.8233333333,39.36,18.89,39.8266666667,0.3166666667,768.3666666667,89.5,1.1666666667,44,-1.2833333333,16.6529604467,16.6529604467 -50,0,20.79,35.5,17.29,39.7,20.2,36.76,19.6,34.59,18.29,49,-0.1,69.1566666667,20.7,33.23,22.79,39.29,18.89,39.9,0.1333333333,768.3333333333,90,1.3333333333,42,-1.3666666667,40.8745918539,40.8745918539 -60,0,20.73,35.5,17.29,39.76,20.29,36.9,19.6,34.59,18.29,49,-0.1666666667,69.23,20.7,33.3633333333,22.79,39.29,18.89,39.9,-0.05,768.3,90.5,1.5,40,-1.45,7.4909531628,7.4909531628 -50,0,20.7,35.4666666667,17.2,39.7,20.29,36.9,19.6,34.59,18.29,49,-0.2,69.345,20.7,33.5,22.79,39.3266666667,18.89,39.9666666667,-0.2333333333,768.2666666667,91,1.6666666667,38,-1.5333333333,45.7344013383,45.7344013383 -50,0,20.7,35.4,17.2,39.76,20.29,36.9,19.5,34.59,18.29,49,-0.2333333333,69.5,20.7,33.56,22.79,39.4,18.945,40,-0.4166666667,768.2333333333,91.5,1.8333333333,36,-1.6166666667,23.1965817977,23.1965817977 -50,0,20.6666666667,35.3633333333,17.1,39.79,20.29,36.9,19.5,34.59,18.29,49,-0.3666666667,69.2266666667,20.7,33.59,22.76,39.29,18.89,40.09,-0.6,768.2,92,2,34,-1.7,36.429128109,36.429128109 -40,0,20.6,35.29,17.1,39.79,20.29,37,19.5,34.5,18.2,49,-0.5333333333,68.7966666667,20.7,33.59,22.7,39.29,18.89,40.09,-0.7333333333,768.2333333333,92.1666666667,1.8333333333,34,-1.8166666667,19.1237826017,19.1237826017 -40,0,20.6,35.29,17.1,39.79,20.29,37,19.5,34.5,18.2,49,-0.6666666667,68.53,20.7,33.59,22.7,39.26,18.9266666667,40.09,-0.8666666667,768.2666666667,92.3333333333,1.6666666667,34,-1.9333333333,10.8979258337,10.8979258337 -50,0,20.5333333333,35.29,17.0333333333,39.79,20.29,37,19.5,34.5,18.2,49,-0.8333333333,68.5233333333,20.7,33.59,22.7,39.26,18.9266666667,40.09,-1,768.3,92.5,1.5,34,-2.05,23.3036036254,23.3036036254 -30,0,20.5,35.29,16.9633333333,39.79,20.29,37.0675,19.5,34.5,18.2,49,-0.9666666667,68.5966666667,20.7,33.59,22.6,39.2,18.89,40.2,-1.1333333333,768.3333333333,92.6666666667,1.3333333333,34,-2.1666666667,40.8389163436,40.8389163436 -50,0,20.5,35.29,16.89,39.79,20.29,37.09,19.5,34.5,18.2,49,-1,69.26,20.6333333333,33.59,22.6,39.2,18.89,40.2,-1.2666666667,768.3666666667,92.8333333333,1.1666666667,34,-2.2833333333,18.2811720413,18.2811720413 -60,0,20.4633333333,35.2,16.84,39.79,20.2,37,19.5,34.5,18.2,49,-1,69.4666666667,20.6,33.59,22.6,39.2,18.89,40.23,-1.4,768.4,93,1,34,-2.4,22.4108815426,22.4108815426 -40,0,20.39,35.2,16.79,39.79,20.2,37,19.39,34.3633333333,18.1,49.09,-1.1333333333,69.23,20.6,33.59,22.6,39.2,18.9633333333,40.29,-1.2666666667,768.4666666667,93,1.3333333333,34.8333333333,-2.2666666667,12.3359324411,12.3359324411 -60,0,20.39,35.2,16.79,39.8633333333,20.2,37,19.39,34.29,18.1,49.045,-1.2,69.3633333333,20.6,33.56,22.5,39.1633333333,18.89,40.29,-1.1333333333,768.5333333333,93,1.6666666667,35.6666666667,-2.1333333333,23.7900977372,23.7900977372 -60,0,20.39,35.2,16.76,39.9,20.2,37,19.39,34.29,18.1,49.09,-1.23,69.6233333333,20.6,33.5,22.5,39.09,18.89,40.29,-1,768.6,93,2,36.5,-2,22.5832620752,22.5832620752 -50,0,20.29,35.1633333333,16.7,39.9666666667,20.2,37,19.39,34.29,18.1,49.09,-1.23,70.0233333333,20.5333333333,33.4666666667,22.5,39.1633333333,18.89,40.4,-0.8666666667,768.6666666667,93,2.3333333333,37.3333333333,-1.8666666667,25.6831965293,25.6831965293 -70,0,20.29,35.1633333333,16.7,40,20.2,37,19.34,34.29,18.1,49.09,-1.2,70.2933333333,20.6,33.475,22.5,39.1633333333,18.89,40.4,-0.7333333333,768.7333333333,93,2.6666666667,38.1666666667,-1.7333333333,15.9011481446,15.9011481446 -50,0,20.29,35.1633333333,16.6333333333,40,20.2,37,19.39,34.29,18.1,49.09,-1.2,70.5,20.5333333333,33.5,22.39,39.09,19,40.4333333333,-0.6,768.8,93,3,39,-1.6,41.9212314417,41.9212314417 -50,0,20.29,35.09,16.6,40.03,20.26,37,19.3233333333,34.29,18.1,49.09,-1.2,70.6,20.5,33.5,22.39,39.2,19,40.5,-0.6833333333,768.8666666667,93.1666666667,2.8333333333,39.5,-1.6666666667,20.9925444564,20.9925444564 -50,0,20.23,35.03,16.6,40.09,20.29,37,19.3566666667,34.26,18.1,49.09,-1.125,71.0425,20.5,33.4333333333,22.3233333333,39.2,18.89,40.5,-0.7666666667,768.9333333333,93.3333333333,2.6666666667,40,-1.7333333333,49.3045893032,49.3045893032 -50,0,20.2,35,16.5,40.1266666667,20.29,37.06,19.29,34.26,18.0333333333,49.03,-1.1,71.2633333333,20.5,33.6266666667,22.29,39.29,18.89,40.5,-0.85,769,93.5,2.5,40.5,-1.8,31.8583208951,31.8583208951 -30,0,20.2,35,16.5,40.1266666667,20.29,37.09,19.29,34.2,18,49,-1,71.3666666667,20.5,33.76,22.29,39.29,19,40.53,-0.9333333333,769.0666666667,93.6666666667,2.3333333333,41,-1.8666666667,36.1228434835,36.1228434835 -40,0,20.1,35.03,16.5,40.09,20.23,37.03,19.29,34.2,18,49,-1,71.16,20.5,33.8266666667,22.29,39.4,18.9266666667,40.59,-1.0166666667,769.1333333333,93.8333333333,2.1666666667,41.5,-1.9333333333,30.5443549878,30.5443549878 -40,0,20.1,35.09,16.5,40.1633333333,20.2,37,19.29,34.2,18,49,-1,71.1233333333,20.5,33.9,22.23,39.3266666667,19,40.59,-1.1,769.2,94,2,42,-2,16.2665934535,16.2665934535 -40,0,20.1,35.09,16.4633333333,40.1633333333,20.2,37,19.23,34.1266666667,18,49,-1,71.0633333333,20.5,33.9,22.2,39.29,18.89,40.59,-1.0166666667,769.2666666667,94,2.3333333333,42.8333333333,-1.9166666667,38.0017031566,38.0017031566 -60,0,20.1,35.09,16.39,40.09,20.1,37,19.2,34.09,18,49,-1,71.03,20.5,33.9666666667,22.2,39.29,18.9633333333,40.6633333333,-0.9333333333,769.3333333333,94,2.6666666667,43.6666666667,-1.8333333333,27.5573047693,27.5573047693 -70,0,20,35,16.39,40.03,20.1,37,19.2,34.09,18,49,-1,71.03,20.5,34,22.2,39.3266666667,18.9266666667,40.7,-0.85,769.4,94,3,44.5,-1.75,17.4545174232,17.4545174232 -60,0,20,35,16.39,40.1633333333,20.1,37,19.26,34.5,18,49,-1,70.9633333333,20.5,34,22.1333333333,39.4,19,40.7,-0.7666666667,769.4666666667,94,3.3333333333,45.3333333333,-1.6666666667,30.4016675917,30.4016675917 -60,0,20,35.03,16.39,40.23,20.1,36.9,19.2,34.6333333333,17.9266666667,49,-0.9333333333,71.09,20.5,34.09,22.1,39.5,18.89,40.7,-0.6833333333,769.5333333333,94,3.6666666667,46.1666666667,-1.5833333333,27.258297638,27.258297638 -60,0,20,35.09,16.445,40.2675,20.0333333333,36.6933333333,19.2,34.8266666667,17.9633333333,49,-0.8666666667,71.09,20.5,34.09,22.1,39.56,18.9633333333,40.7,-0.6,769.6,94,4,47,-1.5,45.0308845961,45.0308845961 -70,0,19.9633333333,35.1266666667,16.4633333333,40.1266666667,20,36.4,19.26,34.9666666667,17.89,49,-0.7333333333,71.23,20.39,34.06,22.1,39.59,19,40.7,-0.4666666667,769.65,93.3333333333,4,48.8333333333,-1.45,10.754161689,10.754161689 -70,0,19.89,35.2,16.5,40.09,20,36.4,19.23,35.1566666667,17.89,49,-0.6666666667,71.23,20.39,33.9333333333,22.1,39.6633333333,19,40.7,-0.3333333333,769.7,92.6666666667,4,50.6666666667,-1.4,16.9398161583,16.9398161583 -70,0,19.89,35.2,16.5666666667,40.09,20,36.4,19.29,35.29,17.89,49,-0.5333333333,71.09,20.39,33.8633333333,22.1,39.8266666667,19,40.7,-0.2,769.75,92,4,52.5,-1.35,22.1395137603,22.1395137603 -70,0,19.89,35.26,16.6333333333,40.23,20.0666666667,36.4666666667,19.3233333333,35.4633333333,17.89,49,-0.3666666667,70.9666666667,20.39,33.73,22.1,39.9,19,40.7,-0.0666666667,769.8,91.3333333333,4,54.3333333333,-1.3,32.3557429947,32.3557429947 -50,0,19.89,35.4,16.7,40.23,20.0666666667,36.4666666667,19.39,35.6633333333,17.89,48.8633333333,-0.2333333333,70.76,20.39,33.7,22.0333333333,39.9633333333,19.0333333333,40.6266666667,0.0666666667,769.85,90.6666666667,4,56.1666666667,-1.25,10.8896402642,10.8896402642 -60,0,19.89,35.4666666667,16.79,39.9666666667,20,36.3266666667,19.55,35.845,17.89,48.5966666667,0.05,70.495,20.365,33.32,22.0333333333,39.9633333333,19.1,40.6266666667,0.2,769.9,90,4,58,-1.2,14.4749317085,14.4749317085 -60,0,19.89,35.6933333333,16.9966666667,39.8266666667,20,36.23,19.73,35.6,17.89,48.2233333333,0.3666666667,70.1666666667,20.29,33.1333333333,21.9633333333,39.6333333333,19.1333333333,40.3633333333,0.5666666667,769.8666666667,88.5,4.3333333333,58.8333333333,-1.1,35.0118431496,35.0118431496 -30,0,19.89,36.125,17.3933333333,39.2333333333,19.9266666667,36.23,19.8566666667,35.3266666667,17.89,47.9633333333,0.6333333333,69.5666666667,20.29,33.1333333333,21.9725,39.425,19.2,39.83,0.9333333333,769.8333333333,87,4.6666666667,59.6666666667,-1,22.2072454053,22.2072454053 -60,10,19.89,36.3333333333,17.7933333333,38.6333333333,19.89,36.2,19.9266666667,35.0266666667,17.89,47.6633333333,0.8666666667,68.1966666667,20.29,33,22,39.4,19.2,39.1333333333,1.3,769.8,85.5,5,60.5,-0.9,13.3891836042,13.3891836042 -100,0,19.89,36.43,18.3,38.1,19.89,36.2,20.0666666667,34.9,17.89,47.39,1.1933333333,67.3966666667,20.29,32.8633333333,22,39.53,19.2,39,1.6666666667,769.7666666667,84,5.3333333333,61.3333333333,-0.8,34.3834538944,34.3834538944 -120,0,19.89,36.3633333333,18.6333333333,37.6933333333,19.89,36.2,20.23,34.8266666667,17.89,47.1,1.6633333333,66.3966666667,20.23,32.5966666667,22,39.4633333333,19.2,38.8633333333,2.0333333333,769.7333333333,82.5,5.6666666667,62.1666666667,-0.7,48.1487112469,48.1487112469 -100,0,20.0333333333,38.2666666667,19.0666666667,37.1,19.89,36.26,20.3566666667,34.7666666667,17.89,46.7666666667,1.99,65.3233333333,20.2,32.49,22.1,39.2233333333,19.2,38.79,2.4,769.7,81,6,63,-0.6,1.5503178583,1.5503178583 -90,0,20.1,38.86,19.3266666667,36.9,20,36.29,20.4175,34.865,17.89,46.4666666667,2.5966666667,62.8966666667,20.2,32.0966666667,22.1,39.09,19.2,38.845,2.7666666667,769.7,78.8333333333,6.1666666667,56.3333333333,-0.6333333333,14.068448008,14.068448008 -100,0,20.1,38.16,19.6633333333,36.6633333333,20,36.29,20.5666666667,35.1633333333,17.89,46.3266666667,2.99,59.1566666667,20.2,31.73,22.0666666667,38.13,19.2,39,3.1333333333,769.7,76.6666666667,6.3333333333,49.6666666667,-0.6666666667,41.6322124074,41.6322124074 -130,0,20.1,37.8266666667,19.93,36.59,20,36.23,20.7,35.29,17.89,45.99,3.5,55.2933333333,20.26,31.99,22.0666666667,37.4633333333,19.2,39,3.5,769.7,74.5,6.5,43,-0.7,27.1075235447,27.1075235447 -130,0,20.1,37.66,20.23,36.2233333333,20,36.29,20.7,35.29,17.89,45.5966666667,3.9,50.96,20.29,31.8266666667,22.23,37.1633333333,19.2,39.1633333333,3.8666666667,769.7,72.3333333333,6.6666666667,36.3333333333,-0.7333333333,20.7504605176,20.7504605176 -130,0,20.1666666667,37.4,20.3566666667,35.89,20,36.29,20.795,35.79,17.89,45.3633333333,4.26,47.4933333333,20.29,31.5666666667,22.3566666667,37.03,19.2,39.1633333333,4.2333333333,769.7,70.1666666667,6.8333333333,29.6666666667,-0.7666666667,8.6289710714,8.6289710714 -130,0,20.2,37.1566666667,20.6,35.5266666667,20.0333333333,36.23,20.89,36.29,17.89,45.29,4.4666666667,46.3,20.29,31.1333333333,22.5333333333,36.9666666667,19.1,39.3266666667,4.6,769.7,68,7,23,-0.8,17.7175974241,17.7175974241 -140,0,20.2,37.0966666667,20.6975,35.245,20.0333333333,36.23,21,36.0666666667,17.89,45.2,4.76,44.03,20.3566666667,30.8,22.6,36.8266666667,19.1,39.4,4.9,769.6833333333,67.6666666667,6.8333333333,23,-0.5833333333,37.8435875406,37.8435875406 -110,0,20.29,37.1,20.79,34.86,20.0333333333,36.23,21,36.26,17.89,45.2,5.0266666667,42.8966666667,20.39,30.43,22.7,36.9,19.1333333333,39.3633333333,5.2,769.6666666667,67.3333333333,6.6666666667,23,-0.3666666667,4.3509529205,4.3509529205 -60,0,20.29,36.9,20.79,34.79,20.1,36.29,20.89,36.3333333333,18,46.8333333333,5.2266666667,41.2633333333,20.39,30.23,22.76,37.0266666667,19.2,39.0966666667,5.5,769.65,67,6.5,23,-0.15,34.5019301982,34.5019301982 -60,10,20.29,36.8266666667,20.79,34.79,20.1,36.29,20.89,36.0666666667,18,48.12,5.525,40.47,20.5,30.1666666667,22.79,37.09,19.2,39,5.8,769.6333333333,66.6666666667,6.3333333333,23,0.0666666667,27.0894501242,27.0894501242 -50,0,20.3566666667,37.1,20.79,34.7233333333,20.1,36.43,21,35.6333333333,18,48.2,5.9333333333,39.3633333333,20.5666666667,29.96,22.79,36.9633333333,19.2,39.06,6.1,769.6166666667,66.3333333333,6.1666666667,23,0.2833333333,46.0381342913,46.0381342913 -60,0,20.39,36.7966666667,20.73,34.53,20.1,36.4,21,35.36,17.9266666667,48.06,6.3666666667,37.9566666667,20.73,29.7266666667,22.9266666667,36.5633333333,19.2,39.23,6.4,769.6,66,6,23,0.5,40.9473265288,40.9473265288 -70,0,20.4633333333,36.53,20.7,34.4,20.1,36.4,21,35.045,18,47.9333333333,6.56,36.6966666667,20.865,29.5475,23,36.0966666667,19.2,39.29,6.65,769.55,65.5,6,23.5,0.6166666667,9.7007464734,9.7007464734 -70,0,20.5333333333,36.26,20.7,34.3266666667,20.1,36.3633333333,21,34.76,18,47.7233333333,6.8666666667,35.96,20.9633333333,29.2633333333,23.1333333333,35.7966666667,19.1333333333,39.1933333333,6.9,769.5,65,6,24,0.7333333333,44.224920508,44.224920508 -70,0,20.625,36.095,20.7,34.2,20.1666666667,36.29,21.0666666667,34.6266666667,17.9266666667,47.4633333333,7,34.9,21.1,29.1333333333,23.26,35.4633333333,19.2,38.9333333333,7.15,769.45,64.5,6,24.5,0.85,12.9554078798,12.9554078798 -60,0,20.7,35.9333333333,20.7,34.1266666667,20.2,36.26,21.1,34.4666666667,17.9266666667,47.0266666667,7.26,35.1266666667,21.1666666667,28.9266666667,23.39,35.1,19.2,38.7,7.4,769.4,64,6,25,0.9666666667,2.2648804123,2.2648804123 -60,0,20.79,35.76,20.7,34,20.2,36.2,21.1,34.3266666667,17.9266666667,46.7666666667,7.4666666667,34.1266666667,21.3233333333,28.79,23.5,34.93,19.2,38.76,7.65,769.35,63.5,6,25.5,1.0833333333,38.4409305756,38.4409305756 -60,0,20.8566666667,35.7,20.6333333333,33.9333333333,20.2,36.2,21.1,34.2,17.9633333333,46.5266666667,7.6233333333,33.36,21.4633333333,28.73,23.5666666667,34.6566666667,19.2,38.76,7.9,769.3,63,6,26,1.2,20.3608585987,20.3608585987 -60,10,20.96,35.59,20.6,33.9,20.2,36.1266666667,21.0333333333,34.0666666667,17.9633333333,46.3266666667,7.83,32.6933333333,21.5333333333,28.5666666667,23.7,34.4666666667,19.2,38.7,8.05,769.2833333333,62.3333333333,6,25.5,1.2,11.2853227882,11.2853227882 -60,0,21.1,35.53,20.6,33.9666666667,20.29,36.1633333333,21,33.9666666667,18,46.06,8.1,31.9266666667,21.6666666667,28.5,23.76,34.2666666667,19.2,38.7,8.2,769.2666666667,61.6666666667,6,25,1.2,18.8573768828,18.8573768828 -70,0,21.2,35.3633333333,20.5666666667,33.9333333333,20.29,36.09,21,33.9666666667,18,45.86,8.2333333333,30.66,21.79,28.3566666667,23.8233333333,34,19.2,38.7,8.35,769.25,61,6,24.5,1.2,20.2271453105,20.2271453105 -70,0,21.26,35.29,20.5,34,20.29,36.06,21,33.9,17.9633333333,45.6633333333,8.3666666667,29.56,21.8566666667,28.29,23.9633333333,33.86,19.2,38.7,8.5,769.2333333333,60.3333333333,6,24,1.2,34.1442234931,34.1442234931 -70,0,21.3233333333,35.2,20.5,34.09,20.29,36,21,33.8266666667,17.9633333333,45.53,8.5666666667,27.8933333333,21.9266666667,28.1,24.1,33.6633333333,19.2,38.59,8.65,769.2166666667,59.6666666667,6,23.5,1.2,7.0764685865,7.0764685865 -40,0,21.39,35.0666666667,20.5,34.1633333333,20.39,35.95,21,33.7,18,45.3633333333,8.8,26.0966666667,22.0666666667,28.0333333333,24.1666666667,33.4633333333,19.2,38.59,8.8,769.2,59,6,23,1.2,44.770516851,44.770516851 -40,0,21.5333333333,34.9666666667,20.5,34.2,20.39,35.9,21,33.6266666667,18,45.23,8.8,26.43,22.2,27.8566666667,24.29,33.3333333333,19.2,38.59,8.8833333333,769.1166666667,58.5,6.1666666667,25.8333333333,1.1333333333,28.3334908774,28.3334908774 -50,0,21.6,34.8266666667,20.5,34.2,20.39,35.8266666667,21,33.59,18,45.06,8.9266666667,25.9566666667,22.26,27.79,24.3566666667,33.1266666667,19.2,38.53,8.9666666667,769.0333333333,58,6.3333333333,28.6666666667,1.0666666667,12.0356171508,12.0356171508 -40,0,21.7,34.79,20.5,34.245,20.39,35.79,21,33.53,18,44.86,9.075,25.52,22.39,27.6666666667,24.4266666667,32.9,19.2,38.5,9.05,768.95,57.5,6.5,31.5,1,13.5668767616,13.5668767616 -70,10,21.7,34.73,20.5,34.26,20.39,35.73,21,33.4666666667,18,44.79,9.16,25.1966666667,22.4633333333,27.5333333333,24.5666666667,32.7666666667,19.2,38.5,9.1333333333,768.8666666667,57,6.6666666667,34.3333333333,0.9333333333,36.475045071,36.475045071 -70,0,21.8233333333,34.59,20.5,34.2,20.39,35.7,21,33.4,18,44.695,9.3,23.7233333333,22.6,27.3566666667,24.6,32.56,19.29,38.5,9.2166666667,768.7833333333,56.5,6.8333333333,37.1666666667,0.8666666667,18.1879411335,18.1879411335 -70,0,21.89,34.53,20.5666666667,34.29,20.4633333333,35.76,21,33.4,18,44.59,9.4333333333,23.39,22.6666666667,27.29,24.6666666667,32.5,19.29,38.5,9.3,768.7,56,7,40,0.8,6.8631719449,6.8631719449 -60,0,22,34.4,20.5666666667,34.23,20.5,35.79,21,33.3266666667,18,44.5,9.63,22.7266666667,22.73,27.1333333333,24.79,32.26,19.29,38.4,9.35,768.65,56,7,38,0.85,23.7992160255,23.7992160255 -70,0,22,34.3266666667,20.6,34.2,20.5666666667,35.73,21,33.29,18,44.4333333333,9.7633333333,21.8666666667,22.79,27,24.8566666667,32.1266666667,19.29,38.3266666667,9.4,768.6,56,7,36,0.9,10.4915374774,10.4915374774 -60,0,22.1,34.29,20.6,34.2,20.6,35.7,21,33.26,18,44.4,9.83,21.5333333333,22.89,26.84,24.89,31.9633333333,19.29,38.29,9.45,768.55,56,7,34,0.95,21.3195088785,21.3195088785 -70,0,22.1,34.23,20.6,34.09,20.6,35.7,21,33.2,18,44.3266666667,9.9633333333,20.9266666667,23,26.6666666667,24.9633333333,31.8233333333,19.29,38.23,9.5,768.5,56,7,32,1,46.6963166255,46.6963166255 -50,0,22.2,34.09,20.6,34.09,20.6,35.7,21,33.1633333333,18,44.26,10,20.2633333333,23,26.5333333333,25.0666666667,31.6666666667,19.29,38.2,9.55,768.45,56,7,30,1.05,16.8526345165,16.8526345165 -70,0,22.2,34.09,20.6,34.09,20.6,35.6266666667,21,33.09,18,44.2,10,20.8633333333,23.1,26.4633333333,25.075,31.525,19.29,38.1266666667,9.6,768.4,56,7,28,1.1,18.8204184058,18.8204184058 -70,10,22.2,34.03,20.5333333333,34.09,20.7,35.6633333333,21,33.09,18,44.1633333333,10.1,20.99,23.1,26.39,25.1,31.5,19.39,38.09,9.6,768.3666666667,56.1666666667,6.8333333333,28,1.1333333333,38.3164172294,38.3164172294 -70,0,22.2,34,20.6,34.09,20.7,35.6633333333,21,33.09,18,44.09,10.16,21.0566666667,23.2,26.29,25.1,31.3566666667,19.365,38.0225,9.6,768.3333333333,56.3333333333,6.6666666667,28,1.1666666667,1.4235019218,1.4235019218 -70,0,22.26,34,20.6,34.09,20.7,35.6633333333,21,33.09,18.1,44.09,10.16,20.1666666667,23.2,26.23,25.1666666667,31.23,19.3566666667,38,9.6,768.3,56.5,6.5,28,1.2,40.6958185253,40.6958185253 -40,0,22.29,33.9666666667,20.5666666667,34.1266666667,20.7,35.59,21,33.09,18.1,44.09,10.1,20.6933333333,23.2,26.2,25.2,31.1666666667,19.39,37.9666666667,9.6,768.2666666667,56.6666666667,6.3333333333,28,1.2333333333,23.4946528566,23.4946528566 -40,0,22.29,33.9,20.5,34.26,20.79,35.56,20.9633333333,33.03,18.1,44,10.1,20.83,23.2,26.2,25.2,31.1,19.39,37.9,9.6,768.2333333333,56.8333333333,6.1666666667,28,1.2666666667,32.9388249433,32.9388249433 -40,0,22.29,33.8633333333,20.5,34.4,20.73,35.5,20.89,33.09,18.1,44,10.1,21.23,23.2,26.1666666667,25.2,31.0666666667,19.39,37.9,9.6,768.2,57,6,28,1.3,30.0508883665,30.0508883665 -40,0,22.29,33.79,20.5,34.4,20.7,35.5,20.89,33.09,18.1,43.9,10.1,20.89,23.2,26.1,25.1333333333,31,19.39,37.9,9.4666666667,768.2333333333,57.1666666667,6,28,1.25,40.5702164397,40.5702164397 -70,0,22.26,33.76,20.5,34.29,20.7,35.4333333333,20.89,33.03,18.1,43.9,10.0333333333,21.1566666667,23.1666666667,26.1,25.1,31,19.39,37.79,9.3333333333,768.2666666667,57.3333333333,6,28,1.2,4.5480394969,4.5480394969 -70,0,22.2,33.7,20.6933333333,34.03,20.7,35.4333333333,20.89,32.9,18.1333333333,43.76,9.945,21.445,23.1,26.0333333333,25.1,30.9266666667,19.39,37.79,9.2,768.3,57.5,6,28,1.15,40.3659670614,40.3659670614 -80,10,22.2,33.6633333333,21.495,32.7,20.7,35.5,20.8233333333,32.7666666667,18.2,43.7,9.66,22.3966666667,23.1,26,25.1,30.89,19.39,37.79,9.0666666667,768.3333333333,57.6666666667,6,28,1.1,49.4254648918,49.4254648918 -90,50,22.1333333333,33.7233333333,21.1566666667,32.9966666667,20.76,35.5,20.79,32.6266666667,18.2,43.59,9.5333333333,23.1233333333,23.0333333333,25.9266666667,25.0333333333,31.0966666667,19.39,37.79,8.9333333333,768.3666666667,57.8333333333,6,28,1.05,1.4638653374,1.4638653374 -80,50,22.2,34.3666666667,20.7633333333,34.1966666667,20.79,35.53,20.79,33.0333333333,18.32,43.9425,9.2333333333,23.9566666667,22.89,26.1666666667,24.9633333333,32.4666666667,19.39,37.7,8.8,768.4,58,6,28,1,27.8995261993,27.8995261993 -90,20,22.2,35.1666666667,20.5,35.2333333333,20.79,35.6633333333,20.8233333333,33.7566666667,18.6333333333,44,8.96,24.83,22.89,26.9,24.89,33.7266666667,19.39,37.7,8.4333333333,768.45,60,5.5,27.5,1.0833333333,42.3767606728,42.3767606728 -100,30,22.29,36.5666666667,20.4266666667,36.2333333333,20.79,35.7666666667,20.89,34.5566666667,18.6666666667,44.1566666667,8.6266666667,25.83,22.89,28,25,34.9333333333,19.4633333333,37.8633333333,8.0666666667,768.5,62,5,27,1.1666666667,16.6112116072,16.6112116072 -100,40,22.3566666667,37.16,20.3566666667,37.2933333333,20.8566666667,36.3,20.945,35.84,18.5333333333,44.49,8.3666666667,27.0233333333,22.8233333333,29.2666666667,25,35,19.4633333333,37.8633333333,7.7,768.55,64,4.5,26.5,1.25,22.5379890413,22.5379890413 -130,10,22.4266666667,37.9,20.29,38.1666666667,20.89,36.53,20.9633333333,36.3266666667,18.5,44.9633333333,7.9633333333,28.2,22.79,30.2,24.9633333333,34.8633333333,19.39,37.9,7.3333333333,768.6,66,4,26,1.3333333333,6.8958116695,6.8958116695 -140,0,22.4266666667,37.0266666667,20.26,37.8,20.89,36.59,20.89,35.1933333333,18.4266666667,45.1633333333,7.4966666667,29.7933333333,22.7225,30.2,24.89,34.53,19.39,37.9666666667,6.9666666667,768.65,68,3.5,25.5,1.4166666667,34.6806752845,34.6806752845 -140,0,22.29,36.2233333333,20.1333333333,37.4,20.89,36.56,20.79,34.6333333333,18.39,45.29,7.06,31.4966666667,22.6333333333,30.0666666667,24.79,33.8633333333,19.39,38,6.6,768.7,70,3,25,1.5,9.4080646522,9.4080646522 -130,10,22.2675,36.0975,20,37.29,20.89,36.4333333333,20.79,34.36,18.39,45.29,6.6,32.5566666667,22.5,29.8566666667,24.79,33.39,19.4633333333,38,6.4666666667,768.7166666667,70.8333333333,3.1666666667,24.5,1.5166666667,12.7277537365,12.7277537365 -120,0,22.2,35.8266666667,19.9266666667,37.3633333333,20.89,36.4,20.7,34.29,18.39,45.2,6.23,34.2,22.5,29.79,24.6666666667,33.1333333333,19.5,38.03,6.3333333333,768.7333333333,71.6666666667,3.3333333333,24,1.5333333333,40.2530715801,40.2530715801 -110,0,22.1666666667,35.6633333333,19.79,37.29,20.89,36.3266666667,20.7,34.3633333333,18.39,45.2,6.03,35.5933333333,22.39,29.7,24.525,32.925,19.5,38.0675,6.2,768.75,72.5,3.5,23.5,1.55,41.9391948381,41.9391948381 -80,0,22.1,35.53,19.73,37.29,20.8566666667,36.2233333333,20.7,34.5,18.4266666667,45.6933333333,5.73,36.3933333333,22.39,29.6333333333,24.5,32.9666666667,19.5,38.06,6.0666666667,768.7666666667,73.3333333333,3.6666666667,23,1.5666666667,17.4611937022,17.4611937022 -90,10,22.0666666667,35.3633333333,19.6666666667,37.29,20.79,36.09,20.6333333333,34.4333333333,18.9666666667,64.8333333333,5.4633333333,37.8,22.26,29.43,24.39,32.8333333333,19.5,38.03,5.9333333333,768.7833333333,74.1666666667,3.8333333333,22.5,1.5833333333,25.1866343664,25.1866343664 -100,0,22,35.29,19.6,37.29,20.79,36,20.6,34.4333333333,19.4,74.3566666667,5.2,38.9333333333,22.2,29.4966666667,24.39,32.6266666667,19.5,38.03,5.8,768.8,75,4,22,1.6,47.7251030388,47.7251030388 -120,20,22,35.3266666667,19.5,37.4333333333,20.79,36.06,20.6,34.5,19.1333333333,68.9566666667,4.8666666667,39.66,22.2,29.96,24.39,32.3633333333,19.4633333333,37.9666666667,5.6833333333,768.85,75.1666666667,4,22.1666666667,1.5333333333,20.4562504427,20.4562504427 -130,0,21.9266666667,35.4666666667,19.4266666667,37.36,20.79,36.09,20.5666666667,34.4333333333,19.1,59.26,4.69,42.94,22.2,30.5,24.3233333333,32.23,19.39,37.8266666667,5.5666666667,768.9,75.3333333333,4,22.3333333333,1.4666666667,5.1414639456,5.1414639456 -120,10,21.89,35.4666666667,19.39,37.3266666667,20.79,36.23,20.5,34.36,19.0333333333,58.0666666667,4.56,44.1633333333,22.1,30.7,24.26,32.26,19.39,37.7,5.45,768.95,75.5,4,22.5,1.4,1.7424774473,1.7424774473 -120,0,21.89,35.4,19.3233333333,37.4666666667,20.73,36.29,20.4266666667,34.09,18.9633333333,59.1,4.4333333333,45.09,22.1,30.6333333333,24.2,32.2,19.39,37.6266666667,5.3333333333,769,75.6666666667,4,22.6666666667,1.3333333333,22.0679602353,22.0679602353 -110,0,21.79,35.26,19.29,37.5,20.7,36.4,20.4266666667,33.9633333333,18.8233333333,58.7666666667,4.4333333333,46.7933333333,21.9633333333,30.5,24.2,32.06,19.4633333333,37.6333333333,5.2166666667,769.05,75.8333333333,4,22.8333333333,1.2666666667,25.7705059717,25.7705059717 -100,0,21.79,35.2,19.2,37.5,20.7,36.4,20.39,33.9,18.79,57.9966666667,4.4333333333,47.5333333333,21.9633333333,30.5,24.1333333333,32,19.39,37.5,5.1,769.1,76,4,23,1.2,2.4300996796,2.4300996796 -70,0,21.76,35.2,19.1333333333,37.5,20.6666666667,36.4666666667,20.3233333333,33.8266666667,19.02,64.745,4.19,48.3333333333,21.89,30.5,24.0666666667,32.03,19.39,37.4,5.05,769.0833333333,76.3333333333,4,22.8333333333,1.2,39.1021918273,39.1021918273 -80,0,21.7,35.2,19.0666666667,37.5,20.6,36.4666666667,20.29,33.76,20.1566666667,84.9233333333,4.19,49.3933333333,21.89,30.4266666667,24,32.4966666667,19.39,37.3266666667,5,769.0666666667,76.6666666667,4,22.6666666667,1.2,18.4519046219,18.4519046219 -90,0,21.7,35.23,19,37.56,20.6,36.5,20.29,33.7,19.6933333333,83.5933333333,4.1566666667,49.9233333333,21.79,30.29,24,33.4566666667,19.39,37.26,4.95,769.05,77,4,22.5,1.2,49.356671772,49.356671772 -80,0,21.7,35.29,19,37.59,20.6,36.56,20.29,33.7,19.2333333333,78.6666666667,4.03,50.13,21.79,30.29,23.9266666667,34.0633333333,19.39,37.2,4.9,769.0333333333,77.3333333333,4,22.3333333333,1.2,45.2717893524,45.2717893524 -70,0,21.6,35.2,18.9266666667,37.6633333333,20.6,36.59,20.2,33.56,19.2,67.59,3.9,51.2566666667,21.79,30.2,23.8566666667,34.83,19.39,37.23,4.85,769.0166666667,77.6666666667,4,22.1666666667,1.2,46.3448172086,46.3448172086 -60,10,21.6,35.2,18.8566666667,37.79,20.6,36.59,20.2,33.5,19.2,60.858,3.9666666667,52.13,21.7225,30.2225,23.79,35.4233333333,19.39,37.29,4.8,769,78,4,22,1.2,20.1082210755,20.1082210755 -50,0,21.6,35.3266666667,18.79,37.93,20.6,36.59,20.1666666667,33.5,19.1333333333,58.9666666667,3.975,52.025,21.6333333333,30.29,23.7675,35.5425,19.39,37.4,4.6833333333,769.05,78.3333333333,4,21.8333333333,1.1666666667,44.1249352531,44.1249352531 -30,0,21.55,35.4,18.76,38.03,20.5333333333,36.59,20.1666666667,33.5,19.1,57.1333333333,3.8266666667,52.1666666667,21.6,30.6633333333,23.7,35.5266666667,19.39,37.4666666667,4.5666666667,769.1,78.6666666667,4,21.6666666667,1.1333333333,40.4081471614,40.4081471614 -40,0,21.5333333333,35.3266666667,18.7,38.1633333333,20.4633333333,36.6633333333,20.1,33.4333333333,19.1,55.8,3.6633333333,52.7666666667,21.6,30.79,23.7,35.9333333333,19.39,37.6266666667,4.45,769.15,79,4,21.5,1.1,25.1739207772,25.1739207772 -70,0,21.5,35.26,18.6666666667,38.1633333333,20.39,36.59,20.1,33.4333333333,19.1,54.79,3.6633333333,54.1,21.6,30.79,23.6333333333,36,19.315,37.7,4.3333333333,769.2,79.3333333333,4,21.3333333333,1.0666666667,41.293972556,41.293972556 -50,10,21.5,35.26,18.6,38.1633333333,20.39,36.6266666667,20.1,33.4333333333,19,54.034,3.59,54.225,21.6,30.93,23.6,36.16,19.29,37.7,4.2166666667,769.25,79.6666666667,4,21.1666666667,1.0333333333,5.8686451637,5.8686451637 -50,0,21.39,35.3266666667,18.5666666667,38.29,20.39,36.7,20.0333333333,33.5,19,53.8633333333,3.59,54.9,21.6,31.3233333333,23.6,36.83,19.3566666667,37.8266666667,4.1,769.3,80,4,21,1,34.3472077162,34.3472077162 -50,0,21.39,35.3266666667,18.5,38.3633333333,20.39,36.79,20,33.6266666667,18.89,53.3333333333,3.345,55.645,21.6666666667,31.5966666667,23.6,37.2966666667,19.29,37.9666666667,3.9,769.2833333333,81,3.8333333333,28.1666666667,0.9666666667,26.2648054399,26.2648054399 -40,0,21.3566666667,35.3633333333,18.4633333333,38.3633333333,20.39,36.79,20,33.76,18.89,53.2,3.26,56.26,21.6333333333,31.8,23.5,38.03,19.29,38.09,3.7,769.2666666667,82,3.6666666667,35.3333333333,0.9333333333,17.4618457095,17.4618457095 -50,0,21.29,35.3633333333,18.39,38.29,20.39,36.79,20,33.8266666667,18.89,53.2666666667,3.1266666667,56.5333333333,21.6333333333,32.06,23.5,38.5633333333,19.29,38.1633333333,3.5,769.25,83,3.5,42.5,0.9,7.3877723771,7.3877723771 -50,0,21.29,35.29,18.3566666667,38.3266666667,20.39,36.9,19.9266666667,33.9666666667,18.8233333333,53.2666666667,3.09,58.3,21.6666666667,32.29,23.4633333333,38.79,19.29,38.23,3.3,769.2333333333,84,3.3333333333,49.6666666667,0.8666666667,32.7256338671,32.7256338671 -50,0,21.23,35.3633333333,18.29,38.4,20.3233333333,36.9,19.89,34,18.79,53.06,3.03,58.8333333333,21.6666666667,32.49,23.39,38.79,19.29,38.29,3.1,769.2166666667,85,3.1666666667,56.8333333333,0.8333333333,24.9368999735,24.9368999735 -50,0,21.23,35.5,18.245,38.7,20.29,36.9,19.89,34.06,18.79,53,2.8633333333,58.4,21.6666666667,32.7,23.39,38.6566666667,19.29,38.4,2.9,769.2,86,3,64,0.8,42.285550572,42.285550572 -50,0,21.23,35.4333333333,18.2,38.8266666667,20.29,36.9,19.89,34.09,18.79,52.9666666667,2.69,58.85,21.6,32.76,23.39,38.845,19.29,38.4666666667,2.7,769.1833333333,86.5,2.6666666667,63.8333333333,0.6666666667,32.8904991155,32.8904991155 -30,0,21.2,35.4,18.1333333333,38.9666666667,20.39,36.9,19.89,34.1633333333,18.7675,52.795,2.5425,59.595,21.6,32.9,23.315,39.07,19.29,38.53,2.5,769.1666666667,87,2.3333333333,63.6666666667,0.5333333333,19.4827605621,19.4827605621 -20,0,21.1333333333,35.4666666667,18.1,39,20.3233333333,36.9,19.89,34.2,18.7,52.6266666667,2.3633333333,60.83,21.6,32.9,23.31,39.34,19.29,38.59,2.3,769.15,87.5,2,63.5,0.4,42.7555910894,42.7555910894 -30,0,21.1,35.4,18.0333333333,39,20.29,36.9,19.865,34.2,18.7,52.3633333333,2.2255555556,61.1811111111,21.6,33.09,23.315,39.65,19.29,38.6266666667,2.1,769.1333333333,88,1.6666666667,63.3333333333,0.2666666667,29.5137321576,29.5137321576 -40,0,21.1,35.4,17.9633333333,39.03,20.29,36.8266666667,19.79,34.2,18.7,52.23,2.05,61.2288888889,21.6,33.1633333333,23.2423529412,39.7211764706,19.29,38.7,1.9,769.1166666667,88.5,1.3333333333,63.1666666667,0.1333333333,30.2995916922,30.2995916922 -50,0,21.0666666667,35.3633333333,17.89,39.09,20.29,36.9,19.79,34.2,18.7,52.0266666667,1.905,62.264375,21.6,33.3266666667,23.2,39.6764285714,19.29,38.73,1.7,769.1,89,1,63,0,2.8267640853,2.8267640853 -50,0,21,35.29,17.8566666667,39.1633333333,20.23,36.8266666667,19.79,34.2,18.7,51.8266666667,1.7244444444,62.4227777778,21.6,33.4,23.2,39.545,19.29,38.79,1.7166666667,769.05,88.8333333333,1.3333333333,63,0,36.9325508946,36.9325508946 -50,0,21,35.29,17.79,39.09,20.29,36.9,19.79,34.2,18.6,51.6633333333,1.5277777778,62.9861111111,21.55,33.5,23.1388888889,39.5811111111,19.29,38.8266666667,1.7333333333,769,88.6666666667,1.6666666667,63,0,27.4625182617,27.4625182617 -60,0,20.9266666667,35.3633333333,17.76,39.09,20.29,36.9,19.79,34.2,18.6,51.4633333333,1.3422222222,63.3961111111,21.6,33.59,23.1,39.6842857143,19.29,38.9,1.75,768.95,88.5,2,63,0,20.0088686892,20.0088686892 -40,0,20.89,35.4,17.76,39.1633333333,20.29,36.9,19.76,34.2,18.6,51.29,1.1985714286,63.8178571429,21.6,33.6633333333,23.06875,39.7475,19.29,39.03,1.7666666667,768.9,88.3333333333,2.3333333333,63,0,25.6222213968,25.6222213968 -40,0,20.8566666667,35.3633333333,17.7,39.2,20.29,36.9,19.7,34.2,18.6,51.23,1.0388888889,64,21.5666666667,33.7,23.04375,40.25125,19.29,39.09,1.7833333333,768.85,88.1666666667,2.6666666667,63,0,31.87303507,31.87303507 -50,0,20.79,35.29,17.6333333333,39.2,20.29,36.9,19.7,34.26,18.5,51,0.9,64.0645454545,21.5,33.8333333333,23.0277777778,40.6122222222,19.29,39.09,1.8,768.8,88,3,63,0,47.6570757222,47.6570757222 -50,0,20.79,35.4,17.6,39.23,20.29,36.9,19.7,34.26,18.5666666667,50.9333333333,0.7272727273,64.4390909091,21.5,34,23.0333333333,40.73,19.29,39.09,1.6666666667,768.7833333333,88.1666666667,3,63,-0.1166666667,4.868717608,4.868717608 -60,0,20.79,35.4,17.6,39.29,20.29,37,19.7,34.2,18.5,50.8633333333,0.6,65.1533333333,21.5,34,23.0055555556,40.8716666667,19.29,39.09,1.5333333333,768.7666666667,88.3333333333,3,63,-0.2333333333,23.2855130802,23.2855130802 -40,0,20.7,35.4,17.5,39.29,20.29,36.9333333333,19.7,34.2,18.5,50.73,0.4888888889,65.0466666667,21.5,34,23,40.9166666667,19.29,39.09,1.4,768.75,88.5,3,63,-0.35,2.2183517693,2.2183517693 -50,0,20.7,35.4,17.4266666667,39.29,20.29,37,19.7,34.2,18.5,50.6633333333,0.3444444444,65.3877777778,21.5,34.06,23,41.0238888889,19.29,39.09,1.2666666667,768.7333333333,88.6666666667,3,63,-0.4666666667,42.6226914395,42.6226914395 -30,0,20.7,35.4,17.39,39.4333333333,20.39,36.9666666667,19.6333333333,34.1266666667,18.5,50.53,0.3722222222,66.3227777778,21.5,34.2,22.9816666667,41.09,19.29,39.2,1.1333333333,768.7166666667,88.8333333333,3,63,-0.5833333333,2.5976371486,2.5976371486 -20,0,20.7,35.4,17.39,39.5,20.39,36.9666666667,19.6,34.09,18.5,50.4666666667,0.3,66.630625,21.5,34.2,22.9022222222,41.09,19.29,39.2,1,768.7,89,3,63,-0.7,32.5174704427,32.5174704427 -30,0,20.6666666667,35.26,17.34,39.5,20.39,36.9,19.6,34.09,18.5,50.3266666667,0.2722222222,66.965,21.39,34.2,22.89,41.09,19.29,39.29,0.8833333333,768.65,89,3,63,-0.8,14.1939948895,14.1939948895 -40,0,20.6,35.2,17.29,39.59,20.39,36.9666666667,19.6,34.09,18.4633333333,50.26,0.1777777778,66.8427777778,21.4633333333,34.2,22.89,41.3238888889,19.29,39.29,0.7666666667,768.6,89,3,63,-0.9,45.9101440152,45.9101440152 -50,0,20.6,35.2,17.29,39.6633333333,20.39,37,19.6,34.09,18.39,50.1175,-0.0166666667,66.1811111111,21.39,34.06,22.8788888889,41.3877777778,19.29,39.4,0.65,768.55,89,3,63,-1,34.922187659,34.922187659 -50,0,20.6,35.2,17.2,39.7,20.39,37,19.5333333333,34,18.4633333333,50.09,-0.1777777778,66.0672222222,21.39,34,22.7955555556,41.3022222222,19.29,39.4,0.5333333333,768.5,89,3,63,-1.1,30.6033352739,30.6033352739 -50,0,20.5,35.2,17.2,39.7,20.39,37,19.525,34,18.39,49.9666666667,-0.2611111111,66.6266666667,21.39,34.06,22.79,41.3877777778,19.29,39.5,0.4166666667,768.45,89,3,63,-1.2,40.5424375087,40.5424375087 -60,0,20.5,35.2,17.1333333333,39.73,20.39,37,19.5,34,18.39,49.9,-0.2555555556,66.9338888889,21.3233333333,34.06,22.79,41.4,19.29,39.5,0.3,768.4,89,3,63,-1.3,9.0445174137,9.0445174137 -50,0,20.5,35.2,17.1333333333,39.79,20.39,37,19.5,34,18.39,49.8633333333,-0.2111111111,67.1822222222,21.3233333333,34.06,22.79,41.4,19.29,39.59,0.2333333333,768.4,89.3333333333,3,62.8333333333,-1.3166666667,43.3984575211,43.3984575211 -50,0,20.5,35.2,17.0666666667,39.76,20.39,37,19.5,34,18.3233333333,49.79,-0.3222222222,66.805,21.3233333333,34.06,22.79,41.4555555556,19.29,39.59,0.1666666667,768.4,89.6666666667,3,62.6666666667,-1.3333333333,15.0555013097,15.0555013097 -50,0,20.4633333333,35.1633333333,17,39.76,20.39,37,19.5,33.9,18.39,49.7,-0.3388888889,67.1277777778,21.29,34.09,22.725,41.4333333333,19.29,39.7,0.1,768.4,90,3,62.5,-1.35,38.7507314561,38.7507314561 -40,0,20.39,35.09,17,39.8266666667,20.39,37,19.4266666667,33.8266666667,18.39,49.6266666667,-0.3055555556,67.29,21.29,34.23,22.7,41.3144444444,19.29,39.7,0.0333333333,768.4,90.3333333333,3,62.3333333333,-1.3666666667,13.500470866,13.500470866 -50,0,20.39,35.09,17,39.8266666667,20.4633333333,37.09,19.5,33.9,18.29,49.59,-0.4166666667,66.9611111111,21.29,34.29,22.7,41.4155555556,19.29,39.73,-0.0333333333,768.4,90.6666666667,3,62.1666666667,-1.3833333333,20.0006392319,20.0006392319 -50,0,20.39,35.09,16.89,39.9,20.39,37.09,19.5,33.9,18.29,49.59,-0.4833333333,67.1111111111,21.29,34.23,22.7,41.4388888889,19.29,39.79,-0.1,768.4,91,3,62,-1.4,47.0188942156,47.0188942156 -40,0,20.3233333333,35.09,16.89,39.9,20.39,37.09,19.39,33.76,18.29,49.5,-0.4111111111,67.5661111111,21.29,34.29,22.7,41.4,19.29,39.79,-0.0833333333,768.4,90.8333333333,3.1666666667,61.8333333333,-1.4,49.8382784543,49.8382784543 -30,0,20.29,35.09,16.89,39.9,20.39,37.09,19.39,33.7,18.29,49.5,-0.4666666667,67.5561111111,21.26,34.26,22.6166666667,41.2933333333,19.29,39.8266666667,-0.0666666667,768.4,90.6666666667,3.3333333333,61.6666666667,-1.4,11.6455002688,11.6455002688 -30,0,20.29,35.03,16.8233333333,39.8266666667,20.39,37.09,19.39,33.7,18.29,49.4,-0.4611111111,67.8188888889,21.2,34.26,22.6,41.1694444444,19.29,39.9,-0.05,768.4,90.5,3.5,61.5,-1.4,7.0950589143,7.0950589143 -20,0,20.29,35.03,16.79,39.9,20.39,37.09,19.39,33.7,18.29,49.4,-0.4166666667,68.125,21.26,34.26,22.6,41.09,19.29,39.9,-0.0333333333,768.4,90.3333333333,3.6666666667,61.3333333333,-1.4,3.3148504561,3.3148504561 -50,0,20.23,35.03,16.79,39.9,20.39,37.09,19.29,33.7,18.29,49.29,-0.419047619,68.0195238095,21.2,34.1266666667,22.55,41.145,19.29,39.9666666667,-0.0166666667,768.4,90.1666666667,3.8333333333,61.1666666667,-1.4,36.6422264371,36.6422264371 -50,0,20.2,35,16.73,39.9,20.39,37.09,19.29,33.7,18.29,49.23,-0.4888888889,67.8311111111,21.2,34.06,22.5222222222,41.29,19.29,40,0,768.4,90,4,61,-1.4,14.2714725574,14.2714725574 -40,0,20.2,35,16.7225,39.925,20.39,37.1633333333,19.29,33.7,18.29,49.1633333333,-0.6142857143,67.8319047619,21.2,34,22.5,41.5755555556,19.29,40,-0.0333333333,768.4333333333,90.1666666667,4.1666666667,60.8333333333,-1.4166666667,35.9744248213,35.9744248213 -50,0,20.2,35,16.7,40,20.39,37.2,19.29,33.7,18.23,49.09,-0.7277777778,67.7733333333,21.2,34.03,22.5,41.775,19.29,40.09,-0.0666666667,768.4666666667,90.3333333333,4.3333333333,60.6666666667,-1.4333333333,0.8834725362,0.8834725362 -50,0,20.2,35,16.7,40.06,20.39,37.2,19.29,33.7,18.26,49.06,-0.8277777778,67.8188888889,21.2,34.1633333333,22.5,41.8205555556,19.29,40.09,-0.1,768.5,90.5,4.5,60.5,-1.45,8.6602944764,8.6602944764 -50,0,20.1666666667,35,16.6333333333,40,20.39,37.2,19.29,33.7,18.2,48.925,-0.9,67.7561111111,21.1,34.23,22.4938888889,41.8155555556,19.23,40.0666666667,-0.1333333333,768.5333333333,90.6666666667,4.6666666667,60.3333333333,-1.4666666667,35.1098860265,35.1098860265 -60,0,20.1,35,16.6,40.03,20.39,37.2,19.245,33.645,18.2,48.9,-0.9333333333,68.1288888889,21.1,34.29,22.479375,41.8075,19.29,40.2,-0.1666666667,768.5666666667,90.8333333333,4.8333333333,60.1666666667,-1.4833333333,37.0143579319,37.0143579319 -40,0,20.1,35,16.6,40.03,20.39,37.2,19.2,33.59,18.2,48.9,-0.95,68.35,21.1,34.4333333333,22.4725,41.9,19.29,40.29,-0.2,768.6,91,5,60,-1.5,47.3567327368,47.3567327368 -90,0,20.1,35.1333333333,16.5666666667,40.09,20.39,37.2,19.26,33.6633333333,18.218,48.8,-0.9375,68.5325,21.1,34.6333333333,22.445,42.095,19.29,40.29,-0.1666666667,768.6666666667,90.8333333333,4.8333333333,60.1666666667,-1.5,36.1021876335,36.1021876335 -40,10,20.1,35.6566666667,16.5,40.1633333333,20.39,37.2,19.26,33.5266666667,18.3566666667,47.8466666667,-0.95,68.75,21.0666666667,33.9666666667,22.4266666667,41.5611111111,19.29,40.26,-0.1333333333,768.7333333333,90.6666666667,4.6666666667,60.3333333333,-1.5,44.0949352807,44.0949352807 -40,0,20.1,35.93,16.5,40.36,20.3233333333,37.1266666667,19.2,33.4,18.39,47.132,-0.8357142857,69.0578571429,20.9266666667,33.2266666667,22.3344444444,40.7311111111,19.29,40.2,-0.1,768.8,90.5,4.5,60.5,-1.5,14.5515957964,14.5515957964 -30,0,20.1,35.66,16.5,40.1666666667,20.3566666667,37,19.2,33.06,18.4633333333,46.6333333333,-0.78,69.152,20.89,32.46,22.275,39.8816666667,19.29,40.2,-0.0666666667,768.8666666667,90.3333333333,4.3333333333,60.6666666667,-1.5,48.4847620828,48.4847620828 -30,0,20.0333333333,35.1933333333,16.5,39.5266666667,20.29,36.9333333333,19.2,32.9333333333,18.5,46.09,-0.6818181818,69.3718181818,20.865,31.87,22.215,39.2925,19.29,40.1266666667,-0.0333333333,768.9333333333,90.1666666667,4.1666666667,60.8333333333,-1.5,4.9130777945,4.9130777945 -30,0,20,34.95,16.5,39.3266666667,20.29,36.8633333333,19.1666666667,32.8633333333,18.5,45.53,-0.5714285714,69.4,20.79,31.3,22.2,38.634,19.29,40.09,0,769,90,4,61,-1.5,16.2137788488,16.2137788488 -80,0,20,34.76,16.5,39.06,20.29,36.79,19.1666666667,32.79,18.4725,45.3,-0.475,69.425,20.7,30.93,22.18,38.436,19.29,39.865,0.2,769,89.1666666667,4.3333333333,61.3333333333,-1.4166666667,6.9780574297,6.9780574297 -380,0,20,34.6266666667,16.5,38.9333333333,20.29,36.56,19.1,32.73,18.38125,45.945,-0.2375,69.2125,20.7,30.6633333333,22.1533333333,38.0815,19.29,39.79,0.4,769,88.3333333333,4.6666666667,61.6666666667,-1.3333333333,37.416323286,37.416323286 -310,0,20,34.86,16.5333333333,38.8266666667,20.23,36.36,19.1,32.59,18.29,46.59,0,69,20.6,30.2933333333,22.1266666667,37.727,19.39,39.6933333333,0.6,769,87.5,5,62,-1.25,23.4272032976,23.4272032976 -410,0,20,35,16.6,38.9,20.2,36.1633333333,19.1,32.6633333333,18.29,46.6633333333,0.05,69,20.6,30.1,22.1,37.3725,19.39,39.2266666667,0.8,769,86.6666666667,5.3333333333,62.3333333333,-1.1666666667,4.9872367294,4.9872367294 -190,0,20,34.79,16.73,38.7233333333,20.2,36.09,19.2,33.03,18.29,46.9333333333,0.3333333333,68.29,20.5666666667,29.8566666667,22.0333333333,37.1566666667,19.39,39.0266666667,1,769,85.8333333333,5.6666666667,62.6666666667,-1.0833333333,41.933681746,41.933681746 -130,0,20,34.73,16.8566666667,38.59,20.2,36.09,19.26,33.1633333333,18.29,47.06,0.5333333333,67.4966666667,20.5,29.6633333333,22,36.8633333333,19.39,38.7666666667,1.2,769,85,6,63,-1,17.2897159588,17.2897159588 -290,0,20,34.4666666667,17.0966666667,38.1333333333,20.2,36.0266666667,19.39,33.09,18.26,47.0266666667,0.8333333333,66.3233333333,20.5,29.4633333333,22,36.8633333333,19.4266666667,38.6,1.3666666667,768.9666666667,84.3333333333,6.1666666667,63.3333333333,-0.9666666667,8.8999384316,8.8999384316 -80,0,20,34.4,17.6225,37.545,20.2,35.9,19.4633333333,33.09,18.2,46.9,1.0333333333,64.7966666667,20.5,29.3233333333,22,37,19.5666666667,38.0666666667,1.5333333333,768.9333333333,83.6666666667,6.3333333333,63.6666666667,-0.9333333333,22.6407364709,22.6407364709 -100,0,20,34.29,18.1933333333,36.7266666667,20.2,35.76,19.6333333333,33,18.2,46.8633333333,1.3233333333,62.9266666667,20.5,29.2,21.89,37.03,19.5,37.4666666667,1.7,768.9,83,6.5,64,-0.9,21.9600258046,21.9600258046 -60,0,20,34.23,18.6966666667,36.1,20.2,35.7,19.76,32.9333333333,18.2,46.73,1.53,62.2,20.4266666667,29.0666666667,21.89,37.09,19.5,37.2666666667,1.8666666667,768.8666666667,82.3333333333,6.6666666667,64.3333333333,-0.8666666667,8.4614673397,8.4614673397 -280,0,20,34.2666666667,19.0966666667,35.6333333333,20.2,35.3,19.8233333333,32.9,18.2,46.6633333333,1.9633333333,60.2666666667,20.39,28.8566666667,21.89,36.99,19.5,37.23,2.0333333333,768.8333333333,81.6666666667,6.8333333333,64.6666666667,-0.8333333333,39.276437962,39.276437962 -740,0,20,33.6,19.0666666667,33.4666666667,19.9933333333,34.2266666667,19.9633333333,32.7666666667,18.2,46.53,2.2925,58.395,20.39,28.73,21.8233333333,36.53,19.5,37.3633333333,2.2,768.8,81,7,65,-0.8,33.1129770959,33.1129770959 -860,0,20,32.73,19.3266666667,33.2666666667,20.0333333333,34.6966666667,20,32.1,18.1666666667,46.4666666667,2.6333333333,56.2666666667,20.39,28.6666666667,21.79,35.8633333333,19.39,37.6566666667,2.4,768.7833333333,80,6.6666666667,65,-0.7666666667,40.2547732228,40.2547732228 -490,0,20,33.0633333333,19.6966666667,33.09,20.2266666667,35.4966666667,20.0333333333,31.89,18.1,46.2666666667,2.9633333333,53.8,20.39,28.5333333333,21.73,35.39,19.39,37.8633333333,2.6,768.7666666667,79,6.3333333333,65,-0.7333333333,22.8661610512,22.8661610512 -280,0,20.1,33.5966666667,20.03,33.2233333333,20.6333333333,36.1933333333,20.1,31.9633333333,18.1,46.045,3.2966666667,53.3266666667,20.39,28.5,21.7,34.99,19.39,38.0966666667,2.8,768.75,78,6,65,-0.7,31.0310083674,31.0310083674 -280,10,20.1,33.8633333333,20.2633333333,33.2,20.8266666667,36.5266666667,20.1333333333,32.09,18.1,45.6633333333,3.53,51,20.39,28.4266666667,21.7,34.73,19.39,38.3633333333,3,768.7333333333,77,5.6666666667,65,-0.6666666667,19.1250545671,19.1250545671 -260,0,20.2,34.1333333333,20.4633333333,33.1266666667,21.1633333333,36.6266666667,20.2,32.09,18.1,45.4633333333,3.59,49.6666666667,20.4266666667,28.4266666667,21.7,34.5266666667,19.39,38.53,3.2,768.7166666667,76,5.3333333333,65,-0.6333333333,44.3197663059,44.3197663059 -250,0,20.26,34.4666666667,20.73,33.09,21.4966666667,36.8333333333,20.2,32.3266666667,18.1,45.26,3.8266666667,49.5333333333,20.5,28.3925,21.6333333333,34.2666666667,19.39,38.6633333333,3.4,768.7,75,5,65,-0.6,31.0816136072,31.0816136072 -220,0,20.29,34.645,20.79,33.1633333333,21.79,36.8333333333,20.2,32.4666666667,18.1,45.0666666667,3.9666666667,48.5333333333,20.5,28.23,21.6,33.9666666667,19.39,38.7,3.4,768.6833333333,75.5,5.1666666667,57.5,-0.5333333333,47.7930260589,47.7930260589 -110,0,20.39,34.7,20.89,33.2,21.93,36.7,20.23,32.7666666667,18.1,44.93,4.1933333333,47.9,20.6,28.1666666667,21.6,33.8266666667,19.39,38.7675,3.4,768.6666666667,76,5.3333333333,50,-0.4666666667,30.0257708295,30.0257708295 -310,0,20.4633333333,35.76,20.9633333333,33.2,22,36.6266666667,20.29,32.9666666667,18.1,44.79,4.5266666667,45.6266666667,20.6666666667,28.1,21.6,33.9,19.39,38.79,3.4,768.65,76.5,5.5,42.5,-0.4,26.8937523942,26.8937523942 -270,0,20.6,35.9566666667,21.0333333333,33.3,21.9266666667,36.5666666667,20.4266666667,33.39,18.1,44.79,4.7266666667,43.8333333333,20.73,28.1,21.5333333333,33.8266666667,19.39,38.76,3.4,768.6333333333,77,5.6666666667,35,-0.3333333333,28.5018503433,28.5018503433 -100,0,20.6,36.7633333333,21.0333333333,33.56,21.79,36.29,20.5666666667,33.7966666667,18.1,44.8633333333,4.8,42.8933333333,20.8566666667,28.1,21.5333333333,33.76,19.39,38.6266666667,3.4,768.6166666667,77.5,5.8333333333,27.5,-0.2666666667,46.5303602745,46.5303602745 -70,0,20.6333333333,37.56,21,33.9633333333,21.79,36.29,20.6333333333,34.1933333333,18.0666666667,45.03,4.93,43.1333333333,20.9266666667,27.9633333333,21.6,33.7,19.39,38.7,3.4,768.6,78,6,20,-0.2,7.0629259804,7.0629259804 -60,0,20.7,37.8933333333,21,34.3633333333,21.7,36.29,20.7,34.4666666667,18.0666666667,45.2233333333,5.33,41.1933333333,21,27.8233333333,21.6,33.29,19.39,38.7,3.65,768.5666666667,76.5,6,20.6666666667,-0.2166666667,21.9465464237,21.9465464237 -60,0,20.79,38.4,21.0333333333,34.89,21.7,36.29,20.8233333333,34.6266666667,18.1,45.6266666667,5.4,38.9,21.1,27.6666666667,21.6,32.9566666667,19.4633333333,38.8633333333,3.9,768.5333333333,75,6,21.3333333333,-0.2333333333,27.0777980448,27.0777980448 -50,0,20.8566666667,38.4,21.05,35.2225,21.6333333333,36.29,20.89,34.7,18.1,45.8333333333,5.4666666667,39.1,21.1666666667,27.5333333333,21.6333333333,32.59,19.39,38.79,4.15,768.5,73.5,6,22,-0.25,26.9005468464,26.9005468464 -80,0,20.9266666667,38.79,21.1,35.5266666667,21.6,36.29,21,34.8266666667,18.1,46.1266666667,6.0333333333,37.3,21.29,27.5666666667,21.7,32.4475,19.39,38.76,4.4,768.4666666667,72,6,22.6666666667,-0.2666666667,5.6358978152,5.6358978152 -230,0,21.0666666667,38.79,21,35.86,21.5333333333,36.3633333333,21,34.7666666667,18.1,46.3333333333,6.275,34.6475,21.3566666667,27.4266666667,21.7,32.1266666667,19.39,38.7,4.65,768.4333333333,70.5,6,23.3333333333,-0.2833333333,25.0142759061,25.0142759061 -710,0,21.1333333333,38.4666666667,20.9266666667,36.06,21.5,36.4633333333,21,34.56,18.1,46.53,5.8666666667,33.83,21.5333333333,27.3266666667,21.79,31.99,19.39,38.59,4.9,768.4,69,6,24,-0.3,33.3471723017,33.3471723017 -570,0,21.26,38.5266666667,20.89,36.2666666667,21.5666666667,37.13,21,34.375,18.1,46.59,5.7266666667,33.6233333333,21.6,27.2,21.79,31.79,19.4633333333,38.59,5,768.3,67.8333333333,6.1666666667,24.5,-0.4666666667,21.4439607458,21.4439607458 -300,0,21.4266666667,38.4666666667,20.89,36.4,21.86,38.39,21,34.1266666667,18.1,46.73,5.8,33.29,21.73,27.1,21.8233333333,31.6666666667,19.5,38.4666666667,5.1,768.2,66.6666666667,6.3333333333,25,-0.6333333333,0.6723224651,0.6723224651 -230,0,21.5666666667,38.1333333333,20.79,36.2233333333,22.1333333333,38.8633333333,21,34.0266666667,18.1,46.79,5.7633333333,32.8333333333,21.8566666667,27.0333333333,21.89,31.7266666667,19.5,38.3266666667,5.2,768.1,65.5,6.5,25.5,-0.8,27.5191842811,27.5191842811 -240,0,21.5333333333,37.0566666667,20.79,35.6966666667,22.46,39.4333333333,21,33.7666666667,18.1,46.79,5.69,32.2333333333,21.9266666667,26.8266666667,22,32.2233333333,19.5333333333,38.26,5.3,768,64.3333333333,6.6666666667,26,-0.9666666667,49.8449805658,49.8449805658 -220,0,21.6,36.39,20.7,35.26,22.6666666667,39.6933333333,21,33.56,18.1,46.6633333333,5.8333333333,31.56,22,26.6333333333,22,31.9566666667,19.5333333333,38.2,5.4,767.9,63.1666666667,6.8333333333,26.5,-1.1333333333,1.3748123194,1.3748123194 -180,0,21.7,36.1333333333,20.7,35.1266666667,22.9266666667,39.8633333333,21,33.36,18.1,46.53,5.9,31.2266666667,22.1333333333,26.53,22.0333333333,31.53,19.6,38.1633333333,5.5,767.8,62,7,27,-1.3,30.2230215981,30.2230215981 -100,0,21.76,35.86,20.6666666667,35.06,23.0666666667,39.6566666667,20.9266666667,33.26,18.1,46.3633333333,6.0633333333,31.53,22.2675,26.365,22.1,31.39,19.6,38.09,5.7166666667,767.7333333333,61.1666666667,6.6666666667,27.3333333333,-1.2666666667,8.2676102407,8.2676102407 -240,10,21.9266666667,35.6333333333,20.6,34.9333333333,23.1666666667,39.1933333333,21,33.1266666667,18.1,46.23,6.2633333333,30.7233333333,22.3566666667,26.23,22.1333333333,31.1333333333,19.6,38,5.9333333333,767.6666666667,60.3333333333,6.3333333333,27.6666666667,-1.2333333333,3.2188018668,3.2188018668 -690,0,21.9475,34.77,20.4666666667,33.4233333333,22.8333333333,37.2666666667,21,32.9666666667,18.1,45.9666666667,6.4333333333,30.16,22.5,26.0666666667,22.26,31.1333333333,19.6,37.975,6.15,767.6,59.5,6,28,-1.2,18.4026074247,18.4026074247 -490,0,21.73,32.5266666667,19.9266666667,31.43,22.0333333333,35.9566666667,21,32.4933333333,18.1,45.7666666667,6.5,30.0933333333,22.5666666667,25.9266666667,22.29,31.6333333333,19.6,37.9,6.3666666667,767.5333333333,58.6666666667,5.6666666667,28.3333333333,-1.1666666667,24.8994290945,24.8994290945 -320,0,21.73,32.4933333333,19.73,31.2333333333,22.2933333333,36.29,20.9633333333,31.8566666667,18.1,45.2966666667,6.7266666667,30.36,22.7,25.9633333333,22.3566666667,31.6333333333,19.6,37.8633333333,6.5833333333,767.4666666667,57.8333333333,5.3333333333,28.6666666667,-1.1333333333,0.3449253156,0.3449253156 -240,0,21.79,32.7666666667,19.8566666667,31.76,22.7633333333,36.5,20.89,31.79,18.1,44.83,6.8666666667,28.9666666667,22.76,25.8233333333,22.4266666667,31.4633333333,19.6,37.79,6.8,767.4,57,5,29,-1.1,0.3658629954,0.3658629954 -270,0,21.8233333333,33.33,20,32.23,23.03,36.9,20.89,31.79,18.1,44.43,6.9633333333,28,22.89,25.76,22.5,31.2633333333,19.6666666667,37.8633333333,6.9333333333,767.3333333333,57,5.1666666667,28.5,-1,22.2582364804,22.2582364804 -230,0,21.89,33.7233333333,20.0666666667,32.43,23.34,36.995,20.89,31.79,18.1,44.23,7.23,28.1933333333,22.89,25.6333333333,22.5,31.0666666667,19.6,37.73,7.0666666667,767.2666666667,57,5.3333333333,28,-0.9,30.8742268593,30.8742268593 -220,0,21.9266666667,34.03,20.0333333333,32.4633333333,23.5333333333,36.6633333333,20.9266666667,31.8233333333,18.1,44.06,7.3333333333,27.4966666667,23.0333333333,25.5,22.5,30.86,19.7,37.79,7.2,767.2,57,5.5,27.5,-0.8,48.6067246879,48.6067246879 -190,0,22,34.2233333333,20.0333333333,32.7233333333,23.6,36.4633333333,21,31.9633333333,18.1,44,7.325,26.7425,23.1,25.4266666667,22.5333333333,30.5666666667,19.7,37.79,7.3333333333,767.1333333333,57,5.6666666667,27,-0.7,0.5871433765,0.5871433765 -80,0,22.0333333333,34.23,20.1,33.1,23.7,36.2233333333,20.89,32.1266666667,18.1,43.9666666667,7.3,26.5,23.1,25.3566666667,22.5333333333,30.5,19.6333333333,37.7,7.4666666667,767.0666666667,57,5.8333333333,26.5,-0.6,32.4541130569,32.4541130569 -240,10,22.1,34.43,20.1,33.36,23.6333333333,35.89,20.9633333333,32.26,18.1,43.9,7.3666666667,25.8666666667,23.1,25.29,22.5,30.34,19.7,37.7,7.6,767,57,6,26,-0.5,16.8497916195,16.8497916195 -460,0,22.1,34.6666666667,20.1,33.56,23.4633333333,35.36,20.89,32.4333333333,18.1,43.9,7.56,25.4666666667,23.2,25.1666666667,22.5,30.1,19.7,37.59,7.65,766.95,56.6666666667,6,25.8333333333,-0.5166666667,20.343462727,20.343462727 -590,0,22.1,34.86,20.1,33.9633333333,23.4633333333,35.8333333333,20.89,32.595,18.1,43.9,7.8333333333,25.2666666667,23.2,25.1,22.5,30.1,19.7,37.6633333333,7.7,766.9,56.3333333333,6,25.6666666667,-0.5333333333,22.5719647598,22.5719647598 -550,0,22.1,34.76,20.1,34.09,23.6,35.99,20.89,32.8333333333,18.1,43.9333333333,7.9,24,23.2,25,22.5,30.1,19.7,37.7,7.75,766.85,56,6,25.5,-0.55,40.4484795639,40.4484795639 -560,10,22.1666666667,34.7,20,34.23,23.7266666667,35.73,20.89,33,18.1666666667,44,8,23.6,23.2,24.9266666667,22.5,30.0333333333,19.76,37.7,7.8,766.8,55.6666666667,6,25.3333333333,-0.5666666667,17.6134061418,17.6134061418 -350,0,22.2,34.6633333333,20,34.29,23.8233333333,35.5,20.89,33.06,18.1,44.09,8,22.2,23.29,24.9633333333,22.5666666667,30,19.7,37.7,7.85,766.75,55.3333333333,6,25.1666666667,-0.5833333333,42.6066793734,42.6066793734 -250,0,22.2,34.53,20,34.29,23.9633333333,35.56,21,33.23,18.2,44.2,8,21.7333333333,23.29,24.8233333333,22.5,30,19.7,37.7,7.9,766.7,55,6,25,-0.6,10.0299319951,10.0299319951 -210,10,22.2,34.2233333333,20,34.29,24.1333333333,35.5266666667,21,33.3633333333,18.2,44.2,7.9333333333,21.26,23.26,24.7266666667,22.5,29.9633333333,19.7,37.7,7.7666666667,766.6833333333,55.8333333333,5.6666666667,25,-0.5333333333,38.909017446,38.909017446 -150,0,22.2,34.03,19.9633333333,34.4333333333,24.26,35.2666666667,21,33.5,18.2,44.2,8,21.3966666667,23.2,24.6,22.5,29.89,19.7,37.7,7.6333333333,766.6666666667,56.6666666667,5.3333333333,25,-0.4666666667,37.6175281825,37.6175281825 -80,0,22.2,33.9333333333,20.1566666667,34.3,24.29,34.93,21,33.5,18.2,44.2,7.9333333333,21.6633333333,23.2,24.5,22.5,29.89,19.7,37.76,7.5,766.65,57.5,5,25,-0.4,1.5985539882,1.5985539882 -210,0,22.2,34.0475,20.8233333333,33.0266666667,24.23,34.5966666667,21,33.5,18.2,44.2,7.7633333333,21.6,23.1,24.39,22.5,29.8233333333,19.7,37.7,7.3666666667,766.6333333333,58.3333333333,4.6666666667,25,-0.3333333333,39.7145096445,39.7145096445 -580,10,22.2,33.99,20.5566666667,33.3,24.03,34.2233333333,21,33.5,18.26,44.2,7.69,21.9333333333,23.1,24.39,22.4633333333,29.8566666667,19.7,37.7,7.2333333333,766.6166666667,59.1666666667,4.3333333333,25,-0.2666666667,6.1556205968,6.1556205968 -310,0,22.2,34.8266666667,20.0666666667,34.1966666667,23.7633333333,33.9633333333,21,33.5,18.29,44.09,7.4333333333,22.5333333333,22.9633333333,24.26,22.4633333333,29.79,19.7,37.79,7.1,766.6,60,4,25,-0.2,2.6288511581,2.6288511581 -270,0,22.2,35.1,19.86,35.13,23.5666666667,33.9333333333,21,33.5,18.29,44.1633333333,7.2266666667,22.8666666667,22.8233333333,24.1333333333,22.5,29.89,19.7,37.79,6.7,766.6333333333,61.6666666667,3.8333333333,24.5,-0.2333333333,25.0132705085,25.0132705085 -250,0,22.2,35.89,19.76,36.5666666667,23.4266666667,33.9333333333,21,33.4,18.29,44.2666666667,6.9333333333,23.4266666667,22.79,24.1,22.5,29.9633333333,19.7,37.56,6.3,766.6666666667,63.3333333333,3.6666666667,24,-0.2666666667,23.1914235628,23.1914235628 -380,0,22.2,36.3633333333,19.6333333333,37.3,23.26,34.09,21,33.0666666667,18.29,44.4666666667,6.57,24.175,22.73,24.1666666667,22.5,30,19.7,37.56,5.9,766.7,65,3.5,23.5,-0.3,33.0760941608,33.0760941608 -470,10,22.2,37.03,19.6,38.2933333333,23.2,34.195,20.89,32.6333333333,18.29,44.6266666667,6.16,25.86,22.6,24.1,22.5,30,19.7,37.59,5.5,766.7333333333,66.6666666667,3.3333333333,23,-0.3333333333,6.2084100093,6.2084100093 -290,0,22.2,37.6233333333,19.5333333333,39.0333333333,23.1333333333,34.29,20.8233333333,32.36,18.29,44.8333333333,5.7,27.19,22.5333333333,24.1666666667,22.5,30,19.7,37.59,5.1,766.7666666667,68.3333333333,3.1666666667,22.5,-0.3666666667,7.9339089571,7.9339089571 -80,10,22.36,39.6333333333,19.5,40.54,23,34.3666666667,20.79,32.06,18.29,45.1566666667,5.3666666667,28.5966666667,22.39,24.23,22.5,30.1333333333,19.7,37.59,4.7,766.8,70,3,22,-0.4,11.5856586257,11.5856586257 -90,10,22.5666666667,40.4933333333,19.5,42.5666666667,23.0666666667,34.76,20.79,32,18.29,45.5633333333,5.06,29.96,22.39,24.3566666667,22.4633333333,30.1333333333,19.7,37.59,4.7,766.7833333333,69.1666666667,3,22.1666666667,-0.55,45.3343072557,45.3343072557 -100,10,22.7,40.09,19.5,42.5666666667,22.9633333333,34.86,20.7,32.06,18.29,46.1933333333,4.8666666667,30.2933333333,22.29,24.5333333333,22.39,30,19.6666666667,37.56,4.7,766.7666666667,68.3333333333,3,22.3333333333,-0.7,40.3410197352,40.3410197352 -100,0,22.7,39.83,19.5333333333,42.2,22.89,35.06,20.7,32.725,18.29,46.6,4.7633333333,31.0666666667,22.29,24.5333333333,22.29,30,19.6,37.5,4.7,766.75,67.5,3,22.5,-0.85,24.3648405652,24.3648405652 -110,10,22.6,39.16,19.6,42.0666666667,22.8566666667,35.2,20.7,33.7666666667,18.29,46.9333333333,4.69,30.86,22.1666666667,24.39,22.26,30.0666666667,19.6333333333,37.53,4.7,766.7333333333,66.6666666667,3,22.6666666667,-1,2.5488862651,2.5488862651 -110,10,22.6,38.6933333333,19.7,41.7233333333,22.79,35.26,20.7,34.1266666667,18.29,47.06,4.4333333333,31.0333333333,22.1,24.39,22.2,30,19.6333333333,37.53,4.7,766.7166666667,65.8333333333,3,22.8333333333,-1.15,23.1379181962,23.1379181962 -140,20,22.6,38.2966666667,19.76,41.33,22.76,35.4333333333,20.7,34.26,18.795,63.55,4.16,31.4333333333,22,24.3233333333,22.23,30.36,19.6,37.23,4.7,766.7,65,3,23,-1.3,36.7428311845,36.7428311845 -110,40,22.6666666667,38.03,19.79,41.06,22.7,35.56,20.6333333333,34.4266666667,19.29,70.73,4.0266666667,32.1333333333,21.9266666667,24.39,22.29,30.6933333333,19.6666666667,37.3633333333,4.45,766.7,65.8333333333,2.8333333333,22.8333333333,-1.3833333333,38.6229093885,38.6229093885 -110,20,22.7,37.76,19.8566666667,40.86,22.79,35.6266666667,20.7,34.96,19.29,67.59,3.7666666667,32.2666666667,21.8566666667,24.39,22.3566666667,31,19.6,37.4,4.2,766.7,66.6666666667,2.6666666667,22.6666666667,-1.4666666667,13.1335355458,13.1335355458 -90,30,22.7,37.5666666667,19.89,40.43,22.73,35.6266666667,20.7,35.4666666667,19.5,64.7966666667,3.6266666667,32.79,21.79,24.39,22.3566666667,31,19.6,37.4,3.95,766.7,67.5,2.5,22.5,-1.55,38.8278116705,38.8278116705 -110,20,22.73,37.2233333333,19.9633333333,40.0966666667,22.5,35.3266666667,20.7,35.4,19.5,62.53,3.6266666667,32.6566666667,21.76,24.4266666667,22.29,30.8566666667,19.6,37.5,3.7,766.7,68.3333333333,2.3333333333,22.3333333333,-1.6333333333,26.6280688928,26.6280688928 -90,10,22.79,37.03,20,39.7966666667,22.5,35.4666666667,20.7,35.26,19.3566666667,60.6666666667,3.5266666667,32.6566666667,21.675,24.4725,22.29,30.79,19.6,37.5,3.45,766.7,69.1666666667,2.1666666667,22.1666666667,-1.7166666667,40.5459914356,40.5459914356 -100,0,22.79,36.8,20,39.53,22.5,35.5,20.6333333333,35.0666666667,19.69,75.5266666667,3.4666666667,33.1233333333,21.6,24.4633333333,22.29,30.79,19.6,37.5,3.2,766.7,70,2,22,-1.8,45.8702003467,45.8702003467 -120,10,22.79,36.5266666667,20,39.3333333333,22.5,35.4333333333,20.6,34.8633333333,21.1566666667,86.0233333333,3.4,33.2666666667,21.6,24.5,22.29,30.9966666667,19.6,37.5,3.1666666667,766.7,70.1666666667,2.1666666667,22,-1.8166666667,4.7126889694,4.7126889694 -110,30,22.79,36.2666666667,20,39.1266666667,22.5,35.4,20.6,34.79,20.63,87.7633333333,3.25,33.2925,21.5333333333,24.5,22.29,32.06,19.5333333333,37.5,3.1333333333,766.7,70.3333333333,2.3333333333,22,-1.8333333333,27.5240763905,27.5240763905 -100,20,22.79,36.06,19.9633333333,38.9333333333,22.5,35.3266666667,20.6,34.3333333333,19.8266666667,81.6566666667,2.9266666667,33.59,21.4633333333,24.5666666667,22.3566666667,32.7333333333,19.5666666667,37.5,3.1,766.7,70.5,2.5,22,-1.85,1.4562336262,1.4562336262 -100,20,22.79,36,19.89,39,22.4633333333,35.26,20.6,34.0666666667,19.8266666667,69.59,2.6633333333,34.6966666667,21.39,24.5,22.4266666667,33.2266666667,19.5666666667,37.5,3.0666666667,766.7,70.6666666667,2.6666666667,22,-1.8666666667,10.891577811,10.891577811 -120,20,22.7,36,19.8566666667,39.09,22.39,35.2,20.7,33.9333333333,20,59.3633333333,2.53,35.0966666667,21.3566666667,24.5333333333,22.5,33.56,19.5333333333,37.5,3.0333333333,766.7,70.8333333333,2.8333333333,22,-1.8833333333,18.4407116496,18.4407116496 -110,20,22.7,36,19.79,39.09,22.3233333333,35.2,20.7,33.86,20,54.8233333333,2.1333333333,35.5966666667,21.29,24.6,22.5,33.9333333333,19.5333333333,37.5,3,766.7,71,3,22,-1.9,40.857006656,40.857006656 -90,30,22.7,36,19.745,39.045,22.29,35.2,20.7,33.7,20.1,51.0333333333,1.9333333333,36.93,21.29,24.6,22.5666666667,34.06,19.5,37.5,2.8666666667,766.6833333333,71.1666666667,2.8333333333,22,-1.9666666667,30.9832054772,30.9832054772 -70,20,22.6333333333,35.9333333333,19.6666666667,38.9333333333,22.29,35.2,20.76,33.8333333333,20.1,48.8333333333,1.9,37.6233333333,21.29,24.7266666667,22.7,34.23,19.5,37.5,2.7333333333,766.6666666667,71.3333333333,2.6666666667,22,-2.0333333333,12.8985463525,12.8985463525 -60,20,22.6,35.9333333333,19.6,39.06,22.29,35.4,20.79,34.36,20,47.5566666667,1.9666666667,38.1566666667,21.29,25.0966666667,22.7,34.6233333333,19.5666666667,37.4333333333,2.6,766.65,71.5,2.5,22,-2.1,36.7602231912,36.7602231912 -70,30,22.6,36,19.5666666667,39.2666666667,22.29,35.4,20.865,34.6725,20,46.6966666667,2.09,38.49,21.29,25.43,22.7,35.3,19.5,37.56,2.4666666667,766.6333333333,71.6666666667,2.3333333333,22,-2.1666666667,45.9421122679,45.9421122679 -60,20,22.5,36.03,19.4266666667,39.4,22.29,35.5,20.89,34.79,20,45.8333333333,1.9633333333,38.29,21.29,25.5666666667,22.7,35.77,19.5,37.7,2.3333333333,766.6166666667,71.8333333333,2.1666666667,22,-2.2333333333,35.0464166375,35.0464166375 -50,20,22.5,36.09,19.3566666667,39.5666666667,22.29,35.5,21,35,20,45.2266666667,1.9333333333,38.6933333333,21.29,25.76,22.7,36.1333333333,19.5,37.76,2.2,766.6,72,2,22,-2.3,43.8769351109,43.8769351109 -60,30,22.39,36.09,19.23,39.76,22.29,35.59,21,35,20,44.645,1.9333333333,38.56,21.29,25.9266666667,22.7,36.5666666667,19.5,37.79,2.0666666667,766.6,72.6666666667,2.1666666667,22,-2.3333333333,33.6059053894,33.6059053894 -60,20,22.39,36.09,19.2,40.03,22.29,35.59,21.0333333333,35.03,19.9633333333,44.1,1.9,38.3266666667,21.23,26,22.7,36.8333333333,19.5,37.79,1.9333333333,766.6,73.3333333333,2.3333333333,22,-2.3666666667,33.4028507583,33.4028507583 -60,20,22.3566666667,36.2,19.0666666667,39.9633333333,22.3233333333,35.59,21.1,35.03,19.89,43.6933333333,1.8266666667,38.66,21.2,26.1333333333,22.6,37.03,19.5,37.79,1.8,766.6,74,2.5,22,-2.4,29.5544226072,29.5544226072 -70,20,22.29,36.2,19,40.09,22.3233333333,35.59,21.1,34.9,19.9633333333,43.2233333333,1.76,39.09,21.2,26.26,22.6,37.09,19.5,37.8633333333,1.6666666667,766.6,74.6666666667,2.6666666667,22,-2.4333333333,30.7310335105,30.7310335105 -70,30,22.26,36.1633333333,18.9266666667,40.09,22.26,35.5266666667,21.1,34.9,19.89,42.9633333333,1.7,39.4966666667,21.2,26.39,22.5,37.23,19.5,37.9,1.5333333333,766.6,75.3333333333,2.8333333333,22,-2.4666666667,41.8924671598,41.8924671598 -50,10,22.2,36.1633333333,18.79,40.0666666667,22.2,35.4666666667,21.1,34.79,19.89,42.6333333333,1.65,39.845,21.125,26.4975,22.4266666667,37.3633333333,19.5,37.9,1.4,766.6,76,3,22,-2.5,19.5483535528,19.5483535528 -60,10,22.1666666667,36.1266666667,18.73,40.2,22.2,35.5,21.1,34.79,19.89,42.36,1.43,39.7666666667,21.1,26.6,22.39,37.6566666667,19.5,37.9,1.2833333333,766.55,76.3333333333,2.8333333333,21.8333333333,-2.55,39.61618389,39.61618389 -40,0,22.1,36.1175,18.6666666667,40.2,22.1333333333,35.5,21.1,34.6333333333,19.89,42.2,1.23,40.1,21.1,26.7,22.39,37.93,19.5,37.9,1.1666666667,766.5,76.6666666667,2.6666666667,21.6666666667,-2.6,1.7548616044,1.7548616044 -40,0,22.0333333333,36.03,18.6,40.26,22.1,35.5,21.0333333333,34.36,19.8233333333,42,0.8666666667,40.5566666667,21.1,26.7,22.39,38.5666666667,19.5,37.9,1.05,766.45,77,2.5,21.5,-2.65,31.4920317614,31.4920317614 -20,10,22,36,18.5666666667,40.5,22.1,35.4333333333,21,34.2233333333,19.79,41.76,0.7333333333,41.7566666667,21.1,26.8233333333,22.39,38.76,19.4633333333,37.9666666667,0.9333333333,766.4,77.3333333333,2.3333333333,21.3333333333,-2.7,45.1100554201,45.1100554201 -30,0,22,36,18.4266666667,40.56,22,35.29,20.9266666667,34.09,19.79,41.5666666667,0.5666666667,42.4,21.0333333333,26.8233333333,22.29,38.79,19.39,37.9666666667,0.8166666667,766.35,77.6666666667,2.1666666667,21.1666666667,-2.75,14.9160976522,14.9160976522 -30,0,21.9633333333,36,18.3566666667,40.73,22,35.29,20.8566666667,33.93,19.76,41.4,0.3,42.5933333333,21,26.8233333333,22.29,38.8633333333,19.4266666667,38.03,0.7,766.3,78,2,21,-2.8,26.5433692141,26.5433692141 -60,0,21.89,35.9333333333,18.29,40.79,21.84,35.245,20.79,33.8633333333,19.76,41.2666666667,0.1666666667,44.4333333333,21,26.89,22.29,39,19.4266666667,38.03,0.6333333333,766.35,78.8333333333,2,28.3333333333,-2.7166666667,36.1597456736,36.1597456736 -50,0,21.79,35.79,18.2,40.745,21.8566666667,35.26,20.76,33.9333333333,19.7,41.1633333333,0.1666666667,44.8933333333,21,27,22.29,39.06,19.39,38,0.5666666667,766.4,79.6666666667,2,35.6666666667,-2.6333333333,11.0238896799,11.0238896799 -50,0,21.79,35.79,18.1666666667,40.8266666667,21.79,35.2,20.7,34,19.7,41.03,0.2,45.99,21,27,22.29,39.2,19.39,38.06,0.5,766.45,80.5,2,43,-2.55,14.6180434036,14.6180434036 -50,0,21.76,35.79,18.1,40.9,21.79,35.23,20.6,34,19.7,40.9,0.1333333333,45.6566666667,20.89,27.0333333333,22.29,39.26,19.39,38.09,0.4333333333,766.5,81.3333333333,2,50.3333333333,-2.4666666667,15.5761450878,15.5761450878 -50,0,21.7,35.79,18,40.79,21.79,35.29,20.6,34,19.7,40.8266666667,0.1,46.9,20.89,27.1,22.23,39.23,19.4633333333,38.1633333333,0.3666666667,766.55,82.1666666667,2,57.6666666667,-2.3833333333,22.8748397552,22.8748397552 -40,0,21.6666666667,35.76,17.9266666667,40.73,21.79,35.29,20.5333333333,34,19.6666666667,40.6633333333,0.1,47.4333333333,20.89,27.1333333333,22.23,39.23,19.5,38.2,0.3,766.6,83,2,65,-2.3,8.0942414585,8.0942414585 -50,10,21.6,35.7,17.8566666667,40.6633333333,21.79,35.23,20.4633333333,33.9666666667,19.6,40.53,0.1333333333,48.1666666667,20.89,27.2,22.2,39.245,19.5,38.26,0.2833333333,766.5333333333,83,2,65,-2.3166666667,48.2980141416,48.2980141416 -40,0,21.5,35.7,17.79,40.59,21.7,35.2,20.39,33.9,19.6,40.5,0.2,48.8333333333,20.8566666667,27.2,22.1,39.29,19.39,38.2,0.2666666667,766.4666666667,83,2,65,-2.3333333333,25.5764291272,25.5764291272 -50,0,21.5,35.6266666667,17.79,40.59,21.7,35.26,20.39,33.8633333333,19.6,40.425,0.1333333333,48.9566666667,20.79,27.2,22.1,39.29,19.4633333333,38.26,0.25,766.4,83,2,65,-2.35,36.2266745302,36.2266745302 -60,0,21.4633333333,35.56,17.73,40.6633333333,21.7,35.2,20.3233333333,33.79,19.6,40.4,-0.025,49.8925,20.79,27.23,22.1,39.3266666667,19.4266666667,38.3266666667,0.2333333333,766.3333333333,83,2,65,-2.3666666667,10.5414572521,10.5414572521 -50,0,21.39,35.5,17.7,40.6633333333,21.7,35.26,20.29,33.76,19.6,40.29,-0.1666666667,50.1666666667,20.79,27.29,22.1,39.4,19.4266666667,38.3266666667,0.2166666667,766.2666666667,83,2,65,-2.3833333333,43.9949398395,43.9949398395 -50,0,21.39,35.5,17.6333333333,40.53,21.6666666667,35.2,20.29,33.76,19.6,40.29,-0.2666666667,50.93,20.79,27.29,22.1,39.6266666667,19.39,38.29,0.2,766.2,83,2,65,-2.4,0.1433677622,0.1433677622 -40,0,21.39,35.5,17.6,40.53,21.6,35.2,20.26,33.7,19.5,40.29,-0.4666666667,51.4566666667,20.79,27.3566666667,22.1,39.7,19.39,38.3725,0.0833333333,766.1666666667,83.5,1.8333333333,64.6666666667,-2.4333333333,27.5954055833,27.5954055833 -40,0,21.29,35.5,17.5333333333,40.59,21.6,35.2,20.2,33.6266666667,19.5,40.23,-0.4,52.7666666667,20.745,27.39,22.1,39.7,19.39,38.4,-0.0333333333,766.1333333333,84,1.6666666667,64.3333333333,-2.4666666667,21.6444868012,21.6444868012 -30,10,21.2675,35.475,17.5,40.59,21.6,35.2,20.2,33.59,19.5,40.29,-0.4,53.6933333333,20.7,27.4266666667,22.1,39.7,19.4266666667,38.5,-0.15,766.1,84.5,1.5,64,-2.5,14.1155187273,14.1155187273 -30,0,21.2,35.4666666667,17.5,40.6633333333,21.6,35.2,20.1333333333,33.59,19.5,40.29,-0.4333333333,53.83,20.7,27.5,22,39.5,19.4266666667,38.5,-0.2666666667,766.0666666667,85,1.3333333333,63.6666666667,-2.5333333333,1.7558356281,1.7558356281 -30,0,21.2,35.4333333333,17.39,40.59,21.6,35.2,20.1,33.59,19.5,40.29,-0.5666666667,53.9633333333,20.7,27.5333333333,22,39.5,19.4266666667,38.53,-0.3833333333,766.0333333333,85.5,1.1666666667,63.3333333333,-2.5666666667,42.2853591503,42.2853591503 -40,0,21.2,35.5,17.39,40.6633333333,21.6,35.2666666667,20.1,33.59,19.5,40.23,-0.6,55.2,20.7,27.6,22,39.3633333333,19.4266666667,38.53,-0.5,766,86,1,63,-2.6,20.5381370964,20.5381370964 -60,0,21.1,35.5,17.29,40.7,21.6,35.4,20.0333333333,33.5,19.4633333333,40.1633333333,-0.6666666667,55.26,20.6,27.5,22,39.29,19.39,38.53,-0.6,765.9833333333,86.1666666667,1,62.8333333333,-2.6666666667,33.9478646289,33.9478646289 -50,0,21.1,35.5,17.29,40.76,21.6,35.45,20.0333333333,33.4333333333,19.39,40.09,-0.8333333333,55.6666666667,20.6,27.5,22,39.2,19.39,38.59,-0.7,765.9666666667,86.3333333333,1,62.6666666667,-2.7333333333,9.1810991522,9.1810991522 -50,0,21.1,35.53,17.29,40.79,21.6,35.5,20,33.4,19.39,40.09,-0.9,56.6666666667,20.6,27.5333333333,21.9266666667,39.2,19.4633333333,38.6633333333,-0.8,765.95,86.5,1,62.5,-2.8,12.9773078952,12.9773078952 -50,0,21.0333333333,35.53,17.2,40.79,21.6,35.56,20,33.4,19.39,40.09,-1,56.6933333333,20.6,27.6,21.89,39.2,19.4633333333,38.6633333333,-0.9,765.9333333333,86.6666666667,1,62.3333333333,-2.8666666667,36.4471876528,36.4471876528 -40,0,21,35.5,17.2,40.8633333333,21.6,35.59,19.89,33.4,19.39,40,-1.1933333333,56.1666666667,20.6,27.6,21.89,39.2,19.39,38.7,-1,765.9166666667,86.8333333333,1,62.1666666667,-2.9333333333,29.5638390584,29.5638390584 -50,0,21,35.5,17.2,40.9333333333,21.6666666667,35.7233333333,19.89,33.4,19.39,40,-1.39,57.1666666667,20.5333333333,27.6666666667,21.89,39.29,19.39,38.7,-1.1,765.9,87,1,62,-3,25.1179218991,25.1179218991 -50,10,21,35.5,17.2,41.06,21.7,35.73,19.89,33.4,19.39,40,-1.645,57.195,20.5,27.7,21.8233333333,39.23,19.5,38.79,-1.2166666667,765.9166666667,87.3333333333,1,61.8333333333,-3.0666666667,42.8897743928,42.8897743928 -60,0,21,35.5,17.1,41.1566666667,21.7,35.79,19.89,33.4,19.39,40,-1.73,58.4266666667,20.5,27.7,21.79,39.2,19.4266666667,38.79,-1.3333333333,765.9333333333,87.6666666667,1,61.6666666667,-3.1333333333,46.1574512301,46.1574512301 -50,0,20.89,35.5,17.1,41.3633333333,21.7,35.79,19.8233333333,33.2666666667,19.3566666667,40,-1.73,58.73,20.5,27.7,21.79,39.1725,19.39,38.79,-1.45,765.95,88,1,61.5,-3.2,32.8982061241,32.8982061241 -40,0,20.89,35.5,17,41.59,21.7,35.79,19.79,33.26,19.315,39.925,-1.73,59.4566666667,20.5,27.7,21.79,39.09,19.39,38.79,-1.5666666667,765.9666666667,88.3333333333,1,61.3333333333,-3.2666666667,22.6957813953,22.6957813953 -60,0,20.89,35.5,17,41.7233333333,21.7,35.9,19.79,33.2,19.3233333333,39.9,-1.6666666667,60.29,20.5,27.73,21.79,39.09,19.39,38.8266666667,-1.6833333333,765.9833333333,88.6666666667,1,61.1666666667,-3.3333333333,35.4517230648,35.4517230648 -40,0,20.89,35.5,17,41.9666666667,21.7,35.9666666667,19.79,33.2,19.29,39.9666666667,-1.6666666667,60.7633333333,20.4266666667,27.73,21.73,39.09,19.39,38.9,-1.8,766,89,1,61,-3.4,1.973297901,1.973297901 -50,0,20.79,35.4,17,41.9666666667,21.7,36,19.73,33.2,19.29,39.9,-1.6,61.1933333333,20.4633333333,27.76,21.73,39.06,19.39,38.9333333333,-1.6833333333,766,89.1666666667,1.1666666667,60.8333333333,-3.25,42.9248540895,42.9248540895 -40,0,20.79,35.4,16.89,42.03,21.7,36,19.7,33.2,19.29,39.9,-1.5333333333,61.86,20.39,27.7,21.73,39.06,19.39,39.0675,-1.5666666667,766,89.3333333333,1.3333333333,60.6666666667,-3.1,24.9760548235,24.9760548235 -50,0,20.79,35.4,16.89,42.1633333333,21.7,36,19.7,33.2,19.29,39.9666666667,-1.6333333333,61.29,20.39,27.79,21.7,39.03,19.39,39.09,-1.45,766,89.5,1.5,60.5,-2.95,4.5332735404,4.5332735404 -40,0,20.79,35.4,16.89,42.23,21.7,36,19.7,33.2,19.29,40,-1.7,61.49,20.39,27.79,21.6333333333,39.03,19.39,39.09,-1.3333333333,766,89.6666666667,1.6666666667,60.3333333333,-2.8,42.5409495598,42.5409495598 -40,0,20.7,35.4,16.8233333333,42.29,21.7,36,19.7,33.2,19.29,40,-1.79,61.86,20.39,27.79,21.6666666667,39.1266666667,19.39,39.09,-1.2166666667,766,89.8333333333,1.8333333333,60.1666666667,-2.65,34.4514481723,34.4514481723 -130,0,20.7,35.4633333333,16.79,42.2,21.7,36,19.7,33.2,19.23,40.1,-1.8633333333,61.9333333333,20.3233333333,27.79,21.6,39.26,19.39,39.09,-1.1,766,90,2,60,-2.5,21.8540433212,21.8540433212 -330,0,20.7,35.53,16.79,42.1266666667,21.6666666667,35.6966666667,19.6333333333,33.1266666667,19.29,40.4333333333,-1.9,62.7266666667,20.3233333333,27.79,21.7,39.5666666667,19.39,39.09,-1,766,90.3333333333,2,60.1666666667,-2.3666666667,29.612117121,29.612117121 -220,0,20.7,35.59,16.73,41.8633333333,21.5333333333,35.23,19.6666666667,33.1633333333,19.2,40.6666666667,-1.5666666667,64.3333333333,20.29,27.7933333333,21.6333333333,39.5666666667,19.39,39.09,-0.9,766,90.6666666667,2,60.3333333333,-2.2333333333,35.2376035764,35.2376035764 -110,0,20.7,35.7233333333,16.7225,41.4475,21.445,35.145,19.6,33.1633333333,19.2,41.2666666667,-1.3566666667,64.53,20.23,27.3933333333,21.6,39.16,19.39,39.09,-0.8,766,91,2,60.5,-2.1,0.4978506127,0.4978506127 -60,10,20.7,36,16.7,41.26,21.29,35,19.6,33.06,19.1,41.7666666667,-1.23,64.7966666667,20.2,27.0666666667,21.5333333333,38.6333333333,19.39,39.09,-0.7,766,91.3333333333,2,60.6666666667,-1.9666666667,24.0225657937,24.0225657937 -60,0,20.7,36,16.7,41.1333333333,21.29,35,19.6,33,19.1,42.1,-1.05,64.945,20.2,26.9266666667,21.4633333333,37.96,19.39,39.03,-0.6,766,91.6666666667,2,60.8333333333,-1.8333333333,22.7657641401,22.7657641401 -70,0,20.7,35.5266666667,16.7,40.8,21.29,34.9666666667,19.6,32.845,19.1,42.2666666667,-0.8666666667,64.9633333333,20.1,26.6666666667,21.39,37.5,19.39,38.6933333333,-0.5,766,92,2,61,-1.7,31.1850436265,31.1850436265 -60,0,20.6333333333,35.2666666667,16.73,40.43,21.29,34.9666666667,19.6,32.6633333333,19.0333333333,42.4,-0.7333333333,65.2966666667,20.1,26.6,21.39,37.1333333333,19.4633333333,38.4333333333,-0.25,766,91.1666666667,2,61.1666666667,-1.5833333333,15.0246596779,15.0246596779 -70,0,20.6,35.06,16.79,40.23,21.29,34.9666666667,19.6,32.53,19,42.29,-0.3,65.5266666667,20.1,26.5,21.39,36.86,19.39,37.9,0,766,90.3333333333,2,61.3333333333,-1.4666666667,34.137532732,34.137532732 -40,0,20.6,34.9333333333,16.89,40.0266666667,21.23,34.8266666667,19.6,32.3333333333,18.9266666667,42.29,0.0333333333,65.1933333333,20.1,26.4266666667,21.39,36.5266666667,19.39,37.5666666667,0.25,766,89.5,2,61.5,-1.35,46.4477393893,46.4477393893 -50,0,20.6,34.76,16.89,39.8266666667,21.2,34.6633333333,19.6,32.1266666667,18.9266666667,42.29,0.4,64.49,20,26.29,21.39,36.2666666667,19.4633333333,37.1933333333,0.5,766,88.6666666667,2,61.6666666667,-1.2333333333,19.0404849127,19.0404849127 -50,0,20.6,34.7,17.0333333333,39.56,21.2,34.53,19.6,32.1266666667,18.9175,42.3225,0.7333333333,63.63,20,26.29,21.29,35.995,19.4633333333,36.9333333333,0.75,766,87.8333333333,2,61.8333333333,-1.1166666667,23.7671740586,23.7671740586 -210,0,20.6,34.5266666667,17.1,39.4333333333,21.1333333333,34.3,19.6,32.2,18.89,42.26,1.1633333333,62.1,20,26.26,21.29,35.76,19.5,36.6,1,766,87,2,62,-1,9.7239734023,9.7239734023 -160,0,20.5333333333,34.4666666667,17.2633333333,39.8,21,33.9,19.73,32.29,18.89,42.53,1.43,60.8333333333,20,26.2,21.23,35.5666666667,19.5,36.6,1.3333333333,766,86,1.8333333333,62,-0.8333333333,29.3216086575,29.3216086575 -50,0,20.5,34.6,17.5966666667,40.7333333333,20.89,33.6633333333,19.79,32.23,18.8233333333,42.59,1.7,59.4233333333,20,26.26,21.2,35.4,19.6,37.33,1.6666666667,766,85,1.6666666667,62,-0.6666666667,2.8874785989,2.8874785989 -70,10,20.5,37.1333333333,17.9933333333,41.3666666667,20.9633333333,33.6633333333,19.89,32.29,18.89,42.6333333333,2.1,58.4233333333,20,26.26,21.2,35.3266666667,19.6,37.7675,2,766,84,1.5,62,-0.5,44.0729897586,44.0729897586 -80,10,20.6,37.1233333333,18.3266666667,41.76,20.89,33.6566666667,19.9633333333,32.29,18.9633333333,41.9666666667,2.5666666667,57.2266666667,20,26.2,21.2,35.2,19.6,37.9666666667,2.3333333333,766,83,1.3333333333,62,-0.3333333333,12.6362345414,12.6362345414 -50,0,20.5333333333,36.53,18.6333333333,40.8333333333,20.89,33.6566666667,20.1,32.3633333333,19,41.0633333333,2.9,55.3,19.89,26.26,21.2,35.2,19.6,38,2.6666666667,766,82,1.1666666667,62,-0.1666666667,19.4849841064,19.4849841064 -50,0,20.5,35.995,18.8266666667,40.2333333333,20.89,33.6266666667,20.1666666667,32.29,19,40.53,3.4266666667,51.6633333333,19.9633333333,26.26,21.1,35.09,19.6,38,3,766,81,1,62,0,35.6440524221,35.6440524221 -50,10,20.5,35.6,19.23,39.5633333333,20.89,33.76,20.2,32.1633333333,19,40.2666666667,3.96,49.53,20,26.2,21.1,35.09,19.6,38,3.4166666667,765.95,79.5,1.1666666667,62.3333333333,0.1333333333,44.7253674036,44.7253674036 -60,0,20.5,35.1933333333,19.43,39.29,20.89,33.9,20.26,32.09,18.9266666667,40.66,4.5666666667,47.0266666667,20,26.2,21.1333333333,34.9666666667,19.6,38,3.8333333333,765.9,78,1.3333333333,62.6666666667,0.2666666667,48.503661342,48.503661342 -60,10,20.5,34.93,19.73,38.23,20.89,33.9666666667,20.3233333333,32.06,18.89,41.2266666667,5.095,43.05,20,26.2,21.1333333333,34.9,19.5666666667,38.09,4.25,765.85,76.5,1.5,63,0.4,13.5643423419,13.5643423419 -70,0,20.5,34.53,19.8425,36.7425,20.89,34.09,20.39,32,18.89,41.6333333333,5.3666666667,41.3,20,26.2,21.1,34.9,19.5666666667,38.09,4.6666666667,765.8,75,1.6666666667,63.3333333333,0.5333333333,27.6520084008,27.6520084008 -60,10,20.5,34.4633333333,20.1333333333,36.2266666667,20.89,34.09,20.39,32.36,18.79,41.9633333333,5.5633333333,39.0266666667,20,26.2,21.1,34.8266666667,19.5333333333,38.09,5.0833333333,765.75,73.5,1.8333333333,63.6666666667,0.6666666667,2.8750528116,2.8750528116 -60,0,20.5,34.59,20.39,35.6933333333,20.89,34.09,20.4633333333,32.8333333333,18.79,42.1633333333,5.83,38.56,20,26.2,21.1,34.8333333333,19.6,38.09,5.5,765.7,72,2,64,0.8,3.1812961795,3.1812961795 -60,0,20.5,34.7233333333,20.39,34.8266666667,20.89,34.06,20.5,32.85,18.79,42.29,6.0633333333,36.4566666667,20.1,26.26,21.1,34.6266666667,19.5666666667,38.09,5.8833333333,765.65,70.5,2.3333333333,64.1666666667,0.8666666667,37.4918413698,37.4918413698 -50,10,20.5,34.4633333333,20.39,34.0333333333,20.89,33.9333333333,20.5333333333,32.6266666667,18.79,42.29,6.3966666667,34.1233333333,20.1666666667,26.2,21.1,34.56,19.5,38.09,6.2666666667,765.6,69,2.6666666667,64.3333333333,0.9333333333,36.5869763889,36.5869763889 -40,0,20.5,34.1333333333,20.3233333333,33.3666666667,20.79,33.56,20.6,32.76,18.79,42.1633333333,6.7933333333,32.3333333333,20.23,26.1,21.1666666667,34.4333333333,19.5,37.99,6.65,765.55,67.5,3,64.5,1,2.7758593671,2.7758593671 -40,10,20.5,33.8,20.3566666667,33.2233333333,20.73,33.4333333333,20.73,32.8333333333,18.79,42.03,7.06,29.7333333333,20.29,26.0333333333,21.2,34.2233333333,19.5666666667,37.5966666667,7.0333333333,765.5,66,3.3333333333,64.6666666667,1.0666666667,6.178697187,6.178697187 -40,10,20.5,33.4633333333,20.29,33.2966666667,20.5666666667,33.29,20.79,32.6266666667,18.79,42,7.4633333333,28.1,20.4266666667,25.89,21.26,34.09,19.6,37.4633333333,7.4166666667,765.45,64.5,3.6666666667,64.8333333333,1.1333333333,10.0692368811,10.0692368811 -40,0,20.5,33.6633333333,20.26,33.7233333333,20.4266666667,33.29,20.8233333333,32.4,18.7225,41.925,7.6566666667,27.96,20.5,25.89,21.39,33.8633333333,19.6,37.6633333333,7.8,765.4,63,4,65,1.2,21.9377521425,21.9377521425 -60,10,20.5333333333,33.76,20.2,33.39,20.3566666667,33.4633333333,20.89,32.3266666667,18.7,41.9,7.9666666667,27.0966666667,20.6333333333,25.79,21.4725,33.695,19.6,37.8266666667,8.0833333333,765.3666666667,62,4.1666666667,57.5,1.2166666667,49.8094652779,49.8094652779 -150,10,20.6,33.5666666667,20.1,33.1233333333,20.29,33.59,20.9266666667,32.2,18.7,41.9,8.2333333333,26.1633333333,20.7,25.79,21.5666666667,33.53,19.6,37.9,8.3666666667,765.3333333333,61,4.3333333333,50,1.2333333333,32.8161293175,32.8161293175 -280,0,20.6,33.4,20.0333333333,32.6566666667,20.23,33.9266666667,21,32.1266666667,18.7,41.9666666667,8.5633333333,24.7,20.8233333333,25.73,21.73,33.43,19.5666666667,38,8.65,765.3,60,4.5,42.5,1.25,14.1610029852,14.1610029852 -100,10,20.6666666667,33.66,20.1,32.79,20.29,34.1266666667,21,31.9633333333,18.7,42,8.8233333333,24.9666666667,20.9633333333,25.73,21.8566666667,33.29,19.575,38,8.9333333333,765.2666666667,59,4.6666666667,35,1.2666666667,34.9645199603,34.9645199603 -90,0,20.73,34.2,20.1666666667,32.99,20.29,34.23,21,31.8233333333,18.7,42,9.2566666667,23.7,21.1,25.79,22,33.1633333333,19.6,38,9.2166666667,765.2333333333,58,4.8333333333,27.5,1.2833333333,44.9702378944,44.9702378944 -130,10,20.8566666667,34.46,20.2,33.5666666667,20.29,34.3633333333,21,31.79,18.7,42.03,9.4633333333,22.96,21.23,25.73,22.0666666667,33.09,19.6,38,9.5,765.2,57,5,20,1.3,28.9550962625,28.9550962625 -120,0,20.89,34.345,20.2,33.7,20.29,34.5,20.9266666667,31.79,18.7,42.09,9.7266666667,22.13,21.3566666667,25.79,22.23,32.9,19.6,38,9.6,765.1333333333,57.1666666667,5,27.5,1.4333333333,38.9637408894,38.9637408894 -50,10,21,34.2233333333,20.2,33.79,20.29,34.56,20.89,31.7,18.7,42.09,9.92,21.445,21.4266666667,25.7,22.29,32.9,19.6,37.9,9.7,765.0666666667,57.3333333333,5,35,1.5666666667,18.6329198186,18.6329198186 -70,0,21,34.03,20.2,33.6566666667,20.3233333333,34.6633333333,20.89,31.76,18.7,42.09,10.2333333333,21.39,21.5666666667,25.7,22.4266666667,32.79,19.6666666667,37.9666666667,9.8,765,57.5,5,42.5,1.7,31.6296921344,31.6296921344 -50,0,21.1,33.6,20.2,32.93,20.39,34.4633333333,20.89,31.6333333333,18.7,42.33,10.5333333333,20.5966666667,21.6333333333,25.7,22.5,32.73,19.6,37.8633333333,9.9,764.9333333333,57.6666666667,5,50,1.8333333333,10.8826461947,10.8826461947 -50,10,21.1,33.3266666667,20.2675,32.8725,20.445,34.245,20.89,31.6333333333,18.9,43.7966666667,10.7333333333,20.39,21.7,25.6333333333,22.6,32.7,19.6,37.79,10,764.8666666667,57.8333333333,5,57.5,1.9666666667,41.6594141047,41.6594141047 -50,0,21.1333333333,33.3633333333,20.29,32.8266666667,20.6,34.06,21,31.5666666667,19.1,43,10.89,20.8233333333,21.79,25.6,22.6,32.6266666667,19.6333333333,37.79,10.1,764.8,58,5,65,2.1,41.8441423797,41.8441423797 -50,0,21.2,33.29,20.29,32.79,20.6,34,21,31.5,19.1,42.2,10.89,20.8233333333,21.8566666667,25.6666666667,22.7,32.59,19.7,37.79,10.1833333333,764.6666666667,57.8333333333,5,65,2.1333333333,16.4374556625,16.4374556625 -50,10,21.2,33.09,20.29,32.79,20.6333333333,34,21,31.445,19.1333333333,42.16,10.96,20.8333333333,22,25.7,22.76,32.59,19.7,37.76,10.2666666667,764.5333333333,57.6666666667,5,65,2.1666666667,13.2906705025,13.2906705025 -60,0,21.2,33.2233333333,20.29,32.9633333333,20.7,34,21.0333333333,31.46,19.2,41.2333333333,11.16,21.1,22.0666666667,25.7,22.89,32.59,19.7,37.7,10.35,764.4,57.5,5,65,2.2,27.3574100691,27.3574100691 -60,0,21.29,33.4666666667,20.29,33.09,20.7,34,21.1,31.6,19.29,42.7566666667,11.33,20.6966666667,22.2,25.7,22.9633333333,32.53,19.7,37.7,10.4333333333,764.2666666667,57.3333333333,5,65,2.2333333333,3.8499388727,3.8499388727 -50,20,21.29,33.2666666667,20.29,33,20.7,34.06,21.1,31.6,19.29,42.9633333333,11.4633333333,20.9633333333,22.26,25.7,23.0333333333,32.5,19.7,37.7,10.5166666667,764.1333333333,57.1666666667,5,65,2.2666666667,6.675293704,6.675293704 -40,10,21.3233333333,33.23,20.23,33,20.7,34,21.1,31.6,19.29,42.89,11.36,21.3933333333,22.3233333333,25.7,23.1,32.5,19.73,37.6633333333,10.6,764,57,5,65,2.3,27.4561848142,27.4561848142 -70,10,21.39,33.43,20.23,33.2666666667,20.7,34,21.1,31.6333333333,19.3925,43.1175,11.3,21.8666666667,22.4633333333,25.76,23.1333333333,32.4666666667,19.73,37.59,10.5166666667,763.9666666667,58.1666666667,5.1666666667,64.6666666667,2.5,48.3885587775,48.3885587775 -70,0,21.4266666667,33.86,20.3566666667,33.5266666667,20.79,34.03,21.1,31.9,19.5,43.0666666667,11.63,21.3666666667,22.5,25.79,23.26,32.4666666667,19.7,37.59,10.4333333333,763.9333333333,59.3333333333,5.3333333333,64.3333333333,2.7,14.1094133491,14.1094133491 -70,0,21.5,34.06,20.39,33.8266666667,20.79,34.09,21.1,32.1566666667,19.5,42.7233333333,12.03,20.4933333333,22.5,25.79,23.245,32.4,19.76,37.53,10.35,763.9,60.5,5.5,64,2.9,16.742282873,16.742282873 -50,0,21.5,34.1566666667,20.39,33.9666666667,20.79,34.23,21.1666666667,32.3633333333,19.5,42.59,12,19.8,22.4633333333,25.89,23.2,32.5,19.73,37.59,10.2666666667,763.8666666667,61.6666666667,5.6666666667,63.6666666667,3.1,26.9724377315,26.9724377315 -50,0,21.5,34.3633333333,20.39,34.2666666667,20.79,34.3633333333,21.2,32.6566666667,19.5,42.23,11.9266666667,20.0666666667,22.3233333333,25.89,23.2,32.56,19.79,37.6175,10.1833333333,763.8333333333,62.8333333333,5.8333333333,63.3333333333,3.3,22.0901285531,22.0901285531 -60,0,21.39,34.26,20.39,34.2666666667,20.79,34.5,21.2,32.8633333333,19.5666666667,42.0966666667,12.0333333333,20.9266666667,22.245,25.89,23.0666666667,32.59,19.79,37.7,10.1,763.8,64,6,63,3.5,43.4910450946,43.4910450946 -70,20,21.39,34.1266666667,20.3566666667,34.09,20.79,34.7,21.1666666667,32.8266666667,19.6,41.9666666667,11.96,21.7333333333,22.2,26.0333333333,23,32.6633333333,19.76,37.7,10.0166666667,763.7666666667,65.1666666667,6,55.8333333333,3.6666666667,27.6717807865,27.6717807865 -130,0,21.39,34.1266666667,20.29,34.1633333333,20.79,34.59,21.1,33.0266666667,19.6,42.9,11.53,23.39,22.1333333333,26.1666666667,22.9633333333,32.73,19.7,37.7,9.9333333333,763.7333333333,66.3333333333,6,48.6666666667,3.8333333333,26.6430396819,26.6430396819 -360,0,21.39,34.35,20.26,34.29,20.8566666667,34.6633333333,21.1666666667,33,19.5,43.4,11.2175,25.4975,22.1,26.3233333333,22.89,32.8633333333,19.79,37.7,9.85,763.7,67.5,6,41.5,4,44.1768897348,44.1768897348 -90,0,21.39,34.4,20.2,34.3633333333,20.89,34.79,21.1,33.06,19.4266666667,43.2666666667,11.1,27.06,22.1,26.4633333333,22.9633333333,33.03,19.73,37.7,9.7666666667,763.6666666667,68.6666666667,6,34.3333333333,4.1666666667,27.8566918569,27.8566918569 -100,0,21.39,34.4666666667,20.2,34.59,20.89,34.79,21.0666666667,33.2,19.39,42.8333333333,11.1,27.9933333333,22.1,26.6,22.89,33.09,19.79,37.7,9.6833333333,763.6333333333,69.8333333333,6,27.1666666667,4.3333333333,3.3061079448,3.3061079448 -60,0,21.39,34.2666666667,20.1333333333,34.4633333333,20.79,34.845,21,33.2,19.39,42.5666666667,10.96,28.66,22.1,26.6666666667,22.89,33.23,19.79,37.76,9.6,763.6,71,6,20,4.5,12.9384051776,12.9384051776 -80,0,21.3566666667,34.09,20.05,34.29,20.79,35,21,33.3266666667,19.29,41.9,10.86,29.8966666667,22.1,26.8233333333,22.89,33.29,19.79,37.79,9.25,763.5666666667,72.3333333333,6.1666666667,20.5,4.4166666667,27.5452561211,27.5452561211 -70,0,21.29,34.09,20,34.36,20.79,35,20.9266666667,33.4,19.29,41.8333333333,10.6666666667,31.23,22.0333333333,26.9633333333,22.79,33.3266666667,19.79,37.79,8.9,763.5333333333,73.6666666667,6.3333333333,21,4.3333333333,39.820142102,39.820142102 -270,0,21.29,34.1933333333,20,34.56,20.79,35.1266666667,20.89,33.5,19.29,41.9,10.36,33.6,22,27.1333333333,22.79,33.5266666667,19.79,37.79,8.55,763.5,75,6.5,21.5,4.25,7.2506489931,7.2506489931 -210,0,21.29,34.66,19.9633333333,35.0666666667,20.79,35.2,20.8566666667,33.59,19.23,41.9,10.1,35.3266666667,21.9266666667,27.3266666667,22.76,33.73,19.79,37.79,8.2,763.4666666667,76.3333333333,6.6666666667,22,4.1666666667,24.3104709079,24.3104709079 -150,10,21.26,35.0966666667,19.8233333333,35.86,20.89,35.29,20.79,33.6633333333,19.2,42.03,9.66,37.4933333333,21.89,27.5333333333,22.7,33.79,19.76,37.79,7.85,763.4333333333,77.6666666667,6.8333333333,22.5,4.0833333333,35.369054717,35.369054717 -130,20,21.2,35.43,19.6666666667,36.83,20.8233333333,35.29,20.79,33.7666666667,19.2,42.09,9.5333333333,38.1,21.8233333333,27.6666666667,22.7,34.1933333333,19.76,37.79,7.5,763.4,79,7,23,4,47.2003616276,47.2003616276 -210,30,21.2,36.03,19.5333333333,37.2966666667,20.8566666667,35.5,20.79,34.3,19.2,42.23,9.2333333333,39.43,21.76,27.8233333333,22.76,34.6,19.73,37.8266666667,7.35,763.4666666667,79.5,7,23,3.95,41.3479959476,41.3479959476 -550,10,21.2,36.5633333333,19.39,37.8,20.8566666667,35.56,20.79,34.86,19.1333333333,42.29,8.9,40.23,21.7,27.9633333333,22.79,34.9633333333,19.73,37.9,7.2,763.5333333333,80,7,23,3.9,19.1814846243,19.1814846243 -470,20,21.2,39.53,19.39,38.6666666667,20.89,35.7666666667,20.79,35.1333333333,19.15,42.545,8.5,41.5266666667,21.6666666667,28.1,22.8566666667,35.2966666667,19.7,37.9,7.05,763.6,80.5,7,23,3.85,16.1585269147,16.1585269147 -280,10,21.26,42.5966666667,19.39,40.6233333333,20.89,36.1,20.89,35.4333333333,19.1,42.89,8.1666666667,43.4666666667,21.6,28.1,23,35.53,19.7,37.9,6.9,763.6666666667,81,7,23,3.8,45.3666506335,45.3666506335 -120,10,21.3233333333,46.6666666667,19.39,42.0966666667,20.89,36.5966666667,20.89,35.56,19.1,43.3633333333,7.8666666667,45.2633333333,21.6,28.2,22.9175,35.4975,19.7,37.9,6.75,763.7333333333,81.5,7,23,3.75,2.8223578469,2.8223578469 -100,10,21.39,44.7933333333,19.39,43.1566666667,20.89,36.8633333333,20.8566666667,35.6266666667,19.1,44.03,7.7266666667,46.3233333333,21.5333333333,28.2,22.89,35.4666666667,19.7225,37.9,6.6,763.8,82,7,23,3.7,5.7250676327,5.7250676327 -370,10,21.39,43.7966666667,19.39,43.29,20.89,37,20.79,35.76,19.1,44.49,7.5266666667,47.53,21.4633333333,28.29,22.89,35.86,19.73,37.9,6.5666666667,763.8666666667,82.3333333333,6.6666666667,22.5,3.7166666667,45.2202531858,45.2202531858 -140,0,21.39,42.9966666667,19.39,43.53,20.89,37.46,20.79,35.9633333333,19.1,44.86,7.325,48.1175,21.365,28.365,22.9633333333,36,19.7,37.9,6.5333333333,763.9333333333,82.6666666667,6.3333333333,22,3.7333333333,9.9115611287,9.9115611287 -470,0,21.4633333333,42.2666666667,19.39,43.99,21,38,20.79,36.09,19.1,45.1333333333,7.2266666667,48.7666666667,21.29,28.4633333333,23,36.1566666667,19.7,37.9,6.5,764,83,6,21.5,3.75,41.7803774821,41.7803774821 -130,10,21.4725,41.875,19.39,44.29,21.0666666667,38.3333333333,20.7,36.09,19.0666666667,45.3266666667,7.1266666667,49.6666666667,21.29,28.5333333333,23,36.3633333333,19.7,37.8266666667,6.4666666667,764.0666666667,83.3333333333,5.6666666667,21,3.7666666667,31.4031520858,31.4031520858 -280,0,21.5,41.5666666667,19.3233333333,44.23,21.1,38.53,20.7,36.1633333333,19.0666666667,45.4666666667,6.9333333333,50.6666666667,21.29,28.6,23.1,36.53,19.7,37.9,6.4333333333,764.1333333333,83.6666666667,5.3333333333,20.5,3.7833333333,28.9428808377,28.9428808377 -350,10,21.5,41.3633333333,19.29,44.1633333333,21.1,38.6633333333,20.7,36.29,19,45.6333333333,6.9,51.1933333333,21.2,28.6333333333,23.1666666667,36.59,19.7,37.9,6.4,764.2,84,5,20,3.8,3.6104351166,3.6104351166 -170,0,21.5,41.1566666667,19.29,44.1633333333,21.1,38.845,20.6333333333,36.29,19.0666666667,47.6933333333,6.9,51.5266666667,21.1333333333,28.7,23.2,36.59,19.7,37.9,6.3833333333,764.2333333333,83.5,5,27.1666666667,3.7166666667,14.1689710785,14.1689710785 -120,0,21.5,41.1933333333,19.245,44.295,21.1,38.9,20.6,36.4666666667,19.1,48.89,6.9,51.7233333333,21.1,28.8233333333,23.2,36.59,19.7,37.9,6.3666666667,764.2666666667,83,5,34.3333333333,3.6333333333,44.4685837952,44.4685837952 -100,0,21.5,41.5266666667,19.26,45.4333333333,21.1,38.9666666667,20.6,36.3266666667,19.1,49.1633333333,6.76,51.6633333333,21.1,28.89,23.23,36.73,19.7,37.9,6.35,764.3,82.5,5,41.5,3.55,8.1136836903,8.1136836903 -120,0,21.5,41.73,19.2,45.56,21.1666666667,39.1266666667,20.5,36.145,19.0666666667,48.96,6.6566666667,52.1633333333,21,28.79,23.29,36.79,19.7,37.9,6.3333333333,764.3333333333,82,5,48.6666666667,3.4666666667,21.6086393804,21.6086393804 -400,10,21.5,41.79,19.2,45.6266666667,21.1,39.2,20.5,35.9666666667,19,48.5,6.53,51.89,21,28.8566666667,23.2,36.73,19.7,37.9,6.3166666667,764.3666666667,81.5,5,55.8333333333,3.3833333333,37.7747214981,37.7747214981 -310,0,21.5,41.7,19.2,45.6266666667,21.1,39.3266666667,20.4266666667,35.7666666667,19,48.0266666667,6.4,52.4333333333,21,28.9266666667,23.2,36.79,19.7,38,6.3,764.4,81,5,63,3.3,18.5914311442,18.5914311442 -130,0,21.5,41.6266666667,19.2,45.7,21.1,39.4,20.39,35.6633333333,19,47.7666666667,6.4666666667,52.36,20.9266666667,29,23.29,36.9,19.7,38,6.25,764.4166666667,81.5,4.8333333333,62.8333333333,3.3166666667,8.9717300027,8.9717300027 -110,30,21.5,41.6633333333,19.1333333333,45.76,21.1,39.5,20.39,35.6633333333,19,47.5266666667,6.53,52.1,20.89,29,23.29,36.9,19.7,38,6.2,764.4333333333,82,4.6666666667,62.6666666667,3.3333333333,33.8478633552,33.8478633552 -120,20,21.5,41.59,19.2,45.4666666667,21.1,39.5,20.39,35.73,19,47.3266666667,6.59,51.7666666667,20.89,29,23.3233333333,36.8633333333,19.7,38,6.15,764.45,82.5,4.5,62.5,3.35,17.1787857427,17.1787857427 -90,20,21.5,41.4666666667,19.2,45.2666666667,21.1,39.5,20.4633333333,35.93,19,47.145,6.59,51.6,20.8566666667,29,23.3233333333,36.93,19.6666666667,37.9666666667,6.1,764.4666666667,83,4.3333333333,62.3333333333,3.3666666667,16.7629646836,16.7629646836 -80,20,21.5666666667,41.4,19.1,45.1633333333,21.1,39.5,20.5,36.1266666667,18.89,47.09,6.59,51.2666666667,20.79,29,23.29,37.2333333333,19.6666666667,37.9666666667,6.05,764.4833333333,83.5,4.1666666667,62.1666666667,3.3833333333,47.2987359157,47.2987359157 -90,30,21.5,41.26,19.1,45.03,21.1,39.5,20.5,36.26,18.9633333333,47.09,6.33,51.6666666667,20.79,29,23.3566666667,37.96,19.6666666667,38,6,764.5,84,4,62,3.4,35.6234526145,35.6234526145 -70,20,21.5666666667,41.2,19.1,44.9666666667,21.1,39.5,20.6,36.3266666667,18.89,47.06,5.9975,52.475,20.79,29,23.29,38.245,19.625,38.0225,5.8166666667,764.5333333333,84.6666666667,3.8333333333,61.8333333333,3.3333333333,25.6390514667,25.6390514667 -60,30,21.5333333333,41.09,19.1,44.9,21.1,39.4666666667,20.6,36.4,18.89,47.06,5.66,53.4933333333,20.7,29.0333333333,23.26,38.29,19.7,38.09,5.6333333333,764.5666666667,85.3333333333,3.6666666667,61.6666666667,3.2666666667,33.5001666448,33.5001666448 -50,20,21.5333333333,41.09,19.1,45.1266666667,21.1,39.3266666667,20.7,36.9633333333,18.89,47,5.3666666667,55.2933333333,20.7675,29.175,23.2,38.3633333333,19.6333333333,38.0666666667,5.45,764.6,86,3.5,61.5,3.2,17.9942608927,17.9942608927 -40,20,21.5,41.2,19.1,45.2,21,39.09,20.76,37.09,18.89,47.06,5.3666666667,56.7,20.79,29.2,23.1666666667,38.73,19.7,38.26,5.2666666667,764.6333333333,86.6666666667,3.3333333333,61.3333333333,3.1333333333,36.1935272114,36.1935272114 -60,20,21.5666666667,41.26,19,45.3266666667,21,39.03,20.79,37.1266666667,18.89,47.09,5.4666666667,57.8333333333,20.79,29.29,23.1,38.93,19.6,38.23,5.0833333333,764.6666666667,87.3333333333,3.1666666667,61.1666666667,3.0666666667,7.7128258767,7.7128258767 -60,30,21.55,41.45,19,45.4666666667,20.89,38.9,20.79,37.2,18.89,47.09,5.3333333333,57.36,20.79,29.29,23.1,39.1566666667,19.6,38.29,4.9,764.7,88,3,61,3,37.6339397742,37.6339397742 -60,20,21.5666666667,41.5,18.89,45.6266666667,20.89,38.9,20.89,37.29,18.8233333333,47.1266666667,4.9333333333,58.3633333333,20.79,29.39,23.1,39.43,19.6,38.29,4.8,764.6666666667,88.5,3,60.6666666667,2.9833333333,4.2340202956,4.2340202956 -60,20,21.5,41.56,18.89,45.76,20.89,38.9,20.89,37.29,18.8233333333,47.1266666667,4.7266666667,60.23,20.79,29.4633333333,23.0666666667,39.73,19.6,38.3633333333,4.7,764.6333333333,89,3,60.3333333333,2.9666666667,8.2363918889,8.2363918889 -60,30,21.5,41.59,18.79,45.845,20.8566666667,38.79,20.9266666667,37.26,18.79,47.1266666667,4.5266666667,61.5,20.76,29.5,23,39.8633333333,19.6333333333,38.4333333333,4.6,764.6,89.5,3,60,2.95,49.0318512078,49.0318512078 -60,20,21.5,41.59,18.7,46,20.79,38.79,21,37.2,18.79,47.2,4.26,62.0933333333,20.76,29.5666666667,23,40.03,19.6333333333,38.4333333333,4.5,764.5666666667,90,3,59.6666666667,2.9333333333,46.7630073545,46.7630073545 -70,20,21.5,41.59,18.7,46.1266666667,20.79,38.79,21,37.245,18.79,47.2,4.1266666667,63.6633333333,20.7,29.6,22.9266666667,40.1633333333,19.6,38.4333333333,4.4,764.5333333333,90.5,3,59.3333333333,2.9166666667,3.292720567,3.292720567 -70,20,21.5,41.59,18.6,46.4633333333,20.79,38.73,21.1,37.29,18.79,47.2,3.9333333333,64.59,20.7,29.6666666667,22.89,40.5966666667,19.6,38.5,4.3,764.5,91,3,59,2.9,26.5836156788,26.5836156788 -70,30,21.4633333333,41.56,18.5333333333,46.6633333333,20.79,38.6633333333,21.1,37.29,18.79,47.29,3.76,65.3666666667,20.7,29.7,22.8233333333,40.8633333333,19.6,38.5,4.3166666667,764.5,91.3333333333,3,58.3333333333,2.9666666667,2.7689876966,2.7689876966 -60,20,21.4633333333,41.5,18.5666666667,46.79,20.79,38.59,21.1333333333,37.29,18.79,47.29,3.6266666667,66.0333333333,20.7,29.76,22.79,41.3666666667,19.6,38.5,4.3333333333,764.5,91.6666666667,3,57.6666666667,3.0333333333,18.9112038584,18.9112038584 -60,20,21.39,41.4,18.5,46.79,20.79,38.59,21.1333333333,37.23,18.79,47.4,3.5666666667,67.2633333333,20.7,29.79,22.79,41.76,19.6,38.53,4.35,764.5,92,3,57,3.1,8.3445723518,8.3445723518 -60,30,21.39,41.4,18.39,46.7,20.79,38.59,21.1,37.2,18.79,47.4,3.8333333333,68.5233333333,20.7,29.79,22.79,42.03,19.6,38.59,4.3666666667,764.5,92.3333333333,3,56.3333333333,3.1666666667,27.9279799783,27.9279799783 -40,20,21.39,41.3633333333,18.39,46.76,20.79,38.5,21.1666666667,37.2,18.745,47.5,4.1233333333,69.1566666667,20.7,29.8233333333,22.73,42.49,19.6,38.59,4.3833333333,764.5,92.6666666667,3,55.6666666667,3.2333333333,37.1830006479,37.1830006479 -30,20,21.3233333333,41.29,18.3566666667,46.79,20.79,38.5,21.2,37.2,18.7,47.5,4.2725,69.0675,20.7,29.89,22.7,42.8266666667,19.6,38.6633333333,4.4,764.5,93,3,55,3.3,2.9633215629,2.9633215629 -50,20,21.29,41.29,18.29,46.8633333333,20.79,38.5,21.2,37.2,18.7,47.5,4.3,69.1266666667,20.6,29.89,22.7,42.9,19.6,38.7,4.5,764.5,92.5,2.8333333333,54.8333333333,3.3166666667,21.6487241443,21.6487241443 -60,30,21.29,41.29,18.2,46.79,20.73,38.5,21.2,37.2,18.7,47.5,4.4333333333,69.3666666667,20.6,29.89,22.7,43.03,19.6,38.7675,4.6,764.5,92,2.6666666667,54.6666666667,3.3333333333,20.1474611764,20.1474611764 -80,20,21.29,41.29,18.2,46.8633333333,20.76,38.4666666667,21.26,37.26,18.7,47.5,4.4333333333,68.9666666667,20.6,30,22.7,43.09,19.6,38.79,4.7,764.5,91.5,2.5,54.5,3.35,42.5549201667,42.5549201667 -60,20,21.23,41.29,18.1666666667,46.9333333333,20.7,38.4,21.29,37.29,18.7,47.53,4.3,68.4633333333,20.6,30,22.6,43.09,19.6,38.79,4.8,764.5,91,2.3333333333,54.3333333333,3.3666666667,15.0216444978,15.0216444978 -50,20,21.2,41.29,18.1,47.06,20.79,38.4,21.29,37.29,18.7,47.59,4.2266666667,68.6566666667,20.6,30.0666666667,22.6,43,19.6,38.79,4.9,764.5,90.5,2.1666666667,54.1666666667,3.3833333333,46.2937013595,46.2937013595 -60,0,21.2,41.29,18.0666666667,47.06,20.79,38.4,21.29,37.26,18.7,47.59,4.0266666667,68.13,20.6,30.1,22.5333333333,43,19.6,38.9,5,764.5,90,2,54,3.4,49.6767665492,49.6767665492 -40,0,21.2,41.245,18,47.06,20.79,38.4,21.29,37.1266666667,18.6333333333,47.53,3.8266666667,67.7966666667,20.6,30.1,22.5,43.06,19.6,38.9,4.9166666667,764.5,89.6666666667,2.3333333333,54.6666666667,3.2833333333,30.1252493169,30.1252493169 -50,0,21.1,41.29,18,47,20.79,38.4,21.2,36.7233333333,18.7,47.59,3.6633333333,68.5,20.5666666667,30.2,22.5,42.86,19.6,38.9,4.8333333333,764.5,89.3333333333,2.6666666667,55.3333333333,3.1666666667,47.8883108706,47.8883108706 -50,10,21.1,41.29,18,47,20.79,38.4,21.1333333333,36.53,18.7,47.59,3.53,67.9666666667,20.5,30.2,22.5,42.79,19.6,38.9666666667,4.75,764.5,89,3,56,3.05,31.7327499622,31.7327499622 -50,0,21.1,41.2,17.9266666667,47.03,20.79,38.3633333333,21,36.26,18.6333333333,47.53,3.5,68.56,20.5,30.2,22.5,42.73,19.5333333333,39,4.6666666667,764.5,88.6666666667,3.3333333333,56.6666666667,2.9333333333,32.6558772707,32.6558772707 -60,0,21.1,41.2,17.89,47,20.79,38.29,21,36.1266666667,18.7,47.59,3.4333333333,68.4333333333,20.5,30.1333333333,22.5,42.6633333333,19.6,39,4.5833333333,764.5,88.3333333333,3.6666666667,57.3333333333,2.8166666667,48.6301590106,48.6301590106 -50,0,21,41,17.89,47,20.79,38.26,20.89,35.95,18.6,47.4333333333,3.4,68.3566666667,20.5,30.2,22.4266666667,42.4633333333,19.5,39,4.5,764.5,88,4,58,2.7,17.2865770641,17.2865770641 -40,0,21,41,17.79,46.9,20.79,38.2,20.79,35.79,18.6,47.4333333333,3.4666666667,68.83,20.5,30.2,22.39,42.29,19.5666666667,39.06,4.4833333333,764.4666666667,88,4,57.6666666667,2.6833333333,37.7446729341,37.7446729341 -40,0,20.89,40.9,17.79,46.9,20.79,38.2,20.79,35.79,18.6,47.4666666667,3.5,68.8,20.5,30.2,22.39,42.23,19.5666666667,39.1266666667,4.4666666667,764.4333333333,88,4,57.3333333333,2.6666666667,38.8086184626,38.8086184626 -30,0,20.89,40.9,17.7,46.9,20.79,38.2,20.76,35.79,18.6,47.4,3.5,68.9933333333,20.5,30.2,22.39,42.09,19.5,39.2,4.45,764.4,88,4,57,2.65,14.3198821577,14.3198821577 -20,0,20.89,40.79,17.7,46.9666666667,20.8566666667,38.26,20.7,35.79,18.6,47.4,3.45,69.15,20.39,30.1,22.3233333333,42.03,19.5,39.2,4.4333333333,764.3666666667,88,4,56.6666666667,2.6333333333,22.349575616,22.349575616 -30,0,20.89,40.79,17.6666666667,46.8633333333,20.79,38.26,20.6,35.7,18.6,47.4,3.6266666667,69.6233333333,20.39,30.1,22.3566666667,41.9,19.5666666667,39.2,4.4166666667,764.3333333333,88,4,56.3333333333,2.6166666667,28.0392945046,28.0392945046 -60,0,20.79,40.7,17.6,46.8633333333,20.79,38.29,20.6,35.7,18.6,47.4,3.76,69.5633333333,20.39,30.1333333333,22.29,41.8266666667,19.5,39.2,4.4,764.3,88,4,56,2.6,31.7522956757,31.7522956757 -50,0,20.79,40.7,17.6,46.79,20.79,38.23,20.5666666667,35.7,18.5666666667,47.4,3.8633333333,69.2933333333,20.39,30.2,22.29,41.76,19.5666666667,39.2,4.2166666667,764.3,88.5,3.8333333333,55,2.5,35.5810119072,35.5810119072 -60,0,20.79,40.7,17.6,46.79,20.89,38.29,20.5,35.7,18.5666666667,47.4,3.6566666667,68.2933333333,20.39,30.2,22.29,41.7,19.5,39.2,4.0333333333,764.3,89,3.6666666667,54,2.4,5.3519002278,5.3519002278 -40,0,20.79,40.6266666667,17.5,46.8633333333,20.89,38.29,20.4633333333,35.6633333333,18.6,47.3633333333,3.4666666667,68.9666666667,20.39,30.2,22.2,41.56,19.5,39.2,3.85,764.3,89.5,3.5,53,2.3,18.3827704168,18.3827704168 -50,0,20.76,40.59,17.5,46.79,20.89,38.29,20.4633333333,35.6633333333,18.5333333333,47.3633333333,3.3266666667,68.5,20.39,30.2,22.2,41.5,19.5,39.2,3.6666666667,764.3,90,3.3333333333,52,2.2,49.6696530026,49.6696530026 -50,0,20.7,40.59,17.5,46.79,20.89,38.29,20.4633333333,35.6633333333,18.5666666667,47.29,3.1,67.8933333333,20.39,30.2,22.2,41.5,19.5,39.2,3.4833333333,764.3,90.5,3.1666666667,51,2.1,21.6126604588,21.6126604588 -40,0,20.7,40.56,17.5,46.79,20.89,38.29,20.39,35.59,18.5666666667,47.29,2.8266666667,67.7666666667,20.39,30.245,22.2,41.5,19.5,39.2,3.3,764.3,91,3,50,2,46.4627891313,46.4627891313 -50,0,20.7,40.5,17.39,46.59,20.89,38.29,20.39,35.59,18.5,47.29,2.7233333333,68.0233333333,20.3566666667,30.29,22.2,41.5,19.5,39.2,3.15,764.3166666667,91.3333333333,2.8333333333,48.5,1.9,3.6795079708,3.6795079708 -60,0,20.7,40.4666666667,17.39,46.59,20.89,38.29,20.3233333333,35.59,18.5,47.29,2.4633333333,67.69,20.29,30.23,22.1,41.4666666667,19.5,39.2,3,764.3333333333,91.6666666667,2.6666666667,47,1.8,28.8864104194,28.8864104194 -40,0,20.675,40.3725,17.39,46.56,20.9633333333,38.29,20.29,35.56,18.5,47.29,2.4633333333,69.1566666667,20.29,30.2,22.1,41.4,19.5,39.23,2.85,764.35,92,2.5,45.5,1.7,35.3228802443,35.3228802443 -50,0,20.6,40.29,17.39,46.5,21,38.29,20.29,35.56,18.5,47.29,2.7233333333,70.4233333333,20.29,30.2,22.1,41.4,19.5,39.29,2.7,764.3666666667,92.3333333333,2.3333333333,44,1.6,24.2031258764,24.2031258764 -40,0,20.6,40.2,17.29,46.4,21,38.2,20.26,35.56,18.5,47.29,2.9633333333,70.9633333333,20.29,30.2,22.0333333333,41.2666666667,19.5666666667,39.4,2.55,764.3833333333,92.6666666667,2.1666666667,42.5,1.5,5.9739878052,5.9739878052 -50,0,20.5333333333,40.2,17.29,46.4,20.9266666667,38.2,20.2,35.5,18.5,47.23,3.1633333333,70.9633333333,20.29,30.2,22.1,41.29,19.5,39.4,2.4,764.4,93,2,41,1.4,9.5668866648,9.5668866648 -50,0,20.5,40.09,17.29,46.4,20.9633333333,38.29,20.2,35.5,18.5,47.2,3.1333333333,70.3333333333,20.29,30.23,22.1,41.3633333333,19.5,39.4,2.3666666667,764.4166666667,93.3333333333,2.3333333333,40.1666666667,1.4166666667,1.9782656571,1.9782656571 -30,0,20.5,40.09,17.2,46.29,20.9633333333,38.29,20.1333333333,35.5,18.5,47.2,2.9333333333,70,20.29,30.29,22,41.29,19.5,39.4666666667,2.3333333333,764.4333333333,93.6666666667,2.6666666667,39.3333333333,1.4333333333,24.5930503588,24.5930503588 -30,0,20.5,40.09,17.2,46.29,20.9633333333,38.26,20.1333333333,35.5,18.5,47.2,2.79,70.65,20.2,30.2,22,41.3633333333,19.5,39.5,2.3,764.45,94,3,38.5,1.45,16.964160325,16.964160325 -30,0,20.5,40.03,17.2,46.2,20.89,38.2,20.1,35.56,18.4266666667,47.1266666667,2.6333333333,70.3333333333,20.2,30.2,22,41.73,19.5,39.5,2.2666666667,764.4666666667,94.3333333333,3.3333333333,37.6666666667,1.4666666667,22.1527230344,22.1527230344 -50,0,20.5,40,17.1333333333,46.2,20.89,38.2,20.1,35.56,18.39,47.03,2.4333333333,70.2,20.2,30.26,22,41.79,19.5,39.5,2.2333333333,764.4833333333,94.6666666667,3.6666666667,36.8333333333,1.4833333333,36.7747537675,36.7747537675 -60,10,20.5,40,17.2,46.2,20.89,38.2,20.1,35.5,18.39,47.03,2.53,71.5333333333,20.2,30.26,22,42.0966666667,19.5,39.56,2.2,764.5,95,4,36,1.5,25.9030635352,25.9030635352 -60,0,20.39,39.9,17.1333333333,46.2,20.8566666667,38.1633333333,20.0333333333,35.56,18.39,47.045,2.7233333333,71.9933333333,20.2,30.29,22,42.23,19.5,39.59,2.25,764.5333333333,94.5,4,39.8333333333,1.4666666667,19.0367744886,19.0367744886 -180,0,20.39,39.9,17.1666666667,46.29,20.79,38.09,20,35.9333333333,18.4633333333,47.1633333333,2.9,72.0266666667,20.2,30.23,22,41.93,19.5,39.59,2.3,764.5666666667,94,4,43.6666666667,1.4333333333,34.191507136,34.191507136 -350,0,20.39,39.9,17.1,46.23,20.79,38.1266666667,20,36,18.39,47.1633333333,2.9666666667,71.8333333333,20.2,30.29,21.9266666667,41.6566666667,19.5,39.645,2.35,764.6,93.5,4,47.5,1.4,28.9676667308,28.9676667308 -180,0,20.39,40.4333333333,17.1,46.29,20.79,38.2,20,36.23,18.39,47.29,3,71.5633333333,20.2,30.29,21.89,41.3633333333,19.5,39.7,2.4,764.6333333333,93,4,51.3333333333,1.3666666667,35.0094308029,35.0094308029 -110,0,20.39,40.5266666667,17.1666666667,46.29,20.76,38.1633333333,20,36.29,18.39,47.29,2.86,70.6966666667,20.2,30.26,21.89,41.1566666667,19.5,39.7,2.45,764.6666666667,92.5,4,55.1666666667,1.3333333333,7.3829530622,7.3829530622 -100,0,20.39,40.3266666667,17.2,46.0266666667,20.7,38.1633333333,19.9266666667,36.2,18.39,47.1633333333,2.6633333333,70.3333333333,20.1333333333,30.0666666667,21.8566666667,40.6233333333,19.6,39.59,2.5,764.7,92,4,59,1.3,48.8251443487,48.8251443487 -70,0,20.39,40.5,17.26,45.8266666667,20.73,38.09,19.9266666667,36.0666666667,18.39,47.03,2.59,70.5933333333,20.1,29.945,21.79,40.0966666667,19.6,39.59,2.7,764.7166666667,90,4.1666666667,53,1.1666666667,17.0435168548,17.0435168548 -90,0,20.39,40.36,17.29,45.49,20.79,38.09,19.9633333333,35.8333333333,18.39,46.8633333333,2.59,70.7266666667,20.0666666667,29.76,21.79,39.55,19.6,39.5,2.9,764.7333333333,88,4.3333333333,47,1.0333333333,32.1215716191,32.1215716191 -80,10,20.4266666667,40.0266666667,17.3566666667,45.1566666667,20.79,38.06,19.89,35.7,18.4633333333,46.79,2.6633333333,70.7266666667,20,29.6333333333,21.76,39.1333333333,19.6,39.4333333333,3.1,764.75,86,4.5,41,0.9,5.3792281193,5.3792281193 -90,0,20.4175,39.7225,17.4266666667,44.7233333333,20.79,38,19.9266666667,35.8,18.73,49.7966666667,2.73,70.2333333333,20,29.5666666667,21.7,38.86,19.6333333333,39.2,3.3,764.7666666667,84,4.6666666667,35,0.7666666667,30.4675297928,30.4675297928 -70,0,20.39,39.53,17.525,44.315,20.79,38,20,36.1333333333,18.8566666667,52.59,2.8633333333,69.4266666667,20,29.5,21.7,38.4666666667,19.7,39,3.5,764.7833333333,82,4.8333333333,29,0.6333333333,8.913687116,8.913687116 -370,10,20.39,39.26,17.6,43.9633333333,20.79,37.9,20.2,36.4333333333,18.89,51.5266666667,3.1266666667,66.93,20,29.29,21.7,38.2666666667,19.73,38.56,3.7,764.8,80,5,23,0.5,16.9327334967,16.9327334967 -780,0,20.39,39.1266666667,18.0233333333,43.7333333333,20.79,37.9666666667,20.3425,36.545,18.89,50.5266666667,3.3975,62.9425,20,29.23,21.6666666667,37.93,19.8566666667,38.3,4,764.8166666667,77.6666666667,5.3333333333,24,0.35,25.1491625793,25.1491625793 -460,0,20.5,39.2,18.5633333333,42.9933333333,20.96,39.2966666667,20.53,36.5,18.9633333333,49.6333333333,3.7233333333,60.1933333333,20,29.6,21.6,37.73,19.89,37.8333333333,4.3,764.8333333333,75.3333333333,5.6666666667,25,0.2,28.7096231594,28.7096231594 -370,0,20.5,39.1266666667,19.0966666667,42.0333333333,21.2266666667,40.7566666667,20.73,36.3633333333,18.8233333333,49.3,4.0633333333,56.1566666667,20.0666666667,31,21.6,37.4666666667,19.89,37.5666666667,4.6,764.85,73,6,26,0.05,46.9294259092,46.9294259092 -300,0,20.5,39.6666666667,19.4966666667,41.3666666667,21.5666666667,40.96,20.8566666667,36.29,18.79,48.6933333333,4.33,52.3633333333,20.1,31.5266666667,21.6,37.3266666667,19.79,37.39,4.9,764.8666666667,70.6666666667,6.3333333333,27,-0.1,8.2149228663,8.2149228663 -320,0,20.5666666667,39.9333333333,19.96,40.66,21.8266666667,40.7,21.1333333333,36.1633333333,18.73,48.3,4.7266666667,48.6566666667,20.1,32.06,21.5,37.4666666667,19.79,37.7966666667,5.2,764.8833333333,68.3333333333,6.6666666667,28,-0.25,28.4411440371,28.4411440371 -300,0,20.6333333333,40.1933333333,20.2933333333,40.1333333333,22.0333333333,40.2233333333,21.26,36.03,18.7,47.9,5.1266666667,44.73,20.1,31.6933333333,21.5666666667,37.86,19.76,37.7333333333,5.5,764.9,66,7,29,-0.4,13.8630651636,13.8630651636 -210,0,20.7,40.4,20.5966666667,39.4,22.1666666667,39.89,21.3233333333,35.8633333333,18.7,47.5666666667,5.4633333333,40.3,20.1,31.1666666667,21.6,38.2233333333,19.745,37.4466666667,5.6666666667,764.8833333333,64.3333333333,7.5,30.8333333333,-0.6166666667,29.3974951259,29.3974951259 -120,0,20.73,40.5,20.8566666667,39,22.23,39.4666666667,21.39,35.6566666667,18.7,47.245,5.7966666667,38.3,20.1,30.5633333333,21.5333333333,38.03,19.79,37.9,5.8333333333,764.8666666667,62.6666666667,8,32.6666666667,-0.8333333333,41.1484402372,41.1484402372 -50,0,20.79,40.3,21.1633333333,38.7233333333,22.3566666667,39.4666666667,21.5,35.3333333333,18.7,47.29,6.1233333333,34.36,20.1,30.0966666667,21.5,37.6333333333,19.79,38.23,6,764.85,61,8.5,34.5,-1.05,24.3292225525,24.3292225525 -180,0,20.79,39.93,21.3566666667,38.39,22.4633333333,39.1933333333,21.5,35,18.7,47.23,6.33,30.7,20.1,29.5966666667,21.5,37.36,19.79,38.3633333333,6.1666666667,764.8333333333,59.3333333333,9,36.3333333333,-1.2666666667,15.407088818,15.407088818 -200,0,20.79,39.79,21.5666666667,38,22.3233333333,38.9333333333,21.5,34.6333333333,18.6666666667,46.93,6.4,28.9266666667,20.1,29.1966666667,21.5,37.0266666667,19.7,38.4,6.3333333333,764.8166666667,57.6666666667,9.5,38.1666666667,-1.4833333333,2.8603613377,2.8603613377 -230,0,20.89,39.9,21.5,38.1333333333,22.26,38.5266666667,21.5,34.4333333333,18.6,46.6566666667,6.4666666667,29,20.1,28.7266666667,21.5,36.6933333333,19.7,38.6566666667,6.5,764.8,56,10,40,-1.7,26.152242173,26.152242173 -110,0,20.89,39.9666666667,21.6,39.0333333333,22.2,38.3266666667,21.4633333333,34.1333333333,18.6,46.4666666667,6.6233333333,27.7233333333,20.1,28.46,21.5,36.43,19.7,39.1233333333,6.5833333333,764.8,56,9.8333333333,38.1666666667,-1.6166666667,24.0931742475,24.0931742475 -50,0,20.9266666667,40.3,21.5333333333,38.5,22.1666666667,38.1633333333,21.39,33.9333333333,18.6,46.4,6.69,25.99,20.2,28.1,21.4266666667,36.1566666667,19.79,39.36,6.6666666667,764.8,56,9.6666666667,36.3333333333,-1.5333333333,17.8795243613,17.8795243613 -70,0,21,41.36,21.5333333333,38.06,22.1,38.1633333333,21.39,33.76,18.6,46.4333333333,6.9633333333,23.0233333333,20.23,27.76,21.5333333333,36.5966666667,19.79,39.5,6.75,764.8,56,9.5,34.5,-1.45,13.9345700154,13.9345700154 -130,0,21.1,42.0566666667,21.5333333333,37.9333333333,22.0666666667,38.3633333333,21.39,33.6266666667,18.6,46.5,7.23,22.29,20.3566666667,27.5666666667,21.6,36.79,19.79,39.4666666667,6.8333333333,764.8,56,9.3333333333,32.6666666667,-1.3666666667,27.3850806989,27.3850806989 -50,0,21.1,41.3475,21.5,37.8633333333,22,38.3633333333,21.5,33.8966666667,18.6,46.59,7.5,21.6633333333,20.3233333333,27.26,21.6,36.79,19.79,39.3266666667,6.9166666667,764.8,56,9.1666666667,30.8333333333,-1.2833333333,45.6047233543,45.6047233543 -80,0,21.1,40.7266666667,21.5,37.6566666667,21.9633333333,38.43,21.5,34.49,18.6,46.53,7.5475,21.345,20.39,27.2,21.5,36.8633333333,19.79,39.29,7,764.8,56,9,29,-1.2,12.7981890109,12.7981890109 -90,0,21.1,40.0266666667,21.445,37.145,21.865,38.0925,21.5,35.7333333333,18.6,46.2233333333,7.8966666667,20.7966666667,20.39,26.9633333333,21.5666666667,36.6566666667,19.79,39.29,7.0166666667,764.8,56.3333333333,8.8333333333,29,-1.1333333333,0.8818684379,0.8818684379 -70,0,21.1,39.7666666667,21.39,36.93,21.8566666667,38.0266666667,21.5,36.5975,18.6,46.03,8.13,20.6,20.39,26.8233333333,21.6,36.5,19.73,39.26,7.0333333333,764.8,56.6666666667,8.6666666667,29,-1.0666666667,41.3627330796,41.3627330796 -300,0,21.1,39.43,21.3233333333,36.73,21.89,38.6566666667,21.4266666667,36.4633333333,18.6,45.76,8.3966666667,20.2,20.39,26.7,21.6,36.5,19.73,39.1266666667,7.05,764.8,57,8.5,29,-1,2.4739741348,2.4739741348 -100,0,21.1,39.29,21.26,36.7,21.8233333333,38.5966666667,21.39,35.99,18.6,45.5666666667,8.89,18.69,20.39,26.7,21.5,36.29,19.7,39,7.0666666667,764.8,57.3333333333,8.3333333333,29,-0.9333333333,29.7624983476,29.7624983476 -40,0,21.1,39.2333333333,21.2,36.5666666667,21.76,38.3333333333,21.39,35.6566666667,18.6,45.29,8.89,18.4966666667,20.39,26.5666666667,21.5,36.23,19.7,38.9333333333,7.0833333333,764.8,57.6666666667,8.1666666667,29,-0.8666666667,49.063328607,49.063328607 -160,0,21.1,38.6933333333,21.0666666667,36.4666666667,21.7,38.0666666667,21.3233333333,35.2966666667,18.6,45.1566666667,8.8266666667,17.6233333333,20.4633333333,26.5666666667,21.5333333333,36.1,19.79,38.2,7.1,764.8,58,8,29,-0.8,28.4719587653,28.4719587653 -90,0,21.2,39.9266666667,21.0666666667,36.3266666667,21.6,37.7,21.3233333333,34.9633333333,18.6,44.9666666667,9.16,16.6233333333,20.6,26.3566666667,21.6666666667,35.7666666667,19.73,38.2,7.1833333333,764.7333333333,57.3333333333,8,28.6666666667,-0.8833333333,36.3730538287,36.3730538287 -120,0,21.2,39.0666666667,21,36.26,21.6,37.6266666667,21.29,34.6633333333,18.6,44.8266666667,8.9633333333,15.3666666667,20.6,26.23,21.8233333333,35.59,19.7,38.09,7.2666666667,764.6666666667,56.6666666667,8,28.3333333333,-0.9666666667,7.5917985057,7.5917985057 -90,0,21.23,38.49,20.9266666667,36.2,21.6,37.59,21.29,34.4633333333,18.6,44.645,8.63,16.1666666667,20.6333333333,26.1,21.89,35.59,19.7,38.09,7.35,764.6,56,8,28,-1.05,15.9118904383,15.9118904383 -100,20,21.29,38.03,20.89,35.93,21.6,37.53,21.29,34.4333333333,18.6,44.56,9.2933333333,15.8333333333,20.7,26.0333333333,22.1333333333,35.56,19.7,37.9666666667,7.4333333333,764.5333333333,55.3333333333,8,27.6666666667,-1.1333333333,34.9844899843,34.9844899843 -90,10,21.29,37.5266666667,20.89,35.73,21.6,37.5,21.29,34.56,18.6,44.36,9.5,15.2333333333,20.7,25.89,22.2,35.4333333333,19.7,37.9,7.5166666667,764.4666666667,54.6666666667,8,27.3333333333,-1.2166666667,42.7421987522,42.7421987522 -530,30,21.29,37.4,20.79,35.5666666667,21.6,37.5,21.29,34.6633333333,18.6,44.1633333333,9.7333333333,14.7566666667,20.7,25.8233333333,22.29,35.3333333333,19.745,37.9,7.6,764.4,54,8,27,-1.3,18.9139740076,18.9139740076 -710,30,21.29,37.7566666667,20.73,35.9,21.6,37.5666666667,21.29,34.59,18.6,43.9633333333,10,13.5566666667,20.7,25.7,22.29,35.0666666667,19.7,37.8333333333,7.75,764.3666666667,53,8,26.8333333333,-1.4,13.7716056895,13.7716056895 -420,30,21.29,38.63,20.6666666667,36.3,21.7266666667,38.2933333333,21.39,34.5,18.6,43.9,10.19,12.56,20.7,25.6333333333,22.3233333333,35,19.7,37.6266666667,7.9,764.3333333333,52,8,26.6666666667,-1.5,49.4221959496,49.4221959496 -340,20,21.29,39.6,20.6,36.7666666667,22.0666666667,39.2666666667,21.39,34.4333333333,18.6,43.9666666667,10.19,12.56,20.7,25.445,22.4633333333,34.9333333333,19.7,37.4666666667,8.05,764.3,51,8,26.5,-1.6,6.7012580694,6.7012580694 -340,30,21.3566666667,40.1933333333,20.5666666667,37.5966666667,22.26,39.6,21.5,34.3633333333,18.7,44.23,10.19,12.0933333333,20.7,25.29,22.6333333333,34.9,19.7,37.3266666667,8.2,764.2666666667,50,8,26.3333333333,-1.7,48.8976443419,48.8976443419 -270,30,21.39,40.4633333333,20.5,38.0633333333,22.5666666667,39.7233333333,21.5,34.29,18.7,44.3633333333,10.4633333333,12.1666666667,20.76,25.23,22.76,34.9,19.7,37.5,8.35,764.2333333333,49,8,26.1666666667,-1.8,32.1101121721,32.1101121721 -300,30,21.4633333333,40.8633333333,20.5,38.8,22.76,39.59,21.6333333333,34.2,18.6333333333,44.4633333333,10.345,11.645,20.79,25.2,22.84,34.79,19.7,37.76,8.5,764.2,48,8,26,-1.9,30.0258395611,30.0258395611 -210,20,21.5,41.045,20.5,39.1333333333,22.9266666667,39.5266666667,21.7,34.1266666667,18.6333333333,44.6633333333,10.19,11.9266666667,20.79,25.1333333333,22.9266666667,34.6633333333,19.73,37.9333333333,8.4666666667,764.1666666667,48.1666666667,8,26.5,-1.9166666667,8.105341217,8.105341217 -130,20,21.5,40.7966666667,20.445,39.245,23.075,39.2,21.7,34,18.6333333333,44.8266666667,10.13,11.7933333333,20.79,25,23,34.53,19.73,38,8.4333333333,764.1333333333,48.3333333333,8,27,-1.9333333333,7.1914521861,7.1914521861 -80,10,21.5,40.39,20.39,39.0266666667,23.1,38.86,21.7225,33.82,18.6777777778,45.0188888889,9.9333333333,12.1,20.79,24.9266666667,23,34.4666666667,19.79,38,8.4,764.1,48.5,8,27.5,-1.95,38.1215115194,38.1215115194 -90,30,21.5,40.1933333333,20.3233333333,38.9,23.0666666667,38.46,21.73,33.5666666667,18.6333333333,45.03,9.8,12.2933333333,20.76,24.8566666667,23,34.4,19.73,38,8.3666666667,764.0666666667,48.6666666667,8,28,-1.9666666667,39.0979407821,39.0979407821 -110,20,21.5,39.8,20.29,38.7233333333,22.9266666667,38.0666666667,21.7,33.59,18.7,45,9.83,11.8266666667,20.7,24.79,23,34.4,19.7,38.09,8.3333333333,764.0333333333,48.8333333333,8,28.5,-1.9833333333,10.8552465215,10.8552465215 -90,30,21.5,39.3233333333,20.23,38.1966666667,22.76,37.6333333333,21.76,33.7233333333,18.7,45,9.9633333333,12.2933333333,20.7,24.79,23,34.5266666667,19.7,38.03,8.3,764,49,8,29,-2,35.7348593883,35.7348593883 -70,30,21.5,37.93,20,35.8333333333,22.6333333333,36.8933333333,21.79,33.56,18.7,44.9475,10.0333333333,11.8666666667,20.76,24.73,23.1,34.79,19.7,37.8266666667,8.1833333333,764.0166666667,49.1666666667,8.1666666667,28.6666666667,-2.0666666667,14.6541803144,14.6541803144 -90,20,21.4633333333,36.3966666667,19.9266666667,35.1666666667,22.5,35.7333333333,21.79,33.3,18.7,44.5966666667,10.1,11.8666666667,20.79,24.6666666667,23.1,34.73,19.7,37.9,8.0666666667,764.0333333333,49.3333333333,8.3333333333,28.3333333333,-2.1333333333,13.553657243,13.553657243 -100,20,21.39,35.3233333333,19.8566666667,34.1966666667,22.5,35.1333333333,21.79,32.9666666667,18.7,44.1,10.0666666667,11.7933333333,20.79,24.6,23.1,34.56,19.7,37.9,7.95,764.05,49.5,8.5,28,-2.2,45.1582050067,45.1582050067 -90,20,21.3566666667,34.56,19.79,33.6566666667,22.39,34.76,21.79,32.8266666667,18.6333333333,43.6333333333,9.8666666667,11.5333333333,20.76,24.6,23.1,34.4333333333,19.7,37.9,7.8333333333,764.0666666667,49.6666666667,8.6666666667,27.6666666667,-2.2666666667,46.7275704956,46.7275704956 -640,20,21.3566666667,34.2266666667,19.76,33.2333333333,22.3233333333,34.3666666667,21.79,32.5266666667,18.7,43.145,9.66,11.6933333333,20.7,24.5333333333,23.2,34.29,19.7,37.9,7.7166666667,764.0833333333,49.8333333333,8.8333333333,27.3333333333,-2.3333333333,22.6499670302,22.6499670302 -600,20,21.29,33.4666666667,19.6333333333,32.5666666667,22.23,33.89,21.79,32.06,18.7,42.76,9.7333333333,12.36,20.7,24.5,23.26,34.29,19.7,37.9,7.6,764.1,50,9,27,-2.4,16.4584602928,16.4584602928 -330,10,21.29,33.0666666667,19.6,32.4333333333,22.3566666667,34.1633333333,21.76,31.4666666667,18.7,42.5666666667,9.5,12.4933333333,20.7,24.5,23.29,34.1,19.7,37.745,7.5166666667,764.1666666667,51,8.6666666667,26.6666666667,-2.1833333333,19.9397866149,19.9397866149 -350,0,21.2,33.1666666667,19.5333333333,32.56,22.6633333333,34.5966666667,21.76,31.2,18.7,42.3633333333,9.1666666667,13.4933333333,20.7,24.5,23.29,33.7666666667,19.7,37.79,7.4333333333,764.2333333333,52,8.3333333333,26.3333333333,-1.9666666667,8.4723731386,8.4723731386 -320,10,21.26,34.2333333333,19.5,33,22.93,34.8633333333,21.7,31.2,18.7,42.23,9.1,13.7266666667,20.7,24.5,23.29,33.59,19.7,37.79,7.35,764.3,53,8,26,-1.75,10.4506994598,10.4506994598 -420,10,21.29,34.4,19.5,33.3333333333,23.2,34.76,21.6333333333,31.1333333333,18.7,42,8.96,13.8,20.7,24.445,23.29,33.53,19.7,37.7,7.2666666667,764.3666666667,54,7.6666666667,25.6666666667,-1.5333333333,41.3780967821,41.3780967821 -510,0,21.23,34.2,19.39,33.5666666667,23.26,34.76,21.6,31.2633333333,18.7,41.9333333333,8.65,14.1,20.6666666667,24.4633333333,23.3233333333,33.53,19.7,37.76,7.1833333333,764.4333333333,55,7.3333333333,25.3333333333,-1.3166666667,17.3569793697,17.3569793697 -740,20,21.29,34.6333333333,19.39,34.0333333333,23.4266666667,34.66,21.6,31.4633333333,18.7,41.8633333333,8.3233333333,14.9633333333,20.6,24.39,23.39,33.59,19.6666666667,37.76,7.1,764.5,56,7,25,-1.1,29.9593663192,29.9593663192 -590,20,21.29,36.6333333333,19.39,35.3633333333,23.5666666667,34.5266666667,21.5333333333,31.5966666667,18.7,41.8633333333,8.13,16.3633333333,20.6,24.4266666667,23.39,33.5,19.6666666667,37.76,7.0166666667,764.55,56.1666666667,7,25.1666666667,-1.1666666667,22.6201703539,22.6201703539 -390,20,21.445,40.05,19.39,36.89,23.6,35.03,21.6,31.99,18.7,42.1933333333,7.9333333333,17.6633333333,20.5333333333,24.5,23.4725,33.5675,19.6333333333,37.73,6.9333333333,764.6,56.3333333333,7,25.3333333333,-1.2333333333,4.6576403431,4.6576403431 -760,30,21.6,41.1966666667,19.5,38.5666666667,23.4975,35.3725,21.6,32.5,18.7,42.66,7.7266666667,17.93,20.5,24.6,23.5,33.6633333333,19.6333333333,37.73,6.85,764.65,56.5,7,25.5,-1.3,44.8056944297,44.8056944297 -560,20,21.6666666667,40.1966666667,19.525,38.8725,23.39,35.9333333333,21.6,32.875,18.6666666667,43.0666666667,7.6566666667,18.36,20.5,24.6666666667,23.5,33.7,19.6,37.7,6.7666666667,764.7,56.6666666667,7,25.6666666667,-1.3666666667,13.1451266352,13.1451266352 -340,10,21.8233333333,40.1333333333,19.6,38.79,23.6333333333,37.0666666667,21.6,33.06,18.6666666667,43.26,7.53,18.6933333333,20.39,24.6333333333,23.5,33.76,19.6,37.7,6.6833333333,764.75,56.8333333333,7,25.8333333333,-1.4333333333,35.5582436081,35.5582436081 -320,0,22.0966666667,39.9333333333,19.73,39.23,23.8266666667,37.66,21.6,33.06,18.7,43.5666666667,7.2633333333,19.1966666667,20.39,24.7,23.5,33.5266666667,19.6,37.7,6.6,764.8,57,7,26,-1.5,12.4767017667,12.4767017667 -270,20,22.3233333333,39.26,19.79,39.23,24.1633333333,38.1266666667,21.6,32.9333333333,18.7,43.8333333333,6.9966666667,19.6566666667,20.39,24.79,23.5,33.4,19.6,37.7,6.4333333333,764.85,57.6666666667,6.8333333333,25.6666666667,-1.4833333333,44.8309648316,44.8309648316 -180,20,22.39,39,19.8566666667,39.1333333333,24.29,38.0666666667,21.6,32.9333333333,18.7,44.03,6.4666666667,21.06,20.39,24.8566666667,23.5333333333,33.5,19.6,37.7,6.2666666667,764.9,58.3333333333,6.6666666667,25.3333333333,-1.4666666667,8.7208407233,8.7208407233 -140,30,22.4266666667,38.76,19.8566666667,38.9333333333,24.3233333333,37.66,21.6,33.06,18.7,44.1633333333,6.3333333333,21.7933333333,20.3233333333,24.9266666667,23.6,33.56,19.6,37.5666666667,6.1,764.95,59,6.5,25,-1.45,23.4058432397,23.4058432397 -130,20,22.5,38.5,19.9266666667,38.7233333333,24.3233333333,37.1333333333,21.6,33.09,18.7,44.2,6.1266666667,22.3333333333,20.3233333333,25,23.6,33.59,19.6,37.3333333333,5.9333333333,765,59.6666666667,6.3333333333,24.6666666667,-1.4333333333,39.7746462841,39.7746462841 -140,20,22.5333333333,38.1333333333,20,38.4633333333,24.0666666667,36.6333333333,21.6,33.09,18.7,44.1266666667,5.8666666667,23.06,20.29,25,23.6,33.59,19.6,37,5.7666666667,765.05,60.3333333333,6.1666666667,24.3333333333,-1.4166666667,17.073292681,17.073292681 -120,20,22.6,37.9333333333,20.1,38.1933333333,23.9266666667,36.36,21.7,33.4633333333,18.7,44.09,5.5266666667,23.8,20.29,25,23.6,33.56,19.6,36.6566666667,5.6,765.1,61,6,24,-1.4,23.9270204678,23.9270204678 -130,30,22.6,37.56,20.1,38,23.7266666667,36.0266666667,21.76,33.6633333333,18.7,44.2,5.3333333333,24.3333333333,20.23,25,23.6,33.56,19.6,36.6566666667,5.4333333333,765.15,61.5,5.8333333333,23.6666666667,-1.45,13.039179577,13.039179577 -140,20,22.6,37.36,20.2,37.6933333333,23.6,35.8266666667,21.79,33.8266666667,18.7,44.2,5.06,24.7333333333,20.23,25,23.6,33.53,19.6,36.2,5.2666666667,765.2,62,5.6666666667,23.3333333333,-1.5,49.2917573079,49.2917573079 -160,20,22.7,37.2233333333,20.2,37.36,23.5666666667,35.6633333333,21.79,33.9,18.7,44.09,4.9333333333,25,20.2,25,23.6,33.59,19.6,35.7233333333,5.1,765.25,62.5,5.5,23,-1.55,21.9190796139,21.9190796139 -140,20,22.7,36.83,20.23,37.29,23.5,35.59,21.8233333333,33.9633333333,18.7,44.09,4.745,25.195,20.2,25,23.6,33.3633333333,19.6,35.4633333333,4.9333333333,765.3,63,5.3333333333,22.6666666667,-1.6,36.533328041,36.533328041 -140,20,22.7,36.2966666667,20.29,37.1566666667,23.39,35.53,21.89,34.09,18.7,44.06,4.59,24.89,20.2,25,23.6,33.3633333333,19.6,35.1333333333,4.7666666667,765.35,63.5,5.1666666667,22.3333333333,-1.65,34.0436136001,34.0436136001 -130,30,22.7,36.03,20.29,36.93,23.3233333333,35.59,21.89,34.09,18.7,44,4.4633333333,24.9633333333,20.1666666667,25,23.7,33.4,19.6,34.9333333333,4.6,765.4,64,5,22,-1.7,45.3824729775,45.3824729775 -120,0,22.7,35.8333333333,20.29,36.73,23.26,35.56,21.89,34.09,18.7,43.9,4.2633333333,25.7333333333,20.1,25,23.7,33.4,19.6,34.7233333333,4.5666666667,765.4333333333,64,5,22.1666666667,-1.7166666667,38.0433383631,38.0433383631 -70,0,22.7,35.5666666667,20.29,36.73,23.2,35.5,22,34.0266666667,18.7,43.8266666667,4.1233333333,26.4,20.1,25,23.7,33.53,19.6,34.53,4.5333333333,765.4666666667,64,5,22.3333333333,-1.7333333333,42.6825845381,42.6825845381 -90,0,22.6666666667,35.4666666667,20.29,36.8633333333,23.1,35.5,21.9266666667,33.7666666667,18.7,43.79,4,27.3,20.1,25,23.7,33.7233333333,19.5333333333,34.4,4.5,765.5,64,5,22.5,-1.75,12.7343382104,12.7343382104 -100,10,22.65,35.35,20.26,36.93,23.1,35.5,21.8566666667,33.3633333333,18.7,43.73,4,27.5666666667,20.1,25,23.6,34.0666666667,19.5333333333,34.3266666667,4.4666666667,765.5333333333,64,5,22.6666666667,-1.7666666667,22.6921516703,22.6921516703 -90,0,22.6,35.26,20.175,36.7675,23,35.4,21.7675,32.7225,18.7,43.6633333333,3.8633333333,28.1333333333,20.1,25,23.575,34.3925,19.5,34.09,4.4333333333,765.5666666667,64,5,22.8333333333,-1.7833333333,39.2464307486,39.2464307486 -90,0,22.6,35.1633333333,20.1,36.6266666667,23,35.4,21.6333333333,32.1933333333,18.7,43.59,3.73,28.5266666667,20.0666666667,24.9633333333,23.5,34.53,19.5,34.03,4.4,765.6,64,5,23,-1.8,29.585658689,29.585658689 -40,10,22.6,35.1633333333,20.0666666667,36.6266666667,22.9266666667,35.4,21.6,32.06,18.7,43.59,3.6266666667,29.0566666667,20,24.9633333333,23.39,34.4333333333,19.5,33.8633333333,4.25,765.6166666667,64.8333333333,4.8333333333,22.8333333333,-1.8,49.4021872408,49.4021872408 -60,0,22.5666666667,35.2,19.9266666667,36.5666666667,22.89,35.4333333333,21.6,32.4,18.7,43.4633333333,3.7,29.4633333333,20.1,25.5666666667,23.39,34.6933333333,19.5,34.4566666667,4.1,765.6333333333,65.6666666667,4.6666666667,22.6666666667,-1.8,46.3798677665,46.3798677665 -40,0,22.5,35.2,19.8566666667,36.5,22.89,35.5,21.5,32.29,18.7,43.29,3.59,29.96,20.1,25.76,23.39,35.33,19.5333333333,35.7266666667,3.95,765.65,66.5,4.5,22.5,-1.8,44.278134976,44.278134976 -40,0,22.5,35.29,19.79,36.56,22.8566666667,35.56,21.5,32.29,18.7,43.3633333333,3.6633333333,30.4333333333,20.1,26.0333333333,23.39,35.9966666667,19.6,36.2666666667,3.8,765.6666666667,67.3333333333,4.3333333333,22.3333333333,-1.8,28.464706603,28.464706603 -30,0,22.4266666667,35.23,19.7,36.9333333333,22.79,35.56,21.39,32.2,18.7,43.4333333333,3.56,30.5933333333,20.1,26.1666666667,23.39,36.5966666667,19.5333333333,36.8,3.65,765.6833333333,68.1666666667,4.1666666667,22.1666666667,-1.8,45.9947634023,45.9947634023 -30,0,22.39,35.3266666667,19.6333333333,37.06,22.79,35.6266666667,21.3233333333,32.2,18.7,43.5,3.4333333333,31.1333333333,20.1,26.3233333333,23.39,37.0633333333,19.6,37.1333333333,3.5,765.7,69,4,22,-1.8,14.5086698816,14.5086698816 -40,0,22.3233333333,35.4666666667,19.5666666667,37.1266666667,22.79,35.7,21.29,32.2,18.6,43.5,3.29,31.8,20.1,26.4633333333,23.39,37.6566666667,19.6,37.36,3.3333333333,765.7166666667,69.6666666667,3.8333333333,21.6666666667,-1.8166666667,12.8115689033,12.8115689033 -50,0,22.29,35.59,19.5,37.26,22.76,35.7,21.29,32.26,18.6,43.59,3.1566666667,32.1933333333,20.1,26.5666666667,23.3233333333,37.93,19.6,37.56,3.1666666667,765.7333333333,70.3333333333,3.6666666667,21.3333333333,-1.8333333333,36.0477072769,36.0477072769 -50,0,22.29,35.6633333333,19.39,37.4333333333,22.7,35.76,21.2,32.2,18.6,43.59,2.845,33.495,20.1,26.7,23.23,37.9633333333,19.6,37.745,3,765.75,71,3.5,21,-1.85,8.1394353299,8.1394353299 -60,0,22.26,35.7,19.3233333333,37.6333333333,22.7,35.73,21.1333333333,32.2,18.6,43.7,2.7233333333,33.9333333333,20.1,26.79,23.23,38.03,19.6,37.8266666667,2.8333333333,765.7666666667,71.6666666667,3.3333333333,20.6666666667,-1.8666666667,24.1068175877,24.1068175877 -40,0,22.2,35.76,19.2,37.6266666667,22.7,35.79,21.1,32.29,18.6,43.76,2.53,35.0666666667,20.1,26.8566666667,23.1666666667,37.9333333333,19.5333333333,37.9,2.6666666667,765.7833333333,72.3333333333,3.1666666667,20.3333333333,-1.8833333333,49.0170510835,49.0170510835 -60,0,22.1,35.79,19.2,37.9,22.6666666667,35.8633333333,21.1,32.29,18.6,43.9333333333,2.4666666667,35.29,20.05,26.945,23.1,37.9333333333,19.6,38.03,2.5,765.8,73,3,20,-1.9,35.7393013895,35.7393013895 -40,0,22.1,35.8633333333,19.1,38.1266666667,22.6,35.8633333333,21.0666666667,32.29,18.6,44,2.2666666667,35.8233333333,20,27,23.0666666667,37.8633333333,19.5333333333,38.1633333333,2.4166666667,765.8166666667,73.6666666667,3.1666666667,20,-1.85,30.1604000968,30.1604000968 -60,0,22.0666666667,35.9666666667,19.0333333333,38.1266666667,22.6,35.8266666667,21,32.29,18.6,44.09,2.09,36.9966666667,20,27.0666666667,23,37.8633333333,19.6,38.23,2.3333333333,765.8333333333,74.3333333333,3.3333333333,20,-1.8,37.8299107077,37.8299107077 -50,0,22,35.9,18.89,38.2,22.6,35.9,21,32.3266666667,18.6,44.1633333333,2.1633333333,37.7966666667,20,27.1333333333,23,37.9633333333,19.5333333333,38.29,2.25,765.85,75,3.5,20,-1.75,2.1291219629,2.1291219629 -60,0,22,35.9,18.89,38.26,22.6,35.9,21,32.4,18.6,44.23,2.06,38,20,27.2,22.9266666667,38.1633333333,19.5666666667,38.4,2.1666666667,765.8666666667,75.6666666667,3.6666666667,20,-1.7,44.6288524079,44.6288524079 -50,0,21.9175,35.9,18.79,38.2,22.6666666667,35.9666666667,20.89,32.4333333333,18.6,44.29,2.06,39.2,20,27.2,22.89,38.5,19.5,38.4666666667,2.0833333333,765.8833333333,76.3333333333,3.8333333333,20,-1.65,38.3346221992,38.3346221992 -50,0,21.89,35.9666666667,18.7675,38.295,22.6,35.9,20.865,32.425,18.6,44.4,2.1333333333,39.6233333333,20,27.26,22.8233333333,38.56,19.6,38.53,2,765.9,77,4,20,-1.6,23.6144055845,23.6144055845 -50,0,21.79,36,18.6333333333,38.3266666667,22.6,35.975,20.79,32.4,18.6,44.4,2,40.03,20,27.29,22.79,38.8,19.5333333333,38.59,1.8,765.9166666667,78,4,27.3333333333,-1.6333333333,44.8797989637,44.8797989637 -50,0,21.79,36.06,18.6,38.2,22.6,36,20.79,32.5,18.6,44.4333333333,1.8633333333,40.59,20,27.3566666667,22.79,39.1933333333,19.6,38.59,1.6,765.9333333333,79,4,34.6666666667,-1.6666666667,20.3573768609,20.3573768609 -40,0,21.76,36.09,18.5333333333,38.26,22.6,35.9333333333,20.79,32.5,18.6,44.5,1.79,42.0566666667,20,27.4266666667,22.79,39.6,19.6,38.6633333333,1.4,765.95,80,4,42,-1.7,38.3585256175,38.3585256175 -60,0,21.7,36.09,18.5,38.29,22.6,36,20.76,32.59,18.5,44.53,1.7,42.86,20,27.5,22.76,40.0666666667,19.5333333333,38.73,1.2,765.9666666667,81,4,49.3333333333,-1.7333333333,47.0815622248,47.0815622248 -50,0,21.7,36.2,18.4266666667,38.29,22.6,36,20.7,32.6633333333,18.5666666667,44.59,1.7,43.66,20,27.5,22.7,40.26,19.6,38.79,1,765.9833333333,82,4,56.6666666667,-1.7666666667,38.2594886934,38.2594886934 -50,0,21.6333333333,36.2,18.29,38.4333333333,22.6,36,20.7,32.7,18.5666666667,44.59,1.76,44.2,20,27.5,22.7,40.5,19.6,38.9,0.8,766,83,4,64,-1.8,32.5336571783,32.5336571783 -50,0,21.6,36.2,18.29,38.56,22.5333333333,36,20.7,32.7,18.5,44.59,1.625,44.4225,19.9266666667,27.6,22.7,40.76,19.6,38.9,0.8,766,82.8333333333,4,64,-1.8166666667,46.1669201963,46.1669201963 -30,0,21.5333333333,36.2,18.26,38.7,22.6,36,20.6666666667,32.7,18.55,44.645,1.6,45.03,19.9266666667,27.6,22.6,40.73,19.6,38.9333333333,0.8,766,82.6666666667,4,64,-1.8333333333,13.5000979062,13.5000979062 -30,0,21.5,36.23,18.2,38.76,22.5,36,20.6,32.7,18.5666666667,44.7,1.5666666667,45.2566666667,19.89,27.7,22.6,40.99,19.6,39,0.8,766,82.5,4,64,-1.85,48.0025792378,48.0025792378 -30,0,21.5,36.29,18.1666666667,38.9633333333,22.5,36.06,20.6,32.73,18.5666666667,44.7,1.5,45.53,19.89,27.7,22.6,41.1266666667,19.5,39.045,0.8,766,82.3333333333,4,64,-1.8666666667,22.0662429347,22.0662429347 -30,0,21.39,36.2,18.1,39.2233333333,22.39,36.09,20.6,32.79,18.5,44.7,1.2,45.5666666667,19.89,27.7,22.6,41.2,19.6,39.2,0.8,766,82.1666666667,4,64,-1.8833333333,13.1210909109,13.1210909109 -60,0,21.39,36.2,18,39.3266666667,22.39,36.09,20.5666666667,32.79,18.5,44.76,1.1333333333,46.9666666667,19.89,27.7,22.5333333333,41.29,19.6,39.2,0.8,766,82,4,64,-1.9,18.1295890128,18.1295890128 -50,0,21.39,36.29,18,39.4666666667,22.39,36.2,20.5,32.8633333333,18.5,44.79,1.1,47.6566666667,19.89,27.79,22.6,41.23,19.5333333333,39.2,0.7666666667,766,82.1666666667,3.8333333333,64,-1.9166666667,45.1321413042,45.1321413042 -50,0,21.3233333333,36.29,17.9633333333,39.6266666667,22.39,36.2,20.5,32.9,18.5,44.79,1.1,47.99,19.89,27.79,22.5,41.1266666667,19.6,39.2,0.7333333333,766,82.3333333333,3.6666666667,64,-1.9333333333,14.7397749708,14.7397749708 -50,0,21.26,36.29,17.89,39.76,22.3566666667,36.1266666667,20.5,32.9,18.5,44.79,0.9,48.36,19.8233333333,27.73,22.5,41.1266666667,19.6,39.2,0.7,766,82.5,3.5,64,-1.95,10.7164553367,10.7164553367 -50,0,21.26,36.3633333333,17.79,39.8266666667,22.3566666667,36.2,20.4633333333,32.9,18.5,44.79,0.9666666667,49.0266666667,19.79,27.73,22.4633333333,41.0266666667,19.6,39.2,0.6666666667,766,82.6666666667,3.3333333333,64,-1.9666666667,2.6075309375,2.6075309375 -50,0,21.2,36.29,17.79,39.9,22.3566666667,36.1266666667,20.39,32.9,18.5,44.9,0.8666666667,49.1633333333,19.79,27.79,22.39,40.9,19.6,39.2,0.6333333333,766,82.8333333333,3.1666666667,64,-1.9833333333,46.8072150368,46.8072150368 -50,0,21.2,36.29,17.76,39.9333333333,22.29,36.2,20.39,32.9,18.5,44.9,0.7333333333,49.63,19.79,27.79,22.39,40.79,19.6,39.2,0.6,766,83,3,64,-2,42.0258819475,42.0258819475 -40,0,21.15,36.345,17.7,40,22.29,36.2,20.39,32.925,18.5,44.9,0.6,50.3933333333,19.79,27.79,22.39,40.79,19.6,39.2,0.55,766,83.3333333333,3,63.8333333333,-1.9833333333,30.6464380352,30.6464380352 -40,0,21.1,36.4,17.6333333333,40,22.29,36.2,20.39,33,18.5,44.9,0.5333333333,51.1933333333,19.79,27.79,22.39,40.79,19.6,39.2,0.5,766,83.6666666667,3,63.6666666667,-1.9666666667,2.4256534409,2.4256534409 -60,0,21.1,36.4,17.6,40.03,22.29,36.2,20.29,33,18.5,45,0.5,52.1666666667,19.79,27.79,22.39,40.695,19.5333333333,39.29,0.45,766,84,3,63.5,-1.95,13.4859571932,13.4859571932 -50,0,21.0666666667,36.3633333333,17.6,40.09,22.29,36.2,20.29,33,18.5,45,0.5,52.7,19.79,27.79,22.3233333333,40.53,19.6,39.29,0.4,766,84.3333333333,3,63.3333333333,-1.9333333333,38.0323622143,38.0323622143 -60,0,21,36.29,17.5,40.09,22.29,36.2,20.29,33,18.5,45,0.45,52.95,19.79,27.8566666667,22.29,40.56,19.5333333333,39.29,0.35,766,84.6666666667,3,63.1666666667,-1.9166666667,45.8728558733,45.8728558733 -50,0,20.9633333333,36.29,17.5,40.1633333333,22.29,36.2,20.29,33.06,18.5,45,0.5,53.8333333333,19.79,27.8566666667,22.29,40.4333333333,19.6,39.3633333333,0.3,766,85,3,63,-1.9,2.1297371946,2.1297371946 -40,0,20.89,36.29,17.39,40.2,22.29,36.2,20.29,33.09,18.5,45,0.4333333333,53.5666666667,19.79,27.8566666667,22.29,40.4,19.5666666667,39.4,0.15,765.9833333333,85.5,2.8333333333,62.8333333333,-1.9666666667,31.1563106137,31.1563106137 -50,0,20.89,36.29,17.39,40.2,22.29,36.2,20.23,33.03,18.5,45.06,0.3666666667,53.83,19.79,27.89,22.23,40.3266666667,19.5666666667,39.4,5.55111512312578E-17,765.9666666667,86,2.6666666667,62.6666666667,-2.0333333333,1.2895759544,1.2895759544 -50,0,20.89,36.29,17.3566666667,40.3266666667,22.29,36.2,20.26,33.06,18.445,45.045,0.2333333333,53.6966666667,19.73,27.89,22.2,40.29,19.6,39.4,-0.15,765.95,86.5,2.5,62.5,-2.1,49.843041657,49.843041657 -50,0,20.79,36.29,17.29,40.3266666667,22.2,36.09,20.2,33,18.4633333333,45.06,0.0666666667,54.59,19.7,27.9266666667,22.2,40.29,19.5333333333,39.4,-0.3,765.9333333333,87,2.3333333333,62.3333333333,-2.1666666667,8.8859361829,8.8859361829 -20,0,20.79,36.29,17.29,40.4,22.2,36.1633333333,20.2,33,18.39,45,0,54.7966666667,19.7,28,22.2,40.2,19.6,39.4,-0.45,765.9166666667,87.5,2.1666666667,62.1666666667,-2.2333333333,32.7429509256,32.7429509256 -40,0,20.79,36.29,17.29,40.4,22.2,36.1633333333,20.2,33,18.39,45,-0.1,55.4233333333,19.73,28,22.2,40.1266666667,19.6,39.4,-0.6,765.9,88,2,62,-2.3,33.0619526212,33.0619526212 -30,0,20.79,36.29,17.2,40.3266666667,22.2,36.09,20.1666666667,32.9333333333,18.39,45,-0.0333333333,55.9633333333,19.73,28,22.1,40.1566666667,19.6,39.4,-0.5666666667,765.9666666667,87.8333333333,1.8333333333,62.1666666667,-2.3166666667,41.0274988157,41.0274988157 -40,0,20.7,36.29,17.2,40.4,22.1,36.09,20.1,33,18.39,45,-0.0666666667,55.6,19.7,28,22.1,40.29,19.6,39.3633333333,-0.5333333333,766.0333333333,87.6666666667,1.6666666667,62.3333333333,-2.3333333333,43.8343551941,43.8343551941 -50,0,20.7,36.29,17.2,40.4633333333,22.1,36.09,20.1,33,18.39,45.06,-0.2666666667,55.4666666667,19.7,28,22.1,40.23,19.5333333333,39.29,-0.5,766.1,87.5,1.5,62.5,-2.35,4.1219654027,4.1219654027 -50,0,20.6333333333,36.23,17.2,40.59,22.1,36.1266666667,20.1,33,18.5,45.1266666667,-0.8,54.1,19.7,28.0666666667,22.1,40.29,19.5333333333,39.29,-0.4666666667,766.1666666667,87.3333333333,1.3333333333,62.6666666667,-2.3666666667,41.5345412446,41.5345412446 -60,0,20.7,36.23,17.1,40.59,22.0333333333,36.1266666667,20.1,32.9,18.4266666667,45.1266666667,-1.1933333333,54.16,19.7,28.1,22.1,40.2,19.6,39.29,-0.4333333333,766.2333333333,87.1666666667,1.1666666667,62.8333333333,-2.3833333333,20.8508805721,20.8508805721 -50,0,20.6666666667,36.2233333333,17.1,40.59,22.0666666667,36.2,20.1,32.9,18.39,45.09,-1.5333333333,54.9933333333,19.7,28.1,22.1,40.2,19.5333333333,39.3266666667,-0.4,766.3,87,1,63,-2.4,3.3323877607,3.3323877607 -60,0,20.6,36.2233333333,17.0666666667,40.56,22,36,20,32.8333333333,18.39,45.09,-1.6666666667,55.86,19.6666666667,27.76,22,40.06,19.6,39.4,-0.35,766.35,87.6666666667,1.1666666667,62.6666666667,-2.2333333333,5.2168159513,5.2168159513 -60,10,20.6,36.245,17,40.3425,21.8566666667,35.2966666667,20,32.55,18.39,44.8333333333,-1.7,56.745,19.6,27.36,22.0666666667,39.8,19.5666666667,39.2,-0.3,766.4,88.3333333333,1.3333333333,62.3333333333,-2.0666666667,36.5561830113,36.5561830113 -90,0,20.6,36.06,17,40.0966666667,21.79,35.03,20,32.4333333333,18.39,44.5666666667,-1.6666666667,57.2333333333,19.5666666667,27.1333333333,22,39.1,19.5666666667,39.2,-0.25,766.45,89,1.5,62,-1.9,29.7032488277,29.7032488277 -70,10,20.6,36,17,39.9,21.745,34.79,20,32.29,18.39,44.3333333333,-1.6,57.8333333333,19.5,26.9266666667,21.9266666667,38.6333333333,19.5666666667,39.1,-0.2,766.5,89.6666666667,1.6666666667,61.6666666667,-1.7333333333,26.7291556695,26.7291556695 -50,0,20.6,36.1266666667,17,39.9666666667,21.7,34.6333333333,20,32.23,18.39,44.1266666667,-1.43,58.63,19.5,26.76,21.89,37.995,19.5666666667,38.8266666667,-0.15,766.55,90.3333333333,1.8333333333,61.3333333333,-1.5666666667,2.4252700503,2.4252700503 -40,10,20.6666666667,36.4,17.1,40.2,21.7,34.5,19.89,32.1633333333,18.39,43.9666666667,-1.23,59.3633333333,19.5,26.7,21.79,37.4,19.5666666667,38.43,-0.1,766.6,91,2,61,-1.4,30.7668571011,30.7668571011 -70,20,20.7,36.29,17.0333333333,40.2,21.6666666667,34.5,19.89,32.09,18.39,43.8266666667,-0.8333333333,60.6933333333,19.4633333333,26.5666666667,21.79,37.0666666667,19.5,38.0966666667,0.3666666667,766.6166666667,88.6666666667,2.1666666667,54.3333333333,-1.3166666667,36.9425563142,36.9425563142 -330,30,20.7,36.0966666667,17.1,40.2,21.6,34.4333333333,20.0966666667,32.53,18.39,43.56,-0.5666666667,60.9666666667,19.4633333333,26.5,21.79,36.8333333333,19.5,37.6933333333,0.8333333333,766.6333333333,86.3333333333,2.3333333333,47.6666666667,-1.2333333333,5.8899855823,5.8899855823 -260,30,20.6,35.79,17.1,40.0666666667,21.6,34.4633333333,20.5633333333,32.8633333333,18.39,43.4333333333,-0.1,61.1266666667,19.4633333333,26.3566666667,21.79,36.5666666667,19.5,37.36,1.3,766.65,84,2.5,41,-1.15,18.3300762088,18.3300762088 -200,0,20.6,35.73,17.1333333333,39.7233333333,21.6,34.59,21.2333333333,33,18.39,43.245,0.3,60.9266666667,19.39,26.29,21.7,36.3333333333,19.6,36.8266666667,1.7666666667,766.6666666667,81.6666666667,2.6666666667,34.3333333333,-1.0666666667,6.7517606309,6.7517606309 -150,10,20.6,35.6633333333,17.2,39.4633333333,21.6,34.5,21.6933333333,32.7266666667,18.39,43.0266666667,0.8,60.1966666667,19.39,26.29,21.7,36.1266666667,19.6,37.1,2.2333333333,766.6833333333,79.3333333333,2.8333333333,27.6666666667,-0.9833333333,14.855878253,14.855878253 -70,0,20.6,35.4633333333,17.3233333333,39.1333333333,21.6,34.56,21.79,32.3633333333,18.39,42.8266666667,1.1933333333,59.3233333333,19.39,26.29,21.6,35.8633333333,19.79,38.145,2.7,766.7,77,3,21,-0.9,45.4036641982,45.4036641982 -60,10,20.6,35.26,17.5966666667,38.9333333333,21.6,34.59,21.73,32.29,18.39,42.6633333333,1.7,57.7233333333,19.39,26.29,21.6,35.73,19.89,38.59,3.1,766.6833333333,75.8333333333,3.1666666667,21,-0.75,5.6459378451,5.6459378451 -80,0,20.6,35.2,18.2333333333,38.4233333333,21.5333333333,34.59,21.6666666667,32.29,18.4633333333,42.59,2.1,55.7966666667,19.39,26.29,21.6,35.59,19.89,38.53,3.5,766.6666666667,74.6666666667,3.3333333333,21,-0.6,28.2274642261,28.2274642261 -70,10,20.6333333333,35.23,18.76,37.7566666667,21.39,34.23,21.6,32.29,18.4633333333,42.4,2.5966666667,53.83,19.39,26.29,21.6,35.53,19.9633333333,38.5,3.9,766.65,73.5,3.5,21,-0.45,0.4291573772,0.4291573772 -80,0,20.7,35.29,19.3,37.1,21.39,34.43,21.6,32.53,18.39,42.2,3.0633333333,51.63,19.39,26.29,21.5666666667,35.4,19.89,38.4333333333,4.3,766.6333333333,72.3333333333,3.6666666667,21,-0.3,39.3751097261,39.3751097261 -80,10,20.7,35.26,19.6933333333,36.6933333333,21.39,34.5,21.6,32.6633333333,18.39,42.06,3.5966666667,49.2933333333,19.39,26.29,21.5,35.3266666667,19.89,38.53,4.7,766.6166666667,71.1666666667,3.8333333333,21,-0.15,40.3580342652,40.3580342652 -80,0,20.7,35.2,20.0666666667,36.4,21.39,34.56,21.6,32.79,18.39,41.9333333333,4.0925,45.675,19.39,26.29,21.5,35.1633333333,19.89,38.59,5.1,766.6,70,4,21,0,25.4609760479,25.4609760479 -80,10,20.7,35.29,20.4,36.0666666667,21.43,34.6,21.6,32.8633333333,18.39,41.76,4.5266666667,43.7266666667,19.4633333333,26.3566666667,21.5,35.09,19.79,38.59,5.3833333333,766.6,69.1666666667,4,28.3333333333,0.0833333333,23.9212068147,23.9212068147 -260,0,20.76,35.3633333333,20.6333333333,35.6,21.29,34.4666666667,21.6,32.8633333333,18.39,41.6266666667,4.9966666667,41.3666666667,19.4266666667,26.29,21.5,35,19.79,38.59,5.6666666667,766.6,68.3333333333,4,35.6666666667,0.1666666667,20.1538668829,20.1538668829 -420,0,20.79,35.3266666667,20.8425,34.725,21.3233333333,34.7,21.6,32.6725,18.4633333333,41.6333333333,5.3966666667,39.2333333333,19.5,26.3566666667,21.5,35,19.79,38.7,5.95,766.6,67.5,4,43,0.25,27.1826385404,27.1826385404 -150,0,20.79,35.175,21.03,33.76,21.39,34.6266666667,21.5333333333,32.4333333333,18.39,41.4333333333,5.66,36.79,19.5,26.39,21.4633333333,34.9,19.79,38.5666666667,6.2333333333,766.6,66.6666666667,4,50.3333333333,0.3333333333,0.3933605156,0.3933605156 -60,0,20.79,34.8266666667,21.23,33.6633333333,21.34,34.45,21.5,32.4333333333,18.39,41.26,5.9333333333,35.6566666667,19.5666666667,26.3233333333,21.4633333333,35.0266666667,19.79,38.1333333333,6.5166666667,766.6,65.8333333333,4,57.6666666667,0.4166666667,8.6947648088,8.6947648088 -60,0,20.79,34.76,21.43,33.59,21.3233333333,34.4,21.5,32.5,18.39,41.1266666667,6.26,33.7233333333,19.6,26.29,21.5,35.1633333333,19.79,38,6.8,766.6,65,4,65,0.5,44.8430958553,44.8430958553 -60,0,20.8566666667,34.7,21.5333333333,33.3333333333,21.3233333333,34.4,21.5,32.6266666667,18.4266666667,41.03,6.5266666667,32.1966666667,19.6666666667,26.29,21.5,34.92,19.79,38.1566666667,7.05,766.5333333333,63.3333333333,4,57.8333333333,0.35,25.9743506787,25.9743506787 -60,0,20.89,34.4666666667,21.6,33.0666666667,21.39,34.3633333333,21.5,32.7,18.4266666667,40.9633333333,6.7933333333,29.5666666667,19.73,26.1666666667,21.5,34.6566666667,19.79,38.29,7.3,766.4666666667,61.6666666667,4,50.6666666667,0.2,48.6606959254,48.6606959254 -40,0,20.89,34.4666666667,21.6,32.9666666667,21.3233333333,34.29,21.5333333333,32.8266666667,18.39,40.8633333333,7.1266666667,28.2333333333,19.79,26.1,21.5333333333,34.3333333333,19.79,38.29,7.55,766.4,60,4,43.5,0.05,40.2742175269,40.2742175269 -50,10,21,34.4333333333,21.6,32.8266666667,21.29,34.26,21.6,32.9,18.39,40.79,7.4333333333,28.0633333333,19.9266666667,26.0666666667,21.6,34.0666666667,19.79,38.29,7.8,766.3333333333,58.3333333333,4,36.3333333333,-0.1,47.4515808164,47.4515808164 -40,0,21.0666666667,34.56,21.6,32.79,21.29,34.1266666667,21.6,33,18.39,40.745,7.7,27.5233333333,20.0666666667,26,21.73,33.8333333333,19.79,38.2,8.05,766.2666666667,56.6666666667,4,29.1666666667,-0.25,14.2678712378,14.2678712378 -180,0,21.1,34.4666666667,21.6,32.79,21.29,34.09,21.6666666667,33,18.4266666667,40.7666666667,8.0633333333,25.9333333333,20.1333333333,26,21.79,33.5666666667,19.79,38.2,8.3,766.2,55,4,22,-0.4,30.9529385995,30.9529385995 -100,0,21.2266666667,35.9333333333,21.6,32.73,21.29,34.09,21.73,33,18.4266666667,40.8266666667,8.3233333333,24.3333333333,20.26,25.9266666667,21.9266666667,33.43,19.84,38.145,8.5,766.1333333333,54.3333333333,4,23,-0.3833333333,39.7580746445,39.7580746445 -60,0,21.39,36.1566666667,21.5333333333,32.93,21.3233333333,34.1266666667,21.79,33,18.4266666667,40.86,8.6,22.7633333333,20.39,25.76,22,33.1566666667,19.8233333333,38.1266666667,8.7,766.0666666667,53.6666666667,4,24,-0.3666666667,46.7783380416,46.7783380416 -60,0,21.4633333333,36.23,21.5666666667,33.2,21.39,34.2,21.79,33,18.5,41,8.6,21.43,20.4633333333,25.76,22.1333333333,33.0266666667,19.8233333333,38.1266666667,8.9,766,53,4,25,-0.35,26.3326452463,26.3326452463 -60,0,21.6333333333,35.99,21.5,33.26,21.39,34.2,21.8566666667,33.06,18.4633333333,41.09,8.7566666667,21.06,20.65,25.65,22.26,32.8266666667,19.89,38.2,9.1,765.9333333333,52.3333333333,4,26,-0.3333333333,41.5946714929,41.5946714929 -80,0,21.76,35.5966666667,21.5,33.3266666667,21.4633333333,34.26,21.89,32.8633333333,18.4633333333,41.1633333333,8.9633333333,20.3333333333,20.8233333333,25.5,22.3233333333,32.6333333333,19.89,38.1266666667,9.3,765.8666666667,51.6666666667,4,27,-0.3166666667,40.0058209198,40.0058209198 -70,0,21.9266666667,35.43,21.5,33.4,21.5,34.4,21.89,32.79,18.5,41.23,9.145,20.145,20.9633333333,25.5,22.4633333333,32.5,19.89,37.9,9.5,765.8,51,4,28,-0.3,32.9038483673,32.9038483673 -50,10,22,35.0966666667,21.5,33.4,21.5,34.4,21.89,32.9,18.5,41.29,9.3,19.4666666667,21.1333333333,25.39,22.6333333333,32.29,19.89,37.8266666667,9.5166666667,765.7333333333,51.3333333333,4.1666666667,27,-0.1666666667,49.7798617464,49.7798617464 -50,0,22.1333333333,34.8333333333,21.5,33.4,21.5,34.4333333333,21.89,32.8266666667,18.5,41.29,9.4333333333,19.1333333333,21.2,25.3233333333,22.76,32.1566666667,19.89,37.76,9.5333333333,765.6666666667,51.6666666667,4.3333333333,26,-0.0333333333,42.2811095254,42.2811095254 -50,0,22.26,34.6266666667,21.4266666667,33.3266666667,21.5,34.5,21.89,32.6633333333,18.5,41.29,9.63,18.7633333333,21.3233333333,25.26,22.8233333333,32,19.9633333333,37.6266666667,9.55,765.6,52,4.5,25,0.1,43.9945317572,43.9945317572 -50,0,22.3233333333,34.3633333333,21.5,33.4,21.5,34.59,21.89,32.4975,18.5,41.29,9.69,18.03,21.4633333333,25.2,22.9633333333,31.9266666667,19.89,37.5,9.5666666667,765.5333333333,52.3333333333,4.6666666667,24,0.2333333333,24.1459881538,24.1459881538 -40,0,22.4175,34.1175,21.39,33.2,21.5,34.59,21.89,32.4,18.5,41.29,9.89,17.5933333333,21.5333333333,25.0666666667,23.0333333333,31.7,19.9633333333,37.36,9.5833333333,765.4666666667,52.6666666667,4.8333333333,23,0.3666666667,4.7448798316,4.7448798316 -60,0,22.5,33.9333333333,21.39,33.2,21.5,34.7,21.89,32.29,18.5333333333,41.26,9.9633333333,17.26,21.6666666667,25,23.1666666667,31.6333333333,20,37.26,9.6,765.4,53,5,22,0.5,1.4133742545,1.4133742545 -50,0,22.6,33.6633333333,21.39,33.2,21.5,34.7,21.89,32.29,18.5333333333,41.26,10.2266666667,17.6933333333,21.79,24.8566666667,23.23,31.4633333333,20,37.2,9.6666666667,765.35,52.6666666667,4.8333333333,22.6666666667,0.4333333333,0.471985538,0.471985538 -60,0,22.6666666667,33.6633333333,21.39,33.2,21.5,34.7,21.89,32.29,18.6,41.26,10.3,17.5,21.93,24.8566666667,23.3566666667,31.39,20,37.1633333333,9.7333333333,765.3,52.3333333333,4.6666666667,23.3333333333,0.3666666667,41.1545924493,41.1545924493 -60,0,22.7,33.56,21.39,33.2,21.5333333333,34.7,21.89,32.29,18.5333333333,41.2,10.3,17.4,22.0333333333,24.79,23.445,31.245,20,37.09,9.8,765.25,52,4.5,24,0.3,2.1520200069,2.1520200069 -40,10,22.76,33.5,21.39,33.2,21.5333333333,34.7,21.9266666667,32.29,18.5,41.23,10.36,17.1333333333,22.1,24.73,23.6,31.1666666667,20,37.09,9.8666666667,765.2,51.6666666667,4.3333333333,24.6666666667,0.2333333333,41.1585471593,41.1585471593 -50,0,22.79,33.43,21.39,33.2,21.6,34.79,21.9266666667,32.29,18.5666666667,41.29,10.39,16.76,22.23,24.6,23.6666666667,31.0333333333,20,37.03,9.9333333333,765.15,51.3333333333,4.1666666667,25.3333333333,0.1666666667,4.5929565793,4.5929565793 -50,0,22.79,32.8966666667,21.29,32.3566666667,21.6,34.79,22,32.1633333333,18.55,41.19,10.39,16.36,22.29,24.6,23.6666666667,31.0666666667,20.1,37.09,10,765.1,51,4,26,0.1,43.2068828261,43.2068828261 -60,0,22.7,33.06,21.23,31.49,21.5,34.6,21.9266666667,32.03,18.6,40.8333333333,10.39,16.0966666667,22.39,24.4633333333,23.5333333333,31.4,20.1,37.09,10.0333333333,765.0333333333,50.6666666667,4,26.3333333333,0.0833333333,1.1334015406,1.1334015406 -80,0,22.7,33.5266666667,21.2,30.7933333333,21.5,34.3266666667,21.9266666667,31.9633333333,18.6,40.5,10.39,15.9633333333,22.39,24.3233333333,23.5333333333,31.6633333333,20.1,37.09,10.0666666667,764.9666666667,50.3333333333,4,26.6666666667,0.0666666667,2.531995438,2.531995438 -80,0,22.7,32.4966666667,21.1333333333,30.3933333333,21.6,34.06,21.9266666667,31.8233333333,18.6,40.0266666667,10.4266666667,15.66,22.5,24.3566666667,23.6,31.8566666667,20.1,37.09,10.1,764.9,50,4,27,0.05,47.4570615799,47.4570615799 -70,0,22.7,31.6966666667,21.1,30.2,21.6,33.9333333333,21.89,31.79,18.6,39.7666666667,10.5,15.9333333333,22.5666666667,24.23,23.6,31.89,20.1,36.83,10.1333333333,764.8333333333,49.6666666667,4,27.3333333333,0.0333333333,11.4074084326,11.4074084326 -80,0,22.73,31.5566666667,21.1,30.3266666667,21.6,33.8633333333,21.89,31.73,18.6,39.56,10.5,15.345,22.6,24.1666666667,23.6666666667,31.89,20.1333333333,36.8266666667,10.1666666667,764.7666666667,49.3333333333,4,27.6666666667,0.0166666667,31.3384638866,31.3384638866 -80,0,22.79,31.89,21.1,30.8933333333,21.6,33.79,21.89,31.7,18.6,39.5,10.5,15.4633333333,22.675,24.15,23.6,31.73,20.1333333333,36.9666666667,10.2,764.7,49,4,28,0,21.9810028328,21.9810028328 -100,0,22.79,31.79,21.1,31.2266666667,21.6,33.79,21.89,31.7,18.6,39.53,10.5,14.9233333333,22.7,24.1,23.6666666667,31.93,20.1,37.09,10.1833333333,764.6666666667,49,4.1666666667,27.5,-0.0333333333,29.988656193,29.988656193 -80,0,22.79,31.8566666667,21.1,31.4633333333,21.6,33.79,21.89,31.6,18.6,39.59,10.5,15.0266666667,22.7,23.9633333333,23.7,32.2,20.1,37.09,10.1666666667,764.6333333333,49,4.3333333333,27,-0.0666666667,48.4316953807,48.4316953807 -80,0,22.79,31.6,21.0333333333,31.39,21.6,33.76,21.89,31.5333333333,18.6333333333,39.6266666667,10.5,15.1666666667,22.76,23.8233333333,23.7,32.26,20.1,37.06,10.15,764.6,49,4.5,26.5,-0.1,49.7102398193,49.7102398193 -90,0,22.8566666667,31.6666666667,21,31.6333333333,21.6,33.7,21.8566666667,31.4633333333,18.6333333333,39.6266666667,10.5,14.5,22.79,23.79,23.79,32.4633333333,20.1,36.9333333333,10.1333333333,764.5666666667,49,4.6666666667,26,-0.1333333333,13.6766869226,13.6766869226 -90,10,22.79,31.7,21,31.8266666667,21.6,33.6266666667,21.84,31.445,18.6666666667,39.7,10.4266666667,14.7,22.79,23.73,23.79,32.6633333333,20.1,36.8633333333,10.1166666667,764.5333333333,49,4.8333333333,25.5,-0.1666666667,14.3584234989,14.3584234989 -100,20,22.8566666667,31.8266666667,21,32,21.6,33.6266666667,21.79,31.4633333333,18.6666666667,39.76,10.39,15.0633333333,22.79,23.6,23.79,32.9333333333,20.1,36.73,10.1,764.5,49,5,25,-0.2,9.9988591392,9.9988591392 -110,20,22.79,31.79,20.9725,32.0675,21.65,33.645,21.9266666667,32.0966666667,18.7,39.79,10.39,15.2633333333,22.79,23.6,23.79,33,20.1,36.56,10.0166666667,764.45,49.8333333333,4.8333333333,24.6666666667,-0.05,9.812237008,9.812237008 -90,20,22.8233333333,31.9266666667,20.89,32.2233333333,21.7,33.7,22,32.49,18.7,39.79,10.39,15.13,22.7,23.5,23.79,33.1266666667,20.1,36.4333333333,9.9333333333,764.4,50.6666666667,4.6666666667,24.3333333333,0.1,49.5501518017,49.5501518017 -100,30,22.8233333333,31.9266666667,20.9933333333,32.2966666667,21.7,33.6266666667,22.1333333333,33.1933333333,18.7,39.79,10.33,15.4633333333,22.7,23.5,23.79,33.2,20.1,36.26,9.85,764.35,51.5,4.5,24,0.25,47.7673420333,47.7673420333 -80,20,22.79,32,21.3266666667,31.83,21.7,33.6633333333,22.2,33.6,18.76,39.79,10.2633333333,16.23,22.6,23.39,23.89,33.36,20.1,36.1266666667,9.7666666667,764.3,52.3333333333,4.3333333333,23.6666666667,0.4,25.3122526919,25.3122526919 -70,20,22.79,32.06,21.03,32.0966666667,21.7,33.6633333333,22.3233333333,33.9333333333,18.79,39.79,10.13,16.29,22.6,23.4633333333,23.89,33.56,20,35.8633333333,9.6833333333,764.25,53.1666666667,4.1666666667,23.3333333333,0.55,11.821561784,11.821561784 -110,20,22.79,32.36,20.8233333333,32.3633333333,21.6666666667,33.6633333333,22.39,33.8,18.79,39.8633333333,9.9333333333,16.63,22.5,23.5,23.89,33.7,20.0666666667,35.79,9.6,764.2,54,4,23,0.7,25.865839445,25.865839445 -100,30,22.73,32.5,20.7,32.73,21.6666666667,33.6633333333,22.39,33.4666666667,18.79,39.95,9.8,17.2233333333,22.5,23.5,23.89,33.5266666667,20.0666666667,35.6633333333,9.1333333333,764.2,56.1666666667,3.6666666667,22.6666666667,0.75,28.8891324308,28.8891324308 -360,20,22.7,32.53,20.6333333333,32.93,21.7,33.7,22.3233333333,33.2666666667,18.79,40.03,9.53,17.7333333333,22.3566666667,23.5333333333,23.89,33.2666666667,20.0666666667,35.59,8.6666666667,764.2,58.3333333333,3.3333333333,22.3333333333,0.8,10.916721297,10.916721297 -350,20,22.7,32.6633333333,20.5,33.0966666667,21.7,33.6266666667,22.29,33.1633333333,18.79,40.1633333333,9.2566666667,18.4,22.29,23.6,23.89,32.93,20,35.5,8.2,764.2,60.5,3,22,0.85,11.1278110882,11.1278110882 -190,20,22.7,33.4566666667,20.4266666667,33.49,21.7,33.6266666667,22.29,33.09,18.79,40.23,8.8233333333,19.3633333333,22.26,23.7,23.89,32.6566666667,20,35.4,7.7333333333,764.2,62.6666666667,2.6666666667,21.6666666667,0.9,41.2562088226,41.2562088226 -590,10,22.6333333333,34.0633333333,20.39,34.3666666667,21.7,33.76,22.3233333333,33.09,18.79,40.3633333333,8.4475,20.32,22.2,23.76,23.89,32.3633333333,20,35.4,7.2666666667,764.2,64.8333333333,2.3333333333,21.3333333333,0.95,18.1620655931,18.1620655931 -90,10,22.7,37.9333333333,20.39,35.5,21.73,34.0666666667,22.3233333333,33.03,18.79,40.6566666667,7.76,20.8633333333,22.1,23.9266666667,23.8233333333,32.1566666667,20,35.29,6.8,764.2,67,2,21,1,46.2019369239,46.2019369239 -110,10,22.76,40.0666666667,20.39,37.63,21.73,34.4,22.26,32.6,18.79,41.1233333333,6.8633333333,22.3333333333,22.025,24.025,23.7,31.8266666667,20,35.29,6.5833333333,764.2166666667,67.6666666667,2,28.3333333333,0.9333333333,16.048122372,16.048122372 -110,10,22.8233333333,38.4233333333,20.39,38.09,21.79,34.86,22.2,32.3266666667,18.79,41.83,6.3233333333,23.86,22,24.1666666667,23.6333333333,31.6333333333,20,35.26,6.3666666667,764.2333333333,68.3333333333,2,35.6666666667,0.8666666667,6.0024389299,6.0024389299 -140,30,22.89,38.03,20.3233333333,37.93,21.79,35.1333333333,22.1,32.1566666667,18.79,42.2966666667,5.7,25.3333333333,21.89,24.4266666667,23.6,31.5,20,35.2,6.15,764.25,69,2,43,0.8,10.5249694549,10.5249694549 -130,20,22.89,37.2333333333,20.39,37.79,21.79,35.3266666667,22.1,32.49,18.79,42.5666666667,5.2933333333,26.5266666667,21.8233333333,24.5,23.6,31.4266666667,20,35.1633333333,5.9333333333,764.2666666667,69.6666666667,2,50.3333333333,0.7333333333,27.9590495513,27.9590495513 -180,30,22.89,36.6933333333,20.39,37.2966666667,21.8566666667,35.4666666667,22.1,32.79,19.1233333333,57.5666666667,4.83,28.0933333333,21.79,24.6,23.6,31.3566666667,20,35.09,5.7166666667,764.2833333333,70.3333333333,2,57.6666666667,0.6666666667,20.1663263491,20.1663263491 -130,20,22.89,36.1,20.3233333333,36.9633333333,21.89,35.4666666667,22.125,32.97,19.39,65.1566666667,4.4966666667,29.2333333333,21.73,24.6,23.6,31.23,20,35.2,5.5,764.3,71,2,65,0.6,39.4772470463,39.4772470463 -140,20,22.8233333333,35.6333333333,20.39,36.79,21.89,35.4,22.2,33.09,19.3233333333,62.6233333333,4.2633333333,30.7666666667,21.6666666667,24.5666666667,23.6,31.0666666667,20,35.2,5.3333333333,764.3166666667,71.8333333333,2.1666666667,64.8333333333,0.6,23.5522775794,23.5522775794 -140,20,22.89,35.3333333333,20.39,36.695,21.89,35.3633333333,22.2,33.1266666667,19.2,61.9966666667,4.0633333333,31.76,21.6,24.5666666667,23.5333333333,30.9266666667,20,35.29,5.1666666667,764.3333333333,72.6666666667,2.3333333333,64.6666666667,0.6,43.6640559696,43.6640559696 -120,20,22.89,35.025,20.3233333333,36.53,21.815,35.2225,22.2,33.2,19.1333333333,61.33,3.8333333333,33.0266666667,21.5,24.7,23.5,30.89,20,35.29,5,764.35,73.5,2.5,64.5,0.6,8.8048984064,8.8048984064 -150,30,22.89,34.7666666667,20.29,36.3633333333,21.8566666667,35.2,22.2,33.2,19.1,60.0566666667,3.6266666667,34.1666666667,21.5,24.76,23.5,30.8233333333,19.9633333333,35.3266666667,4.8333333333,764.3666666667,74.3333333333,2.6666666667,64.3333333333,0.6,15.2579874266,15.2579874266 -130,20,22.89,34.4666666667,20.29,36.29,21.8566666667,35.1633333333,22.2,33.2,19.0333333333,58.7966666667,3.56,35.8633333333,21.39,24.73,23.4633333333,30.6666666667,19.89,35.4,4.6666666667,764.3833333333,75.1666666667,2.8333333333,64.1666666667,0.6,19.7861235356,19.7861235356 -130,20,22.89,34.4,20.2,36.1633333333,21.79,35.09,22.23,33.23,19,57.0966666667,3.6933333333,37.9966666667,21.39,24.8566666667,23.39,30.5333333333,19.89,35.53,4.5,764.4,76,3,64,0.6,0.2497121925,0.2497121925 -110,20,22.89,34.1633333333,20.2,36.09,21.79,35,22.43,33.43,19,55.5633333333,4.1233333333,40.2,21.29,25,23.4266666667,30.9266666667,19.89,35.6633333333,4.3166666667,764.4166666667,77.1666666667,2.8333333333,63.6666666667,0.6166666667,44.9252941879,44.9252941879 -90,30,22.89,34.03,20.2,36,21.79,35,22.8933333333,33.4,18.89,54.15,4.2633333333,41.1266666667,21.29,25.0666666667,23.4175,31.4425,19.89,35.79,4.1333333333,764.4333333333,78.3333333333,2.6666666667,63.3333333333,0.6333333333,21.214032406,21.214032406 -70,20,22.89,33.9666666667,20.1333333333,36,21.79,34.8633333333,23.1666666667,33.1333333333,19.7933333333,78.5333333333,4.4,42.6966666667,21.26,25.2,23.3233333333,31.79,19.9633333333,35.8633333333,3.95,764.45,79.5,2.5,63,0.65,1.0377184255,1.0377184255 -70,20,22.89,33.9,20.1,36.03,21.79,34.79,23.2,32.79,20.3333333333,81.6,4.2725,43.2475,21.2,25.26,23.29,33.0266666667,19.89,36.045,3.7666666667,764.4666666667,80.6666666667,2.3333333333,62.6666666667,0.6666666667,31.6291723051,31.6291723051 -100,20,22.89,33.9,20.1,36.03,21.76,34.76,23.1333333333,32.79,19.7622222222,81.63,4.03,44.9,21.1,25.39,23.29,33.7666666667,19.89,36.1266666667,3.5833333333,764.4833333333,81.8333333333,2.1666666667,62.3333333333,0.6833333333,12.6817916404,12.6817916404 -80,30,22.8233333333,33.8266666667,20,35.9666666667,21.7,34.76,23.0666666667,32.6333333333,19.5,81.5933333333,3.9,46.1333333333,21.1,25.4633333333,23.26,34.1266666667,19.89,36.26,3.4,764.5,83,2,62,0.7,39.4992262707,39.4992262707 -80,20,22.8566666667,33.8633333333,20,36.0266666667,21.7,34.9333333333,23,32.5,19.5,80.0666666667,3.8266666667,47.3933333333,21.1,25.6633333333,23.2,34.3333333333,19.89,36.36,3.25,764.4833333333,83.6666666667,2,61.8333333333,0.6833333333,5.7300804066,5.7300804066 -60,20,22.79,33.8633333333,19.9633333333,36.36,21.6333333333,35,23,32.8266666667,19.4633333333,78.8333333333,3.76,49.4233333333,21.1,25.8925,23.2,34.8,19.89,36.4333333333,3.1,764.4666666667,84.3333333333,2,61.6666666667,0.6666666667,3.4553353791,3.4553353791 -70,30,22.79,34.0666666667,19.8233333333,36.56,21.6,35.1266666667,23,32.9666666667,19.39,78.345,3.5666666667,49.2966666667,21.1,26.0666666667,23.2,35.2666666667,19.89,36.6266666667,2.95,764.45,85,2,61.5,0.65,10.0249504903,10.0249504903 -70,20,22.79,34.26,19.76,36.86,21.6,35.2,23,33.1266666667,19.29,77.8633333333,3.4,51.4233333333,21.1,26.23,23.1666666667,35.6566666667,19.89,36.7,2.8,764.4333333333,85.6666666667,2,61.3333333333,0.6333333333,14.6770371706,14.6770371706 -60,20,22.7,34.4,19.6333333333,37,21.6,35.29,22.9266666667,33.2,19.29,77.3233333333,3.2666666667,51.83,21.1,26.3566666667,23.1,36.0633333333,19.89,36.8266666667,2.65,764.4166666667,86.3333333333,2,61.1666666667,0.6166666667,19.5702178287,19.5702178287 -70,20,22.7,34.4666666667,19.6,37.1566666667,21.6,35.29,22.89,33.29,19.26,76.3933333333,3.1333333333,53,21.1,26.5333333333,23.0666666667,36.5966666667,19.89,36.9666666667,2.5,764.4,87,2,61,0.6,17.6970359404,17.6970359404 -50,20,22.7,34.53,19.6,37.3633333333,21.5,35.29,22.89,33.3725,19.2,75.5333333333,3,54.46,21.0333333333,26.6,23,36.99,19.89,37.03,2.4333333333,764.35,87.1666666667,1.8333333333,61,0.55,0.1525629777,0.1525629777 -60,20,22.7,34.59,19.5,37.6266666667,21.5,35.29,22.89,33.5266666667,19.2,74.5633333333,3,56.4666666667,21,26.73,23,37.4566666667,19.89,37.09,2.3666666667,764.3,87.3333333333,1.6666666667,61,0.5,15.21463549,15.21463549 -60,30,22.6,34.6266666667,19.5,37.7225,21.5,35.3266666667,22.89,33.59,19.2,73.49,2.9333333333,56.7333333333,21,26.79,23,37.99,19.89,37.2,2.3,764.25,87.5,1.5,61,0.45,26.5607038047,26.5607038047 -70,20,22.6,34.7,19.5,37.8633333333,21.5,35.345,22.89,33.6633333333,19.1666666667,71.2633333333,2.8633333333,57.8266666667,21,26.89,22.89,38.5,19.89,37.26,2.2333333333,764.2,87.6666666667,1.3333333333,61,0.4,43.1954923784,43.1954923784 -70,10,22.6,34.745,19.39,38.03,21.5,35.4,22.79,33.6266666667,19.1,69.4566666667,2.73,58.5666666667,21,27.03,22.89,38.8333333333,19.89,37.29,2.1666666667,764.15,87.8333333333,1.1666666667,61,0.35,12.9604297108,12.9604297108 -50,0,22.5666666667,34.86,19.3233333333,38.09,21.5,35.4333333333,22.79,33.76,19.1,67.8933333333,2.6333333333,58.4333333333,20.9633333333,27.1,22.89,39.1933333333,19.89,37.29,2.1,764.1,88,1,61,0.3,4.6987472102,4.6987472102 -40,0,22.5,35.06,19.3566666667,38.2,21.5,35.5,22.79,33.59,19.1,67.1,2.5,58.6933333333,20.89,27.1666666667,22.8233333333,39.5266666667,19.89,37.3633333333,2.0833333333,764.1,88.1666666667,1,61,0.3166666667,4.1944802273,4.1944802273 -30,0,22.5,35.4333333333,19.23,38.26,21.5,35.5,22.73,33.53,19.0666666667,66.2666666667,2.245,59.145,20.89,27.29,22.8566666667,39.8266666667,19.89,37.3633333333,2.0666666667,764.1,88.3333333333,1,61,0.3333333333,12.8872089204,12.8872089204 -30,0,22.5,35.4333333333,19.2,38.4,21.5,35.5,22.6666666667,33.3633333333,19,65.5333333333,2.36,60.9666666667,20.89,27.3566666667,22.79,40.0266666667,19.89,37.4333333333,2.05,764.1,88.5,1,61,0.35,4.3270005379,4.3270005379 -30,0,22.4633333333,35.3633333333,19.1333333333,38.4666666667,21.39,35.4,22.5333333333,33.29,19,64.845,2.4333333333,61.1,20.89,27.4266666667,22.79,40.345,19.89,37.5,2.0333333333,764.1,88.6666666667,1,61,0.3666666667,5.8894230286,5.8894230286 -50,0,22.39,35.3633333333,19.1,38.53,21.39,35.4,22.4633333333,33.1633333333,19,64.2,2.29,61.4266666667,20.89,27.5,22.79,40.4,19.84,37.45,2.0166666667,764.1,88.8333333333,1,61,0.3833333333,9.3152367161,9.3152367161 -50,0,22.39,35.3633333333,19.1,38.59,21.29,35.4,22.39,33.09,18.9266666667,63.6666666667,2.29,61.8333333333,20.79,27.4266666667,22.73,40.4,19.89,37.59,2,764.1,89,1,61,0.4,3.4747415921,3.4747415921 -50,0,22.39,35.29,19,38.6266666667,21.3566666667,35.4666666667,22.29,33.09,18.89,62.96,2.26,62.49,20.79,27.5666666667,22.73,40.4,19.89,37.59,1.8833333333,764.0666666667,89.3333333333,1.1666666667,60,0.3333333333,16.9311594102,16.9311594102 -60,0,22.39,35.29,19,38.7,21.39,35.5,22.23,33.03,18.89,62.4266666667,2.2,62.49,20.79,27.6,22.73,40.4,19.8566666667,37.6633333333,1.7666666667,764.0333333333,89.6666666667,1.3333333333,59,0.2666666667,43.0176958092,43.0176958092 -50,0,22.3233333333,35.29,18.9633333333,38.7,21.39,35.5,22.2,32.9333333333,18.89,61.7666666667,2.09,63.1266666667,20.79,27.6666666667,22.7,40.5,19.79,37.59,1.65,764,90,1.5,58,0.2,39.0771258739,39.0771258739 -50,0,22.29,35.29,18.89,38.76,21.39,35.5,22.1333333333,32.9333333333,18.89,61.2266666667,2.03,63.1266666667,20.745,27.7,22.6333333333,40.5,19.89,37.7,1.5333333333,763.9666666667,90.3333333333,1.6666666667,57,0.1333333333,13.8601109153,13.8601109153 -50,0,22.29,35.29,18.89,38.79,21.39,35.5,22.0666666667,32.8633333333,18.89,60.66,2.0266666667,63.6966666667,20.76,27.79,22.6,40.8266666667,19.89,37.76,1.4166666667,763.9333333333,90.6666666667,1.8333333333,56,0.0666666667,36.158068059,36.158068059 -40,0,22.29,35.29,18.8233333333,38.73,21.39,35.5,22,32.79,18.8233333333,60.1333333333,1.8266666667,63.2233333333,20.7,27.79,22.6,40.9,19.79,37.7,1.3,763.9,91,2,55,0,31.6660616547,31.6660616547 -50,0,22.23,35.23,18.79,38.7,21.39,35.5,21.9633333333,32.79,18.79,59.6,1.79,64.4633333333,20.7,27.8233333333,22.6,41.1266666667,19.8566666667,37.76,1.3,763.8666666667,91,2,53.3333333333,0,7.8167361906,7.8167361906 -50,0,22.2,35.29,18.73,38.7,21.39,35.53,21.89,32.79,18.79,59.2666666667,1.79,65.3233333333,20.7,27.89,22.6,41.26,19.89,37.9,1.3,763.8333333333,91,2,51.6666666667,0,7.6369684422,7.6369684422 -60,0,22.2,35.29,18.6666666667,38.73,21.4633333333,35.59,21.84,32.8,18.79,58.93,1.79,65.6966666667,20.7,27.89,22.6,41.2,19.8233333333,37.8266666667,1.3,763.8,91,2,50,0,7.9425981152,7.9425981152 -60,0,22.1,35.29,18.6,38.8175,21.5,35.6266666667,21.79,32.79,18.79,58.6566666667,1.79,66.23,20.7,27.9633333333,22.6,41.1266666667,19.8566666667,37.9,1.3,763.7666666667,91,2,48.3333333333,0,44.7544211289,44.7544211289 -50,0,22.1,35.29,18.6,39.0266666667,21.525,35.7,21.73,32.79,18.79,58.3633333333,1.79,67.26,20.6666666667,28,22.5666666667,41.09,19.8566666667,37.9666666667,1.3,763.7333333333,91,2,46.6666666667,0,14.4969676272,14.4969676272 -50,0,22.1,35.29,18.5666666667,39.1266666667,21.6,35.6266666667,21.7,32.9,18.79,58.0966666667,1.7675,67.545,20.6,28,22.5,41.09,19.8233333333,37.9333333333,1.3,763.7,91,2,45,0,0.9309744695,0.9309744695 -40,0,22,35.2,18.5,39.26,21.6,35.7,21.7,32.9,18.79,57.8333333333,1.6333333333,67.5266666667,20.6,28.0333333333,22.5,41.06,19.89,38,1.2166666667,763.6333333333,91.3333333333,1.8333333333,43,-0.0333333333,2.4810157949,2.4810157949 -20,0,22,35.1266666667,18.4633333333,39.4,21.6,35.7,21.6666666667,33,18.73,57.6266666667,1.6666666667,68.3633333333,20.6,28.1,22.5,41,19.89,38.09,1.1333333333,763.5666666667,91.6666666667,1.6666666667,41,-0.0666666667,29.6593025792,29.6593025792 -30,0,22,35.2,18.39,39.4,21.6,35.79,21.6,33,18.7,57.3333333333,1.5333333333,68.5633333333,20.6,28.1,22.5,40.9666666667,19.8233333333,38.09,1.05,763.5,92,1.5,39,-0.1,12.067690026,12.067690026 -30,0,21.9266666667,35.2,18.3566666667,39.5,21.5333333333,35.79,21.6,33,18.7,57.1266666667,1.5666666667,68.9966666667,20.5333333333,28.1,22.4266666667,40.7666666667,19.8233333333,38.1266666667,0.9666666667,763.4333333333,92.3333333333,1.3333333333,37,-0.1333333333,15.2071061195,15.2071061195 -50,0,21.89,35.2,18.29,39.5,21.5333333333,35.79,21.6,33,18.7,56.895,1.5,69.19,20.5,28.2,22.39,40.59,19.8233333333,38.1266666667,0.8833333333,763.3666666667,92.6666666667,1.1666666667,35,-0.1666666667,39.7246813984,39.7246813984 -60,0,21.89,35.2,18.29,39.59,21.5333333333,35.79,21.5,33.03,18.7,56.6333333333,1.4633333333,69.6233333333,20.5,28.2,22.39,40.545,19.79,38.2,0.8,763.3,93,1,33,-0.2,37.5330573763,37.5330573763 -40,0,21.79,35.09,18.29,39.59,21.5333333333,35.79,21.5,33.09,18.7,56.4333333333,1.39,69.69,20.5,28.23,22.39,40.59,19.79,38.23,0.6666666667,763.25,93.5,1,29.8333333333,-0.2666666667,29.4672686374,29.4672686374 -50,0,21.79,35.09,18.2,39.53,21.5333333333,35.79,21.4633333333,33.06,18.6666666667,56.2233333333,1.39,70.3,20.5,28.29,22.39,40.59,19.79,38.29,0.5333333333,763.2,94,1,26.6666666667,-0.3333333333,6.8105692975,6.8105692975 -50,0,21.76,35.1266666667,18.2,39.59,21.6,35.8266666667,21.39,33.06,18.6,56.03,1.3233333333,70.4333333333,20.5,28.29,22.3233333333,40.59,19.8233333333,38.3266666667,0.4,763.15,94.5,1,23.5,-0.4,31.3740912941,31.3740912941 -50,0,21.76,35.2,18.1666666667,39.6266666667,21.5333333333,35.9,21.39,33.09,18.6,55.8633333333,1.29,70.8333333333,20.4266666667,28.23,22.39,40.59,19.8233333333,38.4,0.2666666667,763.1,95,1,20.3333333333,-0.4666666667,43.2421416626,43.2421416626 -50,0,21.7,35.2,18.1,39.7,21.6,35.9,21.39,33.1633333333,18.6,55.6566666667,1.29,71.1666666667,20.445,28.29,22.3233333333,40.59,19.79,38.4,0.1333333333,763.05,95.5,1,17.1666666667,-0.5333333333,29.8846015707,29.8846015707 -50,0,21.7,35.26,18.1,39.79,21.6,35.9666666667,21.29,33.2,18.6,55.5266666667,1.29,71.4633333333,20.4633333333,28.39,22.29,40.6266666667,19.79,38.4,0,763,96,1,14,-0.6,9.8984968034,9.8984968034 -50,0,21.6,35.2,18.1,39.79,21.6,36,21.29,33.2,18.6,55.4,1.29,71.59,20.39,28.39,22.29,40.76,19.79,38.5,0.2,763,96.6666666667,1.3333333333,11.8333333333,-0.3,49.1025131312,49.1025131312 -50,0,21.6,35.2,18.0666666667,39.8633333333,21.6,36,21.29,33.2,18.6,55.26,1.3233333333,71.8233333333,20.39,28.39,22.29,40.79,19.79,38.5,0.4,763,97.3333333333,1.6666666667,9.6666666667,-1.11022302462516E-16,6.5837308648,6.5837308648 -50,0,21.5666666667,35.29,18,39.8633333333,21.6,36,21.29,33.26,18.6,55.1266666667,1.4633333333,72.23,20.39,28.39,22.23,40.73,19.79,38.59,0.6,763,98,2,7.5,0.3,9.0668037301,9.0668037301 -50,0,21.5666666667,35.29,18,40.03,21.6,36,21.245,33.245,18.6,55.06,1.6,72.45,20.39,28.4266666667,22.26,40.76,19.79,38.6633333333,0.8,763,98.6666666667,2.3333333333,5.3333333333,0.6,39.4471674808,39.4471674808 -40,0,21.5,35.29,18,40.195,21.6,36.03,21.2,33.26,18.6,54.9333333333,1.7,72.8966666667,20.39,28.5,22.2,40.7,19.8233333333,38.73,1,763,99.3333333333,2.6666666667,3.1666666667,0.9,11.8069447693,11.8069447693 -50,0,21.5,35.3633333333,18,40.3633333333,21.6,36.045,21.2,33.26,18.6,54.76,1.7,73.1566666667,20.39,28.6,22.2,40.59,19.8233333333,38.79,1.2,763,100,3,1,1.2,43.0171414395,43.0171414395 -50,0,21.39,35.29,17.89,40.4333333333,21.6,36.09,21.1,33.4,18.5333333333,54.7,1.8266666667,73.3666666667,20.3233333333,28.6,22.2,40.59,19.79,38.79,1.3333333333,763.05,99.8333333333,3,1.1666666667,1.3166666667,20.9712663433,20.9712663433 -50,0,21.39,35.3175,17.89,40.56,21.6,36.09,21.1,33.4,18.5,54.56,1.9,73.56,20.29,28.6333333333,22.2,40.56,19.79,38.79,1.4666666667,763.1,99.6666666667,3,1.3333333333,1.4333333333,32.5928569771,32.5928569771 -50,0,21.39,35.4,17.89,40.53,21.6,36.09,21.1,33.4333333333,18.5,54.4333333333,2.03,73.76,20.29,28.6333333333,22.2,40.56,19.89,39,1.6,763.15,99.5,3,1.5,1.55,28.9849797729,28.9849797729 -30,0,21.3566666667,35.4,17.89,40.59,21.6,36.09,21.1,33.5,18.5,54.3633333333,2.1633333333,73.9,20.29,28.7,22.1666666667,40.59,19.8233333333,38.9333333333,1.7333333333,763.2,99.3333333333,3,1.6666666667,1.6666666667,16.1503631505,16.1503631505 -50,10,21.29,35.4666666667,17.79,40.6266666667,21.6,36.09,21.1,33.53,18.5,54.23,2.2,73.9333333333,20.29,28.7,22.1,40.6633333333,19.79,39,1.8666666667,763.25,99.1666666667,3,1.8333333333,1.7833333333,21.5667615179,21.5667615179 -20,0,21.29,35.5,17.79,40.7,21.6,36.09,21.0333333333,33.53,18.5,54.145,2.26,74.06,20.29,28.79,22.1,40.9333333333,19.79,39,2,763.3,99,3,2,1.9,20.8886571112,20.8886571112 -60,0,21.29,35.6933333333,17.79,40.7,21.6,36.1633333333,21,33.5,18.5,53.8633333333,2.4,74.09,20.29,28.79,22.1,41.1333333333,19.79,39,2.0333333333,763.3166666667,99.1666666667,3,2.8333333333,1.95,26.1486410163,26.1486410163 -80,0,21.29,35.79,17.79,40.76,21.5,36.09,21,33.56,18.5,53.39,2.4666666667,74.09,20.29,28.8233333333,22.1,41.1,19.79,39,2.0666666667,763.3333333333,99.3333333333,3,3.6666666667,2,21.6098574456,21.6098574456 -90,0,21.29,35.73,17.76,40.6333333333,21.4266666667,35.9633333333,21,33.5,19.6666666667,83.9666666667,2.53,74.1566666667,20.23,28.7633333333,22.075,40.625,19.79,39,2.1,763.35,99.5,3,4.5,2.05,9.1387641151,9.1387641151 -50,0,21.2,35.9633333333,17.7,40.36,21.39,35.76,21,33.4333333333,19.8,82.6333333333,2.59,74.09,20.2,28.7,22.0666666667,40,19.8566666667,38.9666666667,2.1333333333,763.3666666667,99.6666666667,3,5.3333333333,2.1,3.514478181,3.514478181 -60,0,21.26,36.1633333333,17.7,40.5666666667,21.39,35.76,21,33.4,19.4633333333,80.63,2.7,74.1566666667,20.1333333333,28.7,22,39.43,19.79,38.8266666667,2.1666666667,763.3833333333,99.8333333333,3,6.1666666667,2.15,48.2422160218,48.2422160218 -60,0,21.29,36.3633333333,17.76,40.7,21.39,35.7,20.9266666667,33.4,19.39,79.6966666667,2.76,74.1566666667,20.1,28.7,22,39.0966666667,19.79,38.6633333333,2.2,763.4,100,3,7,2.2,27.1426013322,27.1426013322 -50,0,21.29,36.29,17.7,40.73,21.39,35.7,20.89,33.4,19.26,77.8666666667,2.8266666667,74.1233333333,20.1,28.7,21.89,38.7233333333,19.79,38.53,2.2333333333,763.4333333333,99.8333333333,3,7.5,2.2166666667,37.4331548344,37.4331548344 -50,0,21.26,36.26,17.76,40.73,21.39,35.7,20.89,33.3266666667,19.1333333333,75.7266666667,2.9,74.19,20.1,28.7,21.89,38.4633333333,19.79,38.26,2.2666666667,763.4666666667,99.6666666667,3,8,2.2333333333,27.7338040178,27.7338040178 -50,10,21.2,36.2,17.73,40.7,21.39,35.6266666667,20.79,33.29,19.0666666667,73.06,2.9,74.19,20.0666666667,28.6666666667,21.89,38.26,19.79,38.0666666667,2.3,763.5,99.5,3,8.5,2.25,34.0297079994,34.0297079994 -40,0,21.2,36.1633333333,17.79,40.6266666667,21.29,35.6266666667,20.79,33.29,19,70.9333333333,3.03,74.1233333333,20,28.6666666667,21.8233333333,38.0666666667,19.73,37.8333333333,2.3333333333,763.5333333333,99.3333333333,3,9,2.2666666667,12.5111661153,12.5111661153 -50,0,21.2,36.09,17.79,40.56,21.29,35.7,20.79,33.29,18.89,68.66,3.1633333333,74.19,20,28.7,21.76,37.8633333333,19.73,37.6266666667,2.3666666667,763.5666666667,99.1666666667,3,9.5,2.2833333333,14.2232275917,14.2232275917 -50,0,21.2,36.1633333333,17.745,40.3425,21.3566666667,35.7,20.79,33.29,18.89,67.1333333333,3.23,74.09,20,28.7,21.76,37.79,19.76,37.56,2.4,763.6,99,3,10,2.3,6.3331255689,6.3331255689 -70,0,21.2,36.09,17.79,40.23,21.29,35.7,20.79,33.3633333333,18.8566666667,65.2266666667,3.29,74.03,20,28.7,21.79,37.6633333333,19.7,37.4333333333,2.4166666667,763.6,98.8333333333,3,10,2.2833333333,34.6915528644,34.6915528644 -50,0,21.2,36.09,17.79,40.3266666667,21.29,35.7,20.79,33.3266666667,18.8566666667,63.7666666667,3.4633333333,74.03,20,28.7,21.79,37.53,19.76,37.26,2.4333333333,763.6,98.6666666667,3,10,2.2666666667,44.0047382261,44.0047382261 -30,0,21.2,36.09,17.79,40.4,21.29,35.7,20.79,33.4,18.79,62.36,3.59,74.03,19.9633333333,28.79,21.7,37.3633333333,19.7,37.1266666667,2.45,763.6,98.5,3,10,2.25,48.4400929417,48.4400929417 -30,0,21.2,35.95,17.79,40.0266666667,21.29,35.6266666667,20.76,33.4,18.79,61.2333333333,3.6266666667,73.8,19.89,28.79,21.7,37.23,19.7,37,2.4666666667,763.6,98.3333333333,3,10,2.2333333333,15.8849014202,15.8849014202 -30,0,21.1,35.79,17.79,39.9,21.29,35.5,20.7,33.4,18.79,59.7333333333,3.7,73.66,19.89,28.79,21.7,37.1633333333,19.6333333333,36.86,2.4833333333,763.6,98.1666666667,3,10,2.2166666667,2.269899461,2.269899461 -40,0,21.1,35.79,17.79,39.76,21.23,35.4333333333,20.7,33.4333333333,18.73,58.7933333333,3.79,73.4266666667,19.89,28.8566666667,21.6333333333,37.03,19.7,36.76,2.5,763.6,98,3,10,2.2,47.4971877295,47.4971877295 -40,0,21.1,35.7,17.79,39.7,21.1666666667,35.3266666667,20.7,33.5,18.7,57.645,3.73,72.6933333333,19.89,28.89,21.6,36.9666666667,19.7,36.6266666667,2.5666666667,763.6,97.6666666667,2.8333333333,13.5,2.2166666667,20.0104252319,20.0104252319 -60,0,21.1,35.7,17.79,39.6633333333,21.1,35.4,20.7,33.4,18.7,56.4966666667,3.7666666667,72.7266666667,19.89,28.89,21.6,36.8266666667,19.7,36.5,2.6333333333,763.6,97.3333333333,2.6666666667,17,2.2333333333,18.5642172466,18.5642172466 -60,0,21.1,35.6633333333,17.79,39.53,21.1,35.4,20.6333333333,33.4,18.7,55.83,3.9666666667,72.4666666667,19.8566666667,28.8566666667,21.5666666667,36.79,19.6666666667,36.3633333333,2.7,763.6,97,2.5,20.5,2.25,16.2077011424,16.2077011424 -50,0,21.1,35.59,17.79,39.5,21.1,35.4,20.6666666667,33.4666666667,18.6333333333,54.99,3.9333333333,71.4933333333,19.79,28.79,21.5,36.73,19.6,36.23,2.7666666667,763.6,96.6666666667,2.3333333333,24,2.2666666667,28.0385077698,28.0385077698 -70,0,21.0666666667,35.5266666667,17.79,39.4333333333,21.1,35.29,20.6666666667,33.4,18.6333333333,54.53,4.06,71.16,19.8233333333,28.86,21.5,36.7,19.6,36.09,2.8333333333,763.6,96.3333333333,2.1666666667,27.5,2.2833333333,4.5657129143,4.5657129143 -40,10,21,35.3266666667,17.79,39.1633333333,21.1,35.23,20.6,33.29,18.6,53.9,4.1233333333,70.2666666667,19.8233333333,28.9266666667,21.5,36.59,19.6,36.03,2.9,763.6,96,2,31,2.3,38.7441867613,38.7441867613 -60,0,21,35.3266666667,17.79,39.1633333333,21.1,35.2,20.6,33.29,18.6,53.4266666667,4.245,69.55,19.84,28.945,21.5,36.59,19.6,35.9666666667,3.0333333333,763.6,95,2,33.1666666667,2.2833333333,20.6530754105,20.6530754105 -50,0,20.9266666667,35.4666666667,17.79,39.2,21.1,35.26,20.6,33.4,18.6,52.9,4.2633333333,68.2,19.79,28.89,21.39,36.4333333333,19.6,35.9,3.1666666667,763.6,94,2,35.3333333333,2.2666666667,41.1813576939,41.1813576939 -40,0,20.9633333333,35.5,17.79,39.2,21.1,35.26,20.6,33.4,18.6,52.5,4.3,67.0333333333,19.79,28.89,21.39,36.4333333333,19.5666666667,35.79,3.3,763.6,93,2,37.5,2.25,18.2966598775,18.2966598775 -60,0,20.89,35.56,17.8233333333,39.1266666667,21.1,35.2,20.6,33.3633333333,18.6,52.1333333333,4.4333333333,66.56,19.79,28.9266666667,21.39,36.4,19.5666666667,35.79,3.4333333333,763.6,92,2,39.6666666667,2.2333333333,44.1561929067,44.1561929067 -50,0,20.89,35.6266666667,17.89,39.2,21,35.1266666667,20.6,33.3175,18.5333333333,51.9333333333,4.76,65.7666666667,19.79,28.9266666667,21.39,36.3266666667,19.6,35.7,3.5666666667,763.6,91,2,41.8333333333,2.2166666667,12.2677755426,12.2677755426 -130,0,20.89,35.7,17.89,39.245,21,35.2,20.6,33.3266666667,18.5,51.6333333333,4.9666666667,64.2333333333,19.79,29,21.39,36.29,19.6,35.6266666667,3.7,763.6,90,2,44,2.2,29.7262446955,29.7262446955 -90,0,20.89,35.6266666667,17.89,39.2,21,35.23,20.6,33.29,18.5,51.36,5.06,61.4666666667,19.79,29,21.3233333333,36.29,19.5,35.59,3.9333333333,763.55,88.5,2,46.8333333333,2.1833333333,18.2943608263,18.2943608263 -70,0,20.89,35.8333333333,17.89,39.4,21,35.29,20.6,33.29,18.5333333333,50.99,5.06,60.7266666667,19.79,28.89,21.29,36.2,19.5666666667,35.53,4.1666666667,763.5,87,2,49.6666666667,2.1666666667,37.2768223751,37.2768223751 -70,0,20.89,35.9333333333,18,39.4666666667,21,35.29,20.6,33.29,18.5333333333,50.6566666667,5.26,59.0666666667,19.79,28.89,21.29,36.2,19.5,35.4666666667,4.4,763.45,85.5,2,52.5,2.15,0.5672462517,0.5672462517 -70,0,20.89,35.9333333333,18,39.3266666667,21,35.3633333333,20.6,33.29,18.5,50.3333333333,5.5266666667,57.9333333333,19.7,28.9266666667,21.29,36.1633333333,19.5,35.4,4.6333333333,763.4,84,2,55.3333333333,2.1333333333,46.2529645418,46.2529645418 -70,0,20.89,35.95,18.1,39.26,21,35.3633333333,20.5,33.29,18.5,50.0666666667,5.76,56.16,19.7,28.9266666667,21.23,36.03,19.5,35.3633333333,4.8666666667,763.35,82.5,2,58.1666666667,2.1166666667,43.4756275034,43.4756275034 -60,0,20.89,36,18.1,39.1266666667,21,35.4,20.5666666667,33.29,18.5,49.76,5.9666666667,55.1,19.7,28.9633333333,21.2,36,19.5,35.29,5.1,763.3,81,2,61,2.1,31.9308439386,31.9308439386 -60,0,20.89,36,18.2,39.06,21,35.4,20.5,33.29,18.5,49.5666666667,6.2933333333,52.1333333333,19.7,28.9633333333,21.2,36,19.5,35.29,5.3666666667,763.2166666667,79.6666666667,2,54.6666666667,2.1,14.7544492502,14.7544492502 -60,0,20.89,35.9333333333,18.2,39,21,35.4,20.5,33.29,18.5,49.19,6.6266666667,49.9333333333,19.7,29,21.2,35.9666666667,19.5,35.29,5.6333333333,763.1333333333,78.3333333333,2,48.3333333333,2.1,46.7787664267,46.7787664267 -60,0,20.89,35.9333333333,18.3233333333,38.8633333333,21,35.3266666667,20.5,33.2,18.5,48.9666666667,7.16,46.36,19.7,28.9266666667,21.2,35.9,19.5,35.2,5.9,763.05,77,2,42,2.1,33.1531577976,33.1531577976 -50,0,20.9266666667,38.96,18.39,38.79,21.1,35.3333333333,20.5,33.2,18.5,48.7666666667,7.4333333333,42.5,19.7,28.89,21.2,35.8633333333,19.5,35.2,6.1666666667,762.9666666667,75.6666666667,2,35.6666666667,2.1,30.9109925991,30.9109925991 -50,0,21,38.2933333333,18.5,39.1633333333,21.1,35.2,20.5,33.09,18.5,48.4666666667,7.9666666667,40.9666666667,19.7,28.8233333333,21.2,35.79,19.5,35.2,6.4333333333,762.8833333333,74.3333333333,2,29.3333333333,2.1,28.0604568776,28.0604568776 -50,0,21,37.76,18.5666666667,38.9633333333,21.1,35.2,20.5,33.09,18.5,48.3266666667,8.195,38.9675,19.7,28.79,21.2,35.745,19.5,35.29,6.7,762.8,73,2,23,2.1,8.80787184,8.80787184 -50,0,21,37.5666666667,18.6333333333,38.76,21.1,35.2,20.6,33.09,18.5,48.1333333333,8.3,37.73,19.7,28.79,21.23,35.6633333333,19.5,35.3633333333,6.9666666667,762.7166666667,72.3333333333,2.1666666667,24,2.2166666667,26.0460535181,26.0460535181 -40,0,21.0333333333,37.26,18.7,38.6266666667,21.1,35.2,20.6,33.1633333333,18.5,47.9333333333,8.49,37.2333333333,19.7,28.79,21.29,35.59,19.6,35.4333333333,7.2333333333,762.6333333333,71.6666666667,2.3333333333,25,2.3333333333,35.5876705726,35.5876705726 -60,0,21.0333333333,37,18.79,38.2966666667,21.1666666667,35.2,20.6,33.2,18.5,47.76,8.7633333333,36.96,19.7,28.79,21.39,35.4666666667,19.6,35.5,7.5,762.55,71,2.5,26,2.45,46.2946351967,46.2946351967 -50,0,21.1,36.6933333333,18.79,37.89,21.1,35.09,20.6666666667,33.26,18.5,47.5666666667,8.8,35.1,19.7,28.79,21.4633333333,35.4,19.6,35.9266666667,7.7666666667,762.4666666667,70.3333333333,2.6666666667,27,2.5666666667,3.352596215,3.352596215 -60,0,21.1,36.2266666667,18.89,37.73,21.1,35.03,20.7,33.26,18.5,47.3333333333,8.9333333333,35.36,19.7,28.79,21.5333333333,35.3633333333,19.6,36.5333333333,8.0333333333,762.3833333333,69.6666666667,2.8333333333,28,2.6833333333,11.8345153285,11.8345153285 -50,0,21.1,35.8633333333,18.89,37.79,21.2,34.9,20.7225,33.2675,18.5,47.0666666667,9.1966666667,34.7566666667,19.7,28.79,21.6666666667,35.29,19.6,37.0666666667,8.3,762.3,69,3,29,2.8,34.7702742671,34.7702742671 -60,0,21.1666666667,35.79,19.05,37.9,21.2,34.8266666667,20.79,33.23,18.5,46.9,9.59,33.83,19.7,28.79,21.73,35.1633333333,19.6666666667,37.3333333333,8.1833333333,762.2666666667,70.1666666667,3.1666666667,30.8333333333,2.9333333333,16.6132035665,16.6132035665 -50,0,21.2,35.76,19.1,37.8633333333,21.23,34.8266666667,20.79,33.2,18.5,46.7666666667,9.53,32.9266666667,19.7,28.79,21.79,35.03,19.6,37.4333333333,8.0666666667,762.2333333333,71.3333333333,3.3333333333,32.6666666667,3.0666666667,5.6653097738,5.6653097738 -40,0,21.26,35.76,19.1666666667,37.73,21.29,34.9,20.79,33.2,18.5,46.59,9.39,33.4,19.7,28.79,21.89,35,19.6,37.56,7.95,762.2,72.5,3.5,34.5,3.2,46.9891008339,46.9891008339 -50,0,21.3233333333,35.7,19.23,37.6266666667,21.29,34.9,20.89,33.29,18.5666666667,46.59,9.49,34.03,19.76,28.79,21.9633333333,34.9333333333,19.7,37.7,7.8333333333,762.1666666667,73.6666666667,3.6666666667,36.3333333333,3.3333333333,18.6043589259,18.6043589259 -50,10,21.39,35.7,19.29,37.6266666667,21.29,34.8633333333,20.89,33.29,18.5333333333,46.5,9.5633333333,33.23,19.73,28.8233333333,22.0333333333,34.79,19.7,37.7,7.7166666667,762.1333333333,74.8333333333,3.8333333333,38.1666666667,3.4666666667,35.302901722,35.302901722 -60,0,21.39,35.6633333333,19.3233333333,37.56,21.29,34.8633333333,20.89,33.29,18.5333333333,46.4333333333,9.2633333333,34.5666666667,19.79,28.89,22.1,34.79,19.6333333333,37.73,7.6,762.1,76,4,40,3.6,37.5501235481,37.5501235481 -50,0,21.39,35.59,19.39,37.5,21.3566666667,34.8633333333,20.89,33.3633333333,18.5333333333,46.3633333333,9.2633333333,36.6266666667,19.79,28.9266666667,22.2,34.7,19.7,37.79,7.3333333333,762.1,77.8333333333,4,40,3.65,20.1877785614,20.1877785614 -50,0,21.39,35.59,19.39,37.4333333333,21.29,34.79,20.89,33.4,18.6,46.29,9.2,37.6333333333,19.79,29,22.2,34.7,19.7,37.79,7.0666666667,762.1,79.6666666667,4,40,3.7,11.3680989016,11.3680989016 -50,0,21.39,35.59,19.4633333333,37.5,21.3566666667,34.79,20.89,33.4666666667,18.5,46.2,8.7933333333,39.1666666667,19.79,29.1333333333,22.2,34.79,19.7,37.8633333333,6.8,762.1,81.5,4,40,3.75,13.6643289821,13.6643289821 -50,0,21.39,35.7233333333,19.39,37.5966666667,21.29,34.8633333333,20.89,33.53,18.5,46.09,8.3966666667,41.8666666667,19.79,29.2,22.1333333333,34.8633333333,19.65,37.845,6.5333333333,762.1,83.3333333333,4,40,3.8,3.6460427218,3.6460427218 -80,0,21.39,36.1266666667,19.3233333333,37.8633333333,21.29,34.9,20.89,33.59,18.5,46.09,7.92,44.9925,19.79,29.3233333333,22.1,35.0666666667,19.7,37.9333333333,6.2666666667,762.1,85.1666666667,4,40,3.85,45.5204309081,45.5204309081 -80,0,21.39,36.26,19.29,38.1266666667,21.3566666667,34.9666666667,20.8566666667,33.7,18.5,46.09,7.5633333333,47.2566666667,19.79,29.39,22.1,35.46,19.7,38,6,762.1,87,4,40,3.9,22.9921127553,22.9921127553 -90,10,21.39,36.36,19.29,38.26,21.3566666667,35.09,20.79,33.7,18.5,46.09,7.4,48.2266666667,19.79,29.5,22.23,36,19.6,37.9333333333,6.0166666667,762.1,86.6666666667,4,40,3.8666666667,30.0236225245,30.0236225245 -90,0,21.39,36.5,19.2,38.4333333333,21.29,35.09,20.79,33.7,18.5,46.09,7.3333333333,48.7666666667,19.79,29.5666666667,22.315,36.295,19.6,37.9333333333,6.0333333333,762.1,86.3333333333,4,40,3.8333333333,13.7827145983,13.7827145983 -80,0,21.3566666667,36.56,19.2,38.5,21.29,35.23,20.79,33.7,18.5,46.09,7.06,49.2266666667,19.79,29.6,22.39,36.5266666667,19.6333333333,37.9333333333,6.05,762.1,86,4,40,3.8,48.6607920378,48.6607920378 -80,0,21.29,36.4333333333,19.1666666667,38.4,21.29,35.23,20.79,33.7,18.5,46.06,7,49.8333333333,19.79,29.7,22.5,36.73,19.7,38,6.0666666667,762.1,85.6666666667,4,40,3.7666666667,43.6580980546,43.6580980546 -70,0,21.29,36.4666666667,19.1,38.4,21.29,35.23,20.73,33.7,18.5,46,6.9666666667,50.3666666667,19.79,29.76,22.5,36.8633333333,19.6333333333,37.7966666667,6.0833333333,762.1,85.3333333333,4,40,3.7333333333,37.5589606585,37.5589606585 -70,0,21.29,36.4,19.0333333333,38.5666666667,21.29,35.29,20.7,33.7,18.5,45.9,6.9,50.96,19.79,29.79,22.5,37.0666666667,19.6333333333,37.4633333333,6.1,762.1,85,4,40,3.7,6.8062616629,6.8062616629 -240,0,21.29,36.3633333333,19.1,38.7,21.29,35.2,20.7,33.7675,18.5,45.8266666667,6.8666666667,51.9233333333,19.73,29.79,22.5,37.2,19.6,37.4666666667,6.05,762.1166666667,85.3333333333,4,44.1666666667,3.7,32.7602106147,32.7602106147 -250,0,21.29,36.43,19.245,38.745,21.29,35.2,20.7,33.79,18.5,45.76,6.7266666667,53.1966666667,19.7,29.8233333333,22.5333333333,37.4,19.6,37.3266666667,6,762.1333333333,85.6666666667,4,48.3333333333,3.7,4.0189308231,4.0189308231 -100,0,21.39,36.7266666667,19.29,38.73,21.29,35.2,20.6,33.7,18.5,45.76,6.56,54.3966666667,19.7,29.9633333333,22.6,37.4666666667,19.7,37.43,5.95,762.15,86,4,52.5,3.7,13.2655315101,13.2655315101 -110,10,21.4633333333,37.1933333333,19.3566666667,38.8633333333,21.29,35.3333333333,20.6,33.76,18.5,45.7,6.5,55.1233333333,19.7,30.1,22.6,37.5266666667,19.6333333333,37.1566666667,5.9,762.1666666667,86.3333333333,4,56.6666666667,3.7,11.1902674544,11.1902674544 -130,0,21.5333333333,37.1633333333,19.39,39,21.29,35.59,20.6,33.79,18.4266666667,45.6266666667,6.4,55.6633333333,19.7,30.1,22.6,37.4666666667,19.6666666667,36.93,5.85,762.1833333333,86.6666666667,4,60.8333333333,3.7,24.9433494522,24.9433494522 -120,0,21.6666666667,37.1633333333,19.4633333333,39,21.39,35.73,20.6,33.8633333333,18.5,45.79,6.4,55.7233333333,19.7,30.1,22.6333333333,37.53,19.6,36.73,5.8,762.2,87,4,65,3.7,46.2105501443,46.2105501443 -120,0,21.7,37.06,19.5333333333,39.09,21.4633333333,35.8633333333,20.5666666667,33.9,18.5,45.79,6.3,55.8633333333,19.7,30.1666666667,22.7,37.59,19.6,36.59,5.7333333333,762.2,87.5,4,57.8333333333,3.7333333333,40.0290292106,40.0290292106 -110,10,21.7675,36.8975,19.6666666667,39.1633333333,21.5333333333,35.8633333333,20.5,33.9,18.5,45.8633333333,6.3,55.79,19.7,30.2,22.73,37.6266666667,19.6,36.53,5.6666666667,762.2,88,4,50.6666666667,3.7666666667,40.3054297669,40.3054297669 -120,0,21.8566666667,36.79,19.73,39.06,21.6,35.79,20.5,33.9333333333,18.5,45.79,6.3,56.0666666667,19.7,30.26,22.79,37.7,19.6,36.4666666667,5.6,762.2,88.5,4,43.5,3.8,33.2143023261,33.2143023261 -110,0,22,36.76,19.79,39.06,21.6,35.79,20.5,34,18.5,45.9,6.3,56.8,19.7,30.29,22.8233333333,37.73,19.6,36.4,5.5333333333,762.2,89,4,36.3333333333,3.8333333333,11.4911411307,11.4911411307 -110,0,22,36.7,19.8233333333,39.03,21.6,35.79,20.4266666667,34,18.5,46,6.3,57.645,19.7,30.29,22.89,37.79,19.6,36.29,5.4666666667,762.2,89.5,4,29.1666666667,3.8666666667,14.3160960521,14.3160960521 -130,0,22.1,36.6633333333,19.89,39.03,21.7,35.9,20.4266666667,34,18.5,46,6.3,58.1933333333,19.7,30.39,22.89,37.73,19.6,36.29,5.4,762.2,90,4,22,3.9,3.0736189336,3.0736189336 -110,0,22.1,36.53,19.89,39,21.7,35.9,20.39,34,18.5,46,6.3,58.7333333333,19.7,30.4633333333,22.9633333333,37.79,19.6,36.23,5.35,762.2333333333,90.3333333333,4,29,3.9,47.4790386972,47.4790386972 -110,0,22.2,36.4666666667,19.9633333333,38.9333333333,21.7,35.9,20.39,34.06,18.5,46,6.19,59.23,19.7,30.5,23,37.73,19.5666666667,36.2,5.3,762.2666666667,90.6666666667,4,36,3.9,32.4969184119,32.4969184119 -80,0,22.26,36.4666666667,20.0333333333,38.9,21.76,35.9,20.39,34.09,18.5,46,6.1233333333,59.6966666667,19.625,30.5,23,37.73,19.5666666667,36.2,5.25,762.3,91,4,43,3.9,30.8964285417,30.8964285417 -80,0,22.3233333333,36.4,20.1,38.8266666667,21.8233333333,35.9,20.39,34.09,18.5,46,6.09,60.5,19.6,30.5666666667,22.89,38,19.5,36.2,5.2,762.3333333333,91.3333333333,4,50,3.9,3.6453456036,3.6453456036 -80,0,22.39,36.3266666667,20.2,38.79,21.8233333333,35.8266666667,20.39,34.2,18.5,46,6.09,60.96,19.6,30.6,22.865,38.2,19.5,36.2,5.15,762.3666666667,91.6666666667,4,57,3.9,24.7187333996,24.7187333996 -70,0,22.4266666667,36.29,20.2,38.73,21.89,35.9,20.39,34.2,18.5,46.06,6,61.39,19.6666666667,30.6666666667,22.79,38.26,19.5,36.09,5.1,762.4,92,4,64,3.9,22.0415481483,22.0415481483 -90,0,22.5,36.29,20.29,38.76,21.89,35.9,20.39,34.29,18.5,46.09,6,61.53,19.6,30.7,22.79,38.3266666667,19.5,36.09,5.0833333333,762.4166666667,91.6666666667,4.1666666667,63.5,3.8333333333,0.6958519574,0.6958519574 -80,0,22.5333333333,36.2,20.29,38.6266666667,22,35.9,20.39,34.29,18.5,46.09,5.9,61.6933333333,19.6,30.7,22.79,38.4,19.5,36.09,5.0666666667,762.4333333333,91.3333333333,4.3333333333,63,3.7666666667,12.4341053073,12.4341053073 -70,0,22.6,36.2,20.39,38.59,22,35.8266666667,20.39,34.29,18.5,46.09,5.9,61.9666666667,19.6,30.7,22.79,38.9633333333,19.5,36.09,5.05,762.45,91,4.5,62.5,3.7,8.5523082875,8.5523082875 -80,0,22.7,36.29,20.39,38.59,22.1,35.9,20.29,34.29,18.5,46.03,5.7633333333,62,19.6,30.7,22.79,39.2966666667,19.5,36.09,5.0333333333,762.4666666667,90.6666666667,4.6666666667,62,3.6333333333,17.2719337628,17.2719337628 -80,0,22.7,36.29,20.4633333333,38.59,22.1,35.9,20.29,34.29,18.5,46,5.69,62,19.6,30.7,22.76,39.53,19.5,36.09,5.0166666667,762.4833333333,90.3333333333,4.8333333333,61.5,3.5666666667,22.8202990605,22.8202990605 -80,0,22.7,36.29,20.4633333333,38.6633333333,22.1,35.9,20.29,34.3266666667,18.5,46,5.6566666667,61.93,19.6,30.7,22.7,39.53,19.5,36.06,5,762.5,90,5,61,3.5,32.7450805227,32.7450805227 -50,0,22.7,36.29,20.39,38.59,22.1,35.9,20.29,34.3266666667,18.5666666667,46,5.59,61.79,19.6,30.7,22.7,39.53,19.5,36,5,762.5,90,4.6666666667,61,3.4833333333,47.6795432274,47.6795432274 -60,10,22.7,36.29,20.3566666667,38.73,22.1,35.9,20.29,34.3266666667,18.5,46,5.56,62.39,19.6,30.7,22.7,39.6633333333,19.5,36,5,762.5,90,4.3333333333,61,3.4666666667,36.346776702,36.346776702 -30,0,22.7,36.29,20.29,38.6566666667,22,35.8266666667,20.29,34.3266666667,18.5,45.9666666667,5.5,62.4475,19.6,30.7,22.7,40.1933333333,19.5,36.1333333333,5,762.5,90,4,61,3.45,12.3678235454,12.3678235454 -30,0,22.6,36.2,20.26,38.4333333333,21.9266666667,35.9666666667,20.29,34.4,18.5,45.9,5.5,62.4,19.6,30.7,22.76,40.6,19.5,36.89,5,762.5,90,3.6666666667,61,3.4333333333,30.6644230848,30.6644230848 -40,0,22.6,36.2,20.2,38.56,21.8566666667,35.9666666667,20.29,34.4666666667,18.5,46.045,5.4666666667,62.3633333333,19.6333333333,30.73,22.7,41.0666666667,19.5666666667,37.09,5,762.5,90,3.3333333333,61,3.4166666667,6.4393596724,6.4393596724 -30,0,22.6,36.26,20.1,38.6266666667,21.79,35.9666666667,20.26,34.4666666667,18.5,46.1266666667,5.4666666667,62.29,19.7,30.79,22.7,41.26,19.6,37.245,5,762.5,90,3,61,3.4,2.6183146634,2.6183146634 -60,0,22.5,36.29,20.1,38.76,21.79,36.09,20.2,34.4666666667,18.5,46.26,5.4333333333,61.5266666667,19.7,30.79,22.6666666667,41.4333333333,19.6,37.3266666667,5.05,762.5,89.6666666667,3,61.1666666667,3.4166666667,28.3660683432,28.3660683432 -50,0,22.5,36.3633333333,20,38.79,21.79,36.09,20.2,34.5,18.5,46.3266666667,5.5,61.4,19.7,30.8566666667,22.6,41.6933333333,19.6,37.4666666667,5.1,762.5,89.3333333333,3,61.3333333333,3.4333333333,37.000572402,37.000572402 -80,10,22.5,36.4,19.9266666667,38.8633333333,21.79,36.09,20.2,34.5,18.4266666667,46.3266666667,5.4666666667,61.7666666667,19.7,30.89,22.6,42,19.6,37.53,5.15,762.5,89,3,61.5,3.45,37.5377124292,37.5377124292 -50,0,22.4266666667,36.4,19.8566666667,39,21.79,36.1633333333,20.2,34.59,18.5,46.5,5.4,62.16,19.7,30.89,22.6,42,19.6,37.59,5.2,762.5,88.6666666667,3,61.6666666667,3.4666666667,17.6423727069,17.6423727069 -50,0,22.39,36.4,19.79,39,21.79,36.2,20.2,34.59,18.5,46.56,5.5,62.4,19.7,30.89,22.5666666667,42.2,19.6,37.7,5.25,762.5,88.3333333333,3,61.8333333333,3.4833333333,6.2848444795,6.2848444795 -60,0,22.39,36.4,19.7,39.1266666667,21.79,36.26,20.2,34.6266666667,18.4633333333,46.56,5.5,62.4666666667,19.7,30.89,22.5,42.1266666667,19.6,37.76,5.3,762.5,88,3,62,3.5,43.3280441328,43.3280441328 -50,0,22.29,36.5,19.6333333333,39.2,21.79,36.29,20.2,34.7,18.4633333333,46.6333333333,5.5,62.4,19.7,30.89,22.5,41.95,19.6,37.9,5.3166666667,762.5166666667,88,3.1666666667,61.5,3.5,3.4789988073,3.4789988073 -60,0,22.29,36.5,19.5666666667,39.23,21.79,36.29,20.2,34.7,18.4633333333,46.6633333333,5.56,62.1933333333,19.7,30.9266666667,22.4633333333,41.8633333333,19.6,37.9666666667,5.3333333333,762.5333333333,88,3.3333333333,61,3.5,32.5237414683,32.5237414683 -50,0,22.26,36.56,19.5,39.29,21.79,36.29,20.2,34.7,18.39,46.59,5.59,61.6,19.7,31,22.39,41.79,19.6,38.1266666667,5.35,762.55,88,3.5,60.5,3.5,12.2365675634,12.2365675634 -50,0,22.2,36.56,19.39,39.3266666667,21.79,36.3633333333,20.1333333333,34.76,18.39,46.6266666667,5.59,61.2666666667,19.7,31,22.39,41.9333333333,19.6,38.26,5.3666666667,762.5666666667,88,3.6666666667,60,3.5,16.4942283533,16.4942283533 -50,0,22.2,36.59,19.39,39.425,21.79,36.3633333333,20.1,34.79,18.39,46.7,5.6233333333,61.09,19.7,31,22.39,42.06,19.6,38.4333333333,5.3833333333,762.5833333333,88,3.8333333333,59.5,3.5,13.7164429994,13.7164429994 -40,0,22.1333333333,36.6633333333,19.3233333333,39.5,21.79,36.29,20.1,34.73,18.39,46.7,5.69,61.1633333333,19.7,31,22.3233333333,42.7666666667,19.6,38.56,5.4,762.6,88,4,59,3.5,48.9917497616,48.9917497616 -50,0,22.1,36.73,19.29,39.53,21.79,36.4,20.1,34.79,18.39,46.7,5.69,61.3266666667,19.7,31,22.3233333333,43.0266666667,19.6,38.73,5.2666666667,762.5833333333,89,4,59.3333333333,3.5333333333,45.6687122001,45.6687122001 -60,0,22.0333333333,36.73,19.23,39.59,21.79,36.4,20.1,34.79,18.39,46.7,5.69,61.345,19.7,31.1,22.39,43.23,19.6,38.8633333333,5.1333333333,762.5666666667,90,4,59.6666666667,3.5666666667,33.7088014116,33.7088014116 -50,0,22,36.7,19.2,39.59,21.79,36.4666666667,20.1,34.79,18.39,46.7,5.69,61.4,19.7,31.0333333333,22.39,43.29,19.6,39.0666666667,5,762.55,91,4,60,3.6,16.3268015836,16.3268015836 -40,0,22,36.6266666667,19.2,39.59,21.79,36.5,20.1,34.79,18.39,46.7,5.69,61.6266666667,19.7,31.1,22.39,43.29,19.6,39.2,4.8666666667,762.5333333333,92,4,60.3333333333,3.6333333333,7.4309292715,7.4309292715 -40,0,21.9633333333,36.6266666667,19.2,39.7,21.79,36.5,20.1,34.9,18.39,46.7,5.6233333333,61.9,19.7,31.1,22.3233333333,43.29,19.6333333333,39.23,4.7333333333,762.5166666667,93,4,60.6666666667,3.6666666667,28.9543070248,28.9543070248 -30,0,21.89,36.7,19.1333333333,39.7,21.79,36.5,20.1,34.9,18.39,46.745,5.5,63.13,19.7,31.1,22.29,43.29,19.6333333333,39.23,4.6,762.5,94,4,61,3.7,23.8753149752,23.8753149752 -30,0,21.89,36.7,19.1,39.73,21.79,36.5,20.1,34.9,18.39,46.79,5.4333333333,64.2566666667,19.7,31.1666666667,22.29,43.23,19.6,39.245,4.6333333333,762.4333333333,93.3333333333,3.8333333333,61.5,3.6333333333,48.0350846774,48.0350846774 -50,0,21.79,36.7,19.0333333333,39.73,21.79,36.5,20.0333333333,34.8266666667,18.39,46.79,5.2633333333,65.86,19.7,31.1333333333,22.29,43.09,19.7,39.5,4.6666666667,762.3666666667,92.6666666667,3.6666666667,62,3.5666666667,7.8813932952,7.8813932952 -50,0,21.79,36.76,19,39.79,21.79,36.5,20.0666666667,34.9666666667,18.39,46.79,5.1233333333,66.8,19.6333333333,31.1333333333,22.29,43.09,19.7,39.56,4.7,762.3,92,3.5,62.5,3.5,0.102887908,0.102887908 -50,0,21.7,36.79,18.9266666667,39.8633333333,21.7,36.53,20,34.8266666667,18.39,46.79,5.06,67.3966666667,19.6333333333,31.1333333333,22.2,42.9,19.7,39.59,4.7333333333,762.2333333333,91.3333333333,3.3333333333,63,3.4333333333,4.3013664661,4.3013664661 -50,0,21.7,36.79,18.89,39.9333333333,21.7,36.53,20,34.9,18.39,46.79,5,67.53,19.625,31.125,22.26,42.9,19.7,39.6633333333,4.7666666667,762.1666666667,90.6666666667,3.1666666667,63.5,3.3666666667,11.9459252805,11.9459252805 -60,0,21.7,36.9,18.89,40,21.7,36.59,20,34.9666666667,18.39,46.79,5,67.2633333333,19.6,31.1,22.2,42.79,19.6666666667,39.76,4.8,762.1,90,3,64,3.3,29.5263224747,29.5263224747 -50,0,21.7,36.9,18.79,40,21.7,36.59,20,35,18.39,46.79,5,66.93,19.6,31.1,22.2,42.73,19.6666666667,39.76,4.7833333333,762.05,89.8333333333,2.8333333333,64,3.25,21.7674247338,21.7674247338 -50,0,21.6,36.9,18.79,40.06,21.7,36.59,20,35,18.39,46.79,5,66.4933333333,19.6,31.1,22.1,42.59,19.7,39.79,4.7666666667,762,89.6666666667,2.6666666667,64,3.2,29.86084203,29.86084203 -60,0,21.6,36.9,18.76,40.09,21.6333333333,36.59,20,35,18.39,46.79,5.06,66.2266666667,19.6,31.1,22.1,42.59,19.7,39.8633333333,4.75,761.95,89.5,2.5,64,3.15,38.1040558917,38.1040558917 -50,0,21.5666666667,36.9,18.7,40.1633333333,21.6,36.5,20,35,18.39,46.79,5.09,65.7,19.6,31.1666666667,22.1,42.53,19.7,39.9333333333,4.7333333333,761.9,89.3333333333,2.3333333333,64,3.1,39.4602430752,39.4602430752 -50,0,21.5,36.9,18.7,40.2,21.6,36.5,19.9266666667,35,18.39,46.76,5.09,64.8933333333,19.6,31.2,22.1,42.5,19.7,40,4.7166666667,761.85,89.1666666667,2.1666666667,64,3.05,23.5421947786,23.5421947786 -40,0,21.5,37,18.625,40.1175,21.6,36.5,19.9266666667,35,18.39,46.76,5.09,63.6966666667,19.6,31.2,22.1,42.4333333333,19.7,40.09,4.7,761.8,89,2,64,3,46.7112640967,46.7112640967 -40,0,21.5,37.06,18.6,40.09,21.6,36.5,20,35,18.3233333333,46.76,5.115,62.7975,19.6,31.1666666667,22.0666666667,42.3633333333,19.7,40.09,4.6833333333,761.8,88.8333333333,1.8333333333,64.1666666667,2.9666666667,32.2934785276,32.2934785276 -60,0,21.39,37.03,18.6,40.09,21.55,36.5,20,35,18.39,46.76,5.1233333333,62.3,19.6,31.1666666667,22.0666666667,42.3633333333,19.7,40.1266666667,4.6666666667,761.8,88.6666666667,1.6666666667,64.3333333333,2.9333333333,33.2813948742,33.2813948742 -50,0,21.39,37.09,18.5333333333,40.1633333333,21.5,36.5,19.9266666667,35,18.39,46.76,5.19,61.8633333333,19.6,31.1333333333,22,42.26,19.7,40.2,4.65,761.8,88.5,1.5,64.5,2.9,13.5208896478,13.5208896478 -60,0,21.39,37.1266666667,18.5,40.1633333333,21.5,36.5,19.89,35,18.39,46.7,5.19,61.33,19.6,31.2,22,42.2,19.7,40.3266666667,4.6333333333,761.8,88.3333333333,1.3333333333,64.6666666667,2.8666666667,25.1395824365,25.1395824365 -40,0,21.39,37.1266666667,18.5,40.1633333333,21.5,36.53,19.89,35,18.39,46.7,5.19,60.93,19.6,31.1,22,42.09,19.7,40.4,4.6166666667,761.8,88.1666666667,1.1666666667,64.8333333333,2.8333333333,31.9082655245,31.9082655245 -30,0,21.29,37.1266666667,18.39,40.1266666667,21.5,36.59,19.89,35,18.3233333333,46.7,5.19,60.6566666667,19.6,31.1666666667,22,42.2233333333,19.7,40.5,4.6,761.8,88,1,65,2.8,26.7304932815,26.7304932815 -20,0,21.29,37.1725,18.39,40.2,21.5,36.59,19.89,35,18.29,46.7,5.19,60.1933333333,19.6,31.1,22,42.4,19.7,40.5,4.6,761.8,88,1.1666666667,65,2.8,40.3470070451,40.3470070451 -20,0,21.23,37.09,18.39,40.2,21.5,36.59,19.8566666667,34.9666666667,18.3566666667,46.7,5.19,59.7266666667,19.6,31.1,22,42.3266666667,19.7,40.545,4.6,761.8,88,1.3333333333,65,2.8,40.329609951,40.329609951 -50,0,21.2,37.09,18.39,40.2,21.39,36.5,19.79,34.9,18.29,46.7,5.2266666667,58.9966666667,19.6,31.1,22,42.29,19.7,40.59,4.6,761.8,88,1.5,65,2.8,24.8581994558,24.8581994558 -50,0,21.2,37.09,18.29,40.23,21.39,36.56,19.8566666667,34.9666666667,18.29,46.7,5.3,58.33,19.6,31.1,22,42.29,19.7,40.6633333333,4.6,761.8,88,1.6666666667,65,2.8,8.3082712605,8.3082712605 -60,0,21.1666666667,37.09,18.29,40.29,21.3566666667,36.56,19.79,34.9,18.29,46.7,5.3,57.5933333333,19.5333333333,31.1,22,42.1633333333,19.7,40.73,4.6,761.8,88,1.8333333333,65,2.8,27.3688611574,27.3688611574 -50,0,21.1,37.09,18.29,40.29,21.29,36.5,19.79,34.9,18.29,46.6633333333,5.3,57.1266666667,19.575,31.1,22,42.09,19.7,40.79,4.6,761.8,88,2,65,2.8,9.2504953849,9.2504953849 -60,0,21.1,37.2,18.29,40.29,21.3233333333,36.5,19.79,34.9,18.29,46.6633333333,5.3,56.9333333333,19.5,31.1,21.9266666667,42.09,19.7,40.79,4.6333333333,761.8,88,2,57.6666666667,2.8333333333,42.3706031987,42.3706031987 -50,0,21.1,37.2,18.2,40.23,21.39,36.5,19.79,34.9,18.29,46.6266666667,5.3,57,19.5666666667,31.0666666667,21.9266666667,42.09,19.7,40.8633333333,4.6666666667,761.8,88,2,50.3333333333,2.8666666667,7.7190737822,7.7190737822 -50,0,21.1,37.1633333333,18.2,40.29,21.39,36.59,19.79,34.9,18.29,46.6266666667,5.3,57,19.5,31.0666666667,21.89,42.09,19.7,40.9,4.7,761.8,88,2,43,2.9,34.8876616568,34.8876616568 -50,0,21.0333333333,37.03,18.2,40.4,21.39,36.6633333333,19.79,34.9,18.3233333333,46.7,5.3,57.06,19.5,31.0333333333,21.89,42.09,19.7,40.9,4.7333333333,761.8,88,2,35.6666666667,2.9333333333,41.0696965759,41.0696965759 -50,0,21,37,18.2,40.4666666667,21.5,36.79,19.79,34.9,18.39,46.6266666667,5.3,57.09,19.5,31.0333333333,21.84,41.95,19.7,40.9333333333,4.7666666667,761.8,88,2,28.3333333333,2.9666666667,19.3628476933,19.3628476933 -50,0,21,37.06,18.2,40.5,21.5666666667,36.79,19.79,34.9,18.29,46.6266666667,5.375,57.195,19.5,31,21.79,41.9,19.7,41,4.8,761.8,88,2,21,3,37.6797192614,37.6797192614 -60,0,21,37.03,18.1666666667,40.59,21.6,36.9,19.76,34.9,18.29,46.6266666667,5.4,57.43,19.5,31.0666666667,21.79,41.9,19.7,41,4.8333333333,761.8666666667,87.6666666667,2,21,2.9666666667,39.9500480504,39.9500480504 -60,0,21,37.03,18.1,40.59,21.6,36.9666666667,19.7,34.9,18.29,46.59,5.4,57.7666666667,19.5,31.0333333333,21.79,42,19.7,41.06,4.8666666667,761.9333333333,87.3333333333,2,21,2.9333333333,2.5970585761,2.5970585761 -50,0,21,37,18.1,40.6266666667,21.6,37,19.7,34.9,18.29,46.59,5.4666666667,58.1,19.5,31.1,21.79,42.06,19.7,41.06,4.9,762,87,2,21,2.9,44.4254989852,44.4254989852 -60,0,20.9266666667,37.06,18.1,40.7,21.6,37,19.7,34.9,18.29,46.6633333333,5.5,58.4333333333,19.5,31.0333333333,21.79,42.09,19.7,41,4.9333333333,762.0666666667,86.6666666667,2,21,2.8666666667,38.2380381459,38.2380381459 -60,0,20.9633333333,37.5666666667,18.1,40.8266666667,21.6,36.9333333333,19.7,35,18.29,46.6633333333,5.56,58.5,19.5,31.1,21.79,42.1633333333,19.7,41.06,4.9666666667,762.1333333333,86.3333333333,2,21,2.8333333333,17.080039694,17.080039694 -50,0,20.9633333333,37.7,18.1,41.0266666667,21.6,36.9,19.7,35,18.29,46.7,5.59,58.4666666667,19.5,31.1,21.76,42.3266666667,19.7,41,5,762.2,86,2,21,2.8,6.1532227555,6.1532227555 -30,0,21,37.73,18.1,41.3,21.5333333333,36.9,19.7,35,18.29,46.7,5.6566666667,58.4,19.5,31.1,21.76,42.4,19.7,41,5.0166666667,762.2166666667,85.3333333333,2.1666666667,28.3333333333,2.7166666667,8.6764105945,8.6764105945 -30,0,21,37.79,18.1,41.6333333333,21.5,36.76,19.7,35,18.29,46.7,5.7266666667,58.2233333333,19.5,31.1,21.79,42.4666666667,19.7,40.9333333333,5.0333333333,762.2333333333,84.6666666667,2.3333333333,35.6666666667,2.6333333333,28.2967979903,28.2967979903 -110,0,21,37.845,18.1,41.56,21.4266666667,36.7,19.7,35.1266666667,18.29,46.5,5.8,57.89,19.5,31.1,21.79,42.3266666667,19.7,40.69,5.05,762.25,84,2.5,43,2.55,17.317495821,17.317495821 -50,0,21,37.93,18.1,41.36,21.39,36.59,19.7,35.2,18.29,46.4333333333,5.8,56.9966666667,19.39,31,21.76,42.0266666667,19.7,40.43,5.0666666667,762.2666666667,83.3333333333,2.6666666667,50.3333333333,2.4666666667,42.697824596,42.697824596 -120,0,21,37.99,18.1,41.26,21.39,36.53,19.7,35.29,18.29,46.26,5.8666666667,56.39,19.39,30.9266666667,21.7,41.7666666667,19.6333333333,40.0966666667,5.0833333333,762.2833333333,82.6666666667,2.8333333333,57.6666666667,2.3833333333,10.1670435164,10.1670435164 -350,0,21,37.76,18.1,41.1266666667,21.29,36.59,19.7,35.3633333333,18.29,46.1266666667,5.9333333333,55.36,19.39,30.89,21.7,41.4666666667,19.6,39.8333333333,5.1,762.3,82,3,65,2.3,10.8172926353,10.8172926353 -60,0,21,37.6266666667,18.1,40.9666666667,21.29,36.59,19.7,35.53,18.29,45.9666666667,6.06,54.0266666667,19.39,30.7925,21.7,41.4,19.6,39.6266666667,5.1166666667,762.35,81.8333333333,3,64.5,2.2833333333,29.5392301399,29.5392301399 -60,0,21,37.5,18.1,40.8266666667,21.29,36.56,19.7,35.59,18.29,45.8266666667,6.09,52.0566666667,19.39,30.7,21.7,41.29,19.6,39.3333333333,5.1333333333,762.4,81.6666666667,3,64,2.2666666667,35.67590944,35.67590944 -60,0,21,37.4333333333,18.1,40.59,21.29,36.5,19.7,35.56,18.29,45.76,6.09,50.7966666667,19.29,30.6,21.7,41.1566666667,19.6,39.2,5.15,762.45,81.5,3,63.5,2.25,16.9794679619,16.9794679619 -280,0,21,37.26,18.1,40.4633333333,21.29,36.4666666667,19.7,35.4333333333,18.29,45.7,6.09,49.1933333333,19.3566666667,30.5333333333,21.7,41.06,19.6666666667,39.26,5.1666666667,762.5,81.3333333333,3,63,2.2333333333,18.7662808574,18.7662808574 -360,0,20.9266666667,37.1266666667,18.1,40.4333333333,21.29,36.4,19.7,35.245,18.29,45.6266666667,6.115,48.5725,19.3566666667,30.4633333333,21.7,40.9333333333,19.6,39.1266666667,5.1833333333,762.55,81.1666666667,3,62.5,2.2166666667,12.1588227688,12.1588227688 -120,0,20.89,37.06,18.1666666667,40.4333333333,21.29,36.3633333333,19.6666666667,35.06,18.29,45.5,6.2633333333,48.49,19.29,30.39,21.6333333333,40.7666666667,19.6,38.8633333333,5.2,762.6,81,3,62,2.2,44.386858528,44.386858528 -80,0,20.89,36.9333333333,18.2,40.19,21.29,36.3633333333,19.6666666667,35,18.29,45.4333333333,6.4,48.1,19.29,30.29,21.7,40.925,19.6,38.73,5.2666666667,762.6166666667,80.8333333333,3,62,2.2166666667,5.6388995727,5.6388995727 -110,0,20.89,36.9,18.2,40.06,21.29,36.29,19.6,34.79,18.29,45.29,6.4666666667,47.9,19.29,30.29,21.7,41,19.6,38.5266666667,5.3333333333,762.6333333333,80.6666666667,3,62,2.2333333333,37.1181052295,37.1181052295 -70,0,20.89,36.9,18.2,39.9333333333,21.29,36.3633333333,19.6,34.73,18.29,45.254,6.59,47.2233333333,19.29,30.29,21.7,40.76,19.6,38.3266666667,5.4,762.65,80.5,3,62,2.25,2.2142288857,2.2142288857 -90,0,20.89,36.9,18.2,39.9,21.23,36.23,19.6,34.59,18.29,45.09,6.59,45.89,19.29,30.29,21.7,40.7,19.5666666667,38.2,5.4666666667,762.6666666667,80.3333333333,3,62,2.2666666667,36.0324513749,36.0324513749 -190,0,20.89,36.8266666667,18.2,39.8266666667,21.2675,36.2675,19.6,34.59,18.29,45.03,6.76,45.9333333333,19.29,30.2,21.6666666667,40.5266666667,19.5,38.1266666667,5.5333333333,762.6833333333,80.1666666667,3,62,2.2833333333,43.1615207926,43.1615207926 -420,0,20.89,36.7,18.23,39.76,21.2,36.1266666667,19.6,34.5,18.29,44.9666666667,6.9666666667,45.1333333333,19.29,30.2,21.6,40.3266666667,19.5666666667,38,5.6,762.7,80,3,62,2.3,1.9938242971,1.9938242971 -230,0,20.89,36.7,18.29,39.7,21.2,36.06,19.6,34.5,18.29,44.9,7.03,43.8266666667,19.29,30.1666666667,21.6,40.26,19.5,37.9333333333,5.65,762.7166666667,78.6666666667,3.1666666667,56,2.1166666667,36.05658788,36.05658788 -650,0,20.89,36.7,18.29,39.6633333333,21.2,36,19.6,34.4,18.29,44.79,7.23,43.5666666667,19.29,30.1,21.6666666667,40.1266666667,19.5,37.9,5.7,762.7333333333,77.3333333333,3.3333333333,50,1.9333333333,16.3417418487,16.3417418487 -690,0,20.89,36.76,18.29,39.59,21.2,36.2266666667,19.6,34.4,18.29,44.73,7.4333333333,41.6933333333,19.29,30.1,21.7,39.8633333333,19.5,37.8266666667,5.75,762.75,76,3.5,44,1.75,36.3222437678,36.3222437678 -410,10,20.89,36.7,18.39,39.5,21.3266666667,37.1,19.6,34.29,18.39,44.7,7.5,40.6333333333,19.29,30.0333333333,21.76,39.73,19.5,37.645,5.8,762.7666666667,74.6666666667,3.6666666667,38,1.5666666667,1.6087174416,1.6087174416 -330,0,20.89,36.8633333333,18.39,39.5,21.6966666667,38.1966666667,19.6,34.29,18.29,44.59,7.6233333333,39.1,19.29,30,21.79,39.4,19.5,37.4666666667,5.85,762.7833333333,73.3333333333,3.8333333333,32,1.3833333333,18.6117392383,18.6117392383 -320,0,20.89,36.79,18.4266666667,39.5,22.03,38.6633333333,19.5333333333,34.26,18.3566666667,44.53,7.8966666667,38.9,19.29,30,21.8566666667,39.0666666667,19.5,37.3266666667,5.9,762.8,72,4,26,1.2,20.7942859153,20.7942859153 -300,0,20.89,36.79,18.5,39.4333333333,22.36,38.6633333333,19.6,34.2,18.3233333333,44.5,8.5333333333,36.9,19.29,29.9633333333,21.8233333333,38.5266666667,19.5,37.26,5.9833333333,762.7666666667,72,4,26.5,1.2833333333,6.0615828377,6.0615828377 -270,0,20.89,36.79,18.5333333333,39.26,22.6333333333,38.53,19.6,34.09,18.39,44.5,8.66,35.16,19.29,29.89,21.89,38.1933333333,19.5,37.1266666667,6.0666666667,762.7333333333,72,4,27,1.3666666667,20.3624226386,20.3624226386 -140,0,20.9266666667,36.79,18.6,39.1266666667,22.8233333333,38.06,19.6,34.09,18.39,44.5,8.83,34.1333333333,19.23,29.8233333333,22,37.7233333333,19.5,37,6.15,762.7,72,4,27.5,1.45,21.2192778592,21.2192778592 -110,0,21,36.8633333333,18.73,39.06,22.89,37.85,19.6,34,18.39,44.4333333333,9.0475,32.5,19.26,29.76,22,37.4633333333,19.5,36.9333333333,6.2333333333,762.6666666667,72,4,28,1.5333333333,17.8739519208,17.8739519208 -340,0,21.0666666667,37.6666666667,18.79,38.9333333333,22.76,37.0633333333,19.6,33.975,18.39,44.3633333333,9.1,30.3333333333,19.26,29.7,22.0333333333,36.9666666667,19.5,36.79,6.3166666667,762.6333333333,72,4,28.5,1.6166666667,41.5028819465,41.5028819465 -370,0,21.2,38.1933333333,18.89,39.5,22.7,36.8633333333,19.6,33.9,18.39,44.3633333333,9.33,30.39,19.2,29.6,22.0333333333,36.7666666667,19.5,36.73,6.4,762.6,72,4,29,1.7,18.2907121372,18.2907121372 -290,0,21.2,37.5266666667,18.89,39.4333333333,22.7633333333,37.3,19.6,33.8633333333,18.39,44.4,9.4633333333,29.4633333333,19.26,29.6666666667,22,36.56,19.5,36.56,6.4166666667,762.5833333333,71.6666666667,4,28,1.65,14.6849735407,14.6849735407 -310,0,21.2,37.3266666667,19,39.29,22.9633333333,37.56,19.6,33.79,18.39,44.4,9.66,27.6933333333,19.2,29.5,22,36.56,19.5,36.5,6.4333333333,762.5666666667,71.3333333333,4,27,1.6,18.7253156677,18.7253156677 -270,0,21.23,37.0266666667,19,39.06,23.1633333333,37.56,19.6,33.76,18.39,44.4,9.5333333333,27.8333333333,19.26,29.5,22.05,36.69,19.4633333333,36.43,6.45,762.55,71,4,26,1.55,35.9774397919,35.9774397919 -260,0,21.29,36.8266666667,19.0666666667,39,23.3566666667,37.4333333333,19.6,33.7,18.39,44.4,9.83,28.03,19.2,29.4633333333,22.1,36.9333333333,19.39,36.29,6.4666666667,762.5333333333,70.6666666667,4,25,1.5,5.0326538505,5.0326538505 -230,0,21.3233333333,36.7,19.1,38.9666666667,23.5,37.2233333333,19.6,33.73,18.4266666667,44.4333333333,9.83,26.7633333333,19.2,29.39,22.1,37.06,19.4633333333,36.3333333333,6.4833333333,762.5166666667,70.3333333333,4,24,1.45,34.5857726294,34.5857726294 -200,0,21.39,36.9,19.1666666667,38.9666666667,23.6,36.815,19.6,33.73,18.4266666667,44.36,9.6,26.4933333333,19.2,29.39,22.2,37.1266666667,19.4633333333,36.26,6.5,762.5,70,4,23,1.4,11.7818848579,11.7818848579 -90,0,21.39,37,19.1333333333,39.09,23.7,36.4633333333,19.6,33.7,18.39,44.4,9.6,26.4266666667,19.2,29.39,22.2,37.26,19.5,36.1633333333,6.5166666667,762.4833333333,70.1666666667,3.8333333333,23.6666666667,1.45,38.9871389489,38.9871389489 -100,0,21.39,37,19.2,39.03,23.7,35.9,19.6,33.76,18.39,44.3266666667,9.7266666667,25.2933333333,19.2,29.29,22.2,37.26,19.4266666667,36.03,6.5333333333,762.4666666667,70.3333333333,3.6666666667,24.3333333333,1.5,14.1029716353,14.1029716353 -110,0,21.5,36.6333333333,19.2,38.6333333333,23.5666666667,35.5,19.6,34.6933333333,18.39,44.4,9.86,24.7,19.2,29.29,22.26,37.26,19.5,36,6.55,762.45,70.5,3.5,25,1.55,35.3381307679,35.3381307679 -90,0,21.4266666667,36.36,19.2,38.36,23.3566666667,34.99,19.6666666667,35.16,18.4633333333,44.4,9.6,24.7633333333,19.2,29.2,22.29,37.29,19.5,36,6.5666666667,762.4333333333,70.6666666667,3.3333333333,25.6666666667,1.6,30.9859191533,30.9859191533 -100,0,21.39,36.1633333333,19.23,38.1633333333,23.23,34.73,19.73,35.6266666667,18.445,44.245,9.6,24.9633333333,19.2,29.2,22.3566666667,37.23,19.445,35.845,6.5833333333,762.4166666667,70.8333333333,3.1666666667,26.3333333333,1.65,27.2281589801,27.2281589801 -100,0,21.39,36.0225,19.29,38.03,23.1,34.6633333333,19.9966666667,35.76,18.4633333333,44.1633333333,9.5,24.9,19.2,29.23,22.39,37.23,19.4633333333,35.76,6.6,762.4,71,3,27,1.7,46.2320551043,46.2320551043 -90,0,21.39,35.9333333333,19.29,37.9666666667,23.0333333333,34.53,20.5566666667,35.59,18.4633333333,44.09,9.5666666667,25.8333333333,19.2,29.23,22.39,37.29,19.4633333333,35.7,6.6666666667,762.3833333333,70.6666666667,3,29.1666666667,1.6833333333,26.5621170634,26.5621170634 -80,0,21.39,35.8633333333,19.29,37.8266666667,22.89,34.4666666667,21.0966666667,35.39,18.5,44.06,9.6,25.66,19.2,29.26,22.39,37.3633333333,19.4633333333,35.6633333333,6.7333333333,762.3666666667,70.3333333333,3,31.3333333333,1.6666666667,13.5585593875,13.5585593875 -80,0,21.39,35.79,19.29,37.76,22.8233333333,34.4,21.39,34.93,18.5,44,9.7333333333,25.2,19.2,29.2,22.39,37.3633333333,19.39,35.4633333333,6.8,762.35,70,3,33.5,1.65,45.2906949096,45.2906949096 -80,0,21.39,35.79,19.29,37.7,22.76,34.29,21.3233333333,34.73,18.4266666667,43.8266666667,9.845,24.75,19.2,29.2,22.39,37.29,19.4633333333,35.5,6.8666666667,762.3333333333,69.6666666667,3,35.6666666667,1.6333333333,1.0111553012,1.0111553012 -60,0,21.3233333333,35.73,19.29,37.56,22.6333333333,34.23,21.26,34.43,18.5,43.9,10.03,23.93,19.2,29.2,22.4633333333,37.29,19.4633333333,35.5,6.9333333333,762.3166666667,69.3333333333,3,37.8333333333,1.6166666667,38.9574874309,38.9574874309 -90,0,21.29,35.4666666667,19.29,37.4333333333,22.5666666667,34.0266666667,21.175,34.195,18.5,43.76,9.6966666667,23.93,19.2,29.2,22.4266666667,37.2,19.5,35.5,7,762.3,69,3,40,1.6,18.2495808811,18.2495808811 -80,0,21.29,35.4666666667,19.26,37.26,22.5,33.9666666667,21.0333333333,33.9633333333,18.5,43.7,9.5,24.7933333333,19.2,29.2,22.5,37.2,19.4266666667,35.4333333333,7.0166666667,762.2666666667,68.8333333333,3,38.1666666667,1.6,15.3651528526,15.3651528526 -110,0,21.29,36.1633333333,19.2,37.3333333333,22.4633333333,34.06,21,34.03,18.5,43.59,9.3666666667,24.2,19.2,29.2,22.5,37.1633333333,19.4633333333,35.3633333333,7.0333333333,762.2333333333,68.6666666667,3,36.3333333333,1.6,8.0433970084,8.0433970084 -120,0,21.29,36.03,19.2,37.45,22.39,34.06,20.9266666667,34.6233333333,18.5,43.59,9.2566666667,23.63,19.2,29.1,22.5,37.09,19.39,35.29,7.05,762.2,68.5,3,34.5,1.6,8.8471598225,8.8471598225 -100,0,21.2,35.9,19.2,37.4,22.3566666667,34.1266666667,20.9633333333,35.03,18.5,43.5,9.39,23.43,19.2,29.0333333333,22.6,37.0266666667,19.39,35.26,7.0666666667,762.1666666667,68.3333333333,3,32.6666666667,1.6,34.6925775055,34.6925775055 -110,0,21.2,35.9666666667,19.2,37.4,22.3566666667,34.26,20.89,35.09,18.5,43.5,9.4266666667,23.5633333333,19.2,28.9633333333,22.675,36.85,19.39,35.2,7.0833333333,762.1333333333,68.1666666667,3,30.8333333333,1.6,31.0826054541,31.0826054541 -100,0,21.2,35.93,19.2,37.4666666667,22.26,34.4,20.89,35.1266666667,18.5,43.5,9.5,23.1633333333,19.26,28.9633333333,22.7,36.7,19.39,35.2,7.1,762.1,68,3,29,1.6,23.4459183994,23.4459183994 -100,0,21.2,35.93,19.2,37.4666666667,22.175,34.4,20.9633333333,35.2,18.5,43.5,9.3,23.1233333333,19.23,28.89,22.7,36.73,19.39,35.2,7.0666666667,762.1,68,3.1666666667,28.1666666667,1.5666666667,43.4946172172,43.4946172172 -90,0,21.2,36.03,19.2,37.5,22.1,34.4,21.1633333333,35.1633333333,18.5,43.5,9.1,23.3966666667,19.29,28.89,22.76,36.79,19.39,35.03,7.0333333333,762.1,68,3.3333333333,27.3333333333,1.5333333333,34.6760252025,34.6760252025 -80,0,21.26,36.09,19.26,37.56,22.1,34.4,21.3566666667,35.03,18.5,43.4333333333,8.9633333333,24.3666666667,19.26,28.8266666667,22.76,36.79,19.39,35.09,7,762.1,68,3.5,26.5,1.5,25.347714324,25.347714324 -80,0,21.3233333333,36.09,19.39,37.59,22.1,34.3266666667,21.6333333333,34.9666666667,18.5,43.4,8.83,24.8266666667,19.2,28.76,22.7,36.8633333333,19.39,35,6.9666666667,762.1,68,3.6666666667,25.6666666667,1.4666666667,45.6640331075,45.6640331075 -90,0,21.39,36.03,19.4633333333,37.6633333333,22.1,34.4,21.8266666667,34.9,18.5,43.4,8.66,25.46,19.2,28.79,22.7,37.03,19.39,35,6.9333333333,762.1,68,3.8333333333,24.8333333333,1.4333333333,40.6165067689,40.6165067689 -110,0,21.4266666667,36.03,19.6,37.56,22.1,34.4,22,34.7,18.5,43.345,8.46,25.46,19.26,28.79,22.7,37.09,19.39,35,6.9,762.1,68,4,24,1.4,20.2268723748,20.2268723748 -110,10,21.5,36.0225,19.6666666667,37.56,22.1,34.4333333333,22,34.6266666667,18.5,43.29,8.3,26.3333333333,19.2,28.79,22.7,37.06,19.3233333333,34.9,6.85,762.1166666667,68.1666666667,3.8333333333,24,1.3666666667,39.707112289,39.707112289 -130,30,21.5,36,19.73,37.59,22.1,34.5,21.9633333333,34.5,18.5,43.29,8.2266666667,26.9333333333,19.26,28.8566666667,22.76,36.9333333333,19.3233333333,34.9,6.8,762.1333333333,68.3333333333,3.6666666667,24,1.3333333333,0.850395055,0.850395055 -220,20,21.5333333333,36,19.79,37.53,22.1,34.59,21.9633333333,34.5,18.5,43.29,8.0333333333,28.3666666667,19.2,28.8233333333,22.79,36.79,19.3566666667,34.9,6.75,762.15,68.5,3.5,24,1.3,27.4389716447,27.4389716447 -200,20,21.6666666667,36.6,19.89,37.4666666667,22.1,34.59,22,34.29,18.5,43.29,7.7175,29.545,19.2,28.89,22.79,36.73,19.29,34.9,6.7,762.1666666667,68.6666666667,3.3333333333,24,1.2666666667,12.7062762855,12.7062762855 -150,10,21.73,37.7,19.89,37.4,22.1,34.73,22.0666666667,34.29,18.5,43.3266666667,7.53,29.5,19.2,28.89,22.89,36.6633333333,19.29,34.79,6.65,762.1833333333,68.8333333333,3.1666666667,24,1.2333333333,12.6659508212,12.6659508212 -140,10,21.79,37.96,19.89,37.6266666667,22.1666666667,34.8633333333,22,34.1333333333,18.5,43.4,7.4,29.5966666667,19.2,28.89,22.89,36.39,19.29,34.79,6.6,762.2,69,3,24,1.2,31.2381060678,31.2381060678 -120,10,21.89,38.09,19.89,37.76,22.2,35.1266666667,21.8925,33.725,18.5666666667,43.53,7.3333333333,29.9966666667,19.2,28.89,22.79,36.1266666667,19.29,34.79,6.5166666667,762.2,69.8333333333,2.8333333333,23.3333333333,1.2833333333,4.5372685534,4.5372685534 -90,0,21.89,38.2966666667,19.9266666667,37.9333333333,22.2,35.26,21.79,33.4333333333,18.5,43.6633333333,7.19,30.63,19.2,28.89,22.8566666667,36.26,19.29,34.79,6.4333333333,762.2,70.6666666667,2.6666666667,22.6666666667,1.3666666667,23.0407951516,23.0407951516 -100,0,22,37.7666666667,20,38.1333333333,22.2,35.4,21.7,33.26,18.6,43.73,7.1233333333,31.0966666667,19.2,28.89,22.9266666667,36.4,19.29,34.73,6.35,762.2,71.5,2.5,22,1.45,45.6711161532,45.6711161532 -110,0,22,37.3,20,38.4,22.2,35.3266666667,21.6333333333,33.0666666667,18.5333333333,43.79,7.09,31.63,19.2,28.89,23,36.4,19.29,34.73,6.2666666667,762.2,72.3333333333,2.3333333333,21.3333333333,1.5333333333,24.2599210585,24.2599210585 -120,0,22.0333333333,36.93,20,38.2233333333,22.2,35.29,21.5666666667,32.9,18.6,43.9,7.03,31.89,19.2,28.89,23.0333333333,36.4633333333,19.29,34.7,6.1833333333,762.2,73.1666666667,2.1666666667,20.6666666667,1.6166666667,19.4346474018,19.4346474018 -140,10,22.1,36.5966666667,20,37.9633333333,22.2,35.23,21.5,32.9,18.5333333333,43.9,7,32.29,19.2,28.9266666667,23.1,36.53,19.29,34.7,6.1,762.2,74,2,20,1.7,8.5888567613,8.5888567613 -110,0,22.1,36.26,20.1,37.9333333333,22.2,35.1633333333,21.3566666667,32.73,18.6,43.8266666667,6.95,32.745,19.2,29,23.1,36.59,19.2,34.59,6.0666666667,762.2666666667,74.8333333333,2.1666666667,20.3333333333,1.8333333333,33.8736981619,33.8736981619 -100,0,22.1666666667,36.26,20.1,38.06,22.2,35.09,21.29,32.8633333333,18.6,43.9,6.9,33.3,19.2,29,23.1,36.3333333333,19.26,34.59,6.0333333333,762.3333333333,75.6666666667,2.3333333333,20.6666666667,1.9666666667,14.641836728,14.641836728 -120,0,22.2,36.29,20.1,38.06,22.2,35.045,21.29,33.0666666667,18.6,43.9,6.9,34.1,19.2,29,23.0333333333,36.0666666667,19.23,34.53,6,762.4,76.5,2.5,21,2.1,3.7879497162,3.7879497162 -100,0,22.2,36.23,20.1,38,22.2,35,21.29,33.26,18.6,43.9,6.8,35.7633333333,19.2,29.1,22.9633333333,35.7233333333,19.23,34.53,5.9666666667,762.4666666667,77.3333333333,2.6666666667,21.3333333333,2.2333333333,35.9814919066,35.9814919066 -80,10,22.29,36.2,20.1,38.0666666667,22.2,35,21.2,33.4333333333,18.6,43.79,6.8,37.3633333333,19.2,29.1666666667,22.89,35.59,19.2,34.5,5.9333333333,762.5333333333,78.1666666667,2.8333333333,21.6666666667,2.3666666667,6.6449918784,6.6449918784 -100,0,22.29,36.2,20.1,38.2,22.2,35,21.2,33.56,18.6,43.79,6.7633333333,38.5566666667,19.2,29.2,22.89,35.3633333333,19.2,34.56,5.9,762.6,79,3,22,2.5,49.5588376187,49.5588376187 -100,0,22.29,36.09,20.1,38.2,22.2,35,21.1,33.73,18.6,43.79,6.69,39.63,19.2,29.26,22.8233333333,35.23,19.2,34.59,5.8333333333,762.5833333333,79.3333333333,3.1666666667,22.3333333333,2.4833333333,4.9000339699,4.9000339699 -100,0,22.29,36.09,20.0333333333,38.1266666667,22.1666666667,35,21.1,33.8633333333,18.6,43.7,6.59,40.39,19.2,29.39,22.79,35.06,19.2,34.59,5.7666666667,762.5666666667,79.6666666667,3.3333333333,22.6666666667,2.4666666667,41.8822235195,41.8822235195 -100,0,22.29,36,20,38.09,22.1666666667,35,21.0666666667,34,18.6,43.6266666667,6.5675,40.9975,19.2,29.39,22.79,35,19.2,34.6633333333,5.7,762.55,80,3.5,23,2.45,27.4490203359,27.4490203359 -90,0,22.29,35.9666666667,20,38.09,22.1666666667,35,21.0666666667,34.06,18.6,43.59,6.5,41.66,19.2,29.5,22.76,34.8633333333,19.2,34.7,5.6333333333,762.5333333333,80.3333333333,3.6666666667,23.3333333333,2.4333333333,49.1570770042,49.1570770042 -100,0,22.29,35.9,20,38.09,22.1,35,21,34.09,18.6,43.53,6.4666666667,42.5666666667,19.2,29.525,22.7,34.79,19.2,34.7,5.5666666667,762.5166666667,80.6666666667,3.8333333333,23.6666666667,2.4166666667,35.1936912048,35.1936912048 -90,0,22.29,35.9,19.9266666667,38.09,22.1,35,21,34.1633333333,18.6,43.5,6.4,42.8333333333,19.2,29.6,22.7,34.7,19.2,34.7,5.5,762.5,81,4,24,2.4,14.0957210329,14.0957210329 -90,0,22.29,35.8266666667,19.89,38.1633333333,22.1,35,20.9633333333,34.23,18.6,43.4333333333,6.3,43.53,19.2,29.6,22.7,34.7,19.2,34.7,5.4666666667,762.5,81.3333333333,3.8333333333,24.1666666667,2.4333333333,12.6695003244,12.6695003244 -80,30,22.29,35.79,19.89,38.09,22.1,35,20.945,34.3175,18.6,43.4,6.2266666667,43.79,19.2,29.6,22.6,34.5,19.2,34.7,5.4333333333,762.5,81.6666666667,3.6666666667,24.3333333333,2.4666666667,8.8712019147,8.8712019147 -40,0,22.23,35.73,19.79,37.9666666667,22.1,35.06,20.9633333333,34.6,18.6,43.4,6.19,44.4333333333,19.2,29.6633333333,22.6,34.8333333333,19.2,34.76,5.4,762.5,82,3.5,24.5,2.5,0.1449634088,0.1449634088 -70,0,22.2,35.7,19.79,37.8266666667,22,35.23,20.89,34.8633333333,18.6,43.29,6.19,44.6333333333,19.2,29.79,22.7,35.7566666667,19.23,35.53,5.3666666667,762.5,82.3333333333,3.3333333333,24.6666666667,2.5333333333,22.7064769948,22.7064769948 -60,0,22.2,35.7,19.745,37.845,22,35.3633333333,20.89,34.8633333333,18.6,43.3633333333,6.09,44.6566666667,19.2,29.8233333333,22.7,36.4233333333,19.29,35.99,5.3333333333,762.5,82.6666666667,3.1666666667,24.8333333333,2.5666666667,49.6192581602,49.6192581602 -50,0,22.2,35.79,19.7,38,22,35.4,20.89,34.79,18.5666666667,43.53,6.09,45.2633333333,19.2,29.9633333333,22.76,37.2266666667,19.3233333333,36.5,5.3,762.5,83,3,25,2.6,40.8437240403,40.8437240403 -30,10,22.1333333333,35.8633333333,19.6333333333,38,21.9266666667,35.4,20.8233333333,34.79,18.5666666667,43.59,6.06,45.73,19.2,30.0333333333,22.7,37.7666666667,19.3233333333,36.8333333333,5.2666666667,762.5,83.1666666667,3,24.8333333333,2.6,3.320301557,3.320301557 -30,0,22.1,35.9,19.6,38.09,21.89,35.5,20.79,34.79,18.6,43.6266666667,6,45.93,19.2,30.1,22.6666666667,38.2,19.3233333333,37.1266666667,5.2333333333,762.5,83.3333333333,3,24.6666666667,2.6,44.9467839208,44.9467839208 -40,0,22.1,35.9666666667,19.6,38.1633333333,21.89,35.5,20.79,34.79,18.5333333333,43.7,5.9666666667,46.36,19.2,30.1,22.575,38.425,19.39,37.26,5.2,762.5,83.5,3,24.5,2.6,41.4795879158,41.4795879158 -50,0,22,35.9,19.5,38.2,21.89,35.545,20.76,34.79,18.5,43.79,5.9,46.8333333333,19.2,30.1666666667,22.5,38.96,19.3566666667,37.3266666667,5.1666666667,762.5,83.6666666667,3,24.3333333333,2.6,1.2043804396,1.2043804396 -60,0,22,35.9,19.5,38.26,21.89,35.59,20.7,34.79,18.5,43.79,5.8666666667,47.3266666667,19.26,30.26,22.5,39.53,19.3566666667,37.4666666667,5.1333333333,762.5,83.8333333333,3,24.1666666667,2.6,23.6259593396,23.6259593396 -50,0,22,36,19.4633333333,38.3633333333,21.8233333333,35.53,20.7,34.79,18.5,43.9,5.8,47.66,19.2,30.26,22.5,40.0633333333,19.39,37.59,5.1,762.5,84,3,24,2.6,13.6167494231,13.6167494231 -60,0,22,36,19.39,38.3633333333,21.8233333333,35.5666666667,20.7,34.79,18.5,43.9,5.8,48.0966666667,19.29,30.39,22.5,40.4333333333,19.39,37.695,5.1166666667,762.4666666667,83.6666666667,3,23.8333333333,2.5666666667,16.8247541529,16.8247541529 -70,0,21.9633333333,36.09,19.3566666667,38.4333333333,21.8233333333,35.6266666667,20.7,34.8633333333,18.5,44,5.7725,48.4975,19.29,30.39,22.5,40.6933333333,19.39,37.79,5.1333333333,762.4333333333,83.3333333333,3,23.6666666667,2.5333333333,2.8647471336,2.8647471336 -60,0,21.89,36.1633333333,19.29,38.5,21.8233333333,35.6266666667,20.6333333333,34.79,18.5,44.03,5.69,48.9,19.29,30.39,22.39,41.0666666667,19.39,37.9333333333,5.15,762.4,83,3,23.5,2.5,10.2622532984,10.2622532984 -50,10,21.89,36.1266666667,19.26,38.59,21.89,35.7,20.6,34.79,18.5,44.09,5.69,49.1566666667,19.29,30.4633333333,22.39,41.3333333333,19.39,38.06,5.1666666667,762.3666666667,82.6666666667,3,23.3333333333,2.4666666667,43.4938779799,43.4938779799 -60,0,21.865,36.1725,19.2,38.59,21.89,35.7,20.6,34.79,18.5,44.1266666667,5.69,49.29,19.29,30.5,22.39,41.4633333333,19.39,38.23,5.1833333333,762.3333333333,82.3333333333,3,23.1666666667,2.4333333333,47.0256992034,47.0256992034 -50,0,21.79,36.09,19.2,38.7,21.9633333333,35.7,20.6,34.79,18.5,44.2,5.69,49.3333333333,19.29,30.525,22.39,41.6633333333,19.39,38.3633333333,5.2,762.3,82,3,23,2.4,48.024628358,48.024628358 -50,0,21.79,36.09,19.1333333333,38.7,22,35.73,20.5333333333,34.8633333333,18.5,44.2,5.69,49.3333333333,19.29,30.6,22.39,41.8266666667,19.39,38.59,5.2166666667,762.3,81.6666666667,3,23,2.35,6.1771355686,6.1771355686 -60,0,21.73,36.09,19.1,38.79,22,35.79,20.5,34.9,18.5,44.26,5.69,49.26,19.29,30.6,22.3233333333,41.9666666667,19.39,38.7233333333,5.2333333333,762.3,81.3333333333,3,23,2.3,44.0646012314,44.0646012314 -50,0,21.7,36.1633333333,19.1,38.79,22,35.8266666667,20.5,34.9,18.5,44.29,5.69,49.46,19.29,30.6,22.29,42.09,19.39,38.9333333333,5.25,762.3,81,3,23,2.25,28.2683428726,28.2683428726 -60,0,21.7,36.1633333333,19,38.79,22,35.9,20.5,34.9,18.5,44.3633333333,5.6566666667,49.6633333333,19.29,30.6333333333,22.29,42.1633333333,19.39,39.06,5.2666666667,762.3,80.6666666667,3,23,2.2,26.6068913508,26.6068913508 -70,0,21.6666666667,36.09,19,38.8633333333,22.0333333333,35.9333333333,20.4633333333,34.8633333333,18.5,44.4,5.6566666667,49.53,19.29,30.7,22.29,42.29,19.39,39.09,5.2833333333,762.3,80.3333333333,3,23,2.15,29.9565111985,29.9565111985 -50,0,21.6,36.09,18.89,38.9,22.1,36.06,20.39,34.79,18.5,44.4666666667,5.6233333333,48.5666666667,19.29,30.7,22.23,42.29,19.39,39.09,5.3,762.3,80,3,23,2.1,2.8711444931,2.8711444931 -60,10,21.6,36.09,18.89,38.845,22.1,36.09,20.4633333333,34.9,18.5,44.5,5.69,47.7666666667,19.23,30.6333333333,22.29,42.29,19.4266666667,39.1266666667,5.2666666667,762.2666666667,79.3333333333,3,23.3333333333,1.9333333333,7.619043882,7.619043882 -50,0,21.6,36.09,18.89,38.9,22.1,36.09,20.4633333333,34.9,18.5,44.5,5.69,47.2233333333,19.29,30.7,22.29,42.3633333333,19.4266666667,39.1266666667,5.2333333333,762.2333333333,78.6666666667,3,23.6666666667,1.7666666667,16.1073923577,16.1073923577 -50,0,21.5,36.1266666667,18.79,38.8266666667,22.1,36.09,20.39,34.79,18.5,44.5,5.69,46.83,19.23,30.6333333333,22.26,42.29,19.39,39.09,5.2,762.2,78,3,24,1.6,30.8566070511,30.8566070511 -40,0,21.5,36.2,18.79,38.9,22.1,36.09,20.39,34.79,18.5,44.56,5.6233333333,46.3633333333,19.23,30.6333333333,22.2,42.23,19.4633333333,39.1633333333,5.1666666667,762.1666666667,77.3333333333,3,24.3333333333,1.4333333333,4.0118114906,4.0118114906 -40,0,21.5,36.2,18.76,38.9,22.1,36.245,20.39,34.79,18.5,44.59,5.69,46.3633333333,19.29,30.7,22.2,42.045,19.4266666667,39.3266666667,5.1333333333,762.1333333333,76.6666666667,3,24.6666666667,1.2666666667,47.8749396978,47.8749396978 -30,0,21.4266666667,36.1266666667,18.7,38.9666666667,22.1,36.26,20.39,34.79,18.5,44.59,5.6566666667,46.56,19.26,30.6666666667,22.2,41.8633333333,19.4266666667,39.4,5.1,762.1,76,3,25,1.1,46.4290196775,46.4290196775 -40,0,21.39,36.09,18.7,38.9333333333,22.1,36.26,20.3566666667,34.79,18.5,44.6266666667,5.59,45.675,19.2,30.6,22.2,41.73,19.39,39.4333333333,5.0833333333,762.05,76.1666666667,3,25.1666666667,1.1333333333,47.5459619192,47.5459619192 -70,0,21.39,36.09,18.6333333333,39,22.1,36.29,20.29,34.79,18.4266666667,44.6266666667,5.59,45.2,19.23,30.6333333333,22.1666666667,41.7,19.445,39.5675,5.0666666667,762,76.3333333333,3,25.3333333333,1.1666666667,5.3315004217,5.3315004217 -60,0,21.39,36.09,18.6666666667,39,22.1,36.3633333333,20.29,34.79,18.5,44.7,5.59,44.4,19.23,30.6333333333,22.1,41.7,19.39,39.59,5.05,761.95,76.5,3,25.5,1.2,27.8933663154,27.8933663154 -60,10,21.3233333333,36.1633333333,18.6,39,22.1,36.4,20.29,34.79,18.5,44.7,5.59,44.0666666667,19.23,30.6333333333,22.1666666667,41.7,19.4266666667,39.73,5.0333333333,761.9,76.6666666667,3,25.6666666667,1.2333333333,37.1495147003,37.1495147003 -50,0,21.3566666667,36.2,18.6,39,22.1,36.4,20.29,34.79,18.4266666667,44.6266666667,5.5,43.8633333333,19.23,30.6333333333,22.1,41.6266666667,19.5,39.79,5.0166666667,761.85,76.8333333333,3,25.8333333333,1.2666666667,17.1152726864,17.1152726864 -50,0,21.29,36.2,18.5333333333,39,22.1,36.5,20.29,34.79,18.4633333333,44.6633333333,5.5,43.93,19.2,30.6,22.1,41.7,19.5,39.79,5,761.8,77,3,26,1.3,18.5162239592,18.5162239592 -60,0,21.29,36.2,18.5,39.03,22.1,36.5,20.23,34.7,18.4633333333,44.6633333333,5.5,44.39,19.2,30.6,22.1,41.7,19.5,39.79,4.9833333333,761.75,77,3.1666666667,25.1666666667,1.2833333333,33.0760397599,33.0760397599 -50,0,21.2,36.09,18.5,39.09,22.1,36.59,20.29,34.7,18.5,44.7,5.5,44.33,19.2,30.6,22.1,41.76,19.5,39.79,4.9666666667,761.7,77,3.3333333333,24.3333333333,1.2666666667,3.8908127346,3.8908127346 -60,0,21.2,36.09,18.39,39.03,22.1,36.59,20.2,34.6633333333,18.4266666667,44.6266666667,5.4,43.5566666667,19.2,30.6,22.1,41.7,19.5,39.79,4.95,761.65,77,3.5,23.5,1.25,9.4632776338,9.4632776338 -60,0,21.2,36.09,18.39,39.09,22.1,36.59,20.2,34.59,18.4266666667,44.73,5.4,43.03,19.2,30.6,22,41.4666666667,19.5,39.8266666667,4.9333333333,761.6,77,3.6666666667,22.6666666667,1.2333333333,20.4061573138,20.4061573138 -60,0,21.2,36.09,18.3566666667,39.09,22.1,36.59,20.2,34.59,18.4266666667,44.73,5.4,42.8633333333,19.2,30.5666666667,22,41.4,19.5,39.9,4.9166666667,761.55,77,3.8333333333,21.8333333333,1.2166666667,10.6322525418,10.6322525418 -50,0,21.1666666667,36.2,18.3566666667,39.1633333333,22.2,36.59,20.2,34.6633333333,18.39,44.7,5.4,42.99,19.2,30.5,22,41.26,19.5,39.9,4.9,761.5,77,4,21,1.2,49.0135776578,49.0135776578 -60,0,21.1,36.2,18.29,39.2,22.2,36.59,20.2,34.59,18.4633333333,44.76,5.3,43.09,19.2,30.5,22,41.2,19.5,39.9,4.8833333333,761.5,77.3333333333,3.8333333333,28.1666666667,1.2333333333,22.7793704718,22.7793704718 -50,0,21.1,36.2,18.29,39.2225,22.2,36.59,20.2,34.59,18.39,44.7,5.3,43.09,19.2,30.5,22,41.1633333333,19.5,39.9,4.8666666667,761.5,77.6666666667,3.6666666667,35.3333333333,1.2666666667,47.7730606915,47.7730606915 -50,0,21.1,36.2,18.29,39.29,22.2,36.59,20.2,34.59,18.39,44.7,5.3,43.23,19.2,30.5,22,41.09,19.5,39.9,4.85,761.5,78,3.5,42.5,1.3,1.3528261799,1.3528261799 -50,0,21.0666666667,36.26,18.2,39.23,22.1,36.59,20.1,34.59,18.39,44.7,5.3,43.29,19.2,30.5,22,41,19.5,39.9,4.8333333333,761.5,78.3333333333,3.3333333333,49.6666666667,1.3333333333,2.0435924642,2.0435924642 -60,0,21,36.2,18.2,39.29,22.1,36.59,20.1,34.59,18.4633333333,44.76,5.3,43.3,19.2,30.5,21.9266666667,41,19.5,39.9666666667,4.8166666667,761.5,78.6666666667,3.1666666667,56.8333333333,1.3666666667,25.8046846837,25.8046846837 -60,0,21,36.2,18.2,39.4,22.1,36.7,20.1,34.59,18.39,44.7,5.3,43.4633333333,19.2,30.5,21.89,40.9,19.5,40,4.8,761.5,79,3,64,1.4,5.1167566213,5.1167566213 -60,0,20.9266666667,36.2,18.1333333333,39.4,22.2,36.7,20.1,34.59,18.39,44.76,5.3,43.7233333333,19.2,30.5,21.89,40.9,19.5,40,4.8,761.55,79,2.8333333333,64,1.4166666667,38.1310483324,38.1310483324 -50,0,20.89,36.29,18.1666666667,39.4333333333,22.2,36.7,20.1,34.59,18.39,44.76,5.3,43.9633333333,19.2,30.5,21.89,40.9,19.5,40.09,4.8,761.6,79,2.6666666667,64,1.4333333333,8.0940434942,8.0940434942 -50,0,20.89,36.29,18.1,39.5,22.2,36.6633333333,20.1,34.59,18.39,44.76,5.3,44.2233333333,19.2,30.5,21.89,40.9,19.5,40.09,4.8,761.65,79,2.5,64,1.45,8.4296183661,8.4296183661 -40,0,20.89,36.29,18.1,39.5,22.2,36.6633333333,20.1,34.59,18.39,44.79,5.3,44.5,19.2,30.5,21.8233333333,40.9,19.5,40.09,4.8,761.7,79,2.3333333333,64,1.4666666667,42.8979948047,42.8979948047 -40,0,20.89,36.29,18.1,39.5,22.1666666667,36.59,20.0333333333,34.53,18.39,44.79,5.3,44.6266666667,19.1333333333,30.5,21.79,40.9333333333,19.5,40.23,4.8,761.75,79,2.1666666667,64,1.4833333333,3.0165588134,3.0165588134 -30,0,20.79,36.23,18.1,39.59,22.1,36.6633333333,20.0666666667,34.56,18.39,44.8633333333,5.3,44.8266666667,19.2,30.5,21.79,41.06,19.5,40.23,4.8,761.8,79,2,64,1.5,16.4682692499,16.4682692499 -50,0,20.79,36.29,18.1,39.59,22.0666666667,36.6633333333,20,34.5,18.39,45.1266666667,5.3,45.0266666667,19.2,30.5,21.79,41.09,19.5,40.26,4.8333333333,761.8,79.3333333333,2.1666666667,56.6666666667,1.5666666667,41.0931919119,41.0931919119 -60,0,20.79,36.29,18.1,39.59,22,36.6633333333,20,34.5,18.39,45.2,5.3333333333,45.3266666667,19.1333333333,30.5,21.79,41.09,19.5,40.26,4.8666666667,761.8,79.6666666667,2.3333333333,49.3333333333,1.6333333333,22.3346107639,22.3346107639 -60,0,20.79,36.29,18.0333333333,39.59,22,36.7,20,34.5,18.39,45.23,5.4,45.6,19.2,30.5,21.79,41.3266666667,19.5,40.29,4.9,761.8,80,2.5,42,1.7,47.9485146701,47.9485146701 -60,0,20.79,36.29,18,39.6266666667,22,36.7,20,34.5,18.39,45.23,5.4333333333,45.86,19.2,30.5,21.79,41.5266666667,19.5,40.29,4.9333333333,761.8,80.3333333333,2.6666666667,34.6666666667,1.7666666667,38.5034544859,38.5034544859 -60,0,20.79,36.29,18,39.7,22,36.7,20,34.5,18.39,45.2,5.5,46.06,19.1333333333,30.5,21.79,41.79,19.5,40.29,4.9666666667,761.8,80.6666666667,2.8333333333,27.3333333333,1.8333333333,12.5752717606,12.5752717606 -80,0,20.73,36.29,18,39.7,22.0666666667,36.76,20,34.5,18.39,45.2,5.5,46.1266666667,19.1,30.6,21.79,41.8633333333,19.5,40.3633333333,5,761.8,81,3,20,1.9,10.9897081624,10.9897081624 -110,0,20.7,36.4566666667,18,39.7,22,36.7,19.89,34.4666666667,19.93,82.7666666667,5.5,46.26,19.1666666667,30.6,21.79,41.79,19.5,40.6266666667,5.0166666667,761.85,81,3.1666666667,20.1666666667,1.9333333333,48.7676485325,48.7676485325 -100,0,20.76,36.99,18,39.995,22,36.5666666667,19.9633333333,34.4,20.4566666667,82.9666666667,5.59,46.4633333333,19.1,30.5,21.79,41.73,19.5,40.5666666667,5.0333333333,761.9,81,3.3333333333,20.3333333333,1.9666666667,32.3612888809,32.3612888809 -90,0,20.79,37.1566666667,18,40.3266666667,21.9633333333,36.2233333333,19.9633333333,34.4,19.7933333333,83.4233333333,5.59,46.59,19.1,30.4266666667,21.79,40.8,19.5,40.43,5.05,761.95,81,3.5,20.5,2,32.3133154772,32.3133154772 -100,0,20.79,37.1566666667,18,40.4,21.8233333333,36.03,19.89,34.4666666667,19.46,82.8966666667,5.69,46.845,19.0333333333,30.23,21.79,39.9933333333,19.5,40.1566666667,5.0666666667,762,81,3.6666666667,20.6666666667,2.0333333333,31.9186392822,31.9186392822 -100,0,20.79,37.06,18,40.29,21.79,35.76,19.89,34.5,19.1666666667,81.8633333333,5.8,46.9333333333,19.0333333333,30.23,21.79,39.2966666667,19.5,39.93,5.0833333333,762.05,81,3.8333333333,20.8333333333,2.0666666667,4.8437357531,4.8437357531 -90,0,20.79,37,18,40.29,21.73,35.7,19.89,34.4333333333,19.1,81.0633333333,5.8,46.9333333333,19.0666666667,30.26,21.79,38.89,19.4266666667,39.5966666667,5.1,762.1,81,4,21,2.1,22.9879821418,22.9879821418 -100,0,20.79,36.9,18,40.1633333333,21.7,35.56,19.89,34.4,19.1,79.2266666667,5.8,47.09,19,30.2,21.79,38.43,19.39,39.2233333333,5.1833333333,762.05,80.5,3.8333333333,22.1666666667,2.1,48.1943923049,48.1943923049 -90,0,20.79,36.9,18,40.03,21.7,35.5,19.89,34.3266666667,19.0333333333,77.1,5.8666666667,47.2233333333,19,30.2,21.79,38.03,19.39,39.09,5.2666666667,762,80,3.6666666667,23.3333333333,2.1,46.0708971368,46.0708971368 -140,0,20.79,36.79,18,39.8633333333,21.6333333333,35.36,19.8566666667,34.26,19,73.6633333333,5.9333333333,47.59,19,30.2,21.79,37.645,19.39,38.7,5.35,761.95,79.5,3.5,24.5,2.1,10.0447234581,10.0447234581 -370,0,20.79,36.73,18,39.79,21.6,35.29,19.79,34.1266666667,18.9266666667,70.4566666667,6.1266666667,47.4633333333,19,30.2,21.89,37.43,19.39,38.6175,5.4333333333,761.9,79,3.3333333333,25.6666666667,2.1,15.2748168912,15.2748168912 -230,0,20.79,36.59,18.1,39.6633333333,21.6666666667,35.3633333333,19.79,34.09,18.89,68.64,6.4,46.6233333333,19,30.2,21.8233333333,37.1566666667,19.39,38.4633333333,5.5166666667,761.85,78.5,3.1666666667,26.8333333333,2.1,4.397408769,4.397408769 -100,0,20.79,36.59,18.0333333333,38.9233333333,21.6,35.26,19.79,34.09,18.79,66.1,6.4,45.6233333333,19,30.2,21.79,36.9666666667,19.39,38.26,5.6,761.8,78,3,28,2.1,24.4762299699,24.4762299699 -90,0,20.79,36.6233333333,18,38.4666666667,21.6,35.1266666667,19.79,34,18.79,63.1,6.5633333333,44.63,19,30.2,21.73,36.8266666667,19.3233333333,38.1266666667,5.6333333333,761.85,78.3333333333,2.8333333333,28,2.1833333333,19.5054850425,19.5054850425 -140,0,20.79,37.9566666667,18.1333333333,38.6,21.6,35,19.79,34,18.79,60.8266666667,6.8966666667,43.83,19,30.2,21.89,37,19.39,38.06,5.6666666667,761.9,78.6666666667,2.6666666667,28,2.2666666667,8.9082538034,8.9082538034 -150,0,20.89,38.95,18.29,38.86,21.6,35.06,19.79,33.9666666667,18.79,59.0266666667,7.1233333333,41.46,19,30.1333333333,21.89,37.06,19.39,37.9333333333,5.7,761.95,79,2.5,28,2.35,11.309992196,11.309992196 -110,10,20.89,39.86,18.43,39.1333333333,21.6,35.23,19.79,33.9,18.79,57.2933333333,7.2633333333,41.0666666667,19,30.2,22.0333333333,37.1266666667,19.3566666667,37.76,5.7333333333,762,79.3333333333,2.3333333333,28,2.4333333333,17.0850319439,17.0850319439 -130,0,20.9633333333,39.4666666667,18.5333333333,39.23,21.6,35.43,19.79,33.9,18.79,56.2333333333,7.2633333333,40.86,19,30.2,22.0333333333,37.1266666667,19.3566666667,37.6266666667,5.7666666667,762.05,79.6666666667,2.1666666667,28,2.5166666667,6.3189914334,6.3189914334 -100,0,21,38.6933333333,18.6,39.5633333333,21.6,35.59,19.79,33.9,18.76,55.1666666667,7.1233333333,41.1933333333,19,30.2,22.1,37.29,19.3233333333,37.5,5.8,762.1,80,2,28,2.6,3.2581822481,3.2581822481 -130,0,21,38.2266666667,18.6333333333,39.73,21.6666666667,35.6633333333,19.79,33.9,18.715,54.15,7.26,42.0666666667,19,30.23,22.1666666667,37.29,19.3233333333,37.4333333333,5.8,762.05,80.6666666667,2.3333333333,30,2.7166666667,13.8718088507,13.8718088507 -490,0,21,37.8333333333,18.76,39.73,21.6,35.59,19.79,33.9333333333,18.73,53.6,7.4,42.26,19,30.29,22.29,37.5,19.29,37.3633333333,5.8,762,81.3333333333,2.6666666667,32,2.8333333333,30.0205343752,30.0205343752 -410,0,21,37.7,18.79,39.495,21.6,35.7966666667,19.79,34,18.7,52.8633333333,7.295,42.9,19,30.3233333333,22.3566666667,37.5,19.29,37.29,5.8,761.95,82,3,34,2.95,13.6572241201,13.6572241201 -360,0,21.0333333333,37.6266666667,18.8233333333,39.4,21.86,37.2666666667,19.7,34.03,18.7,52.2566666667,7.09,44.66,19,30.4633333333,22.4266666667,37.5666666667,19.3566666667,37.23,5.8,761.9,82.6666666667,3.3333333333,36,3.0666666667,47.0744526712,47.0744526712 -340,0,21.0333333333,37.7,18.89,39.3266666667,22.1933333333,38.5266666667,19.7,34.09,18.7,51.6933333333,7.23,44.5266666667,19,30.5,22.5,37.7,19.3566666667,37.29,5.8,761.85,83.3333333333,3.6666666667,38,3.1833333333,39.9638225441,39.9638225441 -310,0,21.1,37.6633333333,19.0333333333,39.3266666667,22.6966666667,39.3666666667,19.7,34.09,18.7,51.3,7.8266666667,43.3333333333,19,30.5666666667,22.5333333333,37.7,19.29,37.29,5.8,761.8,84,4,40,3.3,4.4957476086,4.4957476086 -290,0,21.1,37.53,19.1666666667,39.2666666667,23.03,39.76,19.7,34.1633333333,18.7,50.7966666667,8.16,41.1333333333,19,30.6,22.6,37.7,19.29,37.23,5.9666666667,761.75,82.3333333333,3.8333333333,40,3.15,19.6385387913,19.6385387913 -230,0,21.2,37.4666666667,19.29,39.1633333333,23.3233333333,39.9666666667,19.7,34.2,18.7,50.4633333333,8.16,39.7233333333,19,30.6,22.7,37.6633333333,19.29,37.2,6.1333333333,761.7,80.6666666667,3.6666666667,40,3,8.7424987811,8.7424987811 -150,0,21.26,37.4,19.3566666667,39.03,23.4975,39.7675,19.7,34.2,18.7,50.1333333333,8.0333333333,39.59,19,30.6666666667,22.76,37.59,19.3566666667,37.1266666667,6.3,761.65,79,3.5,40,2.85,22.8376543615,22.8376543615 -100,0,21.3233333333,37.3633333333,19.4266666667,39,23.6666666667,39.53,19.7,34.2,18.7,49.86,8.1,39.7666666667,19,30.6666666667,22.79,37.56,19.3566666667,37.2,6.4666666667,761.6,77.3333333333,3.3333333333,40,2.7,24.0882742801,24.0882742801 -110,0,21.4633333333,37.7633333333,19.5666666667,38.86,23.6666666667,38.99,19.7,34.2,18.7,49.5266666667,8.2333333333,38.8333333333,19,30.7,22.79,37.5,19.365,37.1725,6.6333333333,761.55,75.6666666667,3.1666666667,40,2.55,7.1430963813,7.1430963813 -120,0,21.5333333333,37.7666666667,19.7633333333,38.7,23.5333333333,38.5966666667,19.7,34.2,18.7225,49.2,8.6,37.29,19,30.7,22.89,37.59,19.39,37.09,6.8,761.5,74,3,40,2.4,1.7209752696,1.7209752696 -120,0,21.6,37.36,19.9633333333,38.5666666667,23.3566666667,38.1333333333,19.7,34.2,18.79,48.9333333333,9.1333333333,35.8233333333,19,30.6666666667,22.9266666667,37.56,19.29,37,6.7333333333,761.5,74.3333333333,3.1666666667,40,2.4166666667,10.1025979733,10.1025979733 -120,0,21.7,37.2,20.1333333333,38.2966666667,23.23,37.8,19.7,34.2,18.79,48.6633333333,9.2,30.4,19,30.5333333333,23,37.4333333333,19.3566666667,36.9333333333,6.6666666667,761.5,74.6666666667,3.3333333333,40,2.4333333333,13.2129293517,13.2129293517 -110,0,21.76,37.1266666667,20.26,38.03,23.2,37.5,19.7,34.2,18.79,48.53,8.8666666667,29.7333333333,19,30.445,23.1,37.3633333333,19.39,36.8633333333,6.6,761.5,75,3.5,40,2.45,37.2378834756,37.2378834756 -120,0,21.84,37,20.3233333333,38.06,23.1333333333,37.36,19.7,34.09,18.79,48.26,8.5666666667,31.2,19,30.3566666667,23.1,37.23,19.3233333333,36.73,6.5333333333,761.5,75.3333333333,3.6666666667,40,2.4666666667,17.6723451121,17.6723451121 -110,0,21.89,36.8633333333,20.39,37.86,23.0666666667,37.1633333333,19.7,34.09,18.79,48.1266666667,8.3666666667,31.3266666667,19,30.29,23.1,37.2,19.3566666667,36.6633333333,6.4666666667,761.5,75.6666666667,3.8333333333,40,2.4833333333,43.8596826745,43.8596826745 -110,0,21.9633333333,36.73,20.5,37.76,23,37.03,19.7,34,18.79,47.9666666667,8.3,32.3233333333,19,30.23,23.1666666667,37.2,19.29,36.59,6.4,761.5,76,4,40,2.5,6.7740311963,6.7740311963 -230,0,22,36.59,20.5,37.6266666667,22.9633333333,36.8633333333,19.7,34,18.79,47.8266666667,8.2266666667,33.2633333333,19,30.29,23.2,37.1633333333,19.3233333333,36.4666666667,6.5,761.4333333333,75.3333333333,4,40,2.4666666667,28.5204643034,28.5204643034 -180,0,22.0666666667,36.59,20.6,37.43,22.89,36.73,19.7,34,18.79,47.49,8.46,33.9966666667,19,30.29,23.26,37.1633333333,19.39,36.7333333333,6.6,761.3666666667,74.6666666667,4,40,2.4333333333,20.6122210831,20.6122210831 -70,0,22.1,36.4,20.6666666667,37.29,22.79,36.5266666667,19.7,34,18.79,47.23,8.695,32.3675,19,30.29,23.29,37.3266666667,19.39,37.9666666667,6.7,761.3,74,4,40,2.4,11.2818116671,11.2818116671 -70,0,22.1,36.4,20.73,37.2233333333,22.79,36.3266666667,19.7,34,18.79,47.09,8.7266666667,31.3666666667,19,30.29,23.23,37.4,19.39,38.8333333333,6.8,761.2333333333,73.3333333333,4,40,2.3666666667,39.8787650396,39.8787650396 -80,0,22.23,36.39,20.815,37.1725,22.7,36.1933333333,19.7,33.9633333333,18.79,47.03,8.5,31.43,19,30.23,23.29,37.4666666667,19.5,39.2,6.9,761.1666666667,72.6666666667,4,40,2.3333333333,19.9338199804,19.9338199804 -80,0,22.29,36.39,20.89,37,22.7,36,19.76,34.9633333333,18.79,46.8633333333,8.76,31.3633333333,19,30.2,23.29,37.3266666667,19.5,39.2,7,761.1,72,4,40,2.3,29.5781342546,29.5781342546 -100,0,22.29,36.06,20.89,36.6633333333,22.6,35.76,19.9266666667,36.33,18.8566666667,46.79,8.86,29.9266666667,19,30.2,23.39,37.26,19.5,39.1333333333,7.1166666667,761.05,71.5,4,40,2.3,45.3482221579,45.3482221579 -80,0,22.3566666667,35.9333333333,20.9633333333,36.53,22.6,35.6266666667,20.0666666667,36.8633333333,18.89,46.6633333333,8.6666666667,29.5933333333,19,30.2,23.39,37.1266666667,19.5666666667,38.9333333333,7.2333333333,761,71,4,40,2.3,19.2404926056,19.2404926056 -90,0,22.5,35.9,21.1,36.4666666667,22.6,35.5,20.23,37.1933333333,18.89,46.53,8.7666666667,30.2933333333,19,30.2,23.5,37.1633333333,19.6,38.86,7.35,760.95,70.5,4,40,2.3,18.5945805977,18.5945805977 -80,0,22.5666666667,35.8266666667,21.1,36.3266666667,22.6,35.4333333333,20.3566666667,37.4,18.89,46.3633333333,9.2333333333,28.3666666667,19,30.1,23.5,37.09,19.6,39,7.4666666667,760.9,70,4,40,2.3,18.7145947712,18.7145947712 -100,0,22.6,35.76,21.2,36.2,22.6,35.29,20.4266666667,37.5,18.89,46.1566666667,9.0666666667,27.43,19,30.1,23.5,37.2,19.6,38.93,7.5833333333,760.85,69.5,4,40,2.3,9.107647487,9.107647487 -100,0,22.6,35.6266666667,21.2,36.2,22.6,35.26,20.5,37.4333333333,18.89,46.06,9,28.0966666667,19,30,23.5,37.2,19.6,38.5925,7.7,760.8,69,4,40,2.3,2.0967268734,2.0967268734 -80,0,22.6,35.56,21.1666666667,36.2,22.6,35.2,20.5,37.3633333333,18.9175,45.925,9,28.5966666667,19,30,23.5333333333,37.2,19.6,38.3266666667,7.8,760.7666666667,69,4,40,2.4,13.0601371871,13.0601371871 -100,0,22.6666666667,35.5,21.1666666667,36.2,22.6,35.09,20.5666666667,37.29,18.9266666667,45.8266666667,9,28.7233333333,19,30,23.6,37.095,19.6,38.1333333333,7.9,760.7333333333,69,4,40,2.5,15.2481513214,15.2481513214 -160,0,22.7,35.53,21.2,36.2,22.6,35.09,20.6,36.99,19,45.6633333333,9.4,28.0933333333,19.0666666667,30,23.6,37,19.6,38,8,760.7,69,4,40,2.6,8.9263946284,8.9263946284 -460,0,22.7,35.6633333333,21.2,36.1266666667,22.6,35.09,20.5333333333,36.5966666667,19,45.59,9.6,27.2333333333,19.1,30.05,23.6333333333,37.1266666667,19.6,37.8633333333,8.1,760.6666666667,69,4,40,2.7,27.9073197977,27.9073197977 -120,0,22.73,37.7233333333,21.2,36.03,22.6,35.09,20.5,36.2233333333,19,45.53,9.8233333333,26.53,19.0666666667,30,23.7,37.2,19.6,37.79,8.2,760.6333333333,69,4,40,2.8,18.5529832728,18.5529832728 -70,0,22.79,40.895,21.2,36.3633333333,22.6,35.5,20.4175,35.92,19,45.6633333333,9.63,26.3233333333,19.0666666667,30,23.7,37.06,19.6,37.6633333333,8.3,760.6,69,4,40,2.9,32.1405173279,32.1405173279 -100,0,22.79,39.7233333333,21.2,36.8,22.6,35.76,20.39,35.6566666667,19,45.79,9.5,26.4966666667,19.1,30.1,23.76,37,19.6,37.59,8.2,760.6166666667,69.3333333333,4,40,2.8833333333,46.2057936005,46.2057936005 -100,0,22.7,38.3333333333,21.2,37.06,22.6,35.9,20.3566666667,35.4666666667,19,45.79,9.5,26.2475,19.1,30.0333333333,23.79,36.9666666667,19.6,37.4666666667,8.1,760.6333333333,69.6666666667,4,40,2.8666666667,12.9675223958,12.9675223958 -130,0,22.7,37.8,21.1,37.06,22.6,35.9,20.29,35.3266666667,19.0333333333,45.79,9.5666666667,26.5666666667,19.1,30.0333333333,23.79,36.9,19.6,37.3266666667,8,760.65,70,4,40,2.85,11.9675142574,11.9675142574 -110,0,22.7,37.1333333333,21.1,36.9333333333,22.6,35.8633333333,20.29,35.1633333333,19.1,45.73,9.36,26.5666666667,19.1,30.1,23.79,36.79,19.6,37.26,7.9,760.6666666667,70.3333333333,4,40,2.8333333333,42.4482669099,42.4482669099 -110,0,22.7,36.86,21,36.76,22.6,35.73,20.29,35.03,19.0966666667,45.1666666667,9.2266666667,26.76,19.1,30,23.8566666667,36.79,19.6,37.1266666667,7.8,760.6833333333,70.6666666667,4,40,2.8166666667,34.950579924,34.950579924 -220,0,22.6,36.4666666667,21,36.7675,22.6,35.56,20.2,34.8633333333,19.43,43.8933333333,9.0666666667,28.6333333333,19.1,30,23.89,36.79,19.5666666667,37,7.7,760.7,71,4,40,2.8,44.2214805167,44.2214805167 -430,0,22.6,36.3266666667,20.9266666667,36.79,22.6,35.4333333333,20.1333333333,34.79,19.6333333333,42.8633333333,8.8666666667,30.2333333333,19.1,30.1,23.89,36.73,19.5,36.9333333333,7.5833333333,760.7166666667,72.3333333333,4.1666666667,38.1666666667,2.9166666667,10.4621450417,10.4621450417 -290,0,22.6,36.2,20.89,36.9,22.6,35.4666666667,20.1666666667,34.76,19.76,42.39,8.6266666667,31.9966666667,19.1,30.1,23.9266666667,36.7,19.5666666667,36.79,7.4666666667,760.7333333333,73.6666666667,4.3333333333,36.3333333333,3.0333333333,26.4275239548,26.4275239548 -250,0,22.6,36.2,20.89,36.9666666667,22.6,35.4,20.1,34.7,19.89,42.1333333333,8.4266666667,33.53,19.1,30.23,24,36.7,19.5,36.73,7.35,760.75,75,4.5,34.5,3.15,11.403485795,11.403485795 -260,10,22.7,36.6566666667,20.89,36.9333333333,22.6,35.4333333333,20.1,34.7,19.9633333333,41.8,8.2633333333,34.9666666667,19.1,30.29,24,36.8266666667,19.5666666667,36.7,7.2333333333,760.7666666667,76.3333333333,4.6666666667,32.6666666667,3.2666666667,5.1057682373,5.1057682373 -250,10,22.7,37.0633333333,20.8233333333,37.06,22.6,35.5,20.1,34.7,20.1,41.4666666667,8.19,36.2266666667,19.1,30.39,24,36.9666666667,19.5,36.6266666667,7.1166666667,760.7833333333,77.6666666667,4.8333333333,30.8333333333,3.3833333333,5.1030943519,5.1030943519 -240,0,22.73,37.5,20.79,37.1933333333,22.6,35.645,20.1,35.33,20.1666666667,41.2666666667,8,37.86,19.1,30.4633333333,23.9266666667,37.36,19.5,36.59,7,760.8,79,5,29,3.5,7.5009054272,7.5009054272 -190,0,22.79,37.76,20.79,37.4666666667,22.6666666667,35.79,20.1666666667,36.2566666667,20.23,41.1566666667,7.9333333333,38.3933333333,19.1,30.5333333333,24,37.56,19.5,36.5675,6.75,760.85,80.5,4.6666666667,27.8333333333,3.5333333333,5.8354966226,5.8354966226 -70,10,22.89,38.2666666667,20.7,37.8,22.6666666667,35.8633333333,20.2,37.4566666667,20.29,41.3633333333,7.7633333333,40.1333333333,19.1,30.6,23.89,37.73,19.5,36.5,6.5,760.9,82,4.3333333333,26.6666666667,3.5666666667,31.3330654404,31.3330654404 -80,10,23.03,38.2666666667,20.7,38.3333333333,22.73,36.2,20.26,38.1966666667,20.445,41.645,7.6233333333,41.86,19.1,30.7,23.89,37.5966666667,19.5,36.5,6.25,760.95,83.5,4,25.5,3.6,25.7824316039,25.7824316039 -90,0,23.2,37.9,20.7,38.53,22.73,36.2,20.29,38.73,20.5,41.5266666667,7.4666666667,44.36,19.125,30.7675,23.89,37.5,19.5,36.5,6,761,85,3.6666666667,24.3333333333,3.6333333333,33.5386502789,33.5386502789 -100,0,23.1333333333,37.6333333333,20.6333333333,38.59,22.6666666667,36.2,20.29,38.79,20.5,41.3266666667,7.26,46.5,19.2,30.8566666667,23.89,37.5,19.4266666667,36.4333333333,5.75,761.05,86.5,3.3333333333,23.1666666667,3.6666666667,43.0665655178,43.0665655178 -110,0,23.1,37.2233333333,20.6,38.59,22.6,36.2,20.39,38.79,20.5333333333,41.1633333333,7.0266666667,49.03,19.2,31.0333333333,23.89,37.4333333333,19.5,36.5,5.5,761.1,88,3,22,3.7,31.8343642284,31.8343642284 -130,10,23.1,37.03,20.6,38.53,22.6,36.2,20.39,38.7225,20.6,40.89,6.8333333333,51.0966666667,19.2,31.1,23.9633333333,37.4,19.4633333333,36.4666666667,5.5166666667,761.1666666667,88.3333333333,3,21.8333333333,3.7666666667,28.50032649,28.50032649 -170,0,23.1,36.745,20.5666666667,38.3633333333,22.5333333333,36.2,20.39,38.6266666667,20.6333333333,40.8633333333,6.4,53.2,19.2,31.23,23.9633333333,37.4666666667,19.4633333333,36.4666666667,5.5333333333,761.2333333333,88.6666666667,3,21.6666666667,3.8333333333,44.7422139114,44.7422139114 -120,0,23.1,36.53,20.5,38.29,22.5666666667,36.09,20.39,38.43,20.7,44.9233333333,6.0266666667,55.8333333333,19.2,31.29,23.9633333333,37.5666666667,19.39,36.53,5.55,761.3,89,3,21.5,3.9,13.7507908745,13.7507908745 -110,10,23.1,36.8633333333,20.5,39.2566666667,22.5,36.09,20.3233333333,38.1566666667,20.79,45.0966666667,5.8333333333,57.4266666667,19.1666666667,31.3233333333,23.89,37.76,19.39,36.59,5.5666666667,761.3666666667,89.3333333333,3,21.3333333333,3.9666666667,24.5217487565,24.5217487565 -120,0,23.0666666667,37.1266666667,20.5,39.7233333333,22.5666666667,36.23,20.29,38.0266666667,20.79,43.8233333333,5.6566666667,58.39,19.1666666667,31.39,23.89,37.9,19.39,36.59,5.5833333333,761.4333333333,89.6666666667,3,21.1666666667,4.0333333333,47.3413305474,47.3413305474 -120,0,23,37.2,20.4633333333,39.79,22.5,36.3633333333,20.29,37.9,20.73,43.16,5.73,60.39,19.1,31.4266666667,23.89,37.9,19.39,36.59,5.6,761.5,90,3,21,4.1,7.1231238544,7.1231238544 -110,0,23,37.26,20.39,39.8725,22.5,36.5,20.29,37.76,20.73,42.6933333333,5.9,61.1333333333,19.1,31.5,23.9266666667,37.8633333333,19.5,36.59,5.5833333333,761.4666666667,90.3333333333,2.8333333333,28.1666666667,4.1333333333,8.7060354883,8.7060354883 -120,0,23,37.2,20.3233333333,39.9666666667,22.5,36.56,20.29,37.6266666667,20.7,42.1933333333,5.76,61,19.2,31.6,24,37.79,19.4266666667,36.59,5.5666666667,761.4333333333,90.6666666667,2.6666666667,35.3333333333,4.1666666667,44.3455229863,44.3455229863 -130,0,22.9633333333,37.2,20.26,40,22.5,36.59,20.2,37.3633333333,20.76,41.86,5.4666666667,61.9933333333,19.2,31.6,24,37.76,19.39,36.56,5.55,761.4,91,2.5,42.5,4.2,25.3847036161,25.3847036161 -130,0,22.89,37.2,20.2,39.9333333333,22.4266666667,36.53,20.2,37.23,20.7,41.56,5.3333333333,62.66,19.2,31.7,24,37.7,19.4633333333,36.56,5.5333333333,761.3666666667,91.3333333333,2.3333333333,49.6666666667,4.2333333333,9.5204819576,9.5204819576 -130,0,22.89,37.2,20.1,39.9,22.39,36.5,20.2,37.06,20.7,41.36,5.4333333333,63.9933333333,19.1333333333,31.7,24.1,37.7,19.4633333333,36.56,5.5166666667,761.3333333333,91.6666666667,2.1666666667,56.8333333333,4.2666666667,28.1018309179,28.1018309179 -80,0,22.8233333333,37.0666666667,20.1,39.9666666667,22.39,36.5,20.1333333333,37,20.7,41.1633333333,5.56,64.4666666667,19.1333333333,31.73,24.1,37.7,19.39,36.5,5.5,761.3,92,2,64,4.3,27.3839877453,27.3839877453 -80,10,22.79,37,20,39.9333333333,22.39,36.5,20.1,36.9,20.7,41.03,5.8333333333,64.59,19.2,31.79,24.1,37.89,19.39,36.5,5.5666666667,761.3333333333,91.6666666667,1.8333333333,56.6666666667,4.3166666667,44.6871874388,44.6871874388 -60,10,22.79,37,20,40,22.39,36.59,20.1,36.9,20.7,40.8633333333,5.9666666667,64.6566666667,19.2,31.89,24.1,38.2233333333,19.39,36.5,5.6333333333,761.3666666667,91.3333333333,1.6666666667,49.3333333333,4.3333333333,35.2390324464,35.2390324464 -60,0,22.7,37.1266666667,19.89,40.1266666667,22.3233333333,36.6633333333,20.1,37.09,20.6333333333,40.93,6,64.4933333333,19.2,31.89,24.0666666667,38.4333333333,19.4633333333,36.6333333333,5.7,761.4,91,1.5,42,4.35,28.0575919896,28.0575919896 -40,0,22.7,37.26,19.8233333333,40.1266666667,22.29,36.7,20.1,37.1633333333,20.445,41.595,6,64.4333333333,19.2,31.89,24,38.6333333333,19.39,36.73,5.7666666667,761.4333333333,90.6666666667,1.3333333333,34.6666666667,4.3666666667,22.3829105147,22.3829105147 -60,0,22.6666666667,37.4666666667,19.79,40.2,22.29,36.7,20.1,37.2,20.29,42.2266666667,5.9666666667,64.4966666667,19.2,31.89,23.9633333333,38.9633333333,19.39,36.8633333333,5.8333333333,761.4666666667,90.3333333333,1.1666666667,27.3333333333,4.3833333333,5.2845582715,5.2845582715 -60,0,22.6,37.4,19.73,40.2,22.29,36.7,20.1,37.2,20.23,42.56,5.9666666667,64.69,19.2,31.9633333333,23.89,39.2966666667,19.39,37.1266666667,5.9,761.5,90,1,20,4.4,32.9041004181,32.9041004181 -50,0,22.6,37.4,19.6666666667,40.29,22.29,36.7,20.1,37.2,20.1666666667,42.9633333333,6.045,64.495,19.2,32,23.89,39.645,19.4633333333,37.4,5.8833333333,761.4833333333,90.1666666667,1.1666666667,27.5,4.4,8.4064477356,8.4064477356 -40,0,22.5333333333,37.4,19.6,40.29,22.2,36.6266666667,20.025,37.1175,20.1,43.2233333333,6.09,64.0933333333,19.2,32,23.79,39.89,19.5,37.6566666667,5.8666666667,761.4666666667,90.3333333333,1.3333333333,35,4.4,24.3286554469,24.3286554469 -40,0,22.5,37.4,19.5666666667,40.4,22.2,36.7,20,37.09,20.0666666667,43.53,6.09,63.5666666667,19.29,32.09,23.79,40.3633333333,19.4266666667,37.8633333333,5.85,761.45,90.5,1.5,42.5,4.4,8.3917422686,8.3917422686 -30,0,22.4175,37.4,19.5,40.4666666667,22.2,36.6633333333,20,37.09,20,43.6633333333,6.09,62.8333333333,19.29,32.09,23.79,40.73,19.5,38.1566666667,5.8333333333,761.4333333333,90.6666666667,1.6666666667,50,4.4,6.4897981239,6.4897981239 -60,10,22.39,37.4,19.4633333333,40.5,22.2,36.6633333333,20,37.09,19.9266666667,43.9666666667,6.09,62.5,19.29,32.09,23.73,40.93,19.4266666667,38.29,5.8166666667,761.4166666667,90.8333333333,1.8333333333,57.5,4.4,20.8028350142,20.8028350142 -50,0,22.39,37.4333333333,19.39,40.5,22.1,36.7,20,37.06,19.89,44.03,6.09,62.2233333333,19.29,32.09,23.7,40.96,19.5,38.53,5.8,761.4,91,2,65,4.4,12.7923034597,12.7923034597 -50,0,22.3233333333,37.4333333333,19.39,40.6266666667,22.1,36.7,20,37,19.89,44.1633333333,6.09,62.03,19.29,32.2,23.6333333333,40.5666666667,19.5,38.7233333333,5.7333333333,761.4,90.6666666667,2,58,4.2833333333,34.6882975078,34.6882975078 -60,0,22.29,37.5,19.39,40.76,22.1,36.79,20,37.06,19.8566666667,44.4,6.19,61.8266666667,19.29,32.2,23.5666666667,40.4,19.5,38.8266666667,5.6666666667,761.4,90.3333333333,2,51,4.1666666667,12.4541959492,12.4541959492 -60,0,22.29,37.5,19.29,40.845,22.1,36.79,19.9266666667,37.06,19.79,44.4,6.2633333333,61.9,19.29,32.2,23.5,40.6,19.5666666667,39.0266666667,5.6,761.4,90,2,44,4.05,47.9106899467,47.9106899467 -60,0,22.26,37.5,19.29,40.9,22.1,36.79,19.89,37,19.79,44.53,6.3,61.8633333333,19.29,32.2,23.5,41.0666666667,19.5,39.2,5.5333333333,761.4,89.6666666667,2,37,3.9333333333,38.2202578243,38.2202578243 -70,0,22.2,37.5,19.29,40.9,22.1,36.79,19.9633333333,37,19.73,44.6633333333,6.3,61.8633333333,19.29,32.2,23.4266666667,41.4,19.5,39.2,5.4666666667,761.4,89.3333333333,2,30,3.8166666667,42.0684906654,42.0684906654 -50,0,22.2,37.5,19.26,40.8633333333,22.1,36.9,19.89,37,19.7,44.79,6.23,61.0566666667,19.29,32.2,23.39,41.8,19.5,39.3266666667,5.4,761.4,89,2,23,3.7,43.7804966816,43.7804966816 -60,0,22.2,37.5,19.26,40.8633333333,22.1,36.8266666667,19.89,37,19.7,44.8633333333,5.8966666667,61.13,19.29,32.2,23.39,42.1333333333,19.5,39.4666666667,5.1666666667,761.3833333333,89.6666666667,2,29.6666666667,3.5833333333,0.4807774443,0.4807774443 -50,0,22.1,37.5,19.2,40.79,22.1,36.79,19.89,37,19.7,45,5.8333333333,63.1,19.29,32.2,23.3566666667,42.8,19.5,39.53,4.9333333333,761.3666666667,90.3333333333,2,36.3333333333,3.4666666667,1.8058433547,1.8058433547 -50,0,22.1,37.5,19.2,40.8633333333,22.1,36.79,19.89,37,19.6333333333,45,5.8333333333,62.8333333333,19.29,32.23,23.29,43.1333333333,19.525,39.6725,4.7,761.35,91,2,43,3.35,14.2962316517,14.2962316517 -50,0,22.0666666667,37.5,19.1666666667,40.8633333333,22.1,36.79,19.89,36.9666666667,19.6,45.03,5.4333333333,62.59,19.29,32.29,23.29,43.3266666667,19.6,39.76,4.4666666667,761.3333333333,91.6666666667,2,49.6666666667,3.2333333333,4.0265780641,4.0265780641 -50,0,22,37.5,19.1,40.8633333333,22.1,36.79,19.89,36.9666666667,19.6,45.09,5.1,62.53,19.29,32.29,23.23,43.3266666667,19.6,39.79,4.2333333333,761.3166666667,92.3333333333,2,56.3333333333,3.1166666667,48.4397333814,48.4397333814 -70,0,22,37.5,19,40.79,22.1,36.79,19.89,36.9666666667,19.6,45.2,4.39,61.09,19.29,32.2675,23.2,43.6566666667,19.6,39.8633333333,4,761.3,93,2,63,3,28.2281234744,28.2281234744 -60,0,22,37.5,19,40.79,22.1,36.79,19.89,36.9,19.5,45.29,3.86,62.2333333333,19.29,32.2,23.2,43.93,19.6,40,4.0833333333,761.2666666667,93.5,1.8333333333,61.1666666667,3.15,49.2352448869,49.2352448869 -60,0,21.9633333333,37.4666666667,19,40.79,22.1,36.79,19.79,36.845,19.5,45.3633333333,4.2,65.7,19.29,32.2,23.2,44.2666666667,19.6,40,4.1666666667,761.2333333333,94,1.6666666667,59.3333333333,3.3,41.8319412973,41.8319412973 -50,0,21.89,37.4,18.9266666667,40.8633333333,22.1,36.79,19.79,36.79,19.5,45.4333333333,4.3966666667,65.7333333333,19.29,32.2,23.175,44.4975,19.6,40.1266666667,4.25,761.2,94.5,1.5,57.5,3.45,44.0096925595,44.0096925595 -50,0,21.89,37.4,18.89,40.9333333333,22.1,36.79,19.79,36.79,19.5,45.5,3.9966666667,63.7333333333,19.29,32.2,23.1,44.59,19.6,40.2,4.3333333333,761.1666666667,95,1.3333333333,55.6666666667,3.6,12.2212369111,12.2212369111 -50,0,21.815,37.3175,18.8233333333,40.9333333333,22.1,36.79,19.79,36.76,19.5,45.53,3.8266666667,65.6333333333,19.29,32.2,23.1,44.7,19.6,40.3266666667,4.4166666667,761.1333333333,95.5,1.1666666667,53.8333333333,3.75,36.603360367,36.603360367 -40,0,21.79,37.29,18.79,40.9,22.1,36.79,19.79,36.76,19.5,45.59,3.9666666667,66.2266666667,19.29,32.2,23.1,44.9,19.6,40.4,4.5,761.1,96,1,52,3.9,24.9303003191,24.9303003191 -30,0,21.79,37.29,18.79,40.9666666667,22.1,36.79,19.79,36.7,19.39,45.5,4.0633333333,66.8566666667,19.29,32.2,23.0666666667,44.9666666667,19.6,40.5,4.55,761.1,95.8333333333,1,51.3333333333,3.9333333333,25.1688145567,25.1688145567 -30,0,21.79,37.29,18.7,41.1266666667,22.1,36.79,19.79,36.7,19.39,45.56,4.19,66.6633333333,19.29,32.2,23,44.9,19.6,40.5,4.6,761.1,95.6666666667,1,50.6666666667,3.9666666667,28.4058119287,28.4058119287 -50,0,21.7,37.3266666667,18.7,41.2,22.1,36.9,19.79,36.73,19.39,45.59,3.9666666667,65.8,19.29,32.2,23,44.79,19.6,40.53,4.65,761.1,95.5,1,50,4,32.6338521205,32.6338521205 -50,0,21.7,37.4,18.65,41.245,22.1,36.9,19.79,36.73,19.39,45.59,3.9,66.3266666667,19.29,32.23,23,44.73,19.6,40.59,4.7,761.1,95.3333333333,1,49.3333333333,4.0333333333,3.2356246724,3.2356246724 -70,0,21.6333333333,37.3266666667,18.6,41.23,22.1,36.9,19.7,36.7,19.39,45.7,4.06,67.0633333333,19.29,32.29,22.89,44.6633333333,19.6,40.59,4.75,761.1,95.1666666667,1,48.6666666667,4.0666666667,33.8306200923,33.8306200923 -50,0,21.6333333333,37.3266666667,18.5333333333,41.29,22.1,36.9,19.76,36.7,19.39,45.7,4,66.9966666667,19.29,32.23,22.9633333333,44.59,19.6,40.6633333333,4.8,761.1,95,1,48,4.1,36.7685846286,36.7685846286 -50,0,21.6,37.29,18.5666666667,41.4,22.1333333333,36.9,19.7,36.7,19.3566666667,45.7,4.3666666667,68.6233333333,19.29,32.29,22.89,44.53,19.6,40.7,4.7666666667,761.0666666667,95.3333333333,1,48.6666666667,4.1166666667,5.5649833637,5.5649833637 -60,0,21.6,37.29,18.5,41.4666666667,22.1333333333,36.9,19.7,36.7,19.3566666667,45.7,4.5,68.1633333333,19.29,32.29,22.89,44.6633333333,19.6,40.76,4.7333333333,761.0333333333,95.6666666667,1,49.3333333333,4.1333333333,2.332730894,2.332730894 -50,0,21.5666666667,37.4,18.5,41.59,22.2,36.9333333333,19.7,36.7,19.29,45.79,4.23,67.03,19.29,32.29,22.89,44.6633333333,19.6,40.79,4.7,761,96,1,50,4.15,6.5455156146,6.5455156146 -50,0,21.5,37.4,18.4266666667,41.59,22.2,37,19.7,36.7,19.29,45.79,4.165,67.7225,19.26,32.29,22.89,44.59,19.6,40.79,4.6666666667,760.9666666667,96.3333333333,1,50.6666666667,4.1666666667,44.0478182631,44.0478182631 -60,0,21.5,37.4333333333,18.39,41.6266666667,22.2,37,19.7,36.7,19.29,45.79,4.2633333333,68.1266666667,19.26,32.3633333333,22.79,44.29,19.6,40.8633333333,4.6333333333,760.9333333333,96.6666666667,1,51.3333333333,4.1833333333,41.9862744748,41.9862744748 -60,0,21.5,37.5,18.39,41.7,22.2,37,19.7,36.7,19.29,45.8633333333,4.4333333333,68.6233333333,19.29,32.4,22.79,44.29,19.6666666667,40.9666666667,4.6,760.9,97,1,52,4.2,43.407136004,43.407136004 -60,0,21.5,37.5,18.39,41.8266666667,22.2,37,19.7,36.7,19.29,45.9,4.5,68.6233333333,19.245,32.345,22.79,44.2,19.6,40.9,4.6,760.9333333333,97,1,52.6666666667,4.1833333333,1.6691463068,1.6691463068 -60,0,21.4266666667,37.4333333333,18.3233333333,41.9,22.2,37,19.7,36.7,19.2225,45.8175,4.53,68.4666666667,19.23,32.3266666667,22.79,44.2,19.6,41,4.6,760.9666666667,97,1,53.3333333333,4.1666666667,5.3953497787,5.3953497787 -50,0,21.39,37.4,18.29,41.9333333333,22.2,37,19.7,36.7,19.2,45.8633333333,4.6566666667,68.7333333333,19.23,32.3266666667,22.79,44.1333333333,19.6666666667,41.06,4.6,761,97,1,54,4.15,27.4648444611,27.4648444611 -50,0,21.39,37.4,18.29,42.06,22.2,37.09,19.6666666667,36.7,19.26,45.9,4.9,69.0266666667,19.29,32.4,22.79,44,19.6666666667,41.09,4.6,761.0333333333,97,1,54.6666666667,4.1333333333,5.465887126,5.465887126 -50,0,21.3566666667,37.5,18.29,42.09,22.2,37.09,19.6,36.7,19.2,45.9,4.9666666667,68.9666666667,19.2,32.29,22.79,44,19.6,41.03,4.6,761.0666666667,97,1,55.3333333333,4.1166666667,36.1295258161,36.1295258161 -50,0,21.3566666667,37.5,18.29,42.1633333333,22.2,37.09,19.6,36.7,19.2,45.9,5.03,69.2566666667,19.2,32.3633333333,22.76,43.9,19.6,41.09,4.6,761.1,97,1,56,4.1,36.2505137804,36.2505137804 -90,0,21.29,37.645,18.29,42.23,22.2,37.09,19.6,36.7,19.2,45.9666666667,5.1566666667,69.73,19.2,32.4,22.7,43.9,19.6666666667,41.2966666667,4.75,761.1,97,1.3333333333,56.8333333333,4.25,39.4760931376,39.4760931376 -60,0,21.29,38.03,18.29,42.3633333333,22.1666666667,37,19.6,36.7,19.2,46,5.2266666667,69.9966666667,19.2,32.4,22.7,43.8266666667,19.6,41.4,4.9,761.1,97,1.6666666667,57.6666666667,4.4,30.8739122353,30.8739122353 -70,0,21.29,38.2233333333,18.2,42.53,22.1,36.9333333333,19.6,36.76,19.2,46,5.3666666667,70.33,19.2,32.4333333333,22.7,43.9,19.6,41.3266666667,5.05,761.1,97,2,58.5,4.55,25.1503683161,25.1503683161 -370,0,21.29,38.1633333333,18.2,42.59,22.1,36.9,19.6,36.86,19.2,46.03,5.4333333333,70.7933333333,19.2,32.5,22.6666666667,43.8333333333,19.6,41.29,5.2,761.1,97,2.3333333333,59.3333333333,4.7,22.8074711515,22.8074711515 -70,0,21.29,38.03,18.2,42.59,22.0333333333,36.8266666667,19.6,37.06,19.2,46.09,5.5,71,19.2,32.5,22.6,43.76,19.6,41.3633333333,5.35,761.1,97,2.6666666667,60.1666666667,4.85,1.7332901247,1.7332901247 -60,10,21.26,38.03,18.2,42.6266666667,22,36.6633333333,19.6,37.23,19.2,46.1266666667,5.53,71.2933333333,19.2,32.56,22.6,43.9633333333,19.7,41.56,5.5,761.1,97,3,61,5,10.4819421656,10.4819421656 -50,0,21.2,38.2233333333,18.2,42.6266666667,22,36.59,19.6,37.3633333333,19.26,46.3333333333,5.6566666667,71.6266666667,19.2,32.53,22.6,43.89,19.7,41.4333333333,5.5666666667,761.1333333333,96.6666666667,3,61.3333333333,5.0166666667,17.1393639641,17.1393639641 -50,0,21.2,38.29,18.2,42.79,22,36.7,19.6,37.6266666667,19.29,46.0566666667,5.8333333333,71.7633333333,19.2,32.59,22.6,43.5266666667,19.6333333333,41.29,5.6333333333,761.1666666667,96.3333333333,3,61.6666666667,5.0333333333,27.2797400365,27.2797400365 -70,0,21.2,38.29,18.2,42.8633333333,22,36.7,19.6666666667,37.76,19.3566666667,45.33,5.85,71.7175,19.26,32.7,22.6,43.2666666667,19.6333333333,41.23,5.7,761.2,96,3,62,5.05,38.4742208174,38.4742208174 -80,0,21.2,38.4666666667,18.23,42.9633333333,21.9633333333,36.7,19.6,37.79,19.3233333333,44.6933333333,5.9666666667,72.06,19.2,32.7,22.5,42.93,19.6,41.1633333333,5.7666666667,761.2333333333,95.6666666667,3,62.3333333333,5.0666666667,21.438234183,21.438234183 -70,0,21.2,38.4,18.23,43.09,21.89,36.7225,19.6,37.79,19.39,44.36,6.1233333333,72.1566666667,19.26,32.76,22.5,42.73,19.6,41.0675,5.8333333333,761.2666666667,95.3333333333,3,62.6666666667,5.0833333333,34.3230835511,34.3230835511 -80,0,21.2,38.4333333333,18.29,43.29,21.89,36.79,19.6,37.79,19.39,44.0266666667,6.2633333333,72.23,19.2,32.76,22.4633333333,42.49,19.6,40.9333333333,5.9,761.3,95,3,63,5.1,26.0934494203,26.0934494203 -70,0,21.2,38.5,18.29,43.23,22,36.79,19.6,37.73,19.39,43.7666666667,6.5633333333,72.4333333333,19.26,32.8633333333,22.39,42.23,19.6,40.8633333333,6,761.3333333333,94.5,3,55.8333333333,5.1166666667,39.8268184159,39.8268184159 -60,0,21.2,38.5,18.39,43.09,21.9266666667,36.79,19.6,37.7,19.39,43.4666666667,6.7633333333,71.8933333333,19.2,32.79,22.39,42.09,19.6,40.73,6.1,761.3666666667,94,3,48.6666666667,5.1333333333,45.1526014134,45.1526014134 -60,0,21.2,38.56,18.39,43.03,22,36.9,19.6,37.7,19.4175,43.3175,6.8666666667,71.5266666667,19.2,32.8633333333,22.39,42.03,19.6,40.7,6.2,761.4,93.5,3,41.5,5.15,21.6228581965,21.6228581965 -370,0,21.2,38.59,18.4266666667,43.03,22,36.9,19.6,37.7,19.5,43.23,7.1266666667,71.1933333333,19.2,32.9,22.29,41.8633333333,19.6,40.6266666667,6.3,761.4333333333,93,3,34.3333333333,5.1666666667,16.5970236645,16.5970236645 -380,0,21.2,38.59,18.5,42.9633333333,21.9266666667,36.9,19.6,37.6633333333,19.5,43.09,7.1566666667,70.06,19.2,32.9,22.29,41.79,19.6,40.5,6.4,761.4666666667,92.5,3,27.1666666667,5.1833333333,45.8557278034,45.8557278034 -50,0,21.2,38.6566666667,18.5,42.9,21.9266666667,36.9,19.6,37.59,19.5,43.03,7.09,69.9933333333,19.26,32.9666666667,22.29,41.6633333333,19.6,40.4333333333,6.5,761.5,92,3,20,5.2,10.4639856378,10.4639856378 -70,0,21.2,38.79,18.5,42.9,22,36.9,19.6,37.59,19.5,42.9,7.2266666667,69.5966666667,19.26,32.9666666667,22.29,41.5675,19.6,40.4,6.6333333333,761.5333333333,90.5,3,21.3333333333,5.1,40.6367372372,40.6367372372 -60,0,21.2,38.79,18.6333333333,42.8266666667,22,36.9,19.6,37.59,19.5,42.8266666667,7.3666666667,67.79,19.29,33.03,22.23,41.36,19.6,40.3266666667,6.7666666667,761.5666666667,89,3,22.6666666667,5,15.035640914,15.035640914 -50,0,21.2,38.79,18.76,42.6933333333,22,36.9,19.6,37.59,19.5,42.79,7.5633333333,65.0666666667,19.29,33.09,22.2,41.26,19.6,40.26,6.9,761.6,87.5,3,24,4.9,28.6091227201,28.6091227201 -60,0,21.2,38.79,18.8233333333,42.5,22,36.9,19.6,37.53,19.5,42.73,7.83,62.8,19.23,33.03,22.2,41.1266666667,19.6,40.2,7.0333333333,761.6333333333,86,3,25.3333333333,4.8,19.3391087349,19.3391087349 -50,0,21.2,38.79,18.89,42.475,22,36.9,19.6,37.59,19.5,42.59,8.1666666667,59.7666666667,19.29,33.09,22.2,41.06,19.6,40.09,7.1666666667,761.6666666667,84.5,3,26.6666666667,4.7,13.9740837272,13.9740837272 -60,0,21.26,38.8633333333,18.89,42.3266666667,22,36.9,19.6,37.53,19.5,42.59,8.4333333333,56.9,19.29,33.09,22.1333333333,41,19.6,40.03,7.3,761.7,83,3,28,4.6,13.0021433812,13.0021433812 -50,0,21.2,38.79,19.0333333333,42.2,22,36.9,19.6333333333,37.53,19.5,42.5,8.6666666667,53.3333333333,19.29,33.09,22.1666666667,40.9,19.6,40,7.4833333333,761.7166666667,81.6666666667,3,30,4.5333333333,47.9691804387,47.9691804387 -40,0,21.26,38.79,19.1,42.1266666667,22,36.9,19.7,37.53,19.5,42.4333333333,8.9975,49.77,19.29,33.09,22.1,40.9,19.6,39.9333333333,7.6666666667,761.7333333333,80.3333333333,3,32,4.4666666667,31.7066292395,31.7066292395 -60,0,21.29,38.76,19.23,41.8633333333,22,36.9,19.7,37.59,19.5,42.3633333333,9.3966666667,46.8333333333,19.29,33.09,22.1,40.79,19.6,39.8633333333,7.85,761.75,79,3,34,4.4,4.0938628488,4.0938628488 -50,0,21.29,38.6266666667,19.29,41.6566666667,22,36.9,19.7,37.7966666667,19.5,42.3633333333,9.69,42.6266666667,19.29,33.09,22.1,40.73,19.6,39.79,8.0333333333,761.7666666667,77.6666666667,3,36,4.3333333333,46.3103120332,46.3103120332 -40,0,21.29,38.56,19.3233333333,41.1933333333,21.9633333333,36.9,20.0966666667,38.09,19.5,42.7666666667,9.8233333333,40.76,19.29,33.03,22.1,40.4666666667,19.6,39.6333333333,8.2166666667,761.7833333333,76.3333333333,3,38,4.2666666667,44.5471265237,44.5471265237 -70,0,21.29,38.4333333333,19.4633333333,40.86,21.89,36.9,20.43,37.89,19.4266666667,42.9666666667,10.0333333333,35.23,19.29,32.8633333333,22.1,40.2666666667,19.6,39.375,8.4,761.8,75,3,40,4.2,45.6042505335,45.6042505335 -60,0,21.29,38.2233333333,19.5,40.4,21.89,36.79,20.5,37.59,19.39,43.09,10.1,30.43,19.29,32.6566666667,22.0666666667,39.9,19.6,39.2,8.3833333333,761.8,73.3333333333,3.1666666667,40,3.8333333333,35.9249281115,35.9249281115 -60,0,21.29,38.03,19.5,40.0666666667,21.8566666667,36.8333333333,20.5,37.59,19.39,43.1633333333,9.8233333333,29.4666666667,19.2,32.26,22,39.5666666667,19.6,38.9666666667,8.3666666667,761.8,71.6666666667,3.3333333333,40,3.4666666667,34.1263856622,34.1263856622 -60,0,21.29,37.8633333333,19.39,39.6633333333,21.79,36.7,20.4633333333,37.5266666667,19.39,43.2,9.69,30.3333333333,19.2675,32.095,22,39.2233333333,19.6,38.8266666667,8.35,761.8,70,3.5,40,3.1,27.7593230247,27.7593230247 -60,0,21.29,37.6566666667,19.3233333333,39.53,21.79,36.76,20.39,37.4,19.34,43.2,9.5666666667,30.0666666667,19.29,31.9266666667,22,39.03,19.6,38.59,8.3333333333,761.8,68.3333333333,3.6666666667,40,2.7333333333,20.085471787,20.085471787 -70,0,21.29,37.4666666667,19.29,39.3633333333,21.79,36.7,20.4633333333,37.4,19.3233333333,43.1266666667,9.5666666667,30,19.2,31.6666666667,21.89,38.76,19.6,38.53,8.3166666667,761.8,66.6666666667,3.8333333333,40,2.3666666667,43.1918895221,43.1918895221 -70,0,21.29,37.3266666667,19.29,39.29,21.79,36.7,20.39,37.29,19.29,43.09,9.6666666667,28.3933333333,19.2,31.5333333333,21.89,38.6266666667,19.5,38.3633333333,8.3,761.8,65,4,40,2,3.7206974346,3.7206974346 -70,0,21.29,37.2233333333,19.29,39.1633333333,21.79,36.6266666667,20.39,37.1566666667,19.3566666667,43.03,9.8,27,19.23,31.39,21.89,38.3633333333,19.5,38.23,8.4666666667,761.75,64.6666666667,3.8333333333,40,2.0833333333,14.1642242903,14.1642242903 -60,0,21.29,37.09,19.29,39.03,21.79,36.4666666667,20.39,36.7966666667,19.29,42.9,10.1,26.19,19.23,31.2633333333,21.8233333333,38.23,19.5,38.06,8.6333333333,761.7,64.3333333333,3.6666666667,40,2.1666666667,8.1318717683,8.1318717683 -50,0,21.29,36.8633333333,19.3233333333,38.7233333333,21.79,36.4,20.39,36.4633333333,19.29,42.8266666667,10.5,25.0633333333,19.2,31.1666666667,21.84,38.1,19.5,37.86,8.8,761.65,64,3.5,40,2.25,38.1948292255,38.1948292255 -60,0,21.29,36.695,19.39,38.4633333333,21.79,36.29,20.29,36.2233333333,19.29,42.7,10.8,22.8333333333,19.2,31.0333333333,21.79,37.9666666667,19.5,37.7233333333,8.9666666667,761.6,63.6666666667,3.3333333333,40,2.3333333333,5.8187858434,5.8187858434 -50,0,21.29,36.59,19.4266666667,38.29,21.79,36.29,20.29,36.03,19.29,42.6266666667,10.9333333333,22.4266666667,19.2,30.9633333333,21.79,37.8266666667,19.5,37.53,9.1333333333,761.55,63.3333333333,3.1666666667,40,2.4166666667,8.373591071,8.373591071 -50,0,21.23,36.4,19.5,38.1566666667,21.79,36.29,20.29,35.8633333333,19.29,42.5,11.16,21.3233333333,19.2,30.89,21.79,37.76,19.5,37.4666666667,9.3,761.5,63,3,40,2.5,23.7941760686,23.7941760686 -50,0,21.29,36.4,19.5,37.95,21.79,36.23,20.29,35.73,19.29,42.4333333333,11.16,20.5966666667,19.2,30.79,21.79,37.7,19.5,37.3266666667,9.2666666667,761.4333333333,63.1666666667,3,40,2.5166666667,0.289422099,0.289422099 -60,0,21.23,36.2,19.6,37.76,21.79,36.2,20.2,35.5,19.29,42.26,11.4,19.59,19.26,30.79,21.76,37.6266666667,19.5,37.26,9.2333333333,761.3666666667,63.3333333333,3,40,2.5333333333,48.7206645194,48.7206645194 -60,0,21.23,36.1266666667,19.6,37.6266666667,21.79,36.1266666667,20.2,35.4333333333,19.29,42.2,11.36,20.0666666667,19.26,30.6666666667,21.76,37.6266666667,19.5,37.1266666667,9.2,761.3,63.5,3,40,2.55,5.7073879289,5.7073879289 -70,0,21.26,36.06,19.6,37.4666666667,21.79,35.93,20.2,35.4,19.29,42.1633333333,11.1666666667,20.26,19.2,30.5333333333,21.76,37.5,19.5,37,9.1666666667,761.2333333333,63.6666666667,3,40,2.5666666667,4.038715444,4.038715444 -40,0,21.2,36,19.6,37.3266666667,21.79,35.79,20.2,35.3266666667,19.29,42.09,11.0633333333,20.03,19.2,30.5,21.7,37.4333333333,19.5,36.9333333333,9.1333333333,761.1666666667,63.8333333333,3,40,2.5833333333,16.1459720461,16.1459720461 -30,0,21.23,35.9,19.6333333333,37.29,21.79,35.7,20.2,35.2,19.29,42,11.2633333333,20.0966666667,19.2,30.5,21.7,37.3633333333,19.5,36.8633333333,9.1,761.1,64,3,40,2.6,5.9392547468,5.9392547468 -30,0,21.23,35.8266666667,19.7,37.23,21.79,35.7,20.1333333333,35.2,19.23,41.9333333333,11.5666666667,19.9333333333,19.2,30.4633333333,21.7,37.29,19.5,36.7225,9.1833333333,761.0333333333,63.6666666667,2.6666666667,40,2.6166666667,49.288623454,49.288623454 -30,0,21.2,35.76,19.6,37,21.7,35.745,20.1,35.2,19.29,41.9666666667,11.4266666667,19.5333333333,19.2,30.39,21.7,37.2,19.5,36.7,9.2666666667,760.9666666667,63.3333333333,2.3333333333,40,2.6333333333,20.2073821914,20.2073821914 -60,0,21.2,35.7,19.6,37,21.7,35.59,20.1,35.2,19.29,41.9,11.13,19.86,19.2,30.3233333333,21.6333333333,37.0666666667,19.5,36.59,9.35,760.9,63,2,40,2.65,12.0890953229,12.0890953229 -50,0,21.2,35.59,19.5666666667,37,21.7,35.6633333333,20.1,35.2,19.2,41.7,11.13,20.4666666667,19.2,30.39,21.6,37,19.5,36.59,9.4333333333,760.8333333333,62.6666666667,1.6666666667,40,2.6666666667,17.7439454128,17.7439454128 -60,0,21.2,35.59,19.5666666667,37,21.6666666667,35.7,20.1,35.2,19.245,41.6725,11.3933333333,21.5666666667,19.2,30.39,21.6,37,19.5,36.59,9.5166666667,760.7666666667,62.3333333333,1.3333333333,40,2.6833333333,7.6620042091,7.6620042091 -60,0,21.2,35.5,19.6,36.8633333333,21.6666666667,35.6266666667,20.1,35.2,19.26,41.59,12.1333333333,21.3666666667,19.2,30.4266666667,21.6,37,19.5,36.53,9.6,760.7,62,1,40,2.7,14.377381315,14.377381315 -60,0,21.2,35.5,19.6,36.73,21.7,35.5266666667,20.0666666667,35.1633333333,19.29,41.5,12.6,19.29,19.2,30.4266666667,21.6,37,19.4266666667,36.4333333333,9.5833333333,760.65,62,1.1666666667,38,2.6666666667,12.8336073598,12.8336073598 -50,0,21.2,35.5,19.7,36.76,21.7,35.4,20.0666666667,35.1633333333,19.29,41.5,12.66,18.5633333333,19.29,30.5,21.6,37,19.5,36.4333333333,9.5666666667,760.6,62,1.3333333333,36,2.6333333333,7.884512539,7.884512539 -60,0,21.2,35.5,19.7,36.7,21.7,35.3633333333,20,35.2,19.26,41.3633333333,12.36,18.43,19.23,30.4266666667,21.6,37,19.4266666667,36.3266666667,9.55,760.55,62,1.5,34,2.6,1.4885823242,1.4885823242 -50,0,21.2,35.5,19.7,36.6633333333,21.7,35.29,20,35.2,19.2,41.23,12.2266666667,18.3566666667,19.29,30.39,21.5,36.9666666667,19.4266666667,36.3266666667,9.5333333333,760.5,62,1.6666666667,32,2.5666666667,40.5814185855,40.5814185855 -50,0,21.2,35.5,19.6333333333,36.59,21.7,35.29,20,35.09,19.2,41.2,11.9333333333,18.26,19.23,30.3233333333,21.5,36.9,19.4266666667,36.23,9.5166666667,760.45,62,1.8333333333,30,2.5333333333,28.9586407598,28.9586407598 -60,0,21.2,35.5,19.6,36.59,21.7,35.29,20,35.1633333333,19.2,41.2,11.9333333333,18.8,19.29,30.39,21.5,36.9,19.4266666667,36.1566666667,9.5,760.4,62,2,28,2.5,28.8365969784,28.8365969784 -50,0,21.1333333333,35.4,19.6,36.53,21.7,35.2,20,35.2,19.2,41.09,11.8,19.23,19.29,30.39,21.5,36.79,19.4633333333,36.1633333333,9.4666666667,760.3333333333,62.3333333333,2.1666666667,30,2.55,35.0743432646,35.0743432646 -70,0,21.1333333333,35.4,19.6,36.5,21.7,35.2,20,35.2,19.2,41.09,11.7175,19.545,19.29,30.39,21.5,36.79,19.4633333333,36.09,9.4333333333,760.2666666667,62.6666666667,2.3333333333,32,2.6,3.1883100164,3.1883100164 -60,0,21.1,35.4,19.6,36.5,21.7,35.09,20,35.1266666667,19.2,41.06,11.63,19.7633333333,19.29,30.39,21.5,36.79,19.4266666667,36.09,9.4,760.2,63,2.5,34,2.65,25.1241449267,25.1241449267 -50,0,21.1,35.4,19.5333333333,36.5,21.7,35.09,19.9266666667,35.2,19.2,41.06,11.26,19.9,19.2,30.29,21.4266666667,36.6566666667,19.4266666667,36.09,9.3666666667,760.1333333333,63.3333333333,2.6666666667,36,2.7,19.1974975518,19.1974975518 -50,0,21.1,35.4,19.5,36.59,21.7,35,19.89,35.2,19.2,41.06,10.8666666667,20.9666666667,19.2,30.29,21.39,36.59,19.39,36.09,9.3333333333,760.0666666667,63.6666666667,2.8333333333,38,2.75,21.3208174217,21.3208174217 -50,0,21.1,35.4,19.4266666667,36.59,21.7,35,19.89,35.2,19.2,41,10.66,22.0966666667,19.2,30.29,21.39,36.59,19.39,36.03,9.3,760,64,3,40,2.8,27.219508111,27.219508111 -50,0,21.1,35.4,19.39,36.6266666667,21.7,34.9333333333,19.89,35.2,19.2,41,10.5333333333,22.29,19.2,30.3566666667,21.39,36.5,19.39,36,9.2166666667,760.0333333333,65.1666666667,2.8333333333,38.1666666667,2.9666666667,32.1819103323,32.1819103323 -50,10,21.1,35.4,19.39,36.7,21.7,35,19.89,35.2,19.2,41,10.2633333333,23.16,19.2,30.39,21.39,36.5,19.39,36,9.1333333333,760.0666666667,66.3333333333,2.6666666667,36.3333333333,3.1333333333,39.5596193383,39.5596193383 -50,0,21.0666666667,35.3633333333,19.3566666667,36.7,21.7,34.95,19.89,35.23,19.2,40.9,10.19,24.2333333333,19.2,30.7233333333,21.29,36.5,19.39,36,9.05,760.1,67.5,2.5,34.5,3.3,42.3426698777,42.3426698777 -40,30,21.0666666667,35.49,19.29,36.8333333333,21.6333333333,34.79,19.89,35.29,19.2,40.9,10.1,25.0933333333,19.29,31.1666666667,21.29,36.5,19.39,36,8.9666666667,760.1333333333,68.6666666667,2.3333333333,32.6666666667,3.4666666667,3.63131552,3.63131552 -40,20,21.1,35.8266666667,19.29,36.9,21.6333333333,34.73,19.9933333333,35.83,19.2,40.9333333333,10.0333333333,26.0266666667,19.29,31.175,21.29,36.4666666667,19.3233333333,36,8.8833333333,760.1666666667,69.8333333333,2.1666666667,30.8333333333,3.6333333333,43.0055321194,43.0055321194 -60,30,21.1,35.9666666667,19.29,36.9666666667,21.6,34.79,20.4975,36.295,19.2,41,9.86,27.3633333333,19.29,31.3266666667,21.29,36.4666666667,19.39,36,8.8,760.2,71,2,29,3.8,47.8082318325,47.8082318325 -50,20,21.1333333333,36,19.39,36.9,21.6,34.79,21.0633333333,36.29,19.2,41,9.7266666667,28.5566666667,19.29,31.6633333333,21.26,36.4666666667,19.3233333333,36,8.6833333333,760.1666666667,71.1666666667,2,30.8333333333,3.7166666667,46.3209578302,46.3209578302 -90,20,21.2,36,19.39,36.9666666667,21.6,34.8266666667,21.39,35.93,19.1,41,9.6,29.1666666667,19.29,31.93,21.26,36.4666666667,19.3566666667,36,8.5666666667,760.1333333333,71.3333333333,2,32.6666666667,3.6333333333,2.6981829782,2.6981829782 -90,30,21.23,36.03,19.5,37.09,21.6666666667,34.9666666667,21.39,35.93,19.1666666667,41.06,9.5333333333,29.9,19.29,32.1266666667,21.2,36.6933333333,19.29,36,8.45,760.1,71.5,2,34.5,3.55,12.3204731965,12.3204731965 -560,30,21.3566666667,36.09,19.5666666667,37.1633333333,21.6333333333,35.03,21.39,36.1266666667,19.1,41.1266666667,9.36,30.1333333333,19.29,32.3333333333,21.26,37.1,19.29,36,8.3333333333,760.0666666667,71.6666666667,2,36.3333333333,3.4666666667,24.3684834917,24.3684834917 -410,20,21.5333333333,36.49,19.73,37.29,21.7,35.03,21.39,36.2,19.1666666667,41.2,9.2266666667,29.9266666667,19.3566666667,32.5,21.3233333333,37.4333333333,19.29,36,8.2166666667,760.0333333333,71.8333333333,2,38.1666666667,3.3833333333,5.0031691091,5.0031691091 -170,10,21.6666666667,37.8233333333,19.8566666667,37.3633333333,21.73,35.2666666667,21.39,36.03,19.1333333333,41.3266666667,9.0666666667,29.9,19.29,32.56,21.4633333333,37.56,19.29,36.03,8.1,760,72,2,40,3.3,9.7579628346,9.7579628346 -110,10,21.84,39.85,20.0333333333,37.9566666667,21.79,35.8,21.3233333333,36.1633333333,19.2,41.5266666667,8.9266666667,29.7,19.29,32.4666666667,21.5,37.3,19.29,36.03,7.9166666667,759.9666666667,73.5,1.8333333333,37.6666666667,3.4,10.6785762357,10.6785762357 -130,10,21.9266666667,39.2966666667,20.1666666667,38.49,21.9266666667,36.36,21.29,36.5666666667,19.2,41.86,8.8,30.1,19.29,32.2666666667,21.6333333333,37.1566666667,19.29,36.06,7.7333333333,759.9333333333,75,1.6666666667,35.3333333333,3.5,10.3841116303,10.3841116303 -140,20,22.0666666667,38.7566666667,20.245,38.645,22,36.5,21.23,36.7,19.2,42.06,8.66,30.4633333333,19.29,32.06,21.7,37.3633333333,19.29,36,7.55,759.9,76.5,1.5,33,3.6,1.4385713264,1.4385713264 -140,30,22.1,38.1,20.29,38.5266666667,22.0333333333,36.5,21.2,36.8266666667,19.2,42.26,8.5333333333,30.4633333333,19.3566666667,32.86,21.79,37.6266666667,19.29,36,7.3666666667,759.8666666667,78,1.3333333333,30.6666666667,3.7,11.7283213767,11.7283213767 -140,20,22.1666666667,37.9666666667,20.3566666667,38.2666666667,22.1,36.4333333333,21.2,36.8266666667,19.2,42.2,8.4633333333,30.6633333333,19.6,33.66,21.8566666667,37.76,19.29,36.06,7.1833333333,759.8333333333,79.5,1.1666666667,28.3333333333,3.8,5.3592610057,5.3592610057 -110,30,22.23,37.56,20.4266666667,38.23,22.1,36.3633333333,21.36,37.2,19.2,42.3266666667,8.39,30.9966666667,19.6,33.4,22,37.79,19.29,36.06,7,759.8,81,1,26,3.9,13.8657895033,13.8657895033 -140,30,22.29,37.36,20.5666666667,38.23,22.1,36.29,21.76,37.1266666667,19.26,49.1933333333,8.19,31.5233333333,19.5,33.06,22.0666666667,37.8633333333,19.29,36,7.05,759.8333333333,79.8333333333,1.1666666667,28.3333333333,3.75,34.8010977264,34.8010977264 -140,20,22.4266666667,37.1633333333,20.73,38.1633333333,22.1333333333,36.2,22.23,36.7666666667,19.76,64.2333333333,8.13,32.1966666667,19.5,32.9333333333,22.0333333333,38.33,19.29,36,7.1,759.8666666667,78.6666666667,1.3333333333,30.6666666667,3.6,13.3128695888,13.3128695888 -140,20,22.5,37.09,20.79,38.1633333333,22.2,36.1266666667,22.29,36.56,19.7,63.4333333333,8,32.89,19.5,33.5,22.1,38.7233333333,19.2225,35.925,7.15,759.9,77.5,1.5,33,3.45,33.0238407128,33.0238407128 -130,30,22.6,37.09,20.89,38.2,22.2,36.09,22.29,37.39,19.7,60.7666666667,8,33.3633333333,19.5,33.4333333333,22.23,39.03,19.2,35.9,7.2,759.9333333333,76.3333333333,1.6666666667,35.3333333333,3.3,10.6208259007,10.6208259007 -120,20,22.6,37.09,20.89,38.2,22.2,36.09,22.29,37.53,19.8266666667,57.2333333333,8,33.8266666667,19.6333333333,35.03,22.29,39.09,19.2,35.8633333333,7.25,759.9666666667,75.1666666667,1.8333333333,37.6666666667,3.15,0.2633050783,0.2633050783 -140,20,22.6333333333,37.09,20.89,38.2,22.2,36.09,22.2,37.1633333333,19.76,56.7,8,33.9666666667,19.7,35.1175,22.3233333333,39.06,19.2,35.79,7.3,760,74,2,40,3,5.1451253123,5.1451253123 -120,20,22.7,37.09,20.9633333333,38.2,22.2,36.1266666667,22.125,36.9975,19.7,56.5666666667,7.9666666667,34.4666666667,19.7,35.2,22.39,39.06,19.2,35.79,7.3,760,74.1666666667,2.1666666667,37.1666666667,3.0333333333,14.3700000714,14.3700000714 -120,30,22.7,36.9666666667,21,38.09,22.2,36.2,22.1,36.9,19.65,55.7,7.9666666667,34.6,19.6666666667,35.06,22.5,39.1633333333,19.2,35.79,7.3,760,74.3333333333,2.3333333333,34.3333333333,3.0666666667,22.2078048275,22.2078048275 -140,20,22.7,36.8266666667,21,38.03,22.2,36.2,22.0666666667,36.6633333333,19.6666666667,54.8333333333,8,34.2933333333,19.6,34.9333333333,22.5,39.03,19.2,35.79,7.3,760,74.5,2.5,31.5,3.1,34.6496389946,34.6496389946 -100,20,22.79,36.7,20.89,38,22.2,36.2,22.0666666667,36.6633333333,19.6,54.2266666667,8,35.2333333333,19.6,34.8633333333,22.6,38.9666666667,19.2,35.79,7.3,760,74.6666666667,2.6666666667,28.6666666667,3.1333333333,1.0442158207,1.0442158207 -70,20,22.79,36.6266666667,20.89,38.06,22.1666666667,36.2666666667,22,36.73,19.6,53.5633333333,7.9,35.8966666667,19.6,34.79,22.6666666667,38.9666666667,19.2,35.79,7.3,760,74.8333333333,2.8333333333,25.8333333333,3.1666666667,47.7875884622,47.7875884622 -60,20,22.79,36.59,20.8566666667,38.2,22.1,36.4,22,36.79,19.6,53.1566666667,7.8333333333,36.49,19.6,34.73,22.7,39.0666666667,19.2,35.8633333333,7.3,760,75,3,23,3.2,40.2055312064,40.2055312064 -70,30,22.73,36.6633333333,20.79,38.3333333333,22,36.3266666667,22,36.9,19.5,52.9666666667,7.69,37.795,19.6,34.79,22.7,39.46,19.2,36.03,7.1833333333,759.9333333333,76,2.8333333333,30,3.2666666667,45.5869944883,45.5869944883 -70,20,22.7,36.79,20.76,38.4333333333,22,36.4,22,36.9666666667,19.5,52.8266666667,7.59,38.7333333333,19.6,34.9333333333,22.7,39.9633333333,19.2,36.1633333333,7.0666666667,759.8666666667,77,2.6666666667,37,3.3333333333,15.4733397998,15.4733397998 -50,20,22.7,36.8725,20.7,38.6333333333,22,36.4,22,37.03,19.5,52.6333333333,7.53,39.7333333333,19.6,35.1333333333,22.7,40.2966666667,19.2,36.3266666667,6.95,759.8,78,2.5,44,3.4,16.1963938503,16.1963938503 -60,20,22.6333333333,36.9,20.6,38.69,22,36.4666666667,22.0666666667,37.2233333333,19.5,52.36,7.5,41.0333333333,19.6,35.29,22.7,40.8,19.2,36.4666666667,6.8333333333,759.7333333333,79,2.3333333333,51,3.4666666667,6.9179889164,6.9179889164 -30,20,22.6,36.9,20.4633333333,38.9,22,36.5,22.36,37.2233333333,19.5,52.2233333333,7.5,42.0933333333,19.6,35.3633333333,22.6666666667,41.23,19.2,36.6266666667,6.7166666667,759.6666666667,80,2.1666666667,58,3.5333333333,47.8780309903,47.8780309903 -40,20,22.6,36.9,20.39,38.9666666667,22,36.5,22.5,37.09,19.5,51.9633333333,7.4,43.5933333333,19.6,35.5666666667,22.6,41.43,19.2,36.76,6.6,759.6,81,2,65,3.6,11.6334587918,11.6334587918 -40,30,22.6,37,20.3566666667,39.09,21.89,36.4,22.5,37.1266666667,19.39,51.6633333333,7.3333333333,44.4,19.6,35.8333333333,22.6,41.8266666667,19.2,36.8266666667,6.4166666667,759.6,81.5,1.8333333333,64.8333333333,3.4833333333,1.1857453734,1.1857453734 -60,20,22.5333333333,37.06,20.29,39.1633333333,21.89,36.4666666667,22.4266666667,37.2,19.39,51.4633333333,7.19,45.8333333333,19.6,36.1266666667,22.6,41.9,19.2,36.9666666667,6.2333333333,759.6,82,1.6666666667,64.6666666667,3.3666666667,2.6055813418,2.6055813418 -70,20,22.5,37.29,20.2,39.2,21.8233333333,36.4333333333,22.39,37.23,19.39,51.06,7.1233333333,47.0933333333,19.6,36.3333333333,22.5666666667,41.86,19.2,37.23,6.05,759.6,82.5,1.5,64.5,3.25,46.6359866899,46.6359866899 -70,20,22.5,37.29,20.1333333333,39.3333333333,21.89,36.56,22.39,37.29,19.39,50.86,7.06,47.6566666667,19.7,36.6266666667,22.5,42,19.2,37.3975,5.8666666667,759.6,83,1.3333333333,64.3333333333,3.1333333333,1.9375751144,1.9375751144 -70,20,22.39,37.2,20.1,39.53,21.79,36.5,22.3566666667,37.29,19.39,50.6633333333,6.9333333333,48.1966666667,19.7,36.7,22.39,41.8266666667,19.2,37.5,5.6833333333,759.6,83.5,1.1666666667,64.1666666667,3.0166666667,40.3556831181,40.3556831181 -60,30,22.39,37.26,20.0333333333,39.53,21.865,36.5675,22.29,37.29,19.39,50.4633333333,6.7633333333,48.9333333333,19.7,36.7,22.39,41.9666666667,19.2,37.7,5.5,759.6,84,1,64,2.9,34.8441049573,34.8441049573 -60,20,22.3566666667,37.29,19.9633333333,39.59,21.8233333333,36.53,22.29,37.29,19.39,50.26,6.5633333333,49.1933333333,19.7,36.9333333333,22.39,42.2666666667,19.2,37.76,5.4833333333,759.5833333333,84.1666666667,1,56.6666666667,2.9333333333,19.4025393459,19.4025393459 -60,20,22.29,37.29,19.89,39.6633333333,21.89,36.59,22.245,37.29,19.3233333333,50.0666666667,6.33,48.8633333333,19.7,37,22.3233333333,42.6,19.2,37.9333333333,5.4666666667,759.5666666667,84.3333333333,1,49.3333333333,2.9666666667,19.5291682845,19.5291682845 -60,20,22.29,37.29,19.79,39.7,21.89,36.59,22.23,37.23,19.34,49.8,6.19,48.8633333333,19.7,36.76,22.29,43,19.2,38.06,5.45,759.55,84.5,1,42,3,49.1166283609,49.1166283609 -50,10,22.29,37.29,19.79,39.7,21.8233333333,36.53,22.2,37.23,19.3566666667,49.56,6.3,48.0266666667,19.7,36.6266666667,22.29,43.46,19.2,38.1266666667,5.4333333333,759.5333333333,84.6666666667,1,34.6666666667,3.0333333333,10.8382528531,10.8382528531 -60,10,22.2,37.3266666667,19.7,39.73,21.8233333333,36.53,22.2,37.0966666667,19.29,49.4333333333,6.3666666667,46.9666666667,19.7,36.6266666667,22.29,43.86,19.2,38.26,5.4166666667,759.5166666667,84.8333333333,1,27.3333333333,3.0666666667,28.3479831414,28.3479831414 -60,0,22.2,37.5266666667,19.6333333333,39.79,21.89,36.73,22.1,36.8333333333,19.29,49.26,6.35,46.545,19.7,36.8333333333,22.29,44.06,19.2,38.4333333333,5.4,759.5,85,1,20,3.1,49.0167809068,49.0167809068 -50,0,22.1666666667,37.7,19.6,39.73,21.89,36.79,22.0333333333,36.6266666667,19.29,49.1266666667,6.19,47.03,19.7,37,22.26,44.2,19.2,38.5,5.4166666667,759.45,85,1.1666666667,20,3.1,28.7279155455,28.7279155455 -60,0,22.1,37.7,19.6,39.73,22,36.79,21.9633333333,36.5,19.29,49,6.19,47.09,19.7,37.06,22.26,44.3333333333,19.2,38.6566666667,5.4333333333,759.4,85,1.3333333333,20,3.1,31.6433421918,31.6433421918 -40,0,22.1,37.59,19.5,39.79,22.0666666667,36.8633333333,21.8233333333,36.4333333333,19.29,48.9333333333,6.19,47.5966666667,19.7,37.09,22.2,44.4,19.2,38.79,5.45,759.35,85,1.5,20,3.1,39.1496460652,39.1496460652 -50,0,22.025,37.4975,19.5,39.79,22.1,37,21.76,36.5,19.29,48.79,6.1233333333,47.79,19.76,37.2233333333,22.2,44.4,19.2,38.9333333333,5.4666666667,759.3,85,1.6666666667,20,3.1,42.8437806317,42.8437806317 -50,0,22,37.4,19.445,39.79,22.1,37,21.7,36.56,19.29,48.79,6.19,48.06,19.79,37.29,22.2,44.4,19.2,39,5.4833333333,759.25,85,1.8333333333,20,3.1,2.0796506549,2.0796506549 -40,0,22,37.4,19.39,39.79,22.1333333333,37,21.6,36.5,19.2,48.56,6.1233333333,48.2666666667,19.79,37.23,22.2,44.3175,19.2,39.03,5.5,759.2,85,2,20,3.1,44.7612511693,44.7612511693 -60,0,21.9266666667,37.4,19.3233333333,39.79,22.2,37.06,21.5333333333,36.5,19.2,48.4333333333,6.09,49.1666666667,19.79,37.23,22.2,44.29,19.2,39.2233333333,5.5,759.15,85.3333333333,2,27.3333333333,3.1666666667,9.4258292811,9.4258292811 -50,0,21.89,37.4,19.29,39.9,22.2,37.1266666667,21.5,36.5,19.2,48.3633333333,6.09,49.56,19.79,37.29,22.2,44.26,19.23,39.4633333333,5.5,759.1,85.6666666667,2,34.6666666667,3.2333333333,19.3670941982,19.3670941982 -60,0,21.89,37.4,19.29,39.9666666667,22.2,37.2,21.4266666667,36.5,19.2,48.29,6.09,49.79,19.79,37.2,22.1333333333,44.1266666667,19.23,39.59,5.5,759.05,86,2,42,3.3,24.7251012246,24.7251012246 -30,0,21.79,37.3266666667,19.2,39.9,22.23,37.1566666667,21.3566666667,36.5,19.2,48.2,6.03,49.93,19.79,37.2,22.1,44.09,19.2,39.73,5.5,759,86.3333333333,2,49.3333333333,3.3666666667,18.5158181237,18.5158181237 -40,0,21.79,37.4,19.2,39.9,22.29,37.29,21.29,36.5,19.2,48.1266666667,6,51.1966666667,19.79,37.2,22.1,44.03,19.2225,39.8975,5.5,758.95,86.6666666667,2,56.6666666667,3.4333333333,34.6812553355,34.6812553355 -20,0,21.79,37.4,19.1666666667,40,22.26,37.2,21.26,36.5,19.2,48,5.9333333333,51.7966666667,19.79,37.1266666667,22.0333333333,43.8266666667,19.23,40,5.5,758.9,87,2,64,3.5,36.6577542271,36.6577542271 -30,0,21.79,37.4,19.1,40.06,22.2,37.2,21.2,36.5,19.2,47.9333333333,5.8666666667,52.09,19.79,37.045,22.1,43.8266666667,19.29,40.2,5.2,758.8333333333,88,1.8333333333,63.6666666667,3.3666666667,15.4274866916,15.4274866916 -40,0,21.7,37.4,19.1,40.2,22.2,37.26,21.1666666667,36.5,19.2,47.9,5.66,52.2233333333,19.79,37.29,22.0666666667,43.8633333333,19.29,40.26,4.9,758.7666666667,89,1.6666666667,63.3333333333,3.2333333333,48.6220947932,48.6220947932 -50,0,21.7,37.4,19.0333333333,40.1266666667,22.1333333333,37.29,21.1,36.5,19.2,47.8266666667,5.2966666667,52.6333333333,19.79,37.29,22,43.79,19.29,40.4,4.6,758.7,90,1.5,63,3.1,12.1667170431,12.1667170431 -60,0,21.7,37.5,19,40.09,22.2,37.29,21.0333333333,36.5,19.2,47.76,4.8233333333,52.2266666667,19.79,37.26,22,43.86,19.29,40.4666666667,4.3,758.6333333333,91,1.3333333333,62.6666666667,2.9666666667,41.7514069472,41.7514069472 -60,0,21.6333333333,37.4333333333,18.9266666667,40.1633333333,22.2,37.3266666667,21,36.5,19.2,47.6725,4.1,52.295,19.79,37.2,22,44.1333333333,19.29,40.5,4,758.5666666667,92,1.1666666667,62.3333333333,2.8333333333,19.5287948125,19.5287948125 -50,0,21.6,37.4,18.89,40.2,22.2,37.3266666667,21,36.5,19.2,47.59,3.46,53.5,19.79,37.09,22,44.4,19.29,40.56,3.7,758.5,93,1,62,2.7,45.4431848484,45.4431848484 -50,0,21.6,37.4,18.89,40.26,22.2,37.3266666667,20.9266666667,36.5,19.2,47.5,3.0666666667,53.96,19.79,37.03,22,44.4666666667,19.29,40.6266666667,3.4833333333,758.4833333333,93.6666666667,1,59.8333333333,2.5833333333,30.3783147596,30.3783147596 -50,0,21.5666666667,37.4,18.8566666667,40.26,22.2,37.4,20.9266666667,36.5,19.1333333333,47.4333333333,2.7233333333,54.9266666667,19.79,36.9666666667,22,44.6266666667,19.29,40.7,3.2666666667,758.4666666667,94.3333333333,1,57.6666666667,2.4666666667,30.3747526603,30.3747526603 -50,0,21.5,37.4,18.79,40.26,22.2,37.3633333333,20.8566666667,36.4666666667,19.2,47.4,2.4633333333,55.5333333333,19.79,36.9666666667,21.9266666667,44.7,19.29,40.8266666667,3.05,758.45,95,1,55.5,2.35,44.7163572419,44.7163572419 -40,0,21.5,37.4,18.7,40.3266666667,22.2,37.3633333333,20.79,36.3266666667,19.1333333333,47.3266666667,2.2233333333,55.9266666667,19.79,37,22,44.59,19.29,40.9,2.8333333333,758.4333333333,95.6666666667,1,53.3333333333,2.2333333333,48.7644194276,48.7644194276 -50,0,21.5,37.4,18.6333333333,40.3266666667,22.2,37.3266666667,20.79,36.29,19.1,47.26,2.03,56.4,19.79,37,21.9266666667,44.53,19.29,40.9333333333,2.6166666667,758.4166666667,96.3333333333,1,51.1666666667,2.1166666667,33.8175603887,33.8175603887 -60,0,21.5,37.4,18.6,40.4333333333,22.2,37.4,20.79,36.29,19.1,47.2,1.76,56.83,19.79,36.9,21.89,44.4,19.29,41,2.4,758.4,97,1,49,2,4.5569304959,4.5569304959 -50,0,21.39,37.29,18.525,40.5225,22.2,37.4,20.76,36.29,19.1,47.1633333333,1.6333333333,57.3633333333,19.73,36.8266666667,21.89,44.3266666667,19.29,41.03,2.2666666667,758.35,97.1666666667,1,41.5,1.8833333333,38.8974651112,38.8974651112 -50,0,21.39,37.29,18.5,40.59,22.2,37.4,20.7,36.23,19.1,47.09,1.3566666667,57.7666666667,19.79,36.9,21.89,44.245,19.29,41.09,2.1333333333,758.3,97.3333333333,1,34,1.7666666667,25.877219683,25.877219683 -60,0,21.39,37.2,18.39,40.59,22.23,37.4333333333,20.7,36.2,19.1,47.09,1.23,57.9666666667,19.79,36.8266666667,21.89,44.2,19.29,41.1266666667,2,758.25,97.5,1,26.5,1.65,32.6185084647,32.6185084647 -50,0,21.39,37.2,18.39,40.59,22.29,37.5,20.7,36.2,19.1,47.03,1.0666666667,58.2666666667,19.79,36.79,21.89,44.1266666667,19.29,41.2,1.8666666667,758.2,97.6666666667,1,19,1.5333333333,16.9648847776,16.9648847776 -40,0,21.29,37.2,18.3233333333,40.6266666667,22.2,37.4,20.6,36,19.1,47,0.9333333333,58.6,19.73,36.79,21.89,43.9666666667,19.29,41.2,1.7333333333,758.15,97.8333333333,1,11.5,1.4166666667,14.6060215659,14.6060215659 -60,0,21.29,37.2,18.3233333333,40.7,22.2,37.4,20.6,36,19.1,47,0.7666666667,58.9633333333,19.79,36.9333333333,21.89,43.8266666667,19.29,41.2675,1.6,758.1,98,1,4,1.3,39.1856211238,39.1856211238 -70,0,21.29,37.3,18.2,40.8,22.2,37.4,20.6,36,19.1,46.9666666667,0.7,59.4966666667,19.79,37,21.79,43.59,19.29,41.29,1.4166666667,758.1,97.8333333333,1,8.6666666667,1.1,15.9982891404,15.9982891404 -60,10,21.29,37.6933333333,18.2,41.1333333333,22.125,37.2225,20.6,36,19.1,46.6933333333,0.7,59.9633333333,19.79,37.245,21.79,43.33,19.29,41.29,1.2333333333,758.1,97.6666666667,1,13.3333333333,0.9,24.463880097,24.463880097 -40,0,21.29,37.73,18.1666666667,41.4,22.1,36.89,20.5,36,19.2,45.4666666667,0.625,60.2475,19.79,37.2,21.76,42.93,19.29,41.29,1.05,758.1,97.5,1,18,0.7,6.7070956109,6.7070956109 -90,0,21.29,37.6566666667,18.1,41.5266666667,22,36.76,20.5,36,19.26,44.8,0.6,61.6333333333,19.79,37.5333333333,21.7,42.79,19.29,41.3333333333,0.8666666667,758.1,97.3333333333,1,22.6666666667,0.5,32.66470331,32.66470331 -30,10,21.2,37.79,18.0333333333,41.7666666667,22,36.7,20.4266666667,35.9333333333,19.26,44.7666666667,0.5333333333,61.4333333333,19.79,37.7,21.7,42.8266666667,19.29,41.1266666667,0.6833333333,758.1,97.1666666667,1,27.3333333333,0.3,39.1962063499,39.1962063499 -30,0,21.2,37.93,18.0333333333,41.9,22,36.59,20.4633333333,35.9,19.2,45.145,0.3333333333,61.16,19.79,37.5666666667,21.7,42.8266666667,19.29,40.9666666667,0.5,758.1,97,1,32,0.1,46.0904643056,46.0904643056 -50,0,21.2,38.1266666667,18,42.09,21.9266666667,36.53,20.39,35.9,19.2,45.6333333333,0.2,61.5933333333,19.79,37.2233333333,21.7,42.5266666667,19.29,40.8266666667,0.85,758.1166666667,97,1,32.5,0.4333333333,12.9231887055,12.9231887055 -50,0,21.2,38.26,18,42.1633333333,21.89,36.5,20.39,35.9,19.1,45.9633333333,0.2,62.26,19.79,36.9633333333,21.7,42.2666666667,19.29,40.56,1.2,758.1333333333,97,1,33,0.7666666667,25.6616449682,25.6616449682 -40,0,21.2,38.1633333333,18,42.4,21.89,36.5,20.39,35.9,19.1,46.1633333333,0.3,62.56,19.79,36.6333333333,21.6666666667,41.99,19.29,40.4333333333,1.55,758.15,97,1,33.5,1.1,42.9291660781,42.9291660781 -50,0,21.2,38.09,17.9266666667,42.4,21.79,36.4,20.39,35.79,19.1,46.4333333333,0.3666666667,62.7666666667,19.79,36.36,21.6,41.73,19.29,40.26,1.9,758.1666666667,97,1,34,1.4333333333,7.5706797186,7.5706797186 -60,0,21.1,38.09,17.9266666667,42.4,21.79,36.4,20.3233333333,35.79,19.1,46.56,0.5333333333,63.6333333333,19.7,36.06,21.6,41.5266666667,19.29,40.1266666667,2.25,758.1833333333,97,1,34.5,1.7666666667,32.0734008565,32.0734008565 -50,0,21.1,38.09,18,42.3266666667,21.79,36.4333333333,20.29,35.79,19.1,46.6266666667,0.8,64.4266666667,19.7,35.86,21.6,41.3266666667,19.29,39.93,2.6,758.2,97,1,35,2.1,41.2738673971,41.2738673971 -60,0,21.1,38.09,18,42.345,21.79,36.5,20.29,35.79,19.1,46.7,1.3,65.3933333333,19.7,35.6633333333,21.6,41.1633333333,19.3566666667,39.73,3.0666666667,758.1833333333,95.3333333333,1,39.5,2.3166666667,48.614764784,48.614764784 -50,0,21.1,38.09,18.0333333333,42.3266666667,21.79,36.53,20.29,35.79,19.1,46.79,1.7666666667,66.4666666667,19.7,35.53,21.5333333333,41.03,19.5,39.5266666667,3.5333333333,758.1666666667,93.6666666667,1,44,2.5333333333,8.6562859826,8.6562859826 -50,0,21.1,38.09,18.0333333333,42.3266666667,21.79,36.59,20.29,35.79,19.1,46.79,2.39,67.3966666667,19.7,35.3633333333,21.5,40.9666666667,19.5666666667,39.2666666667,4,758.15,92,1,48.5,2.75,35.5010935571,35.5010935571 -50,0,21.1,38.09,18.1,42.3633333333,21.79,36.53,20.3233333333,35.8266666667,19.0666666667,46.76,2.7966666667,67.8633333333,19.7,35.29,21.5,40.795,19.6,39.2,4.4666666667,758.1333333333,90.3333333333,1,53,2.9666666667,5.5357644684,5.5357644684 -50,0,21.1,38.09,18.1666666667,42.29,21.79,36.59,20.4633333333,35.9,19,46.7,3.1933333333,68.66,19.7,35.26,21.5,40.7,19.6,39.2,4.9333333333,758.1166666667,88.6666666667,1,57.5,3.1833333333,20.8389627282,20.8389627282 -50,0,21.1,38.1566666667,18.36,42.26,21.79,36.59,20.6,36,19,46.7,3.6,69.06,19.7,35.2,21.4266666667,40.53,19.6333333333,39.0266666667,5.4,758.1,87,1,62,3.4,14.2310672556,14.2310672556 -40,0,21.1,38.29,18.8333333333,41.8666666667,21.79,36.59,20.7266666667,36.06,19,46.7,4.15,69.65,19.6,35.06,21.4266666667,40.53,19.7225,38.7,5.8166666667,758.1,84.1666666667,1.1666666667,55.5,3.3,17.0577424928,17.0577424928 -60,0,21.1,38.2,19.4566666667,40.9966666667,21.7,36.59,20.9266666667,36.09,19,46.6633333333,4.6933333333,69.9633333333,19.6,34.9333333333,21.4633333333,40.4666666667,19.79,38.36,6.2333333333,758.1,81.3333333333,1.3333333333,49,3.2,8.4447605419,8.4447605419 -50,0,21.1666666667,38.2,20.0633333333,40.1966666667,21.7675,36.59,21.0666666667,36.09,19,46.59,5.1666666667,70.1566666667,19.6,34.845,21.39,40.3266666667,19.8566666667,38.2233333333,6.65,758.1,78.5,1.5,42.5,3.1,27.354844904,27.354844904 -60,0,21.2,38.2,20.63,39.49,21.79,36.53,21.23,36.1266666667,19,46.56,5.93,69.0266666667,19.6,34.79,21.39,40.29,19.79,38.1633333333,7.0666666667,758.1,75.6666666667,1.6666666667,36,3,39.8602913832,39.8602913832 -40,0,21.2,38.2,21.03,39.03,21.79,36.5,21.3925,36.1175,19,46.5,6.4566666667,65.9,19.6,34.79,21.39,40.23,19.79,38.23,7.4833333333,758.1,72.8333333333,1.8333333333,29.5,2.9,42.9315373418,42.9315373418 -50,0,21.2,38.2,21.46,38.49,21.8566666667,36.56,21.5666666667,36.09,19,46.5,7.1,57.6333333333,19.6,34.6633333333,21.39,40.26,19.73,38.29,7.9,758.1,70,2,23,2.8,16.6135211824,16.6135211824 -40,0,21.2,38.2,21.6666666667,38.0966666667,21.79,36.5,21.6,35.9666666667,19,46.475,7.4933333333,47.6933333333,19.6,34.59,21.39,40.1266666667,19.7,38.29,8.1833333333,758.05,68.3333333333,2,25.8333333333,2.7,25.7862743107,25.7862743107 -30,0,21.29,38.2,21.86,37.7233333333,21.8566666667,36.56,21.6666666667,35.9666666667,19,46.4,8.1,39.9233333333,19.5666666667,34.4666666667,21.39,40.1266666667,19.7,38.3633333333,8.4666666667,758,66.6666666667,2,28.6666666667,2.6,18.5842346051,18.5842346051 -30,0,21.29,38.2,22.0666666667,37.4633333333,21.79,36.5,21.7,35.9,19,46.4,8.5,34.6633333333,19.5666666667,34.4,21.39,40.0666666667,19.7,38.5,8.75,757.95,65,2,31.5,2.5,21.8350674026,21.8350674026 -30,0,21.29,38.1633333333,22.3233333333,36.99,21.79,36.5,21.7,35.9,19,46.4,8.83,32.1233333333,19.6,34.26,21.39,39.76,19.7,38.5,9.0333333333,757.9,63.3333333333,2,34.3333333333,2.4,37.1214497718,37.1214497718 -50,0,21.3566666667,38.09,22.4633333333,36.6566666667,21.79,36.5,21.79,35.79,19,46.4,9.03,32.79,19.6,34.1266666667,21.39,39.6266666667,19.7,38.5,9.3166666667,757.85,61.6666666667,2,37.1666666667,2.3,0.5550649366,0.5550649366 -60,0,21.39,38.06,22.6,36.3333333333,21.79,36.5,21.79,35.79,19,46.4,9.2566666667,31.8933333333,19.6,34.09,21.39,39.4666666667,19.7,38.5,9.6,757.8,60,2,40,2.2,2.3450182867,2.3450182867 -60,0,21.39,38,22.6666666667,36.1266666667,21.79,36.4666666667,21.79,35.7,19,46.4,9.4633333333,31.5666666667,19.6,34.03,21.39,39.3266666667,19.7,38.5,9.7666666667,757.7666666667,59.5,2,37.8333333333,2.2333333333,18.5908925952,18.5908925952 -40,0,21.4266666667,38,22.7,36,21.8566666667,36.5266666667,21.79,35.7,19,46.3266666667,9.63,30.4266666667,19.6,33.9666666667,21.46,39.2,19.7,38.5,9.9333333333,757.7333333333,59,2,35.6666666667,2.2666666667,32.9078381066,32.9078381066 -50,0,21.5,38,22.675,35.8975,21.89,36.59,21.8233333333,35.7,19,46.29,9.8233333333,28.0333333333,19.6,33.9,21.6,39.0666666667,19.7,38.53,10.1,757.7,58.5,2,33.5,2.3,26.4825078542,26.4825078542 -50,0,21.5,38,22.6,35.79,21.89,36.59,21.89,35.7,19,46.29,10.0633333333,25.0966666667,19.6,33.79,21.6333333333,38.8633333333,19.7,38.8633333333,10.2666666667,757.6666666667,58,2,31.3333333333,2.3333333333,29.4456966338,29.4456966338 -50,0,21.6,38,22.6,35.7,21.89,36.59,22,35.59,19,46.2,10.3233333333,23.6233333333,19.6,33.73,21.76,38.6566666667,19.73,39.29,10.4333333333,757.6333333333,57.5,2,29.1666666667,2.3666666667,39.2974104034,39.2974104034 -50,0,21.6666666667,38,22.6,35.7,21.89,36.59,22,35.53,19,46.2,10.36,21.5333333333,19.6,33.6633333333,21.89,38.545,19.79,39.43,10.6,757.6,57,2,27,2.4,25.2286292729,25.2286292729 -60,0,21.7,37.8633333333,22.5666666667,35.7,21.89,36.6266666667,22,35.56,19,46.2,10.35,20.62,19.6,33.53,21.9266666667,38.3633333333,19.73,39.6266666667,10.8166666667,757.55,56.6666666667,2.1666666667,29.1666666667,2.5166666667,29.6773306793,29.6773306793 -60,0,21.76,37.73,22.5,35.7,21.89,36.6266666667,22,35.5,19,46.1266666667,10.6266666667,21.0333333333,19.6,33.4666666667,22,38.23,19.79,39.7675,11.0333333333,757.5,56.3333333333,2.3333333333,31.3333333333,2.6333333333,43.6072077136,43.6072077136 -50,0,21.8233333333,37.6633333333,22.5,35.59,21.9266666667,36.59,22,35.5,19,46.09,11.0333333333,19.8333333333,19.6,33.4,22.1333333333,38.06,19.79,39.8633333333,11.25,757.45,56,2.5,33.5,2.75,44.5621005027,44.5621005027 -50,0,21.9633333333,37.53,22.5,35.53,22,36.59,22.0666666667,35.5,19,46.09,11.1,19.5666666667,19.6,33.345,22.26,38,19.79,39.8266666667,11.4666666667,757.4,55.6666666667,2.6666666667,35.6666666667,2.8666666667,46.9774458557,46.9774458557 -50,0,22,37.4666666667,22.5,35.5,22,36.5,22.1,35.5,19,46.06,11.3666666667,18.6266666667,19.6,33.29,22.36,37.9,19.79,39.9,11.6833333333,757.35,55.3333333333,2.8333333333,37.8333333333,2.9833333333,42.4384947866,42.4384947866 -40,0,22.0666666667,37.4,22.5,35.5,22.1,36.59,22.1,35.475,19,46.06,11.5666666667,18.2266666667,19.6,33.23,22.5,37.7666666667,19.79,39.8266666667,11.9,757.3,55,3,40,3.1,40.5702187098,40.5702187098 -60,0,22.1333333333,37.3633333333,22.5,35.5,22.1,36.53,22.1,35.4,19,46.09,12.0633333333,17.46,19.6333333333,33.2,22.5333333333,37.6633333333,19.79,39.8266666667,11.9166666667,757.2333333333,55.3333333333,3,40,3.1833333333,41.2344568875,41.2344568875 -50,0,22.2,37.29,22.5,35.5,22.1,36.5,22.0666666667,35.3633333333,19.025,46.045,12.3966666667,16.7933333333,19.7,33.2,22.6,37.53,19.79,39.79,11.9333333333,757.1666666667,55.6666666667,3,40,3.2666666667,45.8004166954,45.8004166954 -50,0,22.26,37.26,22.5,35.4333333333,22.1,36.5,22,35.3633333333,19.0333333333,46.03,12.5333333333,16.2333333333,19.6666666667,33.1633333333,22.6,37.5,19.79,39.79,11.95,757.1,56,3,40,3.35,36.1707573291,36.1707573291 -50,0,22.26,37.2,22.5,35.4333333333,22.1,36.4333333333,22,35.4,19,46,12.7333333333,16.5666666667,19.6666666667,33.09,22.6,37.5,19.79,39.9,11.9666666667,757.0333333333,56.3333333333,3,40,3.4333333333,45.5127229681,45.5127229681 -70,0,22.26,37.2,22.39,35.4,22.1,36.4333333333,22,35.4,19,46,12.7633333333,15.69,19.7,33.09,22.5666666667,37.5,19.79,39.9,11.9833333333,756.9666666667,56.6666666667,3,40,3.5166666667,39.2886374495,39.2886374495 -40,0,22.2,37.2,22.3233333333,35.4,22.1333333333,36.4,21.89,35.4,19,46,12.7633333333,16.0233333333,19.7,33.09,22.5,37.5,19.79,39.9,12,756.9,57,3,40,3.6,11.233105429,11.233105429 -50,0,22.2,37.2,22.29,35.5,22.2,36.4,21.89,35.4,19,46,12.89,15.63,19.6,33,22.39,37.5,19.79,39.9666666667,11.8166666667,756.8333333333,57.6666666667,3.3333333333,37.8333333333,3.5833333333,1.2752957526,1.2752957526 -50,0,22.2,37.2,22.23,35.5,22.2,36.4,21.8566666667,35.3633333333,19.1,46.06,13.03,16.2966666667,19.6666666667,33.06,22.39,37.5,19.79,40,11.6333333333,756.7666666667,58.3333333333,3.6666666667,35.6666666667,3.5666666667,19.1222240799,19.1222240799 -50,0,22.2,37.2,22.1666666667,35.5,22.2,36.4,21.79,35.29,19.1,46,12.9333333333,16.4266666667,19.7,33,22.39,37.59,19.79,40,11.45,756.7,59,4,33.5,3.55,46.0132114124,46.0132114124 -50,0,22.2,37.1175,22.1666666667,35.5,22.2,36.29,21.8233333333,35.3266666667,19.1,46,12.86,16.8266666667,19.7,33,22.4633333333,37.59,19.79,39.9,11.2666666667,756.6333333333,59.6666666667,4.3333333333,31.3333333333,3.5333333333,42.1024359996,42.1024359996 -30,0,22.26,37.09,22.2,35.5,22.2,36.29,21.89,35.4,19.1,45.9333333333,13.19,16.5,19.7,33,22.6,37.5,19.8566666667,39.9,11.0833333333,756.5666666667,60.3333333333,4.6666666667,29.1666666667,3.5166666667,43.9710362349,43.9710362349 -40,0,22.2,37,22.1,35.53,22.2,36.29,21.79,35.29,19.1,45.9,13.0633333333,16.2933333333,19.7,33,22.6,37.5,19.79,39.9,10.9,756.5,61,5,27,3.5,35.7506973902,35.7506973902 -30,0,22.2,37.06,22.0333333333,35.59,22.2,36.29,21.79,35.3633333333,19.1,45.9666666667,12.745,16.59,19.7,33,22.5,37.5,19.79,39.9,10.9166666667,756.45,60.8333333333,4.8333333333,29.1666666667,3.5,47.2552296123,47.2552296123 -40,0,22.2,37.09,21.89,35.73,22.2,36.23,21.76,35.4,19.1,46,12.5666666667,16.9666666667,19.7,33,22.4725,37.545,19.79,39.9,10.9333333333,756.4,60.6666666667,4.6666666667,31.3333333333,3.5,18.8919525244,18.8919525244 -50,0,22.2,37.09,21.8233333333,35.79,22.1333333333,36.29,21.7,35.4,19.1,46,12.3666666667,17.5,19.7,33,22.39,37.5,19.79,39.925,10.95,756.35,60.5,4.5,33.5,3.5,23.7684251042,23.7684251042 -60,0,22.2,37.03,21.7,35.9333333333,22.1,36.29,21.7,35.5,19,45.9,12.0666666667,18.43,19.7,33,22.39,37.59,19.79,39.9333333333,10.9666666667,756.3,60.3333333333,4.3333333333,35.6666666667,3.5,38.2438100409,38.2438100409 -40,0,22.2,37.09,21.6333333333,36,22.1,36.29,21.7,35.5,19.0666666667,45.9666666667,12,18.9633333333,19.7,32.95,22.39,37.6633333333,19.79,39.9,10.9833333333,756.25,60.1666666667,4.1666666667,37.8333333333,3.5,38.1154734059,38.1154734059 -50,0,22.1333333333,37.03,21.5666666667,36.1266666667,22.1,36.29,21.6,35.4,19.1,46,12,19.1633333333,19.7,32.9666666667,22.29,37.7,19.79,39.9,11,756.2,60,4,40,3.5,13.8053510454,13.8053510454 -50,0,22.1333333333,37.03,21.5,36.2,22.1,36.4,21.575,35.4,19.1,46,12.1266666667,19.6233333333,19.7,32.9,22.23,37.6266666667,19.79,39.8633333333,11.05,756.1833333333,59.3333333333,4,40,3.3666666667,0.696475443,0.696475443 -50,0,22.1,37.09,21.4633333333,36.29,22.1666666667,36.4,21.5666666667,35.4,19.1,45.9,12.1,19.4,19.6666666667,32.9,22.2,37.7,19.79,39.79,11.1,756.1666666667,58.6666666667,4,40,3.2333333333,9.5680093043,9.5680093043 -60,0,22.1,37.09,21.3233333333,36.29,22.1,36.29,21.5333333333,35.3266666667,19.05,45.845,12.0333333333,18.7333333333,19.6666666667,32.9,22.2,37.7,19.79,39.79,11.15,756.15,58,4,40,3.1,25.4103798303,25.4103798303 -50,0,22.1,37.09,21.29,36.4333333333,22.1,36.29,21.5333333333,35.4,19.1,45.9,11.6266666667,19.16,19.6666666667,32.8633333333,22.1333333333,37.7,19.79,39.79,11.2,756.1333333333,57.3333333333,4,40,2.9666666667,17.8566504852,17.8566504852 -60,0,22.1,37.09,21.23,36.4333333333,22.2,36.29,21.5,35.4,19.1,45.79,11.5666666667,19.9666666667,19.6666666667,32.8633333333,22.1333333333,37.7,19.79,39.79,11.25,756.1166666667,56.6666666667,4,40,2.8333333333,3.2097964198,3.2097964198 -50,0,22.1,37.09,21.1,36.5,22.2,36.29,21.5,35.4,19.1,45.79,11.5333333333,20.33,19.7,32.9,22.2,37.7,19.79,39.79,11.3,756.1,56,4,40,2.7,34.7247680649,34.7247680649 -50,0,22.1,37.09,21.1,36.56,22.2,36.29,21.4633333333,35.4666666667,19.1,45.76,11.6,20.19,19.7,32.9,22.2,37.7,19.79,39.79,11.1833333333,756.0666666667,56.8333333333,4.1666666667,40,2.8,45.558450534,45.558450534 -40,0,22.1,37.09,21.0666666667,36.7,22.2,36.29,21.4633333333,35.4666666667,19.1,45.7,11.69,18.19,19.7,32.8633333333,22.2,37.6266666667,19.79,39.79,11.0666666667,756.0333333333,57.6666666667,4.3333333333,40,2.9,22.4797098432,22.4797098432 -70,0,22.1,37.1633333333,21,36.76,22.2,36.26,21.5,35.5,19.2,45.9633333333,11.63,18.1233333333,19.7,32.79,22.2,37.6266666667,19.79,39.79,10.95,756,58.5,4.5,40,3,42.7417261526,42.7417261526 -80,0,22.1,37.09,21,36.76,22.2,36.2,21.5,35.4333333333,19.2,46.1633333333,11.7566666667,19.0333333333,19.7,32.7233333333,22.2,37.59,19.79,39.79,10.8333333333,755.9666666667,59.3333333333,4.6666666667,40,3.1,37.5959147234,37.5959147234 -90,0,22.1,37.03,21,36.7,22.2,36.2,21.4633333333,35.2233333333,19.23,46.0266666667,12.03,18.6266666667,19.7,32.53,22.26,37.7233333333,19.79,39.6633333333,10.7166666667,755.9333333333,60.1666666667,4.8333333333,40,3.2,18.7272629817,18.7272629817 -100,0,22.1,36.9,20.84,36.545,22.2,36.2,21.39,35.03,19.29,45.7666666667,12,17.4,19.6666666667,32.2966666667,22.3233333333,37.9,19.79,39.59,10.6,755.9,61,5,40,3.3,30.470474402,30.470474402 -100,0,22.0666666667,36.7233333333,20.79,36.5,22.1,36.09,21.39,34.8633333333,19.29,45.43,11.42,18.195,19.6,32.03,22.4633333333,37.9666666667,19.79,39.56,10.2666666667,755.9333333333,63.1666666667,4.8333333333,37.8333333333,3.4333333333,39.6387327579,39.6387327579 -120,0,22,36.6633333333,20.73,36.5,22.1,36.09,21.39,34.79,19.29,45.1566666667,10.96,19.9266666667,19.6,31.89,22.6333333333,38,19.79,39.5,9.9333333333,755.9666666667,65.3333333333,4.6666666667,35.6666666667,3.5666666667,19.333994668,19.333994668 -110,0,22,37.3666666667,20.6,36.4,22.1,35.9666666667,21.3566666667,34.7,19.2,44.76,10.66,21.83,19.6,31.8233333333,22.76,38,19.79,39.3633333333,9.6,756,67.5,4.5,33.5,3.7,6.207648234,6.207648234 -320,0,22,37.5666666667,20.6,36.4666666667,22.1,35.8266666667,21.29,34.6266666667,19.2,44.6266666667,10.46,22.9566666667,19.6,31.79,22.79,38,19.79,39.29,9.2666666667,756.0333333333,69.6666666667,4.3333333333,31.3333333333,3.8333333333,13.3774828399,13.3774828399 -620,0,22,37.3,20.6,36.59,22.1,35.79,21.29,34.59,19.2,44.4666666667,10.03,25.9566666667,19.6,31.79,22.89,38.09,19.79,39.29,8.9333333333,756.0666666667,71.8333333333,4.1666666667,29.1666666667,3.9666666667,26.0636980645,26.0636980645 -450,0,22.0666666667,40.5,20.6,36.7966666667,22.1666666667,35.79,21.29,34.59,19.2,44.3266666667,9.6966666667,28.3566666667,19.6,31.89,22.9633333333,38.09,19.79,39.26,8.6,756.1,74,4,27,4.1,29.5052188681,29.5052188681 -240,0,22.23,48.9666666667,20.7,38.26,22.2,36.79,21.26,34.59,19.2,44.4633333333,9.3233333333,30.9,19.6,31.995,23,38.2,19.79,39.26,8.25,756.1,75.5,3.8333333333,26.6666666667,4.05,44.327135908,44.327135908 -100,10,22.3566666667,46.4333333333,20.76,39.7333333333,22.29,38,21.2,34.59,19.2,44.9233333333,8.99,32.96,19.6,32.09,23.0666666667,38.2,19.79,39.29,7.9,756.1,77,3.6666666667,26.3333333333,4,16.4390890044,16.4390890044 -120,10,22.5,44.6966666667,20.89,40.59,22.29,38.26,21.2,34.6633333333,19.2,45.53,8.6266666667,35.0933333333,19.6,32.23,23.0333333333,37.9,19.79,39.29,7.55,756.1,78.5,3.5,26,3.95,20.2137696324,20.2137696324 -130,0,22.5,43.5566666667,20.89,40.59,22.3233333333,38.3266666667,21.1666666667,34.73,19.26,45.99,8.3666666667,37.5666666667,19.5333333333,32.3633333333,23.1,37.9666666667,19.79,39.29,7.2,756.1,80,3.3333333333,25.6666666667,3.9,2.3507177131,2.3507177131 -140,20,22.5333333333,42.1966666667,20.9266666667,40.59,22.39,38.4,21.1666666667,34.79,19.29,46.245,8.0666666667,40.6333333333,19.6,32.59,23.1333333333,38.1266666667,19.79,39.29,6.85,756.1,81.5,3.1666666667,25.3333333333,3.85,24.026605743,24.026605743 -140,20,22.6,41.2566666667,21,40.53,22.39,38.3333333333,21.1333333333,35.2333333333,19.3333333333,52.1333333333,7.9333333333,42.6333333333,19.6,32.6633333333,23.2,38.26,19.79,39.2,6.5,756.1,83,3,25,3.8,37.4114539823,37.4114539823 -160,30,22.6,40.3333333333,21.1,40.06,22.4633333333,38.2,21.2,36.0933333333,19.7933333333,63.06,7.6566666667,45.2233333333,19.5333333333,32.7,23.23,38.36,19.79,39.26,6.4166666667,756.1166666667,83.1666666667,2.6666666667,24.5,3.75,22.1824179636,22.1824179636 -110,20,22.6666666667,40.1333333333,21.1,40.2666666667,22.5,38,21.3233333333,37.1666666667,20.0333333333,53.13,7.53,47.09,19.6,32.76,23.29,38.56,19.79,39.1333333333,6.3333333333,756.1333333333,83.3333333333,2.3333333333,24,3.7,23.4231084818,23.4231084818 -120,30,22.73,40.0266666667,21.1,40.3633333333,22.5666666667,38,21.39,37.6933333333,20.2266666667,57.13,7.2633333333,48.89,19.6,33.3633333333,23.29,38.73,19.79,38.86,6.25,756.15,83.5,2,23.5,3.65,36.5696573514,36.5696573514 -130,20,22.79,39.6933333333,21.1666666667,40.0966666667,22.6,37.9666666667,21.5,38.0666666667,20.7266666667,72.9666666667,7.1233333333,50.6966666667,19.6,33.43,23.29,38.8633333333,19.79,38.6633333333,6.1666666667,756.1666666667,83.6666666667,1.6666666667,23,3.6,14.6623318782,14.6623318782 -140,20,22.8233333333,39.5666666667,21.2,40,22.6666666667,37.9666666667,21.5666666667,38.26,20.6,60.2933333333,6.83,52.1233333333,19.6333333333,34.3666666667,23.3233333333,38.9,19.79,38.53,6.0833333333,756.1833333333,83.8333333333,1.3333333333,22.5,3.55,8.1790483091,8.1790483091 -130,20,22.89,39.6266666667,21.2,40.2,22.7,38,21.6333333333,38.4633333333,20.73,52.0966666667,6.6233333333,52.93,19.76,34.9,23.4633333333,38.9,19.79,38.4,6,756.2,84,1,22,3.5,25.193014252,25.193014252 -150,0,22.89,39.5266666667,21.23,40.1266666667,22.7,38,21.7,38.59,20.73,49.1566666667,6.4,54.395,19.79,35.1266666667,23.5,38.9,19.73,38.3266666667,5.8333333333,756.1833333333,85,1,28.8333333333,3.4833333333,9.608298284,9.608298284 -140,10,22.9725,39.2675,21.29,40.0425,22.7,38,21.7,38.4666666667,21.2333333333,74.6,6.06,55.9,19.79,35.26,23.5,38.9,19.7,38.2,5.6666666667,756.1666666667,86,1,35.6666666667,3.4666666667,16.0636966117,16.0636966117 -130,0,23,39.03,21.29,39.79,22.7,37.9333333333,21.7,38.2666666667,21.36,75.9933333333,5.8666666667,56.7,19.79,35.4,23.5,38.9,19.76,38.1266666667,5.5,756.15,87,1,42.5,3.45,1.4866467449,1.4866467449 -120,0,23.0333333333,38.76,21.29,39.7233333333,22.6666666667,37.8633333333,21.7,38.09,21.0666666667,73.5666666667,5.6266666667,59,19.79,35.4666666667,23.5666666667,38.8266666667,19.7,38.06,5.3333333333,756.1333333333,88,1,49.3333333333,3.4333333333,43.4990316047,43.4990316047 -110,0,23.0333333333,38.6266666667,21.23,39.53,22.5333333333,37.79,21.6333333333,37.9633333333,20.86,71.9666666667,5.56,60.7333333333,19.79,35.43,23.6,38.79,19.7,37.925,5.1666666667,756.1166666667,89,1,56.1666666667,3.4166666667,32.3583482532,32.3583482532 -80,0,23.1,38.5266666667,21.2,39.3633333333,22.39,37.7,21.6,37.79,20.7,69.8966666667,5.4666666667,62.3633333333,19.79,35.29,23.6,38.73,19.7,37.8266666667,5,756.1,90,1,63,3.4,15.9403440775,15.9403440775 -60,0,23.0333333333,38.2666666667,21.1333333333,39.29,22.39,37.7,21.6,37.73,20.6333333333,68.03,5.4,63.9633333333,19.79,35.1633333333,23.7,38.79,19.7,37.76,5.1333333333,756.1166666667,90.6666666667,1.5,62.6666666667,3.65,14.6741104429,14.6741104429 -40,10,23,38.09,21.0666666667,39.23,22.3566666667,37.59,21.6,37.73,20.5,64.8633333333,5.4666666667,64.8,19.79,35.09,23.6,39.1,19.6333333333,37.6266666667,5.2666666667,756.1333333333,91.3333333333,2,62.3333333333,3.9,33.4548612009,33.4548612009 -40,0,23,38.1633333333,21,39.3633333333,22.2225,37.59,21.575,37.79,20.5,59.4566666667,5.3333333333,65.4666666667,19.79,35.09,23.6,39.7666666667,19.7,38.0666666667,5.4,756.15,92,2.5,62,4.15,20.3840495902,20.3840495902 -50,0,23,38.23,20.8566666667,39.7666666667,22.2,37.59,21.5,37.79,20.6,53.8,5.3,66.6666666667,19.79,35.2666666667,23.6,40.3,19.76,38.5266666667,5.5333333333,756.1666666667,92.6666666667,3,61.6666666667,4.4,33.188181743,33.188181743 -70,0,22.9266666667,38.3633333333,20.79,40.1,22.1666666667,37.59,21.39,37.7,20.6666666667,51.4666666667,5.3666666667,67.46,19.79,35.4666666667,23.6,40.6333333333,19.7,38.73,5.6666666667,756.1833333333,93.3333333333,3.5,61.3333333333,4.65,2.4839273421,2.4839273421 -60,0,22.89,38.4333333333,20.6666666667,40.4333333333,22.1,37.59,21.39,37.6266666667,20.65,49.5,5.53,67.9633333333,19.79,35.73,23.5333333333,41.0966666667,19.7,38.8633333333,5.8,756.2,94,4,61,4.9,24.7766607907,24.7766607907 -50,0,22.89,38.56,20.6,40.6333333333,22.1,37.59,21.3566666667,37.59,20.7,48.3,5.6566666667,68.09,19.79,35.8633333333,23.6,41.29,19.73,39.09,5.7833333333,756.1916666667,93.9166666667,3.8333333333,61.0833333333,4.8666666667,39.2561562592,39.2561562592 -40,0,22.79,38.6266666667,20.5,40.9333333333,22.1,37.59,21.29,37.53,20.7,47.5666666667,5.7266666667,68.16,19.79,36.0666666667,23.5,41.23,19.79,39.1633333333,5.7666666667,756.1833333333,93.8333333333,3.6666666667,61.1666666667,4.8333333333,45.3116831603,45.3116831603 -60,0,22.79,38.7,20.4266666667,41.06,22.1,37.59,21.29,37.5,20.6333333333,46.7966666667,5.8666666667,68.4333333333,19.79,36.26,23.5,41.43,19.7,39.29,5.75,756.175,93.75,3.5,61.25,4.8,1.049839193,1.049839193 -50,0,22.76,38.73,20.29,41.3266666667,22.1,37.59,21.29,37.5,20.7,46.39,5.9,68.2266666667,19.8233333333,36.4633333333,23.4633333333,41.4666666667,19.7,39.29,5.7333333333,756.1666666667,93.6666666667,3.3333333333,61.3333333333,4.7666666667,8.1431646831,8.1431646831 -60,0,22.7,38.79,20.29,41.4666666667,22.1,37.59,21.26,37.4666666667,20.6,45.8333333333,5.975,68.3475,19.8233333333,36.59,23.3233333333,41.4,19.76,39.29,5.7166666667,756.1583333333,93.5833333333,3.1666666667,61.4166666667,4.7333333333,32.7453562873,32.7453562873 -60,0,22.7,38.79,20.1666666667,41.53,22.1,37.59,21.2,37.4,20.6,45.5,6.06,68.09,19.89,36.7,23.2,41.3266666667,19.7,39.29,5.7,756.15,93.5,3,61.5,4.7,44.3742163246,44.3742163246 -60,0,22.7,38.79,20.1,41.59,22.1,37.6633333333,21.2,37.29,20.6,45.1333333333,6.09,67.7,19.89,36.7,23.2,41.4666666667,19.7,39.5,5.6833333333,756.1416666667,93.4166666667,2.8333333333,61.5833333333,4.6666666667,46.2716586306,46.2716586306 -50,0,22.6,38.79,20.0666666667,41.7,22.1,37.59,21.1333333333,37.29,20.6,44.86,6.09,67.2933333333,19.8233333333,36.86,23.1666666667,41.6566666667,19.76,39.56,5.6666666667,756.1333333333,93.3333333333,2.6666666667,61.6666666667,4.6333333333,22.4410695257,22.4410695257 -50,0,22.6,38.79,19.9725,41.7,22.1,37.59,21.1,37.29,20.6,44.56,6.09,66.83,19.89,37.06,23.1,41.99,19.7,39.6266666667,5.65,756.125,93.25,2.5,61.75,4.6,1.9901194726,1.9901194726 -50,0,22.55,38.79,19.89,41.76,22.1,37.59,21.1,37.29,20.6,44.4333333333,6.09,66.5633333333,19.9266666667,37.23,23.1,42.23,19.7,39.76,5.6333333333,756.1166666667,93.1666666667,2.3333333333,61.8333333333,4.5666666667,33.052349498,33.052349498 -50,0,22.5,38.79,19.8566666667,41.79,22.1,37.59,21.0666666667,37.2233333333,20.5,44.1633333333,6.09,65.9566666667,19.9266666667,37.29,23.0333333333,42.23,19.7,39.8266666667,5.6166666667,756.1083333333,93.0833333333,2.1666666667,61.9166666667,4.5333333333,8.7021138053,8.7021138053 -50,0,22.5,38.79,19.79,41.79,22.1,37.6633333333,21,37.09,20.5,43.9633333333,6.03,65.6233333333,19.9266666667,37.29,23,42.4633333333,19.7225,39.975,5.6,756.1,93,2,62,4.5,1.334471663,1.334471663 -40,0,22.4633333333,38.79,19.7,41.9,22.1333333333,37.7,21,37.09,20.5,43.79,6,65.6566666667,20,37.29,23,42.6633333333,19.79,40.06,5.5666666667,756.0666666667,93.3333333333,2,62,4.5166666667,31.3296868932,31.3296868932 -60,0,22.39,38.79,19.7,41.9666666667,22.2,37.76,21,37.09,20.5,43.73,6,65.53,19.9266666667,37.29,23,42.79,19.76,40.23,5.5333333333,756.0333333333,93.6666666667,2,62,4.5333333333,1.5786371543,1.5786371543 -60,0,22.39,38.79,19.6666666667,42,22.23,37.8266666667,21,37.09,20.5,43.56,6,65.4,20,37.3725,22.9725,42.79,19.76,40.3633333333,5.5,756,94,2,62,4.55,5.7405122207,5.7405122207 -50,0,22.3233333333,38.79,19.6,42,22.29,37.9,21,37.09,20.5,43.5,6,65.4,20,37.4,22.89,42.79,19.79,40.5666666667,5.4666666667,755.9666666667,94.3333333333,2,62,4.5666666667,47.5839626859,47.5839626859 -60,0,22.29,38.79,19.5,42.09,22.29,37.9,20.9266666667,37.09,20.39,43.26,6,65.2266666667,19.89,37.3633333333,22.89,42.8266666667,19.79,40.7,5.4333333333,755.9333333333,94.6666666667,2,62,4.5833333333,47.7712598629,47.7712598629 -50,0,22.29,38.79,19.5,42.1633333333,22.3233333333,37.9333333333,20.89,37.09,20.39,43.1266666667,5.9333333333,65.16,19.9633333333,37.29,22.89,42.9666666667,19.79,40.8266666667,5.4,755.9,95,2,62,4.6,30.4811696173,30.4811696173 -40,0,22.26,38.76,19.5,42.2,22.39,37.9333333333,20.89,37.03,20.39,43.09,5.5933333333,64.5633333333,20,37.2,22.8566666667,43.03,19.79,40.9666666667,5.35,755.8833333333,95,2,60.3333333333,4.55,5.2350329934,5.2350329934 -30,0,22.2,38.7,19.5,42.26,22.39,38,20.89,37,20.39,43.0675,5.3333333333,65.23,20,37.2,22.79,43.03,19.79,41,5.3,755.8666666667,95,2,58.6666666667,4.5,34.6073328867,34.6073328867 -20,0,22.2,38.7,19.39,42.23,22.39,38,20.89,37,20.39,42.9333333333,5.09,66.46,19.89,37.2,22.79,43.1566666667,19.79,41.06,5.25,755.85,95,2,57,4.45,44.5843536174,44.5843536174 -40,0,22.2,38.7,19.3233333333,42.23,22.3566666667,38,20.8566666667,36.9666666667,20.39,42.9,5.1925,67.45,19.9633333333,37.26,22.79,43.43,19.79,41.09,5.2,755.8333333333,95,2,55.3333333333,4.4,36.870943848,36.870943848 -40,0,22.1666666667,38.7,19.29,42.3266666667,22.29,38,20.79,36.9,20.39,42.8266666667,5.4333333333,68.06,20,37.4,22.79,43.73,19.79,41.1633333333,5.15,755.8166666667,95,2,53.6666666667,4.35,16.5803795564,16.5803795564 -60,0,22.1,38.7,19.29,42.4,22.29,38,20.79,36.9,20.39,42.79,5.5,68.09,20,37.4,22.79,43.93,19.79,41.23,5.1,755.8,95,2,52,4.3,31.1423654319,31.1423654319 -60,0,22.1,38.7,19.2,42.29,22.29,38,20.79,36.9,20.3233333333,42.73,5.5,68.03,20,37.4333333333,22.7,44.0666666667,19.79,41.29,5.0833333333,755.8,95,2,50.3333333333,4.3,38.2676641573,38.2676641573 -50,0,22.0333333333,38.6266666667,19.2,42.3633333333,22.3233333333,38.09,20.79,36.9,20.3233333333,42.7,5.59,67.8666666667,20,37.6333333333,22.7,44.2,19.79,41.4,5.0666666667,755.8,95,2,48.6666666667,4.3,3.882365895,3.882365895 -40,0,22,38.6266666667,19.1666666667,42.4,22.39,38.09,20.79,36.9,20.39,42.6266666667,5.59,67.66,20,37.7,22.7,44.2,19.79,41.4,5.05,755.8,95,2,47,4.3,32.533442264,32.533442264 -60,0,22,38.7,19.15,42.475,22.29,38.09,20.79,36.9,20.29,42.59,5.59,67.4333333333,20,37.7,22.7,44.2,19.79,41.4333333333,5.0333333333,755.8,95,2,45.3333333333,4.3,19.7615344659,19.7615344659 -40,0,22,38.6266666667,19.1,42.5,22.29,38.03,20.73,36.9,20.29,42.59,5.59,67.16,20,37.7,22.7,44.23,19.79,41.5,5.0166666667,755.8,95,2,43.6666666667,4.3,39.0562737593,39.0562737593 -50,0,21.9175,38.7,19.1,42.5,22.39,38.09,20.7,36.9,20.29,42.59,5.59,67.09,20,37.76,22.6333333333,44.23,19.79,41.5,5,755.8,95,2,42,4.3,31.3423191896,31.3423191896 -50,0,21.89,38.7,19.0333333333,42.5,22.39,38.09,20.7,36.9,20.29,42.53,5.59,67.09,20,37.79,22.6,44.29,19.79,41.5,5.0333333333,755.8,95,2,40.6666666667,4.3333333333,0.764770899,0.764770899 -50,0,21.89,38.7,19.1,42.5,22.39,38.09,20.7,36.9,20.29,42.5,5.59,66.9666666667,20,37.73,22.6,44.29,19.79,41.5,5.0666666667,755.8,95,2,39.3333333333,4.3666666667,45.8374026581,45.8374026581 -60,0,21.8233333333,38.6266666667,19.0333333333,42.4333333333,22.39,38.09,20.7,36.9,20.29,42.4333333333,5.59,66.8333333333,20,37.7,22.6,44.29,19.79,41.53,5.1,755.8,95,2,38,4.4,6.668137596,6.668137596 -60,0,21.79,38.7,19,42.4333333333,22.39,38.1266666667,20.6666666667,36.8633333333,20.2,42.29,5.59,67.0633333333,20,37.7,22.6,44.29,19.79,41.59,5.1333333333,755.8,95,2,36.6666666667,4.4333333333,3.9959370857,3.9959370857 -50,0,21.79,38.7,19,42.5,22.39,38.2,20.65,36.845,20.2,42.29,5.59,67.33,20,37.7,22.6,44.2,19.79,41.59,5.1666666667,755.8,95,2,35.3333333333,4.4666666667,10.9838044737,10.9838044737 -50,0,21.79,38.7,18.89,42.53,22.39,38.2,20.6,36.79,20.2,42.29,5.59,67.4,20,37.7,22.5,44.09,19.79,41.6633333333,5.2,755.8,95,2,34,4.5,0.3562740283,0.3562740283 -50,0,21.79,38.7,18.89,42.53,22.39,38.2,20.6,36.79,20.2,42.2,5.6566666667,67.4,20,37.7,22.5,44.09,19.79,41.7,5.2166666667,755.8,95,2,33.8333333333,4.5166666667,41.0822843667,41.0822843667 -40,0,21.76,38.76,18.9633333333,42.5,22.39,38.2,20.6,36.79,20.2,42.2,5.69,67.4,20,37.7,22.5,44.06,19.79,41.7,5.2333333333,755.8,95,2,33.6666666667,4.5333333333,5.6975638494,5.6975638494 -50,0,21.7,38.76,18.89,42.56,22.39,38.2,20.6,36.79,20.2,42.2,5.69,67.325,20,37.76,22.5,44,19.79,41.7,5.25,755.8,95,2,33.5,4.55,15.6484971754,15.6484971754 -50,0,21.7,38.73,18.89,42.59,22.39,38.2,20.6,36.79,20.2,42.2,5.7633333333,67.3,20.0666666667,38.09,22.4633333333,43.8633333333,19.79,41.76,5.2666666667,755.8,95,2,33.3333333333,4.5666666667,4.5440290472,4.5440290472 -60,0,21.7,38.79,18.89,42.59,22.39,38.23,20.5666666667,36.79,20.2,42.1266666667,5.7266666667,67.3333333333,20,38.09,22.39,43.73,19.79,41.79,5.2833333333,755.8,95,2,33.1666666667,4.5833333333,48.6356441397,48.6356441397 -60,0,21.7,38.79,18.79,42.56,22.39,38.23,20.5666666667,36.79,20.2,42.09,5.8,67.4666666667,20.1,38.26,22.4633333333,43.76,19.79,41.8633333333,5.3,755.8,95,2,33,4.6,42.6337068086,42.6337068086 -80,0,21.6333333333,38.79,18.79,42.56,22.39,38.2,20.5,36.8266666667,20.2,42.1633333333,5.8,67.59,20.0333333333,38.1266666667,22.39,43.76,19.8233333333,41.9333333333,5.3,755.85,95.3333333333,2,32.6666666667,4.6333333333,24.9496649485,24.9496649485 -40,0,21.6,39.0666666667,18.79,42.7666666667,22.39,38.1266666667,20.5,36.9,20.1,42.8666666667,5.8,67.6566666667,20.0666666667,37.9666666667,22.39,43.79,19.8233333333,41.9333333333,5.3,755.9,95.6666666667,2,32.3333333333,4.6666666667,13.7201848906,13.7201848906 -290,10,21.6,39.4,18.79,43.0266666667,22.29,38.06,20.5,36.9,20.0333333333,43.4,5.7633333333,67.7266666667,20,37.9666666667,22.39,43.79,19.79,41.9,5.3,755.95,96,2,32,4.7,14.5856951014,14.5856951014 -130,0,21.6,39.4666666667,18.76,43.3266666667,22.29,38,20.5,36.9,20,44,5.7633333333,67.8,20.0333333333,38.03,22.3233333333,43.79,19.79,41.9,5.3,756,96.3333333333,2,31.6666666667,4.7333333333,2.6805120171,2.6805120171 -330,0,21.6,39.4,18.745,43.475,22.29,37.9666666667,20.5,36.9,20,44.4,5.7266666667,67.9333333333,20.1,38.2233333333,22.39,43.79,19.8233333333,42.03,5.3,756.05,96.6666666667,2,31.3333333333,4.7666666667,48.5227449914,48.5227449914 -80,0,21.6,39.4,18.7,43.56,22.23,37.9,20.5,36.9,20,44.86,5.7266666667,68,20.1,38.6933333333,22.29,43.9,19.8233333333,41.9633333333,5.3,756.1,97,2,31,4.8,28.8505034172,28.8505034172 -280,0,21.525,39.475,18.7,43.6566666667,22.2,37.8633333333,20.4633333333,36.8633333333,19.9175,45.15,5.8,68.1233333333,20.1666666667,38.8266666667,22.3566666667,44.0266666667,19.8566666667,42.1333333333,5.3833333333,756.1,97,2.1666666667,33.5,4.8833333333,24.9053202919,24.9053202919 -150,0,21.5,39.7,18.7,43.79,22.2,37.79,20.4633333333,36.8633333333,19.89,44.6966666667,5.8,68.19,20.1666666667,38.6633333333,22.29,43.8333333333,19.79,41.925,5.4666666667,756.1,97,2.3333333333,36,4.9666666667,34.1468737228,34.1468737228 -60,0,21.6,40,18.7,43.9333333333,22.1,37.9,20.5,36.9333333333,19.9633333333,44.0966666667,5.8333333333,68.3,20.1,38.59,22.29,43.4266666667,19.79,41.8266666667,5.55,756.1,97,2.5,38.5,5.05,27.4764454225,27.4764454225 -70,0,21.5333333333,40,18.7,44.06,22.1,37.9,20.4266666667,36.9333333333,20,43.8333333333,5.9666666667,68.3,20.1,38.3333333333,22.26,42.8633333333,19.79,41.7,5.6333333333,756.1,97,2.6666666667,41,5.1333333333,24.4473305065,24.4473305065 -50,0,21.5,40.03,18.7,44.06,22.1,37.9,20.39,36.9,20,43.6266666667,6.1233333333,68.53,20.1,37.9975,22.2,42.4633333333,19.79,41.6266666667,5.7166666667,756.1,97,2.8333333333,43.5,5.2166666667,28.8752342458,28.8752342458 -110,0,21.5,40.03,18.76,44,22.1,37.9,20.39,36.9,20,43.4666666667,6.2633333333,68.73,20.1,37.73,22.1666666667,42.1633333333,19.79,41.56,5.8,756.1,97,3,46,5.3,41.9859071961,41.9859071961 -410,0,21.5,39.9666666667,18.79,43.9666666667,22.1,37.9,20.39,36.9666666667,20,43.3266666667,6.3333333333,68.7566666667,20.1,37.4666666667,22.1,41.9975,19.79,41.4333333333,5.9166666667,756.1166666667,96.3333333333,2.8333333333,48.1666666667,5.3333333333,2.8097431059,2.8097431059 -160,0,21.5,39.9,18.79,43.9,22.1,37.9666666667,20.5966666667,37.4333333333,20,43.2,6.4975,69.165,20.1,37.3266666667,22.1,41.7666666667,19.79,41.3633333333,6.0333333333,756.1333333333,95.6666666667,2.6666666667,50.3333333333,5.3666666667,39.978568058,39.978568058 -70,0,21.5,39.9,18.8233333333,43.8266666667,22.1,37.9,20.9966666667,37.5,20,43.1266666667,6.6566666667,69.1233333333,20.1,37.1633333333,22.1,41.6633333333,19.79,41.23,6.15,756.15,95,2.5,52.5,5.4,17.4983538105,17.4983538105 -80,10,21.5666666667,39.8266666667,18.89,43.9,22.1,38,21.2,37.53,20.1333333333,45.3633333333,6.8666666667,68.73,20.0333333333,37.03,22.0333333333,41.59,19.76,41.1633333333,6.2666666667,756.1666666667,94.3333333333,2.3333333333,54.6666666667,5.4333333333,12.0211607427,12.0211607427 -60,0,21.6,39.7,18.89,43.8266666667,22.1,37.9333333333,21.2,37.7233333333,20.2,47.9425,7.06,68.53,20.1,36.9666666667,22.0666666667,41.7,19.76,41.09,6.3833333333,756.1833333333,93.6666666667,2.1666666667,56.8333333333,5.4666666667,23.2701063273,23.2701063273 -100,0,21.6,39.76,18.89,43.9,22.1,37.9,21.2,38.03,20.2,47.7666666667,7.16,67.6266666667,20.0333333333,36.8266666667,22,41.7,19.79,41,6.5,756.2,93,2,59,5.5,29.027442832,29.027442832 -80,0,21.6,39.79,18.9633333333,44,22.1,37.9,21.2,38.1633333333,20.1,47.86,7.3666666667,67.2933333333,20,36.9966666667,22,41.79,19.79,40.9333333333,6.65,756.1833333333,92.3333333333,2.1666666667,59.8333333333,5.5333333333,12.0021344628,12.0021344628 -60,10,21.6,39.79,18.9633333333,44.06,22.1,37.9,21.2,38.3266666667,20.0333333333,48.06,7.66,66.63,20.0666666667,37.59,22,41.79,19.79,40.8633333333,6.8,756.1666666667,91.6666666667,2.3333333333,60.6666666667,5.5666666667,9.3162140343,9.3162140343 -80,0,21.6,40.03,19.0333333333,44.3,22.1,37.9,21.2,38.4666666667,20,48.39,7.8666666667,65.4233333333,20.1,37.4666666667,21.89,41.9633333333,19.73,40.79,6.95,756.15,91,2.5,61.5,5.6,34.8357768264,34.8357768264 -60,0,21.6666666667,40.2233333333,19.1,44.8333333333,22.1,37.9333333333,21.2,38.6266666667,19.9266666667,48.59,8.13,63.36,20.0333333333,37.3266666667,21.89,42.1633333333,19.76,40.76,7.1,756.1333333333,90.3333333333,2.6666666667,62.3333333333,5.6333333333,47.3174563143,47.3174563143 -60,0,21.7,40.53,19.2,45.3266666667,22.1,38,21.2,38.76,19.9633333333,48.7,8.3233333333,61.5,20,37.1633333333,21.89,42.2,19.7,40.7,7.25,756.1166666667,89.6666666667,2.8333333333,63.1666666667,5.6666666667,22.5988897262,22.5988897262 -80,0,21.7,40.7966666667,19.2675,46.0675,22.1,38.09,21.2,39,19.89,48.7,8.7566666667,59.29,20,37.03,21.89,42.1266666667,19.7,40.6633333333,7.4,756.1,89,3,64,5.7,12.3053378542,12.3053378542 -100,0,21.7,41.1266666667,19.3566666667,46.23,22.1,38.1633333333,21.2,39.06,19.89,48.6633333333,9.03,57.49,20.0666666667,36.93,21.89,42.09,19.76,40.59,7.5166666667,756.1166666667,88,3.1666666667,57.3333333333,5.6333333333,9.8499766202,9.8499766202 -80,0,21.76,41.2,19.39,46.2633333333,22.1,38.23,21.2,39.1566666667,19.89,48.59,9.2566666667,55.0966666667,20,36.79,21.89,42.09,19.7,40.59,7.6333333333,756.1333333333,87,3.3333333333,50.6666666667,5.5666666667,41.0041957861,41.0041957861 -110,0,21.745,41.395,19.4633333333,46.79,22.1666666667,38.3633333333,21.2,39.29,19.89,48.59,9.53,53.0966666667,20,36.7,21.79,42,19.745,40.5225,7.75,756.15,86,3.5,44,5.5,35.5951169739,35.5951169739 -60,0,21.79,41.7266666667,19.6,46.26,22.2,38.5,21.2,39.4,19.89,48.59,9.7266666667,49.7666666667,20,36.6266666667,21.79,42,19.7,40.4333333333,7.8666666667,756.1666666667,85,3.6666666667,37.3333333333,5.4333333333,22.0948972274,22.0948972274 -40,0,21.79,41.9333333333,19.6,46.3333333333,22.2,38.5,21.2,39.4666666667,19.79,48.5,9.6666666667,47.9666666667,20,36.5,21.79,42,19.73,40.4,7.9833333333,756.1833333333,84,3.8333333333,30.6666666667,5.3666666667,4.2440404533,4.2440404533 -40,0,21.79,42.36,19.6333333333,46.4566666667,22.2,38.59,21.2,39.53,19.79,48.5,9.6966666667,47.5,20,36.3975,21.79,42.06,19.73,40.3266666667,8.1,756.2,83,4,24,5.3,11.0865481198,11.0865481198 -60,0,21.79,43.6933333333,19.7,46.99,22.2,38.6633333333,21.2675,39.59,19.79,48.5,10.09,45.3,20,36.23,21.79,42,19.73,40.2233333333,8.25,756.2166666667,81.6666666667,4,26.6666666667,5.2166666667,9.3255375163,9.3255375163 -70,0,21.89,44.63,19.79,46.7233333333,22.2,38.995,21.29,39.59,19.79,48.5,10.245,42.94,19.9633333333,36.06,21.73,41.86,19.73,39.9633333333,8.4,756.2333333333,80.3333333333,4,29.3333333333,5.1333333333,24.2359092808,24.2359092808 -90,20,21.89,43.89,19.73,46.4633333333,22.1,39.2666666667,21.23,39.4333333333,19.79,48.4,10.0666666667,41.1933333333,19.89,35.86,21.79,41.49,19.73,39.76,8.55,756.25,79,4,32,5.05,18.7338982127,18.7338982127 -100,20,21.89,43.1233333333,19.7,45.9,22.1,39.5266666667,21.29,39.6333333333,19.79,48.3266666667,10,40.8,19.9633333333,35.6633333333,21.7675,41.195,19.73,39.6266666667,8.7,756.2666666667,77.6666666667,4,34.6666666667,4.9666666667,35.4598154197,35.4598154197 -100,10,21.89,42.53,19.76,45.2933333333,22.1,39.56,21.3233333333,40.23,19.79,48.1333333333,10.16,39.9633333333,19.89,35.53,21.7,40.9633333333,19.79,39.43,8.85,756.2833333333,76.3333333333,4,37.3333333333,4.8833333333,26.5009849798,26.5009849798 -50,0,21.89,41.93,19.79,44.49,22.1,39.4333333333,21.39,40.5633333333,19.79,47.9333333333,10.1,38.7566666667,19.89,35.26,21.7,40.7233333333,19.79,39.29,9,756.3,75,4,40,4.8,20.7360336208,20.7360336208 -50,0,21.89,41.6566666667,19.79,44.1566666667,22.1,39.4633333333,21.39,40.7966666667,19.745,47.645,10,37.8333333333,19.89,35.1266666667,21.7,40.53,19.7,39.26,9.0166666667,756.2833333333,74.6666666667,4.1666666667,40,4.7333333333,14.3156820908,14.3156820908 -50,0,21.8566666667,41.2333333333,19.79,43.7666666667,22.1,39.59,21.3233333333,40.39,19.7,47.43,10.0666666667,37.6266666667,19.89,35,21.7,40.3633333333,19.7,39.1266666667,9.0333333333,756.2666666667,74.3333333333,4.3333333333,40,4.6666666667,29.1084855446,29.1084855446 -50,0,21.8566666667,40.6933333333,19.79,43.1666666667,22.1,39.5266666667,21.29,39.9,19.7,47.1566666667,10.1,37.8,19.89,34.9333333333,21.7,40.23,19.7,38.8633333333,9.05,756.25,74,4.5,40,4.6,1.9547094824,1.9547094824 -50,0,21.79,40.2233333333,19.76,42.6933333333,22.1,39.4,21.29,39.4266666667,19.7,46.9666666667,10.1,36.4666666667,19.8233333333,34.7,21.6666666667,39.99,19.7,38.79,9.0666666667,756.2333333333,73.6666666667,4.6666666667,40,4.5333333333,20.2266430715,20.2266430715 -50,0,21.79,39.89,19.7,42.36,22.1,39.2233333333,21.23,38.9666666667,19.7,46.7666666667,10.13,36.3933333333,19.8233333333,34.5666666667,21.6,39.73,19.7,38.6633333333,9.0833333333,756.2166666667,73.3333333333,4.8333333333,40,4.4666666667,22.6812232635,22.6812232635 -50,0,21.79,39.6333333333,19.7,41.99,22.1,39.09,21.23,38.6933333333,19.7,46.43,10.2633333333,36.1333333333,19.79,34.4,21.6,39.6266666667,19.7,38.53,9.1,756.2,73,5,40,4.4,35.2743210853,35.2743210853 -60,0,21.79,39.4333333333,19.7,41.73,22.1,38.9666666667,21.2,38.3633333333,19.7,46.23,10.16,36.7566666667,19.79,34.3266666667,21.6,39.6266666667,19.7,38.5,9.05,756.2,74,4.8333333333,40,4.5666666667,44.3400363438,44.3400363438 -60,0,21.79,39.1633333333,19.7,41.495,22.1,38.8266666667,21.1333333333,38.23,19.7,46.06,9.96,37.4233333333,19.79,34.29,21.6,39.5,19.7,38.4333333333,9,756.2,75,4.6666666667,40,4.7333333333,49.4417525013,49.4417525013 -60,0,21.79,39.03,19.6,41.26,22.1,38.7,21.1,38,19.6333333333,45.8,9.86,38.9233333333,19.79,34.29,21.5333333333,39.4333333333,19.7,38.3633333333,8.95,756.2,76,4.5,40,4.9,0.0357654761,0.0357654761 -80,0,21.7,38.845,19.6,41.2,22.1,38.6266666667,21.1,37.9333333333,19.6666666667,45.6333333333,9.6666666667,41.1966666667,19.79,34.29,21.5,39.4333333333,19.7,38.29,8.9,756.2,77,4.3333333333,40,5.0666666667,38.9750464354,38.9750464354 -90,0,21.7,38.79,19.6,41.1633333333,22.0666666667,38.4666666667,21,37.76,19.6666666667,45.5,9.6,43.6966666667,19.79,34.3633333333,21.5,39.6333333333,19.7,38.29,8.85,756.2,78,4.1666666667,40,5.2333333333,37.4546068371,37.4546068371 -90,0,21.7,38.73,19.6,41.03,22,38.4,21,37.7,19.6,45.26,9.7333333333,44.7633333333,19.79,34.4333333333,21.6333333333,39.8266666667,19.6666666667,38.26,8.8,756.2,79,4,40,5.4,20.6756010535,20.6756010535 -90,0,21.7,38.73,19.6,41,22,38.3633333333,21,37.7,19.6666666667,45.2,9.89,44.745,19.79,34.5675,21.7,39.9,19.6666666667,38.26,8.7666666667,756.1333333333,79,4.1666666667,40,5.35,42.7225655993,42.7225655993 -100,0,21.7,38.73,19.6,40.9333333333,22,38.29,20.9725,37.7,19.6,45,9.86,44.6666666667,19.79,34.6633333333,21.8233333333,39.9633333333,19.6666666667,38.26,8.7333333333,756.0666666667,79,4.3333333333,40,5.3,14.5234708092,14.5234708092 -100,0,21.6,38.59,19.5,41,22,38.29,20.89,37.7,19.6,45,9.7266666667,45.6666666667,19.79,34.7,21.89,40.1633333333,19.6,38.2,8.7,756,79,4.5,40,5.25,29.155820841,29.155820841 -90,0,21.6,38.59,19.5,41,22,38.2,20.89,37.7,19.6,44.8633333333,10.0566666667,45.3266666667,19.79,34.7,22.0333333333,40.23,19.6333333333,38.29,8.6666666667,755.9333333333,79,4.6666666667,40,5.2,45.0595579459,45.0595579459 -90,0,21.6,38.59,19.6,40.93,22,38.1266666667,20.89,37.7,19.6,44.73,10.53,42.9333333333,19.73,34.79,22.1,40.29,19.6333333333,38.23,8.6333333333,755.8666666667,79,4.8333333333,40,5.15,24.6199784218,24.6199784218 -60,0,21.6,38.59,19.6,40.73,22,38.06,20.8566666667,37.56,19.6,44.59,10.53,39.7,19.79,34.73,22.245,40.345,19.6666666667,38.26,8.6,755.8,79,5,40,5.1,36.2602226902,36.2602226902 -80,0,21.6,38.5,19.6,40.6266666667,22,38,20.79,37.5,19.6,44.59,10.33,39.5,19.79,34.7,22.29,40.4,19.6,38.2,8.55,755.8,80.1666666667,5,40,5.25,45.9885109216,45.9885109216 -60,0,21.6,38.5,19.6,40.6266666667,21.89,38,20.79,37.4,19.6,44.5,10.3,39.7,19.79,34.6266666667,22.3566666667,40.4,19.6,38.1633333333,8.5,755.8,81.3333333333,5,40,5.4,31.2162405346,31.2162405346 -70,0,21.5666666667,38.4,19.6,40.59,21.89,38,20.79,37.4,19.6,44.4,10.36,39.5666666667,19.76,34.59,22.5,40.5,19.6,38.09,8.45,755.8,82.5,5,40,5.55,25.9631972876,25.9631972876 -90,0,21.5,38.4,19.6,40.59,21.89,37.8633333333,20.79,37.3633333333,19.6,44.3266666667,10.5,38.9333333333,19.7,34.59,22.5666666667,40.4333333333,19.6666666667,38.1333333333,8.4,755.8,83.6666666667,5,40,5.7,14.4288880634,14.4288880634 -100,10,21.5,38.23,19.5666666667,40.3633333333,21.8233333333,37.73,20.79,37.3633333333,19.6,44.29,10.2933333333,38.4,19.73,34.6566666667,22.6333333333,40.3266666667,19.6,38,8.35,755.8,84.8333333333,5,40,5.85,0.1232951414,0.1232951414 -120,0,21.5,38.1566666667,19.5,40.29,21.76,37.7,20.7,37.4,19.6,44.23,9.8666666667,42.0666666667,19.79,34.93,22.7,40.4,19.6,38.03,8.3,755.8,86,5,40,6,48.4367562924,48.4367562924 -120,0,21.5,38.09,19.5,40.4,21.76,37.7,20.7,37.6,19.5666666667,44.29,9.5333333333,45.2,19.79,35.23,22.73,40.9333333333,19.6,38.09,8.4166666667,755.8,84.6666666667,5,40,5.9,38.5216795723,38.5216795723 -110,0,21.5,38.09,19.5,40.4666666667,21.79,37.6266666667,20.79,38,19.5666666667,44.3633333333,9.6666666667,44.9,19.8566666667,35.49,22.79,41.3933333333,19.6,38.2,8.5333333333,755.8,83.3333333333,5,40,5.8,31.6589336377,31.6589336377 -90,10,21.5,38.2,19.5,40.59,21.79,37.7,20.79,38.2,19.5333333333,44.5,9.9333333333,43.9,19.89,35.8266666667,22.9266666667,41.9666666667,19.6,38.2,8.65,755.8,82,5,40,5.7,44.7168425191,44.7168425191 -100,20,21.4266666667,38,19.39,40.0333333333,21.79,37.6633333333,20.76,37.7333333333,19.6,44.5,10.0666666667,41.36,19.89,35.9666666667,23,42.0266666667,19.6,38.26,8.7666666667,755.8,80.6666666667,5,40,5.6,14.830471389,14.830471389 -110,10,21.39,37.46,19.3233333333,39.5,21.79,37.59,20.6333333333,37.1333333333,19.5666666667,44.26,10,40.5,19.89,36.03,23,42.29,19.6,38.2,8.8833333333,755.8,79.3333333333,5,40,5.5,40.1342724916,40.1342724916 -100,10,21.315,37.025,19.29,39.1633333333,21.7,37.3333333333,20.5,36.86,19.5,44.1266666667,10.13,40.3,19.89,36.2966666667,23.0666666667,42.23,19.6,38.26,9,755.8,78,5,40,5.4,7.0508283097,7.0508283097 -110,10,21.29,36.9,19.23,39.03,21.7,37.2,20.5,37.1933333333,19.5,43.9666666667,10.0975,39.92,20,36.5,23.1,41.8333333333,19.6,38.2,8.9333333333,755.8166666667,78.3333333333,5,40,5.3833333333,34.6083974815,34.6083974815 -100,10,21.29,37.1566666667,19.2,39.1266666667,21.7,37.1266666667,20.6,37.545,19.5,43.9,9.8666666667,40.5333333333,19.945,36.5225,23.1666666667,41.5666666667,19.6,38.1266666667,8.8666666667,755.8333333333,78.6666666667,5,40,5.3666666667,42.253995256,42.253995256 -90,10,21.23,37.23,19.1333333333,39.26,21.7,37.2,20.6,37.5,19.5,43.9,9.69,41.4633333333,20,36.6633333333,23.23,41.1633333333,19.5666666667,38.09,8.8,755.85,79,5,40,5.35,33.9125740109,33.9125740109 -100,10,21.2,37.23,19.1666666667,39.53,21.7,37.2,20.6,37.5,19.5,43.9,9.7633333333,41.4633333333,20,36.79,23.29,41.09,19.5,38.03,8.7333333333,755.8666666667,79.3333333333,5,40,5.3333333333,35.4863204411,35.4863204411 -110,10,21.2,37.6233333333,19.1666666667,39.6633333333,21.7,37.09,20.5,37.4,19.5,43.9,9.8,41.0566666667,20,36.8633333333,23.29,41.09,19.5666666667,38,8.6666666667,755.8833333333,79.6666666667,5,40,5.3166666667,32.2950696922,32.2950696922 -100,10,21.29,38.43,19.29,39.8266666667,21.7,37.09,20.5666666667,37.4,19.5,43.8266666667,9.8,40.1966666667,20.0333333333,37.0666666667,23.29,41.03,19.5,38,8.6,755.9,80,5,40,5.3,48.2601570897,48.2601570897 -190,10,21.29,38.29,19.3566666667,39.9666666667,21.7,37.2,20.5666666667,37.29,19.5,43.8266666667,9.66,40.4966666667,20.1,37.3333333333,23.39,40.9,19.5,37.9,8.5,755.95,80.5,4.5,40,5.3,35.5259980308,35.5259980308 -210,20,21.39,38.36,19.4266666667,40.1266666667,21.7,37.2,20.5,37.29,19.5,43.9,9.46,41.4966666667,20.1,37.5666666667,23.4175,40.75,19.5,37.9,8.4,756,81,4,40,5.3,43.5239843326,43.5239843326 -140,10,21.4633333333,38.8333333333,19.5666666667,40.26,21.7,37.2,20.5,37.2,19.5,43.9333333333,9.19,42.63,20.1666666667,37.7,23.5,40.6266666667,19.5,37.9,8.3,756.05,81.5,3.5,40,5.3,45.4622568795,45.4622568795 -100,10,21.6333333333,39.4333333333,19.7,40.4633333333,21.7,37.26,20.5,37.2,19.5,44.0225,9.19,43.5566666667,20.2,37.59,23.5,40.73,19.5,37.8266666667,8.2,756.1,82,3,40,5.3,3.946872137,3.946872137 -120,10,21.76,39.3,19.8266666667,40.7233333333,21.79,37.4333333333,20.4633333333,37.1633333333,19.5,44.1633333333,9.0666666667,44.2,20.2,37.59,23.5,40.79,19.5,37.79,8.1,756.15,82.5,2.5,40,5.3,5.8939293958,5.8939293958 -90,10,21.8233333333,39.09,20,40.79,21.79,37.4333333333,20.39,37.09,19.5,44.29,9,44.3333333333,20.2,37.5,23.6,40.6633333333,19.5,37.79,8,756.2,83,2,40,5.3,39.060401055,39.060401055 -200,10,21.9633333333,39.09,20.0666666667,40.8633333333,21.89,37.5,20.4633333333,37.1633333333,19.5,44.3633333333,8.89,43.6,20.26,37.5,23.6,40.4633333333,19.39,37.7,8,756.2333333333,82.5,2.3333333333,40,5.2,24.8903973843,24.8903973843 -140,10,22,39.6566666667,20.23,40.8633333333,21.89,37.56,20.4633333333,37.1633333333,19.5,44.4333333333,8.89,43.5266666667,20.29,37.1,23.7,40.29,19.4633333333,37.76,8,756.2666666667,82,2.6666666667,40,5.1,9.1473199311,9.1473199311 -100,10,22.0666666667,41.3966666667,20.29,40.93,21.9266666667,38,20.39,37.09,19.5,44.56,8.7333333333,43.6966666667,20.29,36.6933333333,23.7,40.1566666667,19.4266666667,37.73,8,756.3,81.5,3,40,5,33.6217628093,33.6217628093 -120,20,22.1333333333,41.0633333333,20.445,41.2,22,38.3333333333,20.39,37.09,19.5,44.7,8.6,42.8966666667,20.2,36.2233333333,23.7,39.9666666667,19.4266666667,37.73,8,756.3333333333,81,3.3333333333,40,4.9,28.0143012642,28.0143012642 -130,10,22.2,40.3233333333,20.6,41.23,22.0333333333,38.5,20.39,37.06,19.5,44.8333333333,8.5,42.3633333333,20.2,35.89,23.7,39.9,19.39,37.59,8,756.3666666667,80.5,3.6666666667,40,4.8,40.2046293253,40.2046293253 -150,10,22.29,39.9,20.6,41.29,22.1,38.4333333333,20.39,37,20.0333333333,62.6266666667,8.5,42.03,20.2,35.5266666667,23.76,39.79,19.39,37.59,8,756.4,80,4,40,4.7,15.8660791814,15.8660791814 -140,20,22.3566666667,39.76,20.6333333333,41.6566666667,22.2,38.29,20.39,36.9666666667,20.1666666667,53.7,8.5,41.745,20.2,35.2666666667,23.76,39.8633333333,19.4633333333,37.6633333333,7.9,756.4333333333,80.1666666667,3.6666666667,40,4.65,4.6222145786,4.6222145786 -120,10,22.39,39.79,20.7,41.8633333333,22.2,38.29,20.39,36.9,20.3233333333,49.56,8.4633333333,41.8633333333,20.2,34.9666666667,23.8233333333,39.9,19.39,37.6266666667,7.8,756.4666666667,80.3333333333,3.3333333333,40,4.6,23.2704253169,23.2704253169 -140,10,22.4266666667,39.7666666667,20.73,41.7233333333,22.2,38.4,20.39,36.79,20.39,47.6333333333,8.33,41.8633333333,20.2225,34.925,23.89,39.8266666667,19.39,37.6266666667,7.7,756.5,80.5,3,40,4.55,13.0143394927,13.0143394927 -120,20,22.5,39.7666666667,20.79,41.4633333333,22.2,38.4,20.29,36.79,20.5333333333,46.1966666667,8.3,42.39,20.29,35.06,23.8566666667,39.4,19.39,37.59,7.6,756.5333333333,80.6666666667,2.6666666667,40,4.5,30.5651171715,30.5651171715 -110,10,22.5333333333,39.5266666667,20.79,41.1,22.29,38.5,20.29,36.79,20.6,45.3233333333,8.2266666667,42.6633333333,20.3233333333,35.09,23.8566666667,39.2,19.39,37.59,7.5,756.5666666667,80.8333333333,2.3333333333,40,4.45,0.1977251144,0.1977251144 -90,10,22.6,39.3266666667,20.79,40.9,22.29,38.4,20.29,36.76,20.73,44.4233333333,8.0666666667,43.2266666667,20.4633333333,35.1633333333,23.79,39.06,19.4633333333,37.59,7.4,756.6,81,2,40,4.4,40.4603728908,40.4603728908 -90,20,22.6,39.1633333333,20.79,40.6633333333,22.29,38.4,20.29,36.7,20.79,43.83,7.8666666667,43.7666666667,20.5,35.23,23.79,39,19.4633333333,37.59,7.3333333333,756.6333333333,81.5,2,40,4.4,30.0493009621,30.0493009621 -90,20,22.6,39.03,20.79,40.4633333333,22.29,38.29,20.29,36.7,20.76,43.6666666667,7.69,45.2566666667,20.5,35.29,23.76,39.2666666667,19.39,37.5,7.2666666667,756.6666666667,82,2,40,4.4,34.3105279026,34.3105279026 -90,30,22.6333333333,38.8633333333,20.79,40.3633333333,22.29,38.23,20.29,36.7,20.6333333333,44.5333333333,7.6233333333,45.8633333333,20.6,35.59,23.7,39.4666666667,19.39,37.5,7.2,756.7,82.5,2,40,4.4,18.8332079211,18.8332079211 -80,40,22.7,38.6566666667,20.79,40.1566666667,22.29,38.1633333333,20.3233333333,37.36,20.4633333333,45.1566666667,7.59,46.3,20.6,35.59,23.6,39.645,19.4633333333,37.56,7.1333333333,756.7333333333,83,2,40,4.4,18.3283042861,18.3283042861 -80,30,22.6333333333,38.3633333333,20.79,39.9666666667,22.29,38.09,20.53,38.3,20.315,45.4975,7.59,46.8933333333,20.5,35.6266666667,23.6,39.86,19.39,37.5,7.0666666667,756.7666666667,83.5,2,40,4.4,12.4362080009,12.4362080009 -60,30,22.7,38.29,20.79,39.9,22.2,38.03,21.0233333333,38.9666666667,20.29,45.76,7.5,48.0266666667,20.5,35.8333333333,23.6,40.1333333333,19.39,37.5,7,756.8,84,2,40,4.4,13.8830534881,13.8830534881 -70,20,22.6,38.23,20.7,40.03,22.2,38.09,21.6233333333,38.7666666667,20.2,46.2266666667,7.5,49.0266666667,20.5,36.03,23.5666666667,40.5,19.39,37.56,6.8166666667,756.8333333333,84.5,2,38.1666666667,4.3,22.1853081719,22.1853081719 -50,30,22.6,38.29,20.6333333333,40.09,22.1,38.1266666667,22.2333333333,38.56,20.2,46.6933333333,7.3666666667,49.9333333333,20.5,36.2233333333,23.5,40.9,19.4266666667,37.9633333333,6.6333333333,756.8666666667,85,2,36.3333333333,4.2,33.8224930223,33.8224930223 -80,20,22.6,38.4,20.6,40.1266666667,22.1,38.2,22.76,38.4333333333,20.1,47.0666666667,7.3,50.1333333333,20.5,36.29,23.5,41.6933333333,19.4266666667,38.09,6.45,756.9,85.5,2,34.5,4.1,44.4349316531,44.4349316531 -50,20,22.5333333333,38.4,20.5333333333,40.26,22.1,38.2,23,37.93,20.0333333333,47.2,7.06,50,20.5,36.3633333333,23.5,41.9666666667,19.4266666667,38.23,6.2666666667,756.9333333333,86,2,32.6666666667,4,47.5075328839,47.5075328839 -70,20,22.5666666667,38.4,20.445,40.5,22.1,38.2,23,37.73,20,47.4333333333,7,50,20.4633333333,36.4666666667,23.5,42.23,19.5,38.3633333333,6.0833333333,756.9666666667,86.5,2,30.8333333333,3.9,45.8498586784,45.8498586784 -60,20,22.5,38.4666666667,20.3566666667,40.59,22,38.09,22.89,37.8266666667,20,47.56,7.045,50.45,20.39,36.4,23.5,42.49,19.39,38.4,5.9,757,87,2,29,3.8,45.2594983275,45.2594983275 -60,30,22.5,38.53,20.29,40.7233333333,22,38.09,22.8233333333,37.8266666667,20,47.73,7.06,50.5966666667,20.39,36.6266666667,23.39,42.6266666667,19.39,38.475,5.9,756.9833333333,87,1.8333333333,28.5,3.8166666667,17.8116270574,17.8116270574 -50,20,22.4266666667,38.53,20.2,40.73,22,38.2,22.79,37.8266666667,19.9266666667,47.8633333333,6.9333333333,50.99,20.39,36.7,23.39,42.76,19.39,38.5,5.9,756.9666666667,87,1.6666666667,28,3.8333333333,28.4896519268,28.4896519268 -40,10,22.4633333333,38.59,20.2,40.8633333333,22,38.2,22.73,37.9,19.89,48,6.7633333333,51.53,20.39,36.7,23.29,42.9333333333,19.39,38.59,5.9,756.95,87,1.5,27.5,3.85,5.7824885123,5.7824885123 -20,0,22.39,38.6175,20.1,40.9333333333,22.0666666667,38.26,22.65,37.845,19.89,48.06,6.69,52.1966666667,20.39,36.795,23.29,43.06,19.39,38.59,5.9,756.9333333333,87,1.3333333333,27,3.8666666667,12.0934731094,12.0934731094 -50,0,22.3233333333,38.9,20.1,41.06,22.0666666667,38.26,22.5666666667,37.56,19.89,48.2,6.69,52.43,20.39,36.9666666667,23.2,43.5,19.39,38.73,5.9,756.9166666667,87,1.1666666667,26.5,3.8833333333,7.1590683074,7.1590683074 -50,0,22.29,39.2,20,41.2,22.1,38.4333333333,22.4266666667,37.4333333333,19.89,48.26,6.69,52.43,20.39,37.09,23.2,43.8333333333,19.39,38.8633333333,5.9,756.9,87,1,26,3.9,40.447970794,40.447970794 -50,0,22.29,39.2,20,41.2,22.1,38.5,22.3566666667,37.29,19.79,48.2,6.6233333333,52.5666666667,20.39,37.09,23.1,44.23,19.39,39.09,5.9833333333,756.9,86.5,1.1666666667,26.5,3.9,40.4380325694,40.4380325694 -50,0,22.29,39.2,19.89,41.29,22.1666666667,38.5,22.23,37.23,19.79,48.26,6.6233333333,52.9666666667,20.39,37.09,23.1,44.49,19.39,39.09,6.0666666667,756.9,86,1.3333333333,27,3.9,10.7238923782,10.7238923782 -50,0,22.23,39.1266666667,19.8233333333,41.29,22.2,38.59,22.1,37.2,19.79,48.29,6.6233333333,52.8633333333,20.39,37.09,23.0666666667,45.1266666667,19.39,39.36,6.15,756.9,85.5,1.5,27.5,3.9,7.097899518,7.097899518 -60,0,22.2,39.09,19.76,41.3266666667,22.2,38.6633333333,22.0333333333,37.2,19.73,48.29,6.6233333333,52.5966666667,20.39,37.2,23.0666666667,45.4,19.39,39.56,6.2333333333,756.9,85,1.6666666667,28,3.9,35.4851411073,35.4851411073 -50,0,22.2,39.09,19.7,41.4,22.2,38.7,21.9633333333,37.23,19.7,48.29,6.59,52.6566666667,20.39,37.2,23,45.4,19.4266666667,39.7666666667,6.3166666667,756.9,84.5,1.8333333333,28.5,3.9,31.5742638544,31.5742638544 -60,0,22.2,39,19.6666666667,41.3633333333,22.26,38.76,21.89,37.29,19.7,48.29,6.53,52.8633333333,20.39,37.4,23,45.6,19.4266666667,39.9666666667,6.4,756.9,84,2,29,3.9,31.474996719,31.474996719 -50,0,22.1333333333,39,19.6,41.3633333333,22.29,38.79,21.79,37.2,19.7,48.29,6.59,53.1266666667,20.39,37.4,23,45.8,19.5,40.1266666667,6.2666666667,756.8666666667,85.1666666667,1.8333333333,27.8333333333,3.95,43.2258232147,43.2258232147 -50,0,22.1,39,19.6,41.3633333333,22.29,38.79,21.73,37.2,19.7,48.3266666667,6.53,53.3333333333,20.39,37.5,22.9633333333,46.0666666667,19.4266666667,40.26,6.1333333333,756.8333333333,86.3333333333,1.6666666667,26.6666666667,4,10.3427983704,10.3427983704 -50,0,22.0333333333,38.9333333333,19.5333333333,41.29,22.29,38.79,21.6666666667,37.1633333333,19.7,48.4,6.4666666667,53.8266666667,20.39,37.56,22.89,46.2,19.39,40.4,6,756.8,87.5,1.5,25.5,4.05,36.4253280568,36.4253280568 -50,0,22,38.8633333333,19.5,41.29,22.29,38.8633333333,21.6,37.09,19.7,48.4,6.3333333333,54.36,20.39,37.59,22.89,46.36,19.39,40.4666666667,5.8666666667,756.7666666667,88.6666666667,1.3333333333,24.3333333333,4.1,6.897008128,6.897008128 -50,0,22,38.8633333333,19.5,41.29,22.29,38.9,21.5,37.09,19.7,48.4,6.3,54.9,20.39,37.59,22.8233333333,46.5,19.4633333333,40.6633333333,5.7333333333,756.7333333333,89.8333333333,1.1666666667,23.1666666667,4.15,18.4372021118,18.4372021118 -50,0,22,38.9,19.39,41.245,22.3566666667,38.9,21.5,37.09,19.7,48.4,6.4,54.9666666667,20.39,37.7,22.89,46.59,19.4633333333,40.7233333333,5.6,756.7,91,1,22,4.2,16.4959685062,16.4959685062 -50,0,21.9266666667,38.8266666667,19.39,41.29,22.39,38.9333333333,21.39,37.09,19.6333333333,48.3266666667,6.4,54.8266666667,20.4633333333,37.8333333333,22.8233333333,46.53,19.5,40.79,5.5833333333,756.6833333333,91,1,29.1666666667,4.2,25.9465975338,25.9465975338 -60,0,21.89,38.79,19.3233333333,41.29,22.39,39,21.3233333333,37.1633333333,19.6,48.29,6.4333333333,54.59,20.5,37.76,22.79,46.53,19.5,40.8725,5.5666666667,756.6666666667,91,1,36.3333333333,4.2,21.3655333966,21.3655333966 -60,0,21.89,38.79,19.29,41.3633333333,22.39,38.9,21.29,37.2,19.6,48.3633333333,6.4333333333,54.53,20.4266666667,37.7,22.79,46.53,19.5,40.9666666667,5.55,756.65,91,1,43.5,4.2,45.7349502482,45.7349502482 -50,0,21.89,38.79,19.29,41.3633333333,22.39,38.9666666667,21.29,37.2,19.6,48.4,6.3666666667,54.83,20.4633333333,37.7,22.79,46.4,19.5,41.03,5.5333333333,756.6333333333,91,1,50.6666666667,4.2,46.2361913524,46.2361913524 -40,0,21.815,38.7225,19.26,41.5,22.39,38.9,21.26,37.26,19.6,48.4,6.3,55.2966666667,20.39,37.7,22.79,46.3266666667,19.5,41.09,5.5166666667,756.6166666667,91,1,57.8333333333,4.2,30.7053488796,30.7053488796 -50,0,21.79,38.7,19.2,41.5,22.39,38.9666666667,21.2,37.2,19.6,48.4,6.3,55.5,20.39,37.9,22.79,46.1633333333,19.5,41.23,5.5,756.6,91,1,65,4.2,27.2963666939,27.2963666939 -50,0,21.79,38.73,19.1666666667,41.53,22.39,39,21.1333333333,37.2,19.5333333333,48.4,6.2266666667,55.56,20.5,38.09,22.73,46.09,19.5,41.29,5.4166666667,756.5833333333,91.3333333333,1,65,4.15,3.2964454615,3.2964454615 -50,0,21.79,38.79,19.1,41.6633333333,22.4175,39.0225,21.1,37.2,19.6,48.4,6.19,55.8266666667,20.5,38.03,22.7,46.06,19.5,41.4,5.3333333333,756.5666666667,91.6666666667,1,65,4.1,20.5832743552,20.5832743552 -50,0,21.7,38.79,19.1,41.7,22.4266666667,39.03,21.1,37.26,19.5333333333,48.4,6.1233333333,55.9,20.5,38.1266666667,22.7,45.9333333333,19.5,41.4,5.25,756.55,92,1,65,4.05,48.891410674,48.891410674 -50,0,21.7,38.79,19.0333333333,41.6266666667,22.39,39,21,37.2,19.5,48.4,6.09,56.0966666667,20.5,38.1266666667,22.7,45.79,19.5333333333,41.5,5.1666666667,756.5333333333,92.3333333333,1,65,4,9.8422320443,9.8422320443 -50,0,21.7,38.79,19,41.7,22.4633333333,39.06,21,37.2,19.5,48.4,6.09,56.3633333333,20.39,38.09,22.7,45.79,19.5333333333,41.56,5.0833333333,756.5166666667,92.6666666667,1,65,3.95,18.3557975572,18.3557975572 -40,0,21.7,38.79,19,41.7,22.5,39.09,21,37.2,19.5,48.4,6.09,56.29,20.4633333333,38.09,22.6333333333,45.59,19.6,41.59,5,756.5,93,1,65,3.9,43.1380727096,43.1380727096 -20,0,21.6,38.7,18.89,41.79,22.5,39.03,21,37.2,19.5,48.4,6.09,56.23,20.5,38.09,22.6333333333,45.4633333333,19.5333333333,41.59,5.0666666667,756.45,92.6666666667,1.1666666667,65,3.9166666667,10.0357651827,10.0357651827 -30,0,21.6,38.7,18.89,41.79,22.4633333333,39.06,20.89,37.2,19.5,48.345,6.03,56.2266666667,20.5,38.09,22.6,45.26,19.6,41.6266666667,5.1333333333,756.4,92.3333333333,1.3333333333,65,3.9333333333,28.5953512182,28.5953512182 -30,0,21.6,38.7,18.89,41.9333333333,22.39,39,20.89,37.26,19.5,48.29,6.03,56.5,20.39,37.9666666667,22.6,45.2,19.6,41.7,5.2,756.35,92,1.5,65,3.95,21.4661621139,21.4661621139 -50,0,21.5333333333,38.7,18.89,42,22.3566666667,39,20.89,37.2,19.5,48.29,5.95,56.645,20.39,37.9666666667,22.6,45.2,19.6,41.73,5.2666666667,756.3,91.6666666667,1.6666666667,65,3.9666666667,12.9235001514,12.9235001514 -50,0,21.5,38.7,18.8566666667,42,22.29,39.06,20.8233333333,37.1266666667,19.5,48.29,6,56.8266666667,20.5,38.2,22.6,45.1633333333,19.6,41.79,5.3333333333,756.25,91.3333333333,1.8333333333,65,3.9833333333,35.8785512741,35.8785512741 -60,0,21.5,38.7,18.79,42,22.29,39.09,20.79,37.09,19.5,48.29,6,56.9,20.4266666667,38.2,22.6,45.1633333333,19.6,41.79,5.4,756.2,91,2,65,4,30.9478227049,30.9478227049 -60,0,21.5,38.73,18.79,42.045,22.29,39.09,20.79,37.09,19.4633333333,48.26,5.9666666667,56.86,20.4266666667,38.2,22.5666666667,45.09,19.6,41.79,5.4166666667,756.2,90.6666666667,2,65,3.9666666667,48.0641078204,48.0641078204 -50,0,21.5,38.73,18.76,42.1266666667,22.29,39.09,20.79,37.09,19.39,48.2,5.9,57,20.4266666667,38.1266666667,22.5,45.03,19.6,41.9,5.4333333333,756.2,90.3333333333,2,65,3.9333333333,8.8300268748,8.8300268748 -50,0,21.5,38.73,18.7,42.2,22.3566666667,39.09,20.73,37.09,19.4266666667,48.23,5.9,57.23,20.4633333333,38.2233333333,22.5,44.8633333333,19.6,41.9,5.45,756.2,90,2,65,3.9,31.8563924171,31.8563924171 -50,0,21.4266666667,38.73,18.7,42.23,22.39,39.1266666667,20.76,37.09,19.5,48.29,5.9,57.43,20.4633333333,38.1633333333,22.5,44.79,19.6,41.9666666667,5.4666666667,756.2,89.6666666667,2,65,3.8666666667,16.4826530265,16.4826530265 -50,0,21.39,38.7,18.7,42.29,22.39,39.2,20.7,37.09,19.39,48.09,5.9,57.53,20.4633333333,38.1633333333,22.39,44.6633333333,19.6,42,5.4833333333,756.2,89.3333333333,2,65,3.8333333333,37.5499451417,37.5499451417 -50,0,21.39,38.7,18.7,42.29,22.39,39.1266666667,20.7,37.09,19.39,48.1633333333,5.9,57.7233333333,20.39,38.1633333333,22.39,44.59,19.6,42,5.5,756.2,89,2,65,3.8,17.7383543458,17.7383543458 -80,0,21.39,38.8,18.6333333333,42.23,22.39,39.2,20.7,37.09,19.39,48.09,5.8666666667,58,20.39,38.2,22.39,44.53,19.6,42.03,5.5166666667,756.2166666667,88.8333333333,2,65,3.7833333333,1.2596096727,1.2596096727 -50,0,21.39,39.23,18.6,42.5666666667,22.29,38.93,20.6333333333,37.03,19.39,48.09,5.8,58.06,20.39,38.2,22.39,44.53,19.6,42.09,5.5333333333,756.2333333333,88.6666666667,2,65,3.7666666667,10.3382398142,10.3382398142 -50,10,21.39,39.49,18.6,42.9,22.29,38.695,20.6,37,19.39,48.2,5.8,58.23,20.39,38.1266666667,22.39,44.53,19.6,42.09,5.55,756.25,88.5,2,65,3.75,21.1394452606,21.1394452606 -70,0,21.39,39.5266666667,18.6,43.1566666667,22.23,38.53,20.6,37,19.39,48.2,5.8,58.29,20.39,38.1933333333,22.39,44.59,19.6,42.09,5.5666666667,756.2666666667,88.3333333333,2,65,3.7333333333,14.0977702336,14.0977702336 -60,0,21.39,39.4666666667,18.6,43.3633333333,22.2,38.4333333333,20.6,37,19.365,48.2,5.8,58.5666666667,20.39,38.4,22.3566666667,44.7,19.6,42.1633333333,5.5833333333,756.2833333333,88.1666666667,2,65,3.7166666667,29.7094006208,29.7094006208 -100,0,21.39,39.4,18.5666666667,43.53,22.2,38.4333333333,20.6,37,19.3566666667,48.2,5.8,58.9,20.5,38.7266666667,22.29,44.76,19.6,42.1633333333,5.6,756.3,88,2,65,3.7,42.2365268925,42.2365268925 -60,0,21.39,39.5266666667,18.5,43.59,22.2,38.4,20.6,37.03,19.39,48.23,5.9,59.26,20.5,38.9333333333,22.3566666667,45.1266666667,19.6,42.26,5.7166666667,756.35,87.5,1.8333333333,57.5,3.75,48.2571280096,48.2571280096 -50,0,21.39,39.73,18.6,43.79,22.1333333333,38.3266666667,20.6,37.03,19.39,48.23,5.9666666667,59.3333333333,20.5,38.76,22.3566666667,45.1266666667,19.6,42.2,5.8333333333,756.4,87,1.6666666667,50,3.8,26.3176535373,26.3176535373 -40,0,21.39,39.93,18.6,43.93,22.2,38.4,20.5666666667,37.09,19.39,48.245,6.045,59.59,20.4266666667,38.5,22.29,44.6,19.6,42.06,5.95,756.45,86.5,1.5,42.5,3.85,17.1295123175,17.1295123175 -40,0,21.39,40.09,18.5666666667,44.1266666667,22.2,38.4,20.5,37.09,19.39,48.23,6.2266666667,59.5,20.4633333333,38.1933333333,22.23,44.0666666667,19.6,42,6.0666666667,756.5,86,1.3333333333,35,3.9,1.3399492251,1.3399492251 -30,0,21.39,40.09,18.5666666667,44.1266666667,22.1666666667,38.5,20.5,37.09,19.39,48.29,6.3666666667,59.4333333333,20.39,37.86,22.2,43.55,19.5666666667,41.8633333333,6.1833333333,756.55,85.5,1.1666666667,27.5,3.95,25.448569085,25.448569085 -30,0,21.29,40,18.5,44.09,22.1,38.5,20.5,37.09,19.3233333333,48.29,6.5,59.3633333333,20.39,37.6633333333,22.2,43.2233333333,19.5,41.73,6.3,756.6,85,1,20,4,11.7864038562,11.7864038562 -40,0,21.29,40,18.5,44.03,22.1,38.4,20.5,37.09,19.3233333333,48.29,6.5,59.23,20.39,37.53,22.2,43.03,19.5,41.56,6.3333333333,756.6166666667,84.6666666667,1.3333333333,20.3333333333,3.9666666667,38.4520325344,38.4520325344 -20,0,21.29,39.9333333333,18.55,44,22.1,38.4,20.5,37.09,19.39,48.29,6.59,59.06,20.3233333333,37.3633333333,22.1666666667,42.8633333333,19.5,41.4333333333,6.3666666667,756.6333333333,84.3333333333,1.6666666667,20.6666666667,3.9333333333,31.8407710409,31.8407710409 -60,0,21.29,39.9333333333,18.5,43.9,22.0666666667,38.3633333333,20.4266666667,37.1266666667,19.3233333333,48.29,6.6566666667,58.8,20.39,37.23,22.1,42.73,19.5,41.26,6.4,756.65,84,2,21,3.9,26.9348107278,26.9348107278 -50,0,21.29,39.9333333333,18.5,43.9,22,38.29,20.5,37.2,19.29,48.29,6.8333333333,58.3633333333,20.39,37.06,22.1,42.56,19.5,41.095,6.4333333333,756.6666666667,83.6666666667,2.3333333333,21.3333333333,3.8666666667,33.4953304613,33.4953304613 -60,20,21.29,39.9333333333,18.5333333333,43.79,22,38.29,20.4633333333,37.1633333333,19.29,48.29,6.9,57.9566666667,20.3233333333,36.9333333333,22.1,42.4333333333,19.5,41,6.4666666667,756.6833333333,83.3333333333,2.6666666667,21.6666666667,3.8333333333,44.018128782,44.018128782 -60,20,21.2,39.9,18.5333333333,43.79,22,38.29,20.4633333333,37.2233333333,19.29,48.29,7.03,57.4233333333,20.29,36.76,22.1,42.3633333333,19.5,40.8633333333,6.5,756.7,83,3,22,3.8,3.3554987866,3.3554987866 -60,20,21.2,39.9,18.6,43.76,22,38.29,20.745,37.395,19.29,48.23,7.1566666667,56.83,20.29,36.7,22.1,42.29,19.5,40.73,6.5833333333,756.7333333333,82.3333333333,2.8333333333,22.3333333333,3.7666666667,31.7536114831,31.7536114831 -60,30,21.2,39.9,18.6,43.76,22,38.29,20.8233333333,37.5666666667,19.29,48.2,7.3333333333,56.0566666667,20.29,36.59,22.0666666667,42.1633333333,19.5,40.6633333333,6.6666666667,756.7666666667,81.6666666667,2.6666666667,22.6666666667,3.7333333333,25.9171389393,25.9171389393 -60,20,21.2,39.8633333333,18.6,43.7,22,38.29,20.89,37.76,19.29,48.2,7.4666666667,55.13,20.29,36.4,22,42.03,19.4266666667,40.4633333333,6.75,756.8,81,2.5,23,3.7,43.018789636,43.018789636 -70,20,21.2,39.79,18.6,43.6266666667,22,38.23,20.9266666667,37.8266666667,19.29,48.09,7.5633333333,54.2966666667,20.29,36.3266666667,22,41.9,19.39,40.3633333333,6.8333333333,756.8333333333,80.3333333333,2.3333333333,23.3333333333,3.6666666667,12.6672144281,12.6672144281 -60,20,21.2,39.79,18.6,43.56,22,38.2,21,37.9666666667,19.29,48.09,7.83,53.6966666667,20.29,36.26,22,41.8266666667,19.39,40.29,6.9166666667,756.8666666667,79.6666666667,2.1666666667,23.6666666667,3.6333333333,7.1539079188,7.1539079188 -70,20,21.2,39.79,18.6,43.5,22,38.09,21.0333333333,38.1566666667,19.29,48,8.1666666667,52.7,20.29,36.2,21.89,41.7,19.4266666667,40.2,7,756.9,79,2,24,3.6,18.1232485804,18.1232485804 -60,30,21.2,39.79,18.6,43.4666666667,22,38.09,21.1,38.29,19.29,48,8.36,50.4266666667,20.26,36.06,21.89,41.6266666667,19.4266666667,40.0666666667,7.1333333333,756.9,77.8333333333,2.1666666667,24,3.5,34.7906528623,34.7906528623 -60,20,21.2,39.79,18.6666666667,43.4666666667,22,38.06,21.1333333333,38.29,19.29,47.9,8.7,48.75,20.2,35.9333333333,21.89,41.56,19.4266666667,40,7.2666666667,756.9,76.6666666667,2.3333333333,24,3.4,9.7302297829,9.7302297829 -60,20,21.2,39.79,18.7,43.4666666667,22,38,21.2,38.29,19.29,47.9,9.0633333333,46.6933333333,20.2,35.8633333333,21.89,41.5,19.4266666667,39.9333333333,7.4,756.9,75.5,2.5,24,3.3,43.2583910762,43.2583910762 -60,20,21.2,39.79,18.76,43.4,22,38.06,21.2,38.3266666667,19.29,47.79,9.3233333333,44.7666666667,20.2,35.73,21.89,41.4666666667,19.5,39.8633333333,7.5333333333,756.9,74.3333333333,2.6666666667,24,3.2,37.0738411322,37.0738411322 -60,20,21.2,39.76,18.79,43.26,22,38,21.26,38.4666666667,19.29,47.7675,9.6666666667,42.1633333333,20.2,35.6633333333,21.89,41.4,19.4266666667,39.73,7.6666666667,756.9,73.1666666667,2.8333333333,24,3.1,40.0929076131,40.0929076131 -70,20,21.2,39.7,18.8566666667,43.2,22,38,21.29,38.5,19.29,47.7,9.86,40.63,20.2,35.59,21.8566666667,41.26,19.4633333333,39.6333333333,7.8,756.9,72,3,24,3,11.9546100148,11.9546100148 -70,10,21.2,39.73,18.89,43.09,22,38,21.29,38.5,19.29,47.59,10.1,37.8633333333,20.2,35.5,21.79,41.1266666667,19.39,39.5,7.9333333333,756.9,71,3.1666666667,23.5,2.9333333333,26.2864239048,26.2864239048 -50,0,21.2,39.73,18.89,43.03,22,37.9666666667,21.3566666667,38.5,19.29,47.59,10.0333333333,36.0566666667,20.2,35.4333333333,21.79,41.09,19.39,39.4666666667,8.0666666667,756.9,70,3.3333333333,23,2.8666666667,17.2349675209,17.2349675209 -50,0,21.2,39.9,18.89,42.845,22,37.9,21.29,38.36,19.29,47.5,10.1666666667,35.2666666667,20.2,35.3633333333,21.79,40.9666666667,19.4633333333,39.4666666667,8.2,756.9,69,3.5,22.5,2.8,42.0493441634,42.0493441634 -20,0,21.2,39.9,19,42.76,22,37.9,21.29,38.0266666667,19.29,47.4333333333,10.5,34,20.2,35.23,21.79,40.9,19.39,39.26,8.3333333333,756.9,68,3.6666666667,22,2.7333333333,27.9142278945,27.9142278945 -30,0,21.1333333333,39.9,19,42.6266666667,22,37.8266666667,21.23,37.6933333333,19.29,47.3633333333,10.8666666667,31.4266666667,20.2,35.1633333333,21.79,40.8633333333,19.39,39.1725,8.4666666667,756.9,67,3.8333333333,21.5,2.6666666667,42.8233867278,42.8233867278 -30,0,21.2,39.8266666667,19.1333333333,42.4666666667,21.9633333333,37.9,21.2,37.4666666667,19.29,47.29,11,29.3666666667,20.2,35.09,21.79,40.73,19.39,39.09,8.6,756.9,66,4,21,2.6,49.1709145717,49.1709145717 -30,0,21.1,39.76,19.2,42.3266666667,21.89,37.8266666667,21.2,37.3266666667,19.29,47.2,11.13,27.8266666667,20.2,35,21.76,40.6633333333,19.4633333333,39.1633333333,8.6833333333,756.8666666667,65.6666666667,4,28.3333333333,2.5833333333,25.1913627726,25.1913627726 -60,0,21.1,39.7,19.2,42.1633333333,21.89,37.8633333333,21.1,37.1633333333,19.29,47.1266666667,11.3233333333,26.9,20.2,35,21.7,40.59,19.39,39.09,8.7666666667,756.8333333333,65.3333333333,4,35.6666666667,2.5666666667,23.25259106,23.25259106 -50,0,21.1,39.6633333333,19.26,42.03,21.89,37.8633333333,21.1,37.0225,19.29,47.09,11.4266666667,25.4966666667,20.2,34.845,21.76,40.5,19.4633333333,39.1333333333,8.85,756.8,65,4,43,2.55,5.5535453372,5.5535453372 -60,0,21.1,39.59,19.29,41.9666666667,21.89,37.8633333333,21.0333333333,36.86,19.29,47.03,11.5,24.9566666667,20.2,34.79,21.7,40.5,19.39,38.9333333333,8.9333333333,756.7666666667,64.6666666667,4,50.3333333333,2.5333333333,3.5601172713,3.5601172713 -50,0,21.1,39.59,19.29,41.8266666667,21.89,37.79,21,36.7,19.29,47,11.5,23.7633333333,20.2,34.73,21.7,40.4,19.39,38.79,9.0166666667,756.7333333333,64.3333333333,4,57.6666666667,2.5166666667,49.493972084,49.493972084 -50,0,21.1,39.56,19.29,41.76,21.89,37.79,21,36.6266666667,19.29,46.9333333333,11.7,23.29,20.2,34.6633333333,21.7,40.3266666667,19.39,38.73,9.1,756.7,64,4,65,2.5,37.1345105581,37.1345105581 -40,0,21.1,39.5,19.29,41.7,21.89,37.7,20.9633333333,36.56,19.29,46.9,12.0333333333,21.3666666667,20.2,34.59,21.7,40.29,19.4266666667,38.7,9.1666666667,756.65,63.3333333333,4.1666666667,65,2.4333333333,41.1525331321,41.1525331321 -50,0,21.1,39.4,19.39,41.59,21.89,37.7,20.89,36.5,19.29,46.8266666667,12.1725,19.9725,20.2,34.5,21.7,40.23,19.4266666667,38.6266666667,9.2333333333,756.6,62.6666666667,4.3333333333,65,2.3666666667,40.522511641,40.522511641 -50,0,21.1,39.4,19.39,41.4633333333,21.89,37.7,20.89,36.5,19.29,46.79,12.4633333333,18.7966666667,20.2,34.4333333333,21.6666666667,40.06,19.39,38.5,9.3,756.55,62,4.5,65,2.3,29.5375791378,29.5375791378 -50,0,21.1,39.4,19.4266666667,41.29,21.89,37.7,20.89,36.5,19.29,46.73,12.4266666667,18.3,20.2,34.3633333333,21.6,40,19.39,38.4333333333,9.3666666667,756.5,61.3333333333,4.6666666667,65,2.2333333333,41.5636217105,41.5636217105 -50,0,21.1,39.3266666667,19.5,41.23,21.89,37.6633333333,20.79,36.4,19.29,46.6633333333,12.5,18.5666666667,20.2,34.29,21.6,39.9,19.39,38.3633333333,9.4333333333,756.45,60.6666666667,4.8333333333,65,2.1666666667,30.9147384018,30.9147384018 -50,0,21.1,39.29,19.5,41.09,21.89,37.59,20.79,36.3266666667,19.29,46.59,12.6666666667,18.39,20.2,34.2,21.6,39.9,19.4633333333,38.3633333333,9.5,756.4,60,5,65,2.1,11.2269413425,11.2269413425 -50,0,21.1,39.29,19.5666666667,41.03,21.89,37.56,20.79,36.29,19.29,46.59,12.7266666667,18.2633333333,20.2,34.2,21.6,39.8633333333,19.39,38.2,9.5,756.3666666667,60.5,4.8333333333,64.8333333333,2.2166666667,9.7827041638,9.7827041638 -60,0,21.1,39.29,19.5666666667,40.9,21.89,37.5,20.79,36.29,19.29,46.5,12.4266666667,18.83,20.1333333333,34.2,21.6,39.79,19.39,38.2,9.5,756.3333333333,61,4.6666666667,64.6666666667,2.3333333333,13.439990161,13.439990161 -40,0,21.1,39.23,19.5666666667,40.9,21.89,37.5,20.79,36.29,19.29,46.4333333333,12.6266666667,19.3566666667,20.2,34.1266666667,21.6,39.79,19.39,38.1633333333,9.5,756.3,61.5,4.5,64.5,2.45,27.3611750803,27.3611750803 -50,0,21.0333333333,39.1266666667,19.6,40.79,21.89,37.5,20.79,36.29,19.29,46.4666666667,12.5666666667,18.89,20.1333333333,34.09,21.6,39.79,19.39,38.09,9.5,756.2666666667,62,4.3333333333,64.3333333333,2.5666666667,10.1814204711,10.1814204711 -50,0,21.1,39.2,19.5,40.79,21.89,37.5,20.76,36.29,19.29,46.4,12.3666666667,19.0966666667,20.1333333333,34.09,21.6,39.79,19.39,38.09,9.5,756.2333333333,62.5,4.1666666667,64.1666666667,2.6833333333,22.5342321093,22.5342321093 -50,0,21.1,39.2,19.5,40.79,21.89,37.5,20.7,36.29,19.29,46.4,11.7933333333,19.56,20.1,34.09,21.5,39.7,19.39,38.0225,9.5,756.2,63,4,64,2.8,4.0185252903,4.0185252903 -50,0,21.1,39.2,19.5,40.79,21.89,37.5,20.7,36.29,19.29,46.3266666667,11.5333333333,19.96,20.1,34.09,21.5,39.7,19.39,38,9.4833333333,756.1833333333,63.5,4,63.8333333333,2.8833333333,33.6812638212,33.6812638212 -50,0,21.1,39.09,19.5,40.73,21.89,37.5,20.7,36.29,19.29,46.29,11.6,19.9566666667,20.1,34.06,21.5,39.7,19.39,38,9.4666666667,756.1666666667,64,4,63.6666666667,2.9666666667,33.2493159454,33.2493159454 -30,0,21.1,39.09,19.6,40.6333333333,21.89,37.4,20.7,36.29,19.29,46.23,11.86,19.9566666667,20.1,34,21.5,39.7,19.39,37.9333333333,9.45,756.15,64.5,4,63.5,3.05,45.9229262546,45.9229262546 -40,0,21.0333333333,39.09,19.6,40.5,21.89,37.4,20.7,36.3725,19.29,46.2,11.7633333333,19.9333333333,20.1666666667,34,21.5,39.59,19.39,37.9,9.4333333333,756.1333333333,65,4,63.3333333333,3.1333333333,29.4481619261,29.4481619261 -50,0,21.05,39.045,19.5666666667,40.5,21.8566666667,37.26,20.6333333333,36.3266666667,19.29,46.1266666667,11.63,21,20.1,34,21.5,39.6633333333,19.39,37.9,9.4166666667,756.1166666667,65.5,4,63.1666666667,3.2166666667,35.1506366977,35.1506366977 -90,0,21.0333333333,39.03,19.5666666667,40.5,21.8566666667,37.3333333333,20.6,36.4,19.29,46.09,11.8,21.4266666667,20.1,34,21.5,40.0666666667,19.39,37.8633333333,9.4,756.1,66,4,63,3.3,12.4987240648,12.4987240648 -90,0,21,39,19.6,40.5,21.79,37.29,20.6,36.4,19.29,46.03,11.86,21.3,20.1,34,21.5666666667,40.26,19.39,37.8633333333,9.35,756.1166666667,66,4,56.3333333333,3.25,4.0973764961,4.0973764961 -130,0,21,39,19.6,40.4333333333,21.79,37.4,20.6,36.4,19.29,46,11.95,20.195,20.1,33.9333333333,21.73,40.5666666667,19.39,37.79,9.3,756.1333333333,66,4,49.6666666667,3.2,45.2807349153,45.2807349153 -130,0,21,39,19.5666666667,40.4,21.79,37.3266666667,20.6,36.4666666667,19.29,46,11.4333333333,20.3666666667,20.1,34,21.79,40.7,19.39,37.79,9.25,756.15,66,4,43,3.15,39.3597757677,39.3597757677 -140,0,21,39,19.5,40.4666666667,21.79,37.4,20.6,36.8,19.29,46,11.1666666667,21.0333333333,20.1,34,21.9266666667,40.8266666667,19.39,37.79,9.2,756.1666666667,66,4,36.3333333333,3.1,18.5465460643,18.5465460643 -150,0,21,39,19.4633333333,40.5,21.79,37.3266666667,20.6,37.1933333333,19.29,46.06,10.86,22.3633333333,20.1,33.9666666667,22.0666666667,40.9666666667,19.39,37.73,9.15,756.1833333333,66,4,29.6666666667,3.05,48.6207071808,48.6207071808 -140,0,21,39,19.39,40.36,21.79,37.3633333333,20.6,37.4,19.29,46.06,10.6666666667,23.43,20.1,33.7666666667,22.1333333333,40.8333333333,19.3566666667,37.6633333333,9.1,756.2,66,4,23,3,8.0086864415,8.0086864415 -130,0,21,38.9,19.3566666667,40.1633333333,21.79,37.29,20.6,37.6,19.29,45.975,10.4333333333,25.9666666667,20,33.59,22.2,40.6266666667,19.29,37.53,9,756.2,67.5,4,23.3333333333,3.2,32.0908349007,32.0908349007 -90,0,21,38.8266666667,19.29,40.09,21.79,37.29,20.6,37.4666666667,19.29,45.8266666667,10.1666666667,27.4266666667,20,33.53,22.29,40.7266666667,19.29,37.4666666667,8.9,756.2,69,4,23.6666666667,3.4,5.0931676873,5.0931676873 -100,0,20.9633333333,38.76,19.29,40,21.79,37.29,20.6,37.3266666667,19.29,45.6633333333,10.0666666667,28.9666666667,20,33.73,22.3566666667,41,19.29,37.4,8.8,756.2,70.5,4,24,3.6,47.0880364417,47.0880364417 -70,0,20.9633333333,38.7,19.29,40,21.7,37.2,20.6,37.06,19.29,45.53,9.9266666667,30.36,20,33.8633333333,22.5,41,19.29,37.29,8.7,756.2,72,4,24.3333333333,3.8,6.5505573526,6.5505573526 -80,0,20.9633333333,38.79,19.2,40,21.7,37.26,20.6,37,19.29,45.3633333333,9.8,31.76,20,33.9633333333,22.5,40.9333333333,19.29,37.29,8.6,756.2,73.5,4,24.6666666667,4,11.4191352157,11.4191352157 -90,0,20.89,38.79,19.2225,40.1175,21.6666666667,37.26,20.6,36.9,19.29,45.29,9.7266666667,32.8333333333,20,34.1633333333,22.5,40.845,19.29,37.2,8.5,756.2,75,4,25,4.2,31.0749705532,31.0749705532 -160,0,21,38.8266666667,19.23,40.23,21.6,37.2,20.6,36.9,19.29,45.1633333333,9.6,33.6966666667,19.9633333333,34.3266666667,22.5333333333,40.8633333333,19.29,37.245,8.4333333333,756.2166666667,75.5,4,24.6666666667,4.25,18.3332614717,18.3332614717 -560,0,21,38.9,19.29,40.2,21.7,37.2,20.5333333333,36.9,19.29,45.03,9.5333333333,34.2966666667,19.89,34.4666666667,22.5333333333,40.73,19.29,37.2,8.3666666667,756.2333333333,76,4,24.3333333333,4.3,5.7963825646,5.7963825646 -390,0,21.0333333333,40.6666666667,19.29,40.26,21.7,37.2,20.5333333333,36.9,19.29,45,9.36,35.3933333333,20,34.6566666667,22.5,40.59,19.23,37.2,8.3,756.25,76.5,4,24,4.35,27.9439001228,27.9439001228 -190,0,21.1666666667,46.46,19.4266666667,41.2966666667,21.73,37.2,20.5,36.845,19.29,45.06,9.2266666667,36.2666666667,20,34.8633333333,22.5,40.53,19.23,37.2,8.2333333333,756.2666666667,77,4,23.6666666667,4.4,46.3273514295,46.3273514295 -80,10,21.39,48.3333333333,19.5666666667,42.6966666667,21.79,37.3333333333,20.5,36.79,19.29,45.39,9.1266666667,36.86,20,35.0666666667,22.5666666667,40.4,19.26,37.26,8.1666666667,756.2833333333,77.5,4,23.3333333333,4.45,42.6365280291,42.6365280291 -90,10,21.4633333333,46.4,19.73,43.5,21.89,38.1333333333,20.5,36.79,19.23,45.7233333333,8.9266666667,37.1333333333,20,35.025,22.5,40.1266666667,19.2,37.2,8.1,756.3,78,4,23,4.5,32.5269711087,32.5269711087 -90,0,21.5,44.995,19.79,43.5,21.89,38.5266666667,20.39,36.73,19.23,46.0966666667,8.7333333333,38.1666666667,20,34.9,22.5333333333,40.2,19.2,37.2,8,756.3166666667,78.8333333333,3.8333333333,22.6666666667,4.5333333333,28.1731737661,28.1731737661 -80,0,21.6,43.3933333333,19.9266666667,43.4,21.9266666667,38.73,20.39,36.73,19.29,46.29,8.4975,39.5225,19.9266666667,34.76,22.5333333333,40.2,19.2,37.2,7.9,756.3333333333,79.6666666667,3.6666666667,22.3333333333,4.5666666667,42.2771164565,42.2771164565 -100,0,21.6,42.6666666667,20.0666666667,43.1266666667,22,38.7225,20.39,36.7,19.29,46.3633333333,8.2566666667,41.13,20,34.6266666667,22.5,40.2,19.2,37.2,7.8,756.35,80.5,3.5,22,4.6,8.9996256516,8.9996256516 -100,10,21.7,42.0333333333,20.1,42.6933333333,22,38.6266666667,20.39,36.76,19.29,46.23,8.0666666667,42.5333333333,20.0966666667,36.6666666667,22.5666666667,40.26,19.2,37.2,7.7,756.3666666667,81.3333333333,3.3333333333,21.6666666667,4.6333333333,44.0886900295,44.0886900295 -120,0,21.7,41.4266666667,20.1666666667,42.3,22,38.5266666667,20.39,36.79,19.29,45.9666666667,7.9333333333,43.6666666667,20.43,37.1333333333,22.5333333333,40.4633333333,19.2,37.23,7.6,756.3833333333,82.1666666667,3.1666666667,21.3333333333,4.6666666667,2.5781440432,2.5781440432 -100,10,21.79,41.0266666667,20.23,41.9,22.0666666667,38.4666666667,20.39,36.79,19.43,45.8266666667,7.7633333333,44.8233333333,20.39,36.6,22.6,40.59,19.2,37.29,7.5,756.4,83,3,21,4.7,6.0644812183,6.0644812183 -100,10,21.8566666667,40.7666666667,20.29,41.7666666667,22.1333333333,38.3333333333,20.39,36.79,20.1666666667,71.7666666667,7.69,45.8966666667,20.3233333333,36.3266666667,22.6,40.7,19.2,37.29,7.3833333333,756.4,84.1666666667,2.8333333333,20.8333333333,4.7833333333,25.4951493582,25.4951493582 -100,30,22,40.5266666667,20.4266666667,41.59,22.2,38.2,20.39,36.93,20.5666666667,69.7666666667,7.69,47.2566666667,20.26,36.1266666667,22.6,40.7,19.2,37.29,7.2666666667,756.4,85.3333333333,2.6666666667,20.6666666667,4.8666666667,15.4661977082,15.4661977082 -100,30,22.0666666667,40.3266666667,20.5,41.4633333333,22.2,38.1633333333,20.4266666667,37.6966666667,20.55,64.89,7.6233333333,47.8633333333,20.3266666667,36.9266666667,22.6,40.8266666667,19.2,37.4,7.15,756.4,86.5,2.5,20.5,4.95,45.8409569575,45.8409569575 -90,20,22.1,40.0266666667,20.6,41.06,22.2,38.09,20.5,38.2966666667,20.3566666667,62.1633333333,7.59,49,20.6333333333,37.3633333333,22.6,40.9,19.2,37.4,7.0333333333,756.4,87.6666666667,2.3333333333,20.3333333333,5.0333333333,17.8285572445,17.8285572445 -80,20,22.1666666667,39.8266666667,20.6,40.86,22.2,38,20.6,38.6266666667,20.23,60.09,7.53,49.7333333333,20.7,37.23,22.6,41.1566666667,19.2,37.4333333333,6.9166666667,756.4,88.8333333333,2.1666666667,20.1666666667,5.1166666667,45.1975624776,45.1975624776 -110,0,22.2,39.6633333333,20.6,40.76,22.2,38,20.6666666667,38.9,20.2,61.8666666667,7.5,50.86,20.6,37.23,22.6,41.43,19.2,37.5,6.8,756.4,90,2,20,5.2,20.0840265374,20.0840265374 -80,0,22.2,39.53,20.625,40.795,22.2,37.9,20.79,38.9666666667,20.8666666667,79.8,7.5,51.86,20.5333333333,37.3633333333,22.6,41.6266666667,19.1666666667,37.53,6.75,756.35,90.5,2.1666666667,26.8333333333,5.2333333333,42.4266038695,42.4266038695 -110,0,22.29,39.6266666667,20.6333333333,40.8266666667,22.26,37.9666666667,20.73,38.9,21.1333333333,82.9566666667,7.5,53.13,20.5,37.3266666667,22.675,41.85,19.1,37.59,6.7,756.3,91,2.3333333333,33.6666666667,5.2666666667,36.8863787386,36.8863787386 -100,0,22.29,39.6266666667,20.6,40.76,22.23,37.9333333333,20.7,38.79,20.9266666667,80.5633333333,7.4333333333,53.9966666667,20.5,37.4,22.7,42.0266666667,19.1,37.59,6.65,756.25,91.5,2.5,40.5,5.3,41.833274439,41.833274439 -90,0,22.29,39.5,20.6,40.7,22.23,37.9333333333,20.7,38.79,20.6666666667,78.4966666667,7.2633333333,54.8933333333,20.4633333333,37.29,22.6333333333,42.2666666667,19.1,37.7,6.6,756.2,92,2.6666666667,47.3333333333,5.3333333333,42.0316846576,42.0316846576 -90,0,22.29,39.4333333333,20.5666666667,40.73,22.2,37.9,20.7,38.79,20.5333333333,76.69,7.19,56.2266666667,20.39,37.29,22.6333333333,42.4,19.1,37.7,6.55,756.15,92.5,2.8333333333,54.1666666667,5.3666666667,34.6412190353,34.6412190353 -70,10,22.29,39.4633333333,20.5,41.0633333333,22.2,37.9,20.7,38.8266666667,20.6,64.43,7.09,57.2933333333,20.39,37.3633333333,22.7,42.73,19.1,37.73,6.5,756.1,93,3,61,5.4,35.5411979253,35.5411979253 -80,10,22.29,39.59,20.5,41.4633333333,22.2,38.03,20.7,38.9,20.6666666667,58.0966666667,7.0225,58.2225,20.39,37.2225,22.7,42.8633333333,19.1,37.79,6.5,756.05,93,3,60,5.4166666667,16.4380293572,16.4380293572 -50,0,22.29,39.73,20.4266666667,41.59,22.2,38.09,20.7,39.09,20.6666666667,54.29,7,59.0633333333,20.39,37.26,22.7,43.36,19.1333333333,38.03,6.5,756,93,3,59,5.4333333333,27.5523998076,27.5523998076 -50,0,22.29,39.7675,20.3566666667,41.53,22.1,38.1266666667,20.7,39.03,20.6,52.8966666667,6.9666666667,59.6966666667,20.3233333333,37.29,22.7,43.6933333333,19.2,38.7633333333,6.5,755.95,93,3,58,5.45,26.7445650417,26.7445650417 -70,0,22.29,39.7,20.29,41.6633333333,22.1,38.2,20.6,39,20.4633333333,53.33,6.9,60.4966666667,20.39,37.3633333333,22.7,44.0666666667,19.2,39.0966666667,6.5,755.9,93,3,57,5.4666666667,24.1508712177,24.1508712177 -60,0,22.2,39.59,20.29,41.7,22.1,38.26,20.6,39,20.3233333333,53.7966666667,6.9,61.1566666667,20.39,37.4633333333,22.7,44.2,19.2,39.43,6.5,755.85,93,3,56,5.4833333333,16.9557224493,16.9557224493 -50,0,22.2,39.53,20.23,41.7,22,38.2,20.6,38.9,20.29,54.1266666667,6.9,61.5633333333,20.39,37.6633333333,22.7,44.3266666667,19.2,39.6266666667,6.5,755.8,93,3,55,5.5,5.8130064281,5.8130064281 -50,0,22.2,39.5,20.1666666667,41.79,22,38.2,20.5333333333,38.9,20.23,54.2,6.8666666667,62.1933333333,20.3566666667,37.8266666667,22.7,44.4666666667,19.2,39.76,6.4666666667,755.7833333333,93.5,3,53.3333333333,5.5333333333,42.0300342725,42.0300342725 -50,0,22.2,39.5,20.1,41.79,22,38.23,20.5,38.9,20.2,54.2,6.8,62.6,20.3566666667,37.9,22.7,44.6566666667,19.29,40.03,6.4333333333,755.7666666667,94,3,51.6666666667,5.5666666667,23.0500721256,23.0500721256 -50,0,22.1,39.5,20,41.79,22,38.23,20.5,38.8266666667,20.2,54.2,6.9,63.1266666667,20.3233333333,37.9,22.7,44.8633333333,19.23,40.09,6.4,755.75,94.5,3,50,5.6,23.1123760226,23.1123760226 -40,0,22.1,39.56,20,41.79,22,38.29,20.4633333333,38.76,20.1,54.145,6.9,63.1266666667,20.3233333333,37.9666666667,22.7,45.1266666667,19.26,40.2,6.3666666667,755.7333333333,95,3,48.3333333333,5.6333333333,49.7482737876,49.7482737876 -60,0,22.1,39.59,19.89,41.8266666667,22,38.29,20.39,38.7,20.1,54,6.9,63.6666666667,20.39,38.1566666667,22.7,45.26,19.26,40.3333333333,6.3333333333,755.7166666667,95.5,3,46.6666666667,5.6666666667,26.3260995969,26.3260995969 -60,0,22.0333333333,39.53,19.89,41.9666666667,21.9266666667,38.29,20.39,38.7,20.1,53.9333333333,6.8333333333,64.06,20.39,38.3633333333,22.6666666667,45.26,19.29,40.53,6.3,755.7,96,3,45,5.7,49.613426812,49.613426812 -60,0,22,39.5,19.79,41.9333333333,22,38.29,20.39,38.7,20,53.6633333333,6.8666666667,64.4633333333,20.39,38.5,22.6,45.2,19.29,40.6633333333,6.3,755.6666666667,96,3,43.6666666667,5.7,28.7899004412,28.7899004412 -60,0,22,39.5,19.7225,42,22,38.29,20.39,38.7,20,53.53,6.7266666667,64.73,20.39,38.6333333333,22.5666666667,45.2,19.29,40.8266666667,6.3,755.6333333333,96,3,42.3333333333,5.7,34.3681345228,34.3681345228 -50,0,22,39.5,19.6333333333,41.9333333333,22,38.29,20.39,38.7,19.9633333333,53.3633333333,6.69,65.3566666667,20.39,38.73,22.5,45.4,19.29,41.07,6.3,755.6,96,3,41,5.7,37.2024419368,37.2024419368 -50,0,21.9266666667,39.5,19.6,42,22,38.29,20.3566666667,38.7,19.9633333333,53.23,6.69,65.8966666667,20.39,38.73,22.445,45.7,19.29,41.26,6.3,755.5666666667,96,3,39.6666666667,5.7,48.2475229306,48.2475229306 -40,0,21.89,39.5,19.5333333333,42,22,38.3633333333,20.29,38.7,19.89,52.9666666667,6.69,66.4966666667,20.39,38.59,22.4633333333,46.1566666667,19.29,41.4333333333,6.3,755.5333333333,96,3,38.3333333333,5.7,22.4147673231,22.4147673231 -30,0,21.89,39.5,19.5,42,22.1,38.5,20.29,38.7,19.89,52.9,6.69,66.9975,20.39,38.59,22.39,46.43,19.29,41.6333333333,6.3,755.5,96,3,37,5.7,33.3835673286,33.3835673286 -30,0,21.8566666667,39.4666666667,19.4266666667,41.9333333333,22.1,38.5,20.29,38.7,19.89,52.7,6.69,67.3666666667,20.39,38.59,22.39,46.7666666667,19.29,41.9333333333,6.3,755.45,95.8333333333,3.1666666667,38.6666666667,5.6833333333,1.0246985941,1.0246985941 -40,0,21.79,39.4,19.39,41.9333333333,22.1,38.5,20.29,38.6266666667,19.89,52.6266666667,6.69,67.8966666667,20.39,38.695,22.39,46.9666666667,19.3566666667,42.06,6.3,755.4,95.6666666667,3.3333333333,40.3333333333,5.6666666667,34.1941886931,34.1941886931 -50,0,21.79,39.4,19.39,42,22.1,38.5,20.29,38.59,19.79,52.29,6.69,68.2966666667,20.39,38.8633333333,22.39,47.2666666667,19.3566666667,42.3266666667,6.3,755.35,95.5,3.5,42,5.65,23.6235453514,23.6235453514 -60,0,21.79,39.4,19.3566666667,42.03,22.1333333333,38.59,20.29,38.59,19.79,52.23,6.7633333333,69.0333333333,20.39,39,22.39,47.4,19.3566666667,42.4,6.3,755.3,95.3333333333,3.6666666667,43.6666666667,5.6333333333,5.6880519609,5.6880519609 -50,0,21.73,39.4,19.29,42.09,22.2,38.59,20.29,38.59,19.76,52.06,6.69,69.4933333333,20.4633333333,39.1333333333,22.39,47.5,19.39,42.5,6.3,755.25,95.1666666667,3.8333333333,45.3333333333,5.6166666667,32.0199189824,32.0199189824 -50,0,21.7,39.4,19.26,42.1633333333,22.2,38.6633333333,20.23,38.53,19.76,52,6.69,69.8333333333,20.39,39.1266666667,22.3233333333,47.56,19.39,42.56,6.3,755.2,95,4,47,5.6,34.9939379725,34.9939379725 -60,0,21.7,39.4,19.2,42.09,22.2,38.7,20.2,38.5,19.76,51.8633333333,6.69,70.0266666667,20.39,39.2,22.3566666667,47.6566666667,19.39,42.6266666667,6.2666666667,755.1166666667,95.3333333333,4,45.6666666667,5.6,37.5455167028,37.5455167028 -50,0,21.7,39.4333333333,19.2,42.2,22.2,38.7,20.2,38.5,19.7,51.73,6.6566666667,70.2266666667,20.39,39.2666666667,22.29,47.8633333333,19.39,42.7,6.2333333333,755.0333333333,95.6666666667,4,44.3333333333,5.6,32.2774583241,32.2774583241 -50,0,21.6333333333,39.5,19.1333333333,42.26,22.29,38.79,20.2,38.5,19.7,51.59,6.59,70.4333333333,20.39,39.4,22.29,47.9,19.39,42.79,6.2,754.95,96,4,43,5.6,0.8904015878,0.8904015878 -50,0,21.6,39.5,19.1,42.3266666667,22.23,38.79,20.2,38.5,19.7,51.53,6.59,70.7266666667,20.39,39.4333333333,22.29,47.9666666667,19.39,42.8633333333,6.1666666667,754.8666666667,96.3333333333,4,41.6666666667,5.6,29.6700379462,29.6700379462 -50,0,21.6,39.5,19.1,42.4666666667,22.29,38.8266666667,20.2,38.5,19.7,51.4,6.59,70.8666666667,20.39,39.6333333333,22.29,47.9666666667,19.39,43,6.1333333333,754.7833333333,96.6666666667,4,40.3333333333,5.6,37.9717640346,37.9717640346 -60,0,21.5,39.5,19.0666666667,42.4666666667,22.29,38.9,20.2,38.5,19.7,51.3175,6.56,71.03,20.39,39.79,22.29,47.8266666667,19.39,43,6.1,754.7,97,4,39,5.6,3.3538735588,3.3538735588 -60,0,21.5,39.56,19,42.4666666667,22.29,38.9,20.1,38.56,19.7,51.23,6.56,71.1566666667,20.4633333333,39.8633333333,22.23,47.7,19.5,43.09,6.1,754.6333333333,97,4.1666666667,38.6666666667,5.6,46.5180632542,46.5180632542 -50,0,21.5,39.53,19,42.5,22.29,38.9,20.1,38.56,19.6666666667,51.06,6.56,71.3666666667,20.4633333333,39.8633333333,22.23,47.6266666667,19.5,43.09,6.1,754.5666666667,97,4.3333333333,38.3333333333,5.6,31.7080558161,31.7080558161 -60,0,21.5,39.59,18.9175,42.5675,22.29,38.9,20.1,38.59,19.6,51,6.5,71.56,20.39,39.79,22.2,47.56,19.5,43.2,6.1,754.5,97,4.5,38,5.6,31.7762769759,31.7762769759 -50,0,21.39,39.5,18.89,42.59,22.3566666667,38.9666666667,20.1,38.59,19.6,50.9666666667,6.5,71.76,20.4633333333,39.93,22.2,47.4333333333,19.5,43.2225,6.1,754.4333333333,97,4.6666666667,37.6666666667,5.6,6.4569682581,6.4569682581 -50,0,21.39,39.5,18.89,42.7,22.29,38.9666666667,20.1,38.59,19.6,50.9,6.5,71.9975,20.39,39.79,22.2,47.3333333333,19.5,43.3633333333,6.1,754.3666666667,97,4.8333333333,37.3333333333,5.6,41.4991961443,41.4991961443 -50,0,21.39,39.5,18.89,42.76,22.3566666667,38.9666666667,20.1,38.59,19.6,50.76,6.5,72.1566666667,20.39,39.79,22.2,47.1266666667,19.4633333333,43.4,6.1,754.3,97,5,37,5.6,14.9457256775,14.9457256775 -60,0,21.39,39.5,18.8566666667,42.76,22.39,38.9666666667,20.1,38.59,19.6,50.7,6.5,72.3333333333,20.39,39.73,22.2,47,19.4633333333,43.4666666667,6.1333333333,754.2333333333,96.6666666667,5,37.3333333333,5.6,29.1073531029,29.1073531029 -50,0,21.39,39.5,18.79,42.76,22.39,38.9666666667,20.0666666667,38.56,19.6,50.59,6.5,72.4,20.39,39.7,22.2,47,19.39,43.4,6.1666666667,754.1666666667,96.3333333333,5,37.6666666667,5.6,15.066884947,15.066884947 -60,0,21.39,39.5,18.76,42.8266666667,22.39,39,20,38.5,19.6,50.53,6.5,72.59,20.39,39.7,22.2,47.06,19.4633333333,43.4666666667,6.2,754.1,96,5,38,5.6,27.0025520353,27.0025520353 -50,0,21.3566666667,39.5,18.76,42.9,22.39,39,20,38.56,19.5,50.4666666667,6.5,72.6566666667,20.39,39.8333333333,22.1,47,19.4266666667,43.4333333333,6.2333333333,754.0333333333,95.6666666667,5,38.3333333333,5.6,41.141073464,41.141073464 -50,0,21.29,39.5,18.7,43,22.39,39,20,38.5,19.5,50.4,6.5,72.69,20.39,40,22.1,47,19.5,43.56,6.2666666667,753.9666666667,95.3333333333,5,38.6666666667,5.6,11.5172266844,11.5172266844 -50,0,21.29,39.59,18.7,43,22.39,39,20,38.5,19.5,50.29,6.5,72.7633333333,20.39,39.9333333333,22.1,46.9666666667,19.4633333333,43.59,6.3,753.9,95,5,39,5.6,47.9135247297,47.9135247297 -40,0,21.2,39.5,18.7,43.09,22.39,39,20,38.56,19.5,50.23,6.5,72.8,20.39,40,22.1,46.9,19.4633333333,43.59,6.2666666667,753.85,95,5.1666666667,38.8333333333,5.5666666667,10.7998680091,10.7998680091 -60,0,21.2,39.5,18.6333333333,43.09,22.39,39,20,38.53,19.5,50.2,6.4333333333,72.8,20.39,40,22.1,46.79,19.5,43.59,6.2333333333,753.8,95,5.3333333333,38.6666666667,5.5333333333,38.6411907966,38.6411907966 -50,0,21.2,39.5,18.6,43.09,22.39,39,20,38.59,19.5,50.1266666667,6.5,72.9,20.39,40,22.1,46.79,19.5,43.6633333333,6.2,753.75,95,5.5,38.5,5.5,4.2852652143,4.2852652143 -50,0,21.2,39.5,18.6,43.1633333333,22.39,39,19.9266666667,38.59,19.5,50.23,6.5,72.9666666667,20.39,40,22.0666666667,46.6633333333,19.4633333333,43.7,6.1666666667,753.7,95,5.6666666667,38.3333333333,5.4666666667,17.8043275722,17.8043275722 -40,0,21.2,39.59,18.6,43.2,22.39,39,19.9266666667,38.59,19.5,50.23,6.5,72.9633333333,20.39,40,22.0666666667,46.59,19.39,43.7,6.1333333333,753.65,95,5.8333333333,38.1666666667,5.4333333333,42.4748170655,42.4748170655 -40,0,21.2,39.59,18.5333333333,43.2,22.39,39,19.89,38.59,19.5,50.26,6.5,73.09,20.39,40.1933333333,22.1,46.59,19.4633333333,43.76,6.1,753.6,95,6,38,5.4,20.3385865083,20.3385865083 -30,0,21.1,39.59,18.5,43.29,22.39,39,19.89,38.59,19.4725,50.095,6.5,73.09,20.39,40.2,22.1,46.53,19.4633333333,43.76,6.1,753.5333333333,95.3333333333,6,38.5,5.4333333333,5.5675474228,5.5675474228 -30,0,21.1,39.59,18.5,43.29,22.3566666667,39,19.89,38.59,19.39,50,6.4333333333,73.09,20.39,40.26,22.0666666667,46.43,19.5,43.79,6.1,753.4666666667,95.6666666667,6,39,5.4666666667,40.8320720075,40.8320720075 -60,0,21.1,39.59,18.5,43.4,22.29,39,19.89,38.59,19.39,49.9666666667,6.4,73.19,20.39,40.26,22,46.29,19.5,43.79,6.1,753.4,96,6,39.5,5.5,20.2929165098,20.2929165098 -40,0,21.1,39.59,18.5,43.4,22.29,39.03,19.89,38.59,19.39,49.9,6.425,73.3225,20.39,40.2,22,46.26,19.5,43.79,6.1,753.3333333333,96.3333333333,6,40,5.5333333333,20.5779806362,20.5779806362 -60,0,21.1,39.6266666667,18.5,43.4666666667,22.29,39.09,19.89,38.59,19.39,49.79,6.5,73.5,20.39,40.29,22,46.2,19.5,43.8725,6.1,753.2666666667,96.6666666667,6,40.5,5.5666666667,34.0595825226,34.0595825226 -50,10,21.1,39.7,18.39,43.4,22.29,39.09,19.89,38.59,19.39,49.79,6.5,73.53,20.39,40.49,22,46.23,19.5,43.9666666667,6.1,753.2,97,6,41,5.6,17.4107900122,17.4107900122 -90,0,21,39.73,18.39,43.4,22.29,39.09,19.89,38.59,19.39,49.79,6.5,73.59,20.5,41.26,22,46.29,19.5,43.9666666667,6.15,753.2333333333,97,6,42.5,5.65,38.3540364914,38.3540364914 -70,10,21,40.1233333333,18.39,43.6266666667,22.29,38.9666666667,19.89,38.845,19.39,49.79,6.53,73.6233333333,20.4266666667,40.8666666667,21.9633333333,45.7666666667,19.5,43.9,6.2,753.2666666667,97,6,44,5.7,6.4314727671,6.4314727671 -60,0,21.1,40.6266666667,18.39,43.8333333333,22.23,38.8266666667,19.89,38.9333333333,19.39,49.7,6.53,73.69,20.39,40.1933333333,21.89,45.145,19.5,43.76,6.25,753.3,97,6,45.5,5.75,5.879466841,5.879466841 -70,0,21.0333333333,40.6266666667,18.39,43.9666666667,22.2,38.6633333333,19.89,38.9333333333,19.39,49.6266666667,6.59,73.69,20.3233333333,39.8,21.89,44.6933333333,19.5,43.7,6.3,753.3333333333,97,6,47,5.8,3.7209702539,3.7209702539 -50,0,21,40.5666666667,18.39,43.9,22.1333333333,38.53,19.89,38.9,19.39,49.56,6.59,73.69,20.29,39.3,21.79,44.1333333333,19.5,43.56,6.35,753.3666666667,97,6,48.5,5.85,45.284844737,45.284844737 -60,0,21,40.6266666667,18.39,44.03,22.0666666667,38.3633333333,19.89,38.9,19.39,49.5,6.69,73.8,20.29,38.93,21.79,43.86,19.4266666667,43.36,6.4,753.4,97,6,50,5.9,37.6148653682,37.6148653682 -40,0,21,40.45,18.39,44.09,22,38.29,19.8566666667,38.8633333333,19.3233333333,49.53,6.69,73.8,20.23,38.6566666667,21.79,43.5266666667,19.5,43.1633333333,6.4166666667,753.4333333333,97,6,50.8333333333,5.9166666667,6.7972767982,6.7972767982 -50,0,21,40.29,18.39,44.1266666667,21.89,38.2,19.79,38.79,19.3233333333,49.53,6.7266666667,73.8,20.2,38.43,21.79,43.3266666667,19.5,42.9633333333,6.4333333333,753.4666666667,97,6,51.6666666667,5.9333333333,25.9817979648,25.9817979648 -50,0,21,40.29,18.39,44.2,21.89,38.09,19.79,38.7,19.39,49.3633333333,6.8,73.8,20.2,38.23,21.7,43.06,19.4633333333,42.6933333333,6.45,753.5,97,6,52.5,5.95,8.3733036765,8.3733036765 -300,10,21,40.4333333333,18.39,44.2,21.89,38.09,19.79,38.7,19.3233333333,49.29,6.8,73.8,20.2,38.06,21.7,42.9333333333,19.39,42.4333333333,6.4666666667,753.5333333333,97,6,53.3333333333,5.9666666667,26.5874427045,26.5874427045 -140,10,21,40.5,18.39,44.2,21.79,38,19.79,38.7,19.39,49.09,6.8666666667,73.8666666667,20.2,37.9333333333,21.6666666667,42.8633333333,19.39,42.2233333333,6.4833333333,753.5666666667,97,6,54.1666666667,5.9833333333,0.1861759345,0.1861759345 -490,0,21,40.4,18.39,44.06,21.79,38.06,19.79,38.7,19.3233333333,49.03,7,73.9,20.1666666667,37.8633333333,21.6,42.73,19.39,42.03,6.5,753.6,97,6,55,6,22.6358810207,22.6358810207 -370,0,21,40.4,18.39,44.06,21.79,38.09,19.79,38.7,19.29,48.9,7,73.9,20.1,37.79,21.6,42.59,19.39,41.93,6.5833333333,753.6166666667,96.8333333333,5.8333333333,56.1666666667,6.0666666667,35.9312159591,35.9312159591 -370,0,20.89,40.7,18.39,44.09,21.79,38.1633333333,19.79,38.7,19.29,48.9,7.09,74,20.1,37.7,21.6,42.53,19.4633333333,41.8633333333,6.6666666667,753.6333333333,96.6666666667,5.6666666667,57.3333333333,6.1333333333,38.4247553651,38.4247553651 -210,0,20.89,40.7,18.39,44.2233333333,21.79,38.2,19.79,38.8266666667,19.29,48.8266666667,7.115,74,20.1,37.6266666667,21.6,42.4666666667,19.39,41.7,6.75,753.65,96.5,5.5,58.5,6.2,11.4379613893,11.4379613893 -60,0,20.89,40.7666666667,18.39,44.5,21.79,38.1266666667,19.79,38.9666666667,19.29,48.76,7.2633333333,74.06,20.1,37.59,21.5333333333,42.4,19.39,41.6266666667,6.8333333333,753.6666666667,96.3333333333,5.3333333333,59.6666666667,6.2666666667,40.0704951608,40.0704951608 -70,0,20.89,40.8266666667,18.39,44.5,21.79,38.1633333333,19.73,39.1266666667,19.29,48.6266666667,7.53,74.19,20.1,37.53,21.5,42.29,19.39,41.5,6.9166666667,753.6833333333,96.1666666667,5.1666666667,60.8333333333,6.3333333333,20.3374546021,20.3374546021 -90,0,20.89,40.6633333333,18.445,44.4,21.73,38.09,19.79,39.26,19.29,48.5,7.6566666667,74.33,20.1,37.5,21.5,42.29,19.39,41.425,7,753.7,96,5,62,6.4,5.591534765,5.591534765 -80,0,20.89,40.59,18.4633333333,44.3333333333,21.7,38.2,19.79,39.29,19.29,48.5,7.69,74.3,20.1,37.5,21.5,42.26,19.39,41.4,7.0833333333,753.75,95.8333333333,4.8333333333,62.3333333333,6.4666666667,10.8174419962,10.8174419962 -310,0,21,40.5,18.4633333333,44.26,21.7,38.2,19.79,39.29,19.29,48.3633333333,7.7633333333,74.3,20.0666666667,37.4666666667,21.5,42.2,19.39,41.29,7.1666666667,753.8,95.6666666667,4.6666666667,62.6666666667,6.5333333333,22.8653173195,22.8653173195 -370,0,21,40.4333333333,18.5,44.29,21.6,38.09,19.745,39.29,19.29,48.29,7.8666666667,74.3333333333,20,37.4666666667,21.5,42.2,19.39,41.29,7.25,753.85,95.5,4.5,63,6.6,30.2930419217,30.2930419217 -60,0,21,40.4333333333,18.5,44.23,21.6,38.1633333333,19.7,39.29,19.29,48.2,8.0666666667,74.4666666667,20,37.5,21.4266666667,42.1266666667,19.39,41.26,7.3333333333,753.9,95.3333333333,4.3333333333,63.3333333333,6.6666666667,12.4031471321,12.4031471321 -40,0,21,40.5,18.5,44.2,21.6666666667,38.1633333333,19.7,39.3633333333,19.29,48.1266666667,8.2266666667,74.53,20,37.5,21.39,42.09,19.39,41.2,7.4166666667,753.95,95.1666666667,4.1666666667,63.6666666667,6.7333333333,45.3246412566,45.3246412566 -250,0,21,40.4666666667,18.5,44.2,21.6,38.1633333333,19.7,39.4,19.26,48.0266666667,8.3,74.6566666667,20,37.5,21.39,42.09,19.39,41.2,7.5,754,95,4,64,6.8,34.4476992614,34.4476992614 -780,0,21,40.4,18.5,44.1266666667,21.6,38.1266666667,19.7,39.4,19.2,47.8266666667,8.46,74.7266666667,20,37.59,21.39,42.09,19.39,41.2,7.6833333333,754.05,95,4,63.8333333333,6.9833333333,17.1184972976,17.1184972976 -520,0,21,40.53,18.5,44.3333333333,21.6,38.4,19.7,39.4333333333,19.29,47.8633333333,8.7333333333,74.8666666667,20,37.59,21.39,42.09,19.39,41.1633333333,7.8666666667,754.1,95,4,63.6666666667,7.1666666667,44.6845431463,44.6845431463 -440,0,21.075,40.87,18.6,44.7666666667,21.84,39.25,19.7,39.5,19.29,47.79,9.1,75.1233333333,20,37.7,21.3233333333,42.09,19.39,41.09,8.05,754.15,95,4,63.5,7.35,31.6348582739,31.6348582739 -600,0,21.1,41.1633333333,18.6666666667,45.1,22.23,40.0666666667,19.7,39.53,19.2,47.7,9.2333333333,75.19,20,37.7,21.29,42.1266666667,19.39,41.09,8.2333333333,754.2,95,4,63.3333333333,7.5333333333,45.0025606668,45.0025606668 -530,0,21.1333333333,43.3933333333,18.7,45.5666666667,22.4966666667,40.3333333333,19.7,39.59,19.2,47.7,9.3,75.19,20,37.8266666667,21.29,42.2,19.39,41.09,8.4166666667,754.25,95,4,63.1666666667,7.7166666667,11.6772356094,11.6772356094 -290,0,21.2,42.86,18.7,46.1,22.7633333333,40.6266666667,19.7,39.7,19.2,47.73,9.4333333333,75.2633333333,20,37.9,21.29,42.2,19.39,41.1266666667,8.6,754.3,95,4,63,7.9,4.3135316693,4.3135316693 -240,0,21.29,43.0266666667,18.8233333333,46.7266666667,23.03,40.76,19.7,39.76,19.2,47.79,9.7266666667,75.4666666667,20,37.9983333333,21.29,42.345,19.39,41.2,8.6,754.4333333333,94.1666666667,4.3333333333,57.3333333333,7.7666666667,10.8765854617,10.8765854617 -240,0,21.3566666667,42.9,18.89,46.9333333333,23.2,40.7233333333,19.7,39.8266666667,19.23,47.9633333333,9.86,75.4666666667,20,38.09,21.29,42.4,19.39,41.2,8.6,754.5666666667,93.3333333333,4.6666666667,51.6666666667,7.6333333333,24.3465121719,24.3465121719 -80,0,21.39,42.6333333333,18.9266666667,46.8633333333,23.26,40.4633333333,19.7,39.9666666667,19.23,48.09,9.995,74.295,20,38.2,21.29,42.4666666667,19.39,41.26,8.6,754.7,92.5,5,46,7.5,39.780845691,39.780845691 -60,0,21.39,42.4333333333,19,46.5966666667,23.29,40.1333333333,19.7,40.03,19.245,48.145,10.0666666667,72.8666666667,20,38.2,21.26,42.4666666667,19.4266666667,41.5966666667,8.6,754.8333333333,91.6666666667,5.3333333333,40.3333333333,7.3666666667,6.6806933959,6.6806933959 -50,0,21.39,42.26,19,46.3333333333,23.1633333333,39.7266666667,19.7,40.09,19.2,48.09,9.8666666667,70.7933333333,20,38.2,21.26,42.5266666667,19.4266666667,41.8633333333,8.6,754.9666666667,90.8333333333,5.6666666667,34.6666666667,7.2333333333,47.3816652549,47.3816652549 -230,0,21.4633333333,42.1266666667,19,46.0666666667,22.9633333333,39.3633333333,19.7,40.09,19.2,48.03,9.53,68.7,20,38.2,21.26,42.4666666667,19.39,41.9333333333,8.6,755.1,90,6,29,7.1,42.3232300556,42.3232300556 -690,10,21.5,41.9666666667,19,45.845,22.8233333333,39.23,19.7,40.09,19.2,48,9.4633333333,67.7,20,38.06,21.2,42.4,19.4725,42.15,8.8666666667,755.2,86.8333333333,6,30.8333333333,6.7833333333,23.336015793,23.336015793 -570,0,21.5,41.8266666667,19.1333333333,45.7966666667,22.89,39.5,19.7,40.09,19.26,48.06,9.9666666667,67.1633333333,20,37.9333333333,21.2,42.29,19.5,42.1266666667,9.1333333333,755.3,83.6666666667,6,32.6666666667,6.4666666667,32.8721569385,32.8721569385 -330,0,21.5,41.8633333333,19.26,45.59,22.9633333333,39.7,19.7,40.03,19.26,48.06,10.36,63.8966666667,20,37.8633333333,21.2,42.23,19.5,42.06,9.4,755.4,80.5,6,34.5,6.15,31.6327190842,31.6327190842 -270,0,21.5666666667,41.79,19.3233333333,45.56,23.23,39.9333333333,19.7,39.95,19.26,48.06,10.2933333333,57.5933333333,20.0666666667,37.73,21.2,42.1333333333,19.5,41.9333333333,9.6666666667,755.5,77.3333333333,6,36.3333333333,5.8333333333,14.6942864405,14.6942864405 -280,0,21.6333333333,41.79,19.4633333333,45.5,23.3566666667,40.06,19.79,39.76,19.29,48.09,10.6266666667,58,20.1333333333,37.43,21.26,42,19.5,41.76,9.9333333333,755.6,74.1666666667,6,38.1666666667,5.5166666667,26.1621494661,26.1621494661 -250,0,21.7,41.73,19.5333333333,45.26,23.5333333333,40.06,19.79,39.7,19.29,48.09,10.8666666667,51.9,20.26,37.29,21.3233333333,41.7233333333,19.5,41.6266666667,10.2,755.7,71,6,40,5.2,45.8708576043,45.8708576043 -240,0,21.79,41.56,19.6,45.1266666667,23.6666666667,40.06,19.8233333333,39.56,19.29,48.1266666667,11.1266666667,48.3666666667,20.445,36.95,21.4725,41.515,19.5333333333,41.56,10.2666666667,755.7666666667,69.6666666667,5.8333333333,40,4.95,48.8667336293,48.8667336293 -190,0,21.79,41.4333333333,19.73,44.93,23.73,39.7666666667,19.89,39.5,19.29,48.2,11.3666666667,46.1933333333,20.5,36.6333333333,21.5,41.23,19.6,41.4333333333,10.3333333333,755.8333333333,68.3333333333,5.6666666667,40,4.7,5.1061109174,5.1061109174 -80,0,21.89,41.3333333333,19.79,44.6566666667,23.79,39.36,19.89,39.26,19.3233333333,48.1633333333,11.5666666667,45.2666666667,20.5,36.36,21.5333333333,40.9666666667,19.6,41.26,10.4,755.9,67,5.5,40,4.45,19.4372792146,19.4372792146 -650,0,21.9725,41.1175,19.8233333333,44.43,23.76,38.99,19.89,39.2,19.39,48.09,11.7266666667,45.3633333333,20.6333333333,36.06,21.6,40.6933333333,19.6,41.26,10.4666666667,755.9666666667,65.6666666667,5.3333333333,40,4.2,41.0352260573,41.0352260573 -660,0,22,41.09,19.9633333333,44.23,23.7,38.8425,20,39.06,19.39,48.06,11.7266666667,45.0966666667,20.7,35.86,21.6333333333,40.89,19.6333333333,41.4266666667,10.5333333333,756.0333333333,64.3333333333,5.1666666667,40,3.95,34.8801548942,34.8801548942 -370,0,22.1,41.2,20,44.06,23.76,39.1333333333,20,38.9333333333,19.3233333333,48,11.53,40.7266666667,20.79,35.49,21.7,41.2233333333,19.7,41.76,10.6,756.1,63,5,40,3.7,12.1864812914,12.1864812914 -310,0,22.1666666667,41.4,20,43.9333333333,24.0333333333,39.4633333333,20,38.76,19.39,48,11.13,41.1333333333,20.8566666667,35.29,21.8233333333,41.4633333333,19.7,41.9333333333,10.5,756.1666666667,64,5.1666666667,40,3.85,43.0151248467,43.0151248467 -330,0,22.23,41.7666666667,20.0333333333,43.8633333333,24.1666666667,39.59,20,38.6266666667,19.39,48,11,41.3966666667,21.0333333333,35.0266666667,21.89,41.53,19.7,42,10.4,756.2333333333,65,5.3333333333,40,4,47.8929713718,47.8929713718 -320,10,22.29,41.9,20.1,43.79,24.3233333333,39.56,20.0333333333,38.5,19.3566666667,48.03,11.025,39.665,21.1666666667,34.7666666667,22.0333333333,41.4333333333,19.7,42.09,10.3,756.3,66,5.5,40,4.15,18.9370651264,18.9370651264 -310,0,22.3233333333,41.7966666667,20.1333333333,43.79,24.4633333333,39.5,20.1,38.4333333333,19.3566666667,48.09,11.0333333333,38.1566666667,21.2,34.3633333333,22.1666666667,41.36,19.7,42.09,10.2,756.3666666667,67,5.6666666667,40,4.3,41.0377264721,41.0377264721 -260,0,22.39,41.39,20.2,43.79,24.5,39.3333333333,20.1,38.26,19.39,48.09,11.03,41.5266666667,21.2,34.1566666667,22.29,41.26,19.76,42.06,10.1,756.4333333333,68,5.8333333333,40,4.45,3.7312595989,3.7312595989 -200,0,22.39,41.1333333333,20.2,43.79,24.5,39.0666666667,20.1,38.0666666667,19.39,48.09,10.83,40.06,21.2,33.9666666667,22.3566666667,41.1266666667,19.76,42,10,756.5,69,6,40,4.6,7.299419248,7.299419248 -110,0,22.4633333333,41,20.26,43.73,24.5333333333,38.6,20.1,37.9666666667,19.39,48.09,11.19,39.3633333333,21.2,33.8266666667,22.4266666667,41,19.73,41.9333333333,10.0666666667,756.5833333333,68.5,5.6666666667,40,4.5333333333,29.0287644253,29.0287644253 -500,0,22.5,40.79,20.245,43.495,24.5333333333,38.2666666667,20.1,37.9,19.39,48.09,10.93,37.83,21.23,33.59,22.5666666667,40.86,19.7675,42,10.1333333333,756.6666666667,68,5.3333333333,40,4.4666666667,24.7860536445,24.7860536445 -640,0,22.5,40.6566666667,20.23,43.3266666667,24.29,38.0966666667,20.1,37.7233333333,19.39,48.09,10.8,41.2333333333,21.29,33.59,22.6333333333,40.6633333333,19.76,42,10.2,756.75,67.5,5,40,4.4,32.9210995929,32.9210995929 -420,0,22.6,40.4666666667,20.29,43.4,24.3566666667,38.3633333333,20.1,37.5675,19.39,48.09,10.9333333333,39.7,21.3233333333,33.3333333333,22.76,40.53,19.79,42,10.2666666667,756.8333333333,67,4.6666666667,40,4.3333333333,37.7352518961,37.7352518961 -320,0,22.6,40.4,20.3233333333,43.3333333333,24.5,38.59,20.1,37.5,19.39,48.09,11.09,37.8266666667,21.39,33.1266666667,22.79,40.3633333333,19.79,42,10.3333333333,756.9166666667,66.5,4.3333333333,40,4.2666666667,27.2361751995,27.2361751995 -300,0,22.6,40.26,20.3233333333,43.2,24.5666666667,38.53,20.1,37.3633333333,19.4266666667,48.1266666667,10.63,35.0266666667,21.39,32.8633333333,22.8566666667,40.29,19.79,41.9666666667,10.4,757,66,4,40,4.2,31.6788839875,31.6788839875 -280,0,22.6,40.26,20.29,43.1633333333,24.6333333333,38.5,20.1,37.23,19.4266666667,48.1266666667,10.2333333333,38.7633333333,21.3233333333,32.79,22.89,40.1633333333,19.79,41.7666666667,10.3166666667,757.1166666667,65.3333333333,3.8333333333,40,4,13.6307658278,13.6307658278 -330,10,22.6,40.29,20.29,42.9633333333,24.8266666667,38.6333333333,20.1,37.2,19.39,48.06,9.96,40.0966666667,21.29,32.6633333333,22.9633333333,39.9633333333,19.79,41.7,10.2333333333,757.2333333333,64.6666666667,3.6666666667,40,3.8,41.2165340618,41.2165340618 -240,0,22.6,40.29,20.29,42.49,25.1333333333,38.79,20.1,37.2,19.4633333333,48.06,9.7633333333,41.6333333333,21.29,32.5675,23.05,39.9,19.79,41.7,10.15,757.35,64,3.5,40,3.6,32.8160977573,32.8160977573 -170,0,22.7,40.6266666667,20.3566666667,42.1566666667,25.2,38.5966666667,20.1,37.09,19.5,48.06,9.63,42.16,21.23,32.4333333333,23.1333333333,39.9,19.76,41.56,10.0666666667,757.4666666667,63.3333333333,3.3333333333,40,3.4,10.1148795104,10.1148795104 -110,0,22.7,40.76,20.39,41.9666666667,25.29,38.1333333333,20.1,37.09,19.5,48,9.6,44.86,21.2,32.4,23.2,39.8266666667,19.76,41.4333333333,9.9833333333,757.5833333333,62.6666666667,3.1666666667,40,3.2,39.6808960359,39.6808960359 -470,30,22.79,40.6,20.4633333333,41.9666666667,25.23,37.7266666667,20.1,37.2566666667,19.6,47.8633333333,9.7333333333,42.86,21.2,32.3266666667,23.23,39.7,19.79,41.2,9.9,757.7,62,3,40,3,31.7187382723,31.7187382723 -380,20,22.89,40.6266666667,20.5,41.5633333333,25,37.7,20.1666666667,37.9233333333,19.6,47.6566666667,9.89,42.66,21.29,34.5266666667,23.29,39.6266666667,19.79,41.0666666667,9.6,757.7666666667,64,2.8333333333,40,3.1,29.7420875402,29.7420875402 -330,20,22.89,40.5,20.5666666667,41.23,25.1333333333,38.36,20.23,38.4633333333,19.6,47.43,9.795,39.4725,21.43,35.2666666667,23.3233333333,39.4666666667,19.79,40.8633333333,9.3,757.8333333333,66,2.6666666667,40,3.2,25.3209873801,25.3209873801 -340,20,23,40.5,20.7,41.26,25.3266666667,38.5,20.29,38.59,19.6666666667,47.29,9.5633333333,40.03,21.5333333333,35.5666666667,23.39,39.3266666667,19.79,40.6566666667,9,757.9,68,2.5,40,3.3,37.4698290601,37.4698290601 -320,20,23.0666666667,40.5,20.76,41.2,25.4266666667,38.4666666667,20.39,38.56,19.6333333333,47.1266666667,9.2333333333,43.1,21.6666666667,35.8333333333,23.39,39.29,19.79,40.43,8.7,757.9666666667,70,2.3333333333,40,3.4,16.1689248867,16.1689248867 -510,0,23.1333333333,40.4633333333,20.79,41.1633333333,25.5666666667,38.3266666667,20.39,38.5,19.7,47.0666666667,8.9,45.5666666667,21.73,36,23.39,39.43,19.79,40.1566666667,8.4,758.0333333333,72,2.1666666667,40,3.5,24.720254913,24.720254913 -880,10,23.2,40.53,20.8566666667,41.03,25.6333333333,38.26,20.5,38.7666666667,19.7,46.8,8.06,48.73,21.8566666667,36.06,23.29,39.6566666667,19.73,39.8633333333,8.1,758.1,74,2,40,3.6,49.2701314506,49.2701314506 -440,0,23.23,42.9,20.89,40.9933333333,25.7,38.0666666667,20.5,39.3,19.6666666667,46.6633333333,7.5333333333,50.6566666667,21.89,35.9666666667,23.3566666667,39.8633333333,19.79,39.73,8,758.1666666667,73.3333333333,1.8333333333,40,3.4,4.2959439452,4.2959439452 -110,10,23.3566666667,49.5666666667,20.9633333333,42.1933333333,25.6666666667,38.23,20.5,41.23,19.6666666667,46.7966666667,6.7666666667,52.6933333333,21.7633333333,35.2266666667,23.3566666667,39.9,19.79,39.6633333333,7.9,758.2333333333,72.6666666667,1.6666666667,40,3.2,10.2071130532,10.2071130532 -110,10,23.5,48.2333333333,21.1,43.595,25.6,38.23,20.5666666667,43.03,19.7,47.39,6.2675,54.0925,21.5666666667,34.6,23.29,39.5,19.79,39.4975,7.8,758.3,72,1.5,40,3,43.5622935882,43.5622935882 -130,10,23.5,47.4333333333,21.1333333333,43.86,25.4633333333,38.23,20.6,44.1933333333,19.7,47.69,5.7966666667,55.36,21.4266666667,34.1333333333,23.29,39.3175,19.79,39.3266666667,7.7,758.3666666667,71.3333333333,1.3333333333,40,2.8,26.7780614668,26.7780614668 -110,10,23.6,45.1333333333,21.2,43.9333333333,25.3233333333,38.3633333333,20.625,44.295,19.7,48.0666666667,5.3966666667,56.1666666667,21.39,33.7233333333,23.29,39.3633333333,19.79,39.29,7.6,758.4333333333,70.6666666667,1.1666666667,40,2.6,26.4095236314,26.4095236314 -120,10,23.6666666667,43.9333333333,21.2,43.6933333333,25.1666666667,38.29,20.7,43.7333333333,19.7,48.2,4.9333333333,57.0933333333,21.3233333333,33.4633333333,23.3233333333,39.5,19.79,39.29,7.5,758.5,70,1,40,2.4,21.86277695,21.86277695 -130,0,23.6,42.8333333333,21.2,43.3,25.0333333333,38.29,20.7,42.6966666667,19.7,48.06,4.66,58.2933333333,21.2,33.2,23.39,39.4333333333,19.73,39.26,7.1333333333,758.6,72.6666666667,1,38.1666666667,2.5166666667,25.7565868902,25.7565868902 -180,0,23.6,42.1,21.2,42.9,24.8266666667,38.1333333333,20.6333333333,41.8233333333,19.7,48,4.4333333333,59.1666666667,21.2,33.045,23.5,39.29,19.73,39.1266666667,6.7666666667,758.7,75.3333333333,1,36.3333333333,2.6333333333,34.3089009286,34.3089009286 -130,10,23.6666666667,41.46,21.2,42.5666666667,24.6333333333,37.9333333333,20.6,41.0633333333,19.7,47.79,4.2266666667,60.3,21.1,32.8633333333,23.5,39.29,19.76,39,6.4,758.8,78,1,34.5,2.75,0.551523827,0.551523827 -130,0,23.6,40.8666666667,21.1,42.7933333333,24.5666666667,38,20.6,40.53,19.7,48.1966666667,4.23,62.1233333333,21.1,32.856,23.5,39.4,19.7,38.86,6.0333333333,758.9,80.6666666667,1,32.6666666667,2.8666666667,1.8974964274,1.8974964274 -110,0,23.6,40.79,21.1,43.3333333333,24.5,37.9333333333,20.5666666667,39.99,19.7,48.4333333333,4.03,61.93,21.0333333333,32.7666666667,23.5666666667,39.3266666667,19.7,38.6633333333,5.6666666667,759,83.3333333333,1,30.8333333333,2.9833333333,8.0372952041,8.0372952041 -110,0,23.6,40.73,21,43.5666666667,24.3566666667,37.9,20.5,39.6566666667,19.76,48.6333333333,3.9666666667,63.0966666667,20.9633333333,32.6633333333,23.6,39.2,19.7,38.53,5.3,759.1,86,1,29,3.1,38.5417839745,38.5417839745 -110,0,23.6,40.6633333333,20.9266666667,43.7,24.29,37.8266666667,20.5,39.2233333333,19.79,48.9,3.645,62.5225,20.89,32.59,23.6,39.29,19.7,38.4666666667,5.0333333333,759.1166666667,86.8333333333,1,28.5,2.9666666667,29.9342794111,29.9342794111 -100,0,23.525,40.47,20.8566666667,43.6333333333,24.2,37.73,20.5,39.03,19.79,48.9,3.36,62.3266666667,20.89,32.4666666667,23.6,39.23,19.7,38.4,4.7666666667,759.1333333333,87.6666666667,1,28,2.8333333333,16.4311770117,16.4311770117 -110,0,23.5,40.23,20.79,43.5,24.175,37.745,20.39,38.7233333333,19.79,48.8633333333,3.23,63.6966666667,20.89,32.4,23.6,39.1633333333,19.7,38.29,4.5,759.15,88.5,1,27.5,2.7,7.1623781812,7.1623781812 -110,10,23.5,40.0266666667,20.76,43.3633333333,24.0333333333,37.6566666667,20.39,38.53,19.73,48.6566666667,3.29,64.5633333333,20.79,32.29,23.6,39.03,19.7,38.23,4.2333333333,759.1666666667,89.3333333333,1,27,2.5666666667,27.2658927948,27.2658927948 -110,0,23.4266666667,39.7666666667,20.7,43.29,23.9633333333,37.59,20.4633333333,38.3333333333,19.79,48.4666666667,3.2,64.8333333333,20.79,32.29,23.6,38.9666666667,19.7,38.1633333333,3.9666666667,759.1833333333,90.1666666667,1,26.5,2.4333333333,11.8079140899,11.8079140899 -90,0,23.39,39.6333333333,20.6,43.09,23.89,37.59,20.39,38.1266666667,19.79,48.2666666667,3.26,65.56,20.76,32.2,23.6,38.9,19.7,38.09,3.7,759.2,91,1,26,2.3,39.7918413044,39.7918413044 -70,10,23.39,39.5,20.5333333333,43.03,23.79,37.59,20.39,38.06,19.79,48.0266666667,3.06,64.56,20.7,32.2,23.6,38.79,19.6666666667,37.9666666667,3.3833333333,759.2,91.6666666667,1,25.6666666667,2.0833333333,11.727916752,11.727916752 -70,0,23.3566666667,39.56,20.5,42.93,23.73,37.59,20.39,38.2666666667,19.815,48.05,2.86,64.0266666667,20.7,32.5175,23.5333333333,38.99,19.6,37.9,3.0666666667,759.2,92.3333333333,1,25.3333333333,1.8666666667,19.8483930086,19.8483930086 -50,0,23.29,39.6933333333,20.4266666667,42.4566666667,23.7,37.7,20.39,39.5566666667,19.89,47.8175,2.6633333333,64.56,20.76,33.6966666667,23.6,39.4633333333,19.7,38.7266666667,2.75,759.2,93,1,25,1.65,3.5900091985,3.5900091985 -50,0,23.26,39.5266666667,20.29,41.9666666667,23.6333333333,37.6266666667,20.4633333333,40.2966666667,19.8566666667,47.76,2.53,64.4977777778,20.8677777778,34.37,23.5333333333,39.7477777778,19.7675,39.1725,2.4333333333,759.2,93.6666666667,1,24.6666666667,1.4333333333,11.405997735,11.405997735 -70,0,23.2,39.3266666667,20.2675,41.795,23.5666666667,37.59,20.5333333333,40.6266666667,19.79,47.775,2.4071428571,65.0964285714,20.8172727273,34.6881818182,23.493125,40.2875,19.79,39.29,2.1166666667,759.2,94.3333333333,1,24.3333333333,1.2166666667,32.0215891348,32.0215891348 -50,10,23.2,39.1633333333,20.2,41.76,23.5666666667,37.6633333333,20.6,40.7225,19.78,47.785,2.2777777778,64.75,20.7955555556,34.7861111111,23.4022222222,40.645,19.76,39.36,1.8,759.2,95,1,24,1,44.8373839259,44.8373839259 -50,0,23.2,39.03,20.1,41.79,23.5,37.59,20.6,40.73,19.76,47.73,2.145,64.9033333333,20.79,34.8633333333,23.3733333333,41.0161111111,19.7,39.5,1.75,759.2,95.3333333333,1,23.3333333333,1.0166666667,39.9510010728,39.9510010728 -50,0,23.1,38.9,20.0333333333,41.73,23.5,37.59,20.6,40.76,19.715,47.6938888889,2.07,65.215,20.79,34.9,23.29,41.3477777778,19.7,39.6266666667,1.7,759.2,95.6666666667,1,22.6666666667,1.0333333333,9.5634326222,9.5634326222 -50,0,23.1,38.9666666667,19.89,41.8266666667,23.39,37.5,20.6666666667,40.8333333333,19.7,47.6266666667,2.06,65.62,20.79,34.975,23.235,41.7455555556,19.7,39.76,1.65,759.2,96,1,22,1.05,35.5682093068,35.5682093068 -60,0,23.0666666667,38.8633333333,19.8233333333,41.8266666667,23.39,37.5,20.7,40.79,19.705,47.585,2.005,65.7083333333,20.79,35.1477777778,23.2,42.1138888889,19.7,39.9333333333,1.6,759.2,96.3333333333,1,21.3333333333,1.0666666667,39.2900988227,39.2900988227 -60,0,23,38.73,19.79,41.9,23.39,37.4333333333,20.7,40.79,19.715,47.54,1.9377777778,65.7055555556,20.79,35.395,23.2,42.4872222222,19.7,40.1333333333,1.55,759.2,96.6666666667,1,20.6666666667,1.0833333333,23.7939649844,23.7939649844 -70,0,23,38.59,19.73,41.9666666667,23.39,37.5,20.7,40.79,19.7,47.5044444444,1.8633333333,65.6727777778,20.79,35.6083333333,23.1277777778,42.9527777778,19.7,40.3266666667,1.5,759.2,97,1,20,1.1,17.2534675221,17.2534675221 -50,0,23,38.59,19.6666666667,42.06,23.39,37.5,20.7,40.73,19.7,47.4444444444,1.8205555556,66.0488888889,20.79,35.8205555556,23.1,43.2605555556,19.7,40.4666666667,1.6333333333,759.1333333333,96,1,21.1666666667,1.0666666667,7.1809939109,7.1809939109 -60,0,22.9633333333,38.4666666667,19.5333333333,42.06,23.39,37.5,20.7,40.7,19.7,47.4111111111,1.8572222222,66.9038888889,20.79,35.9,23.0888888889,43.5238888889,19.79,40.59,1.7666666667,759.0666666667,95,1,22.3333333333,1.0333333333,44.7442657896,44.7442657896 -50,0,22.865,38.3725,19.4633333333,42.2,23.3566666667,37.5,20.6333333333,40.5666666667,19.7,47.4,1.8633333333,67.2216666667,20.8233333333,35.96,23.0277777778,43.6044444444,19.79,40.6633333333,1.9,759,94,1,23.5,1,17.3642083537,17.3642083537 -50,0,22.79,38.23,19.39,42.2,23.29,37.56,20.6666666667,40.56,19.7,47.3327777778,1.8444444444,67.5322222222,20.8233333333,36.015,23,43.67,19.73,40.8266666667,2.0333333333,758.9333333333,93,1,24.6666666667,0.9666666667,15.1341359247,15.1341359247 -50,0,22.79,38.09,19.29,42.3266666667,23.29,37.5,20.6,40.5,19.7,47.29,1.9555555556,68.1188888889,20.8011111111,36.2016666667,22.9755555556,43.9033333333,19.79,40.9,2.1666666667,758.8666666667,92,1,25.8333333333,0.9333333333,5.404514377,5.404514377 -50,0,22.79,38.03,19.29,42.3266666667,23.29,37.56,20.6,40.4,19.6777777778,47.255,1.8811111111,68.1205555556,20.8233333333,36.5644444444,22.9388888889,44.1105555556,19.79,41,2.3,758.8,91,1,27,0.9,28.7083905423,28.7083905423 -50,0,22.7,38,19.2,42.2,23.29,37.5,20.6,40.4,19.6666666667,47.1833333333,1.8877777778,68.4044444444,20.8622222222,36.63,22.8961111111,44.2,19.79,41.06,2.65,758.8,90.1666666667,1.3333333333,27.1666666667,1.1166666667,28.8754287059,28.8754287059 -60,0,22.7,37.9333333333,19.1333333333,42.2,23.29,37.5,20.6,40.4,19.6722222222,47.1694444444,1.7911111111,68.02,20.8566666667,36.6333333333,22.89,44.245,19.79,41.1566666667,3,758.8,89.3333333333,1.6666666667,27.3333333333,1.3333333333,10.2891954477,10.2891954477 -60,0,22.6666666667,37.8633333333,19.1,42.2,23.29,37.5,20.6,40.3266666667,19.6,47.09,1.6266666667,67.3294444444,20.8233333333,36.5983333333,22.89,44.285,19.79,41.29,3.35,758.8,88.5,2,27.5,1.55,22.8760058992,22.8760058992 -50,0,22.6,37.79,19.0333333333,42.0666666667,23.29,37.5,20.6,40.29,19.6,47.09,1.5033333333,67.2561111111,20.8011111111,36.6927777778,22.84,44.155,19.79,41.4,3.7,758.8,87.6666666667,2.3333333333,27.6666666667,1.7666666667,3.3813809045,3.3813809045 -60,0,22.6,37.79,19,41.9666666667,23.29,37.56,20.5333333333,40.29,19.6,47.075,1.6888888889,68.225,20.8288888889,36.8533333333,22.79,44.085,19.79,41.425,4.05,758.8,86.8333333333,2.6666666667,27.8333333333,1.9833333333,31.8402130506,31.8402130506 -60,0,22.5333333333,37.73,18.9175,41.975,23.29,37.5,20.5666666667,40.2,19.6,47.03,1.6161111111,67.705,20.79,36.9166666667,22.79,44.01,19.79,41.5,4.4,758.8,86,3,28,2.2,40.2522863005,40.2522863005 -50,0,22.5,37.7,18.8233333333,41.9333333333,23.29,37.5,20.5,40.2,19.6,47,1.3911111111,67.0166666667,20.79,37.02,22.79,43.9166666667,19.79,41.59,4.3333333333,758.75,86,3,27.8333333333,2.1333333333,22.2464692662,22.2464692662 -50,0,22.5,37.7,18.79,41.9,23.29,37.5,20.5,40.2,19.6,47,1.3788888889,67.3605555556,20.7955555556,37.005,22.79,43.8205555556,19.79,41.59,4.2666666667,758.7,86,3,27.6666666667,2.0666666667,41.8646718375,41.8646718375 -50,0,22.39,37.59,18.79,41.9666666667,23.29,37.5,20.5,40.09,19.6,47,1.2927777778,66.9127777778,20.8066666667,37.015,22.775,43.775,19.79,41.6266666667,4.2,758.65,86,3,27.5,2,27.9862194438,27.9862194438 -50,0,22.39,37.59,18.7,42,23.29,37.5,20.4266666667,40.03,19.6,47,1.1388888889,66.3261111111,20.8177777778,37.1177777778,22.7,43.7,19.79,41.76,4.1333333333,758.6,86,3,27.3333333333,1.9333333333,34.7070933902,34.7070933902 -50,0,22.29,37.59,18.7,42,23.29,37.5,20.39,40,19.5777777778,46.95,1.05,66.14,20.8177777778,37.1755555556,22.7,43.6033333333,19.79,41.8266666667,4.0666666667,758.55,86,3,27.1666666667,1.8666666667,13.6577049852,13.6577049852 -40,0,22.29,37.59,18.7,42.09,23.29,37.5,20.39,39.9333333333,19.6,46.9222222222,0.9444444444,66.1266666667,20.8011111111,37.0333333333,22.7,43.51,19.79,41.9,4,758.5,86,3,27,1.8,47.3196344799,47.3196344799 -40,0,22.29,37.59,18.6333333333,42.03,23.29,37.5,20.39,39.8633333333,19.6,46.9333333333,0.9888888889,66.7383333333,20.79,36.9722222222,22.6833333333,43.3344444444,19.79,42,3.8666666667,758.4333333333,86.3333333333,2.8333333333,26.5,1.7333333333,0.2241692622,0.2241692622 -40,0,22.23,37.53,18.6,42.1266666667,23.29,37.5,20.39,39.79,19.6,46.9181818182,0.9833333333,66.9583333333,20.79,36.9,22.6,43.2069230769,19.79,42.06,3.7333333333,758.3666666667,86.6666666667,2.6666666667,26,1.6666666667,15.0902634021,15.0902634021 -30,0,22.2,37.5,18.5333333333,42.26,23.29,37.4333333333,20.39,39.76,19.5181818182,46.9181818182,1.1,67.495,20.79,37.095,22.6,43.2654545455,19.79,42.09,3.6,758.3,87,2.5,25.5,1.6,19.5883602952,19.5883602952 -50,0,22.2,37.5,18.5,42.29,23.29,37.5,20.3233333333,39.7,19.5222222222,46.9222222222,1.1454545455,67.8,20.79,37.20875,22.6,43.23,19.79,42.1633333333,3.4666666667,758.2333333333,87.3333333333,2.3333333333,25,1.5333333333,27.1767067607,27.1767067607 -50,0,22.1,37.5,18.5,42.43,23.29,37.5,20.3566666667,39.7,19.5111111111,46.9,1.1916666667,67.9575,20.79,37.2736363636,22.58125,43.138125,19.79,42.09,3.3333333333,758.1666666667,87.6666666667,2.1666666667,24.5,1.4666666667,33.7425623438,33.7425623438 -60,0,22.1,37.5,18.39,42.4,23.29,37.5,20.29,39.7,19.5,46.9,1.2171428571,68.1995238095,20.79,37.25,22.5555555556,43.0294444444,19.79,42.09,3.2,758.1,88,2,24,1.4,1.2449096073,1.2449096073 -50,0,22.1,37.5,18.39,42.4666666667,23.29,37.5,20.29,39.59,19.5,46.893125,1.3885,68.6705,20.79,37.29,22.5,42.9388888889,19.79,42.09,3.1666666667,758.0166666667,88,2.1666666667,23.8333333333,1.3666666667,17.86671757,17.86671757 -50,0,22,37.4,18.29,42.53,23.29,37.5,20.29,39.59,19.5,46.8816666667,1.4984210526,68.8405263158,20.79,37.3144444444,22.5,42.9888888889,19.79,42.1633333333,3.1333333333,757.9333333333,88,2.3333333333,23.6666666667,1.3333333333,7.2339232196,7.2339232196 -60,0,22,37.4,18.29,42.59,23.2,37.5,20.29,39.59,19.5,46.9,1.6,68.9,20.79,37.29,22.5,42.9166666667,19.79,42.2,3.1,757.85,88,2.5,23.5,1.3,28.901972936,28.901972936 -50,0,22,37.4,18.29,42.59,23.26,37.56,20.29,39.59,19.5,46.8572222222,1.6411764706,68.9529411765,20.79,37.215,22.4877777778,42.7983333333,19.79,42.2,3.0666666667,757.7666666667,88,2.6666666667,23.3333333333,1.2666666667,1.2553303153,1.2553303153 -60,0,22,37.4,18.23,42.59,23.26,37.56,20.26,39.56,19.5,46.8022222222,1.75,69.12,20.79,37.225,22.4083333333,42.715,19.79,42.2,3.0333333333,757.6833333333,88,2.8333333333,23.1666666667,1.2333333333,37.6635642373,37.6635642373 -60,0,21.89,37.4,18.2,42.6266666667,23.2,37.5,20.2,39.5,19.5,46.8266666667,1.8633333333,69.2911111111,20.77,37.3572222222,22.39,42.7,19.79,42.2,3,757.6,88,3,23,1.2,25.3468718496,25.3468718496 -50,0,21.89,37.4,18.175,42.7225,23.29,37.59,20.2,39.4666666667,19.5,46.8266666667,1.9445454545,69.4263636364,20.79,37.4166666667,22.39,42.6694444444,19.79,42.2,3.1166666667,757.5333333333,87.6666666667,3.1666666667,23,1.2666666667,39.4200762967,39.4200762967 -50,0,21.79,37.29,18.1,42.79,23.29,37.59,20.175,39.4,19.5,46.83,2.0554545455,69.6372727273,20.79,37.4583333333,22.39,42.67,19.79,42.29,3.2333333333,757.4666666667,87.3333333333,3.3333333333,23,1.3333333333,47.0409081783,47.0409081783 -50,0,21.79,37.29,18.1,42.79,23.29,37.7,20.1666666667,39.4,19.5,46.85,2.2872727273,69.8327272727,20.79,37.5,22.3718181818,42.61,19.79,42.29,3.35,757.4,87,3.5,23,1.4,2.2816362791,2.2816362791 -40,0,21.79,37.29,18.0333333333,42.79,23.29,37.7,20.1,39.4,19.5,46.8266666667,2.45,70.0338888889,20.77,37.5,22.3177777778,42.6144444444,19.79,42.4,3.4666666667,757.3333333333,86.6666666667,3.6666666667,23,1.4666666667,20.7667230978,20.7667230978 -50,0,21.73,37.29,18.0333333333,42.9333333333,23.26,37.6633333333,20.1,39.4,19.5,46.79,2.6227777778,70.1511111111,20.77,37.5,22.34,42.645,19.79,42.4,3.5833333333,757.2666666667,86.3333333333,3.8333333333,23,1.5333333333,34.2542353435,34.2542353435 -60,0,21.7,37.29,18.0333333333,42.9333333333,23.2,37.59,20.1,39.3633333333,19.5,46.79,2.76,70.19,20.76,37.5,22.3066666667,42.72,19.79,42.4,3.7,757.2,86,4,23,1.6,24.297254195,24.297254195 -60,0,21.7,37.3633333333,18,42.9333333333,23.2,37.7,20.1,39.3633333333,19.4755555556,46.77,2.9355555556,70.3816666667,20.76,37.555,22.29,42.7,19.79,42.4,3.8333333333,757.1666666667,85.6666666667,4,23.6666666667,1.6666666667,32.1565009421,32.1565009421 -60,0,21.6666666667,37.3633333333,17.9266666667,43,23.2,37.7,20.1,39.29,19.5,46.79,3.145,70.5,20.745,37.59,22.29,42.7,19.79,42.4,3.9666666667,757.1333333333,85.3333333333,4,24.3333333333,1.7333333333,24.0778451436,24.0778451436 -50,0,21.6666666667,37.3633333333,17.89,43.03,23.2,37.73,20.1,39.29,19.4755555556,46.77,3.3588888889,70.6766666667,20.725,37.58,22.29,42.7,19.79,42.4,4.1,757.1,85,4,25,1.8,11.1243260559,11.1243260559 -60,0,21.6,37.29,17.89,43.09,23.2,37.73,20.1,39.29,19.4755555556,46.77,3.545,70.8111111111,20.735,37.55,22.26,42.6633333333,19.79,42.3633333333,4.2333333333,757.0666666667,84.6666666667,4,25.6666666667,1.8666666667,11.5421447321,11.5421447321 -40,0,21.6,37.3633333333,17.89,43.09,23.23,37.73,20.0333333333,39.29,19.445,46.745,3.7166666667,70.9555555556,20.715,37.58,22.265,42.6694444444,19.79,42.29,4.3666666667,757.0333333333,84.3333333333,4,26.3333333333,1.9333333333,11.6185705294,11.6185705294 -60,0,21.6,37.4,17.89,43.09,23.29,37.79,20.0666666667,39.26,19.445,46.745,3.845,71.03,20.73,37.6622222222,22.225,42.6205555556,19.79,42.29,4.5,757,84,4,27,2,30.655221967,30.655221967 -50,0,21.525,37.4,17.89,43.09,23.2,37.7,20,39.26,19.4327777778,46.735,3.9661111111,71.055,20.725,37.835,22.2,42.59,19.79,42.3633333333,4.75,756.95,83.6666666667,4.1666666667,26.5,2.1833333333,17.1232132474,17.1232132474 -50,0,21.5,37.4,17.89,43.09,23.2225,37.7675,20,39.29,19.4327777778,46.735,4.13,71.1244444444,20.765,37.8327777778,22.2,42.67,19.79,42.4,5,756.9,83.3333333333,4.3333333333,26,2.3666666667,46.0785283358,46.0785283358 -50,0,21.5,37.5,18,43.06,23.23,37.73,20,39.23,19.4083333333,46.6905555556,4.3088888889,71.2761111111,20.74,37.8205555556,22.2,42.8627777778,19.79,42.4,5.25,756.85,83,4.5,25.5,2.55,40.107710578,40.107710578 -60,0,21.5,37.5,18,42.9333333333,23.2,37.79,20,39.23,19.39,46.7,4.6172222222,71.5227777778,20.7,37.8511111111,22.2,43.0138888889,19.79,42.5,5.5,756.8,82.6666666667,4.6666666667,25,2.7333333333,33.3630976733,33.3630976733 -70,0,21.4266666667,37.4333333333,18.0333333333,42.9,23.26,37.79,20,39.29,19.39,46.7,4.8890909091,71.6627272727,20.7,37.9,22.2,43.09,19.79,42.5,5.75,756.75,82.3333333333,4.8333333333,24.5,2.9166666667,3.9141620975,3.9141620975 -80,0,21.4266666667,37.56,18.1666666667,42.8266666667,23.23,37.73,20,39.29,19.4144444444,46.72,5.33125,71.97,20.7,38.0245454545,22.18,43.1486666667,19.79,42.5,6,756.7,82,5,24,3.1,46.9130127458,46.9130127458 -90,0,21.39,37.6266666667,18.23,42.7,23.23,37.6566666667,20,39.49,19.39,46.7,5.7416666667,72.205,20.7,38.09,22.1727272727,43.2909090909,19.815,42.45,6.1333333333,756.7,83,5.6666666667,23.3333333333,3.4,18.0431896355,18.0431896355 -60,0,21.39,37.76,18.365,42.7225,23.2,37.4,20,40,19.39,46.71,6.2016666667,72.5227777778,20.7,38.145,22.1388888889,43.5616666667,19.8233333333,42.36,6.2666666667,756.7,84,6.3333333333,22.6666666667,3.7,2.1734751877,2.1734751877 -60,0,21.39,37.9333333333,18.39,42.79,23.1333333333,37.3266666667,20.075,40.35,19.39,46.72,6.5088888889,72.6466666667,20.7,38.09,22.1388888889,43.8105555556,19.79,42.26,6.4,756.7,85,7,22,4,37.7934797434,37.7934797434 -50,0,21.39,38.1933333333,18.5,43,23.1,37.2,20.1,40.4,19.39,46.73,6.8072727273,72.8072727273,20.7,38.1371428571,22.1285714286,43.9,19.79,42.2,6.5333333333,756.7,86,7.6666666667,21.3333333333,4.3,28.8411678514,28.8411678514 -60,0,21.39,38.4633333333,18.4266666667,43,23.1,37.2,20.1,40.26,19.39,46.7,6.9,72.56,20.7,38.3333333333,22.1,43.9,19.79,42.2,6.6666666667,756.7,87,8.3333333333,20.6666666667,4.6,35.457301198,35.457301198 -50,0,21.39,38.6633333333,18.4633333333,43.3266666667,23.0666666667,37.09,20.1,40.1266666667,19.39,46.79,6.9,72.3666666667,20.7,38.53,22.1,44.03,19.79,42.2,6.8,756.7,88,9,20,4.9,26.2551140971,26.2551140971 -50,0,21.39,39.0666666667,18.4633333333,43.6,23,37.09,20.1,39.9666666667,19.39,46.79,6.9633333333,72.3966666667,20.7,38.7233333333,22.1,44.09,19.79,42.1633333333,7.0833333333,756.6666666667,88.1666666667,8.6666666667,20.6666666667,5.2166666667,18.4251675848,18.4251675848 -50,0,21.39,39.2,18.4266666667,43.9633333333,22.9633333333,37.06,20.1,39.9,19.39,46.8633333333,7.2966666667,72.7966666667,20.7,38.9333333333,22.1,44.23,19.79,42.09,7.3666666667,756.6333333333,88.3333333333,8.3333333333,21.3333333333,5.5333333333,47.6384136127,47.6384136127 -60,0,21.39,39.2,18.5,44.2233333333,22.89,37.06,20.1,39.9,19.39,46.8633333333,7.66,73.03,20.7,39.1333333333,22.1,44.29,19.79,42.06,7.65,756.6,88.5,8,22,5.85,32.1148112882,32.1148112882 -110,0,21.39,39.26,18.5,44.4,22.89,37.09,20.1,39.9666666667,19.39,46.9,8,73.2966666667,20.7,39.29,22.1,44.4333333333,19.79,42,7.9333333333,756.5666666667,88.6666666667,7.6666666667,22.6666666667,6.1666666667,40.6409783405,40.6409783405 -50,0,21.39,39.36,18.5666666667,44.4666666667,22.89,37.1633333333,20.0666666667,39.9666666667,19.39,46.9,8.3666666667,73.3666666667,20.76,39.3633333333,22.1,44.8333333333,19.79,41.9,8.2166666667,756.5333333333,88.8333333333,7.3333333333,23.3333333333,6.4833333333,30.8979543159,30.8979543159 -150,0,21.39,39.56,18.6,44.59,22.89,37.1266666667,20.0666666667,40.0266666667,19.39,46.9,8.6266666667,73.2266666667,20.7,39.3633333333,22.1,45.1,19.79,41.9,8.5,756.5,89,7,24,6.8,30.8286760584,30.8286760584 -210,0,21.39,39.76,18.6,44.59,22.89,37.1266666667,20.0333333333,40.0666666667,19.4633333333,53.3,8.83,72.9666666667,20.7,39.3633333333,22.1,45.26,19.79,41.79,8.6833333333,756.4,88.3333333333,6.8333333333,24.8333333333,6.85,49.4054701412,49.4054701412 -120,0,21.39,39.795,18.6,44.56,22.89,37.2,20.0333333333,40.1266666667,21.83,85.8933333333,8.9975,72.6925,20.7,39.4333333333,22.1,45.2,19.79,41.8633333333,8.8666666667,756.3,87.6666666667,6.6666666667,25.6666666667,6.9,11.4690095186,11.4690095186 -380,0,21.39,39.9666666667,18.6666666667,44.56,22.89,37.1266666667,20,40.23,21.9566666667,84.96,9.16,72.3566666667,20.7,39.5,22.1,45.9,19.79,42.6266666667,9.05,756.2,87,6.5,26.5,6.95,18.2947597816,18.2947597816 -160,0,21.39,40.03,18.7,44.59,22.89,37.2,20,40.3633333333,21.245,87.845,9.5266666667,71.99,20.7,39.59,22.1,45.5,19.8566666667,42.76,9.2333333333,756.1,86.3333333333,6.3333333333,27.3333333333,7,42.6163321012,42.6163321012 -140,10,21.39,40.2233333333,18.76,44.6633333333,22.9266666667,37.23,20,40.5,20.8266666667,87.7666666667,10.06,70.99,20.7,39.59,22.1,44.9,19.89,42.79,9.4166666667,756,85.6666666667,6.1666666667,28.1666666667,7.05,39.9237827049,39.9237827049 -130,0,21.3566666667,40.29,18.8233333333,44.7,22.9266666667,37.29,20,40.5,20.6333333333,87.1,10.7333333333,67.59,20.7,39.59,22.1666666667,44.4266666667,19.89,42.73,9.6,755.9,85,6,29,7.1,29.399900313,29.399900313 -130,0,21.29,40.3633333333,18.9633333333,44.6266666667,22.89,37.29,20,40.6266666667,20.4633333333,86.3333333333,11.26,64.73,20.7,39.59,22.2,43.7966666667,19.89,42.59,9.9166666667,755.7666666667,82.8333333333,6.6666666667,30.8333333333,7.0166666667,39.696480881,39.696480881 -140,0,21.29,40.4,19.1333333333,44.43,22.89,37.29,20,40.7,20.2633333333,82.2666666667,11.99,57.7633333333,20.7,39.7,22.2,43.4633333333,19.89,42.4975,10.2333333333,755.6333333333,80.6666666667,7.3333333333,32.6666666667,6.9333333333,13.7333001127,13.7333001127 -210,0,21.29,40.4,19.2225,44.14,22.89,37.29,20,40.7,20.23,77.6,12.3966666667,55.23,20.7,39.6266666667,22.2,42.93,19.89,42.3266666667,10.55,755.5,78.5,8,34.5,6.85,24.7687554685,24.7687554685 -510,10,21.39,40.4,19.29,43.9633333333,22.89,37.29,20.0333333333,40.73,20.29,77.3266666667,12.63,52.4666666667,20.7,39.3333333333,22.2,42.6566666667,19.89,42.1633333333,10.8666666667,755.3666666667,76.3333333333,8.6666666667,36.3333333333,6.7666666667,6.2366695609,6.2366695609 -630,20,21.39,40.4666666667,19.4266666667,43.9,22.9266666667,37.8,20.1,40.73,20.2,75.4333333333,12.7633333333,50.5266666667,20.7,39.0666666667,22.2,42.1933333333,19.89,42.03,11.1833333333,755.2333333333,74.1666666667,9.3333333333,38.1666666667,6.6833333333,27.1699480247,27.1699480247 -500,10,21.39,40.53,19.5,43.7666666667,23.1333333333,39.1333333333,20.1,40.6633333333,20.2,73.5,13.1666666667,49.9233333333,20.7,38.8,22.2,41.9333333333,19.89,41.9,11.5,755.1,72,10,40,6.6,27.8695979272,27.8695979272 -290,20,21.39,40.53,19.6333333333,43.5266666667,23.5666666667,40.3666666667,20.1,40.7966666667,20.2,71.3333333333,13.36,46.4633333333,20.7,38.5266666667,22.2,41.76,19.89,41.8266666667,11.7,755.0166666667,71.5,9.8333333333,40,6.6666666667,48.3805880649,48.3805880649 -270,10,21.4266666667,40.8233333333,19.76,43.2666666667,23.8266666667,40.76,20.2,41.1266666667,20.1333333333,69.86,13.5633333333,45.0266666667,20.76,38.3266666667,22.2,41.5666666667,19.89,41.79,11.9,754.9333333333,71,9.6666666667,40,6.7333333333,14.6027108422,14.6027108422 -250,10,21.5,41.3633333333,19.9266666667,43.26,24.0666666667,40.2233333333,20.26,41.2,20.1,68.1,13.8233333333,43.2266666667,20.89,38.1633333333,22.23,41.4,19.89,41.79,12.1,754.85,70.5,9.5,40,6.8,17.4832318677,17.4832318677 -130,20,21.5,41.29,20,43.1266666667,24.2,39.89,20.23,40.9666666667,20.1,67.0333333333,14.0633333333,45.1,20.89,37.9633333333,22.3566666667,41.2666666667,19.89,41.8266666667,12.3,754.7666666667,70,9.3333333333,40,6.8666666667,0.3083632211,0.3083632211 -80,10,21.5666666667,41.5633333333,20.1333333333,43.09,24.29,39.3633333333,20.29,40.9,20.0666666667,65.2666666667,14.4633333333,45.7666666667,20.9266666667,37.76,22.5333333333,41.23,19.89,41.9,12.5,754.6833333333,69.5,9.1666666667,40,6.9333333333,16.1994433845,16.1994433845 -100,20,21.7,42.09,20.2,43.09,24.23,38.83,20.29,40.76,20,63,14.7266666667,44.6,21,37.6266666667,22.6,41.23,19.9266666667,42,12.7,754.6,69,9,40,7,19.2293816828,19.2293816828 -80,10,21.76,42.1633333333,20.29,43.53,23.9633333333,38.43,20.29,40.7,20,60.9566666667,14.7266666667,44.6,21.1,37.5266666667,22.6,41.3266666667,20,42.06,12.9333333333,754.4833333333,67.8333333333,8.8333333333,40,6.9833333333,18.6039435095,18.6039435095 -140,0,21.79,42.09,20.3566666667,43.4633333333,23.89,38.29,20.29,40.59,19.9266666667,59.7633333333,14.8666666667,44.9266666667,21.1,37.4,22.6,41.3725,20,42.1266666667,13.1666666667,754.3666666667,66.6666666667,8.6666666667,40,6.9666666667,25.7993917097,25.7993917097 -80,0,21.79,42.2966666667,20.4266666667,43.4633333333,23.79,38.09,20.29,40.53,19.9633333333,58.6966666667,15,41.1425,21.1333333333,37.3633333333,22.6,41.1566666667,19.9266666667,42.2,13.4,754.25,65.5,8.5,40,6.95,33.5521077039,33.5521077039 -90,0,21.89,43.09,20.5,43.59,23.79,38.09,20.3233333333,40.5,19.89,57.8966666667,15.26,39.4566666667,21.2,37.23,22.7,41.09,19.9266666667,42.2,13.6333333333,754.1333333333,64.3333333333,8.3333333333,40,6.9333333333,27.6660598232,27.6660598232 -80,0,22,42.93,20.6333333333,43.59,23.79,38.1266666667,20.39,40.7666666667,19.89,57.095,15.6966666667,36.3333333333,21.2,37.09,22.7,41.03,20,42.2,13.8666666667,754.0166666667,63.1666666667,8.1666666667,40,6.9166666667,20.10362664,20.10362664 -80,0,22,42.79,20.76,43.53,23.7225,38.2,20.39,40.8633333333,19.89,56.3633333333,15.9633333333,34.5933333333,21.26,37.03,22.7,40.8633333333,20,42.2,14.1,753.9,62,8,40,6.9,3.8807265926,3.8807265926 -80,0,22,42.6633333333,20.8233333333,43.29,23.7,38.2,20.39,40.73,19.9633333333,55.89,16.1,33.3633333333,21.29,36.8633333333,22.7,40.73,20,42.2,14,753.7833333333,62.6666666667,8,40,6.9666666667,49.4352624519,49.4352624519 -70,0,22,42.59,20.89,43.1566666667,23.6,38.1266666667,20.39,40.59,19.89,55.4,16.1,31.83,21.29,36.73,22.79,40.56,20,42.1633333333,13.9,753.6666666667,63.3333333333,8,40,7.0333333333,4.0055685909,4.0055685909 -70,0,22,42.4666666667,20.89,42.9666666667,23.6,38.2,20.39,40.53,19.89,55,15.8333333333,29.0333333333,21.29,36.6633333333,22.79,40.5,20,42.1725,13.8,753.55,64,8,40,7.1,15.3970115818,15.3970115818 -70,0,22,42.3266666667,20.9175,42.7225,23.6,38.23,20.39,40.4,19.89,54.6333333333,15.5,30.5,21.29,36.59,22.79,40.4,20,42.2,13.7,753.4333333333,64.6666666667,8,40,7.1666666667,12.0629927609,12.0629927609 -60,0,22,42.26,21,42.53,23.6,38.29,20.39,40.4,19.9633333333,54.3,15.66,32.2633333333,21.26,36.56,22.73,40.4,20,42.2,13.6,753.3166666667,65.3333333333,8,40,7.2333333333,31.141573831,31.141573831 -60,0,22,42.1266666667,20.9633333333,42.4333333333,23.5,38.29,20.39,40.4,19.89,53.93,15.4,30.7233333333,21.2,36.5,22.79,40.4,20,42.2,13.5,753.2,66,8,40,7.3,34.146329714,34.146329714 -70,0,22,41.9666666667,20.89,42.5,23.5,38.29,20.29,40.4333333333,19.89,53.6566666667,14.86,31.5,21.2,36.59,22.79,40.4,20,42.2,13.3833333333,753.1333333333,67.3333333333,8,40,7.45,36.8699193001,36.8699193001 -70,0,22,41.9,20.89,42.4,23.5,38.29,20.29,40.5,19.89,53.3333333333,14.9333333333,33.1666666667,21.2,36.7,22.7,40.4,20,42.2,13.2666666667,753.0666666667,68.6666666667,8,40,7.6,20.5310899648,20.5310899648 -80,0,22,41.76,20.89,42.2666666667,23.4266666667,38.29,20.29,40.53,19.89,53.1266666667,15.0333333333,34.1333333333,21.2,36.7,22.76,40.4666666667,20,42.2,13.15,753,70,8,40,7.75,1.2515381095,1.2515381095 -60,0,22,41.7,20.9266666667,42.2,23.39,38.29,20.29,40.59,19.89,52.8333333333,15.16,34.8,21.1333333333,36.79,22.7,40.5,20,42.2,13.0333333333,752.9333333333,71.3333333333,8,40,7.9,23.858276743,23.858276743 -80,0,22,41.59,20.9266666667,42.1266666667,23.39,38.29,20.29,40.6266666667,19.89,52.5666666667,14.8966666667,33.93,21.1333333333,36.8633333333,22.7,40.56,20,42.2,12.9166666667,752.8666666667,72.6666666667,8,40,8.05,25.7048478583,25.7048478583 -60,0,22,41.53,20.8566666667,42.1633333333,23.39,38.29,20.29,40.7,19.89,52.3333333333,14.63,34.3233333333,21.1,37,22.7,40.6266666667,20,42.2,12.8,752.8,74,8,40,8.2,23.2479775907,23.2479775907 -50,0,22,41.5,20.79,42.09,23.39,38.29,20.29,40.73,19.89,52.1266666667,14.7566666667,36.6666666667,21.1,37.06,22.7,40.7,20,42.2,12.95,752.65,73.5,7.6666666667,40,8.2333333333,4.6803099569,4.6803099569 -90,0,22,41.8333333333,20.89,42.29,23.3566666667,38.29,20.23,40.79,19.89,51.8633333333,14.9633333333,36.3333333333,21.1,37.1266666667,22.7,40.8966666667,20,42.1266666667,13.1,752.5,73,7.3333333333,40,8.2666666667,26.4253618778,26.4253618778 -100,10,22,42.09,20.89,42.3633333333,23.29,38.29,20.29,41.1666666667,19.89,51.6566666667,14.7633333333,34.6333333333,21.0333333333,37.1266666667,22.76,41.6233333333,20,42.2,13.25,752.35,72.5,7,40,8.3,1.6939850291,1.6939850291 -100,0,22,42.03,20.79,42.4333333333,23.26,38.3633333333,20.29,42.0933333333,19.89,51.56,14.74,36.575,21.0666666667,37.2,22.84,42.245,20,42.2,13.4,752.2,72,6.6666666667,40,8.3333333333,28.2646464766,28.2646464766 -100,0,21.89,41.9,20.79,42.5,23.2,38.29,20.29,42.4,19.89,51.4333333333,15.03,37.5266666667,21.0666666667,37.26,23,42.59,20,42.23,13.55,752.05,71.5,6.3333333333,40,8.3666666667,38.8677740004,38.8677740004 -120,10,22,41.79,20.79,42.5,23.1,38.4,20.29,42.4,19.89,51.3633333333,14.9633333333,34.6966666667,21.0666666667,37.3633333333,23.0666666667,42.7233333333,20,42.29,13.7,751.9,71,6,40,8.4,31.8280040054,31.8280040054 -110,0,22,41.73,20.73,42.5,23.1,38.4,20.29,42.59,19.89,51.1725,14.89,34.03,21,37.29,23.2,42.9633333333,20,42.29,13.7166666667,751.7833333333,70,6,40,8.2166666667,39.4258922664,39.4258922664 -110,0,21.9633333333,41.7,20.76,42.5,23.1,38.4,20.29,42.59,19.89,51,14.96,34.6633333333,21.1,37.4,23.26,43.2233333333,20,42.29,13.7333333333,751.6666666667,69,6,40,8.0333333333,41.4870787063,41.4870787063 -110,10,21.9633333333,41.7,20.76,42.5,23.1,38.4,20.3233333333,42.59,19.89,50.8633333333,15.2333333333,35.13,21.1,37.4,23.3233333333,43.5666666667,20,42.29,13.75,751.55,68,6,40,7.85,33.2976332633,33.2976332633 -100,0,21.9633333333,41.7,20.76,42.5,23.1,38.4,20.3233333333,42.4633333333,19.89,50.73,15.2633333333,32.6566666667,21.1,37.3633333333,23.39,43.96,20,42.29,13.7666666667,751.4333333333,67,6,40,7.6666666667,0.6471559172,0.6471559172 -110,10,21.89,41.7,20.7,42.56,23.1,38.4,20.29,42.245,19.9266666667,50.6633333333,15.0633333333,29.79,21.1,37.29,23.5,44.4,20,42.29,13.7833333333,751.3166666667,66,6,40,7.4833333333,40.936407249,40.936407249 -100,0,21.9633333333,41.59,20.6,42.5,23.1,38.4,20.29,42.06,19.9266666667,50.53,14.7333333333,29.5666666667,21.1,37.1633333333,23.5666666667,44.4,20,42.29,13.8,751.2,65,6,40,7.3,10.9398230095,10.9398230095 -110,10,21.89,41.59,20.6,42.5,23.1,38.4,20.29,41.9333333333,19.89,50.4666666667,14.46,30.6933333333,21.1,37.09,23.6,44.4,20,42.29,13.6833333333,751.1333333333,65.6666666667,5.8333333333,40,7.3166666667,17.9933551815,17.9933551815 -110,0,21.89,41.5,20.5333333333,42.5,23.0333333333,38.4,20.26,41.79,19.89,50.3266666667,14.3,31.83,21,37,23.6,44.3266666667,20,42.2,13.5666666667,751.0666666667,66.3333333333,5.6666666667,40,7.3333333333,23.598241969,23.598241969 -100,0,21.89,41.5,20.4633333333,42.5,23,38.4,20.26,42.3233333333,19.89,50.2,14.3,32.09,21.05,36.975,23.7,44.29,20,42.1266666667,13.45,751,67,5.5,40,7.35,20.4188742791,20.4188742791 -100,0,21.89,41.4,20.39,42.4333333333,23,38.4,20.3233333333,42.86,19.89,50.1266666667,14.2633333333,32.2666666667,21,36.9,23.7,44.3633333333,20,41.9666666667,13.3333333333,750.9333333333,67.6666666667,5.3333333333,40,7.3666666667,44.8144844384,44.8144844384 -120,10,21.89,41.4,20.3566666667,42.5,23,38.3633333333,20.39,43.06,19.89,50.06,14.19,32.3933333333,21,36.9,23.7,44.6566666667,20,41.8266666667,13.2166666667,750.8666666667,68.3333333333,5.1666666667,40,7.3833333333,3.6621412961,3.6621412961 -240,0,21.8566666667,41.4633333333,20.29,42.6333333333,23,38.29,20.39,43.0266666667,19.89,49.9333333333,13.9633333333,33.5266666667,21,36.9,23.7,44.8633333333,20,41.6633333333,13.1,750.8,69,5,40,7.4,22.9281999753,22.9281999753 -470,0,21.8566666667,41.8633333333,20.29,42.8,23,38.3266666667,20.39,42.8266666667,19.89,49.9,13.89,34.25,21,36.9,23.7,45,20,41.59,13.1666666667,750.6333333333,68.3333333333,5.3333333333,40,7.3333333333,41.7226303136,41.7226303136 -180,10,21.9266666667,44.7633333333,20.29,43.1933333333,23,38.4,20.3566666667,42.73,19.89,49.79,13.8225,34.1475,20.9266666667,36.9666666667,23.65,44.95,19.89,41.5,13.2333333333,750.4666666667,67.6666666667,5.6666666667,40,7.2666666667,9.6318602446,9.6318602446 -100,10,22.0666666667,46.8966666667,20.3233333333,44.2633333333,23,38.4333333333,20.3566666667,42.99,19.8566666667,49.9,13.7266666667,33.89,20.89,37,23.7,44.2666666667,19.89,41.4333333333,13.3,750.3,67,6,40,7.2,1.6498442041,1.6498442041 -100,20,22.2,45.8,20.4633333333,44.93,23,38.56,20.39,43.5966666667,19.8566666667,50.0266666667,13.5666666667,33.5,20.89,37,23.6333333333,43.8,19.9633333333,41.3633333333,13.3666666667,750.1333333333,66.3333333333,6.3333333333,40,7.1333333333,25.7229676005,25.7229676005 -120,40,22.26,45.8,20.5333333333,44.8333333333,23.0666666667,38.79,20.39,43.93,19.9933333333,54.5933333333,13.4175,34.5175,20.89,37.03,23.6,43.59,19.89,41.29,13.4333333333,749.9666666667,65.6666666667,6.6666666667,40,7.0666666667,39.5063309232,39.5063309232 -450,30,22.29,44.6233333333,20.6,44.5666666667,23,38.8633333333,20.39,44,20.8666666667,76.1933333333,13.39,35.73,20.89,37.09,23.6,43.59,19.89,41.26,13.5,749.8,65,7,40,7,39.5646000165,39.5646000165 -170,30,22.315,43.9475,20.7,44.5,23.0666666667,39.06,20.39,44.1933333333,21.3666666667,82.6666666667,13.36,35.3333333333,20.8566666667,37.06,23.7,43.59,19.89,41.2,13.4666666667,749.65,65,7.1666666667,40,6.9833333333,41.1227969453,41.1227969453 -140,30,22.39,43.5666666667,20.7,44.56,23.0666666667,39.06,20.5333333333,44.1933333333,20.7666666667,78.5933333333,13.1666666667,34.86,20.8566666667,37.06,23.73,43.59,19.89,41.2,13.4333333333,749.5,65,7.3333333333,40,6.9666666667,46.5336967376,46.5336967376 -150,0,22.4266666667,43.4,20.79,44.7,23,39.09,20.6,43.9333333333,20.65,66.59,12.8233333333,35.1666666667,20.8566666667,37.06,23.79,43.53,19.89,41.1266666667,13.4,749.35,65,7.5,40,6.95,33.5102735902,33.5102735902 -140,0,22.5,43.3266666667,20.8566666667,44.76,23,39.09,20.6,43.6933333333,20.73,59.4266666667,12.63,35.8333333333,20.79,37.1933333333,23.89,43.4666666667,19.89,41.09,13.3666666667,749.2,65,7.6666666667,40,6.9333333333,27.953541954,27.953541954 -140,0,22.6,43.29,20.96,44.9333333333,23,39.09,20.6,43.36,20.79,56.2933333333,12.5333333333,36.3633333333,20.79,37.3633333333,23.89,43.3266666667,19.89,41.09,13.3333333333,749.05,65,7.8333333333,40,6.9166666667,14.811642468,14.811642468 -120,0,22.6666666667,43.29,21.1666666667,44.8,23.0666666667,39.29,20.55,43.1,20.9266666667,53.7666666667,12.5333333333,36.1566666667,20.79,37.29,23.9266666667,43.2,19.89,41.03,13.3,748.9,65,8,40,6.9,46.4169842424,46.4169842424 -120,0,22.7,43.1633333333,21.29,44.6,23.0666666667,39.3633333333,20.5,42.8633333333,21,52.16,12.4333333333,36.2666666667,20.79,37.29,24,43.2,19.8566666667,40.9666666667,13.3,748.8,65,7.6666666667,40,6.8666666667,45.5539621995,45.5539621995 -120,10,22.76,43.03,21.4266666667,44.26,23.1,39.4333333333,20.5,42.73,21.1,50.7633333333,12.2266666667,36.9933333333,20.79,37.29,24,43.4333333333,19.8566666667,40.9666666667,13.3,748.7,65,7.3333333333,40,6.8333333333,15.3584023239,15.3584023239 -120,0,22.8233333333,42.8633333333,21.5,44.0666666667,23.1,39.5,20.4633333333,42.5266666667,21.1666666667,49.8966666667,12.2633333333,37.4666666667,20.7,37.26,24,43.56,19.79,40.79,13.3,748.6,65,7,40,6.8,27.2456743289,27.2456743289 -110,0,22.89,42.73,21.6,43.76,23.1,39.5,20.39,42.4,21.23,48.96,12.19,37.1333333333,20.7,37.2,24,43.56,19.79,40.79,13.3,748.5,65,6.6666666667,40,6.7666666667,25.5557017634,25.5557017634 -130,0,22.89,42.56,21.6,43.6266666667,23.1,39.5,20.39,42.29,21.29,48.4266666667,12.19,37.1266666667,20.7,37.2,24,43.4333333333,19.79,40.7,13.3,748.4,65,6.3333333333,40,6.7333333333,44.237502513,44.237502513 -470,0,22.89,42.4333333333,21.7,43.56,23.1,39.5,20.39,42.1566666667,21.39,47.7966666667,12.2633333333,36.9266666667,20.7,37.09,24,43.26,19.79,40.7,13.3,748.3,65,6,40,6.7,16.0842357785,16.0842357785 -420,0,23,42.26,21.7,43.5,23.1,39.5,20.3566666667,42.06,21.39,47.4633333333,12.2266666667,36.1333333333,20.7,37.09,24,43.1266666667,19.79,40.59,13.2833333333,748.15,64.5,6.3333333333,40,6.6,11.704777577,11.704777577 -130,0,23,42.1266666667,21.7,43.29,23.1,39.5,20.29,42,21.39,46.99,12.3,35.9333333333,20.7,37.06,24,43,19.79,40.59,13.2666666667,748,64,6.6666666667,40,6.5,18.1759600993,18.1759600993 -110,0,23,42,21.7,43.29,23.1,39.5,20.29,41.9,21.39,46.6566666667,12.3,35.79,20.7,37,24.0666666667,43,19.79,40.5,13.25,747.85,63.5,7,40,6.4,25.2243689378,25.2243689378 -100,10,23,41.9333333333,21.7,43.2,23.1,39.5,20.29,41.9,21.39,46.3333333333,12.3,35.79,20.7,37,24.1333333333,42.79,19.79,40.5,13.2333333333,747.7,63,7.3333333333,40,6.3,45.8651634865,45.8651634865 -70,0,23,42.2,21.6333333333,43.0666666667,23.1,39.5,20.26,41.8333333333,21.39,46.1266666667,12.3,35.095,20.7,37,24.2,42.8633333333,19.79,40.4,13.2166666667,747.55,62.5,7.6666666667,40,6.2,24.9686452793,24.9686452793 -50,0,23,42.0666666667,21.6,42.9,23,39.4,20.26,41.76,21.39,47.1933333333,12.3,34.7233333333,20.7,37.1966666667,24.23,43.1966666667,19.79,40.4666666667,13.2,747.4,62,8,40,6.1,2.0296493429,2.0296493429 -60,0,23,42.09,21.5333333333,42.9,23,39.4,20.2,41.7,21.3233333333,48.2666666667,12.36,35.0566666667,20.76,37.9233333333,24.29,43.8633333333,19.79,40.7266666667,13.25,747.25,61.6666666667,8,40,6.05,19.2707653623,19.2707653623 -50,0,23,42.03,21.5,42.79,23,39.5,20.2,41.7,21.1666666667,49.7333333333,12.4266666667,35.0266666667,20.89,38.3,24.2,43.86,19.8566666667,41.1333333333,13.3,747.1,61.3333333333,8,40,6,32.3638522881,32.3638522881 -60,0,23,41.95,21.4266666667,42.73,23,39.5,20.2,41.59,21.0333333333,50.3333333333,12.5666666667,33.9666666667,20.8233333333,38.56,24.2,44.1175,19.8566666667,41.3266666667,13.35,746.95,61,8,40,5.95,41.6237180005,41.6237180005 -50,0,23,41.76,21.39,42.7,23,39.5,20.2,41.53,20.945,50.7,12.63,32.5966666667,20.79,38.6266666667,24.2,44.3633333333,19.8566666667,41.5266666667,13.4,746.8,60.6666666667,8,40,5.9,37.9575977568,37.9575977568 -60,0,23,41.6266666667,21.3233333333,42.7,23,39.5,20.1666666667,41.5,20.8566666667,50.76,12.7633333333,31.5966666667,20.8566666667,38.8333333333,24.2,44.53,19.89,41.6566666667,13.45,746.65,60.3333333333,8,40,5.85,39.7768943221,39.7768943221 -60,0,23,41.4666666667,21.26,42.59,23,39.5,20.1,41.5,20.79,50.7,12.83,30.7666666667,20.79,38.8266666667,24.2,44.7966666667,19.89,41.79,13.5,746.5,60,8,40,5.8,11.4714154508,11.4714154508 -60,0,23,41.3266666667,21.2,42.53,23,39.5,20.1,41.4,20.76,50.8266666667,12.89,30.3666666667,20.79,38.9,24.1,45.2,19.89,41.79,12.6333333333,746.85,64.8333333333,8,43.8333333333,5.9166666667,23.5412075999,23.5412075999 -30,0,23,41.26,21.1666666667,42.59,23.0666666667,39.5,20.1,41.4,20.7,50.9666666667,12.89,30.6633333333,20.8233333333,38.9633333333,24.0333333333,45.1266666667,19.89,41.9,11.7666666667,747.2,69.6666666667,8,47.6666666667,6.0333333333,22.2035275656,22.2035275656 -30,0,22.9266666667,41.1266666667,21.1,42.6175,23.0666666667,39.5,20.1,41.3266666667,20.7,51.2666666667,12.5566666667,37.33,20.89,39.03,24,45.1266666667,19.89,41.9,10.9,747.55,74.5,8,51.5,6.15,3.690379078,3.690379078 -40,0,22.89,41,21.0333333333,42.6266666667,23.0666666667,39.5,20.1,41.3633333333,20.6333333333,51.4,11.0566666667,52.5,20.89,39.1266666667,23.9266666667,45.2,19.89,42,10.0333333333,747.9,79.3333333333,8,55.3333333333,6.2666666667,31.4035956748,31.4035956748 -30,0,22.89,40.9333333333,21.0666666667,42.76,23.0666666667,39.5,20.1,41.29,20.6,51.4333333333,9.9966666667,61.8933333333,20.89,39.3333333333,23.89,45.23,19.89,42.06,9.1666666667,748.25,84.1666666667,8,59.1666666667,6.3833333333,2.3007798591,2.3007798591 -70,0,22.89,40.79,21,42.7,23.0666666667,39.5,20.1,41.4,20.6,51.5,9.3233333333,66.4,20.89,39.545,23.89,45.3633333333,19.89,42.1266666667,8.3,748.6,89,8,63,6.5,10.6065413565,10.6065413565 -60,0,22.89,40.79,20.89,42.7,23.0333333333,39.4333333333,20.1,41.4,20.5666666667,51.5,8.93,67,20.89,39.59,23.8566666667,45.5,19.89,42.2,8.15,748.65,90,7,63.1666666667,6.5333333333,42.7983664675,42.7983664675 -70,10,22.89,40.7,20.89,42.76,23.1,39.5,20,41.29,20.5,51.5,8.53,69.0333333333,20.89,39.7233333333,23.79,45.6933333333,19.89,42.29,8,748.7,91,6,63.3333333333,6.5666666667,9.7962627653,9.7962627653 -60,0,22.89,40.6266666667,20.76,42.6633333333,23.1,39.5,20.0666666667,41.3633333333,20.5,51.53,8.33,70.0333333333,20.89,40.03,23.79,46.2666666667,19.89,42.43,7.85,748.75,92,5,63.5,6.6,30.9604821843,30.9604821843 -70,0,22.89,40.56,20.7,42.6633333333,23.1,39.5,20,41.29,20.5,51.59,8.0666666667,70.8966666667,20.9633333333,40.09,23.79,46.4666666667,19.89,42.5,7.7,748.8,93,4,63.6666666667,6.6333333333,43.878752517,43.878752517 -60,0,22.89,40.5,20.6666666667,42.7,23.2,39.5,20,41.23,20.4633333333,51.5,7.9,71.3475,20.9633333333,40.06,23.7,46.6266666667,19.9633333333,42.5,7.55,748.85,94,3,63.8333333333,6.6666666667,35.8654347947,35.8654347947 -60,0,22.89,40.4,20.6,42.76,23.2,39.5,20,41.2,20.39,51.5,7.8666666667,71.7,20.89,40,23.7,46.76,19.9633333333,42.59,7.4,748.9,95,2,64,6.7,12.3634026386,12.3634026386 -60,0,22.89,40.3266666667,20.5666666667,42.79,23.2,39.5,20,41.2,20.39,51.7,7.8,71.8333333333,20.89,40,23.6,46.9633333333,19.89,42.59,7.3666666667,748.8916666667,95.1666666667,2,64,6.6916666667,28.4446270787,28.4446270787 -60,0,22.89,40.26,20.5,42.79,23.2,39.5,20,41.2,20.39,51.76,7.8,71.8333333333,20.89,40,23.6,47.2233333333,19.9266666667,42.7,7.3333333333,748.8833333333,95.3333333333,2,64,6.6833333333,16.10379091,16.10379091 -60,0,22.89,40.2,20.4633333333,42.76,23.26,39.56,20,41.2,20.39,51.79,7.7633333333,71.9,21,40.1266666667,23.5666666667,47.9633333333,19.9266666667,42.76,7.3,748.875,95.5,2,64,6.675,9.4962266856,9.4962266856 -60,0,22.84,40.09,20.39,42.7,23.2,39.5,19.89,41.2,20.39,51.79,7.69,71.9,21,40.26,23.5,48.3633333333,20,42.79,7.2666666667,748.8666666667,95.6666666667,2,64,6.6666666667,10.6628504116,10.6628504116 -70,0,22.79,40,20.3566666667,42.8266666667,23.23,39.53,19.89,41.2,20.3566666667,51.7,7.6566666667,71.8666666667,21,40.4333333333,23.5,48.73,19.9266666667,42.8633333333,7.2333333333,748.8583333333,95.8333333333,2,64,6.6583333333,34.8542717868,34.8542717868 -60,0,22.79,39.9333333333,20.29,42.9,23.29,39.59,19.9266666667,41.1633333333,20.29,51.6725,7.59,71.8666666667,21,40.5,23.5,49.065,19.89,42.9,7.2,748.85,96,2,64,6.65,13.2986675715,13.2986675715 -70,0,22.79,39.9,20.26,42.9666666667,23.29,39.59,19.9266666667,41.09,20.29,51.59,7.59,71.9333333333,21,40.5,23.4266666667,49.29,19.89,42.975,7.1666666667,748.8416666667,96.1666666667,2,64,6.6416666667,0.8072760305,0.8072760305 -60,0,22.79,39.9,20.2,42.9666666667,23.29,39.59,19.89,41.09,20.29,51.56,7.6566666667,72.06,21,40.5,23.39,49.6266666667,19.89,43.06,7.1333333333,748.8333333333,96.3333333333,2,64,6.6333333333,35.8268878888,35.8268878888 -60,0,22.79,39.79,20.1666666667,43,23.29,39.59,19.89,41.09,20.29,51.5,7.59,72,21,40.4666666667,23.39,49.76,19.89,43.09,7.1,748.825,96.5,2,64,6.625,31.3685253961,31.3685253961 -60,0,22.79,39.79,20.075,43.0675,23.3233333333,39.59,19.89,41.09,20.2,51.3633333333,7.6566666667,72.1266666667,21,40.4,23.39,49.79,19.9633333333,43.1633333333,7.0666666667,748.8166666667,96.6666666667,2,64,6.6166666667,23.1520655914,23.1520655914 -60,0,22.79,39.79,20.0666666667,43.2233333333,23.3233333333,39.59,19.89,41.09,20.2,51.29,7.59,72.06,21,40.4333333333,23.3233333333,49.73,19.89,43.29,7.0333333333,748.8083333333,96.8333333333,2,64,6.6083333333,0.1376535976,0.1376535976 -60,0,22.79,39.79,20,43.3266666667,23.3233333333,39.56,19.89,41.09,20.2,51.2,7.53,72,21,40.56,23.29,49.6333333333,19.9633333333,43.3633333333,7,748.8,97,2,64,6.6,43.8623028575,43.8623028575 -50,0,22.79,39.7,20,43.4,23.39,39.56,19.89,41.09,20.2,51.1266666667,7.3666666667,71.9,21,40.645,23.29,49.4333333333,20,43.4333333333,7,748.8,97.1666666667,2.1666666667,64.1666666667,6.6166666667,7.2236122331,7.2236122331 -70,0,22.79,39.7,19.89,43.53,23.29,39.59,19.89,41.09,20.2,51.06,7.2266666667,71.76,21.1,40.6633333333,23.29,49.29,20,43.5,7,748.8,97.3333333333,2.3333333333,64.3333333333,6.6333333333,14.1901675845,14.1901675845 -60,0,22.7,39.6633333333,19.89,43.59,23.29,39.53,19.8566666667,41.06,20.2,51,7.1566666667,71.7633333333,21.0333333333,40.53,23.29,49.23,20,43.53,7,748.8,97.5,2.5,64.5,6.65,42.7667990443,42.7667990443 -60,0,22.7,39.59,19.8566666667,43.7,23.39,39.53,19.79,41,20.2,51,7.0675,71.69,21.0333333333,40.5666666667,23.2,49,20,43.53,7,748.8,97.6666666667,2.6666666667,64.6666666667,6.6666666667,0.089543371,0.089543371 -70,0,22.7,39.59,19.79,43.76,23.39,39.53,19.79,41,20.2,50.9333333333,7,71.69,21.0333333333,40.6266666667,23.2,48.9333333333,20,43.59,7,748.8,97.8333333333,2.8333333333,64.8333333333,6.6833333333,43.9524217858,43.9524217858 -60,0,22.7,39.59,19.7,43.86,23.3233333333,39.56,19.79,40.9333333333,20.1666666667,50.8633333333,6.9666666667,71.7266666667,21,40.4666666667,23.2,48.8633333333,20,43.59,7,748.8,98,3,65,6.7,5.5562223308,5.5562223308 -60,0,22.7,39.5,19.7,44,23.39,39.5,19.79,40.9666666667,20.1,50.79,6.9,71.8,21,40.3266666667,23.2,48.79,20,43.6266666667,6.9166666667,748.9,97.6666666667,3.3333333333,58.1666666667,6.5666666667,40.5767758959,40.5767758959 -50,0,22.7,39.5,19.6666666667,43.9666666667,23.39,39.5,19.79,40.9,20.1,50.79,6.8666666667,71.7633333333,21,40.5,23.1333333333,48.79,20,43.7,6.8333333333,749,97.3333333333,3.6666666667,51.3333333333,6.4333333333,45.1410897309,45.1410897309 -50,0,22.6,39.4,19.6,43.9,23.39,39.5,19.79,40.8633333333,20.1,50.79,6.8,71.6233333333,21,40.4333333333,23.1333333333,48.73,20,43.7,6.75,749.1,97,4,44.5,6.3,45.1354269637,45.1354269637 -60,0,22.6,39.4,19.6,44.03,23.3233333333,39.5,19.79,40.79,20.1,50.7,6.6566666667,71.56,21,40.4,23.1,48.56,20,43.7,6.6666666667,749.2,96.6666666667,4.3333333333,37.6666666667,6.1666666667,42.140101816,42.140101816 -50,0,22.6,39.3633333333,19.6,44.09,23.39,39.5,19.79,40.79,20.1,50.7,6.59,71.5,21,40.4,23.1,48.4333333333,20,43.79,6.5833333333,749.3,96.3333333333,4.6666666667,30.8333333333,6.0333333333,21.8021827051,21.8021827051 -60,0,22.6,39.29,19.5,44.2,23.3566666667,39.5,19.79,40.79,20.1,50.59,6.56,71.5,21.0333333333,40.5966666667,23.1,48.4,20,43.79,6.5,749.4,96,5,24,5.9,46.3320536888,46.3320536888 -60,0,22.6,39.29,19.5,44.2,23.29,39.5,19.76,40.79,20.1,50.59,6.4333333333,71.3666666667,21.0333333333,40.73,23.0333333333,48.2666666667,20,43.79,6.4666666667,749.45,95.6666666667,5.1666666667,26.6666666667,5.8166666667,18.1607132778,18.1607132778 -60,0,22.6,39.29,19.39,44.2,23.29,39.5,19.7,40.7225,20.1,50.5,6.3666666667,71.3,21,40.7,23,48.145,20,43.79,6.4333333333,749.5,95.3333333333,5.3333333333,29.3333333333,5.7333333333,19.5399183547,19.5399183547 -70,0,22.6,39.29,19.39,44.2,23.29,39.5,19.7,40.7,20.0666666667,50.4666666667,6.2266666667,71.16,21,40.6266666667,23,48.0266666667,20,43.79,6.4,749.55,95,5.5,32,5.65,6.086631713,6.086631713 -60,0,22.5666666667,39.2,19.39,44.2,23.29,39.5,19.7,40.6633333333,20,50.4,6.06,70.9333333333,21,40.5,23,47.9,20,43.79,6.3666666667,749.6,94.6666666667,5.6666666667,34.6666666667,5.5666666667,46.5766292647,46.5766292647 -60,0,22.5,39.2,19.39,44.2,23.39,39.5,19.7,40.59,20,50.29,5.9333333333,70.8,21,40.4333333333,22.9633333333,47.79,20,43.79,6.3333333333,749.65,94.3333333333,5.8333333333,37.3333333333,5.4833333333,15.9253471182,15.9253471182 -50,0,22.5,39.1633333333,19.29,44.2,23.3233333333,39.5,19.7,40.59,20,50.29,5.8,70.59,21.1,40.6633333333,22.9633333333,47.79,20,43.79,6.3,749.7,94,6,40,5.4,7.734515972,7.734515972 -50,0,22.5,39.09,19.29,44.1633333333,23.29,39.5,19.7,40.53,20,50.29,5.7266666667,70.6566666667,21.1,40.59,22.89,47.76,20,43.79,6.3,749.8333333333,93.1666666667,6,40,5.2666666667,44.4069585879,44.4069585879 -60,0,22.5,39.09,19.29,44.09,23.29,39.4333333333,19.7,40.5,20,50.23,5.7266666667,70.7266666667,21.0666666667,40.43,22.89,47.6266666667,20.0666666667,43.8633333333,6.3,749.9666666667,92.3333333333,6,40,5.1333333333,42.2060314217,42.2060314217 -50,0,22.5,39.09,19.29,44.09,23.29,39.4333333333,19.7,40.5,20,50.2,5.6925,70.67,21,40.29,22.89,47.7,20.0666666667,43.8633333333,6.3,750.1,91.5,6,40,5,18.2918814709,18.2918814709 -60,0,22.4633333333,38.9666666667,19.29,44.03,23.29,39.5,19.7,40.4,20,50.2,5.59,70.4333333333,21,40.29,22.89,47.7,20.0333333333,43.9333333333,6.3,750.2333333333,90.6666666667,6,40,4.8666666667,13.2202103268,13.2202103268 -50,0,22.39,38.9,19.29,44,23.29,39.4,19.7,40.4,20,50.09,5.53,70.56,21.0666666667,40.56,22.8566666667,47.56,20.1,44,6.3,750.3666666667,89.8333333333,6,40,4.7333333333,48.3555457904,48.3555457904 -40,0,22.39,38.9,19.29,43.9333333333,23.29,39.4,19.7,40.29,20,50.09,5.59,70.6266666667,21,40.4333333333,22.79,47.5,20.1,44,6.3,750.5,89,6,40,4.6,19.4751828793,19.4751828793 -40,0,22.39,38.9,19.26,43.8633333333,23.29,39.4,19.7,40.29,20,50.09,5.59,70.69,21.0666666667,40.56,22.79,47.3633333333,20.1,44,6.3,750.5166666667,88.8333333333,6.1666666667,40,4.5833333333,2.0570624154,2.0570624154 -40,0,22.39,38.9,19.26,43.79,23.29,39.4,19.6,40.1633333333,20,50.09,5.6566666667,70.7633333333,21.0666666667,40.6333333333,22.79,47.29,20.1,44,6.3,750.5333333333,88.6666666667,6.3333333333,40,4.5666666667,31.9128292147,31.9128292147 -40,0,22.3233333333,38.8266666667,19.29,43.76,23.29,39.29,19.6666666667,40.1633333333,20,50,5.8,70.8333333333,21.0333333333,40.7666666667,22.79,47.29,20.1,44,6.3,750.55,88.5,6.5,40,4.55,18.529467599,18.529467599 -100,0,22.29,38.79,19.29,43.6266666667,23.23,39.23,19.7,40.2,20,50,5.8666666667,70.9,21.0333333333,40.9666666667,22.79,47.29,20.2,43.9,6.3,750.5666666667,88.3333333333,6.6666666667,40,4.5333333333,4.3358421768,4.3358421768 -60,0,22.29,38.99,19.29,43.6266666667,23.2,39.2,19.7,40.2,20,49.76,6.16,71.2266666667,21.1,41.03,22.79,47.2,20.2,43.9,6.3,750.5833333333,88.1666666667,6.8333333333,40,4.5166666667,33.1614568946,33.1614568946 -50,0,22.39,39.3266666667,19.29,43.96,23.1333333333,39.2,19.7,40.2,20,49.6266666667,6.3666666667,71.3,21.0333333333,41.03,22.79,47.2,20.2,43.9333333333,6.3,750.6,88,7,40,4.5,39.5704418072,39.5704418072 -80,0,22.39,40.1333333333,19.5966666667,44.3633333333,23.1,39.09,19.7,40.2,20,49.56,6.6933333333,71.4966666667,21.0666666667,40.7966666667,22.79,47.1266666667,20.2,44,6.3333333333,750.7166666667,88,7.1666666667,40,4.5166666667,41.9273164473,41.9273164473 -100,0,22.39,40.995,20.1233333333,44.0966666667,23.0333333333,38.9633333333,19.79,40.09,20,49.4333333333,7.3,71.9566666667,21,40.4633333333,22.79,47.2,20.4266666667,43.9666666667,6.3666666667,750.8333333333,88,7.3333333333,40,4.5333333333,28.7425126997,28.7425126997 -80,0,22.4266666667,41.1566666667,20.8,43.0633333333,23.05,39.09,19.8925,40.145,20,49.4,8.0333333333,72.2266666667,21.1,40.2233333333,22.79,47.39,20.5,43.7666666667,6.4,750.95,88,7.5,40,4.55,37.5358192017,37.5358192017 -80,0,22.5,41.29,21.1333333333,42.53,23,39.09,20.0666666667,40.09,20,49.4,8.56,71.9666666667,21.0333333333,39.9633333333,22.79,47.7233333333,20.39,43.59,6.4333333333,751.0666666667,88,7.6666666667,40,4.5666666667,26.1699130991,26.1699130991 -100,10,22.5,41.4333333333,21.6,42.1,23,39.09,20.2,40,20,49.4,9.13,69.3666666667,21.0666666667,39.8333333333,22.79,48.045,20.39,43.7,6.4666666667,751.1833333333,88,7.8333333333,40,4.5833333333,26.8463675748,26.8463675748 -80,0,22.5666666667,41.5,21.5333333333,41.9666666667,23,39.2,20.2,40,20.1666666667,56.2333333333,9.2633333333,64.96,21,39.6266666667,22.89,48.2233333333,20.39,43.7,6.5,751.3,88,8,40,4.6,39.8604036076,39.8604036076 -110,0,22.6,41.3633333333,21.34,42.245,23,39.26,20.2,39.9633333333,20.5666666667,70.5,9.2266666667,62.5966666667,21,39.8,22.89,47.83,20.3566666667,43.6266666667,6.8833333333,751.3166666667,86.1666666667,8.1666666667,40,4.6666666667,35.3344629402,35.3344629402 -80,0,22.6,41.1566666667,21.2,42.3633333333,23,39.23,20.2,40.2233333333,20.6,70.1266666667,9.525,61.515,21.0666666667,40.1333333333,22.89,46.9,20.3566666667,43.76,7.2666666667,751.3333333333,84.3333333333,8.3333333333,40,4.7333333333,19.1701703123,19.1701703123 -90,10,22.5333333333,41.0266666667,21.2,42.1566666667,23,39.29,20.2,40.6566666667,20.6,69.5333333333,10.06,58.4233333333,21.1,39.9666666667,22.89,46.6266666667,20.29,43.79,7.65,751.35,82.5,8.5,40,4.8,35.1557605085,35.1557605085 -110,0,22.5333333333,40.8266666667,21.29,41.9,23,39.26,20.26,40.8633333333,20.5,69,10.49,53.5966666667,21.075,39.6475,23,46.43,20.29,43.79,8.0333333333,751.3666666667,80.6666666667,8.6666666667,40,4.8666666667,48.6539893434,48.6539893434 -100,0,22.6,40.6333333333,21.3566666667,41.5666666667,23.0666666667,39.26,20.29,41.33,20.4266666667,67.7266666667,10.7633333333,50.4566666667,21,39.0966666667,23,45.8233333333,20.29,43.6633333333,8.4166666667,751.3833333333,78.8333333333,8.8333333333,40,4.9333333333,47.8224869352,47.8224869352 -100,0,22.6,40.4333333333,21.4266666667,41.2233333333,23,39.1633333333,20.29,41.7966666667,20.5,63.8233333333,11.0633333333,47.1266666667,21,38.6,23.1333333333,45.2966666667,20.29,43.53,8.8,751.4,77,9,40,5,43.2159788674,43.2159788674 -80,0,22.5666666667,40.29,21.5,40.9633333333,23,39.09,20.39,41.9,20.4266666667,63.0966666667,11.13,44.8666666667,21,38.2666666667,23.2,44.83,20.29,43.43,8.9166666667,751.3833333333,76.1666666667,9.3333333333,40,4.95,6.3785654609,6.3785654609 -80,0,22.5666666667,40.0966666667,21.4633333333,40.6633333333,23,39.09,20.39,41.9666666667,20.39,62.66,11,45.0333333333,20.9633333333,37.9,23.2,43.96,20.29,43.0966666667,9.0333333333,751.3666666667,75.3333333333,9.6666666667,40,4.9,0.3266920568,0.3266920568 -70,0,22.5,39.76,21.39,40.39,23,38.9633333333,20.39,41.6333333333,20.39,62.1933333333,11.1266666667,41.5,20.9633333333,37.5666666667,23.2,43.4266666667,20.29,42.6333333333,9.15,751.35,74.5,10,40,4.85,41.4645998622,41.4645998622 -70,0,22.5,39.5666666667,21.4266666667,40.0266666667,23,38.9,20.39,41.4333333333,20.29,61.5933333333,11.4666666667,42.83,21,37.3333333333,23.2,42.8333333333,20.29,42.5,9.2666666667,751.3333333333,73.6666666667,10.3333333333,40,4.8,22.1483933041,22.1483933041 -70,0,22.5666666667,39.3633333333,21.5,39.8266666667,23,38.8266666667,20.4266666667,41.1633333333,20.29,60.7933333333,11.86,41.6966666667,21.0666666667,37.2,23.2,42.5,20.29,42.73,9.3833333333,751.3166666667,72.8333333333,10.6666666667,40,4.75,32.135930669,32.135930669 -60,0,22.5666666667,39.23,21.5333333333,39.56,23,38.7,20.5,41.03,20.29,59.3,12.4,38.1633333333,21.0333333333,36.9666666667,23.23,42.06,20.29,42.8633333333,9.5,751.3,72,11,40,4.7,12.8379055182,12.8379055182 -70,0,22.6,39.06,21.6,39.36,23,38.6266666667,20.5,40.8333333333,20.23,58.36,12.66,38.2966666667,21.1,36.7666666667,23.29,41.8,20.29,42.79,9.8,751.2833333333,71,10.6666666667,38.1666666667,4.7666666667,47.1186144627,47.1186144627 -70,0,22.6,38.9333333333,21.6333333333,39.09,23,38.5,20.5,40.6266666667,20.23,57.2666666667,12.8666666667,38.1333333333,21.1,36.6333333333,23.29,41.5266666667,20.29,42.79,10.1,751.2666666667,70,10.3333333333,36.3333333333,4.8333333333,30.0177807221,30.0177807221 -80,0,22.6,38.79,21.7,39.03,23,38.5,20.6,40.5,20.23,56.6,13.1266666667,35.3933333333,21.1666666667,36.4333333333,23.29,41.2666666667,20.29,42.7233333333,10.4,751.25,69,10,34.5,4.9,12.1328724315,12.1328724315 -80,0,22.6,38.695,21.7,38.76,22.9633333333,38.4666666667,20.55,40.3975,20.2,55.7666666667,13.16,32.3233333333,21.2,36.1333333333,23.3566666667,40.93,20.29,42.59,10.7,751.2333333333,68,9.6666666667,32.6666666667,4.9666666667,16.1280434462,16.1280434462 -70,0,22.6,38.53,21.7,38.6266666667,22.9725,38.4,20.6,40.23,20.2,55,13.1,32.93,21.2,35.86,23.29,40.6566666667,20.29,42.545,11,751.2166666667,67,9.3333333333,30.8333333333,5.0333333333,20.5358341685,20.5358341685 -80,0,22.6,38.4,21.7,38.43,22.9266666667,38.3266666667,20.6,40.06,20.1333333333,54.2266666667,13.3266666667,32.2666666667,21.2,35.7,23.3233333333,40.3633333333,20.29,42.4666666667,11.3,751.2,66,9,29,5.1,42.9820501013,42.9820501013 -60,0,22.6,38.3266666667,21.7,38.23,22.9266666667,38.2,20.6,40,20.1666666667,53.46,13.7333333333,31,21.26,35.5666666667,23.39,40.0475,20.29,42.2666666667,11.45,751.2166666667,65,9,30.8333333333,5.0333333333,29.3052083347,29.3052083347 -70,0,22.6,38.1633333333,21.7,38.1333333333,23,38.2,20.6,39.8633333333,20.1666666667,52.9266666667,13.6666666667,29.5333333333,21.23,35.29,23.39,39.7666666667,20.29,42.0266666667,11.6,751.2333333333,64,9,32.6666666667,4.9666666667,26.1624442181,26.1624442181 -70,0,22.6,38.03,21.7675,37.925,22.9633333333,38.09,20.6,39.79,20.2,52.2666666667,13.845,27.47,21.29,35.23,23.5,39.6333333333,20.29,41.7666666667,11.75,751.25,63,9,34.5,4.9,45.8499296103,45.8499296103 -60,0,22.6,37.9,21.73,37.7666666667,22.89,38.09,20.6,39.7,20.2,51.8,13.6666666667,26.4333333333,21.39,34.9666666667,23.5,39.4333333333,20.29,41.59,11.9,751.2666666667,62,9,36.3333333333,4.8333333333,46.9589824905,46.9589824905 -70,0,22.6666666667,37.9,21.7,37.6633333333,22.89,38,20.6,39.6266666667,20.1666666667,51.2966666667,13.6,24.0666666667,21.39,34.7666666667,23.5,39.1633333333,20.29,41.53,12.05,751.2833333333,61,9,38.1666666667,4.7666666667,8.4320582915,8.4320582915 -60,0,22.6333333333,37.7,21.7,37.59,22.89,38,20.6,39.4666666667,20.1666666667,50.89,13.6,24.5266666667,21.39,34.545,23.5,39.03,20.29,41.5,12.2,751.3,60,9,40,4.7,29.1770830867,29.1770830867 -50,0,22.6333333333,37.6266666667,21.7,37.4666666667,22.89,37.9666666667,20.6,39.4,20.2,50.6333333333,13.93,26.3,21.4266666667,34.4666666667,23.6,38.8633333333,20.29,41.4333333333,12.1333333333,751.2166666667,59.5,9,40,4.4833333333,32.022668561,32.022668561 -50,0,22.7,37.56,21.76,37.4,22.89,37.9,20.6,39.26,20.2,50.36,14.19,23.1666666667,21.5,34.1933333333,23.6666666667,38.79,20.29,41.0266666667,12.0666666667,751.1333333333,59,9,40,4.2666666667,32.7026324347,32.7026324347 -60,0,22.7,37.4333333333,21.7,37.29,22.89,37.8633333333,20.6,39.1266666667,20.2,49.99,14.0666666667,19.3933333333,21.6,33.8633333333,23.7,38.56,20.29,40.9666666667,12,751.05,58.5,9,40,4.05,33.7618203368,33.7618203368 -70,0,22.7,37.26,21.7,37.23,22.8233333333,37.73,20.6666666667,39.1633333333,20.2,49.6566666667,14.0666666667,20.46,21.6,33.73,23.7,38.36,20.29,40.79,11.9333333333,750.9666666667,58,9,40,3.8333333333,31.4237108454,31.4237108454 -70,0,22.76,37.2,21.7,37.1633333333,22.79,37.7,20.6666666667,39.09,20.2,49.3333333333,14.2266666667,20.5666666667,21.7,33.6333333333,23.79,38.2233333333,20.29,40.73,11.8666666667,750.8833333333,57.5,9,40,3.6166666667,12.3124432517,12.3124432517 -70,0,22.79,37.09,21.7,37.03,22.79,37.7,20.7,39,20.1333333333,49.0666666667,14.3,16.9666666667,21.76,33.4333333333,23.8566666667,38.09,20.29,40.6566666667,11.8,750.8,57,9,40,3.4,41.7878145119,41.7878145119 -70,0,22.79,37.03,21.7,36.9666666667,22.79,37.7,20.7,38.9333333333,20.1,48.7233333333,14.4,17.1633333333,21.8233333333,33.2,23.89,37.8633333333,20.29,40.6566666667,11.9666666667,750.75,56.3333333333,9.3333333333,40,3.3833333333,18.8782328623,18.8782328623 -60,0,22.79,36.8633333333,21.7,36.8266666667,22.8566666667,37.76,20.7,38.8633333333,20.1666666667,48.4633333333,14.66,18.29,21.89,33.0666666667,23.9633333333,37.73,20.3233333333,40.6266666667,12.1333333333,750.7,55.6666666667,9.6666666667,40,3.3666666667,32.4897715123,32.4897715123 -70,0,22.8566666667,36.79,21.7,36.7,22.8233333333,37.8266666667,20.7,38.79,20.1,48.2233333333,14.7333333333,17.33,21.89,32.8633333333,24,37.56,20.39,40.7,12.3,750.65,55,10,40,3.35,18.8563622534,18.8563622534 -60,0,22.89,36.76,21.7,36.6266666667,22.8233333333,37.7666666667,20.79,38.7,20.1,48.03,14.66,16.73,21.89,32.73,24,37.4333333333,20.29,40.5,12.4666666667,750.6,54.3333333333,10.3333333333,40,3.3333333333,19.9616357451,19.9616357451 -80,0,22.89,36.6725,21.7,36.5257142857,22.8566666667,37.76,20.79,38.6725,20.1666666667,47.76,14.4633333333,15.5566666667,21.89,32.5,24.1,37.3633333333,20.3566666667,40.4333333333,12.6333333333,750.55,53.6666666667,10.6666666667,40,3.3166666667,26.6669985722,26.6669985722 -70,0,22.89,36.6633333333,21.7,36.4333333333,22.865,37.745,20.79,38.59,20.1666666667,47.6266666667,14.4633333333,15.89,21.9633333333,32.4333333333,24.1,37.23,20.39,40.345,12.8,750.5,53,11,40,3.3,33.9879251085,33.9879251085 -60,0,22.89,36.7,21.7,36.29,22.89,37.7,20.79,38.56,20.2,47.345,14.4266666667,16.66,22,32.26,24.1333333333,37.06,20.39,40.2,12.75,750.45,53.3333333333,10.8333333333,40,3.3333333333,38.0733471015,38.0733471015 -80,0,22.89,36.7,21.7,36.3633333333,22.89,37.7,20.79,38.5,20.2,47.06,14.4266666667,15.7333333333,22.0666666667,32.2,24.2,36.9333333333,20.39,40.1266666667,12.7,750.4,53.6666666667,10.6666666667,40,3.3666666667,16.6662464035,16.6662464035 -60,0,22.89,36.6633333333,21.6666666667,36.4,22.89,37.7,20.79,38.4,20.2,46.9333333333,14.04,14.845,22.2,32.06,24.29,36.8633333333,20.39,40.1266666667,12.65,750.35,54,10.5,40,3.4,6.5901619848,6.5901619848 -70,0,22.89,36.53,21.6,36.4,22.89,37.7,20.79,38.4,20.1,46.76,13.69,15.8333333333,22.1333333333,31.9266666667,24.29,36.695,20.39,40.2,12.6,750.3,54.3333333333,10.3333333333,40,3.4333333333,48.6272029229,48.6272029229 -60,0,22.89,36.3633333333,21.6,36.4,22.89,37.6266666667,20.79,38.4,20.1666666667,46.6266666667,13.7633333333,17.0933333333,22.1,31.8566666667,24.29,36.59,20.3233333333,40.1333333333,12.55,750.25,54.6666666667,10.1666666667,40,3.4666666667,10.3078153916,10.3078153916 -70,0,22.89,36.29,21.5,36.4,22.89,37.6633333333,20.79,38.4,20.1666666667,46.4666666667,13.3966666667,17.0333333333,22.0333333333,31.79,24.2,36.5,20.3233333333,40,12.5,750.2,55,10,40,3.5,11.3359208452,11.3359208452 -60,0,22.89,36.29,21.5,36.4,22.89,37.59,20.76,38.29,20.1,46.3266666667,13.0633333333,17.2266666667,21.945,31.7,24.1333333333,36.5,20.39,39.9,12.4,750.15,55.1666666667,9.8333333333,40,3.4666666667,29.0434590192,29.0434590192 -60,0,22.8233333333,36.23,21.3566666667,36.4,22.89,37.56,20.7,38.29,20.1,46.2233333333,12.7933333333,20.7633333333,21.89,31.79,24.1,36.53,20.39,39.8266666667,12.3,750.1,55.3333333333,9.6666666667,40,3.4333333333,22.1118936548,22.1118936548 -80,0,22.79,36.1266666667,21.29,36.4666666667,22.89,37.5,20.7,38.4,20.1666666667,46.03,11.9933333333,30.63,21.89,31.93,24.0333333333,36.59,20.3233333333,39.79,12.2,750.05,55.5,9.5,40,3.4,33.626131888,33.626131888 -120,10,22.79,36.26,21.29,36.6933333333,22.89,37.5,20.7,38.4666666667,20.2,45.9,11.03,38.6966666667,21.89,32.3,24,36.7266666667,20.3233333333,39.79,12.1,750,55.6666666667,9.3333333333,40,3.3666666667,1.3372684014,1.3372684014 -140,0,22.79,36.4333333333,21.29,37.0266666667,22.89,37.4333333333,20.7,38.89,20.2,45.8266666667,10.83,40.9566666667,21.8233333333,32.56,24.0666666667,37.3333333333,20.29,39.8266666667,12,749.95,55.8333333333,9.1666666667,40,3.3333333333,23.2021830976,23.2021830976 -140,0,22.79,36.56,21.2,37.2666666667,22.89,37.3633333333,20.7,39.2233333333,20.1666666667,45.8266666667,10.8,38.1,21.79,32.7,24.1,37.8,20.29,39.9,11.9,749.9,56,9,40,3.3,14.1079726513,14.1079726513 -160,0,22.73,36.7,21.1333333333,37.4666666667,22.89,37.29,20.7,39.4333333333,20.1666666667,45.9,10.8,35.1666666667,21.79,32.7,24.1,38,20.29,40,11.5833333333,749.9,58.8333333333,8.5,40,3.6333333333,1.471774932,1.471774932 -180,0,22.73,36.7,21.1,37.59,22.89,37.29,20.76,39.56,20.2,45.9333333333,10.9333333333,31.5933333333,21.7,32.6333333333,24.1333333333,38.09,20.29,40,11.2666666667,749.9,61.6666666667,8,40,3.9666666667,28.5651999875,28.5651999875 -160,0,22.7,36.7,21.0333333333,37.59,22.89,37.29,20.79,39.6266666667,20.2,46,10.5266666667,33.7266666667,21.7,32.5,24.26,38.1633333333,20.29,40.1266666667,10.95,749.9,64.5,7.5,40,4.3,16.4033057983,16.4033057983 -160,0,22.7,36.7,20.9633333333,37.6266666667,22.89,37.26,20.8566666667,39.76,20.2,46,10,36.7666666667,21.6666666667,32.56,24.29,38.4633333333,20.29,40.26,10.6333333333,749.9,67.3333333333,7,40,4.6333333333,7.2446915088,7.2446915088 -140,0,22.6666666667,36.79,20.89,37.76,22.89,37.2,20.8233333333,39.6633333333,20.2,46.06,9.6,38.6933333333,21.6,32.56,24.3566666667,38.7966666667,20.29,40.3633333333,10.3166666667,749.9,70.1666666667,6.5,40,4.9666666667,33.1396476598,33.1396476598 -120,10,22.6,36.8633333333,20.79,37.8266666667,22.79,37.2,20.89,39.4475,20.2,46.09,9.1266666667,40.96,21.6,32.59,24.29,39.4333333333,20.29,40.23,10,749.9,73,6,40,5.3,9.8426042357,9.8426042357 -110,0,22.6,36.845,20.73,37.9666666667,22.79,37.2,20.8233333333,39.3266666667,20.1333333333,46.1633333333,8.8666666667,42.6266666667,21.6,32.59,24.3566666667,39.6333333333,20.29,39.745,9.8333333333,749.9333333333,72.6666666667,6.1666666667,40,5.0833333333,24.5427109534,24.5427109534 -90,0,22.6,37,20.7,38.33,22.79,37.045,20.79,39.29,20.2,46.245,8.66,44.5266666667,21.5,32.73,24.29,39.49,20.29,39.5,9.6666666667,749.9666666667,72.3333333333,6.3333333333,40,4.8666666667,26.818891638,26.818891638 -90,0,22.6,37.06,20.6333333333,38.7966666667,22.79,36.9333333333,20.79,39.29,20.2,46.1633333333,8.4975,45.4225,21.5,32.73,24.29,39.1566666667,20.29,39.4333333333,9.5,750,72,6.5,40,4.65,23.9429761656,23.9429761656 -80,0,22.6,37.1266666667,20.5666666667,39.1566666667,22.79,37,20.79,39.2,20.2,46.09,8.4633333333,46.8966666667,21.5,32.79,24.2,38.6333333333,20.29,39.2,9.3333333333,750.0333333333,71.6666666667,6.6666666667,40,4.4333333333,28.602132434,28.602132434 -80,0,22.6,37.26,20.5,39.43,22.79,37.03,20.79,39.2,20.1666666667,46.06,8.39,47.2933333333,21.4266666667,32.79,24.2,38.36,20.29,39.1266666667,9.1666666667,750.0666666667,71.3333333333,6.8333333333,40,4.2166666667,19.1465223324,19.1465223324 -80,0,22.5,37.36,20.5,39.69,22.79,37.09,20.76,39.29,20.1,45.9333333333,8.4633333333,48.1666666667,21.39,32.79,24.2,38.045,20.26,38.93,9,750.1,71,7,40,4,39.3282898702,39.3282898702 -80,0,22.5,37.5,20.39,40.03,22.79,37.09,20.7,39.29,20.1,45.9,8.5333333333,49.1,21.39,32.8633333333,24.1,37.8633333333,20.26,38.79,8.9333333333,750.1,71.5,6.8333333333,40,4.0333333333,1.6896092566,1.6896092566 -70,0,22.5,37.59,20.3233333333,40.2966666667,22.79,37.1633333333,20.7,39.4,20.1,45.8266666667,8.6,49.4333333333,21.3566666667,32.9,24.0333333333,37.6566666667,20.2,38.59,8.8666666667,750.1,72,6.6666666667,40,4.0666666667,17.2284850036,17.2284850036 -70,0,22.5,37.6633333333,20.29,40.6566666667,22.79,37.2,20.7,39.4666666667,20.1,45.76,8.4333333333,48.6933333333,21.29,32.975,24,37.5,20.2,38.53,8.8,750.1,72.5,6.5,40,4.1,22.4600822083,22.4600822083 -60,0,22.5,37.79,20.23,40.79,22.73,37.2,20.7,39.5,20.1,45.7,8.1666666667,49.4933333333,21.29,33,23.9266666667,37.4333333333,20.2,38.4666666667,8.7333333333,750.1,73,6.3333333333,40,4.1333333333,30.1122742705,30.1122742705 -80,0,22.5,37.8633333333,20.2,41.03,22.7,37.29,20.7,39.56,20.1,45.59,8,51.0666666667,21.29,33.09,23.9633333333,37.29,20.2,38.3266666667,8.6666666667,750.1,73.5,6.1666666667,40,4.1666666667,48.6995091313,48.6995091313 -100,20,22.39,37.9333333333,20.2,41.1633333333,22.7,37.29,20.6,39.53,20.1,45.59,8,51.6,21.23,33.1633333333,23.89,37.3633333333,20.2,38.26,8.6,750.1,74,6,40,4.2,14.0848534531,14.0848534531 -90,10,22.39,38.06,20.1,41.09,22.7,37.3266666667,20.6666666667,39.8633333333,20.2,46.2,8,52.06,21.29,33.53,23.89,38.03,20.2,38.2,8.5833333333,750.0333333333,74.6666666667,6.1666666667,40,4.3166666667,12.9653936019,12.9653936019 -90,0,22.39,38.23,20.1,41.03,22.7,37.4666666667,20.7,40.09,20.2,46.1266666667,8,51.8,21.29,34.1233333333,23.89,38.1633333333,20.2,38.53,8.5666666667,749.9666666667,75.3333333333,6.3333333333,40,4.4333333333,10.8034871984,10.8034871984 -80,0,22.39,38.29,20.0666666667,40.9666666667,22.73,37.6266666667,20.6333333333,40.03,20.2,46.2666666667,7.9,51.1,21.29,34.5666666667,23.79,38.4,20.2,38.99,8.55,749.9,76,6.5,40,4.55,36.7124986718,36.7124986718 -90,0,22.29,38.29,20,40.9,22.79,37.7,20.6,39.9,20.1333333333,46.4666666667,7.9666666667,50.6933333333,21.3566666667,34.9,23.73,38.3266666667,20.2,39.3266666667,8.5333333333,749.8333333333,76.6666666667,6.6666666667,40,4.6666666667,48.7880084431,48.7880084431 -70,0,22.29,38.3633333333,19.9633333333,40.9,22.79,37.73,20.6,39.8266666667,20.1,46.6266666667,8,50.2,21.39,35.2666666667,23.7,38.1333333333,20.2,39.4,8.5166666667,749.7666666667,77.3333333333,6.8333333333,40,4.7833333333,27.6276316843,27.6276316843 -80,0,22.29,38.4,19.89,40.9,22.79,37.79,20.6,39.79,20.1,46.76,8.1266666667,50.26,21.39,35.4666666667,23.7,37.86,20.23,39.6566666667,8.5,749.7,78,7,40,4.9,13.047662063,13.047662063 -90,0,22.29,38.3266666667,19.8566666667,40.8633333333,22.8566666667,37.9,20.575,39.7225,20.1,46.8266666667,8.19,50.1333333333,21.39,35.5666666667,23.6,37.6266666667,20.23,39.79,8.45,749.6,77.8333333333,6.8333333333,40,4.8166666667,44.7722095647,44.7722095647 -90,0,22.2,38.29,19.79,40.8633333333,22.79,37.9666666667,20.5,39.7,20.1,46.9,8.19,50.1333333333,21.39,35.8333333333,23.6666666667,37.8333333333,20.245,39.995,8.4,749.5,77.6666666667,6.6666666667,40,4.7333333333,13.9035804896,13.9035804896 -80,0,22.2,38.29,19.76,40.9333333333,22.89,38.045,20.5,39.6266666667,20.1,46.9333333333,8.145,49.345,21.39,36.23,23.7,38.1266666667,20.29,40.23,8.35,749.4,77.5,6.5,40,4.65,45.3553070314,45.3553070314 -80,0,22.1333333333,38.29,19.7,41,22.89,38.1266666667,20.5,39.6266666667,20.075,47,8.3,48.4233333333,21.39,36.3633333333,23.76,38.3333333333,20.23,40.3633333333,8.3,749.3,77.3333333333,6.3333333333,40,4.5666666667,45.1490307227,45.1490307227 -90,0,22.1,38.29,19.7,41.1266666667,22.89,38.2,20.39,39.5,20.0666666667,47.06,8.2266666667,48.2233333333,21.39,36.6266666667,23.79,38.6566666667,20.26,40.59,8.25,749.2,77.1666666667,6.1666666667,40,4.4833333333,37.1453938773,37.1453938773 -70,0,22.1,38.29,19.6333333333,41.1266666667,22.9266666667,38.1266666667,20.39,39.5,20,47.03,8.1,48.7266666667,21.39,36.76,23.79,38.8633333333,20.26,40.7233333333,8.2,749.1,77,6,40,4.4,18.2497840724,18.2497840724 -80,0,22.0666666667,38.26,19.6,41.2,23,38.2,20.39,39.5,20,47.09,8.1,49.1333333333,21.39,36.79,23.8233333333,39.1566666667,20.23,40.8266666667,8.2333333333,749,76.8333333333,6.3333333333,40,4.3833333333,1.6610208899,1.6610208899 -60,0,22,38.2,19.525,41.2675,22.9633333333,38.2,20.39,39.5,20,47.09,8.1,49.3,21.39,36.93,23.89,39.3633333333,20.29,40.9666666667,8.2666666667,748.9,76.6666666667,6.6666666667,40,4.3666666667,21.4451231179,21.4451231179 -50,0,22,38.2,19.5,41.29,22.9633333333,38.2,20.39,39.5,20,47.09,8.0333333333,49.5,21.39,37.03,23.89,39.6,20.29,41.1266666667,8.3,748.8,76.5,7,40,4.35,47.8793032351,47.8793032351 -60,0,22,38.26,19.4266666667,41.3266666667,22.89,38.2,20.39,39.5,20,47.2,8,49.7233333333,21.39,37.2225,23.89,39.86,20.29,41.26,8.3333333333,748.7,76.3333333333,7.3333333333,40,4.3333333333,13.1815855741,13.1815855741 -60,0,22,38.29,19.4266666667,41.4,22.9633333333,38.26,20.3566666667,39.4,20,47.2,8,49.1966666667,21.39,37.4666666667,23.89,40.1933333333,20.29,41.3266666667,8.3666666667,748.6,76.1666666667,7.6666666667,40,4.3166666667,28.0777771608,28.0777771608 -60,0,21.9266666667,38.29,19.39,41.4333333333,22.9266666667,38.29,20.29,39.4,20,47.23,8.1,48.7333333333,21.39,37.6266666667,23.79,40.4333333333,20.29,41.4,8.4,748.5,76,8,40,4.3,21.8332816963,21.8332816963 -70,0,21.89,38.29,19.39,41.5,23,38.29,20.29,39.4,20,47.29,8.16,48.0666666667,21.39,37.7,23.79,40.56,20.29,41.53,8.4333333333,748.35,75.6666666667,8,40,4.2833333333,26.4032178675,26.4032178675 -60,0,21.89,38.29,19.29,41.5,23,38.29,20.29,39.4,20,47.29,8.33,47.2566666667,21.39,37.6633333333,23.7,40.59,20.29,41.59,8.4666666667,748.2,75.3333333333,8,40,4.2666666667,21.8591890996,21.8591890996 -60,0,21.8566666667,38.29,19.29,41.56,23,38.29,20.26,39.29,20,47.29,8.39,46.2566666667,21.39,37.59,23.7,40.6633333333,20.29,41.7,8.5,748.05,75,8,40,4.25,48.4492097865,48.4492097865 -50,0,21.79,38.29,19.26,41.56,23,38.29,20.2,39.29,20,47.3633333333,8.4266666667,44.89,21.39,37.59,23.6666666667,40.8266666667,20.29,41.76,8.5333333333,747.9,74.6666666667,8,40,4.2333333333,16.4362584008,16.4362584008 -60,0,21.79,38.29,19.2,41.5,23,38.29,20.26,39.26,20,47.3633333333,8.5,44.89,21.39,37.6633333333,23.6,40.9666666667,20.29,41.8266666667,8.5666666667,747.75,74.3333333333,8,40,4.2166666667,38.4611774818,38.4611774818 -50,0,21.79,38.29,19.2,41.5,23,38.3266666667,20.2,39.2,20,47.4,8.6,43.8266666667,21.39,37.7666666667,23.6,41.3,20.29,41.9,8.6,747.6,74,8,40,4.2,3.1894840649,3.1894840649 -60,0,21.7,38.29,19.2,41.56,23,38.3266666667,20.26,39.26,20,47.4,8.66,42.9,21.39,37.9666666667,23.6,41.56,20.29,41.9333333333,8.6666666667,747.45,73.5,8.1666666667,40,4.15,48.7732995767,48.7732995767 -60,0,21.7,38.29,19.1333333333,41.59,23,38.3266666667,20.2,39.2,19.89,47.4,8.745,42.645,21.39,38,23.5666666667,41.73,20.29,42,8.7333333333,747.3,73,8.3333333333,40,4.1,43.8103480032,43.8103480032 -70,0,21.7,38.29,19.1333333333,41.59,23,38.3266666667,20.2,39.2,19.9633333333,47.4666666667,8.83,41.53,21.39,38,23.5,41.8633333333,20.29,42.09,8.8,747.15,72.5,8.5,40,4.05,1.4266459621,1.4266459621 -60,0,21.7,38.29,19.1,41.59,23,38.4,20.2,39.2,19.9266666667,47.4,8.89,41.59,21.39,37.9666666667,23.5,42.09,20.29,42.1266666667,8.8666666667,747,72,8.6666666667,40,4,5.7814491796,5.7814491796 -60,0,21.7,38.29,19.1,41.59,23,38.4,20.2,39.1266666667,19.9175,47.475,9,40.7333333333,21.39,37.8266666667,23.5,42.2233333333,20.29,42.2,8.9333333333,746.85,71.5,8.8333333333,40,3.95,39.6607042057,39.6607042057 -70,0,21.7,38.29,19.1,41.6633333333,23,38.4,20.1666666667,39.1266666667,19.89,47.5,9,40.66,21.39,37.7,23.39,42.23,20.29,42.23,9,746.7,71,9,40,3.9,2.1525136544,2.1525136544 -60,0,21.7,38.29,19.1,41.6633333333,23,38.4,20.1,39.1266666667,19.9633333333,47.5,9,40.29,21.39,37.7,23.39,42.43,20.29,42.29,9,746.5166666667,71.1666666667,9,40,3.95,21.7336745118,21.7336745118 -60,0,21.6,38.29,19,41.59,23,38.4,20.1,39.09,19.9633333333,47.5,8.9266666667,40.29,21.39,37.8266666667,23.39,42.56,20.29,42.29,9,746.3333333333,71.3333333333,9,40,4,6.3793711015,6.3793711015 -50,0,21.6,38.29,19.05,41.645,23,38.4,20.1,39.09,19.9633333333,47.5,8.86,39.56,21.39,37.9,23.39,42.56,20.29,42.3633333333,9,746.15,71.5,9,40,4.05,10.349171143,10.349171143 -60,0,21.6,38.26,19,41.59,22.9266666667,38.4,20.1,39.09,19.9633333333,47.5,8.8,39.4333333333,21.39,38,23.29,42.59,20.29,42.4,9,745.9666666667,71.6666666667,9,40,4.1,8.5298273829,8.5298273829 -60,0,21.6,38.26,19,41.56,22.89,38.4,20.1,39.09,20,47.5,8.8,39.4666666667,21.39,38,23.29,42.59,20.29,42.4666666667,9,745.7833333333,71.8333333333,9,40,4.15,31.2553628813,31.2553628813 -60,0,21.6,38.2,19,41.56,22.89,38.4,20.1,39.09,19.9266666667,47.5,8.86,39.1333333333,21.39,38.045,23.29,42.59,20.29,42.5,9,745.6,72,9,40,4.2,47.3652138142,47.3652138142 -70,0,21.6,38.2,18.9633333333,41.56,22.79,38.29,20.1,39.09,19.89,47.5,8.9266666667,38.36,21.39,38.09,23.23,42.6566666667,20.29,42.56,8.9666666667,745.3833333333,72,9.1666666667,40,4.15,46.6254368192,46.6254368192 -50,0,21.5,38.2,18.89,41.5,22.79,38.29,20.1,39,19.89,47.5,9,38.56,21.39,38.03,23.29,42.79,20.29,42.59,8.9333333333,745.1666666667,72,9.3333333333,40,4.1,28.3317515976,28.3317515976 -70,0,21.5,38.2,18.9633333333,41.53,22.79,38.2,20.1,39,19.89,47.5,8.89,40.5266666667,21.3233333333,38.03,23.2,42.79,20.29,42.59,8.9,744.95,72,9.5,40,4.05,36.562216084,36.562216084 -60,0,21.5,38.2,18.89,41.53,22.79,38.2,20.1,39,19.89,47.5,8.6966666667,42.7266666667,21.39,38.09,23.2,42.79,20.29,42.6266666667,8.8666666667,744.7333333333,72,9.6666666667,40,4,9.0946073527,9.0946073527 -60,0,21.5,38.2,18.89,41.59,22.79,38.2,20.1,39,19.89,47.5,8.4633333333,45.3333333333,21.39,38.09,23.2,42.79,20.29,42.7,8.8333333333,744.5166666667,72,9.8333333333,40,3.95,22.1742826281,22.1742826281 -50,0,21.5,38.2,18.89,41.59,22.79,38.2,20.1,39,19.89,47.5,8.1966666667,49.3933333333,21.39,38.1633333333,23.1333333333,42.79,20.29,42.7,8.8,744.3,72,10,40,3.9,45.5084453453,45.5084453453 -60,0,21.5,38.2,18.89,41.7,22.7,38.2,20.0333333333,38.9333333333,19.89,47.5,7.795,54.145,21.39,38.23,23.1,42.8266666667,20.29,42.76,8.6666666667,744.1833333333,73.6666666667,10,44.1666666667,4.0833333333,28.1107007642,28.1107007642 -60,0,21.5,38.2,18.8233333333,41.6266666667,22.7,38.2,20.0333333333,38.9633333333,19.89,47.5,7.56,56.66,21.39,38.23,23.1,42.9666666667,20.29,42.73,8.5333333333,744.0666666667,75.3333333333,10,48.3333333333,4.2666666667,25.4396673292,25.4396673292 -50,0,21.5,38.26,18.79,41.6266666667,22.7,38.2,20.025,39.0225,19.89,47.5,7.4333333333,57.5266666667,21.3566666667,38.4,23.1,43.03,20.29,42.79,8.4,743.95,77,10,52.5,4.45,35.5760424398,35.5760424398 -70,0,21.5,38.29,18.79,41.7,22.7,38.2,20,39,19.89,47.4333333333,7.3,57.2333333333,21.3566666667,38.4,23.1,43.1633333333,20.29,42.845,8.2666666667,743.8333333333,78.6666666667,10,56.6666666667,4.6333333333,20.9001401206,20.9001401206 -60,0,21.4266666667,38.23,18.79,41.79,22.7,38.2,20,39,19.89,47.4,7.3,57.1,21.3566666667,38.4333333333,23.1,43.23,20.29,42.9,8.1333333333,743.7166666667,80.3333333333,10,60.8333333333,4.8166666667,0.193013961,0.193013961 -60,0,21.39,38.2,18.79,41.79,22.7,38.1175,20,39,19.89,47.4,7.5,54.6966666667,21.3566666667,38.56,23.1,43.43,20.29,42.9,8,743.6,82,10,65,5,6.5704383189,6.5704383189 -60,0,21.39,38.29,18.7,41.9,22.7,38.09,20,39,19.89,47.45,7.56,53.9633333333,21.3233333333,38.59,23,43.53,20.29,42.9333333333,7.9333333333,743.3333333333,81.6666666667,10.1666666667,60.8333333333,4.8833333333,10.0742433337,10.0742433337 -60,0,21.39,38.29,18.7,41.9,22.73,38.09,20,39,19.89,47.5,7.7266666667,52.2633333333,21.3233333333,38.59,23.0666666667,43.8633333333,20.29,43,7.8666666667,743.0666666667,81.3333333333,10.3333333333,56.6666666667,4.7666666667,7.5999389868,7.5999389868 -50,0,21.39,38.29,18.7,41.8266666667,22.79,38.1633333333,19.9266666667,39,19.89,47.5,7.9333333333,50.1233333333,21.3566666667,38.59,23,43.9,20.29,43,7.8,742.8,81,10.5,52.5,4.65,34.5706812921,34.5706812921 -60,0,21.39,38.29,18.675,41.8725,22.79,38.2,19.9266666667,39,19.89,47.5,8.0333333333,49.36,21.29,38.59,23,43.9,20.29,43,7.7333333333,742.5333333333,80.6666666667,10.6666666667,48.3333333333,4.5333333333,31.1626283568,31.1626283568 -50,0,21.29,38.29,18.6,41.79,22.79,38.2,19.89,39,19.89,47.5,8.1,47.6333333333,21.29,38.59,23,43.9,20.29,43.09,7.6666666667,742.2666666667,80.3333333333,10.8333333333,44.1666666667,4.4166666667,39.8284199066,39.8284199066 -60,0,21.29,38.29,18.6,41.79,22.79,38.29,19.9633333333,39,19.89,47.5,8.19,46.4666666667,21.3566666667,38.59,23,43.9,20.29,43.09,7.6,742,80,11,40,4.3,8.323571342,8.323571342 -50,0,21.29,38.29,18.6,41.79,22.79,38.29,19.89,38.9666666667,19.8233333333,47.4333333333,8.2633333333,46,21.29,38.5,23,43.9333333333,20.29,43.09,7.7166666667,741.8,78.8333333333,11.3333333333,40,4.2,22.800723312,22.800723312 -40,0,21.29,38.29,18.6,41.79,22.79,38.29,19.89,38.9,19.79,47.4333333333,8.3,46.3266666667,21.29,38.5,23,44.0675,20.29,43.1633333333,7.8333333333,741.6,77.6666666667,11.6666666667,40,4.1,19.3905374268,19.3905374268 -50,0,21.29,38.29,18.6,41.79,22.79,38.29,19.89,38.9,19.79,47.5,8.36,46.4666666667,21.29,38.4333333333,22.9266666667,44.03,20.29,43.2,7.95,741.4,76.5,12,40,4,30.2683256567,30.2683256567 -40,0,21.29,38.29,18.6,41.79,22.79,38.29,19.89,38.9,19.79,47.5,8.39,45.2966666667,21.29,38.3266666667,22.89,44,20.29,43.2,8.0666666667,741.2,75.3333333333,12.3333333333,40,3.9,19.4705303991,19.4705303991 -60,0,21.26,38.29,18.5333333333,41.79,22.79,38.29,19.89,38.9,19.8566666667,47.56,8.4633333333,45.09,21.29,38.3266666667,22.89,44,20.29,43.2,8.1833333333,741,74.1666666667,12.6666666667,40,3.8,4.2166451225,4.2166451225 -70,0,21.2,38.29,18.5333333333,41.89,22.76,38.29,19.89,38.9,19.79,47.5,8.5333333333,44.1333333333,21.29,38.4333333333,22.89,44.09,20.29,43.26,8.3,740.8,73,13,40,3.7,22.6061267429,22.6061267429 -50,0,21.2,38.29,18.5333333333,42.2966666667,22.7,38.23,19.89,38.9,19.79,47.5,8.6225,43.725,21.29,38.5,22.89,44.09,20.29,43.2,8.35,740.6666666667,73,13,40,3.7333333333,35.362105153,35.362105153 -60,0,21.2,38.3633333333,18.5,42.5,22.6666666667,38.06,19.89,38.9,19.79,47.5,8.7633333333,43.6933333333,21.29,38.5266666667,22.89,44.06,20.29,43.2,8.4,740.5333333333,73,13,40,3.7666666667,44.6139449952,44.6139449952 -70,0,21.2,38.4333333333,18.5,42.6933333333,22.6,37.86,19.89,39.045,19.79,47.5,8.83,41.96,21.29,38.4666666667,22.89,43.9333333333,20.29,43.1633333333,8.45,740.4,73,13,40,3.8,4.0429574554,4.0429574554 -60,0,21.2,38.56,18.5,42.73,22.6,37.79,19.89,39.36,19.79,47.5,8.9633333333,42.0333333333,21.29,38.4666666667,22.89,43.8633333333,20.29,43.09,8.5,740.2666666667,73,13,40,3.8333333333,3.0833661091,3.0833661091 -70,0,21.2,38.76,18.5,42.8633333333,22.6,37.73,19.9633333333,39.6333333333,19.79,47.5,8.9633333333,43.2333333333,21.29,38.4,22.89,43.79,20.29,43.06,8.55,740.1333333333,73,13,40,3.8666666667,8.8849340682,8.8849340682 -70,0,21.2,38.76,18.5,43.1266666667,22.5,37.7,19.89,39.86,19.79,47.5,8.89,44.6333333333,21.29,38.4333333333,22.89,43.9,20.29,43,8.6,740,73,13,40,3.9,20.693589549,20.693589549 -120,0,21.2,38.845,18.5,43.26,22.5,37.7,19.9633333333,40.06,19.79,47.5,8.8,47.9933333333,21.29,38.56,22.89,43.9,20.29,43,8.6,739.9166666667,73.6666666667,13,38,4.0333333333,6.7883700249,6.7883700249 -60,0,21.23,39.2266666667,18.6,43.4333333333,22.5,37.59,20,40.2,19.79,47.545,8.8,50.7333333333,21.29,38.6266666667,22.79,43.9,20.29,42.8633333333,8.6,739.8333333333,74.3333333333,13,36,4.1666666667,6.0112840263,6.0112840263 -70,0,21.29,39.56,18.6,43.56,22.5,37.59,20,40.1266666667,19.79,47.59,8.8,52.2233333333,21.29,38.7,22.79,43.9,20.29,42.79,8.6,739.75,75,13,34,4.3,21.3064070325,21.3064070325 -60,10,21.29,39.9,18.6,43.8,22.5,37.59,20,40.09,19.79,47.59,8.9333333333,52.63,21.29,38.73,22.79,44,20.29,42.79,8.6,739.6666666667,75.6666666667,13,32,4.4333333333,32.5991792837,32.5991792837 -60,0,21.29,39.9,18.675,44.095,22.5,37.6266666667,20,40.03,19.79,47.59,9.4,52.3,21.29,38.93,22.79,44,20.23,42.5966666667,8.6,739.5833333333,76.3333333333,13,30,4.5666666667,23.0484667118,23.0484667118 -90,0,21.29,39.9633333333,18.7,44.2,22.5,37.7,20,40,19.79,47.59,9.66,50.8933333333,21.29,39.23,22.79,44.03,20.23,42.53,8.6,739.5,77,13,28,4.7,24.4314668234,24.4314668234 -60,0,21.3566666667,40.1633333333,18.79,44.36,22.39,37.59,20,40.06,19.79,47.59,9.8,50.1333333333,21.29,39.29,22.79,44.09,20.29,42.53,8.65,739.4333333333,78,12.8333333333,30,4.95,37.3541354435,37.3541354435 -60,0,21.39,40.29,18.79,44.6333333333,22.39,37.6633333333,20,40.09,19.79,47.59,9.7266666667,51.6,21.29,39.195,22.79,44.1175,20.2,42.4,8.7,739.3666666667,79,12.6666666667,32,5.2,11.6909489967,11.6909489967 -60,10,21.39,40.43,18.79,44.8266666667,22.39,37.73,20,40.09,19.79,47.59,9.53,55.7566666667,21.29,39.045,22.79,44.2,20.2,42.3266666667,8.75,739.3,80,12.5,34,5.45,19.1954092123,19.1954092123 -140,10,21.4633333333,40.6633333333,18.79,44.9666666667,22.39,37.79,20,40.2,19.79,47.6633333333,9.1966666667,62.03,21.29,39.09,22.7,44.245,20.2,42.26,8.8,739.2333333333,81,12.3333333333,36,5.7,34.9679167964,34.9679167964 -110,30,21.39,40.59,18.79,45,22.39,37.9,20,40.26,19.79,47.56,8.86,66.73,21.29,39.09,22.76,44.3266666667,20.2,42.2,8.85,739.1666666667,82,12.1666666667,38,5.95,10.9621729702,10.9621729702 -100,20,21.39,40.73,18.79,45,22.39,37.9666666667,20.2633333333,40.6266666667,19.79,47.5,8.895,69.04,21.23,39.09,22.76,44.4,20.2,42.09,8.9,739.1,83,12,40,6.2,9.3825756223,9.3825756223 -90,20,21.39,40.8633333333,18.89,45,22.39,38.09,20.53,40.76,19.8566666667,47.5266666667,9.0666666667,69.99,21.2,39.1266666667,22.79,44.1333333333,20.2,42.09,8.85,739.2166666667,84.5,11.8333333333,43.8333333333,6.3833333333,25.9632210014,25.9632210014 -110,20,21.4266666667,40.86,18.9633333333,45,22.3233333333,38.09,20.86,40.9,19.8566666667,47.4666666667,9.19,69.49,21.2,39.3333333333,22.73,43.86,20.2,41.9666666667,8.8,739.3333333333,86,11.6666666667,47.6666666667,6.5666666667,21.7740271823,21.7740271823 -90,10,21.5,41,19.2633333333,44.7666666667,22.39,38.1266666667,21.0666666667,40.9,19.79,47.3633333333,9.2633333333,68.2966666667,21.29,39.2966666667,22.79,43.5266666667,20.2,41.8266666667,8.75,739.45,87.5,11.5,51.5,6.75,35.9323483543,35.9323483543 -230,0,21.5,41,19.53,44.3,22.3233333333,38.2,21.1,40.69,19.79,47.23,9.49,64.2666666667,21.23,38.7566666667,22.79,43.3266666667,20.2,41.49,8.7,739.5666666667,89,11.3333333333,55.3333333333,6.9333333333,48.3047633665,48.3047633665 -210,0,21.5,41,19.8233333333,43.66,22.39,38.2,21.1,40.2233333333,19.8233333333,47.09,9.9633333333,61.8,21.2,38.1933333333,22.89,43.1333333333,20.2,41.23,8.65,739.6833333333,90.5,11.1666666667,59.1666666667,7.1166666667,21.3640362606,21.3640362606 -170,0,21.5333333333,40.8633333333,20.03,43.1933333333,22.39,38.2,21.1,39.9633333333,19.89,47.03,10.46,57.2933333333,21.2,37.8,22.89,42.9333333333,20.29,41.8233333333,8.6,739.8,92,11,63,7.3,48.0214943876,48.0214943876 -380,0,21.6,40.73,20.23,42.79,22.39,38.2,21,39.6633333333,19.89,46.8333333333,10.7333333333,54.5666666667,21.2,37.43,23,42.76,20.29,42.79,8.8833333333,739.9666666667,88.8333333333,10.5,59.1666666667,7.0166666667,19.2617652821,19.2617652821 -210,0,21.7,40.79,20.43,42.6566666667,22.39,38.2,21,39.4633333333,19.89,46.7,11.3266666667,50.1633333333,21.2,37.0966666667,23,42.5666666667,20.29,43.43,9.1666666667,740.1333333333,85.6666666667,10,55.3333333333,6.7333333333,49.4199329289,49.4199329289 -150,0,21.7225,40.6725,20.73,42.2333333333,22.445,38.245,21.0333333333,39.36,19.89,46.56,11.7,43.84,21.23,36.76,23,42.3633333333,20.39,43.7,9.45,740.3,82.5,9.5,51.5,6.45,7.140446594,7.140446594 -100,0,21.8566666667,40.5,20.93,41.6333333333,22.5,38.3266666667,21.1,39.5,19.89,46.475,12.075,39.9725,21.23,36.4266666667,23.0666666667,42.23,20.39,43.6266666667,9.7333333333,740.4666666667,79.3333333333,9,47.6666666667,6.1666666667,33.977248997,33.977248997 -270,0,22.0333333333,40.3633333333,21.1633333333,41.1933333333,22.5,38.4,21.1333333333,39.53,19.9633333333,46.3266666667,12.3,32.8933333333,21.29,36.1,23.1,41.93,20.39,43.5,10.0166666667,740.6333333333,76.1666666667,8.5,43.8333333333,5.8833333333,27.0621268195,27.0621268195 -130,0,22.1,40.8233333333,21.3925,40.67,22.5333333333,38.4333333333,21.2,39.39,19.89,46.1633333333,12.2266666667,32.0933333333,21.29,35.6933333333,23.1,41.5966666667,20.39,43.4333333333,10.3,740.8,73,8,40,5.6,8.3943956881,8.3943956881 -100,0,22.23,41.06,21.5666666667,40.3,22.6,38.5,21.2,39.29,19.89,46.03,12.5,33.4266666667,21.26,35.2966666667,23.1333333333,41.2233333333,20.39,43.26,10.3833333333,740.8666666667,71.1666666667,8.5,40,5.3,22.8797517251,22.8797517251 -130,0,22.29,40.8,21.7,39.9666666667,22.6,38.4666666667,21.2,39.29,20,45.8633333333,12.53,30.19,21.2,34.9633333333,23.2,41.03,20.39,43.1266666667,10.4666666667,740.9333333333,69.3333333333,9,40,5,17.9179757833,17.9179757833 -100,0,22.39,40.1,21.76,39.8266666667,22.6,38.4666666667,21.2,39.29,20,45.79,12.2566666667,29.9966666667,21.26,34.7233333333,23.2,40.7233333333,20.39,42.9666666667,10.55,741,67.5,9.5,40,4.7,25.9538950399,25.9538950399 -100,0,22.4633333333,39.8266666667,21.8233333333,39.6633333333,22.6,38.5,21.2,39.29,20,45.6633333333,11.5,35.1966666667,21.2,34.53,23.2,40.6633333333,20.39,42.9,10.6333333333,741.0666666667,65.6666666667,10,40,4.4,5.4290119559,5.4290119559 -100,0,22.6,39.6633333333,21.9633333333,39.4633333333,22.6,38.5,21.2,39.3266666667,20,45.53,11.5,38.3966666667,21.29,34.6633333333,23.2,40.8266666667,20.39,42.8633333333,10.7166666667,741.1333333333,63.8333333333,10.5,40,4.1,14.7010849789,14.7010849789 -70,0,22.6,39.4633333333,22.0333333333,39.3333333333,22.6,38.5,21.2,39.4,20,45.5,11.4333333333,37.0633333333,21.29,34.5675,23.2,40.9,20.39,42.6566666667,10.8,741.2,62,11,40,3.8,3.4647669876,3.4647669876 -80,0,22.7,39.3633333333,22.1,39.1266666667,22.6,38.4333333333,21.2,39.53,20,45.4333333333,11.125,38.54,21.29,34.5,23.29,41.151875,20.4266666667,42.59,10.6833333333,741.3666666667,62.6666666667,11,40,3.8333333333,0.3119215835,0.3119215835 -80,0,22.7,39.23,22.1,38.8633333333,22.6,38.3633333333,21.26,39.6633333333,20.0333333333,45.4,11,38.79,21.29,34.4333333333,23.2955555556,41.2,20.5,42.59,10.5666666667,741.5333333333,63.3333333333,11,40,3.8666666667,35.8224410214,35.8224410214 -440,0,22.79,38.9666666667,22.1666666667,38.73,22.6,38.29,21.29,39.8266666667,20.1,45.345,11,37.79,21.39,34.29,23.3677777778,41.2,20.39,42.53,10.45,741.7,64,11,40,3.9,23.744523304,23.744523304 -430,0,22.79,38.9,22.23,38.4666666667,22.6,38.39,21.29,39.9,20.1,45.26,11.4658333333,36.7741666667,21.6,33.9666666667,23.39,40.8588888889,20.4633333333,42.59,10.3333333333,741.8666666667,64.6666666667,11,40,3.9333333333,15.315331181,15.315331181 -320,0,22.89,38.9633333333,22.29,38.3266666667,22.7266666667,39.2566666667,21.34,39.9,20.1,45.2,11.9316666667,35.7583333333,21.675,33.95,23.39,39.8,20.4266666667,42.2666666667,10.2166666667,742.0333333333,65.3333333333,11,40,3.9666666667,3.2035817276,3.2035817276 -300,0,22.9633333333,39.03,22.39,38.09,23.0666666667,40.8666666667,21.4266666667,39.9666666667,20.1,45.1266666667,12.59,30.438,21.7925,33.7675,23.29,38.89875,20.5,42.4666666667,10.1,742.2,66,11,40,4,7.5707548065,7.5707548065 -270,0,23.1,39.0266666667,22.4633333333,38.03,23.3266666667,41.4,21.5,39.8266666667,20.1,45.2,12.8225,26.2,21.89,33.42,23.29,38.4933333333,20.5,42.59,10.3,742.25,65.3333333333,11,40,4.0333333333,4.2564893258,4.2564893258 -290,10,23.1666666667,38.9666666667,22.5333333333,37.76,23.6633333333,41.93,21.5,39.6333333333,20.1,45.29,12.93,28.3454545455,21.89,33.23,23.218,37.736,20.5,42.5225,10.5,742.3,64.6666666667,11,40,4.0666666667,11.6611376754,11.6611376754 -280,0,23.23,39.06,22.6,37.5666666667,23.8566666667,41.6566666667,21.4266666667,39.4333333333,20.1,45.1633333333,13.16,30.1,21.9633333333,33.06,23.2,37.1566666667,20.5,42.56,10.7,742.35,64,11,40,4.1,43.9327700064,43.9327700064 -250,0,23.29,39.06,22.6,36.96,24.0666666667,40.9233333333,21.4266666667,39.29,20.1,45.09,13.495,27.7283333333,21.9633333333,33,23.245,37.245,20.5,42.56,10.9,742.4,63.3333333333,11,40,4.1333333333,8.9958711178,8.9958711178 -190,0,23.29,38.25,22.6,36.4266666667,24.2,39.9175,21.5,39.23,20.1333333333,45.06,13.6,25.9633333333,22.1,32.8633333333,23.3066666667,37.165,20.5,42.5,11.1,742.45,62.6666666667,11,40,4.1666666667,38.6765314965,38.6765314965 -100,0,23.39,38.06,22.6,36.23,24.26,39.2266666667,21.5,39.1633333333,20.1333333333,44.86,13.53,25.3566666667,22.1666666667,32.6566666667,23.39,36.7666666667,20.5,42.5,11.3,742.5,62,11,40,4.2,47.1186108072,47.1186108072 -90,0,23.39,37.9333333333,22.6,36.43,24.29,38.46,21.5,39.09,20.15,44.79,13.3011111111,26.7422222222,22.1666666667,32.4666666667,23.39,36.3971428571,20.5,42.5,11.35,742.5166666667,61.8333333333,10.5,40,4.2166666667,3.52882687,3.52882687 -80,10,23.4266666667,37.9,22.745,36.7,24.29,38.0666666667,21.5,39.09,20.2,44.9,13.5528571429,25.1942857143,22.1666666667,32.4,23.3816666667,36.0066666667,20.5,42.4666666667,11.4,742.5333333333,61.6666666667,10,40,4.2333333333,49.8946204083,49.8946204083 -80,0,23.5,37.8266666667,22.8566666667,36.76,24.2,38,21.5,39.09,20.2,44.9,13.6192857143,24.4114285714,22.23,32.29,23.29,35.50375,20.5,42.4,11.45,742.55,61.5,9.5,40,4.25,6.0466827359,6.0466827359 -400,0,23.6,38,22.79,36.7,24.2,38.06,21.5666666667,39,20.2,45,13.4333333333,24.71,22.29,32.23,23.254,35.2,20.5,42.29,11.5,742.5666666667,61.3333333333,9,40,4.2666666667,11.9395855814,11.9395855814 -660,10,23.6,38.1933333333,22.79,36.8266666667,24.0666666667,38.09,21.5,39,20.2,45.06,12.8692307692,21.6638461538,22.29,32.09,23.2,35.3733333333,20.5,42.29,11.55,742.5833333333,61.1666666667,8.5,40,4.2833333333,12.9827831057,12.9827831057 -310,0,23.6333333333,45.33,22.73,37.36,24,38.1633333333,21.5,39,20.2,45.1933333333,11.792,25.8,22.245,31.945,23.275,35.9983333333,20.5333333333,42.2,11.6,742.6,61,8,40,4.3,37.6349831582,37.6349831582 -110,0,23.7,50.33,22.79,39.3933333333,23.9266666667,39.7333333333,21.5,39.06,20.2,45.66,11.64,26.3935294118,22.2,31.745,23.29,36.3366666667,20.6,42.1266666667,11.05,742.7166666667,63.8333333333,8.1666666667,40,4.35,12.1519559529,12.1519559529 -110,0,23.7,47.2566666667,22.73,40.1933333333,24,40.4666666667,21.6,39.39,20.2,46.39,11.4327777778,28.6038888889,22.1666666667,31.7,23.3288888889,36.4666666667,20.6,41.9,10.5,742.8333333333,66.6666666667,8.3333333333,40,4.4,19.5274894126,19.5274894126 -100,0,23.7,44.7966666667,22.6666666667,40.2966666667,24,40.3333333333,21.6,39.6633333333,20.2,46.7233333333,11.4544444444,28.84,22.1,31.7,23.3788888889,36.4388888889,20.6,41.9,9.95,742.95,69.5,8.5,40,4.45,1.4663978945,1.4663978945 -100,0,23.7,43.2633333333,22.6,39.89,24,40.1266666667,21.5333333333,39.7,20.29,47,11.7227777778,29.3033333333,22.1,31.79,23.39,36.3755555556,20.5666666667,41.76,9.4,743.0666666667,72.3333333333,8.6666666667,40,4.5,20.3689180547,20.3689180547 -100,0,23.7,42.3233333333,22.6,39.5266666667,24,39.8633333333,21.6,39.7,20.29,47,11.7633333333,28.72,22.1,31.79,23.39,36.1711111111,20.5,41.7,8.85,743.1833333333,75.1666666667,8.8333333333,40,4.55,16.4451009245,16.4451009245 -100,0,23.7,41.36,22.5333333333,39.1933333333,24,39.6566666667,21.6,39.79,20.29,46.76,11.6922222222,26.2505555556,22.1,31.76,23.39,36,20.5,41.56,8.3,743.3,78,9,40,4.6,15.4240181902,15.4240181902 -110,0,23.7,40.5666666667,22.5,38.9666666667,23.89,39.4666666667,21.6,39.79,20.29,46.645,11.1833333333,24.8166666667,22.1666666667,31.6333333333,23.3233333333,35.5,20.5666666667,41.4333333333,8.6666666667,743.3166666667,76,8.6666666667,38.1666666667,4.55,37.3615884571,37.3615884571 -140,0,23.7,39.93,22.4266666667,38.6933333333,23.89,39.2666666667,21.6,39.79,20.29,46.4633333333,10.96,25.4666666667,22.1,31.6,23.34,35.365,20.5,41.4,9.0333333333,743.3333333333,74,8.3333333333,36.3333333333,4.5,7.158512657,7.158512657 -620,0,23.7,39.6566666667,22.3566666667,38.5,23.8566666667,39.0266666667,21.6,39.7,20.29,46.1,10.6572727273,26.8336363636,22.1,31.5,23.3677777778,35.1572222222,20.55,41.4,9.4,743.35,72,8,34.5,4.45,27.100320789,27.100320789 -580,0,23.6,39.3633333333,22.23,38.36,23.79,38.8266666667,21.6,39.6266666667,20.29,45.76,10.6394444444,27.7544444444,22,31.39,23.3788888889,35.09,20.5,41.3266666667,9.7666666667,743.3666666667,70,7.6666666667,32.6666666667,4.4,25.6882039714,25.6882039714 -350,0,23.6666666667,42.1566666667,22.2,38.79,23.79,38.7,21.5333333333,39.59,20.29,45.6266666667,10.4846153846,27.8076923077,22,31.39,23.39,35.0514285714,20.5,41.4,10.1333333333,743.3833333333,68,7.3333333333,30.8333333333,4.35,18.2247153367,18.2247153367 -100,10,23.65,45.145,22.1333333333,39.2633333333,23.79,38.8333333333,21.6,39.59,20.29,45.7666666667,10.2714285714,29.0271428571,21.89,31.5,23.38,35.105,20.5,41.3266666667,10.5,743.4,66,7,29,4.3,34.8380060983,34.8380060983 -130,0,23.6,43.0933333333,22,39.33,23.7,38.9,21.5,39.59,20.29,45.9666666667,10.0822222222,30.9183333333,21.89,31.5666666667,23.3081818182,35.2609090909,20.5,41.1633333333,10.3,743.4666666667,66.5,6.6666666667,30.8333333333,4.2333333333,18.4936702135,18.4936702135 -240,0,23.6,42.3666666667,22,39.6633333333,23.73,38.9333333333,21.5,39.59,20.29,46.09,9.835,31.1538888889,21.89,31.6,23.29,35.531875,20.5,40.83,10.1,743.5333333333,67,6.3333333333,32.6666666667,4.1666666667,18.9449469675,18.9449469675 -250,0,23.6,42.2633333333,22.0666666667,39.7233333333,23.79,39.06,21.39,39.4666666667,20.29,46,9.7266666667,30.3566666667,21.8233333333,31.6,23.29,35.76,20.5,40.1933333333,9.9,743.6,67.5,6,34.5,4.1,32.9565022723,32.9565022723 -330,10,23.6,41.3233333333,22,39.6225,23.79,39.09,21.39,39.3266666667,20.29,45.9333333333,9.4663636364,31.5663636364,21.79,32.1333333333,23.29,35.6877777778,20.5,39.7266666667,9.7,743.6666666667,68,5.6666666667,36.3333333333,4.0333333333,31.0784924775,31.0784924775 -260,0,23.6333333333,40.49,22,39.36,23.79,39.09,21.29,39.26,20.29,45.76,9.3005882353,32.1223529412,21.79,32.4,23.3344444444,35.4744444444,20.5,39.4,9.5,743.7333333333,68.5,5.3333333333,38.1666666667,3.9666666667,35.2491394966,35.2491394966 -120,10,23.6333333333,39.9566666667,21.89,39.0266666667,23.76,38.9666666667,21.29,39.1266666667,20.29,45.5666666667,9.136,32.8,21.76,32.26,23.29,35.31,20.5,39.0666666667,9.3,743.8,69,5,40,3.9,11.3584081642,11.3584081642 -500,0,23.6,39.43,21.8233333333,38.7666666667,23.7,38.8266666667,21.26,38.9666666667,20.29,45.4,8.845,35.245,21.7,32.2,23.29,35.29,20.5,38.7233333333,9.1666666667,743.8333333333,69.5,5,40,3.85,20.6575268065,20.6575268065 -110,0,23.6,39.1566666667,21.76,38.6933333333,23.6666666667,38.7233333333,21.2,38.9,20.29,45.6,8.712,37.474,21.6666666667,32.06,23.29,35.254,20.5,38.4633333333,9.0333333333,743.8666666667,70,5,40,3.8,6.305619562,6.305619562 -120,0,23.5,39,21.7,39.3,23.6,38.53,21.2,38.9,20.29,46.3,8.645,39.145,21.6,32,23.29,35.356,20.4266666667,38.23,8.9,743.9,70.5,5,40,3.75,31.8597925128,31.8597925128 -120,0,23.5,39.06,21.6,39.59,23.6,38.53,21.2,38.9,20.29,46.5,8.6,41.04,21.6,32.06,23.29,35.5666666667,20.5,38.23,8.7666666667,743.9333333333,71,5,40,3.7,6.4337341115,6.4337341115 -110,0,23.5666666667,39.1633333333,21.5333333333,39.59,23.5333333333,38.53,21.1666666667,38.9,20.29,46.4,8.5666666667,42.4311111111,21.5666666667,32.1266666667,23.29,36.0166666667,20.4633333333,38.06,8.6333333333,743.9666666667,71.5,5,40,3.65,19.1350809182,19.1350809182 -110,0,23.5,39.09,21.5,39.73,23.5,38.53,21.1,38.9,20.29,46.4666666667,8.5,42.3933333333,21.5,32.2,23.3233333333,36.4333333333,20.39,37.9333333333,8.5,744,72,5,40,3.6,36.6760498146,36.6760498146 -420,0,23.5,38.9666666667,21.4266666667,39.73,23.4266666667,38.53,21.1,38.79,20.29,46.73,8.3490909091,42.4945454545,21.5,32.23,23.39,36.7045454545,20.39,37.8633333333,8.4333333333,744.0666666667,73.1666666667,4.6666666667,40,3.7833333333,40.2803207515,40.2803207515 -330,0,23.5,38.8266666667,21.29,39.79,23.39,38.5,21.075,38.74,20.29,46.93,8.14,43.18625,21.5,32.29,23.4175,36.858125,20.39,37.79,8.3666666667,744.1333333333,74.3333333333,4.3333333333,40,3.9666666667,13.3558635716,13.3558635716 -100,0,23.39,38.73,21.29,39.8633333333,23.39,38.56,21,38.59,20.29,47.09,7.9333333333,44.2633333333,21.5,32.29,23.4842857143,37.14,20.39,37.7,8.3,744.2,75.5,4,40,4.15,25.9007060318,25.9007060318 -100,0,23.4633333333,38.79,21.2,39.9,23.29,38.5,21,38.56,20.29,47.1633333333,7.7725,45.8041666667,21.5,32.29,23.5,37.205625,20.39,37.6725,8.2333333333,744.2666666667,76.6666666667,3.6666666667,40,4.3333333333,47.3243587068,47.3243587068 -90,0,23.39,38.7,21.1333333333,39.9666666667,23.29,38.5,21,38.5,20.29,47.1633333333,7.6177777778,47.0216666667,21.39,32.29,23.5,37.3170588235,20.39,37.59,8.1666666667,744.3333333333,77.8333333333,3.3333333333,40,4.5166666667,5.7676692493,5.7676692493 -80,10,23.39,38.7,21.1,40.1566666667,23.29,38.5,21,38.5,20.23,47.03,7.5990909091,47.1772727273,21.39,32.3633333333,23.5133333333,37.44,20.39,37.5,8.1,744.4,79,3,40,4.7,31.7133559962,31.7133559962 -70,0,23.39,39.0266666667,21.0333333333,40.29,23.29,38.56,21,38.5,20.26,47.0266666667,7.6614285714,47.4928571429,21.39,32.6266666667,23.5428571429,37.7242857143,20.39,37.9666666667,7.9833333333,744.45,79.1666666667,3.5,40,4.6,49.274570134,49.274570134 -80,0,23.365,38.795,20.9633333333,40.1633333333,23.26,38.5266666667,20.9266666667,38.5,20.2,46.8266666667,7.64,48.69,21.39,32.76,23.6,38.25,20.39,39.03,7.8666666667,744.5,79.3333333333,4,40,4.5,5.3639650345,5.3639650345 -90,0,23.3566666667,38.6266666667,20.89,40.09,23.2,38.425,20.9266666667,38.56,20.2,46.7,7.489,51.799,21.39,32.9,23.6,38.75,20.39,39.43,7.75,744.55,79.5,4.5,40,4.4,30.0370235229,30.0370235229 -90,0,23.29,38.5,20.8566666667,40.2,23.2,38.5,20.89,38.59,20.2,46.6175,7.2976923077,55.0707692308,21.39,32.9666666667,23.68125,39.22875,20.5,39.59,7.6333333333,744.6,79.6666666667,5,40,4.3,23.0982981389,23.0982981389 -80,10,23.29,38.4333333333,20.79,40.2,23.2,38.53,20.89,38.59,20.2,46.59,7.061875,57.07125,21.39,33.1266666667,23.745,39.488,20.5,39.7233333333,7.5166666667,744.65,79.8333333333,5.5,40,4.2,9.6841258346,9.6841258346 -80,0,23.29,38.3633333333,20.73,40.26,23.2,38.59,20.89,38.6266666667,20.2,46.4666666667,6.9636363636,57.7845454545,21.39,33.2,23.7642857143,39.6085714286,20.5,39.9333333333,7.4,744.7,80,6,40,4.1,49.1241000243,49.1241000243 -50,0,23.23,38.29,20.6666666667,40.3633333333,23.2,38.59,20.8233333333,38.6266666667,20.2,46.4,6.8333333333,57.8,21.39,33.3266666667,23.79,39.856,20.5,40.06,7.25,744.75,81.3333333333,6.1666666667,38.1666666667,4.1833333333,0.8937256876,0.8937256876 -60,0,23.2,38.2,20.6,40.3633333333,23.2,38.59,20.8566666667,38.7,20.2,46.4,6.4333333333,58.0266666667,21.39,33.4666666667,23.79,40.4566666667,20.5,40.23,7.1,744.8,82.6666666667,6.3333333333,36.3333333333,4.2666666667,1.4672814636,1.4672814636 -50,0,23.2,38.2,20.5666666667,40.5,23.2,38.59,20.79,38.7,20.2,46.3266666667,6.125,60.145,21.3566666667,33.53,23.8677777778,41.2588888889,20.5,40.43,6.95,744.85,84,6.5,34.5,4.35,40.3276816709,40.3276816709 -50,0,23.1666666667,38.2,20.5,40.56,23.2,38.59,20.79,38.7,20.2,46.29,6.1471428571,61.4514285714,21.3566666667,33.59,23.8614285714,41.5671428571,20.5,40.6566666667,6.8,744.9,85.3333333333,6.6666666667,32.6666666667,4.4333333333,28.6543322727,28.6543322727 -50,0,23.1,38.2,20.4633333333,40.7,23.1666666667,38.59,20.79,38.7,20.2,46.29,6.3966666667,62.3933333333,21.29,33.645,23.8233333333,41.8633333333,20.5,40.8633333333,6.65,744.95,86.6666666667,6.8333333333,30.8333333333,4.5166666667,24.1285064374,24.1285064374 -40,0,23.1,38.2,20.3233333333,40.7,23.1666666667,38.59,20.79,38.79,20.2,46.2,6.59,61.4718181818,21.29,33.73,23.79,42.343125,20.5,41.1266666667,6.5,745,88,7,29,4.6,3.6332347663,3.6332347663 -40,0,23.1,38.2,20.29,40.73,23.1666666667,38.59,20.79,38.79,20.2,46.2,6.545,60.9683333333,21.29,33.79,23.79,42.599375,20.5,41.3333333333,6.5,745.1,88.3333333333,7,34.5,4.65,24.8987614643,24.8987614643 -40,10,23,38.09,20.29,40.79,23.1,38.59,20.76,38.79,20.2,46.1633333333,6.3494444444,60.4122222222,21.29,33.79,23.7771428571,42.7,20.5,41.53,6.5,745.2,88.6666666667,7,40,4.7,48.4537490294,48.4537490294 -40,0,23,38.09,20.2,40.79,23.1,38.59,20.745,38.8725,20.2,46.09,6.1494444444,59.9033333333,21.29,33.8633333333,23.705625,42.610625,20.5,41.6633333333,6.5,745.3,89,7,45.5,4.75,18.5825232416,18.5825232416 -50,0,22.9633333333,38.09,20.1333333333,40.8633333333,23.1,38.53,20.7,38.9,20.2,46.1633333333,5.9142857143,59.18,21.29,33.8633333333,23.7,42.59,20.5,41.8266666667,6.5,745.4,89.3333333333,7,51,4.8,17.1404869645,17.1404869645 -60,0,22.89,38.09,20.1,40.9333333333,23.1333333333,38.59,20.7,38.9,20.2,46.09,5.674,58.958,21.29,33.8633333333,23.66,42.634,20.5,41.9,6.5,745.5,89.6666666667,7,56.5,4.85,33.5930791334,33.5930791334 -50,0,22.89,38.09,20.1,41.06,23.2,38.59,20.7,38.9,20.1,46.1633333333,5.5,59.176875,21.29,33.8633333333,23.5833333333,42.78,20.5,41.9666666667,6.5,745.6,90,7,62,4.9,6.7213210743,6.7213210743 -60,0,22.8233333333,38.03,19.9633333333,41.03,23.2,38.59,20.7,38.9,20.1,46.09,5.5375,59.3908333333,21.23,33.73,23.5111111111,43.0322222222,20.5333333333,42.03,6.3833333333,745.7166666667,89,7,58.3333333333,4.6333333333,47.2530348925,47.2530348925 -50,0,22.79,37.9,19.89,41.1633333333,23.2,38.59,20.6333333333,38.8266666667,20.1,46.09,5.6011111111,59.23,21.29,33.79,23.5,43.3422222222,20.5333333333,42.1633333333,6.2666666667,745.8333333333,88,7,54.6666666667,4.3666666667,25.1695548301,25.1695548301 -50,0,22.79,37.9,19.89,41.23,23.2,38.59,20.6,38.79,20.1,46.09,5.6233333333,59.0966666667,21.23,33.73,23.5,43.4,20.5,42.23,6.15,745.95,87,7,51,4.1,18.1273385766,18.1273385766 -70,0,22.79,37.9,19.8233333333,41.23,23.245,38.69,20.6,38.79,20.1,46.09,5.59,59.0666666667,21.2,33.7,23.5,43.4333333333,20.5,42.29,6.0333333333,746.0666666667,86,7,47.3333333333,3.8333333333,19.1720736097,19.1720736097 -60,10,22.7,37.9,19.79,41.3266666667,23.2,38.6633333333,20.6,38.79,20.1,46.09,5.5225,59.1175,21.2,33.7,23.4175,43.5675,20.5333333333,42.4,5.9166666667,746.1833333333,85,7,43.6666666667,3.5666666667,33.908064547,33.908064547 -70,0,22.7,37.9,19.73,41.4,23.29,38.79,20.6,38.79,20.1,46.09,5.3666666667,59.03,21.2,33.7,23.39,43.6566666667,20.5333333333,42.4666666667,5.8,746.3,84,7,40,3.3,32.6809121063,32.6809121063 -50,0,22.7,37.8633333333,19.7,41.545,23.29,38.79,20.6,38.79,20.1,46.09,5.3666666667,60.03,21.2,33.7,23.39,43.79,20.5666666667,42.5,5.8,746.3833333333,84.1666666667,7,40,3.3166666667,24.0552238072,24.0552238072 -70,0,22.7,37.79,19.6666666667,41.56,23.29,38.76,20.6,38.79,20.1,46.09,5.4,60.425,21.2,33.7,23.39,43.9,20.5,42.56,5.8,746.4666666667,84.3333333333,7,40,3.3333333333,0.3956476459,0.3956476459 -50,0,22.6,37.76,19.6666666667,41.6333333333,23.29,38.76,20.5333333333,38.7,20.1,46.09,5.4,60.4,21.2,33.7,23.39,43.9,20.5333333333,42.59,5.8,746.55,84.5,7,40,3.35,38.7232737034,38.7232737034 -60,0,22.6,37.7,19.6,41.6266666667,23.3233333333,38.79,20.5333333333,38.76,20.1,46.09,5.516,61.096,21.1666666667,33.7,23.365,43.80875,20.6,42.59,5.8,746.6333333333,84.6666666667,7,40,3.3666666667,4.5797423692,4.5797423692 -50,0,22.6,37.7,19.6,41.7,23.3233333333,38.79,20.5333333333,38.7,20.1,46.09,5.692,61.178,21.1666666667,33.7,23.3025,43.6425,20.5,42.7,5.8,746.7166666667,84.8333333333,7,40,3.3833333333,49.8690648936,49.8690648936 -50,0,22.6,37.7,19.5,41.7,23.39,38.79,20.5333333333,38.7,20.1,46.03,5.9111111111,60.67,21.1,33.7,23.29,43.5163636364,20.5666666667,42.7,5.8,746.8,85,7,40,3.4,2.0665802294,2.0665802294 -60,0,22.6,37.7,19.5,41.76,23.3233333333,38.79,20.5,38.7,20.1,46.03,5.9727272727,60.8718181818,21.1,33.7,23.29,43.4,20.6,42.79,5.8333333333,746.8666666667,84.8333333333,7.1666666667,40,3.4,37.0899994392,37.0899994392 -60,10,22.5333333333,37.7,19.4633333333,41.76,23.29,38.79,20.5,38.7,20.1,46.09,5.8155555556,61.665,21.1,33.7,23.29,43.3694444444,20.6,42.8633333333,5.8666666667,746.9333333333,84.6666666667,7.3333333333,40,3.4,32.8095019562,32.8095019562 -60,0,22.5,37.7,19.39,41.76,23.29,38.79,20.5,38.7,20.0666666667,46.06,5.7877777778,62.4194444444,21.1,33.73,23.265,43.235,20.6,42.9,5.9,747,84.5,7.5,40,3.4,1.4500934398,1.4500934398 -60,0,22.5,37.7,19.39,41.79,23.3233333333,38.79,20.5,38.7,20.0666666667,46.06,5.8222222222,62.55,21.1,33.79,23.2163636364,43.18,20.6,42.9,5.9333333333,747.0666666667,84.3333333333,7.6666666667,40,3.4,33.9128211723,33.9128211723 -70,0,22.5,37.73,19.39,41.79,23.3233333333,38.8633333333,20.4266666667,38.6266666667,20.0333333333,46.03,5.9,62.290625,21.1,33.79,23.2,43.0811111111,20.6,43,5.9666666667,747.1333333333,84.1666666667,7.8333333333,40,3.4,3.6813188228,3.6813188228 -60,0,22.5,37.79,19.39,41.9,23.39,38.9,20.39,38.59,20.0333333333,46.03,5.96875,61.7725,21.1,33.79,23.2,42.97,20.6,43.0675,6,747.2,84,8,40,3.4,3.8248699508,3.8248699508 -60,0,22.39,37.7,19.39,41.9,23.39,38.9,20.39,38.59,20,46,5.8764705882,62.0952941176,21,33.7,23.1888888889,42.9,20.6,43.09,5.9833333333,747.25,84.5,7.8333333333,40,3.4833333333,42.977777333,42.977777333 -40,0,22.39,37.7,19.29,41.9,23.39,38.79,20.39,38.59,20,46,5.9058823529,62.0482352941,21.0666666667,33.76,23.1055555556,42.8327777778,20.6,43.2,5.9666666667,747.3,85,7.6666666667,40,3.5666666667,24.8669778928,24.8669778928 -60,0,22.39,37.7,19.29,41.9666666667,23.39,38.8633333333,20.39,38.59,20,46,5.9166666667,61.6722222222,21.0333333333,33.73,23.1,42.79,20.6,43.2,5.95,747.35,85.5,7.5,40,3.65,4.2819426046,4.2819426046 -50,0,22.39,37.7,19.29,42,23.39,38.8633333333,20.39,38.59,20,46,5.8777777778,61.45,21.1,33.8633333333,23.1,42.79,20.6,43.29,5.9333333333,747.4,86,7.3333333333,40,3.7333333333,0.7417905144,0.7417905144 -50,0,22.29,37.7,19.29,42,23.3233333333,38.79,20.39,38.59,20,46,5.8181818182,61.3681818182,21.0666666667,33.79,23.1,42.79,20.6,43.3633333333,5.9166666667,747.45,86.5,7.1666666667,40,3.8166666667,9.9555070861,9.9555070861 -70,0,22.29,37.7,19.2,41.9,23.34,38.845,20.39,38.59,20,46,5.78625,61.21875,21,33.73,23.0818181818,42.8036363636,20.6,43.4,5.9,747.5,87,7,40,3.9,34.3211011146,34.3211011146 -50,0,22.29,37.7,19.2,41.9,23.3566666667,38.8266666667,20.39,38.59,20,46,5.7877777778,60.5155555556,21,33.79,23.0833333333,42.8177777778,20.6,43.4,5.85,747.5666666667,87,7.3333333333,40,3.8333333333,15.0129011483,15.0129011483 -70,0,22.29,37.73,19.2,41.9,23.29,38.8266666667,20.3233333333,38.59,20,46.09,5.8166666667,59.9766666667,21,33.79,23.0125,42.764375,20.5333333333,43.4333333333,5.8,747.6333333333,87,7.6666666667,40,3.7666666667,42.3607663251,42.3607663251 -50,0,22.29,37.73,19.1666666667,41.9,23.3233333333,38.8266666667,20.39,38.59,20,46.09,5.8222222222,59.525,21,33.76,23,42.728125,20.6,43.5,5.75,747.7,87,8,40,3.7,4.2748998734,4.2748998734 -70,0,22.2,37.6633333333,19.1,41.9,23.39,38.8266666667,20.29,38.59,20,46.09,5.8377777778,59.0144444444,21,33.7,23,42.7,20.6,43.53,5.7,747.7666666667,87,8.3333333333,40,3.6333333333,16.9125594548,16.9125594548 -60,0,22.2,37.6633333333,19.1333333333,41.9,23.39,38.79,20.29,38.59,20,46.09,5.6142857143,58.0514285714,21,33.7,23,42.6921428571,20.6,43.59,5.65,747.8333333333,87,8.6666666667,40,3.5666666667,19.0996828489,19.0996828489 -80,0,22.2,37.73,19.2,41.9,23.3233333333,38.79,20.29,38.59,20,46.09,5.36875,58.389375,21,33.7,23,42.6214285714,20.6,43.6266666667,5.6,747.9,87,9,40,3.5,16.3193183136,16.3193183136 -60,0,22.2,38.0633333333,19.1,42.03,23.29,38.79,20.29,38.59,20,46.1633333333,5.45,59.2,20.9266666667,33.7,22.9175,42.7,20.6,43.7,5.55,747.9666666667,86.8333333333,8.6666666667,40,3.4333333333,4.4367038296,4.4367038296 -50,10,22.2,38.4,19.1,42.49,23.23,38.6566666667,20.29,38.59,20,46.2,5.4,58.6333333333,21,33.7,22.9266666667,42.7,20.6,43.7,5.5,748.0333333333,86.6666666667,8.3333333333,40,3.3666666667,34.7620978951,34.7620978951 -60,0,22.2,38.4,19,42.6266666667,23.1666666667,38.4666666667,20.29,38.59,20,46.2,5.3818181818,59.0418181818,20.9266666667,33.7,22.90375,42.798125,20.6,43.7,5.45,748.1,86.5,8,40,3.3,35.4936263058,35.4936263058 -50,0,22.1666666667,38.4333333333,19,42.76,23.1666666667,38.4,20.29,38.59,19.9633333333,46.23,5.2983333333,58.5833333333,20.89,33.7,22.9144444444,42.8144444444,20.5333333333,43.59,5.4,748.1666666667,86.3333333333,7.6666666667,40,3.2333333333,29.5605528634,29.5605528634 -60,0,22.1,38.5,19,42.9333333333,23.1,38.3633333333,20.23,38.4633333333,19.9633333333,46.29,5.035625,58.6075,20.89,33.7,22.89,42.79,20.5333333333,43.53,5.35,748.2333333333,86.1666666667,7.3333333333,40,3.1666666667,44.0924577066,44.0924577066 -40,0,22.1,38.5,19,43,23.1,38.29,20.29,38.59,19.89,46.29,5.0675,59.625,20.89,33.7,22.89,42.79,20.5666666667,43.4666666667,5.3,748.3,86,7,40,3.1,46.0660581011,46.0660581011 -30,0,22.1,38.4333333333,19,43,23.1,38.2233333333,20.23,38.53,19.9633333333,46.29,5.0616666667,59.1666666667,20.89,33.7,22.89,42.79,20.5666666667,43.4,5.2666666667,748.3833333333,85.8333333333,7.1666666667,40,3.05,24.6282407083,24.6282407083 -40,0,22.1,38.3633333333,19,43,23.0333333333,37.9633333333,20.29,38.6633333333,20,46.4,4.7481818182,58.7890909091,20.89,33.7,22.8566666667,42.76,20.5,43.345,5.2333333333,748.4666666667,85.6666666667,7.3333333333,40,3,42.1023547766,42.1023547766 -40,0,22.0333333333,38.23,18.89,43,23,37.9,20.26,38.6633333333,20,46.4666666667,4.6344444444,59.9755555556,20.89,33.7,22.8455555556,42.75,20.5,43.26,5.2,748.55,85.5,7.5,40,2.95,3.3680622117,3.3680622117 -60,0,22,38.2,18.89,43,22.9266666667,37.8266666667,20.26,38.7233333333,19.89,46.53,4.69,60.4072222222,20.89,33.7,22.8177777778,42.725,20.5,43.2,5.1666666667,748.6333333333,85.3333333333,7.6666666667,40,2.9,49.3400157662,49.3400157662 -60,0,22,38.2,18.89,43,22.89,37.73,20.29,38.8266666667,19.89,46.59,4.69,60.4354545455,20.8233333333,33.6266666667,22.79,42.7,20.5,43.09,5.1333333333,748.7166666667,85.1666666667,7.8333333333,40,2.85,20.7318791654,20.7318791654 -70,0,22,38.23,18.89,42.9333333333,22.8233333333,37.73,20.29,38.9,20,46.6266666667,4.69,60.5625,20.89,33.7,22.79,42.693125,20.5,43.09,5.1,748.8,85,8,40,2.8,5.0224027713,5.0224027713 -50,0,22,38.43,18.89,42.93,22.79,37.59,20.23,38.9333333333,19.9266666667,46.7,4.815,60.6955555556,20.8233333333,33.6266666667,22.79,42.6407692308,20.5,43,5.0833333333,748.9,85.1666666667,8,40,2.8,3.2959291362,3.2959291362 -70,0,22,38.45,18.89,42.8633333333,22.79,37.5225,20.29,39,20,46.7,5.045,60.925,20.89,33.7,22.79,42.624375,20.5,42.9333333333,5.0666666667,749,85.3333333333,8,40,2.8,33.8446934009,33.8446934009 -60,0,22,38.5,18.945,42.79,22.79,37.56,20.29,39,19.9725,46.6175,5.2788888889,60.8466666667,20.89,33.6266666667,22.79,42.58,20.5,42.76,5.05,749.1,85.5,8,40,2.8,29.1554964264,29.1554964264 -60,0,22,38.4333333333,19,42.7,22.8233333333,37.53,20.29,39.06,19.9633333333,46.59,5.685,60.7005555556,20.8566666667,33.59,22.79,42.505,20.5,42.5666666667,5.0333333333,749.2,85.6666666667,8,40,2.8,35.0269418908,35.0269418908 -60,0,22,38.4,19,42.7,22.89,37.53,20.29,39.09,19.9633333333,46.59,5.9711111111,59.2244444444,20.79,33.59,22.79,42.565,20.5,42.3633333333,5.0166666667,749.3,85.8333333333,8,40,2.8,15.7492315397,15.7492315397 -60,0,22,38.4,19.1333333333,42.7233333333,22.79,37.4666666667,20.29,39.1633333333,19.9633333333,46.53,6.3483333333,58.3783333333,20.79,33.5,22.79,42.6083333333,20.5,42.1566666667,5,749.4,86,8,40,2.8,19.0681027947,19.0681027947 -50,0,21.89,38.4,19.1333333333,42.53,22.79,37.4,20.29,39.2,19.89,46.5,6.5805555556,56.3566666667,20.79,33.5,22.79,42.8033333333,20.5,41.93,5.2166666667,749.4666666667,85.1666666667,8,37.8333333333,2.8666666667,33.2162174745,33.2162174745 -70,0,21.89,38.4,19.1,42.53,22.8233333333,37.4333333333,20.29,39.1266666667,19.89,46.4333333333,6.7838888889,55.9505555556,20.79,33.5,22.79,43.075,20.5,41.73,5.4333333333,749.5333333333,84.3333333333,8,35.6666666667,2.9333333333,0.5915057496,0.5915057496 -80,0,21.89,38.4,19.1,42.53,22.8233333333,37.4333333333,20.2,39.09,20.4266666667,59.5333333333,7.0611111111,54.6994444444,20.79,33.5,22.79,43.0538888889,20.4266666667,41.5,5.65,749.6,83.5,8,33.5,3,49.8579666135,49.8579666135 -80,0,21.89,38.4666666667,19.1,42.5,22.89,37.4,20.2,39.03,21.6333333333,82.3266666667,7.3377777778,53.365,20.79,33.56,22.79,43.0622222222,20.4266666667,41.3,5.8666666667,749.6666666667,82.6666666667,8,31.3333333333,3.0666666667,15.1945424732,15.1945424732 -90,0,21.89,38.5,19.1666666667,42.5,22.89,37.3266666667,20.2,39,21.1333333333,80.4333333333,7.5844444444,51.6083333333,20.79,33.5,22.79,43.2,20.4266666667,41.1266666667,6.0833333333,749.7333333333,81.8333333333,8,29.1666666667,3.1333333333,7.44448232,7.44448232 -100,0,21.89,38.5,19.23,42.4666666667,22.89,37.29,20.2,39,20.86,80.7666666667,8.1033333333,49.2977777778,20.79,33.56,22.79,43.0877777778,20.4266666667,41.0666666667,6.3,749.8,81,8,27,3.2,16.4260212914,16.4260212914 -100,0,21.79,38.4,19.3566666667,42.2666666667,22.89,37.29,20.2,38.9333333333,20.7,81.5333333333,8.3,46.5966666667,20.79,33.56,22.8066666667,42.9277777778,20.4633333333,40.93,6.4666666667,749.8833333333,80,8,29.1666666667,3.2,3.5237217671,3.5237217671 -100,0,21.8566666667,38.4666666667,19.39,42.06,22.89,37.29,20.2,38.9,20.7,81.9333333333,8.3005555556,45.9483333333,20.79,33.5,22.8788888889,42.9888888889,20.4633333333,40.73,6.6333333333,749.9666666667,79,8,31.3333333333,3.2,47.1744910232,47.1744910232 -70,0,21.8566666667,38.4666666667,19.4633333333,41.9333333333,22.89,37.29,20.2,38.9,20.6,81.3966666667,8.5255555556,45.1294444444,20.79,33.5,22.9861111111,43.015,20.39,40.45,6.8,750.05,78,8,33.5,3.2,6.9832364214,6.9832364214 -80,0,21.79,38.4,19.6,41.76,22.89,37.29,20.2,38.9,20.6,80.9966666667,8.6783333333,46.3861111111,20.79,33.56,23.0888888889,42.9883333333,20.39,40.26,6.9666666667,750.1333333333,77,8,35.6666666667,3.2,24.5083317277,24.5083317277 -70,0,21.79,38.5,19.6,41.7,22.89,37.29,20.2,38.9,20.6,79.3333333333,8.9838888889,46.2216666667,20.79,33.5,23.1222222222,42.9,20.39,40.1266666667,7.1333333333,750.2166666667,76,8,37.8333333333,3.2,14.8265541298,14.8265541298 -80,0,21.79,38.5,19.73,41.56,22.8566666667,37.26,20.23,38.9,20.5333333333,74,9.245,45.8772222222,20.79,33.56,23.1833333333,42.9611111111,20.39,39.8633333333,7.3,750.3,75,8,40,3.2,15.169164259,15.169164259 -80,0,21.79,38.53,19.79,41.36,22.79,37.2,20.23,38.9,20.4266666667,65.3633333333,9.5377777778,45.125,20.79,33.56,23.2,43.045,20.39,39.73,7.5166666667,750.3833333333,75.1666666667,7.8333333333,40,3.4333333333,22.0428852946,22.0428852946 -80,0,21.79,38.59,19.9266666667,41.3633333333,22.8566666667,37.26,20.2,38.79,20.5,61.4233333333,10.1222222222,42.6638888889,20.79,33.56,23.2,43.09,20.4633333333,39.6933333333,7.7333333333,750.4666666667,75.3333333333,7.6666666667,40,3.6666666667,15.1814217097,15.1814217097 -90,0,21.79,38.59,20.0666666667,41.0966666667,22.79,37.2,20.26,38.79,20.4266666667,58.6666666667,10.6644444444,39.845,20.79,33.59,23.265,43.1694444444,20.4633333333,39.56,7.95,750.55,75.5,7.5,40,3.9,6.070601847,6.070601847 -80,0,21.79,38.7,20.245,40.79,22.79,37.2,20.29,38.79,20.4175,57.0225,10.9044444444,39.2327777778,20.79,33.53,23.29,43.2,20.4266666667,39.53,8.1666666667,750.6333333333,75.6666666667,7.3333333333,40,4.1333333333,22.2543361364,22.2543361364 -80,0,21.79,38.7,20.39,40.59,22.79,37.2,20.29,38.79,20.4633333333,55.63,11.1422222222,38.1316666667,20.89,33.6266666667,23.3233333333,43.22,20.5,39.59,8.3833333333,750.7166666667,75.8333333333,7.1666666667,40,4.3666666667,47.9300609324,47.9300609324 -60,0,21.79,38.79,20.39,40.53,22.79,37.2,20.29,38.7,20.39,54.46,11.3077777778,36.6927777778,20.89,33.6266666667,23.3844444444,43.2,20.4633333333,39.56,8.6,750.8,76,7,40,4.6,12.6775829471,12.6775829471 -50,0,21.79,38.79,20.39,40.4333333333,22.79,37.2,20.29,38.7,20.39,53.8666666667,11.0277777778,33.7888888889,20.79,33.56,23.39,43.1694444444,20.39,39.5,8.6833333333,750.8666666667,75.5,7,40,4.5833333333,35.7989126118,35.7989126118 -60,0,21.79,38.8266666667,20.4633333333,40.4333333333,22.79,37.2,20.3233333333,38.7,20.39,53.16,11.4872222222,34.4755555556,20.8566666667,33.56,23.4327777778,43.2733333333,20.4266666667,39.4633333333,8.7666666667,750.9333333333,75,7,40,4.5666666667,35.7861158787,35.7861158787 -50,0,21.79,38.9,20.73,40.1933333333,22.79,37.23,20.39,38.6266666667,20.39,52.5666666667,11.8605555556,29.3838888889,20.89,33.56,23.5,43.4322222222,20.5,39.59,8.85,751,74.5,7,40,4.55,16.3693174371,16.3693174371 -70,0,21.79,38.9333333333,20.79,39.9333333333,22.73,37.29,20.39,38.59,20.39,51.7333333333,11.5088888889,26.9944444444,20.89,33.5,23.5833333333,43.9122222222,20.5,39.59,8.9333333333,751.0666666667,74,7,40,4.5333333333,37.7953741467,37.7953741467 -80,0,21.79,39,20.6666666667,39.8633333333,22.7,37.4,20.39,38.59,20.4633333333,51.2666666667,11.2783333333,27.3011111111,20.89,33.5,23.6,44.0772222222,20.5,39.4633333333,9.0166666667,751.1333333333,73.5,7,40,4.5166666667,44.470300572,44.470300572 -90,0,21.79,38.9,20.6,39.8633333333,22.7,37.4,20.39,38.59,20.4633333333,50.7966666667,11.2805555556,29.3111111111,20.89,33.5,23.6166666667,44,20.5,39.4,9.1,751.2,73,7,40,4.5,21.1061476613,21.1061476613 -160,0,21.79,38.8266666667,20.7,39.8333333333,22.7,37.4,20.39,38.7,20.4633333333,50.4633333333,11.5833333333,26.6666666667,20.89,33.4333333333,23.7,43.9194444444,20.5,39.4,9.1333333333,751.2,71.8333333333,7,40,4.3,32.5726560899,32.5726560899 -90,0,21.79,39.1333333333,20.76,39.6266666667,22.7,37.4,20.39,38.7,20.39,50.5666666667,11.6633333333,23.02,20.9266666667,33.29,23.7,43.6427777778,20.5,39.53,9.1666666667,751.2,70.6666666667,7,40,4.1,33.2789646112,33.2789646112 -120,0,21.8566666667,39.5266666667,20.79,39.6566666667,22.7,37.4333333333,20.5,38.79,20.39,51.36,12.0794444444,23.6922222222,21,33.23,23.735,43.4294444444,20.5,39.59,9.2,751.2,69.5,7,40,3.9,12.8838709556,12.8838709556 -80,0,21.89,39.73,20.79,39.8633333333,22.7,37.4333333333,20.5,38.79,20.39,52.2266666667,12.2783333333,22.3761111111,21.1,33.2,23.78,43.2166666667,20.5,39.5,9.2333333333,751.2,68.3333333333,7,40,3.7,35.5860486743,35.5860486743 -80,0,21.89,39.73,20.79,40.1266666667,22.7,37.5,20.5,38.7,20.39,52.6333333333,11.8411111111,24.3411111111,21.1,33.2,23.79,43.045,20.5,39.5,9.2666666667,751.2,67.1666666667,7,40,3.5,13.2966892794,13.2966892794 -90,0,22,40.4666666667,20.8566666667,40.4,22.7,37.56,20.5,38.76,20.29,53.0666666667,12.2522222222,25.2338888889,21.1333333333,33.2,23.8177777778,42.9266666667,20.5,39.5,9.3,751.2,66,7,40,3.3,9.9041176378,9.9041176378 -100,0,22,40.1333333333,20.89,40.43,22.7,37.6266666667,20.6,38.9333333333,20.29,53.26,12.6566666667,21.9661111111,21.2,33.1266666667,23.8455555556,42.8227777778,20.5,39.53,9.6166666667,751.2166666667,65,7.1666666667,38.1666666667,3.3666666667,46.8422232894,46.8422232894 -110,0,22,39.76,20.9633333333,40.1566666667,22.7,37.7,20.6666666667,39.1933333333,20.29,53.4333333333,12.825,18.1738888889,21.2,33.06,23.8788888889,42.745,20.5,39.53,9.9333333333,751.2333333333,64,7.3333333333,36.3333333333,3.4333333333,32.6458922937,32.6458922937 -130,0,22.0666666667,39.7,21.0333333333,39.9666666667,22.7,37.7,20.7,39.4333333333,20.29,53.5,13.0366666667,18.2661111111,21.2,33,23.9083333333,42.645,20.5,39.3633333333,10.25,751.25,63,7.5,34.5,3.5,9.697229485,9.697229485 -120,0,22.1,39.59,21.1,39.8266666667,22.7,37.7,20.76,39.6333333333,20.29,53.59,13.4127777778,18.0444444444,21.23,33,23.9633333333,42.5183333333,20.5,39.49,10.5666666667,751.2666666667,62,7.6666666667,32.6666666667,3.5666666667,38.5117784026,38.5117784026 -120,0,22.1,39.5225,21.1333333333,39.6633333333,22.7,37.7,20.8233333333,39.73,20.29,53.53,13.3388888889,15.4805555556,21.29,33,24.0277777778,42.3755555556,20.5,39.9633333333,10.8833333333,751.2833333333,61,7.8333333333,30.8333333333,3.6333333333,27.8418559814,27.8418559814 -100,10,22.1,39.4333333333,21.175,39.5225,22.7,37.7,20.89,39.79,20.29,53.5,12.7383333333,15.9394444444,21.29,32.9666666667,24.1,42.3094117647,20.5,39.9633333333,11.2,751.3,60,8,29,3.7,33.4030111087,33.4030111087 -120,0,22.1333333333,39.29,21.1,39.5,22.7,37.7,20.9266666667,39.79,20.26,53.4666666667,11.9661111111,21.4738888889,21.23,32.8266666667,24.2,42.29,20.5666666667,39.59,11.05,751.3,60,7.6666666667,30.8333333333,3.55,5.3317228798,5.3317228798 -110,0,22.2,39.29,21.1,39.59,22.79,37.7,20.9266666667,39.79,20.2,53.4,11.4211111111,26.1388888889,21.29,32.9,24.2,42.345,20.5666666667,39.4633333333,10.9,751.3,60,7.3333333333,32.6666666667,3.4,33.825026406,33.825026406 -110,0,22.2,39.2,21.1,39.53,22.79,37.7,21,39.9,20.23,53.3266666667,11.5194444444,26.0711111111,21.29,32.9,24.275,42.4666666667,20.5666666667,39.7566666667,10.75,751.3,60,7,34.5,3.25,2.1068170317,2.1068170317 -110,0,22.2,39.2,21.1,39.4333333333,22.79,37.73,21,39.9,20.23,53.2666666667,12.0555555556,22.2755555556,21.39,32.8633333333,24.3066666667,42.3694444444,20.5666666667,40.3633333333,10.6,751.3,60,6.6666666667,36.3333333333,3.1,16.2793800118,16.2793800118 -100,0,22.2,39.2,21.1666666667,39.4333333333,22.79,37.79,21.1,40,20.2,53.06,12.7561111111,19.02,21.4633333333,32.8633333333,24.3566666667,42.29,20.6,40.7666666667,10.45,751.3,60,6.3333333333,38.1666666667,2.95,10.375486,10.375486 -110,0,22.26,39.2,21.1333333333,39.4,22.79,37.79,21.1,40,20.2,53,12.9761111111,16.2777777778,21.5,32.79,24.39,42.2144444444,20.6,41.0266666667,10.3,751.3,60,6,40,2.8,17.8394372575,17.8394372575 -110,0,22.29,39.2,21.2,39.4,22.79,37.79,21.15,40,20.2,52.8633333333,12.985,15.3955555556,21.5333333333,32.7,24.4816666667,42.075,20.6,41.23,10.4166666667,751.35,62,5.6666666667,40,3.35,22.5326162181,22.5326162181 -110,0,22.29,39.1266666667,21.2,39.26,22.79,37.79,21.2,40.03,20.2,52.73,13.38,15.4433333333,21.5333333333,32.7,24.5222222222,41.95,20.6,41.29,10.5333333333,751.4,64,5.3333333333,40,3.9,17.3071760451,17.3071760451 -110,0,22.29,39.06,21.26,39.2,22.79,37.79,21.2,40.09,20.2,52.76,13.83,15.1011111111,21.6333333333,32.6633333333,24.5388888889,41.8277777778,20.6,41.29,10.65,751.45,66,5,40,4.45,35.6823793845,35.6823793845 -110,0,22.29,39,21.29,39.06,22.8233333333,37.9,21.23,40.1266666667,20.2,52.7,13.855,14.1838888889,21.7,32.59,24.6083333333,41.7225,20.6,41.3633333333,10.7666666667,751.5,68,4.6666666667,40,5,25.4667247413,25.4667247413 -100,10,22.39,39,21.29,39.06,22.89,37.9,21.29,40.1266666667,20.2,52.6633333333,13.8061111111,12.8905555556,21.7,32.5225,24.7,41.735,20.6,41.45,10.8833333333,751.55,70,4.3333333333,40,5.55,8.7861571577,8.7861571577 -110,20,22.39,38.9333333333,21.29,39.09,22.79,37.9,21.26,40.06,20.2,52.545,13.3764705882,13.2641176471,21.7,32.5,24.7,41.6633333333,20.6,41.53,11,751.6,72,4,40,6.1,17.4218476051,17.4218476051 -110,30,22.39,38.9,21.29,39.1633333333,22.8566666667,37.9,21.26,39.86,20.2,52.2266666667,13.3611764706,13.3112941176,21.7,32.3633333333,24.73,41.64,20.6,41.59,11.1166666667,751.5666666667,70.1666666667,4.3333333333,38,5.8,13.6509256787,13.6509256787 -90,20,22.39,38.9,21.23,39.1266666667,22.79,37.9,21.29,39.9,20.2,51.9083333333,13.3458823529,13.3584705882,21.7,32.2266666667,24.76,41.6166666667,20.6,41.59,11.2333333333,751.5333333333,68.3333333333,4.6666666667,36,5.5,34.261541348,34.261541348 -90,20,22.39,38.79,21.29,39.1266666667,22.8566666667,37.9666666667,21.3566666667,39.7666666667,20.2,51.59,13.3305882353,13.4056470588,21.7,32.09,24.79,41.5933333333,20.6,41.1966666667,11.35,751.5,66.5,5,34,5.2,0.5586036481,0.5586036481 -70,20,22.39,38.73,21.23,38.79,22.8233333333,37.9333333333,21.3233333333,39.2966666667,20.2,51.46,13.3152941176,13.4528235294,21.7,31.6,24.79,41.29,20.6,40.6333333333,11.4666666667,751.4666666667,64.6666666667,5.3333333333,32,4.9,38.799155131,38.799155131 -260,30,22.39,38.6633333333,21.23,38.5966666667,22.8233333333,37.9333333333,21.39,39.03,20.2,50.9266666667,13.3,13.5,21.76,31.5333333333,24.79,41.2233333333,20.6,40.3,11.5833333333,751.4333333333,62.8333333333,5.6666666667,30,4.6,0.5024079233,0.5024079233 -390,20,22.39,38.7233333333,21.2,38.3333333333,22.79,37.845,21.39,38.9666666667,20.2,50.2966666667,13.5,12.3666666667,21.7,31.26,24.79,40.89,20.6,40.06,11.7,751.4,61,6,28,4.3,28.3897326211,28.3897326211 -320,20,22.445,40.895,21.2,38.495,22.79,37.9,21.4633333333,38.7666666667,20.2,49.89,13.3666666667,12.16,21.7,31.1333333333,24.79,40.2966666667,20.6,40,11.7666666667,751.3833333333,59.6666666667,6,30,4.05,33.4994334145,33.4994334145 -100,20,22.5,43,21.2,40,22.79,38.0266666667,21.5,38.7233333333,20.2,49.59,13.16,13,21.7,30.93,24.8566666667,39.9633333333,20.6,40.1633333333,11.8333333333,751.3666666667,58.3333333333,6,32,3.8,48.0186707457,48.0186707457 -350,0,22.5,42.5266666667,21.2,41.1266666667,22.79,38.36,21.5,38.4633333333,20.2,49.6725,13.1,12.845,21.6333333333,30.6633333333,24.8566666667,39.5266666667,20.6,39.89,11.9,751.35,57,6,34,3.55,11.8668434327,11.8668434327 -480,0,22.6,42.2666666667,21.2,41.1266666667,22.79,38.56,21.5,38.3333333333,20.2,49.7,13.0333333333,12.4666666667,21.6,30.5666666667,24.79,39.2666666667,20.6,40.2,11.9666666667,751.3333333333,55.6666666667,6,36,3.3,4.9175448949,4.9175448949 -120,0,22.6,43.9333333333,21.1333333333,41.9,22.79,38.6566666667,21.4266666667,38.0666666667,20.2,49.8266666667,12.9633333333,12.73,21.6,30.5,24.79,39.06,20.6,40,12.0333333333,751.3166666667,54.3333333333,6,38,3.05,16.9077828177,16.9077828177 -100,0,22.6,45.46,21.2,43.8266666667,22.79,38.99,21.4633333333,38.09,20.2,50.0266666667,12.83,13.73,21.6,30.29,24.79,38.8,20.6,39.46,12.1,751.3,53,6,40,2.8,45.5763889127,45.5763889127 -100,0,22.6,45.1266666667,21.1666666667,44.43,22.89,39.4633333333,21.39,38.1633333333,20.2,50.23,12.69,14.5933333333,21.525,30.29,24.6666666667,38.56,20.6,39,11.9666666667,751.3,54,5.6666666667,40,2.9166666667,0.5018057534,0.5018057534 -120,20,22.6333333333,44.2333333333,21.1,44.03,22.89,39.6633333333,21.39,38.45,20.2,50.3633333333,12.5633333333,15.1266666667,21.5,30.3566666667,24.6666666667,38.56,20.5666666667,38.49,11.8333333333,751.3,55,5.3333333333,40,3.0333333333,44.0696631675,44.0696631675 -110,20,22.7,43.6933333333,21.0666666667,43.2333333333,22.89,39.7,21.39,38.5,20.2,50.3633333333,12.2,15.8,21.5,30.4266666667,24.7,38.59,20.5,38.23,11.7,751.3,56,5,40,3.15,48.540121573,48.540121573 -110,30,22.6,43.16,21,42.4266666667,22.89,39.6266666667,21.39,38.5,20.2,50.23,11.8666666667,16.8,21.5,30.5666666667,24.7,38.59,20.5,37.9666666667,11.5666666667,751.3,57,4.6666666667,40,3.2666666667,5.1592191448,5.1592191448 -110,20,22.6,42.5666666667,20.89,41.7666666667,22.8566666667,39.4666666667,21.39,38.59,20.2,50.0266666667,11.4333333333,18.1266666667,21.39,30.5,24.7,38.59,20.5,37.8266666667,11.4333333333,751.3,58,4.3333333333,40,3.3833333333,27.7671136311,27.7671136311 -110,20,22.6,41.99,20.89,41.36,22.79,39.2666666667,21.39,38.59,20.1333333333,49.7666666667,11.2266666667,19,21.39,30.6333333333,24.6333333333,38.53,20.5,37.645,11.3,751.3,59,4,40,3.5,2.9264822952,2.9264822952 -120,20,22.6,41.73,20.79,40.93,22.79,39.1633333333,21.39,38.76,20.2,49.4666666667,10.9333333333,20.2933333333,21.3233333333,30.7,24.6,38.5,20.5,37.4,11.0833333333,751.25,60.1666666667,3.8333333333,40,3.5666666667,30.5234453292,30.5234453292 -130,30,22.5666666667,41.16,20.79,40.6566666667,22.73,39.03,21.39,38.8333333333,20.1333333333,49.2666666667,10.6666666667,22.2266666667,21.29,30.79,24.6,38.5,20.5,37.4,10.8666666667,751.2,61.3333333333,3.6666666667,40,3.6333333333,1.9311077078,1.9311077078 -140,20,22.5,40.9,20.7,40.56,22.7,38.8633333333,21.5,38.79,20.2,49.06,10.5666666667,23.43,21.29,30.8566666667,24.6666666667,38.56,20.4266666667,37.23,10.65,751.15,62.5,3.5,40,3.7,32.3261542246,32.3261542246 -130,0,22.5,40.6633333333,20.6333333333,40.4333333333,22.6333333333,38.73,21.5,38.79,20.2,48.86,10.5,24.1566666667,21.29,31.0333333333,24.73,38.59,20.4266666667,37.23,10.4333333333,751.1,63.6666666667,3.3333333333,40,3.7666666667,42.4409658764,42.4409658764 -140,0,22.5,40.4633333333,20.6,40.29,22.6,38.59,21.5,38.7233333333,20.1,48.6333333333,10.4633333333,24.79,21.29,31.1666666667,24.79,38.59,20.4266666667,37.09,10.2166666667,751.05,64.8333333333,3.1666666667,40,3.8333333333,18.1647300255,18.1647300255 -140,0,22.5,40.26,20.5333333333,40.29,22.6,38.59,21.4266666667,38.4633333333,20.1,48.4333333333,10.2566666667,24.93,21.26,31.2,24.79,38.59,20.4266666667,37.03,10,751,66,3,40,3.9,28.3692949219,28.3692949219 -140,0,22.5,40.1266666667,20.5,40.3266666667,22.6,38.56,21.39,38.3633333333,20.1,48.26,9.9633333333,26,21.2,31.2,24.8566666667,38.59,20.39,36.9666666667,10,750.95,66.1666666667,3.1666666667,40,3.9333333333,5.0743308617,5.0743308617 -130,0,22.4633333333,40.0266666667,20.5,40.4,22.6,38.5,21.39,38.29,20.1,48.1266666667,9.7566666667,27.1266666667,21.2,31.3233333333,24.89,38.56,20.39,36.9,10,750.9,66.3333333333,3.3333333333,40,3.9666666667,2.5073516998,2.5073516998 -130,0,22.39,39.8175,20.39,40.29,22.6,38.5,21.39,38.29,20.1,47.9,9.495,28.54,21.1333333333,31.39,24.89,38.5,20.39,36.8633333333,10,750.85,66.5,3.5,40,4,2.3581872811,2.3581872811 -120,0,22.39,39.79,20.3566666667,40.29,22.5,38.3633333333,21.39,38.29,20.1,47.8266666667,9.39,30.5966666667,21.1,31.5,25,38.4,20.39,36.79,10,750.8,66.6666666667,3.6666666667,40,4.0333333333,20.0827405206,20.0827405206 -130,0,22.39,39.6333333333,20.29,40.3633333333,22.5,38.29,21.29,38.26,20.1,47.7,9.33,32.73,21.1,31.5666666667,25,38.4,20.39,36.79,10,750.75,66.8333333333,3.8333333333,40,4.0666666667,4.7028530505,4.7028530505 -100,0,22.39,39.56,20.29,40.5,22.5,38.29,21.29,38.26,20.0666666667,47.7,9.36,35.8,21.1,31.7633333333,25,38.5666666667,20.39,36.79,10,750.7,67,4,40,4.1,15.305068274,15.305068274 -90,0,22.39,39.5,20.29,40.76,22.5,38.29,21.29,38.4,20.0666666667,47.9,9.36,37.2666666667,21.1,31.9633333333,25,38.7,20.39,36.9333333333,9.8666666667,750.6833333333,68.5,4.1666666667,40,4.2666666667,29.6174739837,29.6174739837 -100,0,22.3233333333,39.5,20.2,40.9633333333,22.5333333333,38.29,21.29,38.4666666667,20.0666666667,48,9.39,38.9566666667,21.1,32.2,25,39.3666666667,20.39,37,9.7333333333,750.6666666667,70,4.3333333333,40,4.4333333333,24.4473462226,24.4473462226 -90,10,22.29,39.5,20.2,41.1633333333,22.6,38.3633333333,21.26,38.5,20.0666666667,48.06,9.39,39.7633333333,21.1666666667,32.26,24.9266666667,40.0333333333,20.29,36.9333333333,9.6,750.65,71.5,4.5,40,4.6,37.6827581553,37.6827581553 -80,20,22.29,39.5,20.1666666667,41.3266666667,22.6,38.3633333333,21.2,38.45,20,48,9.39,40.86,21.1666666667,32.4333333333,25,40.5666666667,20.29,37.06,9.4666666667,750.6333333333,73,4.6666666667,40,4.7666666667,20.0985272764,20.0985272764 -80,20,22.29,39.6566666667,20.1,41.4666666667,22.6,38.29,21.2,38.56,20,48.06,9.39,41.6,21.1,32.56,24.9266666667,40.8333333333,20.29,37.36,9.3333333333,750.6166666667,74.5,4.8333333333,40,4.9333333333,35.0579456775,35.0579456775 -90,20,22.23,39.8633333333,20.1,41.53,22.7,38.5,21.2,38.73,20,48.09,9.2633333333,42.8333333333,21.15,32.645,24.89,41.1266666667,20.29,37.6333333333,9.2,750.6,76,5,40,5.1,17.4697484705,17.4697484705 -60,30,22.29,40.1566666667,20.1,41.59,22.7,38.5,21.2,38.8633333333,20.0666666667,48.03,9.19,43.6933333333,21.1,32.8266666667,24.8233333333,41.2,20.29,37.845,9.2666666667,750.5166666667,76,5.1666666667,40,5.1833333333,17.760063638,17.760063638 -60,20,22.23,40.29,20,41.7,22.79,38.5,21.29,39.1266666667,20.1,47.6333333333,9.13,45.5666666667,21.1,32.9,24.79,41.33,20.29,38.03,9.3333333333,750.4333333333,76,5.3333333333,40,5.2666666667,48.8656937727,48.8656937727 -50,20,22.2,40.29,20,41.76,22.79,38.5,21.29,39.26,20.1,47.36,9.19,47.16,21.1,33.03,24.7225,41.7925,20.29,38.1633333333,9.4,750.35,76,5.5,40,5.35,13.9489489957,13.9489489957 -60,20,22.2,40.29,19.89,41.86,22.79,38.59,21.315,39.5975,20.1,47.06,9.1,49.36,21.1,33.09,24.7,42.1333333333,20.29,38.3266666667,9.4666666667,750.2666666667,76,5.6666666667,40,5.4333333333,40.1462489157,40.1462489157 -50,20,22.2,40.4,19.89,42,22.79,38.59,21.39,39.7,20.1,47,9.16,50.5,21.1,33.2,24.7,42.6933333333,20.29,38.4666666667,9.5333333333,750.1833333333,76,5.8333333333,40,5.5166666667,9.3024277827,9.3024277827 -60,20,22.1333333333,40.4666666667,19.8566666667,42,22.79,38.6266666667,21.39,39.76,20.1,46.8633333333,9.1,50.26,21.1,33.26,24.7,43.0266666667,20.29,38.6266666667,9.6,750.1,76,6,40,5.6,47.2792349872,47.2792349872 -80,30,22.1,40.53,19.79,42.06,22.79,38.7,21.5,39.9333333333,20.1,46.79,9.1,50.6666666667,21.1,33.3266666667,24.7,43.36,20.29,38.76,9.6333333333,750.0833333333,76.6666666667,6.3333333333,40,5.7333333333,19.2717245198,19.2717245198 -70,20,22.1,40.59,19.79,42.2,22.79,38.7,21.5,40,20.1,46.6633333333,9.145,51.245,21.1,33.4666666667,24.6333333333,43.56,20.3233333333,38.9333333333,9.6666666667,750.0666666667,77.3333333333,6.6666666667,40,5.8666666667,17.3975477112,17.3975477112 -70,20,22,40.5,19.73,42.26,22.79,38.7,21.5,40.09,20.1,46.59,9.3,50.6933333333,21.1,33.53,24.6,43.7,20.3233333333,39.06,9.7,750.05,78,7,40,6,7.5215934543,7.5215934543 -70,20,22,40.5,19.7,42.45,22.79,38.745,21.5,40.1633333333,20.1,46.56,9.36,50.4333333333,21.1,33.59,24.6,43.7,20.29,39.23,9.7333333333,750.0333333333,78.6666666667,7.3333333333,40,6.1333333333,0.2982693724,0.2982693724 -70,20,21.9266666667,40.56,19.6666666667,42.4666666667,22.89,38.9,21.5666666667,40.2,20.1,46.5,9.39,49.8633333333,21.1,33.6266666667,24.5,43.6633333333,20.29,39.43,9.7666666667,750.0166666667,79.3333333333,7.6666666667,40,6.2666666667,29.3052749126,29.3052749126 -60,30,21.9633333333,40.59,19.6,42.4666666667,22.89,38.8266666667,21.5666666667,40.2,20.1,46.5,9.4633333333,49.39,21.1,33.7,24.4266666667,43.59,20.29,39.5,9.8,750,80,8,40,6.4,36.1512428615,36.1512428615 -70,20,21.89,40.59,19.6,42.53,22.89,38.9,21.6,40.26,20.1,46.4,9.5333333333,48.13,21.0666666667,33.76,24.39,43.8266666667,20.29,39.5,9.75,750.0333333333,80.1666666667,7.6666666667,40,6.3833333333,49.8296652455,49.8296652455 -60,10,21.89,40.59,19.6,42.59,22.89,38.9,21.6,40.26,20.1,46.4,9.6,47.39,21,33.7,24.39,44.0266666667,20.29,39.5,9.7,750.0666666667,80.3333333333,7.3333333333,40,6.3666666667,11.4499206771,11.4499206771 -70,0,21.89,40.59,19.5666666667,42.6266666667,22.89,38.9,21.6333333333,40.29,20.1,46.3266666667,9.6,46.99,21.0666666667,33.8633333333,24.29,44.4,20.29,39.56,9.65,750.1,80.5,7,40,6.35,21.6426708153,21.6426708153 -70,0,21.89,40.8266666667,19.5,42.7,22.89,38.9,21.6333333333,40.0966666667,20.1,46.3266666667,9.5333333333,46.73,21.0666666667,33.8633333333,24.29,44.4666666667,20.3233333333,39.73,9.6,750.1333333333,80.6666666667,6.6666666667,40,6.3333333333,47.7811497054,47.7811497054 -60,0,21.8233333333,40.9,19.5,42.8266666667,22.9266666667,38.9,21.6,39.9,20.1,46.4,9.5,46.9333333333,21.1,33.9,24.29,44.59,20.3233333333,39.8633333333,9.55,750.1666666667,80.8333333333,6.3333333333,40,6.3166666667,36.0521308146,36.0521308146 -60,0,21.79,40.9,19.5,42.9,23,38.9666666667,21.575,39.8175,20.1,46.4666666667,9.5666666667,47.8,21.0333333333,33.9,24.23,44.59,20.3233333333,40.03,9.5,750.2,81,6,40,6.3,0.0453485176,0.0453485176 -60,0,21.79,40.9666666667,19.5,43,23,39,21.5,39.79,20.1,46.5,9.5666666667,49.8633333333,21.05,33.9,24.2,44.73,20.39,40.1633333333,9.5166666667,750.2666666667,80.1666666667,6.1666666667,40,6.1833333333,9.1960813385,9.1960813385 -60,0,21.79,40.9,19.4266666667,43,23,39,21.5666666667,39.79,20.1,46.5,9.5,50.6633333333,21,34,24.2,44.93,20.29,40.345,9.5333333333,750.3333333333,79.3333333333,6.3333333333,40,6.0666666667,33.6348196608,33.6348196608 -50,0,21.79,40.9,19.39,43.03,23,39,21.5,39.79,20.1,46.5,9.5666666667,50.3,21,34,24.1666666667,45.2666666667,20.3566666667,40.5,9.55,750.4,78.5,6.5,40,5.95,5.9620772721,5.9620772721 -60,0,21.76,40.9,19.39,43.09,23,39,21.5,39.79,20.1,46.5,9.5,48.8266666667,21,34.09,24.1666666667,45.4666666667,20.3566666667,40.56,9.5666666667,750.4666666667,77.6666666667,6.6666666667,40,5.8333333333,45.5131973606,45.5131973606 -50,0,21.7,40.9,19.39,43.1633333333,23,39,21.4266666667,39.73,20.0333333333,46.4333333333,9.5666666667,46.9566666667,21,34.09,24.1,45.5,20.3566666667,40.73,9.5833333333,750.5333333333,76.8333333333,6.8333333333,40,5.7166666667,17.7226257045,17.7226257045 -60,0,21.7,40.79,19.39,43.09,23,39,21.39,39.7,20.1,46.5,9.5,45.6233333333,21,34.09,24.075,45.3975,20.3566666667,40.8633333333,9.6,750.6,76,7,40,5.6,34.9190318258,34.9190318258 -70,0,21.7,40.79,19.3566666667,43.09,23,39,21.39,39.7,20.0333333333,46.4633333333,9.5,44.2266666667,21,34.09,24,45.29,20.39,40.9333333333,9.5833333333,750.6166666667,75.8333333333,6.8333333333,40,5.55,49.8172383755,49.8172383755 -60,0,21.7,40.79,19.29,43.09,23.0666666667,39.06,21.29,39.7,20.1,46.53,9.4725,42.825,21,34.09,24,45.1633333333,20.39,41.06,9.5666666667,750.6333333333,75.6666666667,6.6666666667,40,5.5,4.48226796,4.48226796 -70,0,21.7,40.73,19.29,43.09,23.1,39.09,21.29,39.7,20.1,46.5,9.39,41.4666666667,21,34.09,24,45.03,20.39,41.09,9.55,750.65,75.5,6.5,40,5.45,35.3223093902,35.3223093902 -50,0,21.7,40.7,19.29,43.09,23.1,39.09,21.29,39.6633333333,20.0333333333,46.4333333333,9.2633333333,40.9666666667,21,34.06,23.89,44.9666666667,20.39,41.1633333333,9.5333333333,750.6666666667,75.3333333333,6.3333333333,40,5.4,22.8870698251,22.8870698251 -60,0,21.7,40.6266666667,19.29,43,23.1,39.09,21.29,39.59,20.0333333333,46.4633333333,9.13,41.1,21,34,23.89,44.8266666667,20.39,41.23,9.5166666667,750.6833333333,75.1666666667,6.1666666667,40,5.35,45.2631757013,45.2631757013 -50,0,21.65,40.6,19.29,42.9666666667,23.1,39.09,21.2,39.5,20.1,46.53,9.1,41.89,21,34,23.89,44.9666666667,20.39,41.29,9.5,750.7,75,6,40,5.3,28.8937879377,28.8937879377 -60,0,21.6666666667,40.56,19.23,42.8266666667,23.1,39.09,21.2,39.5,20.0666666667,46.4666666667,9.0333333333,42.2233333333,21,34,23.89,44.9,20.39,41.3266666667,9.4,750.7333333333,75.1666666667,5.8333333333,40,5.2166666667,34.3894068734,34.3894068734 -50,0,21.6,40.4333333333,19.23,42.8266666667,23.1,39.09,21.2,39.5,20.05,46.45,9,42.83,21,34,23.79,44.73,20.39,41.4,9.3,750.7666666667,75.3333333333,5.6666666667,40,5.1333333333,48.8447844284,48.8447844284 -70,0,21.6,40.4,19.23,42.8266666667,23.1,39.09,21.2,39.5,20.0666666667,46.4666666667,9,42.9633333333,20.9266666667,34,23.79,44.73,20.39,41.4333333333,9.2,750.8,75.5,5.5,40,5.05,26.1942466139,26.1942466139 -50,0,21.6,40.4,19.2,42.79,23.1,39.09,21.1,39.5,20.0666666667,46.4666666667,8.89,42.9333333333,20.9633333333,34,23.79,44.6633333333,20.39,41.5,9.1,750.8333333333,75.6666666667,5.3333333333,40,4.9666666667,26.9953244133,26.9953244133 -70,0,21.6,40.4,19.2,42.79,23.1,39.1633333333,21.1,39.5,20,46.4,8.89,43.06,20.89,34,23.79,44.59,20.39,41.53,9,750.8666666667,75.8333333333,5.1666666667,40,4.8833333333,23.01078866,23.01078866 -60,0,21.6,40.3266666667,19.2,42.79,23.1,39.2,21.1,39.53,20.0333333333,46.4333333333,8.8,43.4566666667,20.89,34,23.76,44.59,20.39,41.59,8.9,750.9,76,5,40,4.8,21.7141909176,21.7141909176 -60,0,21.5333333333,40.29,19.2,42.79,23.1,39.2,21.1,39.545,20.0333333333,46.4333333333,8.8,44.1966666667,20.89,34,23.7,44.59,20.39,41.6266666667,8.8666666667,750.9,75.8333333333,4.8333333333,40,4.75,8.5346090142,8.5346090142 -60,0,21.5333333333,40.29,19.1,42.79,23.1333333333,39.1633333333,21.0333333333,39.53,20.1,46.4,8.69,44.4333333333,20.89,34,23.7,44.53,20.39,41.7,8.8333333333,750.9,75.6666666667,4.6666666667,40,4.7,16.3330254145,16.3330254145 -50,0,21.5,40.29,19.1,42.79,23.1333333333,39.09,21,39.5,20.0333333333,46.3266666667,8.63,44.4333333333,20.89,34,23.7,44.59,20.39,41.73,8.8,750.9,75.5,4.5,40,4.65,30.1966309082,30.1966309082 -60,0,21.5,40.29,19.1,42.79,23.1,39.09,21,39.5,20,46.29,8.5,44.6933333333,20.89,34,23.6333333333,44.59,20.39,41.79,8.7666666667,750.9,75.3333333333,4.3333333333,40,4.6,27.1602584049,27.1602584049 -50,0,21.5,40.2,19.1,42.79,23.1,39.09,21,39.5,20,46.29,8.5,45.2333333333,20.89,34,23.6333333333,44.53,20.39,41.8633333333,8.7333333333,750.9,75.1666666667,4.1666666667,40,4.55,45.6899381941,45.6899381941 -60,0,21.5,40.2,19.1,42.79,23.1,39.09,21,39.5,20,46.29,8.39,45.9566666667,20.89,34,23.6,44.4333333333,20.39,41.9,8.7,750.9,75,4,40,4.5,26.5520870453,26.5520870453 -80,0,21.5,40.2666666667,19.1,42.8633333333,23.1,39.09,21,39.56,20,46.29,8.3675,46.6475,20.89,34.09,23.6,44.56,20.39,41.9666666667,8.6333333333,750.9166666667,75.6666666667,3.8333333333,40,4.55,26.2857027352,26.2857027352 -40,10,21.5,40.6,19.1,43.2566666667,23.0666666667,39.06,21,39.56,20,46.29,8.1666666667,47.16,20.89,34.09,23.6,44.7666666667,20.39,42,8.5666666667,750.9333333333,76.3333333333,3.6666666667,40,4.6,46.8412308139,46.8412308139 -40,0,21.5,40.76,19.0333333333,43.6633333333,23,38.86,20.9633333333,39.59,20,46.29,8.0666666667,48,20.89,34.09,23.6,44.975,20.39,42,8.5,750.95,77,3.5,40,4.65,30.2199894446,30.2199894446 -50,0,21.5,40.6266666667,19,43.9,22.89,38.7,20.89,39.59,20,46.4333333333,8,48.5933333333,20.89,34.09,23.6,45.06,20.39,42,8.4333333333,750.9666666667,77.6666666667,3.3333333333,40,4.7,33.6486738175,33.6486738175 -50,0,21.5,40.59,19,43.9666666667,22.8233333333,38.6266666667,20.89,39.59,20,46.6333333333,7.9666666667,48.6933333333,20.8566666667,34.06,23.5,45,20.39,42,8.3666666667,750.9833333333,78.3333333333,3.1666666667,40,4.75,20.0570457615,20.0570457615 -50,0,21.5,40.59,19,44.045,22.79,38.5,20.89,39.59,20,46.8266666667,7.8333333333,48.5,20.8566666667,34.06,23.5,45,20.39,42,8.3,751,79,3,40,4.8,13.9649115968,13.9649115968 -60,0,21.5,40.59,19,44.09,22.7225,38.545,20.89,39.59,20,46.9666666667,7.6566666667,48.76,20.79,34,23.5,45,20.39,42.06,8.15,751.05,80.3333333333,3,40,4.8833333333,24.5011395309,24.5011395309 -60,0,21.5,40.56,19,44.1633333333,22.7,38.5,20.89,39.59,20,47,7.59,48.6266666667,20.79,34,23.5,44.9333333333,20.39,42,8,751.1,81.6666666667,3,40,4.9666666667,14.1167478752,14.1167478752 -60,10,21.5,40.5,19,44.2,22.6666666667,38.56,20.89,39.7,19.9266666667,47.06,7.56,48.6566666667,20.79,34,23.5,44.79,20.39,42.1333333333,7.85,751.15,83,3,40,5.05,40.0363929919,40.0363929919 -70,0,21.5,40.4666666667,19,44.2,22.6666666667,38.5,20.8233333333,39.6266666667,20,47.145,7.5,48.99,20.79,34,23.5,44.73,20.39,42.23,7.7,751.2,84.3333333333,3,40,5.1333333333,45.0618834933,45.0618834933 -70,0,21.5,40.4,18.9633333333,44.2,22.6,38.4,20.8566666667,39.6633333333,19.9266666667,47.2,7.4333333333,49.7266666667,20.79,34,23.39,44.4666666667,20.39,42.3633333333,7.55,751.25,85.6666666667,3,40,5.2166666667,36.1535347067,36.1535347067 -70,0,21.5,40.4,18.89,44.2,22.6,38.4,20.79,39.59,19.9266666667,47.26,7.5,50.1333333333,20.79,34,23.39,44.4,20.39,42.26,7.4,751.3,87,3,40,5.3,4.9575594952,4.9575594952 -50,0,21.5,40.4,18.89,44.2,22.6,38.29,20.79,39.59,19.89,47.29,7.5,50.23,20.79,34,23.39,44.29,20.39,42.1266666667,7.4166666667,751.35,86.3333333333,3.1666666667,40,5.2,44.0811199835,44.0811199835 -60,0,21.5,40.4333333333,18.89,44.2,22.6,38.23,20.79,39.59,19.89,47.29,7.56,49.9566666667,20.79,34,23.39,44.29,20.39,41.9666666667,7.4333333333,751.4,85.6666666667,3.3333333333,40,5.1,20.1922329143,20.1922329143 -50,10,21.5,40.5,18.9266666667,44.23,22.6,38.23,20.79,39.59,20,47.0266666667,7.7266666667,49.3,20.79,34,23.39,44.29,20.39,41.8266666667,7.45,751.45,85,3.5,40,5,42.4914388801,42.4914388801 -60,0,21.5,40.5,19,44.29,22.6,38.29,20.79,39.59,20.0666666667,48.8266666667,7.8666666667,48.3,20.815,35.1675,23.39,44.29,20.39,41.6633333333,7.4666666667,751.5,84.3333333333,3.6666666667,40,4.9,35.6607901398,35.6607901398 -60,0,21.5,40.5,19,44.26,22.5666666667,38.29,20.79,39.59,20.2,50.43,8.0333333333,46.9666666667,20.89,36.3633333333,23.29,44.29,20.39,41.4975,7.4833333333,751.55,83.6666666667,3.8333333333,40,4.8,40.4711754411,40.4711754411 -50,10,21.5,40.5,19,44.2,22.5,38.29,20.79,39.59,20.2,50.03,8.2333333333,45.9666666667,21,36.86,23.29,44.23,20.39,41.4,7.5,751.6,83,4,40,4.7,30.0598686212,30.0598686212 -110,0,21.5,40.5,19,44.09,22.5,38.29,20.79,39.59,20.2,49.2666666667,8.445,44.645,20.9266666667,37,23.29,44.1633333333,20.3566666667,41.2,7.55,751.6833333333,82.3333333333,4,40,4.65,37.772854534,37.772854534 -70,0,21.5,40.5,19.0666666667,44.1633333333,22.5,38.29,20.79,39.59,20.2,48.6,8.6666666667,43.5266666667,20.9266666667,37.1633333333,23.29,44.1633333333,20.29,41.1266666667,7.6,751.7666666667,81.6666666667,4,40,4.6,0.5706432625,0.5706432625 -80,0,21.5,40.5,19.1,44.2,22.5,38.29,20.79,39.59,20.1666666667,48.2,8.86,42.8,21,37.1633333333,23.29,44.1633333333,20.29,40.9666666667,7.65,751.85,81,4,40,4.55,34.3341621337,34.3341621337 -90,0,21.5,40.5,19.1,44.2,22.5,38.29,20.79,39.59,20.1,48.2,9.13,41.5966666667,20.89,36.8633333333,23.23,43.1633333333,20.3566666667,41.1,7.7,751.9333333333,80.3333333333,4,40,4.5,35.5789911817,35.5789911817 -100,0,21.5,40.5,19.1333333333,44.1633333333,22.5,38.29,20.79,39.59,20.1,48.2,9.3233333333,40.1233333333,20.89,36.73,23.2,41.79,20.5,43.8233333333,7.75,752.0166666667,79.6666666667,4,40,4.45,43.4254524531,43.4254524531 -80,0,21.5,40.5,19.2,44.03,22.4266666667,38.1566666667,20.79,39.56,20.1,48.1266666667,9.5333333333,37.4666666667,20.79,36.3333333333,23,41,20.5,44.6966666667,7.8,752.1,79,4,40,4.4,18.4402602958,18.4402602958 -80,0,21.5,40.5,19.29,43.95,22.39,38.1266666667,20.79,39.5,20.1,48.09,9.7333333333,36.5266666667,20.79,36.0666666667,23.025,41.1,20.5,43.4966666667,7.8833333333,752.1666666667,78.1666666667,4.1666666667,40,4.3166666667,4.5097986702,4.5097986702 -80,0,21.5,40.5,19.4266666667,43.7,22.39,38.1725,20.76,39.3633333333,20.1,48.09,10.0633333333,35.1666666667,20.79,35.8333333333,23.0333333333,41.2666666667,20.5,42.9633333333,7.9666666667,752.2333333333,77.3333333333,4.3333333333,40,4.2333333333,47.4889141158,47.4889141158 -50,0,21.5,40.5675,19.5,43.6266666667,22.39,38.03,20.76,39.29,20.0666666667,48.23,10.2633333333,34.1666666667,20.79,35.7,23.0333333333,41.3266666667,20.5,42.6333333333,8.05,752.3,76.5,4.5,40,4.15,16.4791744784,16.4791744784 -90,0,21.5,40.6633333333,19.6333333333,43.8,22.39,38.03,20.7,39.2,20,48.29,10.6,32.5933333333,20.79,35.5,23.175,41.425,20.5,42.36,8.1333333333,752.3666666667,75.6666666667,4.6666666667,40,4.0666666667,47.0904297894,47.0904297894 -120,0,21.5,41.0666666667,19.76,44.1933333333,22.39,38.09,20.76,39.1266666667,20,48.29,10.9333333333,31.5333333333,20.79,35.345,23.2,41.5,20.5,42.06,8.2166666667,752.4333333333,74.8333333333,4.8333333333,40,3.9833333333,24.4880568003,24.4880568003 -90,0,21.5,41.3333333333,19.96,45.0266666667,22.3233333333,38.2,20.79,39.1266666667,20,48.29,11.2566666667,29.89,20.79,35.1633333333,23.29,41.59,20.5,41.86,8.3,752.5,74,5,40,3.9,49.0663888864,49.0663888864 -110,0,21.5333333333,41.9966666667,20.2266666667,44.6333333333,22.39,38.26,20.79,39.4,20,48.29,11.39,27.0966666667,20.79,35.09,23.29,41.59,20.4633333333,41.4,8.45,752.55,73,5,40,3.85,1.8058608402,1.8058608402 -70,0,21.6,42.59,20.46,43.8633333333,22.39,38.4333333333,20.79,39.59,20,48.26,11.5333333333,26.1333333333,20.79,34.9666666667,23.39,41.59,20.39,41.1266666667,8.6,752.6,72,5,40,3.8,13.1744479411,13.1744479411 -110,0,21.6,43,20.6,43.39,22.39,38.56,20.79,39.695,20.0666666667,48.26,11.7333333333,25.5933333333,20.8566666667,34.9,23.39,41.59,20.5,41,8.75,752.65,71,5,40,3.75,12.9963183193,12.9963183193 -110,10,21.6,42.86,20.73,42.93,22.39,38.7666666667,20.8566666667,40.1966666667,20,48.1633333333,11.8,23.7333333333,20.89,34.79,23.5,41.59,20.5,40.9333333333,8.9,752.7,70,5,40,3.7,22.6824800251,22.6824800251 -100,10,21.6666666667,42.6933333333,20.79,42.73,22.39,39.0266666667,21,41.13,20,48.09,11.86,23.7333333333,20.89,34.73,23.5,41.59,20.5,40.76,9.05,752.75,69,5,40,3.65,33.9996148134,33.9996148134 -90,0,21.6,42.4333333333,20.79,42.5,22.39,39.09,21,41.9233333333,20.0333333333,48.1266666667,11.89,21.0333333333,20.84,34.59,23.6,41.6266666667,20.445,40.6175,9.2,752.8,68,5,40,3.6,2.5940606371,2.5940606371 -100,0,21.7,42.73,20.8566666667,42.4333333333,22.39,39.1633333333,21.0666666667,42.29,20.1,48.1266666667,12.2725,20.045,20.8233333333,34.4,23.6,41.6266666667,20.5,40.53,9.2666666667,752.8833333333,67.6666666667,5.1666666667,38.1666666667,3.5833333333,25.256598636,25.256598636 -100,0,21.7,42.6566666667,21.0333333333,42.1633333333,22.5,39.86,21.0666666667,42.29,20.1,48.06,12.7333333333,18.2333333333,20.89,34.4,23.6,41.6266666667,20.5,40.4666666667,9.3333333333,752.9666666667,67.3333333333,5.3333333333,36.3333333333,3.5666666667,21.4869279065,21.4869279065 -110,0,21.6333333333,42.4333333333,21.1666666667,41.89,22.5,40,21.1,42.26,20.0333333333,47.9333333333,13.1666666667,17.0933333333,20.89,34.29,23.6,41.7,20.5,40.4,9.4,753.05,67,5.5,34.5,3.55,20.7042419352,20.7042419352 -100,0,21.6333333333,42.4333333333,21.29,41.43,22.6,39.9666666667,21.1,42.2,20.1,48,13.36,16.2333333333,20.89,34.23,23.7,41.8633333333,20.5,40.4,9.4666666667,753.1333333333,66.6666666667,5.6666666667,32.6666666667,3.5333333333,11.1576812225,11.1576812225 -100,0,21.6333333333,42.29,21.29,41.1566666667,22.6666666667,39.9,21.2,42.06,20.1,47.9333333333,13.39,15.6966666667,20.89,34.1633333333,23.7,41.73,20.5,40.3266666667,9.5333333333,753.2166666667,66.3333333333,5.8333333333,30.8333333333,3.5166666667,45.2885107487,45.2885107487 -170,0,21.6333333333,42.1566666667,21.29,40.8333333333,22.6333333333,39.73,21.2,41.9333333333,20.0666666667,47.8633333333,13.53,15.63,20.89,34.09,23.79,41.6333333333,20.5,40.26,9.6,753.3,66,6,29,3.5,1.1529674055,1.1529674055 -90,0,21.6333333333,42.1333333333,21.29,40.5666666667,22.7,39.73,21.2,41.7233333333,20,47.79,13.06,15.2333333333,20.89,34,23.79,41.5,20.5,40.1266666667,9.65,753.3166666667,65.5,6,30.8333333333,3.4333333333,23.4055821667,23.4055821667 -70,0,21.7,42.4,21.26,40.6266666667,22.6,39.5,21.2,41.4633333333,20.0333333333,47.73,12.86,16.8333333333,20.89,33.9333333333,23.79,41.545,20.5,40.06,9.7,753.3333333333,65,6,32.6666666667,3.3666666667,13.0908207386,13.0908207386 -80,0,21.7,42.26,21.245,40.745,22.6,39.5,21.2,41.2233333333,20.1,47.79,13.4,17.0333333333,20.89,33.9,23.8233333333,41.7,20.5,40,9.75,753.35,64.5,6,34.5,3.3,2.9829634586,2.9829634586 -110,20,21.7,42.1266666667,21.2,40.7,22.6,39.345,21.2,41.03,20.1,47.76,13.6,16.3666666667,20.89,33.8266666667,23.89,41.7,20.4633333333,39.6666666667,9.8,753.3666666667,64,6,36.3333333333,3.2333333333,13.257627259,13.257627259 -110,20,21.7,42.045,21.2,40.59,22.6,39.29,21.2,40.9,20.1,47.6266666667,13.5666666667,16.5233333333,20.89,33.9,23.89,41.59,20.39,39.4,9.85,753.3833333333,63.5,6,38.1666666667,3.1666666667,16.7765196064,16.7765196064 -110,20,21.7,41.9,21.2,40.59,22.6,39.23,21.2,40.9666666667,20.1,47.56,13.6266666667,16.93,20.89,33.9,23.89,41.4633333333,20.4266666667,39.5966666667,9.9,753.4,63,6,40,3.1,16.7679577018,16.7679577018 -100,30,21.7,41.8266666667,21.2,40.5266666667,22.6,39.2,21.2,41.1266666667,20.1,47.5,14.0633333333,16.4966666667,20.89,33.79,24,41.3633333333,20.4266666667,39.73,10.0333333333,753.4,63.1666666667,6,38.1666666667,3.25,2.4417294655,2.4417294655 -100,20,21.7,41.6633333333,21.2,40.3266666667,22.6,39.1266666667,21.26,41.26,20.1,47.4333333333,14.0633333333,16.0966666667,20.89,33.79,24,41.29,20.5,39.7233333333,10.1666666667,753.4,63.3333333333,6,36.3333333333,3.4,38.9091867604,38.9091867604 -100,20,21.7,41.59,21.1333333333,40.3633333333,22.6666666667,39.06,21.29,41.26,20.1,47.4,13.83,15.8,20.89,33.79,24.1,41.29,20.4266666667,39.59,10.3,753.4,63.5,6,34.5,3.55,26.7841808964,26.7841808964 -100,20,21.7,41.5,21.2,40.29,22.6,39,21.315,41.2675,20.0333333333,47.3266666667,13.7566666667,15.3933333333,20.89,33.79,24.1666666667,41.23,20.4266666667,39.53,10.4333333333,753.4,63.6666666667,6,32.6666666667,3.7,29.5025347732,29.5025347732 -80,30,21.7,41.4333333333,21.1,40.23,22.6,38.9,21.39,41.1566666667,20.1,47.4,13.6666666667,16.0666666667,20.89,33.79,24.2,41.09,20.4266666667,39.53,10.5666666667,753.4,63.8333333333,6,30.8333333333,3.85,11.1414173618,11.1414173618 -80,20,21.7,41.43,21.1,40.3633333333,22.6,38.9,21.39,40.7966666667,20.1,47.3266666667,13.86,16.2,20.89,33.73,24.26,40.89,20.39,39.5,10.7,753.4,64,6,29,4,30.1693560788,30.1693560788 -80,20,21.7,41.23,21.1,40.4,22.6,38.76,21.39,40.4633333333,20.1,47.29,14.19,14.75,20.945,33.7,24.29,40.7666666667,20.4725,39.5675,10.6833333333,753.4333333333,64.3333333333,5.5,30.8333333333,4.0833333333,18.4183291392,18.4183291392 -80,20,21.7,41.1633333333,21.1,40.2666666667,22.5333333333,38.7,21.39,40.2966666667,20.1,47.29,13.9333333333,13.7966666667,20.89,33.6333333333,24.29,40.8266666667,20.5,39.59,10.6666666667,753.4666666667,64.6666666667,5,32.6666666667,4.1666666667,24.2281062296,24.2281062296 -110,30,21.7,41.03,21.0666666667,39.99,22.5,38.7,21.39,40.09,20.1,47.1633333333,13.8,14.19,20.89,33.4333333333,24.3233333333,40.5266666667,20.4633333333,39.49,10.65,753.5,65,4.5,34.5,4.25,48.6739017884,48.6739017884 -90,20,21.7,40.8333333333,21.0666666667,39.79,22.5,38.6266666667,21.39,40.0266666667,20.1,46.9633333333,14.13,14.0233333333,20.89,33.1633333333,24.3233333333,40.2666666667,20.4633333333,39.23,10.6333333333,753.5333333333,65.3333333333,4,36.3333333333,4.3333333333,32.5996983796,32.5996983796 -90,20,21.7,40.5666666667,21.1,39.5266666667,22.5,38.59,21.4633333333,39.8266666667,20.1,46.6333333333,14.2633333333,13.1566666667,20.89,33.03,24.39,39.8633333333,20.5,39.06,10.6166666667,753.5666666667,65.6666666667,3.5,38.1666666667,4.4166666667,24.0384055069,24.0384055069 -80,20,21.7,40.26,21.1,39.2666666667,22.5,38.59,21.5,39.56,20.1,46.4333333333,14.5333333333,12.5233333333,20.89,32.76,24.39,39.73,20.4266666667,38.86,10.6,753.6,66,3,40,4.5,38.047605881,38.047605881 -90,0,21.7,40.0666666667,21.1,38.9666666667,22.5,38.56,21.5,39.5,20.1,46.2233333333,14.4,11.99,20.89,32.6266666667,24.39,39.56,20.39,38.6333333333,10.7,753.55,65,3.1666666667,40,4.3666666667,49.1222916637,49.1222916637 -80,0,21.7,39.76,21.1,38.8266666667,22.5,38.5,21.5,39.3333333333,20.1,46.03,14.03,12.4,20.89,32.4666666667,24.39,39.4333333333,20.39,38.4333333333,10.8,753.5,64,3.3333333333,40,4.2333333333,48.8487527124,48.8487527124 -90,0,21.6333333333,39.6266666667,21.0666666667,38.6333333333,22.5,38.4666666667,21.5,39.1266666667,20.1,45.8333333333,13.83,12.9333333333,20.89,32.4,24.39,39.29,20.4266666667,38.26,10.9,753.45,63,3.5,40,4.1,25.7092635497,25.7092635497 -90,0,21.6,39.4666666667,21,38.4333333333,22.5,38.4,21.5,39.1266666667,20.1,45.6266666667,13.86,13.5333333333,20.89,32.26,24.39,39.1566666667,20.4266666667,38.0666666667,11,753.4,62,3.6666666667,40,3.9666666667,31.1936413753,31.1936413753 -100,0,21.6,39.3266666667,21,38.29,22.5,38.345,21.5,39.1266666667,20.1,45.3633333333,13.86,13.66,20.89,32.2,24.39,39.045,20.39,37.93,11.1,753.35,61,3.8333333333,40,3.8333333333,35.6951286318,35.6951286318 -80,0,21.6,39.045,21,38.1633333333,22.5,38.26,21.5,38.7,20.1,45.23,13.9266666667,13.83,20.8566666667,32.1333333333,24.3566666667,38.93,20.4633333333,37.79,11.2,753.3,60,4,40,3.7,30.0318890135,30.0318890135 -60,0,21.6,39,21,38.09,22.5,38.1266666667,21.5,38.5666666667,20.1,45.06,14.0666666667,14.03,20.8566666667,32.06,24.29,38.6566666667,20.39,37.7,11.1666666667,753.2833333333,61.1666666667,4,40,3.9333333333,13.5650727898,13.5650727898 -60,0,21.6,38.9333333333,20.9633333333,38,22.5,38,21.4633333333,38.2233333333,20.1,44.925,14.16,13.59,20.8233333333,32,24.26,38.2966666667,20.4633333333,37.7,11.1333333333,753.2666666667,62.3333333333,4,40,4.1666666667,23.5080005601,23.5080005601 -60,0,21.6,39,20.9633333333,37.9333333333,22.5,37.9333333333,21.39,38.03,20.1,44.8266666667,14.0333333333,13.2566666667,20.8233333333,31.9266666667,24.2,38.03,20.39,37.56,11.1,753.25,63.5,4,40,4.4,12.5928246416,12.5928246416 -50,0,21.6,39,20.89,37.79,22.5,37.9,21.39,37.9,20.1,44.6633333333,13.8,13.3933333333,20.8566666667,31.9633333333,24.1,37.76,20.39,37.5,11.0666666667,753.2333333333,64.6666666667,4,40,4.6333333333,3.9999784552,3.9999784552 -60,0,21.6333333333,39,20.89,37.79,22.5,37.9,21.39,37.795,20.0333333333,44.53,13.8,13.8,20.79,31.8233333333,24.1,37.6266666667,20.39,37.3633333333,11.0333333333,753.2166666667,65.8333333333,4,40,4.8666666667,47.0258133253,47.0258133253 -70,0,21.7,39.06,20.9266666667,37.79,22.5,37.76,21.3233333333,37.7,20.1,44.4666666667,13.6,13.93,20.8566666667,31.8566666667,23.9633333333,37.3633333333,20.39,37.29,11,753.2,67,4,40,5.1,29.5917579904,29.5917579904 -90,0,21.73,39.09,21.0666666667,37.79,22.4266666667,37.6266666667,21.29,37.6633333333,20.1,44.3266666667,13.6,13.7966666667,20.79,31.73,23.89,37.23,20.39,37.1633333333,10.9666666667,753.1833333333,66.8333333333,3.6666666667,40,5.0166666667,45.0604758342,45.0604758342 -80,0,21.79,39.03,21.1,37.79,22.5,37.56,21.29,37.59,20.0666666667,44.1333333333,13.345,13.445,20.79,31.65,23.89,37.06,20.39,37.09,10.9333333333,753.1666666667,66.6666666667,3.3333333333,40,4.9333333333,8.323622751,8.323622751 -90,0,21.8233333333,38.8633333333,21.1,37.73,22.5,37.5,21.29,37.5,20.0666666667,44.06,12.8666666667,13.73,20.79,31.5333333333,23.8233333333,36.86,20.39,37.1633333333,10.9,753.15,66.5,3,40,4.85,4.4826430851,4.4826430851 -90,0,21.89,38.73,21.2,37.73,22.5,37.5,21.29,37.5,20.1,43.9666666667,12.3266666667,14.93,20.79,31.5333333333,23.79,36.6633333333,20.39,37.2,10.8666666667,753.1333333333,66.3333333333,2.6666666667,40,4.7666666667,42.7089222823,42.7089222823 -100,0,21.89,38.6266666667,21.2,37.73,22.5,37.5,21.29,37.5,20.0333333333,43.8266666667,11.86,15.5666666667,20.73,31.4633333333,23.79,36.7233333333,20.39,37.2,10.8333333333,753.1166666667,66.1666666667,2.3333333333,40,4.6833333333,5.5612715892,5.5612715892 -90,0,21.89,38.6266666667,21.2,37.4666666667,22.5,37.4,21.29,37.8333333333,20.0333333333,43.73,11.7266666667,15.76,20.73,31.3233333333,23.79,36.9333333333,20.29,37.1633333333,10.8,753.1,66,2,40,4.6,6.7363246693,6.7363246693 -90,0,22,38.7666666667,21.2,37.4,22.5,37.4,21.29,38.1266666667,20.1,43.73,11.66,16.0966666667,20.7,31.29,23.79,36.95,20.29,37.03,10.7166666667,753.1166666667,65.5,2,40,4.4333333333,37.9836654291,37.9836654291 -120,0,22,38.9,21.1666666667,37.5,22.5,37.29,21.29,38.26,20.1,43.7,11.5333333333,16.43,20.7,31.29,23.7225,36.87,20.29,36.9666666667,10.6333333333,753.1333333333,65,2,40,4.2666666667,8.2268245635,8.2268245635 -440,0,22,38.8633333333,21.1,37.5,22.5,37.29,21.29,38.5,20.0333333333,43.6266666667,11.3233333333,17.79,20.7,31.3233333333,23.76,37.06,20.29,36.9,10.55,753.15,64.5,2,40,4.1,7.2560451808,7.2560451808 -220,10,22,38.6566666667,21.1,37.6266666667,22.5,37.4,21.29,38.5,20.0666666667,43.6333333333,10.93,20.2633333333,20.7,31.4633333333,23.8233333333,37.23,20.29,36.86,10.4666666667,753.1666666667,64,2,40,3.9333333333,40.2744520572,40.2744520572 -210,0,22.1,38.56,21.1,37.76,22.5,37.4666666667,21.29,38.3633333333,20.1333333333,47.9666666667,10.3333333333,24.93,20.7,31.6633333333,23.89,37.43,20.3566666667,37.1333333333,10.3833333333,753.1833333333,63.5,2,40,3.7666666667,45.6187569536,45.6187569536 -330,10,22.1,38.5,21.15,38.045,22.6,37.5,21.23,38.1566666667,20.5333333333,61.8333333333,9.7333333333,28.79,20.7,31.8566666667,23.9266666667,37.6566666667,20.29,37.2,10.3,753.2,63,2,40,3.6,40.8308962593,40.8308962593 -220,10,22.2,38.59,21.2,38.4633333333,22.625,37.5225,21.2,38.2,20.6,54.0266666667,9.2933333333,32.9666666667,20.7,32.0666666667,24,37.8975,20.29,37.3333333333,10.0833333333,753.2333333333,64.6666666667,2.3333333333,40,3.7333333333,33.1805180758,33.1805180758 -120,0,22.2675,38.7675,21.26,38.7966666667,22.7,37.59,21.2,38.26,20.7,49.8633333333,9.0333333333,35.1666666667,20.7,32.26,24,38.06,20.3233333333,37.7666666667,9.8666666667,753.2666666667,66.3333333333,2.6666666667,40,3.8666666667,46.6916428995,46.6916428995 -90,0,22.29,39.0266666667,21.29,39.1566666667,22.7,37.59,21.2,38.3266666667,20.7,47.6633333333,8.7633333333,37.5,20.7,32.4633333333,24,38.2,20.3233333333,37.9666666667,9.65,753.3,68,3,40,4,46.475260763,46.475260763 -100,0,22.39,39.2,21.29,39.3633333333,22.7,37.6633333333,21.2,38.4666666667,20.84,45.795,8.63,38.7666666667,20.7,32.6633333333,24,38.26,20.39,37.9333333333,9.4333333333,753.3333333333,69.6666666667,3.3333333333,40,4.1333333333,48.1548081385,48.1548081385 -110,0,22.4633333333,39.26,21.29,39.53,22.7,37.7,21.2,38.6266666667,20.9266666667,44.6933333333,8.4633333333,39.8,20.6666666667,32.79,24.0333333333,38.36,20.3233333333,38,9.2166666667,753.3666666667,71.3333333333,3.6666666667,40,4.2666666667,27.1972161485,27.1972161485 -100,0,22.5,39.26,21.29,39.59,22.6333333333,37.6266666667,21.2,38.795,20.86,44.8333333333,8.33,40.9933333333,20.6,32.8633333333,24.1,38.5,20.29,38.03,9,753.4,73,4,40,4.4,29.7852221294,29.7852221294 -360,0,22.5666666667,39.1266666667,21.29,39.56,22.6,37.7,21.2,38.9666666667,20.6666666667,46.13,8.245,42.2,20.6,33.03,24,38.3266666667,20.29,38.09,8.7666666667,753.4666666667,74.8333333333,4,40,4.5166666667,43.8776463619,43.8776463619 -400,0,22.6,39.06,21.29,39.5,22.6666666667,37.76,21.2,39.03,20.6,46.9966666667,8.16,43.7666666667,20.6,33.1633333333,24.0666666667,38.6,20.29,38.09,8.5333333333,753.5333333333,76.6666666667,4,40,4.6333333333,33.3099145675,33.3099145675 -100,0,22.6,39,21.26,39.5,22.6333333333,37.73,21.2,39.09,20.5,47.6933333333,8.0333333333,44.9666666667,20.6,33.3266666667,24.1,38.9333333333,20.29,38.09,8.3,753.6,78.5,4,40,4.75,15.2638936997,15.2638936997 -120,0,22.6,38.9666666667,21.2,39.5,22.7,37.79,21.1,39.2,20.4266666667,47.9,7.8666666667,46.56,20.6,33.425,24.1,39.06,20.29,38.1633333333,8.0666666667,753.6666666667,80.3333333333,4,40,4.8666666667,36.1387059209,36.1387059209 -100,0,22.6666666667,38.9666666667,21.1666666667,39.59,22.6666666667,37.76,21.1,39.2,20.39,48,7.7266666667,48.0266666667,20.6,33.56,24.1,39.09,20.29,38.2,7.8333333333,753.7333333333,82.1666666667,4,40,4.9833333333,13.7837047689,13.7837047689 -120,0,22.7,39,21.1,39.6633333333,22.6,37.76,21.1,39.29,20.39,48,7.6566666667,49.0666666667,20.6,33.59,24.1,39.1633333333,20.23,38.1266666667,7.6,753.8,84,4,40,5.1,18.49188942,18.49188942 -70,0,22.6333333333,38.9333333333,21.0666666667,39.6633333333,22.6,37.79,21.1,39.29,20.39,47.9,7.59,49.4,20.6,33.6633333333,24.2,39.29,20.29,38.2,7.5166666667,753.8333333333,85,3.8333333333,40,5.1833333333,12.1079702047,12.1079702047 -50,0,22.7,38.9333333333,21,39.6633333333,22.6,37.79,21.1,39.4,20.39,48.5666666667,7.5,49.8233333333,20.6,33.73,24.2,39.1566666667,20.29,38.26,7.4333333333,753.8666666667,86,3.6666666667,40,5.2666666667,11.2352815107,11.2352815107 -60,0,22.7,39,20.89,39.9333333333,22.5,37.9,21.1,39.4,20.39,49.39,7.5,50.7633333333,20.6,33.79,24.2,39.2566666667,20.29,38.53,7.35,753.9,87,3.5,40,5.35,45.3809083905,45.3809083905 -60,0,22.7,39.03,20.89,40.1333333333,22.5666666667,37.9666666667,21.1,39.4333333333,20.39,49.7233333333,7.4,51.63,20.6,33.8266666667,24.2,39.9233333333,20.29,38.6633333333,7.2666666667,753.9333333333,88,3.3333333333,40,5.4333333333,25.5387451616,25.5387451616 -50,10,22.7,39.09,20.79,40.2666666667,22.6,38,21.1,39.5,20.39,49.79,7.3333333333,52.5566666667,20.6,33.9,24.23,40.83,20.29,38.8266666667,7.1833333333,753.9666666667,89,3.1666666667,40,5.5166666667,18.7851425842,18.7851425842 -70,20,22.6,39,20.73,40.4,22.5333333333,38,21,39.4,20.3233333333,49.79,7.1566666667,53.2933333333,20.6,33.9,24.23,41.2233333333,20.23,38.9,7.1,754,90,3,40,5.6,20.8030911861,20.8030911861 -60,20,22.6,39,20.7,40.6266666667,22.6,38,21,39.4,20.29,49.76,7.09,53.96,20.6666666667,33.9666666667,24.2,41.5966666667,20.26,39,7.05,754.05,90.1666666667,3,40,5.5666666667,43.6983816093,43.6983816093 -60,20,22.6,39,20.6,40.6675,22.6,38.0675,21,39.5,20.29,49.7,7.06,54.3266666667,20.6333333333,33.9633333333,24.2,41.93,20.2,39.06,7,754.1,90.3333333333,3,40,5.5333333333,10.4855151381,10.4855151381 -70,20,22.6,39,20.5,40.8633333333,22.5333333333,38.09,21.0666666667,39.6333333333,20.26,49.6633333333,7,54.8,20.7,34.09,24.1,42.1566666667,20.2,39.1266666667,6.95,754.15,90.5,3,40,5.5,39.4644326298,39.4644326298 -50,30,22.6,39,20.4633333333,41,22.5,38.1266666667,21.1,39.8266666667,20.2,49.59,6.9333333333,55.2566666667,20.6333333333,34.03,24.025,42.3425,20.2,39.26,6.9,754.2,90.6666666667,3,40,5.4666666667,45.3880224493,45.3880224493 -60,10,22.6,39,20.3233333333,41.06,22.5,38.2,21.1,39.9666666667,20.2,49.56,6.9333333333,55.7233333333,20.7,34.09,24,42.6933333333,20.2,39.4,6.85,754.25,90.8333333333,3,40,5.4333333333,43.1506028981,43.1506028981 -60,10,22.6,39,20.29,41.23,22.5,38.2,21.1333333333,40.1566666667,20.2,49.5,6.85,56.245,20.7,34.1266666667,24,43,20.2,39.4,6.8,754.3,91,3,40,5.4,1.2513320195,1.2513320195 -60,0,22.6,39.1633333333,20.23,41.29,22.5,38.26,21.2,40.29,20.2,49.4333333333,6.8,56.3266666667,20.6333333333,34.1266666667,23.9266666667,43.26,20.2,39.4,6.75,754.3,91.6666666667,2.6666666667,37.8333333333,5.45,5.1954691648,5.1954691648 -60,0,22.5333333333,39.09,20.2,41.29,22.5,38.29,21.2,40.29,20.2,49.4,6.8,56.4666666667,20.7,34.2,23.89,43.5,20.2,39.5266666667,6.7,754.3,92.3333333333,2.3333333333,35.6666666667,5.5,22.2934757825,22.2934757825 -60,0,22.5,39.09,20.1333333333,41.3633333333,22.5,38.29,21.1666666667,40.2,20.1333333333,49.3266666667,6.8,56.4666666667,20.6333333333,34.1266666667,23.8233333333,43.8333333333,20.2,39.8266666667,6.65,754.3,93,2,33.5,5.55,47.40527916,47.40527916 -50,0,22.5,39.09,20.1,41.4,22.5,38.29,21.1,40.2,20.2,49.3633333333,6.8,56.4,20.6666666667,34.2,23.79,44.1666666667,20.2,39.9666666667,6.6,754.3,93.6666666667,1.6666666667,31.3333333333,5.6,13.8763691764,13.8763691764 -50,0,22.4633333333,39.09,20.0333333333,41.4,22.5,38.29,21.1,40.09,20.1333333333,49.29,6.69,56.53,20.6,34.2,23.79,44.7666666667,20.2,40.145,6.55,754.3,94.3333333333,1.3333333333,29.1666666667,5.65,21.4979999349,21.4979999349 -30,0,22.39,39.09,20,41.4333333333,22.6,38.29,21.1,40.09,20.1,49.29,6.69,56.7233333333,20.6,34.2,23.79,45.1566666667,20.23,40.3266666667,6.5,754.3,95,1,27,5.7,13.3213864407,13.3213864407 -30,0,22.39,39.09,19.9266666667,41.56,22.6,38.3633333333,21.1,40,20.1,49.29,6.69,56.9633333333,20.6666666667,34.26,23.79,45.43,20.29,40.5266666667,6.4666666667,754.2833333333,95.1666666667,1,29.1666666667,5.7,12.003929948,12.003929948 -20,0,22.3233333333,39.09,19.8566666667,41.59,22.7,38.5,21.1,40,20.1,49.2,6.7633333333,57.1633333333,20.6666666667,34.26,23.7,45.8266666667,20.29,40.6266666667,6.4333333333,754.2666666667,95.3333333333,1,31.3333333333,5.7,28.6776962108,28.6776962108 -40,0,22.29,39.09,19.79,41.6633333333,22.7,38.5,21,39.8633333333,20.1,49.2,6.7633333333,57.5966666667,20.6,34.29,23.7,45.9,20.29,40.76,6.4,754.25,95.5,1,33.5,5.7,13.2970920182,13.2970920182 -50,0,22.29,39.09,19.79,41.79,22.7,38.59,21,39.79,20.1,49.1633333333,6.7633333333,58.0633333333,20.6,34.29,23.7,46.06,20.29,40.8266666667,6.3666666667,754.2333333333,95.6666666667,1,35.6666666667,5.7,8.9599076193,8.9599076193 -60,0,22.29,39.2,19.73,41.79,22.7,38.59,21,39.79,20.1,49.09,6.8,58.3,20.6,34.29,23.7,45.9333333333,20.29,40.9666666667,6.3333333333,754.2166666667,95.8333333333,1,37.8333333333,5.7,45.2898124699,45.2898124699 -50,0,22.29,39.2,19.7,41.9333333333,22.7,38.7,21,39.73,20.1,49.09,6.8,58.7666666667,20.6,34.29,23.7,46,20.29,41.03,6.3,754.2,96,1,40,5.7,46.3329926017,46.3329926017 -60,0,22.2,39.09,19.7,42.06,22.7,38.7,21,39.76,20.1,49.09,6.8,59.89,20.6,34.3266666667,23.6333333333,46.06,20.29,41.1633333333,6.2666666667,754.2166666667,96.1666666667,1,44.1666666667,5.6833333333,10.5007339153,10.5007339153 -50,0,22.2,39.09,19.6,42.03,22.73,38.79,20.9266666667,39.7,20.0333333333,49.03,6.8,60.1633333333,20.6,34.3266666667,23.6,46.09,20.29,41.23,6.2333333333,754.2333333333,96.3333333333,1,48.3333333333,5.6666666667,4.6614695806,4.6614695806 -50,0,22.2,39.09,19.6,42.2225,22.79,38.79,20.89,39.7,20.1,49.09,6.8,61.1233333333,20.6,34.4,23.6,46.09,20.29,41.3633333333,6.2,754.25,96.5,1,52.5,5.65,16.1671663052,16.1671663052 -50,0,22.2,39.09,19.5333333333,42.4,22.79,38.79,20.89,39.7,20,48.9,6.7266666667,62.2633333333,20.6,34.4,23.6,46.03,20.29,41.53,6.1666666667,754.2666666667,96.6666666667,1,56.6666666667,5.6333333333,44.880506664,44.880506664 -50,0,22.1,39.09,19.5,42.5,22.79,38.9,20.89,39.7,20,48.9,6.745,62.995,20.6,34.4,23.5333333333,46.1633333333,20.29,41.59,6.1333333333,754.2833333333,96.8333333333,1,60.8333333333,5.6166666667,32.6371386647,32.6371386647 -60,0,22.1,39.09,19.5,42.56,22.79,38.9,20.89,39.7,20,48.8633333333,6.6566666667,63.09,20.6,34.4,23.55,46.09,20.29,41.73,6.1,754.3,97,1,65,5.6,38.9237858704,38.9237858704 -50,0,22.1,39.1633333333,19.4633333333,42.6633333333,22.79,38.9,20.8233333333,39.53,20,48.79,6.59,63.1633333333,20.6,34.4,23.5,45.9666666667,20.29,41.79,6.1,754.3,97.1666666667,1,64.6666666667,5.6333333333,40.4145395732,40.4145395732 -60,0,22.0666666667,39.1633333333,19.39,42.59,22.8566666667,38.9666666667,20.815,39.5225,20,48.79,6.59,63.4633333333,20.6,34.4666666667,23.5,45.9,20.29,41.8266666667,6.1,754.3,97.3333333333,1,64.3333333333,5.6666666667,48.6123017967,48.6123017967 -50,0,22,39.09,19.3566666667,42.7,22.89,39,20.79,39.5,20,48.79,6.59,63.7233333333,20.6,34.5,23.39,45.7,20.29,41.9666666667,6.1,754.3,97.5,1,64,5.7,22.2085181274,22.2085181274 -50,0,22,39.09,19.29,42.76,22.89,39,20.79,39.5,20,48.79,6.56,63.9633333333,20.5333333333,34.5,23.39,45.7,20.29,42.03,6.1,754.3,97.6666666667,1,63.6666666667,5.7333333333,43.0107954307,43.0107954307 -50,0,22,39.09,19.29,42.9,22.89,39,20.79,39.5,20,48.7,6.5,64.23,20.6,34.5,23.39,45.8266666667,20.29,42.1633333333,6.1,754.3,97.8333333333,1,63.3333333333,5.7666666667,1.3799460139,1.3799460139 -50,0,22,39.09,19.29,42.9,22.89,39,20.79,39.5,20,48.7,6.4,64.3966666667,20.6,34.5,23.39,45.9,20.34,42.29,6.1,754.3,98,1,63,5.8,44.1433398752,44.1433398752 -50,0,22,39.09,19.29,43,22.89,39,20.73,39.5,20,48.7,6.4,64.73,20.5333333333,34.5,23.39,45.8633333333,20.3566666667,42.4333333333,6.0833333333,754.25,98,1,63.1666666667,5.7833333333,46.547137876,46.547137876 -50,0,21.9633333333,39.09,19.23,42.9333333333,22.89,39,20.73,39.5,19.9266666667,48.7,6.3666666667,64.56,20.6,34.5,23.3233333333,45.79,20.29,42.5,6.0666666667,754.2,98,1,63.3333333333,5.7666666667,48.6114032217,48.6114032217 -70,0,21.89,39.09,19.2,43,22.89,39,20.73,39.5,20,48.59,6.3,64.56,20.5333333333,34.5,23.39,45.9,20.29,42.59,6.05,754.15,98,1,63.5,5.75,18.3123310679,18.3123310679 -50,0,21.89,39.1633333333,19.2,43,22.89,39,20.7,39.5,19.9266666667,48.59,6.3,65.1,20.5333333333,34.5,23.39,45.7666666667,20.3566666667,42.6633333333,6.0333333333,754.1,98,1,63.6666666667,5.7333333333,14.7064072429,14.7064072429 -60,0,21.89,39.1633333333,19.1,43.09,22.89,39.09,20.7,39.4333333333,20,48.59,6.3,65.4933333333,20.6,34.5,23.29,45.7,20.39,42.73,6.0166666667,754.05,98,1,63.8333333333,5.7166666667,14.1776374425,14.1776374425 -50,0,21.89,39.2,19.1,43.09,22.9633333333,39.09,20.7,39.4,20,48.59,6.3,65.59,20.5,34.5,23.29,45.6266666667,20.39,42.79,6,754,98,1,64,5.7,20.7614302286,20.7614302286 -50,0,21.89,39.2,19.0666666667,43.1633333333,22.89,39.09,20.7,39.4,19.9266666667,48.59,6.3,65.59,20.5,34.5,23.29,45.59,20.3233333333,42.79,6,754.05,98.1666666667,1,62.6666666667,5.7333333333,10.8693713206,10.8693713206 -50,0,21.79,39.09,19,43.09,22.89,39.09,20.7,39.4,19.9266666667,48.59,6.3,65.69,20.5,34.5,23.29,45.59,20.39,42.79,6,754.1,98.3333333333,1,61.3333333333,5.7666666667,35.7409662683,35.7409662683 -40,0,21.79,39.09,19,43.2,22.89,39.09,20.7,39.4,19.9633333333,48.56,6.3,65.69,20.5,34.5,23.29,45.4666666667,20.39,42.8266666667,6,754.15,98.5,1,60,5.8,9.8474608385,9.8474608385 -50,0,21.79,39.2,19,43.2,22.89,39.09,20.6,39.29,19.89,48.5,6.245,65.745,20.5,34.53,23.29,45.3266666667,20.39,42.9,6,754.2,98.6666666667,1,58.6666666667,5.8333333333,33.6467057467,33.6467057467 -50,0,21.79,39.2,19,43.26,22.89,39.09,20.6,39.29,19.89,48.5,6.19,65.9333333333,20.5,34.59,23.26,45.2233333333,20.39,42.9333333333,6,754.25,98.8333333333,1,57.3333333333,5.8666666667,4.0853015962,4.0853015962 -90,0,21.73,39.2,18.9633333333,43.4,22.9266666667,39.09,20.6,39.29,19.89,48.5,6.19,66.06,20.5,34.59,23.2,45.03,20.39,43,6,754.3,99,1,56,5.9,47.189095139,47.189095139 -60,0,21.7225,39.2975,18.89,43.4,22.9266666667,39.09,20.6,39.29,19.89,48.5,6.19,66.19,20.5,34.53,23.2,44.9666666667,20.39,43.0666666667,6,754.2,98.8333333333,1.1666666667,57.1666666667,5.8666666667,5.3022785229,5.3022785229 -50,10,21.7,39.7233333333,18.89,43.7666666667,22.89,39.0266666667,20.6,39.29,19.89,48.5,6.19,66.19,20.5,34.59,23.2,44.9666666667,20.39,43.2,6,754.1,98.6666666667,1.3333333333,58.3333333333,5.8333333333,12.388230965,12.388230965 -20,0,21.7,40,18.89,44.0266666667,22.8233333333,38.8266666667,20.6,39.29,19.89,48.5,6.19,66.19,20.5,34.59,23.2,44.9,20.39,43.1633333333,6,754,98.5,1.5,59.5,5.8,1.5843700035,1.5843700035 -40,10,21.7,40,18.89,44.29,22.76,38.76,20.6,39.29,19.89,48.4,6.19,66.2633333333,20.5,34.59,23.1,44.79,20.39,43.09,6,753.9,98.3333333333,1.6666666667,60.6666666667,5.7666666667,7.0171824889,7.0171824889 -30,0,21.7,40.09,18.8233333333,44.23,22.7,38.6266666667,20.6,39.5,19.89,48.4666666667,6.19,66.3666666667,20.5,34.59,23.1,44.79,20.39,43.09,6,753.8,98.1666666667,1.8333333333,61.8333333333,5.7333333333,21.4679421391,21.4679421391 -50,0,21.7,40.09,18.8233333333,44.3266666667,22.6666666667,38.43,20.6,39.56,19.89,48.5,6.19,66.3,20.5,34.59,23.1,44.79,20.39,43.09,6,753.7,98,2,63,5.7,46.1227537948,46.1227537948 -50,0,21.7,40.2,18.8233333333,44.3266666667,22.6,38.29,20.6,39.73,19.89,48.5,6.19,66.3,20.5,34.59,23.1,44.79,20.39,43.09,5.9833333333,753.75,97.5,1.8333333333,63.3333333333,5.6166666667,20.3306382522,20.3306382522 -50,0,21.7,40.2,18.79,44.29,22.5,38.29,20.6,39.79,19.89,48.5,6.19,66.3,20.5,34.59,23.0666666667,44.7,20.39,43.09,5.9666666667,753.8,97,1.6666666667,63.6666666667,5.5333333333,27.2252964671,27.2252964671 -60,0,21.7,40.2,18.79,44.3633333333,22.5,38.29,20.6,39.9,19.89,48.5,6.1566666667,66.3,20.5,34.59,23.0666666667,44.7,20.39,43.09,5.95,753.85,96.5,1.5,64,5.45,25.579549768,25.579549768 -60,0,21.7,40.2,18.79,44.4333333333,22.5,38.3266666667,20.5333333333,39.9666666667,19.79,48.3633333333,6.09,66.3666666667,20.5,34.59,23,44.6633333333,20.3233333333,43.1266666667,5.9333333333,753.9,96,1.3333333333,64.3333333333,5.3666666667,33.724052005,33.724052005 -60,0,21.7,40.2,18.79,44.5,22.5,38.4,20.5666666667,40,19.8566666667,48.29,6.19,66.4333333333,20.5,34.59,23,44.6633333333,20.39,43.2,5.9166666667,753.95,95.5,1.1666666667,64.6666666667,5.2833333333,29.0164823527,29.0164823527 -80,0,21.7,40.2,18.79,44.5,22.5333333333,38.3633333333,20.5,40.06,20.7966666667,78.9333333333,6.2633333333,66.6266666667,20.4266666667,34.53,23,44.59,20.3233333333,43.2,5.9,754,95,1,65,5.2,40.5591633404,40.5591633404 -60,0,21.6,40.1566666667,18.79,44.5,22.6,38.29,20.5,40.09,21.2633333333,81.4666666667,6.3333333333,66.59,20.5,34.59,23,44.59,20.39,43.2,5.9166666667,754.0333333333,94.8333333333,1,57.5,5.1833333333,36.7732346756,36.7732346756 -40,0,21.6,40.3633333333,18.79,44.56,22.6,38.29,20.5,40.1633333333,20.93,80.2,6.4,66.59,20.4266666667,34.53,23,44.43,20.29,43.06,5.9333333333,754.0666666667,94.6666666667,1,50,5.1666666667,14.6187442122,14.6187442122 -50,0,21.6,40.29,18.79,44.5,22.6,38.29,20.5,40.1633333333,20.79,79.7266666667,6.45,66.695,20.39,34.5,22.9266666667,44.29,20.29,42.86,5.95,754.1,94.5,1,42.5,5.15,21.5976463165,21.5976463165 -50,20,21.6,40.23,18.79,44.3633333333,22.5666666667,38.29,20.5,40.1633333333,20.6,78.66,6.59,66.8333333333,20.3233333333,34.5,22.9633333333,44.0266666667,20.29,42.5266666667,5.9666666667,754.1333333333,94.3333333333,1,35,5.1333333333,33.406409109,33.406409109 -70,20,21.6,40.09,18.79,44.2225,22.5,38.29,20.5,40.2,20.5333333333,76.3266666667,6.59,66.9,20.3566666667,34.5,22.89,43.7666666667,20.29,42.2666666667,5.9833333333,754.1666666667,94.1666666667,1,27.5,5.1166666667,24.1745508625,24.1745508625 -80,30,21.6,40.03,18.79,44.1266666667,22.5,38.23,20.5,40.2,20.4633333333,72.5966666667,6.69,67.2633333333,20.29,34.5,22.89,43.56,20.29,41.9666666667,6,754.2,94,1,20,5.1,9.0205090353,9.0205090353 -70,20,21.6,39.9,18.79,43.9666666667,22.5,38.29,20.5,40.29,20.39,69.93,6.7633333333,67.2633333333,20.29,34.5,22.89,43.4333333333,20.29,41.7666666667,6.0166666667,754.2166666667,94.1666666667,1.1666666667,20.6666666667,5.15,43.4533041436,43.4533041436 -70,20,21.6,39.8266666667,18.79,43.9,22.5,38.23,20.5,40.29,20.29,66.8966666667,6.9,67.4,20.29,34.5,22.8233333333,43.23,20.2,41.3633333333,6.0333333333,754.2333333333,94.3333333333,1.3333333333,21.3333333333,5.2,25.3840261139,25.3840261139 -50,0,21.55,39.745,18.79,43.76,22.5,38.2,20.6,40.4,20.29,64.83,6.9666666667,67.4,20.29,34.5,22.89,43.3633333333,20.2,41.1566666667,6.05,754.25,94.5,1.5,22,5.25,13.3490702021,13.3490702021 -50,0,21.5666666667,39.7,18.79,43.7,22.5,38.1266666667,20.6,40.3725,20.245,62.395,7.03,67.1933333333,20.29,34.56,22.89,43.4,20.2,40.9666666667,6.0666666667,754.2666666667,94.6666666667,1.6666666667,22.6666666667,5.3,36.7938381503,36.7938381503 -70,0,21.5,39.7,18.8233333333,43.59,22.5,38.09,20.6,40.23,20.2,60.4266666667,7.1566666667,67.4,20.29,34.56,22.89,43.3175,20.2,40.7666666667,6.0833333333,754.2833333333,94.8333333333,1.8333333333,23.3333333333,5.35,46.7038211529,46.7038211529 -60,0,21.5,39.7,18.89,43.53,22.5,38.09,20.6,40.1633333333,20.2,59.2333333333,7.3333333333,67.3333333333,20.29,34.56,22.89,43.29,20.2,40.5266666667,6.1,754.3,95,2,24,5.4,15.0658522034,15.0658522034 -50,0,21.5,39.5666666667,18.89,43.2966666667,22.39,38.03,20.6,40.03,20.1666666667,58.2333333333,7.4666666667,67.1933333333,20.23,34.53,22.89,43.1633333333,20.2,40.3266666667,6.2,754.3166666667,94.5,2.1666666667,26.6666666667,5.4166666667,24.0400616312,24.0400616312 -50,0,21.5,39.1633333333,18.8233333333,42.83,22.39,38.09,20.5666666667,39.8633333333,20.1666666667,57.6333333333,7.66,66.76,20.29,34.59,22.89,43.03,20.2,40.2,6.3,754.3333333333,94,2.3333333333,29.3333333333,5.4333333333,21.463770431,21.463770431 -100,0,21.5,39.09,18.89,42.6333333333,22.39,37.9666666667,20.5,39.79,21.0233333333,78.3566666667,7.8666666667,66.5666666667,20.245,34.545,22.9633333333,42.6933333333,20.2,40,6.4,754.35,93.5,2.5,32,5.45,22.7503255825,22.7503255825 -80,0,21.39,39,18.89,42.56,22.39,37.8266666667,20.5,39.7,22.23,88.23,8.0333333333,65.1666666667,20.29,34.59,22.89,42.56,20.2,39.9333333333,6.5,754.3666666667,93,2.6666666667,34.6666666667,5.4666666667,46.6258080793,46.6258080793 -90,0,21.39,39,18.9266666667,42.5,22.39,37.76,20.5,39.7,21.6566666667,89.6,8.16,63.56,20.29,34.59,22.9266666667,42.9333333333,20.1,39.8633333333,6.6,754.3833333333,92.5,2.8333333333,37.3333333333,5.4833333333,35.7602327014,35.7602327014 -90,0,21.39,39.09,19,42.5,22.39,37.76,20.5,39.59,21.2633333333,90,8.46,62.2,20.29,34.59,23,43,20.1,39.73,6.7,754.4,92,3,40,5.5,16.2329283077,16.2329283077 -90,0,21.39,39.09,19.0333333333,42.4333333333,22.39,37.7,20.5,39.59,20.9633333333,88.1333333333,8.66,60.4,20.29,34.59,23.1,42.9666666667,20.1666666667,39.5266666667,6.85,754.4333333333,90.6666666667,3.1666666667,38.1666666667,5.4333333333,42.0019788435,42.0019788435 -90,0,21.39,39.09,19.1,42.4333333333,22.39,37.7,20.39,39.3633333333,20.8233333333,84.5333333333,8.8666666667,57.9566666667,20.29,34.56,23.1666666667,42.7666666667,20.1,39.4,7,754.4666666667,89.3333333333,3.3333333333,36.3333333333,5.3666666667,28.8326721522,28.8326721522 -90,0,21.39,39.09,19.1,42.26,22.29,37.6266666667,20.39,39.29,20.79,78.29,9.0975,56.3975,20.29,34.5,23.23,42.59,20.1,39.4,7.15,754.5,88,3.5,34.5,5.3,45.3700789833,45.3700789833 -80,0,21.39,39.09,19.1,42.2,22.29,37.6266666667,20.5,39.29,20.79,73.69,9.19,55.9,20.23,34.4,23.29,42.4633333333,20.1,39.4,7.3,754.5333333333,86.6666666667,3.6666666667,32.6666666667,5.2333333333,18.5852895258,18.5852895258 -80,0,21.39,39.09,19.2,42.09,22.29,37.59,20.4266666667,39.23,20.7,68.96,9.0666666667,54.0966666667,20.29,34.4,23.3233333333,42.26,20.1,39.26,7.45,754.5666666667,85.3333333333,3.8333333333,30.8333333333,5.1666666667,45.3401625156,45.3401625156 -100,0,21.3233333333,39.1566666667,19.2,42.09,22.29,37.59,20.39,39.2,20.6333333333,66.56,9,56.5633333333,20.29,34.4,23.39,42.2,20.1,39.1266666667,7.6,754.6,84,4,29,5.1,4.6391138574,4.6391138574 -90,0,21.3233333333,39.23,19.2,42.09,22.29,37.59,20.39,39.1266666667,20.5666666667,64.6966666667,8.9333333333,56.6633333333,20.29,34.4666666667,23.39,42,20.1,39.09,7.65,754.6666666667,83.8333333333,4,30.8333333333,5.1166666667,8.7528599193,8.7528599193 -80,0,21.3566666667,39.2,19.2,42.09,22.29,37.59,20.39,39.09,20.5,61.5566666667,8.86,59.6633333333,20.29,34.5,23.39,41.9333333333,20.1,39.03,7.7,754.7333333333,83.6666666667,4,32.6666666667,5.1333333333,32.1455670637,32.1455670637 -100,0,21.29,39.2,19.2,42.09,22.29,37.59,20.39,39.09,20.4633333333,57.5666666667,8.89,60.46,20.23,34.5,23.5,41.9,20.1,39,7.75,754.8,83.5,4,34.5,5.15,39.674967702,39.674967702 -90,0,21.29,39.29,19.2,42.09,22.29,37.59,20.39,39.1266666667,20.39,56.0933333333,8.9633333333,61.5933333333,20.2,34.53,23.5,41.9,20.1,39,7.8,754.8666666667,83.3333333333,4,36.3333333333,5.1666666667,2.4978504516,2.4978504516 -100,0,21.29,39.29,19.2,42.09,22.29,37.59,20.39,39.1175,20.4633333333,54.4266666667,9.0333333333,60.4233333333,20.2,34.59,23.5333333333,41.8633333333,20.1,39,7.85,754.9333333333,83.1666666667,4,38.1666666667,5.1833333333,48.5889059841,48.5889059841 -90,10,21.29,39.29,19.2,42,22.26,37.59,20.39,39.09,20.39,52.925,9.1,60.5566666667,20.2,34.59,23.6,41.73,20.1,39,7.9,755,83,4,40,5.2,27.3573915008,27.3573915008 -100,20,21.29,39.39,19.2,42,22.26,37.59,20.39,39.1266666667,20.39,51.7333333333,8.8966666667,58.99,20.26,34.59,23.7,41.645,20.0666666667,38.9666666667,7.75,754.95,83.1666666667,4,44,5.0833333333,10.2030573646,10.2030573646 -90,20,21.23,39.59,19.1666666667,41.9333333333,22.26,37.59,20.39,39.2,20.39,50.9233333333,8.23,57.93,20.2,34.56,23.79,41.4666666667,20,38.8266666667,7.6,754.9,83.3333333333,4,48,4.9666666667,31.5487958258,31.5487958258 -100,30,21.2,39.5,19.1,42.06,22.2,37.59,20.39,39.36,20.39,50.2566666667,7.6566666667,60.6,20.2,34.4333333333,23.79,41.3266666667,20.05,38.745,7.45,754.85,83.5,4,52,4.85,26.958762249,26.958762249 -100,20,21.2,39.5,19.1,42,22.2,37.59,20.39,39.5,20.39,49.46,7.4633333333,62.2666666667,20.2,34.4,23.79,41.2,20,38.59,7.3,754.8,83.6666666667,4,56,4.7333333333,6.4775338396,6.4775338396 -150,0,21.2,39.4666666667,19.1,42,22.2,37.59,20.4266666667,39.6266666667,20.39,48.9266666667,7.4333333333,64.9666666667,20.2,34.29,23.8566666667,41.2,20,38.53,7.15,754.75,83.8333333333,4,60,4.6166666667,29.8293517088,29.8293517088 -140,0,21.2,39.4666666667,19.1333333333,41.9666666667,22.29,37.59,20.5,39.7,20.39,48.79,7.56,66.9,20.2,34.3633333333,23.89,40.8633333333,20,38.5,7,754.7,84,4,64,4.5,31.2463469803,31.2463469803 -90,0,21.2,39.9,19.2,42.0266666667,22.29,37.59,20.5,39.7,20.39,48.4566666667,8.0633333333,68.1233333333,20.2,34.4,23.89,40.79,20,38.5,7.15,754.6833333333,84.3333333333,4,58.1666666667,4.6833333333,37.2438771883,37.2438771883 -80,0,21.2,39.9,19.29,42.06,22.29,37.59,20.5,39.7,20.39,48.0266666667,8.4475,68.645,20.2,34.4,24,40.8266666667,20,38.5,7.3,754.6666666667,84.6666666667,4,52.3333333333,4.8666666667,11.8782202131,11.8782202131 -90,0,21.2,39.76,19.3566666667,42,22.23,37.59,20.5,39.59,20.39,47.7666666667,8.7333333333,68.13,20.2,34.5,24,40.9666666667,20,38.5,7.45,754.65,85,4,46.5,5.05,30.5838355096,30.5838355096 -80,0,21.2,39.7,19.39,41.9666666667,22.2,37.53,20.5,39.6633333333,20.39,47.4666666667,8.7566666667,65.9933333333,20.2,34.56,24.1,41,20,38.5,7.6,754.6333333333,85.3333333333,4,40.6666666667,5.2333333333,40.3801042004,40.3801042004 -100,0,21.2,39.6633333333,19.39,41.8266666667,22.2,37.59,20.5,39.8266666667,20.39,47.2666666667,8.89,64.2666666667,20.2,34.5,24.1666666667,40.9333333333,20,38.5,7.75,754.6166666667,85.6666666667,4,34.8333333333,5.4166666667,33.2205947489,33.2205947489 -110,0,21.2,39.59,19.39,41.79,22.1666666667,37.59,20.5,39.9,20.39,46.9666666667,8.9266666667,61.4,20.2,34.5,24.2,40.8633333333,20,38.4,7.9,754.6,86,4,29,5.6,31.9810331333,31.9810331333 -110,0,21.2,39.59,19.39,41.73,22.1,37.59,20.5333333333,40.03,20.39,46.8266666667,9,60.4,20.2,34.5,24.26,40.79,20,38.4,7.9333333333,754.55,85.1666666667,4,28.8333333333,5.5,3.8335653138,3.8335653138 -120,0,21.2,39.59,19.39,41.59,22.1,37.59,20.6,40.09,20.39,46.56,9,57.93,20.2,34.4333333333,24.29,40.76,20,38.3633333333,7.9666666667,754.5,84.3333333333,4,28.6666666667,5.4,42.472667445,42.472667445 -110,0,21.2,39.5,19.39,41.56,22.1,37.59,20.6,40.09,20.3233333333,46.4333333333,9.0666666667,59.4566666667,20.2,34.4,24.29,40.7,20,38.29,8,754.45,83.5,4,28.5,5.3,32.0953388931,32.0953388931 -80,0,21.2,39.5,19.4633333333,41.5,22.1,37.6633333333,20.6,40.03,20.3233333333,46.1633333333,9.2266666667,60.29,20.2,34.4,24.39,40.56,20,38.29,8.0333333333,754.4,82.6666666667,4,28.3333333333,5.2,16.7040099157,16.7040099157 -110,0,21.2,39.4666666667,19.5,41.5,22.1,37.7,20.6,40,20.39,46.03,9.36,60.23,20.23,34.4,24.39,40.5,20,38.23,8.0666666667,754.35,81.8333333333,4,28.1666666667,5.1,6.1036174069,6.1036174069 -90,0,21.2,39.4,19.5,41.5,22.0333333333,37.6266666667,20.6,40.0675,20.29,45.8633333333,9.5,58.7266666667,20.29,34.4,24.39,40.56,20,38.2,8.1,754.3,81,4,28,5,40.6194994226,40.6194994226 -110,0,21.2,39.4,19.5,41.4333333333,22.0666666667,37.6633333333,20.6,40.09,20.29,45.73,9.5,56.3933333333,20.23,34.4,24.39,40.5,20,38.2,8.1,754.3,80.8333333333,4.1666666667,30,4.9666666667,17.6696417388,17.6696417388 -100,0,21.2,39.4,19.5,41.4333333333,22,37.6633333333,20.6,40.06,20.29,45.545,9.33,53.43,20.29,34.3266666667,24.39,40.3633333333,19.9633333333,38.1633333333,8.1,754.3,80.6666666667,4.3333333333,32,4.9333333333,24.2201767978,24.2201767978 -110,0,21.2,39.4,19.5333333333,41.26,22,37.6633333333,20.6666666667,40.06,20.3566666667,45.3633333333,9.4633333333,56.43,20.23,34.23,24.4633333333,40.43,19.9633333333,38.09,8.1,754.3,80.5,4.5,34,4.9,12.2254281421,12.2254281421 -110,0,21.2,39.4,19.6,41.2,22,37.59,20.7,40.1633333333,20.29,45.23,9.6666666667,53,20.29,34.29,24.5,40.45,20,38.045,8.1,754.3,80.3333333333,4.6666666667,36,4.8666666667,49.3283139309,49.3283139309 -100,0,21.2,39.4,19.6,41,22,37.56,20.6333333333,40.03,20.39,45.06,9.9333333333,53.6666666667,20.29,34.2,24.6,40.29,20,38,8.1,754.3,80.1666666667,4.8333333333,38,4.8333333333,11.9901116937,11.9901116937 -90,0,21.2,39.4,19.6,41,22,37.56,20.7,40.0266666667,20.39,45,9.8233333333,50.8966666667,20.29,34.1633333333,24.6,40.23,20,38,8.1,754.3,80,5,40,4.8,20.4199398053,20.4199398053 -90,0,21.2,39.4666666667,19.6,41.03,22,37.53,20.6333333333,39.7666666667,20.3566666667,44.8633333333,9.69,51.1566666667,20.29,34.09,24.6,40.09,19.9633333333,37.9,8.1333333333,754.2,79.8333333333,5.1666666667,38,4.8,13.9478044352,13.9478044352 -90,0,21.2,39.5,19.6,41.1633333333,22,37.53,20.6,39.5,20.29,44.73,9.55,48.845,20.29,34.06,24.6,39.9633333333,19.9633333333,37.9,8.1666666667,754.1,79.6666666667,5.3333333333,36,4.8,8.1238754792,8.1238754792 -80,0,21.2,39.56,19.6,41.06,22,37.5,20.6,39.5,20.3566666667,44.5266666667,9.4633333333,48.4,20.29,33.9333333333,24.6,39.7233333333,20,37.9566666667,8.2,754,79.5,5.5,34,4.8,45.6689206185,45.6689206185 -100,0,21.2,39.59,19.6,40.9333333333,22,37.5,20.6,39.4,20.29,44.1933333333,9.39,47.86,20.29,33.8633333333,24.6,39.53,20.0666666667,38.6233333333,8.2333333333,753.9,79.3333333333,5.6666666667,32,4.8,46.1287613725,46.1287613725 -90,0,21.26,39.6633333333,19.6,40.79,21.89,37.5,20.6,39.4666666667,20.29,44.0666666667,9.36,48.8266666667,20.29,33.79,24.6,39.3633333333,20.0666666667,38.76,8.2666666667,753.8,79.1666666667,5.8333333333,30,4.8,17.8409662563,17.8409662563 -80,0,21.29,39.7,19.6,40.79,21.9633333333,37.5,20.6333333333,39.59,20.29,44.7333333333,9.3,49.0266666667,20.2,33.6633333333,24.6,39.29,20.0666666667,38.8333333333,8.3,753.7,79,6,28,4.8,19.9079565471,19.9079565471 -70,0,21.29,39.7,19.6,40.9333333333,22,37.4666666667,20.7,39.59,20.2,45.5,9.3,50.36,20.2,33.59,24.5,39.4333333333,20,38.7233333333,8.3333333333,753.8166666667,78.3333333333,5.5,28.1666666667,4.7166666667,17.2536014346,17.2536014346 -90,0,21.39,40.6333333333,19.6,41,21.9266666667,37.4,20.7,39.3633333333,20.2,45.9,9.2266666667,50.1666666667,20.26,33.56,24.5,39.5,20,38.53,8.3666666667,753.9333333333,77.6666666667,5,28.3333333333,4.6333333333,33.51679435,33.51679435 -430,0,21.4633333333,40.7666666667,19.7,41.145,21.89,37.4,20.7,39.23,20.2,46.3266666667,9.2633333333,50.7333333333,20.2,33.5,24.5,39.5,20,38.3633333333,8.4,754.05,77,4.5,28.5,4.55,41.4023833699,41.4023833699 -440,0,21.4266666667,41.5966666667,19.7,41.1566666667,21.89,37.4666666667,20.6666666667,39.06,20.2,46.4666666667,9.13,51.0666666667,20.2,33.5,24.5,39.4333333333,20,38.23,8.4333333333,754.1666666667,76.3333333333,4,28.6666666667,4.4666666667,30.0181195489,30.0181195489 -110,10,21.5,45.3966666667,19.7,42.6233333333,21.89,37.545,20.6,39.06,20.2,46.73,8.9333333333,51.0266666667,20.2,33.5,24.5,39.4,20,38.06,8.4666666667,754.2833333333,75.6666666667,3.5,28.8333333333,4.3833333333,14.6121683763,14.6121683763 -90,10,21.6,47.2566666667,19.79,44.4666666667,21.89,37.8,20.6333333333,39.3,20.1333333333,46.8633333333,8.8,51.8266666667,20.2,33.5,24.5,39.2666666667,20,38,8.5,754.4,75,3,29,4.3,24.4889248046,24.4889248046 -90,0,21.625,45.7225,19.79,44.2666666667,21.89,38.06,20.65,39.7925,20.1,47.33,8.66,53.9,20.2,33.56,24.4633333333,39.09,19.9633333333,37.9,8.4333333333,754.4666666667,76.1666666667,2.8333333333,30.8333333333,4.45,13.7352010352,13.7352010352 -110,0,21.7,44.4333333333,19.89,44.1633333333,22,38.23,20.6333333333,40.2233333333,20.1,47.7966666667,8.55,54.095,20.2,33.59,24.39,39.09,19.9633333333,37.9,8.3666666667,754.5333333333,77.3333333333,2.6666666667,32.6666666667,4.6,16.630754678,16.630754678 -90,0,21.7,43.4233333333,19.89,43.9633333333,22,38.3633333333,20.6333333333,40.5666666667,20.1,48.3,8.4725,55.5175,20.2,33.6633333333,24.5,39.23,20,38.3,8.3,754.6,78.5,2.5,34.5,4.75,7.1832650574,7.1832650574 -120,10,21.7,42.83,19.89,43.6633333333,22,38.4,20.7,40.76,20.1,48.4,8.39,57.2,20.2,33.73,24.5,39.29,20,38.6333333333,8.2333333333,754.6666666667,79.6666666667,2.3333333333,36.3333333333,4.9,35.0277995225,35.0277995225 -100,0,21.7,42.1933333333,19.89,43.4633333333,22,38.4,20.6,40.7,20.1,48.4666666667,8.3,56.9933333333,20.2,33.79,24.39,39.36,20,38.9,8.1666666667,754.7333333333,80.8333333333,2.1666666667,38.1666666667,5.05,32.5354593922,32.5354593922 -100,0,21.76,41.9333333333,20,43.1633333333,22,38.4666666667,20.6,40.7,20.1,48.5,8.2266666667,56.3266666667,20.2,33.79,24.4633333333,39.6933333333,20,38.8633333333,8.1,754.8,82,2,40,5.2,36.2755087437,36.2755087437 -90,0,21.8233333333,41.56,20.0666666667,43.03,22,38.4,20.6,40.73,20.1,48.4333333333,8.095,56.745,20.2,33.8725,24.5,39.7,20,38.73,8.05,754.8333333333,82.6666666667,2,37,5.25,30.1070456859,30.1070456859 -120,0,21.89,41.36,20.1333333333,42.79,21.9633333333,38.4333333333,20.6,40.79,20,48.29,7.73,58.5666666667,20.2,33.9,24.5,39.6633333333,19.89,38.7,8,754.8666666667,83.3333333333,2,34,5.3,23.0737725506,23.0737725506 -110,0,22,41.1633333333,20.26,42.73,21.89,38.4333333333,20.6,40.8266666667,20,48.29,7.53,58.6333333333,20.2,33.9,24.5,39.59,19.89,38.6266666667,7.95,754.9,84,2,31,5.35,21.2941887439,21.2941887439 -120,0,22.0666666667,41.03,20.4266666667,42.5266666667,21.9266666667,38.5,20.6,40.9,20,48.2,7.2966666667,62.1933333333,20.2,33.9,24.5,39.56,19.9633333333,38.59,7.9,754.9333333333,84.6666666667,2,28,5.4,48.3762066578,48.3762066578 -120,0,22.2,40.7233333333,20.5666666667,42.2666666667,22,38.5,20.6,41.09,20,48.2,6.9633333333,65.8,20.2,33.9,24.5,39.4333333333,19.89,38.59,7.85,754.9666666667,85.3333333333,2,25,5.45,25.471978297,25.471978297 -120,0,22.26,40.53,20.6333333333,41.9666666667,22,38.4,20.6,41.1633333333,20,48.1633333333,6.6566666667,67.8233333333,20.2,33.9,24.6,39.4,19.89,38.5,7.8,755,86,2,22,5.5,24.5062549599,24.5062549599 -140,0,22.4266666667,40.4,20.76,41.8266666667,22.0666666667,38.4666666667,20.6,41.23,20,48.09,6.53,68.23,20.2,33.9333333333,24.6,39.4,19.89,38.5,7.6333333333,755.0333333333,86.5,2.3333333333,22.3333333333,5.4333333333,5.3267189185,5.3267189185 -110,0,22.5,40.2666666667,20.8233333333,41.56,22.1,38.5,20.6666666667,41.3633333333,20,48.03,6.3666666667,68.4333333333,20.2,34,24.6333333333,39.29,19.89,38.5,7.4666666667,755.0666666667,87,2.6666666667,22.6666666667,5.3666666667,36.6055609891,36.6055609891 -120,0,22.5333333333,39.9666666667,20.89,41.4333333333,22.1666666667,38.5,20.7,41.5,20,48.03,6.3,68.4333333333,20.2,33.9,24.76,39.29,19.89,38.5,7.3,755.1,87.5,3,23,5.3,43.2858547196,43.2858547196 -90,0,22.6,39.8266666667,20.945,41.245,22.2,38.4,20.7,41.5,20,47.9666666667,6.1566666667,68.2633333333,20.2,33.8266666667,24.79,39.1633333333,19.89,38.4666666667,7.1333333333,755.1333333333,88,3.3333333333,23.3333333333,5.2333333333,20.1772064087,20.1772064087 -70,0,22.7,39.7233333333,21,41.06,22.2,38.4666666667,20.7,41.4666666667,20,47.9,6.045,68.14,20.2,33.76,24.79,39.09,19.89,38.4,6.9666666667,755.1666666667,88.5,3.6666666667,23.6666666667,5.1666666667,4.6898986096,4.6898986096 -40,10,22.7,39.53,21,40.9333333333,22.2,38.4,20.7,41.4,20,47.9,5.925,67.9475,20.1333333333,33.7,24.76,39.53,19.89,38.29,6.8,755.2,89,4,24,5.1,14.3494666438,14.3494666438 -40,0,22.79,39.4666666667,21,40.93,22.1666666667,38.4,20.7,41.26,20,47.9666666667,5.9,67.9666666667,20.2,33.73,24.7,39.7233333333,19.89,38.3633333333,6.6833333333,755.25,88.5,4,26.6666666667,4.9,45.5684762681,45.5684762681 -40,0,22.79,39.3266666667,20.9266666667,40.79,22.1,38.4,20.7,41.1266666667,19.9633333333,48.1266666667,5.9333333333,68,20.2,33.8633333333,24.7,40.1566666667,19.9266666667,39.1333333333,6.5666666667,755.3,88,4,29.3333333333,4.7,28.6675804178,28.6675804178 -30,10,22.79,39.145,20.89,40.9,22,38.4,20.7,41.045,19.89,48.2,6,68,20.2,33.9,24.6333333333,40.3633333333,20,39.4666666667,6.45,755.35,87.5,4,32,4.5,16.9492890127,16.9492890127 -60,0,22.79,39.06,20.8233333333,40.9,22,38.4,20.6,40.8633333333,19.9633333333,48.29,6,67.9,20.2,33.9666666667,24.6,40.8,20,39.73,6.3333333333,755.4,87,4,34.6666666667,4.3,16.6663135984,16.6663135984 -50,0,22.79,39,20.79,40.9333333333,21.89,38.5,20.6,40.73,19.945,48.3725,6,67.8333333333,20.2,34,24.6,41.2666666667,20,39.93,6.2166666667,755.45,86.5,4,37.3333333333,4.1,21.056431625,21.056431625 -50,0,22.79,38.9666666667,20.73,41,21.9633333333,38.5,20.6,40.6633333333,19.89,48.4666666667,6.045,67.64,20.2,34,24.6,41.83,20,40.145,6.1,755.5,86,4,40,3.9,46.5196256642,46.5196256642 -50,0,22.79,38.9,20.7,41.09,22,38.5,20.6,40.53,19.89,48.53,6.1233333333,67.4333333333,20.23,34.03,24.6,42.2966666667,20,40.2,6.1333333333,755.6,86.3333333333,3.8333333333,37.5,3.9833333333,49.5516319876,49.5516319876 -60,0,22.7,38.9,20.6333333333,41.09,22,38.5,20.5666666667,40.4666666667,19.89,48.59,6.2633333333,67.16,20.2225,34.045,24.6,42.6566666667,20,40.26,6.1666666667,755.7,86.6666666667,3.6666666667,35,4.0666666667,48.4195344499,48.4195344499 -50,0,22.7,38.9,20.5666666667,41.2,22,38.53,20.5,40.4,19.89,48.6266666667,6.19,66.3633333333,20.26,34.09,24.6,42.9475,20,40.4333333333,6.2,755.8,87,3.5,32.5,4.15,25.7352556218,25.7352556218 -60,0,22.7,38.9333333333,20.5,41.26,22.0666666667,38.6633333333,20.5333333333,40.4,19.89,48.7,6.19,66.03,20.29,34.1266666667,24.6,43.1333333333,20,40.56,6.2333333333,755.9,87.3333333333,3.3333333333,30,4.2333333333,1.5541168978,1.5541168978 -60,0,22.7,39,20.39,41.3266666667,22.1,38.79,20.5333333333,40.3266666667,19.89,48.79,6.19,65.8966666667,20.23,34.1266666667,24.5,43.3633333333,20,40.73,6.2666666667,756,87.6666666667,3.1666666667,27.5,4.3166666667,11.1313004745,11.1313004745 -70,0,22.6,39,20.3233333333,41.4666666667,22.1666666667,38.79,20.5,40.2,19.89,48.79,6.2633333333,65.69,20.26,34.1633333333,24.5,43.43,20,40.8633333333,6.3,756.1,88,3,25,4.4,6.4449826838,6.4449826838 -50,0,22.6,39.06,20.26,41.5,22.23,38.8266666667,20.5,40.2,19.89,48.8266666667,6.1566666667,64.9666666667,20.26,34.1633333333,24.4633333333,43.2233333333,20,40.9633333333,6.3333333333,756.1666666667,88,3.3333333333,31.6666666667,4.4333333333,18.558974599,18.558974599 -60,0,22.6,39.1266666667,20.2,41.56,22.29,38.9,20.5,40.2,19.89,48.9,6.03,64.6933333333,20.29,34.2,24.39,42.9633333333,20,41.1633333333,6.3666666667,756.2333333333,88,3.6666666667,38.3333333333,4.4666666667,41.9512448949,41.9512448949 -40,0,22.6,39.2,20.1666666667,41.6266666667,22.29,38.9,20.4266666667,40.0666666667,19.89,49,6,64.8,20.29,34.2,24.3566666667,42.8266666667,20,41.3266666667,6.4,756.3,88,4,45,4.5,43.6312052421,43.6312052421 -50,0,22.5,39.2,20.1,41.76,22.29,38.9,20.39,40,19.89,49,6.06,64.9333333333,20.29,34.2,24.29,42.9666666667,20,41.4666666667,6.4333333333,756.3666666667,88,4.3333333333,51.6666666667,4.5333333333,15.8613589709,15.8613589709 -50,0,22.5,39.26,20.0666666667,41.76,22.29,38.9,20.39,40,19.89,49,6.19,64.73,20.29,34.26,24.26,43.06,20.1,41.6266666667,6.4666666667,756.4333333333,88,4.6666666667,58.3333333333,4.5666666667,0.7110041915,0.7110041915 -60,0,22.39,39.2,19.9175,41.745,22.29,38.9,20.39,39.9666666667,19.89,49,6.19,64.59,20.29,34.29,24.2,43.06,20.1,41.7,6.5,756.5,88,5,65,4.6,45.7502652309,45.7502652309 -60,0,22.39,39.2,19.89,41.7,22.34,38.9,20.39,39.9,19.89,49,6.09,63.9666666667,20.29,34.29,24.2,43.2666666667,20.1,41.8266666667,6.4666666667,756.6333333333,88.1666666667,4.8333333333,64.8333333333,4.6,3.1045900076,3.1045900076 -60,0,22.3566666667,39.2,19.79,41.59,22.39,38.9,20.39,39.9,19.89,49.06,6.09,63.9666666667,20.29,34.2,24.1333333333,43.5266666667,20.1,41.9,6.4333333333,756.7666666667,88.3333333333,4.6666666667,64.6666666667,4.6,42.5139964907,42.5139964907 -50,0,22.29,39.2,19.79,41.59,22.39,38.9,20.39,39.9,19.79,49,6.09,64.0633333333,20.29,34.26,24.0666666667,43.89,20.1,42.03,6.4,756.9,88.5,4.5,64.5,4.6,8.8046851801,8.8046851801 -50,0,22.29,39.2,19.7,41.59,22.39,38.8266666667,20.3233333333,39.8266666667,19.8566666667,49.06,6.1566666667,64.3966666667,20.29,34.29,24,44.2966666667,20.1,42.09,6.3666666667,757.0333333333,88.6666666667,4.3333333333,64.3333333333,4.6,21.1693610414,21.1693610414 -50,0,22.29,39.2,19.7,41.59,22.39,38.8266666667,20.29,39.79,19.79,49,6.245,64.245,20.29,34.29,24,44.5666666667,20.1,42.2,6.3333333333,757.1666666667,88.8333333333,4.1666666667,64.1666666667,4.6,27.408349351,27.408349351 -30,0,22.23,39.1266666667,19.6,41.5,22.4266666667,38.8266666667,20.29,39.79,19.79,49,6.3333333333,63.6633333333,20.29,34.29,24,44.8333333333,20.1,42.2,6.3,757.3,89,4,64,4.6,1.292064134,1.292064134 -30,0,22.2,39.09,19.6,41.56,22.4266666667,38.9,20.29,39.79,19.79,49,6.3333333333,63.0566666667,20.23,34.23,24,45.3,20.1,42.245,6.2666666667,757.3666666667,89,4,64,4.5666666667,41.2896038382,41.2896038382 -20,0,22.1333333333,39.09,19.5,41.59,22.4633333333,38.8633333333,20.29,39.79,19.79,49,6.23,61.8233333333,20.2,34.2,23.9266666667,45.6933333333,20.1,42.4,6.2333333333,757.4333333333,89,4,64,4.5333333333,38.910403254,38.910403254 -30,0,22.1,39.09,19.5,41.59,22.39,38.79,20.29,39.76,19.79,49,6.03,61.23,20.2675,34.2675,23.89,46.1266666667,20.1,42.4,6.2,757.5,89,4,64,4.5,46.4236425352,46.4236425352 -60,0,22.1,39.09,19.39,41.53,22.39,38.8266666667,20.23,39.6266666667,19.79,49,5.7633333333,61.2666666667,20.23,34.23,23.8233333333,46.1266666667,20.1,42.5,6.1666666667,757.5666666667,89,4,64,4.4666666667,20.1989786699,20.1989786699 -60,0,22,39.09,19.39,41.59,22.39,38.9,20.26,39.6633333333,19.79,49,5.6233333333,61.5266666667,20.26,34.2233333333,23.8566666667,46.26,20.1,42.5,6.1333333333,757.6333333333,89,4,64,4.4333333333,44.0040075686,44.0040075686 -60,0,22,39.09,19.39,41.59,22.39,38.8633333333,20.26,39.6633333333,19.79,49,5.4666666667,61.7666666667,20.2,34.1633333333,23.79,46.2,20.1,42.59,6.1,757.7,89,4,64,4.4,12.3707969906,12.3707969906 -60,0,22,39.09,19.3233333333,41.59,22.39,38.8633333333,20.2,39.56,19.79,49,5.3333333333,62.16,20.26,34.1633333333,23.79,46.2,20.1,42.59,5.9,757.7666666667,89.5,3.8333333333,64,4.2833333333,35.7084317366,35.7084317366 -50,0,21.9266666667,39.09,19.26,41.56,22.39,38.9,20.2,39.5,19.79,49,5.1566666667,62.7966666667,20.2,34.09,23.76,46.2,20.1,42.59,5.7,757.8333333333,90,3.6666666667,64,4.1666666667,32.1379630477,32.1379630477 -50,0,21.89,39.09,19.2,41.56,22.39,38.9,20.2,39.5,19.79,49,5.03,62.53,20.2,34.09,23.7,46.26,20.1,42.59,5.5,757.9,90.5,3.5,64,4.05,40.5311449198,40.5311449198 -50,0,21.89,39.09,19.2,41.59,22.39,38.9,20.2,39.5,19.73,49,4.6266666667,62.0933333333,20.2,34.09,23.7,46.4333333333,20.1,42.59,5.3,757.9666666667,91,3.3333333333,64,3.9333333333,37.5267970841,37.5267970841 -50,0,21.8566666667,38.9666666667,19.1333333333,41.6633333333,22.39,38.8266666667,20.2,39.4,19.79,49,4.56,63.1666666667,20.26,34.09,23.7,46.56,20.1,42.6633333333,5.1,758.0333333333,91.5,3.1666666667,64,3.8166666667,15.8430128591,15.8430128591 -50,0,21.79,38.9,19.1,41.73,22.4633333333,38.9666666667,20.2,39.4,19.73,49,4.33,63.03,20.2,34.09,23.6,46.53,20.1,42.7,4.9,758.1,92,3,64,3.7,10.0556719932,10.0556719932 -60,0,21.79,38.9,19.025,41.745,22.4633333333,38.9666666667,20.1333333333,39.4,19.73,49,4.19,63.4966666667,20.2,34.06,23.6,46.6633333333,20.1,42.7,4.8333333333,758.0666666667,91.8333333333,2.8333333333,56.6666666667,3.6,23.1382558006,23.1382558006 -60,0,21.79,38.9,19,41.79,22.4266666667,38.9333333333,20.1333333333,39.4,19.7,48.9,4,63.53,20.2,34,23.6,46.6633333333,20.1666666667,42.7,4.7666666667,758.0333333333,91.6666666667,2.6666666667,49.3333333333,3.5,7.8730346635,7.8730346635 -50,0,21.7,38.9,18.9266666667,41.9,22.5,38.95,20.1,39.29,19.7,48.9,3.9333333333,64.19,20.2,34,23.6,46.59,20.1,42.76,4.7,758,91.5,2.5,42,3.4,34.1959065991,34.1959065991 -50,0,21.7,38.9,18.9266666667,41.9,22.5,39,20.1,39.29,19.7,48.9,3.745,64.14,20.2,34,23.6,46.59,20.1333333333,42.79,4.6333333333,757.9666666667,91.3333333333,2.3333333333,34.6666666667,3.3,2.2739852197,2.2739852197 -50,0,21.7,38.9,18.89,41.9,22.5,38.9,20.1,39.29,19.7,48.9,3.59,64.1933333333,20.2,34,23.6,46.53,20.2,42.8633333333,4.5666666667,757.9333333333,91.1666666667,2.1666666667,27.3333333333,3.2,23.550893052,23.550893052 -50,0,21.7,38.9,18.89,41.9666666667,22.5,38.9666666667,20.1,39.26,19.7,48.9,3.53,64.26,20.2,34,23.5333333333,46.3633333333,20.1,42.9,4.5,757.9,91,2,20,3.1,11.7705248413,11.7705248413 -60,0,21.65,38.79,18.79,41.9,22.5,38.9,20.1,39.2,19.7,48.9,3.3333333333,63.7333333333,20.2,33.9,23.5333333333,46.23,20.1666666667,42.9,4.2666666667,758.05,91.6666666667,2,27,2.9666666667,34.1143747326,34.1143747326 -40,0,21.6,38.79,18.73,41.9,22.5,38.9,20.0666666667,39.1633333333,19.7,48.9,3,62.7933333333,20.2,33.9,23.5,46.0266666667,20.1666666667,43,4.0333333333,758.2,92.3333333333,2,34,2.8333333333,13.9360019355,13.9360019355 -60,0,21.6,38.73,18.7,41.9,22.5,39,20.0666666667,39.1633333333,19.7,48.9,3.03,64.1333333333,20.2,33.9,23.5,45.7666666667,20.125,43.0675,3.8,758.35,93,2,41,2.7,14.0721666743,14.0721666743 -50,0,21.6,38.7,18.7,41.9666666667,22.5,38.9333333333,20,39,19.7,48.9,3.03,64.5933333333,20.2,33.9,23.39,45.5266666667,20.2,43.09,3.5666666667,758.5,93.6666666667,2,48,2.5666666667,24.4295390672,24.4295390672 -50,0,21.5333333333,38.7,18.6,41.9666666667,22.5,38.9333333333,20,39,19.7,48.9,3.09,65.09,20.2,33.9,23.39,45.4666666667,20.1333333333,43.1266666667,3.3333333333,758.65,94.3333333333,2,55,2.4333333333,31.4302944695,31.4302944695 -60,0,21.5,38.7,18.6,41.9666666667,22.5,38.9333333333,20,39,19.6333333333,48.8266666667,3.03,65.03,20.2,33.79,23.39,45.4,20.1333333333,43.2,3.1,758.8,95,2,62,2.3,4.7466661315,4.7466661315 -40,0,21.5,38.7,18.5666666667,42.03,22.5,38.9,20,39,19.6333333333,48.8266666667,2.9666666667,65.2633333333,20.2,33.79,23.39,45.3266666667,20.1333333333,43.2,3.0333333333,758.85,95,2,60.3333333333,2.25,11.566549656,11.566549656 -30,0,21.5,38.7,18.5,42.09,22.5666666667,38.9,20,38.9666666667,19.7,48.9,2.9,65.2633333333,20.1666666667,33.79,23.34,45.2,20.2,43.2,2.9666666667,758.9,95,2,58.6666666667,2.2,25.1208822359,25.1208822359 -20,0,21.5,38.6266666667,18.4633333333,42.1633333333,22.5,38.9,20,38.9,19.7,48.79,2.79,65.3666666667,20.1666666667,33.79,23.29,45.06,20.1,43.29,2.9,758.95,95,2,57,2.15,35.6178690912,35.6178690912 -30,0,21.4633333333,38.59,18.39,42.09,22.5,38.9,19.89,38.9,19.6333333333,48.73,2.73,65.2266666667,20.2,33.79,23.29,44.9333333333,20.1,43.29,2.8333333333,759,95,2,55.3333333333,2.1,43.3633707929,43.3633707929 -50,0,21.39,38.53,18.3566666667,42.2,22.4633333333,38.9,19.89,38.9,19.6,48.7,2.6633333333,65.33,20.2,33.73,23.29,44.8633333333,20.1666666667,43.29,2.7666666667,759.05,95,2,53.6666666667,2.05,39.708958636,39.708958636 -60,0,21.39,38.5,18.29,42.26,22.39,38.9,19.89,38.9,19.6,48.7,2.53,65.0633333333,20.1333333333,33.7,23.29,44.79,20.1666666667,43.29,2.7,759.1,95,2,52,2,45.4348540516,45.4348540516 -60,0,21.39,38.5,18.29,42.3266666667,22.39,38.8266666667,19.89,38.8266666667,19.6,48.59,2.5,65.2266666667,20.1333333333,33.7,23.29,44.6633333333,20.1333333333,43.29,2.6166666667,759.2,95.3333333333,1.8333333333,50.5,1.95,25.2552339109,25.2552339109 -50,0,21.39,38.5,18.245,42.345,22.39,38.8266666667,19.89,38.79,19.6,48.59,2.5,65.4725,20.1,33.7,23.23,44.4633333333,20.1333333333,43.29,2.5333333333,759.3,95.6666666667,1.6666666667,49,1.9,22.365601128,22.365601128 -60,0,21.3233333333,38.5,18.29,42.4,22.39,38.79,19.89,38.79,19.6,48.59,2.5,65.59,20.1,33.7,23.2,44.26,20.1,43.29,2.45,759.4,96,1.5,47.5,1.85,12.9900268978,12.9900268978 -40,0,21.29,38.4666666667,18.2,42.4,22.39,38.79,19.89,38.79,19.6,48.59,2.5,65.6233333333,20.1,33.7,23.2,44.2,20.1,43.29,2.3666666667,759.5,96.3333333333,1.3333333333,46,1.8,18.9950842061,18.9950842061 -60,0,21.29,38.4,18.2,42.4,22.39,38.79,19.815,38.695,19.6,48.5,2.5,65.7633333333,20.1,33.7,23.2,44.09,20.1,43.26,2.2833333333,759.6,96.6666666667,1.1666666667,44.5,1.75,1.5399720287,1.5399720287 -70,0,21.29,38.4,18.2,42.4,22.39,38.79,19.79,38.59,19.6,48.5,2.59,65.9,20.1,33.59,23.2,44.09,20.1,43.2,2.2,759.7,97,1,43,1.7,34.1714163427,34.1714163427 -60,0,21.23,38.4,18.2,42.4666666667,22.39,38.79,19.79,38.59,19.6,48.4666666667,2.59,65.9666666667,20.1,33.59,23.1666666667,44.09,20.2,43.29,2.2,759.7833333333,96.6666666667,1,41.8333333333,1.6666666667,10.05889402,10.05889402 -80,0,21.29,38.895,18.2,42.86,22.29,38.2666666667,19.79,38.59,19.6,48.4,2.7,66.09,20.1,33.59,23.1,44.09,20.2,43.29,2.2,759.8666666667,96.3333333333,1,40.6666666667,1.6333333333,30.7038863073,30.7038863073 -70,0,21.29,39.29,18.2,43.06,22.23,37.9333333333,19.79,38.59,19.6,48.4,2.76,66.23,20.1,33.59,23.1,44,20.2,43.29,2.2,759.95,96,1,39.5,1.6,31.1868138029,31.1868138029 -60,0,21.29,39.23,18.23,43.2666666667,22.2,38,19.79,38.59,19.6,48.3633333333,2.9333333333,66.5,20.1,33.59,23.1,44,20.2,43.195,2.2,760.0333333333,95.6666666667,1,38.3333333333,1.5666666667,16.5168151376,16.5168151376 -50,10,21.29,39.09,18.29,43.3266666667,22.2,37.9333333333,19.79,38.73,19.5333333333,48.29,3.06,66.6266666667,20.1,33.59,23.1,44.03,20.2,42.9633333333,2.2,760.1166666667,95.3333333333,1,37.1666666667,1.5333333333,7.6661424711,7.6661424711 -60,0,21.29,39.1633333333,18.4266666667,43.4,22.2,37.8633333333,19.79,38.8633333333,19.6,48.3266666667,3.3266666667,66.9333333333,20.1,33.59,23.0333333333,44.03,19.93,40.0266666667,2.2,760.2,95,1,36,1.5,11.660446343,11.660446343 -370,0,21.29,39.1333333333,18.5,43.3266666667,22.1333333333,37.79,19.79,39.09,19.6,48.3266666667,3.4666666667,67.06,20.1,33.59,23,43.9333333333,19.8566666667,39.9666666667,2.3666666667,760.2666666667,95.6666666667,1,36.8333333333,1.75,22.7493061917,22.7493061917 -50,0,21.29,38.9333333333,18.6,42.7966666667,22.1,37.7,19.79,39.1633333333,19.6,48.29,3.7666666667,67.3333333333,20.1,33.53,23,44,20.0333333333,39.8333333333,2.5333333333,760.3333333333,96.3333333333,1,37.6666666667,2,43.8846089877,43.8846089877 -60,0,21.29,38.7,18.6666666667,42.53,22.1,37.5666666667,19.79,39.2,19.6,48.29,4.0266666667,67.4666666667,20.1,33.59,23,44.03,20.2266666667,39.6266666667,2.7,760.4,97,1,38.5,2.25,2.4306645384,2.4306645384 -40,0,21.29,38.7,18.8233333333,42.4,22,37.29,19.8566666667,39.26,19.5333333333,48.1633333333,4.3666666667,67.6233333333,20.1,33.59,23,43.9633333333,20.5333333333,39.49,2.8666666667,760.4666666667,97.6666666667,1,39.3333333333,2.5,32.9394109896,32.9394109896 -50,0,21.29,38.7,18.9633333333,42.2666666667,22,37.23,19.89,39.29,19.5333333333,48.03,4.7,67.83,20.1,33.59,23,43.69,20.5333333333,39.1566666667,3.0333333333,760.5333333333,98.3333333333,1,40.1666666667,2.75,29.8561491538,29.8561491538 -60,0,21.29,38.7,19.2633333333,41.93,21.9633333333,37.2,19.89,39.29,19.5,47.9666666667,5.16,68.1233333333,20.1,33.59,23,43.59,20.5,39.09,3.2,760.6,99,1,41,3,20.5597405788,20.5597405788 -110,0,21.29,38.7,19.53,41.5966666667,21.89,37.2,20.0333333333,39.29,19.5,47.8266666667,5.525,68.2975,20.1,33.59,23,43.53,20.5,39.09,3.5166666667,760.65,97.6666666667,1.1666666667,44.5,3.1166666667,33.146166068,33.146166068 -110,0,21.29,38.76,19.9933333333,41.0333333333,21.89,37.23,20.1,39.29,19.7,47.5,5.9933333333,68.5266666667,20.1,33.59,23,43.1633333333,20.5,38.9666666667,3.8333333333,760.7,96.3333333333,1.3333333333,48,3.2333333333,26.2456199154,26.2456199154 -100,0,21.29,38.9333333333,20.4975,40.295,21.89,37.3633333333,20.1333333333,39.29,19.76,45.9666666667,6.6,68.9333333333,20.1,33.59,23,42.9633333333,20.4266666667,38.9,4.15,760.75,95,1.5,51.5,3.35,39.1387764947,39.1387764947 -110,0,21.29,39,20.9966666667,39.7666666667,21.89,37.5,20.2,39.23,19.79,44.96,6.9333333333,69.1266666667,20.1,33.59,23.1,42.7233333333,20.39,38.9333333333,4.4666666667,760.8,93.6666666667,1.6666666667,55,3.4666666667,0.0673147733,0.0673147733 -100,0,21.39,39.09,21.36,39.4666666667,21.89,37.5,20.3233333333,39.26,19.79,44.5,7.3333333333,69.2633333333,20.1,33.59,23.1,42.53,20.39,39,4.7833333333,760.85,92.3333333333,1.8333333333,58.5,3.5833333333,32.6896185172,32.6896185172 -90,0,21.39,39.1633333333,21.5666666667,39.1933333333,21.89,37.5,20.4175,39.2,19.89,44.1333333333,7.4666666667,68.9966666667,20.1,33.6633333333,23.23,42.26,20.39,39.09,5.1,760.9,91,2,62,3.7,9.3917549821,9.3917549821 -380,0,21.39,39.23,21.86,38.8333333333,21.9266666667,37.5,20.5,39.2,19.89,44.06,7.7933333333,68.29,20.1333333333,33.6633333333,23.29,42,20.39,39.1633333333,5.3666666667,760.9333333333,90.5,1.8333333333,62.1666666667,3.8833333333,35.7541188714,35.7541188714 -440,0,21.39,39.3633333333,22.1333333333,38.5666666667,21.9266666667,37.56,20.6,39.09,19.79,44.3,8.26,66.9566666667,20.2,33.6633333333,23.3233333333,41.76,20.39,39.3266666667,5.6333333333,760.9666666667,90,1.6666666667,62.3333333333,4.0666666667,11.2473305664,11.2473305664 -110,0,21.39,39.4,22.36,38.2233333333,22,37.59,20.6666666667,39.1633333333,19.79,44.6933333333,8.7333333333,64.5666666667,20.2,33.7,23.39,41.6266666667,20.39,39.4666666667,5.9,761,89.5,1.5,62.5,4.25,43.2951414841,43.2951414841 -90,0,21.4725,39.57,22.5666666667,37.89,22,37.59,20.7,39.2,19.79,44.9333333333,9.26,64.36,20.2,33.7,23.5,41.59,20.39,39.5,6.1666666667,761.0333333333,89,1.3333333333,62.6666666667,4.4333333333,47.4718697486,47.4718697486 -70,0,21.5,39.7,22.73,37.6333333333,22,37.59,20.7,39.1266666667,19.7225,45.2,9.3666666667,55.03,20.23,33.73,23.5,41.2566666667,20.39,39.745,6.4333333333,761.0666666667,88.5,1.1666666667,62.8333333333,4.6166666667,39.3846007762,39.3846007762 -50,0,21.5333333333,39.79,22.8566666667,37.4333333333,22.0666666667,37.6633333333,20.79,39.09,19.7,45.4666666667,9.5666666667,52.6966666667,20.29,33.79,23.4633333333,40.5266666667,20.4633333333,40.0266666667,6.7,761.1,88,1,63,4.8,19.8578994372,19.8578994372 -40,0,21.6,39.79,22.9266666667,37.1633333333,22.1,37.73,20.8566666667,39.09,19.7,45.6266666667,9.7933333333,52.7966666667,20.29,33.79,23.39,40.3266666667,20.39,40.23,6.9833333333,761.1666666667,86.5,1.1666666667,55.8333333333,4.8333333333,18.1891785585,18.1891785585 -50,0,21.6333333333,39.79,23.0666666667,37.09,22.1,37.73,20.89,39.06,19.7,45.7,10,51.9233333333,20.39,33.7,23.39,40.2,20.39,40.43,7.2666666667,761.2333333333,85,1.3333333333,48.6666666667,4.8666666667,14.870134776,14.870134776 -50,0,21.7,39.79,23.0666666667,36.93,22.1,37.79,20.9633333333,38.9333333333,19.76,45.79,9.9266666667,50.2,20.39,33.7,23.3233333333,40.26,20.39,40.6566666667,7.55,761.3,83.5,1.5,41.5,4.9,36.20146428,36.20146428 -50,0,21.73,39.76,23.0666666667,36.93,22.1666666667,37.79,21,38.8633333333,19.7,45.8633333333,10.1266666667,51.3333333333,20.5333333333,33.76,23.29,40.4,20.39,40.93,7.8333333333,761.3666666667,82,1.6666666667,34.3333333333,4.9333333333,40.97076623,40.97076623 -50,0,21.79,39.7,23.1,36.8333333333,22.2,37.8266666667,21,38.79,19.7,45.9,10.3,45,20.6,33.6266666667,23.29,40.3266666667,20.39,41.1266666667,8.1166666667,761.4333333333,80.5,1.8333333333,27.1666666667,4.9666666667,25.8159158868,25.8159158868 -60,0,21.89,39.7,23.1,36.7,22.2,37.9,21.1,38.76,19.7,45.9,10.4333333333,46.3333333333,20.7,33.59,23.2,40.2,20.4633333333,41.3333333333,8.4,761.5,79,2,20,5,33.115526964,33.115526964 -60,0,21.9633333333,39.6266666667,23.1,36.6633333333,22.2,37.9,21.1,38.7,19.7,46,10.55,42.895,20.76,33.4633333333,23.2,40.2,20.5,41.5,8.6333333333,761.4166666667,78.1666666667,1.8333333333,20.8333333333,5.05,46.4875194128,46.4875194128 -30,0,22.0333333333,39.59,23.1,36.6633333333,22.26,37.9666666667,21.2,38.56,19.7,46,10.66,39.9266666667,20.8233333333,33.29,23.2,40.2,20.5,41.56,8.8666666667,761.3333333333,77.3333333333,1.6666666667,21.6666666667,5.1,25.7983297226,25.7983297226 -40,0,22.1,39.53,23,36.59,22.29,37.9666666667,21.2,38.5,19.7,46.03,10.66,39.6666666667,20.9633333333,33.23,23.1666666667,40.2,20.4266666667,41.53,9.1,761.25,76.5,1.5,22.5,5.15,42.6859545056,42.6859545056 -20,0,22.1333333333,39.4,23.0666666667,36.59,22.29,37.9,21.2,38.4,19.7,46.09,11.0633333333,39.29,21,33.06,23.1,40.2,20.4266666667,41.53,9.3333333333,761.1666666667,75.6666666667,1.3333333333,23.3333333333,5.2,49.6626633103,49.6626633103 -30,0,22.2,39.3266666667,23.05,36.545,22.2,37.9,21.2,38.3266666667,19.7,46.09,11.3233333333,38.0966666667,21.0666666667,33.06,23.1,40.2,20.4266666667,41.53,9.5666666667,761.0833333333,74.8333333333,1.1666666667,24.1666666667,5.25,10.5226693326,10.5226693326 -50,0,22.2,39.29,23.1,36.59,22.2,37.9,21.26,38.26,19.7,46.09,11.6966666667,39.23,21.1,32.9666666667,23.1,40.2,20.4266666667,41.53,9.8,761,74,1,25,5.3,49.0728400531,49.0728400531 -50,0,22.2,39.23,23.1,36.59,22.2,37.9,21.2675,38.1725,19.7,46.2,12.03,37.5633333333,21.1,32.9,23,40,20.4266666667,41.53,9.9666666667,760.95,71.6666666667,1.1666666667,25.6666666667,4.95,9.1099149315,9.1099149315 -60,0,22.23,39.2,23.0666666667,36.5,22.2,37.9,21.23,38.03,19.7,46.2,12.5633333333,34.6966666667,21.1,32.79,23,40,20.5,41.59,10.1333333333,760.9,69.3333333333,1.3333333333,26.3333333333,4.6,38.5272738873,38.5272738873 -50,0,22.29,39.2,23,36.5,22.26,37.9666666667,21.26,37.9666666667,19.7,46.2,12.69,29.6966666667,21.1666666667,32.79,23,39.9666666667,20.5,41.56,10.3,760.85,67,1.5,27,4.25,37.5023554894,37.5023554894 -60,0,22.29,39.1633333333,22.9633333333,36.5,22.29,38,21.26,37.9,19.7,46.2,12.9266666667,26.5633333333,21.29,32.6633333333,23,39.9,20.5,41.5,10.4666666667,760.8,64.6666666667,1.6666666667,27.6666666667,3.9,16.6916851886,16.6916851886 -50,0,22.29,39.0225,22.89,36.5,22.29,38,21.2,37.6633333333,19.7,46.2,12.9266666667,29.1633333333,21.29,32.53,22.9633333333,39.8633333333,20.5,41.5,10.6333333333,760.75,62.3333333333,1.8333333333,28.3333333333,3.55,22.7403193712,22.7403193712 -60,0,22.29,38.9333333333,22.89,36.53,22.29,37.9666666667,21.2,37.53,19.7,46.2,13,29.3633333333,21.26,32.43,22.89,39.79,20.5,41.425,10.8,760.7,60,2,29,3.2,28.7523392239,28.7523392239 -40,0,22.29,38.8633333333,22.89,36.59,22.29,37.9666666667,21.2,37.5,19.7,46.2,13.2,28.03,21.26,32.3633333333,22.89,39.6633333333,20.5,41.4,10.7833333333,760.7,59.5,2.1666666667,30.8333333333,3.0666666667,1.3873185031,1.3873185031 -40,0,22.3566666667,38.79,22.79,36.5,22.29,37.9666666667,21.2,37.5,19.7,46.2,13.63,28.2333333333,21.29,32.3,22.89,39.59,20.5,41.29,10.7666666667,760.7,59,2.3333333333,32.6666666667,2.9333333333,14.6968149347,14.6968149347 -60,0,22.39,38.7,22.73,36.5,22.29,37.9,21.2,37.3633333333,19.7,46.2,13.63,26.9,21.29,32.2,22.89,39.5,20.5,41.29,10.75,760.7,58.5,2.5,34.5,2.8,7.6893500402,7.6893500402 -50,0,22.39,38.6266666667,22.7,36.59,22.29,37.9,21.2,37.23,19.7,46.2,13.5333333333,29.9,21.29,32.2,22.8233333333,39.4333333333,20.5,41.2,10.7333333333,760.7,58,2.6666666667,36.3333333333,2.6666666667,0.8513753302,0.8513753302 -60,0,22.39,38.56,22.6333333333,36.59,22.3566666667,37.9,21.1333333333,37.2,19.7,46.2,13.6,26.0266666667,21.2,32.09,22.79,39.29,20.5,41.2,10.7166666667,760.7,57.5,2.8333333333,38.1666666667,2.5333333333,2.2592093446,2.2592093446 -50,0,22.39,38.5,22.6,36.6266666667,22.39,37.9,21.1333333333,37.2,19.7,46.2,13.4633333333,24.7,21.2,32.09,22.79,39.29,20.4633333333,41.1333333333,10.7,760.7,57,3,40,2.4,21.739472053,21.739472053 -50,0,22.39,38.4666666667,22.5333333333,36.7,22.39,37.9,21.1,37.09,19.7,46.2,13.2725,25.6225,21.2,32.09,22.79,39.29,20.4633333333,41.06,10.7666666667,760.6333333333,56.8333333333,3.1666666667,38.1666666667,2.4166666667,36.0969253001,36.0969253001 -50,0,22.39,38.4,22.3566666667,36.73,22.39,37.8633333333,21.1,37.09,19.7,46.1633333333,12.96,25.2633333333,21.2,32.09,22.79,39.3633333333,20.4633333333,40.9666666667,10.8333333333,760.5666666667,56.6666666667,3.3333333333,36.3333333333,2.4333333333,18.173239415,18.173239415 -50,0,22.39,38.29,22.23,36.73,22.39,37.8633333333,21.1,37.09,19.7,46.09,12.5666666667,28.0333333333,21.1,32.2,22.79,39.4,20.4633333333,40.9,10.9,760.5,56.5,3.5,34.5,2.45,7.9027265194,7.9027265194 -50,0,22.3233333333,38.29,22.1666666667,36.8266666667,22.39,37.8633333333,21.1,37.03,19.76,46.09,12.5,26.7,21.1,32.2,22.7,39.4,20.39,40.79,10.9666666667,760.4333333333,56.3333333333,3.6666666667,32.6666666667,2.4666666667,29.7593612573,29.7593612573 -40,0,22.3566666667,38.29,22.1,36.9,22.39,37.79,21,36.9,19.7,46.09,12.5333333333,29.43,21.1,32.2,22.7,39.4,20.39,40.8633333333,11.0333333333,760.3666666667,56.1666666667,3.8333333333,30.8333333333,2.4833333333,43.1290303008,43.1290303008 -60,0,22.29,38.29,21.9633333333,36.9333333333,22.39,37.8633333333,21,36.9,19.7,46.06,12.6,31.2233333333,21.1,32.2,22.7,39.29,20.39,40.9,11.1,760.3,56,4,29,2.5,34.8652889952,34.8652889952 -50,0,22.29,38.29,21.865,37,22.39,37.79,21,36.9,19.7,46,12.6,30.9633333333,21.0333333333,32.1266666667,22.7,39.29,20.4633333333,40.9666666667,11,760.25,56.5,3.8333333333,30.8333333333,2.55,4.1793186567,4.1793186567 -50,0,22.29,38.29,21.73,37.06,22.39,37.79,21,36.9,19.7,46,12.5333333333,29.49,21.0333333333,32.1266666667,22.6666666667,39.26,20.4266666667,41.0666666667,10.9,760.2,57,3.6666666667,32.6666666667,2.6,43.3001311496,43.3001311496 -50,0,22.29,38.26,21.6,37.2,22.4633333333,37.76,20.9266666667,36.9,19.7,46,12.36,31.2666666667,21,32.09,22.6,39.26,20.4266666667,41.1266666667,10.8,760.15,57.5,3.5,34.5,2.65,9.3741529156,9.3741529156 -40,0,22.29,38.2,21.5333333333,37.26,22.39,37.7,20.89,36.9,19.7,46,12.3,30.9333333333,21,32.09,22.6,39.2,20.39,41.09,10.7,760.1,58,3.3333333333,36.3333333333,2.7,9.6444184193,9.6444184193 -20,0,22.29,38.2,21.4633333333,37.4,22.39,37.6633333333,20.89,36.9,19.7,45.9333333333,12.33,30.6333333333,21,32.09,22.6,39.2,20.39,40.9633333333,10.6,760.05,58.5,3.1666666667,38.1666666667,2.75,5.4815810872,5.4815810872 -20,0,22.29,38.2,21.39,37.4666666667,22.39,37.59,20.89,36.9,19.7,45.9,12.39,32.9666666667,20.9266666667,32.09,22.5666666667,39.29,20.4266666667,40.76,10.5,760,59,3,40,2.8,25.0228582532,25.0228582532 -30,0,22.245,38.145,21.29,37.6266666667,22.39,37.59,20.89,36.9,19.7,45.9,12.4333333333,33.0266666667,20.89,32.09,22.5666666667,39.29,20.4725,40.3975,10.4666666667,759.9666666667,59.3333333333,2.8333333333,40,2.8333333333,44.6264249738,44.6264249738 -50,0,22.2,38.2,21.23,37.7,22.39,37.59,20.89,36.79,19.7,45.9,12.1666666667,31.56,20.89,32.1633333333,22.5,39.29,20.39,39.9633333333,10.4333333333,759.9333333333,59.6666666667,2.6666666667,40,2.8666666667,32.8717366094,32.8717366094 -60,0,22.2,38.2,21.1,37.8266666667,22.29,37.53,20.8233333333,36.73,19.7,45.9,11.9633333333,34.0966666667,20.89,32.2,22.5,39.29,20.39,39.6333333333,10.4,759.9,60,2.5,40,2.9,23.1568018207,23.1568018207 -60,0,22.2,38.2,21.0333333333,37.9,22.29,37.59,20.79,36.7,19.6333333333,45.8266666667,11.83,33.8966666667,20.84,32.2225,22.5,39.29,20.39,39.5,10.3666666667,759.8666666667,60.3333333333,2.3333333333,40,2.9333333333,17.3133665579,17.3133665579 -50,0,22.2,38.2,20.9633333333,38.03,22.29,37.59,20.79,36.7,19.7,45.79,11.66,35.1,20.89,32.29,22.5,39.29,20.39,39.43,10.3333333333,759.8333333333,60.6666666667,2.1666666667,40,2.9666666667,28.9230147377,28.9230147377 -50,0,22.1333333333,38.2,20.89,38.1633333333,22.29,37.59,20.79,36.7,19.7,45.79,11.5333333333,35.6933333333,20.79,32.23,22.4633333333,39.26,20.39,39.23,10.3,759.8,61,2,40,3,6.5253199311,6.5253199311 -50,0,22.1333333333,38.2,20.79,38.23,22.3233333333,37.59,20.79,36.76,19.7,45.79,11.3233333333,36.6,20.79,32.29,22.39,39.2,20.39,38.9666666667,10.25,759.7666666667,61.6666666667,1.8333333333,40,3.1,12.7972404705,12.7972404705 -40,0,22.1,38.1633333333,20.73,38.29,22.39,37.59,20.79,36.79,19.7,45.79,11.1425,37.3975,20.79,32.3266666667,22.39,39.2,20.39,38.8266666667,10.2,759.7333333333,62.3333333333,1.6666666667,40,3.2,15.7074087299,15.7074087299 -50,0,22.1,38.1633333333,20.6666666667,38.4,22.39,37.59,20.79,36.79,19.6666666667,45.76,10.9266666667,38.0633333333,20.79,32.4,22.39,39.2,20.3566666667,38.59,10.15,759.7,63,1.5,40,3.3,8.4282809752,8.4282809752 -50,0,22.1,38.2,20.6,38.4666666667,22.39,37.59,20.7,36.9333333333,19.6,45.7,10.7333333333,39.4,20.76,32.4333333333,22.39,39.2,20.29,38.53,10.1,759.6666666667,63.6666666667,1.3333333333,40,3.4,16.4638062939,16.4638062939 -50,0,22.0333333333,38.1266666667,20.5,38.6266666667,22.29,37.59,20.7,37.06,19.6,45.6633333333,10.5333333333,40.7933333333,20.7,32.5,22.315,39.2675,20.29,38.4,10.05,759.6333333333,64.3333333333,1.1666666667,40,3.5,11.9926498854,11.9926498854 -60,0,22,38.09,20.5,38.76,22.29,37.59,20.7,37.23,19.6,45.59,10.36,41.6333333333,20.7,32.59,22.29,39.29,20.29,38.3266666667,10,759.6,65,1,40,3.6,21.3495076401,21.3495076401 -50,0,22,38.09,20.4633333333,38.9,22.3566666667,37.53,20.7,37.29,19.6,45.59,10.2266666667,41.9,20.7,32.59,22.29,39.29,20.29,38.26,9.8833333333,759.6,66,1,40,3.7,33.3402371267,33.3402371267 -60,0,22,38.09,20.3233333333,38.9666666667,22.29,37.53,20.7,37.4,19.6,45.59,10.0666666667,42.2,20.7,32.59,22.29,39.29,20.29,38.2,9.7666666667,759.6,67,1,40,3.8,12.4025666504,12.4025666504 -50,0,22,38.09,20.29,39.145,22.39,37.5,20.7,37.4666666667,19.6,45.59,9.9266666667,42.6666666667,20.7,32.6633333333,22.29,39.29,20.29,38.1633333333,9.65,759.6,68,1,40,3.9,16.8973629712,16.8973629712 -40,0,22,38.09,20.2,39.1266666667,22.39,37.5,20.7,37.545,19.6,45.59,9.7633333333,43.5333333333,20.7,32.7,22.29,39.29,20.29,38.09,9.5333333333,759.6,69,1,40,4,12.6562197343,12.6562197343 -50,0,22,38.09,20.2,39.3333333333,22.39,37.4333333333,20.6,37.53,19.6,45.6266666667,9.63,44.5333333333,20.6333333333,32.7,22.2,39.2,20.26,37.9666666667,9.4166666667,759.6,70,1,40,4.1,34.8540519481,34.8540519481 -40,0,21.89,38.09,20.1,39.5,22.39,37.4,20.6,37.59,19.6,45.6266666667,9.5,44.9666666667,20.6,32.7,22.2,39.2,20.26,37.9666666667,9.3,759.6,71,1,40,4.2,27.3475670139,27.3475670139 -50,0,21.89,38.09,20.0333333333,39.5,22.39,37.4,20.6,37.6266666667,19.6,45.6633333333,9.4266666667,44.2266666667,20.6,32.7,22.2,39.29,20.23,37.9,9.2833333333,759.65,71,1,40,4.2,0.5397462402,0.5397462402 -50,0,21.89,38.2,20,39.6266666667,22.29,37.4,20.6,37.7,19.5333333333,45.59,9.36,44.4666666667,20.6,32.73,22.2,39.29,20.2225,37.8175,9.2666666667,759.7,71,1,40,4.2,21.5064228978,21.5064228978 -30,0,21.89,38.2,19.9266666667,39.7,22.29,37.4,20.6,37.7,19.6,45.59,9.2266666667,45.86,20.6,32.79,22.2,39.29,20.2,37.79,9.25,759.75,71,1,40,4.2,40.2517470298,40.2517470298 -30,0,21.8233333333,38.2,19.89,39.8266666667,22.29,37.3633333333,20.6,37.7,19.5666666667,45.59,9.0666666667,46.5,20.5666666667,32.8266666667,22.1333333333,39.29,20.2,37.79,9.2333333333,759.8,71,1,40,4.2,1.9795584842,1.9795584842 -30,0,21.79,38.2,19.89,39.9666666667,22.29,37.3633333333,20.6,37.79,19.5666666667,45.59,9,47.5,20.5,32.9,22.1666666667,39.29,20.2,37.79,9.2166666667,759.85,71,1,40,4.2,13.1456371048,13.1456371048 -40,0,21.79,38.2,19.79,40.03,22.29,37.29,20.5333333333,37.79,19.5333333333,45.59,8.9633333333,49.1966666667,20.5,32.9,22.1,39.29,20.2,37.79,9.2,759.9,71,1,40,4.2,46.1644894443,46.1644894443 -60,0,21.79,38.23,19.79,40.1633333333,22.29,37.3633333333,20.5,37.79,19.5333333333,45.59,8.8675,50.1725,20.5,32.9333333333,22.1,39.29,20.2,37.79,9.1333333333,759.8666666667,71.3333333333,1,40,4.1833333333,16.9259835035,16.9259835035 -50,0,21.79,38.29,19.76,40.23,22.2,37.29,20.5,37.8633333333,19.5,45.59,8.8,50.8333333333,20.5,33.06,22.1,39.3633333333,20.2,37.79,9.0666666667,759.8333333333,71.6666666667,1,40,4.1666666667,23.8075519446,23.8075519446 -40,0,21.76,38.29,19.7,40.3633333333,22.2,37.29,20.5,37.9,19.5,45.59,8.69,51.1266666667,20.5,33.09,22.1,39.4,20.1333333333,37.79,9,759.8,72,1,40,4.15,6.7573876586,6.7573876586 -60,0,21.7,38.29,19.7,40.53,22.2,37.29,20.5,37.9,19.5,45.59,8.69,51.5333333333,20.5,33.09,22.1,39.4,20.2,37.79,8.9333333333,759.7666666667,72.3333333333,1,40,4.1333333333,35.6734498055,35.6734498055 -50,0,21.7,38.4,19.6333333333,40.53,22.2,37.29,20.4633333333,37.9,19.5,45.59,8.6,51.93,20.39,33.09,22.1,39.4,20.2,37.79,8.8666666667,759.7333333333,72.6666666667,1,40,4.1166666667,33.6990013719,33.6990013719 -50,0,21.7,38.4,19.6,40.6266666667,22.2,37.29,20.4633333333,37.9,19.5,45.59,8.6,52.0633333333,20.4633333333,33.1633333333,22.1,39.4,20.1,37.79,8.8,759.7,73,1,40,4.1,14.2343032407,14.2343032407 -60,0,21.7,38.4333333333,19.5333333333,40.76,22.2,37.29,20.39,37.9,19.5,45.59,8.5,52.8666666667,20.5,33.23,22,39.4,20.1,37.79,8.7,759.6833333333,74.1666666667,1,37.6666666667,4.25,39.1513202223,39.1513202223 -40,0,21.7,38.5,19.5,40.8266666667,22.23,37.3266666667,20.39,37.9,19.5,45.59,8.4266666667,53.26,20.4266666667,33.23,22,39.4,20.1,37.79,8.6,759.6666666667,75.3333333333,1,35.3333333333,4.4,12.6703706919,12.6703706919 -50,0,21.7,38.5,19.5,40.9666666667,22.29,37.4,20.39,37.9333333333,19.5,45.59,8.39,53.6266666667,20.39,33.29,22,39.4,20.1,37.79,8.5,759.65,76.5,1,33,4.55,23.3542721719,23.3542721719 -50,0,21.7,38.56,19.5,41.145,22.23,37.3266666667,20.39,38,19.5,45.59,8.39,53.76,20.39,33.29,22,39.5,20.1,37.79,8.4,759.6333333333,77.6666666667,1,30.6666666667,4.7,26.2482844875,26.2482844875 -50,0,21.6,38.5,19.39,41.2,22.2225,37.3175,20.39,38,19.5,45.59,8.36,53.8333333333,20.39,33.29,22,39.5,20.1,37.79,8.3,759.6166666667,78.8333333333,1,28.3333333333,4.85,6.3244902645,6.3244902645 -40,0,21.6,38.56,19.39,41.2,22.2,37.29,20.39,38,19.5,45.59,8.3,53.7,20.39,33.29,21.9633333333,39.5,20.1,37.9,8.2,759.6,80,1,26,5,48.3625825844,48.3625825844 -60,0,21.6,38.59,19.39,41.29,22.2,37.29,20.39,38,19.5,45.59,8.3,53.76,20.39,33.3266666667,21.9633333333,39.5,20.1,37.8266666667,8.25,759.6,79.5,1.1666666667,28.3333333333,4.9333333333,31.6447605612,31.6447605612 -50,0,21.6,38.59,19.3233333333,41.3633333333,22.2,37.29,20.3233333333,38.09,19.5,45.59,8.3,53.5,20.39,33.4,21.89,39.5,20.1,37.79,8.3,759.6,79,1.3333333333,30.6666666667,4.8666666667,31.3614857849,31.3614857849 -60,0,21.6,38.59,19.29,41.4333333333,22.2,37.29,20.39,38.09,19.5,45.6633333333,8.39,52.8266666667,20.39,33.4,21.89,39.5,20.05,37.79,8.35,759.6,78.5,1.5,33,4.8,11.4535478293,11.4535478293 -50,0,21.6,38.59,19.29,41.5,22.2,37.29,20.39,38.09,19.5,45.59,8.33,52.7666666667,20.39,33.4,21.89,39.5,20.0333333333,37.79,8.4,759.6,78,1.6666666667,35.3333333333,4.7333333333,45.0108131394,45.0108131394 -40,0,21.5333333333,38.59,19.29,41.53,22.2,37.29,20.39,38.09,19.5,45.59,8.2633333333,52.59,20.3566666667,33.4,21.89,39.5,20,37.79,8.45,759.6,77.5,1.8333333333,37.6666666667,4.6666666667,1.523878111,1.523878111 -50,0,21.5,38.6266666667,19.23,41.53,22.2,37.29,20.29,38.09,19.5,45.6633333333,8.19,52.6633333333,20.29,33.45,21.89,39.5,20,37.73,8.5,759.6,77,2,40,4.6,8.4296682617,8.4296682617 -30,0,21.5,38.7,19.2,41.59,22.2,37.29,20.29,38.09,19.5,45.6266666667,8.19,52.645,20.29,33.4666666667,21.89,39.5,20,37.79,8.4166666667,759.5666666667,77.5,2.1666666667,38.1666666667,4.6166666667,28.3286402933,28.3286402933 -20,0,21.5,38.7,19.2,41.6633333333,22.2,37.29,20.29,38.09,19.5,45.7,8.16,52.8,20.29,33.5,21.8566666667,39.5,20,37.73,8.3333333333,759.5333333333,78,2.3333333333,36.3333333333,4.6333333333,11.1796777463,11.1796777463 -40,0,21.5,38.7,19.2,41.73,22.2,37.29,20.29,38.09,19.5,45.6266666667,8.1,53.1933333333,20.29,33.5,21.79,39.5,20,37.7,8.25,759.5,78.5,2.5,34.5,4.65,25.8951175027,25.8951175027 -40,0,21.5,38.7,19.2,41.79,22.1333333333,37.29,20.29,38.09,19.4266666667,45.5666666667,8.1,53.4,20.29,33.5,21.79,39.5,20,37.7,8.1666666667,759.4666666667,79,2.6666666667,32.6666666667,4.6666666667,11.8312118691,11.8312118691 -70,0,21.5,38.76,19.1333333333,41.79,22.1,37.29,20.29,38.09,19.4266666667,45.59,8.1,53.4,20.29,33.5,21.79,39.5,20,37.7,8.0833333333,759.4333333333,79.5,2.8333333333,30.8333333333,4.6833333333,29.8844417674,29.8844417674 -50,0,21.39,38.7,19.1333333333,41.8633333333,22.1,37.29,20.2,38.06,19.4266666667,45.53,8,53.5,20.29,33.59,21.79,39.5,19.9266666667,37.7,8,759.4,80,3,29,4.7,48.3126343228,48.3126343228 -50,0,21.39,38.7,19.1,41.9,22.1,37.29,20.2,38.06,19.39,45.56,8,53.56,20.29,33.59,21.79,39.5,19.89,37.7,7.9833333333,759.35,79.8333333333,2.8333333333,30.8333333333,4.65,26.6043854412,26.6043854412 -40,0,21.39,38.73,19.1,41.9666666667,22.1,37.29,20.23,38.09,19.39,45.5,7.9,53.3633333333,20.29,33.59,21.79,39.5,19.9633333333,37.7,7.9666666667,759.3,79.6666666667,2.6666666667,32.6666666667,4.6,15.4674545862,15.4674545862 -50,0,21.39,38.79,19.0666666667,42.06,22.1,37.3266666667,20.29,38.09,19.39,45.5,7.9,53.3633333333,20.29,33.59,21.73,39.5,20,37.7,7.95,759.25,79.5,2.5,34.5,4.55,24.6812072,24.6812072 -50,0,21.39,38.79,19,42,22.1,37.3266666667,20.2,38.09,19.39,45.5,7.8666666667,53.5666666667,20.26,33.56,21.79,39.5,19.9266666667,37.7,7.9333333333,759.2,79.3333333333,2.3333333333,36.3333333333,4.5,11.0024316702,11.0024316702 -40,0,21.39,38.79,19,42,22.1,37.29,20.2,38.09,19.39,45.5,7.8,53.76,20.2,33.5,21.76,39.5,19.89,37.7,7.9166666667,759.15,79.1666666667,2.1666666667,38.1666666667,4.45,8.782819449,8.782819449 -60,0,21.39,38.79,19,42.03,22.1,37.3175,20.2,38.09,19.39,45.5,7.8,54.1333333333,20.2,33.5,21.7,39.5,19.9633333333,37.7,7.9,759.1,79,2,40,4.4,20.641059312,20.641059312 -50,0,21.39,38.8633333333,19,42.09,22.1,37.3266666667,20.2,38.09,19.39,45.5,7.7266666667,54.4,20.2,33.5,21.7,39.5,19.89,37.7,7.8166666667,759.05,79.6666666667,2,40,4.4333333333,9.2003573896,9.2003573896 -70,0,21.29,38.9,19,42.2,22.1,37.4,20.2,38.09,19.39,45.5,7.69,54.7666666667,20.2,33.59,21.7,39.5,19.89,37.7,7.7333333333,759,80.3333333333,2,40,4.4666666667,24.6531144483,24.6531144483 -50,0,21.29,38.9,18.9266666667,42.2,22.1,37.3266666667,20.2,38.09,19.39,45.5,7.69,55.0266666667,20.2,33.59,21.7,39.5,19.89,37.7,7.65,758.95,81,2,40,4.5,43.7281689607,43.7281689607 -50,0,21.29,38.9,18.89,42.29,22.1,37.29,20.2,38.09,19.39,45.5,7.6566666667,55.3333333333,20.2,33.59,21.7,39.5,19.89,37.7,7.5666666667,758.9,81.6666666667,2,40,4.5333333333,36.641188839,36.641188839 -50,0,21.29,38.9,18.89,42.3633333333,22.1,37.29,20.1666666667,38.09,19.39,45.4666666667,7.59,55.3333333333,20.2,33.59,21.6333333333,39.5,19.89,37.7,7.4833333333,758.85,82.3333333333,2,40,4.5666666667,40.0279891095,40.0279891095 -50,0,21.29,38.95,18.89,42.4,22.1,37.29,20.1,38.09,19.39,45.45,7.59,55.545,20.2,33.59,21.6333333333,39.5,19.89,37.7,7.4,758.8,83,2,40,4.6,45.0058984687,45.0058984687 -40,0,21.29,39,18.89,42.4,22.1,37.29,20.1,38.09,19.39,45.4,7.5,55.6266666667,20.2,33.59,21.6,39.5,19.8233333333,37.6266666667,7.35,758.8,83.1666666667,2,37.5,4.6,26.002289413,26.002289413 -50,0,21.29,39,18.89,42.5,22.0333333333,37.23,20.1,38.09,19.39,45.4666666667,7.5,55.76,20.2,33.645,21.6,39.5,19.8566666667,37.7,7.3,758.8,83.3333333333,2,35,4.6,11.3751284662,11.3751284662 -60,0,21.2,38.9,18.8233333333,42.4333333333,22.0333333333,37.23,20.1,38.1266666667,19.39,45.4,7.5,55.9333333333,20.2,33.7,21.6,39.5,19.79,37.7,7.25,758.8,83.5,2,32.5,4.6,49.679206463,49.679206463 -40,0,21.2,38.9,18.79,42.4333333333,22.0666666667,37.26,20.1,38.2,19.39,45.4,7.4333333333,56,20.2,33.7,21.6,39.5,19.79,37.59,7.2,758.8,83.6666666667,2,30,4.6,13.9564822079,13.9564822079 -40,0,21.2,38.9,18.79,42.5,22,37.2,20.1,38.2,19.39,45.4,7.4,56.1566666667,20.1666666667,33.7,21.6,39.5,19.79,37.6633333333,7.15,758.8,83.8333333333,2,27.5,4.6,36.0184060526,36.0184060526 -30,0,21.2,38.9,18.79,42.5,22.0333333333,37.2,20.1,38.2,19.3566666667,45.4,7.4,56.3633333333,20.1,33.7,21.6,39.5,19.79,37.59,7.1,758.8,84,2,25,4.6,42.5056233653,42.5056233653 -30,0,21.2,38.9,18.79,42.56,22.0333333333,37.2,20.1,38.2,19.29,45.4,7.3,56.89,20.1,33.7,21.6,39.5,19.79,37.59,7.0666666667,758.7333333333,84.5,1.8333333333,24.3333333333,4.6333333333,45.1146070147,45.1146070147 -50,0,21.2,38.9,18.7,42.59,22,37.2,20.1,38.2,19.39,45.4,7.3,57.2233333333,20.1,33.7,21.5333333333,39.5,19.79,37.59,7.0333333333,758.6666666667,85,1.6666666667,23.6666666667,4.6666666667,34.0980280773,34.0980280773 -40,0,21.2,39,18.7,42.59,21.9266666667,37.2,20.0666666667,38.1633333333,19.39,45.4,7.3,57.4633333333,20.1,33.7,21.5,39.5,19.79,37.59,7,758.6,85.5,1.5,23,4.7,49.8135086615,49.8135086615 -50,0,21.2,39,18.7,42.59,21.8566666667,37.2,20,38.09,19.3233333333,45.4,7.2266666667,57.59,20.1,33.7,21.5666666667,39.5,19.79,37.7,6.9666666667,758.5333333333,86,1.3333333333,22.3333333333,4.7333333333,1.2743137195,1.2743137195 -60,0,21.2,39,18.7,42.6633333333,21.79,37.2,20,38.09,19.39,45.4,7.19,57.79,20.1,33.7,21.5,39.5,19.79,37.7,6.9333333333,758.4666666667,86.5,1.1666666667,21.6666666667,4.7666666667,23.3731954591,23.3731954591 -50,0,21.2,38.9333333333,18.7,42.7,21.79,37.2,20,38.09,19.3566666667,45.4,7.19,57.8633333333,20.1,33.7,21.5,39.5,19.79,37.6266666667,6.9,758.4,87,1,21,4.8,28.1304572825,28.1304572825 -60,0,21.2,38.9333333333,18.6,42.53,21.79,37.2,20,38.09,19.3566666667,45.4,7.19,58.0666666667,20.1,33.73,21.5,39.5,19.79,37.7,6.85,758.3666666667,87.1666666667,1,20.8333333333,4.8,22.3065357888,22.3065357888 -50,0,21.2,39,18.6,42.59,21.79,37.2,20,38.2,19.3233333333,45.4,7.19,58.2,20.1,33.73,21.5,39.5,19.7,37.7,6.8,758.3333333333,87.3333333333,1,20.6666666667,4.8,11.4816025482,11.4816025482 -50,0,21.1666666667,39,18.6,42.59,21.7,37.2,20,38.1266666667,19.3233333333,45.4,7.09,58.4333333333,20.1,33.79,21.4266666667,39.5,19.76,37.7,6.75,758.3,87.5,1,20.5,4.8,8.487970836,8.487970836 -50,0,21.1,39,18.6,42.6633333333,21.7,37.2,20,38.1266666667,19.29,45.4,7.09,58.56,20.1,33.79,21.5,39.53,19.73,37.7,6.7,758.2666666667,87.6666666667,1,20.3333333333,4.8,39.4350104616,39.4350104616 -40,0,21.1,39,18.6,42.7,21.7,37.2,20,38.1266666667,19.29,45.3266666667,7.09,58.73,20.1,33.79,21.5,39.53,19.7675,37.7,6.65,758.2333333333,87.8333333333,1,20.1666666667,4.8,14.8208868224,14.8208868224 -50,0,21.1,39,18.6,42.7,21.7,37.2,20,38.1633333333,19.29,45.4,7.0675,58.9475,20.1,33.79,21.39,39.5,19.76,37.7,6.6,758.2,88,1,20,4.8,7.9211583245,7.9211583245 -50,0,21.1,39,18.6,42.7,21.7,37.3266666667,20,38.1633333333,19.29,45.4,7.06,59.1333333333,20.0333333333,33.8266666667,21.39,39.5,19.7,37.7,6.6333333333,758.1833333333,87.8333333333,1,20,4.7833333333,44.2539663753,44.2539663753 -50,0,21.1,39,18.6,42.7,21.7,37.4,19.89,38.2,19.29,45.4,7.09,59.39,20.1,33.8266666667,21.39,39.5,19.7,37.7,6.6666666667,758.1666666667,87.6666666667,1,20,4.7666666667,18.8418956008,18.8418956008 -50,0,21.0333333333,39,18.5,42.8266666667,21.73,37.4,19.89,38.2,19.29,45.29,7.03,59.53,20.05,33.845,21.39,39.5,19.7,37.7,6.7,758.15,87.5,1,20,4.75,5.657895084,5.657895084 -60,0,21.1,39,18.5,42.9,21.79,37.4,19.89,38.2,19.29,45.29,7.09,59.7666666667,20,33.79,21.39,39.5,19.7,37.7,6.7333333333,758.1333333333,87.3333333333,1,20,4.7333333333,19.5814266568,19.5814266568 -50,0,21.1,39.06,18.5,42.9333333333,21.79,37.4,19.89,38.2,19.29,45.29,7.09,60.0266666667,20,33.79,21.39,39.5,19.7,37.7,6.7666666667,758.1166666667,87.1666666667,1,20,4.7166666667,6.9384980365,6.9384980365 -50,0,21,39,18.5,43.06,21.79,37.4,19.89,38.2,19.29,45.29,7.19,60.1633333333,20,33.79,21.39,39.56,19.7,37.7,6.8,758.1,87,1,20,4.7,30.3992504487,30.3992504487 -40,0,21.0666666667,39.06,18.5,43.03,21.79,37.4,19.89,38.2,19.29,45.29,7.2633333333,60.2233333333,20,33.8633333333,21.39,39.56,19.7,37.7,6.8,758.0666666667,87.1666666667,1,27.5,4.75,37.5988546526,37.5988546526 -20,0,21,39.09,18.5,43.09,21.79,37.4,19.89,38.2,19.29,45.29,7.4333333333,60.4333333333,20,33.9,21.29,39.59,19.7,37.76,6.8,758.0333333333,87.3333333333,1,35,4.8,44.1019859514,44.1019859514 -30,0,21,39.09,18.5,43.1266666667,21.8233333333,37.4333333333,19.89,38.2,19.29,45.29,7.56,60.5,20,33.9,21.29,39.59,19.7,37.79,6.8,758,87.5,1,42.5,4.85,42.8190077306,42.8190077306 -30,0,21,39.09,18.5,43.1266666667,21.8233333333,37.4333333333,19.89,38.29,19.29,45.23,7.7266666667,60.2966666667,20,33.9,21.29,39.59,19.7,37.79,6.8,757.9666666667,87.6666666667,1,50,4.9,24.1120866383,24.1120866383 -50,0,21,39.1633333333,18.5,43.1633333333,21.79,37.4,19.89,38.29,19.29,45.2,7.8666666667,59.4966666667,20,33.9,21.29,39.59,19.6666666667,37.76,6.8,757.9333333333,87.8333333333,1,57.5,4.95,19.0447171801,19.0447171801 -60,0,21,39.2,18.5,43.1633333333,21.79,37.4,19.89,38.29,19.29,45.2,8.0333333333,59.0333333333,20,33.9,21.29,39.59,19.6,37.7,6.8,757.9,88,1,65,5,5.4976192536,5.4976192536 -50,0,21,39.2,18.5,43.09,21.79,37.4,19.84,38.245,19.29,45.2,8.2333333333,58.8333333333,20,33.9,21.29,39.59,19.7,37.79,6.85,757.9,87.5,1,64.8333333333,4.9666666667,44.2429710412,44.2429710412 -50,0,21,39.2,18.6,43.09,21.79,37.4,19.89,38.29,19.29,45.2,8.5333333333,58.1,20,33.9,21.29,39.7,19.7,37.8633333333,6.9,757.9,87,1,64.6666666667,4.9333333333,0.997744815,0.997744815 -60,0,21,39.26,18.6,43.09,21.79,37.4,19.79,38.29,19.29,45.2,8.66,56.1666666667,20,33.9,21.29,39.7,19.6333333333,37.8266666667,6.95,757.9,86.5,1,64.5,4.9,42.0732113183,42.0732113183 -40,0,21,39.29,18.6,43.09,21.79,37.4,19.79,38.29,19.29,45.2,8.8666666667,54.7966666667,20,33.9,21.23,39.6266666667,19.6333333333,37.8266666667,7,757.9,86,1,64.3333333333,4.8666666667,13.0717905122,13.0717905122 -50,0,21,39.29,18.6,43.03,21.79,37.4,19.8566666667,38.3633333333,19.29,45.2,9.025,52.495,20,33.9666666667,21.2,39.59,19.6,37.79,7.05,757.9,85.5,1,64.1666666667,4.8333333333,36.7823824752,36.7823824752 -50,0,21,39.3266666667,18.6333333333,43,21.79,37.4,19.79,38.29,19.29,45.2,9.2333333333,50.9233333333,19.9633333333,33.9,21.2,39.59,19.6,37.79,7.1,757.9,85,1,64,4.8,48.4523865161,48.4523865161 -50,0,20.9266666667,39.4,18.7,43,21.79,37.4,19.79,38.29,19.29,45.1633333333,9.6,48.96,19.9633333333,33.9,21.2,39.59,19.6,37.79,7.2,757.9166666667,84.5,1.1666666667,64,4.7833333333,39.6335133351,39.6335133351 -50,0,20.9633333333,39.4,18.73,42.9,21.79,37.4333333333,19.79,38.29,19.29,45.09,10,47.5,20,33.9,21.2,39.59,19.6333333333,37.8266666667,7.3,757.9333333333,84,1.3333333333,64,4.7666666667,5.9498870396,5.9498870396 -60,0,20.89,39.4,18.79,42.8266666667,21.79,37.4333333333,19.79,38.29,19.29,45.09,10.3,43.7266666667,20,33.9,21.2,39.59,19.6333333333,37.8266666667,7.4,757.95,83.5,1.5,64,4.75,7.9013758572,7.9013758572 -50,0,20.89,39.4,18.79,42.76,21.79,37.4,19.79,38.3633333333,19.29,45.09,10.4333333333,41.5266666667,19.945,33.9,21.2,39.59,19.6,37.79,7.5,757.9666666667,83,1.6666666667,64,4.7333333333,7.9984100885,7.9984100885 -50,0,20.89,39.4,18.79,42.7,21.79,37.4,19.79,38.4,19.29,45.09,10.5666666667,37.9933333333,19.89,33.9,21.2,39.59,19.6,37.73,7.6,757.9833333333,82.5,1.8333333333,64,4.7166666667,40.1336449548,40.1336449548 -50,0,20.89,39.4,18.8233333333,42.59,21.79,37.4,19.79,38.3266666667,19.29,45.09,10.5666666667,36.2666666667,19.9633333333,33.9,21.2,39.59,19.6,37.7,7.7,758,82,2,64,4.7,17.9047483252,17.9047483252 -40,0,20.89,39.4,18.89,42.59,21.79,37.4,19.79,38.3633333333,19.29,45.09,10.5633333333,34.9,20,33.9,21.2,39.59,19.6,37.7,7.7666666667,758.0166666667,81.6666666667,2,64.1666666667,4.7333333333,1.8949779682,1.8949779682 -50,0,20.89,39.4,18.89,42.5,21.79,37.4,19.79,38.3633333333,19.29,45.06,10.8233333333,33.3666666667,20,33.9,21.2,39.53,19.6,37.7,7.8333333333,758.0333333333,81.3333333333,2,64.3333333333,4.7666666667,16.1174323061,16.1174323061 -40,0,20.89,39.4,18.9633333333,42.4333333333,21.79,37.3266666667,19.79,38.29,19.29,45,10.9633333333,31.7633333333,20,33.8633333333,21.2,39.56,19.6,37.6266666667,7.9,758.05,81,2,64.5,4.8,23.3666830347,23.3666830347 -30,0,20.89,39.4,19,42.4,21.79,37.4,19.79,38.29,19.29,45,10.83,30.0233333333,19.9266666667,33.8633333333,21.2,39.5,19.6,37.59,7.9666666667,758.0666666667,80.6666666667,2,64.6666666667,4.8333333333,4.6707591042,4.6707591042 -40,0,20.89,39.4,19,42.4,21.79,37.3266666667,19.79,38.29,19.29,45,10.83,30.73,19.9266666667,33.79,21.2,39.5,19.6,37.59,8.0333333333,758.0833333333,80.3333333333,2,64.8333333333,4.8666666667,30.7159751887,30.7159751887 -30,0,20.89,39.4666666667,19.0333333333,42.29,21.79,37.29,19.79,38.29,19.29,45,10.9633333333,30.1233333333,20,33.79,21.1333333333,39.56,19.6,37.59,8.1,758.1,80,2,65,4.9,17.967494647,17.967494647 -40,0,20.89,39.4,19.1,42.29,21.79,37.29,19.79,38.29,19.29,45,11.0633333333,29.5633333333,20,33.8266666667,21.1,39.53,19.6,37.59,8.2166666667,758.05,78.8333333333,2,59,4.7666666667,4.4702409417,4.4702409417 -50,0,20.89,39.4,19.15,42.145,21.79,37.29,19.79,38.29,19.29,45,11.2633333333,29.0233333333,20,33.8266666667,21.1,39.59,19.6,37.59,8.3333333333,758,77.6666666667,2,53,4.6333333333,10.5049188831,10.5049188831 -50,0,20.89,39.4,19.1333333333,42.06,21.79,37.29,19.79,38.29,19.29,45,11.4266666667,28.0333333333,20,33.79,21.1,39.53,19.6,37.59,8.45,757.95,76.5,2,47,4.5,23.6225567874,23.6225567874 -50,0,20.89,39.4,19.2,42,21.79,37.29,19.79,38.29,19.29,44.9666666667,11.5666666667,26.9666666667,20,33.79,21.1,39.59,19.6,37.59,8.5666666667,757.9,75.3333333333,2,41,4.3666666667,8.7950617191,8.7950617191 -50,0,20.89,39.4,19.36,41.8333333333,21.79,37.4,19.79,38.29,19.29,44.9,12.54,25.4,20,33.79,21.1,39.53,19.6,37.53,8.6833333333,757.85,74.1666666667,2,35,4.2333333333,10.3790963185,10.3790963185 -50,0,20.89,39.4,19.5666666667,41.5666666667,21.79,37.3266666667,19.79,38.29,19.3233333333,44.9,13.3666666667,20.0666666667,20,33.79,21.1,39.5,19.6333333333,37.53,8.8,757.8,73,2,29,4.1,3.2246355549,3.2246355549 -50,0,20.9266666667,39.4,19.6333333333,41.26,21.79,37.4,19.79,38.23,19.3233333333,44.8266666667,13.7,18.4666666667,20.0333333333,33.73,21.1,39.5,19.7,37.59,8.9333333333,757.7166666667,72.3333333333,2,28.5,4.1,21.2343037827,21.2343037827 -60,0,20.9266666667,39.4,19.76,41.0666666667,21.79,37.4,19.79,38.2,19.39,44.79,13.9266666667,17.89,20.1,33.79,21.1,39.59,19.7,37.59,9.0666666667,757.6333333333,71.6666666667,2,28,4.1,10.5311661959,10.5311661959 -50,0,21,39.5,19.89,40.93,21.79,37.4,19.79,38.2,19.3233333333,44.79,13.8666666667,17.1566666667,20.1,33.79,21.0333333333,39.53,19.7,37.7,9.2,757.55,71,2,27.5,4.1,39.0503097558,39.0503097558 -50,0,21,39.5,19.9633333333,40.73,21.79,37.4,19.8233333333,38.23,19.39,44.79,13.8266666667,17.0666666667,20.1,33.79,21.1,39.59,19.7,37.7,9.3333333333,757.4666666667,70.3333333333,2,27,4.1,13.4347084677,13.4347084677 -50,0,21,39.5,20.0333333333,40.59,21.8233333333,37.4333333333,19.89,38.23,19.39,44.76,14.2333333333,16.66,20.1,33.79,21.0333333333,39.59,19.7,37.73,9.4666666667,757.3833333333,69.6666666667,2,26.5,4.1,36.6038896143,36.6038896143 -40,0,21,39.5,20.1666666667,40.4633333333,21.89,37.5,19.89,38.2,19.3233333333,44.7,14.2633333333,16.3,20.1,33.79,21.0666666667,39.59,19.7,37.79,9.6,757.3,69,2,26,4.1,20.8606072352,20.8606072352 -50,0,21,39.5,20.2,40.3633333333,21.89,37.5,19.89,38.2,19.39,44.76,14.3233333333,16.5666666667,20.1,33.79,21.0666666667,39.6633333333,19.7,37.79,9.6333333333,757.2333333333,69.1666666667,2,26.3333333333,4.1833333333,34.0385597665,34.0385597665 -50,0,21.0333333333,39.53,20.26,40.29,21.89,37.5,19.89,38.2,19.39,44.76,14.8,16.1,20.1,33.79,21,39.59,19.7,37.79,9.6666666667,757.1666666667,69.3333333333,2,26.6666666667,4.2666666667,12.3649939778,12.3649939778 -60,0,21.1,39.59,20.29,40.1633333333,21.89,37.5,19.89,38.2,19.39,44.7,14.7266666667,15.4333333333,20.1,33.79,21,39.59,19.7,37.79,9.7,757.1,69.5,2,27,4.35,15.4258869472,15.4258869472 -70,0,21.1,39.59,20.29,40.03,21.89,37.5,19.89,38.2,19.39,44.7,14.8,16.1933333333,20.1,33.8266666667,21,39.59,19.7,37.79,9.7333333333,757.0333333333,69.6666666667,2,27.3333333333,4.4333333333,48.5879104235,48.5879104235 -80,0,21.0333333333,39.6633333333,20.3233333333,40,21.89,37.5,19.89,38.2,19.39,44.7,14.7266666667,15.6666666667,20.1,33.9,21,39.6633333333,19.76,37.8266666667,9.7666666667,756.9666666667,69.8333333333,2,27.6666666667,4.5166666667,32.9238881357,32.9238881357 -70,0,21.0333333333,39.6266666667,20.39,40,21.89,37.5,19.89,38.4,19.39,44.7,14.3233333333,16.43,20.1,33.9333333333,21.0333333333,40.1266666667,19.7,37.9,9.8,756.9,70,2,28,4.6,11.9444044889,11.9444044889 -60,0,21.1,39.7,20.4266666667,39.9,21.89,37.5,19.89,38.4666666667,19.39,44.7,14.3233333333,17.0966666667,20.1666666667,34,21.1,40.1266666667,19.79,37.9,9.8333333333,756.7666666667,70.5,2,27,4.7166666667,30.147225468,30.147225468 -40,0,21.1,39.7,20.5,39.8266666667,21.89,37.5,19.89,38.53,19.39,44.7,14.8,16.6966666667,20.23,33.9333333333,21.2,40.06,19.79,37.9666666667,9.8666666667,756.6333333333,71,2,26,4.8333333333,34.2552518705,34.2552518705 -30,0,21.1,39.76,20.5,39.7,21.8566666667,37.4666666667,19.945,38.59,19.39,44.7,14.6666666667,16.6966666667,20.29,34,21.26,40,19.73,38.03,9.9,756.5,71.5,2,25,4.95,32.7264069347,32.7264069347 -30,0,21.1,39.79,20.575,39.7,21.8566666667,37.4666666667,19.9633333333,38.59,19.39,44.7,14.7566666667,17.1,20.29,34.06,21.29,39.9,19.79,38.1633333333,9.9333333333,756.3666666667,72,2,24,5.0666666667,17.1589269536,17.1589269536 -40,0,21.1666666667,39.79,20.6,39.6266666667,21.79,37.4,20,38.7,19.39,44.7,14.9633333333,16.8933333333,20.29,34.06,21.29,39.8266666667,19.79,38.23,9.9666666667,756.2333333333,72.5,2,23,5.1833333333,35.4219320579,35.4219320579 -70,0,21.2,39.79,20.6,39.59,21.8566666667,37.56,20,38.7,19.39,44.7,14.745,17.09,20.29,34.09,21.39,39.79,19.79,38.29,10,756.1,73,2,22,5.3,24.3407034082,24.3407034082 -60,0,21.2,39.79,20.6,39.59,21.79,37.5,20,38.7,19.39,44.7,14.7266666667,17.53,20.29,34.1633333333,21.3566666667,39.79,19.79,38.29,10.1833333333,755.9833333333,73,2.1666666667,22,5.4833333333,46.7961851158,46.7961851158 -60,0,21.2,39.8266666667,20.6,39.59,21.79,37.59,20,38.7,19.4633333333,44.76,14.8,17.4633333333,20.29,34.23,21.3566666667,39.79,19.79,38.29,10.3666666667,755.8666666667,73,2.3333333333,22,5.6666666667,0.2295309096,0.2295309096 -60,0,21.2,39.9,20.5333333333,39.6633333333,21.8566666667,37.6633333333,20,38.7,19.39,44.79,14.66,18.03,20.29,34.29,21.39,39.79,19.79,38.29,10.55,755.75,73,2.5,22,5.85,29.3015117059,29.3015117059 -60,0,21.1,39.9,20.5,39.7,21.79,37.6633333333,20,38.76,19.4633333333,44.93,14.6,18.0966666667,20.29,34.3266666667,21.39,39.79,19.73,38.3266666667,10.7333333333,755.6333333333,73,2.6666666667,22,6.0333333333,24.732916744,24.732916744 -60,0,21.1666666667,39.9,20.5,39.76,21.79,37.59,20,38.73,19.39,44.79,14.2333333333,18.3633333333,20.23,34.3266666667,21.39,39.79,19.79,38.4,10.9166666667,755.5166666667,73,2.8333333333,22,6.2166666667,46.8273995444,46.8273995444 -50,0,21.1,39.9,20.39,39.79,21.79,37.7,20,38.79,19.39,44.79,14.1,19.0966666667,20.29,34.4,21.39,39.79,19.79,38.4,11.1,755.4,73,3,22,6.4,40.7700446201,40.7700446201 -60,0,21.1333333333,39.9333333333,20.39,39.8633333333,21.79,37.7,20,38.79,19.39,44.79,14.0333333333,19.9266666667,20.2675,34.45,21.39,39.79,19.73,38.4,11.1666666667,755.2333333333,73.3333333333,3,21.6666666667,6.5166666667,44.4665921736,44.4665921736 -60,0,21.2,40,20.39,39.9333333333,21.79,37.7,20,38.79,19.4266666667,44.9333333333,14.16,20.3266666667,20.2,34.4666666667,21.39,39.8633333333,19.76,38.5,11.2333333333,755.0666666667,73.6666666667,3,21.3333333333,6.6333333333,9.784046479,9.784046479 -60,0,21.2,40,20.39,40,21.79,37.7,20,38.79,19.4266666667,44.9333333333,14.3,20.3333333333,20.2,34.53,21.39,39.9,19.76,38.5,11.3,754.9,74,3,21,6.75,25.8191334899,25.8191334899 -70,0,21.2,40,20.29,40.09,21.8566666667,37.76,20,38.79,19.5,45,14.36,20.9333333333,20.2,34.59,21.39,39.9,19.73,38.5,11.3666666667,754.7333333333,74.3333333333,3,20.6666666667,6.8666666667,0.0306660892,0.0306660892 -60,0,21.2,40,20.29,40.09,21.79,37.7,20,38.79,19.4266666667,44.9333333333,14.5,20.8933333333,20.2,34.7,21.39,39.9333333333,19.79,38.56,11.4333333333,754.5666666667,74.6666666667,3,20.3333333333,6.9833333333,44.9421214755,44.9421214755 -60,0,21.2,40,20.29,40.23,21.79,37.76,20,38.79,19.39,45,14.5,20.96,20.2,34.76,21.39,40.06,19.73,38.59,11.5,754.4,75,3,20,7.1,22.0312104677,22.0312104677 -50,0,21.2,40,20.23,40.29,21.8566666667,37.8333333333,19.9633333333,38.79,19.39,45,14.2633333333,21.4,20.2,34.79,21.39,40.09,19.73,38.59,11.6,754.3,74.8333333333,3,20.3333333333,7.1833333333,12.9966812325,12.9966812325 -50,0,21.2,40,20.2,40.4333333333,21.8566666667,37.8633333333,19.89,38.8633333333,19.39,45,14.19,22.4,20.2,34.8633333333,21.39,40.09,19.7,38.6266666667,11.7,754.2,74.6666666667,3,20.6666666667,7.2666666667,17.9380285786,17.9380285786 -60,0,21.1666666667,40.03,20.1333333333,40.56,21.79,37.79,19.89,38.8266666667,19.39,45,14.09,23.16,20.2,34.9333333333,21.39,40.2,19.76,38.7,11.8,754.1,74.5,3,21,7.35,25.0577116152,25.0577116152 -50,0,21.1666666667,40.09,20.1,40.73,21.79,37.8266666667,19.89,38.9,19.39,45.09,13.6966666667,24.2333333333,20.2,35,21.39,40.2,19.73,38.73,11.9,754,74.3333333333,3,21.3333333333,7.4333333333,27.7870735037,27.7870735037 -60,0,21.1333333333,40.09,20.025,40.8425,21.79,37.9,19.89,38.9,19.39,45.09,13.5,25.99,20.2,35.03,21.39,40.29,19.73,38.79,12,753.9,74.1666666667,3,21.6666666667,7.5166666667,28.2905844855,28.2905844855 -70,0,21.2,40.1633333333,20,41,21.79,37.9,19.89,38.9333333333,19.39,45.09,13.5,26.7233333333,20.2,35.09,21.39,40.3633333333,19.7,38.79,12.1,753.8,74,3,22,7.6,31.1922551366,31.1922551366 -50,0,21.2,40.23,19.89,41.1266666667,21.79,37.9,19.9633333333,39,19.39,45.09,13.445,27.4,20.2,35.2,21.39,40.4333333333,19.76,38.8633333333,12.1,753.7666666667,74.6666666667,3,21.8333333333,7.7166666667,47.2734928248,47.2734928248 -40,0,21.2,40.23,19.89,41.26,21.79,37.9,19.89,39.03,19.39,45.09,13.36,28.16,20.2,35.26,21.39,40.5225,19.7,38.9333333333,12.1,753.7333333333,75.3333333333,3,21.6666666667,7.8333333333,29.0358541301,29.0358541301 -30,0,21.2,40.29,19.8566666667,41.4,21.79,38,19.89,39.09,19.39,45.1633333333,13.2266666667,29.16,20.1666666667,35.29,21.39,40.59,19.7,39,12.1,753.7,76,3,21.5,7.95,3.8382471772,3.8382471772 -40,0,21.1333333333,40.29,19.79,41.4,21.79,37.9333333333,19.89,39.09,19.39,45.2,13.0666666667,30.5966666667,20.1666666667,35.3633333333,21.39,40.7,19.7,39.045,12.1,753.6666666667,76.6666666667,3,21.3333333333,8.0666666667,0.7355159731,0.7355159731 -50,0,21.1666666667,40.4,19.79,41.53,21.79,38,19.89,39.1633333333,19.39,45.2,12.9266666667,31.6566666667,20.1666666667,35.4333333333,21.39,40.7,19.7,39.1266666667,12.1,753.6333333333,77.3333333333,3,21.1666666667,8.1833333333,31.1996498727,31.1996498727 -60,0,21.1,40.4,19.73,41.7233333333,21.79,38,19.89,39.2,19.39,45.2,12.86,33.3933333333,20.1,35.5,21.39,40.79,19.7,39.2,12.1,753.6,78,3,21,8.3,4.216298135,4.216298135 -50,0,21.1,40.45,19.7,41.8266666667,21.79,38.03,19.89,39.26,19.39,45.29,12.6666666667,35,20.1,35.5,21.39,40.8633333333,19.7,39.29,12.1,753.5166666667,78.1666666667,3,21.1666666667,8.3333333333,3.9502207423,3.9502207423 -70,0,21.1,40.53,19.6333333333,41.9,21.79,38.09,19.89,39.29,19.39,45.29,12.4633333333,36.9233333333,20.1,35.5675,21.39,41,19.7,39.29,12.1,753.4333333333,78.3333333333,3,21.3333333333,8.3666666667,11.9961235672,11.9961235672 -60,0,21.1,40.59,19.6,42.03,21.79,38.1266666667,19.8233333333,39.29,19.3233333333,45.29,12.33,38.2566666667,20.1,35.6633333333,21.3233333333,41.06,19.7,39.29,12.1,753.35,78.5,3,21.5,8.4,16.6090256535,16.6090256535 -60,0,21.1,40.6266666667,19.6,42.1633333333,21.79,38.2,19.89,39.4333333333,19.39,45.29,12.0666666667,40.43,20.1,35.79,21.39,41.23,19.7,39.29,12.1,753.2666666667,78.6666666667,3,21.6666666667,8.4333333333,47.9730789317,47.9730789317 -60,0,21.1,40.7,19.5666666667,42.3266666667,21.79,38.23,19.89,39.5,19.3566666667,45.3633333333,11.9266666667,41.8233333333,20.1,35.79,21.3233333333,41.29,19.7,39.3266666667,12.1,753.1833333333,78.8333333333,3,21.8333333333,8.4666666667,14.6030219854,14.6030219854 -50,0,21.1,40.79,19.5,42.4666666667,21.79,38.29,19.79,39.4333333333,19.3566666667,45.3633333333,11.89,42.29,20.1,35.9,21.39,41.4,19.7,39.4666666667,12.1,753.1,79,3,22,8.5,38.8728108024,38.8728108024 -60,0,21.1,40.79,19.5,42.6266666667,21.79,38.29,19.8566666667,39.56,19.39,45.4,11.89,42.6233333333,20.1,35.9,21.39,41.4,19.6666666667,39.5,12.0166666667,753.1166666667,80,3,21.6666666667,8.6,37.2392174439,37.2392174439 -60,0,21.1,40.8266666667,19.4266666667,42.7,21.79,38.29,19.79,39.59,19.39,45.4,11.86,43.4333333333,20.1,35.975,21.39,41.5,19.6,39.5,11.9333333333,753.1333333333,81,3,21.3333333333,8.7,24.8591188807,24.8591188807 -50,0,21.1,40.9,19.39,42.73,21.79,38.3266666667,19.79,39.59,19.3233333333,45.5,11.8,43.56,20.1,36.06,21.3233333333,41.5,19.7,39.7,11.85,753.15,82,3,21,8.8,49.8581575579,49.8581575579 -50,0,21.1,40.9,19.39,42.8633333333,21.79,38.4,19.79,39.7,19.39,45.5,11.66,45.5,20.1,36.03,21.3566666667,41.59,19.7,39.7,11.7666666667,753.1666666667,83,3,20.6666666667,8.9,44.7942933417,44.7942933417 -60,0,21.0333333333,40.9,19.39,42.9333333333,21.79,38.4,19.79,39.7225,19.39,45.5,11.5333333333,46.4266666667,20.1,36.09,21.3566666667,41.59,19.6,39.7,11.6833333333,753.1833333333,84,3,20.3333333333,9,34.3726039864,34.3726039864 -70,0,21.1,41,19.315,43.095,21.79,38.4666666667,19.79,39.79,19.39,45.5,11.4633333333,47.3666666667,20.1,36.1266666667,21.3566666667,41.7,19.6,39.7,11.6,753.2,85,3,20,9.1,30.3184246412,30.3184246412 -60,0,21.1,41.06,19.29,43.2,21.79,38.5,19.79,39.8266666667,19.39,45.59,11.4175,48.4,20.1,36.2,21.29,41.7,19.6,39.73,11.4333333333,753.1833333333,86.1666666667,2.6666666667,27,9.1333333333,39.4125942257,39.4125942257 -60,0,21.0333333333,41.03,19.29,43.3266666667,21.79,38.5,19.79,39.9,19.39,45.59,11.6266666667,49.2333333333,20.1,36.23,21.3566666667,41.79,19.6,39.79,11.2666666667,753.1666666667,87.3333333333,2.3333333333,34,9.1666666667,46.3202625979,46.3202625979 -50,0,21.0333333333,41.09,19.23,43.3266666667,21.73,38.5,19.79,40,19.3566666667,45.59,11.7566666667,49.2666666667,20.1,36.29,21.29,41.79,19.6,39.9,11.1,753.15,88.5,2,41,9.2,33.6114926613,33.6114926613 -50,0,21.0333333333,41.1266666667,19.2,43.4333333333,21.76,38.5,19.79,40,19.3566666667,45.59,11.89,49.1933333333,20.1,36.29,21.29,41.9,19.6,39.9666666667,10.9333333333,753.1333333333,89.6666666667,1.6666666667,48,9.2333333333,21.4248080389,21.4248080389 -50,0,21.0333333333,41.1266666667,19.2,43.5,21.7,38.5,19.79,40.09,19.39,45.59,12.1666666667,48.7966666667,20.0333333333,36.29,21.29,41.9333333333,19.6,40,10.7666666667,753.1166666667,90.8333333333,1.3333333333,55,9.2666666667,2.6913633221,2.6913633221 -30,0,21,41.1266666667,19.2,43.6266666667,21.7,38.59,19.79,40.09,19.39,45.6633333333,12.36,47.9966666667,20.1,36.4,21.29,42,19.6,40.03,10.6,753.1,92,1,62,9.3,35.9813157469,35.9813157469 -50,0,21,41.2,19.2,43.7,21.7,38.59,19.79,40.2,19.39,45.7,12.6666666667,46.3,20.1,36.4666666667,21.29,42,19.6,40.09,11.1,753.05,88.6666666667,1.6666666667,56.3333333333,9.1833333333,47.0586851588,47.0586851588 -30,0,21,41.2,19.1666666667,43.7,21.7,38.53,19.79,40.26,19.315,45.7,12.86,45.0266666667,20,36.4333333333,21.29,42.06,19.6,40.2,11.6,753,85.3333333333,2.3333333333,50.6666666667,9.0666666667,44.3265344948,44.3265344948 -60,0,21,41.2675,19.1666666667,43.76,21.7,38.59,19.79,40.29,19.29,45.7,13,43.9233333333,20,36.5,21.29,42.09,19.6,40.2,12.1,752.95,82,3,45,8.95,28.6293836543,28.6293836543 -60,0,21,41.29,19.1666666667,43.79,21.6666666667,38.56,19.79,40.29,19.29,45.7,13.0666666667,43.4633333333,20,36.5,21.29,42.09,19.6,40.23,12.6,752.9,78.6666666667,3.6666666667,39.3333333333,8.8333333333,41.7013094062,41.7013094062 -60,0,21,41.4,19.1,43.79,21.6,38.56,19.79,40.4,19.29,45.7,13.1,43.36,20,36.59,21.29,42.2,19.6,40.29,13.1,752.85,75.3333333333,4.3333333333,33.6666666667,8.7166666667,23.118773615,23.118773615 -50,0,21,41.4,19.1,43.9333333333,21.6,38.59,19.79,40.4,19.29,45.79,13.1,43.6333333333,20,36.59,21.29,42.2,19.5666666667,40.3266666667,13.6,752.8,72,5,28,8.6,28.2250109944,28.2250109944 -60,0,21,41.5,19.1666666667,44,21.6,38.6633333333,19.73,40.5,19.29,45.79,13.1,44.2666666667,20,36.6266666667,21.29,42.23,19.5666666667,40.4,13.6333333333,752.75,72.1666666667,5.3333333333,27.8333333333,8.6666666667,17.1196954791,17.1196954791 -50,0,21,41.5,19.1,44.09,21.6,38.7,19.73,40.5,19.29,45.79,13.1,44.4,20,36.7,21.29,42.29,19.5,40.4333333333,13.6666666667,752.7,72.3333333333,5.6666666667,27.6666666667,8.7333333333,18.6264079181,18.6264079181 -60,0,21,41.59,19.1,44.09,21.5333333333,38.76,19.7,40.53,19.29,45.79,13.19,44.2,20,36.7,21.29,42.3266666667,19.5666666667,40.5,13.7,752.65,72.5,6,27.5,8.8,18.65459166,18.65459166 -60,0,20.9266666667,41.59,19.1,44.1266666667,21.5,38.79,19.7,40.59,19.29,45.79,13.19,44.2,20,36.7,21.29,42.4,19.5333333333,40.53,13.7333333333,752.6,72.6666666667,6.3333333333,27.3333333333,8.8666666667,21.5635450557,21.5635450557 -60,0,20.89,41.6266666667,19.1,44.2,21.5,38.79,19.7,40.6266666667,19.29,45.79,13.13,44.4266666667,20,36.79,21.29,42.4333333333,19.5333333333,40.59,13.7666666667,752.55,72.8333333333,6.6666666667,27.1666666667,8.9333333333,6.4091945649,6.4091945649 -60,0,20.89,41.7,19.1,44.29,21.5,38.79,19.7,40.7225,19.29,45.79,13.13,45.1666666667,20,36.79,21.29,42.5,19.6,40.6266666667,13.8,752.5,73,7,27,9,13.7149808928,13.7149808928 -60,0,20.89,41.73,19.1,44.3175,21.5,38.79,19.7,40.79,19.29,45.79,13.05,46.15,20,36.9,21.29,42.53,19.5333333333,40.7,13.8166666667,752.45,73.1666666667,7,27.3333333333,9.05,29.373380437,29.373380437 -50,0,20.89,41.79,19.1,44.4,21.5,38.8266666667,19.7,40.79,19.29,45.8266666667,13,46.8,20,36.9,21.29,42.59,19.5666666667,40.73,13.8333333333,752.4,73.3333333333,7,27.6666666667,9.1,5.4038671777,5.4038671777 -60,0,20.89,41.8266666667,19.1,44.5,21.5,38.9,19.7,40.8633333333,19.29,45.9,13,47.06,20,37,21.29,42.6266666667,19.5,40.79,13.85,752.35,73.5,7,28,9.15,11.8754065246,11.8754065246 -50,0,20.89,41.9,19.1,44.5,21.5666666667,38.9666666667,19.7,41,19.29,45.9,13,47.26,20,37,21.29,42.7,19.5,40.9,13.8666666667,752.3,73.6666666667,7,28.3333333333,9.2,7.6001250884,7.6001250884 -60,0,20.89,41.9333333333,19.1,44.53,21.5333333333,39,19.7,41,19.29,45.9,13,47.2,20,37.09,21.29,42.73,19.5,40.9,13.8833333333,752.25,73.8333333333,7,28.6666666667,9.25,41.1370760878,41.1370760878 -60,0,20.89,42,19.1,44.59,21.6,39,19.7,41,19.29,45.9,13,47.4333333333,20,37.09,21.29,42.79,19.5,40.95,13.9,752.2,74,7,29,9.3,20.9251730819,20.9251730819 -60,0,20.89,42.03,19.1,44.7,21.6,39.09,19.7,41.06,19.29,45.9,13.0666666667,47.4333333333,20,37.2,21.29,42.79,19.5,41.09,13.8,752.1833333333,74.6666666667,7,28.8333333333,9.35,38.8842490618,38.8842490618 -60,0,20.89,42.09,19.1,44.7,21.6,39.09,19.7,41.09,19.29,45.9,13.1,48.1266666667,20,37.2,21.29,42.9,19.5,41.09,13.7,752.1666666667,75.3333333333,7,28.6666666667,9.4,3.13347138,3.13347138 -30,0,20.89,42.09,19.0333333333,44.6566666667,21.6,39.09,19.7,41.1633333333,19.29,45.975,13.0333333333,50.5933333333,20,37.29,21.29,42.9666666667,19.5,41.1266666667,13.6,752.15,76,7,28.5,9.45,7.4190017534,7.4190017534 -40,0,20.89,42.1175,19.0333333333,44.73,21.6,39.09,19.7,41.2,19.29,46,12.7633333333,54,20,37.3725,21.26,43,19.5,41.2,13.5,752.1333333333,76.6666666667,7,28.3333333333,9.5,36.6731790593,36.6731790593 -30,0,20.89,42.2,19.1,44.9,21.6,39.09,19.7,41.26,19.29,46,12.63,56.26,20,37.4,21.26,43.1333333333,19.5,41.29,13.4,752.1166666667,77.3333333333,7,28.1666666667,9.55,7.0008098497,7.0008098497 -50,0,20.89,42.29,19.1,44.9666666667,21.6,39.09,19.7,41.3266666667,19.29,46,12.5666666667,58.5333333333,20,37.53,21.29,43.23,19.5,41.3633333333,13.3,752.1,78,7,28,9.6,46.8901881133,46.8901881133 -50,0,20.89,42.29,19.0333333333,44.9633333333,21.6,39.09,19.7,41.4666666667,19.29,46.03,12.5,59.6666666667,20,37.6633333333,21.29,43.3633333333,19.5,41.4333333333,13.1333333333,752.1166666667,79.8333333333,7,33.8333333333,9.7666666667,9.9491389585,9.9491389585 -70,0,20.89,42.4333333333,19.0333333333,45.03,21.6,39.09,19.7,41.5,19.29,46.09,12.39,60.6966666667,20,37.7,21.29,43.4333333333,19.5,41.5,12.9666666667,752.1333333333,81.6666666667,7,39.6666666667,9.9333333333,7.8499641269,7.8499641269 -60,0,20.89,42.5,19.0666666667,45.09,21.6,39.09,19.7,41.56,19.29,46.09,12.33,61.09,20,37.76,21.29,43.56,19.5,41.59,12.8,752.15,83.5,7,45.5,10.1,34.5580105553,34.5580105553 -70,0,20.89,42.5,19.0666666667,45.1633333333,21.6,39.1633333333,19.7,41.6266666667,19.29,46.09,12.3,61.5666666667,20,37.9,21.29,43.59,19.5,41.6633333333,12.6333333333,752.1666666667,85.3333333333,7,51.3333333333,10.2666666667,38.0804785294,38.0804785294 -70,0,20.89,42.56,19,45.2,21.6,39.3266666667,19.6333333333,41.7,19.29,46.09,12.2266666667,61.9,20,37.9666666667,21.23,43.59,19.5,41.79,12.4666666667,752.1833333333,87.1666666667,7,57.1666666667,10.4333333333,6.2543212553,6.2543212553 -50,0,20.89,42.7,19,45.26,21.6,39.4,19.6,41.7,19.29,46.1633333333,12.19,62.33,20,38,21.23,43.73,19.5,41.8633333333,12.3,752.2,89,7,63,10.6,37.7182633849,37.7182633849 -60,0,20.89,42.7,19,45.3266666667,21.6,39.4,19.675,41.875,19.29,46.2,12.19,62.6633333333,20,38.06,21.29,43.79,19.5,41.9333333333,12.2666666667,752.1666666667,89.5,6.6666666667,63.1666666667,10.6333333333,41.6288869805,41.6288869805 -50,0,20.89,42.73,19,45.4,21.6,39.4,19.6333333333,41.9333333333,19.29,46.26,12.145,62.895,20,38.09,21.26,43.8633333333,19.5,42,12.2333333333,752.1333333333,90,6.3333333333,63.3333333333,10.6666666667,18.0468717357,18.0468717357 -50,0,20.8233333333,42.73,19,45.5,21.6,39.5,19.6,41.9333333333,19.29,46.29,12,63.3666666667,20,38.1633333333,21.26,43.93,19.5,42.09,12.2,752.1,90.5,6,63.5,10.7,25.1146509894,25.1146509894 -50,0,20.79,42.79,19,45.53,21.6,39.5,19.6,42,19.23,46.23,12,63.9,19.9633333333,38.2,21.26,43.9666666667,19.5,42.09,12.1666666667,752.0666666667,91,5.6666666667,63.6666666667,10.7333333333,30.2499889978,30.2499889978 -60,0,20.79,42.79,19,45.59,21.6,39.5,19.6333333333,42.1266666667,19.29,46.3266666667,11.89,64.09,19.89,38.26,21.26,44.0266666667,19.5,42.2,12.1333333333,752.0333333333,91.5,5.3333333333,63.8333333333,10.7666666667,36.6967212758,36.6967212758 -60,0,20.79,42.9333333333,19,45.6266666667,21.6,39.59,19.6333333333,42.1266666667,19.29,46.4,11.89,64.3633333333,20,38.3266666667,21.26,44.06,19.5,42.26,12.1,752,92,5,64,10.8,40.3045319486,40.3045319486 -60,0,20.79,43,19,45.7,21.6,39.59,19.6,42.2,19.29,46.4,11.8,64.76,19.9266666667,38.4,21.26,44.06,19.5,42.29,12.05,751.9666666667,92.1666666667,4.6666666667,64,10.7833333333,46.1254436406,46.1254436406 -70,0,20.79,42.9666666667,19,45.79,21.6666666667,39.6633333333,19.6,42.26,19.23,46.3266666667,11.8,65.0266666667,19.9633333333,38.4,21.29,44.145,19.5,42.4,12,751.9333333333,92.3333333333,4.3333333333,64,10.7666666667,41.4006545674,41.4006545674 -60,0,20.79,42.9666666667,19,45.8633333333,21.6666666667,39.6633333333,19.6,42.29,19.2,46.4,11.86,65.1566666667,19.89,38.4666666667,21.29,44.23,19.4266666667,42.4,11.95,751.9,92.5,4,64,10.75,48.4127851436,48.4127851436 -60,0,20.79,43.03,19,45.9333333333,21.7,39.73,19.6,42.29,19.2,46.4,11.8,65.09,19.89,38.5,21.29,44.29,19.5,42.5,11.9,751.8666666667,92.6666666667,3.6666666667,64,10.7333333333,35.8646214358,35.8646214358 -50,0,20.79,43.09,19,46,21.7,39.79,19.6,42.3266666667,19.2,46.4,11.86,65.1266666667,19.9633333333,38.5,21.29,44.29,19.5,42.56,11.85,751.8333333333,92.8333333333,3.3333333333,64,10.7166666667,40.1890438399,40.1890438399 -40,0,20.79,43.09,18.89,46,21.6666666667,39.76,19.6,42.4,19.29,46.53,11.8,65,19.89,38.545,21.23,44.23,19.5,42.59,11.8,751.8,93,3,64,10.7,41.1964428378,41.1964428378 -30,0,20.79,43.1266666667,18.89,46.06,21.6666666667,39.76,19.6,42.5,19.29,46.59,11.8,65.2266666667,19.9633333333,38.59,21.23,44.3266666667,19.5,42.59,11.8166666667,751.7833333333,92.8333333333,3,56.6666666667,10.6833333333,37.2409263859,37.2409263859 -50,0,20.79,43.2,18.89,46.2,21.6,39.7,19.6,42.5,19.2,46.5,11.8,65.2266666667,19.9633333333,38.6633333333,21.29,44.4,19.5,42.7,11.8333333333,751.7666666667,92.6666666667,3,49.3333333333,10.6666666667,25.6142184604,25.6142184604 -40,0,20.79,43.23,18.89,46.2,21.6,39.7,19.6,42.59,19.2,46.5,11.86,65.2966666667,19.89,38.7,21.29,44.4,19.5,42.7,11.85,751.75,92.5,3,42,10.65,19.6032282314,19.6032282314 -70,0,20.79,43.29,18.89,46.2,21.6,39.79,19.6,42.59,19.23,46.53,11.8,65.1566666667,19.89,38.7,21.29,44.4,19.5,42.73,11.8666666667,751.7333333333,92.3333333333,3,34.6666666667,10.6333333333,17.5557263545,17.5557263545 -50,0,20.79,43.26,18.89,46.26,21.6,39.79,19.6,42.6266666667,19.23,46.53,11.83,65.2266666667,20,38.7,21.26,44.4666666667,19.5,42.79,11.8833333333,751.7166666667,92.1666666667,3,27.3333333333,10.6166666667,36.1248162226,36.1248162226 -50,0,20.79,43.26,18.89,46.29,21.6,39.8266666667,19.6,42.7,19.29,46.59,11.89,65.3,20,38.7,21.2,44.4,19.39,42.7,11.9,751.7,92,3,20,10.6,33.3319736645,33.3319736645 -70,0,20.79,43.3266666667,18.89,46.29,21.6,39.9,19.6,42.7,19.23,46.53,11.7333333333,64.5233333333,19.9633333333,38.76,21.2,44.4,19.39,42.76,11.9166666667,751.7166666667,91.8333333333,3.1666666667,20.3333333333,10.6,48.0724193738,48.0724193738 -50,0,20.79,43.4,18.89,46.4,21.6,39.9333333333,19.6,42.7,19.29,46.7,11.37,63.8675,19.89,38.76,21.2,44.4,19.39,42.79,11.9333333333,751.7333333333,91.6666666667,3.3333333333,20.6666666667,10.6,38.9273680863,38.9273680863 -60,0,20.79,43.29,18.89,46.4,21.6,39.9333333333,19.6,42.7,19.23,46.6266666667,11.0333333333,63.76,19.89,38.79,21.2,44.4,19.39,42.79,11.95,751.75,91.5,3.5,21,10.6,29.4044717797,29.4044717797 -60,0,20.79,43.29,18.89,46.4,21.6,39.9333333333,19.6,42.79,19.2,46.59,10.86,64.5666666667,19.89,38.79,21.2,44.4,19.39,42.79,11.9666666667,751.7666666667,91.3333333333,3.6666666667,21.3333333333,10.6,26.9867828465,26.9867828465 -60,0,20.79,43.29,18.89,46.5,21.6,40,19.5333333333,42.79,19.2,46.59,10.8,65.3,19.89,38.76,21.26,44.4666666667,19.39,42.79,11.9833333333,751.7833333333,91.1666666667,3.8333333333,21.6666666667,10.6,33.6351234117,33.6351234117 -60,0,20.79,43.3633333333,18.89,46.5,21.6,40.06,19.6,42.79,19.23,46.6566666667,10.89,66.2266666667,19.9633333333,38.76,21.2,44.3266666667,19.39,42.79,12,751.8,91,4,22,10.6,7.335704146,7.335704146 -60,0,20.79,43.4,18.9266666667,46.4,21.6,40.09,19.6,42.79,19.23,46.73,11.03,66.7666666667,19.89,38.79,21.2,44.4,19.39,42.79,11.9666666667,751.8333333333,91,4,22.1666666667,10.5666666667,33.7638576166,33.7638576166 -50,0,20.79,43.4,19,46.4,21.6,40.09,19.6,42.8266666667,19.26,46.7,11.13,66.9333333333,19.89,38.79,21.2,44.4,19.39,42.845,11.9333333333,751.8666666667,91,4,22.3333333333,10.5333333333,17.7074543899,17.7074543899 -50,0,20.79,43.4,19,46.29,21.6,40.09,19.6,42.8266666667,19.2,46.7,11.2633333333,67,19.89,38.79,21.2,44.4,19.39,42.9,11.9,751.9,91,4,22.5,10.5,31.0513895471,31.0513895471 -60,0,20.79,43.4,19,46.29,21.6,40.09,19.6,42.9,19.2,46.7,11.33,66.73,19.89,38.8633333333,21.2,44.45,19.39,42.9,11.8666666667,751.9333333333,91,4,22.6666666667,10.4666666667,40.2525227168,40.2525227168 -60,0,20.79,43.4333333333,19.1,46.29,21.6,40.09,19.6,42.9,19.26,46.76,11.53,66.7966666667,19.89,38.9,21.2,44.4666666667,19.5,43,11.8333333333,751.9666666667,91,4,22.8333333333,10.4333333333,35.871040856,35.871040856 -50,0,20.79,43.5,19.1666666667,46.1566666667,21.6,40.09,19.6,42.9,19.2,46.7,11.8666666667,66.9333333333,19.89,38.9,21.2,44.5,19.4266666667,42.9333333333,11.8,752,91,4,23,10.4,42.8917493904,42.8917493904 -70,0,20.79,43.5,19.29,46.06,21.6,40.09,19.6,42.8266666667,19.26,46.79,12.1266666667,66.5333333333,19.945,38.95,21.2,44.5,19.5,43,11.8833333333,752.05,90.6666666667,4,23,10.4333333333,40.6886985642,40.6886985642 -40,0,20.79,43.5,19.3566666667,45.9333333333,21.6,40.09,19.6,42.8266666667,19.2,46.73,12.33,65.6333333333,20,39,21.2,44.5,19.6333333333,43,11.9666666667,752.1,90.3333333333,4,23,10.4666666667,3.1040922622,3.1040922622 -50,0,20.79,43.5,19.4266666667,45.79,21.7,40.2,19.6,43.0266666667,19.2,46.7,12.4633333333,65.1,19.9266666667,39.06,21.2,44.5,20.0933333333,43.1933333333,12.05,752.15,90,4,23,10.5,31.8120777491,31.8120777491 -30,0,20.8233333333,43.53,19.5,45.73,21.7,40.1266666667,19.6,43.2666666667,19.2,46.76,12.9,63.9633333333,19.89,39.03,21.23,44.53,20.76,42.4666666667,12.1333333333,752.2,89.6666666667,4,23,10.5333333333,15.9250951372,15.9250951372 -30,0,20.8233333333,43.53,19.6633333333,45.56,21.7,40.1266666667,19.6666666667,43.5266666667,19.29,46.9,13.2933333333,62.23,19.89,39.09,21.29,44.59,20.76,41.59,12.2166666667,752.25,89.3333333333,4,23,10.5666666667,23.5470616375,23.5470616375 -60,0,20.8233333333,43.4633333333,19.9966666667,45.3,21.6333333333,40.1266666667,19.73,43.7,19.29,46.9,13.7566666667,59.43,20,39.09,21.29,44.7,20.5666666667,41.7233333333,12.3,752.3,89,4,23,10.6,24.1474448121,24.1474448121 -50,0,20.89,43.59,20.3933333333,44.66,21.6,40.09,19.8566666667,43.7,19.29,46.9,14.09,56.7633333333,20,39.1633333333,21.29,44.7,20.39,42.03,12.55,752.3166666667,88,4.1666666667,25.8333333333,10.6666666667,0.5110481987,0.5110481987 -60,0,20.89,43.6266666667,20.9333333333,44.1333333333,21.6,40.1633333333,20.05,43.645,19.29,46.9666666667,14.6,53.1333333333,20,39.23,21.29,44.79,20.3233333333,42.09,12.8,752.3333333333,87,4.3333333333,28.6666666667,10.7333333333,35.2699946845,35.2699946845 -60,0,20.89,43.7,21.63,42.9966666667,21.6,40.2,20.1333333333,43.56,19.29,47,15.075,49.595,20,39.29,21.29,44.79,20.2,42.1266666667,13.05,752.35,86,4.5,31.5,10.8,32.9913366819,32.9913366819 -70,0,20.89,43.79,22.0966666667,42.2566666667,21.6666666667,40.26,20.26,43.5,19.29,47,15.56,47.7333333333,20,39.29,21.29,44.79,20.2,42.26,13.3,752.3666666667,85,4.6666666667,34.3333333333,10.8666666667,6.1198376701,6.1198376701 -60,0,20.9633333333,43.79,22.495,41.25,21.7,40.4,20.4266666667,43.4,19.29,47.09,16.0966666667,44.0333333333,20,39.3633333333,21.29,44.79,20.1,42.4,13.55,752.3833333333,84,4.8333333333,37.1666666667,10.9333333333,25.2803821233,25.2803821233 -60,0,21,43.9,22.86,40.49,21.7,40.425,20.5666666667,43.3266666667,19.29,47.09,16.3566666667,40.7,20,39.4,21.29,44.9,20.0333333333,42.3266666667,13.8,752.4,83,5,40,11,48.9076783997,48.9076783997 -60,0,21,43.9,23.0666666667,40.23,21.76,40.5,20.6333333333,43.1633333333,19.29,47.1266666667,16.7,38.5633333333,20.0666666667,39.4666666667,21.29,44.9,20,42.23,14.1166666667,752.4166666667,81.6666666667,4.8333333333,38.1666666667,11.05,9.0969315497,9.0969315497 -50,0,21.1,44,23.23,39.8633333333,21.79,40.4333333333,20.76,43.03,19.29,47.2,16.8266666667,37.0966666667,20.1,39.53,21.29,44.9,20,42.29,14.4333333333,752.4333333333,80.3333333333,4.6666666667,36.3333333333,11.1,34.1853206628,34.1853206628 -60,0,21.1,44,23.3566666667,39.6566666667,21.79,40.5,20.8233333333,42.9,19.29,47.23,17.0966666667,35.6,20.1,39.6633333333,21.29,44.9666666667,20,42.4,14.75,752.45,79,4.5,34.5,11.15,34.340247314,34.340247314 -50,0,21.2,44,23.5333333333,39.43,21.79,40.5,20.89,42.9,19.29,47.29,17.43,35.1333333333,20.1,39.7,21.39,44.9,20,42.425,15.0666666667,752.4666666667,77.6666666667,4.3333333333,32.6666666667,11.2,44.5379234152,44.5379234152 -60,0,21.2,44,23.6,39.1566666667,21.8566666667,40.6333333333,20.9266666667,42.79,19.39,47.29,17.39,32.6666666667,20.1,39.7,21.39,44.9,20,42.5,15.3833333333,752.4833333333,76.3333333333,4.1666666667,30.8333333333,11.25,6.228409207,6.228409207 -60,0,21.23,43.9333333333,23.7,39.0266666667,21.8233333333,40.6266666667,21,42.79,19.3233333333,47.3633333333,17.4633333333,32.46,20.1333333333,39.7,21.445,44.79,20,42.5,15.7,752.5,75,4,29,11.3,18.1720378809,18.1720378809 -60,0,21.29,44,23.7,38.9,21.89,40.6266666667,21.1,42.8633333333,19.39,47.45,17.6,30.3666666667,20.2,39.6266666667,21.5333333333,44.7,20,42.53,15.9,752.4666666667,73.8333333333,4,30.8333333333,11.25,22.955714725,22.955714725 -70,0,21.3233333333,43.9,23.79,38.76,21.89,40.7,21.1666666667,42.73,19.3233333333,47.5,17.6666666667,28.7,20.29,39.7,21.6,44.6266666667,20,42.59,16.1,752.4333333333,72.6666666667,4,32.6666666667,11.2,18.6637069914,18.6637069914 -60,0,21.4175,43.9,23.8566666667,38.7,21.89,40.7,21.23,42.7,19.39,47.56,17.7,26.6266666667,20.3233333333,39.79,21.7,44.4666666667,20,42.59,16.3,752.4,71.5,4,34.5,11.15,13.7665663613,13.7665663613 -50,0,21.5,43.9,23.89,38.4666666667,22,40.6633333333,21.29,42.7,19.3233333333,47.59,17.76,24.56,20.4633333333,39.79,21.76,44.2666666667,20,42.59,16.5,752.3666666667,70.3333333333,4,36.3333333333,11.1,35.6447831495,35.6447831495 -60,0,21.5333333333,43.8633333333,23.8233333333,38.3266666667,22,40.59,21.29,42.56,19.3233333333,47.59,17.79,20.6566666667,20.5333333333,39.76,21.89,44.1333333333,20,42.6633333333,16.7,752.3333333333,69.1666666667,4,38.1666666667,11.05,43.0857870495,43.0857870495 -50,0,21.6,43.73,23.8566666667,38.26,22.0333333333,40.6266666667,21.3566666667,42.4333333333,19.39,47.59,17.8566666667,18.93,20.6,39.5666666667,21.9633333333,43.8,20,42.6633333333,16.9,752.3,68,4,40,11,45.7405304769,45.7405304769 -60,0,21.7,43.6633333333,23.79,38.1266666667,22.1,40.7,21.39,42.29,19.39,47.6633333333,18.0333333333,19.5666666667,20.79,39.43,22.1333333333,43.6333333333,20,42.7,17.0833333333,752.25,65.8333333333,4,40,10.65,40.4351401725,40.4351401725 -50,0,21.76,43.53,23.79,38.09,22.1,40.7,21.4633333333,42.29,19.39,47.7,18.1666666667,19.3666666667,20.8566666667,39.29,22.26,43.4333333333,20,42.7,17.2666666667,752.2,63.6666666667,4,40,10.3,39.2602232401,39.2602232401 -60,0,21.89,43.4666666667,23.79,38.09,22.1,40.7,21.5,42.29,19.39,47.7,18.3233333333,18.4333333333,21.0333333333,39.1633333333,22.39,43.1333333333,20,42.73,17.45,752.15,61.5,4,40,9.95,49.5195863536,49.5195863536 -70,0,21.9633333333,43.3266666667,23.79,38.1633333333,22.1333333333,40.6633333333,21.5,42.2,19.39,47.73,18.595,17.9175,21.1666666667,39.03,22.53,43,20.0666666667,42.8633333333,17.6333333333,752.1,59.3333333333,4,40,9.6,15.7610784052,15.7610784052 -80,0,22,43.1633333333,23.79,38.09,22.2,40.6633333333,21.5,42.1266666667,19.39,47.79,18.9966666667,17.33,21.2,38.8633333333,22.6333333333,42.79,20.0333333333,42.8266666667,17.8166666667,752.05,57.1666666667,4,40,9.25,49.1630149074,49.1630149074 -80,0,22.0666666667,43.1633333333,23.7,38.09,22.2,40.59,21.5,42.09,19.39,47.79,19.3233333333,15.7,21.26,38.79,22.7,42.8633333333,20.1,42.9,18,752,55,4,40,8.9,29.7658607364,29.7658607364 -60,0,22.1333333333,43.09,23.675,38.24,22.26,40.6633333333,21.5,42.09,19.4633333333,47.8633333333,19.39,14.8266666667,21.3233333333,38.76,22.6333333333,43.1933333333,20.1,43,18.1666666667,751.95,54.8333333333,4.1666666667,40,9,45.2717407607,45.2717407607 -70,0,22.2,43.09,23.6,38.29,22.29,40.7,21.6,42.09,19.5,48,19.4633333333,14.7333333333,21.4633333333,38.7,22.7,43.4,20.1,43,18.3333333333,751.9,54.6666666667,4.3333333333,40,9.1,35.0151066901,35.0151066901 -60,0,22.29,43.06,23.6,38.4,22.29,40.7,21.6,42.09,19.4266666667,47.9333333333,19.39,12.9333333333,21.6333333333,38.56,22.8233333333,43.53,20.1,43.03,18.5,751.85,54.5,4.5,40,9.2,49.2151339888,49.2151339888 -80,0,22.3566666667,42.9333333333,23.5333333333,38.4,22.29,40.7,21.6,42,19.5,48.03,19.39,13.7666666667,21.76,38.36,22.9633333333,43.6633333333,20.1,43.09,18.6666666667,751.8,54.3333333333,4.6666666667,40,9.3,22.7699168143,22.7699168143 -80,0,22.39,42.79,23.5,38.53,22.29,40.73,21.6,42,19.5,48.09,19.3233333333,13.4933333333,21.8233333333,38.2,23.0333333333,43.8266666667,20.1,43.09,18.8333333333,751.75,54.1666666667,4.8333333333,40,9.4,46.6625829693,46.6625829693 -90,0,22.4633333333,42.79,23.5,38.59,22.29,40.79,21.6,41.9,19.5,48.09,19.2633333333,13.3633333333,21.89,38.1266666667,23.1,43.9666666667,20.1333333333,43.1266666667,19,751.7,54,5,40,9.5,43.5926418984,43.5926418984 -100,0,22.5333333333,42.7,23.39,38.59,22.3233333333,40.7,21.6,41.9,19.5,48.09,19.53,13.09,22.0333333333,37.9666666667,23.2,44.1266666667,20.1333333333,43.2,19.0166666667,751.5833333333,53.3333333333,4.8333333333,40,9.3,6.8810309051,6.8810309051 -90,0,22.6,42.6266666667,23.39,38.6633333333,22.39,40.76,21.6,41.9,19.5,48.145,19.4633333333,13.1333333333,22.1,37.9,23.2675,44.32,20.2,43.2,19.0333333333,751.4666666667,52.6666666667,4.6666666667,40,9.1,46.162379859,46.162379859 -90,0,22.6,42.5,23.39,38.8266666667,22.5,40.79,21.6666666667,41.9666666667,19.5,48.2,19.39,14.5266666667,22.2,37.79,23.3566666667,44.6333333333,20.2,43.26,19.05,751.35,52,4.5,40,8.9,45.6278396072,45.6278396072 -90,0,22.6,42.475,23.39,38.9,22.5,40.79,21.6,41.9,19.5,48.2,19.5666666667,14.7933333333,22.2,37.79,23.4266666667,45,20.2,43.29,19.0666666667,751.2333333333,51.3333333333,4.3333333333,40,8.7,20.7601557951,20.7601557951 -80,0,22.6666666667,42.4666666667,23.29,39.03,22.5,40.76,21.6,41.9,19.5,48.2,19.76,14.7933333333,22.2,37.79,23.5,45.26,20.2,43.29,19.0833333333,751.1166666667,50.6666666667,4.1666666667,40,8.5,17.6181636751,17.6181636751 -90,0,22.6333333333,42.4333333333,23.29,39.09,22.5,40.76,21.6,42,19.5,48.2,20.0333333333,13.8233333333,22.2,37.79,23.5333333333,45.53,20.2,43.3266666667,19.1,751,50,4,40,8.3,45.6500747125,45.6500747125 -80,0,22.7,42.5,23.26,39.2,22.6,40.76,21.6,42,19.6,48.29,20.1,13.63,22.2,37.8633333333,23.6,45.6633333333,20.2,43.4,19.0166666667,750.95,51.5,3.8333333333,40,8.65,31.4763349714,31.4763349714 -80,0,22.7,42.5,23.2,39.2,22.6,40.76,21.6,42.03,19.6,48.29,20.3233333333,13.4,22.29,37.9,23.7,45.8266666667,20.2,43.4,18.9333333333,750.9,53,3.6666666667,40,9,8.5234898957,8.5234898957 -90,0,22.7,42.5,23.1666666667,39.3266666667,22.6,40.79,21.6,42.09,19.6,48.29,20.4633333333,12.6,22.29,37.9,23.7,46.0266666667,20.2,43.4,18.85,750.85,54.5,3.5,40,9.35,12.6009384287,12.6009384287 -90,0,22.7,42.5,23.1,39.4666666667,22.6,40.73,21.6,42.06,19.6,48.29,20.2933333333,11.76,22.26,37.9,23.79,46.3266666667,20.2,43.5,18.7666666667,750.8,56,3.3333333333,40,9.7,12.1292836848,12.1292836848 -90,0,22.7,42.5,23.0666666667,39.5,22.6333333333,40.7666666667,21.6,42,19.6,48.4,20.1,11.5666666667,22.2,37.8266666667,23.79,46.4,20.26,43.56,18.6833333333,750.75,57.5,3.1666666667,40,10.05,10.7480003382,10.7480003382 -90,0,22.7,42.4,23,39.56,22.7,40.8266666667,21.6,42,19.6,48.4,19.895,12.145,22.1666666667,37.79,23.8233333333,46.6266666667,20.2,43.5,18.6,750.7,59,3,40,10.4,47.7433970198,47.7433970198 -80,0,22.7,42.4666666667,22.89,39.73,22.7,40.79,21.6,42,19.6,48.4,19.7633333333,12.6,22.1,37.8633333333,23.89,46.7,20.2,43.5,18.7833333333,750.6,58,3.1666666667,40,10.3166666667,18.6061725137,18.6061725137 -90,0,22.7,42.5,22.8233333333,39.79,22.7,40.79,21.5333333333,42,19.6,48.4,19.9633333333,12.4666666667,22.1,37.9,23.9633333333,46.6266666667,20.26,43.59,18.9666666667,750.5,57,3.3333333333,40,10.2333333333,16.1493825843,16.1493825843 -80,0,22.7,42.5,22.79,39.9,22.7,40.79,21.5,42.03,19.6666666667,48.4666666667,20.1,12.1333333333,22.1,37.9,23.89,46.6266666667,20.26,43.6633333333,19.15,750.4,56,3.5,40,10.15,42.0212218771,42.0212218771 -90,0,22.7,42.5,22.76,40,22.7,40.8633333333,21.5666666667,42.09,19.6666666667,48.5266666667,20.1,11.9333333333,22,37.9,24,46.6633333333,20.26,43.6633333333,19.3333333333,750.3,55,3.6666666667,40,10.0666666667,14.1989820288,14.1989820288 -90,0,22.7,42.5,22.7,40.06,22.7,40.79,21.5,42.09,19.7,48.59,20.1,12,22,37.9,24,46.59,20.26,43.7233333333,19.5166666667,750.2,54,3.8333333333,40,9.9833333333,13.1382587599,13.1382587599 -90,0,22.6,42.4,22.5666666667,39.9666666667,22.6666666667,40.6,21.5,42.09,19.7,48.59,20.0333333333,11.9266666667,21.89,38.03,24,46.56,20.29,43.79,19.7,750.1,53,4,40,9.9,42.7781194914,42.7781194914 -110,0,22.6,42.4666666667,22.5,40.1,22.5333333333,40.4,21.5,42.2666666667,19.7,48.59,19.76,12.63,21.89,38.1633333333,24,46.36,20.29,43.79,19.4,750.05,54.8333333333,3.8333333333,40,10.0833333333,2.5645312737,2.5645312737 -110,0,22.5,42.53,22.3566666667,40.2666666667,22.5,40.53,21.5,42.4666666667,19.7,48.59,19.7,12.89,21.8566666667,38.29,24,45.9666666667,20.29,43.79,19.1,750,56.6666666667,3.6666666667,40,10.2666666667,47.8573222877,47.8573222877 -120,0,22.5,42.6633333333,22.29,40.5266666667,22.5,40.59,21.39,42.53,19.7,48.5,19.5666666667,13.1,21.79,38.3633333333,24,45.9,20.29,43.79,18.8,749.95,58.5,3.5,40,10.45,45.3888317221,45.3888317221 -90,0,22.5,42.9,22.2,40.89,22.5333333333,40.7,21.39,42.6633333333,19.7,48.5,19.36,13.6333333333,21.76,38.53,24,46.1266666667,20.29,43.79,18.5,749.9,60.3333333333,3.3333333333,40,10.6333333333,41.4527589222,41.4527589222 -90,0,22.5,42.9,22.1333333333,41.1633333333,22.6,40.7,21.3566666667,42.8266666667,19.7,48.5,19.2,14.49,21.7,38.695,24.075,46.425,20.29,43.79,18.2,749.85,62.1666666667,3.1666666667,40,10.8166666667,18.125917064,18.125917064 -100,0,22.445,42.9,22.1333333333,41.4,22.6,40.79,21.3566666667,42.9,19.7,48.5,19.1333333333,14.9633333333,21.7,38.8633333333,24.1,46.8333333333,20.29,43.8633333333,17.9,749.8,64,3,40,11,0.392949197,0.392949197 -90,0,22.39,42.9333333333,22.2,41.4,22.6,40.79,21.29,43,19.7,48.5,19,15.8,21.6,38.9633333333,24.0333333333,46.9633333333,20.29,43.9,17.8,749.75,64.3333333333,2.8333333333,40,10.9833333333,19.5455103647,19.5455103647 -110,0,22.39,43.06,22.2,41.53,22.6,40.9,21.29,43.06,19.7,48.59,18.9266666667,16.5933333333,21.6,39.1633333333,24.1,47.09,20.29,43.9,17.7,749.7,64.6666666667,2.6666666667,40,10.9666666667,41.5931267547,41.5931267547 -120,0,22.39,43.1566666667,22.2,41.59,22.6,40.9666666667,21.29,43.1566666667,19.7,48.59,18.6666666667,17.3666666667,21.6,39.4333333333,24.1,47.09,20.29,44.03,17.6,749.65,65,2.5,40,10.95,4.4614740764,4.4614740764 -120,10,22.39,43.49,22.1,41.79,22.6333333333,41.0666666667,21.29,43.43,19.7,48.7,18.46,18.3,21.5333333333,39.6333333333,24.1,47.03,20.29,44.09,17.5,749.6,65.3333333333,2.3333333333,40,10.9333333333,34.4447361887,34.4447361887 -130,0,22.39,43.7,22.1,41.93,22.7,41.2,21.29,43.7666666667,19.7,48.76,18.1666666667,19.49,21.5,39.86,24.1333333333,47,20.29,44.23,17.4,749.55,65.6666666667,2.1666666667,40,10.9166666667,29.776556755,29.776556755 -120,0,22.39,43.7,22,42.0666666667,22.7,41.23,21.29,44.12,19.7,48.79,17.8933333333,20.2233333333,21.5,40.06,24.2,47,20.29,44.29,17.3,749.5,66,2,40,10.9,34.9347521667,34.9347521667 -100,0,22.39,43.7,22,42.3333333333,22.7,41.29,21.29,44.5266666667,19.7,48.8633333333,17.6333333333,21.4966666667,21.5,40.3266666667,24.2,47,20.29,44.4333333333,17.3,749.45,65.6666666667,2,40,10.8,0.1664803131,0.1664803131 -90,0,22.39,43.76,21.9633333333,42.6566666667,22.7,41.4,21.29,44.73,19.7,49,17.295,22.9425,21.4266666667,40.4,24.26,47.06,20.29,44.5,17.3,749.4,65.3333333333,2,40,10.7,35.3393999278,35.3393999278 -90,10,22.29,43.9333333333,21.89,42.8633333333,22.7,41.4,21.29,44.8633333333,19.7,49.06,16.96,24.3,21.39,40.6266666667,24.23,47.03,20.29,44.6266666667,17.3,749.35,65,2,40,10.6,27.9732072959,27.9732072959 -80,0,22.29,44,21.8566666667,43.09,22.7,41.4333333333,21.29,44.9333333333,19.79,49.2,16.6666666667,25.93,21.39,40.76,24.29,47.1633333333,20.29,44.7,17.3,749.3,64.6666666667,2,40,10.5,2.8184845811,2.8184845811 -120,0,22.29,44.1266666667,21.79,43.2675,22.7,41.5225,21.29,45,19.79,49.2,16.6,28.0633333333,21.39,40.9633333333,24.29,47.09,20.29,44.8266666667,17.3,749.25,64.3333333333,2,40,10.4,40.831038903,40.831038903 -110,0,22.29,44.26,21.73,43.4666666667,22.6333333333,41.53,21.29,45.03,19.76,49.3266666667,16.5666666667,30.33,21.39,41.1633333333,24.29,47.1633333333,20.29,44.9,17.3,749.2,64,2,40,10.3,24.3253942579,24.3253942579 -130,0,22.26,44.29,21.7,43.73,22.6,41.59,21.29,45.09,19.76,49.4,16.5,31.3966666667,21.29,41.3266666667,24.3233333333,47.4333333333,20.29,45.045,17.2166666667,749.25,65.1666666667,2.1666666667,40,10.4833333333,28.7379398826,28.7379398826 -120,0,22.2,44.3633333333,21.7,43.93,22.6,41.59,21.26,45.1633333333,19.79,49.5,16.3566666667,32.8933333333,21.29,41.4666666667,24.3233333333,47.6333333333,20.29,45.1266666667,17.1333333333,749.3,66.3333333333,2.3333333333,40,10.6666666667,40.736913099,40.736913099 -110,0,22.2,44.53,21.6666666667,44.09,22.6333333333,41.7666666667,21.26,45.1633333333,19.79,49.5,16.23,34.3,21.29,41.6566666667,24.39,47.8266666667,20.29,45.2,17.05,749.35,67.5,2.5,40,10.85,24.211176252,24.211176252 -120,0,22.2,44.59,21.6,44.1633333333,22.7,41.9,21.23,45.23,19.79,49.59,16.1,34.43,21.29,41.79,24.39,47.8266666667,20.29,45.29,16.9666666667,749.4,68.6666666667,2.6666666667,40,11.0333333333,5.9249214479,5.9249214479 -120,10,22.2,44.73,21.6,44.36,22.7,41.9,21.23,45.23,19.79,49.6725,16.0333333333,33.8966666667,21.26,41.8633333333,24.39,47.79,20.29,45.3633333333,16.8833333333,749.45,69.8333333333,2.8333333333,40,11.2166666667,41.9705927721,41.9705927721 -110,0,22.2,44.79,21.6,44.56,22.7,41.9666666667,21.26,45.2233333333,19.79,49.7,15.86,33.4666666667,21.2,41.73,24.4633333333,47.79,20.29,45.4,16.8,749.5,71,3,40,11.4,2.2042008,2.2042008 -100,0,22.2,44.9333333333,21.5,44.7,22.7,41.9333333333,21.2,45.09,19.79,49.79,15.7266666667,33.6,21.2,41.79,24.39,47.545,20.29,45.4,16.7,749.4833333333,71.1666666667,3.1666666667,40,11.3666666667,43.0292438949,43.0292438949 -100,10,22.2,45,21.5,44.7,22.7,42,21.2,45.09,19.79,49.79,15.6,34.0266666667,21.2,41.76,24.5,47.6633333333,20.29,45.4,16.6,749.4666666667,71.3333333333,3.3333333333,40,11.3333333333,20.1550545287,20.1550545287 -90,0,22.2,45.06,21.5,44.9,22.7,42.06,21.2,45.03,19.79,49.79,15.5333333333,34.56,21.2,41.5666666667,24.5,47.59,20.29,45.4666666667,16.5,749.45,71.5,3.5,40,11.3,37.4122420792,37.4122420792 -90,10,22.2,45,21.4266666667,44.8266666667,22.7,42.06,21.2,44.8633333333,19.79,49.8633333333,15.4633333333,34.79,21.2,41.26,24.5,47.73,20.29,45.4333333333,16.4,749.4333333333,71.6666666667,3.6666666667,40,11.2666666667,23.1067482149,23.1067482149 -100,0,22.2,45,21.3566666667,44.79,22.7,42.09,21.2,44.79,19.79,49.8633333333,15.39,35.1966666667,21.2,41.1266666667,24.5666666667,47.8633333333,20.29,45.4333333333,16.3,749.4166666667,71.8333333333,3.8333333333,40,11.2333333333,19.7759791859,19.7759791859 -90,0,22.2,44.9,21.29,44.79,22.76,42.09,21.2,44.7,19.79,49.8633333333,15.3,36,21.2,40.9666666667,24.6,48.2,20.29,45.4,16.2,749.4,72,4,40,11.2,15.5582897016,15.5582897016 -100,0,22.2,44.8266666667,21.26,44.76,22.79,42.09,21.2,44.6175,19.79,49.9,15.3,36.4,21.2,40.9,24.6,48.2,20.29,45.3266666667,16.0833333333,749.3333333333,72.5,3.8333333333,40,11.1666666667,6.2674453249,6.2674453249 -80,0,22.2,44.76,21.2,44.7,22.79,42.03,21.2,44.53,19.79,49.8266666667,15.16,36.83,21.2,40.76,24.6,48.1633333333,20.29,45.4333333333,15.9666666667,749.2666666667,73,3.6666666667,40,11.1333333333,16.3151745684,16.3151745684 -50,10,22.2,44.7,21.1666666667,44.79,22.8233333333,42.03,21.2,44.4,19.79,49.79,15.1,37.2925,21.2,40.7,24.6666666667,48.09,20.29,45.56,15.85,749.2,73.5,3.5,40,11.1,39.8130857851,39.8130857851 -60,0,22.1333333333,44.7,21.1,44.8633333333,22.89,42.09,21.2,44.3266666667,19.79,49.79,15.0333333333,37.7666666667,21.2,40.59,24.6666666667,47.9666666667,20.29,45.73,15.7333333333,749.1333333333,74,3.3333333333,40,11.0666666667,20.4326128005,20.4326128005 -50,0,22.1333333333,44.6266666667,21.1,44.9,22.8233333333,41.9633333333,21.2,44.29,19.79,49.79,15,38.0666666667,21.2,40.53,24.6,47.9666666667,20.29,45.8633333333,15.6166666667,749.0666666667,74.5,3.1666666667,40,11.0333333333,13.5692389682,13.5692389682 -60,0,22.1,44.59,21.0333333333,44.9,22.89,42.0225,21.2,44.23,19.79,49.73,14.9266666667,38.2,21.2,40.4666666667,24.5,48.1566666667,20.29,46,15.5,749,75,3,40,11,31.7536758841,31.7536758841 -70,0,22.1,44.59,21,44.95,22.89,42,21.2,44.2,19.79,49.7,14.9633333333,38.2666666667,21.2,40.4,24.5,48.43,20.29,46,15.4166666667,748.9333333333,75.1666666667,3.3333333333,40,10.95,47.9413733585,47.9413733585 -70,10,22.1,44.59,20.9633333333,45,22.89,41.9666666667,21.2,44.2,19.79,49.7,14.89,38.3266666667,21.2,40.29,24.4633333333,48.6266666667,20.29,46,15.3333333333,748.8666666667,75.3333333333,3.6666666667,40,10.9,5.8357200352,5.8357200352 -60,0,22.1,44.59,20.89,45.06,22.89,41.8266666667,21.2,44.1633333333,19.79,49.73,14.89,38.4666666667,21.2,40.3633333333,24.39,49.0933333333,20.29,46.09,15.25,748.8,75.5,4,40,10.85,0.8356111823,0.8356111823 -60,0,22.1,44.59,20.89,45.2,22.89,41.9,21.1333333333,44.09,19.8566666667,50.1233333333,14.83,38.8,21.1666666667,40.29,24.39,49.3266666667,20.29,46.09,15.1666666667,748.7333333333,75.6666666667,4.3333333333,40,10.8,18.509599485,18.509599485 -60,0,22.1,44.59,20.89,45.26,22.89,41.8266666667,21.1666666667,44.09,19.89,50.4333333333,14.7633333333,39.6966666667,21.1666666667,40.23,24.39,49.4666666667,20.3233333333,46.09,15.0833333333,748.6666666667,75.8333333333,4.6666666667,40,10.75,43.1999337859,43.1999337859 -50,0,22.1,44.59,20.79,45.23,23,41.79,21.1,44.09,19.815,50.3975,14.69,40.2233333333,21.1666666667,40.2,24.39,49.6266666667,20.3233333333,46.1633333333,15,748.6,76,5,40,10.7,34.5862010377,34.5862010377 -60,0,22.0333333333,44.53,20.79,45.29,23,41.79,21.1666666667,44,19.79,50.29,14.4633333333,41.2566666667,21.1,40.2,24.3233333333,49.76,20.3233333333,46.29,14.9666666667,748.5833333333,76.1666666667,5,38.1666666667,10.7,7.0148178027,7.0148178027 -50,10,22,44.4666666667,20.73,45.4,23,41.79,21.1,44,19.79,50.2,14.33,42.33,21.1,40.2,24.3566666667,50.03,20.3233333333,46.29,14.9333333333,748.5666666667,76.3333333333,5,36.3333333333,10.7,21.5569200926,21.5569200926 -70,0,22,44.4666666667,20.73,45.4666666667,23,41.79,21.1,44,19.79,50.1266666667,14.0666666667,44.1333333333,21.1,40.2,24.29,50.2233333333,20.39,46.29,14.9,748.55,76.5,5,34.5,10.7,25.9147297707,25.9147297707 -70,0,22,44.45,20.7,45.53,23,41.79,21.1,44,19.79,50,13.8666666667,45.1333333333,21.1,40.2,24.29,50.45,20.3233333333,46.23,14.8666666667,748.5333333333,76.6666666667,5,32.6666666667,10.7,30.0751536386,30.0751536386 -50,0,22,44.5,20.7,45.59,23,41.79,21.1,44,19.79,50,13.8,45.9933333333,21.1,40.2,24.26,50.4,20.39,46.2,14.8333333333,748.5166666667,76.8333333333,5,30.8333333333,10.7,16.8431852828,16.8431852828 -60,0,21.9266666667,44.5,20.6666666667,45.6633333333,23,41.76,21.1,44,19.79,49.9666666667,13.8,46.4666666667,21.1,40.2,24.2,50.3266666667,20.39,46.26,14.8,748.5,77,5,29,10.7,13.4007569402,13.4007569402 -60,0,22,44.5,20.6,45.6633333333,23,41.76,21.1,44,19.79,49.9,13.8,46.9933333333,21.1,40.2,24.2,50.5,20.39,46.3266666667,14.6,748.5166666667,78,4.6666666667,29,10.7166666667,5.0889920094,5.0889920094 -60,0,21.9266666667,44.5,20.6,45.73,23,41.7,21.1,44,19.79,49.8633333333,13.86,47.6,21.1,40.2,24.1333333333,50.5,20.39,46.4666666667,14.4,748.5333333333,79,4.3333333333,29,10.7333333333,6.6812048666,6.6812048666 -50,0,21.9633333333,44.5,20.5333333333,45.79,23,41.7,21.1,44,19.79,49.79,13.8,47.6566666667,21.1,40.2,24.0666666667,50.56,20.39,46.7666666667,14.2,748.55,80,4,29,10.75,39.9676288594,39.9676288594 -60,0,21.89,44.5,20.5,45.9,23,41.7,21.1,44,19.79,49.79,13.695,48.2225,21.1,40.2,24.0666666667,50.6933333333,20.39,46.9666666667,14,748.5666666667,81,3.6666666667,29,10.7666666667,0.7495363127,0.7495363127 -50,10,21.89,44.5,20.5,45.9666666667,23,41.7,21.1,44,19.79,49.73,13.6,48.7,21.1,40.23,24,50.9633333333,20.39,47.09,13.8,748.5833333333,82,3.3333333333,29,10.7833333333,35.2702969918,35.2702969918 -60,0,21.89,44.5,20.5,46,23.1,41.79,21.1,44,19.79,49.7,13.4633333333,49.1333333333,21.1,40.23,23.9266666667,51.4966666667,20.39,47.1633333333,13.6,748.6,83,3,29,10.8,24.3756958749,24.3756958749 -30,0,21.89,44.5,20.4266666667,46,23.1,41.79,21.1,44,19.79,49.7,13.39,49.6,21.1,40.2,23.89,51.9333333333,20.39,47.23,13.5,748.5833333333,83.8333333333,2.8333333333,28.5,10.85,48.4557348769,48.4557348769 -50,0,21.89,44.56,20.39,46,23.05,41.745,21.1,44,19.79,49.7,13.2633333333,49.9,21.1,40.2,23.89,52.1333333333,20.39,47.3633333333,13.4,748.5666666667,84.6666666667,2.6666666667,28,10.9,19.8639103211,19.8639103211 -40,0,21.89,44.53,20.39,46.1266666667,23,41.7,21.1,44,19.79,49.7,13.13,50.16,21.1,40.2,23.89,52.36,20.39,47.53,13.3,748.55,85.5,2.5,27.5,10.95,33.5832976503,33.5832976503 -40,0,21.89,44.59,20.3233333333,46.2,23,41.7,21.1,44,19.79,49.7,12.8233333333,50.5633333333,21.1,40.2,23.8233333333,52.5,20.39,47.6175,13.2,748.5333333333,86.3333333333,2.3333333333,27,11,35.1739063859,35.1739063859 -60,0,21.8566666667,44.56,20.29,46.2,23,41.7,21.1,44,19.79,49.7,12.63,52.03,21.1,40.2,23.79,52.7666666667,20.39,47.76,13.1,748.5166666667,87.1666666667,2.1666666667,26.5,11.05,11.4066590439,11.4066590439 -60,0,21.79,44.5,20.29,46.26,23,41.7,21.0333333333,43.9,19.79,49.7,12.4333333333,53.3333333333,21.1,40.2,23.79,53.1,20.39,47.8266666667,13,748.5,88,2,26,11.1,14.3965478637,14.3965478637 -50,0,21.79,44.5,20.29,46.29,23,41.7,21.1,43.9666666667,19.79,49.7,12.3,54.5333333333,21,40.09,23.79,53.26,20.39,47.9,12.85,748.45,88.3333333333,2,26,11,1.3953024056,1.3953024056 -60,0,21.79,44.5,20.29,46.3633333333,23,41.76,21.1,44,19.79,49.7,12.16,54.7,21,40.09,23.73,53.1266666667,20.4266666667,47.9633333333,12.7,748.4,88.6666666667,2,26,10.9,47.306146659,47.306146659 -50,0,21.79,44.5,20.26,46.3633333333,23,41.76,21.1,44,19.79,49.7,12.0333333333,55.0333333333,21,40.09,23.7,53.1266666667,20.4266666667,48.03,12.55,748.35,89,2,26,10.8,45.6542007509,45.6542007509 -60,0,21.79,44.5,20.2,46.3633333333,23,41.7,21.0666666667,43.9666666667,19.79,49.7,11.8233333333,56.1666666667,21.05,40.09,23.7,53.1266666667,20.4633333333,48.06,12.4,748.3,89.3333333333,2,26,10.7,35.5556602008,35.5556602008 -60,0,21.79,44.5,20.2,46.4333333333,23,41.79,21,43.9,19.79,49.7,11.63,56.96,21.0666666667,40.09,23.7,53.06,20.39,47.9333333333,12.25,748.25,89.6666666667,2,26,10.6,38.4064521757,38.4064521757 -60,0,21.76,44.59,20.2,46.5,23,41.73,21,43.9,19.79,49.76,11.6666666667,58.7333333333,21.0666666667,40.09,23.7,52.925,20.5,47.9,12.1,748.2,90,2,26,10.5,28.6814792082,28.6814792082 -70,0,21.7,44.59,20.1,46.59,23,41.76,21,43.9,19.79,49.79,11.86,59.9933333333,21,40.09,23.7,52.9,20.5,47.9,12.0833333333,748.1666666667,90.3333333333,2.1666666667,25.5,10.5333333333,45.8182910341,45.8182910341 -60,0,21.7,44.59,20.1,46.6633333333,23,41.7,21,43.9,19.79,49.79,12.13,60.1966666667,21.0666666667,40.06,23.6,52.56,20.39,47.7,12.0666666667,748.1333333333,90.6666666667,2.3333333333,25,10.5666666667,7.4653721065,7.4653721065 -60,0,21.7,44.59,20.1,46.79,23.1,41.79,21,43.9,19.79,49.79,12.19,59.3233333333,21,40.06,23.6,52.4333333333,20.39,47.76,12.05,748.1,91,2.5,24.5,10.6,27.80672519,27.80672519 -50,0,21.7,44.59,20.0333333333,46.73,23.1,41.79,21,43.9,19.79,49.79,12.1,58.395,21,40,23.6,52.26,20.5,48.09,12.0333333333,748.0666666667,91.3333333333,2.6666666667,24,10.6333333333,17.9079878842,17.9079878842 -50,0,21.7,44.59,20,46.7,23.1,41.73,21,43.9,19.79,49.79,11.9633333333,55.1333333333,21,40,23.6,52.2,20.5,48.09,12.0166666667,748.0333333333,91.6666666667,2.8333333333,23.5,10.6666666667,44.4858364528,44.4858364528 -60,0,21.7,44.59,20,46.7,23.1,41.79,21,43.9,19.79,49.79,11.89,52.6,21,39.9666666667,23.5666666667,51.9666666667,20.5,48.2,12,748,92,3,23,10.7,4.2136518285,4.2136518285 -50,0,21.7,44.59,20,46.7,23.1,41.79,21,43.8633333333,19.79,49.79,11.86,51.6233333333,21,39.8266666667,23.5,51.7666666667,20.5,48.2,11.9833333333,748.0166666667,91.3333333333,3.3333333333,25.8333333333,10.5666666667,45.0814850512,45.0814850512 -50,0,21.7,44.59,19.9266666667,46.7,23.1,41.79,21,43.79,19.79,49.73,11.7266666667,51.23,21,39.79,23.5,51.5,20.5,48.2,11.9666666667,748.0333333333,90.6666666667,3.6666666667,28.6666666667,10.4333333333,14.8080747924,14.8080747924 -60,0,21.7,44.53,19.9633333333,46.6633333333,23.1,41.79,21,43.79,19.79,49.7,11.4333333333,50.9633333333,21,39.73,23.5,51.4333333333,20.5,48.1266666667,11.95,748.05,90,4,31.5,10.3,44.7914039483,44.7914039483 -60,0,21.6,44.5,19.89,46.59,23.1,41.79,21,43.79,19.79,49.7,11.3,51.5566666667,21,39.6633333333,23.5,51.3333333333,20.5,48,11.9333333333,748.0666666667,89.3333333333,4.3333333333,34.3333333333,10.1666666667,30.4139191285,30.4139191285 -60,0,21.6,44.4333333333,19.89,46.59,23.1,41.73,21,43.7,19.79,49.7,11.2633333333,51.9,21,39.59,23.4266666667,51.0666666667,20.5,48,11.9166666667,748.0833333333,88.6666666667,4.6666666667,37.1666666667,10.0333333333,41.0224886611,41.0224886611 -60,0,21.6,44.4,19.89,46.59,23.1,41.79,21,43.7,19.79,49.7,11.2633333333,52.0266666667,21,39.5,23.39,50.79,20.5,48,11.9,748.1,88,5,40,9.9,45.2930938103,45.2930938103 -70,0,21.6,44.3266666667,19.8233333333,46.53,23.1,41.73,21,43.6633333333,19.79,49.6633333333,11.3,52,21,39.5,23.39,50.73,20.5,48,11.75,748.1166666667,88,4.5,40,9.75,44.180988532,44.180988532 -50,0,21.6,44.29,19.79,46.4666666667,23.1,41.7,21,43.59,19.79,49.59,11.3,51.9333333333,21,39.4,23.39,50.59,20.5,48.1333333333,11.6,748.1333333333,88,4,40,9.6,21.6155057191,21.6155057191 -60,20,21.6,44.29,19.79,46.4,23.1,41.7,21,43.56,19.79,49.645,11.3,51.9333333333,21,39.4,23.39,50.59,20.5,48.26,11.45,748.15,88,3.5,40,9.45,15.9646344837,15.9646344837 -50,10,21.5,44.36,19.79,46.53,23.1,41.7,21,43.5,19.79,49.6266666667,11.3,52.3933333333,20.9633333333,39.29,23.3566666667,50.53,20.5,48.1266666667,11.3,748.1666666667,88,3,40,9.3,46.3022525772,46.3022525772 -60,0,21.5666666667,44.56,19.73,46.59,23.0333333333,41.6266666667,20.9633333333,43.5,19.79,49.6266666667,11.2633333333,53.4333333333,20.89,39.29,23.29,50.59,20.5333333333,48.1266666667,11.15,748.1833333333,88,2.5,40,9.15,10.5045695789,10.5045695789 -90,20,21.6,44.79,19.7,46.86,22.9633333333,41.5,20.89,43.5,19.79,49.7,11.2633333333,54.36,20.89,39.29,23.29,50.5,20.6,48.2,11,748.2,88,2,40,9,47.5121458527,47.5121458527 -60,10,21.6,44.9925,19.7,47.1933333333,22.89,41.5,20.9633333333,43.5,19.79,49.7,11.16,55.1933333333,20.89,39.29,23.29,50.5,20.5333333333,48.06,11,748.3,88,2.1666666667,40,9.0166666667,8.6619992042,8.6619992042 -210,10,21.6,45.1333333333,19.7,47.36,22.8566666667,41.4666666667,20.9633333333,43.6333333333,19.79,49.7,10.96,55.5266666667,20.89,39.29,23.26,50.43,20.6,47.9333333333,11,748.4,88,2.3333333333,40,9.0333333333,42.2293628799,42.2293628799 -370,10,21.6666666667,45.1633333333,19.7,47.5,22.79,41.4666666667,21,43.7,19.79,49.7,10.86,55.16,20.8566666667,39.29,23.2,50.1725,20.5333333333,47.76,11,748.5,88,2.5,40,9.05,27.8476590756,27.8476590756 -150,30,21.6,45.1633333333,19.7,47.5,22.8233333333,41.4333333333,21,43.7,19.79,49.6266666667,10.7175,55.145,20.8566666667,39.3633333333,23.2,49.86,20.5333333333,47.6266666667,11,748.6,88,2.6666666667,40,9.0666666667,26.0605116724,26.0605116724 -60,10,21.6,45.26,19.7,47.56,22.89,41.5,21,43.745,19.79,49.9,10.63,55.9666666667,20.79,39.4,23.2,49.5266666667,20.5666666667,47.43,11,748.7,88,2.8333333333,40,9.0833333333,3.8054583711,3.8054583711 -90,20,21.6,45.2,19.7,47.59,22.79,41.29,21,43.79,19.79,50.06,10.63,57.0566666667,20.79,39.4,23.2,49.3266666667,20.5666666667,47.23,11,748.8,88,3,40,9.1,41.9844100368,41.9844100368 -70,0,21.6,45.2,19.7,47.59,22.79,41.29,21,43.79,19.79,50.06,10.63,57.8633333333,20.79,39.5,23.1666666667,49.1633333333,20.5,46.93,10.8833333333,748.8666666667,88.3333333333,3.3333333333,40,9.0333333333,10.3936614818,10.3936614818 -80,10,21.6,45.2,19.7,47.56,22.79,41.5,20.9633333333,43.79,19.79,50.23,10.5,58.5266666667,20.79,39.56,23.1,49.03,20.5,46.79,10.7666666667,748.9333333333,88.6666666667,3.6666666667,40,8.9666666667,2.4339926895,2.4339926895 -60,0,21.6,45.26,19.7,47.5,22.79,41.5,20.9633333333,43.79,19.8566666667,50.43,10.5,59.3933333333,20.79,39.59,23.1,48.8633333333,20.5,46.6633333333,10.65,749,89,4,40,8.9,23.0068974546,23.0068974546 -50,10,21.6,45.2,19.7,47.53,22.7,41.5,20.9266666667,43.8266666667,19.9266666667,51.0333333333,10.5,60.1266666667,20.79,39.59,23.0333333333,48.73,20.5,46.53,10.5333333333,749.0666666667,89.3333333333,4.3333333333,40,8.8333333333,27.8226975468,27.8226975468 -70,0,21.6,45.2666666667,19.7,47.7175,22.625,41.425,21,43.9,20,51.7,10.5666666667,60.3333333333,20.79,39.6266666667,23,48.6633333333,20.5,46.3633333333,10.4166666667,749.1333333333,89.6666666667,4.6666666667,40,8.7666666667,26.6090343473,26.6090343473 -250,0,21.5333333333,45.4,19.76,47.7,22.6,41.4,20.89,43.9333333333,20.1,52.3333333333,10.6666666667,60.6266666667,20.79,39.7,23,48.59,20.5,46.24,10.3,749.2,90,5,40,8.7,12.5209170976,12.5209170976 -750,10,21.5333333333,45.4666666667,19.79,47.6633333333,22.6,41.4633333333,20.89,44,20.1,51.7933333333,10.86,60.6266666667,20.79,39.73,23,48.4666666667,20.5,46.03,10.2666666667,749.3,90.3333333333,5,38.1666666667,8.7166666667,23.4202248161,23.4202248161 -530,0,21.5333333333,45.5266666667,19.79,47.59,22.6666666667,42.13,20.89,44,20.1333333333,51.79,11.0333333333,60.16,20.79,39.79,23,48.3266666667,20.5,45.8633333333,10.2333333333,749.4,90.6666666667,5,36.3333333333,8.7333333333,3.7332960055,3.7332960055 -320,10,21.5333333333,45.8266666667,19.79,47.8,22.9266666667,43.0666666667,20.89,44,20.2,51.8633333333,11.16,59.8266666667,20.79,39.8266666667,23,48.36,20.5,45.73,10.2,749.5,91,5,34.5,8.75,12.2615092783,12.2615092783 -270,0,21.6,45.9666666667,19.79,48,23.1933333333,43.6666666667,20.89,44,20.29,51.7966666667,11.5633333333,59.2,20.73,39.8266666667,23,48.5,20.4633333333,45.6333333333,10.1666666667,749.6,91.3333333333,5,32.6666666667,8.7666666667,39.8665302549,39.8665302549 -290,10,21.6,46.39,19.9266666667,48.3266666667,23.5333333333,43.8633333333,20.89,44.06,20.29,51.5225,11.8233333333,56.5933333333,20.79,39.79,23,48.4333333333,20.4633333333,45.5,10.1333333333,749.7,91.6666666667,5,30.8333333333,8.7833333333,6.8454171065,6.8454171065 -300,0,21.6666666667,46.6633333333,20.0666666667,48.4666666667,23.6,43.53,20.9266666667,44.4633333333,20.29,51.4266666667,12.4,55.13,20.79,39.79,22.9266666667,48.5,20.4266666667,45.4,10.1,749.8,92,5,29,8.8,30.0629062578,30.0629062578 -240,10,21.7,46.59,20.2633333333,48.2966666667,23.73,43.4,21,44.7233333333,20.39,50.6233333333,12.9333333333,54.33,20.79,39.745,23,48.5,20.5,45.4,10.25,749.8166666667,90.5,5.3333333333,30.8333333333,8.7,43.2666074601,43.2666074601 -220,10,21.76,46.53,20.53,47.6966666667,23.8566666667,43.2,21,44.79,20.39,50.29,13.6966666667,47.36,20.79,39.59,23,48.4333333333,20.5,45.29,10.4,749.8333333333,89,5.6666666667,32.6666666667,8.6,12.3088417808,12.3088417808 -120,0,21.79,46.3,20.7633333333,47.0333333333,24.0333333333,43,21,44.79,20.39,50.73,14.09,45.2333333333,20.79,39.53,23,48.4666666667,20.5,45.1566666667,10.55,749.85,87.5,6,34.5,8.5,6.0760419932,6.0760419932 -120,10,21.79,45.93,21.0966666667,46.4266666667,24.1666666667,42.7266666667,21.1,44.9666666667,20.4633333333,50.8633333333,14.65,38.245,20.89,39.43,23,48.2666666667,20.5,45.2666666667,10.7,749.8666666667,86,6.3333333333,36.3333333333,8.4,24.6936918236,24.6936918236 -380,0,21.79,45.73,21.46,45.66,24.2,42.1933333333,21.1666666667,44.9,20.4266666667,51.1666666667,15.0333333333,32.4266666667,20.89,39.29,23.15,47.85,20.5,45.4666666667,10.85,749.8833333333,84.5,6.6666666667,38.1666666667,8.3,33.7571991375,33.7571991375 -720,10,21.89,45.9,21.6666666667,45.1333333333,24.1333333333,42,21.245,44.95,20.5666666667,52.76,15.16,30.5666666667,20.89,39.06,23.23,47.4,20.5333333333,45.59,11,749.9,83,7,40,8.2,9.8090508254,9.8090508254 -470,0,21.89,45.9666666667,21.89,44.49,24.1333333333,42.6,21.3233333333,44.79,20.6666666667,55.0666666667,15.0333333333,28.5966666667,20.9633333333,38.86,23.29,47.1,20.5333333333,45.59,11.4,749.9,80.8333333333,7,40,8.1666666667,34.0682234382,34.0682234382 -350,0,22,46.03,21.9633333333,44.03,24.26,43.1333333333,21.39,44.73,20.6666666667,55.1266666667,15.16,26.73,21,38.6633333333,23.365,46.725,20.5333333333,45.4,11.8,749.9,78.6666666667,7,40,8.1333333333,1.5295368154,1.5295368154 -320,0,22.0666666667,46.1633333333,22.1,43.6633333333,24.5333333333,43.26,21.4266666667,44.7,20.76,54.6933333333,15.19,24.4666666667,21,38.4633333333,23.4633333333,46.4333333333,20.6,45.4,12.2,749.9,76.5,7,40,8.1,23.152407899,23.152407899 -260,0,22.1333333333,46.2666666667,22.1666666667,43.53,24.6666666667,43.0666666667,21.5,44.5,20.7,52.6333333333,15.13,22.7333333333,21.1,38.56,23.5333333333,45.96,20.6,45.3633333333,12.6,749.9,74.3333333333,7,40,8.0666666667,38.533558778,38.533558778 -270,0,22.2,46.5266666667,22.23,43.3266666667,24.8233333333,42.7233333333,21.5333333333,44.1333333333,20.6333333333,50.8933333333,15.4666666667,19.8333333333,21.1,38.4333333333,23.6,45.55,20.6,45.29,13,749.9,72.1666666667,7,40,8.0333333333,15.9865383757,15.9865383757 -140,0,22.3233333333,46.4233333333,22.315,43.4,24.9633333333,42.39,21.5333333333,43.86,20.7,50.1666666667,15.7266666667,18.56,21.1333333333,38.2233333333,23.6,45.15,20.6,45.06,13.4,749.9,70,7,40,8,18.2307546958,18.2307546958 -150,10,22.39,45.9633333333,22.39,43.2666666667,25.1,42.1,21.6,43.59,20.7,49.49,15.7266666667,17.6233333333,21.2,37.9633333333,23.6666666667,45,20.6,44.77,13.4333333333,749.8833333333,69.3333333333,7,40,7.8833333333,35.5408911593,35.5408911593 -790,0,22.39,45.5633333333,22.39,42.9666666667,25,41.4333333333,21.6,43.59,20.7,49.3633333333,16,16.7633333333,21.29,37.8633333333,23.7,44.8633333333,20.6,44.4333333333,13.4666666667,749.8666666667,68.6666666667,7,40,7.7666666667,4.0894911741,4.0894911741 -730,0,22.39,45.0966666667,22.4633333333,42.8266666667,25,41.7666666667,21.6333333333,43.5,20.7,49.5,16.0333333333,16.6966666667,21.29,37.73,23.7,44.79,20.6,44.6666666667,13.5,749.85,68,7,40,7.65,25.9126082179,25.9126082179 -380,10,22.5,44.7966666667,22.5,42.56,25.1333333333,42.6933333333,21.7,43.5,20.6333333333,49.4333333333,16.1,16.63,21.29,37.56,23.7675,44.695,20.6,45.3333333333,13.5333333333,749.8333333333,67.3333333333,7,40,7.5333333333,10.8646193636,10.8646193636 -320,10,22.5,44.53,22.5,42.2266666667,25.3266666667,43.1,21.79,43.5,20.6,49.4,16.4933333333,15.5566666667,21.29,37.4333333333,23.84,44.545,20.7,46.2,13.5666666667,749.8166666667,66.6666666667,7,40,7.4166666667,13.5431177332,13.5431177332 -360,0,22.5,43.5633333333,22.5,41.1,25.5333333333,43.06,21.79,43.36,20.6,49.1333333333,16.76,15.9633333333,21.39,37.1633333333,23.8718181818,44.2845454545,20.7,46.0666666667,13.6,749.8,66,7,40,7.3,36.5688873339,36.5688873339 -280,10,22.4266666667,42.5633333333,22.36,40.36,25.6666666667,42.86,21.7,42.7666666667,20.7,47.65,16.8266666667,15.2966666667,21.39,37.03,23.89,43.936,20.7,45.6,13.85,749.7833333333,64.8333333333,7,40,7.25,23.5463015269,23.5463015269 -320,10,22.39,42.33,22.3233333333,40.2,25.7,41.9333333333,21.6333333333,42.4333333333,20.6333333333,47.2,16.9666666667,15.1633333333,21.445,37,23.89,43.6266666667,20.7,45.2666666667,14.1,749.7666666667,63.6666666667,7,40,7.2,19.5712351706,19.5712351706 -270,0,22.4633333333,42.9233333333,22.4633333333,40.3333333333,25.76,40.9933333333,21.7,42.4666666667,20.7,47.26,17.29,12.23,21.5333333333,36.76,24,43.4,20.73,45.06,14.35,749.75,62.5,7,40,7.15,13.4044535575,13.4044535575 -180,10,22.6,43.4,22.5,40.6266666667,25.8233333333,40.0933333333,21.7,42.3266666667,20.79,47.5666666667,17.29,12.8233333333,21.6,36.6266666667,24.0666666667,43.4,20.73,44.9333333333,14.6,749.7333333333,61.3333333333,7,40,7.1,47.2617853899,47.2617853899 -110,10,22.625,43.525,22.5,40.8333333333,25.89,39.5,21.7,42.29,20.79,47.5666666667,17.295,12.29,21.6333333333,36.59,24.1333333333,43.29,20.7,44.76,14.85,749.7166666667,60.1666666667,7,40,7.05,18.8476478099,18.8476478099 -560,0,22.7,43.6266666667,22.5,41.03,25.7266666667,38.99,21.7,42.29,20.79,47.7666666667,17.3,11.86,21.7,36.59,24.2,43.23,20.7,44.6266666667,15.1,749.7,59,7,40,7,22.0220447052,22.0220447052 -630,10,22.79,43.46,22.5666666667,41.09,25.6,38.99,21.7,42.29,20.79,47.9,17.5666666667,12.1333333333,21.79,36.3633333333,24.29,43.26,20.7,44.5,15.1,749.65,59.3333333333,7,40,7.1,44.0336834756,44.0336834756 -400,10,22.79,42.9266666667,22.5,40.8333333333,25.6633333333,39.9933333333,21.73,42.29,20.89,47.5933333333,17.89,11.83,21.8566666667,36.29,24.315,43.095,20.7,44.36,15.1,749.6,59.6666666667,7,40,7.2,46.7311981251,46.7311981251 -300,0,22.79,41.7333333333,22.4266666667,40.0266666667,25.93,40.86,21.73,42.29,20.89,46.5333333333,17.8233333333,11.89,21.89,36.1633333333,24.39,42.9333333333,20.79,44.26,15.1,749.55,60,7,40,7.3,22.02720145,22.02720145 -310,10,22.73,40.9266666667,22.26,39.26,26.1333333333,41.06,21.7,41.99,20.79,45.3333333333,17.2933333333,10.3333333333,21.89,36.03,24.5,42.8633333333,20.79,44.2,15.1,749.5,60.3333333333,7,40,7.4,33.0496076844,33.0496076844 -320,0,22.7,40.9333333333,22.26,39.26,26.26,40.86,21.6333333333,41.5966666667,20.79,45.06,17.1,10.6666666667,21.79,35.9333333333,24.5,42.79,20.73,44.06,15.1,749.45,60.6666666667,7,40,7.5,9.3441732228,9.3441732228 -270,10,22.76,42.1333333333,22.29,39.5966666667,26.2,39.7333333333,21.6333333333,41.5,20.8233333333,45.4633333333,16.8566666667,10.5566666667,21.79,36,24.5,42.6633333333,20.79,43.9333333333,15.1,749.4,61,7,40,7.6,11.5117217763,11.5117217763 -210,0,22.89,43.1333333333,22.29,40.0633333333,26.1333333333,39.2666666667,21.7,41.76,20.89,45.59,16.73,11.1633333333,21.79,36.1266666667,24.5,42.59,20.7,43.8633333333,15.0166666667,749.3666666667,60.6666666667,7,40,7.45,31.2381003168,31.2381003168 -100,0,22.89,43.4666666667,22.29,40.545,26.23,39,21.6,41.9,20.89,45.6266666667,16.7266666667,10.8,21.79,36.2,24.6,42.56,20.7,43.6566666667,14.9333333333,749.3333333333,60.3333333333,7,40,7.3,2.682637074,2.682637074 -720,10,23,43.8333333333,22.26,40.76,26.2425,38.8975,21.6666666667,41.9666666667,20.89,45.7,16.46,11.6666666667,21.79,36.3266666667,24.6,42.5,20.79,43.545,14.85,749.3,60,7,40,7.15,38.0871954956,38.0871954956 -900,0,23,43.1666666667,22.2,40.4266666667,26.1,38.93,21.6,41.5266666667,20.89,45.8333333333,16.83,12.73,21.79,36.4666666667,24.6666666667,42.5266666667,20.7,43.3333333333,14.7666666667,749.2666666667,59.6666666667,7,40,7,15.1051534805,15.1051534805 -760,0,22.9266666667,43,22.29,40.4333333333,26.1666666667,39.3333333333,21.5333333333,41.4,20.89,45.7,17.69,11.2633333333,21.8233333333,36.5,24.6666666667,42.4,20.7,43.26,14.6833333333,749.2333333333,59.3333333333,7,40,6.85,33.4166647517,33.4166647517 -700,0,23,44.3933333333,22.29,40.9666666667,26.1666666667,39.26,21.5666666667,41.5966666667,20.9266666667,46.1,17.9,8.59,21.89,36.5,24.79,42.26,20.79,43.1633333333,14.6,749.2,59,7,40,6.7,44.0771145979,44.0771145979 -660,0,23.0333333333,46.5933333333,22.29,42.8333333333,26.4266666667,39.7266666667,21.5666666667,42.1233333333,21,47.1666666667,17.4933333333,8.8633333333,21.9266666667,36.4633333333,24.79,42.0666666667,20.79,43.1633333333,14.7166666667,749.15,58.1666666667,6.6666666667,40,6.6,16.111725301,16.111725301 -440,0,23.1,48.6666666667,22.29,44.6266666667,26.5,40.2666666667,21.6,43.3333333333,21,48.99,17.1333333333,9.4933333333,21.9266666667,36.59,24.8233333333,42,20.76,43.09,14.8333333333,749.1,57.3333333333,6.3333333333,40,6.5,29.1504222085,29.1504222085 -450,10,23.3233333333,49.7566666667,22.29,46.2333333333,26.6333333333,40.73,21.6666666667,44.6666666667,21.025,50.7975,16.8,11.0333333333,21.89,36.59,24.89,42,20.76,43.03,14.95,749.05,56.5,6,40,6.4,16.6052886052,16.6052886052 -310,20,23.39,49.09,22.29,46.8333333333,26.7,40.99,21.7,45.3966666667,21.1,51.4666666667,16.4966666667,12.8966666667,21.89,36.5225,24.9266666667,41.9,20.76,43,15.0666666667,749,55.6666666667,5.6666666667,40,6.3,20.8913165494,20.8913165494 -330,20,23.4266666667,49.6633333333,22.29,47.4566666667,26.7,41.09,21.7,46.1966666667,21.1,51.6933333333,15.9633333333,16.2966666667,21.89,36.6333333333,24.9266666667,41.9666666667,20.7,43.06,15.1833333333,748.95,54.8333333333,5.3333333333,40,6.2,17.1588727157,17.1588727157 -270,30,23.5,49.47,22.29,47.8633333333,26.6333333333,40.9633333333,21.8233333333,46.9633333333,21.1666666667,51.9,15.8,16.6266666667,21.89,36.7,25,42.1266666667,20.73,43.09,15.3,748.9,54,5,40,6.1,6.6285076085,6.6285076085 -260,20,23.5,49.03,22.29,47.7233333333,26.4633333333,40.6,21.89,47.03,21.2,51.6,15.77,15.95,21.89,36.7,25,42.2,20.73,43.1633333333,14.7666666667,748.9333333333,57.1666666667,5.6666666667,40,6.3,23.4859691584,23.4859691584 -260,30,23.5,48.49,22.23,47.53,26.2633333333,40.4,22,47,21.2,51.2666666667,15.1666666667,18.1666666667,21.89,36.73,25,42.2,20.73,43.2,14.2333333333,748.9666666667,60.3333333333,6.3333333333,40,6.5,48.3462437871,48.3462437871 -260,10,23.5,48.1566666667,22.2,47.3633333333,26.0666666667,40.4333333333,22.1333333333,47,21.2,50.93,14.53,21.3333333333,21.89,36.93,25,42.26,20.73,43.2,13.7,749,63.5,7,40,6.7,16.2758000894,16.2758000894 -270,0,23.5,47.9333333333,22.2,47.29,25.9266666667,40.1666666667,22.2,46.6666666667,21.2,50.73,14.53,22.4,21.89,37.1566666667,25,42.53,20.7,43.23,13.1666666667,749.0333333333,66.6666666667,7.6666666667,40,6.9,12.122623052,12.122623052 -280,0,23.5,48,22.2,47.4333333333,25.8566666667,40.09,22.2,46.16,21.23,50.7,14.83,21.8,21.89,37.3633333333,24.9725,42.695,20.7,43.3633333333,12.6333333333,749.0666666667,69.8333333333,8.3333333333,40,7.1,14.0947692096,14.0947692096 -150,10,23.5333333333,48.0966666667,22.2,47.56,25.73,40.1633333333,22.1333333333,45.6933333333,21.29,50.76,15.03,20.8,21.89,37.4,24.9633333333,42.8633333333,20.79,43.4,12.1,749.1,73,9,40,7.3,40.5753952917,40.5753952917 -120,0,23.6,48.23,22.2,47.9933333333,25.6666666667,40.3266666667,22.1,45.1,21.29,50.89,15.19,19.5933333333,21.89,37.45,24.9633333333,42.8333333333,20.79,43.4,12.3,749.0833333333,73.6666666667,7.8333333333,40,7.65,44.8555892799,44.8555892799 -150,0,23.6,48.0966666667,22.1333333333,48.6,25.6,40.4,22.1,44.6933333333,21.29,51.1633333333,15.13,19.1333333333,21.89,37.4,24.89,42.6266666667,20.79,43.4,12.5,749.0666666667,74.3333333333,6.6666666667,40,8,39.5011917339,39.5011917339 -140,10,23.6,49.23,22.1,48.56,25.6,40.4333333333,22.1,44.3333333333,21.29,51.0266666667,14.86,19.3233333333,21.8233333333,37.3266666667,24.89,42.6266666667,20.79,43.3266666667,12.7,749.05,75,5.5,40,8.35,45.3148279921,45.3148279921 -190,0,23.6666666667,49.4933333333,22.075,48.425,25.6,40.56,22.1,44.26,21.4966666667,61.0266666667,14.7266666667,19.6566666667,21.79,37.3266666667,24.9633333333,42.7,20.79,43.29,12.9,749.0333333333,75.6666666667,4.3333333333,40,8.7,31.8089094129,31.8089094129 -120,0,23.6,48.4333333333,22,47.9266666667,25.4633333333,40.59,22,44.36,21.6,68.6933333333,14.3966666667,20.1633333333,21.79,37.4,25.0333333333,42.73,20.79,43.4,13.1,749.0166666667,76.3333333333,3.1666666667,40,9.05,36.389348167,36.389348167 -120,0,23.5666666667,47.66,21.89,47.6633333333,25.365,40.6725,22,44.5,21.5333333333,68.9666666667,13.99,20.7633333333,21.79,37.5666666667,25.1,42.8633333333,20.73,43.4,13.3,749,77,2,40,9.4,45.5564344535,45.5564344535 -90,0,23.5,47.2666666667,21.89,47.53,25.23,40.76,22,44.59,21.4633333333,68.8966666667,13.5,21.4,21.79,37.7,25.1,42.8333333333,20.76,43.4,13.1833333333,748.9833333333,76.3333333333,1.8333333333,40,9.1333333333,17.9316293099,17.9316293099 -110,0,23.5,46.8333333333,21.79,47.4,25.2,40.79,22,44.6633333333,21.39,68.23,13.1,22.7333333333,21.76,37.79,25.1,42.6266666667,20.7,43.4,13.0666666667,748.9666666667,75.6666666667,1.6666666667,40,8.8666666667,13.1028818199,13.1028818199 -100,0,23.5,46.6266666667,21.73,47.4666666667,25.1333333333,40.79,22,44.7,21.29,67.1333333333,12.3966666667,25.1,21.7,37.79,24.9633333333,42.4666666667,20.7,43.4,12.95,748.95,75,1.5,40,8.6,48.6995994346,48.6995994346 -110,0,23.5,46.3633333333,21.7,47.3633333333,25,40.8633333333,22,44.7,21.2225,66.375,11.99,27.1,21.7,37.79,24.8233333333,42.2666666667,20.7,43.4,12.8333333333,748.9333333333,74.3333333333,1.3333333333,40,8.3333333333,45.9540431271,45.9540431271 -100,0,23.4266666667,46.0966666667,21.6333333333,47.23,25,40.79,22,44.7,21.2,63.0266666667,11.53,30.46,21.7,37.79,24.76,42.09,20.7,43.5,12.7166666667,748.9166666667,73.6666666667,1.1666666667,40,8.0666666667,47.3846475245,47.3846475245 -90,0,23.39,45.9666666667,21.6,47.2,24.89,40.79,22,44.6266666667,21.2,58.1933333333,11.2566666667,32.5933333333,21.6333333333,37.73,24.7,42.03,20.7,43.56,12.6,748.9,73,1,40,7.8,44.5333747542,44.5333747542 -100,0,23.39,45.9,21.5333333333,47.2,24.89,40.79,21.89,44.59,21.2,56.06,10.9,35,21.6,37.7,24.6,41.79,20.7,43.7,12.2166666667,748.95,75.5,1,40,7.9,36.8120666943,36.8120666943 -90,0,23.34,45.645,21.5,47.23,24.8233333333,40.6266666667,21.9633333333,44.53,21.26,54.2566666667,10.69,36.8933333333,21.6,37.7,24.5333333333,41.79,20.7,43.76,11.8333333333,749,78,1,40,8,30.7800806011,30.7800806011 -100,0,23.29,45.59,21.4266666667,47.29,24.8233333333,40.6266666667,21.89,44.5,21.26,53.13,10.63,39.0266666667,21.6,37.7,24.4633333333,41.76,20.7,43.9,11.45,749.05,80.5,1,40,8.1,41.7684390442,41.7684390442 -80,0,23.29,45.53,21.39,47.4,24.6666666667,40.59,21.89,44.5,21.29,52.1233333333,10.4633333333,40.59,21.6,37.7,24.39,41.7,20.7,43.7666666667,11.0666666667,749.1,83,1,40,8.2,49.9315951369,49.9315951369 -100,10,23.29,45.4,21.3233333333,47.4,24.6,40.59,21.89,44.4333333333,21.23,51.3966666667,10.33,40.7966666667,21.5666666667,37.7,24.39,41.6633333333,20.7,43.6,10.6833333333,749.15,85.5,1,40,8.3,39.7581667057,39.7581667057 -80,0,23.29,45.4666666667,21.29,47.4,24.5333333333,40.6266666667,21.89,44.5,21.9266666667,68.8633333333,10.16,41.0666666667,21.5,37.6266666667,24.3233333333,41.8633333333,20.7,43.4666666667,10.3,749.2,88,1,40,8.4,27.0417620544,27.0417620544 -60,0,23.2,45.6266666667,21.23,47.3266666667,24.6,40.6266666667,21.8233333333,44.4333333333,22.9266666667,85.3966666667,10.1,41.8,21.6,38.33,24.26,42.0266666667,20.7,43.86,10.2166666667,749.2,88.6666666667,1.1666666667,38.1666666667,8.4166666667,18.9559129649,18.9559129649 -50,0,23.2,45.7,21.1666666667,47.1633333333,24.6,40.59,21.79,44.4,22.4966666667,84.8333333333,10.0666666667,42.3966666667,21.6666666667,38.7966666667,24.2675,43.1225,20.76,44.06,10.1333333333,749.2,89.3333333333,1.3333333333,36.3333333333,8.4333333333,19.0090804477,19.0090804477 -70,0,23.1,45.6633333333,21.1,47.09,24.6,40.59,21.79,44.3266666667,22.23,85.0933333333,10.0666666667,42.99,21.7,39.1566666667,24.29,43.8633333333,20.76,44.23,10.05,749.2,90,1.5,34.5,8.45,0.9316875017,0.9316875017 -60,0,23.1,45.53,21,46.9333333333,24.6,40.56,21.79,44.2,22.0666666667,85.5633333333,10.1,43.5966666667,21.7,39.43,24.29,44.4633333333,20.76,44.3633333333,9.9666666667,749.2,90.6666666667,1.6666666667,32.6666666667,8.4666666667,30.4694655701,30.4694655701 -60,0,23.0666666667,45.3633333333,21,47,24.6,40.5,21.79,44.1266666667,22,85.8966666667,10.0333333333,43.79,21.7,39.7666666667,24.29,44.7966666667,20.7,44.45,9.8833333333,749.2,91.3333333333,1.8333333333,30.8333333333,8.4833333333,16.9221225195,16.9221225195 -60,0,23,45.23,20.89,47,24.6,40.4666666667,21.79,44.09,21.89,86.1233333333,10,43.7666666667,21.7,39.9666666667,24.26,45.23,20.76,44.53,9.8,749.2,92,2,29,8.5,3.3406111179,3.3406111179 -80,0,22.9633333333,45.09,20.79,46.9333333333,24.6,40.4,21.73,44.03,21.89,86.19,10,44.2333333333,21.7,40.23,24.2,45.6966666667,20.76,44.59,9.85,749.1833333333,91,1.8333333333,30.8333333333,8.4,4.6758258366,4.6758258366 -80,0,22.89,45.03,20.79,47,24.6,40.45,21.7,43.9,21.79,86.1266666667,9.89,44.7566666667,21.7,40.3633333333,24.29,46.09,20.73,44.7,9.9,749.1666666667,90,1.6666666667,32.6666666667,8.3,5.7905649883,5.7905649883 -70,0,22.8566666667,44.93,20.7,47,24.6,40.4,21.7,43.8266666667,21.73,85.7266666667,9.83,45.2966666667,21.7,40.5,24.29,46.09,20.73,44.76,9.95,749.15,89,1.5,34.5,8.2,22.0179791446,22.0179791446 -80,0,22.79,44.79,20.6333333333,46.9333333333,24.5333333333,40.4,21.7,43.76,21.6666666667,84.4966666667,9.69,45.9,21.7,40.6266666667,24.29,46.09,20.79,44.79,10,749.1333333333,88,1.3333333333,36.3333333333,8.1,8.9516339474,8.9516339474 -70,0,22.79,44.7,20.6,47,24.5,40.4,21.7,43.7,21.6,82.8966666667,9.63,45.9666666667,21.7,40.6633333333,24.3566666667,46.09,20.73,44.8633333333,10.05,749.1166666667,87,1.1666666667,38.1666666667,8,29.7931228648,29.7931228648 -60,0,22.79,44.6266666667,20.5333333333,47,24.5,40.4,21.6666666667,43.6333333333,21.5,80.6233333333,9.6,46.5,21.7,40.59,24.39,46.1933333333,20.7,44.9333333333,10.1,749.1,86,1,40,7.9,27.7362661087,27.7362661087 -70,0,22.7,44.56,20.5,47,24.5,40.4,21.6,43.5,21.5,78.3725,9.6,46.3425,21.7,40.59,24.39,46.4666666667,20.7,45,9.9333333333,749.0666666667,87,1,37.8333333333,7.8833333333,45.0299807359,45.0299807359 -60,0,22.7,44.5,20.4266666667,46.9333333333,24.5,40.4,21.6,43.4666666667,21.4266666667,76.1266666667,9.6,47.03,21.7,40.5,24.39,46.56,20.79,45.03,9.7666666667,749.0333333333,88,1,35.6666666667,7.8666666667,7.5049792067,7.5049792067 -60,0,22.7,44.4666666667,20.39,46.9,24.5333333333,40.4,21.6,43.3266666667,21.39,73.59,9.6,47.29,21.7,40.56,24.39,46.56,20.73,45.09,9.6,749,89,1,33.5,7.85,49.5327215642,49.5327215642 -60,0,22.7,44.4,20.3233333333,46.9666666667,24.6,40.4666666667,21.6,43.29,21.3233333333,71.73,9.5333333333,47.29,21.7,40.7,24.39,46.6266666667,20.79,45.1633333333,9.4333333333,748.9666666667,90,1,31.3333333333,7.8333333333,16.0661971895,16.0661971895 -70,0,22.6333333333,44.2666666667,20.29,47,24.6,40.59,21.6,43.2225,21.29,69.7666666667,9.5,47.9666666667,21.7,40.7,24.3233333333,46.7,20.79,45.1633333333,9.2666666667,748.9333333333,91,1,29.1666666667,7.8166666667,37.5794046558,37.5794046558 -60,0,22.6,44.2,20.29,47,24.6,40.59,21.5333333333,43.1266666667,21.29,68.8266666667,9.5,48.6933333333,21.7,40.7,24.29,46.7666666667,20.79,45.23,9.1,748.9,92,1,27,7.8,24.6155596571,24.6155596571 -60,0,22.6,44.2,20.2,46.9333333333,24.7,40.73,21.5333333333,43.1633333333,21.2,67.5233333333,9.5333333333,49.7666666667,21.7,40.76,24.29,47.3,20.79,45.29,9.05,748.9,92,1,26.1666666667,7.7666666667,14.1285527498,14.1285527498 -50,0,22.6,44.09,20.2,47,24.7,40.79,21.5333333333,43.09,21.2,66.8566666667,9.66,50.9666666667,21.7,40.9,24.29,47.53,20.79,45.29,9,748.9,92,1,25.3333333333,7.7333333333,43.5110193328,43.5110193328 -60,0,22.6,44.09,20.2,47.09,24.7,40.79,21.5666666667,43,21.2,66.2,9.69,50.4966666667,21.7,40.9,24.29,47.6633333333,20.79,45.3633333333,8.95,748.9,92,1,24.5,7.7,32.5428127777,32.5428127777 -50,0,22.5666666667,44.09,20.1333333333,47.09,24.7,40.79,21.5,43.06,21.2,65.7266666667,9.63,50.09,21.7,40.76,24.245,47.645,20.79,45.4,8.9,748.9,92,1,23.6666666667,7.6666666667,29.830936552,29.830936552 -60,0,22.5,44.09,20.1,47.1266666667,24.7,40.9333333333,21.5,43,21.2,65.23,9.4633333333,49.79,21.7,40.7,24.2,47.59,20.79,45.4666666667,8.85,748.9,92,1,22.8333333333,7.6333333333,48.4250173322,48.4250173322 -50,0,22.5,44.09,20.1,47.2,24.7,40.9333333333,21.5,43,21.2,65.03,9.33,49.3966666667,21.7,40.73,24.2,47.59,20.79,45.545,8.8,748.9,92,1,22,7.6,38.0832465948,38.0832465948 -70,0,22.5,44.09,20.1,47.245,24.7,40.9666666667,21.5,42.9666666667,21.1666666667,64.7966666667,9.0666666667,49.29,21.7,40.8633333333,24.2,47.76,20.79,45.59,9.0833333333,748.9,90,1.1666666667,25,7.5166666667,3.1462743413,3.1462743413 -60,0,22.5,44,20,47.2,24.7,40.9666666667,21.5,42.9,21.1,64.3233333333,9,49.6233333333,21.73,41.03,24.1333333333,47.7,20.79,45.6633333333,9.3666666667,748.9,88,1.3333333333,28,7.4333333333,5.4180485313,5.4180485313 -60,0,22.5,44,20,47.2,24.7,41,21.5,42.9,21.1,63.66,8.86,50.1333333333,21.79,41.1633333333,24.1,47.6266666667,20.79,45.7,9.65,748.9,86,1.5,31,7.35,18.8875748427,18.8875748427 -60,0,22.39,43.9,19.9633333333,47.2,24.7225,41,21.5,42.9,21.1,63.1333333333,8.8,50.66,21.79,41.29,24.0333333333,47.76,20.79,45.7,9.9333333333,748.9,84,1.6666666667,34,7.2666666667,7.538039342,7.538039342 -60,0,22.39,43.9,19.89,47.2,24.79,41,21.4633333333,42.8633333333,21.1,62.6,8.83,51.6,21.79,41.3633333333,24,47.9333333333,20.79,45.79,10.2166666667,748.9,82,1.8333333333,37,7.1833333333,19.3289813702,19.3289813702 -70,0,22.39,43.8633333333,19.89,47.2,24.79,40.9666666667,21.39,42.79,21.1,62.1333333333,8.9175,52.4475,21.79,41.3266666667,24,48.1333333333,20.79,45.79,10.5,748.9,80,2,40,7.1,17.3338938621,17.3338938621 -50,0,22.39,43.79,19.89,47.26,24.79,40.9666666667,21.4633333333,42.79,21.0666666667,61.5633333333,9,53.0633333333,21.79,41.3266666667,23.9633333333,48.3266666667,20.79,45.79,10.3166666667,748.9166666667,81.3333333333,1.8333333333,40,7.1666666667,10.3586135083,10.3586135083 -60,0,22.39,43.79,19.8566666667,47.26,24.79,41,21.39,42.79,21,61.0966666667,9.1,53.8,21.79,41.4333333333,23.89,48.4,20.79,45.79,10.1333333333,748.9333333333,82.6666666667,1.6666666667,40,7.2333333333,16.3285929477,16.3285929477 -50,0,22.39,43.79,19.79,47.26,24.79,41,21.39,42.7,21,60.55,9.16,54.06,21.79,41.595,23.9633333333,48.53,20.8566666667,45.9,9.95,748.95,84,1.5,40,7.3,44.6532573667,44.6532573667 -60,0,22.29,43.79,19.79,47.29,24.7,41,21.39,42.7,21,60.0266666667,9.19,54.1933333333,21.79,41.76,23.89,48.6633333333,20.79,45.9,9.7666666667,748.9666666667,85.3333333333,1.3333333333,40,7.3666666667,20.1813981752,20.1813981752 -50,0,22.29,43.79,19.79,47.29,24.7,41,21.39,42.7,21,59.7666666667,9.2633333333,54.66,21.76,41.9,23.89,48.79,20.79,45.9,9.5833333333,748.9833333333,86.6666666667,1.1666666667,40,7.4333333333,31.36433576,31.36433576 -60,0,22.29,43.79,19.79,47.3266666667,24.7,41,21.39,42.7,21,59.49,9.4266666667,54.79,21.7,41.8266666667,23.89,48.79,20.79,45.9666666667,9.4,749,88,1,40,7.5,41.0863079829,41.0863079829 -60,0,22.29,43.79,19.73,47.4,24.7,41,21.39,42.7,21,59.23,9.5,54.6566666667,21.76,41.73,23.8566666667,48.7233333333,20.8233333333,46.0666666667,9.55,748.9833333333,87.3333333333,1,40,7.5166666667,12.6347727375,12.6347727375 -70,0,22.23,43.73,19.7,47.4,24.7,41,21.39,42.7,20.89,59.0266666667,9.6,54.2966666667,21.76,41.79,23.8566666667,48.6633333333,20.8233333333,46.1266666667,9.7,748.9666666667,86.6666666667,1,40,7.5333333333,46.6470816405,46.6470816405 -60,0,22.2,43.7,19.7,47.4,24.7,41,21.39,42.7,20.89,58.8266666667,9.6,54.09,21.79,41.79,23.79,48.5,20.79,46.1266666667,9.85,748.95,86,1,40,7.55,6.0166412615,6.0166412615 -60,0,22.2,43.7,19.7,47.5,24.7,41,21.29,42.7,20.89,58.5266666667,9.63,54.5666666667,21.79,41.73,23.79,48.4333333333,20.8566666667,46.26,10,748.9333333333,85.3333333333,1,40,7.5666666667,30.5424833903,30.5424833903 -60,0,22.2,43.76,19.7,47.5,24.7,41,21.29,42.7,20.89,58.3266666667,9.7633333333,54.6266666667,21.79,41.8266666667,23.79,48.26,20.8566666667,46.26,10.15,748.9166666667,84.6666666667,1,40,7.5833333333,31.3212768524,31.3212768524 -60,0,22.2,43.7,19.7,47.5,24.7,41,21.29,42.7,20.89,58.1633333333,9.8,54.1933333333,21.79,41.9666666667,23.79,48.2,20.79,46.2,10.3,748.9,84,1,40,7.6,24.1857562913,24.1857562913 -60,0,22.2,43.73,19.6333333333,47.4333333333,24.7,41,21.29,42.7,20.89,58.03,9.7266666667,53.86,21.79,42.06,23.79,48.145,20.79,46.23,10.3333333333,748.8833333333,83.6666666667,1.3333333333,40,7.5833333333,1.1550370255,1.1550370255 -50,0,22.2,43.79,19.6333333333,47.4333333333,24.7,41,21.29,42.7,20.89,57.8333333333,9.6,53.56,21.79,41.9333333333,23.76,48.2,20.815,46.3175,10.3666666667,748.8666666667,83.3333333333,1.6666666667,40,7.5666666667,24.3346453062,24.3346453062 -50,0,22.2,43.79,19.625,47.5,24.7,41,21.29,42.7,20.89,57.7,9.6,53.5,21.79,41.8633333333,23.7,48.2,20.89,46.4,10.4,748.85,83,2,40,7.55,5.116038525,5.116038525 -50,0,22.1333333333,43.79,19.6,47.5,24.7,41,21.29,42.7,20.89,57.5266666667,9.6,53.53,21.73,41.79,23.7,48.1633333333,20.8566666667,46.4,10.4333333333,748.8333333333,82.6666666667,2.3333333333,40,7.5333333333,12.6594329486,12.6594329486 -60,0,22.1666666667,43.79,19.6,47.5,24.7,41,21.29,42.7,20.89,57.3266666667,9.6,53.6633333333,21.73,41.79,23.7,48.09,20.79,46.3266666667,10.4666666667,748.8166666667,82.3333333333,2.6666666667,40,7.5166666667,42.5921194372,42.5921194372 -60,0,22.1,43.79,19.6,47.5,24.7,41,21.29,42.7,20.89,57.29,9.645,53.745,21.79,41.79,23.7,48.06,20.89,46.5,10.5,748.8,82,3,40,7.5,41.3443099009,41.3443099009 -60,0,22.1,43.79,19.6,47.5,24.6,41,21.29,42.7,20.8233333333,57.1566666667,9.69,53.86,21.76,41.79,23.7,47.9333333333,20.89,46.5,10.4,748.8,83,2.8333333333,40,7.5833333333,17.5897085923,17.5897085923 -60,0,22.1,43.79,19.6,47.56,24.6666666667,41,21.29,42.7,20.79,57,9.69,54.1333333333,21.76,41.79,23.7,47.8633333333,20.8566666667,46.4666666667,10.3,748.8,84,2.6666666667,40,7.6666666667,21.7373220017,21.7373220017 -60,0,22.1,43.79,19.6,47.53,24.6333333333,40.9333333333,21.29,42.7,20.79,56.9333333333,9.8,54.29,21.79,41.9,23.7,47.79,20.8566666667,46.5266666667,10.2,748.8,85,2.5,40,7.75,42.802387441,42.802387441 -60,0,22.1,43.8633333333,19.5333333333,47.59,24.7,41,21.26,42.6633333333,20.79,56.745,9.8,54.23,21.7675,41.9,23.7,47.76,20.79,46.5666666667,10.1,748.8,86,2.3333333333,40,7.8333333333,39.2686703242,39.2686703242 -60,0,22.1,43.9,19.5,47.59,24.7,41,21.2,42.59,20.79,56.59,9.86,54.1333333333,21.7,41.9666666667,23.7,47.7,20.8566666667,46.76,10,748.8,87,2.1666666667,40,7.9166666667,10.8576956205,10.8576956205 -60,0,22.1,43.9,19.5,47.6633333333,24.7,41,21.2,42.59,20.79,56.59,9.8,53.86,21.73,42,23.6666666667,47.6333333333,20.89,46.7,9.9,748.8,88,2,40,8,1.118599961,1.118599961 -50,10,22,43.79,19.5,47.7,24.6,40.9333333333,21.2,42.59,20.79,56.3633333333,9.69,53.79,21.79,42,23.6666666667,47.56,20.89,46.7,9.85,748.8166666667,88.6666666667,1.8333333333,40,8.0666666667,29.2501400108,29.2501400108 -60,0,22,43.845,19.5,47.7,24.6,41,21.2,42.59,20.79,56.29,9.69,53.93,21.76,42.0666666667,23.6333333333,47.53,20.89,46.9333333333,9.8,748.8333333333,89.3333333333,1.6666666667,40,8.1333333333,13.1773235509,13.1773235509 -60,20,22,44.1233333333,19.5,47.7666666667,24.6,40.9666666667,21.2,42.6266666667,20.79,56.16,9.6,54.1933333333,21.76,42.3333333333,23.6333333333,47.4633333333,20.89,46.9333333333,9.75,748.85,90,1.5,40,8.2,12.5864789705,12.5864789705 -70,20,22,44.26,19.5,48.1,24.5333333333,40.8266666667,21.2,42.8333333333,20.79,55.8266666667,9.6,54.4666666667,21.79,42.6633333333,23.6,47.3633333333,20.89,46.9333333333,9.7,748.8666666667,90.6666666667,1.3333333333,40,8.2666666667,43.4796880931,43.4796880931 -60,30,22.0666666667,44.26,19.5,48.4333333333,24.4633333333,40.5633333333,21.23,43.39,20.79,55.6633333333,9.6,54.86,21.79,42.59,23.6,47.29,20.9633333333,47,9.65,748.8833333333,91.3333333333,1.1666666667,40,8.3333333333,10.274925339,10.274925339 -60,20,22.0333333333,44.4633333333,19.5,48.56,24.39,40.29,21.29,43.59,20.79,55.53,9.66,55.1333333333,21.79,42.2966666667,23.5,47.2,20.89,46.8633333333,9.6,748.9,92,1,40,8.4,10.2220023284,10.2220023284 -120,20,22.1,44.59,19.5666666667,48.7,24.39,40.26,21.29,43.6266666667,20.79,55.6266666667,9.83,55.2666666667,21.79,41.995,23.5,47.263,20.89,46.79,9.5833333333,748.95,92.3333333333,1,38.1666666667,8.4166666667,43.0988494307,43.0988494307 -100,0,22.1,44.8266666667,19.5,48.8333333333,24.3233333333,40.2,21.3566666667,43.76,20.79,55.6266666667,9.9633333333,55.4,21.76,41.6333333333,23.5,47.29,20.89,46.6633333333,9.5666666667,749,92.6666666667,1,36.3333333333,8.4333333333,41.7817531037,41.7817531037 -60,10,22.1666666667,44.9,19.5333333333,49.03,24.2,40.09,21.3233333333,43.76,20.89,55.09,10.0633333333,55.3266666667,21.7,41.4333333333,23.5,47.29,20.89,46.545,9.55,749.05,93,1,34.5,8.45,11.8507704698,11.8507704698 -100,0,22.2,44.76,19.6,49.0425,24.1333333333,40.1633333333,21.3233333333,43.76,20.89,54.7566666667,10.2633333333,55.66,21.7,41.26,23.5,47.3175,20.89,46.53,9.5333333333,749.1,93.3333333333,1,32.6666666667,8.4666666667,2.0160389482,2.0160389482 -700,10,22.2,44.5666666667,19.6,48.8266666667,24.0666666667,40.1,21.29,43.7,20.89,53.86,10.6666666667,56.7933333333,21.7,41.1266666667,23.5,47.2666666667,20.9633333333,46.53,9.5166666667,749.15,93.6666666667,1,30.8333333333,8.4833333333,2.5731817121,2.5731817121 -620,0,22.2,44.3633333333,19.6333333333,48.5,24,39.9,21.29,43.7,20.89,52.9933333333,10.998,56.534,21.6666666667,40.7966666667,23.39,46.5633333333,20.9633333333,46.53,9.5,749.2,94,1,29,8.5,10.4844277026,10.4844277026 -340,0,22.2,44.49,19.7,48.56,24.0666666667,40.1933333333,21.29,43.59,20.9266666667,52.6633333333,11.19,55.2333333333,21.6,40.53,23.39,46.03,21,46.4,9.55,749.25,93.8333333333,1,29,8.5333333333,17.59557107,17.59557107 -280,10,22.2,44.6,19.7,48.6,24.345,40.7225,21.29,43.53,21,52.2566666667,11.4266666667,54.36,21.6,40.26,23.29,45.59,21,46.2666666667,9.6,749.3,93.6666666667,1,29,8.5666666667,15.3375163092,15.3375163092 -280,0,22.1333333333,44.5266666667,19.76,48.2666666667,24.7266666667,41.09,21.29,43.4666666667,21,51.5333333333,11.6266666667,53.3,21.6,40.1266666667,23.29,45.39,20.9633333333,46.06,9.65,749.35,93.5,1,29,8.6,28.1474438962,28.1474438962 -260,0,22.1333333333,44.39,19.8233333333,48.09,25,41.0266666667,21.29,43.3266666667,21,51,12.1,51.9666666667,21.5666666667,39.8633333333,23.29,44.96,20.9633333333,45.9333333333,9.7,749.4,93.3333333333,1,29,8.6333333333,3.1477148179,3.1477148179 -190,10,22.2,44.7966666667,19.89,48.1633333333,25,40.4933333333,21.26,43.1333333333,20.9266666667,50.4,12.36,48.6933333333,21.5666666667,39.73,23.23,44.3666666667,20.89,45.7,9.75,749.45,93.1666666667,1,29,8.6666666667,43.139682163,43.139682163 -110,0,22.2,44.79,20.0333333333,48.09,25,39.93,21.26,43,21,50.145,12.5333333333,44.2,21.5,39.59,23.2,43.7966666667,20.89,45.6266666667,9.8,749.5,93,1,29,8.7,29.1018644348,29.1018644348 -90,0,22.2,44.73,20.1,48.03,25,39.73,21.29,42.9,21,50.2,12.6,42.0666666667,21.5,39.3633333333,23.2,43.4633333333,20.9266666667,45.43,9.9333333333,749.55,91.6666666667,1.1666666667,28.1666666667,8.6166666667,14.3644772121,14.3644772121 -70,10,22.23,44.56,20.1,47.6333333333,24.8266666667,39.3333333333,21.29,42.8266666667,21,50.23,12.6,39.6933333333,21.5,39.29,23.2,43.0266666667,20.9266666667,45.23,10.0666666667,749.6,90.3333333333,1.3333333333,27.3333333333,8.5333333333,14.3080599024,14.3080599024 -80,0,22.2225,44.2475,20.1,47.36,24.6333333333,39.1266666667,21.29,42.645,21.0666666667,50.43,12.7333333333,39.4333333333,21.5,39.1333333333,23.2,42.8266666667,20.89,45.06,10.2,749.65,89,1.5,26.5,8.45,39.6681100829,39.6681100829 -80,0,22.2,43.9633333333,20.1333333333,47.0266666667,24.5,39.06,21.29,42.56,21.1,50.3333333333,12.8,37.79,21.5,38.9333333333,23.1666666667,42.4666666667,20.9633333333,44.9333333333,10.3333333333,749.7,87.6666666667,1.6666666667,25.6666666667,8.3666666667,14.3330184976,14.3330184976 -80,10,22.26,43.7966666667,20.2,46.7666666667,24.4266666667,38.9333333333,21.29,42.5,21.1,50,13.3,35.2,21.5,38.8633333333,23.1,42.3266666667,20.89,44.76,10.4666666667,749.75,86.3333333333,1.8333333333,24.8333333333,8.2833333333,8.6427208502,8.6427208502 -80,0,22.2,43.53,20.29,46.4,24.26,38.8333333333,21.29,42.4,21.1,49.9,13.3,34.8,21.5,38.79,23.1,42.1633333333,20.89,44.5666666667,10.6,749.8,85,2,24,8.2,19.3590487586,19.3590487586 -80,0,22.2,43.16,20.29,45.8666666667,24.2,38.7,21.29,42.3266666667,21.1,49.4333333333,13.2566666667,33.1233333333,21.5,38.6633333333,23.1,42.1633333333,20.89,44.3633333333,10.6666666667,749.85,84.8333333333,2.1666666667,24.8333333333,8.2166666667,7.0329569397,7.0329569397 -90,10,22.2,42.6333333333,20.29,44.93,24.1666666667,38.56,21.29,42.26,21.0666666667,48.66,13.53,32.6566666667,21.5,38.59,23.1,42.2,20.89,44.23,10.7333333333,749.9,84.6666666667,2.3333333333,25.6666666667,8.2333333333,43.9365407219,43.9365407219 -80,0,22.1333333333,42.76,20.29,44.6566666667,24.1,38.5,21.29,42.26,21,48.1333333333,13.8666666667,31.9,21.4633333333,38.4666666667,23.1,42.1266666667,20.89,44.06,10.8,749.95,84.5,2.5,26.5,8.25,26.168243913,26.168243913 -70,10,22.1333333333,42.5666666667,20.29,44.5266666667,23.9633333333,38.1266666667,21.2,42.09,21,47.43,14.0666666667,32.2333333333,21.39,38.4,23.0666666667,41.8633333333,20.89,43.8975,10.8666666667,750,84.3333333333,2.6666666667,27.3333333333,8.2666666667,48.9199585631,48.9199585631 -70,10,22.1,42.4666666667,20.245,44.2725,23.8233333333,38.2,21.2,42.09,21,47.03,14.0666666667,32.0933333333,21.39,38.4,23,41.73,20.8233333333,43.73,10.9333333333,750.05,84.1666666667,2.8333333333,28.1666666667,8.2833333333,30.3471741732,30.3471741732 -80,0,22.1,42.4666666667,20.29,44.29,23.76,38.1633333333,21.1333333333,42.2,20.8266666667,45.7633333333,13.945,32.2225,21.39,38.4,23,41.59,20.89,43.7,11,750.1,84,3,29,8.3,19.7610142874,19.7610142874 -200,10,22.1,42.3266666667,20.4266666667,44.06,23.7,38.1633333333,21.2,42.1266666667,20.7,45.6233333333,14.0666666667,31.1233333333,21.39,38.29,23,41.6266666667,20.89,43.6266666667,11.0166666667,750.1833333333,83.3333333333,3.3333333333,30.8333333333,8.2166666667,47.4289377336,47.4289377336 -390,10,22.0333333333,42.3266666667,20.5666666667,43.86,23.6666666667,38.1633333333,21.2,42,20.4633333333,45.0666666667,14.1,29.4333333333,21.39,38.29,23,41.76,20.89,43.4666666667,11.0333333333,750.2666666667,82.6666666667,3.6666666667,32.6666666667,8.1333333333,23.4184003435,23.4184003435 -310,10,22.1,42.79,20.6333333333,43.7,23.6,38.1633333333,21.2,41.9333333333,20.39,44.7333333333,14.36,27.0333333333,21.39,38.1633333333,23.0333333333,41.79,20.89,43.4,11.05,750.35,82,4,34.5,8.05,27.4214603007,27.4214603007 -130,0,22.1,42.8633333333,20.7,43.8333333333,23.6,38.245,21.2,41.8633333333,20.29,44.7633333333,14.3233333333,24.5966666667,21.39,38.09,23.1,41.73,20.89,43.1333333333,11.0666666667,750.4333333333,81.3333333333,4.3333333333,36.3333333333,7.9666666667,19.8664640193,19.8664640193 -110,10,22.1,42.9,20.76,43.6,23.5,38.4,21.2,41.73,20.29,45.23,13.99,22.79,21.3566666667,37.93,23.1333333333,41.5266666667,20.89,42.9333333333,11.0833333333,750.5166666667,80.6666666667,4.6666666667,38.1666666667,7.8833333333,4.5981923584,4.5981923584 -140,10,22.1,42.9,20.7,43.4666666667,23.5,38.4666666667,21.2,41.7,20.39,45.53,14.1,24.2,21.3566666667,37.79,23.2,41.4,20.89,42.76,11.1,750.6,80,5,40,7.8,37.1210377896,37.1210377896 -140,0,22.1,42.59,20.7,43.5,23.5,38.4666666667,21.2,41.6266666667,20.4633333333,45.9966666667,14.2266666667,23.5933333333,21.29,37.7,23.23,41.29,20.89,42.5666666667,11.1333333333,750.65,79.6666666667,4.6666666667,40,7.7666666667,7.6410197886,7.6410197886 -120,10,22.1,42.59,20.7,43.5,23.5666666667,38.4,21.2,41.5,20.5,46.245,14.3666666667,24.5966666667,21.29,37.6725,23.29,41.23,20.8566666667,42.4,11.1666666667,750.7,79.3333333333,4.3333333333,40,7.7333333333,41.5160695906,41.5160695906 -130,10,22.1,42.56,20.7,43.4666666667,23.6,38.23,21.2,41.5,20.6,45.8633333333,14.6266666667,24.1233333333,21.29,37.59,23.29,40.9666666667,20.8566666667,42.2,11.2,750.75,79,4,40,7.7,14.7051616223,14.7051616223 -100,0,22.1,42.4333333333,20.7,43.3266666667,23.6,38.29,21.2,41.4,20.6,45.6566666667,14.89,22.43,21.29,37.5,23.29,40.7666666667,20.89,42.1633333333,11.2333333333,750.8,78.6666666667,3.6666666667,40,7.6666666667,49.9927580706,49.9927580706 -130,10,22.1,42.45,20.79,43.29,23.5,38.4,21.2,41.3633333333,20.5666666667,45.89,14.9633333333,21.2966666667,21.29,37.5,23.29,40.43,20.89,42.03,11.2666666667,750.85,78.3333333333,3.3333333333,40,7.6333333333,7.4110773741,7.4110773741 -750,0,22.0666666667,42.1633333333,20.79,43.1566666667,23.4266666667,38.3266666667,21.2,41.3633333333,20.5,46.2233333333,15.2933333333,19.4666666667,21.29,37.3633333333,23.29,40.29,20.89,41.9666666667,11.3,750.9,78,3,40,7.6,10.9275349067,10.9275349067 -610,10,22.0666666667,42.2233333333,20.9266666667,43.0266666667,23.4266666667,38.36,21.2,41.2666666667,20.5,46.4633333333,15.6266666667,18,21.3566666667,37.29,23.3233333333,40.36,20.89,41.9,11.35,750.9166666667,77.1666666667,3,38.1666666667,7.4833333333,7.3139359825,7.3139359825 -360,10,22.1,42.2666666667,21.0666666667,42.8266666667,23.5666666667,38.6933333333,21.1333333333,41.1333333333,20.5,46.6633333333,15.9633333333,17.0666666667,21.4266666667,37.29,23.39,40.56,20.89,42.23,11.4,750.9333333333,76.3333333333,3,36.3333333333,7.3666666667,0.2845660318,0.2845660318 -360,10,22.1,42.3266666667,21.1,42.73,23.86,39.2566666667,21.1,41.53,20.5,46.7333333333,16.03,17,21.5,37.23,23.39,40.79,20.89,42.43,11.45,750.95,75.5,3,34.5,7.25,18.3327283361,18.3327283361 -310,20,22.1333333333,42.36,21.1,42.3966666667,24.1333333333,39.53,21.1,41.6633333333,20.5666666667,46.1933333333,16.3425,15.525,21.5,37.09,23.39,40.79,20.89,42.79,11.5,750.9666666667,74.6666666667,3,32.6666666667,7.1333333333,5.6747005554,5.6747005554 -270,20,22.1333333333,41.6933333333,20.8566666667,41.53,24.2,38.8333333333,21.1,41.6933333333,20.6,45.6933333333,16.36,14.46,21.5,37.03,23.4266666667,40.79,20.89,42.79,11.55,750.9833333333,73.8333333333,3,30.8333333333,7.0166666667,0.9448907338,0.9448907338 -270,10,22.1333333333,41.7933333333,20.79,41.7233333333,24.26,38.7,21.1,41.6933333333,20.6,45.3,16.1,15.63,21.5,36.9,23.5,40.79,20.89,42.645,11.6,751,73,3,29,6.9,13.35815083,13.35815083 -240,10,22.2,42.3333333333,20.89,42.09,24.4266666667,38.4,21,41.4666666667,20.7,45.2566666667,16.275,15.865,21.5666666667,36.9666666667,23.5,40.76,20.89,42.9566666667,11.8666666667,751.05,71.6666666667,3.1666666667,30.8333333333,6.8833333333,47.3086302867,47.3086302867 -150,10,22.2,42.4666666667,21,41.9,24.5,38.4,21.0666666667,41.4,20.76,46.59,16.7266666667,14.33,21.73,36.93,23.525,40.525,20.89,43.3633333333,12.1333333333,751.1,70.3333333333,3.3333333333,32.6666666667,6.8666666667,46.0322019528,46.0322019528 -100,10,22.2,42.2666666667,21,41.5666666667,24.6,37.99,21.1,41.26,20.79,46.3666666667,16.9633333333,13.0566666667,21.79,36.6566666667,23.6,40.3266666667,20.89,43.6266666667,12.4,751.15,69,3.5,34.5,6.85,3.6944815889,3.6944815889 -110,0,22.26,41.8633333333,21.0333333333,41.1633333333,24.6,37.6566666667,21.1666666667,41.1266666667,20.79,45.4266666667,16.63,13.33,21.89,36.56,23.6,40.3633333333,20.89,43.7,12.6666666667,751.2,67.6666666667,3.6666666667,36.3333333333,6.8333333333,35.9550408786,35.9550408786 -100,0,22.26,41.53,21.1,41.1633333333,24.4633333333,37.26,21.2,41.06,20.8233333333,45.2333333333,16.575,10.24,21.89,36.36,23.6666666667,40.23,20.89,43.59,12.9333333333,751.25,66.3333333333,3.8333333333,38.1666666667,6.8166666667,30.1731276675,30.1731276675 -120,10,22.2,40.3,21.1,40.2333333333,24.2925,36.9975,21.26,41,20.89,45.96,16.76,9.2233333333,22.1333333333,36.1,23.8233333333,39.8633333333,20.9633333333,43.59,13.2,751.3,65,4,40,6.8,29.8431478092,29.8431478092 -100,0,22.2,40.8933333333,21.0333333333,40.16,24.1333333333,36.5966666667,21.29,40.76,20.89,46.4666666667,16.5633333333,8.73,22.2,35.7666666667,23.89,39.79,21,43.59,13.3333333333,751.3,64.6666666667,4.1666666667,40,6.8166666667,8.2523985882,8.2523985882 -90,0,22.2,41.2666666667,21.1333333333,40.59,24,36.29,21.29,40.6266666667,20.89,46.1333333333,16.23,10.13,22.29,35.6633333333,23.9266666667,39.79,21,43.59,13.4666666667,751.3,64.3333333333,4.3333333333,40,6.8333333333,12.3615824967,12.3615824967 -240,10,22.26,41.3266666667,21.2,40.4633333333,24,36.29,21.29,40.4666666667,20.89,45.9566666667,15.8966666667,9.9,22.3925,35.42,24,39.6566666667,21,43.49,13.6,751.3,64,4.5,40,6.85,30.8799104649,30.8799104649 -390,0,22.29,41.0266666667,21.2,40.8,23.89,36.29,21.3566666667,40.4,20.815,46.6475,15.3566666667,10.7666666667,22.5,35.23,24,39.5666666667,21,43.3633333333,13.7333333333,751.3,63.6666666667,4.6666666667,40,6.8666666667,45.638252655,45.638252655 -180,0,22.3566666667,40.7666666667,21.2,40.86,23.89,36.3633333333,21.39,40.245,20.79,46.9666666667,15,12.1666666667,22.5,35,24,39.76,21.0333333333,43.2233333333,13.8666666667,751.3,63.3333333333,4.8333333333,40,6.8833333333,16.8767843279,16.8767843279 -160,10,22.39,40.59,21.2,40.9333333333,23.8566666667,36.3633333333,21.39,40.09,20.73,47.09,14.9266666667,12.1,22.4266666667,34.9333333333,24,39.9,21.0333333333,42.89,14,751.3,63,5,40,6.9,5.576805037,5.576805037 -250,0,22.4175,40.9975,21.2,41.06,23.79,36.3633333333,21.39,40.03,20.73,47.1633333333,14.89,13.1,22.39,34.79,24,39.75,21,42.4233333333,13.85,751.35,63.3333333333,5,40,6.8333333333,21.4763370575,21.4763370575 -150,0,22.4266666667,40.7333333333,21.1333333333,40.83,23.8233333333,36.5666666667,21.39,40.0266666667,20.7,47.2,14.83,12.9,22.39,34.79,24.0333333333,39.73,21,42.3633333333,13.7,751.4,63.6666666667,5,40,6.7666666667,15.249229013,15.249229013 -150,0,22.29,40.6333333333,21,40.4233333333,23.89,36.6266666667,21.39,39.8266666667,20.7,47.1266666667,14.7633333333,13.2933333333,22.3233333333,34.79,24.1,39.73,21,42.59,13.55,751.45,64,5,40,6.7,22.7754267748,22.7754267748 -390,0,22.3566666667,40.56,21.0333333333,40.9266666667,23.89,36.6266666667,21.29,39.9,20.7,47.09,14.69,13.6266666667,22.3233333333,34.79,24.2,39.6725,21,42.53,13.4,751.5,64.3333333333,5,40,6.6333333333,49.7572980588,49.7572980588 -380,10,22.39,40.6566666667,21.1,41.3333333333,23.89,36.7,21.29,40.0266666667,20.7,47.03,14.8,15.7933333333,22.29,34.79,24.2,39.6633333333,21,42.4633333333,13.25,751.55,64.6666666667,5,40,6.5666666667,18.4747670079,18.4747670079 -300,0,22.39,40.93,21.1333333333,41.5,23.89,36.8266666667,21.29,40.23,20.7,46.9,14.7266666667,15,22.29,34.79,24.2,39.7,20.9266666667,42.53,13.1,751.6,65,5,40,6.5,11.4967387635,11.4967387635 -260,0,22.5,41.23,21.1333333333,41.6333333333,23.9633333333,36.9666666667,21.29,40.43,20.7,46.8266666667,14.645,14.7,22.29,34.79,24.26,39.7,20.945,42.2,13.1833333333,751.6333333333,64.3333333333,5,40,6.4333333333,13.1219744915,13.1219744915 -580,0,22.5,41.43,21.1333333333,41.79,23.9633333333,37.1266666667,21.39,40.6266666667,20.7,46.79,14.63,14.3966666667,22.23,34.73,24.29,39.6633333333,20.9266666667,41.16,13.2666666667,751.6666666667,63.6666666667,5,40,6.3666666667,10.1005231263,10.1005231263 -730,0,22.6333333333,42.8,21.2,42.5225,23.9633333333,37.26,21.39,40.8333333333,20.7,46.79,14.7633333333,14.2633333333,22.2,34.7,24.29,39.6633333333,21,40.7666666667,13.35,751.7,63,5,40,6.3,22.9752412066,22.9752412066 -450,0,22.7,45.4666666667,21.26,44.6933333333,24.0333333333,37.8,21.4266666667,41.33,20.73,46.9,14.86,13.7633333333,22.2,34.7675,24.3233333333,39.59,20.9633333333,40.6633333333,13.4333333333,751.7333333333,62.3333333333,5,40,6.2333333333,20.7866865327,20.7866865327 -310,0,22.8233333333,46.36,21.29,46.1966666667,24.1666666667,39.1333333333,21.5,41.59,20.79,47.0266666667,14.6,13.63,22.2,34.7,24.365,39.5425,20.89,40.4633333333,13.5166666667,751.7666666667,61.6666666667,5,40,6.1666666667,3.4611685085,3.4611685085 -380,0,22.89,46.36,21.29,46.93,24.5966666667,40.63,21.5,41.43,20.89,47.4633333333,14.1783333333,13.85,22.2,34.6266666667,24.29,39.2957142857,20.89,40.2233333333,13.6,751.8,61,5,40,6.1,26.053554879,26.053554879 -460,0,22.9266666667,45.9233333333,21.29,46.93,24.8566666667,41.2966666667,21.5,41.23,20.89,47.7233333333,13.84,15.02,22.2,34.59,24.29,39.1966666667,20.89,39.89,13.5166666667,751.85,61.3333333333,4.8333333333,40,6.1166666667,10.0805083988,10.0805083988 -480,0,23,45.39,21.29,46.6566666667,25.1,41.145,21.5,41.4333333333,20.89,48.6666666667,13.4072727273,16.0272727273,22.2,34.515,24.3566666667,39.09,20.89,39.79,13.4333333333,751.9,61.6666666667,4.6666666667,40,6.1333333333,10.4611236253,10.4611236253 -500,0,23,44.99,21.29,46.1933333333,25.3233333333,40.99,21.5,41.56,21.2233333333,62.3933333333,13.1933333333,16.23,22.2,34.5,24.39,39.0675,20.89,39.79,13.35,751.95,62,4.5,40,6.15,7.9813585151,7.9813585151 -170,0,22.9266666667,44.73,21.29,45.8,25.4633333333,40.6566666667,21.5666666667,41.7,21.3566666667,68.59,12.9,16.4266666667,22.2,34.5,24.39,39,20.8566666667,39.76,13.2666666667,752,62.3333333333,4.3333333333,40,6.1666666667,8.7465077871,8.7465077871 -410,0,22.9266666667,44.5266666667,21.26,45.49,25.6333333333,40.2966666667,21.5666666667,41.7,21.5175,74.8975,12.4166666667,17.1916666667,22.15,34.4,24.5,39.03,20.79,39.7,13.1833333333,752.05,62.6666666667,4.1666666667,40,6.1833333333,41.7206648854,41.7206648854 -140,0,22.9266666667,44.2666666667,21.2,45.03,25.7,39.83,21.55,41.395,22.4,86.6,12.1142857143,17.8971428571,22.1,34.29,24.5,39.06,20.8233333333,39.7,13.1,752.1,63,4,40,6.2,10.5085211224,10.5085211224 -90,0,22.89,44.0266666667,21.1,45,25.5666666667,39.2233333333,21.5333333333,41.1633333333,22.1933333333,86.3966666667,11.725,18.95,22.1,34.29,24.456,38.88,20.89,39.7,12.8833333333,752.1666666667,63.5,4,40,6.1166666667,30.206059129,30.206059129 -80,0,22.9633333333,43.8266666667,21.1,45.2,25.4266666667,39.03,21.6,41.09,21.9266666667,84.3966666667,11.3666666667,19.9,22.1,34.2675,24.325,38.375,20.8566666667,39.56,12.6666666667,752.2333333333,64,4,40,6.0333333333,49.5053198072,49.5053198072 -90,0,23,43.6,21.1,45.1333333333,25.3566666667,38.76,21.5333333333,41.2,21.76,80.7933333333,10.9975,20.6675,22.05,34.145,24.2163636364,37.9872727273,20.79,39.4333333333,12.45,752.3,64.5,4,40,5.95,28.2102761674,28.2102761674 -180,0,23,43.2233333333,21.0333333333,44.9333333333,25.23,38.6266666667,21.5333333333,41.26,21.6333333333,77.3333333333,10.5633333333,21.0966666667,22,34.0675,24.1666666667,37.79,20.8566666667,39.3633333333,12.2333333333,752.3666666667,65,4,40,5.8666666667,18.6464538914,18.6464538914 -410,10,23,42.89,20.9633333333,44.76,25.1666666667,38.5,21.5,41.29,21.5666666667,73.1966666667,10.225,21.775,22,33.95,24.1,37.79,20.79,39.23,12.0166666667,752.4333333333,65.5,4,40,5.7833333333,19.3391543929,19.3391543929 -130,0,23,42.6633333333,20.89,44.6266666667,25.1,38.4333333333,21.5,41.29,21.4266666667,67.7966666667,9.934,23.014,22,33.8725,24.025,37.7225,20.79,39.1633333333,11.8,752.5,66,4,40,5.7,47.8179960861,47.8179960861 -90,10,23,42.59,20.8566666667,44.56,25,38.3633333333,21.5,41.29,21.39,60.33,9.63,25.1333333333,21.9266666667,33.79,24,37.6266666667,20.79,39.09,11.4166666667,752.6166666667,67.8333333333,3.8333333333,40,5.6833333333,24.4520330685,24.4520330685 -70,0,23,42.4666666667,20.79,44.5,24.9266666667,38.3633333333,21.5,41.3633333333,21.3233333333,57.33,9.69,28.5333333333,21.89,33.8266666667,23.89,37.5,20.79,38.95,11.0333333333,752.7333333333,69.6666666667,3.6666666667,40,5.6666666667,49.4392643799,49.4392643799 -80,10,23,42.3266666667,20.76,44.5,24.89,38.29,21.5,41.4,21.29,54.6566666667,9.55,32.7,21.89,33.9,23.8233333333,37.4333333333,20.79,38.9,10.65,752.85,71.5,3.5,40,5.65,38.6452812934,38.6452812934 -70,0,23,42.1633333333,20.7,44.595,24.8233333333,38.23,21.5,41.4,21.29,53.1233333333,9.2725,34.4425,21.89,33.9333333333,23.79,37.4,20.79,38.9,10.2666666667,752.9666666667,73.3333333333,3.3333333333,40,5.6333333333,36.7306227214,36.7306227214 -70,10,23,42.03,20.7,44.7,24.79,38.2,21.4633333333,41.4666666667,21.29,51.7633333333,8.99,34.9666666667,21.8233333333,34,23.73,37.4,20.76,38.8633333333,9.8833333333,753.0833333333,75.1666666667,3.1666666667,40,5.6166666667,35.1803683327,35.1803683327 -70,0,23.1,42.06,20.6,44.73,24.73,38.2,21.4633333333,41.4666666667,21.29,50.8966666667,8.7633333333,37.83,21.79,34.03,23.7,37.4,20.76,38.79,9.5,753.2,77,3,40,5.6,26.8175956793,26.8175956793 -70,10,23.0333333333,41.9333333333,20.6,44.79,24.7,38.23,21.39,41.5,21.29,49.9233333333,8.5633333333,38.2233333333,21.79,34.09,23.6333333333,37.4,20.7,38.79,9.4333333333,753.3,77.3333333333,3,40,5.6166666667,3.5065367585,3.5065367585 -70,0,23.0666666667,41.9,20.5666666667,44.8266666667,24.6333333333,38.23,21.39,41.56,21.23,49.2566666667,8.252,38.774,21.745,34.1783333333,23.5666666667,37.4316666667,20.7,38.79,9.3666666667,753.4,77.6666666667,3,40,5.6333333333,29.6562616015,29.6562616015 -50,0,23,41.9666666667,20.5,44.9,24.6,38.2,21.39,41.73,21.2,49.1,7.8627272727,39.6672727273,21.77,34.4055555556,23.5333333333,37.7238888889,20.73,38.73,9.3,753.5,78,3,40,5.65,17.2426941805,17.2426941805 -50,0,23,41.9,20.4633333333,44.8633333333,24.6,38.295,21.39,41.8633333333,21.2,50.1,7.6494444444,40.5066666667,21.79,34.515,23.5055555556,38.1694444444,20.79,38.8633333333,9.2333333333,753.6,78.3333333333,3,40,5.6666666667,27.7382944943,27.7382944943 -70,10,23,41.9,20.39,44.8633333333,24.6,38.4,21.39,41.9,21.1666666667,51.3966666667,7.4555555556,42.2644444444,21.79,34.645,23.5222222222,38.7516666667,20.7,39.3,9.1666666667,753.7,78.6666666667,3,40,5.6833333333,19.2056248896,19.2056248896 -50,0,23,41.76,20.3566666667,45.03,24.6,38.59,21.3233333333,41.8266666667,21.1,52.0633333333,7.4666666667,44.3666666667,21.79,34.7327272727,23.5,39.1054545455,20.76,39.6333333333,9.1,753.8,79,3,40,5.7,39.7334263893,39.7334263893 -50,0,22.9266666667,41.7,20.29,45.09,24.6,38.59,21.29,41.76,21.2,52.8966666667,7.23,44.0666666667,21.79,34.79,23.5,39.32,20.79,40,8.9166666667,753.8333333333,79.8333333333,3,40,5.6666666667,21.9511335366,21.9511335366 -50,0,22.89,41.59,20.2,45.1266666667,24.6,38.7,21.29,41.7,21.175,53.6475,7.03,44.66,21.79,34.9333333333,23.5,39.6933333333,20.79,40.3333333333,8.7333333333,753.8666666667,80.6666666667,3,40,5.6333333333,24.5726017747,24.5726017747 -50,0,22.89,41.53,20.1333333333,45.2,24.6,38.7,21.29,41.6266666667,21.1,53.9666666667,6.73,45.03,21.73,35,23.4633333333,40,20.79,40.6566666667,8.55,753.9,81.5,3,40,5.6,32.5511635281,32.5511635281 -40,0,22.84,41.45,20.1,45.3266666667,24.5,38.73,21.29,41.59,21.1,54.4633333333,6.53,45.7633333333,21.76,35.09,23.39,40.06,20.79,40.99,8.3666666667,753.9333333333,82.3333333333,3,40,5.5666666667,36.0287258518,36.0287258518 -60,0,22.79,41.29,20.0333333333,45.2666666667,24.5,38.79,21.29,41.59,21.1,54.6633333333,6.2633333333,47.0633333333,21.7,35.1725,23.39,40.1266666667,20.79,41.36,8.1833333333,753.9666666667,83.1666666667,3,40,5.5333333333,49.9167999253,49.9167999253 -50,0,22.79,41.23,20,45.3266666667,24.39,38.79,21.2,41.4666666667,21.0666666667,54.6333333333,6.2633333333,49.0633333333,21.7,35.26,23.39,40.2,20.79,41.6333333333,8,754,84,3,40,5.5,5.1160936709,5.1160936709 -60,10,22.79,41.2,19.9266666667,45.4,24.39,38.79,21.2,41.4,21,54.5,6.3333333333,50.5266666667,21.7,35.29,23.3233333333,40.09,20.79,41.86,7.9,754.0333333333,84.6666666667,3,40,5.5,11.0498805298,11.0498805298 -50,0,22.73,41.2,19.8566666667,45.4666666667,24.3566666667,38.79,21.2,41.29,21,54.3633333333,6.4666666667,52.1333333333,21.7,35.29,23.3233333333,40.09,20.8566666667,42.1933333333,7.8,754.0666666667,85.3333333333,3,40,5.5,2.0581346005,2.0581346005 -60,0,22.7,41.09,19.79,45.4666666667,24.29,38.79,21.2,41.29,21,54.23,6.5,52.7933333333,21.7,35.4,23.29,40.06,20.79,42.4633333333,7.7,754.1,86,3,40,5.5,0.3050296451,0.3050296451 -60,0,22.7,41.09,19.76,45.53,24.29,38.79,21.2,41.29,20.9633333333,54.06,6.475,53.32,21.7,35.4,23.29,40.06,20.84,42.8225,7.6,754.1333333333,86.6666666667,3,40,5.5,28.8951564929,28.8951564929 -50,0,22.6333333333,41.03,19.7,45.59,24.29,38.79,21.2,41.29,20.9633333333,53.9333333333,6.26,52.8933333333,21.6666666667,35.4666666667,23.2,40,20.8566666667,43.1,7.5,754.1666666667,87.3333333333,3,40,5.5,29.996379267,29.996379267 -50,0,22.6333333333,41.03,19.6,45.545,24.29,38.79,21.1666666667,41.2,20.9633333333,53.76,6.06,53.5,21.6666666667,35.4666666667,23.2,40.06,20.79,43.3266666667,7.4,754.2,88,3,40,5.5,42.3623771989,42.3623771989 -50,0,22.6,41,19.5666666667,45.6266666667,24.23,38.73,21.1,41.2,20.89,53.6266666667,5.9333333333,53.76,21.6,35.5,23.1666666667,40.09,20.79,43.4666666667,7.3166666667,754.2166666667,88.6666666667,3,37.6666666667,5.5166666667,11.6856088978,11.6856088978 -50,0,22.6,41,19.5,45.7,24.2,38.79,21.1,41.2,20.89,53.4666666667,5.8,54.4333333333,21.6,35.5,23.1,40.09,20.79,43.73,7.2333333333,754.2333333333,89.3333333333,3,35.3333333333,5.5333333333,37.0280037401,37.0280037401 -50,0,22.6,41,19.5,45.7,24.2,38.79,21.1,41.1266666667,20.89,53.4,5.8,54.6933333333,21.6,35.5,23.0666666667,40.2,20.79,43.8633333333,7.15,754.25,90,3,33,5.55,21.9144003815,21.9144003815 -50,10,22.5333333333,41,19.4266666667,45.7,24.1666666667,38.79,21.1,41.09,20.89,53.3633333333,5.8333333333,55.3,21.6,35.56,23,40.26,20.89,44.1266666667,7.0666666667,754.2666666667,90.6666666667,3,30.6666666667,5.5666666667,11.4550896338,11.4550896338 -60,0,22.5,41,19.39,45.73,24.1,38.8633333333,21.1,41.09,20.89,53.23,5.9,55.8266666667,21.6,35.59,23,40.53,20.8233333333,44.1266666667,6.9833333333,754.2833333333,91.3333333333,3,28.3333333333,5.5833333333,19.907944079,19.907944079 -60,0,22.5,41,19.3233333333,45.79,24.1,38.845,21,40.9666666667,20.8566666667,53.06,5.7633333333,55.5,21.6,35.59,23,40.59,20.8566666667,44.26,6.9,754.3,92,3,26,5.6,0.6162239821,0.6162239821 -50,0,22.39,40.9,19.3566666667,45.9,24.0666666667,38.76,21,40.9,20.8566666667,53,5.69,55.7,21.6,35.59,22.89,40.59,20.8566666667,44.3333333333,6.9166666667,754.3,92.1666666667,3,25.5,5.6666666667,42.1846282436,42.1846282436 -50,0,22.39,40.9,19.29,45.9,24,38.7,21,40.9,20.8566666667,52.93,5.56,55.9333333333,21.5333333333,35.59,22.89,40.6633333333,20.89,44.4333333333,6.9333333333,754.3,92.3333333333,3,25,5.7333333333,3.2634333125,3.2634333125 -60,0,22.39,40.9,19.26,45.9,24,38.7,21,40.9,20.79,52.7225,5.5,56.4666666667,21.5,35.59,22.89,40.745,20.89,44.56,6.95,754.3,92.5,3,24.5,5.8,27.2183692083,27.2183692083 -40,0,22.39,40.8266666667,19.2,45.9,24,38.7,21,40.9,20.79,52.7,5.3666666667,56.56,21.5,35.59,22.8566666667,40.6633333333,20.89,44.7,6.9666666667,754.3,92.6666666667,3,24,5.8666666667,1.5595876263,1.5595876263 -60,0,22.29,40.9,19.2,45.9333333333,24,38.6633333333,21,40.8633333333,20.79,52.56,5.2266666667,56.56,21.5,35.59,22.79,40.59,20.89,44.76,6.9833333333,754.3,92.8333333333,3,23.5,5.9333333333,24.4695911882,24.4695911882 -40,0,22.29,40.9,19.1333333333,46,24,38.6633333333,21,40.79,20.79,52.4333333333,5.2266666667,57.3333333333,21.5,35.59,22.79,40.7,20.89,44.8266666667,7,754.3,93,3,23,6,46.9334158115,46.9334158115 -50,0,22.29,40.9,19.1,46.03,24,38.79,21,40.79,20.79,52.26,5.3666666667,58.5933333333,21.5,35.59,22.79,40.7,20.8233333333,44.9,6.9,754.25,93.3333333333,3.1666666667,22.8333333333,5.9333333333,21.3361549424,21.3361549424 -50,0,22.2,40.79,19.1,46.09,24,38.8633333333,20.9266666667,40.73,20.79,52.2,5.53,59.09,21.5,35.59,22.79,40.79,20.89,45.03,6.8,754.2,93.6666666667,3.3333333333,22.6666666667,5.8666666667,34.9601122318,34.9601122318 -50,10,22.2,40.79,19.0666666667,46.09,24.0666666667,39,20.89,40.7,20.79,52.09,5.59,59.1225,21.5,35.59,22.79,40.79,20.89,45.09,6.7,754.15,94,3.5,22.5,5.8,7.3041191441,7.3041191441 -60,0,22.2,40.8266666667,19,46.09,24.0666666667,39.06,20.89,40.7,20.73,52.03,5.4633333333,58.86,21.5,35.6266666667,22.79,40.9333333333,20.89,45.2,6.6,754.1,94.3333333333,3.6666666667,22.3333333333,5.7333333333,21.0543177789,21.0543177789 -60,0,22.2,40.9,19,46.1266666667,24.1,39.09,20.89,40.73,20.79,52,5.3,58.3633333333,21.4266666667,35.6266666667,22.73,41,20.89,45.2,6.5,754.05,94.6666666667,3.8333333333,22.1666666667,5.6666666667,35.9447219525,35.9447219525 -50,0,22.1666666667,40.9,19,46.2,24.1,39.1633333333,20.89,40.73,20.79,52,5.2266666667,58.5633333333,21.39,35.59,22.7,41.09,20.89,45.26,6.4,754,95,4,22,5.6,5.6641863659,5.6641863659 -60,0,22.1,40.9,18.945,46.2,24.1,39.2,20.89,40.7,20.73,51.9,5.3666666667,59.6966666667,21.39,35.59,22.7,41.09,20.89,45.29,6.3833333333,754,95,4,21.6666666667,5.6,35.5802635546,35.5802635546 -40,0,22.1,40.9,18.89,46.2,24.1,39.2,20.89,40.7,20.73,51.9,5.56,60.49,21.39,35.59,22.7,41.2,20.89,45.3633333333,6.3666666667,754,95,4,21.3333333333,5.6,16.8280896498,16.8280896498 -50,0,22.1,40.9,18.89,46.26,24.1,39.2,20.79,40.59,20.7,51.79,5.69,60.6333333333,21.39,35.59,22.6333333333,41.2,20.89,45.4,6.35,754,95,4,21,5.6,1.3317306177,1.3317306177 -50,0,22.0666666667,40.8633333333,18.8566666667,46.26,24.1,39.2,20.79,40.59,20.7,51.73,5.8966666667,61.2333333333,21.39,35.7,22.6,41.06,20.89,45.4,6.3333333333,754,95,4,20.6666666667,5.6,26.7283904366,26.7283904366 -50,0,22.0666666667,40.93,18.79,46.26,24.1,39.26,20.79,40.59,20.7,51.6633333333,6.26,61.7666666667,21.39,35.7,22.6,41,20.89,45.4333333333,6.3166666667,754,95,4,20.3333333333,5.6,11.9419882889,11.9419882889 -50,0,22,40.9,18.79,46.3266666667,24.1,39.2,20.79,40.59,20.7,51.53,6.5266666667,61.9,21.39,35.7,22.6,40.9,20.89,45.5,6.3,754,95,4,20,5.6,7.7380289091,7.7380289091 -60,0,22,40.9,18.8566666667,46.4666666667,24.1,39.29,20.79,40.59,20.7,51.4666666667,6.76,62.1566666667,21.39,35.7,22.6,40.6933333333,20.89,45.5,6.3166666667,753.9666666667,95,4,20.3333333333,5.6,3.027604206,3.027604206 -50,0,21.9633333333,40.9333333333,18.79,46.5,24.1,39.245,20.79,40.59,20.7,51.3266666667,6.9666666667,62.29,21.3233333333,35.79,22.5,40.3633333333,20.89,45.56,6.3333333333,753.9333333333,95,4,20.6666666667,5.6,42.5965649425,42.5965649425 -60,0,21.9633333333,41,18.79,46.5,24.1,39.29,20.79,40.7,20.7,51.2233333333,7.1233333333,62.4,21.39,35.79,22.5,40.1566666667,20.89,45.59,6.35,753.9,95,4,21,5.6,36.7707714322,36.7707714322 -50,0,21.9633333333,41,18.79,46.5,24.2,39.23,20.79,40.7,20.7,51.09,7.19,62.3266666667,21.29,35.79,22.4175,39.8425,20.89,45.6633333333,6.3666666667,753.8666666667,95,4,21.3333333333,5.6,10.4948307853,10.4948307853 -60,0,21.89,41,18.79,46.5,24.2,39.23,20.79,40.7,20.7,50.95,7.3333333333,62.1333333333,21.29,35.79,22.39,39.6266666667,20.89,45.7,6.3833333333,753.8333333333,95,4,21.6666666667,5.6,36.8466767599,36.8466767599 -50,0,21.89,41.09,18.79,46.5,24.1,39.29,20.73,40.7,20.6666666667,50.76,7.4,61.86,21.29,35.9,22.29,39.545,20.89,45.7,6.4,753.8,95,4,22,5.6,12.5923724729,12.5923724729 -50,0,21.89,41.09,18.79,46.4333333333,24.1666666667,39.29,20.73,40.7,20.6,50.6266666667,7.4333333333,61.5266666667,21.29,35.9,22.2,39.4,20.89,45.73,6.5166666667,753.7833333333,94.5,4.3333333333,22.1666666667,5.6333333333,40.613008826,40.613008826 -40,0,21.84,41.045,18.79,46.4666666667,24.1333333333,39.29,20.7,40.79,20.6,50.4666666667,7.5225,61.2,21.29,35.9,22.2,39.4,20.89,45.79,6.6333333333,753.7666666667,94,4.6666666667,22.3333333333,5.6666666667,42.512979114,42.512979114 -50,0,21.79,41,18.79,46.4666666667,24.1333333333,39.29,20.7,40.79,20.6666666667,50.4,7.59,60.8,21.29,35.9,22.1666666667,39.29,20.89,45.79,6.75,753.75,93.5,5,22.5,5.7,5.6666495162,5.6666495162 -40,0,21.79,41.06,18.79,46.4,24.1666666667,39.29,20.7,40.79,20.6,50.2,7.59,60.16,21.29,35.9,22.1,39.29,20.89,45.79,6.8666666667,753.7333333333,93,5.3333333333,22.6666666667,5.7333333333,18.378728989,18.378728989 -60,0,21.79,41.09,18.79,46.4,24.1,39.3633333333,20.7,40.79,20.6,50.1266666667,7.59,59.6933333333,21.29,35.9,22.1,39.3266666667,20.89,45.8266666667,6.9833333333,753.7166666667,92.5,5.6666666667,22.8333333333,5.7666666667,29.3350206339,29.3350206339 -50,0,21.79,41.09,18.79,46.4,24.1,39.4,20.7,40.79,20.6,50,7.6233333333,59.0333333333,21.29,35.9666666667,22.0333333333,39.2666666667,20.89,45.8175,7.1,753.7,92,6,23,5.8,3.9226783672,3.9226783672 -60,0,21.76,41.2,18.79,46.4,24.1666666667,39.4,20.7,40.79,20.6,49.9333333333,7.6233333333,58.4266666667,21.23,35.9333333333,21.9633333333,39.1633333333,20.89,45.8633333333,7.15,753.7166666667,91.8333333333,5.8333333333,23.1666666667,5.8333333333,41.4240536629,41.4240536629 -50,0,21.7,41.2,18.79,46.29,24.1333333333,39.4,20.7,40.79,20.6,49.76,7.59,57.36,21.23,35.86,21.89,38.9633333333,20.89,45.9,7.2,753.7333333333,91.6666666667,5.6666666667,23.3333333333,5.8666666667,31.0267410474,31.0267410474 -70,0,21.7,41.2,18.79,46.2,24.1333333333,39.3266666667,20.7,40.79,20.6,49.7,7.59,56.4333333333,21.26,35.9666666667,21.8566666667,38.8633333333,20.89,45.9,7.25,753.75,91.5,5.5,23.5,5.9,21.3547962252,21.3547962252 -70,0,21.7,41.26,18.79,46.2,24.1,39.29,20.7,40.79,20.6,49.56,7.59,55.7333333333,21.26,35.9666666667,21.79,38.79,20.89,45.9,7.3,753.7666666667,91.3333333333,5.3333333333,23.6666666667,5.9333333333,12.680621841,12.680621841 -70,0,21.7,41.23,18.79,46.6566666667,24.0333333333,39.23,20.7,40.8633333333,20.6,49.56,7.6566666667,55.2666666667,21.23,35.8266666667,21.79,38.79,20.89,45.9,7.35,753.7833333333,91.1666666667,5.1666666667,23.8333333333,5.9666666667,13.0920400261,13.0920400261 -100,0,21.7,41.3633333333,18.79,46.8633333333,23.9633333333,39,20.7,41.1566666667,20.6,49.53,7.7266666667,54.7233333333,21.23,35.8266666667,21.79,38.79,20.89,45.8333333333,7.4,753.8,91,5,24,6,19.8994544102,19.8994544102 -60,10,21.7,41.6666666667,18.79,46.9633333333,23.89,38.9333333333,20.7,41.3633333333,20.6,49.59,7.85,54.495,21.2,35.79,21.7,38.79,20.9633333333,45.6266666667,7.3833333333,753.8333333333,90.6666666667,5,24.3333333333,5.9333333333,41.7699173908,41.7699173908 -60,0,21.76,42.2,18.79,47.2233333333,23.79,38.79,20.7,41.4,20.6,49.5266666667,7.9333333333,53.9233333333,21.2,35.73,21.6333333333,38.73,20.89,45.4,7.3666666667,753.8666666667,90.3333333333,5,24.6666666667,5.8666666667,7.1799555211,7.1799555211 -70,30,21.79,42.39,18.89,47.4,23.73,38.6566666667,20.76,41.1266666667,20.6,49.1933333333,8.0666666667,53.39,21.2,35.56,21.6,38.7,20.89,45.1266666667,7.35,753.9,90,5,25,5.8,27.4472011835,27.4472011835 -90,20,21.79,42.53,18.89,47.4,23.745,38.645,20.7,41,20.6333333333,50.33,8.13,52.6,21.1333333333,35.5,21.5333333333,38.6266666667,20.89,44.9666666667,7.3333333333,753.9333333333,89.6666666667,5,25.3333333333,5.7333333333,28.9110561018,28.9110561018 -70,30,21.79,42.26,19,47.1333333333,23.7,38.56,20.7675,40.95,20.76,50.1966666667,8.19,52.0666666667,21.1,35.4,21.5,38.6266666667,20.89,44.7666666667,7.3166666667,753.9666666667,89.3333333333,5,25.6666666667,5.6666666667,39.5967383753,39.5967383753 -180,30,21.79,42.1266666667,19.0666666667,46.8,23.7,38.4333333333,20.8566666667,41.1333333333,20.76,48.8233333333,8.49,53,21.1,35.3266666667,21.5,38.6266666667,20.89,44.2966666667,7.3,754,89,5,26,5.6,0.6451168214,0.6451168214 -210,20,21.79,41.9666666667,19.2,46.5266666667,23.7,38.4333333333,20.89,41.2,20.745,47.82,8.8675,51.895,21.1,35.29,21.39,38.53,20.89,43.9633333333,7.3333333333,754,88.6666666667,5,26.5,5.5833333333,16.6398280184,16.6398280184 -130,30,21.8566666667,41.9,19.2,46.2666666667,23.6333333333,38.4333333333,20.9633333333,41.2,20.76,47.53,9.1266666667,50.1333333333,21.1,35.29,21.39,38.695,20.8233333333,43.9266666667,7.3666666667,754,88.3333333333,5,27,5.5666666667,1.5513466438,1.5513466438 -80,20,21.89,41.995,19.3233333333,46.2,23.6,38.4,21,41.2,20.76,47.8666666667,9.46,48.7933333333,21.1,35.2,21.3233333333,38.8633333333,20.89,44.46,7.4,754,88,5,27.5,5.55,1.1152724735,1.1152724735 -80,20,21.89,42.1266666667,19.39,46.2,23.5333333333,38.4666666667,21.0666666667,41.3333333333,20.7,48.3333333333,9.7333333333,47.4,21.1,35.2,21.29,38.9333333333,20.9633333333,45,7.4333333333,754,87.6666666667,5,28,5.5333333333,45.7925473223,45.7925473223 -80,0,21.89,42.26,19.5666666667,46.4633333333,23.5,38.4666666667,21.1333333333,41.3266666667,20.7,48.3633333333,10.13,44.39,21.1,35.2,21.29,39,20.9633333333,45.1333333333,7.4666666667,754,87.3333333333,5,28.5,5.5166666667,32.793263474,32.793263474 -70,0,21.89,42.4333333333,19.8266666667,47.0566666667,23.4266666667,38.4,21.2,41.4666666667,20.7,48.23,10.59,41.9233333333,21.1,35.2,21.2,39,21.1,45.1933333333,7.5,754,87,5,29,5.5,37.2832720983,37.2832720983 -90,0,21.89,42.5,20.29,46.3,23.39,38.53,21.29,41.56,20.7,48.09,10.96,37.99,21.1,35.1266666667,21.2,39,21.1,44.86,7.8166666667,754,86,5.1666666667,29,5.6333333333,2.8684567427,2.8684567427 -60,0,21.89,42.7666666667,20.29,45.9666666667,23.3233333333,38.59,21.29,41.4333333333,20.7,48.03,11.16,35.79,21.0666666667,34.9666666667,21.2,38.8633333333,21.1,44.79,8.1333333333,754,85,5.3333333333,29,5.7666666667,22.454770375,22.454770375 -60,10,21.9633333333,42.9666666667,20.245,46.395,23.29,38.73,21.29,41.4,20.7,47.9666666667,11.49,32.0933333333,21,34.8266666667,21.2,38.73,21,44.6633333333,8.45,754,84,5.5,29,5.9,2.8275776072,2.8275776072 -80,0,22,43.1266666667,20.29,46.46,23.29,38.79,21.29,41.3266666667,20.7,47.9,11.8233333333,28.6333333333,21,34.6633333333,21.1,38.6633333333,21,44.39,8.7666666667,754,83,5.6666666667,29,6.0333333333,30.1925892825,30.1925892825 -80,0,21.9266666667,43.26,20.29,46,23.29,38.9,21.3233333333,41.2,20.6666666667,47.7233333333,11.9725,26.075,21,34.53,21.1,38.53,21,44.3266666667,9.0833333333,754,82,5.8333333333,29,6.1666666667,3.7922807853,3.7922807853 -70,0,21.9266666667,43.59,20.29,45.9,23.23,38.9666666667,21.39,41.2,20.6,47.4633333333,12,25.05,21,34.4,21.1,38.5,21,44.2666666667,9.4,754,81,6,29,6.3,18.7341376208,18.7341376208 -60,0,22,44.8633333333,20.29,46.1,23.2,39.1266666667,21.39,41.1266666667,20.6,47.4,12,25.1,21.05,34.45,21.0666666667,38.6633333333,21,43.8633333333,9.4833333333,754,79.1666666667,5.8333333333,30.8333333333,6.0333333333,33.9852723759,33.9852723759 -90,10,22,45.3966666667,20.4266666667,46.43,23.2,39.4,21.39,41.26,20.6,47.3266666667,12.2,24.3988888889,21,34.4,21.0333333333,38.8266666667,21,43.59,9.5666666667,754,77.3333333333,5.6666666667,32.6666666667,5.7666666667,46.5184075525,46.5184075525 -100,0,22,45.3233333333,20.5666666667,46.0966666667,23.2,39.5,21.39,41.2,20.6,47.26,12.4,23.6977777778,21,34.4,21.0166666667,38.7633333333,21,43.2966666667,9.65,754,75.5,5.5,34.5,5.5,24.3899424095,24.3899424095 -80,0,22,45.0933333333,20.6633333333,45.8333333333,23.2,39.56,21.39,41.3333333333,20.6,47.2,12.6,22.9966666667,21,34.4,21,38.7,21,42.9633333333,9.7333333333,754,73.6666666667,5.3333333333,36.3333333333,5.2333333333,23.663307901,23.663307901 -100,20,22,44.55,20.93,45.1666666667,23.2,39.59,21.5333333333,41.7666666667,20.6,47.09,12.7083333333,21.980787037,21.0111111111,34.3444444444,21.0208333333,38.7291666667,21,42.59,9.8166666667,754,71.8333333333,5.1666666667,38.1666666667,4.9666666667,33.1063563586,33.1063563586 -90,20,22,43.8633333333,21.1,44.1933333333,23.1333333333,39.5,21.6,42.29,20.6,46.9,12.8166666667,20.9649074074,21.0222222222,34.2888888889,21.0416666667,38.7583333333,21,42.7233333333,9.9,754,70,5,40,4.7,20.1245710603,20.1245710603 -70,0,22,43.4633333333,21.0333333333,43.8,23.2,39.5,21.6,42.3633333333,20.6,46.745,12.925,19.9490277778,21.0333333333,34.2333333333,21.0625,38.7875,21,42.6933333333,9.9666666667,753.9333333333,70.3333333333,5.1666666667,37.6666666667,4.8333333333,5.7381076389,5.7381076389 -70,0,22,43.4,21,43.5266666667,23.2,39.5966666667,21.6,42.59,20.6,46.6633333333,13.0333333333,18.9331481481,21.0444444444,34.1777777778,21.0833333333,38.8166666667,21,42.3,10.0333333333,753.8666666667,70.6666666667,5.3333333333,35.3333333333,4.9666666667,43.6532650841,43.6532650841 -60,0,22,42.9475,21,43.4,23.2,39.8633333333,21.6,42.39,20.6,46.59,13.1416666667,17.9172685185,21.0555555556,34.1222222222,21.1041666667,38.8458333333,21,41.6933333333,10.1,753.8,71,5.5,33,5.1,44.1649170709,44.1649170709 -60,0,21.9266666667,42.6566666667,20.89,43.1633333333,23.2,39.79,21.5333333333,41.99,20.6,46.4666666667,13.25,16.9013888889,21.0666666667,34.0666666667,21.125,38.875,20.9266666667,41.36,10.1666666667,753.7333333333,71.3333333333,5.6666666667,30.6666666667,5.2333333333,42.9493368138,42.9493368138 -60,0,21.89,42.3633333333,20.89,43.03,23.2,39.73,21.5333333333,41.5966666667,20.6,46.4,13.3583333333,15.8855092593,21.0777777778,34.0111111111,21.1458333333,38.9041666667,20.9266666667,40.99,10.2333333333,753.6666666667,71.6666666667,5.8333333333,28.3333333333,5.3666666667,9.1658312944,9.1658312944 -60,10,21.9633333333,42.1566666667,20.9266666667,42.7233333333,23.1666666667,39.56,21.5,41.2233333333,20.6,46.2,13.4666666667,14.8696296296,21.0888888889,33.9555555556,21.1666666667,38.9333333333,20.9266666667,40.6566666667,10.3,753.6,72,6,26,5.5,23.0685515446,23.0685515446 -140,0,21.9633333333,42.1333333333,21,42.4633333333,23.1,39.5,21.5,40.9633333333,20.6,46.1266666667,13.575,13.85375,21.1,33.9,21.2,38.9,20.945,40.545,10.3333333333,753.4833333333,71.3333333333,6.5,28.3333333333,5.3666666667,32.4786022655,32.4786022655 -120,0,21.89,42.5266666667,21.0666666667,42.26,23.1,39.3633333333,21.4633333333,40.9,20.6,46.0266666667,13.5328571429,14.6083333333,21.0952380952,33.9566666667,21.2,39.025,20.9266666667,40.2233333333,10.3666666667,753.3666666667,70.6666666667,7,30.6666666667,5.2333333333,37.8598037991,37.8598037991 -90,10,22,42.56,21,42.32,23.1,39.29,21.39,40.8266666667,20.6,45.9,13.4907142857,15.3629166667,21.0904761905,34.0133333333,21.26,39.46,20.9266666667,39.9633333333,10.4,753.25,70,7.5,33,5.1,43.0193409906,43.0193409906 -110,0,22.0666666667,42.56,20.9266666667,42.56,23.1,39.26,21.39,40.6333333333,20.6,45.9,13.4485714286,16.1175,21.0857142857,34.07,21.4366666667,39.7066666667,20.89,39.79,10.4333333333,753.1333333333,69.3333333333,8,35.3333333333,4.9666666667,21.9589706394,21.9589706394 -100,20,22.0666666667,42.4,20.79,42.5266666667,23.1,39.2,21.39,40.4333333333,20.6,45.9,13.4064285714,16.8720833333,21.080952381,34.1266666667,21.6133333333,39.9533333333,20.89,39.79,10.4666666667,753.0166666667,68.6666666667,8.5,37.6666666667,4.8333333333,18.8488266547,18.8488266547 -110,20,22,42,20.73,42.3266666667,23.1,39.1633333333,21.39,40.4,20.6,45.9,13.3642857143,17.6266666667,21.0761904762,34.1833333333,21.79,40.2,20.8566666667,39.76,10.5,752.9,68,9,40,4.7,32.3961098562,32.3961098562 -90,30,22,41.7233333333,20.7,42.26,23.1,39.03,21.39,40.4,20.6,45.8633333333,13.3221428571,18.38125,21.0714285714,34.24,21.79,40.2,20.8566666667,39.6266666667,10.4666666667,752.8666666667,68.3333333333,9,40,4.75,31.5166091779,31.5166091779 -100,20,22,41.53,20.7,42.09,23.1,38.9666666667,21.39,40.5,20.6,45.79,13.28,19.1358333333,21.0666666667,34.2966666667,22,40.4,20.84,39.395,10.4333333333,752.8333333333,68.6666666667,9,40,4.8,12.1621706756,12.1621706756 -110,20,22,41.345,20.7,41.9666666667,23.05,38.845,21.39,40.5,20.6,45.7,13.2378571429,19.8904166667,21.0619047619,34.3533333333,22,40.495,20.8566666667,39.3633333333,10.4,752.8,69,9,40,4.85,10.4224731098,10.4224731098 -110,30,22,41.23,20.7,41.9,23,38.79,21.5,40.6566666667,20.6,45.6266666667,13.1957142857,20.645,21.0571428571,34.41,22.1,40.5975,20.8566666667,39.26,10.3666666667,752.7666666667,69.3333333333,9,40,4.9,30.4153210833,30.4153210833 -110,20,22,41.09,20.7,41.79,23,38.7225,21.5,40.79,20.6,45.56,13.1535714286,21.3995833333,21.0523809524,34.4666666667,22.2,40.7,20.79,39.2,10.3333333333,752.7333333333,69.6666666667,9,40,4.95,37.1961106895,37.1961106895 -110,20,21.9266666667,41.03,20.7,41.79,23,38.7,21.5666666667,40.73,20.6,45.5,13.1114285714,22.1541666667,21.0476190476,34.5233333333,22.23,40.7666666667,20.8566666667,39.2233333333,10.3,752.7,70,9,40,5,13.5410426767,13.5410426767 -120,20,21.89,41,20.6666666667,41.76,23,38.59,21.6,40.7,20.6,45.5,13.0692857143,22.90875,21.0428571429,34.58,22.3566666667,40.9,20.79,39.1633333333,10.4666666667,752.6166666667,70.3333333333,9,40,5.2333333333,38.2177031366,38.2177031366 -100,20,21.89,40.9333333333,20.6,41.76,23,38.545,21.6,40.645,20.6,45.475,13.0271428571,23.6633333333,21.0380952381,34.6366666667,22.39,40.9,20.79,39.09,10.6333333333,752.5333333333,70.6666666667,9,40,5.4666666667,21.6224637581,21.6224637581 -120,0,21.9633333333,40.9,20.6,41.79,23.0333333333,38.53,21.6,40.73,20.6,45.4,12.985,24.4179166667,21.0333333333,34.6933333333,22.6,41.09,20.79,39.03,10.8,752.45,71,9,40,5.7,38.8547001523,38.8547001523 -100,10,21.945,40.9,20.5333333333,41.8633333333,23.0333333333,38.53,21.6666666667,40.93,20.6,45.4,12.9428571429,25.1725,21.0285714286,34.75,22.6,41.1633333333,20.79,39.29,10.9666666667,752.3666666667,71.3333333333,9,40,5.9333333333,16.1994128604,16.1994128604 -100,0,21.89,40.9666666667,20.5,42.03,23,38.5,21.6,40.8333333333,20.5333333333,45.4,12.9007142857,25.9270833333,21.0238095238,34.8066666667,22.73,41.4333333333,20.79,39.29,11.1333333333,752.2833333333,71.6666666667,9,40,6.1666666667,26.1457019602,26.1457019602 -90,0,21.89,41,20.5,42.09,23,38.5,21.6,40.6266666667,20.5,45.4,12.8585714286,26.6816666667,21.019047619,34.8633333333,22.79,41.56,20.79,39.29,11.3,752.2,72,9,40,6.4,49.4552780874,49.4552780874 -90,0,21.89,41,20.5,42.1266666667,23,38.5,21.6,40.59,20.5,45.4,12.8164285714,27.43625,21.0142857143,34.92,22.8233333333,41.89,20.79,39.3633333333,11.1833333333,752.1,73.1666666667,8.8333333333,40,6.5,22.3564276821,22.3564276821 -80,0,21.89,41.09,20.4266666667,42.2,22.9266666667,38.5,21.6,40.59,20.5333333333,45.4,12.7742857143,28.1908333333,21.0095238095,34.9766666667,22.89,42.2233333333,20.79,39.4,11.0666666667,752,74.3333333333,8.6666666667,40,6.6,27.7096148813,27.7096148813 -90,0,21.89,41.1633333333,20.5,42.4633333333,22.89,38.53,21.5666666667,40.59,20.5333333333,45.4,12.7321428571,28.9454166667,21.0047619048,35.0333333333,22.9266666667,42.5,20.79,39.4,10.95,751.9,75.5,8.5,40,6.7,8.6731426418,8.6731426418 -70,0,21.89,41.29,20.5,42.59,22.89,38.59,21.5,40.59,20.5,45.4,12.69,29.7,21,35.09,23,42.5,20.79,39.4,10.8333333333,751.8,76.6666666667,8.3333333333,40,6.8,17.4856873578,17.4856873578 -110,0,21.89,41.29,20.5,42.53,22.8566666667,38.5,21.5,40.59,20.5,45.4666666667,12.7175,29.425,20.9633333333,35.23,23.1,42.79,20.79,39.5,10.7166666667,751.7,77.8333333333,8.1666666667,40,6.9,12.4918230111,12.4918230111 -70,0,21.89,41.29,20.39,42.4333333333,22.79,38.5,21.4266666667,40.53,20.5,45.5,12.6666666667,27.6666666667,20.9633333333,35.29,23.1666666667,42.79,20.79,39.56,10.6,751.6,79,8,40,7,44.2507931264,44.2507931264 -90,0,21.8233333333,41.29,20.39,42.56,22.76,38.5,21.4633333333,40.59,20.5,45.5,12.3966666667,29.3333333333,20.89,35.4,23.245,42.995,20.73,39.59,10.7166666667,751.5333333333,79,7.8333333333,40,7.1333333333,5.5746598635,5.5746598635 -100,0,21.79,41.29,20.3566666667,42.6266666667,22.7,38.5,21.39,40.59,20.5,45.59,12.13,34,20.89,35.5266666667,23.29,43.1266666667,20.79,39.6633333333,10.8333333333,751.4666666667,79,7.6666666667,40,7.2666666667,23.8983474555,23.8983474555 -90,0,21.8566666667,41.43,20.29,42.8333333333,22.7,38.59,21.39,40.7666666667,20.5,45.59,11.7633333333,38.53,20.89,35.73,23.29,43.2,20.76,39.7,10.95,751.4,79,7.5,40,7.4,49.4200253044,49.4200253044 -110,0,21.89,42.43,20.29,42.9633333333,22.7,38.6633333333,21.39,40.9,20.5,45.7,11.47,42.515,20.89,35.8633333333,23.365,43.145,20.76,39.7,11.0666666667,751.3333333333,79,7.3333333333,40,7.5333333333,29.5940531651,29.5940531651 -150,0,21.89,42.29,20.29,43.2233333333,22.7,38.7,21.3566666667,41,20.5,45.76,11.13,44.6966666667,20.89,36.09,23.445,43.245,20.73,39.7,11.1833333333,751.2666666667,79,7.1666666667,40,7.6666666667,11.1670042621,11.1670042621 -130,0,21.79,42.23,20.29,43.3266666667,22.7,38.76,21.29,41.06,20.5,45.79,11,42.7666666667,20.89,36.09,23.5,43.3633333333,20.79,39.76,11.3,751.2,79,7,40,7.8,12.5345674925,12.5345674925 -110,0,21.79,42.3633333333,20.29,43.4,22.79,38.79,21.34,41.245,20.5,45.79,11,40.8933333333,20.89,36.06,23.5,43.1816666667,20.7,39.9,11.0666666667,751.2166666667,79.6666666667,7.3333333333,40,7.7,32.9814945464,32.9814945464 -100,0,21.8566666667,42.4666666667,20.3233333333,43.4,22.79,38.9,21.39,41.4333333333,20.5,45.79,11,38.6725,20.9633333333,36,23.5,43,20.7,39.9,10.8333333333,751.2333333333,80.3333333333,7.6666666667,40,7.6,25.212661468,25.212661468 -90,0,21.79,42.3266666667,20.3233333333,43.3266666667,22.79,38.9,21.39,41.36,20.5666666667,45.8633333333,11.0666666667,35.6966666667,20.9725,35.82125,23.54,42.9,20.73,39.9,10.6,751.25,81,8,40,7.5,23.4131944017,23.4131944017 -100,0,21.8233333333,42.1266666667,20.29,43.1633333333,22.79,38.9,21.3233333333,41.09,20.6,45.845,11.19,34.6666666667,21,35.6371428571,23.5714285714,42.7,20.79,39.9,10.3666666667,751.2666666667,81.6666666667,8.3333333333,40,7.4,49.5024185861,49.5024185861 -240,0,21.8233333333,42.0666666667,20.29,43.03,22.79,38.9,21.3233333333,40.9633333333,20.7,45.79,11.2633333333,34,21,35.516,23.5,42.554,20.7,39.76,10.1333333333,751.2833333333,82.3333333333,8.6666666667,40,7.3,42.203380703,42.203380703 -470,0,21.89,41.995,20.29,42.9666666667,22.79,38.9,21.3566666667,40.7,20.7,45.79,11.16,32.3966666667,21,35.4,23.5714285714,42.4271428571,20.7,39.7,9.9,751.3,83,9,40,7.2,26.1906715343,26.1906715343 -100,0,21.89,42.6966666667,20.29,42.9,22.79,38.9,21.29,40.5666666667,20.6666666667,45.7,10.96,32.2633333333,21,35.29,23.5,42.272,20.7,39.7,9.9333333333,751.3,81.3333333333,8.6666666667,40,6.9166666667,38.6233610101,38.6233610101 -100,0,21.89,43.4233333333,20.26,43.6933333333,22.79,38.9,21.29,40.3333333333,20.6,45.7,10.89,27.3666666667,21,35.0842857143,23.5714285714,42.0957142857,20.7,39.7,9.9666666667,751.3,79.6666666667,8.3333333333,40,6.6333333333,3.6978468648,3.6978468648 -420,0,22,42.8266666667,20.2,43.5,22.79,38.9666666667,21.29,40.0666666667,20.6,45.73,10.83,25.3,21,34.834,23.6,41.776,20.7,39.7,10,751.3,78,8,40,6.35,23.0343840085,23.0343840085 -320,10,22,44.0266666667,20.2,43.8333333333,22.79,39,21.29,40,20.6,45.79,10.0666666667,33.2666666667,20.98625,34.77875,23.5375,41.24875,20.7,39.56,10.0333333333,751.3,76.3333333333,7.6666666667,40,6.0666666667,49.3054687162,49.3054687162 -100,10,22.0666666667,47.7333333333,20.2,46.2266666667,22.79,39.06,21.29,40,20.6,45.86,9.46,35.86,20.89,34.678,23.5,40.856,20.7,39.4333333333,10.0666666667,751.3,74.6666666667,7.3333333333,40,5.7833333333,26.4160944615,26.4160944615 -110,10,22.1333333333,48.4666666667,20.2,49.45,22.89,39.36,21.2,39.79,20.6,46.1333333333,9.39,35.6666666667,20.9371428571,34.59,23.4371428571,40.5671428571,20.7,39.29,10.1,751.3,73,7,40,5.5,49.5014078799,49.5014078799 -150,20,22.1,47.6,20.1666666667,49.0333333333,22.89,39.6333333333,21.2,39.73,20.6,46.5666666667,9.2566666667,34.4666666667,20.89,34.5,23.412,40.594,20.6333333333,39.1566666667,9.8833333333,751.3,73.3333333333,7.1666666667,40,5.3333333333,10.5011577951,10.5011577951 -160,30,22.1,47.3266666667,20.1,48.2333333333,22.89,39.8,21.2,39.8266666667,20.7266666667,55.5666666667,8.8966666667,34.3966666667,20.89,34.4428571429,23.5,40.79,20.7,39.1633333333,9.6666666667,751.3,73.6666666667,7.3333333333,40,5.1666666667,16.0692805657,16.0692805657 -140,20,22.1,46.7633333333,20.0666666667,47.1233333333,22.89,40.1333333333,21.2,39.9666666667,21,64.93,8.63,35.0633333333,20.89,34.36,23.54,40.656,20.7,38.9633333333,9.45,751.3,74,7.5,40,5,25.8284185547,25.8284185547 -130,30,22.1,46.03,20,46.4566666667,22.9633333333,40.2,21.29,40.29,20.9266666667,64.9966666667,8.5,33.2,20.89,34.2,23.5428571429,39.88,20.6,38.8633333333,9.2333333333,751.3,74.3333333333,7.6666666667,40,4.8333333333,5.5076755234,5.5076755234 -130,20,22.1,45.1333333333,19.9633333333,45.7966666667,22.89,40.26,21.29,40.29,20.8566666667,63.4333333333,8.3233333333,32.53,20.89,34.054,23.5,39.22,20.6,38.73,9.0166666667,751.3,74.6666666667,7.8333333333,40,4.6666666667,27.7896117768,27.7896117768 -130,30,22.1,44.8,19.89,45.33,22.89,40.1633333333,21.29,40.23,20.79,61.7666666667,8.13,32.6633333333,20.8328571429,33.8,23.5,38.7,20.6,38.59,8.8,751.3,75,8,40,4.5,27.8494837461,27.8494837461 -110,20,22.0666666667,44.3333333333,19.8566666667,44.8633333333,22.89,40.09,21.29,40.3633333333,20.7,59.8666666667,7.9666666667,33.2266666667,20.83,33.714,23.39,37.98125,20.6,38.53,8.7666666667,751.35,74.5,8,40,4.3666666667,44.6789563983,44.6789563983 -120,30,22,43.8,19.79,44.4633333333,22.89,39.9666666667,21.39,40.495,20.7,58.6666666667,7.9,33.6333333333,20.79,33.59,23.39,37.46,20.6,38.3633333333,8.7333333333,751.4,74,8,40,4.2333333333,14.9074566667,14.9074566667 -130,20,22,43.2966666667,19.79,44.2233333333,22.89,39.795,21.4266666667,40.26,20.8,62,7.8666666667,34.1933333333,20.79,33.59,23.3042857143,37.2257142857,20.5333333333,38.23,8.7,751.45,73.5,8,40,4.1,11.217919772,11.217919772 -130,30,22,42.9633333333,19.73,44.03,22.89,39.7,21.4266666667,40.1266666667,21.26,73.46,7.8,34.6,20.79,33.8657142857,23.29,36.9,20.5666666667,38.09,8.6666666667,751.5,73,8,40,3.9666666667,31.609125447,31.609125447 -110,10,22,42.76,19.7,43.76,22.89,39.7,21.4266666667,40,21.26,69.8333333333,7.6566666667,35.4933333333,20.83,34.434,23.29,36.5671428571,20.5,38.03,8.6333333333,751.55,72.5,8,40,3.8333333333,40.786796913,40.786796913 -80,10,21.9266666667,42.5,19.6333333333,43.6266666667,22.8233333333,39.5666666667,21.5,40,21.1,66.2425,7.53,36.2333333333,20.8614285714,34.6942857143,23.29,36.29,20.5,37.8633333333,8.6,751.6,72,8,40,3.7,27.1836101427,27.1836101427 -30,0,21.9633333333,42.4566666667,19.6,43.6266666667,22.79,39.4666666667,21.5,39.9,21,64.09,7.4666666667,36.5666666667,20.89,35.09,23.29,36.4733333333,20.5,37.6566666667,8.55,751.6,72,7.8333333333,40,3.6666666667,39.6381422644,39.6381422644 -50,0,21.89,42.7225,19.5333333333,43.76,22.79,39.4,21.5,39.8266666667,20.9633333333,63.3633333333,7.3333333333,36.96,20.89,35.17,23.29,36.916,20.39,37.3266666667,8.5,751.6,72,7.6666666667,40,3.6333333333,46.7352554318,46.7352554318 -40,0,21.89,42.6266666667,19.5,43.8266666667,22.79,39.4333333333,21.5,39.79,20.89,62.83,7.1566666667,38,20.89,35.3671428571,23.2257142857,37.2,20.4633333333,37.5266666667,8.45,751.6,72,7.5,40,3.6,27.9750929098,27.9750929098 -60,0,21.79,42.53,19.4266666667,43.9,22.79,39.5,21.5,39.73,20.89,62.1233333333,7.03,38.6666666667,20.89,35.54,23.2,37.29,20.4633333333,37.59,8.4,751.6,72,7.3333333333,40,3.5666666667,25.191323366,25.191323366 -50,0,21.79,42.53,19.39,43.9,22.79,39.5,21.39,39.59,20.8233333333,61.2633333333,6.9333333333,39.6966666667,20.89,35.73375,23.1142857143,37.29,20.39,37.92,8.35,751.6,72,7.1666666667,40,3.5333333333,40.2566839126,40.2566839126 -50,0,21.76,42.4,19.3233333333,43.9,22.73,39.56,21.39,39.59,20.79,59.9966666667,6.9333333333,40.3633333333,20.89,35.8685714286,23.04,37.254,20.39,38.43,8.3,751.6,72,7,40,3.5,21.7592576635,21.7592576635 -50,0,21.7,42.3266666667,19.29,43.9,22.79,39.59,21.39,39.59,20.79,59.1966666667,6.8,41.4666666667,20.89,36.036,23,37.3685714286,20.4266666667,38.8,8.1833333333,751.6166666667,72.8333333333,7,38.1666666667,3.5333333333,6.0169595759,6.0169595759 -50,10,21.7,42.1633333333,19.2,43.9,22.73,39.59,21.3233333333,39.59,20.76,58.2666666667,6.66,42.06,20.89,36.2042857143,22.89,37.44,20.5,39.06,8.0666666667,751.6333333333,73.6666666667,7,36.3333333333,3.5666666667,38.1453408161,38.1453408161 -50,0,21.7,42.03,19.2,43.9,22.79,39.5,21.29,39.59,20.76,57.6666666667,6.545,42.85,20.912,36.376,22.8328571429,37.64,20.5,39.3266666667,7.95,751.65,74.5,7,34.5,3.6,19.1376719973,19.1376719973 -50,0,21.6666666667,41.9666666667,19.1666666667,43.9333333333,22.79,39.56,21.29,39.59,20.7,56.96,6.475,44.14,21,36.5642857143,22.79,37.7,20.5,39.5266666667,7.8333333333,751.6666666667,75.3333333333,7,32.6666666667,3.6333333333,37.6651784405,37.6651784405 -60,0,21.6,41.9,19.1,44.1333333333,22.79,39.56,21.29,39.59,20.7,56.4266666667,6.295,44.395,20.956,36.7,22.79,37.7,20.4266666667,39.53,7.7166666667,751.6833333333,76.1666666667,7,30.8333333333,3.6666666667,26.3426604564,26.3426604564 -50,0,21.5666666667,41.9,19.1,44.1266666667,22.79,39.5,21.29,39.59,20.7,55.9,6.165,45.34,20.9842857143,36.7928571429,22.7,37.834,20.4266666667,39.6633333333,7.6,751.7,77,7,29,3.7,23.9487142768,23.9487142768 -70,0,21.5,41.8266666667,19.0333333333,44.1266666667,22.79,39.5,21.2,39.5,20.7,55.5666666667,6.1566666667,46.6966666667,21,36.978,22.6857142857,37.9,20.4266666667,39.89,7.5166666667,751.7166666667,77.5,6.6666666667,28.8333333333,3.7333333333,21.4583213907,21.4583213907 -50,0,21.5,41.9,19,44.09,22.79,39.5,21.2,39.5,20.6,55.06,6.234,47.4,21,37.1685714286,22.6,37.9,20.5,40.2233333333,7.4333333333,751.7333333333,78,6.3333333333,28.6666666667,3.7666666667,49.8666724656,49.8666724656 -60,0,21.5,41.9,18.9266666667,44.1633333333,22.79,39.4666666667,21.2,39.5,20.6,54.8,6.33,47.389,21,37.134,22.5714285714,37.9285714286,20.5,40.4633333333,7.35,751.75,78.5,6,28.5,3.8,4.0539178299,4.0539178299 -40,0,21.5,41.8633333333,18.89,44.29,22.79,39.425,21.1666666667,39.59,20.6,54.5266666667,6.42,47.689,21,37.3633333333,22.5,38.0225,20.5,40.7233333333,7.2666666667,751.7666666667,79,5.6666666667,28.3333333333,3.8333333333,11.1505030654,11.1505030654 -60,0,21.4266666667,41.79,18.89,44.29,22.79,39.5,21.1,39.59,20.6,54.3266666667,6.5494444444,47.8766666667,21,37.4,22.5,38.09,20.5,41.03,7.1833333333,751.7833333333,79.5,5.3333333333,28.1666666667,3.8666666667,19.2295906716,19.2295906716 -50,0,21.39,41.7,18.8233333333,44.2666666667,22.79,39.4,21.1,39.53,20.6,54.1333333333,6.6185714286,47.3942857143,21,37.4,22.39,37.96,20.5,41.2233333333,7.1,751.8,80,5,28,3.9,7.6075202553,7.6075202553 -60,0,21.39,41.76,18.8233333333,44.3266666667,22.79,39.4666666667,21.1,39.59,20.6,53.86,6.59,47.05,21,37.4,22.39,38.04375,20.5,41.4633333333,7,751.7833333333,80.8333333333,5,27.8333333333,3.9333333333,23.6329392181,23.6329392181 -50,0,21.39,41.7,18.79,44.29,22.79,39.4,21.1,39.59,20.6,53.645,6.354,46.45,21.1,37.44,22.3233333333,38.2266666667,20.5,41.6633333333,6.9,751.7666666667,81.6666666667,5,27.6666666667,3.9666666667,4.0343233151,4.0343233151 -60,0,21.39,41.7,18.79,44.3633333333,22.79,39.4,21.1,39.59,20.5,53.43,6.0475,46.6925,21.1,37.5,22.29,38.576,20.5,41.8266666667,6.8,751.75,82.5,5,27.5,4,1.758717862,1.758717862 -60,0,21.39,41.7,18.73,44.5,22.89,39.56,21,39.5,20.5,53.29,5.86,47.936,21.0818181818,37.4818181818,22.2409090909,38.9618181818,20.5,41.9666666667,6.7,751.7333333333,83.3333333333,5,27.3333333333,4.0333333333,4.7471408499,4.7471408499 -50,0,21.3566666667,41.7,18.73,44.5,22.89,39.5,21,39.5,20.5,53.1333333333,5.6266666667,48.4666666667,21.0777777778,37.5177777778,22.2,39.09,20.5333333333,42.1266666667,6.6,751.7166666667,84.1666666667,5,27.1666666667,4.0666666667,23.2658916502,23.2658916502 -60,0,21.3566666667,41.7,18.7,44.53,23,39.56,21,39.5,20.5,52.9333333333,5.4333333333,48.86,21.1,37.612,22.1285714286,39.1942857143,20.55,42.295,6.5,751.7,85,5,27,4.1,8.1667213701,8.1667213701 -40,0,21.29,41.7,18.7,44.53,23,39.5,21,39.5,20.5,52.79,5.1566666667,49.33,21.0571428571,37.5828571429,22.1,39.4,20.5333333333,42.4666666667,6.3833333333,751.7,85.5,5,27,4.0666666667,29.5728359954,29.5728359954 -50,0,21.29,41.6266666667,18.6,44.545,23,39.53,21,39.5,20.5,52.73,5.03,50.1966666667,21.1,37.59,22.1,39.4857142857,20.5,42.6266666667,6.2666666667,751.7,86,5,27,4.0333333333,13.6391587788,13.6391587788 -50,0,21.29,41.59,18.6,44.59,23,39.59,21,39.5,20.4633333333,52.56,4.9,51.55,21.1,37.5642857143,22.1,39.7,20.5666666667,42.76,6.15,751.7,86.5,5,27,4,44.9764237157,44.9764237157 -50,0,21.29,41.59,18.6,44.59,23,39.59,20.89,39.4,20.39,52.4333333333,4.7975,51.87,21.1,37.59,22.0714285714,39.7,20.5333333333,42.9333333333,6.0333333333,751.7,87,5,27,3.9666666667,30.4201615276,30.4201615276 -60,0,21.2,41.5,18.5666666667,44.59,23,39.59,20.89,39.4,20.39,52.26,4.5918181818,52.4981818182,21.1,37.6214285714,22,39.7,20.5333333333,43.06,5.9166666667,751.7,87.5,5,27,3.9333333333,4.0374814649,4.0374814649 -60,0,21.2,41.5,18.5,44.6633333333,23.0333333333,39.6266666667,20.89,39.4,20.39,52.2,4.53,53.1805555556,21.1,37.7,21.9842857143,39.5928571429,20.5,43.2,5.8,751.7,88,5,27,3.9,20.9898355417,20.9898355417 -60,0,21.2,41.4,18.5,44.73,23.1,39.6266666667,20.89,39.4,20.39,52.06,4.515,53.4972222222,21.1,37.7,21.89,39.5,20.5,43.26,5.7166666667,751.7,88,5,26.8333333333,3.8333333333,6.2134262407,6.2134262407 -50,0,21.2,41.4,18.4266666667,44.73,23.1,39.59,20.89,39.3633333333,20.39,52,4.4666666667,53.5477777778,21.0625,37.71125,21.89,39.5,20.6,43.4,5.6333333333,751.7,88,5,26.6666666667,3.7666666667,35.318584484,35.318584484 -60,0,21.2,41.4,18.39,44.6266666667,23.1,39.59,20.89,39.29,20.39,51.8633333333,4.4055555556,53.5588888889,21.1,37.79,21.89,39.4,20.6,43.4666666667,5.55,751.7,88,5,26.5,3.7,39.1971021076,39.1971021076 -50,0,21.2,41.4,18.39,44.7,23.1,39.59,20.84,39.29,20.3233333333,51.73,4.35,53.86,21.1,37.8971428571,21.89,39.3057142857,20.5,43.5,5.4666666667,751.7,88,5,26.3333333333,3.6333333333,2.5949369767,2.5949369767 -50,0,21.2,41.4,18.3566666667,44.7,23.1,39.59,20.79,39.2,20.39,51.6633333333,4.2388888889,53.7355555556,21.1,38,21.83,39.214,20.5666666667,43.56,5.3833333333,751.7,88,5,26.1666666667,3.5666666667,3.2299342914,3.2299342914 -50,0,21.1333333333,41.4,18.29,44.7,23.1,39.59,20.79,39.2,20.39,51.53,4.1522222222,53.8577777778,21.0285714286,37.9842857143,21.79,39.0257142857,20.5333333333,43.59,5.3,751.7,88,5,26,3.5,0.4448621301,0.4448621301 -50,0,21.1,41.3633333333,18.29,44.7,23.1,39.59,20.79,39.2,20.39,51.4666666667,3.9822222222,53.5777777778,21.08,37.994,21.79,38.9,20.6,43.6633333333,5.2666666667,751.6833333333,87.8333333333,5,28.3333333333,3.4333333333,24.7458770988,24.7458770988 -50,0,21.1,41.29,18.29,44.7,23.1,39.59,20.79,39.2,20.39,51.3266666667,3.8908333333,53.7675,21.0285714286,37.8971428571,21.79,38.9428571429,20.5333333333,43.73,5.2333333333,751.6666666667,87.6666666667,5,30.6666666667,3.3666666667,9.7049197415,9.7049197415 -50,0,21.1,41.29,18.2,44.59,23.1,39.59,20.79,39.1633333333,20.29,51.26,3.8633333333,54.7566666667,21.04,37.874,21.79,38.9,20.6,43.79,5.2,751.65,87.5,5,33,3.3,41.2598132272,41.2598132272 -30,0,21.1,41.29,18.2,44.6633333333,23.1,39.59,20.79,39.09,20.29,51.1725,4.1233333333,55.6666666667,21.0857142857,37.9857142857,21.7257142857,38.9,20.6,43.9,5.1666666667,751.6333333333,87.3333333333,5,35.3333333333,3.2333333333,32.2272221325,32.2272221325 -40,0,21,41.2,18.2,44.7,23.1,39.56,20.76,39.09,20.29,51.03,4.2633333333,56,21,37.834,21.7,38.754,20.6,43.9666666667,5.1333333333,751.6166666667,87.1666666667,5,37.6666666667,3.1666666667,5.4993152502,5.4993152502 -30,0,21.0333333333,41.1266666667,18.1333333333,44.7,23.1,39.5,20.7,39.09,20.29,50.9666666667,4.3,55.5,21.0125,37.7675,21.6857142857,38.6371428571,20.6,44,5.1,751.6,87,5,40,3.1,30.4959327681,30.4959327681 -50,0,21.0333333333,41.1266666667,18.1,44.7,23.0666666667,39.4666666667,20.76,39.09,20.29,50.8266666667,3.985625,54.77125,21.04,37.772,21.64,38.616,20.6,43.975,5.0666666667,751.6166666667,87.5,5,40,3.1333333333,4.5274949167,4.5274949167 -50,0,21,41.09,18.1,44.7,23,39.4666666667,20.7,39.09,20.29,50.76,3.9363636364,54.9827272727,21,37.7,21.6,38.4285714286,20.5333333333,43.9666666667,5.0333333333,751.6333333333,88,5,40,3.1666666667,23.7391983275,23.7391983275 -50,0,21,41.09,18.1,44.7,23,39.59,20.7,39.06,20.29,50.6266666667,3.8175,54.975,21,37.7,21.6,38.29,20.5666666667,43.9,5,751.65,88.5,5,40,3.2,37.0375465718,37.0375465718 -60,0,21,41.09,18.075,44.7175,23,39.59,20.6333333333,38.9333333333,20.29,50.56,3.6633333333,54.4566666667,21.0285714286,37.7514285714,21.5571428571,38.3528571429,20.5666666667,43.9666666667,4.9666666667,751.6666666667,89,5,40,3.2333333333,38.7270983774,38.7270983774 -50,0,20.9266666667,41.03,18,44.59,23,39.59,20.7,39,20.29,50.5,3.59,54.79,21,37.856,21.54,38.478,20.5,43.9666666667,4.9333333333,751.6833333333,89.5,5,40,3.2666666667,12.7555411775,12.7555411775 -60,0,20.89,41,18,44.6266666667,23,39.59,20.6333333333,38.9333333333,20.23,50.3266666667,3.6566666667,55.9666666667,21,37.9,21.5,38.5257142857,20.5,43.9,4.9,751.7,90,5,40,3.3,37.5564160058,37.5564160058 -50,0,20.89,41,18,44.6266666667,23,39.59,20.6,38.9,20.23,50.3266666667,3.79,56.36,21,37.845,21.5,38.5385714286,20.5666666667,44,4.75,751.6833333333,90.1666666667,4.8333333333,40,3.2,46.7239773949,46.7239773949 -60,0,20.89,41,17.9633333333,44.7,23,39.59,20.6,38.8266666667,20.2,50.2,3.59,55.59,21,37.745,21.5,38.5,20.5,44,4.6,751.6666666667,90.3333333333,4.6666666667,40,3.1,7.4842257309,7.4842257309 -50,0,20.89,41,17.89,44.7,23,39.59,20.6,38.9,20.2,50.1266666667,3.4913333333,55.7713333333,21,37.7,21.4528571429,38.3957142857,20.5,44,4.45,751.65,90.5,4.5,40,3,24.2999751121,24.2999751121 -60,0,20.89,41,17.89,44.73,23,39.59,20.6,38.8266666667,20.2,50.06,3.356,55.32,21,37.6528571429,21.434,38.334,20.5,44,4.3,751.6333333333,90.6666666667,4.3333333333,40,2.9,6.9363065297,6.9363065297 -40,0,20.89,41,17.89,44.73,23,39.5,20.6,38.79,20.2,50,3.2666666667,55.9,21,37.9,21.39,38.29,20.5,44.03,4.15,751.6166666667,90.8333333333,4.1666666667,40,2.8,40.9730777959,40.9730777959 -50,0,20.79,40.79,17.8566666667,44.6633333333,23,39.56,20.6,38.79,20.2,49.9666666667,3.61,57.15,21,37.8242857143,21.39,38.29,20.5,44.09,4,751.6,91,4,40,2.7,2.3087441456,2.3087441456 -50,0,20.79,40.79,17.8566666667,44.7233333333,23,39.545,20.6,38.79,20.2,49.8266666667,3.7,56.8966666667,21,37.74,21.3757142857,38.2385714286,20.5,44.09,4,751.6333333333,90.8333333333,4.1666666667,40,2.6666666667,30.5299962987,30.5299962987 -50,0,20.79,40.79,17.79,44.7,23,39.53,20.5666666667,38.79,20.2,49.76,3.79,56.93,21.0428571429,37.9428571429,21.29,38.178,20.5,44.09,4,751.6666666667,90.6666666667,4.3333333333,40,2.6333333333,24.4493012433,24.4493012433 -60,0,20.79,40.79,17.79,44.7,23,39.53,20.5,38.79,20.2,49.7,3.6328571429,56.195,21,37.856,21.29,38.1685714286,20.5,44.09,4,751.7,90.5,4.5,40,2.6,15.5965388869,15.5965388869 -70,0,20.79,40.79,17.79,44.7,23,39.5,20.5,38.79,20.2,49.6633333333,3.5,56.1475,21,37.8671428571,21.29,38.2,20.5,44.09,4,751.7333333333,90.3333333333,4.6666666667,40,2.5666666667,41.75096791,41.75096791 -120,0,20.79,40.93,17.79,44.7,23,39.4333333333,20.5,38.79,20.175,49.2925,3.5,56.7155555556,21.025,37.725,21.2385714286,38.1528571429,20.5,44.2,4,751.7666666667,90.1666666667,4.8333333333,40,2.5333333333,38.2494887337,38.2494887337 -70,0,20.79,41.245,17.8233333333,45.03,22.89,39.1333333333,20.5,39.06,20.1666666667,48.8,3.545,56.995,21,37.45,21.2,38.2,20.5,44.1266666667,4,751.8,90,5,40,2.5,35.3501893696,35.3501893696 -90,0,20.8233333333,41.36,17.89,45.2233333333,22.8233333333,38.8,20.5,38.9333333333,20.2,47.7633333333,3.6633333333,57.5333333333,21,37.3333333333,21.2,38.218,20.5,43.8333333333,4.0166666667,751.85,90.1666666667,5,38,2.55,5.0635141204,5.0635141204 -60,0,20.89,41.5,17.89,45.56,22.76,38.6266666667,20.5,38.8333333333,20.2,46.9566666667,3.9266666667,57.5616666667,20.9633333333,36.9188888889,21.2,38.311,20.5,43.375,4.0333333333,751.9,90.3333333333,5,36,2.6,27.7755120653,27.7755120653 -70,10,20.89,41.5,17.9633333333,45.56,22.7,38.76,20.5,38.76,20.1666666667,46.6566666667,4.19,57.59,20.9266666667,36.5044444444,21.2,38.404,20.5,42.8,4.05,751.95,90.5,5,34,2.65,40.3902074904,40.3902074904 -80,10,20.89,41.36,18,45.4666666667,22.7,38.6633333333,20.5,38.9666666667,20.2266666667,55.8633333333,4.33,57.7966666667,20.89,36.09,21.2,38.497,20.5,41.99,4.0666666667,752,90.6666666667,5,32,2.7,36.968353868,36.968353868 -290,0,20.89,41.3,18.075,45.25,22.7,38.4633333333,20.5,38.9666666667,21.4966666667,79.8966666667,4.9966666667,58.3233333333,20.89,36.06,21.2,38.59,20.5,41.53,4.0833333333,752.05,90.8333333333,5,30,2.75,40.3686742298,40.3686742298 -70,0,20.89,41.4333333333,18.1666666667,45.3333333333,22.6,38.4,20.5,38.8266666667,21.23,77.1633333333,5.2633333333,56.6566666667,20.89,36.09,21.2,38.79,20.5,41.1266666667,4.1,752.1,91,5,28,2.8,44.6107442142,44.6107442142 -400,0,20.89,41.29,18.29,45.5,22.6,38.4,20.5666666667,38.9,21.0666666667,76.9333333333,5.6207291667,54.3305208333,20.89,36.09,21.2,38.79,20.5666666667,40.9266666667,4.3,752.1666666667,90.1666666667,5.1666666667,28.1666666667,2.85,19.4633084582,19.4633084582 -70,0,20.89,41.23,18.3566666667,45.36,22.6,38.59,20.5,38.9,21,77.1266666667,5.978125,52.004375,20.89,36.09,21.2,38.79,20.8966666667,40.3633333333,4.5,752.2333333333,89.3333333333,5.3333333333,28.3333333333,2.9,35.7245222898,35.7245222898 -200,0,20.89,41.29,18.5333333333,45.1633333333,22.6,38.53,20.5666666667,38.9666666667,20.89,77.06,6.3355208333,49.6782291667,20.89,36.025,21.1666666667,38.79,21.5633333333,39.83,4.7,752.3,88.5,5.5,28.5,2.95,1.675202488,1.675202488 -220,0,20.89,41.29,18.6666666667,45.03,22.5,38.4,20.6,39,20.8233333333,76.4666666667,6.6929166667,47.3520833333,20.89,35.96,21.1333333333,38.79,21.89,39.0266666667,4.9,752.3666666667,87.6666666667,5.6666666667,28.6666666667,3,4.4383002212,4.4383002212 -40,0,21,41.4333333333,18.8233333333,44.8333333333,22.5,38.4,20.6,39.06,20.79,75.29,7.0503125,45.0259375,20.89,35.895,21.1333333333,38.79,21.89,38.6333333333,5.1,752.4333333333,86.8333333333,5.8333333333,28.8333333333,3.05,36.7858227808,36.7858227808 -40,0,21,41.4333333333,18.9633333333,44.5,22.5,38.29,20.7,39.09,20.73,73.9566666667,7.4077083333,42.6997916667,20.89,35.83,21.2,38.79,21.6333333333,38.4,5.3,752.5,86,6,29,3.1,11.749401479,11.749401479 -40,0,21,41.4,19.3933333333,44.13,22.4266666667,38.23,20.7675,39.09,20.6666666667,71.8966666667,7.7651041667,40.3736458333,20.89,35.765,21.1333333333,38.79,21.4266666667,38.4,5.55,752.5333333333,84.6666666667,6,30.8333333333,3.1166666667,7.1785120293,7.1785120293 -60,0,21,41.4,19.7266666667,43.33,22.29,38.09,20.79,39.09,20.6666666667,70.5633333333,8.1225,38.0475,20.89,35.7,21.1333333333,38.79,21.2,38.4333333333,5.8,752.5666666667,83.3333333333,6,32.6666666667,3.1333333333,23.079074116,23.079074116 -210,0,21,41.29,20.1333333333,42.8333333333,22.29,38.195,20.89,39.09,20.6,68.4633333333,8.245,36.42125,20.89,35.59,21.1,38.79,21.1333333333,38.5,6.05,752.6,82,6,34.5,3.15,35.7930905302,35.7930905302 -390,0,21,41.23,20.26,42.4333333333,22.29,38.29,20.9633333333,39.09,20.6,66.7966666667,8.48,34.896,20.89,35.5385714286,21.1,38.79,21,38.53,6.3,752.6333333333,80.6666666667,6,36.3333333333,3.1666666667,13.2761674002,13.2761674002 -100,0,21.1,41.3266666667,20.5666666667,42.1333333333,22.29,38.4,21,39.03,20.6,64.7266666667,9.0285714286,33.6785714286,20.89,35.5,21.1,38.79,20.9266666667,38.59,6.55,752.6666666667,79.3333333333,6,38.1666666667,3.1833333333,45.687131898,45.687131898 -50,0,21.1,41.4666666667,20.8266666667,41.86,22.29,38.4,21.0666666667,39.09,20.5333333333,63.5266666667,9.974,30.174,20.89,35.5,21.1,38.79,21,38.7,6.8,752.7,78,6,40,3.2,11.2968777423,11.2968777423 -50,0,21.2,41.4,21.1,41.2233333333,22.29,38.4,21.1,39.06,20.5,62.145,10.1671428571,26.3542857143,20.89,35.4,21.1,38.79,20.9266666667,38.76,7.0166666667,752.7166666667,77.5,6.1666666667,40,3.3,27.8499142616,27.8499142616 -40,0,21.2,41.3725,21.1,41.03,22.29,38.4,21.1,39.06,20.5,60.9233333333,10.436,23.036,20.8471428571,35.2985714286,21.1,38.79,20.89,38.9,7.2333333333,752.7333333333,77,6.3333333333,40,3.4,5.4915960412,5.4915960412 -50,0,21.2,41.23,21.2633333333,40.8333333333,22.29,38.4,21.2,39,20.5,60.33,11.0714285714,22.9285714286,20.89,35.29,21.1,38.79,20.8233333333,38.9,7.45,752.75,76.5,6.5,40,3.5,47.2427416244,47.2427416244 -40,0,21.29,41.29,21.4633333333,40.5,22.29,38.4,21.2,39,20.5,59.8633333333,11.354,19.54,20.89,35.2642857143,21.1,38.79,20.89,39.3,7.6666666667,752.7666666667,76,6.6666666667,40,3.6,21.5994471917,21.5994471917 -50,0,21.29,41.23,21.5333333333,40.1333333333,22.29,38.4,21.23,39,20.4266666667,59.33,11.44,19.3414285714,20.89,35.09,21.1,38.79,20.8566666667,39.6266666667,7.8833333333,752.7833333333,75.5,6.8333333333,40,3.7,34.7228151397,34.7228151397 -60,0,21.3233333333,41.1633333333,21.675,39.875,22.29,38.4,21.23,39,20.4266666667,58.93,11.56,18.256,20.89,35.0385714286,21.1,38.76,20.8566666667,39.76,8.1,752.8,75,7,40,3.8,17.3291265965,17.3291265965 -50,0,21.39,41.09,21.76,39.5666666667,22.29,38.4,21.29,39,20.5,58.6566666667,11.8957142857,16.2071428571,20.912,35,21.1,38.7,20.8233333333,39.73,8.2666666667,752.8,73.6666666667,7,40,3.7,36.7439514492,36.7439514492 -50,0,21.39,41.06,21.9266666667,39.3333333333,22.29,38.4,21.29,39,20.4633333333,58.4,12.136,15.034,21,34.9571428571,21.1333333333,38.6633333333,20.8233333333,39.93,8.4333333333,752.8,72.3333333333,7,40,3.6,2.0747527597,2.0747527597 -60,0,21.39,40.9333333333,22,39.1266666667,22.29,38.4,21.39,38.9,20.39,58.0666666667,12.3671428571,13.9671428571,21,34.9,21.2,38.59,20.8566666667,40.4633333333,8.6,752.8,71,7,40,3.5,6.9311487256,6.9311487256 -50,0,21.5,40.9666666667,22,38.9666666667,22.29,38.4,21.39,38.9,20.39,57.76,12.56,12.96,21.0428571429,34.8842857143,21.2,38.59,20.8566666667,40.8633333333,8.7666666667,752.8,69.6666666667,7,40,3.4,49.464863725,49.464863725 -50,0,21.5,40.9,22.0666666667,38.9,22.29,38.4,21.4266666667,38.9,20.39,57.5,12.6642857143,11.6257142857,21,34.7514285714,21.2,38.53,20.8566666667,41.36,8.9333333333,752.8,68.3333333333,7,40,3.3,37.1407351806,37.1407351806 -40,0,21.6,40.7,22.1,38.8633333333,22.29,38.4,21.4266666667,38.8266666667,20.39,57.1333333333,12.6,11.016,21.1,34.6666666667,21.29,38.5,20.79,41.6333333333,9.1,752.8,67,7,40,3.2,36.0247779987,36.0247779987 -50,0,21.6,40.6266666667,22.1,38.73,22.29,38.4,21.5,38.8633333333,20.3233333333,56.8,12.4671428571,11.5842857143,21.1285714286,34.5,21.29,38.4333333333,20.8233333333,41.86,9.1,752.8,66.8333333333,7,40,3.1833333333,46.086370782,46.086370782 -50,0,21.6,40.5,22,38.6633333333,22.29,38.3266666667,21.5,38.7675,20.39,56.43,12.216,14.314,21.2,34.4,21.3233333333,38.29,20.8233333333,42,9.1,752.8,66.6666666667,7,40,3.1666666667,19.2019233131,19.2019233131 -50,0,21.6666666667,40.5,22,38.59,22.29,38.4,21.5,38.7,20.39,56.23,12.1957142857,12.6085714286,21.2514285714,34.3057142857,21.4633333333,38.29,20.79,42,9.1,752.8,66.5,7,40,3.15,27.1239692112,27.1239692112 -50,0,21.7,40.4,22.0333333333,38.6266666667,22.365,38.3175,21.5,38.73,20.39,55.93,12.68,9.914,21.31,34.25,21.5333333333,38.09,20.79,41.9333333333,9.1,752.8,66.3333333333,7,40,3.1333333333,49.3251344888,49.3251344888 -30,0,21.76,40.3266666667,22.1,38.7,22.39,38.29,21.5666666667,38.73,20.39,55.73,13.0957142857,7.9271428571,21.4214285714,34.09,21.6,37.9633333333,20.79,41.9,9.1,752.8,66.1666666667,7,40,3.1166666667,15.6231260858,15.6231260858 -30,0,21.8233333333,40.23,22.1,38.5,22.39,38.26,21.5666666667,38.6633333333,20.39,55.43,13.278,7.492,21.5,34,21.7,37.845,20.79,41.9,9.1,752.8,66,7,40,3.1,46.4792393148,46.4792393148 -30,0,21.89,40.1566666667,22.1,38.5,22.39,38.26,21.5,38.59,20.39,55.23,13.2114285714,7.7142857143,21.4842857143,33.9271428571,21.7,37.79,20.79,41.76,9.4333333333,752.8,64.5,7.1666666667,40,3.05,29.6064154245,29.6064154245 -40,0,21.89,40.06,22.0666666667,38.5,22.3566666667,38.29,21.5,38.59,20.39,54.93,12.31,10.6,21.456,33.856,21.7,37.79,20.79,41.7,9.7666666667,752.8,63,7.3333333333,40,3,17.1082146582,17.1082146582 -50,0,21.9175,40,22.0666666667,38.5,22.29,38.29,21.5,38.59,20.34,54.695,12.16125,10.7375,21.5285714286,33.8214285714,21.79,37.6633333333,20.79,41.7,10.1,752.8,61.5,7.5,40,2.95,18.9424417564,18.9424417564 -50,0,22,40,22.1333333333,38.43,22.3233333333,38.29,21.5,38.59,20.39,54.4633333333,12.7857142857,10.5857142857,21.64,33.7,21.8566666667,37.59,20.79,41.7,10.4333333333,752.8,60,7.6666666667,40,2.9,23.5167233972,23.5167233972 -60,0,22,39.9666666667,22.2,38.29,22.39,38.29,21.5,38.59,20.39,54.26,12.84,8.478,21.8342857143,33.6371428571,22,37.4666666667,20.79,41.59,10.7666666667,752.8,58.5,7.8333333333,40,2.85,1.1652488727,1.1652488727 -60,0,22.0666666667,39.9,22.1,38.2,22.39,38.29,21.5333333333,38.56,20.3233333333,54.1266666667,12.6642857143,8.2614285714,21.912,33.516,22.1333333333,37.3266666667,20.79,41.59,11.1,752.8,57,8,40,2.8,27.732134203,27.732134203 -50,0,22.1333333333,39.9,22.1,38.26,22.39,38.29,21.6,38.4333333333,20.3233333333,54,12.636,7.44,22.0714285714,33.3685714286,22.2633333333,37.2,20.79,41.59,10.9833333333,752.8,57.5,7.6666666667,37.8333333333,2.8,26.9516751752,26.9516751752 -50,0,22.2,39.9,22,38.245,22.4266666667,38.3266666667,21.6,38.3633333333,20.3233333333,53.9333333333,12.6085714286,7.2985714286,22.2,33.156,22.39,37.0666666667,20.79,41.59,10.8666666667,752.8,58,7.3333333333,35.6666666667,2.8,28.4362237435,28.4362237435 -50,0,22.2,39.8633333333,21.9633333333,38.3266666667,22.5,38.4,21.6,38.29,20.29,53.76,12.156,7.116,22.2,33.09,22.5,37.03,20.79,41.53,10.75,752.8,58.5,7,33.5,2.8,46.125677845,46.125677845 -50,0,22.2,39.73,21.89,38.4666666667,22.5,38.4,21.6,38.29,20.29,53.7,11.8642857143,8.1957142857,22.2,33.036,22.4266666667,37.03,20.79,41.5,10.6333333333,752.8,59,6.6666666667,31.3333333333,2.8,11.8813104928,11.8813104928 -50,0,22.29,39.79,21.89,38.3633333333,22.5,38.4,21.6,38.29,20.29,53.56,12.38,8.31,22.2257142857,33,22.4266666667,36.9333333333,20.79,41.4333333333,10.5166666667,752.8,59.5,6.3333333333,29.1666666667,2.8,38.871040591,38.871040591 -50,0,22.29,39.73,21.8233333333,38.29,22.6,38.4,21.6,38.2,20.29,53.36,12.5,8.1371428571,22.29,32.9,22.5666666667,36.9333333333,20.8566666667,41.4,10.4,752.8,60,6,27,2.8,2.6877102559,2.6877102559 -40,0,22.29,39.6633333333,21.76,38.3266666667,22.6,38.4,21.6,38.1266666667,20.29,53.29,12.138,8.776,22.29,32.8842857143,22.5,36.9,20.79,41.3266666667,10.4333333333,752.7833333333,59.8333333333,6,27.3333333333,2.8166666667,43.7048400403,43.7048400403 -60,0,22.29,39.59,21.7,38.4666666667,22.6,38.4,21.5666666667,38.2,20.29,53.23,11.7685714286,11.9285714286,22.236,32.754,22.5,36.9,20.79,41.26,10.4666666667,752.7666666667,59.6666666667,6,27.6666666667,2.8333333333,9.844696091,9.844696091 -60,0,22.29,39.53,21.7,38.59,22.6,38.4,21.5,38.2,20.29,53.1633333333,12.12,14.36,22.2,32.79,22.5,37,20.79,41.2,10.5,752.75,59.5,6,28,2.85,19.0383852459,19.0383852459 -50,0,22.3566666667,39.59,21.76,38.4633333333,22.6,38.4,21.5666666667,38.2,20.29,52.89,12.5616666667,11.6466666667,22.29,32.9,22.5666666667,37,20.79,41.09,10.5333333333,752.7333333333,59.3333333333,6,28.3333333333,2.8666666667,10.1754784468,10.1754784468 -50,0,22.39,39.7,21.79,38.29,22.6,38.4,21.5,38.09,20.29,52.6633333333,12.7566666667,10.0266666667,22.29,32.8633333333,22.6,36.9,20.79,41.09,10.5666666667,752.7166666667,59.1666666667,6,28.6666666667,2.8833333333,28.711017326,28.711017326 -50,0,22.39,39.6266666667,21.79,38.3633333333,22.65,38.45,21.5666666667,38.03,20.29,52.53,12.9633333333,8.8333333333,22.29,32.79,22.6666666667,36.9666666667,20.79,41.09,10.6,752.7,59,6,29,2.9,23.1806365307,23.1806365307 -50,0,22.39,39.5,21.7,38.4333333333,22.6666666667,38.4666666667,21.6,38,20.29,52.3633333333,12.7333333333,7.5266666667,22.29,32.79,22.6,36.9,20.79,41.03,10.5166666667,752.6666666667,59.1666666667,6,30.8333333333,2.8666666667,27.8106333455,27.8106333455 -50,0,22.39,39.4333333333,21.6333333333,38.5,22.6,38.4,21.5333333333,38,20.29,52.29,12.5333333333,6.5933333333,22.2,32.7,22.575,36.975,20.8233333333,40.9,10.4333333333,752.6333333333,59.3333333333,6,32.6666666667,2.8333333333,14.5359190181,14.5359190181 -40,0,22.39,39.4,21.5666666667,38.59,22.7,38.5,21.5,37.9,20.29,52.1633333333,12.2266666667,7.3933333333,22.2,32.6266666667,22.5666666667,36.9333333333,20.8233333333,40.8266666667,10.35,752.6,59.5,6,34.5,2.8,12.1739892871,12.1739892871 -50,0,22.39,39.4,21.5,38.53,22.6333333333,38.36,21.5,37.9,20.29,52.03,12.36,5.46,22.2,32.56,22.6,36.9,20.79,40.7,10.2666666667,752.5666666667,59.6666666667,6,36.3333333333,2.7666666667,19.1417171503,19.1417171503 -50,0,22.39,39.29,21.4633333333,38.5,22.6666666667,38.3633333333,21.5,37.79,20.29,51.95,12.03,5.3333333333,22.2,32.4333333333,22.5333333333,36.9,20.79,40.6266666667,10.1833333333,752.5333333333,59.8333333333,6,38.1666666667,2.7333333333,24.1659469204,24.1659469204 -50,0,22.39,39.2,21.39,38.6333333333,22.6666666667,38.3633333333,21.5,37.79,20.29,51.76,11.945,6.2675,22.1666666667,32.4,22.5,36.79,20.79,40.5,10.1,752.5,60,6,40,2.7,5.1638572826,5.1638572826 -60,0,22.39,39.2,21.3566666667,38.79,22.7,38.3633333333,21.4633333333,37.79,20.29,51.6266666667,12.03,5.29,22.1,32.4,22.5,36.79,20.79,40.3633333333,10.0833333333,752.5,58.8333333333,6.3333333333,40,2.3666666667,45.740635728,45.740635728 -50,0,22.39,39.1633333333,21.29,38.79,22.7,38.29,21.4633333333,37.79,20.3233333333,51.56,12.1,4.5233333333,22.1,32.4,22.4266666667,36.79,20.79,40.29,10.0666666667,752.5,57.6666666667,6.6666666667,40,2.0333333333,43.0825462681,43.0825462681 -50,0,22.39,39.09,21.29,38.645,22.7,38.29,21.39,37.6633333333,20.39,51.4333333333,11.9,3.2566666667,22.1,32.4,22.5,36.79,20.79,40.2,10.05,752.5,56.5,7,40,1.7,29.4801975018,29.4801975018 -40,0,22.39,39.09,21.2,38.7,22.7,38.29,21.39,37.53,20.3233333333,51.3633333333,11.5,4.4333333333,22.1,32.3633333333,22.39,36.7,20.79,40.1266666667,10.0333333333,752.5,55.3333333333,7.3333333333,40,1.3666666667,37.3591130832,37.3591130832 -50,0,22.39,39.09,21.1333333333,38.8333333333,22.7,38.29,21.39,37.4666666667,20.39,51.23,11.5,4.4933333333,22.1,32.29,22.39,36.7,20.79,40.06,10.0166666667,752.5,54.1666666667,7.6666666667,40,1.0333333333,14.5446561277,14.5446561277 -40,0,22.3233333333,39.06,21.1,39.0666666667,22.7,38.23,21.39,37.3266666667,20.29,51.06,11.2,4.6966666667,22,32.2,22.3566666667,36.6633333333,20.79,39.9333333333,10,752.5,53,8,40,0.7,7.3671643971,7.3671643971 -50,0,22.3233333333,38.9333333333,21.0333333333,39.1266666667,22.6666666667,38.2233333333,21.39,37.3633333333,20.29,51,10.8666666667,5.7566666667,22,32.2,22.29,36.59,20.73,39.76,9.8833333333,752.55,54.1666666667,7.6666666667,40,0.8833333333,7.4590968783,7.4590968783 -50,0,22.29,38.9,20.89,39.23,22.6,38.09,21.3233333333,37.29,20.29,50.8633333333,10.6054545455,7.8227272727,21.945,32.167,22.29,36.59,20.79,39.7,9.7666666667,752.6,55.3333333333,7.3333333333,40,1.0666666667,10.5442526401,10.5442526401 -50,0,22.29,38.8266666667,20.8233333333,39.29,22.6,38.09,21.3566666667,37.26,20.29,50.79,10.435,8.8827777778,21.89,32.134,22.23,36.53,20.73,39.76,9.65,752.65,56.5,7,40,1.25,38.3939610096,38.3939610096 -60,0,22.26,38.76,20.7,39.4333333333,22.6,38.03,21.29,37.095,20.29,50.7,10.3066666667,9.6733333333,21.8664705882,32.1205882353,22.2,36.5,20.73,39.7,9.5333333333,752.7,57.6666666667,6.6666666667,40,1.4333333333,0.0553264865,0.0553264865 -90,0,22.2,38.7,20.7,39.56,22.6,38,21.29,37,20.29,50.7,10.1691666667,10.0616666667,21.8141176471,31.9049486461,22.2,36.545,20.7,39.7,9.4166666667,752.75,58.8333333333,6.3333333333,40,1.6166666667,42.8041963605,42.8041963605 -90,0,22.2,38.76,20.6,39.5,22.6,38,21.29,36.8633333333,20.26,50.46,10.0316666667,10.45,21.7617647059,31.689309057,22.12,36.798,20.7,39.7,9.3,752.8,60,6,40,1.8,8.2840290037,8.2840290037 -90,0,22.2,38.7,20.5333333333,39.5,22.55,37.9,21.23,36.6566666667,20.2,50,9.8493333333,11.2068888889,21.7094117647,31.4736694678,22.1333333333,37.1266666667,20.7,39.59,9.25,752.85,60.1666666667,5.6666666667,40,1.7833333333,14.6122363745,14.6122363745 -110,0,22.2,38.56,20.5,39.5,22.5,38,21.2,36.4666666667,20.2,49.49,9.667,11.9637777778,21.6570588235,31.2580298786,22.2,37.26,20.7,39.6633333333,9.2,752.9,60.3333333333,5.3333333333,40,1.7666666667,11.1537190736,11.1537190736 -110,20,22.2,38.56,20.4266666667,39.5,22.5,37.9333333333,21.2,36.4,20.2,49.1566666667,9.4846666667,12.7206666667,21.6047058824,31.0423902894,22.3233333333,37.29,20.7,39.7,9.15,752.95,60.5,5,40,1.75,26.2861502124,26.2861502124 -130,20,22.2,38.7,20.39,39.4,22.4633333333,37.9666666667,21.2,36.4,20.2,48.8333333333,9.3023333333,13.4775555556,21.5523529412,30.8267507003,22.4175,37.3425,20.7,39.7,9.1,753,60.6666666667,4.6666666667,40,1.7333333333,46.3693776052,46.3693776052 -140,30,22.1333333333,38.7,20.3233333333,39.4,22.39,37.9,21.2,36.6,20.2,48.5666666667,9.12,14.2344444444,21.5,30.6111111111,22.5,37.5,20.7,38.99,9.05,753.05,60.8333333333,4.3333333333,40,1.7166666667,42.8667335538,42.8667335538 -110,0,22.1,38.6633333333,20.29,39.26,22.39,37.76,21.2,36.9633333333,20.2,48.245,9.0666666667,16.2233333333,21.445,30.745,22.5666666667,37.5,20.7,38.53,9,753.1,61,4,40,1.7,49.824336241,49.824336241 -120,0,22.1,38.59,20.23,39.2,22.4633333333,37.7,21.2,37.09,20.2,48.0266666667,8.7933333333,17.8233333333,21.4633333333,31.2633333333,22.6,37.745,20.6,37.95,8.9333333333,753.1833333333,61.6666666667,4,40,1.8,28.9848693646,28.9848693646 -130,0,22.1,38.59,20.2,39.23,22.39,37.59,21.2,37.09,20.2,47.8266666667,8.4333333333,19.8666666667,21.445,31.595,22.6,37.5266666667,20.6,37.6333333333,8.8666666667,753.2666666667,62.3333333333,4,40,1.9,43.8764807652,43.8764807652 -120,0,22.1,38.59,20.2,39.29,22.39,37.53,21.2,37.1633333333,20.1666666667,47.6633333333,8.2266666667,20.8,21.39,31.8566666667,22.6,37.1333333333,20.6,37.36,8.8,753.35,63,4,40,2,2.9268289218,2.9268289218 -120,0,22.1,38.6633333333,20.1,39.4,22.39,37.53,21.2,37.2,20.1,47.4633333333,8.0666666667,21.8566666667,21.39,32.0666666667,22.5,36.5266666667,20.6,37.1633333333,8.7333333333,753.4333333333,63.6666666667,4,40,2.1,38.4402635158,38.4402635158 -120,0,22.0666666667,38.59,20.1,39.4,22.39,37.59,21.2,37.26,20.2,47.26,8,22.0633333333,21.39,32.2,22.5,36.1333333333,20.6,37.03,8.6666666667,753.5166666667,64.3333333333,4,40,2.2,10.1152946358,10.1152946358 -120,0,22,38.59,20.0333333333,39.3266666667,22.39,37.59,21.2,37.29,20.2,47.0666666667,7.8666666667,22.2,21.39,32.3266666667,22.5333333333,35.7233333333,20.6,36.8333333333,8.6,753.6,65,4,40,2.3,16.8916073046,16.8916073046 -110,0,22,38.56,20,39.29,22.39,37.59,21.2,37.3633333333,20.1666666667,46.8633333333,7.7725,22.3,21.39,32.4666666667,22.6,35.4633333333,20.6,36.6266666667,8.3833333333,753.6666666667,66.6666666667,4,40,2.45,48.5468533472,48.5468533472 -80,0,22,38.5,19.9266666667,39.3633333333,22.29,37.59,21.1666666667,37.4,20.1,46.73,7.6233333333,22.9333333333,21.39,32.53,22.5666666667,35.1633333333,20.5666666667,36.5266666667,8.1666666667,753.7333333333,68.3333333333,4,40,2.6,1.6440612846,1.6440612846 -70,0,22,38.5,19.89,39.4,22.29,37.59,21.1,37.4666666667,20.1,46.4666666667,7.56,24.0566666667,21.39,32.7233333333,22.5,35.2233333333,20.5,36.3266666667,7.95,753.8,70,4,40,2.75,17.4723335425,17.4723335425 -70,10,22,38.5,19.8233333333,39.4666666667,22.3233333333,37.4666666667,21.1,37.53,20.1,46.3266666667,7.45,24.795,21.39,33.03,22.39,35.36,20.5,36.29,7.7333333333,753.8666666667,71.6666666667,4,40,2.9,12.6339321025,12.6339321025 -70,0,21.9633333333,38.5,19.79,39.59,22.39,37.4,21.1,37.53,20.1,46.4333333333,7.2975,26.7475,21.39,33.49,22.39,35.645,20.5,36.5633333333,7.5166666667,753.9333333333,73.3333333333,4,40,3.05,23.9306536969,23.9306536969 -70,0,21.89,38.56,19.79,39.6633333333,22.39,37.4333333333,21.1,37.5,20.1,46.56,7.19,30.2633333333,21.39,33.73,22.3011111111,35.8144444444,20.5,37.2566666667,7.3,754,75,4,40,3.2,1.400561037,1.400561037 -70,0,21.89,38.53,19.76,39.8266666667,22.39,37.5,21.1,37.53,20.1,46.73,7.1566666667,35.6933333333,21.39,33.8633333333,22.29,35.9,20.5666666667,38.0566666667,7.2333333333,754,75,4,40,3.1333333333,43.6827681726,43.6827681726 -50,0,21.89,38.53,19.7,39.9666666667,22.5,37.7,21.1,37.7233333333,20.1,46.8633333333,7.09,37.36,21.39,34.1933333333,22.29,36.1,20.5333333333,39.2566666667,7.1666666667,754,75,4,40,3.0666666667,34.0762642794,34.0762642794 -50,10,21.89,38.5,19.6,40.03,22.5,37.7225,21.1,37.8266666667,20.1,47.03,7,38.36,21.39,34.4666666667,22.39,36.5966666667,20.6,39.6633333333,7.1,754,75,4,40,3,36.9237224455,36.9237224455 -50,0,21.8233333333,38.5,19.6,40.2233333333,22.5,37.79,21.0333333333,37.8266666667,20.1,47.1633333333,7,38.56,21.3233333333,34.6566666667,22.39,36.93,20.6,39.9633333333,7.0333333333,754,75,4,40,2.9333333333,17.9626022582,17.9626022582 -50,0,21.79,38.5,19.5,40.4333333333,22.5,37.9,21,37.9,20.1,47.23,7,39.7933333333,21.3233333333,34.8633333333,22.3566666667,37.3266666667,20.6,40.1633333333,6.9666666667,754,75,4,40,2.8666666667,49.7533348855,49.7533348855 -50,0,21.79,38.5,19.5,40.6333333333,22.5,37.9,21,37.9,20.0333333333,47.29,7,40.3333333333,21.3233333333,35.03,22.29,37.5266666667,20.6,40.3266666667,6.9,754,75,4,40,2.8,24.6243801084,24.6243801084 -60,0,21.76,38.59,19.39,40.8266666667,22.6,37.9,21,38,20,47.4,7,41.6633333333,21.3233333333,35.2233333333,22.29,37.745,20.6,40.4666666667,6.8333333333,754.0333333333,76.6666666667,3.8333333333,40,3.0333333333,14.3226562301,14.3226562301 -40,0,21.7,38.59,19.39,40.9666666667,22.6,37.9666666667,21,38,20,47.4975,7,43.7233333333,21.29,35.4333333333,22.26,37.9,20.6,40.7,6.7666666667,754.0666666667,78.3333333333,3.6666666667,40,3.2666666667,8.338568639,8.338568639 -30,0,21.7,38.6633333333,19.3566666667,41.1266666667,22.6,38,20.89,38.03,20,47.59,7,44.6966666667,21.29,35.7666666667,22.2,38.0266666667,20.6,40.8266666667,6.7,754.1,80,3.5,40,3.5,9.4233837095,9.4233837095 -20,0,21.7,38.7,19.29,41.26,22.6,38,20.89,38.09,20,47.6266666667,7,45.6966666667,21.34,36.145,22.1666666667,38.23,20.6,41.0266666667,6.6333333333,754.1333333333,81.6666666667,3.3333333333,40,3.7333333333,1.1016216944,1.1016216944 -30,0,21.7,38.7,19.26,41.4,22.6,38.03,20.89,38.1266666667,20,47.7,7,46.46,21.3233333333,36.4,22.1,38.3633333333,20.6,41.2666666667,6.5666666667,754.1666666667,83.3333333333,3.1666666667,40,3.9666666667,31.7162552383,31.7162552383 -70,0,21.6666666667,38.79,19.2,41.525,22.5333333333,38.09,20.89,38.2,20,47.7,7.045,47.8725,21.39,36.4666666667,22.1,38.4666666667,20.6,41.4666666667,6.5,754.2,85,3,40,4.2,49.3602233357,49.3602233357 -50,0,21.6,38.79,19.2,41.76,22.5,38.1266666667,20.89,38.2,20,47.76,7,48.3633333333,21.39,36.59,22.1,38.4666666667,20.6,41.6266666667,6.425,754.175,85.8333333333,3,39,4.2583333333,22.7839107276,22.7839107276 -60,0,21.6,38.9,19.1666666667,41.9333333333,22.5,38.2,20.89,38.26,20,47.79,6.9666666667,49.3,21.39,36.7233333333,22.0666666667,38.5666666667,20.6,41.7,6.35,754.15,86.6666666667,3,38,4.3166666667,28.1332667219,28.1332667219 -60,0,21.6,38.9666666667,19.1,42.06,22.5,38.23,20.8566666667,38.3333333333,20,47.79,6.8333333333,49.36,21.29,36.9,22,38.76,20.6,41.8266666667,6.275,754.125,87.5,3,37,4.375,49.4010725175,49.4010725175 -60,0,21.5666666667,39,19.1,42.23,22.5666666667,38.29,20.79,38.26,20,47.9,6.6566666667,49.4,21.29,36.9,22,39.03,20.6,41.9666666667,6.2,754.1,88.3333333333,3,36,4.4333333333,12.2959491331,12.2959491331 -50,0,21.5666666667,39.06,19.0333333333,42.29,22.6,38.29,20.79,38.29,20,47.9,6.59,49.66,21.29,36.9,21.9266666667,39.2233333333,20.6,42.03,6.125,754.075,89.1666666667,3,35,4.4916666667,10.378940904,10.378940904 -50,0,21.5,39.09,19,42.4,22.6,38.29,20.79,38.29,20,47.9,6.56,50.5,21.29,36.9666666667,21.89,39.5666666667,20.6,42.09,6.05,754.05,90,3,34,4.55,41.5104135871,41.5104135871 -50,0,21.5,39.09,19,42.4666666667,22.6,38.29,20.79,38.4,20,47.9,6.56,51.1666666667,21.29,37.1266666667,21.89,39.9,20.6,42.23,5.975,754.025,90.8333333333,3,33,4.6083333333,3.4748271224,3.4748271224 -40,0,21.5,39.2,18.9633333333,42.59,22.6,38.29,20.79,38.4,19.9633333333,48,6.7266666667,51.8,21.29,37.2,21.89,40.1266666667,20.6,42.29,5.9,754,91.6666666667,3,32,4.6666666667,43.1830839487,43.1830839487 -60,0,21.5,39.2,18.89,42.6633333333,22.6,38.3266666667,20.79,38.4,19.89,48,6.8666666667,52.06,21.29,37.2,21.8233333333,40.2,20.6,42.3266666667,5.825,753.975,92.5,3,31,4.725,36.5058136056,36.5058136056 -50,0,21.5,39.29,18.89,42.79,22.525,38.4,20.79,38.4,19.89,48,6.8666666667,51.7666666667,21.29,37.3333333333,21.79,40.29,20.6,42.4,5.75,753.95,93.3333333333,3,30,4.7833333333,5.4628631799,5.4628631799 -60,0,21.5,39.29,18.89,42.8633333333,22.5,38.4,20.79,38.4666666667,19.89,48,6.7266666667,51.5,21.29,37.4,21.79,40.45,20.6,42.4333333333,5.675,753.925,94.1666666667,3,29,4.8416666667,42.5313559477,42.5313559477 -60,0,21.4266666667,39.2666666667,18.79,42.9,22.5,38.4,20.7,38.5,19.9633333333,48,6.5266666667,51.3633333333,21.29,37.4666666667,21.7,40.5966666667,20.6,42.5,5.6,753.9,95,3,28,4.9,7.1940029971,7.1940029971 -60,0,21.4266666667,39.3266666667,18.79,42.9666666667,22.5,38.4,20.76,38.5,19.89,48,6.26,51.1566666667,21.29,37.53,21.7,40.8633333333,20.6,42.59,5.65,753.9166666667,95,3,27.8333333333,4.9333333333,43.4190693428,43.4190693428 -50,0,21.39,39.29,18.79,43.03,22.4633333333,38.4666666667,20.7,38.5,19.89,48,5.73,50.5666666667,21.29,37.59,21.76,40.8333333333,20.6,42.59,5.7,753.9333333333,95,3,27.6666666667,4.9666666667,26.9845475443,26.9845475443 -50,0,21.39,39.3633333333,18.79,43.09,22.39,38.4,20.7,38.5,19.89,48,5.3966666667,50.5666666667,21.29,37.59,21.7,40.7225,20.6,42.645,5.75,753.95,95,3,27.5,5,30.4090981488,30.4090981488 -50,0,21.34,39.4,18.7,43.1266666667,22.39,38.3633333333,20.7,38.59,19.89,48,5.06,50.7633333333,21.29,37.59,21.7,40.79,20.6,42.73,5.8,753.9666666667,95,3,27.3333333333,5.0333333333,47.7676259005,47.7676259005 -50,0,21.39,39.4,18.7,43.2,22.39,38.3633333333,20.7,38.53,19.89,48,4.998,52.854,21.2,37.5,21.6,40.5,20.6,42.79,5.85,753.9833333333,95,3,27.1666666667,5.0666666667,22.3162621958,22.3162621958 -50,0,21.3233333333,39.4,18.6666666667,43.26,22.3566666667,38.4,20.7,38.59,19.89,48,5.09,54.1633333333,21.2675,37.545,21.6,40.5,20.6,42.79,5.9,754,95,3,27,5.1,40.1459660148,40.1459660148 -50,0,21.29,39.4,18.6,43.2675,22.29,38.4,20.6333333333,38.53,19.89,48,5.0266666667,53.5666666667,21.29,37.7,21.6,40.5,20.6,42.8633333333,5.8333333333,753.9833333333,95.1666666667,2.8333333333,25.8333333333,5.0666666667,11.0898123123,11.0898123123 -60,0,21.29,39.4666666667,18.6,43.3633333333,22.29,38.4,20.6,38.5,19.89,48,4.76,53.16,21.23,37.6266666667,21.5333333333,40.4333333333,20.6,42.9,5.7666666667,753.9666666667,95.3333333333,2.6666666667,24.6666666667,5.0333333333,43.8116077683,43.8116077683 -60,0,21.29,39.5,18.5666666667,43.4,22.29,38.4,20.6,38.5,19.89,47.9333333333,4.59,53.7666666667,21.2,37.59,21.6,40.5666666667,20.6,42.9666666667,5.7,753.95,95.5,2.5,23.5,5,36.356901913,36.356901913 -50,0,21.29,39.5,18.5,43.4,22.3233333333,38.4,20.6,38.5,19.89,48,4.73,55.6333333333,21.2,37.59,21.5333333333,40.76,20.6,43,5.6333333333,753.9333333333,95.6666666667,2.3333333333,22.3333333333,4.9666666667,14.8208713159,14.8208713159 -50,0,21.26,39.4666666667,18.5,43.53,22.39,38.4,20.6,38.5,19.89,48,5.0633333333,57,21.2,37.59,21.5,40.8266666667,20.6,43,5.5666666667,753.9166666667,95.8333333333,2.1666666667,21.1666666667,4.9333333333,48.2143043424,48.2143043424 -60,0,21.2,39.4,18.5,43.59,22.29,38.3633333333,20.6,38.5,19.89,48,5.3041666667,57.2241666667,21.2,37.6835714286,21.5,41.0108333333,20.6,43.09,5.5,753.9,96,2,20,4.9,2.0997374086,2.0997374086 -50,0,21.2,39.4,18.4633333333,43.7,22.29,38.29,20.6,38.5,19.8233333333,47.9333333333,5.545,57.4483333333,21.2,37.7771428571,21.5,41.195,20.6,43.09,5.5833333333,753.9,95.8333333333,2,20,4.9666666667,36.3647422404,36.3647422404 -40,0,21.2,39.4666666667,18.39,43.7,22.3233333333,38.4333333333,20.6,38.5,19.89,48,5.6566666667,57.1566666667,21.2,37.76,21.5,41.6333333333,20.6,43.2,5.6666666667,753.9,95.6666666667,2,20,5.0333333333,42.7957584616,42.7957584616 -40,0,21.2,39.5,18.39,43.73,22.39,38.56,20.6,38.53,19.8566666667,47.9666666667,5.5,55.9,21.2,37.745,21.5,41.79,20.6,43.26,5.75,753.9,95.5,2,20,5.1,3.6865589325,3.6865589325 -40,0,21.2,39.5,18.39,43.79,22.39,38.6266666667,20.5333333333,38.59,19.79,47.9,4.96,54.4,21.236,37.79,21.5,42.016,20.6,43.29,5.8333333333,753.9,95.3333333333,2,20,5.1666666667,35.5468022288,35.5468022288 -30,0,21.2,39.53,18.29,43.8266666667,22.39,38.7,20.5666666667,38.59,19.79,47.8266666667,4.73,54.6266666667,21.2,37.79,21.39,42,20.6,43.29,5.9166666667,753.9,95.1666666667,2,20,5.2333333333,45.5383607186,45.5383607186 -40,0,21.2,39.59,18.29,43.9,22.39,38.79,20.5,38.59,19.79,47.9,4.59,55.1666666667,21.2,37.9,21.39,42,20.6,43.4,6,753.9,95,2,20,5.3,26.2277094298,26.2277094298 -50,0,21.1,39.59,18.29,43.9666666667,22.39,38.79,20.5,38.59,19.79,47.9,4.4333333333,55.1966666667,21.2,37.9,21.39,42.09,20.6,43.4,5.8833333333,753.9166666667,95.3333333333,2,27.3333333333,5.2166666667,22.8209742229,22.8209742229 -60,0,21.1,39.59,18.29,43.9666666667,22.39,38.79,20.5,38.59,19.79,47.9,4.16,54.3233333333,21.2,37.8633333333,21.39,42.03,20.6,43.4333333333,5.7666666667,753.9333333333,95.6666666667,2,34.6666666667,5.1333333333,35.7386112097,35.7386112097 -50,0,21.1,39.59,18.26,43.9,22.39,38.79,20.5,38.59,19.79,47.8633333333,3.9,53.9,21.2,37.79,21.39,42,20.6,43.5,5.65,753.95,96,2,42,5.05,31.7438546102,31.7438546102 -50,0,21.1,39.59,18.2,43.9,22.39,38.8633333333,20.5,38.59,19.79,47.79,3.76,54.1666666667,21.2,37.79,21.39,41.834,20.6,43.5,5.5333333333,753.9666666667,96.3333333333,2,49.3333333333,4.9666666667,35.1394455181,35.1394455181 -50,0,21.1,39.59,18.2,43.9,22.39,38.9,20.5,38.59,19.79,47.79,3.6525,54.9795833333,21.2,37.772,21.39,41.667,20.6,43.59,5.4166666667,753.9833333333,96.6666666667,2,56.6666666667,4.8833333333,15.2734474395,15.2734474395 -50,0,21,39.5,18.2,43.9666666667,22.39,38.9,20.4266666667,38.53,19.79,47.79,3.545,55.7925,21.2,37.754,21.39,41.5,20.6,43.59,5.3,754,97,2,64,4.8,8.6624125601,8.6624125601 -60,0,21,39.5,18.1333333333,43.9666666667,22.39,38.9,20.39,38.4333333333,19.79,47.79,3.59,56.1333333333,21.2,37.736,21.39,41.4,20.6,43.53,5.15,754.0333333333,97,2,63.5,4.6666666667,49.2855684948,49.2855684948 -60,0,21,39.5,18.125,43.975,22.39,38.9,20.39,38.4333333333,19.79,47.79,3.6266666667,56.4566666667,21.2,37.718,21.3566666667,41.29,20.6,43.59,5,754.0666666667,97,2,63,4.5333333333,33.9582559885,33.9582559885 -50,0,21,39.5,18.1,44,22.39,38.9,20.39,38.4,19.73,47.79,3.8333333333,57.1233333333,21.2,37.7,21.29,41.29,20.6,43.59,4.85,754.1,97,2,62.5,4.4,42.9339792696,42.9339792696 -50,0,21,39.5,18.1,44.03,22.39,38.9,20.39,38.4,19.79,47.7,4.16,57.9633333333,21.2,37.745,21.29,41.29,20.6,43.59,4.7,754.1333333333,97,2,62,4.2666666667,43.3130630059,43.3130630059 -60,0,20.9266666667,39.5,18.1,44.09,22.39,38.9,20.39,38.4,19.79,47.7,4.4333333333,58.4233333333,21.2,37.79,21.29,41.29,20.5333333333,43.6266666667,4.55,754.1666666667,97,2,61.5,4.1333333333,10.23186862,10.23186862 -50,0,21,39.7666666667,18.1,44.1566666667,22.39,38.8266666667,20.39,38.4,19.79,47.7,4.9633333333,59.1933333333,21.1333333333,37.8633333333,21.29,41.29,20.6,43.7,4.4,754.2,97,2,61,4,30.6956230779,30.6956230779 -50,0,21,40.0266666667,18.1666666667,44.49,22.3566666667,38.6633333333,20.39,38.5,19.73,47.7,5.2966666667,59.5266666667,21.1,37.9666666667,21.29,41.29,20.6,43.7,4.5666666667,754.2666666667,97.3333333333,1.8333333333,61,4.2,38.1305396091,38.1305396091 -50,0,21,40.29,18.23,44.7666666667,22.29,38.53,20.39,38.5,19.79,47.7,5.6933333333,59.89,21.1,38.094,21.2,41.156,20.6,43.7,4.7333333333,754.3333333333,97.6666666667,1.6666666667,61,4.4,49.7415139806,49.7415139806 -80,0,21,40.29,18.29,44.9,22.29,38.5,20.39,38.5,19.73,47.7,6.0933333333,60.1633333333,21.1285714286,38.29,21.2,41.2266666667,20.6,43.7,4.9,754.4,98,1.5,61,4.6,39.5921692019,39.5921692019 -110,0,21.0333333333,40.6666666667,18.3233333333,45.0666666667,22.23,38.4333333333,20.3566666667,38.5,19.7,47.7,6.3333333333,60.2233333333,21.1,38.345,21.2,41.345,20.6,43.7,5.0666666667,754.4666666667,98.3333333333,1.3333333333,61,4.8,44.4862194592,44.4862194592 -60,0,21.1,41.1266666667,18.39,45.1266666667,22.26,38.3333333333,20.29,38.5,19.7,47.76,6.4666666667,60.3633333333,21.1,38.036,21.2,41.3175,20.6,43.6633333333,5.2333333333,754.5333333333,98.6666666667,1.1666666667,61,5,30.3705633502,30.3705633502 -50,0,21.1,41.2666666667,18.5333333333,45.29,22.2,38.2,20.3566666667,38.5,19.79,47.7,6.76,60.83,21.025,37.775,21.2,41.29,20.6,43.4633333333,5.4,754.6,99,1,61,5.2,27.4919799413,27.4919799413 -60,0,21.1,41.4666666667,18.6666666667,45.29,22.2,38.245,20.3566666667,38.56,19.79,47.6266666667,7.1666666667,61.2966666667,21.05,37.44,21.2,41.378,20.6,43.3633333333,5.5,754.5666666667,98.1666666667,1,61.6666666667,5.1833333333,12.9226824851,12.9226824851 -40,10,21.1,41.26,18.79,44.9666666667,22.1,38.2,20.29,38.59,19.73,47.56,7.7933333333,61.5266666667,21,37.1333333333,21.2,41.495,20.6,42.9566666667,5.6,754.5333333333,97.3333333333,1,62.3333333333,5.1666666667,2.1976626245,2.1976626245 -60,0,21.1666666667,41.0666666667,18.8566666667,44.7666666667,22.1,38.2,20.3566666667,38.6633333333,19.79,47.45,8.2,61.0666666667,20.9266666667,36.9333333333,21.2,41.7,20.6,42.6266666667,5.7,754.5,96.5,1,63,5.15,49.3505203631,49.3505203631 -60,0,21.2,40.76,18.8233333333,44.2233333333,22,38.09,20.29,38.7,19.79,47.295,8.6666666667,59.9333333333,20.9633333333,37,21.2,41.6266666667,20.6,42.5666666667,5.8,754.4666666667,95.6666666667,1,63.6666666667,5.1333333333,2.8942765319,2.8942765319 -240,0,21.1333333333,40.6266666667,18.9633333333,43.9633333333,22,38.03,20.29,38.7,19.73,47.2,9.2725,57.17,20.89,37,21.23,41.7,20.6333333333,42.53,5.9,754.4333333333,94.8333333333,1,64.3333333333,5.1166666667,2.0485203597,2.0485203597 -330,0,21.2,40.73,19.3233333333,43.3933333333,22,38.06,20.39,38.79,19.745,47.045,9.9633333333,51.1666666667,21,37.09,21.29,41.7,20.745,42.37,6,754.4,94,1,65,5.1,33.4443019121,33.4443019121 -80,0,21.1333333333,40.79,19.39,42.8,22,38,20.39,38.79,19.79,46.9,9.89,45.4,20.9266666667,37.09,21.26,41.6333333333,20.7,42.045,6.1666666667,754.4333333333,93.1666666667,1,57.5,5.1333333333,46.4631090988,46.4631090988 -50,0,21.1,40.645,19.4266666667,42.7,22,37.9666666667,20.39,38.7,19.79,46.745,10.05,43.94,20.9266666667,37.2,21.26,41.56,20.7,41.875,6.3333333333,754.4666666667,92.3333333333,1,50,5.1666666667,23.6857042997,23.6857042997 -90,0,21.1333333333,40.56,19.725,42.4,21.9266666667,37.9,20.39,38.76,19.79,46.5,10.9,42.1,21,37.2,21.23,41.5666666667,20.7,41.6266666667,6.5,754.5,91.5,1,42.5,5.2,30.2841405733,30.2841405733 -100,0,21.2,40.6933333333,20.0666666667,41.4333333333,21.9633333333,37.93,20.39,38.7233333333,19.79,46.2675,11.4333333333,37.6933333333,21,37.29,21.29,41.76,20.7,41.5666666667,6.6666666667,754.5333333333,90.6666666667,1,35,5.2333333333,31.1522143544,31.1522143544 -70,0,21.1666666667,39.9233333333,20.2,40.3633333333,21.8233333333,37.53,20.39,38.59,19.79,46.116,11.83,34.03,21,37.236,21.29,41.9316666667,20.7,41.6266666667,6.8333333333,754.5666666667,89.8333333333,1,27.5,5.2666666667,36.1515574506,36.1515574506 -110,0,21.1,39.4633333333,20.2,39.89,21.7,37.3266666667,20.4266666667,38.6266666667,19.7514285714,45.8971428571,12.09,32.8966666667,21,37.276,21.29,42,20.6666666667,41.5266666667,7,754.6,89,1,20,5.3,44.485207065,44.485207065 -100,0,21.1,39.4333333333,20.23,39.73,21.7,37.3266666667,20.5,38.7,20.25,68.02,12.39,30.6,21,37.4714285714,21.29,41.9475,20.6666666667,41.3266666667,7.5,754.6,86.8333333333,1.1666666667,20,5.4166666667,5.196341977,5.196341977 -110,0,21.0333333333,39.5,20.29,39.8633333333,21.73,37.5,20.5,38.8266666667,21.4257142857,81.7785714286,12.53,29.3333333333,21,37.7,21.23,41.73,20.6,41.0266666667,8,754.6,84.6666666667,1.3333333333,20,5.5333333333,5.4362750729,5.4362750729 -190,0,21.0333333333,39.6266666667,20.3233333333,40.0666666667,21.79,37.5,20.5,38.9666666667,21.114,81.116,12.9,26.7966666667,21.0571428571,37.6842857143,21.23,42.0666666667,20.6,40.8266666667,8.5,754.6,82.5,1.5,20,5.65,10.5297186063,10.5297186063 -480,0,21.1,39.8333333333,20.53,40.5933333333,21.79,37.53,20.6,39.19,20.6971428571,81.5785714286,13.1,25.39,21.1,37.59,21.3566666667,42.2,20.6,40.9,9,754.6,80.3333333333,1.6666666667,20,5.7666666667,31.1629579519,31.1629579519 -440,0,21.1,40.33,20.96,40.56,21.79,37.59,20.7,39.5666666667,20.39,79.94,14.145,18.745,21.1,37.5257142857,21.39,42.156,20.6,41.16,9.5,754.6,78.1666666667,1.8333333333,20,5.8833333333,35.2350643836,35.2350643836 -280,0,21.1,40.7966666667,21.1666666667,40.4333333333,21.89,37.7666666667,20.76,39.6266666667,20.39,77.3,14.154,15.78,21.2,37.4,21.54,41.96,20.7,42.2933333333,10,754.6,76,2,20,6,42.8251514211,42.8251514211 -140,0,21.1,41.1933333333,21.29,40.53,21.89,37.9666666667,20.8233333333,39.6266666667,20.29,72.7675,13.7542857143,15.5271428571,21.2,37.17875,21.6571428571,41.7257142857,20.7,43.0333333333,9.8833333333,754.6,75.5,2,20.3333333333,5.7666666667,21.6434650123,21.6434650123 -100,0,21.1666666667,41.6,21.29,40.8633333333,21.945,38.3,20.89,39.7,20.29,70.3483333333,13.76,16.032,21.2,37.0128571429,21.718,41.4,20.73,43.9333333333,9.7666666667,754.6,75,2,20.6666666667,5.5333333333,18.9391488791,18.9391488791 -120,0,21.2,41.9633333333,21.39,41.33,22,38.53,20.89,39.6633333333,20.272,67.27,14.1671428571,15.11,21.2,37,21.79,41.0957142857,20.79,44,9.65,754.6,74.5,2,21,5.3,17.6277659601,17.6277659601 -160,0,21.2,42.2966666667,21.39,41.53,22,38.59,20.89,39.4633333333,20.2,65.545,14.39,14.854,21.2,37,21.84,40.845,20.79,43.9,9.5333333333,754.6,74,2,21.3333333333,5.0666666667,43.2536024484,43.2536024484 -90,0,21.2,42.6666666667,21.39,41.5,22.1,38.73,20.89,39.26,20.2,63.9257142857,14.354,14.356,21.254,36.82,21.9528571429,40.7385714286,20.73,43.8266666667,9.4166666667,754.6,73.5,2,21.6666666667,4.8333333333,30.5463014287,30.5463014287 -100,0,21.2,43.06,21.39,41.56,22.1,38.79,20.89,39.1266666667,20.18,62.92,13.8985714286,13.6414285714,21.2,36.5542857143,22,40.494,20.73,43.6333333333,9.3,754.6,73,2,22,4.6,0.8358666091,0.8358666091 -190,0,21.2,43.0666666667,21.29,41.73,22.1,38.9,20.89,38.9666666667,20.1,61.95,13.394,14.534,21.2,36.5,22.0285714286,40.2257142857,20.7225,43.3975,9.4333333333,754.6,72.3333333333,2,23.1666666667,4.6166666667,48.5599945881,48.5599945881 -130,0,21.2225,43.3425,21.23,41.79,22.1,38.9666666667,20.89,38.8266666667,20.1,60.25,13.15875,16.26875,21.2,36.4571428571,22.14,40.156,20.7,43.23,9.5666666667,754.6,71.6666666667,2,24.3333333333,4.6333333333,14.351063408,14.351063408 -100,0,21.3566666667,43.53,21.2,41.9333333333,22.0666666667,39.23,20.89,38.76,20.1,59.058,13.495,16.14,21.2,36.5,22.2514285714,40.1842857143,20.7,43.0266666667,9.7,754.6,71,2,25.5,4.65,8.3565392066,8.3565392066 -200,0,21.39,43.7666666667,21.2,42.06,22,39.29,20.89,38.7,20.1,58.074,14.01,14.9771428571,21.2385714286,36.4714285714,22.31,40.2,20.7,42.8266666667,9.8333333333,754.6,70.3333333333,2,26.6666666667,4.6666666667,43.649760168,43.649760168 -400,0,21.39,44.0266666667,21.2,42.245,22.1,39.6933333333,20.89,38.6633333333,20.1,57.2357142857,14.414,13.998,21.2,36.48,22.39,40.2,20.7,42.6633333333,9.9666666667,754.6,69.6666666667,2,27.8333333333,4.6833333333,31.2134879292,31.2134879292 -190,0,21.39,44.29,21.29,42.86,22.1,39.9666666667,20.89,38.6633333333,20.1,56.245,14.645,12.995,21.2257142857,36.3214285714,22.434,40.29,20.7,42.53,10.1,754.6,69,2,29,4.7,12.2734400793,12.2734400793 -150,0,21.39,44.49,21.23,42.9333333333,22.1,40.03,20.8566666667,38.6633333333,20.1,55.6528571429,14.8514285714,12.0557142857,21.2,35.96,22.5,40.0414285714,20.7,42.3333333333,10.1333333333,754.55,69.6666666667,2.1666666667,28.1666666667,4.85,9.734246484,9.734246484 -130,0,21.39,44.8266666667,21.29,43.09,22.1,40.1633333333,20.79,38.59,20.0857142857,55.1428571429,15.02,11.496,21.2514285714,35.7385714286,22.52,39.834,20.7,42.2,10.1666666667,754.5,70.3333333333,2.3333333333,27.3333333333,5,33.2153210882,33.2153210882 -110,10,21.4633333333,45.1,21.29,43.09,22.2,40.1266666667,20.79,38.59,20,54.52,14.745,10.345,21.29,35.536,22.6,39.79,20.7,42.06,10.2,754.45,71,2.5,26.5,5.15,28.8194991765,28.8194991765 -140,0,21.5,45.4333333333,21.29,43.09,22.2,40.1266666667,20.79,38.59,20.0428571429,54.0357142857,14.0657142857,10.84,21.2642857143,35.3714285714,22.7,39.79,20.7,41.9333333333,10.2333333333,754.4,71.6666666667,2.6666666667,25.6666666667,5.3,45.7448741887,45.7448741887 -110,0,21.5,45.4333333333,21.23,43.09,22.29,40.2,20.84,38.645,20,53.46,13.38,12.154,21.254,35.156,22.7128571429,39.7771428571,20.7,41.79,10.2666666667,754.35,72.3333333333,2.8333333333,24.8333333333,5.45,13.4862074861,13.4862074861 -110,0,21.4266666667,45.3266666667,21.1666666667,43.06,22.29,40.2,20.79,38.5,20,53.11,13.5,11.495,21.2257142857,34.9657142857,22.79,39.678,20.7,41.73,10.3,754.3,73,3,24,5.6,1.8973269383,1.8973269383 -80,0,21.4266666667,45.4,21.1,42.9333333333,22.29,40.09,20.79,38.5,20,52.696,13.2657142857,11.51,21.218,34.79,22.79,39.59,20.6333333333,41.5,10.35,754.25,72,3,24.8333333333,5.4333333333,47.8512245347,47.8512245347 -70,0,21.4266666667,45.5666666667,21.1,42.9333333333,22.29,40.09,20.79,38.4666666667,20,52.3971428571,13.318,11.772,21.3185714286,34.6942857143,22.89,39.59,20.7,41.6333333333,10.4,754.2,71,3,25.6666666667,5.2666666667,33.1098322989,33.1098322989 -80,0,21.5,45.6266666667,21.1,43.06,22.29,40.09,20.8566666667,38.4666666667,20,52.09,13.5,10.79,21.54,34.4,22.89,39.5,20.7,41.8266666667,10.45,754.15,70,3,26.5,5.1,32.76042738,32.76042738 -90,0,21.5333333333,45.3333333333,21.0666666667,43.0266666667,22.29,40.0225,20.8566666667,38.43,20,51.9814285714,13.2528571429,9.1671428571,21.6,34.076,22.89,39.3514285714,20.7,41.9,10.5,754.1,69,3,27.3333333333,4.9333333333,0.914935139,0.914935139 -100,0,21.5333333333,44.9266666667,21,42.7666666667,22.29,40,20.79,38.23,20,51.816,13.14,9.914,21.5428571429,33.7385714286,22.912,39.272,20.6666666667,41.8333333333,10.55,754.05,68,3,28.1666666667,4.7666666667,24.8802308342,24.8802308342 -100,10,21.5,44.2966666667,20.9633333333,42.56,22.29,39.9666666667,20.8566666667,38.06,20,51.5957142857,13.396,10.578,21.5,33.572,23.0285714286,39.2257142857,20.6,41.7,10.6,754,67,3,29,4.6,1.3592446339,1.3592446339 -140,0,21.5,43.89,20.89,42.36,22.29,39.9,20.79,37.9333333333,20,51.254,13.4971428571,10.4685714286,21.5,33.5,23.1,39.2,20.7,41.6633333333,10.8,753.9333333333,64.5,3,30.8333333333,4.2,41.7042216752,41.7042216752 -720,0,21.5,43.4666666667,20.8566666667,42.1,22.29,39.9,20.79,37.9,20,50.9814285714,13.06,11.456,21.456,33.356,23.1571428571,39.2,20.625,41.4475,11,753.8666666667,62,3,32.6666666667,3.8,12.3133470304,12.3133470304 -640,0,21.5,43.2666666667,20.79,41.9,22.29,39.9666666667,20.79,37.9,20,50.714,12.7642857143,12.4842857143,21.39,33.29,23.218,39.174,20.6,41.4,11.2,753.8,59.5,3,34.5,3.4,25.2677306067,25.2677306067 -330,0,21.5,43.045,20.7,41.8266666667,22.5666666667,40.9333333333,20.79,37.9,20,50.4971428571,12.32,13.296,21.39,33.29,23.29,39.29,20.6,41.26,11.4,753.7333333333,57,3,36.3333333333,3,9.5646462752,9.5646462752 -300,0,21.5,43,20.6333333333,41.9,22.795,41.495,20.79,37.9,20,50.1725,11.9214285714,14.6642857143,21.34,33.3175,23.315,39.2,20.6,41.145,11.6,753.6666666667,54.5,3,38.1666666667,2.6,28.0469078105,28.0469078105 -300,0,21.5,42.95,20.6,42,23.095,41.5225,20.79,38.045,20,49.916,12.29,16.045,21.39,33.4,23.39,39.2675,20.6,41.1175,11.8,753.6,52,3,40,2.2,19.4449092494,19.4449092494 -280,0,21.5333333333,42.9666666667,20.675,41.925,23.3566666667,41.4333333333,20.79,38.1633333333,20,49.736,12.6,15.4428571429,21.445,33.45,23.39,39.29,20.6,41.2,11.55,753.5666666667,54.8333333333,3.3333333333,40,2.65,32.2191680199,32.2191680199 -330,10,21.6,43.0266666667,20.7,41.9,23.6333333333,41.1633333333,20.79,38.3266666667,20,49.6214285714,12.8214285714,15.7128571429,21.456,33.478,23.4685714286,39.3214285714,20.6,41.1333333333,11.3,753.5333333333,57.6666666667,3.6666666667,40,3.1,15.2941408451,15.2941408451 -270,0,21.6333333333,43.09,20.7,41.9,23.76,40.9633333333,20.79,38.6,20,49.4,13.158,14.872,21.52,33.59,23.5,39.356,20.6,41,11.05,753.5,60.5,4,40,3.55,39.3511966569,39.3511966569 -260,10,21.7,43.1633333333,20.7,41.9,23.9266666667,40.6,20.89,39.03,20.0571428571,49.3842857143,13.3642857143,14.0828571429,21.6,33.59,23.5571428571,39.3214285714,20.7,41.09,10.8,753.4666666667,63.3333333333,4.3333333333,40,4,40.5654183705,40.5654183705 -480,0,21.79,43.36,20.7,41.9633333333,24,40.1933333333,20.89,39.1633333333,20.1,49.236,13.256,14.354,21.68,33.678,23.62,39.312,20.7,41.03,10.55,753.4333333333,66.1666666667,4.6666666667,40,4.45,16.8239091872,16.8239091872 -330,0,21.8566666667,43.56,20.7,42.1633333333,23.89,40.09,20.945,39.245,20.1,49.2,13.1128571429,14.5242857143,21.73,33.6266666667,23.7,39.3214285714,20.7,41,10.3,753.4,69,5,40,4.9,33.5248381365,33.5248381365 -300,10,21.89,43.59,20.7,42.4333333333,23.9633333333,40.1633333333,21,39.29,20.2,49.09,13.118,13.598,21.8566666667,33.8333333333,23.754,39.29,20.7,40.9333333333,10.4333333333,753.3666666667,68.1666666667,4.8333333333,40,4.8333333333,36.3989160396,36.3989160396 -440,0,21.89,43.59,20.7,42.56,24.0333333333,40.4333333333,21.0666666667,39.29,20.2,49.0385714286,13.19,10.2257142857,21.89,33.9,23.73,39.1483333333,20.6,40.79,10.5666666667,753.3333333333,67.3333333333,4.6666666667,40,4.7666666667,40.2264622157,40.2264622157 -440,10,21.9633333333,43.6566666667,20.6,42.4666666667,24.1666666667,40.5,21.1,39.2233333333,20.2,48.95,12.956,8.734,21.89,33.754,23.79,38.7675,20.6666666667,40.73,10.7,753.3,66.5,4.5,40,4.7,13.3400943363,13.3400943363 -760,0,21.9633333333,44.4566666667,20.6,42.6,24.4266666667,40.89,21.1,38.9633333333,20.2,48.92,12.7185714286,9.1942857143,21.978,33.612,23.81,38.56,20.6,40.4666666667,10.8333333333,753.2666666667,65.6666666667,4.3333333333,40,4.6333333333,9.0795573778,9.0795573778 -710,10,22.0333333333,45.46,20.5,43.4333333333,24.575,41.0225,21.1,38.6633333333,20.1714285714,49.0957142857,12.654,9.534,21.945,33.495,23.89,38.2933333333,20.6,40.3266666667,10.9666666667,753.2333333333,64.8333333333,4.1666666667,40,4.5666666667,15.8326693578,15.8326693578 -390,20,22.1,48.1266666667,20.5666666667,44.7666666667,24.6,41.1333333333,21.1,38.8633333333,20.2,49.536,12.6257142857,9.6971428571,21.89,33.254,23.945,38.045,20.6,40.06,11.1,753.2,64,4,40,4.5,34.7418436548,34.7418436548 -120,10,22.2,50.1966666667,20.6,48.3966666667,24.73,41.5966666667,21.1333333333,39.53,20.2,50.2085714286,12.42,11.3,21.89,33.076,23.956,37.79,20.6,39.9333333333,10.8333333333,753.2,66,3.6666666667,40,4.6666666667,11.779747915,11.779747915 -140,10,22.26,50.8633333333,20.6,50.2633333333,24.79,41.79,21.2,39.73,20.16,51.032,12.14,12.4085714286,21.8328571429,32.8985714286,23.865,37.7225,20.6,40.03,10.5666666667,753.2,68,3.3333333333,40,4.8333333333,38.1598593085,38.1598593085 -130,0,22.29,49.66,20.5,50.3633333333,24.6666666667,41.7,21.2,39.4666666667,20.1714285714,51.5671428571,11.876,13.954,21.79,32.79,23.79,37.8714285714,20.6,40.2925,10.3,753.2,70,3,40,5,31.1901050038,31.1901050038 -140,10,22.29,48.86,20.5,49.7566666667,24.5333333333,41.7,21.2,39.4,20.236,54.434,11.4714285714,15.9371428571,21.754,32.79,23.9283333333,38.3466666667,20.6,40.36,10.0333333333,753.2,72,2.6666666667,40,5.1666666667,21.0888047237,21.0888047237 -190,30,22.29,47.7,20.39,48.8333333333,24.26,41.43,21.2,39.7666666667,20.5271428571,66.2957142857,11.19,16.86,21.7257142857,32.8971428571,23.934,38.634,20.6,40.59,9.7666666667,753.2,74,2.3333333333,40,5.3333333333,37.8441985114,37.8441985114 -150,20,22.29,46.7666666667,20.39,48.1666666667,24.2,41.1566666667,21.2,39.8266666667,20.68,70.116,10.98,18.9257142857,21.7,33.036,24,38.7,20.6,40.2566666667,9.5,753.2,76,2,40,5.5,45.4470111057,45.4470111057 -140,10,22.29,46.2266666667,20.3566666667,47.2333333333,24.1666666667,40.93,21.23,39.9566666667,20.9685714286,77.2685714286,10.696,19.978,21.7,33.245,24.0428571429,38.8114285714,20.6,39.46,9.4666666667,753.2166666667,76.5,1.8333333333,37.6666666667,5.55,47.5875291275,47.5875291275 -140,0,22.2,45.3633333333,20.29,46.645,24.0333333333,40.6566666667,21.29,40.29,21.55,88.24,10.4685714286,19.8085714286,21.6,33.3685714286,24.1,38.9,20.5333333333,39,9.4333333333,753.2333333333,77,1.6666666667,35.3333333333,5.6,23.9503084682,23.9503084682 -130,0,22.2,44.89,20.23,46.36,23.9633333333,40.4666666667,21.29,40.1266666667,21.5942857143,87.7642857143,10.19,20,21.5857142857,33.4,24.1,38.9,20.5,38.5266666667,9.4,753.25,77.5,1.5,33,5.65,5.3194602719,5.3194602719 -130,0,22.2,44.49,20.2,46.1633333333,23.89,40.3266666667,21.29,40.1266666667,21.272,86.394,10.04,20.2514285714,21.5,33.4,24.1714285714,38.9,20.5,38.2666666667,9.3666666667,753.2666666667,78,1.3333333333,30.6666666667,5.7,38.5856806184,38.5856806184 -130,0,22.2,44.1566666667,20.1333333333,46.03,23.76,40.09,21.29,39.8333333333,21.1,82.78,9.85,20.574,21.5,33.4,24.2,38.79,20.4633333333,37.93,9.3333333333,753.2833333333,78.5,1.1666666667,28.3333333333,5.75,12.3817515792,12.3817515792 -150,0,22.1666666667,43.93,20.1,45.8266666667,23.7,40.09,21.29,39.6266666667,20.89,77.236,9.67875,21.4225,21.5,33.46,24.29,38.9,20.39,37.73,9.3,753.3,79,1,26,5.8,13.3720001439,13.3720001439 -120,0,22.1,43.73,20.1,45.9,23.6,40,21.2,39.345,20.8042857143,72.2614285714,9.5714285714,23.04,21.4371428571,33.4857142857,24.29,38.9,20.39,37.6633333333,9.1833333333,753.3166666667,79.5,1.1666666667,26,5.7833333333,36.420514877,36.420514877 -130,0,22.1,43.56,20.0666666667,45.7233333333,23.6,39.9333333333,21.1666666667,39.2,20.736,67.09,9.39,24.374,21.39,33.5,24.29,38.9,20.39,37.53,9.0666666667,753.3333333333,80,1.3333333333,26,5.7666666667,36.1319589079,36.1319589079 -120,0,22.1,43.4333333333,20,45.53,23.4633333333,39.79,21.1,39.1266666667,20.7,61.4928571429,9.2971428571,25.3142857143,21.39,33.5514285714,24.29,38.8214285714,20.29,37.4666666667,8.95,753.35,80.5,1.5,26,5.75,25.2319068182,25.2319068182 -120,0,22.1,43.26,19.9633333333,45.5,23.39,39.79,21.1,39.06,20.66,58.054,9.19,26.62,21.33,33.612,24.39,38.834,20.29,37.4,8.8333333333,753.3666666667,81,1.6666666667,26,5.7333333333,16.1611254909,16.1611254909 -130,0,22.0333333333,43.0666666667,19.89,45.5,23.29,39.79,21.1,39,20.6,56.0128571429,9.1257142857,27.7671428571,21.29,33.7,24.39,38.9,20.29,37.4,8.7166666667,753.3833333333,81.5,1.8333333333,26,5.7166666667,26.6588187777,26.6588187777 -90,0,22,42.8633333333,19.89,45.4666666667,23.29,39.79,21,38.8633333333,20.6,54.332,8.854,28.14,21.29,33.7,24.39,38.9,20.23,37.3266666667,8.6,753.4,82,2,26,5.7,29.1862406768,29.1862406768 -70,10,22,42.73,19.89,45.4666666667,23.2,39.7,21,38.79,20.6,53.0957142857,8.6266666667,29.1333333333,21.272,33.678,24.39,38.9,20.2,37.2,8.4666666667,753.3666666667,82.3333333333,1.8333333333,25.8333333333,5.6333333333,31.0726393829,31.0726393829 -60,10,22,42.83,19.8566666667,45.4666666667,23.2,39.7,21,38.73,20.6,51.916,8.4266666667,30.5266666667,21.2257142857,33.7257142857,24.3233333333,38.9666666667,20.2,37.2,8.3333333333,753.3333333333,82.6666666667,1.6666666667,25.6666666667,5.5666666667,5.9804747463,5.9804747463 -60,0,22,43.03,19.79,45.4,23.2,39.6266666667,21,38.79,20.6,51.3542857143,8.16,31.9,21.29,34.236,24.29,39.36,20.2,37.36,8.2,753.3,83,1.5,25.5,5.5,26.5410531778,26.5410531778 -40,10,21.9633333333,43.1633333333,19.76,45.3633333333,23.2,39.59,21,38.79,20.58,50.994,7.9666666667,33.0266666667,21.29,34.55,24.29,39.6933333333,20.2,37.7925,8.0666666667,753.2666666667,83.3333333333,1.3333333333,25.3333333333,5.4333333333,46.0307264235,46.0307264235 -60,0,21.9633333333,43.1633333333,19.7,45.23,23.1333333333,39.59,21,38.8633333333,20.5,50.70875,7.8666666667,34.3966666667,21.29,34.832,24.2,40.0666666667,20.26,38.2966666667,7.9333333333,753.2333333333,83.6666666667,1.1666666667,25.1666666667,5.3666666667,49.7457480058,49.7457480058 -40,0,21.89,43.1633333333,19.6666666667,45.1633333333,23.1,39.6266666667,20.9633333333,38.9,20.5,50.4971428571,7.8,34.93,21.29,35.0257142857,24.2,40.4,20.29,38.8,7.8,753.2,84,1,25,5.3,6.4757709973,6.4757709973 -50,0,21.865,42.9475,19.6,45.09,23.1,39.76,20.89,38.9,20.5,50.2,7.9,35.6666666667,21.35,35.4,24.1,41.03,20.29,39.1333333333,7.85,753.1833333333,83.6666666667,1,25.6666666667,5.2666666667,6.985051604,6.985051604 -60,0,21.79,42.6266666667,19.5666666667,45.09,23.0666666667,39.7,20.89,39,20.5,50.04,7.9,36.4,21.29,35.4985714286,24.1,41.43,20.29,39.4333333333,7.9,753.1666666667,83.3333333333,1,26.3333333333,5.2333333333,40.2274744119,40.2274744119 -40,0,21.79,42.56,19.4725,45.145,23,39.7,20.89,39,20.5,49.816,7.9333333333,37.3966666667,21.29,35.674,24.15,41.995,20.29,39.5,7.95,753.15,83,1,27,5.2,3.2861449174,3.2861449174 -40,10,21.73,42.4333333333,19.39,45.1633333333,23,39.7,20.89,39.06,20.5,49.6685714286,8,37.79,21.3185714286,35.8685714286,24.1,42.3266666667,20.29,39.6566666667,8,753.1333333333,82.6666666667,1,27.6666666667,5.1666666667,47.3988876794,47.3988876794 -40,0,21.7,42.4,19.3566666667,45.23,23,39.7,20.8233333333,39,20.5,49.5,7.9666666667,37.6333333333,21.29,36.08,24.0333333333,42.3266666667,20.29,39.93,8.05,753.1166666667,82.3333333333,1,28.3333333333,5.1333333333,27.4816317833,27.4816317833 -40,0,21.7,42.4,19.29,45.29,23,39.7,20.79,39,20.4685714286,49.3071428571,7.76,37.36,21.3471428571,36.3542857143,23.9633333333,42.2,20.29,40.1266666667,8.1,753.1,82,1,29,5.1,39.5659417263,39.5659417263 -40,0,21.7,42.4,19.29,45.3266666667,22.9266666667,39.6266666667,20.79,39,20.434,49.116,7.45,37.55,21.39,36.518,23.89,42.2,20.29,40.3333333333,8.05,753.0666666667,82.6666666667,1.1666666667,28.6666666667,5.1833333333,42.4322532257,42.4322532257 -40,0,21.6333333333,42.2666666667,19.23,45.4,22.89,39.59,20.79,39,20.39,48.9714285714,7.1266666667,38.0666666667,21.39,36.59,23.79,42.09,20.29,40.5666666667,8,753.0333333333,83.3333333333,1.3333333333,28.3333333333,5.2666666667,14.8066318128,14.8066318128 -50,0,21.6,42.1633333333,19.2,45.4,22.89,39.59,20.79,39.03,20.39,48.856,6.9333333333,38.8,21.39,36.6175,23.79,42.09,20.29,40.76,7.95,753,84,1.5,28,5.35,29.8662707675,29.8662707675 -40,0,21.5333333333,42.09,19.1333333333,45.3266666667,22.9266666667,39.6266666667,20.79,39.03,20.39,48.79,6.5266666667,39.3233333333,21.39,36.834,23.7,42.23,20.3233333333,41.03,7.9,752.9666666667,84.6666666667,1.6666666667,27.6666666667,5.4333333333,23.0247318395,23.0247318395 -50,10,21.5,42.09,19.1,45.29,23,39.7,20.76,39,20.39,48.714,6.26,40.3233333333,21.39,36.9571428571,23.7,42.43,20.39,41.1633333333,7.85,752.9333333333,85.3333333333,1.8333333333,27.3333333333,5.5166666667,23.0766299297,23.0766299297 -50,0,21.5,42.03,19.0333333333,45.29,23,39.7,20.76,39,20.39,48.59,6.06,42.36,21.39,37.076,23.6,42.6566666667,20.39,41.3266666667,7.8,752.9,86,2,27,5.6,12.1606016066,12.1606016066 -60,0,21.4633333333,41.9666666667,19,45.2,23.0666666667,39.76,20.7,39,20.39,48.5,6.06,43.6333333333,21.39,37.2385714286,23.6,42.93,20.39,41.4666666667,7.6666666667,752.8833333333,85.6666666667,2,27.1666666667,5.4166666667,34.8874027841,34.8874027841 -50,0,21.39,41.8266666667,19,45.2,23.1,39.79,20.7,39,20.39,48.5514285714,6.19,44.5,21.39,37.134,23.5666666667,43.5666666667,20.39,41.59,7.5333333333,752.8666666667,85.3333333333,2,27.3333333333,5.2333333333,18.480602745,18.480602745 -50,0,21.39,41.79,18.89,45.2,23.1,39.8175,20.7,39,20.39,48.572,6.2633333333,44.6933333333,21.39,37.3857142857,23.5666666667,43.8333333333,20.39,41.6633333333,7.4,752.85,85,2,27.5,5.05,24.3372545927,24.3372545927 -50,0,21.39,41.73,18.89,45.2,23.1,39.8266666667,20.7,39,20.39,48.4714285714,6.3333333333,44.76,21.39,37.54,23.5,44.09,20.39,41.9333333333,7.2666666667,752.8333333333,84.6666666667,2,27.6666666667,4.8666666667,6.5648940741,6.5648940741 -50,0,21.39,41.7,18.8566666667,45.1633333333,23.1,39.9,20.6666666667,38.9666666667,20.39,48.4,6.4,44.5,21.39,37.7,23.5,44.1633333333,20.39,42.095,7.1333333333,752.8166666667,84.3333333333,2,27.8333333333,4.6833333333,21.8493748922,21.8493748922 -50,0,21.3233333333,41.7,18.79,45.09,23.1666666667,39.9,20.6,38.9,20.3757142857,48.3528571429,6.3,44.2233333333,21.39,37.736,23.5,44.2,20.39,42.26,7,752.8,84,2,28,4.5,22.0555045409,22.0555045409 -40,0,21.29,41.7,18.79,45.2,23.1666666667,39.9,20.6,38.9,20.35,48.356,6.2266666667,44.1633333333,21.39,37.7514285714,23.4266666667,44.2,20.39,42.3266666667,6.9333333333,752.75,84.6666666667,2,27.6666666667,4.5333333333,15.2309570345,15.2309570345 -50,10,21.29,41.7,18.73,45.2,23.1666666667,39.9666666667,20.6,38.9,20.39,48.4,5.9933333333,43.56,21.39,37.736,23.39,44.2,20.39,42.4666666667,6.8666666667,752.7,85.3333333333,2,27.3333333333,4.5666666667,10.38024351,10.38024351 -50,0,21.245,41.645,18.7,45.2,23.2,39.9,20.6,38.79,20.35,48.254,5.66,43.6333333333,21.39,37.7,23.39,44.2,20.39,42.5,6.8,752.65,86,2,27,4.6,8.052142465,8.052142465 -60,0,21.2,41.56,18.7,45.1266666667,23.1333333333,39.9666666667,20.6,38.79,20.29,48.1842857143,5.23,44.13,21.39,37.7,23.39,44.06,20.39,42.56,6.7333333333,752.6,86.6666666667,2,26.6666666667,4.6333333333,10.7104446855,10.7104446855 -60,0,21.2,41.5,18.65,45.145,23.2,39.9666666667,20.6,38.79,20.31,48.09,4.8966666667,44.7966666667,21.39,37.7,23.39,43.925,20.39,42.59,6.6666666667,752.55,87.3333333333,2,26.3333333333,4.6666666667,7.0136623108,7.0136623108 -40,0,21.2,41.4666666667,18.6,45.09,23.2,39.9,20.6,38.79,20.3471428571,48.0642857143,4.495,45.595,21.39,37.7,23.3233333333,43.8266666667,20.39,42.6633333333,6.6,752.5,88,2,26,4.7,48.5226190998,48.5226190998 -60,0,21.2,41.4666666667,18.5333333333,45.09,23.2,39.9666666667,20.5,38.76,20.29,48,4.1566666667,46.6,21.39,37.7,23.29,43.76,20.39,42.7,6.3,752.4666666667,88.5,2,25.6666666667,4.5,14.7581450525,14.7581450525 -50,0,21.1666666667,41.4,18.5,45.09,23.2,39.9,20.5,38.76,20.29,47.9375,3.9633333333,47.4666666667,21.39,37.754,23.29,43.6266666667,20.4633333333,42.76,6,752.4333333333,89,2,25.3333333333,4.3,32.9778755549,32.9778755549 -50,0,21.1,41.4,18.5,45.09,23.2,39.9,20.5,38.7,20.29,47.8528571429,3.8633333333,48.0666666667,21.39,37.7,23.29,43.4666666667,20.39,42.79,5.7,752.4,89.5,2,25,4.1,37.4100949266,37.4100949266 -50,0,21.1,41.29,18.4266666667,45.1266666667,23.2,39.9,20.5,38.7,20.29,47.9,3.79,48.5266666667,21.39,37.718,23.29,43.3266666667,20.4633333333,42.93,5.4,752.3666666667,90,2,24.6666666667,3.9,34.5015426981,34.5015426981 -50,10,21.1,41.29,18.4266666667,45.1266666667,23.2,39.9,20.5,38.7,20.29,47.8214285714,3.59,48.8666666667,21.39,37.79,23.2,43.09,20.4633333333,43,5.1,752.3333333333,90.5,2,24.3333333333,3.7,39.4314073958,39.4314073958 -50,0,21.1,41.26,18.39,45.1266666667,23.1333333333,39.9,20.5,38.59,20.29,47.79,3.53,49.46,21.39,37.79,23.2,43.09,20.39,43,4.8,752.3,91,2,24,3.5,15.8255180577,15.8255180577 -50,0,21.1,41.2,18.3233333333,45.2,23.1,39.8266666667,20.4266666667,38.59,20.29,47.7385714286,3.3633333333,49.3,21.39,37.7542857143,23.2,42.8633333333,20.5,43.09,4.6333333333,752.2333333333,91.3333333333,2,23.5,3.3666666667,45.9667483694,45.9667483694 -60,0,21,41.09,18.29,45.2,23.1,39.9,20.39,38.5,20.254,47.598,3.29,50.1,21.39,37.516,23.2,42.79,20.5,43.09,4.4666666667,752.1666666667,91.6666666667,2,23,3.2333333333,1.954178093,1.954178093 -50,0,21,41.03,18.23,45.1266666667,23.1,39.9,20.39,38.5,20.29,47.5257142857,3.29,51.2566666667,21.39,37.4542857143,23.1333333333,42.76,20.39,43.09,4.3,752.1,92,2,22.5,3.1,16.5746119106,16.5746119106 -60,0,21,41,18.2,45.1266666667,23.1,39.9,20.39,38.5,20.29,47.46,3.23,51.9966666667,21.39,37.736,23.1333333333,42.7,20.4633333333,43.1633333333,4.1333333333,752.0333333333,92.3333333333,2,22,2.9666666667,14.2144249869,14.2144249869 -50,0,21,41,18.2,45.2,23.1,39.845,20.39,38.4333333333,20.2514285714,47.3957142857,3.1633333333,51.8,21.39,37.7642857143,23.1,42.56,20.5,43.2,3.9666666667,751.9666666667,92.6666666667,2,21.5,2.8333333333,18.194580276,18.194580276 -50,0,21,40.9666666667,18.1,45.2,23.1333333333,39.9,20.39,38.4,20.254,47.396,3.1633333333,53,21.39,37.79,23.1,42.5,20.4266666667,43.1266666667,3.8,751.9,93,2,21,2.7,24.0004456253,24.0004456253 -40,0,21,40.9,18.1,45.2,23.1333333333,39.8266666667,20.39,38.4,20.2642857143,47.3685714286,3.23,53.7933333333,21.39,37.79,23.1,42.5,20.39,43.09,3.9166666667,751.85,92.6666666667,2,21.5,2.7833333333,31.9947121199,31.9947121199 -50,0,21,40.9,18.0666666667,45.1633333333,23.1,39.79,20.39,38.4,20.2,47.29,3.23,53.8666666667,21.39,37.79,23.0333333333,42.36,20.39,43.09,4.0333333333,751.8,92.3333333333,2,22,2.8666666667,10.2355290204,10.2355290204 -50,0,21,40.8266666667,18,45.09,23.1,39.79,20.3233333333,38.4,20.2257142857,47.2828571429,3.1633333333,53.7566666667,21.39,37.79,23,42.26,20.39,43.09,4.15,751.75,92,2,22.5,2.95,13.0707060336,13.0707060336 -40,0,20.89,40.79,18,45.2,23.1,39.79,20.29,38.3633333333,20.2,47.236,3.0425,53.695,21.3328571429,37.7385714286,23,42.2,20.4266666667,43.1266666667,4.2666666667,751.7,91.6666666667,2,23,3.0333333333,12.0769021916,12.0769021916 -70,0,20.89,40.76,17.9266666667,45.26,23.1,39.79,20.29,38.29,20.2,47.2,2.8266666667,53.0966666667,21.29,37.736,22.89,42.2,20.5,43.2,4.3833333333,751.65,91.3333333333,2,23.5,3.1166666667,36.126477248,36.126477248 -50,0,20.89,40.7,17.945,45.29,23.1,39.79,20.29,38.29,20.2,47.2,2.6333333333,53.2233333333,21.29,37.7,22.89,42.2,20.39,43.2,4.5,751.6,91,2,24,3.2,43.7569348258,43.7569348258 -50,0,20.89,40.7,17.89,45.29,23.1,39.79,20.29,38.29,20.2,47.1371428571,2.5,53.2233333333,21.35,37.79,22.84,42.145,20.39,43.2,4.2833333333,751.5333333333,91.3333333333,1.8333333333,23.5,3.0166666667,25.0528343604,25.0528343604 -60,0,20.89,40.7,17.89,45.29,23.1,39.79,20.29,38.26,20.2,47.09,2.4,53.06,21.29,37.8842857143,22.79,42.1633333333,20.39,43.2,4.0666666667,751.4666666667,91.6666666667,1.6666666667,23,2.8333333333,28.7727523944,28.7727523944 -50,0,20.89,40.6633333333,17.79,45.2,23.1,39.79,20.23,38.1266666667,20.2,47.0257142857,2.3266666667,53.3333333333,21.29,37.794,22.79,42.1633333333,20.39,43.2,3.85,751.4,92,1.5,22.5,2.65,23.0308339815,23.0308339815 -50,0,20.8233333333,40.59,17.79,45.2,23.1,39.79,20.245,38.145,20.2,47,2.29,53.9333333333,21.29,37.5514285714,22.79,42.2,20.39,43.2,3.6333333333,751.3333333333,92.3333333333,1.3333333333,22,2.4666666667,24.3924375623,24.3924375623 -40,0,20.79,40.5,17.76,45.2,23.1,39.79,20.2,38.09,20.1571428571,46.9571428571,2.23,54.2666666667,21.29,37.634,22.73,42.2,20.39,43.2,3.4166666667,751.2666666667,92.6666666667,1.1666666667,21.5,2.2833333333,45.9134917939,45.9134917939 -50,0,20.79,40.5,17.7,45.2,23.1,39.79,20.2,38.03,20.16,46.98,2.29,55.06,21.29,37.7385714286,22.7,42.23,20.39,43.2,3.2,751.2,93,1,21,2.1,49.9388684169,49.9388684169 -50,0,20.79,40.4,17.7,45.2,23.1,39.79,20.2,38,20.1571428571,46.9,2.29,55.1333333333,21.29,37.754,22.7,42.23,20.39,43.2,3.2,751.1666666667,93,1.1666666667,21,2.1,43.9693768625,43.9693768625 -40,0,20.73,40.4,17.7,45.2,23,39.7,20.2,38,20.2,46.9,2.29,55.76,21.29,37.7642857143,22.7,42.29,20.39,43.09,3.2,751.1333333333,93,1.3333333333,21,2.1,4.7184396419,4.7184396419 -50,0,20.79,40.3633333333,17.7,45.2,23,39.7,20.2,38,20.2,46.8842857143,2.23,55.4266666667,21.29,37.7,22.7,42.29,20.39,43.09,3.2,751.1,93,1.5,21,2.1,2.2049251944,2.2049251944 -60,0,20.73,40.29,17.7,45.2,23,39.7,20.2,38,20.2,46.79,2.3266666667,56.0666666667,21.29,37.7,22.7,42.1633333333,20.39,43.09,3.2,751.0666666667,93,1.6666666667,21,2.1,24.5859746705,24.5859746705 -50,0,20.7,40.29,17.7,45.09,23,39.7,20.2,38,20.1833333333,46.745,2.5266666667,56.66,21.29,37.7,22.7,42.1633333333,20.39,43.1633333333,3.2,751.0333333333,93,1.8333333333,21,2.1,33.5893612239,33.5893612239 -60,0,20.7,40.29,17.7,45.03,23,39.7,20.1333333333,38,20.1285714286,46.7,2.8266666667,57.33,21.29,37.7,22.6666666667,42.1633333333,20.39,43.09,3.2,751,93,2,21,2.1,6.1854321393,6.1854321393 -40,0,20.7,40.29,17.73,44.9,23,39.6633333333,20.1,38,20.2,46.7,3.0266666667,57.7233333333,21.236,37.634,22.6,42.09,20.39,43.1633333333,3.4833333333,750.9666666667,92.3333333333,2,21.1666666667,2.2833333333,16.7773073772,16.7773073772 -30,0,20.7,40.29,17.79,44.8266666667,23,39.59,20.1,38,20.1142857143,46.7,3.595,58.44,21.29,37.7,22.6,42.09,20.39,43.245,3.7666666667,750.9333333333,91.6666666667,2,21.3333333333,2.4666666667,18.604619673,18.604619673 -70,0,20.7,40.6,17.8233333333,44.8666666667,22.9633333333,39.49,20.1,38,20.14,46.678,4.2266666667,59,21.29,37.718,22.6,42.1633333333,20.39,43.4,4.05,750.9,91,2,21.5,2.65,4.9033574644,4.9033574644 -40,0,20.7,41.1333333333,17.89,45.46,22.8233333333,39.03,20.1,38.1333333333,20.1714285714,46.5257142857,4.7666666667,59.3333333333,21.29,37.8685714286,22.5,42.2,20.4633333333,43.4,4.3333333333,750.8666666667,90.3333333333,2,21.6666666667,2.8333333333,14.501660259,14.501660259 -50,0,20.79,41.495,17.9266666667,45.86,22.76,38.76,20.1,38.29,20.2,46.5,5.43,59.6933333333,21.236,37.874,22.5,42.26,20.5,43.3633333333,4.6166666667,750.8333333333,89.6666666667,2,21.8333333333,3.0166666667,47.4849837716,47.4849837716 -50,0,20.79,41.53,18.1,46.0675,22.7,38.7,20.1,38.3633333333,20.2,46.4142857143,5.9566666667,59.9666666667,21.2128571429,38,22.5,42.29,20.4266666667,43.1566666667,4.9,750.8,89,2,22,3.2,42.3898176523,42.3898176523 -60,0,20.8566666667,41.6633333333,18.26,46.1633333333,22.6,38.7,20.1,38.5,20.2,46.42,6.6666666667,59.7633333333,21.218,38.136,22.5,42.3633333333,20.5,43.06,5.3,750.7666666667,87.3333333333,2.1666666667,23,3.3,2.9501490993,2.9501490993 -210,0,20.89,41.9,18.3233333333,46.1333333333,22.6,38.7,20.1666666667,38.56,20.1714285714,46.5285714286,7.2666666667,58.7633333333,21.29,38.6555555556,22.5,42.4333333333,20.5,42.86,5.7,750.7333333333,85.6666666667,2.3333333333,24,3.4,29.3234312325,29.3234312325 -320,0,20.89,41.9,18.4633333333,45.8,22.5666666667,38.49,20.1,38.56,20.1714285714,46.7957142857,7.93,57.16,21.2128571429,38.38,22.4725,42.375,20.5333333333,42.5,6.1,750.7,84,2.5,25,3.5,29.0253490093,29.0253490093 -70,0,20.8566666667,41.5633333333,18.6,45.1966666667,22.36,38.1566666667,20.1666666667,38.5,20.1,47.036,8.3966666667,53.9666666667,21.2,38.016,22.39,42.1266666667,20.6,42.4333333333,6.5,750.6666666667,82.3333333333,2.6666666667,26,3.6,24.5068859076,24.5068859076 -110,0,20.8566666667,41.0966666667,18.6,44.4566666667,22.29,38.3266666667,20.15,38.4,20.1,47.3942857143,8.93,48.3,21.2,37.9971428571,22.39,42.06,20.6,42.3333333333,6.9,750.6333333333,80.6666666667,2.8333333333,27,3.7,0.1721184584,0.1721184584 -130,0,20.89,40.9,18.6333333333,43.9666666667,22.29,38.1933333333,20.2,38.29,20.1,47.59,9.3233333333,42.8933333333,21.2,37.82,22.39,41.9333333333,20.6,42.0666666667,7.3,750.6,79,3,28,3.8,16.6270395042,16.6270395042 -70,0,20.89,40.7666666667,18.7,43.8266666667,22.2,37.8333333333,20.2,38.29,20.1,47.6685714286,9.8266666667,38.96,21.2,37.4214285714,22.3233333333,41.9333333333,20.5666666667,41.56,7.6333333333,750.5666666667,77.6666666667,3.1666666667,30,3.8833333333,26.2870303006,26.2870303006 -60,0,20.89,40.76,18.8233333333,43.6633333333,22.2,37.7,20.2,38.29,20.06,47.656,10.2933333333,36.0333333333,21.14,37.074,22.39,41.86,20.5,41.5,7.9666666667,750.5333333333,76.3333333333,3.3333333333,32,3.9666666667,3.7704749615,3.7704749615 -70,0,20.89,40.7,18.9633333333,43.4633333333,22.1,37.7,20.2,38.23,20,47.6528571429,10.6966666667,32.2,21.1,36.6942857143,22.39,41.6333333333,20.5,41.2233333333,8.3,750.5,75,3.5,34,4.05,20.4664627207,20.4664627207 -70,0,20.89,40.7,19.1333333333,43.2966666667,22.1,37.7,20.2,38.2,20,47.7,11.09,30,21.1,36.356,22.39,41.6333333333,20.5,40.9633333333,8.6333333333,750.4666666667,73.6666666667,3.6666666667,36,4.1333333333,14.598289656,14.598289656 -70,0,20.89,40.7,19.26,43.03,22.1,37.7666666667,20.2,38.2,20,47.6214285714,11.5633333333,27.4666666667,21.1,36.0985714286,22.39,41.59,20.5,40.5266666667,8.9666666667,750.4333333333,72.3333333333,3.8333333333,38,4.2166666667,38.4952560999,38.4952560999 -60,0,20.89,40.73,19.46,42.76,22.1,37.9,20.2,38.3266666667,20,47.554,11.9633333333,25.4,21.1,35.918,22.39,41.45,20.5,40.2666666667,9.3,750.4,71,4,40,4.3,16.7012621416,16.7012621416 -70,0,20.89,40.79,19.6666666667,42.5666666667,22.1,37.9333333333,20.2,38.4,20,47.4428571429,12.3666666667,23.1666666667,21.1,35.7257142857,22.39,41.1633333333,20.5,39.9,9.4666666667,750.3833333333,70.3333333333,4.1666666667,37.5,4.3166666667,27.908948937,27.908948937 -230,0,20.9266666667,40.76,19.9266666667,42.16,22.1,38,20.23,38.6333333333,20,47.334,12.6925,20.445,21.1,35.5,22.3233333333,41.03,20.5,39.6266666667,9.6333333333,750.3666666667,69.6666666667,4.3333333333,35,4.3333333333,46.0733078187,46.0733078187 -390,0,20.9266666667,40.7,20.1333333333,41.9,22.1,38,20.29,38.9666666667,20,47.2257142857,13.09,18.1666666667,21.1,35.4685714286,22.29,40.9333333333,20.5,39.59,9.8,750.35,69,4.5,32.5,4.35,42.3108664458,42.3108664458 -100,0,21,40.73,20.3233333333,41.6,22.1,38.03,20.3233333333,39,20,47.09,13.46,14.93,21.1,35.294,22.29,40.9333333333,20.4633333333,39.56,9.9666666667,750.3333333333,68.3333333333,4.6666666667,30,4.3666666667,15.6885230797,15.6885230797 -70,0,21,40.73,20.4633333333,41.2666666667,22.1,38.09,20.39,38.9333333333,20,46.9985714286,13.7333333333,12.99,21.1,35.0257142857,22.29,40.9,20.4633333333,39.56,10.1333333333,750.3166666667,67.6666666667,4.8333333333,27.5,4.3833333333,9.138480376,9.138480376 -80,0,21,40.6633333333,20.6333333333,40.7233333333,22.2,38.09,20.39,38.79,20,46.878,14,11.3566666667,21.1,34.754,22.29,40.6933333333,20.5,39.59,10.3,750.3,67,5,25,4.4,29.0421050158,29.0421050158 -70,0,21,40.4975,20.76,40.4633333333,22.1333333333,38.03,20.39,38.73,20,46.70875,14.0666666667,10.2966666667,21.1,34.54,22.39,40.2966666667,20.5,39.59,10.4166666667,750.2833333333,66.6666666667,5.1666666667,25.6666666667,4.4333333333,21.1848253966,21.1848253966 -80,0,21,40.3266666667,20.89,40.05,22.1,38,20.5,38.59,20,46.5642857143,14.2566666667,10,21.1,34.378,22.4633333333,39.9633333333,20.4633333333,39.5266666667,10.5333333333,750.2666666667,66.3333333333,5.3333333333,26.3333333333,4.4666666667,49.6647968655,49.6647968655 -80,0,21.0333333333,40.1333333333,21,39.46,22.1,37.9333333333,20.5,38.53,20,46.46,14.53,9.7333333333,21.1,34.29,22.6,39.5633333333,20.4633333333,39.5266666667,10.65,750.25,66,5.5,27,4.5,6.9882559474,6.9882559474 -70,0,21.1,39.8,21,39,22.1,37.9666666667,20.5,38.4,19.9842857143,46.3371428571,14.7333333333,8.6266666667,21.2,34.236,22.6,39.0966666667,20.5,39.59,10.7666666667,750.2333333333,65.6666666667,5.6666666667,27.6666666667,4.5333333333,12.2115750099,12.2115750099 -80,0,21.23,42.4,21.1333333333,38.9333333333,22.1,37.8266666667,20.5,38.3266666667,19.956,46.272,14.5333333333,8.2933333333,21.2385714286,34.1371428571,22.5,38.8333333333,20.5,39.59,10.8833333333,750.2166666667,65.3333333333,5.8333333333,28.3333333333,4.5666666667,13.7936265324,13.7936265324 -80,0,21.29,42.26,21.26,39.1333333333,22.1,37.8266666667,20.6,38.145,20,46.2128571429,14.6666666667,8,21.254,33.98,22.54,38.334,20.5,40.1266666667,11,750.2,65,6,29,4.6,13.8058596058,13.8058596058 -100,0,21.39,42.1933333333,21.4266666667,39.3266666667,22.1666666667,37.9666666667,20.6,38.06,20,46.29,14.86,7.2666666667,21.29,33.7957142857,22.5666666667,38.1566666667,20.5,39.7933333333,11.25,750.15,63.6666666667,6.1666666667,30.8333333333,4.5166666667,21.4438976953,21.4438976953 -110,10,21.4633333333,42.1933333333,21.5,39.4,22.2,38.1266666667,20.6,37.9333333333,20,46.29,15.1,6.33,21.39,33.59,22.7,37.7966666667,20.5,39.5266666667,11.5,750.1,62.3333333333,6.3333333333,32.6666666667,4.4333333333,32.6071044663,32.6071044663 -100,0,21.6333333333,41.6933333333,21.5333333333,39.2233333333,22.2,38.26,20.6333333333,37.79,20,46.27,15.1,5.8566666667,21.4842857143,33.5385714286,22.76,37.4633333333,20.5,39.5266666667,11.75,750.05,61,6.5,34.5,4.35,16.0670637852,16.0670637852 -100,0,21.7,41.36,21.6,39.03,22.2,38.5,20.7,37.73,20,46.156,15.136,4.576,21.58,33.518,22.8233333333,37.09,20.5,39.1933333333,12,750,59.6666666667,6.6666666667,36.3333333333,4.2666666667,43.2946577901,43.2946577901 -90,0,21.8233333333,41.06,21.7,38.9666666667,22.2,38.56,20.7,37.56,20,46.0771428571,15.3042857143,4.6985714286,21.76,33.59,22.9633333333,37.09,20.5,39.5266666667,12.25,749.95,58.3333333333,6.8333333333,38.1666666667,4.1833333333,29.7553462326,29.7553462326 -100,0,21.89,40.8,21.7,38.8266666667,22.29,38.76,20.76,37.5,20,45.98,15.456,4.658,21.79,33.5,23.0333333333,37,20.5,39.56,12.5,749.9,57,7,40,4.1,5.3342375322,5.3342375322 -90,0,22,40.3333333333,21.73,38.6633333333,22.29,38.7,20.79,37.4,20,45.8685714286,15.5,4.2785714286,21.8566666667,33.5,23.1,36.9333333333,20.5,39.56,12.5,749.8333333333,56.3333333333,7,40,3.9333333333,16.0513211973,16.0513211973 -90,0,22,39.9266666667,21.79,38.4633333333,22.3233333333,38.79,20.79,37.3266666667,20,45.79,15.5,4.16,21.9266666667,33.4,23.2,36.7233333333,20.5666666667,39.59,12.5,749.7666666667,55.6666666667,7,40,3.7666666667,46.204338409,46.204338409 -190,0,22.1,39.6333333333,21.8566666667,38.3333333333,22.39,38.79,20.79,37.2,20,45.65,15.6842857143,4.0985714286,22,33.3266666667,23.26,36.7966666667,20.5666666667,39.59,12.5,749.7,55,7,40,3.6,38.0788787152,38.0788787152 -370,0,22.1,39.1666666667,21.79,37.3333333333,22.3233333333,38.73,20.79,37.1266666667,20,45.516,15.96,3.4933333333,22.1333333333,33.29,23.29,37.1266666667,20.6,39.545,12.5,749.6333333333,54.3333333333,7,40,3.4333333333,44.2383185378,44.2383185378 -280,0,22.2,37.9233333333,21.6666666667,35.8233333333,22.29,38.1,20.89,37.1633333333,20,45.3685714286,16.1571428571,2.5942857143,22.2,33.23,23.29,37.26,20.5333333333,39.2966666667,12.5,749.5666666667,53.6666666667,7,40,3.2666666667,43.5773213627,43.5773213627 -130,0,22.2,37.33,21.5333333333,35.23,22.29,37.6933333333,20.89,37.09,20,44.96,16.1,1.3714285714,22.29,33.1633333333,23.39,37.26,20.6,39.03,12.5,749.5,53,7,40,3.1,47.8778918972,47.8778918972 -120,0,22.2,36.5633333333,21.6,35.0633333333,22.29,37.3333333333,20.89,36.9666666667,20,44.5285714286,16.2,1.374,22.3566666667,33.03,23.39,37.1266666667,20.6,38.79,12.75,749.45,52,7.1666666667,40,3.05,9.0652701096,9.0652701096 -100,0,22.2,36.0475,21.6,34.79,22.29,37.0666666667,20.9633333333,36.8266666667,20,44.038,16.28,1.2428571429,22.4266666667,32.9,23.5,36.99,20.6,38.6566666667,13,749.4,51,7.3333333333,40,3,33.3313370706,33.3313370706 -120,0,22.2,35.9666666667,21.7,34.8266666667,22.3233333333,36.8633333333,20.9266666667,36.76,20,43.7257142857,16.456,1,22.5,32.8266666667,23.5,36.6566666667,20.6,38.2233333333,13.25,749.35,50,7.5,40,2.95,33.3948068786,33.3948068786 -120,0,22.2,36.4333333333,21.7925,35.075,22.39,36.79,20.9266666667,36.6266666667,20.04,43.536,16.6,1,22.5333333333,32.6633333333,23.6,36.4,20.6,37.83,13.5,749.3,49,7.6666666667,40,2.9,20.9759609192,20.9759609192 -110,0,22.26,37.2333333333,21.89,35.5266666667,22.39,36.8266666667,20.9266666667,36.5,20.1,43.5642857143,16.83,1,22.6666666667,32.53,23.6,36.0666666667,20.5333333333,37.4,13.75,749.25,48,7.8333333333,40,2.85,4.2641721317,4.2641721317 -110,0,22.29,37.9266666667,21.9266666667,35.89,22.39,36.9666666667,21,36.4333333333,20.04,43.59,16.71,1,22.7,32.3633333333,23.73,36,20.5333333333,36.7933333333,14,749.2,47,8,40,2.8,41.1130380933,41.1130380933 -110,0,22.29,38.3333333333,21.9266666667,36.2966666667,22.39,37.0666666667,21,36.245,20.0285714286,43.6471428571,16.54,1,22.7,32.23,23.79,36,20.5,36.5266666667,14.05,749.1333333333,47.3333333333,7.8333333333,40,2.9333333333,27.9831114924,27.9831114924 -120,0,22.29,38.6566666667,21.89,36.6933333333,22.39,37.3333333333,21,36.2,20.1,44,16.5571428571,1.1,22.6,32.2,23.79,36,20.5,35.9933333333,14.1,749.0666666667,47.6666666667,7.6666666667,40,3.0666666667,4.2679179693,4.2679179693 -120,0,22.29,38.93,21.89,36.9666666667,22.4633333333,37.59,21,36.2,20.1,44.14,16.934,1.06,22.6,32.2,23.79,35.9666666667,20.5,35.7,14.15,749,48,7.5,40,3.2,35.0979337702,35.0979337702 -160,0,22.29,39.2666666667,21.89,37.23,22.4633333333,37.7233333333,21,36.1633333333,20.1,44.23,17.2228571429,1,22.6,32.23,23.8566666667,35.8266666667,20.5,35.3666666667,14.2,748.9333333333,48.3333333333,7.3333333333,40,3.3333333333,3.2786139054,3.2786139054 -360,0,22.29,39.4666666667,21.9633333333,37.3633333333,22.5,37.9,21,36.09,20.1,44.3057142857,17.236,1,22.6,32.29,23.89,35.6633333333,20.39,35.09,14.25,748.8666666667,48.6666666667,7.1666666667,40,3.4666666667,29.7974352841,29.7974352841 -410,0,22.29,39.96,21.9633333333,37.4633333333,22.5,37.9666666667,21,36.06,20.1,44.4,17.0257142857,1,22.6,32.145,23.9633333333,35.53,20.39,34.9633333333,14.3,748.8,49,7,40,3.6,26.6961778048,26.6961778048 -520,0,22.3566666667,41.0333333333,21.9633333333,37.9233333333,22.5,38.03,21,36,20.1,44.6144444444,16.66,1,22.6666666667,32.0233333333,24,35.5,20.4266666667,34.9333333333,14.2166666667,748.75,49.3333333333,7,40,3.6166666667,7.2335847188,7.2335847188 -430,0,22.39,42.4,21.9633333333,38.6333333333,22.5,38.1633333333,21,36.09,20.1,44.736,16.5128571429,1,22.6,31.8233333333,24.0666666667,35.56,20.5,35.4,14.1333333333,748.7,49.6666666667,7,40,3.6333333333,43.819153856,43.819153856 -270,0,22.4633333333,43.1333333333,21.89,38.9,22.6,38.4633333333,21,36.09,20.1857142857,45.1514285714,16.254,1.22,22.7,31.76,24.1,35.8,20.5,36.0666666667,14.05,748.65,50,7,40,3.65,41.7566536227,41.7566536227 -190,0,22.4266666667,44.2333333333,21.89,40.3,22.6,38.7233333333,21,36.09,20.14,45.554,16.2257142857,1.6142857143,22.6333333333,31.5666666667,24.1,36,20.5,36.3266666667,13.9666666667,748.6,50.3333333333,7,40,3.6666666667,23.1931120623,23.1931120623 -170,0,22.5666666667,44.9,21.89,41.16,22.6,39.3,21,36.09,20.1428571429,45.8685714286,15.89,2.28,22.6,31.5,24.2,35.9,20.5,35.845,13.8833333333,748.55,50.6666666667,7,40,3.6833333333,28.3326564473,28.3326564473 -140,0,22.5,44.6233333333,21.8566666667,41.4666666667,22.7,39.59,20.9633333333,36.09,20.2,46.036,15.7657142857,1.9814285714,22.5333333333,31.4266666667,24.2,35.8266666667,20.39,35.2666666667,13.8,748.5,51,7,40,3.7,7.8632632154,7.8632632154 -150,0,22.5666666667,43.7633333333,21.79,41.3266666667,22.7,39.6633333333,20.89,36.03,20.2,46.0771428571,15.696,1.88,22.5,31.26,24.2,35.7,20.39,34.8,13.6666666667,748.4666666667,51.1666666667,6.8333333333,40,3.65,46.885533724,46.885533724 -110,0,22.6,42.96,21.7,41.0266666667,22.7,39.79,20.89,36,20.16,45.98,15.4685714286,1.9714285714,22.4266666667,31.1333333333,24.26,35.76,20.39,34.3333333333,13.5333333333,748.4333333333,51.3333333333,6.6666666667,40,3.6,11.4586656564,11.4586656564 -100,0,22.6,42.5,21.7,40.6933333333,22.7,39.73,20.89,35.9333333333,20.2,45.8685714286,15.3,1.33,22.39,31.1,24.29,35.7233333333,20.39,34.0666666667,13.4,748.4,51.5,6.5,40,3.55,45.4126454541,45.4126454541 -100,0,22.55,42.05,21.6666666667,40.2966666667,22.7,39.6633333333,20.89,35.8633333333,20.2,45.656,15.1928571429,1.4528571429,22.39,31.1,24.29,35.53,20.29,33.7233333333,13.2666666667,748.3666666667,51.6666666667,6.3333333333,40,3.5,43.9074308611,43.9074308611 -90,0,22.5333333333,41.6333333333,21.6,39.9633333333,22.7,39.53,20.89,35.79,20.1857142857,45.4557142857,15.04,1.7,22.29,31.23,24.29,35.5,20.29,33.53,13.1333333333,748.3333333333,51.8333333333,6.1666666667,40,3.45,3.7765192334,3.7765192334 -100,0,22.6,41.3,21.5,39.645,22.7,39.43,20.89,35.79,20.16,45.316,14.6325,1.86,22.29,31.29,24.29,35.5,20.29,33.3333333333,13,748.3,52,6,40,3.4,30.9682763764,30.9682763764 -170,0,22.5,40.9666666667,21.39,39.4,22.7,39.23,20.8233333333,35.73,20.1714285714,45.1214285714,14.2942857143,2.35,22.29,31.29,24.26,35.4666666667,20.23,33.1266666667,13.05,748.3,51.6666666667,6,40,3.3333333333,31.8672393449,31.8672393449 -250,10,22.5,40.7666666667,21.3233333333,39.3266666667,22.6666666667,39.0266666667,20.79,35.59,20.14,44.96,14.016,3.2,22.29,31.29,24.2,35.4,20.2,32.9666666667,13.1,748.3,51.3333333333,6,40,3.2666666667,44.8122671456,44.8122671456 -410,0,22.5,40.43,21.26,39.1633333333,22.6666666667,38.9,20.79,35.59,20.1142857143,44.7928571429,13.7371428571,3.7414285714,22.2,31.3233333333,24.2,35.4,20.2,32.8266666667,13.15,748.3,51,6,40,3.2,20.7864647033,20.7864647033 -460,10,22.5,40.8966666667,21.2,39.3633333333,22.6,38.76,20.79,35.59,20.1,44.678,13.518,4.514,22.2,31.53,24.15,35.4,20.2,32.79,13.2,748.3,50.6666666667,6,40,3.1333333333,9.0170930489,9.0170930489 -340,10,22.6,42.39,21.1333333333,40.36,22.6666666667,38.8333333333,20.79,35.6266666667,20.1,44.59,13.2685714286,7.4257142857,22.2,31.5,24.2,35.3266666667,20.1333333333,32.73,13.25,748.3,50.3333333333,6,40,3.0666666667,8.0720798462,8.0720798462 -110,0,22.7266666667,43.7233333333,21.1333333333,41.7666666667,22.7,38.9333333333,20.79,35.76,20.1,44.736,12.614,11.59,22.1333333333,31.5666666667,24.0666666667,34.99,20.0666666667,32.86,13.3,748.3,50,6,40,3,8.5252489429,8.5252489429 -120,10,22.79,43.1933333333,21.1666666667,42.53,22.7,39.1333333333,20.79,35.9,20.1,44.91,12.2914285714,11.7514285714,22.1,31.65,24,34.8633333333,20,33.1333333333,13.05,748.3833333333,51.3333333333,5.8333333333,40,3.1333333333,30.0004036049,30.0004036049 -130,10,22.79,42.8,21.1,42.53,22.73,39.23,20.79,35.9666666667,20.1,45.076,12.094,13.26,22,31.6333333333,24,35.03,20,33.4333333333,12.8,748.4666666667,52.6666666667,5.6666666667,40,3.2666666667,18.558062159,18.558062159 -110,10,22.79,42.5333333333,21.0666666667,42.4666666667,22.79,39.3633333333,20.7,36.1566666667,20.1,45.2,11.7214285714,17.0428571429,22,31.76,23.9266666667,35.3633333333,20,33.6333333333,12.55,748.55,54,5.5,40,3.4,18.0995483883,18.0995483883 -80,10,22.79,42.0666666667,21,42.3266666667,22.79,39.4,20.7,36.3633333333,20.1,45.2,11.256,21.876,21.9633333333,32.5,23.9633333333,36.1933333333,19.89,34.1666666667,12.3,748.6333333333,55.3333333333,5.3333333333,40,3.5333333333,48.3738734853,48.3738734853 -90,10,22.79,41.7233333333,20.9633333333,42.53,22.79,39.4666666667,20.7,36.5666666667,20.1,45.2514285714,10.8971428571,27.4385714286,21.89,32.8333333333,23.89,36.4666666667,19.89,34.6933333333,12.05,748.7166666667,56.6666666667,5.1666666667,40,3.6666666667,34.9475496449,34.9475496449 -80,10,22.73,41.59,20.89,42.59,22.79,39.5,20.7,36.8333333333,20.12,45.29,10.576,32.896,21.89,33.1566666667,23.76,36.5666666667,19.89,35.245,11.8,748.8,58,5,40,3.8,23.7965449458,23.7965449458 -90,0,22.7,41.5,20.89,42.73,22.79,39.53,20.7,37.03,20.125,45.30375,10.2214285714,35.7285714286,21.89,33.43,23.7,36.76,19.89,35.8,11.45,748.9666666667,62,5,40,4.3,17.2233631369,17.2233631369 -90,10,22.7,41.4333333333,20.89,42.8633333333,22.79,39.59,20.7,37.2233333333,20.1,45.4,10,38.52,21.89,33.6566666667,23.6666666667,36.9,19.89,36.1333333333,11.1,749.1333333333,66,5,40,4.8,14.7492554854,14.7492554854 -90,10,22.7,41.5,20.79,42.9333333333,22.79,39.59,20.7,37.4333333333,20.1,45.5,9.8385714286,39.6685714286,21.8233333333,33.79,23.6,36.9666666667,19.9633333333,36.4633333333,10.75,749.3,70,5,40,5.3,11.6092796903,11.6092796903 -90,10,22.7,41.5,20.73,43.06,22.79,39.59,20.7,37.56,20.1,45.5514285714,9.672,41.476,21.79,34.03,23.5666666667,37.1266666667,19.9633333333,36.6633333333,10.4,749.4666666667,74,5,40,5.8,8.6558436044,8.6558436044 -90,10,22.7,41.5,20.7,43.23,22.79,39.5,20.7,37.8266666667,20.1,45.59,9.54,42.354,21.79,34.1633333333,23.5,37.26,19.9633333333,36.9633333333,10.05,749.6333333333,78,5,40,6.3,24.2724157637,24.2724157637 -80,0,22.7,41.5,20.7,43.3633333333,22.79,39.5,20.7,37.9666666667,20.1,45.6816666667,9.434,44.052,21.76,34.4,23.4633333333,37.4,19.89,37.1633333333,9.7,749.8,82,5,40,6.8,42.9726840346,42.9726840346 -80,10,22.7,41.5,20.65,43.45,22.79,39.5,20.6666666667,38.09,20.1,45.7,9.3257142857,45.65,21.7,34.4666666667,23.39,37.4666666667,19.9266666667,37.3266666667,9.5166666667,749.8333333333,83.6666666667,4.6666666667,37.3333333333,6.9,20.8995736553,20.8995736553 -90,10,22.6,41.5,20.6,43.59,22.79,39.5,20.6,38.09,20.1,45.79,9.234,47.176,21.7,34.6266666667,23.29,37.59,20,37.4666666667,9.3333333333,749.8666666667,85.3333333333,4.3333333333,34.6666666667,7,13.3063988527,13.3063988527 -80,10,22.6,41.5,20.5333333333,43.6633333333,22.76,39.53,20.6,38.2,20.1,45.79,9.14,47.17,21.7,34.7,23.29,37.6633333333,19.9633333333,37.59,9.15,749.9,87,4,32,7.1,8.0704801134,8.0704801134 -80,0,22.6,41.5,20.5,43.7,22.7,39.59,20.6,38.29,20.1,45.79,8.96,46.374,21.6,34.59,23.2,37.6266666667,19.89,37.6633333333,8.9666666667,749.9333333333,88.6666666667,3.6666666667,29.3333333333,7.2,20.0493304874,20.0493304874 -80,10,22.6,41.56,20.5,43.6266666667,22.79,39.59,20.6,38.29,20.1,45.8685714286,8.75875,46.59625,21.6,34.59,23.2,37.9,19.89,37.7,8.7833333333,749.9666666667,90.3333333333,3.3333333333,26.6666666667,7.3,13.1179298391,13.1179298391 -50,0,22.6,41.79,20.4633333333,43.6633333333,22.79,39.59,20.6,38.4,20.2,46.236,8.5971428571,47.5828571429,21.7,34.8266666667,23.2,38.44,19.9633333333,37.8333333333,8.6,750,92,3,24,7.4,15.1380874915,15.1380874915 -60,0,22.6,41.73,20.39,43.6633333333,22.79,39.59,20.6,38.4,20.1142857143,46.41,8.456,48.954,21.7,35.0266666667,23.2,38.9633333333,20,38.1266666667,8.5166666667,750.0333333333,92,3,24,7.3,12.4173426651,12.4173426651 -50,0,22.5,41.6633333333,20.29,43.73,22.79,39.59,20.6,38.4,20.1,46.518,8.2971428571,50.88,21.7,35.36,23.2,39.1633333333,20,38.26,8.4333333333,750.0666666667,92,3,24,7.2,17.9048767313,17.9048767313 -40,0,22.5,41.59,20.23,43.73,22.89,39.7,20.6,38.4666666667,20.1,46.6214285714,8.152,51.974,21.7675,35.6725,23.1666666667,39.36,20,38.5666666667,8.35,750.1,92,3,24,7.1,34.3800444738,34.3800444738 -30,0,22.4633333333,41.4666666667,20.1666666667,43.79,22.8233333333,39.6266666667,20.6,38.4,20.1,46.736,7.9714285714,52.5228571429,21.79,35.79,23.1666666667,39.56,20,38.76,8.2666666667,750.1333333333,92,3,24,7,25.5843600724,25.5843600724 -40,0,22.4633333333,41.3266666667,20.1,43.79,22.8566666667,39.6633333333,20.6,38.4666666667,20.1,46.79,7.86,53.236,21.76,35.79,23.2,39.736,20,38.9633333333,8.1833333333,750.1666666667,92,3,24,6.9,45.5408060108,45.5408060108 -50,0,22.39,41.2,20,43.7,22.79,39.59,20.5666666667,38.5,20.1,46.79,7.7633333333,53.6333333333,21.7,35.79,23.1,39.94,20,39.1633333333,8.1,750.2,92,3,24,6.8,40.7823343645,40.7823343645 -50,0,22.3233333333,41.1266666667,20,43.7,22.79,39.7,20.5666666667,38.5,20.1,46.79,7.69,54.16,21.7,35.9333333333,23.1,40.2228571429,20,39.4,7.9333333333,750.2833333333,92.1666666667,2.8333333333,26.6666666667,6.6666666667,21.6382322484,21.6382322484 -50,0,22.29,41.06,19.89,43.79,22.79,39.7,20.5666666667,38.5,20,46.7,7.59,54.5966666667,21.7,36.06,23.1,40.312,20.0666666667,39.4,7.7666666667,750.3666666667,92.3333333333,2.6666666667,29.3333333333,6.5333333333,7.5448481832,7.5448481832 -60,0,22.29,41,19.8233333333,43.79,22.79,39.7,20.5,38.5,20.0857142857,46.7771428571,7.53,54.93,21.7,36.2,23.0285714286,40.3214285714,20.0666666667,39.5266666667,7.6,750.45,92.5,2.5,32,6.4,37.1763000265,37.1763000265 -60,0,22.2,40.9,19.79,43.79,22.79,39.7,20.5666666667,38.53,20.04,46.736,7.5,55.3266666667,21.7,36.3333333333,23,40.29,20.1,39.8266666667,7.4333333333,750.5333333333,92.6666666667,2.3333333333,34.6666666667,6.2666666667,42.4132251879,42.4132251879 -60,0,22.2,40.9,19.73,43.79,22.79,39.7,20.5,38.59,20.0285714286,46.7257142857,7.4333333333,55.4,21.7,36.53,22.9057142857,40.3671428571,20.1,39.9666666667,7.2666666667,750.6166666667,92.8333333333,2.1666666667,37.3333333333,6.1333333333,21.2686984567,21.2686984567 -60,0,22.2,40.79,19.7,43.9,22.8233333333,39.7,20.5,38.59,20.04,46.736,7.3666666667,55.73,21.7,36.59,22.89,40.518,20.1,40.23,7.1,750.7,93,2,40,6,16.0332266358,16.0332266358 -40,0,22.1333333333,40.79,19.7,43.9666666667,22.89,39.7,20.5,38.59,20.0142857143,46.7128571429,7.2266666667,55.8633333333,21.7,36.73,22.89,40.6685714286,20.1,40.43,7.0166666667,750.7833333333,93.6666666667,1.8333333333,38.1666666667,6.0166666667,3.5573484842,3.5573484842 -60,0,22.1,40.745,19.6,43.9,22.8233333333,39.6266666667,20.5,38.59,20,46.7,7.06,56.23,21.7,36.79,22.89,40.94,20.1,40.6566666667,6.9333333333,750.8666666667,94.3333333333,1.6666666667,36.3333333333,6.0333333333,36.5649629734,36.5649629734 -40,0,22.0666666667,40.76,19.5,44,22.89,39.7,20.5,38.59,20,46.7,7,56.49,21.7,36.9333333333,22.8328571429,41.0957142857,20.1,40.93,6.85,750.95,95,1.5,34.5,6.05,13.7866520323,13.7866520323 -50,0,22,40.6266666667,19.5,44.06,22.89,39.7,20.39,38.59,20,46.6175,7,56.89,21.7,37.1333333333,22.79,41.514,20.1,41.23,6.7666666667,751.0333333333,95.6666666667,1.3333333333,32.6666666667,6.0666666667,49.4751907769,49.4751907769 -50,0,22,40.59,19.4633333333,44.06,22.89,39.7,20.4175,38.6175,20,46.656,7,57.09,21.7,37.2,22.79,41.59,20.1,41.43,6.6833333333,751.1166666667,96.3333333333,1.1666666667,30.8333333333,6.0833333333,45.7543111523,45.7543111523 -50,0,21.9266666667,40.59,19.39,44.06,22.8566666667,39.6633333333,20.4266666667,38.6266666667,20,46.6371428571,6.695,56.395,21.7,37.26,22.79,41.59,20.1333333333,41.6266666667,6.6,751.2,97,1,29,6.1,20.0094834552,20.0094834552 -50,0,21.89,40.59,19.39,44.09,22.79,39.59,20.39,38.59,20,46.7,6.23,55.5666666667,21.7,37.4333333333,22.79,41.59,20.1333333333,41.76,6.5833333333,751.2666666667,96.8333333333,1.1666666667,29,6.0666666667,19.7998608695,19.7998608695 -50,0,21.89,40.59,19.3233333333,44.09,22.8566666667,39.6633333333,20.39,38.59,20,46.7,6.03,55.9,21.7,37.5,22.772,41.59,20.1666666667,41.8266666667,6.5666666667,751.3333333333,96.6666666667,1.3333333333,29,6.0333333333,38.6137646507,38.6137646507 -60,0,21.8566666667,40.59,19.29,44.1266666667,22.8566666667,39.6633333333,20.39,38.59,20,46.656,5.83,56.26,21.7,37.53,22.7385714286,41.4971428571,20.1666666667,41.9666666667,6.55,751.4,96.5,1.5,29,6,48.4631398111,48.4631398111 -60,0,21.79,40.59,19.23,44.1266666667,22.89,39.7,20.39,38.59,20,46.6842857143,5.5633333333,55.7933333333,21.7,37.6633333333,22.7,41.4,20.1333333333,42.23,6.5333333333,751.4666666667,96.3333333333,1.6666666667,29,5.9666666667,47.1706965007,47.1706965007 -60,0,21.79,40.59,19.2,44.09,22.89,39.7,20.39,38.59,20,46.7,5.4,56.2266666667,21.7,37.59,22.7,41.3371428571,20.2,42.43,6.5166666667,751.5333333333,96.1666666667,1.8333333333,29,5.9333333333,6.7502825521,6.7502825521 -50,0,21.73,40.59,19.2,44.1633333333,22.89,39.59,20.39,38.59,20,46.6528571429,5.3333333333,56.6333333333,21.7,37.6266666667,22.7,41.272,20.2,42.6566666667,6.5,751.6,96,2,29,5.9,30.5439053685,30.5439053685 -50,0,21.7,40.59,19.1,44.2,22.89,39.59,20.39,38.59,19.934,46.7,5.1266666667,55.99,21.7,37.6266666667,22.6714285714,41.1428571429,20.2,42.79,6.4,751.6166666667,96.1666666667,2,28.1666666667,5.8166666667,3.5150908749,3.5150908749 -50,0,21.7,40.59,19.1,44.26,22.89,39.53,20.39,38.59,19.9528571429,46.7,4.9333333333,55.93,21.7,37.53,22.6,40.9,20.2,42.95,6.3,751.6333333333,96.3333333333,2,27.3333333333,5.7333333333,2.1133344038,2.1133344038 -40,0,21.7,40.59,19,44.2,22.8233333333,39.53,20.3566666667,38.59,19.934,46.678,4.8,56.4933333333,21.7,37.59,22.6,40.79,20.2,43.1266666667,6.2,751.65,96.5,2,26.5,5.65,20.9987177281,20.9987177281 -60,0,21.7,40.53,19,44.26,22.84,39.45,20.29,38.59,19.9685714286,46.6685714286,4.8,57.4933333333,21.7,37.7,22.6,40.7771428571,20.2,43.2,6.1,751.6666666667,96.6666666667,2,25.6666666667,5.5666666667,33.1563755288,33.1563755288 -60,0,21.7,40.5,18.89,44.29,22.79,39.4,20.29,38.59,20,46.59,4.9,58.23,21.7,37.7,22.58,40.7,20.2,43.36,6,751.6833333333,96.8333333333,2,24.8333333333,5.4833333333,25.6176220719,25.6176220719 -60,0,21.7,40.5,18.89,44.3633333333,22.8566666667,39.4666666667,20.29,38.53,19.9057142857,46.6685714286,4.9,58.3633333333,21.7,37.79,22.5,40.7,20.2,43.5,5.9,751.7,97,2,24,5.4,4.9709243001,4.9709243001 -60,0,21.6666666667,40.4666666667,18.8566666667,44.3633333333,22.8566666667,39.4666666667,20.29,38.5,19.912,46.656,4.8666666667,58.2333333333,21.7,37.79,22.5,40.656,20.2,43.59,5.8333333333,751.7666666667,97,2,24.1666666667,5.3333333333,11.9967722916,11.9967722916 -50,0,21.6,40.4,18.79,44.3633333333,22.8566666667,39.4,20.29,38.5,19.9214285714,46.6528571429,4.7266666667,57.5666666667,21.7,37.76,22.5,40.6057142857,20.2,43.6633333333,5.7666666667,751.8333333333,97,2,24.3333333333,5.2666666667,32.8588734264,32.8588734264 -50,0,21.6,40.4,18.79,44.4,22.79,39.3633333333,20.26,38.4666666667,19.89,46.59,4.33,56.9,21.7,37.7,22.456,40.656,20.2,43.73,5.7,751.9,97,2,24.5,5.2,39.6084829699,39.6084829699 -50,0,21.6,40.3633333333,18.7675,44.4,22.79,39.29,20.26,38.4666666667,19.9685714286,46.59,4.0675,56.445,21.7,37.56,22.4214285714,40.6214285714,20.2,43.79,5.6333333333,751.9666666667,97,2,24.6666666667,5.1333333333,14.7864107974,14.7864107974 -50,0,21.6,40.29,18.7,44.4666666667,22.79,39.29,20.29,38.5,19.89,46.59,3.6933333333,55.4333333333,21.7,37.5,22.39,40.59,20.2,43.9,5.5666666667,752.0333333333,97,2,24.8333333333,5.0666666667,46.5212778188,46.5212778188 -50,0,21.5,40.29,18.7,44.4333333333,22.79,39.29,20.2,38.3633333333,19.9371428571,46.59,3.4666666667,55.06,21.6,37.5,22.39,40.4557142857,20.2,43.9,5.5,752.1,97,2,25,5,16.3413018454,16.3413018454 -60,0,21.5,40.29,18.6333333333,44.4333333333,22.79,39.26,20.26,38.3633333333,19.89,46.59,3.2666666667,54.86,21.6,37.5,22.39,40.4,20.2,43.9,5.3166666667,752.1,96.8333333333,2,24.3333333333,4.8,38.5914137471,38.5914137471 -40,0,21.5,40.26,18.6,44.4,22.79,39.2,20.2,38.29,19.89,46.59,3.06,55.0266666667,21.6666666667,37.59,22.39,40.2957142857,20.2,43.9,5.1333333333,752.1,96.6666666667,2,23.6666666667,4.6,3.3016931266,3.3016931266 -40,0,21.5,40.2,18.5333333333,44.4,22.79,39.2,20.2,38.29,19.89,46.59,2.9333333333,55.0266666667,21.6,37.59,22.39,40.156,20.2,44,4.95,752.1,96.5,2,23,4.4,9.7007905366,9.7007905366 -30,0,21.4266666667,40.03,18.5,44.4,22.79,39.2,20.2,38.2,19.89,46.59,2.7233333333,54.8633333333,21.6,37.56,22.3042857143,39.9557142857,20.2,44,4.7666666667,752.1,96.3333333333,2,22.3333333333,4.2,8.2301508053,8.2301508053 -30,0,21.4266666667,40.03,18.5,44.4,22.7,39.09,20.2,38.1266666667,19.89,46.554,2.53,54.7233333333,21.6,37.4333333333,22.29,39.878,20.2,44.03,4.5833333333,752.1,96.1666666667,2,21.6666666667,4,49.9365586089,49.9365586089 -40,0,21.39,39.9666666667,18.4633333333,44.3633333333,22.7,39.09,20.2,38.1633333333,19.89,46.5225,2.4,54.89,21.6,37.5,22.2642857143,39.6214285714,20.2,44.09,4.4,752.1,96,2,21,3.8,26.9811171689,26.9811171689 -60,0,21.39,39.9,18.39,44.29,22.6,38.9333333333,20.1333333333,38.09,19.89,46.5,2.3266666667,54.7566666667,21.6,37.59,22.29,39.356,20.2,44.2,4.3333333333,752.1166666667,96.1666666667,1.8333333333,21,3.75,41.8088071281,41.8088071281 -50,0,21.39,39.8633333333,18.29,44.29,22.5333333333,38.9333333333,20.1,38,19.89,46.5,2.1633333333,54.6566666667,21.6,37.53,22.2128571429,39.0985714286,20.2,44.26,4.2666666667,752.1333333333,96.3333333333,1.6666666667,21,3.7,8.4235382034,8.4235382034 -50,0,21.39,39.79,18.29,44.29,22.5,38.9666666667,20.1,38,19.89,46.5,2.03,54.73,21.6,37.53,22.2,38.918,20.2,44.345,4.2,752.15,96.5,1.5,21,3.65,32.3381407652,32.3381407652 -60,0,21.29,39.76,18.2,44.23,22.5,38.9,20.1,38,19.89,46.5,1.8333333333,54.1233333333,21.6,37.59,22.1714285714,38.7642857143,20.2,44.4,4.1333333333,752.1666666667,96.6666666667,1.3333333333,21,3.6,49.1334847175,49.1334847175 -50,0,21.29,39.7,18.2,44.29,22.39,38.79,20.1,38,19.8471428571,46.41,1.6333333333,53.79,21.6,37.5,22.1,38.554,20.2,44.4666666667,4.0666666667,752.1833333333,96.8333333333,1.1666666667,21,3.55,46.4333794778,46.4333794778 -60,0,21.29,39.7,18.1666666667,44.29,22.39,38.76,20.1,37.9,19.89,46.48,1.4266666667,54.0333333333,21.6,37.56,22.1,38.38,20.2,44.5,4,752.2,97,1,21,3.5,5.9407418361,5.9407418361 -50,0,21.29,39.6266666667,18.1,44.29,22.39,38.76,20.1,37.9,19.8471428571,46.3528571429,1.5,54.6266666667,21.6,37.59,22.04,38.236,20.2,44.5,3.6833333333,752.25,96.6666666667,1,18,3.15,49.1996950353,49.1996950353 -60,0,21.29,39.59,18.1,44.29,22.5,38.9,20.1,37.9,19.79,46.29,1.445,54.94,21.6,37.4633333333,22,38.2642857143,20.2,44.5,3.3666666667,752.3,96.3333333333,1,15,2.8,49.4725610362,49.4725610362 -50,0,21.23,39.53,18.0333333333,44.23,22.5,38.9,20.1,37.9,19.8328571429,46.3985714286,1.29,54.9333333333,21.5,37.3633333333,22,38.29,20.2,44.5,3.05,752.35,96,1,12,2.45,13.3125617285,13.3125617285 -50,0,21.2,39.4666666667,18,44.2,22.5,38.9,20.1,37.79,19.85,46.396,1.23,55.2666666667,21.5,37.3633333333,22,38.3057142857,20.2,44.4666666667,2.7333333333,752.4,95.6666666667,1,9,2.1,33.7484104792,33.7484104792 -50,0,21.2,39.4,18,44.2,22.5,38.9666666667,20.1,37.79,19.8185714286,46.3214285714,1.3233333333,55.89,21.5,37.4333333333,21.9175,38.475,20.2,44.4,2.4166666667,752.45,95.3333333333,1,6,1.75,30.8919802075,30.8919802075 -40,0,21.2,39.4,18,44.2,22.5,39,20,37.59,19.79,46.29,1.4633333333,56.3633333333,21.5,37.5,21.89,38.5,20.2,44.4,2.1,752.5,95,1,3,1.4,30.5500642979,30.5500642979 -60,0,21.2,39.4,18,44.1633333333,22.5,39,20,37.59,19.79,46.29,1.6633333333,57.33,21.5,37.4666666667,21.89,38.5957142857,20.2,44.4,2.15,752.6,95.6666666667,1,9.8333333333,1.55,25.8779753349,25.8779753349 -60,0,21.2,39.4,18,44.09,22.5,39.06,20,37.59,19.79,46.236,1.93,57.7966666667,21.5,37.4,21.89,38.79,20.2,44.4,2.2,752.7,96.3333333333,1,16.6666666667,1.7,38.29174852,38.29174852 -50,0,21.1,39.3633333333,17.9266666667,44.09,22.5666666667,39.06,20,37.59,19.79,46.2,2.1566666667,58.2266666667,21.5,37.4,21.8328571429,38.8057142857,20.2,44.3266666667,2.25,752.8,97,1,23.5,1.85,2.106540394,2.106540394 -70,0,21.1,39.29,18,44.09,22.5333333333,39.09,20,37.59,19.79,46.2,2.43,58.8933333333,21.5,37.4666666667,21.79,38.96,20.26,44.3633333333,2.3,752.9,97.6666666667,1,30.3333333333,2,43.4695221833,43.4695221833 -60,0,21.1,39.4933333333,18,44.3,22.6,39.03,20,37.59,19.79,46.1842857143,2.9266666667,59.6966666667,21.5,37.53,21.79,39.0957142857,20.26,44.29,2.35,753,98.3333333333,1,37.1666666667,2.15,28.5223138402,28.5223138402 -90,0,21.1,39.9666666667,18,44.7666666667,22.5,38.5266666667,20,37.59,19.79,46.09,3.46,60.4233333333,21.5,37.7966666667,21.79,39.29,20.29,44.4,2.4,753.1,99,1,44,2.3,31.6612750175,31.6612750175 -90,10,21.2,40.4333333333,18.1633333333,45.4333333333,22.4266666667,38.3266666667,20,37.6266666667,19.79,46.1371428571,4.3566666667,61.2566666667,21.5,38.1566666667,21.79,39.4928571429,20.3566666667,44.3266666667,2.9333333333,753.1333333333,98.5,1.1666666667,40.6666666667,2.75,43.0556353065,43.0556353065 -50,0,21.2,40.6333333333,18.43,45.5,22.39,38.29,20,37.76,19.79,46.236,4.9566666667,61.7233333333,21.5,38.2225,21.79,39.612,20.6666666667,43.9233333333,3.4666666667,753.1666666667,98,1.3333333333,37.3333333333,3.2,1.1660241405,1.1660241405 -50,0,21.2,40.9333333333,18.6,45.53,22.4633333333,38.43,20,37.9,19.79,46.3528571429,5.6333333333,62.1566666667,21.5,38.1266666667,21.79,39.7,21.7333333333,42.8633333333,4,753.2,97.5,1.5,34,3.65,15.3971264488,15.3971264488 -190,0,21.26,41.1933333333,18.6666666667,45.59,22.5,38.4,20.0666666667,38.0266666667,19.79,46.46,6.1666666667,62.43,21.5,37.9,21.79,39.976,22.86,40.3233333333,4.5333333333,753.2333333333,97,1.6666666667,30.6666666667,4.1,47.6873631938,47.6873631938 -260,0,21.29,41.3266666667,18.8233333333,45.5266666667,22.5,38.4,20.2,38.33,19.79,46.5571428571,6.66,62.73,21.5,37.6933333333,21.7642857143,40.1914285714,23.3475,39.2475,5.0666666667,753.2666666667,96.5,1.8333333333,27.3333333333,4.55,26.7894476769,26.7894476769 -140,10,21.29,41.3266666667,19.03,45.1333333333,22.5,38.5,20.3266666667,38.7966666667,20.74,76.416,6.9333333333,62.8633333333,21.39,37.2233333333,21.754,40.134,22.99,38.3266666667,5.6,753.3,96,2,24,5,12.0037976885,12.0037976885 -70,0,21.29,41.4333333333,19.5933333333,44.36,22.5,38.425,20.46,39.23,21.1857142857,78.4114285714,7.545,63.19,21.39,37.03,21.7642857143,40.0357142857,22.26,38.6333333333,5.95,753.35,93,2,26.6666666667,4.85,38.2906371378,38.2906371378 -70,0,21.3566666667,41.6933333333,20.4,43.16,22.5,38.4,20.6,39.29,21.02,72.87,7.9966666667,63.29,21.39,37.7666666667,21.7,39.856,21.86,39.0266666667,6.3,753.4,90,2,29.3333333333,4.7,14.4265627023,14.4265627023 -70,0,21.3566666667,41.2233333333,21.2333333333,41.6966666667,22.5,38.4,20.73,39.29,20.812,69.44,8.3966666667,63.29,21.39,37.9,21.6857142857,39.5685714286,21.5666666667,39.5,6.65,753.45,87,2,32,4.55,48.6811213894,48.6811213894 -70,0,21.3566666667,41.03,21.6933333333,40.8233333333,22.4266666667,38.4,20.8566666667,39.29,20.6285714286,67.1357142857,8.6966666667,60.59,21.39,38.03,21.6,39.25,21.36,39.8333333333,7,753.5,84,2,34.6666666667,4.4,42.8587098024,42.8587098024 -80,0,21.39,40.76,22.1966666667,39.8,22.39,38.4,21,39.1633333333,20.56,63.314,9.09,58.39,21.4633333333,38.09,21.6,38.9971428571,21.26,39.9633333333,7.35,753.55,81,2,37.3333333333,4.25,23.7770998385,23.7770998385 -70,0,21.39,40.595,22.595,38.9975,22.39,38.4,21.0666666667,39.09,20.5,58.2385714286,9.6666666667,52.3633333333,21.5,38.06,21.56,38.754,21.1333333333,40.2233333333,7.7,753.6,78,2,40,4.1,5.055964482,5.055964482 -80,0,21.4633333333,40.5,22.8566666667,38.39,22.39,38.4,21.245,39,20.434,54.234,10,43.8233333333,21.5,38,21.5,38.5857142857,21.0666666667,40.5,8.0166666667,753.55,76.8333333333,2.1666666667,40,4.1833333333,46.7880564276,46.7880564276 -100,0,21.5,40.5,23.1333333333,37.9,22.39,38.4,21.3233333333,38.8633333333,20.4371428571,51.8971428571,10.46,39.03,21.5,38.1233333333,21.5,38.518,21,40.56,8.3333333333,753.5,75.6666666667,2.3333333333,40,4.2666666667,45.715975645,45.715975645 -100,10,21.5,40.7666666667,23.26,37.4266666667,22.39,38.4,21.39,38.5966666667,21.134,76.72,10.7933333333,35.23,21.5666666667,37.79,21.5,38.6214285714,21,40.4,8.65,753.45,74.5,2.5,40,4.35,41.1715177586,41.1715177586 -350,0,21.6,40.8333333333,23.4266666667,37.0266666667,22.39,38.4,21.4266666667,38.5666666667,21.8428571429,83.9942857143,11.2933333333,33.3333333333,21.6,37.4,21.39,38.476,20.9266666667,40.4666666667,8.9666666667,753.4,73.3333333333,2.6666666667,40,4.4333333333,32.8498223564,32.8498223564 -400,0,21.6,40.5666666667,23.5,36.7666666667,22.5,38.56,21.5,38.7,22.058,88.232,11.5666666667,30,21.6,37.0666666667,21.39,38.5385714286,20.89,40.53,9.2833333333,753.35,72.1666666667,2.8333333333,40,4.5166666667,1.7219344038,1.7219344038 -60,0,21.7,40.6933333333,23.6333333333,36.59,22.5,38.5,21.5333333333,38.6633333333,21.7928571429,85.1285714286,11.7566666667,28.2233333333,21.6,36.7966666667,21.456,38.536,20.89,40.7966666667,9.6,753.3,71,3,40,4.6,12.1113554225,12.1113554225 -50,0,21.7,40.8266666667,23.7,36.4633333333,22.5666666667,38.59,21.6,38.4633333333,21.5,81.154,12.03,26.1566666667,21.6,36.4633333333,21.5,38.4285714286,20.89,41,9.8666666667,753.2833333333,69.5,3.1666666667,40,4.5333333333,5.6930803228,5.6930803228 -60,0,21.73,40.5266666667,23.7,36.2233333333,22.5,38.59,21.7,38.1633333333,21.3357142857,76.8971428571,12.33,27.0333333333,21.6,35.99,21.5,38.2675,20.89,41,10.1333333333,753.2666666667,68,3.3333333333,40,4.4666666667,34.9054611404,34.9054611404 -60,0,21.79,40.3266666667,23.76,36.03,22.5,38.6266666667,21.76,38.03,21.2,72.656,12.4633333333,26.1,21.675,35.6725,21.54,38.054,20.79,40.9,10.4,753.25,66.5,3.5,40,4.4,18.9921273617,18.9921273617 -60,0,21.89,40.26,23.76,35.8633333333,22.5,38.7,21.79,37.8333333333,21.1285714286,69.2528571429,12.3233333333,25.9933333333,21.7,35.36,21.5714285714,37.9428571429,20.79,40.8266666667,10.6666666667,753.2333333333,65,3.6666666667,40,4.3333333333,25.8405163884,25.8405163884 -60,0,21.89,40.1266666667,23.7,35.73,22.5,38.7,21.79,37.6266666667,21,65.874,12.2633333333,25.8,21.7,35.0266666667,21.6,37.86,20.79,40.76,10.9333333333,753.2166666667,63.5,3.8333333333,40,4.2666666667,7.1128133452,7.1128133452 -60,10,21.89,39.93,23.7,35.6633333333,22.5,38.7,21.79,37.4666666667,20.9371428571,63.7985714286,12.5633333333,24.5933333333,21.7,34.7666666667,21.6,37.6685714286,20.79,40.6725,11.2,753.2,62,4,40,4.2,44.1851886921,44.1851886921 -60,0,21.9633333333,39.73,23.6333333333,35.53,22.6,38.7,21.8566666667,37.4666666667,20.87,62.09,12.895,22.825,21.8233333333,34.43,21.7,37.554,20.79,40.59,11.3333333333,753.1166666667,62,4,40,4.3166666667,31.3098344603,31.3098344603 -60,0,22,39.6333333333,23.5666666667,35.4,22.55,38.7,21.79,37.26,20.79,60.6685714286,12.9633333333,21.1,21.89,34.23,21.7771428571,37.4271428571,20.79,40.5,11.4666666667,753.0333333333,62,4,40,4.4333333333,21.5148091316,21.5148091316 -50,0,22.0666666667,39.4333333333,23.5,35.3266666667,22.6,38.7,21.8566666667,37.26,20.79,59.32,13.0633333333,21.1266666667,21.89,33.9666666667,21.79,37.272,20.79,40.4333333333,11.6,752.95,62,4,40,4.55,22.6873910986,22.6873910986 -60,0,22.1,39.26,23.39,35.26,22.6,38.7,21.89,37.26,20.7514285714,58.5385714286,13.2633333333,20.3933333333,21.9633333333,33.7666666667,21.8328571429,37.2385714286,20.79,40.3633333333,11.7333333333,752.8666666667,62,4,40,4.6666666667,3.7684070412,3.7684070412 -50,0,22.1,39.1266666667,23.39,35.2,22.6,38.7,21.89,37.1266666667,20.736,57.68,13.5633333333,18.0333333333,22,33.56,21.89,37.156,20.73,40.23,11.8666666667,752.7833333333,62,4,40,4.7833333333,30.2209340152,30.2209340152 -60,0,22.2,38.9666666667,23.39,35.2,22.6,38.7,21.89,37.09,20.6714285714,56.94,13.8233333333,15.7,22.0666666667,33.4333333333,21.9671428571,37.0514285714,20.79,40.09,12,752.7,62,4,40,4.9,36.9700209703,36.9700209703 -60,0,22.2,38.8266666667,23.39,35.2,22.6,38.7,21.89,37.03,20.7,56.174,14.4666666667,12.2,22.1333333333,33.3333333333,22.1,37.016,20.79,40.09,12.15,752.6666666667,61.3333333333,4.1666666667,38.1666666667,4.8833333333,15.2464156621,15.2464156621 -60,0,22.29,38.745,23.39,35.2,22.5666666667,38.7,21.89,37.06,20.6428571429,55.4285714286,14.86,9.5933333333,22.26,33.1266666667,22.1971428571,36.8214285714,20.76,40,12.3,752.6333333333,60.6666666667,4.3333333333,36.3333333333,4.8666666667,5.7109054062,5.7109054062 -70,10,22.39,38.56,23.29,35.2,22.5,38.7,21.89,36.975,20.6,54.918,14.8,9.6933333333,22.39,32.93,22.29,36.7,20.76,39.9333333333,12.45,752.6,60,4.5,34.5,4.85,0.8421430713,0.8421430713 -60,0,22.4633333333,38.4333333333,23.23,35.2,22.6,38.7,21.89,36.9,20.6,54.7642857143,14.5266666667,8.9666666667,22.39,32.73,22.3471428571,36.6242857143,20.7,39.76,12.6,752.5666666667,59.3333333333,4.6666666667,32.6666666667,4.8333333333,46.5072016115,46.5072016115 -60,0,22.5,38.4,23.2,35.29,22.6,38.7,21.89,36.79,20.5625,54.30875,14.4633333333,9.6633333333,22.5,32.6333333333,22.456,36.536,20.76,39.7,12.75,752.5333333333,58.6666666667,4.8333333333,30.8333333333,4.8166666667,5.5103992345,5.5103992345 -60,0,22.5,38.3266666667,23.2,35.29,22.6,38.7,21.89,36.79,20.5,53.96,14.4633333333,9.7233333333,22.5666666667,32.4333333333,22.5,36.4285714286,20.73,39.7,12.9,752.5,58,5,29,4.8,6.4292132272,6.4292132272 -60,0,22.6,38.1633333333,23.2,35.29,22.6,38.7,21.9266666667,36.76,20.5,53.6785714286,15.0266666667,8.19,22.6333333333,32.29,22.6,36.29,20.73,39.7,12.8833333333,752.45,58.3333333333,5,30.8333333333,4.85,36.2122571445,36.2122571445 -50,0,22.6666666667,38.09,23.1333333333,35.29,22.6,38.6633333333,22,36.7,20.52,52.596,15.3,7.99,22.76,32.23,22.6985714286,36.2385714286,20.79,39.7,12.8666666667,752.4,58.6666666667,5,32.6666666667,4.9,3.7169114337,3.7169114337 -60,0,22.73,38.09,23.1,35.5,22.6,38.59,21.9633333333,36.7,20.6285714286,49.5542857143,15.46,7.5633333333,22.8233333333,32,22.81,36.178,20.79,39.7,12.85,752.35,59,5,34.5,4.95,39.2370871385,39.2370871385 -60,0,22.79,38.09,23.1,35.6333333333,22.6333333333,38.5,21.9633333333,36.7,20.7,47.5,15.66,7.43,22.89,31.9266666667,22.8614285714,36.0642857143,20.76,39.7,12.8333333333,752.3,59.3333333333,5,36.3333333333,5,0.6286885706,0.6286885706 -50,0,22.79,38.09,23.0666666667,35.79,22.7,38.5,22,36.7,20.7128571429,46.4371428571,15.96,7.0633333333,23.05,31.84,22.934,36,20.76,39.7,12.8166666667,752.25,59.6666666667,5,38.1666666667,5.05,44.8734916979,44.8734916979 -50,0,22.8566666667,38.1633333333,23.0666666667,35.8633333333,22.7,38.4,22,36.7,20.79,45.57,16.2933333333,6.53,23.1333333333,31.7,23.0571428571,35.8985714286,20.79,39.7,12.8,752.2,60,5,40,5.1,22.9648044915,22.9648044915 -40,10,22.89,38.2,23.1,36,22.7,38.3266666667,22,36.79,20.79,44.8971428571,16.5666666667,5.8333333333,23.26,31.6333333333,23.12,35.79,20.79,39.645,13.0666666667,752.1166666667,58.6666666667,4.8333333333,40,5.0333333333,44.2695107078,44.2695107078 -50,0,22.9633333333,38.1266666667,23.1,36.06,22.7,38.26,22,36.79,20.89,44.356,16.975,4.92,23.39,31.5,23.2257142857,35.7514285714,20.79,39.7,13.3333333333,752.0333333333,57.3333333333,4.6666666667,40,4.9666666667,47.1202413319,47.1202413319 -40,0,23,38.1266666667,23.0666666667,36.09,22.76,38.2,22.0666666667,36.8633333333,20.89,44.0842857143,16.9266666667,3.8,23.39,31.36,23.29,35.7,20.79,39.7,13.6,751.95,56,4.5,40,4.9,42.0829783776,42.0829783776 -60,0,23.0666666667,38.2,23,36.1633333333,22.7,38.145,22.0666666667,36.93,20.956,43.74,16.5666666667,5.4566666667,23.39,31.29,23.3042857143,35.7,20.79,39.6266666667,13.8666666667,751.8666666667,54.6666666667,4.3333333333,40,4.8333333333,49.0502087632,49.0502087632 -60,0,23.1,38.2,22.89,36.29,22.73,38.1633333333,22.1,36.9333333333,21,43.3971428571,16.6333333333,5.93,23.39,31.29,23.365,35.645,20.79,39.56,14.1333333333,751.7833333333,53.3333333333,4.1666666667,40,4.7666666667,5.3932355018,5.3932355018 -50,0,23.1,38.2,22.89,36.29,22.73,38.1633333333,22.1,37,21,43.156,16.7633333333,5.6566666667,23.4266666667,31.2,23.39,35.59,20.79,39.5,14.4,751.7,52,4,40,4.7,49.7978192288,49.7978192288 -60,0,23.1333333333,38.09,22.89,36.29,22.73,38.1633333333,22.1,36.9666666667,21.0571428571,42.8928571429,17.03,4.2566666667,23.5,31.2,23.4214285714,35.59,20.79,39.5,14.5,751.6166666667,52.8333333333,4.1666666667,40,4.9833333333,41.7752397479,41.7752397479 -50,0,23.2,38.03,22.89,36.29,22.79,38.09,22.1,36.9,21.1,42.75,17.23,3.9233333333,23.5,31.1,23.5,35.59,20.79,39.5,14.6,751.5333333333,53.6666666667,4.3333333333,40,5.2666666667,45.5993390642,45.5993390642 -70,0,23.2,38,22.8566666667,36.2233333333,22.79,38.09,22.1,37,21.1428571429,42.5642857143,17.43,3.0633333333,23.5666666667,31.0333333333,23.5,35.5385714286,20.79,39.5,14.7,751.45,54.5,4.5,40,5.55,5.1687480765,5.1687480765 -60,0,23.2,38,22.79,36.1175,22.79,38.09,22.1,36.975,21.2,42.356,17.7933333333,1.6666666667,23.5666666667,30.89,23.5,35.5,20.8566666667,39.5,14.8,751.3666666667,55.3333333333,4.6666666667,40,5.8333333333,26.5356290853,26.5356290853 -50,0,23.2,37.9333333333,22.73,36.2,22.79,38.06,22.1,36.9,21.2,42.1371428571,17.3933333333,1.4666666667,23.5,30.8233333333,23.5,35.4285714286,20.79,39.4,14.9,751.2833333333,56.1666666667,4.8333333333,40,6.1166666667,1.2189604109,1.2189604109 -70,0,23.2,37.8633333333,22.7,36.2,22.79,38,22.1,36.79,21.2,41.918,17.3233333333,1.4266666667,23.5,30.76,23.5,35.4,20.79,39.3266666667,15,751.2,57,5,40,6.4,19.164269988,19.164269988 -60,0,23.2,37.79,22.7,36.2,22.89,38.09,22.1,36.79,21.2,41.7257142857,17.4633333333,1.8933333333,23.5,30.6333333333,23.5,35.2928571429,20.8566666667,39.26,14.95,751.1666666667,57.3333333333,5,40,6.4333333333,12.2800413636,12.2800413636 -90,10,23.2,37.76,22.6,36.09,22.89,38.09,22.1,36.73,21.29,41.656,17.9266666667,1.8666666667,23.5,30.5,23.5,35.24,20.8566666667,39.26,14.9,751.1333333333,57.6666666667,5,40,6.4666666667,9.9405896734,9.9405896734 -90,0,23.2,37.8333333333,22.6,36.2233333333,22.89,38.03,22.1,36.93,21.29,41.6485714286,17.9266666667,4.2666666667,23.4266666667,30.5,23.5,35.5928571429,20.79,39.2,14.85,751.1,58,5,40,6.5,7.0865349262,7.0865349262 -110,0,23.2,38.03,22.5666666667,36.5666666667,22.89,38.03,22.1,37.3,21.29,42.36,17.4,6.29,23.39,30.7633333333,23.6,36.374,20.8566666667,39.26,14.8,751.0666666667,58.3333333333,5,40,6.5333333333,41.8170297868,41.8170297868 -100,0,23.2,38.1633333333,22.5,36.76,22.89,38,22.1,37.6333333333,21.29,43.34,16.9933333333,7.23,23.39,31.03,23.6857142857,36.9957142857,20.89,39.3266666667,14.75,751.0333333333,58.6666666667,5,40,6.5666666667,6.2350920285,6.2350920285 -110,0,23.2,38.3266666667,22.5,37.03,22.89,38.06,22.1333333333,37.9633333333,21.29,44.08,16.6333333333,8.2666666667,23.29,31.3233333333,23.774,37.394,20.8233333333,39.3266666667,14.7,751,59,5,40,6.6,29.9700923613,29.9700923613 -120,0,23.2,38.4666666667,22.4266666667,37.1633333333,22.89,38.09,22.2,38.2233333333,21.2771428571,44.5557142857,16.5,8.9933333333,23.2675,31.5725,23.89,37.7257142857,20.79,39.3266666667,14.7166666667,750.95,59.6666666667,5.1666666667,40,6.7833333333,4.3889286579,4.3889286579 -200,0,23.2,38.59,22.3566666667,37.36,22.89,38.1633333333,22.2,38.7,21.2,44.98125,16.29,9.9233333333,23.2,31.8266666667,24,38.036,20.79,39.425,14.7333333333,750.9,60.3333333333,5.3333333333,40,6.9666666667,37.1434945147,37.1434945147 -170,10,23.2,38.9233333333,22.29,37.6333333333,22.9266666667,38.2,22.2,38.76,21.2,45.296,16.1975,10.7675,23.2,32.33,24.0857142857,38.2985714286,20.8566666667,39.56,14.75,750.85,61,5.5,40,7.15,24.6279976098,24.6279976098 -140,0,23.2,39.5666666667,22.26,37.9333333333,22.9266666667,38.2,22.26,38.9,21.1714285714,45.5957142857,16.0333333333,11.56,23.2,32.7966666667,24.16,38.5,20.8566666667,39.5,14.7666666667,750.8,61.6666666667,5.6666666667,40,7.3333333333,4.7014910378,4.7014910378 -120,0,23.2,39.9,22.2,38.2666666667,22.945,38.395,22.2,38.9,21.16,45.94,15.56,12.2966666667,23.1666666667,33.23,24.2642857143,38.8714285714,20.8566666667,39.5,14.7833333333,750.75,62.3333333333,5.8333333333,40,7.5166666667,8.0399380997,8.0399380997 -130,0,23.2,39.79,22.1666666667,38.5666666667,23.0333333333,38.9333333333,22.2,38.9,21.1,46.1242857143,15.1,13.23,23.1,33.49,24.29,39.09,20.89,39.5,14.8,750.7,63,6,40,7.7,32.3159816908,32.3159816908 -130,0,23.1333333333,39.79,22.1,38.76,23.0333333333,38.9333333333,22.2,38.9,21.12,45.734,14.56,14.5566666667,23.0666666667,33.8266666667,24.3757142857,39.2357142857,20.89,39.5,14.7,750.7,63.3333333333,5.6666666667,40,7.7,5.9564687544,5.9564687544 -120,0,23.1666666667,39.79,22.0666666667,38.9333333333,23,38.9,22.2,38.9,21.2,44.9228571429,14.1,15.3633333333,23,34.0266666667,24.37,39.312,20.89,39.53,14.6,750.7,63.6666666667,5.3333333333,40,7.7,21.126120491,21.126120491 -120,0,23.1,39.8633333333,22,39.1333333333,23,38.9,22.1333333333,38.9,21.2,44.554,13.4333333333,16.0666666667,22.9633333333,34.4333333333,24.29,39.4,20.89,39.59,14.5,750.7,64,5,40,7.7,28.6314882687,28.6314882687 -120,10,23.1,39.9,21.89,39.5,23,38.8633333333,22.1,38.8633333333,21.2,44.3385714286,12.7666666667,17.46,22.89,34.6333333333,24.29,39.5,20.8566666667,39.59,14.4,750.7,64.3333333333,4.6666666667,40,7.7,30.2940768772,30.2940768772 -130,0,23.1,39.975,21.8233333333,39.76,22.9266666667,38.8633333333,22.1,38.79,21.2,44.178,12.26,18.93,22.89,34.8266666667,24.2385714286,39.5771428571,20.79,39.59,14.3,750.7,64.6666666667,4.3333333333,40,7.7,49.8741542222,49.8741542222 -120,0,23.1,40.06,21.79,39.995,22.89,38.8266666667,22.1,38.79,21.2542857143,49.6942857143,11.7933333333,20.1966666667,22.89,34.9666666667,24.2,39.59,20.79,39.59,14.2,750.7,65,4,40,7.7,29.8269541352,29.8269541352 -90,10,23.1,40.1266666667,21.7,40.2666666667,22.9633333333,38.9666666667,22,38.7,21.6,63.856,11.3966666667,22.3666666667,22.8566666667,35.0666666667,24.2,39.6214285714,20.79,39.59,13.6666666667,750.7333333333,67.5,4,37.8333333333,7.6833333333,34.211295587,34.211295587 -110,0,23.0333333333,40.1266666667,21.7,40.4666666667,23,38.9,21.9266666667,38.7,21.5428571429,61.35,11.0633333333,24.8333333333,22.79,35.46,24.2,39.85875,20.79,39.6266666667,13.1333333333,750.7666666667,70,4,35.6666666667,7.6666666667,24.3806326413,24.3806326413 -90,0,23,40.2,21.6,40.53,23,38.9,21.9266666667,38.7,21.458,59.196,10.6266666667,26.8266666667,22.79,35.8,24.16,39.9,20.79,39.7,12.6,750.8,72.5,4,33.5,7.65,8.6725015659,8.6725015659 -100,0,23,40.2,21.5333333333,40.6633333333,22.89,39,22,38.76,21.29,58.8714285714,10.4266666667,28.76,22.79,36.06,24.0142857143,39.7385714286,20.79,39.7,12.0666666667,750.8333333333,75,4,31.3333333333,7.6333333333,27.0988315577,27.0988315577 -100,0,23,40.2,21.5,40.8266666667,22.89,39,21.89,38.8266666667,21.2,58.014,10.16,31.3266666667,22.79,36.09,23.978,39.572,20.79,39.7,11.5333333333,750.8666666667,77.5,4,29.1666666667,7.6166666667,44.3299178383,44.3299178383 -90,0,22.9266666667,40.2,21.4266666667,40.8266666667,22.89,39.03,21.89,38.9,21.1857142857,57.3685714286,10.0333333333,32.86,22.73,36.1633333333,23.89,39.4714285714,20.79,39.7,11,750.9,80,4,27,7.6,15.9823254333,15.9823254333 -110,0,22.9633333333,40.1633333333,21.3566666667,40.9333333333,22.8233333333,38.9633333333,21.89,39,21.16,56.578,9.86,33.3633333333,22.7,36.29,23.89,39.29,20.73,39.7,11.1833333333,750.8833333333,78.5,4,29.1666666667,7.4833333333,12.7059915452,12.7059915452 -80,0,22.89,40.2966666667,21.29,41.06,22.8566666667,38.9666666667,21.8233333333,39,21.1714285714,56.4971428571,9.6666666667,33.8966666667,22.7,36.3633333333,23.8614285714,39.15,20.76,39.6266666667,11.3666666667,750.8666666667,77,4,31.3333333333,7.3666666667,8.0424979678,8.0424979678 -80,0,22.89,40.4666666667,21.1666666667,41.09,22.79,39.0266666667,21.89,39,21.1,56.7,9.4,34.895,22.7,36.6,23.89,39.036,20.7,39.7225,11.55,750.85,75.5,4,33.5,7.25,9.8416710156,9.8416710156 -80,0,22.89,40.3266666667,21.1,41.1633333333,22.79,39.03,21.8233333333,38.9333333333,21.0428571429,56.5128571429,9.03,36.5966666667,22.6666666667,36.79,23.89,38.9714285714,20.7,39.99,11.7333333333,750.8333333333,74,4,35.6666666667,7.1333333333,48.500381771,48.500381771 -70,0,22.89,40.26,21.0666666667,41.2,22.8566666667,39.1633333333,21.79,38.9,21,56.196,8.83,37.2633333333,22.6,36.79,23.79,38.79,20.7,40.2666666667,11.9166666667,750.8166666667,72.5,4,37.8333333333,7.0166666667,36.4710545866,36.4710545866 -60,0,22.89,40.2,21,41.26,22.89,39.23,21.79,38.9,21,55.8971428571,8.5666666667,37.7933333333,22.6,36.86,23.7771428571,38.8214285714,20.7,40.4666666667,12.1,750.8,71,4,40,6.9,28.663543216,28.663543216 -40,0,22.8233333333,40.2,20.9633333333,41.53,22.89,39.29,21.79,38.8633333333,20.956,55.7,8.5,39.0666666667,22.6,37.06,23.68,38.834,20.7,40.6266666667,11.8,750.7666666667,71.6666666667,3.8333333333,40,6.75,8.5077004042,8.5077004042 -50,0,22.8233333333,40.1266666667,20.8233333333,41.59,22.89,39.29,21.73,38.79,20.89,55.5542857143,8.6,39.5933333333,22.6,37.2,23.6428571429,38.8371428571,20.7,40.76,11.5,750.7333333333,72.3333333333,3.6666666667,40,6.6,4.2146423948,4.2146423948 -50,0,22.79,40,20.76,41.7,22.79,39.23,21.7,38.79,20.87,55.378,8.5333333333,39.0666666667,22.6,37.26,23.6,38.754,20.7,40.9333333333,11.2,750.7,73,3.5,40,6.45,4.3281373568,4.3281373568 -40,0,22.79,40,20.7,41.76,22.79,39.29,21.7,38.73,20.8328571429,55.0042857143,8.4266666667,39.1666666667,22.6,37.3266666667,23.5428571429,38.7,20.7,41.06,10.9,750.6666666667,73.6666666667,3.3333333333,40,6.3,25.4534607287,25.4534607287 -40,10,22.7,39.9666666667,20.6666666667,41.8633333333,22.79,39.29,21.7,38.7,20.8275,54.5675,8.5666666667,38.7,22.6,37.4,23.478,38.66,20.7,41.23,10.6,750.6333333333,74.3333333333,3.1666666667,40,6.15,26.0852872627,26.0852872627 -40,0,22.7,39.9,20.6,41.8633333333,22.79,39.29,21.65,38.6175,20.79,54.254,8.63,36.7566666667,22.6,37.29,23.39,38.4285714286,20.7,41.43,10.3,750.6,75,3,40,6,39.6069170441,39.6069170441 -30,0,22.7,39.9,20.5666666667,41.9333333333,22.76,39.4,21.6333333333,38.53,20.79,53.9971428571,8.7633333333,35.4233333333,22.5333333333,37.3633333333,23.29,38.44,20.76,41.53,10.3666666667,750.6,73.6666666667,3.1666666667,40,5.8,5.6998130749,5.6998130749 -60,0,22.6666666667,39.76,20.4725,42,22.7,39.4,21.6,38.5,20.79,53.794,9.0633333333,33.4,22.5,37.4,23.29,38.4714285714,20.7,41.59,10.4333333333,750.6,72.3333333333,3.3333333333,40,5.6,35.0599689176,35.0599689176 -60,0,22.6,39.7,20.39,42,22.7,39.4,21.6,38.5,20.7642857143,53.5642857143,9.2633333333,31.8666666667,22.5,37.4,23.272,38.4,20.79,41.6266666667,10.5,750.6,71,3.5,40,5.4,42.8782384028,42.8782384028 -50,0,22.6,39.6633333333,20.29,42,22.76,39.4,21.6,38.5,20.7,53.29,9.2266666667,30.9666666667,22.5,37.6266666667,23.2,38.2,20.79,41.76,10.5666666667,750.6,69.6666666667,3.6666666667,40,5.2,40.6255680136,40.6255680136 -60,0,22.6,39.59,20.29,42.06,22.79,39.4,21.5333333333,38.4333333333,20.7,53.15,9.3,30.5666666667,22.5,37.6266666667,23.2,38.236,20.7,41.9333333333,10.6333333333,750.6,68.3333333333,3.8333333333,40,5,46.2170275976,46.2170275976 -50,0,22.6,39.59,20.2,42,22.79,39.4,21.5,38.4,20.7,53.016,9.39,29.76,22.5,37.7,23.1142857143,38.3528571429,20.7,42,10.7,750.6,67,4,40,4.8,17.6426732447,17.6426732447 -50,0,22.5333333333,39.59,20.2,42.06,22.89,39.59,21.5,38.4666666667,20.7,52.8685714286,9.39,29.7,22.5,37.6266666667,23.08,38.46,20.79,42.1266666667,10.6833333333,750.6,67,4,40,4.7833333333,23.892806645,23.892806645 -40,0,22.5,39.59,20.1666666667,42.09,22.89,39.59,21.5,38.5,20.7,52.7,9.4633333333,29.1333333333,22.4633333333,37.56,23,38.4714285714,20.79,42.2,10.6666666667,750.6,67,4,40,4.7666666667,27.2706566029,27.2706566029 -50,0,22.5,39.59,20.1,42.09,22.9266666667,39.6266666667,21.5,38.5,20.6857142857,52.54,9.4975,28.975,22.4633333333,37.5,23,38.44,20.76,42.29,10.65,750.6,67,4,40,4.75,43.9193573431,43.9193573431 -60,0,22.4633333333,39.5,20.0333333333,42.03,23,39.7,21.5,38.5,20.6,52.378,9.5333333333,28.6333333333,22.4633333333,37.5,22.9371428571,38.5985714286,20.7,42.3633333333,10.6333333333,750.6,67,4,40,4.7333333333,2.1166158025,2.1166158025 -60,0,22.39,39.5,20.0333333333,42.09,23,39.7,21.5,38.5,20.6,52.2642857143,9.36,29.0566666667,22.39,37.5225,22.8566666667,38.6266666667,20.7,42.45,10.6166666667,750.6,67,4,40,4.7166666667,49.7677715146,49.7677715146 -60,0,22.39,39.4,20,42.1266666667,23,39.7,21.5,38.5,20.6,52.054,9.36,29.3233333333,22.39,37.6633333333,22.79,38.7385714286,20.73,42.53,10.6,750.6,67,4,40,4.7,38.5733771138,38.5733771138 -50,0,22.39,39.4,19.9266666667,42.2,23.1,39.79,21.5,38.5,20.6,51.9857142857,9.46,29.1233333333,22.4633333333,37.56,22.79,38.9714285714,20.79,42.6633333333,10.45,750.6,67.6666666667,4,38.1666666667,4.7,31.6310326452,31.6310326452 -50,0,22.3566666667,39.4,19.9266666667,42.2,23.1,39.79,21.39,38.4,20.6,51.878,9.6,28.4566666667,22.39,37.5,22.7,39.09,20.79,42.73,10.3,750.6,68.3333333333,4,36.3333333333,4.7,9.3940524152,9.3940524152 -40,0,22.29,39.4,19.9266666667,42.26,23.1,39.79,21.39,38.4,20.5714285714,51.7642857143,9.6,27.8633333333,22.39,37.53,22.7,39.09,20.73,42.79,10.15,750.6,69,4,34.5,4.7,35.4240134591,35.4240134591 -50,0,22.29,39.4,19.89,42.29,23.1,39.79,21.39,38.4,20.54,51.59,9.66,27.39,22.39,37.59,22.68,39.09,20.79,42.9333333333,10,750.6,69.6666666667,4,32.6666666667,4.7,31.4009399386,31.4009399386 -50,0,22.29,39.4,19.89,42.29,23.1,39.79,21.39,38.4,20.5142857143,51.5385714286,9.6,27.2,22.3566666667,37.6633333333,22.6,39.0257142857,20.79,43.06,9.85,750.6,70.3333333333,4,30.8333333333,4.7,34.2110354919,34.2110354919 -40,0,22.2,39.4,19.79,42.29,23.1,39.79,21.3566666667,38.4,20.5,51.5,9.5333333333,27.1333333333,22.3566666667,37.6633333333,22.6,39.09,20.79,43.2,9.7,750.6,71,4,29,4.7,2.1886933711,2.1886933711 -60,0,22.2,39.4,19.79,42.29,23.1,39.79,21.3566666667,38.4,20.5,51.4285714286,9.5,27.2,22.39,37.8266666667,22.5428571429,39.09,20.79,43.2,9.65,750.5666666667,71.3333333333,4,28.8333333333,4.7,22.9782482842,22.9782482842 -60,0,22.2,39.4,19.79,42.29,23.2,39.79,21.34,38.4,20.5,51.4,9.5666666667,27.0666666667,22.3233333333,37.9,22.5,39.016,20.76,43.29,9.6,750.5333333333,71.6666666667,4,28.6666666667,4.7,2.4344990263,2.4344990263 -60,0,22.15,39.4,19.7225,42.29,23.2,39.79,21.29,38.4,20.5,51.3057142857,9.53,26.9633333333,22.29,37.8266666667,22.4685714286,38.9,20.76,43.3633333333,9.55,750.5,72,4,28.5,4.7,4.1115576401,4.1115576401 -60,0,22.1333333333,39.4,19.7,42.29,23.2,39.79,21.29,38.4,20.5,51.236,9.39,27.1566666667,22.3566666667,37.9666666667,22.39,38.9,20.79,43.5,9.5,750.4666666667,72.3333333333,4,28.3333333333,4.7,14.1269473708,14.1269473708 -60,0,22.1,39.4,19.7,42.29,23.2,39.79,21.29,38.4,20.5,51.1685714286,9.39,27.23,22.39,38,22.3471428571,38.8371428571,20.79,43.56,9.45,750.4333333333,72.6666666667,4,28.1666666667,4.7,27.1902455483,27.1902455483 -50,0,22.1,39.4,19.7,42.3633333333,23.2,39.79,21.29,38.3266666667,20.434,51.036,9.4633333333,27.23,22.39,38.1333333333,22.33,38.772,20.79,43.6266666667,9.4,750.4,73,4,28,4.7,40.1725109317,40.1725109317 -50,0,22.1,39.4,19.7,42.4,23.2,39.79,21.29,38.29,20.45875,50.99625,9.6,26.5966666667,22.3566666667,38.29,22.29,38.7,20.79,43.7,9.35,750.3666666667,73.1666666667,4.1666666667,27.8333333333,4.7,21.1818696116,21.1818696116 -50,0,22.1,39.4,19.7,42.4,23.2,39.79,21.29,38.29,20.4057142857,50.8514285714,9.6,26.495,22.29,38.23,22.254,38.46,20.76,43.76,9.3,750.3333333333,73.3333333333,4.3333333333,27.6666666667,4.7,19.5553371799,19.5553371799 -50,0,22.1,39.4,19.6,42.29,23.2,39.79,21.29,38.29,20.39,50.79,9.66,26.39,22.29,38.2,22.2,38.3371428571,20.76,43.76,9.25,750.3,73.5,4.5,27.5,4.7,29.4146823231,29.4146823231 -50,0,22.1,39.3266666667,19.6,42.3633333333,23.2,39.79,21.29,38.29,20.39,50.7514285714,9.63,26.2933333333,22.29,38.2,22.18,38.272,20.79,43.79,9.2,750.2666666667,73.6666666667,4.6666666667,27.3333333333,4.7,17.3050902085,17.3050902085 -60,0,22,39.2,19.6,42.4,23.2,39.79,21.29,38.29,20.39,50.7,9.69,25.8933333333,22.29,38.1633333333,22.1,38.2,20.79,43.79,9.15,750.2333333333,73.8333333333,4.8333333333,27.1666666667,4.7,29.6369286254,29.6369286254 -60,0,22,39.2,19.6,42.4,23.2,39.79,21.23,38.23,20.39,50.6371428571,9.69,25.8566666667,22.29,38.09,22.1,38.054,20.79,43.79,9.1,750.2,74,5,27,4.7,6.5358921769,6.5358921769 -60,0,22,39.2,19.5666666667,42.4,23.2,39.79,21.2,38.2,20.39,50.572,9.69,25.5966666667,22.245,37.9,22.0428571429,37.9271428571,20.79,43.79,9.05,750.1833333333,74.1666666667,4.8333333333,27.1666666667,4.6666666667,35.7885339996,35.7885339996 -50,0,22,39.2,19.5,42.4,23.23,39.8266666667,21.2,38.2,20.39,50.5,9.83,25.2933333333,22.26,37.9666666667,22,37.772,20.79,43.79,9,750.1666666667,74.3333333333,4.6666666667,27.3333333333,4.6333333333,36.0347080976,36.0347080976 -50,0,22,39.2,19.5,42.4,23.23,39.8266666667,21.2,38.2,20.39,50.4,9.89,24.8333333333,22.2,37.9,22,37.7,20.79,43.9,8.95,750.15,74.5,4.5,27.5,4.6,3.0320242047,3.0320242047 -50,0,22,39.2,19.5,42.4,23.29,39.9,21.2,38.2,20.39,50.3371428571,9.9633333333,24.29,22.29,38,21.89,37.7,20.79,43.9,8.9,750.1333333333,74.6666666667,4.3333333333,27.6666666667,4.5666666667,31.0835222481,31.0835222481 -40,0,22,39.2,19.5,42.4333333333,23.26,39.8633333333,21.2,38.2,20.39,50.29,9.9633333333,24.23,22.23,37.9333333333,21.89,37.6371428571,20.79,43.9,8.85,750.1166666667,74.8333333333,4.1666666667,27.8333333333,4.5333333333,12.8853271832,12.8853271832 -80,0,21.9266666667,39.2,19.5,42.4333333333,23.2,39.79,21.2,38.2,20.39,50.2257142857,10.1,23.93,22.2,37.9,21.87,37.552,20.79,43.9,8.8,750.1,75,4,28,4.5,27.5262343348,27.5262343348 -70,0,21.89,39.33,19.5,42.53,23.2,39.7233333333,21.1,38.2,20.35,50.2,10.1,23.6633333333,22.2,37.9,21.79,37.4,20.79,44,8.8,750.0666666667,74.8333333333,3.8333333333,30,4.4666666667,30.767628795,30.767628795 -50,0,21.89,39.7233333333,19.5,42.8633333333,23.1333333333,39.53,21.1666666667,38.2,20.3757142857,49.4285714286,10.0666666667,23.2266666667,22.2,37.9,21.79,37.29,20.79,44,8.8,750.0333333333,74.6666666667,3.6666666667,32,4.4333333333,15.0463903439,15.0463903439 -70,0,21.9266666667,39.9633333333,19.5,43.3266666667,23,39.26,21.15,38.2,20.39,48.018,10,22.96,22.2,37.9,21.7257142857,37.29,20.79,44,8.8,750,74.5,3.5,34,4.4,14.2232661368,14.2232661368 -50,0,22,40.03,19.4266666667,43.4,23,39.2,21.1,38.3266666667,20.39,47.0228571429,9.86,23.3,22.2,37.8266666667,21.7,37.29,20.79,44,8.8,749.9666666667,74.3333333333,3.3333333333,36,4.3666666667,37.7459213953,37.7459213953 -70,0,22,40,19.5,43.645,23,39.06,21.1,38.4666666667,20.39,46.46,9.8,23.6333333333,22.2,37.9,21.7,37.356,20.79,44,8.8,749.9333333333,74.1666666667,3.1666666667,38,4.3333333333,41.5930630406,41.5930630406 -110,10,21.9266666667,40.09,19.4266666667,43.6266666667,23,38.9333333333,21.1,38.59,20.39,46.6628571429,9.69,23.86,22.2,37.9333333333,21.6285714286,37.3528571429,20.79,44,8.8,749.9,74,3,40,4.3,6.4535509096,6.4535509096 -50,10,22,40.2233333333,19.5,43.76,22.89,38.9,21.1,38.7233333333,20.39,47.456,9.69,24.0666666667,22.2,38,21.6,37.44,20.79,44.06,8.9833333333,749.8666666667,72.8333333333,3.3333333333,40,4.2666666667,43.3397928253,43.3397928253 -40,0,22,40.4,19.5,43.7666666667,22.89,38.9,21.2,38.6633333333,20.39,47.7957142857,9.6,24.245,22.1666666667,37.4,21.5857142857,37.4428571429,20.79,43.9333333333,9.1666666667,749.8333333333,71.6666666667,3.6666666667,40,4.2333333333,3.5539616132,3.5539616132 -20,0,22,40.5266666667,19.5,43.9,22.8566666667,38.8633333333,21.1333333333,38.53,20.39,47.79,9.6,24.4266666667,22.1,36.9266666667,21.5,37.334,20.79,43.76,9.35,749.8,70.5,4,40,4.2,43.4654199751,43.4654199751 -40,0,22,40.1933333333,19.5,43.5333333333,22.79,38.79,21.1,38.3633333333,20.39,47.7385714286,9.66,24.5666666667,22.0666666667,36.4,21.5,37.29,20.79,43.5,9.5333333333,749.7666666667,69.3333333333,4.3333333333,40,4.1666666667,3.5906246398,3.5906246398 -20,0,22,39.9333333333,19.5,43.0666666667,22.79,38.7,21.1,38.29,20.33,47.596,9.7266666667,24.7,22,36,21.456,37.254,20.79,42.99,9.7166666667,749.7333333333,68.1666666667,4.6666666667,40,4.1333333333,7.7925047255,7.7925047255 -60,0,22,39.8333333333,19.5,42.6633333333,22.79,38.7,21.1,38.2,20.3328571429,47.3214285714,9.86,24.5666666667,21.9633333333,35.6633333333,21.4214285714,37.2385714286,20.73,42.5966666667,9.9,749.7,67,5,40,4.1,8.6218040204,8.6218040204 -60,0,22,39.7,19.5,42.4633333333,22.79,38.59,21.1,38.2,20.29,47.09,10,24.3566666667,21.89,35.4633333333,21.39,37.272,20.7,42.1,10,749.7166666667,67.1666666667,4.8333333333,40,4.2,13.5895016952,13.5895016952 -50,0,21.9633333333,39.56,19.6,42.2233333333,22.79,38.53,21.1,38.09,20.29,46.88,10.1266666667,24.0966666667,21.89,35.1,21.39,37.2642857143,20.7,41.7233333333,10.1,749.7333333333,67.3333333333,4.6666666667,40,4.3,47.7550764568,47.7550764568 -60,0,21.9633333333,39.4333333333,19.6,42.03,22.79,38.3633333333,21.1,38.09,20.29,46.66,10.33,23.6333333333,21.89,34.93,21.39,37.29,20.7,41.4633333333,10.2,749.75,67.5,4.5,40,4.4,38.452570478,38.452570478 -50,0,21.89,39.3633333333,19.6,41.76,22.79,38.29,21.1,38,20.29,46.44875,10.53,23.2333333333,21.89,34.73,21.3042857143,37.3985714286,20.76,40.99,10.3,749.7666666667,67.6666666667,4.3333333333,40,4.5,19.8884033249,19.8884033249 -50,0,21.9633333333,39.29,19.6666666667,41.7,22.79,38.2,21.1,38,20.29,46.1942857143,10.7566666667,22.53,21.89,34.59,21.29,37.518,20.76,40.5966666667,10.4,749.7833333333,67.8333333333,4.1666666667,40,4.6,38.5823754594,38.5823754594 -50,0,21.89,39.1633333333,19.73,41.4666666667,22.79,38.1175,21.1,38,20.29,45.96,11.1633333333,21.99,21.8233333333,34.4633333333,21.29,37.59,20.76,40.2233333333,10.5,749.8,68,4,40,4.7,27.6367414743,27.6367414743 -50,0,21.89,39.09,19.8566666667,41.4,22.8566666667,38.03,21.1,37.9333333333,20.29,45.7385714286,11.8566666667,19.29,21.79,34.29,21.29,37.59,20.7,39.89,10.9166666667,749.8,66.1666666667,4.3333333333,37.8333333333,4.6666666667,28.6627655616,28.6627655616 -50,0,21.89,39.09,20.1333333333,40.96,22.8233333333,37.9,21.1,37.9,20.29,45.572,12.4633333333,17.3566666667,21.79,34.23,21.29,37.59,20.9933333333,39.6233333333,11.3333333333,749.8,64.3333333333,4.6666666667,35.6666666667,4.6333333333,29.4128099573,29.4128099573 -50,0,21.89,39.09,20.2,40.6266666667,22.89,37.9,21.1,37.9,20.29,45.2542857143,13.1966666667,14.2933333333,21.79,34.09,21.29,37.59,21.9933333333,38.8966666667,11.75,749.8,62.5,5,33.5,4.6,38.6819519219,38.6819519219 -60,0,21.89,39.09,20.23,40.4,22.89,37.76,21.15,38,20.33,43.97,13.6633333333,12.4333333333,21.79,34.09,21.2257142857,37.5257142857,23.13,37.5333333333,12.1666666667,749.8,60.6666666667,5.3333333333,31.3333333333,4.5666666667,46.0505437106,46.0505437106 -50,0,21.89,39.09,20.43,40.3266666667,22.89,37.7,21.3233333333,38.09,20.39,43.3671428571,14.2933333333,10.1333333333,21.79,34,21.2,37.4,23.6566666667,36.4,12.5833333333,749.8,58.8333333333,5.6666666667,29.1666666667,4.5333333333,33.2817760529,33.2817760529 -60,0,21.89,39.09,20.65,39.895,22.89,37.6633333333,21.4633333333,38.09,20.39,42.9,14.7,9.2666666667,21.73,33.9333333333,21.2,37.3371428571,23.2233333333,35.5,13,749.8,57,6,27,4.5,19.9128118576,19.9128118576 -50,0,21.89,39,21.3966666667,39.4233333333,22.89,37.59,21.5333333333,38.09,20.39,42.5957142857,15.1,8.7,21.76,33.8633333333,21.2,37.312,22.6966666667,35.96,13.2,749.8166666667,56.6666666667,6,27.3333333333,4.6333333333,48.2776440796,48.2776440796 -50,0,21.89,39,22.1233333333,38.6966666667,22.89,37.59,21.6666666667,38.1633333333,20.39,42.254,15.695,7.875,21.76,33.79,21.2,37.4714285714,22.2266666667,36.6666666667,13.4,749.8333333333,56.3333333333,6,27.6666666667,4.7666666667,16.1705074832,16.1705074832 -50,0,21.89,38.9666666667,22.6966666667,37.7666666667,22.9633333333,37.59,21.8233333333,38.1266666667,20.4528571429,42.1842857143,16.2933333333,6.4666666667,21.73,33.79,21.2,37.5,21.96,37.1333333333,13.6,749.85,56,6,28,4.9,45.1480912045,45.1480912045 -50,0,21.9633333333,38.9,22.9633333333,37.1666666667,22.89,37.59,21.89,38.1266666667,20.5,42.072,16.4266666667,5.4333333333,21.73,33.73,21.2,37.5257142857,21.7,37.5966666667,13.8,749.8666666667,55.6666666667,6,28.3333333333,5.0333333333,30.3372205119,30.3372205119 -70,0,22,38.9,23.0666666667,36.76,22.89,37.59,21.9266666667,38,20.5,41.9714285714,16.5666666667,5.7666666667,21.7,33.7,21.18625,37.825,21.6333333333,37.93,14,749.8833333333,55.3333333333,6,28.6666666667,5.1666666667,46.3650262915,46.3650262915 -60,0,22,38.9,23.26,36.5666666667,22.89,37.7,22,38,20.5,41.856,17.0333333333,4.9333333333,21.7,33.7,21.29,38.276,21.4633333333,38.23,14.2,749.9,55,6,29,5.3,0.1038254937,0.1038254937 -80,0,22.0333333333,38.9333333333,23.3233333333,36.2233333333,22.89,37.7,22.1,38.06,20.5571428571,41.7385714286,17.2266666667,4.7266666667,21.73,33.6633333333,21.29,38.3685714286,21.39,38.3633333333,14.3833333333,749.9333333333,54.5,5.6666666667,30.8333333333,5.3166666667,1.5860591899,1.5860591899 -80,0,22.0333333333,38.9333333333,23.39,36.03,22.9633333333,37.59,22.1,37.9333333333,20.94,55.24,17.3233333333,3.5633333333,21.79,33.59,21.29,38.054,21.3566666667,38.59,14.5666666667,749.9666666667,54,5.3333333333,32.6666666667,5.3333333333,32.916475099,32.916475099 -100,0,22.1,39,23.5333333333,35.93,22.9633333333,37.59,22.1,37.9,21.9214285714,75.3142857143,17.53,2.8233333333,21.76,33.5,21.29,38.1271428571,21.29,38.695,14.75,750,53.5,5,34.5,5.35,45.3502453631,45.3502453631 -100,0,22.1,39,23.6666666667,35.6566666667,23.0333333333,37.6266666667,22.1666666667,37.9,21.35,76.64,17.8,2.9666666667,21.7675,33.425,21.35,38.29,21.29,38.79,14.9333333333,750.0333333333,53,4.6666666667,36.3333333333,5.3666666667,34.8057269817,34.8057269817 -90,0,22.1,39,23.73,35.43,23.0333333333,37.6266666667,22.2,37.76,21.1557142857,77.0142857143,18.1333333333,2.5666666667,21.79,33.4,21.4214285714,38.3214285714,21.2,38.8266666667,15.1166666667,750.0666666667,52.5,4.3333333333,38.1666666667,5.3833333333,25.1888685394,25.1888685394 -90,0,22.1666666667,39,23.79,35.29,23.1,37.7,22.2,37.6266666667,21.04,75.76,18.1333333333,2.4666666667,21.79,33.4,21.6,38.4,21.2,38.9,15.3,750.1,52,4,40,5.4,29.5704029151,29.5704029151 -90,0,22.2,39,23.79,35.26,23.075,37.6725,22.29,37.6633333333,21,72.31,18,2.4,21.79,33.4,21.6985714286,38.4128571429,21.2,38.9333333333,15.4333333333,750.1166666667,51.6666666667,4.1666666667,40,5.4333333333,7.23438079,7.23438079 -90,0,22.2,39,23.79,35.2,23,37.59,22.29,37.59,20.956,66.974,18.23,2.6633333333,21.79,33.4,21.85,38.356,21.2,39,15.5666666667,750.1333333333,51.3333333333,4.3333333333,40,5.4666666667,0.487928337,0.487928337 -90,0,22.2,39.09,23.79,35.1633333333,23.1,37.7,22.29,37.59,20.89,59.2528571429,18.3566666667,2.2566666667,21.79,33.4,21.9214285714,38.4,21.1,39.03,15.7,750.15,51,4.5,40,5.5,8.6627118639,8.6627118639 -110,0,22.2,39.03,23.79,35.09,23.0333333333,37.6266666667,22.29,37.59,20.89,54.536,18.4933333333,2.23,21.89,33.5,22.04,38.374,21.1,39.09,15.8333333333,750.1666666667,50.6666666667,4.6666666667,40,5.5333333333,21.2014474324,21.2014474324 -100,0,22.23,38.9333333333,23.8566666667,35.1633333333,23.1,37.7,22.29,37.59,20.89,52.0571428571,18.8266666667,2.23,21.89,33.5,22.1571428571,38.4428571429,21.1,39.2,15.9666666667,750.1833333333,50.3333333333,4.8333333333,40,5.5666666667,37.9769630381,37.9769630381 -100,0,22.29,39,23.79,35.1633333333,23.1,37.7,22.29,37.6266666667,20.89,50.09,18.9633333333,1.9,22,33.5,22.254,38.4,21.1,39.2,16.1,750.2,50,5,40,5.6,49.7998361476,49.7998361476 -80,0,22.29,39,23.79,35.2,23.1,37.7,22.29,37.7,20.89,48.78375,18.9633333333,2.2333333333,22,33.5,22.3185714286,38.4714285714,21.1,39.23,16.1833333333,750.2,50.1666666667,5.1666666667,40,5.7166666667,4.2263607262,4.2263607262 -70,0,22.365,39,23.79,35.295,23.1,37.7,22.3233333333,37.79,20.89,47.4828571429,19.4266666667,2.2233333333,22.0333333333,33.53,22.39,38.7,21.1,39.29,16.2666666667,750.2,50.3333333333,5.3333333333,40,5.8333333333,34.2543272418,34.2543272418 -70,0,22.39,39,23.79,35.4,23.1,37.73,22.39,37.79,20.89,46.796,19.5666666667,2.2966666667,22.1,33.59,22.4842857143,38.9414285714,21.1,39.4333333333,16.35,750.2,50.5,5.5,40,5.95,4.5068122097,4.5068122097 -70,0,22.5,39.09,23.76,35.4333333333,23.1,37.79,22.39,37.8266666667,20.89,46.2,19.55,2.34,22.2,33.59,22.5,39.174,21.1,39.56,16.4333333333,750.2,50.6666666667,5.6666666667,40,6.0666666667,44.2208327586,44.2208327586 -80,0,22.5,39.09,23.7,35.56,23.1,37.9,22.39,37.9,20.89,45.71,19.3566666667,2.5,22.2,33.6633333333,22.5285714286,39.3214285714,21.1,39.7,16.5166666667,750.2,50.8333333333,5.8333333333,40,6.1833333333,2.4026745697,2.4026745697 -60,0,22.5,39.09,23.7,35.7,23.1,37.9666666667,22.39,37.9,20.9214285714,45.38,19.29,2.5,22.2,33.7,22.6,39.4,21.1,39.7,16.6,750.2,51,6,40,6.3,2.6807532879,2.6807532879 -90,0,22.5,39.09,23.7,35.76,23.1,38,22.39,37.9666666667,20.934,45.038,19.1,2.9333333333,22.2,33.76,22.6142857143,39.4571428571,21.0333333333,39.53,16.7,750.1833333333,50.6666666667,6,40,6.2833333333,14.9064234924,14.9064234924 -80,0,22.5,39.36,23.6,35.73,23.1,38,22.29,38,20.9371428571,44.7642857143,19.1666666667,3.6,22.2,33.8266666667,22.7,39.5,21.1,39.53,16.8,750.1666666667,50.3333333333,6,40,6.2666666667,25.0207747216,25.0207747216 -80,0,22.5,39.4333333333,23.5333333333,35.8633333333,23.1,38,22.29,38.06,20.934,44.5,19.1666666667,3.8,22.1333333333,33.9666666667,22.7,39.5642857143,21,39.4333333333,16.9,750.15,50,6,40,6.25,32.1609413833,32.1609413833 -80,0,22.5,39.3266666667,23.4633333333,35.9333333333,23.1666666667,38,22.29,38.09,20.9057142857,44.3385714286,18.8933333333,3.9266666667,22.1,34.03,22.7,39.7,21,39.5,17,750.1333333333,49.6666666667,6,40,6.2333333333,20.9274939727,20.9274939727 -90,0,22.5,39.4,23.39,36.06,23.1333333333,38.09,22.29,38.1633333333,20.912,44.2,18.8666666667,5,22.1,34.09,22.7771428571,39.7671428571,21,39.5,17.1,750.1166666667,49.3333333333,6,40,6.2166666667,44.034151698,44.034151698 -70,0,22.5,39.4333333333,23.39,36.09,23.2,38.03,22.29,38.23,20.9685714286,44.0957142857,19.4666666667,5,22.1,34.2,22.79,39.92,21,39.5,17.2,750.1,49,6,40,6.2,4.63258503,4.63258503 -60,0,22.5,39.56,23.39,36.1633333333,23.2,38.03,22.29,38.3633333333,21,44,19.6933333333,4.36,22.1,34.4,22.8614285714,40.0642857143,21,39.5,17.3,750.1166666667,49.1666666667,6.1666666667,40,6.3666666667,17.9602143704,17.9602143704 -90,0,22.5,39.59,23.26,36.4,23.1333333333,38.09,22.2,38.3266666667,20.9371428571,43.8985714286,19.0266666667,4.36,22.1,34.4,23,40.09,21,39.59,17.4,750.1333333333,49.3333333333,6.3333333333,40,6.5333333333,23.4631749219,23.4631749219 -90,0,22.5,39.59,23.1333333333,36.5266666667,23.1,38.09,22.2,38.4666666667,20.89,43.79,17.83,8.6266666667,22.0666666667,34.6266666667,23.1,40.334,21,39.6633333333,17.5,750.15,49.5,6.5,40,6.7,22.1357117291,22.1357117291 -90,0,22.5,39.7,22.9633333333,36.7666666667,23.0666666667,38.1633333333,22.2,38.6566666667,20.89,43.79,16.83,13.0333333333,22,34.8333333333,23.1957142857,40.5714285714,21,39.73,17.6,750.1666666667,49.6666666667,6.6666666667,40,6.8666666667,9.7144690924,9.7144690924 -80,0,22.5,39.76,22.8233333333,37.0266666667,23.0666666667,38.2233333333,22.2,38.8633333333,20.89,43.79,15.9333333333,17.13,22,35.1566666667,23.254,40.84,21,39.79,17.7,750.1833333333,49.8333333333,6.8333333333,40,7.0333333333,32.3753083823,32.3753083823 -80,0,22.5,39.8266666667,22.79,37.36,23.0333333333,38.23,22.1666666667,39.1266666667,20.89,43.8528571429,15.7266666667,19.2633333333,22,35.49,23.29,41.0957142857,20.9266666667,39.79,17.8,750.2,50,7,40,7.2,15.3634627117,15.3634627117 -90,0,22.5,39.9666666667,22.73,37.56,23.1,38.29,22.1,39.375,20.89,43.978,16.13,19.9966666667,22,35.8,23.35,41.44,20.9266666667,39.93,17.25,750.3166666667,53.1666666667,6.8333333333,40,7.4666666667,15.4076675186,15.4076675186 -90,0,22.5,40.1266666667,22.79,37.73,23.1,38.4,22.1,39.56,20.89,44.09,16.6566666667,19.6633333333,22,36.1333333333,23.3471428571,41.6914285714,21,40.23,16.7,750.4333333333,56.3333333333,6.6666666667,40,7.7333333333,2.4422024493,2.4422024493 -90,0,22.5,40.3333333333,22.79,37.8633333333,23.1,38.4,22.1,39.73,20.934,44.2,17.3666666667,18.1,22.0333333333,36.36,23.412,41.894,21,40.49,16.15,750.55,59.5,6.5,40,8,2.5786580634,2.5786580634 -80,0,22.5,40.45,22.79,37.95,23.1,38.5,22.1,39.8633333333,20.9528571429,44.2928571429,17.76,15.7666666667,22.0333333333,36.5,23.4528571429,42.0514285714,21,40.7,15.6,750.6666666667,62.6666666667,6.3333333333,40,8.2666666667,8.0972975702,8.0972975702 -90,0,22.5,40.6266666667,22.76,38.0966666667,23.1,38.56,22.1,40,20.934,44.4,17.4,14.645,22,36.6266666667,23.5,42.09,21,40.76,15.05,750.7833333333,65.8333333333,6.1666666667,40,8.5333333333,7.0722409408,7.0722409408 -80,0,22.5,40.76,22.7,38.3633333333,23.1,38.59,22.1,40,20.9214285714,44.4714285714,17.0333333333,15.2566666667,22,36.7,23.5,42.09,20.9633333333,40.8266666667,14.5,750.9,69,6,40,8.8,9.5291538513,9.5291538513 -90,0,22.5,40.9,22.7,38.5,23.1,38.6633333333,22.1,40.03,20.89,44.5,17.1666666667,15.2566666667,22,36.73,23.56,42.072,20.9633333333,40.9666666667,14.6333333333,750.85,68.5,5.6666666667,40,8.8333333333,25.5968004116,25.5968004116 -90,0,22.5,40.9,22.6333333333,38.5,23.1,38.7,22.1,40.1633333333,20.9214285714,44.5771428571,17.3566666667,14.9,22,36.79,23.6,42.0642857143,20.9266666667,41.03,14.7666666667,750.8,68,5.3333333333,40,8.8666666667,47.8642764385,47.8642764385 -90,0,22.5,41,22.6,38.6266666667,23.1,38.76,22.1,40.2,20.9266666667,44.59,17.0966666667,14.8333333333,22,36.9,23.7,42.09,21,41.1633333333,14.9,750.75,67.5,5,40,8.9,3.0672461493,3.0672461493 -100,0,22.5,41.06,22.5333333333,38.76,23.2,38.79,22.1,40.26,20.9371428571,44.6371428571,16.8233333333,15.6666666667,22,36.9,23.7,42.09,20.9266666667,41.2,15.0333333333,750.7,67,4.6666666667,40,8.9333333333,12.1105274069,12.1105274069 -80,0,22.5,41.09,22.5666666667,38.9,23.2,38.79,22.1,40.29,21,44.7,17.0966666667,15.9266666667,22.1,37.09,23.754,42.09,20.9725,41.2675,15.1666666667,750.65,66.5,4.3333333333,40,8.9666666667,15.1930510881,15.1930510881 -80,0,22.5,41.1633333333,22.5,38.9666666667,23.2,38.8633333333,22.1,40.3633333333,21,44.7,17.4266666667,14.9,22.0333333333,37.09,23.79,42.09,20.9633333333,41.3633333333,15.3,750.6,66,4,40,9,11.8418070371,11.8418070371 -80,0,22.5,41.2,22.5,39,23.2,38.79,22.1,40.4,21.0571428571,44.7514285714,17.5,14.2933333333,22.1,37.09,23.83,42.08,21,41.4,15.1833333333,750.6166666667,67.1666666667,3.8333333333,40,9.1166666667,3.5281510674,3.5281510674 -310,0,22.5,41.26,22.5,39,23.2,38.9,22.1,40.4666666667,21.1,44.79,17.5333333333,14.2333333333,22.1333333333,37.09,23.89,42.2128571429,21,41.4,15.0666666667,750.6333333333,68.3333333333,3.6666666667,40,9.2333333333,37.9862924572,37.9862924572 -360,0,22.5,41.4333333333,22.5,39.1266666667,23.2,38.9,22.1,40.5,21.1285714286,44.79,17.5333333333,14.4333333333,22.2,37.09,23.89,42.332,21,41.4333333333,14.95,750.65,69.5,3.5,40,9.35,5.7667802321,5.7667802321 -370,0,22.5666666667,42.1,22.4266666667,39.3333333333,23.1666666667,38.9333333333,22.1,40.56,21.2,45.134,17.4,14,22.2,37.2,23.89,42.5571428571,21,41.56,14.8333333333,750.6666666667,70.6666666667,3.3333333333,40,9.4666666667,38.8566978392,38.8566978392 -130,0,22.6,43.4333333333,22.39,40.0933333333,23.1,39.05,22.1,40.89,21.2,45.7142857143,16.9933333333,14.2666666667,22.2,37.2,23.89,42.7,21,41.6266666667,14.7166666667,750.6833333333,71.8333333333,3.1666666667,40,9.5833333333,2.9997195932,2.9997195932 -90,0,22.6666666667,45.6933333333,22.39,41.6266666667,23.1,39.3333333333,22.1666666667,41.03,21.2,46.918,16.6333333333,15.3933333333,22.2,37.2,23.89,42.6242857143,21,41.9,14.6,750.7,73,3,40,9.7,9.7689281683,9.7689281683 -110,0,22.7,46.2966666667,22.3233333333,43.1666666667,23.1333333333,39.73,22.1666666667,41.2666666667,21.2257142857,48.0228571429,16.76,15.5266666667,22.2,37.2,23.89,42.518,21,42.03,14.7166666667,750.6833333333,72.3333333333,2.6666666667,40,9.6833333333,29.8319514259,29.8319514259 -110,0,22.76,45.6966666667,22.3233333333,43.6333333333,23.2,39.99,22.125,41.57,21.2,48.29,16.5966666667,15.1,22.2,37.2,23.89,42.59,21,42.09,14.8333333333,750.6666666667,71.6666666667,2.3333333333,40,9.6666666667,33.7779218098,33.7779218098 -100,0,22.8233333333,48.4,22.26,43.8266666667,23.23,40.3,22.2,41.76,21.2,48.2771428571,16.2633333333,15.56,22.2,37.26,23.89,42.7,21,42.03,14.95,750.65,71,2,40,9.65,25.3045061021,25.3045061021 -100,10,22.89,47.7333333333,22.2,43.8266666667,23.29,40.56,22.2,41.9,21.2,48.24,15.9333333333,16.13,22.2,37.29,23.89,42.91,21,42.09,15.0666666667,750.6333333333,70.3333333333,1.6666666667,40,9.6333333333,1.1659756885,1.1659756885 -90,0,22.8566666667,46.6233333333,22.0666666667,43.6333333333,23.29,40.7,22.1333333333,41.9666666667,21.2,48.4,15.6666666667,16.7233333333,22.1583333333,37.3725,23.89,42.9966666667,21,42.09,15.1833333333,750.6166666667,69.6666666667,1.3333333333,40,9.6166666667,45.5211513559,45.5211513559 -130,10,22.79,45.9475,22,43.2925,23.23,40.7,22.1,42,21.14,48.44,15.4333333333,17.4933333333,22.1,37.4,23.89,42.9,21,42.09,15.3,750.6,69,1,40,9.6,32.2405862971,32.2405862971 -140,30,22.79,45.5,21.9266666667,43.09,23.2,40.73,22.1,42,21.1142857143,49.2928571429,15.0975,18.67,22.1,37.4666666667,23.9214285714,42.9,21,42.09,15.05,750.5666666667,71.3333333333,0.8333333333,40,9.8333333333,7.8459232813,7.8459232813 -110,20,22.79,45.2233333333,21.89,43.1266666667,23.2,40.73,22.1333333333,42.6333333333,21.1,50.076,14.83,20.1333333333,22.1,37.5666666667,23.89,43.44,21,42.09,14.8,750.5333333333,73.6666666667,0.6666666667,40,10.0666666667,17.5812287838,17.5812287838 -110,30,22.79,45.03,21.8233333333,43.26,23.2,40.7,22.2,42.9666666667,21.1,50.1428571429,14.4633333333,23.3666666667,22.1,37.8333333333,23.9371428571,43.6242857143,20.9633333333,42.1266666667,14.55,750.5,76,0.5,40,10.3,21.9872350805,21.9872350805 -120,20,22.79,45,21.76,43.4333333333,23.1333333333,40.7,22.23,43.2666666667,21.1,49.754,14.2566666667,24.5666666667,22.0666666667,37.9,23.89,43.572,20.9633333333,42.2,14.3,750.4666666667,78.3333333333,0.3333333333,40,10.5333333333,7.0634641917,7.0634641917 -120,20,22.79,44.9333333333,21.7,43.5,23.1333333333,40.79,22.29,43.4,21.1428571429,49.34,14.0666666667,23.9,22,37.8266666667,23.89,43.3971428571,20.89,42.1633333333,14.05,750.4333333333,80.6666666667,0.1666666667,40,10.7666666667,10.6725812191,10.6725812191 -100,20,22.79,44.76,21.6666666667,43.56,23.1333333333,40.79,22.3233333333,43.3333333333,21.16,48.636,13.9266666667,23.3666666667,22,37.7,23.89,43.254,20.9175,41.97,13.8,750.4,83,0,40,11,29.9321131781,29.9321131781 -120,30,22.79,44.7,21.6,43.5,23.1,40.79,22.39,43.0666666667,21.2,47.9285714286,13.66,22.6966666667,22,37.5666666667,23.89,43.0714285714,20.9266666667,41.73,13.7166666667,750.4666666667,80.5,0.6666666667,40,10.4166666667,33.1599015393,33.1599015393 -100,10,22.7,44.6,21.5666666667,43.5,23.1,40.79,22.39,42.8633333333,21.16,47.356,13.46,23.1566666667,22,37.4666666667,23.89,43.054,20.89,41.4666666667,13.6333333333,750.5333333333,78,1.3333333333,40,9.8333333333,15.7159860595,15.7159860595 -110,0,22.7,44.2666666667,21.5,43.5,23.1,40.76,22.4633333333,42.79,21.1857142857,47.0842857143,13.16,24.2233333333,21.9266666667,37.4,23.89,43.2642857143,20.8233333333,41.2666666667,13.55,750.6,75.5,2,40,9.25,23.2668020064,23.2668020064 -110,20,22.73,43.9666666667,21.5,43.5,23.1,40.7,22.5,42.6,21.2,46.816,13.1,24.8233333333,21.89,37.4,23.89,43.054,20.89,41.1333333333,13.4666666667,750.6666666667,73,2.6666666667,40,8.6666666667,34.6858328441,34.6858328441 -100,20,22.73,43.8266666667,21.5,43.56,23.1,40.7,22.5,42.3266666667,21.2,46.5957142857,12.9333333333,24.39,21.89,37.26,23.89,42.7242857143,20.8233333333,40.86,13.3833333333,750.7333333333,70.5,3.3333333333,40,8.0833333333,20.396943693,20.396943693 -100,20,22.7,43.6633333333,21.39,43.4,23.025,40.7,22.5,42.26,21.2,46.345,12.6666666667,24.8633333333,21.89,37.1266666667,23.89,42.378,20.79,40.56,13.3,750.8,68,4,40,7.5,7.5312403147,7.5312403147 -60,30,22.7,43.53,21.39,43.4,23,40.7,22.5,42.1266666667,21.2,46.1942857143,12.2933333333,25.9666666667,21.89,37,23.8185714286,42.0257142857,20.79,40.4333333333,13.2,750.8333333333,68,4,40,7.3833333333,42.8959257901,42.8959257901 -80,20,22.7,43.6333333333,21.3566666667,43.4,23.0333333333,40.7,22.5333333333,42.09,21.2,46.09,12.0333333333,27.3666666667,21.89,37,23.79,42.09,20.79,40.4,13.1,750.8666666667,68,4,40,7.2666666667,34.7282697679,34.7282697679 -60,20,22.7,44.0266666667,21.29,43.4666666667,23.1,40.76,22.6,42.09,21.18,46.036,11.69,29.4266666667,21.89,36.9666666667,23.79,42.1371428571,20.73,40.4,13,750.9,68,4,40,7.15,36.2249227008,36.2249227008 -70,20,22.7,44,21.2,43.4333333333,23.1,40.76,22.6666666667,42.09,21.1428571429,46,11.63,31.2333333333,21.89,36.9,23.79,42.09,20.7,40.73,12.9,750.9333333333,68,4,40,7.0333333333,41.9563195203,41.9563195203 -70,20,22.7,44.0666666667,21.1333333333,43.6333333333,23.1666666667,40.7,22.7,42.06,21.1,45.9,11.6,32.2633333333,21.89,36.9,23.7257142857,42.1214285714,20.7,40.93,12.8,750.9666666667,68,4,40,6.9166666667,20.5461213016,20.5461213016 -50,30,22.6,43.76,21.1,43.79,23.2,40.7,22.7,42,21.1,45.9,11.6,33.2633333333,21.89,36.8266666667,23.7,42.236,20.79,41.03,12.7,751,68,4,40,6.8,25.762373372,25.762373372 -60,20,22.6,43.7,21.1,43.8633333333,23.2,40.6266666667,22.7,42,21.1,45.9,11.6,34.095,21.89,36.79,23.6142857143,42.2642857143,20.79,41.1633333333,12.5833333333,751.05,68.6666666667,4,40,6.8333333333,48.5518552363,48.5518552363 -60,20,22.6,43.7,20.945,43.845,23.2,40.6266666667,22.7,42,21.1,45.9,11.4633333333,34.83,21.89,36.79,23.58,42.29,20.79,41.29,12.4666666667,751.1,69.3333333333,4,40,6.8666666667,17.4281067913,17.4281067913 -70,20,22.6,43.7,20.89,44.03,23.2,40.6266666667,22.7,41.9666666667,21.1,45.9,11.33,35.4233333333,21.89,36.79,23.5,42.44,20.79,41.3633333333,12.35,751.15,70,4,40,6.9,20.8517277846,20.8517277846 -60,20,22.5333333333,43.76,20.89,44.09,23.1333333333,40.59,22.76,41.9,21.0857142857,45.8842857143,11.0666666667,36.7333333333,21.89,36.79,23.5,42.79,20.79,41.53,12.2333333333,751.2,70.6666666667,4,40,6.9333333333,38.0810369272,38.0810369272 -70,10,22.5,43.76,20.8566666667,44.1633333333,23.1333333333,40.59,22.79,41.9,21.06,45.876,10.8666666667,37.6,21.89,36.79,23.5,42.9928571429,20.79,41.59,12.1166666667,751.25,71.3333333333,4,40,6.9666666667,29.0214959416,29.0214959416 -60,0,22.5,43.7,20.79,44.1633333333,23.2,40.59,22.79,41.8266666667,21.1,46,10.53,38.13,21.89,36.79,23.5,43.112,20.79,41.7666666667,12,751.3,72,4,40,7,26.5300055151,26.5300055151 -60,0,22.5,43.7,20.7,44.3266666667,23.2,40.59,22.79,41.6333333333,21.04,45.94,10.2566666667,38.8633333333,21.89,36.79,23.4685714286,43.0671428571,20.79,41.9975,11.8333333333,751.3166666667,73.1666666667,4.3333333333,40,7.0666666667,43.7534406199,43.7534406199 -50,0,22.5,43.8333333333,20.7,44.4,23.2,40.56,22.73,41.36,21.1,45.9857142857,9.8966666667,39.4666666667,21.8233333333,36.73,23.39,42.754,20.79,42.1633333333,11.6666666667,751.3333333333,74.3333333333,4.6666666667,40,7.1333333333,10.0351831294,10.0351831294 -60,0,22.4633333333,43.9666666667,20.6,44.29,23.2,40.5,22.7,41.1633333333,21.04,45.834,9.5633333333,40.4,21.79,36.7,23.39,42.83125,20.79,42.4333333333,11.5,751.35,75.5,5,40,7.2,46.0652320995,46.0652320995 -50,0,22.39,43.8266666667,20.6,44.3633333333,23.23,40.5666666667,22.6333333333,40.9633333333,21,45.7257142857,9.2633333333,42.6333333333,21.8566666667,36.7,23.3328571429,43,20.79,42.56,11.3333333333,751.3666666667,76.6666666667,5.3333333333,40,7.2666666667,24.645329779,24.645329779 -50,0,22.39,43.7,20.5,44.3266666667,23.29,40.7,22.6,40.79,21,45.7,9.0633333333,43.6333333333,21.79,36.6633333333,23.29,43,20.79,42.6266666667,11.1666666667,751.3833333333,77.8333333333,5.6666666667,40,7.3333333333,5.5649852147,5.5649852147 -50,0,22.39,43.7,20.5,44.4,23.29,40.7,22.6,40.73,21,45.6057142857,8.86,45.1566666667,21.79,36.59,23.2257142857,42.9571428571,20.79,42.76,11,751.4,79,6,40,7.4,30.5561784655,30.5561784655 -50,0,22.39,43.7,20.39,44.4333333333,23.29,40.76,22.5,40.59,21,45.572,8.7266666667,46.49,21.79,36.59,23.16,43.236,20.79,42.8266666667,10.6833333333,751.45,80.1666666667,5.6666666667,40,7.3,16.0042979056,16.0042979056 -60,0,22.3233333333,43.7,20.39,44.5,23.34,40.79,22.5,40.59,21,45.5,8.5666666667,47.6333333333,21.79,36.59,23.1,43.6128571429,20.79,42.9666666667,10.3666666667,751.5,81.3333333333,5.3333333333,40,7.2,36.2886715448,36.2886715448 -60,0,22.29,43.59,20.29,44.53,23.39,40.79,22.39,40.4,21,45.4,8.4266666667,48.7666666667,21.79,36.53,23.1,44.018,20.79,43.09,10.05,751.55,82.5,5,40,7.1,6.1137204291,6.1137204291 -50,0,22.29,43.59,20.23,44.53,23.39,40.79,22.39,40.3266666667,21,45.4,8.39,50.0266666667,21.79,36.5,23.1,44.3685714286,20.79,43.1633333333,9.7333333333,751.6,83.6666666667,4.6666666667,40,7,25.2192053827,25.2192053827 -60,0,22.26,43.4666666667,20.2,44.53,23.39,40.79,22.34,40.245,21,45.334,8.33,49.7666666667,21.79,36.5,23,44.536,20.79,43.2,9.4166666667,751.65,84.8333333333,4.3333333333,40,6.9,25.1819357742,25.1819357742 -50,0,22.2,43.4,20.2,44.59,23.39,40.79,22.29,40.2,21,45.29,8.145,49.845,21.79,36.5,23,44.6971428571,20.79,43.26,9.1,751.7,86,4,40,6.8,41.7909815558,41.7909815558 -50,0,22.2,43.4666666667,20.1,44.7,23.4266666667,40.8266666667,22.29,40.1266666667,21,45.29,7.9666666667,50.2,21.79,36.5,23,44.79,20.79,43.3266666667,8.8833333333,751.6833333333,86.5,3.6666666667,38.1666666667,6.6833333333,47.5335158408,47.5335158408 -50,0,22.2,43.4,20.1,44.7,23.5,40.9,22.26,40.06,21,45.2771428571,7.8333333333,50.3333333333,21.7,36.4666666667,22.9685714286,44.8971428571,20.79,43.4,8.6666666667,751.6666666667,87,3.3333333333,36.3333333333,6.5666666667,23.1580842636,23.1580842636 -50,0,22.15,43.4,20,44.645,23.4266666667,40.73,22.2,40,21,45.2,7.6566666667,50.36,21.7,36.4,22.89,45.236,20.79,43.4333333333,8.45,751.65,87.5,3,34.5,6.45,46.6951859067,46.6951859067 -50,0,22.1,43.4,19.89,44.7,23.5,40.79,22.2,40,21,45.134,7.53,51.1,21.7,36.4,22.89,45.2385714286,20.79,43.5,8.2333333333,751.6333333333,88,2.6666666667,32.6666666667,6.3333333333,11.7996073444,11.7996073444 -40,0,22.1,43.3266666667,19.89,44.76,23.4266666667,40.8266666667,22.2,40,20.9528571429,45.09,7.4666666667,51.6633333333,21.7,36.3266666667,22.89,45.096,20.79,43.5,8.0166666667,751.6166666667,88.5,2.3333333333,30.8333333333,6.2166666667,34.4672922394,34.4672922394 -50,0,22.0666666667,43.26,19.79,44.7,23.5,40.9,22.1666666667,39.9,20.89,45.09,7.26,51.2566666667,21.7,36.29,22.89,44.9,20.79,43.56,7.8,751.6,89,2,29,6.1,30.2108351258,30.2108351258 -60,0,22.0666666667,43.26,19.79,44.7,23.4633333333,40.8633333333,22.1,39.9,20.89,45.0128571429,7.0266666667,50.99,21.7,36.23,22.85,44.82,20.79,43.6266666667,7.8,751.6,89,2.1666666667,30.8333333333,6.0833333333,40.5669042841,40.5669042841 -50,0,22,43.1633333333,19.79,44.7,23.4633333333,40.8633333333,22.1,39.8633333333,20.89,44.98,6.6933333333,50.73,21.7,36.26,22.79,44.5928571429,20.79,43.7,7.8,751.6,89,2.3333333333,32.6666666667,6.0666666667,12.6359486138,12.6359486138 -60,0,22,43.1633333333,19.73,44.7,23.5,40.8633333333,22.1,39.79,20.89,44.9,6.56,51.09,21.7,36.2,22.79,44.48,20.79,43.7,7.8,751.6,89,2.5,34.5,6.05,15.2574515669,15.2574515669 -50,0,22,43.1633333333,19.7,44.76,23.5,40.79,22.1,39.79,20.89,44.79,6.3666666667,51.1633333333,21.7,36.2,22.79,44.4971428571,20.79,43.79,7.8,751.6,89,2.6666666667,36.3333333333,6.0333333333,21.1381360772,21.1381360772 -60,0,21.9266666667,43.09,19.7,44.7,23.5,40.79,22.0333333333,39.73,20.89,44.7385714286,6.1566666667,51.6933333333,21.7,36.2,22.79,44.46,20.79,43.79,7.8,751.6,89,2.8333333333,38.1666666667,6.0166666667,35.0833171397,35.0833171397 -50,0,21.89,43.09,19.6,44.6633333333,23.5,40.79,22,39.7,20.89,44.7,6.09,52.4333333333,21.6666666667,36.06,22.7257142857,44.3528571429,20.79,43.9333333333,7.8,751.6,89,3,40,6,14.3672180711,14.3672180711 -50,0,21.89,43.09,19.6,44.6633333333,23.5,40.79,22,39.7,20.89,44.7,6.1233333333,53.3933333333,21.65,36.045,22.772,44.316,20.79,44,7.7,751.5666666667,88.8333333333,2.8333333333,40,5.9,47.7467533667,47.7467533667 -50,0,21.89,43.09,19.5,44.73,23.5,40.79,22,39.7,20.89,44.59,6.19,53.8,21.6,35.9333333333,22.7,44.1685714286,20.8233333333,44.1266666667,7.6,751.5333333333,88.6666666667,2.6666666667,40,5.8,18.311093282,18.311093282 -50,0,21.89,43.03,19.5,44.79,23.4633333333,40.76,21.9266666667,39.7,20.89,44.59,6.09,53.4,21.6,35.9,22.7,44,20.8233333333,44.1266666667,7.5,751.5,88.5,2.5,40,5.7,20.3563864459,20.3563864459 -60,0,21.89,43,19.39,44.79,23.39,40.6175,21.9633333333,39.6266666667,20.89,44.572,5.9333333333,52.79,21.6,35.9,22.7,43.9271428571,20.8233333333,44.23,7.4,751.4666666667,88.3333333333,2.3333333333,40,5.6,49.042969814,49.042969814 -60,0,21.89,43,19.39,44.79,23.39,40.6633333333,21.89,39.7,20.89,44.5,5.756,53.23,21.6,35.9,22.68,43.75,20.8233333333,44.29,7.3,751.4333333333,88.1666666667,2.1666666667,40,5.5,18.4419310885,18.4419310885 -50,0,21.8566666667,42.9666666667,19.39,44.76,23.39,40.59,21.89,39.7,20.89,44.5,5.59,53.73,21.6,35.9,22.6,43.5925,20.8566666667,44.4,7.2,751.4,88,2,40,5.4,36.5921620047,36.5921620047 -60,0,21.79,42.9,19.39,44.76,23.39,40.59,21.89,39.6633333333,20.8614285714,44.4142857143,5.59,53.93,21.6,35.812,22.6,43.79,20.79,44.4,7.0166666667,751.4333333333,88.5,1.8333333333,40,5.3,0.7983182324,0.7983182324 -60,0,21.79,42.79,19.29,44.79,23.39,40.59,21.89,39.6633333333,20.87,44.378,5.6233333333,54.4666666667,21.6,35.79,22.6,43.656,20.8233333333,44.53,6.8333333333,751.4666666667,89,1.6666666667,40,5.2,44.454597123,44.454597123 -40,0,21.79,42.79,19.29,44.79,23.39,40.59,21.8566666667,39.56,20.79,44.29,5.7633333333,55.2666666667,21.5666666667,35.79,22.5857142857,43.4557142857,20.8233333333,44.53,6.65,751.5,89.5,1.5,40,5.1,24.7661710368,24.7661710368 -50,0,21.79,42.76,19.2,44.7,23.4266666667,40.59,21.79,39.56,20.85,44.32,5.9333333333,55.9333333333,21.5666666667,35.79,22.5,43.316,20.89,44.7,6.4666666667,751.5333333333,90,1.3333333333,40,5,46.1884261225,46.1884261225 -50,0,21.79,42.7,19.2,44.73,23.4266666667,40.53,21.79,39.59,20.79,44.2257142857,6.06,56.1933333333,21.5,35.73,22.5,43.1685714286,20.8233333333,44.7,6.2833333333,751.5666666667,90.5,1.1666666667,40,4.9,46.0243479232,46.0243479232 -80,0,21.73,42.6266666667,19.2,44.79,23.39,40.5,21.79,39.59,20.79,44.2,6.19,56.59,21.5,35.736,22.5,43.134,20.79,44.7,6.1,751.6,91,1,40,4.8,29.6970027033,29.6970027033 -60,10,21.73,42.73,19.2,44.9566666667,23.39,40.5,21.79,39.59,20.79,44.2,6.2633333333,56.7233333333,21.5,35.7225,22.5,43.1057142857,20.8566666667,44.76,6.1666666667,751.6,91.3333333333,1,40,4.9,4.6030270983,4.6030270983 -40,0,21.79,42.8633333333,19.1333333333,45.5633333333,23.3566666667,40.3633333333,21.79,39.6633333333,20.79,44.236,6.2266666667,56.7666666667,21.5,35.6755555556,22.5,43.072,20.8233333333,44.7666666667,6.2333333333,751.6,91.6666666667,1,40,5,13.8781235437,13.8781235437 -40,0,21.79,42.8633333333,19.1,46.0666666667,23.23,40.0966666667,21.7,39.8266666667,20.79,44.3528571429,6.3,57.1,21.5,35.7,22.5,42.9285714286,20.89,44.8266666667,6.3,751.6,92,1,40,5.1,30.3763392614,30.3763392614 -40,10,21.79,42.79,19.1,46.26,23.2,39.8633333333,21.7,39.9666666667,20.79,44.4,6.3,57.2,21.5,35.7,22.5,42.9,20.79,44.79,6.3666666667,751.6,92.3333333333,1,40,5.2,10.4164164281,10.4164164281 -50,0,21.79,42.79,19.1,46.3266666667,23.1333333333,39.79,21.7,40.09,20.79,44.4542857143,6.2266666667,57,21.5,35.7,22.4214285714,43.0057142857,20.8233333333,44.9,6.4333333333,751.6,92.6666666667,1,40,5.3,24.6517780935,24.6517780935 -70,10,21.79,42.73,19.1,46.4666666667,23.1,39.79,21.7,40.1633333333,20.8525,45.29625,6.4633333333,57.9566666667,21.5,35.7,22.434,43.272,20.89,44.9,6.5,751.6,93,1,40,5.4,11.1899029696,11.1899029696 -70,0,21.79,42.76,19.1,46.59,23.0333333333,39.73,21.7,40.29,20.89,46.174,6.73,58.3633333333,21.5,35.7,22.39,43.2257142857,20.79,44.76,6.65,751.6166666667,92.8333333333,1.1666666667,37.6666666667,5.5166666667,33.9068478323,33.9068478323 -60,10,21.79,42.76,19.1,46.59,23,39.76,21.7,40.29,20.8328571429,45.71,7,58.5,21.5,35.7,22.39,43.156,20.79,44.7,6.8,751.6333333333,92.6666666667,1.3333333333,35.3333333333,5.6333333333,1.1394796544,1.1394796544 -50,0,21.79,42.76,19.1,46.4666666667,23,39.7,21.7,40.2,20.79,45.338,7.09,58.35,21.4633333333,35.6633333333,22.39,42.88,20.79,44.5266666667,6.95,751.65,92.5,1.5,33,5.75,43.2879207074,43.2879207074 -50,0,21.8566666667,42.76,19.1,46.4,23,39.7,21.7,40.1266666667,20.79,44.9657142857,7.045,57.65,21.39,35.53,22.35,42.616,20.79,44.2666666667,7.1,751.6666666667,92.3333333333,1.6666666667,30.6666666667,5.8666666667,17.0117023168,17.0117023168 -70,10,21.8566666667,42.6633333333,19.1,46.29,23,39.7,21.7,40.09,20.79,44.554,7.03,57.8233333333,21.35,35.554,22.3185714286,42.4285714286,20.79,43.93,7.25,751.6833333333,92.1666666667,1.8333333333,28.3333333333,5.9833333333,38.1238073227,38.1238073227 -70,0,21.79,42.53,19.1666666667,46.23,23,39.6266666667,21.7,40.09,20.79,44.3,7.23,58.49,21.3455555556,35.5,22.29,42.254,20.79,43.5966666667,7.4,751.7,92,2,26,6.1,19.5668058237,19.5668058237 -70,0,21.79,42.3633333333,19.2,45.9666666667,23,39.5,21.7,40.29,20.79,44.096,7.3666666667,57.8,21.29,35.5,22.29,42.0928571429,20.79,43.2233333333,7.55,751.75,91.8333333333,2.1666666667,26.3333333333,6.2333333333,30.9835569467,30.9835569467 -80,10,21.79,42.23,19.2,45.7666666667,23,39.4333333333,21.7,40.5,20.79,43.8685714286,7.3,57.5266666667,21.29,35.5,22.29,41.98,20.79,43.03,7.7,751.8,91.6666666667,2.3333333333,26.6666666667,6.3666666667,1.2032558792,1.2032558792 -80,0,21.79,42.1633333333,19.2,45.56,23,39.4,21.7,40.56,20.79,43.656,7.4333333333,57.9266666667,21.29,35.5,22.29,41.8214285714,20.79,42.6933333333,7.85,751.85,91.5,2.5,27,6.5,13.7811175548,13.7811175548 -60,30,21.79,42.03,19.26,45.4333333333,23,39.3266666667,21.7,40.26,20.79,43.4557142857,7.56,58.26,21.29,35.5,22.254,41.656,20.79,42.3,8,751.9,91.3333333333,2.6666666667,27.3333333333,6.6333333333,18.7418015907,18.7418015907 -70,10,21.79,41.76,19.29,45.06,23,39.26,21.7,40.26,20.79,43.334,7.9,58.6933333333,21.29,35.59,22.2,41.4985714286,20.79,42.0266666667,8.15,751.95,91.1666666667,2.8333333333,27.6666666667,6.7666666667,13.6869073496,13.6869073496 -70,0,21.79,41.7225,19.315,45,23,39.2,21.73,40.29,20.79,43.2257142857,8.3666666667,59.2333333333,21.29,35.59,22.2,41.378,20.79,41.8266666667,8.3,752,91,3,28,6.9,32.3273616377,32.3273616377 -70,0,21.79,41.53,19.53,44.5266666667,23.0666666667,39.0266666667,21.79,40.0966666667,20.79,43.09,9.2966666667,60.1566666667,21.23,35.59,22.2,41.29,20.79,41.49,8.7166666667,752.0166666667,89,2.8333333333,30,6.9666666667,45.9369316464,45.9369316464 -50,0,21.7,41.0266666667,19.7,43.5633333333,23.0666666667,38.7666666667,21.6666666667,39.4333333333,20.79,42.9985714286,9.9633333333,59.6966666667,21.23,35.59,22.2,41.254,20.93,41.1566666667,9.1333333333,752.0333333333,87,2.6666666667,32,7.0333333333,35.3553310153,35.3553310153 -70,0,21.7,40.9,19.76,43.1566666667,23.1,38.5266666667,21.6666666667,39.5,20.79,42.9,10.63,55.6,21.29,35.7,22.1571428571,41.2771428571,21.93,40.6666666667,9.55,752.05,85,2.5,34,7.1,17.4470443279,17.4470443279 -60,0,21.7,40.9333333333,19.89,43.09,23.1,38.4,21.73,39.59,20.79,42.9,11.09,49.1333333333,21.29,35.76,22.1625,41.29,23.2633333333,39.5333333333,9.9666666667,752.0666666667,83,2.3333333333,36,7.1666666667,33.3910021815,33.3910021815 -60,0,21.7,41,20.03,43.09,23.1,38.29,21.8566666667,39.7233333333,20.79,42.9,11.6,43.4,21.3233333333,35.7,22.14,41.29,23.84,37.95,10.3833333333,752.0833333333,81,2.1666666667,38,7.2333333333,21.8739572912,21.8739572912 -70,0,21.7,41.1266666667,20.2633333333,43.03,23.1,38.29,22.0333333333,39.73,20.79,42.9571428571,12,39.9933333333,21.3233333333,35.76,22.1,41.29,23.26,37.5,10.8,752.1,79,2,40,7.3,19.2885059514,19.2885059514 -60,0,21.76,41.26,20.8633333333,42.83,23.1,38.29,22.2266666667,39.79,20.79,43,12.43,36.6233333333,21.29,35.79,22.1,41.29,22.7333333333,37.96,11.0333333333,752.0833333333,78,2.1666666667,40,7.3333333333,33.3292066236,33.3292066236 -50,0,21.79,41.4333333333,21.8966666667,41.5566666667,23.1,38.29,22.4266666667,39.79,20.79,42.9285714286,12.8966666667,34.49,21.3566666667,35.79,22.1,41.29,22.3266666667,38.7266666667,11.2666666667,752.0666666667,77,2.3333333333,40,7.3666666667,41.4037591661,41.4037591661 -60,0,21.79,41.5,22.4966666667,40.63,23.1,38.4,22.5666666667,39.79,20.79,43,13.4,31.4266666667,21.39,35.79,22.1,41.29,22.0666666667,39.1933333333,11.5,752.05,76,2.5,40,7.4,30.6558480719,30.6558480719 -50,0,21.8233333333,41.6566666667,22.9933333333,39.7666666667,23.1,38.4666666667,22.73,39.76,20.8042857143,43.0128571429,13.9475,27.775,21.39,35.79,22.1,41.29,21.8566666667,39.6933333333,11.7333333333,752.0333333333,75,2.6666666667,40,7.4333333333,8.3264680696,8.3264680696 -50,0,21.89,41.79,23.3266666667,39.2266666667,23.1,38.53,22.8566666667,39.7,20.83,43.09,14.3233333333,24.3933333333,21.39,35.79,22.1,41.4,21.73,40.0266666667,11.9666666667,752.0166666667,74,2.8333333333,40,7.4666666667,10.9245968401,10.9245968401 -70,0,21.89,41.9,23.6633333333,38.6933333333,23.1,38.59,23.0333333333,39.7,20.8185714286,43.1214285714,14.7933333333,22.5633333333,21.39,35.79,22.1,41.3057142857,21.6666666667,40.4633333333,12.2,752,73,3,40,7.5,4.9590630922,4.9590630922 -60,0,21.89,41.9,23.93,38.36,23.1,38.745,23.1,39.6266666667,20.89,43.29,15.1266666667,19.8966666667,21.39,35.79,22.06,41.254,21.6,40.7233333333,12.4166666667,752,72,3,40,7.5,44.1567008034,44.1567008034 -70,0,22,41.9333333333,24.1333333333,38.1,23.1,38.79,23.23,39.5,20.89,43.3057142857,15.49,18.2233333333,21.39,35.79,22.1,41.29,21.5666666667,41.03,12.6333333333,752,71,3,40,7.5,45.2506078873,45.2506078873 -50,0,22,42,24.26,37.8266666667,23.1,38.8633333333,23.315,39.3975,20.89,43.4,15.5633333333,15.9633333333,21.39,35.79,22.06,41.254,21.5,41.1633333333,12.85,752,70,3,40,7.5,10.9178520739,10.9178520739 -60,0,22.1,42.09,24.29,37.76,23.1,38.9,23.39,39.29,20.912,43.4,15.4633333333,14.8966666667,21.4266666667,35.8266666667,22.0714285714,41.2642857143,21.5,41.3266666667,13.0666666667,752,69,3,40,7.5,8.053906553,8.053906553 -60,0,22.1,42.09,24.23,37.6266666667,23.1,38.9,23.39,39.1633333333,20.9528571429,43.3528571429,15.2566666667,14.49,21.5,35.9,22.04,41.236,21.5,41.4666666667,13.2833333333,752,68,3,40,7.5,48.1773303472,48.1773303472 -50,0,22.1,42.09,24.2,37.59,23.1333333333,39,23.4633333333,39.1633333333,21,43.4,15.1666666667,15.4933333333,21.5,35.79,22.0714285714,41.2,21.39,41.4333333333,13.5,752,67,3,40,7.5,22.8335639229,22.8335639229 -60,0,22.1666666667,42.1633333333,24.2675,37.5675,23.1333333333,39,23.5,39.2,20.9685714286,43.4,15.5,15.0333333333,21.5,35.79,22.1,41.2,21.39,41.56,13.5166666667,751.9833333333,66.3333333333,3,40,7.3666666667,20.5061983899,20.5061983899 -40,0,22.2,42.09,24.29,37.4333333333,23.1,39.09,23.5,39.1266666667,21,43.4,15.69,13.8666666667,21.5,35.79,22.1,41.2,21.3566666667,41.6266666667,13.5333333333,751.9666666667,65.6666666667,3,40,7.2333333333,13.874831493,13.874831493 -40,0,22.23,42.1266666667,24.3233333333,37.26,23.1666666667,39.1633333333,23.6,39.06,21,43.4,15.7633333333,13.6666666667,21.5666666667,35.79,22.1,41.2,21.3566666667,41.7,13.55,751.95,65,3,40,7.1,34.7862300579,34.7862300579 -40,0,22.29,42.2,24.39,37.1266666667,23.1,39.1266666667,23.6,39,21.1,43.5,15.7266666667,13.3,21.6333333333,35.73,22.1285714286,41.1685714286,21.29,41.79,13.5666666667,751.9333333333,64.3333333333,3,40,6.9666666667,35.3050902602,35.3050902602 -50,0,22.39,42.2,24.5,37.06,23.1,39.2,23.7,39.06,21.0714285714,43.4714285714,15.9333333333,12.8333333333,21.7,35.79,22.2,41.054,21.3566666667,41.8633333333,13.5833333333,751.9166666667,63.6666666667,3,40,6.8333333333,25.5637189955,25.5637189955 -60,0,22.39,42.1266666667,24.5,37,23.1,39.2,23.7,39,21.1,43.5,16.3933333333,11.89,21.73,35.7,22.2514285714,40.9857142857,21.29,41.9,13.6,751.9,63,3,40,6.7,32.4996483629,32.4996483629 -60,0,22.5,42.1633333333,24.6,36.8633333333,23.1,39.2,23.7,39,21.1,43.5,16.8666666667,11.4233333333,21.8566666667,35.7,22.35,40.878,21.29,41.9333333333,13.8833333333,751.8666666667,61.5,3.1666666667,40,6.5666666667,34.5253235777,34.5253235777 -60,0,22.5666666667,42.09,24.6,36.8633333333,23.1,39.29,23.76,39,21.1,43.5,17.4266666667,8.53,21.89,35.7,22.4685714286,40.7642857143,21.29,42,14.1666666667,751.8333333333,60,3.3333333333,40,6.4333333333,43.5191555764,43.5191555764 -50,0,22.5333333333,42,24.6,36.8633333333,23.1,39.29,23.7,38.9,21.1142857143,43.5642857143,17.6933333333,8.33,21.89,35.6266666667,22.5,40.7,21.29,42,14.45,751.8,58.5,3.5,40,6.3,49.2128699319,49.2128699319 -60,0,22.6,42,24.6,36.73,23.1333333333,39.29,23.7,38.8266666667,21.2,43.536,18.0666666667,6.8333333333,21.89,35.59,22.5,40.6842857143,21.29,42,14.7333333333,751.7666666667,57,3.6666666667,40,6.1666666667,49.4831302902,49.4831302902 -70,0,22.6,42,24.6,36.6633333333,23.2,39.29,23.7,38.7,21.2,43.5,18.2925,5.0675,21.89,35.53,22.5,40.59,21.29,41.9333333333,15.0166666667,751.7333333333,55.5,3.8333333333,40,6.0333333333,39.2927043489,39.2927043489 -60,0,22.6,42,24.6,36.6633333333,23.1666666667,39.4,23.6333333333,38.6266666667,21.2,43.5,18.4633333333,4.1233333333,21.89,35.4666666667,22.5,40.5642857143,21.29,41.9333333333,15.3,751.7,54,4,40,5.9,37.1448526974,37.1448526974 -60,0,22.6,42,24.4633333333,36.6633333333,23.1666666667,39.4666666667,23.6,38.59,21.2,43.5,18.5,3.6266666667,21.89,35.4,22.43125,40.4375,21.29,41.9,15.2,751.6833333333,54.3333333333,4,40,5.9166666667,45.7918955362,45.7918955362 -70,0,22.6,41.9333333333,24.3233333333,36.6633333333,23.2,39.4666666667,23.6,38.53,21.2,43.5,18.4266666667,3.9,21.89,35.29,22.5,40.5,21.29,41.9,15.1,751.6666666667,54.6666666667,4,40,5.9333333333,25.4882491427,25.4882491427 -60,0,22.6,41.9,24.26,36.76,23.2,39.425,23.6,38.53,21.2,43.4285714286,18.1933333333,3.9233333333,21.89,35.29,22.4371428571,40.4428571429,21.23,41.79,15,751.65,55,4,40,5.95,49.9910107465,49.9910107465 -60,0,22.6,41.9,24.1333333333,36.76,23.2,39.4333333333,23.5333333333,38.59,21.2,43.4,17.8,5.0633333333,21.89,35.245,22.39,40.4,21.29,41.79,14.9,751.6333333333,55.3333333333,4,40,5.9666666667,5.8033461566,5.8033461566 -60,0,22.6,41.8633333333,24.0666666667,36.9,23.26,39.4666666667,23.5,38.59,21.2,43.3057142857,17.4966666667,6.2933333333,21.89,35.29,22.39,40.4714285714,21.2,41.7,14.8,751.6166666667,55.6666666667,4,40,5.9833333333,39.856307907,39.856307907 -50,0,22.6,41.79,23.9266666667,36.9666666667,23.26,39.4666666667,23.4633333333,38.6633333333,21.2,43.29,17.0233333333,7.2266666667,21.89,35.29,22.39,40.5,21.2,41.7,14.7,751.6,56,4,40,6,28.6038281047,28.6038281047 -60,0,22.5333333333,41.79,23.76,37.1266666667,23.29,39.4666666667,23.39,38.59,21.2,43.29,16.5966666667,7.5666666667,21.89,35.29,22.3471428571,40.5,21.2,41.59,14.5833333333,751.6,57.1666666667,4,40,6.1666666667,0.0685754814,0.0685754814 -60,0,22.5333333333,41.79,23.6333333333,37.26,23.29,39.4666666667,23.39,38.6266666667,21.2,43.29,16.3233333333,8.2266666667,21.8233333333,35.29,22.39,40.5,21.2,41.59,14.4666666667,751.6,58.3333333333,4,40,6.3333333333,35.5805943953,35.5805943953 -60,0,22.5,41.7,23.5,37.4333333333,23.26,39.43,23.39,38.7,21.2,43.29,16.0966666667,8.9933333333,21.8566666667,35.4,22.3614285714,40.5,21.2,41.56,14.35,751.6,59.5,4,40,6.5,3.1011439743,3.1011439743 -60,0,22.5,41.7,23.4175,37.5225,23.2,39.29,23.3566666667,38.73,21.2,43.29,15.83,10.46,21.79,35.4,22.29,40.536,21.2,41.5,14.2333333333,751.6,60.6666666667,4,40,6.6666666667,12.8211561707,12.8211561707 -70,0,22.5,41.7,23.3233333333,37.6633333333,23.29,39.4,23.29,38.79,21.2,43.29,15.66,11.7333333333,21.79,35.4333333333,22.29,40.59,21.2,41.5,14.1166666667,751.6,61.8333333333,4,40,6.8333333333,11.7277118028,11.7277118028 -60,0,22.5,41.7,23.1666666667,37.8266666667,23.29,39.4,23.29,38.9,21.1625,43.29,15.6,11.4,21.79,35.5,22.29,40.59,21.2,41.5,14,751.6,63,4,40,7,9.9015462911,9.9015462911 -70,0,22.5,41.7,23.1,37.9666666667,23.29,39.4,23.23,38.9,21.14,43.29,15.6,7.76,21.79,35.4666666667,22.2257142857,40.5257142857,21.2,41.5,13.85,751.6,59.8333333333,4,40,6,14.403441234,14.403441234 -50,0,22.5,41.6633333333,23,38.03,23.29,39.3266666667,23.2,38.9,21.1428571429,43.2514285714,15.5333333333,3.6333333333,21.79,35.3266666667,22.254,40.416,21.175,41.475,13.7,751.6,56.6666666667,4,40,5,28.2199640991,28.2199640991 -60,0,22.5,41.59,22.9266666667,38.1633333333,23.29,39.29,23.2,38.9,21.1,43.236,15.63,3.4966666667,21.79,35.1633333333,22.2,40.1757142857,21.1,41.4,13.55,751.6,53.5,4,40,4,49.7897872701,49.7897872701 -60,0,22.5,41.5,22.8566666667,38.2,23.29,39.29,23.2,38.9,21.1,43.1214285714,15.8233333333,2.2966666667,21.79,35.03,22.2,40.016,21.2,41.29,13.4,751.6,50.3333333333,4,40,3,14.3855873728,14.3855873728 -50,0,22.5,41.4333333333,22.8566666667,38.2,23.29,39.2,23.2,38.8266666667,21.14,43,16.0333333333,1.7,21.79,34.9666666667,22.2,39.8685714286,21.1333333333,41.23,13.25,751.6,47.1666666667,4,40,2,4.0397190023,4.0397190023 -70,0,22.5,41.4,22.89,38.2,23.29,39.2,23.2,38.76,21.2,42.9428571429,16.2675,2.175,21.79,34.8266666667,22.2,39.7,21.1666666667,41.1266666667,13.1,751.6,44,4,40,1,34.3641540152,34.3641540152 -60,0,22.5,41.3266666667,22.89,38.1266666667,23.29,39.2,23.2,38.7,21.2,42.9,16.5966666667,4.5933333333,21.8233333333,34.7,22.2914285714,39.7642857143,21.1666666667,41.2,12.9833333333,751.55,46,3.8333333333,40,1.4666666667,31.9457169506,31.9457169506 -60,0,22.5,41.29,22.89,38.1266666667,23.29,39.2,23.2,38.59,21.2,42.9,16.1266666667,5.8966666667,21.9633333333,34.6266666667,22.39,39.7,21.1333333333,41.2,12.8666666667,751.5,48,3.6666666667,40,1.9333333333,8.8927255012,8.8927255012 -70,0,22.5,41.29,22.8233333333,38.1266666667,23.29,39.09,23.2,38.53,21.2,42.79,15.7266666667,7.8233333333,22.0333333333,34.59,22.4685714286,39.7,21.1333333333,41.1266666667,12.75,751.45,50,3.5,40,2.4,41.1430764245,41.1430764245 -90,0,22.6,41.3266666667,22.7,38.23,23.315,39.1725,23.2,38.5,21.2,42.79,15.4633333333,8.9,22.1666666667,34.59,22.6,39.7,21.2,41.09,12.6333333333,751.4,52,3.3333333333,40,2.8666666667,43.4860042413,43.4860042413 -390,0,22.6,41.4,22.7,38.3633333333,23.39,39.2,23.2,38.5,21.254,42.934,15.33,8.0333333333,22.2,34.59,22.6,39.7357142857,21.2,41.09,12.5166666667,751.35,54,3.1666666667,40,3.3333333333,23.6767242895,23.6767242895 -220,0,22.6333333333,41.5,22.6,38.53,23.3233333333,39.2,23.2,38.5,21.2514285714,43.1471428571,15.2633333333,8.2933333333,22.2675,34.59,22.678,40.076,21.2,41.09,12.4,751.3,56,3,40,3.8,20.8097581635,20.8097581635 -130,0,22.7,41.5,22.5333333333,38.6633333333,23.39,39.2,23.2,38.4666666667,21.29,43.4,15.13,8.16,22.29,34.59,22.79,40.4971428571,21.2,41.03,12.65,751.2833333333,56.5,3,40,4.1666666667,4.9351040623,4.9351040623 -470,0,22.7,41.53,22.5,38.9333333333,23.29,39.2,23.2,38.4,21.29,43.5371428571,14.86,7.8966666667,22.29,34.59,22.79,40.79,21.2,41,12.9,751.2666666667,57,3,40,4.5333333333,17.4308656715,17.4308656715 -620,0,22.7,41.7233333333,22.4266666667,39,23.29,39.2,23.2,38.4,21.31,43.612,14.86,8.6966666667,22.29,34.59,22.8757142857,41.3614285714,21.2,41,13.15,751.25,57.5,3,40,4.9,26.8145818496,26.8145818496 -770,0,22.8233333333,48.7633333333,22.39,39.8,23.29,39.23,23.2,38.3266666667,21.39,44.1528571429,14.9633333333,6.6266666667,22.3233333333,34.5,22.945,42.11875,21.2,41.0966666667,13.4,751.2333333333,58,3,40,5.2666666667,1.6886565485,1.6886565485 -130,0,22.9633333333,54.8233333333,22.39,42.9333333333,23.3566666667,39.5633333333,23.1666666667,38.26,21.39,46.2,14.63,6.7666666667,22.3233333333,34.5,23,42.44,21.2,41.5633333333,13.65,751.2166666667,58.5,3,40,5.6333333333,15.3201580164,15.3201580164 -140,0,23.05,54.69,22.34,47.245,23.5,40.6566666667,23.1666666667,38.2,21.3471428571,47.4357142857,14.1266666667,7.5666666667,22.29,34.4,23.0714285714,42.2957142857,21.2,42.4566666667,13.9,751.2,59,3,40,6,29.2301326524,29.2301326524 -590,0,23.1,51.9666666667,22.29,47.9666666667,23.5,40.79,23.1666666667,38.2,21.35,48.316,13.8666666667,8.56,22.29,34.4,23.1,42.736,21.2,43.0633333333,13.7166666667,751.1666666667,59.1666666667,3,40,5.8666666667,12.1348160319,12.1348160319 -750,0,23.1,50.4333333333,22.23,47.5666666667,23.5333333333,41.2333333333,23.1,38.2,21.39,49.2385714286,13.7633333333,9.7966666667,22.26,34.3633333333,23.1571428571,42.9414285714,21.2,43.6266666667,13.5333333333,751.1333333333,59.3333333333,3,40,5.7333333333,48.7504022312,48.7504022312 -450,0,23.1,49.7966666667,22.2,46.99,23.6666666667,42.5,23.1,38.23,21.434,49.4,13.63,10.4633333333,22.2,34.29,23.218,43.14,21.2,43.6725,13.35,751.1,59.5,3,40,5.6,9.9661190296,9.9661190296 -370,0,23.1,49.39,22.1333333333,46.79,24.0666666667,43.8666666667,23.1,38.29,21.5,49.1257142857,13.5666666667,11.0633333333,22.2,34.29,23.3185714286,44.0571428571,21.2,43.4633333333,13.1666666667,751.0666666667,59.6666666667,3,40,5.4666666667,24.7905158089,24.7905158089 -300,0,23.2,48.7966666667,22.0666666667,46.7233333333,24.3266666667,44.3333333333,23.1,38.3266666667,21.478,48.794,13.3666666667,11.3966666667,22.2,34.29,23.39,44.09,21.2,43.26,12.9833333333,751.0333333333,59.8333333333,3,40,5.3333333333,38.3447399712,38.3447399712 -290,0,23.2,48.33,22,46.53,24.6633333333,44.3633333333,23.1,38.4,21.39,48.59,13.1266666667,11.9,22.2,34.3633333333,23.4528571429,44.0771428571,21.2,43.0666666667,12.8,751,60,3,40,5.2,22.2174353665,22.2174353665 -280,0,23.2,47.6933333333,21.89,46.0633333333,24.79,44.0966666667,23.0666666667,38.26,21.39,48.46,12.8675,12.5475,22.1333333333,34.23,23.5,43.816,21.2,42.6933333333,12.55,751,62.1666666667,2.8333333333,40,5.4166666667,27.723822312,27.723822312 -180,0,23.2,47.3,21.89,45.53,25,43.6933333333,23,38.1266666667,21.3275,48.1975,12.5633333333,13.03,22.0666666667,34.06,23.5,43.3242857143,21.2,42.36,12.3,751,64.3333333333,2.6666666667,40,5.6333333333,2.3719512974,2.3719512974 -130,0,23.2,46.66,21.79,44.9,25.0666666667,43.2266666667,23,38,21.3042857143,49.1528571429,12.1266666667,13.6966666667,22,33.9333333333,23.5,42.96,21.1666666667,41.93,12.05,751,66.5,2.5,40,5.85,7.2368524503,7.2368524503 -130,0,23.1333333333,46.0666666667,21.73,44.5666666667,25.1,42.5333333333,23,37.9333333333,21.994,70.016,11.7933333333,14.3633333333,22,33.8633333333,23.5,42.6257142857,21.1666666667,41.73,11.8,751,68.6666666667,2.3333333333,40,6.0666666667,28.2945288345,28.2945288345 -500,0,23.1,45.4,21.7,44.1333333333,25.1,42.0666666667,23,37.9,22.5942857143,78.21,11.26,15.46,22,33.79,23.5,42.64,21.1666666667,41.59,11.55,751,70.8333333333,2.1666666667,40,6.2833333333,44.7957729222,44.7957729222 -340,0,23.1,44.9266666667,21.6333333333,43.86,25.1,41.8,22.9266666667,37.8266666667,22.16,79.16,10.7933333333,16.1333333333,21.9633333333,33.76,23.5,43.0642857143,21.1,41.6633333333,11.3,751,73,2,40,6.5,43.1800048682,43.1800048682 -300,0,23.1,44.5266666667,21.5666666667,43.5266666667,25.2633333333,42.53,22.89,37.7,21.8942857143,79.6857142857,10.3233333333,16.83,21.89,33.7,23.5,43.134,21.1,41.79,11.1666666667,751.05,72.8333333333,1.8333333333,40,6.35,44.314296823,44.314296823 -310,0,23.0333333333,44.1933333333,21.5,43.2666666667,25.4633333333,43.0633333333,22.89,37.7,21.79,78.88,10.0633333333,18.0966666667,21.89,33.7,23.5571428571,43.0928571429,21.1,41.5966666667,11.0333333333,751.1,72.6666666667,1.6666666667,40,6.2,42.9739754065,42.9739754065 -320,0,23,43.8333333333,21.39,42.9666666667,25.7633333333,43.23,22.89,37.7,21.7642857143,76.6385714286,9.6266666667,20.5333333333,21.89,33.7,23.6,42.94,21.1,41.16,10.9,751.15,72.5,1.5,40,6.05,24.1448027082,24.1448027082 -310,10,23,43.5,21.3233333333,42.8266666667,25.9633333333,43.6966666667,22.89,37.6633333333,21.66,72.46,9.3666666667,23.1266666667,21.8233333333,33.7,23.6,42.8685714286,21.1,40.6933333333,10.7666666667,751.2,72.3333333333,1.3333333333,40,5.9,28.5321183386,28.5321183386 -260,0,23,43.5,21.29,42.7,26.1333333333,43.8633333333,22.8233333333,37.53,21.6,69.5214285714,9.1266666667,24.76,21.79,33.7,23.6,42.7,21.1,39.8633333333,10.6333333333,751.25,72.1666666667,1.1666666667,40,5.75,10.4968337226,10.4968337226 -180,0,22.9266666667,43.5,21.23,42.6266666667,26.3266666667,43.73,22.79,37.5,21.58,67.134,8.9266666667,26.0933333333,21.79,33.7,23.6,42.5542857143,21.1,39.53,10.5,751.3,72,1,40,5.6,34.6917284187,34.6917284187 -90,0,22.89,43.1633333333,21.2,42.73,26.39,43.49,22.79,37.5,21.5,64.9971428571,8.66,27.99,21.79,33.7,23.64,42.576,21,39.1,10.1666666667,751.3166666667,74.3333333333,1.3333333333,40,5.7166666667,45.7667878713,45.7667878713 -90,0,22.89,43.0225,21.125,42.79,26.39,43.03,22.79,37.4,21.434,62.76,8.5333333333,28.93,21.73,33.7,23.6285714286,42.7571428571,21,38.8266666667,9.8333333333,751.3333333333,76.6666666667,1.6666666667,40,5.8333333333,7.3775604949,7.3775604949 -90,0,22.89,42.86,21.1,42.79,26.26,42.3333333333,22.79,37.4,21.4057142857,61.1671428571,8.3233333333,30.6233333333,21.7,33.7,23.64,42.94,21,38.56,9.5,751.35,79,2,40,5.95,34.1588321608,34.1588321608 -70,10,22.8566666667,42.6333333333,21,42.8266666667,26.1333333333,42,22.79,37.4,21.39,59.77,8.19,32.63,21.7,33.7,23.6571428571,43.1528571429,21,38.3975,9.1666666667,751.3666666667,81.3333333333,2.3333333333,40,6.0666666667,47.393294354,47.393294354 -80,20,22.79,42.4333333333,20.9266666667,42.9,26,41.6633333333,22.79,37.4666666667,21.3185714286,58.8185714286,8.0333333333,33.9566666667,21.7,33.8266666667,23.6,43.218,21,38.29,8.8333333333,751.3833333333,83.6666666667,2.6666666667,40,6.1833333333,0.438565237,0.438565237 -70,20,22.79,42.3333333333,20.89,42.9666666667,25.9266666667,41.1966666667,22.79,37.89,21.29,58.254,7.7975,34.795,21.7,33.9666666667,23.6,43.3971428571,21,38.7666666667,8.5,751.4,86,3,40,6.3,26.4453204814,26.4453204814 -60,20,22.79,42.1266666667,20.8233333333,42.9,25.79,40.8633333333,22.79,38.09,21.29,57.9814285714,7.6233333333,36.63,21.7,34.03,23.6,43.78375,21,39.0266666667,8.6333333333,751.4333333333,84.6666666667,2.8333333333,40,6.2,22.4082021741,22.4082021741 -60,20,22.73,42.1266666667,20.76,43.03,25.73,40.79,22.79,38.23,21.29,57.772,7.59,37.86,21.7,34.09,23.6,43.79,21,39.23,8.7666666667,751.4666666667,83.3333333333,2.6666666667,40,6.1,48.9464072511,48.9464072511 -70,20,22.73,42.1266666667,20.7,43.09,25.6666666667,40.6633333333,22.8566666667,38.43,21.29,57.6214285714,7.53,38.8,21.7,34.2,23.5571428571,43.9228571429,21,39.3633333333,8.9,751.5,82,2.5,40,6,20.9006134537,20.9006134537 -60,10,22.7,42.06,20.7,43.1266666667,25.6,40.59,22.89,38.59,21.2,57.7,7.5,39.9233333333,21.7,34.26,23.6,44.196,20.9633333333,39.53,9.0333333333,751.5333333333,80.6666666667,2.3333333333,40,5.9,49.0606889362,49.0606889362 -60,20,22.7,42,20.6333333333,43.1266666667,25.5,40.59,22.89,38.6633333333,21.2,57.8242857143,7.5,40.8633333333,21.7,34.4,23.5714285714,44.4971428571,20.9633333333,39.7233333333,9.1666666667,751.5666666667,79.3333333333,2.1666666667,40,5.8,18.7868845183,18.7868845183 -60,20,22.6333333333,41.9333333333,20.5,43.23,25.5,40.59,22.9266666667,38.73,21.2,57.812,7.5,42.4266666667,21.6333333333,34.4,23.56,44.736,21,39.79,9.3,751.6,78,2,40,5.7,16.3982796017,16.3982796017 -70,20,22.6333333333,41.9333333333,20.5,43.43,25.39,40.59,23,38.79,21.2,57.8214285714,7.56,42.5,21.7,34.4333333333,23.5571428571,44.9542857143,21,39.79,8.9666666667,751.6166666667,79.6666666667,2,40,5.65,41.9117549667,41.9117549667 -70,20,22.6,41.9,20.39,43.4633333333,25.39,40.59,23,38.9,21.2,57.554,7.59,43.3633333333,21.6333333333,34.4333333333,23.54,45.112,21,39.79,8.6333333333,751.6333333333,81.3333333333,2,40,5.6,36.9036182063,36.9036182063 -60,20,22.6,41.8266666667,20.39,43.59,25.34,40.59,23.025,38.975,21.2,57.3671428571,7.59,43.9633333333,21.6,34.45,23.5,45.2257142857,20.9266666667,39.79,8.3,751.65,83,2,40,5.55,25.4248212324,25.4248212324 -70,10,22.5666666667,41.79,20.29,43.7,25.26,40.59,23.1,39,21.2,57.14,7.56,43.26,21.6,34.5,23.39,45.2,21,39.9333333333,7.9666666667,751.6666666667,84.6666666667,2,40,5.5,26.1314993608,26.1314993608 -60,10,22.5,41.79,20.29,43.76,25.2,40.53,23.1,39.1566666667,21.2,56.8428571429,7.5,43.2,21.6,34.56,23.3757142857,45.34,20.9266666667,40,7.6333333333,751.6833333333,86.3333333333,2,40,5.45,32.5999909313,32.5999909313 -70,0,22.5,42,20.2,43.79,25.1666666667,40.5,23.1,39.0966666667,21.1375,56.44375,7.3666666667,44.1333333333,21.6,34.59,23.31,45.54,21,40.1266666667,7.3,751.7,88,2,40,5.4,33.700950304,33.700950304 -50,0,22.5,42.4,20.2,43.93,25.0333333333,40.4333333333,23.1,38.9,21.1,55.96,7.2266666667,44.4,21.6,34.59,23.3185714286,45.9971428571,21,40.26,7.4166666667,751.6833333333,87.3333333333,2,40,5.4,36.7294747615,36.7294747615 -50,0,22.5,42.4666666667,20.1666666667,44,24.9633333333,40.3633333333,23.0333333333,38.7666666667,21.1,55.7385714286,7.19,45.1666666667,21.6,34.6266666667,23.29,46.334,20.9633333333,40.4333333333,7.5333333333,751.6666666667,86.6666666667,2,40,5.4,41.2356662331,41.2356662331 -50,0,22.4266666667,42.3266666667,20.1,44.0675,24.89,40.29,23,38.59,21.1,55.516,7.19,45.6333333333,21.6,34.7,23.29,46.4,20.89,40.6333333333,7.65,751.65,86,2,40,5.4,48.3082429157,48.3082429157 -50,0,22.39,42.145,20.0333333333,44.09,24.76,40.23,23,38.53,21.1,55.3214285714,7.06,45.76,21.6,34.7,23.29,46.4,20.9633333333,40.9633333333,7.7666666667,751.6333333333,85.3333333333,2,40,5.4,5.5692970869,5.5692970869 -50,0,22.39,42.06,20,44.09,24.7,40.23,22.89,38.4666666667,21.1,55.09,6.925,45.8975,21.6,34.7,23.2642857143,46.4714285714,20.9175,41.2675,7.8833333333,751.6166666667,84.6666666667,2,40,5.4,11.8569999817,11.8569999817 -50,0,22.39,41.9333333333,19.9266666667,44.09,24.6,40.09,22.89,38.4,21.1,54.9814285714,6.76,46.4966666667,21.5,34.7,23.2,46.536,21,41.5266666667,8,751.6,84,2,40,5.4,40.6807556399,40.6807556399 -70,0,22.3566666667,41.79,19.89,44.1633333333,24.6,40.03,22.8566666667,38.3633333333,21.08,54.794,6.69,47.3,21.5666666667,34.7,23.2,46.8128571429,20.9266666667,41.73,7.95,751.55,84.1666666667,2,40,5.3833333333,26.0864396114,26.0864396114 -50,0,22.29,41.79,19.89,44.1633333333,24.5666666667,40,22.79,38.29,21,54.5642857143,6.6233333333,47.4333333333,21.5,34.7,23.2,47.036,21,41.8633333333,7.9,751.5,84.3333333333,2,40,5.3666666667,41.7536149384,41.7536149384 -50,0,22.29,41.7,19.79,44.1266666667,24.5,39.9333333333,22.79,38.2,21,54.4,6.56,47.7666666667,21.5,34.7,23.2,47,20.9266666667,42.03,7.85,751.45,84.5,2,40,5.35,40.4873251915,40.4873251915 -60,0,22.29,41.6266666667,19.79,44.2,24.5,39.9,22.79,38.2,21,54.2542857143,6.5,48.3,21.5,34.73,23.14,46.96,20.9266666667,42.09,7.8,751.4,84.6666666667,2,40,5.3333333333,19.275717577,19.275717577 -50,0,22.26,41.56,19.76,44.2,24.4266666667,39.8266666667,22.7,38.2,21,54.178,6.3666666667,48.63,21.5,34.79,23.1428571429,46.9,20.9266666667,42.23,7.75,751.35,84.8333333333,2,40,5.3166666667,21.3859120617,21.3859120617 -60,0,22.2,41.5,19.7,44.2,24.4633333333,39.76,22.7,38.2,21,54.0257142857,6.3,49.2966666667,21.5,34.79,23.1,46.9,21,42.3633333333,7.7,751.3,85,2,40,5.3,46.0614302545,46.0614302545 -40,0,22.2,41.5,19.6666666667,44.2,24.39,39.7,22.7,38.2,21,53.9,6.3333333333,49.9333333333,21.5,34.79,23.1,46.8214285714,21,42.4333333333,7.6,751.3,85.3333333333,2,40,5.25,20.3264677548,20.3264677548 -50,0,22.2,41.5,19.6,44.2,24.3566666667,39.6633333333,22.7,38.2,21,53.7928571429,6.3333333333,49.86,21.5,34.79,23.1,46.7,21,42.56,7.5,751.3,85.6666666667,2,40,5.2,20.0293724076,20.0293724076 -50,0,22.1666666667,41.5,19.6,44.23,24.29,39.59,22.6,38.09,21,53.678,6.2633333333,49.6933333333,21.5,34.79,23.1,46.5542857143,21,42.6266666667,7.4,751.3,86,2,40,5.15,26.9499780028,26.9499780028 -50,0,22.1,41.5,19.6,44.29,24.29,39.59,22.6,38.09,20.9685714286,53.5642857143,6.1233333333,50.1,21.5,34.79,23.1,46.4666666667,20.9266666667,42.7,7.3,751.3,86.3333333333,2,40,5.1,47.6219757111,47.6219757111 -50,0,22.1,41.5,19.5666666667,44.29,24.315,39.6175,22.6,38.045,20.956,53.5,5.9666666667,50.1633333333,21.445,34.745,23.1,46.2514285714,20.9633333333,42.8266666667,7.2,751.3,86.6666666667,2,40,5.05,8.005195728,8.005195728 -60,0,22.1,41.5,19.5,44.3633333333,24.39,39.7,22.6,38,20.89,53.4428571429,5.8333333333,50.09,21.4266666667,34.73,23.1,46.09,20.89,42.9666666667,7.1,751.3,87,2,40,5,31.0277138604,31.0277138604 -60,0,22.1,41.4666666667,19.5,44.4,24.39,39.7,22.6,38,20.89,53.334,5.6566666667,50.5966666667,21.39,34.7,23.04,45.834,20.9633333333,43.1266666667,7.1,751.25,86.6666666667,1.8333333333,40,4.95,31.8013623822,31.8013623822 -60,0,22.1,41.4,19.4266666667,44.4,24.39,39.7,22.5,38,20.89,53.2257142857,5.53,50.99,21.39,34.7,23.0428571429,45.7385714286,20.9633333333,43.2,7.1,751.2,86.3333333333,1.6666666667,40,4.9,1.6846211394,1.6846211394 -50,0,22,41.29,19.4633333333,44.4,24.39,39.79,22.5,38,20.89,53.156,5.4666666667,51.26,21.39,34.7,23,45.516,21,43.29,7.1,751.15,86,1.5,40,4.85,8.7489553262,8.7489553262 -60,0,22,41.23,19.365,44.425,24.4633333333,39.8633333333,22.5,38,20.89,53.0771428571,5.375,51.32,21.39,34.6266666667,23,45.4,21,43.29,7.1,751.1,85.6666666667,1.3333333333,40,4.8,43.4880869812,43.4880869812 -50,0,22,41.26,19.3566666667,44.5,24.5,39.9,22.5,38,20.89,52.98,5.3,51.5,21.39,34.6266666667,23,45.4,21,43.4,7.1,751.05,85.3333333333,1.1666666667,40,4.75,47.2212354769,47.2212354769 -50,0,22,41.2,19.29,44.5,24.4266666667,39.8266666667,22.39,38,20.89,52.9,5.19,51.73,21.39,34.7,23,45.3842857143,21,43.4666666667,7.1,751,85,1,40,4.7,33.8528639521,33.8528639521 -50,0,22,41.2,19.29,44.56,24.4633333333,39.8633333333,22.39,37.9333333333,20.85,52.754,5.19,52.1233333333,21.39,34.7,22.934,45.356,21,43.5,6.7833333333,750.9166666667,86,1,40,4.5666666667,46.6883443878,46.6883443878 -50,0,22,41.2,19.26,44.56,24.39,39.79,22.39,37.9,20.84,52.68125,5.1233333333,52.7333333333,21.39,34.7,22.89,45.3685714286,21,43.59,6.4666666667,750.8333333333,87,1,40,4.4333333333,10.1050608209,10.1050608209 -50,0,22,41.2,19.2,44.5,24.39,39.9,22.39,37.9,20.8042857143,52.5928571429,5.19,53.8666666667,21.39,34.6633333333,22.89,45.254,21,43.59,6.15,750.75,88,1,40,4.3,11.529530515,11.529530515 -50,0,21.89,41.2,19.2,44.5,24.39,39.8266666667,22.39,37.9,20.85,52.554,5.4633333333,54.5966666667,21.39,34.59,22.8757142857,45.1242857143,21,43.59,5.8333333333,750.6666666667,89,1,40,4.1666666667,33.14917034,33.14917034 -50,0,21.89,41.1266666667,19.2,44.5,24.39,39.9,22.3233333333,37.9,20.8185714286,52.4971428571,5.6566666667,54.73,21.3233333333,34.6633333333,22.85,45,21,43.6633333333,5.5166666667,750.5833333333,90,1,40,4.0333333333,23.5226708348,23.5226708348 -90,0,21.89,41.09,19.2,44.53,24.39,39.9,22.29,37.9,20.79,52.29,5.7266666667,54.7,21.3233333333,34.6633333333,22.8185714286,44.9285714286,20.89,43.7,5.2,750.5,91,1,40,3.9,12.9950790782,12.9950790782 -70,0,21.89,41.2966666667,19.1333333333,44.6633333333,24.39,39.8333333333,22.29,37.9666666667,20.79,52.2385714286,5.8,54.76,21.3566666667,34.7,22.79,45,20.89,43.76,5.25,750.45,90.8333333333,1,40,3.9166666667,34.979268047,34.979268047 -70,0,21.9266666667,42,19.1,45.4933333333,24.3233333333,39.5,22.29,37.9333333333,20.79,52.178,5.9,54.79,21.29,34.7,22.79,45.0771428571,20.9266666667,43.79,5.3,750.4,90.6666666667,1,40,3.9333333333,24.9823443592,24.9823443592 -360,10,22,42.1333333333,19.1,46.1,24.1666666667,39.1633333333,22.29,38,20.79,52.09,5.9,54.5966666667,21.29,34.6266666667,22.79,45.036,21,43.79,5.35,750.35,90.5,1,40,3.95,40.4121071217,40.4121071217 -120,0,22,42.2,19.1,46.36,24.0333333333,39.09,22.29,38,20.79,52.09,5.9333333333,54.4,21.29,34.6266666667,22.79,45,20.89,43.79,5.4,750.3,90.3333333333,1,40,3.9666666667,10.6308425544,10.6308425544 -190,10,22,42.2,19.1,46.5,23.9633333333,38.9666666667,22.29,38.06,20.79,52.0128571429,6,54.5266666667,21.29,34.7,22.79,45.09,20.9633333333,43.79,5.45,750.25,90.1666666667,1,40,3.9833333333,35.138531134,35.138531134 -190,0,22,42.1633333333,19.1,46.59,23.89,38.8266666667,22.2,38.145,20.79,52,6.09,54.5266666667,21.29,34.7,22.79,45.2614285714,21,43.7,5.5,750.2,90,1,40,4,34.7408213886,34.7408213886 -80,0,22,42.09,19.1,46.6633333333,23.79,38.745,22.2,38.29,20.79,51.8971428571,6.09,54.2666666667,21.29,34.6266666667,22.79,45.1377777778,21,43.7,5.4166666667,750.2,90.5,1,40,4,16.5774601744,16.5774601744 -70,10,22,42.1633333333,19.1,46.5266666667,23.79,38.79,22.2,38.23,20.79,50.716,6.09,54.06,21.23,34.3633333333,22.772,44.61,20.9633333333,43.5266666667,5.3333333333,750.2,91,1,40,4,22.0708573237,22.0708573237 -80,0,22.0666666667,42.1633333333,19.1,46.3266666667,23.73,38.79,22.2,38.26,20.79,49.27,6.1925,53.925,21.23,34.23,22.7,44.1685714286,20.89,43.2666666667,5.25,750.2,91.5,1,40,4,32.1767063928,32.1767063928 -60,0,22.1,42.1333333333,19.1,46.2,23.7,38.8633333333,22.2,38.26,20.81,48.238,6.3,53.9666666667,21.2,34.09,22.7,43.62,20.89,42.7966666667,5.1666666667,750.2,92,1,40,4,24.2945326841,24.2945326841 -370,0,22.1,41.8,19.1,45.925,23.7,38.6566666667,22.1333333333,38.1633333333,20.8614285714,47.5357142857,6.53,54.1333333333,21.2,34.03,22.6857142857,43.21,20.89,42.39,5.0833333333,750.2,92.5,1,40,4,39.9750629207,39.9750629207 -200,0,22.0666666667,41.49,19.1,45.5666666667,23.7,38.5,22.1333333333,38.03,20.89,46.82,6.6566666667,54,21.2,33.9,22.6,42.794,20.89,41.9,5,750.2,93,1,40,4,21.9548663707,21.9548663707 -60,0,22,41.2225,19.1666666667,45.3333333333,23.7,38.4333333333,22.1,37.9666666667,20.8471428571,46.2857142857,6.8666666667,53.8633333333,21.1333333333,33.9,22.6,42.4971428571,20.8233333333,41.5,5.0833333333,750.2666666667,93.5,1.3333333333,40,4.15,4.9573131837,4.9573131837 -50,10,22,41.1266666667,19.1,45.1266666667,23.7,38.3266666667,22.1,37.9,20.79,45.816,7.1266666667,53.73,21.1,34,22.5625,42.23375,20.79,41.1,5.1666666667,750.3333333333,94,1.6666666667,40,4.3,45.3298848239,45.3298848239 -50,0,22.0333333333,41.09,19.2,45.2,23.7,38.4,22.1,37.79,20.8614285714,46.6285714286,7.3666666667,53.43,21.1666666667,34.8666666667,22.5,41.96,20.79,40.7233333333,5.25,750.4,94.5,2,40,4.45,30.8639055933,30.8639055933 -60,0,22.1,41.03,19.2,45.1266666667,23.6,38.1633333333,22.1,37.79,21.04,49.4,7.56,52.9566666667,21.29,35.9266666667,22.5,41.6528571429,20.79,40.53,5.3333333333,750.4666666667,95,2.3333333333,40,4.6,25.1876949798,25.1876949798 -60,10,22.1,40.9666666667,19.29,45.09,23.6,38.1633333333,22.1,37.79,21.0428571429,50.01,7.8666666667,52.6,21.23,36.46,22.478,41.44,20.79,40.3333333333,5.4166666667,750.5333333333,95.5,2.6666666667,40,4.75,43.6849105288,43.6849105288 -60,0,22.1,40.8266666667,19.29,44.9633333333,23.5,38.06,22.1,37.79,21,50.276,8.1266666667,52.1333333333,21.26,36.79,22.39,41.2,20.73,40.2,5.5,750.6,96,3,40,4.9,30.3895149846,30.3895149846 -30,0,22.1,40.6633333333,19.29,44.76,23.4266666667,37.86,22.0333333333,37.7666666667,20.9685714286,49.7928571429,8.46,51.4233333333,21.26,36.79,22.39,41,20.76,39.9,5.8,750.6,95.5,2.6666666667,40,5.1333333333,0.2801362192,0.2801362192 -50,10,22.1,40.53,19.29,44.5666666667,23.39,37.7,22.0333333333,37.8266666667,20.89,49.174,8.7333333333,50.7566666667,21.2,36.86,22.39,40.9271428571,20.5666666667,39.2333333333,6.1,750.6,95,2.3333333333,40,5.3666666667,38.6523844441,38.6523844441 -70,20,22.1,40.4,19.3233333333,44.3333333333,23.3233333333,37.6266666667,22,37.79,20.89,48.6714285714,9.1666666667,49.7333333333,21.2,37.4,22.33,40.636,20.3566666667,38.76,6.4,750.6,94.5,2,40,5.6,35.8770552091,35.8770552091 -90,20,22.1,40.3266666667,19.39,44.0666666667,23.29,37.73,22,37.93,20.89,48.198,9.5,48.5333333333,21.2,37.0266666667,22.2257142857,40.4528571429,20.29,38.5666666667,6.7,750.6,94,1.6666666667,40,5.8333333333,42.4274269957,42.4274269957 -90,20,22.1,39.8633333333,19.39,43.7233333333,23.29,37.73,22,37.86,20.83,47.534,9.7528571429,46.2985714286,21.2,36.6933333333,22.254,40.32,20.29,39.56,7,750.6,93.5,1.3333333333,40,6.0666666667,29.8435311182,29.8435311182 -50,20,22.0333333333,39.8633333333,19.39,43.59,23.29,37.7,22,38.1333333333,20.79,47.1633333333,9.872,43.974,21.1,36.3333333333,22.1857142857,39.9971428571,20.29,42.0266666667,7.3,750.6,93,1,40,6.3,15.7029259601,15.7029259601 -60,30,22.1,40.1266666667,19.4266666667,43.7666666667,23.29,37.7,22.1,38.5666666667,20.79,47.1633333333,9.9428571429,41.9971428571,21.1,36.0666666667,22.1,39.794,20.39,41.5633333333,7.4666666667,750.6166666667,91.8333333333,1,40,6.25,45.5163180246,45.5163180246 -50,0,22.1,40.26,19.5,44.0266666667,23.3233333333,37.8266666667,22.175,38.97,20.79,47.09,10.42,41.134,21.1,35.69,22.1,39.59,20.39,41.0966666667,7.6333333333,750.6333333333,90.6666666667,1,40,6.2,11.4617121057,11.4617121057 -80,0,22.1,40.53,19.6333333333,44.2266666667,23.315,37.975,22.2,38.9333333333,20.79,46.9666666667,11.2825,39.49625,21.1,35.4,22.1,39.46,20.4266666667,40.76,7.8,750.65,89.5,1,40,6.15,42.5463903579,42.5463903579 -70,10,22.1,40.93,19.76,44.4333333333,23.29,38,22.2,39,20.79,46.8266666667,11.7942857143,33.9385714286,21.1,35.3266666667,22.1,39.4,20.5,40.5666666667,7.9666666667,750.6666666667,88.3333333333,1,40,6.1,42.3098867876,42.3098867876 -60,0,22.1,41.2266666667,19.8233333333,44.5266666667,23.29,38.23,22.2,38.9333333333,20.79,46.79,11.654,32.138,21.1,35.29,22.04,39.356,20.4266666667,40.2,8.1333333333,750.6833333333,87.1666666667,1,40,6.05,30.8265690343,30.8265690343 -60,0,22.1666666667,42.0266666667,19.89,45.06,23.29,38.3633333333,22.1666666667,39,20.79,46.73,11.8642857143,33.6471428571,21.1,35.29,22,39.4,20.5,40.1266666667,8.3,750.7,86,1,40,6,26.7824061564,26.7824061564 -110,0,22.2,43.29,19.945,45.845,23.29,38.6266666667,22.1,39.06,20.79,46.73,12.19,33.014,21.1,35.29,22,39.4,20.5,39.9666666667,8.5833333333,750.75,84.3333333333,1,40,5.9833333333,33.5562901222,33.5562901222 -70,0,22.2,43.1566666667,20.1,45.7666666667,23.29,38.76,22.1,39.2666666667,20.79,46.79,12.2057142857,32.1085714286,21.1,35.29,21.9842857143,39.4,20.5,39.8266666667,8.8666666667,750.8,82.6666666667,1,40,5.9666666667,47.1983729512,47.1983729512 -60,0,22.2,42.44,20.1,45.3,23.29,38.8266666667,22.1,39.4666666667,20.79,46.79,12.296,31.476,21.1,35.29,21.934,39.44,20.5,39.645,9.15,750.85,81,1,40,5.95,42.9897244438,42.9897244438 -60,0,22.2,42.3666666667,20.23,44.9333333333,23.23,38.8266666667,22.1666666667,40.13,20.79,46.79,12.6671428571,30.5828571429,21.1,35.29,21.89,39.4,20.5,39.59,9.4333333333,750.9,79.3333333333,1,40,5.9333333333,12.0289801271,12.0289801271 -50,10,22.2,42.6266666667,20.29,45,23.23,39.1966666667,22.1666666667,40.6633333333,20.79,46.7,13,28.036,21.1,35.29,21.89,39.44,20.5,39.59,9.7166666667,750.95,77.6666666667,1,40,5.9166666667,13.2509172545,13.2509172545 -60,0,22.2,42.43,20.29,44.6933333333,23.29,39.7966666667,22.2,40.56,20.79,46.6266666667,13.1142857143,27.6371428571,21.1,35.29,21.8757142857,39.4857142857,20.5,39.59,10,751,76,1,40,5.9,11.0496320645,11.0496320645 -50,0,22.2,42.1566666667,20.3566666667,44.36,23.3233333333,40.09,22.2,40.4333333333,20.79,46.56,13.354,27.014,21.1,35.29,21.79,39.42,20.5,39.59,10.1666666667,751.05,76,1,40,6.0666666667,20.5972139142,20.5972139142 -60,0,22.2,41.8633333333,20.39,43.9666666667,23.39,40.03,22.1666666667,40.1633333333,20.79,46.4333333333,13.3257142857,26.79,21.1,35.3633333333,21.79,39.5,20.5,39.53,10.3333333333,751.1,76,1,40,6.2333333333,22.0897696447,22.0897696447 -60,0,22.2,41.73,20.39,43.8266666667,23.5,40,22.1,40.03,20.79,46.26,13.114,28.174,21.1,35.4,21.79,39.634,20.5,39.53,10.5,751.15,76,1,40,6.4,18.5632201144,18.5632201144 -50,0,22.2,41.56,20.3233333333,43.7,23.5,40,22.1,39.8633333333,20.73,46.2,12.7528571429,30.98,21.1,35.5266666667,21.79,39.7514285714,20.5,39.59,10.6666666667,751.2,76,1,40,6.5666666667,16.8804757064,16.8804757064 -60,0,22.2,41.5,20.3233333333,43.6266666667,23.5,39.93,22.1,39.79,20.7,46.06,12.6,32.69,21.0666666667,35.6266666667,21.7225,39.9675,20.5,39.59,10.8333333333,751.25,76,1,40,6.7333333333,10.3707149392,10.3707149392 -50,0,22.2,41.4,20.29,43.59,23.5,39.79,22.0666666667,39.6633333333,20.745,45.8975,12.6,33.3657142857,21.0666666667,35.76,21.7,40.174,20.5,39.59,11,751.3,76,1,40,6.9,46.6601791908,46.6601791908 -50,0,22.2,41.4,20.29,43.53,23.5,39.76,22.0666666667,39.6633333333,20.76,45.73,12.39,35.074,21.1,35.9333333333,21.7,40.3214285714,20.5,39.59,10.9,751.35,77.5,1.3333333333,40,7.0666666667,32.2351765702,32.2351765702 -50,0,22.1,41.29,20.29,43.5,23.5,39.7,22.0666666667,39.6633333333,20.73,45.6633333333,12.4528571429,36.5271428571,21.1,36,21.7,40.536,20.5,39.59,10.8,751.4,79,1.6666666667,40,7.2333333333,4.5085076941,4.5085076941 -50,0,22.1,41.3633333333,20.3566666667,43.4333333333,23.5,39.7,22,39.6175,20.73,45.59,12.478,37.054,21.05,36.145,21.6428571429,40.6371428571,20.5,39.59,10.7,751.45,80.5,2,40,7.4,26.2688347138,26.2688347138 -50,0,22.1,41.6266666667,20.3566666667,43.59,23.4175,39.3475,22,39.7,20.73,45.56,12.3642857143,37.6371428571,21.1,36.3266666667,21.6,40.776,20.5666666667,39.7,10.6,751.5,82,2.3333333333,40,7.5666666667,6.3484924147,6.3484924147 -90,10,22.1,41.7,20.3566666667,43.6633333333,23.3233333333,39.23,22,39.9,20.73,45.5,12.434,38.874,21.1,36.4666666667,21.6,40.9542857143,20.5,39.76,10.5,751.55,83.5,2.6666666667,40,7.7333333333,43.3899883879,43.3899883879 -80,0,22.1,41.86,20.39,43.86,23.29,39.23,22,39.9,20.76,45.59,12.5571428571,39.6214285714,21.1,36.6266666667,21.6,41.476,20.5,39.9,10.4,751.6,85,3,40,7.9,30.7959957281,30.7959957281 -90,10,22.1666666667,42,20.39,44.06,23.29,39.29,22,40,20.7,45.59,12.618,39.9,21.1,36.7,21.6857142857,42.04,20.5666666667,39.9666666667,10.3333333333,751.65,85.8333333333,3,38,7.9833333333,2.0726791467,2.0726791467 -100,0,22.1666666667,42.23,20.5,44.09,23.29,39.2,22,40.06,20.73,45.59,12.6642857143,39.7,21.1,36.8266666667,21.754,42.394,20.5333333333,40.03,10.2666666667,751.7,86.6666666667,3,36,8.0666666667,36.7532296223,36.7532296223 -90,0,22.1,42.3633333333,20.5,44.1266666667,23.29,39.26,22,40.3266666667,20.73,45.6633333333,12.4242857143,39.9271428571,21.1,36.9,21.8185714286,42.6942857143,20.6,40.1633333333,10.2,751.75,87.5,3,34,8.15,11.4006410004,11.4006410004 -100,0,22.1,42.4333333333,20.5,44.1266666667,23.29,39.29,22,40.4666666667,20.73,45.7,12.1633333333,40.3616666667,21.1,37,21.89,42.9,20.55,40.245,10.1333333333,751.8,88.3333333333,3,32,8.2333333333,7.3679485009,7.3679485009 -90,0,22.1,42.425,20.5,44.09,23.29,39.29,22,40.5,20.73,45.76,12.18,40.4357142857,21.1,37,21.9985714286,42.9985714286,20.6,40.29,10.0666666667,751.85,89.1666666667,3,30,8.3166666667,9.6407496836,9.6407496836 -90,0,22.1,42.4,20.5,43.9633333333,23.29,39.29,22,40.5,20.73,45.79,12.318,40.476,21.1,37.03,22.1,43.09,20.6,40.3633333333,10,751.9,90,3,28,8.4,27.5818997761,27.5818997761 -70,0,22.1,42.3633333333,20.5333333333,43.8633333333,23.29,39.23,22,40.4,20.79,45.79,12.4214285714,40.51,21.1,37.09,22.1714285714,43.1685714286,20.5666666667,40.4,10.0166666667,751.9333333333,90.1666666667,2.8333333333,27,8.45,48.8834760617,48.8834760617 -70,0,22.0333333333,42.23,20.5333333333,43.79,23.29,39.2,22,40.4,20.7,45.8266666667,12.6,39.556,21.1,37.09,22.29,43.236,20.5666666667,40.4,10.0333333333,751.9666666667,90.3333333333,2.6666666667,26,8.5,46.0034867167,46.0034867167 -70,0,22,42.2,20.5,43.76,23.29,39.2,22,40.4,20.76,45.9,12.6128571429,40.0542857143,21.1,37.1633333333,22.3471428571,43.29,20.5666666667,40.4333333333,10.05,752,90.5,2.5,25,8.55,33.4467848879,33.4467848879 -60,0,22,42.2,20.5,43.7,23.2,39.09,22,40.4,20.7,45.9,12.672,40.254,21.1,37.2,22.412,43.312,20.5666666667,40.5,10.0666666667,752.0333333333,90.6666666667,2.3333333333,24,8.6,39.292103576,39.292103576 -90,0,22,42.23,20.5,43.7,23.2,39.09,22,40.4,20.76,45.9,12.6,39.4228571429,21.1,37.2,22.5,43.4,20.5333333333,40.5,10.0833333333,752.0666666667,90.8333333333,2.1666666667,23,8.65,19.4600882125,19.4600882125 -80,0,22,42.23,20.5,43.7,23.2,39.09,21.9266666667,40.4,20.76,45.9,12.54,39.16,21.1,37.29,22.6,43.44,20.6,40.56,10.1,752.1,91,2,22,8.7,2.1374613862,2.1374613862 -70,0,22,42.2,20.5333333333,43.7,23.2,39.1633333333,22,40.4,20.7,45.9,12.7428571429,39.4542857143,21.1,37.29,22.6142857143,43.5671428571,20.5333333333,40.59,10.1166666667,752.1166666667,91,2,23.1666666667,8.7,5.0048551871,5.0048551871 -80,0,22,42.26,20.6,43.6266666667,23.2,39.1266666667,22,40.4,20.7,45.9,13.038,39.12,21.1,37.4,22.66,43.656,20.5333333333,40.59,10.1333333333,752.1333333333,91,2,24.3333333333,8.7,49.1338065243,49.1338065243 -90,20,22,42.3266666667,20.6,43.5,23.2,39.2,22,40.4,20.7,45.7966666667,13.2942857143,38.2857142857,21.1,37.4,22.7,43.6528571429,20.5,40.7933333333,10.15,752.15,91,2,25.5,8.7,38.5365326307,38.5365326307 -90,10,22,42.5266666667,20.6,43.5,23.2,39.2,22,40.4,20.76,45.53,13.5,36.656,21.1,37.4,22.7,43.7,20.5666666667,41.46,10.1666666667,752.1666666667,91,2,26.6666666667,8.7,10.5093127,10.5093127 -80,20,21.9266666667,42.56,20.7,43.59,23.2,39.2,22,40.69,20.73,45.3333333333,13.4242857143,33.8371428571,21.1,37.4,22.7514285714,43.6842857143,20.5666666667,41.9633333333,10.1833333333,752.1833333333,91,2,27.8333333333,8.7,45.7178664627,45.7178664627 -90,20,22,42.5,20.6333333333,43.53,23.2,39.2,22.0333333333,41.0666666667,20.79,45.2,13.234,33.2,21.1,37.4,22.79,43.656,20.5,42.2233333333,10.2,752.2,91,2,29,8.7,29.7963339719,29.7963339719 -90,20,21.9266666667,42.5,20.7,43.53,23.2,39.23,22.1,41.2,20.79,45.178,13.058,32.974,21.1,37.4,22.79,43.7,20.6,42.4,10.1666666667,752.1833333333,91.1666666667,1.8333333333,27.8333333333,8.7,11.3839479862,11.3839479862 -100,20,22,43.0266666667,20.6333333333,43.53,23.2,39.29,22.1,41.1633333333,20.79,45.09,12.68,32.938,21.1,37.4,22.815,43.645,20.5333333333,42.5266666667,10.1333333333,752.1666666667,91.3333333333,1.6666666667,26.6666666667,8.7,35.0390777458,35.0390777458 -90,20,22,43.06,20.6,43.79,23.2,39.29,22.1666666667,41.1633333333,20.79,45.2,12.5714285714,34.1214285714,21.1,37.4,22.89,43.7,20.5,42.6266666667,10.1,752.15,91.5,1.5,25.5,8.7,16.4500615327,16.4500615327 -90,10,21.9266666667,42.9333333333,20.6,43.8266666667,23.2,39.29,22.2,41.2,20.79,45.2,12.5,35.054,21.1,37.4,22.89,43.73,20.5,42.7,10.0666666667,752.1333333333,91.6666666667,1.3333333333,24.3333333333,8.7,34.414693946,34.414693946 -250,20,22,42.9,20.6,43.9,23.2,39.29,22.2,41.2,20.79,45.2,12.3542857143,35.7928571429,21.1,37.4,22.89,43.79,20.5,42.79,10.0333333333,752.1166666667,91.8333333333,1.1666666667,23.1666666667,8.7,48.8039948978,48.8039948978 -370,20,22,42.9,20.5666666667,44.03,23.2,39.29,22.23,41.39,20.79,45.1528571429,12.314,36.62,21.1,37.4,23,43.8266666667,20.5,42.79,10,752.1,92,1,22,8.7,31.0700997361,31.0700997361 -160,20,22,42.9,20.5666666667,44.09,23.1,39.3266666667,22.29,41.7233333333,20.79,45.2,12.19,36.8971428571,21.1,37.4333333333,23,43.9,20.5,42.79,10.0166666667,752.1,92,1,22.1666666667,8.7333333333,40.2367880801,40.2367880801 -120,10,22.0333333333,42.9333333333,20.5666666667,44.1266666667,23.1,39.4,22.39,41.76,20.79,45.2,12.19,36.82,21.0333333333,37.4333333333,23.0666666667,44.1266666667,20.5,42.9,10.0333333333,752.1,92,1,22.3333333333,8.7666666667,48.087457323,48.087457323 -140,20,22.0333333333,42.9333333333,20.5,44.2,23.1,39.4333333333,22.39,41.6266666667,20.79,45.2,12.28125,37.2225,21.0666666667,37.5,23.0666666667,44.26,20.5,42.9,10.05,752.1,92,1,22.5,8.8,25.2327724244,25.2327724244 -140,20,22.1,43,20.5,44.29,23.0333333333,39.4333333333,22.39,41.5,20.79,45.2,12.5928571429,36.6271428571,21.0666666667,37.5,23.1,44.3633333333,20.5,43,10.0666666667,752.1,92,1,22.6666666667,8.8333333333,10.7718088431,10.7718088431 -300,0,22.1,43,20.5666666667,44.29,23.0666666667,39.4666666667,22.39,41.4333333333,20.79,45.134,12.712,36.416,21.0333333333,37.53,23.1,44.29,20.5,43,10.0833333333,752.1,92,1,22.8333333333,8.8666666667,37.9397622659,37.9397622659 -250,0,22.1,43.2566666667,20.6,44.36,23.0666666667,39.4666666667,22.4266666667,41.4333333333,20.79,45.156,12.7083333333,36.2116666667,21.1,37.6633333333,23.1333333333,44.4,20.5,43.03,10.1,752.1,92,1,23,8.9,40.6495565781,40.6495565781 -120,0,22.1666666667,43.7966666667,20.6,44.8933333333,23.1,39.53,22.4266666667,41.36,20.8328571429,45.5114285714,12.6642857143,34.8757142857,21.0666666667,37.6633333333,23.2,44.4,20.4266666667,43.09,10.2666666667,752.0333333333,87.3333333333,1.3333333333,25.8333333333,8.1666666667,47.7828084142,47.7828084142 -110,0,22.2,43.7,20.6,45.59,23.1,39.59,22.39,41.29,20.85,45.84,12.456,33.27,21.0666666667,37.59,23.29,44.5,20.4266666667,43.1266666667,10.4333333333,751.9666666667,82.6666666667,1.6666666667,28.6666666667,7.4333333333,40.3484171606,40.3484171606 -210,10,22.2,43.8333333333,20.6,45.53,23.2,39.53,22.39,41.3633333333,20.89,46,12.1783333333,33.0316666667,21.0666666667,37.4666666667,23.29,44.45,20.5,43.2,10.6,751.9,78,2,31.5,6.7,20.1647288748,20.1647288748 -490,20,22.2,43.9,20.5,45.5,23.1333333333,39.59,22.3566666667,41.2,20.89,46,12,33.654,21,37.3266666667,23.29,44.295,20.5,43.1633333333,10.7666666667,751.8333333333,73.3333333333,2.3333333333,34.3333333333,5.9666666667,29.9402221455,29.9402221455 -320,20,22.2,43.9666666667,20.5,45.36,23.23,40.0566666667,22.3566666667,41.2,20.89,46.44,11.9242857143,33.9257142857,21.0636363636,37.2327272727,23.29,43.9266666667,20.5,43.09,10.9333333333,751.7666666667,68.6666666667,2.6666666667,37.1666666667,5.2333333333,34.2495186022,34.2495186022 -300,0,22.2,43.9,20.5,45.1633333333,23.3566666667,41.13,22.34,41.145,20.89,46.38,11.734,33.674,21.1,37.18,23.29,43.79,20.5,43.09,11.1,751.7,64,3,40,4.5,11.9162540068,11.9162540068 -340,10,22.2,43.7666666667,20.4266666667,45.03,23.6633333333,42.0966666667,22.39,41.0266666667,20.89,46.25,11.5542857143,32.9085714286,21.06,37.009,23.29,43.73,20.5,43.03,11.0333333333,751.7666666667,67.1666666667,2.8333333333,40,5.0666666667,33.7208235869,33.7208235869 -270,0,22.2,43.59,20.39,45,23.9975,42.345,22.39,40.9,20.89,46.045,11.325,33.99625,21.025,36.95,23.29,43.59,20.4266666667,42.9,10.9666666667,751.8333333333,70.3333333333,2.6666666667,40,5.6333333333,36.0400435631,36.0400435631 -240,0,22.2,43.8633333333,20.39,45.1333333333,24.26,42.03,22.3566666667,40.9633333333,20.9022222222,47.9877777778,10.838,35.24,21,37,23.29,43.745,20.5,42.9,10.9,751.9,73.5,2.5,40,6.2,40.7208601595,40.7208601595 -210,0,22.2,44.06,20.29,45.7266666667,24.3233333333,41.4,22.29,41.2233333333,20.90375,47.9075,10.1283333333,36.415,21.0666666667,37.06,23.29,43.834,20.39,42.7,10.8333333333,751.9666666667,76.6666666667,2.3333333333,40,6.7666666667,47.5025467575,47.5025467575 -110,0,22.2,44.06,20.29,46.095,24.4633333333,41.3266666667,22.29,41.2,20.89,47.52,9.476,37.772,21,37,23.3066666667,43.745,20.39,42.76,10.7666666667,752.0333333333,79.8333333333,2.1666666667,40,7.3333333333,4.6250363463,4.6250363463 -90,0,22.2,44.06,20.23,46.1266666667,24.5666666667,40.9233333333,22.29,41.1266666667,20.89,47.2,8.8,39.1142857143,21.0666666667,37.06,23.3566666667,43.7,20.39,42.79,10.7,752.1,83,2,40,7.9,23.9848951576,23.9848951576 -90,0,22.2,43.9333333333,20.2,46.09,24.4266666667,40.39,22.29,40.9666666667,20.89,47.2,8.22,40.29,21.0666666667,37,23.39,43.56,20.39,42.7225,10.35,752.1666666667,84.5,1.8333333333,37.6666666667,7.8,13.6310507078,13.6310507078 -100,0,22.2,43.745,20.2,46.09,24.29,40.0266666667,22.23,40.7666666667,20.89,47.2,7.7814285714,41.7214285714,21,36.79,23.39,43.45,20.39,42.6266666667,10,752.2333333333,86,1.6666666667,35.3333333333,7.7,41.4678204805,41.4678204805 -100,0,22.2,43.59,20.1,46.06,24.23,39.8266666667,22.2,40.59,20.89,47.076,7.438,42.99,21.0666666667,36.79,23.4633333333,43.3333333333,20.39,42.56,9.65,752.3,87.5,1.5,33,7.6,25.6762175937,25.6762175937 -90,0,22.2,43.59,20.1,46,24.0666666667,39.6333333333,22.2,40.53,20.89,46.8622222222,7.0928571429,44.0642857143,21,36.6633333333,23.39,43.1266666667,20.3233333333,42.5,9.3,752.3666666667,89,1.3333333333,30.6666666667,7.5,43.6869906378,43.6869906378 -120,0,22.2,43.5,20.0666666667,46.0266666667,23.9266666667,39.5,22.1666666667,40.4,20.89,46.645,6.756,45.22,21,36.53,23.4266666667,43,20.29,42.3633333333,8.95,752.4333333333,90.5,1.1666666667,28.3333333333,7.4,40.0582169066,40.0582169066 -80,10,22.2,43.4333333333,20,45.8266666667,23.8566666667,39.4666666667,22.1,40.3266666667,20.89,46.4571428571,6.514,46.174,21,36.5,23.5,42.9333333333,20.29,42.23,8.6,752.5,92,1,26,7.3,1.0497216368,1.0497216368 -60,0,22.1333333333,43.59,19.9633333333,45.79,23.79,39.4,22.1,40.26,20.89,46.456,6.2371428571,46.8257142857,21,36.4333333333,23.5,42.9,20.29,42.33,8.3333333333,752.6,92.5,1,25.1666666667,7.1166666667,4.6459485544,4.6459485544 -60,0,22.1333333333,43.6633333333,19.89,45.79,23.79,39.29,22.1,40.1266666667,20.89,47.1,5.96,47.6,21,36.4,23.5,43.036,20.29,42.7966666667,8.0666666667,752.7,93,1,24.3333333333,6.9333333333,10.2980169584,10.2980169584 -50,0,22.1,43.6633333333,19.79,45.6633333333,23.79,39.29,22,40,20.89,47.5666666667,5.778,47.896,21,36.4,23.5,43.3814285714,20.3233333333,43.1266666667,7.8,752.8,93.5,1,23.5,6.75,43.0622291868,43.0622291868 -30,0,22.1,43.53,19.73,45.59,23.79,39.2,22,39.9333333333,20.89,47.76,5.6614285714,48.8828571429,21,36.29,23.5,43.638,20.39,43.26,7.5333333333,752.9,94,1,22.6666666667,6.5666666667,38.0173768615,38.0173768615 -30,0,22.1,43.4666666667,19.7,45.56,23.79,39.2,22,39.9,20.79,47.7,5.5,49.116,21,36.29,23.4685714286,43.8371428571,20.3566666667,43.5,7.2666666667,753,94.5,1,21.8333333333,6.3833333333,9.135515138,9.135515138 -30,0,22.0333333333,43.2666666667,19.6333333333,45.4333333333,23.7,39.2,22,39.8266666667,20.79,47.7,5.31,49.3942857143,21,36.29,23.39,43.94,20.3566666667,43.6333333333,7,753.1,95,1,21,6.2,17.2483148868,17.2483148868 -40,0,22,43.06,19.5666666667,45.5,23.6333333333,39.1266666667,22,39.79,20.79,47.59,5.3,50.272,21,36.29,23.3328571429,44.0671428571,20.39,43.79,6.6666666667,753.1333333333,95.1666666667,1,27,5.9,43.2755025337,43.2755025337 -50,0,22,42.9333333333,19.5,45.5,23.5666666667,39.2,21.9633333333,39.7,20.79,47.53,5.1928571429,50.7542857143,21,36.29,23.29,44.296,20.39,43.8633333333,6.3333333333,753.1666666667,95.3333333333,1,33,5.6,2.2355269291,2.2355269291 -50,0,21.9633333333,42.8633333333,19.4633333333,45.5,23.5,39.2,21.89,39.7,20.7,47.5,5.09,51.054,21,36.2225,23.29,44.6428571429,20.39,44,6,753.2,95.5,1,39,5.3,12.2554031783,12.2554031783 -60,0,21.89,42.73,19.39,45.5,23.5,39.2,21.89,39.6633333333,20.76,47.5,4.9814285714,50.9928571429,21,36.2,23.2,44.874,20.39,44.1333333333,5.6666666667,753.2333333333,95.6666666667,1,45,5,38.5104520246,38.5104520246 -60,0,21.89,42.59,19.3566666667,45.53,23.5,39.2,21.89,39.59,20.76,47.5,4.9,51.68,21,36.2,23.2257142857,45.2385714286,20.39,44.29,5.3333333333,753.2666666667,95.8333333333,1,51,4.7,11.2784622237,11.2784622237 -50,0,21.89,42.53,19.2225,45.545,23.5,39.2,21.89,39.59,20.7,47.5,4.8714285714,51.8428571429,21,36.2,23.2,45.42,20.39,44.3633333333,5,753.3,96,1,57,4.4,10.8283546055,10.8283546055 -60,0,21.89,42.4666666667,19.2,45.59,23.4633333333,39.1633333333,21.89,39.59,20.7,47.4666666667,4.65,51.536,21,36.09,23.2,45.5,20.39,44.53,4.9166666667,753.35,96.1666666667,1,48.5,4.35,34.0219628881,34.0219628881 -50,0,21.8233333333,42.3266666667,19.1666666667,45.6266666667,23.39,39.09,21.79,39.4666666667,20.7,47.4,4.5385714286,51.64,21,36.09,23.2,45.634,20.365,44.695,4.8333333333,753.4,96.3333333333,1,40,4.3,43.7468310585,43.7468310585 -50,0,21.79,42.2,19.1,45.7,23.5,39.09,21.79,39.4,20.7,47.3633333333,4.48,51.674,21,36.06,23.1714285714,45.7671428571,20.3566666667,44.8633333333,4.75,753.45,96.5,1,31.5,4.25,8.5648311884,8.5648311884 -50,0,21.79,42.1725,19.0666666667,45.6633333333,23.5,39.09,21.79,39.3633333333,20.7,47.29,4.2971428571,51.8971428571,21,36,23.15,45.9,20.39,45.0666666667,4.6666666667,753.5,96.6666666667,1,23,4.2,10.4890129878,10.4890129878 -50,0,21.79,42.09,19,45.59,23.5,39.1266666667,21.79,39.29,20.64,47.236,4.256,52.82,21,36,23.1,45.9,20.39,45.26,4.5833333333,753.55,96.8333333333,1,14.5,4.15,26.1423167423,26.1423167423 -50,0,21.7,42.09,18.9633333333,45.7,23.5666666667,39.2,21.79,39.29,20.6714285714,47.2,4.3,52.93,21,35.96,23.1,46,20.39,45.4333333333,4.5,753.6,97,1,6,4.1,19.3887479021,19.3887479021 -60,0,21.7,42.03,18.89,45.76,23.5333333333,39.29,21.79,39.29,20.7,47.2,4.16,52.5966666667,20.9685714286,35.9,23.1,45.9333333333,20.39,45.56,4.3666666667,753.6,96.6666666667,0.8333333333,5.5,3.9166666667,23.7628486007,23.7628486007 -60,0,21.7,42,18.79,45.73,23.6,39.29,21.76,39.29,20.6571428571,47.1528571429,4.06,52.73,20.934,35.9,23,45.7,20.39,45.73,4.2333333333,753.6,96.3333333333,0.6666666667,5,3.7333333333,37.8201352549,37.8201352549 -50,0,21.7,42,18.79,45.79,23.6,39.4,21.7,39.23,20.64,47.134,4,52.79,20.89,35.9,23,45.7,20.39,45.8633333333,4.1,753.6,96,0.5,4.5,3.55,1.6873908578,1.6873908578 -60,0,21.6333333333,41.9333333333,18.76,45.79,23.6666666667,39.4666666667,21.7,39.2,20.6,47.09,3.845,52.5,20.89,35.856,23,45.5,20.39,45.9,3.9666666667,753.6,95.6666666667,0.3333333333,4,3.3666666667,34.6881406615,34.6881406615 -50,0,21.6333333333,41.86,18.7,45.79,23.7,39.4333333333,21.7,39.1266666667,20.6,47,3.79,52.9966666667,20.89,35.79,23,45.4333333333,20.39,45.9666666667,3.8333333333,753.6,95.3333333333,0.1666666667,3.5,3.1833333333,5.319426069,5.319426069 -60,0,21.6,41.79,18.7,45.8266666667,23.7,39.5,21.7,39.09,20.6,47.0385714286,3.8633333333,53.6633333333,20.89,35.79,22.9266666667,45.4,20.39,46.03,3.7,753.6,95,0,3,3,17.3119305517,17.3119305517 -40,0,21.6,41.79,18.7,45.8266666667,23.7,39.5,21.7,39.03,20.6,47,3.8266666667,54.2,20.89,35.7257142857,22.9266666667,45.3266666667,20.39,46.09,3.5833333333,753.6333333333,95.3333333333,0.1666666667,3.1666666667,2.9333333333,14.5985008217,14.5985008217 -60,0,21.6,41.7,18.6,45.7,23.7,39.5,21.6666666667,39.0266666667,20.6,47,3.7666666667,53.6666666667,20.89,35.7,22.89,45.2,20.39,46.1266666667,3.4666666667,753.6666666667,95.6666666667,0.3333333333,3.3333333333,2.8666666667,36.4973845659,36.4973845659 -50,0,21.5333333333,41.7,18.6,45.76,23.7,39.5,21.6,38.9,20.6,47,3.56,53.63,20.89,35.6371428571,22.89,45.1266666667,20.39,46.2,3.35,753.7,96,0.5,3.5,2.8,8.2827969221,8.2827969221 -50,0,21.5,41.7,18.6,45.76,23.7,39.56,21.6,38.9,20.6,47,3.5,54.2966666667,20.89,35.59,22.89,45.06,20.39,46.29,3.2333333333,753.7333333333,96.3333333333,0.6666666667,3.6666666667,2.7333333333,20.3859894187,20.3859894187 -60,0,21.5,41.6266666667,18.5333333333,45.7,23.7,39.5,21.6,38.79,20.6,47,3.3633333333,53.5933333333,20.89,35.59,22.89,45,20.39,46.29,3.1166666667,753.7666666667,96.6666666667,0.8333333333,3.8333333333,2.6666666667,11.5156159038,11.5156159038 -50,0,21.5,41.59,18.5,45.6633333333,23.65,39.5225,21.6,38.79,20.5571428571,46.9571428571,3.23,53.2,20.89,35.5,22.89,44.9666666667,20.4633333333,46.4666666667,3,753.8,97,1,4,2.6,41.4398147142,41.4398147142 -60,0,21.5,41.59,18.5,45.59,23.7,39.59,21.5,38.7,20.56,46.9,3.2,53.63,20.8614285714,35.4571428571,22.8233333333,44.8266666667,20.39,46.4,2.7833333333,753.8166666667,97.3333333333,1,3.8333333333,2.4333333333,23.8917660317,23.8917660317 -50,0,21.39,41.4666666667,18.4266666667,45.59,23.7,39.59,21.5,38.7,20.5285714286,46.9,3.26,54.63,20.89,35.3633333333,22.79,44.6633333333,20.4633333333,46.3633333333,2.5666666667,753.8333333333,97.6666666667,1,3.6666666667,2.2666666667,24.8940513469,24.8940513469 -60,0,21.39,41.4,18.39,45.5,23.7,39.59,21.5,38.59,20.5,46.9,3.53,55.4333333333,20.8471428571,35.2985714286,22.79,44.59,20.4175,46.3175,2.35,753.85,98,1,3.5,2.1,9.6300174715,9.6300174715 -50,0,21.39,41.4,18.39,45.4333333333,23.7,39.59,21.5,38.59,20.5,46.9,3.59,55.6333333333,20.79,35.2,22.79,44.4666666667,20.5,46.4,2.1333333333,753.8666666667,98.3333333333,1,3.3333333333,1.9333333333,30.855179124,30.855179124 -50,0,21.39,41.3266666667,18.3233333333,45.4666666667,23.7,39.59,21.5,38.59,20.5,46.79,3.73,56.0666666667,20.79,35.2,22.79,44.4,20.39,46.29,1.9166666667,753.8833333333,98.6666666667,1,3.1666666667,1.7666666667,44.8018248891,44.8018248891 -50,0,21.34,41.29,18.3233333333,45.4,23.7,39.59,21.5,38.59,20.5428571429,46.7385714286,3.8633333333,56.26,20.79,35.1842857143,22.79,44.29,20.39,46.23,1.7,753.9,99,1,3,1.6,22.0144822495,22.0144822495 -50,0,21.29,41.29,18.29,45.4,23.7,39.59,21.5,38.5,20.5,46.7,3.79,55.8633333333,20.79,35.09,22.79,44.2675,20.39,46.1633333333,1.6166666667,753.8833333333,99,1,2.6666666667,1.5166666667,0.94265152,0.94265152 -50,0,21.29,41.29,18.29,45.4,23.6666666667,39.56,21.5,38.5,20.5,46.7,3.7225,55.79,20.79,35.09,22.73,44.2,20.39,46.1633333333,1.5333333333,753.8666666667,99,1,2.3333333333,1.4333333333,12.8586715669,12.8586715669 -50,0,21.29,41.29,18.29,45.4333333333,23.6,39.5,21.4266666667,38.4333333333,20.5,46.7,3.6266666667,55.73,20.79,35.09,22.7,44.1633333333,20.39,46.09,1.45,753.85,99,1,2,1.35,42.8021683358,42.8021683358 -60,0,21.29,41.29,18.23,45.4333333333,23.6,39.5,21.5,38.5,20.5,46.6842857143,3.5,55.59,20.79,35.0771428571,22.7,44.09,20.39,46.09,1.3666666667,753.8333333333,99,1,1.6666666667,1.2666666667,25.6339081447,25.6339081447 -60,0,21.26,41.2,18.2,45.4,23.6,39.5,21.39,38.4,20.5,46.59,3.4333333333,55.33,20.79,35.036,22.7,44.06,20.39,46.06,1.2833333333,753.8166666667,99,1,1.3333333333,1.1833333333,42.6518806722,42.6518806722 -60,0,21.26,41.2,18.2,45.3266666667,23.6,39.5,21.39,38.4,20.5,46.59,3.29,55.4666666667,20.79,35,22.7,44,20.39,46,1.2,753.8,99,1,1,1.1,42.9070202983,42.9070202983 -50,0,21.2,41.09,18.2,45.3266666667,23.6,39.5,21.39,38.29,20.5,46.5642857143,3.43,56.6,20.79,34.94,22.7,43.9,20.39,46,1.2833333333,753.8166666667,99,1,11.8333333333,1.1833333333,5.6022717734,5.6022717734 -50,0,21.2,41.03,18.2,45.4,23.6,39.5,21.39,38.29,20.39,46.5,3.6266666667,57.33,20.79,34.9142857143,22.7,43.9,20.39,45.9333333333,1.3666666667,753.8333333333,99,1,22.6666666667,1.2666666667,19.429512613,19.429512613 -50,0,21.2,41,18.2,45.3266666667,23.6,39.4333333333,21.3566666667,38.29,20.4842857143,46.5771428571,3.76,57.59,20.772,34.9,22.6666666667,43.8633333333,20.39,45.9,1.45,753.85,99,1,33.5,1.35,43.6732670292,43.6732670292 -50,0,21.2,41,18.1333333333,45.4,23.6,39.4,21.315,38.29,20.478,46.572,3.9,57.7666666667,20.7385714286,34.9,22.6,43.79,20.39,45.8266666667,1.5333333333,753.8666666667,99,1,44.3333333333,1.4333333333,49.1182992933,49.1182992933 -60,0,21.2,41,18.1,45.4,23.6,39.4,21.3233333333,38.29,20.39,46.5,3.9,57.8266666667,20.79,34.9,22.6,43.79,20.39,45.79,1.6166666667,753.8833333333,99,1,55.1666666667,1.5166666667,1.0598663823,1.0598663823 -70,0,21.2,41,18.1,45.4,23.6,39.4,21.29,38.26,20.39,46.5,3.7233333333,57.3,20.745,34.9,22.6,43.73,20.39,45.73,1.7,753.9,99,1,66,1.6,17.4332019757,17.4332019757 -70,0,21.2,41.1,18.1,45.4633333333,23.6,39.4,21.29,38.2,20.39,46.5,3.4633333333,56.5666666667,20.7,34.79,22.5,43.7,20.39,45.7,1.75,753.8666666667,99,1,66,1.65,6.3923465204,6.3923465204 -40,0,21.2,41.6333333333,18.1,46.1725,23.445,39.05,21.29,38.2,20.39,46.4285714286,3.1333333333,55.6933333333,20.7,34.79,22.5,43.7,20.39,45.7,1.8,753.8333333333,99,1,66,1.7,38.6002765037,38.6002765037 -40,10,21.2,41.79,18.1,46.8333333333,23.3566666667,38.8333333333,21.23,38.1266666667,20.39,46.44,3,55.6333333333,20.7,34.79,22.5,43.6266666667,20.39,45.6633333333,1.85,753.8,99,1,66,1.75,16.8408510508,16.8408510508 -40,0,21.2,41.8633333333,18.0666666667,47.09,23.23,38.5666666667,21.29,38.09,20.39,46.4,3,56.2266666667,20.7,34.77875,22.5,43.6266666667,20.39,45.5225,1.9,753.7666666667,99,1,66,1.8,20.7734724623,20.7734724623 -40,0,21.29,41.9,18.0666666667,47.1633333333,23.1666666667,38.5,21.29,38.09,20.39,46.3175,3,56.56,20.7,34.7,22.5,43.6266666667,20.39,45.4333333333,1.95,753.7333333333,99,1,66,1.85,44.3038318539,44.3038318539 -50,10,21.29,41.9666666667,18.1,47.26,23.1,38.4333333333,21.29,38.09,20.39,46.3764285714,2.9666666667,56.3333333333,20.7,34.6842857143,22.5,43.8,20.39,45.26,2,753.7,99,1,66,1.9,45.5822943826,45.5822943826 -60,0,21.245,42.09,18.1,47.2,23.1,38.4666666667,21.23,38.03,20.39,46.4298214286,3.06125,56.7725,20.7,34.7,22.5,43.9,20.39,45.1266666667,1.8833333333,753.7333333333,99.1666666667,1,55.1666666667,1.8,12.6055179047,12.6055179047 -80,0,21.26,41.93,18.1,47.1633333333,23.1,38.4,21.2,38.1633333333,20.39,46.4832142857,3.1558333333,57.2116666667,20.7,34.59,22.4633333333,43.6966666667,20.39,44.93,1.7666666667,753.7666666667,99.3333333333,1,44.3333333333,1.7,20.6379153067,20.6379153067 -70,0,21.2,41.79,18.1,47.09,23.0666666667,38.3633333333,21.2,38.09,20.39,46.5366071429,3.2504166667,57.6508333333,20.7,34.545,22.4266666667,43.4933333333,20.39,44.73,1.65,753.8,99.5,1,33.5,1.6,6.6763522918,6.6763522918 -60,0,21.2,41.8266666667,18.1,47.09,23.0666666667,38.3633333333,21.2,38.09,20.39,46.59,3.345,58.09,20.7,34.5,22.39,43.29,20.39,44.5266666667,1.5333333333,753.8333333333,99.6666666667,1,22.6666666667,1.5,17.8253300954,17.8253300954 -60,10,21.26,41.9666666667,18.1,47.1633333333,23.0666666667,38.5,21.2,38.09,20.39,46.59,3.43,58.2966666667,20.7,34.4,22.39,43.2233333333,20.39,44.2666666667,1.4166666667,753.8666666667,99.8333333333,1,11.8333333333,1.4,11.087151512,11.087151512 -70,10,21.29,41.9,18.1,47.29,23,38.5,21.2,38.09,20.39,46.59,3.8266666667,58.6566666667,20.7,34.4,22.39,42.97,20.3566666667,43.9666666667,1.3,753.9,100,1,1,1.3,11.9853490265,11.9853490265 -70,20,21.29,41.8266666667,18.1666666667,47.0966666667,22.9633333333,38.53,21.26,38.3633333333,20.39,46.6333333333,3.9666666667,58.8633333333,20.65,34.245,22.3233333333,42.6566666667,20.3566666667,43.7666666667,1.45,753.9666666667,100,1,2.1666666667,1.45,45.5833949265,45.5833949265 -80,20,21.29,41.76,18.2,46.6333333333,22.89,38.59,21.4266666667,38.6933333333,20.39,46.36,4.1233333333,59.0966666667,20.6,33.9666666667,22.29,42.2233333333,20.29,43.2966666667,1.6,754.0333333333,100,1,3.3333333333,1.6,13.1767921848,13.1767921848 -90,20,21.3566666667,41.6266666667,18.26,46.36,22.89,38.56,21.5666666667,38.9,20.39,46.1333333333,4.3966666667,59.5633333333,20.6,33.8266666667,22.29,41.89,20.29,42.89,1.75,754.1,100,1,4.5,1.75,41.8840807164,41.8840807164 -70,20,21.29,41.4666666667,18.4266666667,46.0266666667,22.89,38.5,21.7,38.8633333333,20.39,45.9333333333,4.8966666667,60.0666666667,20.5666666667,33.79,22.26,41.49,20.29,42.3633333333,1.9,754.1666666667,100,1,5.6666666667,1.9,49.3930422934,49.3930422934 -90,10,21.3566666667,41.3266666667,18.4266666667,45.7666666667,22.8566666667,38.4666666667,21.7225,38.8725,20.39,45.6333333333,5.23,60.3333333333,20.5,33.79,22.2,41.23,20.3566666667,41.9633333333,2.05,754.2333333333,100,1,6.8333333333,2.05,4.2036888655,4.2036888655 -70,20,21.3233333333,41.2,18.5,45.56,22.79,38.3266666667,21.93,38.9666666667,20.39,45.4333333333,5.4966666667,60.5,20.5,33.8266666667,22.2,41.06,20.29,41.6,2.2,754.3,100,1,8,2.2,33.5435031331,33.5435031331 -70,20,21.39,41.1266666667,18.5666666667,45.4333333333,22.79,38.29,22.1333333333,38.86,20.39,45.26,5.8966666667,60.8333333333,20.5,33.9,22.2,40.9333333333,20.29,41.1933333333,2.5833333333,754.3,100,1,13,2.5833333333,5.237103859,5.237103859 -90,20,21.39,41.09,18.73,45.1333333333,22.79,38.29,22.26,39,20.39,45.1266666667,6.26,61.1266666667,20.5,34,22.1666666667,40.8633333333,20.39,40.7966666667,2.9666666667,754.3,100,1,18,2.9666666667,5.5384570034,5.5384570034 -80,10,21.39,41.03,18.8925,44.975,22.79,38.2,22.29,39.03,20.29,44.845,6.5266666667,61.3333333333,20.5,34.045,22.1,40.79,20.6566666667,40.39,3.35,754.3,100,1,23,3.35,17.014546087,17.014546087 -90,20,21.39,41.09,19.0666666667,44.8266666667,22.79,38.1633333333,22.3566666667,39.1633333333,20.3233333333,44.6633333333,7.2933333333,61.9633333333,20.5,34.5,22.1,40.73,21.8333333333,39.6266666667,3.7333333333,754.3,100,1,28,3.7333333333,5.4327928345,5.4327928345 -80,20,21.39,41.09,19.23,44.6333333333,22.79,38.03,22.5333333333,39.36,20.39,44.59,7.9,62.2966666667,20.5,34.5584615385,22.1,40.79,21.9725,38.3475,4.1166666667,754.3,100,1,33,4.1166666667,18.5119941016,18.5119941016 -80,20,21.39,41.1266666667,19.3566666667,44.4333333333,22.79,38,22.6,39.56,20.39,44.5,8.6,62.7,20.55,34.8792307692,22.0333333333,40.86,21.5966666667,38.43,4.5,754.3,100,1,38,4.5,7.165292697,7.165292697 -70,10,21.39,41.26,19.6966666667,44.3633333333,22.79,38,22.7,39.7,20.39,44.5,9.2175,62.975,20.6,35.2,22.1,41,21.26,38.7666666667,5.1833333333,754.3166666667,98.3333333333,1.1666666667,42.1666666667,4.9333333333,26.8576150294,26.8576150294 -60,20,21.39,41.3266666667,20.2233333333,43.83,22.7,38.09,22.7,39.7,20.29,44.5,9.9633333333,63.4,20.6,35.26,22.0666666667,41.09,21.0666666667,39.1,5.8666666667,754.3333333333,96.6666666667,1.3333333333,46.3333333333,5.3666666667,1.5518282889,1.5518282889 -60,20,21.4725,41.5425,20.8233333333,42.8933333333,22.76,38.09,22.73,39.73,20.3566666667,44.5,10.5633333333,63.49,20.6,35.5675,22,41.1633333333,20.9633333333,39.5666666667,6.55,754.35,95,1.5,50.5,5.8,11.7510484532,11.7510484532 -50,20,21.4266666667,41.53,20.89,42.5,22.7,38.2,22.79,39.73,20.39,44.5,10.8966666667,63.5633333333,20.6,35.6633333333,22,41.2,20.8233333333,39.7,7.2333333333,754.3666666667,93.3333333333,1.6666666667,54.6666666667,6.2333333333,1.6530655907,1.6530655907 -70,10,21.39,41.5,21.2633333333,41.96,22.7,38.2,22.8233333333,39.9633333333,20.39,44.5,11.7666666667,63.66,20.6,35.73,22,41.26,20.79,39.7666666667,7.9166666667,754.3833333333,91.6666666667,1.8333333333,58.8333333333,6.6666666667,46.523639292,46.523639292 -80,20,21.39,41.5,21.39,41.5,22.76,38.2,22.9633333333,40.1633333333,20.39,44.5,12.4333333333,62.8,20.6,35.874,22,41.29,20.79,39.9666666667,8.6,754.4,90,2,63,7.1,38.8961523306,38.8961523306 -80,20,21.4633333333,41.56,21.4266666667,41.3266666667,22.76,38.2,23.0333333333,40.2666666667,20.39,44.5,13.13,59.9,20.6,36.018,22,41.3633333333,20.73,40.1266666667,8.9666666667,754.45,87.8333333333,2,56.6666666667,7.05,21.3297460228,21.3297460228 -90,20,21.39,41.56,21.5666666667,41.3266666667,22.79,38.29,23.1,40.4666666667,20.39,44.5,13.7966666667,55.1,20.6,36.0642857143,22,41.4,20.73,40.26,9.3333333333,754.5,85.6666666667,2,50.3333333333,7,38.6121158488,38.6121158488 -70,20,21.4266666667,41.6266666667,21.73,40.99,22.79,38.29,23.1333333333,40.5,20.39,44.5,14.19,49.4,20.6,36.1633333333,22,41.4666666667,20.7,40.53,9.7,754.55,83.5,2,44,6.95,22.0798961353,22.0798961353 -80,10,21.5,41.76,21.93,40.73,22.79,38.3266666667,23.2,40.56,20.39,44.5,14.79,46.55,20.6333333333,36.23,22,41.4666666667,20.7,40.7233333333,10.0666666667,754.6,81.3333333333,2,37.6666666667,6.9,40.8812284004,40.8812284004 -70,20,21.5,41.8266666667,22.1333333333,40.4,22.8566666667,38.4666666667,23.3233333333,40.59,20.39,44.5,15.1666666667,38.1,20.7,36.29,22,41.5,20.7,41.09,10.4333333333,754.65,79.1666666667,2,31.3333333333,6.85,28.7062546005,28.7062546005 -80,20,21.5,42.0266666667,22.26,40.0666666667,22.89,38.5,23.4175,40.59,20.39,44.59,15.3,35.9666666667,20.7,36.29,22,41.5,20.7,41.09,10.8,754.7,77,2,25,6.8,27.6430071564,27.6430071564 -70,20,21.5333333333,42.09,22.5333333333,39.8333333333,22.89,38.5,23.5,40.59,20.39,44.59,15.6666666667,33.6666666667,20.73,36.29,22,41.4,20.7,41.4266666667,11.3,754.65,75.3333333333,2,25.6666666667,6.95,19.9093807838,19.9093807838 -90,10,21.6,42.1633333333,22.6666666667,39.5666666667,22.89,38.59,23.5,40.5,20.39,44.73,15.9333333333,28.5333333333,20.79,36.23,22,41.4,20.76,41.9,11.8,754.6,73.6666666667,2,26.3333333333,7.1,19.9891100172,19.9891100172 -80,20,21.6,42.23,22.7,39.3333333333,22.89,38.59,23.5666666667,40.5,20.39,44.79,16.3333333333,27.9566666667,20.79,36.2,22,41.4,20.73,42.2666666667,12.3,754.55,72,2,27,7.25,19.1359133227,19.1359133227 -80,20,21.6666666667,42.3633333333,22.7,39.2,22.89,38.7,23.6,40.4666666667,20.39,44.9,16.7933333333,26.3566666667,20.79,36.2,22,41.4,20.73,42.4666666667,12.8,754.5,70.3333333333,2,27.6666666667,7.4,39.3002251512,39.3002251512 -90,20,21.7,42.4,22.7,39.09,22.9175,38.7,23.6,40.2666666667,20.39,45,17.1333333333,25.2933333333,20.8566666667,36.3633333333,22,41.4,20.7,42.53,13.3,754.45,68.6666666667,2,28.3333333333,7.55,0.4763250006,0.4763250006 -70,10,21.76,42.3266666667,22.7,39.09,23,38.7,23.6,39.9666666667,20.39,45.06,17.26,24.8333333333,20.8566666667,36.3633333333,22,41.4,20.7,42.59,13.8,754.4,67,2,29,7.7,38.9920274378,38.9920274378 -60,20,21.79,42.3333333333,22.7,39.09,23,38.7,23.6,39.7666666667,20.39,45.09,17.26,22.2233333333,20.9266666667,36.3633333333,22.1,41.4666666667,20.7,42.59,13.9,754.3833333333,66.5,2,30.8333333333,7.6833333333,3.4676462761,3.4676462761 -80,10,21.79,42.2,22.76,39,23,38.7,23.6,39.59,20.39,45.09,17.2475,22.17,20.9266666667,36.29,22.1,41.4,20.7,42.6266666667,14,754.3666666667,66,2,32.6666666667,7.6666666667,19.2953876453,19.2953876453 -60,0,21.8233333333,42.2666666667,22.76,38.9333333333,23,38.76,23.6,39.53,20.39,45.2,17.7233333333,18.8566666667,21,36.29,22.1,41.4,20.7,42.5666666667,14.1,754.35,65.5,2,34.5,7.65,21.2626034394,21.2626034394 -40,0,21.89,42.25,22.79,38.8633333333,23,38.76,23.6,39.4666666667,20.39,45.2,17.89,16.2,21,36.29,22.1,41.3266666667,20.7,42.5,14.2,754.3333333333,65,2,36.3333333333,7.6333333333,41.8683508178,41.8683508178 -60,0,21.89,42.2,22.79,38.79,23,38.79,23.6,39.4,20.39,45.2,18,11.3,21.1,36.29,22.1,41.29,20.7,42.5,14.3,754.3166666667,64.5,2,38.1666666667,7.6166666667,4.6408193535,4.6408193535 -50,0,21.89,42.09,22.7,38.79,23,38.79,23.5,39.29,20.39,45.26,18,11.1128571429,21.12,36.29,22.1,41.29,20.7,42.4666666667,14.4,754.3,64,2,40,7.6,27.8798444313,27.8798444313 -60,0,21.89,41.9633333333,22.7,38.73,23,38.79,23.4266666667,39.1566666667,20.39,45.2,17.978,10.834,21.2,36.2257142857,22.1333333333,41.2,20.7,42.4,14.5166666667,754.2333333333,63.1666666667,2.1666666667,40,7.5,7.6486300095,7.6486300095 -60,0,22,41.8633333333,22.7,38.76,23,38.79,23.39,39.09,20.39,45.2,17.783,10.622,21.29,36.29,22.2,41.1266666667,20.7,42.26,14.6333333333,754.1666666667,62.3333333333,2.3333333333,40,7.4,28.1996540842,28.1996540842 -50,0,22,41.79,22.7,38.76,23,38.79,23.39,39.09,20.4633333333,45.26,17.619,10.897,21.3042857143,36.2128571429,22.29,41.1633333333,20.7,42.2,14.75,754.1,61.5,2.5,40,7.3,28.7157213548,28.7157213548 -50,0,22.0333333333,41.73,22.7,38.79,23.0666666667,38.79,23.3566666667,39.09,20.4633333333,45.26,18.0228571429,10.8385714286,21.412,36.2,22.315,41.0675,20.7,42.2,14.8666666667,754.0333333333,60.6666666667,2.6666666667,40,7.2,45.913490979,45.913490979 -50,0,22.1,41.79,22.7,38.79,23.1,38.79,23.3566666667,39.09,20.4633333333,45.29,18.16,8.68,21.5285714286,36.1685714286,22.4633333333,41,20.7,42.2,14.9833333333,753.9666666667,59.8333333333,2.8333333333,40,7.1,2.5669806171,2.5669806171 -50,0,22.1333333333,41.6633333333,22.7,38.79,23.1,38.79,23.29,39.09,20.4633333333,45.29,18.1,8.4514285714,21.6,36,22.5333333333,40.8633333333,20.7,42.2,15.1,753.9,59,3,40,7,36.0545848613,36.0545848613 -60,0,22.2,41.59,22.7,38.79,23.1,38.79,23.29,39.09,20.5,45.3266666667,18.22,7.414,21.64,35.9,22.6,40.73,20.7,42.2,15.35,753.85,59,3,40,7.2333333333,22.47437638,22.47437638 -50,10,22.2,41.56,22.7,38.7233333333,23.1,38.79,23.29,39,20.5,45.3266666667,18.6685714286,6.3357142857,21.7657142857,35.7857142857,22.6333333333,40.56,20.7,42.09,15.6,753.8,59,3,40,7.4666666667,49.2404198041,49.2404198041 -80,0,22.2,41.5,22.76,38.59,23.1,38.8633333333,23.29,38.8633333333,20.5,45.29,18.7,4.316,21.912,35.574,22.76,40.3,20.7,42.03,15.85,753.75,59,3,40,7.7,3.7632698193,3.7632698193 -80,0,22.29,41.43,22.7,38.56,23.1,38.79,23.23,38.5966666667,20.5,45.29,18.3957142857,2.08,22.0714285714,35.2328571429,22.8233333333,39.93,20.79,41.9666666667,16.1,753.7,59,3,40,7.9333333333,27.7764578001,27.7764578001 -100,0,22.29,40.8966666667,22.7,38.1666666667,23.1,38.7233333333,23.1666666667,37.7333333333,20.5,45.26,18.03,1.3633333333,22.2,34.55,22.9633333333,39.6566666667,20.79,41.7666666667,16.35,753.65,59,3,40,8.1666666667,1.982818963,1.982818963 -100,0,22.3233333333,40.1333333333,22.6,37.6333333333,23.1,38.39,23.1,37.2666666667,20.5,45.025,17.78,1.40875,22.1,34.156,23,39.73,20.79,41.56,16.6,753.6,59,3,40,8.4,4.9091274617,4.9091274617 -90,0,22.39,39.9333333333,22.6,37.425,23.1,38.045,23.1333333333,37.23,20.5,44.7666666667,17.61,1.3,22.0428571429,33.88,23.0666666667,39.93,20.73,41.36,16.4666666667,753.5166666667,58.3333333333,3,40,8.1333333333,31.1690683942,31.1690683942 -90,0,22.4266666667,39.79,22.6,37.4,23.1,37.9666666667,23.2,37.29,20.5,44.4666666667,17.58,1.04,22,33.616,23.2,39.9666666667,20.7,41.145,16.3333333333,753.4333333333,57.6666666667,3,40,7.8666666667,0.7237612503,0.7237612503 -90,0,22.5,39.79,22.6,37.3633333333,23.1666666667,37.9,23.2,37.4,20.5,44.66,17.53,1.55,21.9214285714,33.3971428571,23.2,39.8266666667,20.7,41,16.2,753.35,57,3,40,7.6,35.1729299757,35.1729299757 -90,0,22.5333333333,39.7,22.6,37.29,23.1333333333,37.9666666667,23.26,37.5266666667,20.6,44.7,17.5285714286,2.01,21.89,33.2,23.29,40,20.7,40.9333333333,16.0666666667,753.2666666667,56.3333333333,3,40,7.3333333333,18.8259933959,18.8259933959 -90,0,22.6,39.7,22.6666666667,37.3633333333,23.2,37.9,23.29,37.7,20.6,44.6266666667,17.39,1.9,21.89,33.156,23.3566666667,40.06,20.7,40.76,15.9333333333,753.1833333333,55.6666666667,3,40,7.0666666667,36.3877037656,36.3877037656 -100,0,22.6,39.645,22.6666666667,37.29,23.2,37.9666666667,23.29,37.8333333333,20.6,44.4666666667,17.33,2.101,21.87,33.027,23.5,40.0266666667,20.7,40.7,15.8,753.1,55,3,40,6.8,6.8217831897,6.8217831897 -100,0,22.6333333333,39.6266666667,22.6,37.2,23.2,37.9,23.3566666667,37.9333333333,20.6,44.3266666667,17.509,2.954,21.8233333333,33,23.5,39.9,20.7,40.6633333333,15.95,753.0666666667,53.5,3.3333333333,40,6.4833333333,21.840928949,21.840928949 -80,0,22.7,39.5666666667,22.6,37.26,23.2,38,23.29,38,20.6,44.26,17.5714285714,3.1842857143,21.79,33,23.5666666667,39.79,20.7,40.59,16.1,753.0333333333,52,3.6666666667,40,6.1666666667,29.2909576558,29.2909576558 -80,0,22.7,39.4,22.6,37.29,23.2,38,23.29,38,20.6,44.2,17.414,3.16,21.79,33,23.5666666667,39.79,20.7,40.5,16.25,753,50.5,4,40,5.85,10.2162329829,10.2162329829 -60,0,22.7,39.4,22.6,37.29,23.29,38.09,23.29,38,20.6,44.06,17.29,3.8114285714,21.754,33.09,23.6,39.79,20.7,40.5,16.4,752.9666666667,49,4.3333333333,40,5.5333333333,9.3197794049,9.3197794049 -70,0,22.7,39.5,22.6,37.4,23.29,38.09,23.3566666667,37.9333333333,20.6,44,17.34,4.245,21.7,33.1057142857,23.6,39.93,20.7,40.53,16.55,752.9333333333,47.5,4.6666666667,40,5.2166666667,12.1240389766,12.1240389766 -90,0,22.7,39.56,22.5333333333,37.4666666667,23.2,38.03,23.29,38,20.6,43.9,17.6428571429,4.25,21.7,33.218,23.6,40.19,20.7,40.59,16.7,752.9,46,5,40,4.9,38.616730948,38.616730948 -120,0,22.79,39.73,22.5,37.53,23.2,38.09,23.3233333333,38.09,20.6,43.9,17.7385714286,4.5328571429,21.7,33.3633333333,23.6333333333,40.5666666667,20.7,40.56,16.4666666667,752.8833333333,47.6666666667,4.8333333333,40,5.1666666667,6.548417767,6.548417767 -320,0,22.79,40.2633333333,22.5,37.6633333333,23.2,38.2,23.3233333333,38.09,20.7,44,17.7,4.938,21.7,33.4571428571,23.7,40.76,20.7,40.5,16.2333333333,752.8666666667,49.3333333333,4.6666666667,40,5.4333333333,25.2818343113,25.2818343113 -370,0,22.8233333333,41.4333333333,22.5,37.86,23.2,38.26,23.29,38.09,20.7,44,17.7758333333,5.8475,21.6,33.7,23.7,40.9333333333,20.7,40.59,16,752.85,51,4.5,40,5.7,1.7980128643,1.7980128643 -310,0,22.8233333333,41.2266666667,22.5,38.06,23.2,38.29,23.26,38.06,20.7,44,17.89,6,21.6,33.8388888889,23.76,41.1333333333,20.7,40.59,15.7666666667,752.8333333333,52.6666666667,4.3333333333,40,5.9666666667,43.056734337,43.056734337 -490,0,22.89,41.39,22.39,38.2666666667,23.2,38.29,23.2,38,20.7,44.06,17.5955555556,5.2722222222,21.6,33.9444444444,23.79,41.4333333333,20.7,40.7,15.5333333333,752.8166666667,54.3333333333,4.1666666667,40,6.2333333333,42.9207010544,42.9207010544 -180,0,22.89,43.7233333333,22.39,38.7333333333,23.29,38.53,23.2,38.1266666667,20.7,44.1266666667,17.214,5.916,21.6,34.018,23.79,41.5,20.7,40.76,15.3,752.8,56,4,40,6.5,38.9762009261,38.9762009261 -130,10,23,45.53,22.39,40.2333333333,23.29,38.7233333333,23.2,38.26,20.76,44.4,16.8814285714,6.9542857143,21.5571428571,34.1214285714,23.89,41.2,20.7,40.79,15.3,752.7166666667,56.3333333333,3.8333333333,40,6.5666666667,39.3227757071,39.3227757071 -290,0,23,44.53,22.39,41.1,23.39,39.045,23.15,38.38,20.745,44.85,16.6333333333,7.8966666667,21.5,34.29,23.89,41.2,20.7,40.8633333333,15.3,752.6333333333,56.6666666667,3.6666666667,40,6.6333333333,16.8738433626,16.8738433626 -280,0,23,44.1233333333,22.34,41.29,23.39,39.23,23.1,38.5,20.7,45.2666666667,16.3266666667,8.5333333333,21.5,34.3985714286,23.934,41.2,20.7,40.95,15.3,752.55,57,3.5,40,6.7,25.3612456261,25.3612456261 -310,0,23,43.53,22.2,41.1633333333,23.39,39.3633333333,23.1,38.56,20.7,45.4666666667,16.0666666667,9.4,21.5,34.518,24,41.2,20.7,41,15.3,752.4666666667,57.3333333333,3.3333333333,40,6.7666666667,44.7252795915,44.7252795915 -130,0,23,42.9,22.2,41.03,23.39,39.53,23.0666666667,38.59,20.7,45.5,15.7333333333,9.9966666667,21.5,34.6942857143,24.02,41.296,20.7,41.06,15.3,752.3833333333,57.6666666667,3.1666666667,40,6.8333333333,37.828992994,37.828992994 -170,10,23,42.5666666667,22.1,40.9,23.39,39.59,23,38.59,20.76,45.5,15.46,11.0566666667,21.5,34.834,24.1285714286,41.5957142857,20.7,41.1266666667,15.3,752.3,58,3,40,6.9,35.6869342038,35.6869342038 -120,0,22.89,42.3633333333,22.0333333333,40.7666666667,23.39,39.7,23,38.7,20.7,45.4666666667,15.09,12.4966666667,21.4371428571,34.9571428571,24.1,42.02,20.7,41.1266666667,15.0166666667,752.25,59.6666666667,2.8333333333,40,7.05,47.5662063225,47.5662063225 -100,0,22.945,42.1175,21.9633333333,40.59,23.39,39.6266666667,23,38.7,20.7,45.4,14.7566666667,13.2966666667,21.39,35.054,24.1571428571,42.6242857143,20.7,41.23,14.7333333333,752.2,61.3333333333,2.6666666667,40,7.2,41.9720890815,41.9720890815 -160,10,22.89,41.86,21.89,40.6633333333,23.39,39.7,22.9633333333,38.79,20.8966666667,54.2,14.53,14.6966666667,21.39,35.1942857143,24.2,42.878,20.7,41.3633333333,14.45,752.15,63,2.5,40,7.35,40.6301148818,40.6301148818 -450,0,22.89,41.6633333333,21.79,40.73,23.39,39.6266666667,22.89,38.79,21.8966666667,75.1333333333,14.33,15.4233333333,21.39,35.38375,24.1714285714,42.7071428571,20.6333333333,41.36,14.1666666667,752.1,64.6666666667,2.3333333333,40,7.5,9.7618185682,9.7618185682 -170,0,22.89,41.59,21.73,40.8633333333,23.5,39.6633333333,22.89,38.9,21.7933333333,76.9266666667,14.1266666667,16.3,21.39,35.536,24.1,43.476,20.7,41.56,13.8833333333,752.05,66.3333333333,2.1666666667,40,7.65,42.3286410165,42.3286410165 -80,20,22.89,41.59,21.7,41.03,23.5,39.53,22.89,38.9666666667,21.46,78.0666666667,13.9266666667,17.0333333333,21.39,35.6657142857,24.1571428571,43.9828571429,20.7,41.73,13.6,752,68,2,40,7.8,17.2865801957,17.2865801957 -80,0,22.89,41.59,21.7,41.1633333333,23.5,39.5,22.8233333333,39.0666666667,21.2,77.6,13.7633333333,17.7666666667,21.37,35.812,24.2,44.376,20.7,41.8633333333,13.5833333333,751.9333333333,68,2,40,7.7833333333,3.7344116019,3.7344116019 -70,0,22.8233333333,41.53,21.6,41.2666666667,23.5,39.4333333333,22.89,39.2,21.2,76.46,13.63,18.3666666667,21.29,35.9714285714,24.1714285714,44.4571428571,20.6333333333,41.8266666667,13.5666666667,751.8666666667,68,2,40,7.7666666667,35.0121415919,35.0121415919 -80,0,22.89,41.59,21.5333333333,41.5266666667,23.5,39.4,22.79,39.2,21.1666666667,72.9666666667,13.5,19.1633333333,21.29,36.09,24.1,44.554,20.6333333333,41.8266666667,13.55,751.8,68,2,40,7.75,45.2212270699,45.2212270699 -70,0,22.89,41.59,21.5,41.73,23.5,39.4,22.79,39.26,21.1,69.7666666667,13.395,19.7975,21.29,36.1528571429,24.0428571429,44.3,20.6,41.7,13.5333333333,751.7333333333,68,2,40,7.7333333333,14.2902429216,14.2902429216 -80,10,22.89,41.59,21.5,41.8633333333,23.5,39.4,22.79,39.29,21.0666666667,66.2666666667,13.36,20.6333333333,21.29,36.254,24,44.2,20.6,41.6266666667,13.5166666667,751.6666666667,68,2,40,7.7166666667,5.012114835,5.012114835 -50,10,22.8233333333,41.7933333333,21.4266666667,41.9633333333,23.5,39.4,22.76,39.29,21,63.3266666667,13.3,21.0566666667,21.29,36.29,23.9214285714,44.0285714286,20.6,41.56,13.5,751.6,68,2,40,7.7,30.7960604783,30.7960604783 -60,0,22.89,42.2,21.4266666667,42.1633333333,23.4633333333,39.4,22.7,39.3633333333,21,60.9333333333,13.2266666667,21.5966666667,21.29,36.29,23.89,44,20.6,41.5,13.4166666667,751.55,68.8333333333,2,40,7.7833333333,16.6470711469,16.6470711469 -60,10,22.79,41.9666666667,21.39,42.23,23.4633333333,39.4666666667,22.7,39.4,20.9266666667,59.9333333333,13.0666666667,22.46,21.29,36.29,23.89,44.385,20.7,41.9633333333,13.3333333333,751.5,69.6666666667,2,40,7.8666666667,40.4400158208,40.4400158208 -60,0,22.79,41.8266666667,21.3233333333,42.29,23.4266666667,39.53,22.7,39.4,20.89,59.1,13,22.6666666667,21.29,36.29,23.89,45.2,20.7,42.1633333333,13.25,751.45,70.5,2,40,7.95,25.4722907441,25.4722907441 -50,0,22.79,41.6633333333,21.29,42.4333333333,23.445,39.6175,22.7,39.4,20.89,58.4975,13,23.2633333333,21.29,36.29,23.912,45.94,20.7,42.45,13.1666666667,751.4,71.3333333333,2,40,8.0333333333,8.3672713023,8.3672713023 -60,0,22.79,41.53,21.1975,42.45,23.4266666667,39.7,22.7,39.4,20.89,57.83,12.9266666667,24.0633333333,21.29,36.29,24,46.6685714286,20.6666666667,42.56,13.0833333333,751.35,72.1666666667,2,40,8.1166666667,36.8156745681,36.8156745681 -40,0,22.76,41.4,21.1,42.5,23.5,39.7,22.7,39.4,20.89,57.16,12.5,28.8266666667,21.29,36.29,24,47.09,20.6666666667,42.6333333333,13,751.3,73,2,40,8.2,6.1267947662,6.1267947662 -50,0,22.7,41.4,21.1,42.53,23.4266666667,39.7,22.7,39.4666666667,20.89,56.6333333333,12.2266666667,31.4266666667,21.29,36.29,24,47.1057142857,20.7,42.79,12.9833333333,751.25,72.6666666667,2.3333333333,40,8.1333333333,16.3792867446,16.3792867446 -50,0,22.7,41.3633333333,21.0333333333,42.53,23.39,39.7,22.6,39.5,20.8233333333,56.0266666667,11.9633333333,33.2933333333,21.29,36.29,24,47.2,20.7,42.8633333333,12.9666666667,751.2,72.3333333333,2.6666666667,40,8.0666666667,8.3579615457,8.3579615457 -40,0,22.7,41.29,20.9633333333,42.6266666667,23.39,39.7,22.6,39.5,20.8233333333,55.6333333333,11.83,34.2333333333,21.29,36.4,23.9685714286,47.2257142857,20.7,42.9333333333,12.95,751.15,72,3,40,8,43.1559279561,43.1559279561 -60,10,22.7,41.345,20.89,42.7,23.39,39.73,22.6,39.53,20.79,55.1933333333,11.6266666667,36.96,21.2771428571,36.3842857143,23.89,47.4,20.7,43,12.9333333333,751.1,71.6666666667,3.3333333333,40,7.9333333333,10.7932631043,10.7932631043 -60,0,22.6666666667,41.3633333333,20.8566666667,42.8633333333,23.39,39.79,22.6,39.59,20.79,54.8,11.4266666667,38.1666666667,21.254,36.376,23.8042857143,47.3057142857,20.7,43.09,12.9166666667,751.05,71.3333333333,3.6666666667,40,7.8666666667,28.3445682609,28.3445682609 -60,0,22.6,41.29,20.79,42.8633333333,23.39,39.79,22.6,39.59,20.79,54.56,11.2633333333,39.56,21.2642857143,36.4714285714,23.772,47.29,20.7,43.1633333333,12.9,751,71,4,40,7.8,0.8624333073,0.8624333073 -50,0,22.6,41.29,20.76,43,23.39,39.79,22.5333333333,39.6633333333,20.79,54.3,11.0633333333,41.6333333333,21.29,36.5,23.7,47.3685714286,20.7,43.23,12.5166666667,751.05,74,3.8333333333,36.8333333333,7.9833333333,7.6820137911,7.6820137911 -60,0,22.6,41.29,20.7,43.06,23.39,39.79,22.6,39.7,20.79,54.06,10.86,45,21.29,36.5771428571,23.7,47.634,20.7,43.3633333333,12.1333333333,751.1,77,3.6666666667,33.6666666667,8.1666666667,5.0458352896,5.0458352896 -50,0,22.6,41.4,20.7,43.23,23.39,39.79,22.5333333333,39.76,20.79,53.9333333333,10.7266666667,48.26,21.272,36.572,23.6714285714,47.9385714286,20.7,43.4333333333,11.75,751.15,80,3.5,30.5,8.35,17.0715453918,17.0715453918 -50,0,22.5333333333,41.4,20.6333333333,43.29,23.39,39.79,22.5,39.79,20.79,53.7233333333,10.55,50.69,21.2,36.5642857143,23.64,48.134,20.7,43.5,11.3666666667,751.2,83,3.3333333333,27.3333333333,8.5333333333,0.5104371347,0.5104371347 -50,0,22.5,41.5,20.6,43.4333333333,23.39,39.73,22.5,39.8633333333,20.73,53.53,10.39,51.9666666667,21.2,36.59,23.6,48.09,20.7,43.59,10.9833333333,751.25,86,3.1666666667,24.1666666667,8.7166666667,16.0832761787,16.0832761787 -50,0,22.5,41.5,20.5333333333,43.56,23.39,39.79,22.5,39.9,20.7,53.3633333333,10.33,52.8333333333,21.2,36.65875,23.6,48.2,20.7,43.6633333333,10.6,751.3,89,3,21,8.9,27.9882160597,27.9882160597 -50,0,22.5,41.59,20.5,43.7,23.39,39.79,22.5,39.975,20.7,53.29,10.2633333333,53.7933333333,21.2,36.7,23.5428571429,48.3414285714,20.7,43.8266666667,10.4166666667,751.2166666667,90.3333333333,2.6666666667,28.1666666667,8.9166666667,40.8451897907,40.8451897907 -40,10,22.5,41.59,20.4266666667,43.76,23.5,39.9333333333,22.5,40.06,20.7,53.1633333333,10.19,54.7333333333,21.2,36.718,23.5,48.696,20.7,43.9,10.2333333333,751.1333333333,91.6666666667,2.3333333333,35.3333333333,8.9333333333,48.7258017412,48.7258017412 -70,0,22.5,41.7,20.39,43.9333333333,23.5,40,22.5,40.1266666667,20.7,53.09,10.16,55.6566666667,21.2,36.79,23.5,48.9971428571,20.7,44.03,10.05,751.05,93,2,42.5,8.95,12.1771468082,12.1771468082 -50,0,22.4266666667,41.6266666667,20.39,44.06,23.5,40,22.5,40.2,20.7,52.9666666667,10.1,56.1966666667,21.2,36.9,23.5,49.374,20.7,44.09,9.8666666667,750.9666666667,94.3333333333,1.6666666667,49.6666666667,8.9666666667,17.5315368338,17.5315368338 -50,0,22.39,41.7,20.3566666667,44.1566666667,23.5,40,22.39,40.1266666667,20.7,52.9,10.1,56.7666666667,21.2257142857,36.9285714286,23.5,49.64,20.7,44.23,9.6833333333,750.8833333333,95.6666666667,1.3333333333,56.8333333333,8.9833333333,12.1832601726,12.1832601726 -60,0,22.39,41.76,20.29,44.3175,23.6,39.9,22.39,40.2,20.7,52.745,10.0333333333,56.9666666667,21.2,36.96,23.5,49.678,20.7,44.3175,9.5,750.8,97,1,64,9,44.9908373179,44.9908373179 -60,0,22.3566666667,41.79,20.29,44.4666666667,23.6,40,22.39,40.2,20.7,52.6633333333,10,57.4633333333,21.2,37,23.4685714286,49.5357142857,20.7,44.4666666667,9.4666666667,750.6333333333,97.3333333333,1.1666666667,62.6666666667,9.0166666667,27.2613129579,27.2613129579 -40,0,22.3566666667,41.8633333333,20.26,44.5,23.6666666667,40.06,22.39,40.26,20.7,52.59,10,57.8633333333,21.2,37,23.434,49.334,20.7,44.53,9.4333333333,750.4666666667,97.6666666667,1.3333333333,61.3333333333,9.0333333333,47.4803912686,47.4803912686 -50,0,22.29,41.9,20.2,44.56,23.6333333333,40.03,22.39,40.29,20.6666666667,52.4666666667,9.9633333333,58.5666666667,21.2,37.0514285714,23.4685714286,49.2128571429,20.7,44.59,9.4,750.3,98,1.5,60,9.05,0.5736245308,0.5736245308 -50,0,22.29,41.9,20.2,44.7,23.6333333333,40.03,22.39,40.29,20.6666666667,52.4,9.89,59.0933333333,21.2,37.09,23.478,48.994,20.7,44.7,9.3666666667,750.1333333333,98.3333333333,1.6666666667,58.6666666667,9.0666666667,37.5807592296,37.5807592296 -50,0,22.29,42,20.1333333333,44.76,23.6,40,22.3566666667,40.4,20.7,52.3633333333,9.89,59.6566666667,21.2,37.09,23.39,48.7257142857,20.7,44.7,9.3333333333,749.9666666667,98.6666666667,1.8333333333,57.3333333333,9.0833333333,32.3383123963,32.3383123963 -40,0,22.2675,41.975,20.1,44.9333333333,23.6666666667,40.06,22.29,40.4666666667,20.7,52.29,9.89,59.8633333333,21.2,37.156,23.39,48.6725,20.7,44.9,9.3,749.8,99,2,56,9.1,25.8768685046,25.8768685046 -70,0,22.2,41.9666666667,20.1,45,23.6666666667,40.06,22.29,40.5,20.6,52.1633333333,9.89,60.2666666667,21.2,37.1842857143,23.39,48.5,20.7,44.9666666667,9.3,749.7,99,2,57,9.1166666667,15.99850239,15.99850239 -60,0,22.2,42.03,20.0666666667,45,23.6,40,22.29,40.5,20.6,52.09,9.89,60.4,21.2,37.2,23.3042857143,48.4428571429,20.7,45.03,9.3,749.6,99,2,58,9.1333333333,38.5615857784,38.5615857784 -60,0,22.2,42.09,20,45.06,23.6333333333,40.1266666667,22.29,40.5,20.6,52.06,9.8,60.745,21.2,37.2257142857,23.29,48.4,20.76,45.09,9.3,749.5,99,2,59,9.15,46.3348625344,46.3348625344 -50,0,22.2,42.1266666667,20,45.1266666667,23.7,40.2,22.29,40.56,20.6,52,9.83,61.0666666667,21.2,37.29,23.29,48.4,20.7,45.2,9.3,749.4,99,2,60,9.1666666667,39.8121252307,39.8121252307 -60,0,22.2,42.2,19.9266666667,45.26,23.7,40.09,22.29,40.59,20.6,52,9.89,61.26,21.2,37.29,23.29,48.4,20.7,45.26,9.3,749.3,99,2,61,9.1833333333,2.3093306343,2.3093306343 -40,0,22.1666666667,42.2,19.9633333333,45.3266666667,23.7,40.09,22.29,40.59,20.6,51.9333333333,9.89,61.3266666667,21.16,37.312,23.2385714286,48.4128571429,20.76,45.4,9.3,749.2,99,2,62,9.2,32.7224569977,32.7224569977 -50,0,22.1,42.26,19.89,45.4,23.7,40.09,22.29,40.6266666667,20.6,51.9,9.89,61.4,21.2,37.4,23.2,48.334,20.7,45.4,9.35,749.1,98.6666666667,2,55,9.1833333333,35.9885810874,35.9885810874 -50,0,22.1,42.29,19.8566666667,45.4666666667,23.7,40.09,22.2225,40.6175,20.6,51.9,9.89,61.3633333333,21.1,37.4,23.2,48.2642857143,20.73,45.4333333333,9.4,749,98.3333333333,2,48,9.1666666667,28.8754560519,28.8754560519 -50,0,22.0333333333,42.29,19.79,45.4666666667,23.7,40.09,22.2,40.59,20.6,51.8633333333,9.83,61.23,21.1285714286,37.4,23.2,48.156,20.73,45.5,9.45,748.9,98,2,41,9.15,34.0343353222,34.0343353222 -40,0,22.0666666667,42.3633333333,19.79,45.53,23.7,40.09,22.2,40.59,20.6,51.79,9.66,61.0266666667,21.1,37.44,23.1857142857,48.0385714286,20.79,45.53,9.5,748.8,97.6666666667,2,34,9.1333333333,27.9822146986,27.9822146986 -60,0,22,42.29,19.79,45.59,23.7,40.2,22.2,40.59,20.5666666667,51.79,9.5333333333,60.9,21.1,37.4,23.12,48,20.79,45.59,9.55,748.7,97.3333333333,2,27,9.1166666667,37.7074170043,37.7074170043 -50,0,22,42.3266666667,19.79,45.59,23.7,40.2,22.2,40.59,20.5,51.73,9.39,60.9633333333,21.1,37.4,23.1285714286,48.0642857143,20.79,45.6266666667,9.6,748.6,97,2,20,9.1,36.2886169576,36.2886169576 -60,0,22,42.4,19.79,45.59,23.7,40.2,22.2,40.59,20.6,51.7,9.39,61.2233333333,21.1,37.4142857143,23.1,48.134,20.79,45.7225,9.6,748.5,96.1666666667,2.5,23.3333333333,8.9833333333,47.6316996152,47.6316996152 -50,0,22,42.4,19.7,45.7,23.7,40.1633333333,22.2,40.6266666667,20.5666666667,51.59,9.4266666667,61.4633333333,21.1,37.4375,23.1,48.2,20.79,45.79,9.6,748.4,95.3333333333,3,26.6666666667,8.8666666667,8.830639394,8.830639394 -60,0,21.9266666667,42.4,19.7,45.7,23.76,40.1633333333,22.2,40.6266666667,20.5,51.59,9.5,61.59,21.1,37.5,23.1,48.2,20.79,45.79,9.6,748.3,94.5,3.5,30,8.75,28.4172680927,28.4172680927 -60,0,21.89,42.4,19.7,45.76,23.79,40.09,22.1666666667,40.7,20.5333333333,51.59,9.6,61.7,21.1,37.4571428571,23.1,48.1685714286,20.79,45.79,9.6,748.2,93.6666666667,4,33.3333333333,8.6333333333,19.0280702547,19.0280702547 -50,0,21.89,42.4666666667,19.7,45.8266666667,23.79,40.09,22.1,40.7,20.5333333333,51.53,9.6,61.8333333333,21.1,37.5,23.1,48.054,20.79,45.8266666667,9.6,748.1,92.8333333333,4.5,36.6666666667,8.5166666667,12.6298952848,12.6298952848 -50,0,21.89,42.5,19.6333333333,45.8266666667,23.79,40.09,22.1,40.7,20.5,51.5,9.69,62,21.1,37.5,23.1,48.0257142857,20.79,45.9,9.6,748,92,5,40,8.4,11.0813982552,11.0813982552 -50,0,21.89,42.5,19.6,45.79,23.79,40.09,22.1,40.7,20.5,51.5,9.7633333333,62,21.1,37.5,23.1,48,20.79,45.9666666667,9.6,747.9666666667,92.3333333333,5,38.1666666667,8.4333333333,20.7306019263,20.7306019263 -50,0,21.89,42.5,19.6,45.8633333333,23.76,40.09,22.1,40.73,20.5,51.4666666667,9.8,61.9,21.1,37.5,23.0571428571,47.9571428571,20.79,45.9666666667,9.6,747.9333333333,92.6666666667,5,36.3333333333,8.4666666667,2.0586392959,2.0586392959 -50,0,21.89,42.5,19.6,45.9,23.76,40.09,22.1,40.79,20.5,51.4,9.7725,61.8725,21.1,37.5,23.06,47.916,20.79,46,9.6,747.9,93,5,34.5,8.5,25.1040166477,25.1040166477 -50,0,21.8233333333,42.5,19.6,45.9,23.73,40.2,22.1,40.79,20.5,51.3633333333,9.69,61.79,21.1,37.5128571429,23,47.79,20.79,46,9.6,747.8666666667,93.3333333333,5,32.6666666667,8.5333333333,30.0602625124,30.0602625124 -70,0,21.79,42.5,19.5666666667,46,23.79,40.2,22.1,40.79,20.5,51.29,9.69,61.79,21.08,37.572,23,47.79,20.79,46.0966666667,9.6,747.8333333333,93.6666666667,5,30.8333333333,8.5666666667,7.5553961098,7.5553961098 -90,0,21.79,42.5,19.5,46,23.73,40.09,22.0666666667,40.76,20.5,51.29,9.69,61.8633333333,21.0714285714,37.5,23,47.79,20.79,46.43,9.6,747.8,94,5,29,8.6,8.6651128251,8.6651128251 -640,0,21.79,42.73,19.5,46.1566666667,23.73,40.09,22.0666666667,40.76,20.5,51.29,9.69,61.9,21.06,37.554,23,47.79,20.79,46.26,9.6,747.7833333333,93.8333333333,4.8333333333,28.8333333333,8.5833333333,9.8948476487,9.8948476487 -650,0,21.79,42.93,19.5,46.43,23.7,40.0666666667,22.0666666667,40.79,20.5,51.26,9.7633333333,61.9,21.0857142857,37.5514285714,23,47.6628571429,20.79,46.2,9.6,747.7666666667,93.6666666667,4.6666666667,28.6666666667,8.5666666667,47.418948845,47.418948845 -290,0,21.89,43.8233333333,19.5,46.9266666667,23.8266666667,40.7933333333,22,40.812,20.5,51.26,9.8,61.8266666667,21.08,37.572,22.98625,47.25875,20.79,46.5266666667,9.6,747.75,93.5,4.5,28.5,8.55,40.8484228537,40.8484228537 -270,10,21.89,44.5633333333,19.5666666667,47.4,24.0666666667,41.83,22,40.9,20.5,51.29,9.8,61.8755555556,21.0285714286,37.5257142857,22.934,46.958,20.79,46.3266666667,9.6,747.7333333333,93.3333333333,4.3333333333,28.3333333333,8.5333333333,20.2416802291,20.2416802291 -290,0,21.89,44.86,19.6,47.9633333333,24.3266666667,42.2966666667,22,41.09,20.5,51.29,9.83,61.79,21,37.5,22.89,46.7642857143,20.79,46.1633333333,9.6,747.7166666667,93.1666666667,4.1666666667,28.1666666667,8.5166666667,9.5992272487,9.5992272487 -480,0,21.9633333333,45.06,19.6,48.2233333333,24.5666666667,42.4666666667,22,41.145,20.4266666667,51.3266666667,9.89,61.745,21.0428571429,37.5385714286,22.89,46.554,20.79,46.03,9.6,747.7,93,4,28,8.5,13.1098199985,13.1098199985 -490,30,22,45.4266666667,19.6,48.5666666667,24.76,42.2666666667,22,41.3266666667,20.5,51.3266666667,10,61.43,21.04,37.536,22.8757142857,46.3385714286,20.79,45.9,9.6333333333,747.7666666667,92.5,4.3333333333,28.1666666667,8.4666666667,11.74566634,11.74566634 -220,20,22,45.3666666667,19.6,48.8333333333,25,42.1333333333,22,41.6,20.5,51.4,10,61.29,21.0285714286,37.5257142857,22.79,46.134,20.79,45.9,9.6666666667,747.8333333333,92,4.6666666667,28.3333333333,8.4333333333,36.7402863689,36.7402863689 -120,10,22,45.1633333333,19.6,49.045,25.1,41.65,22.04,41.856,20.5,51.4,10,60.85,21,37.5,22.79,46.0257142857,20.79,46.16,9.7,747.9,91.5,5,28.5,8.4,2.5762455421,2.5762455421 -90,0,22.0666666667,45.03,19.7,48.93,25.2,40.9266666667,22.1,42.25,20.5,51.4,10.0833333333,60.6333333333,21,37.4857142857,22.79,45.79,20.79,46.5,9.7333333333,747.9666666667,91,5.3333333333,28.6666666667,8.3666666667,11.9435406523,11.9435406523 -70,0,22,44.7,19.7,48.79,25.1666666667,40.59,22.1,42.29,20.4266666667,51.3266666667,10.1,60.4133333333,21,37.46,22.79,45.7228571429,20.79,46.4333333333,9.7666666667,748.0333333333,90.5,5.6666666667,28.8333333333,8.3333333333,18.0936212535,18.0936212535 -90,0,22,44.6266666667,19.7,48.6633333333,25.0333333333,40.53,22.1,42.1633333333,20.4266666667,51.3266666667,10.16,60.1266666667,21,37.5,22.79,45.572,20.79,46.3633333333,9.8,748.1,90,6,29,8.3,20.5031840014,20.5031840014 -140,0,22.0666666667,44.6333333333,19.7,48.53,25,40.3633333333,22.1,42.03,20.4633333333,51.3333333333,10.3225,59.9425,21,37.4,22.7257142857,45.4714285714,20.79,46.23,9.7666666667,748.1333333333,90,5.8333333333,30.8333333333,8.2666666667,4.6416816884,4.6416816884 -640,0,22,44.5,19.7,48.5,24.9266666667,40.29,22.1,41.9666666667,20.39,51.2,10.4633333333,59.56,21,37.4428571429,22.7,45.29,20.79,46.1633333333,9.7333333333,748.1666666667,90,5.6666666667,32.6666666667,8.2333333333,1.9749599975,1.9749599975 -490,0,22.1,44.995,19.76,48.6333333333,24.8566666667,40.5666666667,22.1,41.8266666667,20.4633333333,51.1633333333,10.79,58.345,21,37.44,22.7,45.29,20.79,46.1633333333,9.7,748.2,90,5.5,34.5,8.2,36.9330951013,36.9330951013 -350,0,22.1333333333,45.5666666667,19.9266666667,49.09,24.8566666667,40.8333333333,22.1,41.79,20.4633333333,51.1633333333,11.2566666667,56.76,21,37.4,22.7,45.272,20.8233333333,46.2,9.6666666667,748.2333333333,90,5.3333333333,36.3333333333,8.1666666667,17.7561010816,17.7561010816 -260,0,22.2,45.76,20,49.1633333333,25,40.8266666667,22.1,41.73,20.5,51.2,11.4633333333,54.7,21.0285714286,37.4,22.7,45.1685714286,20.8233333333,46.1266666667,9.6333333333,748.2666666667,90,5.1666666667,38.1666666667,8.1333333333,11.9044834631,11.9044834631 -530,0,22.29,46.03,20.0333333333,49.3266666667,25.0666666667,40.9,22.1,41.656,20.5,51.26,11.525,52.0425,21,37.4,22.66,44.96,20.8566666667,46.06,9.6,748.3,90,5,40,8.1,42.8950109635,42.8950109635 -430,0,22.29,46.09,20.1,49.3266666667,25.2,40.59,22.1,41.5236363636,20.5,51.29,11.8,51.46,21.0142857143,37.3528571429,22.6,44.8371428571,20.79,46,9.75,748.3,89.3333333333,5.1666666667,38.1666666667,8.1166666667,42.3995276913,42.3995276913 -130,0,22.3233333333,46.09,20.2,49.26,25.2,40.53,22.1,41.4666666667,20.5,51.3633333333,12,50.976,21.04,37.334,22.6,44.772,20.79,45.9666666667,9.9,748.3,88.6666666667,5.3333333333,36.3333333333,8.1333333333,47.7154402412,47.7154402412 -90,0,22.39,46.03,20.26,49.26,25.2,40.1633333333,22.1,41.3633333333,20.5,51.4,12.345,47.7233333333,21.0714285714,37.3685714286,22.6,44.7,20.79,45.9666666667,10.05,748.3,88,5.5,34.5,8.15,34.8982801894,34.8982801894 -70,0,22.39,45.7233333333,20.29,49.06,25.2,39.89,22.1,41.29,20.5,51.4,12.345,45.595,21,37.29,22.6,44.59,20.8566666667,45.9666666667,10.2,748.3,87.3333333333,5.6666666667,32.6666666667,8.1666666667,18.1504249922,18.1504249922 -220,0,22.39,45.4633333333,20.29,48.9333333333,24.9633333333,39.6633333333,22.1,41.29,20.5,51.4,12.34,46.078,21.0428571429,37.3371428571,22.5714285714,44.59,20.79,45.8266666667,10.35,748.3,86.6666666667,5.8333333333,30.8333333333,8.1833333333,12.7733589383,12.7733589383 -420,0,22.39,45.09,20.4266666667,48.6,24.8233333333,39.53,22.1,41.5633333333,20.5,51.4,12.7,45.6566666667,21.1,37.4,22.6,44.59,20.79,45.79,10.5,748.3,86,6,29,8.2,39.0602142084,39.0602142084 -270,0,22.4633333333,45.2966666667,20.6333333333,48.2666666667,24.8233333333,39.9933333333,22.1,41.76,20.5,51.4,13.3108333333,40.9491666667,21.1,37.3214285714,22.5714285714,44.59,20.79,45.79,10.6,748.35,85.1666666667,6.1666666667,30.8333333333,8.1666666667,46.9747184194,46.9747184194 -270,0,22.5333333333,46.1666666667,20.8233333333,47.59,24.9633333333,40.5266666667,22.1,41.9,20.5,51.4,13.2633333333,39.1,21.1,37.29,22.56,44.5,20.79,45.7,10.7,748.4,84.3333333333,6.3333333333,32.6666666667,8.1333333333,32.2273333091,32.2273333091 -280,0,22.7933333333,48.2933333333,20.89,47.9233333333,25.1333333333,40.9,22.2,41.79,20.5,51.3633333333,13.3233333333,40.4333333333,21.0666666667,37.26,22.5,44.4475,20.84,45.595,10.8,748.45,83.5,6.5,34.5,8.1,28.8052651798,28.8052651798 -340,0,22.89,49.1566666667,21.15,48.19,25.26,40.9,22.2,41.656,20.5,51.29,13.7933333333,38.4633333333,21.04,37.2,22.5,44.1388888889,20.79,45.36,10.9,748.5,82.6666666667,6.6666666667,36.3333333333,8.0666666667,36.6299892543,36.6299892543 -530,20,22.8233333333,47.6233333333,21.1,47.0266666667,25.445,41.1,22.2,41.5666666667,20.5,51.2,14.2,37.9966666667,21.0428571429,37.1371428571,22.5,43.9714285714,20.79,45.06,11,748.55,81.8333333333,6.8333333333,38.1666666667,8.0333333333,6.8906232598,6.8906232598 -390,10,22.6666666667,45.5333333333,21.0333333333,45.8933333333,25.73,41.1233333333,22.2,41.5,20.5333333333,51.06,14.26,37.045,21,37.09,22.5,43.8085714286,20.8566666667,45,11.1,748.6,81,7,40,8,45.8685260382,45.8685260382 -250,10,22.6,44.6666666667,20.8566666667,44.8933333333,25.93,40.99,22.2,41.323,20.5333333333,50.86,14.33,36.1633333333,21.0277777778,37.1205555556,22.5,43.7,20.79,44.79,11.2833333333,748.5833333333,80.1666666667,6.8333333333,40,8.0166666667,28.2766264398,28.2766264398 -100,10,22.6,43.6233333333,20.79,44.36,26,40.0566666667,22.2,41.29,20.6,50.43,14.63,36.3933333333,21.0777777778,37.1755555556,22.4755555556,43.6066666667,20.79,44.79,11.4666666667,748.5666666667,79.3333333333,6.6666666667,40,8.0333333333,37.1996916132,37.1996916132 -100,10,22.6,43.29,21.0666666667,44.1933333333,26.0666666667,39.1966666667,22.215,41.28,20.6,50.0966666667,15.1633333333,33.1333333333,21.1,37.2,22.5,43.56,20.8233333333,44.79,11.65,748.55,78.5,6.5,40,8.05,28.0836895341,28.0836895341 -100,10,22.6,43.29,21.26,43.86,25.93,38.2633333333,22.28,41.2188888889,20.6,49.7233333333,15.445,31.59,21.1,37.1371428571,22.4685714286,43.3671428571,20.89,44.73,11.8333333333,748.5333333333,77.6666666667,6.3333333333,40,8.0666666667,11.2043721369,11.2043721369 -70,10,22.6,43.29,21.3233333333,43.6633333333,25.73,37.6566666667,22.29,41.1266666667,20.6,49.395,15.4266666667,27.96,21.12,37.072,22.4214285714,43.1471428571,20.79,44.4666666667,12.0166666667,748.5166666667,76.8333333333,6.1666666667,40,8.0833333333,15.5299864244,15.5299864244 -80,10,22.6,43.29,21.4633333333,43.59,25.5666666667,37.5,22.29,41.0294444444,20.6,49.1933333333,15.725,24.6133333333,21.2,36.9375,22.5,43.036,20.79,44.4,12.2,748.5,76,6,40,8.1,16.2143579568,16.2143579568 -60,10,22.6,43.2233333333,21.5333333333,43.2233333333,25.4266666667,37.56,22.29,40.8561111111,20.6,48.9666666667,15.8566666667,23.28,21.2,36.7241666667,22.5,42.856,20.89,44.43,12.5333333333,748.4666666667,75,6.3333333333,38,8.2166666667,18.5905698221,18.5905698221 -80,10,22.6,43.2233333333,21.6666666667,43.09,25.3566666667,37.7,22.3233333333,40.7166666667,20.6,48.8266666667,16.03,21.4266666667,21.2,36.5642857143,22.4685714286,42.6057142857,20.89,44.29,12.8666666667,748.4333333333,74,6.6666666667,36,8.3333333333,32.1258482174,32.1258482174 -100,10,22.6,43.4233333333,21.7,42.63,25.23,37.6266666667,22.3233333333,40.565,20.6,48.6633333333,16.03,19.1666666667,21.254,36.356,22.434,42.418,20.89,44.2233333333,13.2,748.4,73,7,34,8.45,49.8949144036,49.8949144036 -70,10,22.6,42.89,21.5666666667,41.83,25.2,37.5266666667,22.3122222222,40.4388888889,20.6,48.53,15.7566666667,19.4333333333,21.2,36.1971428571,22.4371428571,42.3114285714,20.89,44.03,13.5333333333,748.3666666667,72,7.3333333333,32,8.5666666667,34.4777767081,34.4777767081 -70,10,22.5666666667,42.2966666667,21.4266666667,41.1633333333,25.1333333333,37.1933333333,22.3122222222,40.345,20.6,48.3633333333,15.83,19.1566666667,21.2,36.072,22.39,41.96,20.89,43.79,13.8666666667,748.3333333333,71,7.6666666667,30,8.6833333333,2.0290530287,2.0290530287 -70,20,22.5,41.9633333333,21.5,41.03,25,36.8633333333,22.2955555556,40.2088888889,20.6,48.23,15.89,17.89,21.2,35.9285714286,22.39,41.77,20.89,43.79,14.2,748.3,70,8,28,8.8,4.0606935741,4.0606935741 -70,10,22.5,41.9333333333,21.5333333333,41,24.9266666667,36.73,22.3511111111,40.1022222222,20.6333333333,47.9666666667,16.1966666667,16.63,21.29,35.856,22.412,41.572,20.8566666667,44,14.0166666667,748.2333333333,69.5,8,30,8.5166666667,9.8928175052,9.8928175052 -60,10,22.5,42.06,21.6,40.9333333333,24.8566666667,36.79,22.3511111111,40.0094444444,20.6333333333,47.7666666667,16.4633333333,14.2966666667,21.29,35.6425,22.4685714286,41.44,20.79,44,13.8333333333,748.1666666667,69,8,32,8.2333333333,3.3846090664,3.3846090664 -60,10,22.5,42.23,21.7,41.06,24.79,36.8633333333,22.39,39.8805555556,20.6,47.59,16.6,12.1566666667,21.3471428571,35.4828571429,22.5,41.29,20.8566666667,44.1633333333,13.65,748.1,68.5,8,34,7.95,5.7552841608,5.7552841608 -60,10,22.5,42.3633333333,21.7,41,24.76,36.9333333333,22.39,39.7488888889,20.6,47.53,16.46,11.3566666667,21.39,35.25,22.5,41.1057142857,20.8566666667,44.1633333333,13.4666666667,748.0333333333,68,8,36,7.6666666667,23.6959094997,23.6959094997 -60,0,22.5666666667,42.4666666667,21.79,40.8633333333,24.7,37.1333333333,22.39,39.6266666667,20.6333333333,47.5,16.73,7.8933333333,21.39,34.9971428571,22.5,40.918,20.89,44.145,13.2833333333,747.9666666667,67.5,8,38,7.3833333333,7.5167163392,7.5167163392 -60,10,22.5,41.86,21.79,40.42,24.5666666667,37.09,22.39,39.4922222222,20.7,47.5,16.6633333333,7.56,21.5,34.754,22.5,40.736,20.89,44.09,13.1,747.9,67,8,40,7.1,42.5424625399,42.5424625399 -80,0,22.6,41.29,21.79,39.83,24.4266666667,37.03,22.39,39.3046666667,20.7,47.245,16.6966666667,8.8333333333,21.5,34.63,22.5,40.4671428571,20.89,44.03,13.3,747.8166666667,65.5,7.8333333333,40,6.95,31.0409936588,31.0409936588 -80,0,22.6,41.0966666667,21.79,39.49,24.29,36.95,22.39,39.2288888889,20.6333333333,46.9666666667,17.03,8.6266666667,21.52,34.418,22.52,40.196,20.79,43.8633333333,13.5,747.7333333333,64,7.6666666667,40,6.8,31.6005283501,31.6005283501 -70,0,22.6,40.76,21.79,39.1566666667,24.2,36.79,22.39,39.1266666667,20.6333333333,46.6933333333,17.29,8.1,21.6,34.2257142857,22.6,39.9285714286,20.79,43.79,13.7,747.65,62.5,7.5,40,6.65,5.9022632893,5.9022632893 -80,10,22.6,40.5,21.79,38.6933333333,24.2,36.79,22.39,39.0294444444,20.7,46.56,17.29,7.3666666667,21.64,34.09,22.6,39.754,20.8566666667,43.8333333333,13.9,747.5666666667,61,7.3333333333,40,6.5,5.103406671,5.103406671 -60,0,22.6,39.99,21.73,38.36,24.1,36.73,22.4083333333,38.9333333333,20.7,46.36,17.4633333333,6.53,21.7,33.94,22.6857142857,39.65,20.8566666667,43.7,14.1,747.4833333333,59.5,7.1666666667,40,6.35,3.2946318737,3.2946318737 -60,0,22.6,39.79,21.7,38.1633333333,24.1,36.73,22.3961111111,38.7472222222,20.7,46.09,17.2675,4.8475,21.754,33.75,22.7,39.44,20.8233333333,43.59,14.3,747.4,58,7,40,6.2,11.257996317,11.257996317 -50,0,22.6,39.395,21.7,37.89,24.1,36.56,22.445,38.6572222222,20.7,45.9633333333,17.1666666667,5.6,21.8185714286,33.59,22.7,39.2957142857,20.89,43.59,14.5333333333,747.35,56.6666666667,7.3333333333,38,6.05,25.9908509441,25.9908509441 -50,0,22.6,38.9333333333,21.7,37.6633333333,24.1666666667,36.5,22.5,38.6277777778,20.7,45.7233333333,17.39,6.2666666667,21.89,33.356,22.79,39.054,20.89,43.3633333333,14.7666666667,747.3,55.3333333333,7.6666666667,36,5.9,0.9912065463,0.9912065463 -80,0,22.6,39.06,21.7,37.6633333333,24.1,36.5,22.5,38.5022222222,20.7,45.53,17.3233333333,3.3266666667,21.9528571429,33.1628571429,22.8042857143,38.7814285714,20.89,43.29,15,747.25,54,8,34,5.75,27.7677981881,27.7677981881 -70,0,22.7,39.23,21.73,37.7,24.1,36.4333333333,22.5,38.3938888889,20.73,45.3266666667,17.23,2.9966666667,22.02,32.94,22.89,38.836,20.89,43.1633333333,15.2333333333,747.2,52.6666666667,8.3333333333,32,5.6,4.3848205707,4.3848205707 -90,0,22.7,39.29,21.79,37.7,24,36.4333333333,22.5,38.3572222222,20.79,45.1933333333,17.29,2.59,22.1,32.7957142857,22.9214285714,39.3971428571,20.89,43.03,15.4666666667,747.15,51.3333333333,8.6666666667,30,5.45,48.4954901389,48.4954901389 -90,0,22.7,39.26,21.79,37.79,24,36.5,22.5,38.5183333333,20.79,44.36,17.2,3.4566666667,22.1,32.59,23,39.976,20.89,42.9,15.7,747.1,50,9,28,5.3,29.2815120309,29.2815120309 -80,0,22.7,39.2,21.79,37.8633333333,24,36.5,22.5,38.6022222222,20.79,44.0266666667,17.1333333333,3.9966666667,22.1,32.5514285714,23.0875,40.18625,20.89,42.8266666667,15.6277777778,747.0166666667,50.6111111111,8.9444444444,28.6666666667,5.3944444444,13.5102724307,13.5102724307 -90,0,22.7,39.23,21.79,38,24.0666666667,36.6333333333,22.5,38.5305555556,20.79,44.09,17.2,4.9966666667,22.1,32.572,23.1142857143,40.34,20.9633333333,42.79,15.5555555556,746.9333333333,51.2222222222,8.8888888889,29.3333333333,5.4888888889,35.8757249312,35.8757249312 -80,0,22.7,39.29,21.79,38.06,24.1,36.79,22.5,38.345,20.79,44.09,17.26,4.1966666667,22.1,32.5,23.16,40.4,20.89,42.73,15.4833333333,746.85,51.8333333333,8.8333333333,30,5.5833333333,27.5778991403,27.5778991403 -80,0,22.7,39.7,21.79,38.09,24.1,36.8633333333,22.5,38.1966666667,20.79,44.06,17.3233333333,5.0666666667,22.06,32.4,23.2,40.4,20.89,42.7,15.4111111111,746.7666666667,52.4444444444,8.7777777778,30.6666666667,5.6777777778,42.9816132644,42.9816132644 -80,0,22.7,39.7,21.79,38.09,24.1,37,22.5,38.09,20.79,43.9333333333,17.4633333333,4.4,22.0285714286,32.4,23.29,40.5,20.89,42.7,15.3388888889,746.6833333333,53.0555555556,8.7222222222,31.3333333333,5.7722222222,43.6999648111,43.6999648111 -80,0,22.7,39.6633333333,21.79,38.1266666667,24.1666666667,37.06,22.5,38.1783333333,20.79,43.9,17.3266666667,4.9666666667,22,32.4,23.29,40.5,20.89,42.59,15.2666666667,746.6,53.6666666667,8.6666666667,32,5.8666666667,0.6251190905,0.6251190905 -70,0,22.6333333333,39.6633333333,21.79,38.26,24.1666666667,37.2,22.5,38.4627777778,20.79,43.8266666667,16.9933333333,6.8933333333,22,32.4971428571,23.35,40.576,20.89,42.5266666667,15.1944444444,746.5166666667,54.2777777778,8.6111111111,32.6666666667,5.9611111111,8.3832132048,8.3832132048 -70,0,22.6,39.7,21.745,38.45,24.1,37.26,22.5,38.6783333333,20.89,43.8633333333,16.6,10.1666666667,22,32.94,23.39,40.7957142857,20.89,42.4,15.1222222222,746.4333333333,54.8888888889,8.5555555556,33.3333333333,6.0555555556,28.961295716,28.961295716 -80,0,22.6,39.76,21.7,38.73,24.1,37.345,22.5,38.9627777778,20.9725,43.79,16.46,10.0333333333,22,33.1142857143,23.434,41.036,20.9266666667,42.4,15.05,746.35,55.5,8.5,34,6.15,15.4976664926,15.4976664926 -90,0,22.7,40.1266666667,21.7,38.8633333333,24.1,37.53,22.4877777778,39.2655555556,21.0666666667,43.8633333333,16.1333333333,10.1266666667,22,33.3114285714,23.4685714286,41.1528571429,20.9266666667,42.1333333333,14.9777777778,746.2666666667,56.1111111111,8.4444444444,34.6666666667,6.2444444444,12.3926884495,12.3926884495 -90,0,22.7,40.3333333333,21.7,39.03,24.1,37.6633333333,22.4633333333,39.6288888889,21.1333333333,44,15.9266666667,10.3333333333,22,33.4166666667,23.5,41.218,20.9266666667,42.23,14.9055555556,746.1833333333,56.7222222222,8.3888888889,35.3333333333,6.3388888889,29.859936866,29.859936866 -160,10,22.6333333333,40.5666666667,21.7,39.1633333333,24.1666666667,37.73,22.4938888889,39.785,21.2,44,15.66,10.93,22,33.5257142857,23.5,41.29,21,42.29,14.8333333333,746.1,57.3333333333,8.3333333333,36,6.4333333333,32.2449371684,32.2449371684 -500,0,22.7,41.0933333333,21.6666666667,39.53,24.1666666667,37.79,22.4022222222,39.71,21.1666666667,44.1266666667,15.3925,12.3225,22,33.7,23.56,41.4,20.9266666667,42.4,14.7611111111,746.0166666667,57.9444444444,8.2777777778,36.6666666667,6.5277777778,30.8359310846,30.8359310846 -290,0,22.73,43.39,21.6,40.39,24.2,37.9,22.39,39.755,21.1666666667,44.2,15.0633333333,13.96,22,33.8542857143,23.5571428571,41.4571428571,20.9266666667,42.4,14.6888888889,745.9333333333,58.5555555556,8.2222222222,37.3333333333,6.6222222222,30.4440042935,30.4440042935 -110,0,22.815,47.495,21.6,42.6333333333,24.2,37.9666666667,22.39,39.745,21.1,44.5666666667,14.7933333333,14.9933333333,22,34.04,23.6,41.48,20.89,42.4333333333,14.6166666667,745.85,59.1666666667,8.1666666667,38,6.7166666667,49.5160575025,49.5160575025 -100,0,22.89,47.0566666667,21.6,43.9666666667,24.2,38.23,22.39,39.6816666667,21.1,44.96,14.3266666667,16.2666666667,21.9214285714,34.2257142857,23.6,41.3528571429,20.89,42.5,14.5444444444,745.7666666667,59.7777777778,8.1111111111,38.6666666667,6.8111111111,19.6415987564,19.6415987564 -100,0,22.89,46.3333333333,21.6,44.29,24.2,38.3633333333,22.39,39.645,21.1,45.5,13.8966666667,18.2233333333,21.89,34.44,23.6,41.44,20.89,42.5,14.4722222222,745.6833333333,60.3888888889,8.0555555556,39.3333333333,6.9055555556,18.7071524211,18.7071524211 -90,0,22.89,45.8666666667,21.5333333333,44.29,24.2,38.5,22.3677777778,39.6755555556,21.1,45.76,13.63,19.5566666667,21.89,34.64,23.6857142857,41.8,20.89,42.5,14.4,745.6,61,8,40,7,11.0836222768,11.0836222768 -150,10,22.89,44.99,21.5,44.1633333333,24.2,38.56,22.3788888889,39.7555555556,21.1,48,13.3233333333,21.1333333333,21.89,34.776,23.718,42.094,20.89,42.5,14.1833333333,745.5,62.5,7.6666666667,40,7.1166666667,47.5522465073,47.5522465073 -110,0,22.89,44.53,21.4266666667,43.89,24.2,38.73,22.3233333333,40.0383333333,21.2933333333,58.5266666667,13.145,22.695,21.89,34.96,23.736,42.376,20.89,42.5,13.9666666667,745.4,64,7.3333333333,40,7.2333333333,15.951165976,15.951165976 -150,0,22.89,43.99,21.39,43.59,24.26,38.8633333333,22.3344444444,40.2144444444,21.5933333333,69.16,13.1,24.6666666667,21.8233333333,35,23.76,42.5,20.89,42.53,13.75,745.3,65.5,7,40,7.35,5.2876765141,5.2876765141 -120,0,22.89,43.6566666667,21.3233333333,43.59,24.29,38.9,22.3066666667,40.29,22.4666666667,84.5666666667,13.16,26.3933333333,21.79,35.1566666667,23.79,42.6266666667,20.89,42.59,13.5333333333,745.2,67,6.6666666667,40,7.4666666667,0.5427068798,0.5427068798 -120,0,22.89,43.4666666667,21.29,43.6266666667,24.23,38.9,22.3066666667,40.345,22.3566666667,82.6233333333,13.1,27.6933333333,21.79,35.3633333333,23.79,42.7,20.89,42.6266666667,13.3166666667,745.1,68.5,6.3333333333,40,7.5833333333,3.0928472755,3.0928472755 -120,10,22.89,43.3266666667,21.23,43.7,24.2,38.79,22.2955555556,40.4883333333,22.1633333333,80.83,13.0333333333,32.4333333333,21.79,35.5666666667,23.79,42.5266666667,20.89,42.76,13.1,745,70,6,40,7.7,26.8972195568,26.8972195568 -110,0,22.89,43.29,21.2,43.9333333333,24.26,38.79,22.29,40.58,21.9633333333,77.53,12.3333333333,40.53,21.73,35.8333333333,23.79,42.3266666667,20.89,42.9,12.9666666667,744.9666666667,71.5,5.5,38.1666666667,7.8666666667,32.9467464006,32.9467464006 -110,0,22.89,43.29,21.2,44.1333333333,24.29,38.9,22.29,40.6572222222,21.8233333333,73.59,11.6666666667,44.2566666667,21.7,36.1266666667,23.79,42.145,20.89,43.03,12.8333333333,744.9333333333,73,5,36.3333333333,8.0333333333,0.7068695268,0.7068695268 -110,0,22.89,43.29,21.2,44.29,24.29,38.9666666667,22.28,40.7,21.6666666667,69.3266666667,11.36,46.7333333333,21.7,36.3333333333,23.7,42,20.8233333333,43.09,12.7,744.9,74.5,4.5,34.5,8.2,24.7689262498,24.7689262498 -100,0,22.89,43.29,21.125,44.3975,24.29,39.03,22.28,40.775,21.6,66.3266666667,11.36,49.1933333333,21.7,36.53,23.7,41.9333333333,20.89,43.23,12.5666666667,744.8666666667,76,4,32.6666666667,8.3666666667,49.5709385141,49.5709385141 -110,0,22.89,43.2,21.1,44.56,24.2675,39.0675,22.29,40.8205555556,21.5,63.35,11.19,50.7,21.7,36.6633333333,23.7,41.9,20.89,43.29,12.4333333333,744.8333333333,77.5,3.5,30.8333333333,8.5333333333,29.497872002,29.497872002 -100,0,22.89,43.2,21.0333333333,44.6566666667,24.2,39.06,22.235,40.8755555556,21.4633333333,61.3666666667,11.19,51.96,21.6,36.8266666667,23.7,41.8266666667,20.89,43.4,12.3,744.8,79,3,29,8.7,26.3627825654,26.3627825654 -100,10,22.89,43.2,21.0333333333,44.79,24.2,39.09,22.2,40.845,21.39,60.3666666667,11.145,51.25,21.6,36.9666666667,23.6666666667,41.7966666667,20.89,43.4,12.2333333333,744.75,79.1666666667,3.6666666667,30.8333333333,8.6833333333,19.9793365784,19.9793365784 -100,0,22.89,43.2,21,44.79,24.2,39.09,22.22,40.7166666667,21.39,59.5633333333,10.9333333333,48.9666666667,21.6,36.9,23.6,41.53,20.79,43.29,12.1666666667,744.7,79.3333333333,4.3333333333,32.6666666667,8.6666666667,21.4572699624,21.4572699624 -100,0,22.89,43.1633333333,21,44.73,24.1666666667,39.2,22.2,40.59,21.3233333333,58.9566666667,10.7266666667,47.9666666667,21.6,36.79,23.6,41.3633333333,20.8566666667,43.29,12.1,744.65,79.5,5,34.5,8.65,31.6224081791,31.6224081791 -120,0,22.89,43.09,20.9633333333,44.79,24.1,39.2,22.2,40.555,21.29,58.1966666667,10.6,48.2633333333,21.5333333333,36.73,23.6,41.1566666667,20.89,43.1333333333,12.0333333333,744.6,79.6666666667,5.6666666667,36.3333333333,8.6333333333,0.620802748,0.620802748 -100,0,22.89,42.95,20.89,44.79,24.1,39.2,22.2,40.51,21.29,57.53,10.46,49.0633333333,21.5,36.6266666667,23.5666666667,41,20.8233333333,42.86,11.9666666667,744.55,79.8333333333,6.3333333333,38.1666666667,8.6166666667,34.0143179288,34.0143179288 -110,0,22.89,42.9,20.89,44.79,24.1,39.2,22.1888888889,40.565,21.26,56.6666666667,10.3,50.6633333333,21.5,36.7,23.5,40.9333333333,20.89,42.76,11.9,744.5,80,7,40,8.6,4.5633617323,4.5633617323 -100,0,22.89,42.8266666667,20.89,44.93,24.0666666667,39.1633333333,22.1166666667,40.59,21.2,55.8666666667,10.2266666667,51.4633333333,21.5,36.73,23.5666666667,40.9,20.89,42.6266666667,11.6833333333,744.5333333333,80.1666666667,6.5,40,8.4166666667,14.891009382,14.891009382 -100,10,22.89,42.79,20.89,45,24.0666666667,39.1633333333,22.1,40.5961111111,21.2,55.1233333333,10.1266666667,52.2266666667,21.5,36.79,23.5,40.9,20.89,42.56,11.4666666667,744.5666666667,80.3333333333,6,40,8.2333333333,2.3928622133,2.3928622133 -60,0,22.89,42.93,20.8233333333,45,24.0333333333,39.1266666667,22.1,40.7527777778,21.2,54.53,10,52.8933333333,21.4633333333,36.79,23.5,40.9266666667,20.89,42.5,11.25,744.6,80.5,5.5,40,8.05,27.2008095286,27.2008095286 -60,0,22.89,43.1266666667,20.79,45.09,24.1,39.2,22.1,40.79,21.2,53.93,10.0333333333,54.1666666667,21.4633333333,36.79,23.5,41.5933333333,20.8566666667,42.5,11.0333333333,744.6333333333,80.6666666667,5,40,7.8666666667,0.6758154836,0.6758154836 -60,10,22.89,43.1266666667,20.73,45.03,24.0666666667,39.26,22.1,40.78,21.2,53.73,10.16,54.3666666667,21.5,36.79,23.6,42.6666666667,20.8566666667,42.96,10.8166666667,744.6666666667,80.8333333333,4.5,40,7.6833333333,8.784779429,8.784779429 -50,0,22.8566666667,43.06,20.7,45,24,39.2,22.1,40.6866666667,21.1666666667,53.56,10.3,52.7233333333,21.5,36.79,23.6,43.4666666667,20.8566666667,43.23,10.6,744.7,81,4,40,7.5,45.90714121,45.90714121 -50,0,22.79,42.86,20.6333333333,45,24,39.3266666667,22.1,40.565,21.1,53.5,10.4333333333,49.7233333333,21.5,36.76,23.6,44.4566666667,20.79,43.3633333333,10.65,744.7,80.8333333333,4.5,40,7.5166666667,13.6052846094,13.6052846094 -60,0,22.79,42.6633333333,20.6,44.9,23.9266666667,39.4,22.1,40.5,21.1,53.4666666667,10.5,46.3933333333,21.5,36.7,23.6,45.0633333333,20.8566666667,43.4666666667,10.7,744.7,80.6666666667,5,40,7.5333333333,22.5594188669,22.5594188669 -60,0,22.79,42.53,20.5333333333,44.8266666667,23.89,39.4333333333,22.0888888889,40.4377777778,21.1,53.3266666667,10.5666666667,44.7266666667,21.4633333333,36.56,23.6,45.53,20.815,43.4475,10.75,744.7,80.5,5.5,40,7.55,33.6516878451,33.6516878451 -70,0,22.76,42.4,20.5,44.76,23.89,39.4333333333,22.05,40.34,21.1,53.26,10.5666666667,44.43,21.4633333333,36.5,23.6,45.6633333333,20.8233333333,43.53,10.8,744.7,80.3333333333,6,40,7.5666666667,30.9096449986,30.9096449986 -50,0,22.7,42.3266666667,20.4175,44.7225,23.89,39.4333333333,22,40.23,21.1,53.2,10.5,43.9566666667,21.4633333333,36.4666666667,23.6,45.94,20.8566666667,43.7,10.85,744.7,80.1666666667,6.5,40,7.5833333333,19.1106308601,19.1106308601 -70,0,22.7,42.1633333333,20.39,44.73,23.89,39.4333333333,22,40.2,21.1,53.09,10.39,43.73,21.4633333333,36.4666666667,23.5333333333,46.1266666667,20.79,43.76,10.9,744.7,80,7,40,7.6,41.3899727282,41.3899727282 -50,0,22.7,42.09,20.3566666667,44.7,23.89,39.4,22,40.2,21.1,53.0225,10.3675,43.92,21.5,36.4,23.6,46.38,20.8233333333,43.86,10.85,744.6666666667,79.5,6.8333333333,40,7.45,33.9495541528,33.9495541528 -50,0,22.7,42,20.29,44.76,23.89,39.4,22,40.2,21.1,52.9333333333,10.3,44.2233333333,21.4266666667,36.3266666667,23.5333333333,46.7,20.89,44,10.8,744.6333333333,79,6.6666666667,40,7.3,38.1311708712,38.1311708712 -50,0,22.6333333333,41.86,20.29,44.76,23.89,39.4,22,40.2,21.0666666667,52.8333333333,10.3,44.1566666667,21.445,36.345,23.5,46.83,20.8566666667,44.06,10.75,744.6,78.5,6.5,40,7.15,7.8584878589,7.8584878589 -40,0,22.6,41.76,20.23,44.6266666667,23.89,39.4,22,40.2,21,52.7,10.3,44.6233333333,21.39,36.29,23.39,46.86,20.8566666667,44.06,10.7,744.5666666667,78,6.3333333333,40,7,5.0016678055,5.0016678055 -60,0,22.6,41.7,20.2,44.7,23.89,39.4,22,40.2,21,52.59,10.36,45.4333333333,21.39,36.29,23.39,47.06,20.89,44.2,10.65,744.5333333333,77.5,6.1666666667,40,6.85,10.9453498852,10.9453498852 -50,0,22.6,41.6633333333,20.2,44.7,23.89,39.4,22,40.2,21,52.53,10.2266666667,45.1666666667,21.39,36.29,23.39,47.23,20.8233333333,44.1266666667,10.6,744.5,77,6,40,6.7,37.1597633348,37.1597633348 -60,0,22.525,41.59,20.1,44.7,23.89,39.4,22,40.2,21,52.4666666667,10.1,45.3933333333,21.39,36.29,23.39,47.49,20.8233333333,44.1266666667,10.5166666667,744.5166666667,77.6666666667,6.1666666667,40,6.7333333333,13.7044387055,13.7044387055 -50,0,22.5,41.59,20.1,44.7,23.89,39.4,21.9266666667,40.2,21,52.3266666667,10.16,46.3933333333,21.39,36.29,23.29,47.9333333333,20.89,44.26,10.4333333333,744.5333333333,78.3333333333,6.3333333333,40,6.7666666667,36.9759059511,36.9759059511 -60,0,22.5,41.59,20.0666666667,44.6633333333,23.89,39.4666666667,21.89,40.2,21,52.26,10.19,46.9,21.39,36.29,23.29,48.06,20.89,44.29,10.35,744.55,79,6.5,40,6.8,32.6997643569,32.6997643569 -60,0,22.5,41.59,20,44.6633333333,23.89,39.4666666667,21.89,40.2,21,52.2,10.2633333333,46.9,21.39,36.29,23.29,48.3,20.89,44.29,10.2666666667,744.5666666667,79.6666666667,6.6666666667,40,6.8333333333,42.5599673414,42.5599673414 -50,0,22.4633333333,41.5266666667,20,44.7,23.9633333333,39.4666666667,21.89,40.29,21,52.09,10.19,46.79,21.39,36.29,23.29,48.6333333333,20.89,44.29,10.1833333333,744.5833333333,80.3333333333,6.8333333333,40,6.8666666667,20.5088812159,20.5088812159 -60,0,22.39,41.4,20,44.7,24,39.5,21.89,40.2225,21,52.09,10.19,46.8633333333,21.39,36.29,23.29,48.9,20.89,44.3633333333,10.1,744.6,81,7,40,6.9,12.9250296741,12.9250296741 -40,0,22.39,41.5,19.9633333333,44.73,24,39.5,21.89,40.23,20.9633333333,52,10.1,47.1933333333,21.39,36.29,23.29,48.9,20.89,44.4,10.1,744.6166666667,81.1666666667,7,40,6.95,16.268621129,16.268621129 -50,0,22.39,41.5,19.9633333333,44.79,24,39.5,21.89,40.236,20.89,51.9333333333,9.96,47.4666666667,21.39,36.29,23.29,48.9,20.89,44.4,10.1,744.6333333333,81.3333333333,7,40,7,36.919711472,36.919711472 -50,0,22.29,41.5,19.9266666667,44.79,24,39.5,21.865,40.2675,20.9266666667,51.8633333333,9.8,47.8,21.39,36.29,23.23,48.79,20.89,44.5,10.1,744.65,81.5,7,40,7.05,41.6519313701,41.6519313701 -50,0,22.29,41.5,19.9266666667,44.8633333333,24,39.59,21.8566666667,40.26,20.9266666667,51.79,9.7266666667,47.86,21.39,36.29,23.29,48.73,20.84,44.5,10.1,744.6666666667,81.6666666667,7,40,7.1,0.6303479429,0.6303479429 -50,0,22.29,41.5,19.8233333333,44.7666666667,24,39.59,21.89,40.2,20.89,51.76,9.5666666667,47.89,21.3233333333,36.29,23.2,48.4666666667,20.89,44.56,10.1,744.6833333333,81.8333333333,7,40,7.15,8.6665367591,8.6665367591 -60,0,22.29,41.5,19.8233333333,44.8266666667,24,39.59,21.8233333333,40.2,20.89,51.7,9.4266666667,48.09,21.3233333333,36.29,23.2,48.2666666667,20.89,44.59,10.1,744.7,82,7,40,7.2,1.3963354169,1.3963354169 -60,0,22.29,41.5,19.79,44.79,24,39.59,21.79,40.1633333333,20.89,51.59,9.3,48.85,21.29,36.29,23.2,48.1333333333,20.89,44.59,10,744.7,82.5,6.8333333333,40,7.1666666667,36.4818359725,36.4818359725 -50,0,22.23,41.5,19.79,44.8266666667,24,39.7,21.79,40.09,20.89,51.5675,9.39,49.3266666667,21.29,36.29,23.2,47.9475,20.89,44.7,9.9,744.7,83,6.6666666667,40,7.1333333333,32.8959476086,32.8959476086 -60,0,22.2,41.5,19.79,44.9,24.075,39.7675,21.79,40.09,20.89,51.5,9.39,49.4,21.29,36.29,23.2,47.73,20.89,44.7,9.8,744.7,83.5,6.5,40,7.1,24.5167452027,24.5167452027 -50,0,22.2,41.5,19.76,44.9,24.1,39.79,21.79,40.1633333333,20.89,51.3633333333,9.5,49.4333333333,21.29,36.29,23.2,47.59,20.89,44.7,9.7,744.7,84,6.3333333333,40,7.0666666667,2.2914387169,2.2914387169 -60,0,22.2,41.5,19.7,44.9,24.1,39.79,21.79,40.1633333333,20.89,51.29,9.5,49.56,21.29,36.29,23.1333333333,47.59,20.89,44.76,9.6,744.7,84.5,6.1666666667,40,7.0333333333,14.3958636909,14.3958636909 -50,0,22.2,41.56,19.7,45,24.1666666667,39.79,21.79,40.1633333333,20.8233333333,51.09,9.5,49.59,21.29,36.345,23.1,47.5,20.89,44.79,9.5,744.7,85,6,40,7,10.030404327,10.030404327 -50,0,22.1,41.59,19.7,45,24.2,39.79,21.79,40.1266666667,20.89,51.03,9.5,49.6633333333,21.29,36.3633333333,23.1,47.4333333333,20.89,44.79,9.45,744.7333333333,85.5,5.8333333333,38,7.05,8.5560134728,8.5560134728 -40,0,22.1,41.59,19.7,45,24.2,39.79,21.79,40.2,20.8233333333,50.9333333333,9.6,49.86,21.29,36.4,23.1,47.29,20.89,44.9,9.4,744.7666666667,86,5.6666666667,36,7.1,21.6297370731,21.6297370731 -50,0,22.1,41.59,19.7,45.06,24.2,39.79,21.76,40.2,20.89,50.9333333333,9.66,50.06,21.29,36.4,23.1,47.29,20.89,44.9,9.35,744.8,86.5,5.5,34,7.15,35.0939881173,35.0939881173 -50,0,22.1,41.7,19.6,45.09,24.2,39.79,21.7,40.2,20.79,50.79,9.66,50.1,21.29,36.4,23.1,47.29,20.89,44.9333333333,9.3,744.8333333333,87,5.3333333333,32,7.2,40.0438938872,40.0438938872 -50,0,22.0333333333,41.6266666667,19.6,45.09,24.2,39.9,21.73,40.2,20.79,50.73,9.6,50.1,21.29,36.4666666667,23.0333333333,47.1566666667,20.89,44.9333333333,9.25,744.8666666667,87.5,5.1666666667,30,7.25,10.6914939824,10.6914939824 -50,0,22,41.7,19.6,45.09,24.2,39.9,21.79,40.26,20.79,50.7,9.6,50.4333333333,21.29,36.5,23.0666666667,47.1333333333,20.89,45,9.2,744.9,88,5,28,7.3,8.2700370811,8.2700370811 -50,0,22,41.7,19.6,45.09,24.1333333333,39.9,21.7,40.2,20.79,50.6266666667,9.5333333333,50.5,21.29,36.5,23,47,20.89,45,9.2166666667,744.9333333333,88.1666666667,5,27.8333333333,7.35,37.7689560177,37.7689560177 -60,0,21.89,41.73,19.6,45.2,24.1333333333,39.9,21.7,40.26,20.79,50.56,9.5,50.83,21.26,36.4666666667,23,47,20.89,45,9.2333333333,744.9666666667,88.3333333333,5,27.6666666667,7.4,46.1135901161,46.1135901161 -50,0,21.89,41.79,19.6,45.2,24.1333333333,39.9,21.7,40.29,20.79,50.5,9.4266666667,50.89,21.26,36.5266666667,23,47,20.89,45,9.25,745,88.5,5,27.5,7.45,46.5222245432,46.5222245432 -50,0,21.89,41.79,19.5666666667,45.23,24.2,39.9,21.7,40.29,20.79,50.4,9.1266666667,50.7933333333,21.2,36.5,23,47,20.89,45.09,9.2666666667,745.0333333333,88.6666666667,5,27.3333333333,7.5,38.1387690431,38.1387690431 -60,0,21.89,41.79,19.5,45.29,24.2,39.8266666667,21.7,40.29,20.79,50.3266666667,8.8666666667,50.9266666667,21.2,36.5,23,47,20.89,45.09,9.2833333333,745.0666666667,88.8333333333,5,27.1666666667,7.55,1.651006355,1.651006355 -60,0,21.89,41.9,19.5,45.29,24.2,39.9,21.7,40.29,20.79,50.29,8.55,51.145,21.2,36.5,23,47,20.89,45.09,9.3,745.1,89,5,27,7.6,8.5348644876,8.5348644876 -50,0,21.8233333333,41.8266666667,19.5,45.29,24.2,39.79,21.7,40.29,20.79,50.29,8.6666666667,52.7,21.2,36.5,23,47,20.89,45.09,9.2166666667,745.1333333333,89.1666666667,5,26.6666666667,7.5333333333,42.2639859607,42.2639859607 -50,0,21.8566666667,41.9,19.5,45.29,24.2,39.8633333333,21.7,40.29,20.79,50.2,8.7266666667,52.0333333333,21.2,36.5,22.9633333333,46.9666666667,20.89,45.09,9.1333333333,745.1666666667,89.3333333333,5,26.3333333333,7.4666666667,40.0129985763,40.0129985763 -50,0,21.79,41.9,19.5,45.3633333333,24.2,39.9,21.7,40.29,20.79,50.1266666667,8.5666666667,51.9333333333,21.2,36.5,22.89,46.9,20.89,45.1266666667,9.05,745.2,89.5,5,26,7.4,14.2950264504,14.2950264504 -60,0,21.79,41.9,19.5,45.29,24.2,39.9,21.6,40.2,20.79,50.09,8.4266666667,52.3333333333,21.2,36.5,22.89,46.845,20.89,45.2,8.9666666667,745.2333333333,89.6666666667,5,25.6666666667,7.3333333333,19.3429096602,19.3429096602 -50,0,21.79,41.9,19.5333333333,45.29,24.2,39.9,21.6,40.2,20.79,50.06,8.5,53.4,21.2,36.5,22.89,46.9,20.89,45.2666666667,8.8833333333,745.2666666667,89.8333333333,5,25.3333333333,7.2666666667,33.8457678794,33.8457678794 -60,0,21.79,41.9,19.6,45.23,24.2,39.9333333333,21.6,40.2,20.73,50,8.5,53.5266666667,21.2,36.5,22.89,46.9,20.89,45.3266666667,8.8,745.3,90,5,25,7.2,45.4074946349,45.4074946349 -60,0,21.79,41.9,19.6,45.1633333333,24.2,40,21.6,40.2,20.79,50,8.6666666667,54.1566666667,21.2,36.5,22.89,46.9333333333,20.89,45.29,8.8,745.35,89.8333333333,4.8333333333,24.8333333333,7.1833333333,8.2184270257,8.2184270257 -50,0,21.79,41.9,19.6,45.09,24.2,39.9333333333,21.6,40.2,20.79,49.9333333333,8.8,53.9566666667,21.2,36.5,22.89,47,20.89,45.29,8.8,745.4,89.6666666667,4.6666666667,24.6666666667,7.1666666667,7.6910311589,7.6910311589 -120,0,21.79,42.0266666667,19.7,45.1566666667,24.2,39.9333333333,21.6,40.2,20.79,49.8633333333,8.9266666667,53.66,21.2,36.5,22.8233333333,46.9333333333,21,45.59,8.8,745.45,89.5,4.5,24.5,7.15,20.9170699702,20.9170699702 -50,0,21.84,42.745,19.76,45.43,24.0666666667,39.7233333333,21.6,40.218,20.79,49.79,9,53.1933333333,21.2,36.5,22.8733333333,46.9,21,45.59,8.8,745.5,89.3333333333,4.3333333333,24.3333333333,7.1333333333,40.3154321131,40.3154321131 -50,0,21.89,43,19.8233333333,45.59,24,39.53,21.6,40.3214285714,20.79,49.4666666667,9.33,52.7333333333,21.2,36.5,22.79,46.5666666667,21,45.56,8.8,745.55,89.1666666667,4.1666666667,24.1666666667,7.1166666667,9.9737567711,9.9737567711 -60,0,21.9633333333,43,19.9633333333,45.53,23.89,39.3333333333,21.6,40.29,20.73,49.2666666667,9.6633333333,52.4666666667,21.1714285714,36.4714285714,22.79,46.3333333333,21,45.4333333333,8.8,745.6,89,4,24,7.1,43.8409241731,43.8409241731 -40,0,21.9633333333,42.76,20.2633333333,45.16,23.89,39.2,21.6,40.3528571429,20.79,49.0266666667,10.4666666667,50.6,21.2,36.4,22.79,46.0666666667,21.0333333333,45.2233333333,8.9666666667,745.65,88,4.3333333333,24,7.1,25.0338796643,25.0338796643 -60,0,21.9633333333,42.7,20.39,44.5666666667,23.89,39.09,21.6,40.4,20.79,48.8266666667,11.06,45.3333333333,21.1571428571,36.3842857143,22.79,45.8333333333,21.0333333333,44.89,9.1333333333,745.7,87,4.6666666667,24,7.1,0.5587812397,0.5587812397 -180,0,22,42.56,20.4633333333,44.3333333333,23.89,39.03,21.6,40.3685714286,20.76,48.6333333333,11.1266666667,41.2233333333,21.14,36.29,22.79,45.6266666667,21.0333333333,44.6333333333,9.3,745.75,86,5,24,7.1,16.1907693022,16.1907693022 -180,0,21.9266666667,42.4333333333,20.39,44.1266666667,23.89,38.9,21.6,40.4,20.76,48.5,11,38.2966666667,21.1,36.29,22.79,45.3633333333,21.1666666667,44.3,9.4666666667,745.8,85,5.3333333333,24,7.1,27.2907924838,27.2907924838 -100,0,22,42.3633333333,20.5666666667,43.9,23.89,38.8266666667,21.6,40.4571428571,20.79,48.3633333333,11.5933333333,38.6266666667,21.16,36.29,22.79,45.29,21.29,44.5966666667,9.6333333333,745.85,84,5.6666666667,24,7.1,34.384003235,34.384003235 -240,0,22,42.23,20.76,43.5666666667,23.8566666667,38.76,21.62,40.54,20.79,48.23,12.5,34.75,21.1142857143,36.29,22.73,45.29,21.29,45.3966666667,9.8,745.9,83,6,24,7.1,45.4599127406,45.4599127406 -330,0,22,42.3633333333,21.23,42.6,23.79,38.76,21.7,40.6685714286,20.79,48.09,13.3333333333,30.76,21.14,36.272,22.79,45.3633333333,21.29,46.4,9.95,745.9166666667,82.6666666667,5.8333333333,24.3333333333,7.1666666667,24.7667696094,24.7667696094 -120,0,22,42.1566666667,21.29,41.5266666667,23.6666666667,38.6333333333,21.7,40.46,20.79,48.03,13.6666666667,26.9566666667,21.1428571429,36.2,22.79,45.53,21.26,46.1933333333,10.1,745.9333333333,82.3333333333,5.6666666667,24.6666666667,7.2333333333,1.9339544233,1.9339544233 -40,0,22.0666666667,41.7233333333,21.395,41.3,23.6,38.4333333333,21.7,40.3975,20.79,47.9666666667,14,26.3566666667,21.14,36.2,22.79,45.6633333333,21.2,45.86,10.25,745.95,82,5.5,25,7.3,31.5734505653,31.5734505653 -70,0,22.0666666667,41.6633333333,21.6,41.06,23.5666666667,38.26,21.7385714286,40.5,20.79,47.8266666667,14,22.1933333333,21.1857142857,36.2,22.79,45.56,21.2,45.6633333333,10.4,745.9666666667,81.6666666667,5.3333333333,25.3333333333,7.3666666667,25.324767956,25.324767956 -50,0,22.1,41.6266666667,21.5333333333,41.06,23.5,38.1266666667,21.754,40.48,20.79,47.79,13.3933333333,21.1933333333,21.16,36.134,22.79,45.3,21.2,45.59,10.55,745.9833333333,81.3333333333,5.1666666667,25.6666666667,7.4333333333,45.8991486579,45.8991486579 -50,0,22.1,41.7,21.3566666667,41.36,23.39,38.09,21.7514285714,40.3214285714,20.7675,47.7225,11.5933333333,31.8933333333,21.1714285714,36.09,22.79,44.745,21.2,45.4666666667,10.7,746,81,5,26,7.5,43.0179076619,43.0179076619 -80,0,22.1,41.7,21.29,41.56,23.315,38.09,21.736,40.2,20.76,47.6266666667,10.4,36.6933333333,21.1,36,22.7,44.06,21.2,45.3266666667,10.6333333333,746.0333333333,80.3333333333,5.1666666667,26.3333333333,7.3166666667,37.8380080918,37.8380080918 -80,0,22.1,41.6266666667,21.2,41.59,23.29,38.09,21.7128571429,40.1057142857,20.79,47.5,9.83,43.5333333333,21.1,35.9142857143,22.7,43.86,21.1,45.1633333333,10.5666666667,746.0666666667,79.6666666667,5.3333333333,26.6666666667,7.1333333333,32.1704938659,32.1704938659 -230,0,22.1,41.7,21.2,41.7233333333,23.26,38.2,21.7,40.09,20.73,47.36,9.89,46.7333333333,21.14,35.96,22.7,43.6333333333,21.1,44.9633333333,10.5,746.1,79,5.5,27,6.95,37.7352295211,37.7352295211 -800,0,22.1,41.7,21.2,41.79,23.2,38.26,21.7,40.09,20.79,47.26,10.33,49.53,21.1,36,22.6333333333,43.36,21.1,44.79,10.4333333333,746.1333333333,78.3333333333,5.6666666667,27.3333333333,6.7666666667,34.9999349215,34.9999349215 -510,0,22.2,42.03,21.2,41.8633333333,23.3233333333,38.6333333333,21.7,40.134,20.79,47.1266666667,10.53,50.1966666667,21.1,36.09,22.6333333333,43.29,21.1,44.73,10.3666666667,746.1666666667,77.6666666667,5.8333333333,27.6666666667,6.5833333333,31.6304869833,31.6304869833 -380,0,22.2,43.8975,21.36,42.2,23.4633333333,39.16,21.7,40.2514285714,20.79,47.09,11.1666666667,47.6666666667,21.1571428571,36.09,22.76,43.23,21.1,44.56,10.3,746.2,77,6,28,6.4,16.6223476408,16.6223476408 -330,0,22.2,43.7666666667,21.5666666667,42,23.7633333333,39.6566666667,21.7,40.29,20.79,47.09,11.6266666667,42.5333333333,21.2,36.072,22.8233333333,43.2,21.1,44.4333333333,10.1333333333,746.3166666667,76.5,6,30,6.15,12.5626775203,12.5626775203 -310,10,22.2,43.43,21.6333333333,41.8266666667,23.9633333333,39.8633333333,21.7,40.3214285714,20.79,47.09,11.86,40.8666666667,21.2,35.9625,22.89,43.2,21.1,44.29,9.9666666667,746.4333333333,76,6,32,5.9,22.5887102424,22.5887102424 -340,0,22.26,43.43,21.7,41.8266666667,24.3933333333,40.4566666667,21.7,40.29,20.79,47.1633333333,11.9333333333,39.4,21.2,35.8685714286,23,43.09,21.1,44.23,9.8,746.55,75.5,6,34,5.65,38.2266702945,38.2266702945 -230,0,22.29,44.2,21.79,41.6566666667,24.7266666667,40.99,21.7385714286,40.29,20.79,47.1266666667,12.1666666667,37.8,21.2,35.7,23.0666666667,43.09,21.1,44.09,9.6333333333,746.6666666667,75,6,36,5.4,44.725656556,44.725656556 -170,0,22.29,44.1266666667,21.8566666667,41.8633333333,25.0666666667,41.3266666667,21.754,40.25,20.79,47.2,12.36,34.9333333333,21.2,35.5542857143,23.1333333333,43.06,21.1,44.03,9.4666666667,746.7833333333,74.5,6,38,5.15,36.1010160297,36.1010160297 -90,0,22.29,43.8333333333,21.8566666667,41.76,25.2,41.4666666667,21.7642857143,40.0257142857,20.79,47.2,12.445,33.3,21.2,35.44,23.2,42.9333333333,21.1,43.9666666667,9.3,746.9,74,6,40,4.9,13.4930931148,13.4930931148 -80,0,22.29,43.5666666667,21.8566666667,41.7,25.39,41.1966666667,21.754,40,20.79,47.2,12.5333333333,24.3666666667,21.2257142857,35.3214285714,23.23,42.9633333333,21.1,43.8266666667,9.4666666667,746.9333333333,73.3333333333,5.8333333333,40,4.9166666667,25.0973205199,25.0973205199 -100,0,22.3233333333,43.0633333333,21.9266666667,41.4,25.3233333333,40.53,21.7128571429,40,20.8233333333,47.3666666667,12.66,20.8933333333,21.29,35.054,23.29,43.03,21.1,43.545,9.6333333333,746.9666666667,72.6666666667,5.6666666667,40,4.9333333333,24.4835256715,24.4835256715 -90,0,22.39,42.73,22,41,25.2,40.0266666667,21.754,40,20.89,47.7,12.8666666667,20.5933333333,21.3471428571,34.8671428571,23.29,42.9333333333,21.1,43.36,9.8,747,72,5.5,40,4.95,1.2989017414,1.2989017414 -110,0,22.39,42.6333333333,22,40.6333333333,25.2,39.7666666667,21.75625,39.91125,20.89,47.7,13.3333333333,19.6666666667,21.39,34.616,23.3566666667,43.06,21.1,43.5,9.9666666667,747.0333333333,71.3333333333,5.3333333333,40,4.9666666667,31.3509172178,31.3509172178 -180,0,22.4633333333,43.2333333333,22.075,40.595,25,39.43,21.79,39.812,20.89,47.5666666667,13.8666666667,16.2933333333,21.4371428571,34.44,23.39,43.29,21.1,43.3266666667,10.1333333333,747.0666666667,70.6666666667,5.1666666667,40,4.9833333333,39.6678680321,39.6678680321 -310,0,22.5333333333,43.8666666667,22.1666666667,40.8333333333,24.86,39.1566666667,21.79,39.9,20.89,47.3633333333,14.26,16.1,21.39,34.254,23.4633333333,43.3633333333,21.1,43.3266666667,10.3,747.1,70,5,40,5,39.6534270956,39.6534270956 -300,0,22.5333333333,44.0666666667,22.23,40.86,24.6666666667,39.1633333333,21.79,39.856,20.89,47.29,14.46,12.8,21.4528571429,34.0928571429,23.5,43.4333333333,21.1,43.2,10.4333333333,747.1166666667,70,5,40,5.1166666667,7.3818727629,7.3818727629 -110,10,22.6,43.9666666667,22.29,41,24.5333333333,39.1633333333,21.8757142857,39.8842857143,20.89,47.29,14.7333333333,12.1933333333,21.5,33.94,23.525,43.45,21.1,43.2,10.5666666667,747.1333333333,70,5,40,5.2333333333,28.6066380912,28.6066380912 -130,0,22.6,43.9,22.26,41.1566666667,24.445,39.09,21.912,40.14,20.89,47.29,14.53,10.5966666667,21.5,33.7957142857,23.6,43.5,21.1,43.1633333333,10.7,747.15,70,5,40,5.35,10.9271664056,10.9271664056 -160,0,22.6,44.16,22.1333333333,41.49,24.4633333333,39.1933333333,21.9528571429,40.5,20.89,47.29,14.2566666667,9.2633333333,21.5,33.7,23.6,43.3633333333,21.1,42.9633333333,10.8333333333,747.1666666667,70,5,40,5.4666666667,44.7470259853,44.7470259853 -390,0,22.6,43.6333333333,22.1,41.59,24.3233333333,39,22,40.475,20.89,47.26,13.7933333333,9.6333333333,21.4057142857,33.5542857143,23.6666666667,43.23,21.1,42.6333333333,10.9666666667,747.1833333333,70,5,40,5.5833333333,16.8700268609,16.8700268609 -270,0,22.6,44.93,22.0333333333,41.7966666667,24.3933333333,39.6,22.1,40.356,20.89,47.2,13.2666666667,9.0266666667,21.39,33.44,23.6666666667,42.99,21.1,42.2266666667,11.1,747.2,70,5,40,5.7,36.4035139442,36.4035139442 -250,0,22.6,45.0633333333,21.9633333333,42.36,24.7266666667,40.4666666667,22.1,40.2514285714,20.89,47.09,12.8233333333,9.76,21.39,33.3685714286,23.6666666667,42.73,21.1,42.1266666667,10.9666666667,747.2666666667,69.6666666667,4.8333333333,37.8333333333,5.5166666667,13.6863495689,13.6863495689 -220,0,22.5,45.44,21.89,42.6333333333,25.0666666667,41.2666666667,22.1,40.196,20.89,47.09,12.49,9.96,21.39,33.2,23.7,42.49,21.1,42.1266666667,10.8333333333,747.3333333333,69.3333333333,4.6666666667,35.6666666667,5.3333333333,30.5616750731,30.5616750731 -250,0,22.5,45.6633333333,21.76,42.86,25.26,41.5266666667,22.1,39.8971428571,20.89,47.09,12.19,11.2333333333,21.39,33.1371428571,23.7,42.23,21.1,41.93,10.7,747.4,69,4.5,33.5,5.15,9.5257415785,9.5257415785 -260,0,22.5,45.7233333333,21.7,43.1333333333,25.5,41.59,22.04,39.634,20.89,47.09,12.3966666667,11.76,21.39,33.09,23.7,42.0266666667,21.1,41.73,10.5666666667,747.4666666667,68.6666666667,4.3333333333,31.3333333333,4.9666666667,18.9341329271,18.9341329271 -200,0,22.5,45.76,21.7,43.4333333333,25.5666666667,41.4633333333,22.1,39.6371428571,20.89,46.9,13.4666666667,11.4633333333,21.4685714286,33.1371428571,23.7,41.6933333333,21.1,42.1666666667,10.4333333333,747.5333333333,68.3333333333,4.1666666667,29.1666666667,4.7833333333,32.7731700265,32.7731700265 -100,0,22.5,45.7,21.7,43.56,25.6,40.8633333333,22.04,39.494,20.89,46.9666666667,13.395,8.57,21.5,33.054,23.79,41.3633333333,21.1,43.0933333333,10.3,747.6,68,4,27,4.6,24.6978501091,24.6978501091 -100,0,22.5,45.8633333333,21.6666666667,43.59,25.5333333333,40.59,22,39.2257142857,20.89,47,12.1266666667,10.23,21.4371428571,32.9428571429,23.79,41.49,21.1,44.0666666667,10.4333333333,747.5833333333,68,4.1666666667,29.1666666667,4.7333333333,13.0395873217,13.0395873217 -120,0,22.4266666667,45.4633333333,21.5333333333,43.59,25.39,40.4666666667,22,38.96,20.89,47,10.3633333333,15.7333333333,21.39,32.834,23.79,41.43,21.1,44.26,10.5666666667,747.5666666667,68,4.3333333333,31.3333333333,4.8666666667,46.5807813802,46.5807813802 -150,0,22.39,45.1333333333,21.4633333333,43.6633333333,25.3233333333,40.3266666667,22,38.7928571429,20.89,47.03,9.3633333333,27.7333333333,21.39,32.79,23.8566666667,41.1566666667,21.1,44.245,10.7,747.55,68,4.5,33.5,5,26.8537043361,26.8537043361 -100,0,22.39,45,21.39,43.7233333333,25.29,40.06,22,38.678,20.89,47.03,8.66,40.2966666667,21.39,32.9,23.79,40.6333333333,21.1,44.1333333333,10.8333333333,747.5333333333,68,4.6666666667,35.6666666667,5.1333333333,24.6245307266,24.6245307266 -110,0,22.39,45.4333333333,21.29,43.9666666667,25.23,40,21.9685714286,38.59,20.89,47,8.6,44.63,21.39,32.985,23.79,40.5,21.1,43.9333333333,10.9666666667,747.5166666667,68,4.8333333333,37.8333333333,5.2666666667,31.5567850834,31.5567850834 -230,0,22.39,45.36,21.29,43.8266666667,25.2,39.9666666667,21.956,38.59,20.89,47,9.0266666667,47.8666666667,21.39,33.2042857143,23.79,40.59,21.1,43.76,11.1,747.5,68,5,40,5.4,44.0602581599,44.0602581599 -300,0,22.39,45.8,21.29,43.645,25.2,39.8266666667,21.9685714286,38.59,20.89,46.9,9.36,46.1266666667,21.39,33.312,23.79,40.6633333333,21.1,43.6266666667,10.5166666667,747.6333333333,71.1666666667,4.6666666667,40,5.4333333333,23.0341071729,23.0341071729 -730,0,22.39,46.9333333333,21.29,44.73,25.1,39.79,21.89,38.59,20.89,46.8266666667,9.6,45.2933333333,21.39,33.4714285714,23.89,41,21.1,43.5,9.9333333333,747.7666666667,74.3333333333,4.3333333333,40,5.4666666667,12.1375330258,12.1375330258 -820,0,22.5,47.8666666667,21.23,45.6566666667,25.0333333333,39.79,21.9371428571,38.59,20.89,46.9333333333,9.9333333333,45.2333333333,21.39,33.59,23.9633333333,41.1333333333,21.1,43.5,9.35,747.9,77.5,4,40,5.5,18.518165173,18.518165173 -460,0,22.5666666667,52.0666666667,21.29,50.2633333333,24.89,39.9333333333,21.956,38.59,20.89,47.275,10.0333333333,44.8,21.39,33.6057142857,24,41.53,21.1,43.4666666667,8.7666666667,748.0333333333,80.6666666667,3.6666666667,40,5.5333333333,43.7277760822,43.7277760822 -110,0,22.6,56.5566666667,21.29,54.6566666667,24.89,40.1175,21.89,38.59,20.89,48.1666666667,10.1,43.1933333333,21.39,33.718,24.025,41.6725,21.1,43.3266666667,8.1833333333,748.1666666667,83.8333333333,3.3333333333,40,5.5666666667,45.7687019953,45.7687019953 -100,0,22.6666666667,57.4966666667,21.29,56.0266666667,24.89,40.49,21.89,38.59,20.89,49.2933333333,10.19,41.7933333333,21.39,33.79,24.1,41.7,21.1,43.2,7.6,748.3,87,3,40,5.6,32.3377621942,32.3377621942 -110,0,22.7,56.0666666667,21.29,54.7666666667,24.8233333333,40.7666666667,21.89,38.5642857143,20.9633333333,50.0333333333,10.19,40.1266666667,21.39,33.79,24.1,41.6633333333,21.1,43.1266666667,7.7666666667,748.3333333333,86.1666666667,3,40,5.6166666667,27.2735728533,27.2735728533 -360,0,22.7,54.8,21.29,52.9566666667,24.8233333333,40.8266666667,21.89,38.5,21,50.5,10.46,39.9566666667,21.39,33.79,24.1,41.53,21.1,43.06,7.9333333333,748.3666666667,85.3333333333,3,40,5.6333333333,45.1789085288,45.1789085288 -370,0,22.7,53.2566666667,21.29,51.6966666667,24.79,40.9333333333,21.89,38.4857142857,21,50.5,10.7333333333,39.8233333333,21.39,33.772,24.1666666667,41.4,21.1,43.06,8.1,748.4,84.5,3,40,5.65,7.6358310762,7.6358310762 -290,0,22.675,51.7675,21.2,50.3933333333,24.79,41,21.89,38.4,20.9266666667,50.3633333333,11.0333333333,39.3,21.39,33.7,24.1666666667,41.4,21.1,43.06,8.2666666667,748.4333333333,83.6666666667,3,40,5.6666666667,0.5507049966,0.5507049966 -280,0,22.6666666667,50.4933333333,21.2,49.6666666667,24.79,41,21.89,38.4,21,50.23,11.16,38.56,21.39,33.59,24.2,41.3333333333,21.1,42.9333333333,8.4333333333,748.4666666667,82.8333333333,3,40,5.6833333333,31.7103101755,31.7103101755 -280,0,22.7,49.6,21.2,49.1933333333,24.79,41,21.815,38.2,21,49.93,10.995,34.1,21.39,33.5242857143,24.2,41.1266666667,21.1,42.8633333333,8.6,748.5,82,3,40,5.7,18.1512977695,18.1512977695 -110,0,22.76,49.5266666667,21.2,48.8,24.79,40.9666666667,21.83,38.41,21,49.73,10.4633333333,32.49,21.39,33.378,24.2,40.93,21.1,42.6566666667,8.6333333333,748.5166666667,81.8333333333,2.8333333333,38.1666666667,5.6833333333,1.4965296374,1.4965296374 -110,0,22.89,48.66,21.1,49.1333333333,24.79,40.9,21.8471428571,39.07,20.9633333333,49.56,10.1966666667,33.1566666667,21.3185714286,33.2257142857,24.2,40.6566666667,21.1,42.2966666667,8.6666666667,748.5333333333,81.6666666667,2.6666666667,36.3333333333,5.6666666667,24.755809491,24.755809491 -110,0,22.8233333333,47.9333333333,21.1,48.7266666667,24.7,40.7,21.89,39.66,20.89,49.5,9.9333333333,33.1566666667,21.29,33.2,24.2,40.59,21.1,41.9633333333,8.7,748.55,81.5,2.5,34.5,5.65,15.2348625939,15.2348625939 -110,0,22.8566666667,47.3,21.0666666667,47.7333333333,24.7,40.7,21.89,39.9971428571,21,49.3633333333,9.7266666667,32.8966666667,21.29,33.1371428571,24.26,40.7233333333,21.0666666667,41.49,8.7333333333,748.5666666667,81.3333333333,2.3333333333,32.6666666667,5.6333333333,4.2005790398,4.2005790398 -100,10,22.79,46.7666666667,21,47.1933333333,24.7,40.56,21.89,40.156,20.9266666667,49.23,9.3233333333,34.23,21.29,33.156,24.29,40.86,21,41.0925,8.7666666667,748.5833333333,81.1666666667,2.1666666667,30.8333333333,5.6166666667,23.6128445948,23.6128445948 -110,0,22.79,46.1933333333,20.89,46.66,24.7,40.5,21.89,40.0514285714,20.89,49.0266666667,9.13,35.6233333333,21.29,33.2,24.29,41.1333333333,21,40.7666666667,8.8,748.6,81,2,29,5.6,18.1922162767,18.1922162767 -110,0,22.79,45.7266666667,20.89,46.2666666667,24.6,40.4,21.87,40.016,20.89,48.8266666667,8.86,36.1333333333,21.254,33.156,24.29,41.36,21,40.56,8.6666666667,748.6333333333,81.3333333333,2.1666666667,30.8333333333,5.55,15.5381155433,15.5381155433 -100,0,22.79,45.2666666667,20.79,45.8,24.6,40.3266666667,21.79,39.8214285714,20.9266666667,48.56,8.7266666667,35.3933333333,21.2385714286,33.1371428571,24.3566666667,41.56,21,40.4333333333,8.5333333333,748.6666666667,81.6666666667,2.3333333333,32.6666666667,5.5,36.1989712575,36.1989712575 -130,0,22.79,44.8,20.7,45.43,24.6,40.26,21.79,39.754,20.9266666667,48.36,8.4633333333,36.8,21.236,33.134,24.39,41.56,21,40.26,8.4,748.7,82,2.5,34.5,5.45,21.1238703108,21.1238703108 -110,0,22.79,44.3633333333,20.6333333333,45.1566666667,24.5333333333,40.2,21.79,39.7514285714,20.89,48.06,8.39,37.6,21.2,33.09,24.39,41.56,21,40.0666666667,8.2666666667,748.7333333333,82.3333333333,2.6666666667,36.3333333333,5.4,31.7317074165,31.7317074165 -120,0,22.79,44.49,20.5666666667,45,24.5,40.06,21.79,39.714,20.89,47.82,8.2633333333,38.7966666667,21.2,33.09,24.4266666667,41.8266666667,20.9266666667,39.93,8.1333333333,748.7666666667,82.6666666667,2.8333333333,38.1666666667,5.35,24.2117680493,24.2117680493 -100,0,22.79,44.8633333333,20.5,45,24.5,40,21.79,39.59,20.89,47.6266666667,8.13,39.8633333333,21.2,33.09,24.5,41.8266666667,21,39.79,8,748.8,83,3,40,5.3,2.4079058203,2.4079058203 -110,0,22.79,44.73,20.5,44.9666666667,24.5,39.9,21.736,39.46,20.89,47.4666666667,7.7966666667,37.13,21.2,33.045,24.5,41.645,20.9633333333,39.79,7.9166666667,748.8666666667,83.5,2.8333333333,37.8333333333,5.3,0.5573014612,0.5573014612 -100,0,22.79,44.2966666667,20.4266666667,44.9666666667,24.5,39.79,21.7128571429,39.3242857143,20.89,47.3266666667,7.53,36.9233333333,21.2,32.98,24.5,41.3333333333,20.89,39.79,7.8333333333,748.9333333333,84,2.6666666667,35.6666666667,5.3,42.6438952098,42.6438952098 -90,0,22.79,43.9633333333,20.39,44.9666666667,24.4266666667,39.73,21.7,39.178,20.89,47.26,7.23,37.2933333333,21.2,32.9,24.5,41.1266666667,20.89,39.7233333333,7.75,749,84.5,2.5,33.5,5.3,25.708239805,25.708239805 -110,0,22.76,43.7233333333,20.3233333333,44.8266666667,24.39,39.59,21.7,38.9971428571,20.89,47.1266666667,6.9633333333,38.2933333333,21.2,32.79,24.5,40.9666666667,20.8233333333,39.4633333333,7.6666666667,749.0666666667,85,2.3333333333,31.3333333333,5.3,7.5449199765,7.5449199765 -100,0,22.7,43.4633333333,20.29,44.79,24.39,39.59,21.7,38.79,20.89,47,6.595,39.3,21.1428571429,32.7385714286,24.5,40.7666666667,20.8566666667,39.3333333333,7.5833333333,749.1333333333,85.5,2.1666666667,29.1666666667,5.3,8.1294713193,8.1294713193 -100,0,22.7,43.245,20.23,44.6566666667,24.29,39.4666666667,21.6428571429,38.6757142857,20.89,46.9333333333,6.23,39.53,21.1,32.634,24.4633333333,40.6,20.8566666667,39.2,7.5,749.2,86,2,27,5.3,6.14034686,6.14034686 -100,0,22.7,43.0266666667,20.2,44.43,24.29,39.3266666667,21.6,38.612,20.8233333333,46.7,5.9633333333,40.2633333333,21.1,32.5257142857,24.39,40.3266666667,20.89,39.1633333333,7.1833333333,749.2666666667,86.3333333333,2,27,5.0333333333,10.1848087856,10.1848087856 -100,10,22.6333333333,42.6933333333,20.1333333333,44.23,24.29,39.26,21.6,38.6214285714,20.8233333333,46.5666666667,5.56,41.6333333333,21.1,32.46,24.4266666667,40.23,20.8233333333,38.9633333333,6.8666666667,749.3333333333,86.6666666667,2,27,4.7666666667,33.5514100851,33.5514100851 -90,0,22.6666666667,42.53,20.1,44.09,24.23,39.1266666667,21.6,38.656,20.8566666667,46.4,5.4333333333,43.2266666667,21.1,32.5085714286,24.5,40.43,20.79,38.9333333333,6.55,749.4,87,2,27,4.5,32.4553881306,32.4553881306 -90,0,22.6,42.53,20.0333333333,44.03,24.2,39.2,21.6,38.5385714286,20.79,46.1266666667,5.2633333333,45.1666666667,21.1,32.674,24.5333333333,41.0666666667,20.8566666667,39.3933333333,6.2333333333,749.4666666667,87.3333333333,2,27,4.2333333333,0.2139290329,0.2139290329 -90,10,22.6,42.26,19.9633333333,44.09,24.2,39.2,21.6,38.5,20.79,46.09,5.0633333333,46.0933333333,21.1,32.79,24.6,41.6,20.89,39.8266666667,5.9166666667,749.5333333333,87.6666666667,2,27,3.9666666667,8.6472743191,8.6472743191 -80,0,22.6,42.2,19.89,44.09,24.2,39.2,21.6,38.5,20.79,46.09,4.8666666667,47.2566666667,21.2,32.9,24.7,42.2266666667,20.89,40.175,5.6,749.6,88,2,27,3.7,4.7967075719,4.7967075719 -90,0,22.5666666667,42.06,19.79,44.1933333333,24.26,39.26,21.56,38.46,20.79,46.23,4.7266666667,48.0566666667,21.1142857143,32.9571428571,24.7,42.6933333333,20.89,40.5266666667,5.4333333333,749.6666666667,88.1666666667,2,29.1666666667,3.5833333333,41.7443501297,41.7443501297 -60,0,22.5,41.9333333333,19.73,44.4666666667,24.29,39.3266666667,21.5,38.4,20.79,46.29,4.56,49.0566666667,21.1,33.018,24.79,43.0666666667,20.79,40.73,5.2666666667,749.7333333333,88.3333333333,2,31.3333333333,3.4666666667,36.2577401684,36.2577401684 -50,0,22.5,41.8633333333,19.6666666667,44.73,24.29,39.3266666667,21.5,38.4,20.79,46.3266666667,4.56,50.59,21.1428571429,33.09,24.79,43.46,20.79,40.8633333333,5.1,749.8,88.5,2,33.5,3.35,20.7055442384,20.7055442384 -50,0,22.5,41.73,19.6,44.9475,24.26,39.2233333333,21.54,38.4,20.79,46.4,4.4666666667,51.06,21.1,33.2,24.73,44.6333333333,20.8233333333,41.1566666667,4.9333333333,749.8666666667,88.6666666667,2,35.6666666667,3.2333333333,28.6288822535,28.6288822535 -50,0,22.4633333333,41.6333333333,19.5333333333,45,24.2,39.09,21.5,38.4,20.79,46.5,4.3333333333,51.2666666667,21.1,33.2,24.73,44.9,20.89,41.3633333333,4.7666666667,749.9333333333,88.8333333333,2,37.8333333333,3.1166666667,16.717501299,16.717501299 -50,0,22.39,41.5,19.4633333333,45.09,24.2,39.09,21.5,38.356,20.79,46.5,4.1266666667,51.7233333333,21.1,33.2,24.6666666667,44.7233333333,20.8233333333,41.5666666667,4.6,750,89,2,40,3,28.0498075997,28.0498075997 -50,0,22.39,41.4,19.39,45.09,24.1333333333,39.09,21.5,38.3371428571,20.79,46.5,3.9333333333,51.53,21.1,33.2642857143,24.5333333333,44.39,20.89,41.76,4.5166666667,750.0333333333,89.6666666667,2,40,3.0166666667,33.6522159283,33.6522159283 -60,0,22.3233333333,41.3266666667,19.3566666667,45.1266666667,24.1,39.09,21.5,38.356,20.7,46.53,3.76,51.89,21.1,33.29,24.5,43.9,20.89,41.9633333333,4.4333333333,750.0666666667,90.3333333333,2,40,3.0333333333,15.4756983044,15.4756983044 -60,0,22.29,41.29,19.29,45.26,24.1,39.09,21.5,38.3214285714,20.76,46.59,3.5666666667,51.5566666667,21.1,33.29,24.5,43.5666666667,20.89,42.1633333333,4.35,750.1,91,2,40,3.05,33.9840669418,33.9840669418 -50,0,22.29,41.23,19.26,45.26,24.1,39.09,21.39,38.2,20.7,46.59,3.19,50.15,21.1,33.29,24.39,42.85,20.89,42.3266666667,4.2666666667,750.1333333333,91.6666666667,2,40,3.0666666667,33.1789645832,33.1789645832 -60,0,22.29,41.1633333333,19.2,45.2,24.0333333333,39.03,21.39,38.2,20.76,46.59,2.8633333333,50.16,21.1,33.29,24.3566666667,42.3333333333,20.89,42.4666666667,4.1833333333,750.1666666667,92.3333333333,2,40,3.0833333333,35.3794971947,35.3794971947 -60,0,22.23,41.03,19.1666666667,45.2,24.1,39.03,21.39,38.2,20.79,46.6266666667,2.6566666667,49.4933333333,21.1,33.29,24.29,42.2,20.8233333333,42.5666666667,4.1,750.2,93,2,40,3.1,33.6775574717,33.6775574717 -50,0,22.2,40.9,19.1,45.2,24.0666666667,38.9666666667,21.39,38.2,20.73,46.7,2.3333333333,48.9333333333,21.1,33.29,24.29,42.09,20.89,42.76,3.9833333333,750.2666666667,93,1.8333333333,40,2.9833333333,49.0927905543,49.0927905543 -50,0,22.2,40.8633333333,19.0666666667,45.2,24,38.9,21.35,38.156,20.7,46.7,2.2,49.4666666667,21.1,33.29,24.23,41.9633333333,20.79,42.8266666667,3.8666666667,750.3333333333,93,1.6666666667,40,2.8666666667,29.0941793937,29.0941793937 -50,0,22.2,40.73,19,45.2,24,38.9,21.3757142857,38.09,20.7,46.7,2.09,50.13,21.0875,33.27875,24.1666666667,41.6633333333,20.79,42.9666666667,3.75,750.4,93,1.5,40,2.75,23.5295725404,23.5295725404 -50,0,22.1666666667,40.6633333333,18.89,45.2,24,38.8266666667,21.37,38.09,20.7,46.7,2.1633333333,51.2566666667,21.0428571429,33.2,24.1,41.39,20.89,43.23,3.6333333333,750.4666666667,93,1.3333333333,40,2.6333333333,30.8580871089,30.8580871089 -50,0,22.1,40.59,18.8233333333,45.1266666667,24,38.79,21.29,38.09,20.7,46.7,2.29,52.26,21.1,33.2,24,40.93,20.89,43.29,3.5166666667,750.5333333333,93,1.1666666667,40,2.5166666667,7.142459508,7.142459508 -50,0,22.1,40.5,18.79,45.1266666667,24,38.73,21.29,38.09,20.7,46.6266666667,2.23,51.8666666667,21.0714285714,33.2,23.9266666667,40.73,20.79,43.3266666667,3.4,750.6,93,1,40,2.4,0.7894603303,0.7894603303 -50,0,22.1,40.5,18.73,45.2,23.89,38.73,21.29,38.09,20.7,46.6266666667,2.0266666667,51.1933333333,21.06,33.156,23.89,40.59,20.865,43.4975,3.4833333333,750.7,93.1666666667,1,40,2.5,25.5138408043,25.5138408043 -60,0,22.0666666667,40.3633333333,18.7,45.2,23.89,38.79,21.29,38.09,20.7,46.59,1.8266666667,50.86,21.0714285714,33.2,23.8233333333,40.53,20.89,43.59,3.5666666667,750.8,93.3333333333,1,40,2.6,34.0493167285,34.0493167285 -50,0,22,40.29,18.7,45.2,23.89,38.79,21.29,38.09,20.7,46.59,1.73,50.9666666667,21.06,33.156,23.79,40.5,20.89,43.73,3.65,750.9,93.5,1,40,2.7,10.4614154552,10.4614154552 -60,0,22,40.26,18.7,45.2,23.89,38.79,21.29,38.036,20.6333333333,46.53,1.8633333333,51.56,21.0285714286,33.1214285714,23.73,40.5,20.89,43.8633333333,3.7333333333,751,93.6666666667,1,40,2.8,33.8027473423,33.8027473423 -60,0,22,40.2,18.625,45.1175,23.89,38.7,21.2771428571,38.0771428571,20.7,46.59,1.79,51.2966666667,21,33.09,23.7,40.7666666667,20.8233333333,43.86,3.8166666667,751.1,93.8333333333,1,40,2.9,5.2875807509,5.2875807509 -50,0,21.89,40.09,18.6,45.1633333333,23.89,38.7,21.2,38,20.6666666667,46.56,1.6633333333,50.89,21,33.09,23.7,40.9,20.89,44.06,3.9,751.2,94,1,40,3,22.6836602087,22.6836602087 -50,0,21.89,40.09,18.5,45.09,23.89,38.59,21.2385714286,38,20.6666666667,46.5,1.4633333333,50.89,21,33.09,23.6,41.0666666667,20.89,44.23,3.55,751.2166666667,94.5,1,44.1666666667,2.7166666667,49.9619870679,49.9619870679 -40,0,21.89,40.06,18.5,45.09,23.89,38.59,21.2,38,20.6333333333,46.4333333333,1.5475,51.7225,21,33.09,23.5333333333,41.26,20.89,44.3633333333,3.2,751.2333333333,95,1,48.3333333333,2.4333333333,38.966952695,38.966952695 -60,0,21.89,40,18.5,45.2,23.8566666667,38.56,21.2,38,20.7,46.5,1.6,52,21,33.09,23.5,41.4,20.79,44.4,2.85,751.25,95.5,1,52.5,2.15,16.6463799425,16.6463799425 -40,0,21.8566666667,39.9666666667,18.4266666667,45.1266666667,23.79,38.5,21.2,38,20.6333333333,46.4333333333,1.53,51.7333333333,21,33.09,23.5,41.3266666667,20.8566666667,44.5266666667,2.5,751.2666666667,96,1,56.6666666667,1.8666666667,15.6713856966,15.6713856966 -50,0,21.79,39.9,18.39,45.09,23.79,38.5,21.2,37.98,20.6,46.3633333333,1.3233333333,51.1933333333,21,33.09,23.39,41.26,20.8233333333,44.5666666667,2.15,751.2833333333,96.5,1,60.8333333333,1.5833333333,44.5992653375,44.5992653375 -60,0,21.79,39.79,18.39,45.09,23.79,38.4333333333,21.1571428571,37.9,20.6,46.3633333333,1.0666666667,50.79,21,33.09,23.39,41.095,20.8233333333,44.6266666667,1.8,751.3,97,1,65,1.3,28.3351627877,28.3351627877 -60,0,21.79,39.79,18.29,45.09,23.73,38.5,21.2,37.9,20.6,46.29,0.9333333333,50.73,21,33.09,23.39,40.86,20.79,44.6266666667,1.7166666667,751.3666666667,97,1,64.5,1.2333333333,14.6191092557,14.6191092557 -60,0,21.76,39.79,18.29,45.09,23.73,38.4,21.1142857143,37.9,20.6,46.29,0.7666666667,50.6333333333,21,33.09,23.29,40.73,20.8566666667,44.76,1.6333333333,751.4333333333,97,1,64,1.1666666667,21.7807156267,21.7807156267 -60,0,21.7,39.7225,18.26,45,23.73,38.4,21.1,37.878,20.6,46.29,0.6333333333,50.36,21,33.09,23.29,40.73,20.89,44.79,1.55,751.5,97,1,63.5,1.1,7.993025647,7.993025647 -60,0,21.7,39.7,18.2,45,23.7,38.4,21.1,37.8685714286,20.6,46.29,0.5,50.7,21,33.0128571429,23.26,40.53,20.8233333333,44.79,1.4666666667,751.5666666667,97,1,63,1.0333333333,39.5432897494,39.5432897494 -50,0,21.7,39.59,18.2,44.9,23.7,38.3266666667,21.1,37.79,20.6,46.2,0.5,50.76,20.978,33,23.2,40.59,20.89,44.9,1.3833333333,751.6333333333,97,1,62.5,0.9666666667,32.6531994157,32.6531994157 -50,0,21.6333333333,39.59,18.1333333333,44.9,23.7,38.26,21.0857142857,37.7771428571,20.6,46.2,0.4666666667,51.2566666667,20.9371428571,33,23.2,40.5266666667,20.8233333333,44.8266666667,1.3,751.7,97,1,62,0.9,37.1503836708,37.1503836708 -40,0,21.6,39.59,18.1,44.9,23.7,38.2,21.06,37.754,20.6,46.2,0.4666666667,52.13,20.89,33,23.2,40.3266666667,20.8233333333,44.8266666667,1.2166666667,751.7166666667,97.3333333333,1,59.1666666667,0.85,20.0515476987,20.0515476987 -50,0,21.6,39.53,18.1,44.9,23.7,38.23,21.0285714286,37.7257142857,20.6,46.2,0.8,53.4933333333,20.89,32.9428571429,23.1,40.1,20.84,44.925,1.1333333333,751.7333333333,97.6666666667,1,56.3333333333,0.8,45.8092497429,45.8092497429 -40,0,21.6,39.5,18.0666666667,44.8633333333,23.6333333333,38.23,21,37.7,20.5666666667,46.2,1.0666666667,54.0266666667,20.89,32.9,23.1,39.7666666667,20.8233333333,45,1.05,751.75,98,1,53.5,0.75,39.1585538746,39.1585538746 -50,0,21.5333333333,39.5,18,44.79,23.6,38.26,21,37.6528571429,20.5666666667,46.1266666667,1.0666666667,53.7233333333,20.89,32.9,23,39.43,20.79,45.03,0.9666666667,751.7666666667,98.3333333333,1,50.6666666667,0.7,30.3153587505,30.3153587505 -60,0,21.5,39.5,18,44.73,23.5333333333,38.2,21,37.7,20.6,46.09,0.975,53.5975,20.89,32.9,23,39.23,20.79,45.09,0.8833333333,751.7833333333,98.6666666667,1,47.8333333333,0.65,44.2821703153,44.2821703153 -50,0,21.5,39.4333333333,17.9175,44.745,23.5,38.2,21,37.7,20.5333333333,46.09,1.2266666667,54.3933333333,20.89,32.9,22.9633333333,38.9666666667,20.79,45.2,0.8,751.8,99,1,45,0.6,8.0921454239,8.0921454239 -60,0,21.4633333333,39.4,17.89,44.79,23.5,38.2,21,37.7,20.5,46.09,1.3566666667,54.56,20.89,32.8842857143,22.89,38.7666666667,20.79,45.26,0.95,751.85,98.8333333333,1,48.3333333333,0.7333333333,44.3332813098,44.3332813098 -50,0,21.39,39.4,17.89,44.76,23.4266666667,38.0666666667,20.9528571429,37.7,20.5,46.03,1.29,54.36,20.87,32.834,22.89,38.56,20.79,45.29,1.1,751.9,98.6666666667,1,51.6666666667,0.8666666667,12.6580285374,12.6580285374 -50,0,21.39,39.4,17.89,44.76,23.5,38.1266666667,20.978,37.678,20.5333333333,46,1.2,53.9566666667,20.8614285714,32.79,22.8233333333,38.4333333333,20.79,45.29,1.25,751.95,98.5,1,55,1,23.0337516987,23.0337516987 -50,0,21.39,39.4,17.79,44.7,23.39,38,20.9371428571,37.6685714286,20.525,45.975,1.3266666667,54.7633333333,20.83,32.834,22.79,38.26,20.79,45.29,1.4,752,98.3333333333,1,58.3333333333,1.1333333333,0.2515048371,0.2515048371 -50,0,21.3566666667,39.4,17.79,44.7,23.39,38,20.89,37.7,20.5,45.9,1.5333333333,55.2666666667,20.8042857143,32.7928571429,22.79,38.2,20.79,45.29,1.55,752.05,98.1666666667,1,61.6666666667,1.2666666667,14.8222913849,14.8222913849 -40,0,21.29,39.4,17.79,44.7,23.39,37.95,20.89,37.7,20.5,45.9,1.7266666667,55.66,20.79,32.718,22.7,38.06,20.79,45.29,1.7,752.1,98,1,65,1.4,3.9676788147,3.9676788147 -50,0,21.29,39.4,17.79,44.6266666667,23.3233333333,38,20.89,37.7,20.5,45.8266666667,1.9633333333,56.0966666667,20.79,32.7257142857,22.7,38,20.79,45.29,1.7166666667,752.1666666667,97.8333333333,1,57.8333333333,1.4,26.598760311,26.598760311 -40,0,21.29,39.4,17.79,44.56,23.3233333333,38,20.89,37.7,20.5,45.79,2.1633333333,56.3633333333,20.79,32.7,22.6,38.03,20.79,45.29,1.7333333333,752.2333333333,97.6666666667,1,50.6666666667,1.4,47.2988146823,47.2988146823 -60,0,21.29,39.4,17.79,44.5,23.39,38,20.89,37.7,20.5,45.79,2.2,56.5,20.8185714286,32.7571428571,22.6,38.1175,20.79,45.29,1.75,752.3,97.5,1,43.5,1.4,33.4809884778,33.4809884778 -60,0,21.23,39.3266666667,17.79,44.5,23.39,38,20.8185714286,37.6214285714,20.5,45.79,2.2,56.36,20.79,32.718,22.6,38.26,20.79,45.29,1.7666666667,752.3666666667,97.3333333333,1,36.3333333333,1.4,35.3014232358,35.3014232358 -50,0,21.2,39.4,17.79,44.4333333333,23.39,38.09,20.815,37.6175,20.5,45.79,2.09,56.09,20.79,32.7514285714,22.6,38.3266666667,20.79,45.29,1.7833333333,752.4333333333,97.1666666667,1,29.1666666667,1.4,8.090353047,8.090353047 -70,0,21.2,39.3633333333,17.79,44.29,23.39,38.09,20.79,37.59,20.5,45.76,2.09,56.09,20.79,32.736,22.6,38.4,20.79,45.29,1.8,752.5,97,1,22,1.4,3.9873437141,3.9873437141 -50,0,21.2,39.29,17.8566666667,44.3633333333,23.39,38.1266666667,20.79,37.59,20.5,45.7,2.1566666667,56.3,20.79,32.7385714286,22.5,38.4333333333,20.79,45.29,2.0333333333,752.6166666667,96.6666666667,1.1666666667,22.5,1.5666666667,21.9664920354,21.9664920354 -50,0,21.2,39.29,17.89,44.29,23.4633333333,38.26,20.85,37.656,20.5,45.76,2.43,56.7666666667,20.79,32.736,22.5,38.5,20.79,45.3266666667,2.2666666667,752.7333333333,96.3333333333,1.3333333333,23,1.7333333333,26.8274467322,26.8274467322 -80,0,21.2,39.29,17.9633333333,44.23,23.4633333333,38.26,20.79,37.59,20.5,45.7,2.86,57.23,20.79,32.7,22.4633333333,38.5,20.79,45.4,2.5,752.85,96,1.5,23.5,1.9,39.4558266969,39.4558266969 -70,0,21.2,39.6266666667,18,44.1933333333,23.39,38.2,20.79,37.572,20.4266666667,45.6266666667,3.225,57.52,20.79,32.754,22.39,38.56,20.79,45.345,2.7333333333,752.9666666667,95.6666666667,1.6666666667,24,2.0666666667,25.4949110094,25.4949110094 -60,0,21.2,39.76,18.0666666667,44.4666666667,23.39,37.9666666667,20.79,37.4714285714,20.4266666667,45.6266666667,3.7666666667,57.99,20.79,32.7514285714,22.39,38.6266666667,20.89,45.1933333333,2.9666666667,753.0833333333,95.3333333333,1.8333333333,24.5,2.2333333333,3.736190137,3.736190137 -40,0,21.2,39.9333333333,18.2,44.73,23.39,37.9666666667,20.79,37.4,20.4633333333,45.6633333333,4.43,58.36,20.79,32.79,22.39,38.76,20.9633333333,44.86,3.2,753.2,95,2,25,2.4,12.1690451633,12.1690451633 -60,0,21.2,40.06,18.4975,44.7475,23.5,37.9666666667,20.79,37.47,20.39,45.59,4.9566666667,58.6333333333,20.79,32.79,22.3566666667,38.9333333333,21,44.5266666667,3.4166666667,753.3166666667,94,2.1666666667,27.5,2.4833333333,46.9781042077,46.9781042077 -50,0,21.2,40.5,18.93,44.1333333333,23.5666666667,37.9,20.81,37.612,20.4266666667,45.6266666667,5.3966666667,58.76,20.79,32.79,22.29,39.1333333333,21.0666666667,44.2666666667,3.6333333333,753.4333333333,93,2.3333333333,30,2.5666666667,35.2544700843,35.2544700843 -200,0,21.26,40.56,19.23,43.6333333333,23.6,37.9,20.9214285714,37.7257142857,20.4266666667,45.6266666667,5.7966666667,58.2933333333,20.79,32.8371428571,22.3233333333,39.23,21.49,43.2933333333,3.85,753.55,92,2.5,32.5,2.65,17.4767592456,17.4767592456 -240,0,21.29,40.7666666667,19.3566666667,43.36,23.6,37.9,21,37.7,20.4266666667,45.6266666667,6.2933333333,56.3933333333,20.79,32.772,22.39,39.3633333333,22.03,42.1666666667,4.0666666667,753.6666666667,91,2.6666666667,35,2.7333333333,9.7436081269,9.7436081269 -250,0,21.29,40.7666666667,19.5,42.9,23.6,37.8266666667,21.0571428571,37.7514285714,20.5,45.7,6.4333333333,51.2666666667,20.7257142857,32.6685714286,22.29,39.4666666667,21.8266666667,41.6633333333,4.2833333333,753.7833333333,90,2.8333333333,37.5,2.8166666667,37.8494774224,37.8494774224 -90,10,21.29,40.5666666667,19.6333333333,42.5,23.5333333333,37.8266666667,21.1,37.894,20.5,45.745,6.6,46.4933333333,20.7,32.4,22.29,39.4,21.6333333333,41.4633333333,4.5,753.9,89,3,40,2.9,49.0418301197,49.0418301197 -180,10,21.29,40.5666666667,19.89,41.96,23.43,37.5633333333,21.1,38.1942857143,20.5,45.3333333333,7.06,41.9666666667,20.7,32.2475,22.29,39.29,21.39,40.9,4.8,753.9666666667,87.5,3.1666666667,40,2.9333333333,3.8783257129,3.8783257129 -160,20,21.29,40.4,19.89,41.7,23.1475,37.3975,21.1,38.334,20.5,45,7.2966666667,38.7933333333,20.7,32.0542857143,22.23,39.1566666667,21.3233333333,40.5666666667,5.1,754.0333333333,86,3.3333333333,40,2.9666666667,19.1396989976,19.1396989976 -50,20,21.29,40.3266666667,19.8233333333,41.7,23.1,37.5,21.1857142857,38.4571428571,20.5,44.7233333333,7.03,39.5333333333,20.68,31.958,22.29,39.09,21.2,40.1333333333,5.4,754.1,84.5,3.5,40,3,20.7110102754,20.7110102754 -60,20,21.29,40.1333333333,19.89,41.5,23.1,37.43,21.2,38.5,20.5,44.4633333333,7.2266666667,36.66,20.6,31.79,22.29,39.09,21.1333333333,40.8,5.7,754.1666666667,83,3.6666666667,40,3.0333333333,26.6345850541,26.6345850541 -80,10,21.29,39.9333333333,20.3666666667,41.1666666667,23.0333333333,37.23,21.2928571429,38.5957142857,20.5,44.2233333333,7.7,35.7333333333,20.66,31.714,22.245,39.095,21.1,41.5966666667,6,754.2333333333,81.5,3.8333333333,40,3.0666666667,7.3462669156,7.3462669156 -150,30,21.39,39.745,20.9666666667,40.3666666667,23,37.1633333333,21.434,38.59,20.5,44.03,8.5333333333,32.6333333333,20.6285714286,31.6285714286,22.2,39.3266666667,21.1,41.73,6.3,754.3,80,4,40,3.1,28.7344018696,28.7344018696 -470,10,21.39,39.59,21.0666666667,39.56,23,37.09,21.5,38.4557142857,20.5333333333,47.2233333333,7.5933333333,46.6266666667,20.66,31.66,22.26,39.5266666667,21.1,41.43,6.6,754.4166666667,79.6666666667,4,40,3.3333333333,43.0875168648,43.0875168648 -690,20,21.39,39.59,20.86,39.56,23,37.1633333333,21.52,38.4,21.8666666667,75.6966666667,6.59,56.6966666667,20.6571428571,31.6571428571,22.2,39.3333333333,21.1,41.0966666667,6.9,754.5333333333,79.3333333333,4,40,3.5666666667,10.2614832111,10.2614832111 -660,20,21.5333333333,42.6933333333,20.96,39.89,23,37.09,21.6,38.4714285714,22.5333333333,83.1633333333,6.87,59.2925,20.6,31.7,22.2,39.0666666667,21.1,40.6333333333,7.2,754.65,79,4,40,3.8,8.1104167853,8.1104167853 -330,20,21.6666666667,45.8266666667,21.2266666667,40.89,23.1,37.2,21.7,38.59,21.9933333333,83.5633333333,7.23,59.9,20.6857142857,31.7257142857,22.2,38.7233333333,21.1,40.36,7.5,754.7666666667,78.6666666667,4,40,4.0333333333,4.0502418415,4.0502418415 -370,10,21.73,50.6333333333,21.5666666667,42.6966666667,23.1,37.4,21.8342857143,38.6528571429,21.6666666667,83.26,7.7266666667,60.1933333333,20.7,31.7,22.2,38.6633333333,21.1,40.045,7.8,754.8833333333,78.3333333333,4,40,4.2666666667,34.7775595146,34.7775595146 -200,0,21.8566666667,52.6933333333,21.9,43.6966666667,23.1,37.86,21.9266666667,38.7666666667,21.46,83.5933333333,8.2,60.4666666667,20.7,31.6285714286,22.23,38.8266666667,21.1,40,8.1,755,78,4,40,4.5,4.9025220447,4.9025220447 -100,0,21.8233333333,51.9566666667,22.1633333333,45.03,23.1,38.1933333333,22.0428571429,38.9285714286,21.29,83.8333333333,8.5633333333,56.2333333333,20.7,31.35,22.29,38.8266666667,21.1,40.1933333333,8.0333333333,755.0833333333,76.6666666667,4,40,4.1833333333,26.9081118749,26.9081118749 -100,0,21.89,50.5633333333,22.365,44.9225,23.1,38.59,22.1285714286,38.8685714286,21.23,82.3666666667,9.0233333333,43.4933333333,20.7,31.1414285714,22.3233333333,38.7,21.1,40.9333333333,7.9666666667,755.1666666667,75.3333333333,4,40,3.8666666667,33.5564837791,33.5564837791 -100,0,22,48.4266666667,22.39,43.9333333333,23.1,38.7233333333,22.2,38.9,21.1,78.3666666667,9.16,32.8233333333,20.718,30.958,22.39,38.5666666667,21.1,40.7266666667,7.9,755.25,74,4,40,3.55,9.7307413351,9.7307413351 -100,0,22,47.0933333333,22.26,43.1233333333,23.1,38.9,22.2,38.7928571429,21.1,74.7,8.8266666667,31.43,20.7642857143,30.7642857143,22.5,38.4666666667,21.0666666667,40.0633333333,7.8333333333,755.3333333333,72.6666666667,4,40,3.2333333333,24.603048875,24.603048875 -100,0,22,45.7333333333,22.1333333333,42.4566666667,23.1,38.9,22.2,38.736,21.1,70.5,8.5333333333,34.66,20.7,30.66,22.5666666667,38.3266666667,21,39.79,7.7666666667,755.4166666667,71.3333333333,4,40,2.9166666667,12.6107926364,12.6107926364 -290,0,22.0666666667,44.8666666667,22.1,41.8633333333,23.0333333333,38.9,22.2,38.6685714286,21.1,67.4266666667,8.8666666667,35.7333333333,20.7514285714,30.6,22.6333333333,38.2,21,39.3633333333,7.7,755.5,70,4,40,2.6,11.7057126015,11.7057126015 -140,0,22.0333333333,44.3633333333,22.0333333333,41.33,23.1,38.9,22.16,38.634,21,64.3666666667,8.9266666667,35.8633333333,20.772,30.54,22.7,38.1266666667,21,39.23,7.4166666667,755.55,70.3333333333,3.5,40,2.3833333333,41.0602601478,41.0602601478 -150,10,22.2266666667,44.6966666667,22,41.03,23.0666666667,38.76,22.1,38.5714285714,20.9725,62.475,9.1266666667,39.7233333333,20.7642857143,30.5,22.73,38,21,38.9666666667,7.1333333333,755.6,70.6666666667,3,40,2.1666666667,30.483500415,30.483500415 -100,0,22.29,44.2,22,41.1633333333,23,38.6266666667,22.1,38.36,20.89,60.8,9.3233333333,38.49,20.79,30.5,22.79,38,21,38.9,6.85,755.65,71,2.5,40,1.95,23.7350804498,23.7350804498 -80,0,22.3566666667,45.0666666667,22,41.1633333333,23.05,38.645,22.1,38.1685714286,20.89,59.2333333333,9.3966666667,35.43,20.79,30.4228571429,22.8233333333,37.8633333333,21,38.76,6.5666666667,755.7,71.3333333333,2,40,1.7333333333,6.9895120803,6.9895120803 -100,0,22.5,45.2966666667,22,40.9633333333,23,38.56,22.1,38.09,20.8233333333,58.0933333333,10.0666666667,28.9666666667,20.81,30.272,22.89,37.73,21,38.96,6.2833333333,755.75,71.6666666667,1.5,40,1.5166666667,5.5001180386,5.5001180386 -70,0,22.5,43.5566666667,21.9266666667,40.5266666667,23.0666666667,38.5,22.1,37.9057142857,20.8233333333,57.1333333333,10.0666666667,17.8933333333,20.9214285714,30.1,22.89,37.56,21,39.4933333333,6,755.8,72,1,40,1.3,6.5837459522,6.5837459522 -80,0,22.6,42.3933333333,21.9266666667,40.2666666667,23,38.3633333333,22.1,37.596,20.89,56.6666666667,10.1666666667,10.0666666667,21,29.85,22.89,37.2,21,40.0266666667,6.4333333333,755.85,73,1.6666666667,40,1.9,47.9664282408,47.9664282408 -70,0,22.625,41.5,22,39.6933333333,23,38.23,22.1,37.2571428571,20.79,55.7333333333,10.5475,7.05,21.0571428571,29.5214285714,22.89,36.6933333333,21,40.5666666667,6.8666666667,755.9,74,2.3333333333,40,2.5,7.6083445456,7.6083445456 -70,0,22.7,40.8,22,39.3,23.1,38.26,22.1,36.96,20.79,54.9933333333,10.69,9.5266666667,21.22,29.16,22.89,36.2233333333,21,40.7,7.3,755.95,75,3,40,3.1,11.7063354352,11.7063354352 -70,10,22.73,40.2233333333,21.89,38.93,23.0333333333,38.0666666667,22.1,36.7257142857,20.79,53.9233333333,10.8666666667,8.5266666667,21.31,28.836,22.8233333333,35.83,21,40.7,7.7333333333,756,76,3.6666666667,40,3.7,12.8579946235,12.8579946235 -70,0,22.79,39.83,21.8233333333,38.53,23,37.9,22.1,36.418,20.79,53.33,10.8666666667,8.86,21.39,28.4971428571,22.8233333333,35.43,21,40.6266666667,8.1666666667,756.05,77,4.3333333333,40,4.3,46.7776314006,46.7776314006 -60,0,22.79,39.5266666667,21.79,38.2233333333,23.0666666667,37.9,22.1,36.2257142857,20.79,52.66,11.1666666667,6.7266666667,21.54,28.254,22.8233333333,35.0966666667,21,40.495,8.6,756.1,78,5,40,4.9,25.067008764,25.067008764 -70,0,22.79,39.2666666667,21.8566666667,37.9633333333,23,37.59,22.1,35.96,20.79,52.1333333333,11.5,6.5333333333,21.6571428571,28.1428571429,22.8233333333,34.9,21,40.1333333333,8.6833333333,756.1166666667,76.8333333333,4.8333333333,40,4.7666666667,43.8760292018,43.8760292018 -60,0,22.89,39.1,21.8566666667,37.6333333333,23,37.4633333333,22.1,35.8371428571,20.76,51.49,11.36,7.9,21.7,28.018,22.8233333333,34.9,21,39.9333333333,8.7666666667,756.1333333333,75.6666666667,4.6666666667,40,4.6333333333,13.101017219,13.101017219 -60,0,22.89,38.7666666667,21.79,37.4333333333,22.9633333333,37.26,22.1,35.714,20.76,50.9566666667,11.5,4.4333333333,21.7385714286,27.8614285714,22.79,34.76,21,39.79,8.85,756.15,74.5,4.5,40,4.5,10.1499903714,10.1499903714 -100,20,22.89,38.56,21.79,37.1,22.9633333333,37.26,22.1,35.5514285714,20.73,50.4,11.2333333333,13.46,21.79,27.83,22.79,34.76,21,39.79,8.9333333333,756.1666666667,73.3333333333,4.3333333333,40,4.3666666667,17.6326725283,17.6326725283 -70,20,22.89,38.56,21.7,37.1266666667,22.89,37.23,22.1,35.79,20.73,49.9266666667,9.8333333333,26.1333333333,21.7385714286,28.0242857143,22.79,35,21,39.8266666667,9.0166666667,756.1833333333,72.1666666667,4.1666666667,40,4.2333333333,35.0834284327,35.0834284327 -90,20,22.89,38.26,21.6333333333,37.26,22.89,37.29,22.1,36.0085714286,20.7,49.4,8.9333333333,25.0666666667,21.7,28.218,22.79,35.46,21,40.0266666667,9.1,756.2,71,4,40,4.1,46.5099508176,46.5099508176 -100,10,22.89,38.1266666667,21.5,37.4,22.79,37.23,22.1,36.276,20.7,49,8.86,25.0666666667,21.6285714286,28.29,22.89,35.9633333333,21,40.29,9.2,756.2666666667,71,4.5,40,4.1833333333,36.8920800043,36.8920800043 -90,20,22.79,37.8633333333,21.5,37.4,22.79,37.23,22.175,36.475,20.7,48.5266666667,9.19,20.0933333333,21.66,28.35,22.9633333333,36.2233333333,21,40.23,9.3,756.3333333333,71,5,40,4.2666666667,34.7140627448,34.7140627448 -100,20,22.8566666667,37.8633333333,21.39,37.26,22.76,37.2,22.2,36.4285714286,20.7,48.3266666667,9.2633333333,15.1,21.6571428571,28.2771428571,23,36.4,20.9266666667,39.99,9.4,756.4,71,5.5,40,4.35,25.5162759568,25.5162759568 -100,20,22.79,37.79,21.39,37.1266666667,22.7,37.1266666667,22.29,36.46,20.7,47.995,9.63,14.1266666667,21.7,28.18,23.0666666667,36.5266666667,21,39.79,9.5,756.4666666667,71,6,40,4.4333333333,2.1744219004,2.1744219004 -90,20,22.79,37.79,21.29,37.09,22.745,37,22.29,36.4,20.7,47.5266666667,9.63,13.3266666667,21.7385714286,28.1,23.1,36.73,20.9266666667,39.79,9.6,756.5333333333,71,6.5,40,4.5166666667,14.6535818581,14.6535818581 -120,10,22.79,37.76,21.23,37.03,22.7,36.9,22.31,36.378,20.7,47.1933333333,9.5633333333,12.9,21.79,28,23.1666666667,36.79,21,39.79,9.7,756.6,71,7,40,4.6,12.4885184574,12.4885184574 -180,20,22.79,37.8333333333,21.2,37,22.7,36.9,22.39,36.3685714286,20.7,46.8333333333,9.8233333333,13.4333333333,21.8471428571,28.0142857143,23.2,37.03,21,39.79,9.5833333333,756.6666666667,70,7.1666666667,40,4.2833333333,23.0903947609,23.0903947609 -240,20,22.8233333333,38.2566666667,21.2,37,22.79,36.79,22.39,36.4,20.7,46.5666666667,9.745,15.9,21.85,28.06,23.2,37.1633333333,21,39.79,9.4666666667,756.7333333333,69,7.3333333333,40,3.9666666667,46.0121264914,46.0121264914 -220,20,22.89,38.6633333333,21.1666666667,37.4933333333,22.73,36.79,22.4057142857,36.47,20.7,46.29,9.6,14.9266666667,21.89,28.1,23.29,37.5,21,39.79,9.35,756.8,68,7.5,40,3.65,39.4370463211,39.4370463211 -150,20,22.89,41.69,21.1,37.9666666667,22.73,36.79,22.5,36.59,20.7,46.23,9.66,15.3333333333,22,28.06,23.3233333333,37.89,21,39.79,9.2333333333,756.8666666667,67,7.6666666667,40,3.3333333333,8.3059113938,8.3059113938 -100,10,23,43.0666666667,21.1,38.89,22.79,36.8633333333,22.5,36.59,20.79,46.29,9.8,14.9333333333,22,28,23.39,38.2233333333,21,39.79,9.1166666667,756.9333333333,66,7.8333333333,40,3.0166666667,38.4128519683,38.4128519683 -90,20,23,41.6666666667,21.1,39.09,22.79,37.03,22.54,36.536,20.79,46.3633333333,9.7266666667,14.3266666667,22,28,23.39,38.3633333333,21,39.79,9,757,65,8,40,2.7,13.3768606931,13.3768606931 -110,20,23,40.7966666667,21.1,39.06,22.79,37.09,22.6,36.6057142857,20.89,46.3633333333,10.0333333333,12.5566666667,22,28,23.39,38.23,21,39.79,9.05,757.05,65.5,7.6666666667,40,2.85,17.0564181986,17.0564181986 -110,20,23,40.39,21.1,38.9333333333,22.8566666667,37.1333333333,22.6,36.718,20.89,46.23,10.0333333333,12.6966666667,22.04,27.934,23.5,38.1333333333,21,39.79,9.1,757.1,66,7.3333333333,40,3,45.6099627074,45.6099627074 -160,10,22.9633333333,39.93,21.2,38.7,22.79,37,22.6714285714,36.8685714286,21,45.93,10.16,15.0333333333,22.0142857143,27.9685714286,23.5,38,21,39.79,9.15,757.15,66.5,7,40,3.15,48.4232735587,48.4232735587 -650,20,22.89,39.73,21.1333333333,38.6266666667,22.8566666667,36.8633333333,22.7,37,21,45.73,9.96,16.6333333333,22,28.02,23.6,38,21,39.73,9.2,757.2,67,6.6666666667,40,3.3,2.8914971743,2.8914971743 -310,10,22.9266666667,41.3266666667,21.1,38.86,22.79,36.8633333333,22.7128571429,37.0128571429,21.0333333333,45.5,9.53,16.16,21.98625,28.1,23.6,38.06,21,39.5966666667,9.25,757.25,67.5,6.3333333333,40,3.45,34.6809454728,34.6809454728 -130,0,23,44.5266666667,21.1,41.6425,22.79,36.8633333333,22.754,37.09,21.1,45.6333333333,9.1966666667,17.16,21.89,28.1,23.6666666667,38.0266666667,21,39.6266666667,9.3,757.3,68,6,40,3.6,23.0155155063,23.0155155063 -120,0,23,45.4233333333,21.0333333333,43.9233333333,22.79,37.0633333333,22.7642857143,37.0257142857,21.1,46.1933333333,8.9333333333,18.1333333333,21.89,28.2,23.6,37.7666666667,20.9266666667,39.7,9.1833333333,757.3666666667,67.5,5.8333333333,40,3.3833333333,13.7693877798,13.7693877798 -120,0,23,45.03,21,44.23,22.8233333333,37.4333333333,22.7,36.79,21.1,46.6,8.8,17.5933333333,21.89,28.2,23.6,37.9333333333,21,39.6633333333,9.0666666667,757.4333333333,67,5.6666666667,40,3.1666666667,20.9985466325,20.9985466325 -120,0,23.1,46.5266666667,20.9266666667,44.29,22.89,37.5,22.7,36.6057142857,21.1,46.8266666667,8.8,17.9,21.87,28.236,23.6666666667,38.1933333333,20.9266666667,39.59,8.95,757.5,66.5,5.5,40,2.95,48.5892335419,48.5892335419 -110,0,23.1,44.86,20.89,43.96,22.89,37.4,22.7,36.48,21.1,46.8266666667,8.8,17.2333333333,21.8328571429,28.2,23.7,38.3333333333,20.9266666667,39.5666666667,8.8333333333,757.5666666667,66,5.3333333333,40,2.7333333333,3.1734825694,3.1734825694 -130,20,23.0666666667,43.5933333333,20.89,43.5,22.89,37.3266666667,22.6285714286,36.3214285714,21,46.645,8.6266666667,15.6966666667,21.79,28.1,23.7,38.1266666667,20.9266666667,39.7,8.7166666667,757.6333333333,65.5,5.1666666667,40,2.5166666667,49.2929944419,49.2929944419 -100,20,23,42.7933333333,20.79,42.7633333333,22.89,37.4,22.6,36.334,21.0666666667,46.43,8.5,15.83,21.7514285714,28.1,23.73,37.7233333333,20.9633333333,39.79,8.6,757.7,65,5,40,2.3,17.3896380467,17.3896380467 -90,0,23,42.0633333333,20.73,41.9566666667,22.84,37.4475,22.6,36.5242857143,21,45.8966666667,8.345,16.54,21.736,28.12,23.73,37.53,20.9633333333,39.79,8.4166666667,757.7833333333,66,4.6666666667,40,2.3333333333,14.996993402,14.996993402 -120,0,23,41.4566666667,20.6666666667,41.2333333333,22.8233333333,37.53,22.6,36.316,21.1,44.8933333333,8.0333333333,18.1233333333,21.7,28.2,23.79,37.3333333333,21,39.76,8.2333333333,757.8666666667,67,4.3333333333,40,2.3666666667,29.2985270615,29.2985270615 -170,10,22.9633333333,40.8633333333,20.6,40.6933333333,22.79,37.5,22.5285714286,36,21.1,44.1,7.76,19.33,21.66,28.2,23.73,37.2,20.9266666667,39.7,8.05,757.95,68,4,40,2.4,24.4651630521,24.4651630521 -150,0,22.89,40.39,20.4633333333,40.43,22.79,37.5,22.5,35.95,21.1,44.6933333333,7.4333333333,21.6666666667,21.6,28.2,23.7,36.9666666667,20.89,39.0633333333,7.8666666667,758.0333333333,69,3.6666666667,40,2.4333333333,35.9351446852,35.9351446852 -110,0,22.89,40.2,20.39,40.43,22.79,37.53,22.39,36,21.0333333333,44.9666666667,7.16,24.1933333333,21.6,28.218,23.7,36.8266666667,20.89,38.2633333333,7.6833333333,758.1166666667,70,3.3333333333,40,2.4666666667,46.3696544408,46.3696544408 -90,0,22.84,40.05,20.3566666667,40.7,22.79,37.59,22.3757142857,35.8985714286,21,44.8633333333,6.56,26.76,21.5285714286,28.3185714286,23.7,36.645,20.89,37.2333333333,7.5,758.2,71,3,40,2.5,14.2573649413,14.2573649413 -80,0,22.8233333333,39.86,20.29,40.76,22.76,37.7,22.29,35.772,21,44.73,6.0333333333,28.4266666667,21.5,28.434,23.7,36.5,20.8233333333,36.5666666667,7.25,758.3,72.5,2.8333333333,40,2.55,6.2858743011,6.2858743011 -80,10,22.79,39.6633333333,20.26,40.76,22.7,37.76,22.29,35.6685714286,20.89,44.43,5.3966666667,31.29,21.5,28.5571428571,23.7,36.4333333333,20.79,35.99,7,758.4,74,2.6666666667,40,2.6,41.3070533308,41.3070533308 -80,0,22.79,39.53,20.2,40.7,22.6,37.73,22.254,35.554,20.89,44.23,4.9966666667,33.09,21.478,28.62,23.7,36.3633333333,20.7675,35.52,6.75,758.5,75.5,2.5,40,2.65,30.4034613073,30.4034613073 -110,0,22.76,39.4666666667,20.1666666667,40.7,22.6,37.79,22.2,35.4142857143,20.89,43.9666666667,4.5266666667,35.1666666667,21.39,28.7,23.6333333333,36.23,20.7,35.23,6.5,758.6,77,2.3333333333,40,2.7,27.3383530788,27.3383530788 -100,0,22.7,39.4,20.1,40.7,22.5,37.79,22.18,35.4,20.89,43.7666666667,4.26,36.4266666667,21.33,28.79,23.6,36.06,20.6666666667,34.9,6.25,758.7,78.5,2.1666666667,40,2.75,35.8496318688,35.8496318688 -100,0,22.7,39.4666666667,20,40.7,22.5,37.8633333333,22.1,35.3528571429,20.79,43.4666666667,3.8633333333,37.8933333333,21.3042857143,28.8471428571,23.6,36,20.6,34.6266666667,6,758.8,80,2,40,2.8,37.5962512568,37.5962512568 -90,10,22.7,39.5266666667,19.9725,40.6725,22.5,37.9,22.1,35.334,20.79,43.4,3.6566666667,38.8933333333,21.29,28.912,23.6,35.9,20.6,34.4666666667,5.7333333333,758.9166666667,81.5,1.8333333333,40,2.7833333333,2.8682867647,2.8682867647 -90,30,22.6666666667,39.5266666667,19.89,40.6633333333,22.5,37.9,22.1,35.3957142857,20.79,43.36,3.4666666667,40.16,21.29,29.1257142857,23.6,36.1,20.6,34.5266666667,5.4666666667,759.0333333333,83,1.6666666667,40,2.7666666667,24.5665321476,24.5665321476 -80,10,22.6,39.3266666667,19.79,40.6266666667,22.5,38,22.1,35.792,20.79,43.56,3.3266666667,41.3,21.29,29.39,23.6,36.7266666667,20.6,35.0666666667,5.2,759.15,84.5,1.5,40,2.75,40.4271921259,40.4271921259 -60,10,22.6,39.2233333333,19.73,40.76,22.5,38.06,22.1,36.1214285714,20.79,43.7666666667,3.1633333333,42.6666666667,21.29,29.5557142857,23.6,37.3333333333,20.6,35.46,4.9333333333,759.2666666667,86,1.3333333333,40,2.7333333333,36.090672249,36.090672249 -50,0,22.6,39.1633333333,19.6666666667,41.03,22.5,38.09,22.1,36.09,20.79,44.0266666667,2.9633333333,43.1333333333,21.29,29.718,23.7,37.8266666667,20.6,35.9633333333,4.6666666667,759.3833333333,87.5,1.1666666667,40,2.7166666667,27.7868287871,27.7868287871 -50,0,22.5333333333,39.09,19.6,41.2233333333,22.5,38.09,22.0142857143,36.0128571429,20.8566666667,44.89,2.95,44.995,21.29,29.8614285714,23.6333333333,38.0266666667,20.6,36.2966666667,4.4,759.5,89,1,40,2.7,5.6570374523,5.6570374523 -50,0,22.5333333333,39.03,19.5666666667,41.4333333333,22.5,38.09,22,35.94,20.79,44.9975,2.7233333333,45.03,21.29,30.1,23.6,38.23,20.6,36.6566666667,4.55,759.5666666667,88.3333333333,1,40,2.7333333333,36.1593135167,36.1593135167 -60,0,22.5,38.9666666667,19.5,41.6333333333,22.55,38.09,21.9685714286,35.9,20.79,44.9,2.53,45.09,21.29,30.2,23.5333333333,38.29,20.6666666667,36.99,4.7,759.6333333333,87.6666666667,1,40,2.7666666667,4.6258158982,4.6258158982 -50,0,22.5,38.9,19.39,41.59,22.5,38.09,21.934,35.9,20.7,44.9,2.29,45.8333333333,21.2385714286,30.2,23.5,38.5,20.6,37.2666666667,4.85,759.7,87,1,40,2.8,22.3372031236,22.3372031236 -60,0,22.39,38.79,19.39,41.59,22.5,38.09,21.9057142857,35.8528571429,20.76,44.9,2.29,46.9666666667,21.2,30.274,23.4266666667,38.4333333333,20.6,37.5266666667,5,759.7666666667,86.3333333333,1,40,2.8333333333,41.4723182912,41.4723182912 -50,0,22.39,38.73,19.29,41.73,22.5,38.09,21.89,35.79,20.7,44.9,2.2233333333,46.9,21.2,30.39,23.3566666667,38.3633333333,20.6,37.8266666667,5.15,759.8333333333,85.6666666667,1,40,2.8666666667,40.6186977634,40.6186977634 -50,0,22.3566666667,38.7,19.23,41.73,22.5,38.06,21.89,35.8371428571,20.7,44.9666666667,2.03,47.2333333333,21.2,30.39,23.29,38.29,20.6666666667,38.2333333333,5.3,759.9,85,1,40,2.9,40.255334368,40.255334368 -50,10,22.29,38.7,19.1666666667,41.8266666667,22.5,38,21.79,35.79,20.7,45.03,1.9666666667,47.8333333333,21.2,30.4842857143,23.29,38.4333333333,20.7,38.5666666667,5.15,759.9166666667,85.1666666667,1,40,2.7833333333,19.2964032758,19.2964032758 -60,10,22.29,38.7,19.1,41.9,22.5,38,21.79,35.8057142857,20.7,45.09,1.8266666667,47.76,21.2,30.56,23.29,38.55,20.7,38.76,5,759.9333333333,85.3333333333,1,40,2.6666666667,42.7803698229,42.7803698229 -70,20,22.26,38.7,19,41.9333333333,22.5,38,21.79,35.876,20.7,45.09,1.6666666667,47.7933333333,21.2,30.6,23.29,38.76,20.7,39.03,4.85,759.95,85.5,1,40,2.55,35.7311798609,35.7311798609 -70,20,22.2,38.7,19,42.06,22.5,37.9,21.79,36.1114285714,20.7,45.09,1.6,48.4,21.2,30.7,23.26,38.7,20.7,39.1725,4.7,759.9666666667,85.6666666667,1,40,2.4333333333,18.1475123041,18.1475123041 -40,20,22.2,38.6633333333,18.89,42.1266666667,22.5,37.9,21.89,36.4,20.6,45,1.5666666667,48.5266666667,21.1571428571,30.7514285714,23.26,38.76,20.7,39.2,4.55,759.9833333333,85.8333333333,1,40,2.3166666667,11.729379266,11.729379266 -50,20,22.2,38.6633333333,18.8233333333,42.2,22.5,37.8633333333,21.89,36.51875,20.6,45,1.4266666667,48.4,21.14,30.79,23.2,38.7,20.7,39.2,4.4,760,86,1,40,2.2,22.3990193219,22.3990193219 -50,20,22.1,38.7,18.79,42.29,22.5,37.79,21.9528571429,36.6657142857,20.6,45,1.26,48.56,21.1,30.79,23.2,38.7,20.7,39.2,4.2,760.05,86.5,1,40,2.0833333333,28.815345047,28.815345047 -50,20,22.1,38.7,18.7225,42.3725,22.5,37.76,21.956,36.754,20.6,44.9333333333,1.2,49.1,21.1,30.79,23.1,38.7,20.6333333333,39.03,4,760.1,87,1,40,1.9666666667,38.8721488183,38.8721488183 -60,10,22.1,38.7,18.7,42.4666666667,22.5,37.7,22,36.8214285714,20.6,44.9666666667,1.26,49.6966666667,21.1,30.8757142857,23.0333333333,38.5666666667,20.6333333333,39.03,3.8,760.15,87.5,1,40,1.85,38.3296529064,38.3296529064 -60,20,22.1,38.7,18.6666666667,42.56,22.39,37.59,22,36.856,20.6,44.9,1.125,49.4475,21.1,30.89,23,38.5,20.6666666667,38.9666666667,3.6,760.2,88,1,40,1.7333333333,15.5343187973,15.5343187973 -70,20,22,38.6633333333,18.6,42.5,22.4633333333,37.7233333333,22,36.8528571429,20.6,44.8266666667,1.0333333333,49.6933333333,21.0285714286,30.8185714286,22.9266666667,38.4333333333,20.6,38.9,3.4,760.25,88.5,1,40,1.6166666667,34.8045007442,34.8045007442 -50,20,22,38.6633333333,18.5666666667,42.59,22.4266666667,37.79,22.02,36.92,20.6,44.8266666667,1,50.1266666667,21.06,30.85,22.89,38.4,20.6,38.8633333333,3.2,760.3,89,1,40,1.5,43.361152173,43.361152173 -70,20,22,38.7,18.5,42.59,22.5,37.79,22.1,37.0385714286,20.6,44.79,0.9333333333,50.1266666667,21.0428571429,30.8471428571,22.89,38.4666666667,20.6,38.79,3.05,760.3166666667,89.6666666667,1,40,1.45,30.2298929542,30.2298929542 -70,20,21.9266666667,38.7,18.4633333333,42.6633333333,22.39,37.7,22.1,37,20.5333333333,44.79,0.8,50.2566666667,21,30.89,22.79,38.6266666667,20.6,38.7,2.9,760.3333333333,90.3333333333,1,40,1.4,46.3856160059,46.3856160059 -80,20,21.9633333333,38.7,18.39,42.6633333333,22.4633333333,37.76,22.1,37,20.55,44.7,0.8,50.4633333333,21,30.89,22.79,38.7,20.6,38.6266666667,2.75,760.35,91,1,40,1.35,13.6972531327,13.6972531327 -60,10,21.89,38.7,18.39,42.7,22.39,37.7,22.1,37,20.5,44.6633333333,0.7,50.4633333333,21,30.89,22.79,38.9333333333,20.6,38.59,2.6,760.3666666667,91.6666666667,1,40,1.3,36.8576546782,36.8576546782 -70,20,21.8566666667,38.6633333333,18.39,42.76,22.4266666667,37.73,22.1,37,20.5,44.59,0.6333333333,50.4633333333,21,30.9057142857,22.73,39.06,20.6,38.59,2.45,760.3833333333,92.3333333333,1,40,1.25,16.6899433942,16.6899433942 -60,20,21.79,38.59,18.29,42.8266666667,22.5,37.73,22.236,37.29,20.5,44.59,0.4666666667,50.1266666667,21,30.956,22.7,39.26,20.6,38.59,2.3,760.4,93,1,40,1.2,48.2683476061,48.2683476061 -50,20,21.79,38.7,18.29,42.9666666667,22.4633333333,37.6633333333,22.51,37.4928571429,20.5,44.53,0.4666666667,50.7333333333,21,31,22.7,39.26,20.5333333333,38.6633333333,2.15,760.4333333333,93.3333333333,1,37.5,1.1166666667,23.5281347414,23.5281347414 -50,0,21.79,38.7,18.2,43,22.39,37.53,22.774,37.552,20.5,44.5,0.4666666667,50.8266666667,21,31,22.7,39.5,20.5666666667,38.7,2,760.4666666667,93.6666666667,1,35,1.0333333333,18.7188662472,18.7188662472 -50,0,21.73,38.6266666667,18.2,43.1333333333,22.39,37.5,22.8185714286,37.2257142857,20.5,44.5,0.4666666667,51.5666666667,20.95875,31,22.6333333333,39.5,20.5,38.76,1.85,760.5,94,1,32.5,0.95,32.0590690477,32.0590690477 -60,0,21.7225,38.7675,18.2,43.23,22.39,37.4333333333,22.79,37.09,20.4266666667,44.4333333333,0.5666666667,51.7666666667,20.9057142857,31,22.6,39.59,20.5,38.9333333333,1.7,760.5333333333,94.3333333333,1,30,0.8666666667,46.2381875375,46.2381875375 -50,10,21.7,38.79,18.1333333333,43.23,22.39,37.36,22.7385714286,37.0128571429,20.4266666667,44.36,0.4333333333,51.5,20.89,31,22.5666666667,39.59,20.5,39.0225,1.55,760.5666666667,94.6666666667,1,27.5,0.7833333333,36.4654997597,36.4654997597 -60,0,21.7,38.79,18.1,43.29,22.39,37.4333333333,22.7,36.918,20.39,44.29,0.2333333333,50.7933333333,20.89,31,22.5,39.59,20.5,39.1633333333,1.4,760.6,95,1,25,0.7,1.4317270368,1.4317270368 -60,0,21.7,38.73,18.1,43.29,22.39,37.4,22.6714285714,36.6685714286,20.39,44.29,0.0333333333,50.1266666667,20.89,31,22.5,39.59,20.5,39.2,1.3,760.6,95.5,1,24.6666666667,0.6666666667,7.7317817253,7.7317817253 -40,0,21.6,38.59,18.1,43.2,22.39,37.3266666667,22.6,36.29,20.39,44.29,-0.1,50.145,20.89,30.9842857143,22.4266666667,39.53,20.5,39.26,1.2,760.6,96,1,24.3333333333,0.6333333333,29.9278803286,29.9278803286 -50,0,21.6,38.53,18.025,43.1175,22.39,37.29,22.4985714286,36.1371428571,20.39,44.29,-0.0666666667,50.6933333333,20.89,30.956,22.4633333333,39.3333333333,20.5,39.3266666667,1.1,760.6,96.5,1,24,0.6,1.6960368725,1.6960368725 -40,0,21.6,38.5,18,43.09,22.39,37.29,22.39,35.98,20.39,44.29,0,50.9,20.8471428571,30.9214285714,22.39,39.2,20.5,39.4,1,760.6,97,1,23.6666666667,0.5666666667,23.8843249972,23.8843249972 -30,0,21.6,38.5,17.9633333333,43.06,22.39,37.2,22.39,35.8685714286,20.39,44.23,0,50.79,20.85,30.956,22.39,39.06,20.5,39.5,0.9,760.6,97.5,1,23.3333333333,0.5333333333,39.1868177569,39.1868177569 -30,0,21.5,38.5,17.89,43,22.39,37.1266666667,22.29,35.79,20.39,44.2,-0.0666666667,50.73,20.79,30.89,22.39,38.9333333333,20.5,39.56,0.8,760.6,98,1,23,0.5,3.0328634544,3.0328634544 -30,0,21.5,38.4333333333,17.89,43.06,22.39,37.1266666667,22.2771428571,35.7771428571,20.39,44.2,-0.0666666667,51.03,20.79,30.89,22.29,38.79,20.5,39.59,0.7666666667,760.6166666667,97.6666666667,1,22.5,0.4166666667,47.3180582514,47.3180582514 -60,0,21.5,38.4,17.89,43,22.39,37.26,22.2,35.7,20.39,44.2,-0.0666666667,51.1633333333,20.79,30.89,22.29,38.79,20.5,39.59,0.7333333333,760.6333333333,97.3333333333,1,22,0.3333333333,26.2637125212,26.2637125212 -50,0,21.5,38.3266666667,17.79,42.9,22.39,37.2,22.14,35.678,20.3233333333,44.2,-0.1,51.3266666667,20.79,30.89,22.26,38.7233333333,20.5,39.59,0.7,760.65,97,1,21.5,0.25,46.2693130947,46.2693130947 -60,0,21.5,38.29,17.79,42.9,22.39,37.1266666667,22.1,35.6685714286,20.3566666667,44.2,-0.1,51.4666666667,20.79,30.89,22.26,38.6633333333,20.5,39.59,0.6666666667,760.6666666667,96.6666666667,1,21,0.1666666667,37.5631529139,37.5631529139 -50,0,21.4266666667,38.23,17.79,43,22.39,37.045,22.1,35.634,20.29,44.1175,-0.1,51.4633333333,20.79,30.89,22.2,38.5,20.5,39.59,0.6333333333,760.6833333333,96.3333333333,1,20.5,0.0833333333,43.6472443165,43.6472443165 -70,0,21.39,38.09,17.79,43,22.39,37,22.0142857143,35.5542857143,20.29,44.09,-0.1,52.13,20.79,30.89,22.2,38.4333333333,20.5,39.59,0.6,760.7,96,1,20,0,28.9130029967,28.9130029967 -50,10,21.39,38.09,17.7,43.03,22.39,37,22,35.54,20.29,44.09,-0.1,52.7,20.79,30.89,22.2,38.29,20.5,39.59,0.5666666667,760.7166666667,96.1666666667,1.1666666667,27,0,44.7857783409,44.7857783409 -40,0,21.29,38.3266666667,17.7,43.2966666667,22.39,37.03,22,35.7957142857,20.29,44.09,-0.1,52.76,20.7128571429,30.89,22.2,38.23,20.5,39.59,0.5333333333,760.7333333333,96.3333333333,1.3333333333,34,0,29.6307004872,29.6307004872 -50,0,21.3566666667,38.4,17.7,43.7666666667,22.3233333333,37.03,21.89,35.9,20.29,44.09,-0.1666666667,52.59,20.7,30.89,22.1,38.2,20.5,39.59,0.5,760.75,96.5,1.5,41,0,20.7109268638,20.7109268638 -50,0,21.29,38.56,17.7,43.9,22.29,37,21.89,35.9571428571,20.29,44.09,-0.1,52.4633333333,20.7,30.89,22.1,38.2,20.5,39.59,0.4666666667,760.7666666667,96.6666666667,1.6666666667,48,0,4.1018474032,4.1018474032 -60,0,21.315,38.5675,17.6,43.8266666667,22.29,37,21.83,35.918,20.26,44.09,-0.1,52.1633333333,20.7,30.89,22.1,38.23,20.5,39.59,0.4333333333,760.7833333333,96.8333333333,1.8333333333,55,0,21.1971709738,21.1971709738 -60,10,21.3233333333,38.59,17.6,43.9,22.29,36.76,21.79,35.79,20.26,44.1633333333,-0.1,52.09,20.7,30.89,22.075,38.3725,20.4725,39.5675,0.4,760.8,97,2,62,0,31.2343356898,31.2343356898 -40,0,21.29,38.59,17.6,44,22.29,36.7,21.79,35.7,20.29,44.3,-0.1,52.09,20.7,30.89,22.0666666667,38.7333333333,20.39,39.5,0.3833333333,760.85,97.1666666667,2,61.8333333333,0,1.8876163056,1.8876163056 -70,0,21.29,38.59,17.6,44,22.29,36.59,21.79,35.6371428571,20.29,44.56,-0.1,52.23,20.7,30.89,22.0666666667,38.8633333333,20.39,39.5,0.3666666667,760.9,97.3333333333,2,61.6666666667,0,40.1872293092,40.1872293092 -50,0,21.29,38.6266666667,17.6,43.9333333333,22.29,36.53,21.736,35.572,20.26,44.6633333333,-0.1,52.3633333333,20.7,30.89,22,38.79,20.39,39.5,0.35,760.95,97.5,2,61.5,0,46.1386317271,46.1386317271 -60,0,21.23,38.6266666667,17.6,44.095,22.26,36.4666666667,21.7,35.4714285714,20.2,44.59,-0.0666666667,52.6266666667,20.6571428571,30.8471428571,22,38.7,20.39,39.5,0.3333333333,761,97.6666666667,2,61.3333333333,0,19.0934818005,19.0934818005 -50,0,21.26,38.8266666667,17.6,44.26,22.2,36.4,21.7,35.5,20.2,44.7,0.0666666667,52.96,20.6625,30.8525,22,38.6266666667,20.39,39.3,0.3166666667,761.05,97.8333333333,2,61.1666666667,0,16.4785832283,16.4785832283 -60,0,21.2,38.9666666667,17.6,44.4333333333,22.29,36.5,21.6428571429,35.4571428571,20.2,44.7,0.2333333333,53.5,20.7,30.85,21.9633333333,38.56,20.39,39.06,0.3,761.1,98,2,61,0,0.0679879216,0.0679879216 -50,0,21.2,38.8633333333,17.6666666667,44.56,22.29,36.5,21.6,35.554,20.2,44.7,0.3666666667,53.8333333333,20.6285714286,30.8185714286,21.89,38.5,20.39,38.86,0.65,761.1666666667,97.8333333333,2,61.1666666667,0.3166666667,20.5226126593,20.5226126593 -40,0,21.26,38.8633333333,17.7,44.56,22.29,36.5,21.6,35.8214285714,20.2,44.7,0.5666666667,54.33,20.6,30.79,21.89,38.4,20.3233333333,38.6633333333,1,761.2333333333,97.6666666667,2,61.3333333333,0.6333333333,27.4433897925,27.4433897925 -50,0,21.2,38.79,17.76,44.5,22.29,36.5,21.6,36,20.2,44.7,0.8333333333,54.7233333333,20.6,30.79,21.89,38.4,20.39,38.53,1.35,761.3,97.5,2,61.5,0.95,28.498289024,28.498289024 -50,0,21.2,38.79,17.8566666667,44.3333333333,22.2,36.3266666667,21.6,36.2071428571,20.2,44.7,1.1966666667,55.1266666667,20.6,30.79,21.89,38.3633333333,20.39,38.3633333333,1.7,761.3666666667,97.3333333333,2,61.6666666667,1.2666666667,0.4548063967,0.4548063967 -50,0,21.2,38.8266666667,17.8566666667,44.26,22.2,36.4,21.62,36.4,20.2,44.6266666667,1.6566666667,55.5333333333,20.6,30.8614285714,21.89,38.29,20.39,38.1566666667,2.05,761.4333333333,97.1666666667,2,61.8333333333,1.5833333333,46.7268016073,46.7268016073 -50,0,21.2,38.9666666667,17.89,44.23,22.245,36.45,21.6285714286,36.4,20.2,44.6175,2.5266666667,56.7333333333,20.6,30.934,21.8566666667,38.26,20.5,37.93,2.4,761.5,97,2,62,1.9,10.4725459241,10.4725459241 -50,0,21.2,38.9,18.0966666667,44.23,22.3233333333,36.5,21.66,36.356,20.2,44.59,3.4666666667,57.5333333333,20.6,31,21.79,38.2,20.5666666667,37.6566666667,2.9833333333,761.5,95,2.1666666667,58.3333333333,2.1833333333,3.9975435007,3.9975435007 -50,0,21.2,38.9,18.5233333333,43.5933333333,22.39,36.4333333333,21.6142857143,36.38,20.2,44.56,4.3933333333,58.03,20.6,31.02,21.8566666667,38.26,20.6333333333,37.4,3.5666666667,761.5,93,2.3333333333,54.6666666667,2.4666666667,9.807208844,9.807208844 -60,0,21.2,39,18.93,42.8666666667,22.39,36.4,21.718,36.674,20.2,44.5,5.1333333333,58.49,20.6,31.1,21.79,38.2,20.8266666667,37.2666666667,4.15,761.5,91,2.5,51,2.75,25.1800486818,25.1800486818 -50,0,21.26,39.06,19,42.4666666667,22.4633333333,36.4,21.8025,36.80375,20.2,44.4666666667,5.89,58.895,20.6,31.1,21.79,38.2,21.7633333333,36.66,4.7333333333,761.5,89,2.6666666667,47.3333333333,3.0333333333,43.5604278813,43.5604278813 -60,0,21.29,39.1266666667,19,42.4666666667,22.5,36.29,21.9214285714,36.9,20.1333333333,44.4,6.6933333333,59.3,20.6,31.1857142857,21.79,38.2,21.8233333333,36.3266666667,5.3166666667,761.5,87,2.8333333333,43.6666666667,3.3166666667,14.5631494583,14.5631494583 -60,0,21.29,39.2,19.6266666667,42.5333333333,22.5,36.3633333333,22.1,37,20.1333333333,44.4,7.2333333333,59.6933333333,20.6,31.2,21.79,38.23,21.6333333333,36.3266666667,5.9,761.5,85,3,40,3.6,37.9926173249,37.9926173249 -40,0,21.29,39.2,20.56,41.46,22.5,36.4,22.17,37.0128571429,20.2,44.4,7.9,60.03,20.6,31.2257142857,21.79,38.23,21.36,36.66,6.25,761.55,83.5,3,40,3.65,12.8415534389,12.8415534389 -40,0,21.39,39.2,21.5566666667,40.0566666667,22.5,36.4666666667,22.31,37.09,20.1,44.29,8.3666666667,60.09,20.6,31.29,21.745,38.29,21.15,37.245,6.6,761.6,82,3,40,3.7,39.8880727822,39.8880727822 -50,0,21.39,39.2,22.0966666667,39.13,22.39,36.5,22.39,37.09,20.1,44.29,9.0266666667,58.3333333333,20.6,31.3042857143,21.7,38.29,21.0666666667,37.86,6.95,761.65,80.5,3,40,3.75,2.4387017358,2.4387017358 -50,0,21.4266666667,39.3266666667,22.5966666667,38.3333333333,22.39,36.56,22.5,37.09,20.1333333333,44.29,9.6333333333,53.1266666667,20.6,31.39,21.7,38.29,21,38.2666666667,7.3,761.7,79,3,40,3.8,18.1590248249,18.1590248249 -60,0,21.5,39.4,22.9975,37.6175,22.39,36.59,22.5857142857,37.09,20.2,44.29,10.2933333333,42.0966666667,20.6,31.39,21.7,38.29,21,38.7666666667,7.65,761.75,77.5,3,40,3.85,42.3642987269,42.3642987269 -60,0,21.5,39.5,23.3266666667,37.0966666667,22.39,36.6633333333,22.66,37.134,20.1666666667,44.29,10.76,37.0966666667,20.6,31.39,21.7,38.29,21,39.0266666667,8,761.8,76,3,40,3.9,28.8216649438,28.8216649438 -60,0,21.5,39.4333333333,23.5666666667,36.66,22.39,36.73,22.7642857143,37.0642857143,20.1,44.29,11.2333333333,27.9966666667,20.6142857143,31.39,21.7,38.29,20.9266666667,39.29,8.1833333333,761.8166666667,74.3333333333,3,38.1666666667,3.7666666667,28.0123673263,28.0123673263 -50,0,21.6,39.3266666667,23.7,35.9933333333,22.4633333333,36.8633333333,22.79,36.754,20.1,44.3633333333,11.7,22.8566666667,20.64,31.37,21.7,38.29,20.9266666667,39.43,8.3666666667,761.8333333333,72.6666666667,3,36.3333333333,3.6333333333,32.1664769202,32.1664769202 -60,0,21.6,39.3266666667,23.6333333333,35.6266666667,22.4266666667,36.73,22.8042857143,36.6214285714,20.1666666667,44.29,11.7566666667,22.7233333333,20.6285714286,31.29,21.7,38.26,20.89,39.53,8.55,761.85,71,3,34.5,3.5,29.8196881427,29.8196881427 -50,0,21.7,39.29,23.76,35.5666666667,22.5,36.79,22.89,36.754,20.2,44.26,12.2233333333,17.8633333333,20.6,31.2,21.7,38.2,20.89,39.6633333333,8.7333333333,761.8666666667,69.3333333333,3,32.6666666667,3.3666666667,6.7160057835,6.7160057835 -30,0,21.7,39.29,23.9266666667,35.0633333333,22.5,36.79,22.89,36.7642857143,20.1333333333,44.2,12.5,9.9333333333,20.6,31.0557142857,21.7,38.1633333333,20.89,39.56,8.9166666667,761.8833333333,67.6666666667,3,30.8333333333,3.2333333333,36.2825327204,36.2825327204 -40,0,21.73,39.29,24,34.5966666667,22.5,36.79,22.956,36.59,20.1333333333,44.06,12.6266666667,9.86,20.6,30.6266666667,21.6333333333,37.89,20.89,39.4333333333,9.1,761.9,66,3,29,3.1,41.0899998737,41.0899998737 -60,0,21.79,39.23,23.8266666667,33.4566666667,22.4633333333,36.76,22.89,36.1128571429,20.2,43.86,12.86,8.3566666667,20.6,30.2071428571,21.7,37.6333333333,20.89,39.26,9.35,761.9,63.3333333333,3.1666666667,30.8333333333,2.65,29.621580767,29.621580767 -60,0,21.79,38.7233333333,23.7,32.8633333333,22.39,36.65,22.912,35.616,20.2,43.495,12.8,6.9566666667,20.6,29.7357142857,21.6333333333,37.36,20.8233333333,39.1266666667,9.6,761.9,60.6666666667,3.3333333333,32.6666666667,2.2,20.1422071899,20.1422071899 -170,0,21.73,38.39,23.79,32.8633333333,22.39,36.4333333333,23,35.3971428571,20.2,43.06,13.13,8.0233333333,20.6,29.5,21.6333333333,37.09,20.8233333333,38.8633333333,9.85,761.9,58,3.5,34.5,1.75,48.5540799913,48.5540799913 -90,0,21.79,38.1933333333,23.79,32.6566666667,22.39,36.29,23,35.2,20.2,42.8,13.415,6.3425,20.6571428571,29.2828571429,21.7,36.89,20.8233333333,38.6566666667,10.1,761.9,55.3333333333,3.6666666667,36.3333333333,1.3,35.735071532,35.735071532 -70,0,21.8566666667,38.1933333333,23.8566666667,32.56,22.39,36.29,23,34.9214285714,20.2,42.5266666667,13.63,5.16,20.7,28.998,21.7,36.5266666667,20.8566666667,38.43,10.35,761.9,52.6666666667,3.8333333333,38.1666666667,0.85,11.3012303016,11.3012303016 -40,0,21.89,37.99,23.73,32.4333333333,22.39,36.23,23,34.616,20.1333333333,42.3266666667,13.5,6.8233333333,20.6714285714,28.6971428571,21.6333333333,36.1933333333,20.79,38.23,10.6,761.9,50,4,40,0.4,34.7968350281,34.7968350281 -60,0,21.89,37.5966666667,23.6,32.29,22.39,36.23,23,34.4285714286,20.2,42.09,13.5666666667,6.5633333333,20.7,28.5,21.6,35.9666666667,20.79,38.06,10.7166666667,761.9,49.1666666667,4,40,0.3,20.2043141588,20.2043141588 -40,0,21.89,37.26,23.6,32.23,22.39,36.1633333333,22.956,34.46,20.2,42.03,14.1,4.43,20.7,28.4371428571,21.6666666667,35.9,20.79,37.9333333333,10.8333333333,761.9,48.3333333333,4,40,0.2,12.6083731884,12.6083731884 -50,0,21.89,37.025,23.5,32.09,22.39,36.09,22.89,34.3371428571,20.2,41.8633333333,14.0333333333,6.43,20.7,28.33,21.6,35.76,20.79,37.745,10.95,761.9,47.5,4,40,0.1,10.1687891525,10.1687891525 -50,0,21.89,36.8266666667,23.4266666667,32.03,22.4633333333,36.06,22.89,34.29,20.2,41.73,13.9266666667,7.76,20.7,28.2642857143,21.675,35.745,20.79,37.6633333333,11.0666666667,761.9,46.6666666667,4,40,0,17.5688921008,17.5688921008 -50,0,21.89,36.6633333333,23.26,31.9633333333,22.4633333333,36.06,22.89,34.2642857143,20.2,41.56,13.8666666667,5.8266666667,20.7,28.2,21.6333333333,35.6266666667,20.79,37.4633333333,11.1833333333,761.9,45.8333333333,4,40,-0.1,13.4483347181,13.4483347181 -60,0,21.89,36.4633333333,23.1333333333,31.9633333333,22.39,35.9666666667,22.8275,34.13125,20.1333333333,41.4333333333,13.8666666667,3.8,20.7,28.2,21.6,35.5,20.7,37.1633333333,11.3,761.9,45,4,40,-0.2,10.596711142,10.596711142 -60,0,21.89,36.26,23,32.03,22.39,35.8266666667,22.79,34,20.2,41.26,14.2,4,20.7,28.14,21.6,35.4333333333,20.7,36.9633333333,11.2666666667,761.9333333333,46.5,4,40,0.1666666667,39.7968580481,39.7968580481 -50,0,21.89,36.1266666667,23,32.0675,22.5,35.8333333333,22.79,34,20.2,41.1266666667,14.5,3.9,20.7,28.1,21.6,35.4,20.7,36.79,11.2333333333,761.9666666667,48,4,40,0.5333333333,13.4295489523,13.4295489523 -50,0,21.89,36,22.9266666667,32.06,22.5,35.7,22.79,33.94,20.1666666667,40.9666666667,14.2333333333,1.9,20.7,28.06,21.6,35.3266666667,20.7,36.79,11.2,762,49.5,4,40,0.9,13.3891607169,13.3891607169 -40,0,21.8233333333,35.9333333333,22.76,32.1266666667,22.5,35.59,22.7257142857,33.7957142857,20.1,40.9,13.6266666667,1.2,20.7,27.9371428571,21.6,35.1633333333,20.7,36.5266666667,11.1666666667,762.0333333333,51,4,40,1.2666666667,2.2558561992,2.2558561992 -60,0,21.8566666667,35.8333333333,22.7,32.2,22.5,35.59,22.7,33.7,20.2,40.76,13.6266666667,2.2,20.7,27.87,21.6,35.03,20.7,36.3266666667,11.1333333333,762.0666666667,52.5,4,40,1.6333333333,27.400680806,27.400680806 -40,0,21.8566666667,35.7,22.6,32.2,22.5,35.5,22.6428571429,33.5857142857,20.2,40.6266666667,14.1666666667,1,20.7,27.79,21.6,34.9,20.7,36.1333333333,11.1,762.1,54,4,40,2,39.296917466,39.296917466 -60,0,21.79,35.59,22.6,32.2,22.5,35.4333333333,22.64,33.48,20.1333333333,40.4666666667,14.36,1,20.7,27.79,21.6,34.8266666667,20.7,35.9333333333,11.1,762.1166666667,53.8333333333,4,40,1.95,23.4548397479,23.4548397479 -30,0,21.79,35.53,22.5666666667,32.2,22.5,35.29,22.6,33.3214285714,20.2,40.4,14.26,1,20.6571428571,27.6128571429,21.5333333333,34.76,20.7,35.9,11.1,762.1333333333,53.6666666667,4,40,1.9,20.8807990071,20.8807990071 -30,0,21.79,35.4666666667,22.4266666667,32.2,22.5,35.2675,22.6,33.254,20.15,40.245,13.7333333333,1,20.7,27.6,21.6,34.6266666667,20.7,35.8266666667,11.1,762.15,53.5,4,40,1.85,14.8243997013,14.8243997013 -40,0,21.79,35.4,22.26,32.23,22.5,35.1266666667,22.5857142857,33.2,20.1,40.1633333333,13.15,1,20.6714285714,27.5714285714,21.5,34.59,20.7,35.6933333333,11.1,762.1666666667,53.3333333333,4,40,1.8,2.7581500006,2.7581500006 -40,0,21.79,35.3266666667,22.2,32.3633333333,22.39,35,22.5,33.134,20.1,40.09,12.7266666667,1.0666666667,20.64,27.64,21.5,34.59,20.7,35.4333333333,11.1,762.1833333333,53.1666666667,4,40,1.75,24.2299933918,24.2299933918 -50,0,21.79,35.4,22.1,32.53,22.39,35,22.5,33.09,20.1,40,13.06,1.4,20.6142857143,27.6842857143,21.5,34.7,20.6,35.1633333333,11.1,762.2,53,4,40,1.7,47.2852497129,47.2852497129 -50,0,21.76,35.29,22.0333333333,32.6633333333,22.39,35,22.456,33.054,20.1,39.9333333333,13.7333333333,1,20.6,27.754,21.5,34.7,20.6,35.09,10.9666666667,762.2166666667,53.5,4.1666666667,40,1.7,11.9589694077,11.9589694077 -50,0,21.7,35.29,22,32.73,22.39,35,22.39,33.0642857143,20.1,39.79,13.9266666667,1,20.6,27.79,21.5,34.7,20.6,35.06,10.8333333333,762.2333333333,54,4.3333333333,40,1.7,10.704162519,10.704162519 -50,0,21.7,35.2,21.9266666667,32.79,22.39,34.9,22.39,33,20.1,39.79,13.5,1,20.6,27.79,21.5,34.7,20.6,34.86,10.7,762.25,54.5,4.5,40,1.7,21.6962021659,21.6962021659 -60,20,21.7,35.2225,21.8566666667,32.9,22.39,34.9,22.39,33.0957142857,20.1,39.7,13.1666666667,1,20.6,27.89,21.5,34.79,20.6,34.845,10.5666666667,762.2666666667,55,4.6666666667,40,1.7,45.3831141349,45.3831141349 -70,20,21.7,35.43,21.73,32.9666666667,22.39,34.9,22.39,33.44,20.1,39.7,13.19,1.2333333333,20.6,27.9528571429,21.5,34.79,20.6,34.73,10.4333333333,762.2833333333,55.5,4.8333333333,40,1.7,12.2897480032,12.2897480032 -70,20,21.7,35.5,21.7,33.2,22.39,34.8266666667,22.39,33.6528571429,20.1,39.7,13.3966666667,1.6933333333,20.6,28.02,21.445,34.8,20.6,34.8633333333,10.3,762.3,56,5,40,1.7,45.0242334045,45.0242334045 -70,10,21.7,35.5,21.6333333333,33.1266666667,22.39,34.79,22.412,33.876,20.1,39.6266666667,13.7566666667,1.7333333333,20.6,28.1285714286,21.39,34.8266666667,20.5666666667,34.7,10.4333333333,762.2833333333,55.5,5,40,1.7,8.1235558609,8.1235558609 -60,20,21.7,35.6266666667,21.6,33.23,22.39,34.79,22.4214285714,33.9285714286,20.1,39.56,14.09,1.9266666667,20.6,28.29,21.39,34.9,20.5666666667,34.8333333333,10.5666666667,762.2666666667,55,5,40,1.7,19.7948766057,19.7948766057 -60,20,21.7,35.7,21.575,33.3175,22.39,34.79,22.5,34,20.1666666667,39.5,14.36,1,20.6,28.3757142857,21.4266666667,34.9333333333,20.6,35.1933333333,10.7,762.25,54.5,5,40,1.7,19.5597317419,19.5597317419 -70,20,21.7,35.73,21.5,33.4,22.39,34.79,22.5,34.0128571429,20.1,39.4666666667,14.1,1,20.6,28.39,21.4266666667,34.9333333333,20.6,35.4666666667,10.8333333333,762.2333333333,54,5,40,1.7,32.6838755864,32.6838755864 -90,20,21.7,35.8633333333,21.3566666667,33.5,22.39,34.79,22.5,34.054,20.1,39.4,13.59,1.6333333333,20.6,28.4214285714,21.4633333333,35.06,20.5666666667,35.3633333333,10.9666666667,762.2166666667,53.5,5,40,1.7,37.6400215551,37.6400215551 -90,10,21.7,36,21.29,33.8333333333,22.39,34.8633333333,22.5,34.1214285714,20.1,39.4,13.39,1.96,20.6,28.5,21.39,35.1333333333,20.5,35.23,11.1,762.2,53,5,40,1.7,5.7876197039,5.7876197039 -110,20,21.7,36,21.29,33.9333333333,22.39,34.9,22.5,34.5,20.1,39.4,13.5,1.1933333333,20.6,28.4371428571,21.5,35.4333333333,20.6,35.36,11.1666666667,762.1833333333,53.1666666667,5,40,1.8,17.9745865054,17.9745865054 -120,20,21.7,36.03,21.29,34.06,22.39,34.9,22.5875,34.475,20.2,39.4,13.5666666667,1,20.6,28.39,21.5666666667,35.56,20.5333333333,35.4333333333,11.2333333333,762.1666666667,53.3333333333,5,40,1.9,35.180427623,35.180427623 -130,10,21.7,36.1633333333,21.2,34,22.4266666667,34.9333333333,22.6,34.4428571429,20.2,39.3266666667,13.4633333333,1,20.6,28.39,21.79,35.59,20.5333333333,35.53,11.3,762.15,53.5,5,40,2,40.3940200806,40.3940200806 -530,20,21.7,36.29,21.2,34,22.5,35,22.6,34.316,20.23,39.29,13.39,1,20.6,28.29,21.8566666667,35.7233333333,20.5333333333,35.7966666667,11.3666666667,762.1333333333,53.6666666667,5,40,2.1,46.8185374048,46.8185374048 -600,20,21.7,36.5633333333,21.1,34.2333333333,22.5,35,22.6,34.2257142857,20.365,39.29,13.095,1,20.6857142857,28.2385714286,22.0333333333,35.73,20.5666666667,36.03,11.4333333333,762.1166666667,53.8333333333,5,40,2.2,28.5381812952,28.5381812952 -260,10,21.79,40.5933333333,21.1,35.7,22.5,35.03,22.6,34.536,20.39,39.29,12.7933333333,1,20.7,28.2,22.1,35.79,20.5,36.2233333333,11.5,762.1,54,5,40,2.3,40.4665049165,40.4665049165 -90,10,21.8566666667,45.8666666667,21.1,38.9,22.5,35.2233333333,22.6857142857,34.9642857143,20.3233333333,39.7266666667,12.46,1.1333333333,20.6714285714,28.1714285714,22.1,35.76,20.5,36.26,11.5166666667,762.1166666667,53.6666666667,5,40,2.25,5.0654880237,5.0654880237 -100,0,21.89,44.7566666667,21.1,40.3,22.5,35.5666666667,22.7,35.112,20.3233333333,40.2666666667,12.33,1.5,20.6,28.1,22.1,35.7,20.5,36.1266666667,11.5333333333,762.1333333333,53.3333333333,5,40,2.2,14.2019818537,14.2019818537 -100,0,21.89,43.5566666667,21.1,40.2666666667,22.5666666667,35.76,22.6571428571,35.1528571429,20.3233333333,40.7666666667,12.53,1.1666666667,20.6,28.1,22.1333333333,35.86,20.5,35.9666666667,11.55,762.15,53,5,40,2.15,23.0160849867,23.0160849867 -110,0,21.89,42.2933333333,21.0333333333,39.7266666667,22.6,36.03,22.6,35.054,20.3233333333,41.0266666667,12.53,1,20.6,28.08,22.2,36,20.5,35.8266666667,11.5666666667,762.1666666667,52.6666666667,5,40,2.1,6.4417306567,6.4417306567 -130,0,21.89,41.3666666667,21,39.16,22.6,36.2233333333,22.6,35.0671428571,20.3566666667,41.09,12.1966666667,1,20.6,27.9685714286,22.2,36,20.5,35.295,11.5833333333,762.1833333333,52.3333333333,5,40,2.05,24.8528451426,24.8528451426 -120,0,21.89,40.595,20.9266666667,38.5666666667,22.6,36.4333333333,22.6,35.276,20.29,41.09,11.59,1,20.6,27.85,22.2,35.9333333333,20.4633333333,34.3933333333,11.6,762.2,52,5,40,2,29.809133138,29.809133138 -110,0,21.89,39.96,20.8566666667,37.8633333333,22.6,36.5,22.6,35.4,20.29,40.9666666667,11.2566666667,1.1933333333,20.6,27.7385714286,22.29,36,20.4633333333,33.86,11.3833333333,762.25,52.6666666667,5.1666666667,40,1.9833333333,8.6048231926,8.6048231926 -100,0,21.89,39.5,20.79,37.4633333333,22.5,36.5,22.6,35.4,20.29,40.8266666667,10.8233333333,1.5333333333,20.6,27.7,22.39,35.8633333333,20.4633333333,33.2666666667,11.1666666667,762.3,53.3333333333,5.3333333333,40,1.9666666667,9.2135533807,9.2135533807 -120,0,21.89,39.1633333333,20.76,37.1333333333,22.4266666667,36.4333333333,22.6,35.4,20.96,64.39,10.49,1.9266666667,20.6,27.6285714286,22.39,35.6566666667,20.39,32.8,10.95,762.35,54,5.5,40,1.95,27.9778110678,27.9778110678 -130,0,21.89,38.9633333333,20.7,36.86,22.5,36.3633333333,22.6,35.334,21.96,78.7966666667,10.03,2.8966666667,20.575,27.575,22.5,36.1966666667,20.39,32.4666666667,10.7333333333,762.4,54.6666666667,5.6666666667,40,1.9333333333,5.0230440567,5.0230440567 -120,20,21.89,38.6633333333,20.6,36.545,22.5,36.29,22.6,35.2642857143,21.43,77.8233333333,9.63,3.7633333333,20.5,27.5,22.5,36.7233333333,20.3233333333,32.2666666667,10.5166666667,762.45,55.3333333333,5.8333333333,40,1.9166666667,44.5407781517,44.5407781517 -130,10,21.89,38.4633333333,20.5,36.4,22.5,36.29,22.6,35.254,21.1633333333,78.49,9.09,4.86,20.5,27.5,22.5333333333,37.03,20.29,32.0233333333,10.3,762.5,56,6,40,1.9,13.4815709083,13.4815709083 -120,20,21.89,38.2233333333,20.4266666667,36.3266666667,22.5,36.23,22.6,35.1371428571,20.89,78.4266666667,8.7566666667,5.4666666667,20.5,27.5,22.6,37.1633333333,20.29,31.8233333333,9.9666666667,762.5666666667,57.1666666667,5.5,40,1.8333333333,5.1523663453,5.1523663453 -130,20,21.89,38.09,20.3566666667,36.4,22.5,36.1633333333,22.6,34.976,20.89,76.9666666667,8.3966666667,6.1333333333,20.5,27.5,22.6333333333,37.1266666667,20.29,31.6666666667,9.6333333333,762.6333333333,58.3333333333,5,40,1.7666666667,0.2820185269,0.2820185269 -130,20,21.89,37.9666666667,20.29,36.3266666667,22.4266666667,36.03,22.6,34.6214285714,20.76,72.3633333333,8.0633333333,6.7333333333,20.5,27.5,22.7,37.2,20.29,31.5333333333,9.3,762.7,59.5,4.5,40,1.7,4.0212427266,4.0212427266 -120,20,21.89,37.7666666667,20.26,36.2233333333,22.4633333333,35.9666666667,22.6,34.4,20.7,68.3633333333,7.73,7.36,20.4057142857,27.4057142857,22.7,37.06,20.26,31.3566666667,8.9666666667,762.7666666667,60.6666666667,4,40,1.6333333333,39.5302614197,39.5302614197 -120,10,21.8566666667,37.6633333333,20.2,36.09,22.39,35.8266666667,22.6,34.2928571429,20.6,64.6266666667,7.4725,8.325,20.39,27.39,22.7,37,20.2,31.23,8.6333333333,762.8333333333,61.8333333333,3.5,40,1.5666666667,27.9129915638,27.9129915638 -110,10,21.8566666667,37.59,20.0666666667,36.06,22.39,35.79,22.6,34.2,20.6,62.1666666667,7.16,8.9333333333,20.39,27.39,22.79,36.8633333333,20.2,31.1,8.3,762.9,63,3,40,1.5,32.4911621399,32.4911621399 -60,10,21.79,37.4,20,36.06,22.39,35.76,22.6,34.2642857143,20.55,59.05,6.5933333333,9.9333333333,20.39,27.5,22.79,36.73,20.2,31.0333333333,8.0833333333,762.9666666667,63.5,2.8333333333,40,1.4166666667,10.4475050466,10.4475050466 -50,0,21.79,37.26,19.9633333333,36.4633333333,22.39,35.6266666667,22.6,34.2,20.6,57.0266666667,6.3333333333,11.0666666667,20.39,27.7528571429,22.79,36.86,20.2,31.3933333333,7.8666666667,763.0333333333,64,2.6666666667,40,1.3333333333,44.229831337,44.229831337 -50,0,21.79,37.3266666667,19.89,36.7233333333,22.5,35.79,22.6,34.1371428571,20.6,56.4333333333,6.19,11.89,20.39,28.02,22.79,37.3933333333,20.2,31.8666666667,7.65,763.1,64.5,2.5,40,1.25,23.0552079272,23.0552079272 -60,0,21.79,37.4,19.8566666667,36.9,22.5,35.79,22.525,34.13125,20.5,56.1,6.1233333333,11.9633333333,20.39,28.1971428571,22.79,38.0966666667,20.2,32.53,7.4333333333,763.1666666667,65,2.3333333333,40,1.1666666667,1.5032507828,1.5032507828 -40,0,21.76,37.5,19.73,36.9666666667,22.5,35.9333333333,22.5,34.156,20.5666666667,55.5666666667,6.19,12.5666666667,20.39,28.434,22.79,38.43,20.2,32.99,7.2166666667,763.2333333333,65.5,2.1666666667,40,1.0833333333,41.8531499105,41.8531499105 -30,0,21.7,37.5,19.7,37.0666666667,22.5666666667,36,22.5,34.2,20.5666666667,54.8266666667,6.1233333333,12.6266666667,20.4214285714,28.6,22.79,38.86,20.2,33.5666666667,7,763.3,66,2,40,1,24.8561976478,24.8561976478 -30,10,21.7,37.4666666667,19.6333333333,37.26,22.5,36,22.39,34.09,20.5,54.9,5.9333333333,12.7,20.39,28.7,22.79,39.1933333333,20.2,33.8975,6.8333333333,763.3666666667,66.6666666667,2,40,0.9833333333,29.9840514082,29.9840514082 -30,0,21.7,37.4,19.5666666667,37.53,22.5,36,22.39,34.09,20.4633333333,54.7233333333,5.7266666667,13.1,20.39,28.7257142857,22.79,39.5666666667,20.2,34.1633333333,6.6666666667,763.4333333333,67.3333333333,2,40,0.9666666667,32.7890073182,32.7890073182 -50,0,21.6333333333,37.3266666667,19.5,37.6633333333,22.5,36,22.39,34.09,20.39,54.4633333333,5.56,13.5933333333,20.39,28.89,22.79,39.8975,20.2,34.4333333333,6.5,763.5,68,2,40,0.95,34.3605846516,34.3605846516 -50,0,21.6,37.26,19.4633333333,37.8266666667,22.5,36.06,22.3614285714,34.09,20.39,54.1333333333,5.5,14.3333333333,20.39,28.9528571429,22.79,40.2966666667,20.2,34.6333333333,6.3333333333,763.5666666667,68.6666666667,2,40,0.9333333333,24.1105148802,24.1105148802 -60,0,21.6,37.2,19.39,37.9,22.5,36.1266666667,22.29,34.09,20.39,53.86,5.5,15.0266666667,20.39,29.06,22.79,40.6566666667,20.2,34.86,6.1666666667,763.6333333333,69.3333333333,2,40,0.9166666667,43.6327303993,43.6327303993 -50,0,21.6,37.2,19.29,38.145,22.5,36.2,22.29,34.09,20.3566666667,53.5266666667,5.5,15.6333333333,20.39,29.1,22.73,40.93,20.2,35.1333333333,6,763.7,70,2,40,0.9,15.0876873988,15.0876873988 -60,0,21.5333333333,37.2,19.26,38.29,22.5,36.29,22.29,34.09,20.29,53.1933333333,5.6233333333,16.3333333333,20.39,29.2,22.7,41.09,20.2,35.4633333333,6.0666666667,763.7,70.6666666667,2,40,1.1,22.2215153859,22.2215153859 -50,0,21.5,37.2,19.2,38.3633333333,22.5,36.29,22.2257142857,34.09,20.29,52.8333333333,5.69,16.8666666667,20.39,29.2514285714,22.6333333333,41.03,20.26,35.7233333333,6.1333333333,763.7,71.3333333333,2,40,1.3,46.6515952256,46.6515952256 -60,0,21.5,37.2,19.1666666667,38.4333333333,22.5,36.29,22.2,34.09,20.29,52.5666666667,5.745,17.59,20.39,29.31,22.5666666667,41.1566666667,20.2,35.9333333333,6.2,763.7,72,2,40,1.5,40.1571469964,40.1571469964 -40,0,21.5,37.2,19.1,38.56,22.5666666667,36.29,22.1857142857,34.09,20.29,52.2233333333,5.9333333333,18.23,20.39,29.4685714286,22.5,41.3633333333,20.2,36.06,6.2666666667,763.7,72.6666666667,2,40,1.7,45.085477375,45.085477375 -50,0,21.5,37.2,19,38.6266666667,22.6,36.29,22.14,34.112,20.29,51.9633333333,6,18.5633333333,20.33,29.5,22.5,41.5666666667,20.23,36.39,6.3333333333,763.7,73.3333333333,2,40,1.9,34.9529540748,34.9529540748 -50,0,21.4633333333,37.1633333333,19,38.76,22.5333333333,36.3633333333,22.1,34.2,20.2,51.56,6.19,19.0666666667,20.39,29.5625,22.5,41.76,20.29,36.6633333333,6.4,763.7,74,2,40,2.1,42.6116392016,42.6116392016 -40,0,21.39,37.09,18.89,38.8266666667,22.6,36.4,22.1,34.2,20.2,51.36,6.2633333333,19.26,20.3042857143,29.6571428571,22.39,41.8266666667,20.2,36.86,6.5166666667,763.7166666667,73.6666666667,2.1666666667,40,2.15,39.6962092025,39.6962092025 -60,0,21.39,37.1266666667,18.89,38.9,22.6,36.4,22.1,34.2128571429,20.2,50.995,6.3,19.5333333333,20.29,29.7,22.39,41.9666666667,20.26,37.1333333333,6.6333333333,763.7333333333,73.3333333333,2.3333333333,40,2.2,30.5064226035,30.5064226035 -50,0,21.39,37.2,18.89,39,22.6,36.4,22.08,34.236,20.2,50.7233333333,6.3,19.5333333333,20.29,29.7642857143,22.39,42.23,20.29,37.36,6.75,763.75,73,2.5,40,2.25,31.2757021748,31.2757021748 -60,0,21.39,37.2,18.8233333333,39,22.6,36.4666666667,22.0428571429,34.2385714286,20.2,50.53,6.4,19.86,20.29,29.79,22.39,42.43,20.23,37.5,6.8666666667,763.7666666667,72.6666666667,2.6666666667,40,2.3,7.5017650612,7.5017650612 -60,0,21.3233333333,37.2,18.79,39.03,22.6,36.4666666667,22,34.2,20.2,50.3633333333,6.3333333333,20.26,20.29,29.8471428571,22.29,42.6266666667,20.29,37.7666666667,6.9833333333,763.7833333333,72.3333333333,2.8333333333,40,2.35,36.641483556,36.641483556 -50,0,21.29,37.2,18.79,39.09,22.6,36.5,22,34.2514285714,20.2,50.1566666667,6.4,20.8333333333,20.29,29.912,22.29,42.96,20.29,37.9666666667,7.1,763.8,72,3,40,2.4,21.7494799406,21.7494799406 -50,0,21.29,37.2,18.76,39.2,22.6666666667,36.56,22,34.29,20.1333333333,49.93,6.4,21.5,20.29,30,22.29,43.23,20.29,38.1566666667,7.0166666667,763.8333333333,72.8333333333,2.8333333333,40,2.4666666667,44.6503103711,44.6503103711 -30,0,21.29,37.23,18.7,39.26,22.6,36.5,22,34.29,20.1333333333,49.79,6.4,22.7,20.29,30.1,22.29,43.3633333333,20.29,38.3975,6.9333333333,763.8666666667,73.6666666667,2.6666666667,40,2.5333333333,28.7913529668,28.7913529668 -20,0,21.29,37.29,18.7,39.4,22.6,36.56,21.934,34.4,20.1,49.6633333333,6.4,23.6266666667,20.29,30.1,22.29,43.4333333333,20.29,38.56,6.85,763.9,74.5,2.5,40,2.6,28.3002074691,28.3002074691 -30,0,21.23,37.23,18.7,39.4666666667,22.6,36.5,22,34.4142857143,20.1,49.53,6.4,24.8633333333,20.29,30.12,22.29,43.5,20.29,38.7,6.7666666667,763.9333333333,75.3333333333,2.3333333333,40,2.6666666667,12.0164062129,12.0164062129 -50,0,21.2,37.2,18.7,39.59,22.6,36.56,21.934,34.5,20.1,49.3633333333,6.4666666667,25.93,20.29,30.2,22.29,43.5,20.29,38.76,6.6833333333,763.9666666667,76.1666666667,2.1666666667,40,2.7333333333,17.0067900326,17.0067900326 -50,0,21.2,37.26,18.7,39.59,22.5,36.59,21.89,34.53375,20.1,49.23,6.4666666667,27.1,20.29,30.29,22.29,43.4666666667,20.29,38.9333333333,6.6,764,77,2,40,2.8,3.9146273513,3.9146273513 -60,0,21.2,37.29,18.65,39.645,22.5,36.59,21.89,34.59,20.1,49.06,6.4666666667,27.7666666667,20.29,30.3471428571,22.29,43.4,20.29,39,6.5666666667,764,77.8333333333,2.1666666667,40,2.9333333333,48.5685099615,48.5685099615 -50,0,21.2,37.3633333333,18.6,39.7,22.5333333333,36.7,21.89,34.7,20.1,49,6.35,28.85,20.29,30.412,22.26,43.2233333333,20.29,39.1266666667,6.5333333333,764,78.6666666667,2.3333333333,40,3.0666666667,2.2201428888,2.2201428888 -50,0,21.2,37.4,18.6,39.76,22.6,36.7,21.89,34.7128571429,20.0666666667,48.8333333333,6.0933333333,29.9266666667,20.29,30.5,22.26,43.1633333333,20.29,39.2,6.5,764,79.5,2.5,40,3.2,21.9845378771,21.9845378771 -50,0,21.2,37.4666666667,18.6,39.8266666667,22.6,36.7,21.83,34.736,20,48.6266666667,5.76,30.66,20.29,30.6,22.23,43.09,20.29,39.4333333333,6.4666666667,764,80.3333333333,2.6666666667,40,3.3333333333,37.4672621489,37.4672621489 -60,0,21.1,37.5,18.6,39.9,22.5333333333,36.7,21.79,34.7,20.0333333333,48.59,5.3966666667,32.0266666667,20.2642857143,30.6285714286,22.23,43.09,20.29,39.5,6.4333333333,764,81.1666666667,2.8333333333,40,3.4666666667,24.9497454031,24.9497454031 -40,0,21.1,37.5,18.5,39.9333333333,22.6,36.7,21.79,34.79,20.0333333333,48.53,4.9966666667,32.7666666667,20.254,30.66,22.2,43,20.29,39.5,6.4,764,82,3,40,3.6,27.2022191901,27.2022191901 -60,0,21.1,37.59,18.5,40.06,22.6,36.76,21.79,34.79,20,48.4666666667,4.5266666667,33.86,20.2642857143,30.6714285714,22.2,42.9333333333,20.29,39.56,6.0833333333,764.0166666667,83.5,2.8333333333,38,3.5166666667,3.5721540102,3.5721540102 -50,0,21.1,37.59,18.5,40.09,22.5,36.73,21.79,34.79,20,48.4,4.3333333333,35.1333333333,20.29,30.79,22.2,42.79,20.29,39.7,5.7666666667,764.0333333333,85,2.6666666667,36,3.4333333333,17.6375958021,17.6375958021 -60,0,21.0666666667,37.59,18.5,40.09,22.575,36.79,21.79,34.8685714286,20,48.29,4.06,37.2333333333,20.2771428571,30.79,22.1333333333,42.79,20.29,39.76,5.45,764.05,86.5,2.5,34,3.35,32.227695547,32.227695547 -60,0,21,37.59,18.5,40.2,22.6,36.79,21.7,34.9,20,48.195,4,38.4933333333,20.2,30.754,22.1,42.79,20.29,39.8266666667,5.1333333333,764.0666666667,88,2.3333333333,32,3.2666666667,22.994468594,22.994468594 -40,0,21,37.59,18.4266666667,40.1266666667,22.6,36.79,21.7,34.9142857143,20,48.09,4.0633333333,40.2633333333,20.2,30.79,22.1,42.79,20.29,39.9,4.8166666667,764.0833333333,89.5,2.1666666667,30,3.1833333333,13.6935980641,13.6935980641 -50,0,21,37.6633333333,18.39,40.23,22.6,36.79,21.7,34.96,19.9633333333,48,4.19,41.3966666667,20.2,30.83,22.1,42.76,20.29,39.9333333333,4.5,764.1,91,2,28,3.1,40.4485573294,40.4485573294 -50,0,21,37.7,18.39,40.3633333333,22.6,36.8266666667,21.7,35,19.89,47.9333333333,4.4333333333,42.3,20.2128571429,30.9057142857,22.1,42.7,20.29,40,4.55,764.1166666667,91.5,2,27.3333333333,3.2333333333,49.8619483202,49.8619483202 -50,0,21,37.7,18.29,40.4,22.6,36.9,21.7,35.09,19.89,47.8633333333,4.56,42.8933333333,20.2225,31,22.0666666667,42.6333333333,20.29,40.09,4.6,764.1333333333,92,2,26.6666666667,3.3666666667,31.3752420596,31.3752420596 -50,0,21,37.7,18.29,40.4666666667,22.6,36.9,21.6857142857,35.09,19.89,47.79,4.6233333333,43.3966666667,20.2,31,22,42.5,20.29,40.1175,4.65,764.15,92.5,2,26,3.5,10.6640701415,10.6640701415 -50,0,20.9266666667,37.7,18.29,40.59,22.6,36.9,21.64,35.09,19.89,47.76,4.7633333333,44.0633333333,20.2,31.0285714286,22,42.53,20.29,40.2,4.7,764.1666666667,93,2,25.3333333333,3.6333333333,11.3938368624,11.3938368624 -50,0,20.945,37.7,18.23,40.59,22.5666666667,36.9,21.6,35.09,19.89,47.7,4.9,45.1966666667,20.2,31.1,22,42.59,20.29,40.29,4.75,764.1833333333,93.5,2,24.6666666667,3.7666666667,18.2082168525,18.2082168525 -60,0,20.89,37.7,18.2,40.7,22.5666666667,36.9,21.6,35.2,19.89,47.59,4.9,45.7233333333,20.2,31.1142857143,22,42.7,20.29,40.29,4.8,764.2,94,2,24,3.9,2.0206211484,2.0206211484 -60,0,20.89,38.0333333333,18.2,40.76,22.5666666667,36.9,21.6,35.2,19.89,47.53,5,45.94,20.2,31.2,22,42.7,20.29,40.4,4.8833333333,764.2166666667,94,2,24,3.9833333333,29.1546203778,29.1546203778 -40,0,20.89,38.4333333333,18.2,41.495,22.4266666667,36.7666666667,21.6,35.218,19.89,47.5,5.09,46.5266666667,20.2,31.2257142857,22,42.76,20.23,40.4,4.9666666667,764.2333333333,94,2,24,4.0666666667,24.3568145903,24.3568145903 -60,10,20.89,38.6333333333,18.1,42.0666666667,22.29,36.4666666667,21.6,35.29,19.89,47.4333333333,5.1566666667,47.06,20.2,31.29,22,42.79,20.29,40.5,5.05,764.25,94,2,24,4.15,42.5565374899,42.5565374899 -380,0,20.89,38.59,18.1,42.26,22.23,36.4,21.56,35.29,19.89,47.4,5.2266666667,47.36,20.2,31.3471428571,22,42.8633333333,20.23,40.4333333333,5.1333333333,764.2666666667,94,2,24,4.2333333333,42.6624448388,42.6624448388 -70,0,20.89,38.59,18.1,42.4,22.2,36.4,21.5,35.3057142857,19.89,47.4,5.3,47.56,20.2,31.39,22,42.9,20.29,40.56,5.2166666667,764.2833333333,94,2,24,4.3166666667,48.977459583,48.977459583 -70,0,20.89,38.73,18.1,42.4666666667,22.2,36.4,21.52,35.4,19.89,47.4,5.4333333333,47.6666666667,20.2,31.39,22,42.9,20.23,40.4333333333,5.3,764.3,94,2,24,4.4,10.0583247491,10.0583247491 -70,10,20.89,38.79,18.1,42.6266666667,22.1,36.4333333333,21.5285714286,35.4,19.89,47.7333333333,5.5,48.06,20.2,31.5,22,42.93,20.26,40.5,5.35,764.3,94.1666666667,2,23.5,4.4666666667,22.5214618957,22.5214618957 -90,20,20.89,39.03,18.1,42.76,22.1,36.56,21.5,35.5225,19.89,47.9333333333,5.6233333333,48.2266666667,20.1571428571,31.5571428571,21.9266666667,42.6566666667,20.26,40.56,5.4,764.3,94.3333333333,2,23,4.5333333333,43.9840734587,43.9840734587 -90,10,20.89,39.09,18.1,42.9333333333,22.1,36.53,21.5,35.94,19.89,48,5.7633333333,48.7666666667,20.18,31.6,21.89,42.3633333333,20.26,40.4666666667,5.45,764.3,94.5,2,22.5,4.6,38.8135010726,38.8135010726 -60,0,20.89,39.2,18.1,43,22.1,36.59,21.5,36.14,19.89,48,5.9633333333,49.1266666667,20.1714285714,31.6285714286,21.89,42.1566666667,20.2,40.3266666667,5.5,764.3,94.6666666667,2,22,4.6666666667,36.3581022481,36.3581022481 -90,0,20.89,39.2,18.2,43.23,22.1,36.6633333333,21.5,36.218,19.89,48,6.1566666667,49.26,20.16,31.7,21.8566666667,41.9666666667,20.2,40.1633333333,5.55,764.3,94.8333333333,2,21.5,4.7333333333,48.774751462,48.774751462 -60,0,20.89,39.29,18.2,43.29,22,36.6266666667,21.5,36.29,19.84,47.95,6.4633333333,49.3266666667,20.1571428571,31.7128571429,21.79,41.7666666667,20.2,40.03,5.6,764.3,95,2,21,4.8,39.936000423,39.936000423 -60,10,20.9633333333,39.29,18.2,43.29,22,36.6266666667,21.5,36.29,19.89,47.9666666667,6.6566666667,49.4666666667,20.2,31.79,21.79,41.59,20.2,39.9666666667,5.6833333333,764.3833333333,95,1.8333333333,20.8333333333,4.8833333333,30.8695885702,30.8695885702 -60,0,20.9266666667,39.29,18.26,43.43,22,36.7,21.5,36.3528571429,19.8233333333,47.8266666667,6.9633333333,49.4666666667,20.1714285714,31.8185714286,21.79,41.53,20.2,39.8266666667,5.7666666667,764.4666666667,95,1.6666666667,20.6666666667,4.9666666667,15.6066672294,15.6066672294 -90,0,21,39.29,18.29,43.4666666667,22,36.7,21.5,36.4,19.79,47.79,7.1566666667,49.4,20.14,31.89,21.79,41.43,20.2,39.6633333333,5.85,764.55,95,1.5,20.5,5.05,32.9098258866,32.9098258866 -380,0,20.9266666667,39.29,18.29,43.4,22,36.7,21.5,36.4,19.79,47.79,7.5633333333,49.1,20.1714285714,31.9842857143,21.79,41.29,20.2,39.4975,5.9333333333,764.6333333333,95,1.3333333333,20.3333333333,5.1333333333,20.8726484329,20.8726484329 -150,0,21,39.29,18.39,43.3633333333,21.9266666667,36.76,21.5,36.44,19.79,47.6633333333,7.8966666667,48.8266666667,20.16,32,21.79,41.26,20.1333333333,39.4,6.0166666667,764.7166666667,95,1.1666666667,20.1666666667,5.2166666667,11.8241474149,11.8241474149 -40,10,21,39.4,18.4633333333,43.23,21.89,36.79,21.5,36.4714285714,19.79,47.59,8.45,48.1,20.1571428571,32,21.73,41.2,20.2,39.4,6.1,764.8,95,1,20,5.3,1.0962529923,1.0962529923 -50,0,21,39.4,18.6,43.06,21.89,36.79,21.5,36.5,19.79,47.56,8.96,46.06,20.14,32.09,21.7,41.1633333333,20.1333333333,39.4,6.3,764.8166666667,94.5,1.1666666667,20.3333333333,5.4166666667,44.4451187854,44.4451187854 -50,0,21,39.4,18.6666666667,43.06,21.89,36.79,21.5,36.5,19.79,47.5,9.2933333333,44.2666666667,20.2,32.1528571429,21.7,41.09,20.2,39.4,6.5,764.8333333333,94,1.3333333333,20.6666666667,5.5333333333,7.5180746731,7.5180746731 -50,0,21,39.4,18.945,42.795,21.89,36.8633333333,21.5,36.59,19.79,47.4,10.13,41.7666666667,20.2,32.2385714286,21.7,41.09,20.2,39.2666666667,6.7,764.85,93.5,1.5,21,5.65,26.5659755794,26.5659755794 -50,0,21,39.4666666667,19.2633333333,42.4,21.89,36.9,21.5,36.6528571429,19.79,47.3266666667,10.59,38.4933333333,20.2,32.29,21.6,40.9,20.23,39.2,6.9,764.8666666667,93,1.6666666667,21.3333333333,5.7666666667,20.9770608693,20.9770608693 -50,0,21.0333333333,39.53,19.53,41.9266666667,21.89,36.9,21.5,36.7,19.79,47.26,11.4666666667,34.9633333333,20.2,32.3685714286,21.6,40.9,20.29,39.1266666667,7.1,764.8833333333,92.5,1.8333333333,21.6666666667,5.8833333333,45.0583862839,45.0583862839 -60,10,21.1,39.59,19.73,41.5266666667,21.89,36.9,21.5,36.7642857143,19.79,47.2,12.1333333333,32.03,20.2,32.4,21.6,40.9,20.29,39,7.3,764.9,92,2,22,6,29.0497326176,29.0497326176 -50,0,21.1,39.59,19.93,41.1933333333,21.89,36.9666666667,21.5,36.79,19.79,47.06,12.6,26.63,20.2,32.4571428571,21.6,40.8266666667,20.29,39,7.5833333333,764.95,90.8333333333,2,22.3333333333,6.1,29.4157948229,29.4157948229 -60,0,21.1,39.59,20.1633333333,40.93,21.89,36.9666666667,21.5571428571,36.8528571429,19.79,47,12.7333333333,25.03,20.2,32.5,21.5666666667,40.79,20.29,38.9,7.8666666667,765,89.6666666667,2,22.6666666667,6.2,19.9020476779,19.9020476779 -50,0,21.2,39.59,20.4966666667,40.53,21.9633333333,36.9,21.6,36.9,19.79,46.8633333333,13.1666666667,22,20.2,32.5642857143,21.5666666667,40.79,20.29,38.9666666667,8.15,765.05,88.5,2,23,6.3,46.1371746263,46.1371746263 -50,0,21.2,39.59,20.8233333333,40.0266666667,22,37,21.6,36.9714285714,19.79,46.73,13.56,20.3333333333,20.2,32.59,21.5666666667,40.79,20.29,39,8.4333333333,765.1,87.3333333333,2,23.3333333333,6.4,5.6567041436,5.6567041436 -50,10,21.2,39.59,20.89,39.7666666667,22,37,21.6,37,19.79,46.7,13.69,16.4666666667,20.2514285714,32.7357142857,21.5,40.79,20.23,38.9333333333,8.7166666667,765.15,86.1666666667,2,23.6666666667,6.5,17.8331699921,17.8331699921 -40,0,21.2,39.59,21,39.6633333333,22,37,21.6,37,19.8566666667,46.7,13.8966666667,16.0666666667,20.29,32.79,21.5,40.79,20.29,39,9,765.2,85,2,24,6.6,13.2459898014,13.2459898014 -50,0,21.2,39.59,21.0666666667,39.53,22,37,21.62,37.054,19.79,46.59,13.86,14.9,20.29,32.8685714286,21.5,40.79,20.29,39,9.2166666667,765.2333333333,83.8333333333,1.8333333333,24.8333333333,6.6,49.0321186022,49.0321186022 -40,0,21.26,39.6633333333,21.2633333333,39.3333333333,22,37.06,21.7,37.1685714286,19.79,46.5,13.9333333333,14.2933333333,20.29,32.9,21.5,40.79,20.29,39,9.4333333333,765.2666666667,82.6666666667,1.6666666667,25.6666666667,6.6,46.9324287842,46.9324287842 -40,0,21.29,39.7,21.53,39,22,37.09,21.7,37.2,19.79,46.5,14.2566666667,13.9666666667,20.29,32.9,21.5,40.79,20.29,39,9.65,765.3,81.5,1.5,26.5,6.6,31.0716693988,31.0716693988 -30,10,21.29,39.7,21.86,38.49,22,37.09,21.79,37.236,19.79,46.4,14.39,11.1,20.29,32.94,21.4266666667,40.73,20.29,39.03,9.8666666667,765.3333333333,80.3333333333,1.3333333333,27.3333333333,6.6,37.2143112239,37.2143112239 -30,0,21.3233333333,39.7,22.0666666667,38.1566666667,22,37.09,21.8042857143,37.29,19.79,46.4,14.7566666667,9.0966666667,20.3614285714,32.9,21.4266666667,40.73,20.29,39.1175,10.0833333333,765.3666666667,79.1666666667,1.1666666667,28.1666666667,6.6,16.6506198817,16.6506198817 -50,0,21.39,39.7,22.29,37.7233333333,22,37.09,21.89,37.29,19.8233333333,46.4,14.9725,6.9475,20.39,32.9,21.5,40.7,20.29,39.2,10.3,765.4,78,1,29,6.6,29.018689401,29.018689401 -50,0,21.39,39.7,22.3566666667,37.4633333333,22,37.09,21.89,37.29,19.89,46.4,15,5.4333333333,20.39,32.7928571429,21.5,40.7,20.29,39.2,10.5833333333,765.4333333333,75.6666666667,1,30.8333333333,6.3833333333,20.940802223,20.940802223 -50,0,21.4175,39.645,22.4266666667,37.26,22,37.1633333333,22,37.2,19.8233333333,46.3266666667,14.69,2.9333333333,20.39,32.7,21.39,40.5,20.29,39.2,10.8666666667,765.4666666667,73.3333333333,1,32.6666666667,6.1666666667,42.109039647,42.109039647 -50,10,21.5,39.7,22.5,37.1266666667,22,37.2,22,37.1842857143,19.89,46.3266666667,14.7633333333,3.5266666667,20.39,32.6528571429,21.39,40.4333333333,20.29,39.23,11.15,765.5,71,1,34.5,5.95,46.7725449475,46.7725449475 -60,0,21.5,39.59,22.5,36.9666666667,22,37.2,22,37.134,19.89,46.29,15.1966666667,2.7566666667,20.5,32.656,21.39,40.4,20.29,39.29,11.4333333333,765.5333333333,68.6666666667,1,36.3333333333,5.7333333333,40.4398521059,40.4398521059 -50,0,21.5,39.59,22.55,36.85,22.0333333333,37.23,22,37.09,19.89,46.29,15.7966666667,2.09,20.5,32.5385714286,21.39,40.3175,20.29,39.3266666667,11.7166666667,765.5666666667,66.3333333333,1,38.1666666667,5.5166666667,34.6432707738,34.6432707738 -50,0,21.6,39.4666666667,22.5,36.7,22.1,37.29,22,37.09,19.89,46.2,15.7966666667,1.2633333333,20.5,32.44,21.39,40.23,20.29,39.3266666667,12,765.6,64,1,40,5.3,30.147023499,30.147023499 -60,0,21.6,39.3266666667,22.4633333333,36.76,22.1,37.2,22,37.09,19.89,46.2,15.33,3.1966666667,20.5,32.4,21.39,40.2,20.29,39.3633333333,12,765.6166666667,63.3333333333,1,40,5.1666666667,8.8961433154,8.8961433154 -40,10,21.6,39.26,22.4633333333,36.76,22.1,37.2,22,37.072,19.89,46.1633333333,15.03,3.1633333333,20.5,32.4,21.39,40.1266666667,20.29,39.29,12,765.6333333333,62.6666666667,1,40,5.0333333333,14.2285297392,14.2285297392 -60,0,21.6,39.2,22.4266666667,36.6266666667,22.1,37.1633333333,22,37.0642857143,19.89,46.09,14.89,3.09,20.5,32.4,21.39,40.09,20.29,39.3633333333,12,765.65,62,1,40,4.9,23.9362202352,23.9362202352 -50,0,21.6,39.09,22.5,36.6266666667,22.1,37.1633333333,22,37.09,19.89,46.06,15.43,3.0966666667,20.56,32.378,21.3233333333,40.09,20.29,39.29,12,765.6666666667,61.3333333333,1,40,4.7666666667,35.3250461165,35.3250461165 -50,0,21.6,39.09,22.5,36.5,22.1333333333,37.09,22,37.09,19.89,46,15.49,2.23,20.6,32.29,21.29,40.06,20.29,39.29,12,765.6833333333,60.6666666667,1,40,4.6333333333,21.8558570603,21.8558570603 -50,0,21.7,39.2,22.4266666667,36.4333333333,22.2,37.09,22,37.09,19.89,45.9666666667,14.86,2.89,20.6,32.2642857143,21.29,40,20.29,39.23,12,765.7,60,1,40,4.5,35.4495854815,35.4495854815 -50,10,21.7,39.1266666667,22.39,36.4333333333,22.15,37.09,22,37.09,19.89,45.9,14.7266666667,3.03,20.6,32.2,21.29,40,20.29,39.06,12.1,765.7,59.8333333333,1.1666666667,43.5,4.5333333333,15.3398058261,15.3398058261 -60,0,21.7,39.09,22.3233333333,36.5,22.2,37.06,22,37.2,19.89,45.9,14.7566666667,2.2333333333,20.6571428571,32.2385714286,21.29,40,20.29,38.9333333333,12.2,765.7,59.6666666667,1.3333333333,47,4.5666666667,8.7231037789,8.7231037789 -50,0,21.7,39.09,22.3233333333,36.4,22.2,37,22,37.2,19.89,45.79,15.03,1.8333333333,20.718,32.178,21.29,39.9,20.29,38.8633333333,12.3,765.7,59.5,1.5,50.5,4.6,34.547378018,34.547378018 -30,0,21.73,39,22.3233333333,36.4,22.2,37,22,37.2,19.89,45.73,15.3,1.26,20.79,32.0642857143,21.29,39.9,20.29,38.73,12.4,765.7,59.3333333333,1.6666666667,54,4.6333333333,32.8428384033,32.8428384033 -30,0,21.79,39,22.29,36.4,22.2,37,22,37.2,19.89,45.7,15.1666666667,1,20.79,31.89,21.29,39.79,20.29,38.8266666667,12.5,765.7,59.1666666667,1.8333333333,57.5,4.6666666667,24.9970707111,24.9970707111 -30,10,21.79,38.9666666667,22.29,36.4,22.2,36.9,22,37.134,19.89,45.6266666667,15.0666666667,1,20.79,31.8328571429,21.29,39.79,20.29,38.8725,12.6,765.7,59,2,61,4.7,1.5647488181,1.5647488181 -40,0,21.79,38.9,22.29,36.4,22.2,36.9,22,37.1057142857,19.9633333333,45.56,15.0475,1,20.79,31.736,21.29,39.7,20.29,38.73,12.6833333333,765.6833333333,58.1666666667,2.1666666667,57.5,4.5833333333,9.6380473231,9.6380473231 -50,0,21.79,38.79,22.29,36.4,22.2,36.79,22,37.09,19.89,45.5,15.3966666667,1,20.79,31.7,21.23,39.5666666667,20.29,38.6333333333,12.7666666667,765.6666666667,57.3333333333,2.3333333333,54,4.4666666667,2.9372269288,2.9372269288 -60,0,21.79,38.79,22.2,36.29,22.2,36.8633333333,22,37.09,19.89,45.4666666667,15.5666666667,1,20.89,31.66,21.26,39.4666666667,20.29,38.5,12.85,765.65,56.5,2.5,50.5,4.35,17.1615301981,17.1615301981 -50,0,21.8566666667,38.79,22.2,36.29,22.2,36.9,22,37.045,19.89,45.4,15.5,1,20.89,31.5857142857,21.2,39.3266666667,20.29,38.4666666667,12.9333333333,765.6333333333,55.6666666667,2.6666666667,47,4.2333333333,24.3736617733,24.3736617733 -60,0,21.89,38.7,22.1,36.29,22.2,36.9,22,37,19.89,45.29,15.46,1,20.89,31.5,21.2,39.29,20.29,38.3266666667,13.0166666667,765.6166666667,54.8333333333,2.8333333333,43.5,4.1166666667,24.9094927101,24.9094927101 -60,10,21.89,38.7,22.1,36.29,22.2,36.9,22,37,19.9633333333,45.23,15.7933333333,1,20.89,31.5,21.2,39.23,20.29,38.26,13.1,765.6,54,3,40,4,12.9801469855,12.9801469855 -40,0,21.89,38.7,22.1,36.345,22.26,36.9,22,37,19.89,45.1633333333,15.8966666667,1,20.934,31.456,21.2,39.09,20.23,38.1266666667,13.1333333333,765.6,54.3333333333,3,40,4.1,6.9748653914,6.9748653914 -50,0,21.89,38.7,22.1,36.4,22.26,36.8633333333,22,37,19.9633333333,45.09,15.63,1,21,31.39,21.2,39.06,20.23,38.1633333333,13.1666666667,765.6,54.6666666667,3,40,4.2,2.6157729793,2.6157729793 -50,0,21.89,38.6633333333,22.1,36.3266666667,22.26,36.8633333333,22,37,19.89,45.06,15.4333333333,1,21,31.37,21.2,39,20.23,38.03,13.2,765.6,55,3,40,4.3,32.5893306988,32.5893306988 -40,0,21.89,38.6633333333,22.1,36.29,22.26,36.76,22,37,19.89,45,15.36,1,21,31.29,21.2,38.9,20.26,38.06,13.2333333333,765.6,55.3333333333,3,40,4.4,17.0797400526,17.0797400526 -60,10,21.89,38.59,22.1,36.29,22.26,36.76,22,37,20,45,14.8666666667,1,21,31.29,21.2,38.9,20.2,38,13.2666666667,765.6,55.6666666667,3,40,4.5,34.3424938153,34.3424938153 -50,0,21.89,38.59,22.0333333333,36.23,22.29,36.79,22,37,20,45,14.6,1,21.0142857143,31.29,21.2,38.9,20.26,37.93,13.3,765.6,56,3,40,4.6,24.6475849999,24.6475849999 -60,0,22,38.59,22.0333333333,36.29,22.29,36.79,22,37,20,44.9,14.7266666667,1,21.12,31.29,21.1333333333,38.9,20.2,37.79,13.1666666667,765.6,56,3.3333333333,40,4.4833333333,17.5165963825,17.5165963825 -60,0,22,38.59,22,36.2,22.29,36.79,22,37,20,44.9,14.7266666667,1,21.2,31.2257142857,21.2,38.9,20.23,37.86,13.0333333333,765.6,56,3.6666666667,40,4.3666666667,21.9274336472,21.9274336472 -40,0,22.1,38.59,22,36.2,22.3233333333,36.79,22.02,37.018,20,44.79,14.5666666667,1,21.236,31.2,21.2,38.8266666667,20.29,37.9333333333,12.9,765.6,56,4,40,4.25,39.7466929397,39.7466929397 -50,0,22.1,38.59,22,36.2,22.39,36.79,22.1,37.09,20.075,44.8725,14.5,1,21.29,31.2,21.2,38.79,20.26,37.76,12.7666666667,765.6,56,4.3333333333,40,4.1333333333,48.2877717353,48.2877717353 -50,0,22.1333333333,39.1266666667,22,36.26,22.39,36.79,22,36.9,20.1,44.9666666667,14.3233333333,1,21.31,31.2,21.2,38.73,20.2,37.7,12.6333333333,765.6,56,4.6666666667,40,4.0166666667,0.6777069997,0.6777069997 -80,0,22.2,39.2,21.89,36.36,22.39,36.79,22.0857142857,36.9714285714,20.1333333333,45,14.13,1,21.39,31.1714285714,21.2,38.73,20.2,37.56,12.5,765.6,56,5,40,3.9,37.417751574,37.417751574 -50,0,22.2,39.06,21.89,36.56,22.39,36.8266666667,22.1,36.878,20.2,44.86,14.0666666667,1,21.39,30.805,21.2,38.8633333333,20.2675,37.475,12.55,765.6,55.3333333333,4.8333333333,40,3.7666666667,24.5302760974,24.5302760974 -90,0,22.2,39.4666666667,21.89,36.56,22.39,36.8266666667,22.1,36.7257142857,20.23,44.56,14.075,1,21.434,30.5,21.29,39.03,20.23,37.2666666667,12.6,765.6,54.6666666667,4.6666666667,40,3.6333333333,3.3769889502,3.3769889502 -170,0,22.2,39.06,21.8233333333,36.3,22.3566666667,36.79,22.1,36.79,20.29,44.36,14.0333333333,1,21.4528571429,30.3214285714,21.3566666667,39.1633333333,20.2,37.0266666667,12.65,765.6,54,4.5,40,3.5,41.049961315,41.049961315 -510,0,22.2,38.2666666667,21.7,35.6233333333,22.29,36.79,22.1,36.7385714286,20.39,44.0266666667,13.9633333333,1,21.456,30.08,21.5,39.29,20.2,36.7666666667,12.7,765.6,53.3333333333,4.3333333333,40,3.3666666667,5.9082270367,5.9082270367 -590,0,22.2,37.8,21.6333333333,35.1566666667,22.29,36.6,22.1,36.7,20.93,66.3,13.7566666667,1,21.4214285714,29.8928571429,21.5666666667,39.23,20.2,36.5266666667,12.75,765.6,52.6666666667,4.1666666667,40,3.2333333333,3.6212285515,3.6212285515 -190,0,22.23,41.2333333333,21.5,35.3333333333,22.29,36.3266666667,22.1,36.7385714286,22.1566666667,81.2633333333,13.4633333333,1,21.39,29.7,21.6,39.0666666667,20.2,36.3266666667,12.8,765.6,52,4,40,3.1,15.4940144392,15.4940144392 -100,0,22.29,44.4266666667,21.5,37.3333333333,22.39,36.53,22.1,36.856,21.6966666667,80.9966666667,13.33,1,21.39,29.6,21.6666666667,39.4,20.2,36.06,12.7166666667,765.6166666667,51.6666666667,4,40,2.9333333333,6.9851698703,6.9851698703 -110,0,22.3566666667,43.4,21.5,39.495,22.39,36.79,22.1,36.7385714286,21.3266666667,80.9666666667,13.16,1,21.39,29.478,21.745,39.345,20.2,35.9333333333,12.6333333333,765.6333333333,51.3333333333,4,40,2.7666666667,15.5849638395,15.5849638395 -110,0,22.3566666667,44.7933333333,21.5,39.7666666667,22.4266666667,36.9333333333,22.1,36.616,21.1333333333,80.5666666667,12.96,1,21.39,29.3185714286,21.8233333333,39.4333333333,20.2,35.76,12.55,765.65,51,4,40,2.6,43.5989837395,43.5989837395 -110,0,22.39,44.0266666667,21.4266666667,39.7666666667,22.5,37,22.1,36.5957142857,21.1666666667,79.1333333333,12.7633333333,1,21.29,29.2,21.89,39.6333333333,20.2,35.76,12.4666666667,765.6666666667,50.6666666667,4,40,2.4333333333,31.2530171475,31.2530171475 -150,0,22.39,42.9666666667,21.29,39.2966666667,22.4633333333,37.09,22.1,36.79,21.1,75.1933333333,12.63,1.3333333333,21.29,29.1142857143,22,39.56,20.2,35.6333333333,12.3833333333,765.6833333333,50.3333333333,4,40,2.2666666667,21.421909018,21.421909018 -120,0,22.39,42.0333333333,21.29,39.03,22.39,37.09,22.1,36.91125,21.29,79.8333333333,12.3233333333,2.2333333333,21.272,29.08,22,39.4333333333,20.1333333333,35.36,12.3,765.7,50,4,40,2.1,9.1844669892,9.1844669892 -110,10,22.39,41.5,21.2,38.6333333333,22.39,37.09,22.1142857143,37,21.23,78.8933333333,12.0633333333,3.0933333333,21.2,29,22.0333333333,39.4,20.1,35.0266666667,12.0833333333,765.7333333333,51.6666666667,4,40,2.3166666667,42.667915998,42.667915998 -120,20,22.39,40.93,21.1333333333,38.4333333333,22.39,37.09,22.16,37,21.1666666667,77.0633333333,11.7333333333,4.23,21.2,29,22.1,39.3266666667,20.1,34.8266666667,11.8666666667,765.7666666667,53.3333333333,4,40,2.5333333333,27.5090242154,27.5090242154 -120,20,22.3233333333,40.6566666667,21.0666666667,38.2966666667,22.39,37.06,22.2,37,21.0333333333,75.19,11.4,5.1633333333,21.1857142857,29,22.1,39.29,20.1,34.56,11.65,765.8,55,4,40,2.75,33.4983792738,33.4983792738 -110,20,22.29,40.3333333333,21,38.03,22.39,37,22.2,37,20.9633333333,72.69,10.9633333333,6.23,21.1,29.06,22.1666666667,39.1566666667,20.1,34.36,11.4333333333,765.8333333333,56.6666666667,4,40,2.9666666667,11.1049560248,11.1049560248 -110,30,22.29,40.1266666667,20.89,37.8633333333,22.3233333333,37,22.2128571429,36.9428571429,20.89,70.6233333333,10.49,7.3566666667,21.1,29.1714285714,22.2,39.0266666667,20,34.09,11.2166666667,765.8666666667,58.3333333333,4,40,3.1833333333,48.5670605209,48.5670605209 -110,30,22.29,39.9666666667,20.8233333333,37.73,22.29,37.09,22.29,36.834,20.79,67.65,10,8.7966666667,21.1,29.2,22.2,38.7666666667,20,34.03,11,765.9,60,4,40,3.4,44.1994412453,44.1994412453 -120,20,22.29,39.8266666667,20.76,37.7,22.29,37.09,22.29,36.79,20.7,65.2933333333,9.6,10.2566666667,21.0428571429,29.2771428571,22.2,38.4,20,33.9666666667,10.5666666667,765.9666666667,61.8333333333,3.8333333333,40,3.3833333333,11.8623111746,11.8623111746 -90,0,22.2,39.56,20.7,37.7,22.29,37.09,22.29,36.79,20.7,63.8333333333,9.2,12.095,21,29.29,22.2,38.26,20,33.9,10.1333333333,766.0333333333,63.6666666667,3.6666666667,40,3.3666666667,25.0419019023,25.0419019023 -60,0,22.2,39.5,20.5666666667,37.6566666667,22.23,37.03,22.3185714286,36.61,20.6333333333,62.1666666667,8.8233333333,13.2966666667,21,29.3185714286,22.23,38.4633333333,19.9266666667,33.9,9.7,766.1,65.5,3.5,40,3.35,24.0618694574,24.0618694574 -80,0,22.2,40.1333333333,20.5,37.79,22.2,37,22.29,36.36,20.6333333333,61.0333333333,8.5633333333,14.63,20.89,29.39,22.29,38.7233333333,19.89,33.79,9.2666666667,766.1666666667,67.3333333333,3.3333333333,40,3.3333333333,35.1496613934,35.1496613934 -60,0,22.2,40.4666666667,20.39,37.9,22.2,37,22.29,36.1685714286,20.6,59.4333333333,8.4633333333,16.2333333333,20.89,29.4528571429,22.29,39.03,19.89,33.79,8.8333333333,766.2333333333,69.1666666667,3.1666666667,40,3.3166666667,1.5728783561,1.5728783561 -90,0,22.2,40.59,20.39,37.9666666667,22.1666666667,37.09,22.2,35.9,20.6,58.36,8.33,17.3666666667,20.87,29.5,22.29,39.1633333333,19.79,33.79,8.4,766.3,71,3,40,3.3,26.264815114,26.264815114 -60,10,22.175,40.5675,20.29,38.03,22.1,37.09,22.2,35.8371428571,20.5,57.0566666667,8.1,18.7233333333,20.79,29.5285714286,22.29,39.3266666667,19.79,33.79,8.15,766.3666666667,72.3333333333,3,40,3.3333333333,49.736357748,49.736357748 -50,0,22.1,40.0266666667,20.23,38.09,22.1,37.1266666667,22.2,35.772,20.5,56.13,8.0333333333,20.0566666667,20.79,29.7,22.29,39.4666666667,19.79,33.8266666667,7.9,766.4333333333,73.6666666667,3,40,3.3666666667,11.089931638,11.089931638 -50,10,22.1,39.5266666667,20.2,38.1566666667,22.1,37.26,22.1285714286,35.7642857143,20.4633333333,55.1233333333,7.8666666667,22.5666666667,20.79,29.81875,22.29,39.73,19.79,34.3,7.65,766.5,75,3,40,3.4,16.2590918946,16.2590918946 -50,0,22.1,39.1933333333,20.125,38.2725,22.1,37.29,22.1,35.79,20.39,54.4566666667,7.7266666667,24.5666666667,20.79,29.9985714286,22.29,39.9975,19.8233333333,35.1666666667,7.4,766.5666666667,76.3333333333,3,40,3.4333333333,19.0208248212,19.0208248212 -60,0,22.1,38.9666666667,20.0333333333,38.4,22.1,37.3633333333,22.1,35.7257142857,20.39,54.0266666667,7.5266666667,27.19,20.79,30.178,22.29,40.4,19.89,35.6933333333,7.15,766.6333333333,77.6666666667,3,40,3.4666666667,21.1084701237,21.1084701237 -60,0,22.0333333333,38.8266666667,19.9633333333,38.53,22.0333333333,37.3266666667,22.08,35.714,20.39,53.7666666667,7.3333333333,28.8566666667,20.79,30.29,22.29,40.73,19.89,36.1566666667,6.9,766.7,79,3,40,3.5,41.3845194736,41.3845194736 -50,0,22,38.7,19.89,38.7233333333,22.1,37.4,22,35.59,20.39,53.4,7.1566666667,30.3966666667,20.79,30.434,22.29,40.93,19.89,36.43,6.9666666667,766.7666666667,79,3.1666666667,40,3.5666666667,33.7247447111,33.7247447111 -50,0,22,38.7,19.8566666667,39,22.1,37.29,22,35.7,20.39,53.3266666667,7.03,31.8633333333,20.79,30.5571428571,22.26,41.1266666667,19.89,36.7666666667,7.0333333333,766.8333333333,79,3.3333333333,40,3.6333333333,21.4290774195,21.4290774195 -50,0,22,38.59,19.79,39.1333333333,22.1,37.29,22,35.6528571429,20.39,53.1333333333,6.9,33.2666666667,20.79,30.62,22.2,41.3333333333,19.89,37.1,7.1,766.9,79,3.5,40,3.7,7.9059033073,7.9059033073 -50,0,21.9266666667,38.59,19.7,39.4333333333,22.1,37.29,21.978,35.656,20.39,52.86,6.76,33.9333333333,20.7257142857,30.7642857143,22.1,41.6566666667,19.9633333333,37.36,7.1666666667,766.9666666667,79,3.6666666667,40,3.7666666667,30.8515135082,30.8515135082 -50,0,21.89,38.59,19.7,39.56,22.1,37.3175,21.89,35.7,20.39,52.56,6.5266666667,34.7566666667,20.754,30.85,22.1,42.0633333333,19.9633333333,37.56,7.2333333333,767.0333333333,79,3.8333333333,40,3.8333333333,24.4005591725,24.4005591725 -60,10,21.89,38.59,19.6,39.59,22.0333333333,37.3266666667,21.89,35.7,20.3233333333,52.36,6.3333333333,35.5566666667,20.7,30.8914285714,22.1,42.8,20,37.7666666667,7.3,767.1,79,4,40,3.9,30.6719083688,30.6719083688 -50,0,21.89,38.59,19.5333333333,39.6633333333,22.1,37.4,21.89,35.7,20.29,52.06,6.15,36.645,20.7,31.02,22.1,43.1333333333,20,37.9666666667,7.0833333333,767.15,79.6666666667,3.8333333333,40,3.8,6.995639368,6.995639368 -40,0,21.8233333333,38.53,19.4633333333,39.79,22.0333333333,37.4,21.89,35.7,20.29,51.8975,5.9666666667,37.6933333333,20.7,31.1,22.1,43.36,20,38.1266666667,6.8666666667,767.2,80.3333333333,3.6666666667,40,3.7,25.6356529426,25.6356529426 -30,0,21.79,38.53,19.39,39.8633333333,22.1,37.3633333333,21.89,35.7,20.29,51.73,5.9,37.9666666667,20.7,31.14,22.1,43.56,20,38.26,6.65,767.25,81,3.5,40,3.6,29.3074451503,29.3074451503 -20,0,21.79,38.59,19.3566666667,40.03,22.1,37.29,21.8185714286,35.6528571429,20.29,51.56,5.8,38.4666666667,20.7,31.2,22.1,43.59,20,38.45,6.4333333333,767.3,81.6666666667,3.3333333333,40,3.5,10.7052160078,10.7052160078 -40,0,21.76,38.59,19.29,40.09,22,37.2,21.79,35.59,20.29,51.36,5.66,38.5266666667,20.64,31.2,22.1,43.59,19.9266666667,38.6266666667,6.2166666667,767.35,82.3333333333,3.1666666667,40,3.4,44.9868491734,44.9868491734 -50,0,21.7,38.59,19.2,40.1266666667,22.0666666667,37.26,21.79,35.59,20.26,51.0266666667,5.3666666667,39.16,20.6,31.2,22.0333333333,43.73,20,38.76,6,767.4,83,3,40,3.3,15.8559645177,15.8559645177 -60,0,21.7,38.645,19.2,40.26,22.1,37.4,21.79,35.59,20.2,50.9,5.2266666667,40.5666666667,20.64,31.236,22.1,43.79,19.9633333333,38.9333333333,5.8166666667,767.4166666667,83.8333333333,3,40,3.2666666667,37.4943527626,37.4943527626 -40,0,21.7,38.7,19.1,40.4333333333,22.1,37.4,21.79,35.59,20.2,50.76,5.09,41.2666666667,20.6142857143,31.2642857143,22.0666666667,43.9,19.9633333333,39.1333333333,5.6333333333,767.4333333333,84.6666666667,3,40,3.2333333333,15.0002373382,15.0002373382 -60,0,21.7,38.7,19.1,40.56,22.2,37.5,21.7,35.59,20.2,50.5666666667,5.03,41.66,20.6,31.29,22.0666666667,44.0266666667,20,39.4,5.45,767.45,85.5,3,40,3.2,14.7538980469,14.7538980469 -60,0,21.6666666667,38.6633333333,19,40.545,22.2,37.5,21.7,35.59,20.2,50.43,4.9,42.0666666667,20.6,31.3185714286,22.1,44.06,20,39.4,5.2666666667,767.4666666667,86.3333333333,3,40,3.1666666667,43.8632022007,43.8632022007 -60,0,21.6,38.59,18.9633333333,40.6266666667,22.29,37.59,21.7,35.59,20.2,50.29,4.8333333333,42.3333333333,20.6,31.39,22.075,43.9475,20,39.4333333333,5.0833333333,767.4833333333,87.1666666667,3,40,3.1333333333,38.443256251,38.443256251 -50,0,21.6,38.56,18.89,40.76,22.29,37.59,21.7,35.59,20.1666666667,50.1633333333,4.6566666667,42.1966666667,20.6,31.39,22,43.73,20,39.56,4.9,767.5,88,3,40,3.1,27.3925842019,27.3925842019 -40,0,21.6,38.56,18.89,40.8266666667,22.29,37.59,21.66,35.554,20.1,50.03,4.59,42.79,20.6,31.39,22,43.56,20,39.7,4.9333333333,767.5,87.1666666667,3.1666666667,40,3,40.8398220665,40.8398220665 -60,0,21.5,38.5,18.8233333333,40.9,22.29,37.6633333333,21.6285714286,35.4828571429,20.1,49.8633333333,4.5266666667,42.3,20.5714285714,31.39,22,43.5,20,39.76,4.9666666667,767.5,86.3333333333,3.3333333333,40,2.9,35.2917874465,35.2917874465 -40,0,21.5,38.5,18.76,40.9333333333,22.29,37.6266666667,21.6,35.48,20.1,49.73,4.3333333333,42.8266666667,20.55,31.39,22,43.4,20,39.9333333333,5,767.5,85.5,3.5,40,2.8,29.283495096,29.283495096 -60,0,21.5,38.5,18.76,41,22.29,37.7,21.6,35.4,20.1,49.6633333333,4.2633333333,42.7666666667,20.5,31.4214285714,22,43.4,19.9266666667,40,5.0333333333,767.5,84.6666666667,3.6666666667,40,2.7,29.4886161108,29.4886161108 -50,0,21.5,38.5,18.7,41.03,22.34,37.7,21.6,35.4,20.1,49.53,4.0925,43.175,20.5,31.4528571429,22,43.4,20,40.03,5.0666666667,767.5,83.8333333333,3.8333333333,40,2.6,9.7403713153,9.7403713153 -60,0,21.5,38.4666666667,18.7,41.09,22.39,37.7,21.6,35.4,20.1,49.4666666667,3.9333333333,43.3266666667,20.5,31.478,22,43.4666666667,20,40.09,5.1,767.5,83,4,40,2.5,13.7453180854,13.7453180854 -50,0,21.4266666667,38.3266666667,18.6,41,22.39,37.76,21.6,35.4,20.1,49.3266666667,3.8633333333,44.0666666667,20.5,31.4685714286,21.9633333333,43.5,20,40.23,4.9333333333,767.4666666667,83.8333333333,3.8333333333,40,2.45,17.4933452392,17.4933452392 -50,0,21.39,38.29,18.6,41.06,22.39,37.73,21.6,35.4,20.1,49.245,3.5966666667,43.2666666667,20.5,31.5,21.89,43.5,20,40.29,4.7666666667,767.4333333333,84.6666666667,3.6666666667,40,2.4,17.3573981738,17.3573981738 -50,0,21.39,38.29,18.5666666667,41.2,22.39,37.73,21.5,35.4,20.1,49.09,3.4666666667,44.8966666667,20.4842857143,31.4842857143,21.89,43.4666666667,20,40.4333333333,4.6,767.4,85.5,3.5,40,2.35,4.8598075402,4.8598075402 -30,0,21.39,38.29,18.5,41.2,22.5,37.79,21.5,35.4,20.0333333333,48.9633333333,3.4,45.03,20.434,31.39,21.89,43.4,20,40.5225,4.4333333333,767.3666666667,86.3333333333,3.3333333333,40,2.3,11.1499660648,11.1499660648 -30,0,21.3233333333,38.23,18.5,41.2,22.4266666667,37.73,21.5,35.4,20.0666666667,48.8633333333,3.1633333333,45.03,20.4685714286,31.4685714286,21.89,43.29,20,40.6633333333,4.2666666667,767.3333333333,87.1666666667,3.1666666667,40,2.25,26.0272208834,26.0272208834 -30,0,21.29,38.26,18.5,41.2,22.39,37.73,21.5,35.4,20.0666666667,48.79,2.9633333333,44.9566666667,20.39,31.35,21.89,43.29,20,40.73,4.1,767.3,88,3,40,2.2,26.0556205874,26.0556205874 -30,0,21.29,38.2,18.39,41.2,22.39,37.79,21.5,35.356,20,48.6633333333,2.76,45.2233333333,20.39,31.3757142857,21.89,43.2,20,40.8633333333,4.0166666667,767.3,88,3,38.1666666667,2.1333333333,25.3897062386,25.3897062386 -60,0,21.29,38.2,18.39,41.2,22.3566666667,37.79,21.5,35.29,20,48.59,2.5666666667,45.09,20.39,31.39,21.89,43.1266666667,20,41,3.9333333333,767.3,88,3,36.3333333333,2.0666666667,42.2764320858,42.2764320858 -60,0,21.29,38.2,18.3566666667,41.2,22.29,37.8633333333,21.5,35.29,20,48.5,2.4666666667,45.53,20.39,31.3614285714,21.89,43.09,20,41.06,3.85,767.3,88,3,34.5,2,32.7221854473,32.7221854473 -60,0,21.23,38.1266666667,18.29,41.2,22.29,37.9,21.478,35.272,20,48.4333333333,2.4,46.1233333333,20.39,31.39,21.89,43.03,20,41.09,3.7666666667,767.3,88,3,32.6666666667,1.9333333333,18.7395533547,18.7395533547 -50,0,21.2,38.09,18.29,41.345,22.3566666667,37.9,21.39,35.2,20,48.29,2.3266666667,47.03,20.39,31.39,21.8566666667,42.8633333333,20,41.09,3.6833333333,767.3,88,3,30.8333333333,1.8666666667,30.3906253655,30.3906253655 -50,0,21.2,38.03,18.2,41.29,22.39,37.9,21.39,35.2,20,48.23,2.2666666667,46.7566666667,20.39,31.33,21.79,42.79,20,41.09,3.6,767.3,88,3,29,1.8,22.3219365464,22.3219365464 -40,0,21.2,38,18.2,41.29,22.39,37.9,21.39,35.2,19.9633333333,48.1633333333,2.1266666667,47.1966666667,20.3614285714,31.3328571429,21.79,42.79,20,41.09,3.5666666667,767.3,88,3,28.8333333333,1.75,10.8701226069,10.8701226069 -50,0,21.2,38,18.1666666667,41.4,22.39,37.9,21.39,35.2,19.89,48.03,2.1266666667,47.7233333333,20.33,31.29,21.79,42.79,20,41.2,3.5333333333,767.3,88,3,28.6666666667,1.7,15.5337858596,15.5337858596 -50,0,21.2,38,18.1,41.4,22.39,37.9,21.39,35.2,19.9633333333,47.9666666667,1.95,46.845,20.3471428571,31.29,21.79,42.79,20,41.2,3.5,767.3,88,3,28.5,1.65,17.3656611703,17.3656611703 -50,0,21.2,38,18.1,41.4,22.39,37.9,21.39,35.2,19.89,47.9,1.76,46.9566666667,20.33,31.29,21.79,42.76,20,41.23,3.4666666667,767.3,88,3,28.3333333333,1.6,26.7485322081,26.7485322081 -70,0,21.1,37.9666666667,18.1,41.4666666667,22.39,37.9,21.3328571429,35.2,19.89,47.79,1.6333333333,47.1566666667,20.29,31.29,21.73,42.7,20,41.29,3.4333333333,767.3,88,3,28.1666666667,1.55,28.7904993282,28.7904993282 -60,0,21.1,37.9,18.0666666667,41.4666666667,22.39,37.9,21.29,35.178,19.9633333333,47.73,1.5,47.5566666667,20.29,31.29,21.7,42.73,20,41.29,3.4,767.3,88,3,28,1.5,7.178598654,7.178598654 -80,0,21.1,37.9633333333,18,41.4,22.39,37.8725,21.29,35.1371428571,19.9266666667,47.7,1.4266666667,47.83,20.29,31.29,21.76,42.79,20,41.3633333333,3.3333333333,767.3333333333,88,2.6666666667,28,1.45,48.5686391941,48.5686391941 -50,10,21.1,38.2966666667,18,42,22.39,37.73,21.29,35.134,19.9266666667,47.6266666667,1.2266666667,47.3333333333,20.29,31.29,21.76,42.79,20,41.4,3.2666666667,767.3666666667,88,2.3333333333,28,1.4,38.075226103,38.075226103 -50,0,21.1,38.56,17.9266666667,42.4,22.29,37.43,21.29,35.1685714286,19.89,47.59,1.0333333333,46.86,20.29,31.29,21.7,42.73,20,41.3266666667,3.2,767.4,88,2,28,1.35,4.9626213266,4.9626213266 -30,0,21.1,38.36,17.89,42.56,22.23,37.0966666667,21.29,35.134,19.89,47.5225,0.8666666667,47,20.29,31.29,21.7,42.8266666667,20,41.29,3.1333333333,767.4333333333,88,1.6666666667,28,1.3,24.2423774209,24.2423774209 -30,0,21.1,38.2,17.8233333333,42.36,22.1666666667,36.76,21.2514285714,35.0514285714,19.89,47.5,0.8666666667,47.4666666667,20.29,31.29,21.7,42.9,20,41.2225,3.0666666667,767.4666666667,88,1.3333333333,28,1.25,28.578769695,28.578769695 -40,10,21.1,38.1266666667,17.89,42.5,22.0333333333,36.5666666667,21.29,35.09,19.89,47.2333333333,0.9333333333,48.36,20.29,31.29,21.7,43.03,20,41.1266666667,3,767.5,88,1,28,1.2,0.5106294178,0.5106294178 -50,0,21.1,38.09,17.8233333333,42.5,22,36.4333333333,21.2514285714,35.0514285714,19.89,46.6933333333,1,48.9666666667,20.272,31.236,21.7,43.09,19.9633333333,41.06,2.8166666667,767.5666666667,88.8333333333,1,27.8333333333,1.1333333333,4.428378446,4.428378446 -100,0,21.0333333333,38.09,17.8233333333,42.5,22,36.56,21.2,35,19.89,46.7,1,49.29,20.2642857143,31.2,21.7,42.93,19.9633333333,40.86,2.6333333333,767.6333333333,89.6666666667,1,27.6666666667,1.0666666667,14.2298717634,14.2298717634 -80,0,21,38.0666666667,17.8233333333,42.4333333333,22,36.56,21.2,35,19.89,46.76,1,49.49,20.236,31.14,21.7,42.6566666667,19.89,40.7233333333,2.45,767.7,90.5,1,27.5,1,36.9107158389,36.9107158389 -60,0,21,38.245,17.79,42.53,22,36.5,21.2,34.96,19.8566666667,46.76,1.1633333333,50.1666666667,20.2385714286,31.1428571429,21.6,42.26,19.89,40.53,2.2666666667,767.7666666667,91.3333333333,1,27.3333333333,0.9333333333,6.7267044098,6.7267044098 -70,0,21,38.26,17.8566666667,42.53,22,36.5,21.2,35.0242857143,19.8566666667,46.8333333333,1.43,51.2266666667,20.2,30.998,21.6,42.0666666667,19.89,40.1933333333,2.0833333333,767.8333333333,92.1666666667,1,27.1666666667,0.8666666667,8.8991999044,8.8991999044 -60,0,21,38.1633333333,17.89,42.1,22,36.56,21.2,35.2,19.79,46.43,1.73,51.89,20.2,30.7257142857,21.6,41.6,19.89,39.86,1.9,767.9,93,1,27,0.8,31.7564435885,31.7564435885 -40,0,21,38.03,17.89,41.9,21.9633333333,36.59,21.2,35.2642857143,19.8566666667,46.1566666667,1.9975,52.5675,20.2,30.6,21.5333333333,41.1333333333,19.89,39.4666666667,2.1666666667,767.95,92.6666666667,1.1666666667,26.5,1.0166666667,40.1855692617,40.1855692617 -60,0,21,37.9666666667,17.89,41.7666666667,21.89,36.53,21.2,35.156,19.79,45.6933333333,2.4,53.3933333333,20.1142857143,30.5142857143,21.5,40.66,19.89,39.1333333333,2.4333333333,768,92.3333333333,1.3333333333,26,1.2333333333,46.7589765671,46.7589765671 -60,0,20.9266666667,37.7666666667,18,41.43,21.89,36.4666666667,21.1571428571,35.0385714286,19.79,45.0266666667,2.89,54.0666666667,20.1,30.434,21.4725,40.175,19.89,38.6,2.7,768.05,92,1.5,25.5,1.45,3.5605617566,3.5605617566 -60,0,20.9266666667,37.7,18.0666666667,41.1566666667,21.89,36.3266666667,21.2,35,19.9266666667,44.3,3.2966666667,54.4,20.1,30.39,21.4633333333,39.9,19.89,38.1933333333,2.9666666667,768.1,91.6666666667,1.6666666667,25,1.6666666667,23.903993878,23.903993878 -60,0,20.9266666667,37.7,18.1,41.06,21.89,36.1333333333,21.16,35.054,20,44.8933333333,3.9233333333,54.6566666667,20.1,30.39,21.39,39.6633333333,19.89,37.6933333333,3.2333333333,768.15,91.3333333333,1.8333333333,24.5,1.8833333333,7.4304348207,7.4304348207 -50,10,20.89,37.59,18.1666666667,41.06,21.9633333333,36,21.2,35.09,20,44.0966666667,4.5966666667,55.2633333333,20.1,30.39,21.39,39.4633333333,19.9633333333,37.2266666667,3.5,768.2,91,2,24,2.1,15.8209159505,15.8209159505 -90,0,20.89,37.53,18.4933333333,40.9,22.0333333333,35.9666666667,21.2,35.09,19.9266666667,42.6966666667,5.6966666667,54.9333333333,20.08,30.39,21.3566666667,39.3633333333,20,36.8333333333,3.9666666667,768.1833333333,89.5,2.3333333333,24,2.3166666667,16.5840418776,16.5840418776 -60,0,20.89,37.5666666667,19.0933333333,40.2933333333,22.1,35.8175,21.2514285714,35.1528571429,19.89,41.63,6.49,52.1933333333,20.0285714286,30.4685714286,21.3566666667,39.23,20.0666666667,36.7,4.4333333333,768.1666666667,88,2.6666666667,24,2.5333333333,46.6671709437,46.6671709437 -60,0,20.89,37.7,19.6,38.99,22.1666666667,35.79,21.31,35.2,19.8233333333,40.9633333333,7.3566666667,44.9,20.06,30.7,21.29,39.09,20.1633333333,36.43,4.9,768.15,86.5,3,24,2.75,40.7912262366,40.7912262366 -20,0,21,37.8,19.6,38.8633333333,22.1,35.7,21.4214285714,35.2257142857,19.76,41.53,7.8966666667,36.5666666667,20.0142857143,30.6571428571,21.29,39.03,20.43,36.0966666667,5.3666666667,768.1333333333,85,3.3333333333,24,2.9666666667,22.3210079246,22.3210079246 -40,0,21,38,19.8666666667,39.06,22.1,35.7,21.54,35.2,19.7,41.7225,8.49,32.0966666667,20.04,30.66,21.29,38.9,20.5,35.8633333333,5.8333333333,768.1166666667,83.5,3.6666666667,24,3.1833333333,43.1909901323,43.1909901323 -80,0,21,38.0666666667,20.66,38.6,22.1,35.7,21.6571428571,35.2771428571,19.7,41.9666666667,8.8966666667,28.0966666667,20.0285714286,30.6571428571,21.29,38.8266666667,20.4175,35.79,6.3,768.1,82,4,24,3.4,44.1265455564,44.1265455564 -60,0,21,38.26,21.6666666667,37.7666666667,22.0333333333,35.7,21.774,35.312,19.7,42.1266666667,9.43,25.7266666667,20.04,30.64,21.29,38.76,20.39,35.99,6.7,768.05,80.3333333333,4.1666666667,26.6666666667,3.4666666667,4.7074860311,4.7074860311 -70,0,21.1,38.5666666667,22.26,37.6333333333,22,35.8266666667,21.9214285714,35.4,19.7,42.3333333333,9.8233333333,22.6666666667,20.0428571429,30.6857142857,21.23,38.6266666667,20.39,36.6333333333,7.1,768,78.6666666667,4.3333333333,29.3333333333,3.5333333333,14.8915429832,14.8915429832 -60,0,21.1666666667,39.0333333333,22.7633333333,36.8633333333,22,35.9666666667,22,35.29,19.7,42.5666666667,10.1666666667,18.4933333333,20.02,30.62,21.2,38.5,20.3233333333,37.2333333333,7.5,767.95,77,4.5,32,3.6,1.390567678,1.390567678 -60,0,21.2,39.6233333333,23.0966666667,36.2566666667,22,36.2666666667,22.1428571429,35.3685714286,19.7,42.76,10.4333333333,16.5666666667,20.0285714286,30.6,21.2,38.4333333333,20.29,37.86,7.9,767.9,75.3333333333,4.6666666667,34.6666666667,3.6666666667,16.5854328545,16.5854328545 -50,0,21.2,40.8966666667,23.46,35.9666666667,22,36.5266666667,22.218,35.29,19.7,43.0666666667,10.83,14.13,20.04,30.54,21.2,38.3333333333,20.29,38.1333333333,8.3,767.85,73.6666666667,4.8333333333,37.3333333333,3.7333333333,36.3602492958,36.3602492958 -50,0,21.29,41.645,23.6666666667,35.6333333333,22.0333333333,36.86,22.29,35.29,19.7,43.26,11.0475,11.77,20.0571428571,30.4985714286,21.2,38.2,20.29,38.4333333333,8.7,767.8,72,5,40,3.8,21.8362234184,21.8362234184 -50,0,21.39,41.0333333333,23.89,34.84,22.0333333333,36.9333333333,22.39,35.236,19.6333333333,43.2666666667,11.16,10.2966666667,20.05,30.39,21.2,38.09,20.29,38.56,8.85,767.8,70.8333333333,5.1666666667,40,3.7166666667,10.2934511728,10.2934511728 -70,10,21.39,40.4266666667,24.0333333333,34.1933333333,22,37.1566666667,22.4057142857,35.7514285714,19.7,43.4,11.3666666667,8.3933333333,20.06,30.33,21.2,38.03,20.29,38.6266666667,9,767.8,69.6666666667,5.3333333333,40,3.6333333333,46.2959395722,46.2959395722 -100,0,21.39,39.93,24.1666666667,33.8,22.0666666667,37.43,22.5,36.174,19.7,43.4,11.5666666667,7.7266666667,20.1,30.29,21.2,37.9,20.29,38.7,9.15,767.8,68.5,5.5,40,3.55,21.3260213379,21.3260213379 -60,0,21.39,39.73,24.23,33.4666666667,22.1,37.3633333333,22.5,36.29,19.7,43.3266666667,11.8,6.66,20.1,30.254,21.1333333333,37.9,20.29,38.6633333333,9.3,767.8,67.3333333333,5.6666666667,40,3.4666666667,42.0621446101,42.0621446101 -60,10,21.5,39.49,24.29,33.2666666667,22.1,37.23,22.5,36.2,19.7,43.26,11.8,6.5333333333,20.1,30.1428571429,21.15,37.745,20.29,38.59,9.45,767.8,66.1666666667,5.8333333333,40,3.3833333333,45.0488323229,45.0488323229 -50,0,21.5,39.23,24.29,32.9666666667,22.1,37.2,22.5,36.2,19.7,43.2,11.9266666667,5.49,20.1,30.08,21.1,37.7,20.29,38.56,9.6,767.8,65,6,40,3.3,30.8277492877,30.8277492877 -50,0,21.6,39.2233333333,24.23,32.7666666667,22.1666666667,37.2,22.56,36.096,19.7,43.06,12.1266666667,4.6966666667,20.1,29.9685714286,21.1,37.6266666667,20.29,38.4333333333,9.8166666667,767.75,63.5,6,38,3.15,23.5057772021,23.5057772021 -50,0,21.6,38.89,24.26,32.76,22.1333333333,37.36,22.6,35.8214285714,19.7,43,12.2266666667,4.6966666667,20.14,29.89,21.1,37.56,20.26,38.3333333333,10.0333333333,767.7,62,6,36,3,47.9247695766,47.9247695766 -50,0,21.6,38.43,24.2,32.6266666667,22.2,37.545,22.7,35.656,19.6666666667,42.8633333333,12.36,3.9633333333,20.2,29.8328571429,21.1,37.5,20.26,38.2,10.25,767.65,60.5,6,34,2.85,4.9426290789,4.9426290789 -40,0,21.6666666667,38.23,24.1,32.43,22.2,37.4333333333,22.7,35.44,19.6666666667,42.79,12.39,3.7266666667,20.218,29.79,21.1,37.3633333333,20.26,38.1333333333,10.4666666667,767.6,59,6,32,2.7,8.1806324772,8.1806324772 -30,0,21.7,38.0266666667,24.1,32.23,22.2,37.4,22.7,35.1933333333,19.7,42.7,12.4633333333,3.6666666667,20.29,29.7642857143,21.1666666667,37.29,20.26,38,10.6833333333,767.55,57.5,6,30,2.55,22.8214678937,22.8214678937 -30,0,21.7,37.7666666667,24,32,22.1333333333,37.3266666667,22.7514285714,34.9985714286,19.7,42.595,12.63,3.4,20.33,29.6,21.2,37.2,20.29,37.8633333333,10.9,767.5,56,6,28,2.4,14.8653125158,14.8653125158 -40,0,21.79,37.4,23.9266666667,31.9266666667,22.1,37.2,22.79,34.8685714286,19.7,42.5,12.7633333333,2.4,20.39,29.4842857143,21.2,37.2,20.245,37.7225,11.1166666667,767.45,56,6,27.6666666667,2.6166666667,39.872219332,39.872219332 -60,0,21.79,37.1266666667,23.89,31.89,22.1,37.2,22.79,34.7,19.7,42.3633333333,13.0633333333,1.43,20.412,29.272,21.2,36.9666666667,20.29,37.7,11.3333333333,767.4,56,6,27.3333333333,2.8333333333,34.7290762817,34.7290762817 -40,0,21.89,36.93,23.8233333333,31.8233333333,22.1,37.09,22.79,34.6371428571,19.6333333333,42.23,13.2633333333,1.0966666667,20.5714285714,29.1714285714,21.2,36.7666666667,20.2,37.4666666667,11.55,767.35,56,6,27,3.05,27.0326261176,27.0326261176 -50,0,21.9633333333,36.73,23.7,31.7,22.1,37.03,22.79,34.572,19.7,42.1633333333,13.5,1,20.64,28.89,21.3233333333,36.5266666667,20.2,37.3266666667,11.7666666667,767.3,56,6,26.6666666667,3.2666666667,23.1360838166,23.1360838166 -60,0,22,36.43,23.7,31.6333333333,22.1,36.9666666667,22.79,34.4714285714,19.7,42.09,13.5666666667,1,20.7514285714,28.6814285714,21.4633333333,36.2666666667,20.26,37.2233333333,11.9833333333,767.25,56,6,26.3333333333,3.4833333333,17.0294223703,17.0294223703 -60,0,22.0666666667,36.29,23.6,31.5,22.1,36.9,22.79,34.09,19.7,41.9666666667,13.79,1,20.81,28.414,21.5,35.93,20.2,37.03,12.2,767.2,56,6,26,3.7,29.5245678048,29.5245678048 -60,0,22.1333333333,36.1633333333,23.5333333333,31.4266666667,22.2,36.8633333333,22.79,33.9985714286,19.7,41.9,14.0666666667,1,20.9214285714,28.1971428571,21.5666666667,35.6566666667,20.23,36.79,12.3833333333,767.1666666667,54.8333333333,6,26.5,3.5333333333,3.9124567644,3.9124567644 -50,0,22.2,35.8975,23.4633333333,31.3566666667,22.2,36.73,22.79,33.878,19.6333333333,41.7,14,1,21.1,27.956,21.7,35.43,20.23,36.6566666667,12.5666666667,767.1333333333,53.6666666667,6,27,3.3666666667,13.2381293573,13.2381293573 -50,0,22.26,35.7,23.39,31.365,22.2,36.6333333333,22.79,33.8371428571,19.7,41.7,14.1666666667,1,21.1571428571,27.6814285714,21.76,35.1566666667,20.29,36.56,12.75,767.1,52.5,6,27.5,3.2,17.4937784672,17.4937784672 -50,0,22.3233333333,35.56,23.3233333333,31.39,22.2,36.4333333333,22.79,33.79,19.7,41.59,14.3,1,21.254,27.518,21.89,34.93,20.29,36.4333333333,12.9333333333,767.0666666667,51.3333333333,6,28,3.0333333333,20.1570395962,20.1570395962 -50,0,22.39,35.4333333333,23.26,31.3566666667,22.29,36.4666666667,22.79,33.7128571429,19.7,41.53,14.5,1,21.3614285714,27.2928571429,21.9633333333,34.6566666667,20.29,36.3633333333,13.1166666667,767.0333333333,50.1666666667,6,28.5,2.8666666667,16.59488359,16.59488359 -90,0,22.4266666667,35.29,23.2,31.29,22.29,36.4,22.79,33.7,19.7,41.4,14.5,1,21.434,27.1,22.05,34.345,20.29,36.23,13.3,767,49,6,29,2.7,31.2999774003,31.2999774003 -100,0,22.5,35.23,23.2,31.3566666667,22.23,36.06,22.79,33.6428571429,19.7,41.4,14.63,1,21.5571428571,26.8942857143,22.23,34.6566666667,20.29,35.9666666667,13.4666666667,766.9,47,6,28.6666666667,2.2166666667,6.1491219094,6.1491219094 -350,0,22.5,34.2633333333,23.1333333333,31.0233333333,22.29,35.9333333333,22.79,33.4,19.73,41.5266666667,14.8233333333,1,21.72,26.6825,22.3566666667,34.93,20.29,35.9,13.6333333333,766.8,45,6,28.3333333333,1.7333333333,48.906091426,48.906091426 -290,0,22.5666666667,33.3966666667,23,30.43,22.29,35.76,22.79,33.2928571429,19.79,42.1933333333,14.89,1,21.85,26.518,22.5,35.03,20.29,35.9,13.8,766.7,43,6,28,1.25,33.5101263016,33.5101263016 -110,0,22.6333333333,32.7233333333,23,30.23,22.29,35.5666666667,22.79,33.14,19.79,41.8333333333,15.03,1,21.89,26.3614285714,22.5666666667,35.03,20.29,35.8266666667,13.9666666667,766.6,41,6,27.6666666667,0.7666666667,29.5214882703,29.5214882703 -100,0,22.7,32.59,22.89,30.1,22.39,35.5,22.79,32.7957142857,19.79,41.2266666667,15.2266666667,1,22,26.16,22.5666666667,34.76,20.29,35.7,14.1333333333,766.5,39,6,27.3333333333,0.2833333333,19.8530568741,19.8530568741 -100,0,22.7,32.53,22.89,30.1,22.39,35.5,22.79,32.7,19.79,40.6,15.36,1,22.1,26.1857142857,22.5,34.5,20.29,35.6266666667,14.3,766.4,37,6,27,-0.2,27.0209407783,27.0209407783 -110,0,22.76,32.6633333333,22.89,30.1333333333,22.39,35.56,22.79,32.7514285714,19.79,40.1933333333,15.4266666667,1,22.218,26.296,22.5,34.2233333333,20.29,35.4666666667,14.4166666667,766.3333333333,37.5,6.1666666667,29.1666666667,0.0666666667,37.3526340001,37.3526340001 -60,0,22.79,32.73,22.89,30.26,22.39,35.7,22.79,32.832,19.79,39.745,15.5,1,22.29,26.5,22.5,34.03,20.29,35.4,14.5333333333,766.2666666667,38,6.3333333333,31.3333333333,0.3333333333,43.9648211119,43.9648211119 -80,0,22.8566666667,32.8633333333,22.79,30.23,22.39,35.7,22.8614285714,33.0571428571,19.8233333333,39.59,15.5,1,22.33,26.5,22.5,33.8633333333,20.29,35.3266666667,14.65,766.2,38.5,6.5,33.5,0.6,34.8307282082,34.8307282082 -50,0,22.89,33,22.79,30.29,22.39,35.79,22.89,33.236,19.89,39.53,15.5666666667,1,22.4528571429,26.4842857143,22.5,33.73,20.29,35.2,14.7666666667,766.1333333333,39,6.6666666667,35.6666666667,0.8666666667,46.4379472309,46.4379472309 -70,0,22.89,32.9333333333,22.76,30.3266666667,22.3233333333,35.79,22.89,33.0842857143,19.89,39.3333333333,15.63,1,22.5,26.39,22.4633333333,33.5266666667,20.29,35.1266666667,14.8833333333,766.0666666667,39.5,6.8333333333,37.8333333333,1.1333333333,45.3909715405,45.3909715405 -90,0,22.89,32.0333333333,22.7,29.9933333333,22.29,35.79,22.87,32.5,19.89,39,15.7633333333,1,22.5714285714,26.4685714286,22.39,33.4,20.26,35.06,15,766,40,7,40,1.4,16.3027899107,16.3027899107 -80,0,22.89,31.3,22.6,29.2933333333,22.3566666667,35.73,22.79,31.45,19.89,38.49,15.89,1,22.6,26.5,22.39,33.29,20.26,35,15.0666666667,765.9166666667,38.5,7,40,0.85,28.2687316067,28.2687316067 -70,0,22.89,30.9266666667,22.6,28.96,22.39,35.56,22.79,31.075,19.89,38.1566666667,15.9266666667,1,22.6857142857,26.6,22.39,33.23,20.26,34.9666666667,15.1333333333,765.8333333333,37,7,40,0.3,9.4295997289,9.4295997289 -70,0,22.89,31.025,22.5,28.89,22.39,35.5,22.79,30.916,19.9266666667,37.8633333333,16.0666666667,1,22.7,26.64,22.29,33.09,20.26,34.9,15.2,765.75,35.5,7,40,-0.25,18.0225414922,18.0225414922 -60,0,22.89,30.7,22.4266666667,28.2233333333,22.39,35.5,22.7242857143,29.9942857143,20,37.6566666667,16.2,1,22.7,26.6285714286,22.3566666667,33.03,20.23,34.73,15.2666666667,765.6666666667,34,7,40,-0.8,43.5310892062,43.5310892062 -60,0,22.89,29.6233333333,22.245,26.95,22.39,35.4333333333,22.58,29.096,20,37.1933333333,16.2,1,22.79,26.7,22.29,32.9666666667,20.23,34.73,15.3333333333,765.5833333333,32.5,7,40,-1.35,32.1832979564,32.1832979564 -80,0,22.8233333333,28.8966666667,22.1,26.4,22.39,35.2,22.5,28.4242857143,20.0666666667,36.86,16.2,1,22.79,26.85,22.29,32.9,20.2,34.6633333333,15.4,765.5,31,7,40,-1.9,26.4926029369,26.4926029369 -80,20,22.79,28.1333333333,22.0333333333,25.8666666667,22.39,35.0666666667,22.39,27.66,20.1333333333,36.3333333333,16.2,1,22.736,27,22.29,32.8633333333,20.2,34.59,15.4166666667,765.4333333333,31.1666666667,6.8333333333,40,-1.8,12.6084659714,12.6084659714 -70,10,22.73,27.7333333333,21.9266666667,25.7633333333,22.39,34.76,22.39,28.1357142857,20.2,36,16.1,1,22.7,27,22.29,32.79,20.29,34.56,15.4333333333,765.3666666667,31.3333333333,6.6666666667,40,-1.7,33.6858037161,33.6858037161 -80,20,22.73,27.86,22,26.03,22.39,34.6266666667,22.412,28.778,20.23,35.56,16.1,1,22.7,26.89,22.2,32.7,20.23,34.4333333333,15.45,765.3,31.5,6.5,40,-1.6,36.0088448622,36.0088448622 -230,10,22.79,28.1933333333,22,26.36,22.5,34.56,22.5,29.4214285714,20.29,35.4333333333,15.9633333333,1,22.7,26.89,22.2,32.6633333333,20.2,34.3633333333,15.4666666667,765.2333333333,31.6666666667,6.3333333333,40,-1.5,21.8109170091,21.8109170091 -540,20,22.7,28.8,22,26.6933333333,22.5,34.56,22.54,29.874,20.39,35.3633333333,15.89,1,22.7,26.912,22.2,32.59,20.2,34.29,15.4833333333,765.1666666667,31.8333333333,6.1666666667,40,-1.4,41.8478548178,41.8478548178 -380,0,22.7,29.66,22,27.1966666667,22.55,35.245,22.6555555556,30.3666666667,20.4633333333,35.43,15.8,1,22.7,26.8928571429,22.1,32.6566666667,20.2,34.29,15.5,765.1,32,6,40,-1.3,40.0708451518,40.0708451518 -300,0,22.79,31.4966666667,21.9266666667,27.7966666667,22.96,36.6333333333,22.7,30.6942857143,20.39,35.6566666667,15.7266666667,1,22.6,26.516,22.1666666667,32.93,20.2,34.29,15.3833333333,765.05,32.6666666667,6,40,-1.1,34.1361976461,34.1361976461 -300,10,22.79,31.9566666667,21.89,28.5233333333,23.2266666667,37.2333333333,22.7,30.872,20.39,35.93,15.4633333333,1,22.5857142857,26.2671428571,22.2,33.1566666667,20.2,34.26,15.2666666667,765,33.3333333333,6,40,-0.9,24.5025359211,24.5025359211 -270,20,22.79,32.0966666667,21.89,28.9966666667,23.5966666667,37.8,22.7,31.1257142857,20.39,36.245,15.33,1,22.5,26.058,22.26,33.43,20.2,34.2225,15.15,764.95,34,6,40,-0.7,17.8496539011,17.8496539011 -250,10,22.79,31.89,21.8566666667,29.36,23.93,38.1333333333,22.79,31.676,20.39,36.53,14.9333333333,1,22.4214285714,25.89,22.3233333333,33.7,20.2,34.29,15.0333333333,764.9,34.6666666667,6,40,-0.5,32.938600902,32.938600902 -210,20,22.7,31.89,21.79,29.6933333333,24.23,38.4,22.8042857143,31.8914285714,20.39,36.59,14.6666666667,1,22.39,25.9175,22.39,33.8333333333,20.2,34.1266666667,14.9166666667,764.85,35.3333333333,6,40,-0.3,10.89819771,10.89819771 -110,10,22.7,31.9633333333,21.79,29.96,24.3566666667,38.3266666667,22.89,32.036,20.39,36.73,14.36,1,22.35,26.2,22.5,34.0966666667,20.2,34.0666666667,14.8,764.8,36,6,40,-0.1,22.1094014123,22.1094014123 -110,20,22.7,32.03,21.73,30.1666666667,24.39,37.9966666667,22.89,31.9214285714,20.39,36.8633333333,14.1666666667,1,22.29,26.44,22.5,34.43,20.2,34.36,14.4666666667,764.75,37.8333333333,5.8333333333,40,0.1833333333,16.8098313152,16.8098313152 -150,10,22.7,32.1633333333,21.7,30.3233333333,24.3233333333,37.39,22.89,31.89,20.39,36.9,13.845,1,22.272,26.678,22.5333333333,34.8,20.2,34.56,14.1333333333,764.7,39.6666666667,5.6666666667,40,0.4666666667,35.7510116999,35.7510116999 -120,10,22.6,32.1266666667,21.6333333333,30.39,24.1,36.8333333333,22.89,31.89,20.39,36.9666666667,13.2933333333,1,22.2,26.8185714286,22.6,35.06,20.2,34.6633333333,13.8,764.65,41.5,5.5,40,0.75,49.4875009637,49.4875009637 -120,0,22.6,32.26,21.6,30.5666666667,24.0333333333,36.5666666667,22.89,31.89,20.4266666667,40.73,12.9,1,22.2,26.974,22.7,35.9266666667,20.2,34.7233333333,13.4666666667,764.6,43.3333333333,5.3333333333,40,1.0333333333,22.2898163134,22.2898163134 -110,20,22.6,32.595,21.6,30.76,23.89,36.3333333333,22.89,31.8185714286,21.4266666667,65.6566666667,12.26,1,22.1142857143,27.2957142857,22.76,36,20.1,34.86,13.1333333333,764.55,45.1666666667,5.1666666667,40,1.3166666667,34.3553493847,34.3553493847 -100,20,22.6,33,21.5,31.3333333333,23.8233333333,35.9266666667,22.89,31.97,21.4666666667,73.1933333333,11.7333333333,1,22.1,27.62,22.79,36.5,20.1666666667,35.06,12.8,764.5,47,5,40,1.6,26.0894269915,26.0894269915 -100,10,22.6,33.06,21.4175,31.75,23.76,35.79,22.89,32.3128571429,21.5933333333,79,11.09,1.0666666667,22.0714285714,27.7114285714,22.79,36.8333333333,20.1333333333,35.1266666667,12.2833333333,764.5,48.8333333333,4.8333333333,40,1.6166666667,31.8126922357,31.8126922357 -110,20,22.5666666667,33.1266666667,21.3233333333,32.06,23.7,35.79,22.89,32.54,21.5666666667,78.8966666667,10.7566666667,1.4666666667,22.1,28.736,22.79,36.9666666667,20.1333333333,35.26,11.7666666667,764.5,50.6666666667,4.6666666667,40,1.6333333333,35.451781156,35.451781156 -110,10,22.5,33.26,21.29,32.36,23.5666666667,35.7,22.89,32.7642857143,21.4266666667,76.3566666667,10.5666666667,2.1633333333,22.1,29.0271428571,22.79,36.9,20.1666666667,35.4,11.25,764.5,52.5,4.5,40,1.65,40.3661290184,40.3661290184 -110,20,22.5,33.3266666667,21.23,32.5,23.5,35.76,22.9175,32.925,21.26,72.1,10.4266666667,2.4233333333,22.1,29.12,22.79,36.9333333333,20.1,35.3266666667,10.7333333333,764.5,54.3333333333,4.3333333333,40,1.6666666667,33.434286539,33.434286539 -120,10,22.5,33.4666666667,21.1666666667,32.6266666667,23.39,35.73,23,33.09,21.1333333333,68.7666666667,10.09,2.7933333333,22.0285714286,29.1285714286,22.865,37.095,20.1,35.0266666667,10.2166666667,764.5,56.1666666667,4.1666666667,40,1.6833333333,37.1380521101,37.1380521101 -80,20,22.5,33.53,21.1,32.8333333333,23.3233333333,35.79,22.9842857143,32.94,21,65.56,9.83,3.6666666667,22,29.16,22.89,37.26,20.1,34.7666666667,9.7,764.5,58,4,40,1.7,5.5256353458,5.5256353458 -110,10,22.5,33.59,21,32.8266666667,23.26,35.8633333333,22.934,32.772,20.9266666667,63.56,9.6266666667,3.9966666667,22,29.1428571429,22.89,37.3266666667,20.1,34.4,9.65,764.5333333333,57.6666666667,4.1666666667,40,1.6,38.7286718003,38.7286718003 -80,20,22.5,33.6266666667,21,32.9666666667,23.2,35.79,22.89,32.6528571429,20.8566666667,60.8333333333,9.4266666667,4.5966666667,21.978,29.18,22.89,37.3266666667,20.1,34.1266666667,9.6,764.5666666667,57.3333333333,4.3333333333,40,1.5,20.4797274317,20.4797274317 -70,10,22.5,33.7,20.8566666667,33.1633333333,23.2,35.79,23,32.834,20.79,59.0333333333,9.16,5.16,21.89,29.2957142857,22.8566666667,37.3266666667,20.1,33.9666666667,9.55,764.6,57,4.5,40,1.4,30.9020244051,30.9020244051 -50,0,22.5,33.8266666667,20.8566666667,33.2966666667,23.1666666667,35.8266666667,22.9842857143,32.9714285714,20.79,57.5333333333,8.96,5.6333333333,21.89,29.736,22.79,37.5266666667,20.1,34.0725,9.5,764.6333333333,56.6666666667,4.6666666667,40,1.3,45.0769120245,45.0769120245 -50,0,22.4266666667,33.8266666667,20.76,33.6266666667,23.1,35.9,22.89,32.9,20.7225,56.925,8.7633333333,6.6,21.89,30.01,22.89,37.9633333333,20.1,35.0566666667,9.45,764.6666666667,56.3333333333,4.8333333333,40,1.2,15.2821472962,15.2821472962 -50,0,22.39,33.8633333333,20.7,33.8333333333,23.1,35.9333333333,22.89,32.9,20.7,56.6266666667,8.7633333333,7.2,21.87,30.274,22.89,38.1633333333,20.1,35.8,9.4,764.7,56,5,40,1.1,1.6905427678,1.6905427678 -50,0,22.39,33.8633333333,20.6,34.0666666667,23.1,36,22.89,32.9,20.6,56.2233333333,8.8,7.495,21.79,30.4971428571,22.89,38.4333333333,20.1,36.1333333333,9.3166666667,764.6666666667,56.6666666667,5,40,1.1666666667,23.4301405959,23.4301405959 -60,0,22.39,33.9,20.6,34.3333333333,23.0666666667,36,22.8042857143,32.7671428571,20.6,55.9633333333,8.5666666667,8.1333333333,21.83,30.7,22.8233333333,38.5,20.1,36.4333333333,9.2333333333,764.6333333333,57.3333333333,5,40,1.2333333333,40.439043392,40.439043392 -40,0,22.39,33.9666666667,20.5,34.53,23,36,22.79,32.79,20.6,55.6333333333,8.5,9,21.8042857143,30.9114285714,22.79,38.5,20.1,36.56,9.15,764.6,58,5,40,1.3,37.9781547235,37.9781547235 -60,0,22.29,34.09,20.4266666667,34.6633333333,23,36.09,22.79,32.8214285714,20.6,55.36,8.5,9.3666666667,21.79,31.138,22.73,38.56,20.1,36.8266666667,9.0666666667,764.5666666667,58.6666666667,5,40,1.3666666667,4.4220571057,4.4220571057 -60,0,22.29,34.1633333333,20.3566666667,34.86,23,36.09,22.79,32.9,20.5666666667,55.0266666667,8.4266666667,9.7,21.79,31.29,22.7,38.73,20.1,36.9666666667,8.9833333333,764.5333333333,59.3333333333,5,40,1.4333333333,25.3547823289,25.3547823289 -50,0,22.29,34.23,20.29,35.06,22.9266666667,36.09,22.7128571429,32.9571428571,20.5,54.6933333333,8.4333333333,10.0633333333,21.79,31.434,22.7,38.8633333333,20.1,37.1266666667,8.9,764.5,60,5,40,1.5,21.214924613,21.214924613 -60,0,22.29,34.3175,20.26,35.29,22.9266666667,36.09,22.7,33,20.5,54.2966666667,8.3,10.5966666667,21.79,31.625,22.6,39.0666666667,20.1,37.26,8.7666666667,764.5,60.6666666667,4.8333333333,40,1.5166666667,0.7070447318,0.7070447318 -40,0,22.23,34.3266666667,20.2,35.3975,22.89,36.09,22.6714285714,32.9714285714,20.5,53.9633333333,8.2633333333,11.0633333333,21.7128571429,31.8085714286,22.6,39.26,20.1,37.3266666667,8.6333333333,764.5,61.3333333333,4.6666666667,40,1.5333333333,15.1399972849,15.1399972849 -50,0,22.2,34.29,20.1333333333,35.6333333333,22.89,36.1633333333,22.6,32.9,20.5,53.5266666667,8.13,11.19,21.7,31.996,22.6,39.6266666667,20.1,37.4,8.5,764.5,62,4.5,40,1.55,32.8419191879,32.8419191879 -20,0,22.2,34.3633333333,20.1,35.8266666667,22.8566666667,36.2,22.6,32.9571428571,20.4266666667,53.1333333333,8,11.7566666667,21.7,32.2257142857,22.5333333333,39.8333333333,20.1,37.4,8.3666666667,764.5,62.6666666667,4.3333333333,40,1.5666666667,2.5245399447,2.5245399447 -30,0,22.2,34.4333333333,20.0333333333,35.9,22.79,36.2,22.6,33,20.39,52.6333333333,7.8666666667,12.03,21.7,32.4,22.5,40.1566666667,20.1,37.4666666667,8.2333333333,764.5,63.3333333333,4.1666666667,40,1.5833333333,40.9598607686,40.9598607686 -30,0,22.2,34.5,20,36,22.76,36.1266666667,22.5714285714,33,20.39,52.36,7.5266666667,12.6566666667,21.7,32.5528571429,22.5,40.47,20.1333333333,37.59,8.1,764.5,64,4,40,1.6,16.8090260006,16.8090260006 -60,0,22.1666666667,34.53,19.9266666667,36.06,22.7,36.2,22.5,33,20.39,52.06,7.4,13.4633333333,21.7,32.718,22.4266666667,40.59,20.1333333333,37.6633333333,8.0333333333,764.5,64.5,4,40,1.65,2.2036358831,2.2036358831 -60,0,22.1,34.59,19.89,36.1266666667,22.7,36.2,22.5,33,20.39,51.86,7.2633333333,13.93,21.7,32.8685714286,22.39,40.9333333333,20.1333333333,37.73,7.9666666667,764.5,65,4,40,1.7,36.7755582673,36.7755582673 -60,0,22.1,34.59,19.8233333333,36.1266666667,22.7,36.2,22.5,33,20.39,51.56,7.0633333333,14.4633333333,21.7,33,22.39,41.06,20.2,37.79,7.9,764.5,65.5,4,40,1.75,24.9630305683,24.9630305683 -50,0,22.1,34.6633333333,19.79,36.23,22.7,36.2,22.4685714286,32.9714285714,20.39,51.4333333333,6.7633333333,15.7,21.7,33,22.39,41.1266666667,20.2,37.9,7.8333333333,764.5,66,4,40,1.8,27.9974188539,27.9974188539 -50,0,22.1,34.7,19.73,36.3633333333,22.7,36.2,22.39,32.9,20.29,51.1633333333,6.6233333333,16.9,21.7,33.018,22.39,41.26,20.2,37.925,7.7666666667,764.5,66.5,4,40,1.85,48.9211532404,48.9211532404 -40,0,22.1,34.7,19.7,36.4333333333,22.7,36.2,22.39,32.9285714286,20.29,51.03,6.59,18.4,21.6714285714,33.09,22.3233333333,41.4,20.2,38,7.7,764.5,67,4,40,1.9,15.2888697223,15.2888697223 -50,0,22,34.7,19.7,36.5,22.7,36.2,22.39,33,20.29,50.845,6.6266666667,18.5966666667,21.7,33.156,22.3233333333,41.4666666667,20.2,38.09,7.55,764.4333333333,67.8333333333,4,40,1.9333333333,6.5741127124,6.5741127124 -50,0,22,34.7,19.6,36.53,22.7,36.26,22.37,33,20.29,50.6633333333,6.4333333333,19.0633333333,21.6428571429,33.1214285714,22.3566666667,41.59,20.2,38.1633333333,7.4,764.3666666667,68.6666666667,4,40,1.9666666667,15.8983244561,15.8983244561 -60,0,22,34.7,19.6,36.6633333333,22.7,36.2,22.3185714286,33,20.23,50.4633333333,6.4666666667,19.6333333333,21.6,33.09,22.29,41.59,20.2,38.23,7.25,764.3,69.5,4,40,2,6.8435363588,6.8435363588 -60,0,22,34.76,19.5,36.73,22.7,36.26,22.29,33,20.29,50.3633333333,6.4,19.8266666667,21.6,33.1214285714,22.29,41.59,20.1333333333,38.29,7.1,764.2333333333,70.3333333333,4,40,2.0333333333,10.1075386046,10.1075386046 -60,0,21.9633333333,34.79,19.4266666667,36.79,22.79,36.29,22.29,33,20.23,50.23,6.4666666667,20.4933333333,21.6,33.236,22.29,41.6633333333,20.2,38.4,6.95,764.1666666667,71.1666666667,4,40,2.0666666667,10.3601476061,10.3601476061 -50,0,21.89,34.8633333333,19.39,36.9,22.8566666667,36.3633333333,22.29,33.054,20.2,50.06,6.4,20.5666666667,21.6,33.29,22.23,41.53,20.2,38.4,6.8,764.1,72,4,40,2.1,32.9133611172,32.9133611172 -50,0,21.89,34.9,19.39,36.9666666667,22.89,36.53,22.2642857143,33.0642857143,20.2,50,6.2633333333,20.2666666667,21.6,33.29,22.29,41.6633333333,20.2,38.4333333333,6.8,764.0166666667,71.8333333333,4,40,2.0666666667,3.0461183866,3.0461183866 -40,0,21.89,34.9,19.39,37.03,22.89,36.59,22.2,33.036,20.2,49.8633333333,6.1233333333,21.06,21.6,33.29,22.23,41.5,20.2,38.5,6.8,763.9333333333,71.6666666667,4,40,2.0333333333,4.0290124132,4.0290124132 -50,0,21.89,35,19.315,37.195,22.89,36.59,22.2,33.09,20.2,49.73,6.06,22.2933333333,21.6,33.334,22.23,41.36,20.2,38.53,6.8,763.85,71.5,4,40,2,48.379783507,48.379783507 -50,0,21.89,35,19.29,37.29,22.89,36.6633333333,22.2,33.09,20.1666666667,49.6633333333,6,23.1666666667,21.5714285714,33.5371428571,22.2,41.26,20.2,38.59,6.8,763.7666666667,71.3333333333,4,40,1.9666666667,33.748180652,33.748180652 -50,0,21.8233333333,35,19.29,37.3266666667,22.9266666667,36.7,22.2,33.09,20.1,49.59,5.8666666667,23.2933333333,21.6,33.612,22.2,41.2,20.2,38.6266666667,6.8,763.6833333333,71.1666666667,4,40,1.9333333333,26.9048574381,26.9048574381 -60,10,21.79,35,19.23,37.4,22.9266666667,36.76,22.2,33.09,20.1333333333,49.5,5.8666666667,24.2933333333,21.5571428571,33.6214285714,22.2,41.2,20.2,38.76,6.8,763.6,71,4,40,1.9,7.1233563824,7.1233563824 -50,0,21.79,35,19.2,37.4,23,36.79,22.1142857143,33.09,20.1333333333,49.4333333333,5.8,24.9566666667,21.5,33.59,22.2,41.2,20.2,38.8266666667,6.8,763.5666666667,71.1666666667,4,38.1666666667,1.9333333333,47.3437201697,47.3437201697 -40,0,21.79,35,19.1333333333,37.4666666667,23,36.79,22.1,33.156,20.1666666667,49.3633333333,5.7266666667,25.6233333333,21.5,33.59,22.2,41.09,20.2,38.9,6.8,763.5333333333,71.3333333333,4,36.3333333333,1.9666666667,29.0114893694,29.0114893694 -30,0,21.79,35.06,19.1,37.59,23,36.79,22.1,33.2,20.1,49.23,5.5266666667,25.6633333333,21.5,33.7175,22.1,41.09,20.2,38.9,6.8,763.5,71.5,4,34.5,2,20.8308200235,20.8308200235 -30,0,21.76,35.09,19.1,37.59,23,36.79,22.1,33.2,20.1,49.2,5.3333333333,26.5233333333,21.5,33.856,22.1666666667,41.03,20.2,38.9666666667,6.8,763.4666666667,71.6666666667,4,32.6666666667,2.0333333333,36.6752966191,36.6752966191 -30,0,21.7,35.1633333333,19.0666666667,37.7,22.945,36.9,22.1,33.2,20.1,49.1266666667,5.245,27.995,21.5,33.9,22.0666666667,41,20.2,39,6.8,763.4333333333,71.8333333333,4,30.8333333333,2.0666666667,7.6104369597,7.6104369597 -60,0,21.7,35.2,19,37.7,22.89,37,22.08,33.236,20.1,49.06,5.0266666667,28.4666666667,21.5,34,22.0666666667,41.1333333333,20.2,39.0675,6.8,763.4,72,4,29,2.1,23.4576601535,23.4576601535 -40,0,21.7,35.2,19,37.79,22.89,37,22,33.2,20.1,49,4.6933333333,28.3266666667,21.5,34.0514285714,22,41.1266666667,20.2,39.09,6.6,763.4,72.6666666667,3.8333333333,29,2.0166666667,36.709582957,36.709582957 -60,0,21.7,35.23,18.9266666667,37.79,22.89,37,22,33.2,20.1,49,4.3666666667,30.19,21.5,34.052,22.0666666667,41.26,20.2,39.2,6.4,763.4,73.3333333333,3.6666666667,29,1.9333333333,29.202588601,29.202588601 -50,0,21.7,35.29,18.89,37.8266666667,22.89,37,22,33.2,20.1,48.9,4.2266666667,30.93,21.5,33.9714285714,22,41.1633333333,20.2,39.2,6.2,763.4,74,3.5,29,1.85,41.8932786328,41.8932786328 -60,0,21.6666666667,35.26,18.89,37.9,22.89,37,22,33.2,20.0333333333,48.7666666667,4.19,32.9333333333,21.5,34,22,41.1633333333,20.2,39.23,6,763.4,74.6666666667,3.3333333333,29,1.7666666667,0.5223237793,0.5223237793 -50,0,21.6,35.2,18.8566666667,37.9666666667,22.89,37,22,33.2,20.0333333333,48.7,4.2633333333,34.2666666667,21.4371428571,34.0114285714,22.0666666667,41.1633333333,20.2,39.29,5.8,763.4,75.3333333333,3.1666666667,29,1.6833333333,20.0256668963,20.0256668963 -60,0,21.6,35.29,18.79,37.9,22.89,37.06,22,33.2,20.0333333333,48.7,4.4,34.8,21.39,33.96,22,41.09,20.2,39.4,5.6,763.4,76,3,29,1.6,9.001214942,9.001214942 -80,0,21.6,35.29,18.79,38.03,22.89,37.06,22,33.25625,20,48.2933333333,4.4,34.6,21.4371428571,34.0385714286,22,41.09,20.2,39.4,5.3333333333,763.3833333333,77,2.8333333333,29,1.5166666667,23.7820472335,23.7820472335 -60,0,21.6,35.9266666667,18.79,38.4966666667,22.8566666667,36.9,21.9214285714,33.29,20.0666666667,47.0333333333,4.3666666667,35.2,21.39,33.96,22,41.09,20.2,39.4,5.0666666667,763.3666666667,78,2.6666666667,29,1.4333333333,2.8505571303,2.8505571303 -60,20,21.6,36.46,18.7,39.3,22.79,36.5666666667,21.934,33.376,20.1,45.96,4.3666666667,35.6666666667,21.39,33.9,22,41.1266666667,20.2,39.4,4.8,763.35,79,2.5,29,1.35,8.5945178173,8.5945178173 -70,10,21.6,36.4,18.7,39.595,22.7,36.4,21.9214285714,33.5257142857,20.1,45.5,4.4666666667,35.5,21.39,33.938,22,41.2,20.2,39.4,4.5333333333,763.3333333333,80,2.3333333333,29,1.2666666667,37.1707050246,37.1707050246 -80,20,21.6,36.5,18.7,39.76,22.7,36.4,21.934,33.736,20.1,45.09,4.4,35.4333333333,21.39,34.09,22,41.1266666667,20.2,39.2666666667,4.2666666667,763.3166666667,81,2.1666666667,29,1.1833333333,36.003181641,36.003181641 -70,10,21.6,36.5,18.7,39.9333333333,22.6,36.29,22,33.9385714286,20.1,45.595,4.4,35.6,21.39,34.2,21.9266666667,41.26,20.2,39.09,4,763.3,82,2,29,1.1,16.4254954667,16.4254954667 -120,0,21.6,36.6566666667,18.7,40.06,22.6,36.23,22,34.236,20.1,45.7266666667,4.4666666667,35.86,21.39,34.3828571429,22,41.3266666667,20.2,39.09,4.0166666667,763.2833333333,81.8333333333,2,28.5,1.1,23.6484365771,23.6484365771 -50,0,21.6,36.79,18.7,40.26,22.6333333333,35.9333333333,22,34.1214285714,20.1,46.3333333333,4.6233333333,35.99,21.39,34.378,21.9266666667,41.3266666667,20.1333333333,38.9666666667,4.0333333333,763.2666666667,81.6666666667,2,28,1.1,7.5735553051,7.5735553051 -50,0,21.6,36.9333333333,18.7,40.3333333333,22.6333333333,35.86,22,34,20.0666666667,46.79,4.7425,36.015,21.39,34.2257142857,21.9633333333,41.06,20.2,38.9,4.05,763.25,81.5,2,27.5,1.1,6.2273250776,6.2273250776 -50,0,21.6,37,18.7,40.43,22.6333333333,35.9333333333,22,33.9428571429,20,46.8633333333,5.0266666667,35.83,21.39,33.96,21.89,40.82,20.2,38.76,4.0666666667,763.2333333333,81.3333333333,2,27,1.1,35.9140296932,35.9140296932 -30,0,21.6,37.09,18.76,40.29,22.6333333333,35.9333333333,22,33.9,20,47,5.26,35.1233333333,21.39,33.7857142857,21.89,40.6266666667,20.2,38.6266666667,4.0833333333,763.2166666667,81.1666666667,2,26.5,1.1,43.5069393599,43.5069393599 -30,0,21.5333333333,37.03,18.79,40.1633333333,22.7,36,22,33.9,20,47,5.5266666667,34.4566666667,21.37,33.616,21.89,40.4666666667,20.1,38.56,4.1,763.2,81,2,26,1.1,30.1756132045,30.1756132045 -30,0,21.5,36.9666666667,18.79,40.09,22.6,35.9333333333,21.956,33.856,20,47,5.8666666667,33.66,21.29,33.4714285714,21.8233333333,40.1933333333,20.1,38.425,4.45,763.15,80.6666666667,2.1666666667,26,1.3833333333,26.7267015181,26.7267015181 -30,0,21.5,36.9,18.89,40.09,22.6,35.9333333333,21.89,33.8842857143,20,47,6.2,32.9933333333,21.35,33.29,21.79,40.0266666667,20.1,38.3266666667,4.8,763.1,80.3333333333,2.3333333333,26,1.6666666667,17.3404515372,17.3404515372 -60,0,21.5,36.9,18.9633333333,39.9633333333,22.6,35.79,21.956,33.92,20,46.9666666667,6.6933333333,32.2,21.29,33.2128571429,21.79,39.9,20.1,38.2,5.15,763.05,80,2.5,26,1.95,9.3104446074,9.3104446074 -60,0,21.5,36.9,19.1,39.76,22.5333333333,35.79,21.9685714286,34.0257142857,20,46.8725,7.0266666667,30.7266666667,21.29,33.116,21.79,39.76,20.1,38.1266666667,5.5,763,79.6666666667,2.6666666667,26,2.2333333333,23.9706774126,23.9706774126 -50,0,21.5,36.9,19.1666666667,39.6266666667,22.5333333333,35.76,21.934,34.134,20,46.79,7.4633333333,28.9566666667,21.29,32.9875,21.73,39.7,20.2,37.93,5.85,762.95,79.3333333333,2.8333333333,26,2.5166666667,8.3529610769,8.3529610769 -50,0,21.5,36.9,19.36,39.5,22.6,35.7,21.9057142857,34.2128571429,20,46.7,7.93,27.0966666667,21.29,32.8685714286,21.7,39.59,20.2,37.73,6.2,762.9,79,3,26,2.8,43.6457890901,43.6457890901 -50,0,21.5,36.9,19.6333333333,39.3,22.7,35.76,21.956,34.29,20,46.6266666667,8.8933333333,24.5966666667,21.29,32.754,21.7,39.59,20.23,37.59,6.55,762.8666666667,77.5,3.1666666667,26.3333333333,2.85,38.2042401587,38.2042401587 -50,0,21.5,36.9666666667,20.1633333333,38.5933333333,22.7,35.6266666667,22,34.3214285714,20,46.5,9.5,20.5966666667,21.29,32.7,21.7,39.4666666667,20.29,37.53,6.9,762.8333333333,76,3.3333333333,26.6666666667,2.9,10.7874397188,10.7874397188 -50,0,21.5,37.03,20.43,38.0666666667,22.7,35.59,22.04,34.44,20,46.4333333333,9.7566666667,17.8666666667,21.272,32.616,21.7,39.4,20.29,37.4,7.25,762.8,74.5,3.5,27,2.95,1.7151543172,1.7151543172 -60,0,21.5,37.09,20.5333333333,37.8633333333,22.7,35.59,22.1,34.5514285714,20,46.29,10.03,16.9333333333,21.2385714286,32.5385714286,21.6,39.26,20.3566666667,37.4666666667,7.6,762.7666666667,73,3.6666666667,27.3333333333,3,36.3112769322,36.3112769322 -50,0,21.5,37.1266666667,20.6666666667,37.73,22.7,35.59,22.12,34.59,20,46.23,10.7,15.36,21.236,32.5,21.6,39.26,20.39,37.5,7.95,762.7333333333,71.5,3.8333333333,27.6666666667,3.05,37.1259041131,37.1259041131 -60,0,21.5,37.2675,21.45,37.245,22.76,35.53,22.2,34.6214285714,20,46.06,11.5666666667,13.2266666667,21.2642857143,32.4571428571,21.6,39.2,20.39,37.36,8.3,762.7,70,4,28,3.1,40.4605647665,40.4605647665 -50,0,21.5666666667,37.29,22.0966666667,36.2966666667,22.73,35.5,22.29,34.79,20,45.9333333333,12.1966666667,9.4333333333,21.29,32.44,21.6,39.2,20.39,37.4333333333,8.6333333333,762.6833333333,69.5,4,27.8333333333,3.3,33.7663717219,33.7663717219 -50,0,21.6,37.3266666667,22.43,35.83,22.79,35.5,22.3471428571,34.79,20,45.76,12.7233333333,8.3666666667,21.29,32.4,21.5666666667,39.2,20.39,37.6333333333,8.9666666667,762.6666666667,69,4,27.6666666667,3.5,33.8033035048,33.8033035048 -50,0,21.6,37.4,22.43,35.4,22.7,35.59,22.39,34.79,20,45.7,13.05,6.85,21.254,32.32,21.5666666667,39.2,20.3233333333,37.73,9.3,762.65,68.5,4,27.5,3.7,33.7949724984,33.7949724984 -50,0,21.6,37.4,22.23,35.4666666667,22.7,35.6633333333,22.39,34.79,20,45.5,13,6.7566666667,21.2385714286,32.2385714286,21.5,39.2,20.3233333333,37.79,9.6333333333,762.6333333333,68,4,27.3333333333,3.9,19.1591026611,19.1591026611 -50,0,21.6,37.4666666667,22.2,35.7,22.7,35.7,22.39,34.79,20,45.4333333333,13.0666666667,6.6966666667,21.29,32.29,21.5,39.2,20.29,37.9,9.9666666667,762.6166666667,67.5,4,27.1666666667,4.1,22.496162483,22.496162483 -60,0,21.7,37.59,22.4,35.7,22.7,35.7,22.5,35,20,45.29,13.3566666667,6.1333333333,21.2514285714,32.1785714286,21.5,39.09,20.29,37.9666666667,10.3,762.6,67,4,27,4.3,23.3911997639,23.3911997639 -70,0,21.7,37.6633333333,22.8933333333,35.1233333333,22.7,35.7,22.5,35,20,45.23,14.0233333333,5.1333333333,21.29,32.2,21.5,39.1266666667,20.29,38.1266666667,10.6666666667,762.6166666667,65.3333333333,4,27.1666666667,4.2666666667,39.7959832568,39.7959832568 -70,0,21.73,37.7,23.1,34.5966666667,22.7225,35.7225,22.56,35,20,45.1633333333,14.49,4.4566666667,21.29,32.2,21.5,39.1266666667,20.29,38.2,11.0333333333,762.6333333333,63.6666666667,4,27.3333333333,4.2333333333,35.6088802335,35.6088802335 -40,0,21.79,37.76,23.1,34.5,22.79,35.79,22.5714285714,35.0642857143,20,45.09,14.63,3.4566666667,21.29,32.2,21.39,39.09,20.29,38.145,11.4,762.65,62,4,27.5,4.2,11.7194032529,11.7194032529 -40,0,21.79,37.73,23.1,34.5,22.79,35.79,22.6,35.2,20,45.09,14.7566666667,3.36,21.29,32.1685714286,21.39,39.09,20.29,38.2,11.7666666667,762.6666666667,60.3333333333,4,27.6666666667,4.1666666667,34.5470526605,34.5470526605 -30,0,21.79,37.79,23.1333333333,34.4666666667,22.79,35.79,22.6,35.2771428571,20,45.0225,15.1633333333,2.16,21.29,32.09,21.5,39.2,20.29,38.26,12.1333333333,762.6833333333,58.6666666667,4,27.8333333333,4.1333333333,34.6798208309,34.6798208309 -50,0,21.79,37.79,23.2,34.3266666667,22.7,35.8266666667,22.62,35.356,20,45,15.89,1.5,21.29,32.09,21.4266666667,39.1266666667,20.29,38.4,12.5,762.7,57,4,28,4.1,23.5853861552,23.5853861552 -50,0,21.8566666667,37.8633333333,23.29,34.26,22.7,35.9,22.7,35.4,20,44.8633333333,16.4966666667,1.0333333333,21.29,32.09,21.39,39.1266666667,20.29,38.4,12.8166666667,762.6666666667,57.1666666667,4,30,4.4333333333,25.2852364792,25.2852364792 -60,0,21.89,37.9,23.3566666667,34.2,22.7,35.9666666667,22.7,35.29,20,44.79,17.3666666667,1,21.29,32.09,21.39,39.2,20.29,38.4,13.1333333333,762.6333333333,57.3333333333,4,32,4.7666666667,19.3287577946,19.3287577946 -50,0,21.89,37.9,23.5333333333,34.0266666667,22.7,35.9666666667,22.7128571429,35.29,20,44.7,17.9666666667,1,21.39,32.054,21.39,39.2,20.29,38.3266666667,13.45,762.6,57.5,4,34,5.1,10.0524964742,10.0524964742 -60,0,21.9266666667,37.8633333333,23.6666666667,33.8266666667,22.7,36,22.79,35.29,20,44.6266666667,18.43,1,21.4057142857,32,21.39,39.2,20.29,38.29,13.7666666667,762.5666666667,57.6666666667,4,36,5.4333333333,9.6396624343,9.6396624343 -60,0,22,37.73,23.7,33.7233333333,22.76,36,22.79,35.2642857143,20.0666666667,44.6633333333,18.3566666667,1,21.478,31.958,21.39,39.2,20.29,38.23,14.0833333333,762.5333333333,57.8333333333,4,38,5.7666666667,30.1223556278,30.1223556278 -50,0,22.1,37.7,23.7,33.59,22.79,36,22.89,35.29,20,44.59,18.46,1,21.4685714286,31.8328571429,21.39,39.2,20.29,38.2,14.4,762.5,58,4,40,6.1,3.3377990476,3.3377990476 -50,0,22.175,37.7,23.7,33.5,22.79,36.06,22.89,35.2385714286,20.1,44.59,18.7933333333,1,21.525,31.7,21.39,39.09,20.29,38.2,14.7,762.4333333333,55.6666666667,4,40,5.7166666667,34.6583681297,34.6583681297 -50,0,22.2,37.6266666667,23.7,33.5,22.79,36.09,22.89,35.2,20.1,44.53,19.1,1,21.6,31.56,21.3233333333,39.03,20.29,38.2,15,762.3666666667,53.3333333333,4,40,5.3333333333,24.7400959372,24.7400959372 -50,0,22.29,37.56,23.7,33.5,22.79,36.09,22.89,35.2,20.1,44.5,19.1666666667,1,21.6571428571,31.5,21.3233333333,38.9,20.29,38.2,15.3,762.3,51,4,40,4.95,29.4890158111,29.4890158111 -50,0,22.29,37.4333333333,23.7,33.4666666667,22.79,36.09,23,35.2,20.1,44.5,19.65,1,21.754,31.478,21.3233333333,38.9,20.29,38.09,15.6,762.2333333333,48.6666666667,4,40,4.5666666667,23.4453304089,23.4453304089 -50,0,22.3233333333,37.0333333333,23.7,33.3266666667,22.8566666667,36.1633333333,23,35.1242857143,20.1,44.43,19.53,1,21.79,31.2928571429,21.29,38.9,20.29,38.09,15.9,762.1666666667,46.3333333333,4,40,4.1833333333,12.6095952583,12.6095952583 -60,0,22.39,36.5,23.6666666667,32.4,22.89,36.1633333333,23,34.918,20.1,44.0966666667,19.39,1,21.89,30.956,21.29,38.8266666667,20.29,38,16.2,762.1,44,4,40,3.8,27.0539472927,27.0539472927 -50,0,22.5,35.99,23.6,32.3333333333,22.89,36.09,23,34.79,20.1,43.4,19.3566666667,1,21.9985714286,30.7385714286,21.29,38.6633333333,20.29,37.9333333333,16.35,761.9666666667,43.3333333333,4.1666666667,40,3.7333333333,10.6079120422,10.6079120422 -60,0,22.5,35.93,23.6,32.73,22.89,36.06,23,34.7,20.1666666667,43.0666666667,19.43,1,22.12,30.498,21.29,38.4975,20.29,37.79,16.5,761.8333333333,42.6666666667,4.3333333333,40,3.6666666667,40.8690406708,40.8690406708 -70,0,22.6,36.6966666667,23.6,32.73,22.89,35.95,23,34.4971428571,20.2,42.7233333333,19.4633333333,1,22.2642857143,30.2642857143,21.29,38.3266666667,20.29,37.73,16.65,761.7,42,4.5,40,3.6,0.4136121133,0.4136121133 -70,0,22.6,36.03,23.5,32.59,22.89,35.9333333333,23,34.378,20.2,42.53,19.5966666667,1,22.33,29.956,21.29,38.1633333333,20.29,37.645,16.8,761.5666666667,41.3333333333,4.6666666667,40,3.5333333333,16.9588199467,16.9588199467 -60,0,22.73,35.8633333333,23.5,32.53,22.89,35.9333333333,23,34.21875,20.2,42.26,20,1,22.39,29.7385714286,21.29,38.03,20.29,37.49,16.95,761.4333333333,40.6666666667,4.8333333333,40,3.4666666667,20.9889054531,20.9889054531 -70,0,22.79,35.5966666667,23.4633333333,32.13,22.89,36,23,33.6714285714,20.2,41.7333333333,19.9266666667,1,22.412,29.54,21.39,37.8333333333,20.29,37.29,17.1,761.3,40,5,40,3.4,4.6238205745,4.6238205745 -40,0,22.76,34.5566666667,23.3233333333,31.3233333333,22.9633333333,35.8333333333,22.956,33.054,20.34,39.9,20,1,22.4528571429,29.3928571429,21.3233333333,37.6266666667,20.29,37.29,17.3333333333,761.2333333333,40,5,40,3.6,25.9095211863,25.9095211863 -60,0,22.7,33.89,23.29,31,22.89,35.5666666667,22.9214285714,32.9428571429,20.4266666667,38.6333333333,20,1,22.5,29.2,21.39,37.4666666667,20.29,37.29,17.5666666667,761.1666666667,40,5,40,3.8,44.7710325941,44.7710325941 -60,0,22.79,33.86,23.29,31.0666666667,22.9266666667,35.26,22.956,32.9,20.5,38.36,20.1333333333,1,22.5857142857,29.1428571429,21.39,37.3266666667,20.23,37.2,17.8,761.1,40,5,40,4,11.2952040741,11.2952040741 -60,10,22.79,34.06,23.29,31.1633333333,23,35.2,23,32.9714285714,20.6,38.2,20.4,1,22.66,29.12,21.39,37.1633333333,20.29,37.1266666667,18.0333333333,761.0333333333,40,5,40,4.2,38.1685749278,38.1685749278 -80,0,22.89,34.5566666667,23.3566666667,31.3566666667,23,35.2,23,33,20.6666666667,38.26,20.6633333333,1,22.7257142857,28.9685714286,21.39,37.09,20.26,36.9666666667,18.2666666667,760.9666666667,40,5,40,4.4,35.842466203,35.842466203 -60,0,22.9633333333,35.03,23.39,31.5333333333,23,35.2,23,33.0514285714,20.73,38.3266666667,20.93,1,22.79,28.754,21.39,37.0666666667,20.26,36.9,18.5,760.9,40,5,40,4.6,45.5879184534,45.5879184534 -60,0,23,34.9666666667,23.39,31.6666666667,23.0333333333,35.3266666667,23,33.09,20.79,38.3266666667,21.1633333333,1,22.8042857143,28.6571428571,21.4633333333,37.4,20.2,36.7,18.55,760.8,39.3333333333,4.8333333333,40,4.4166666667,43.6740394332,43.6740394332 -50,0,23,34.9,23.39,31.73,23.1,35.3266666667,23,33.1685714286,20.79,38.29,21.29,1,22.83,28.62,21.5333333333,37.6566666667,20.2,36.7,18.6,760.7,38.6666666667,4.6666666667,40,4.2333333333,13.3928652853,13.3928652853 -50,0,23.1,35,23.39,31.8566666667,23,35.29,23,33.2,20.8566666667,38.3633333333,21.29,1,22.79,28.5,21.6666666667,37.8633333333,20.29,36.7,18.65,760.6,38,4.5,40,4.05,42.1524180681,42.1524180681 -80,0,23.1,35,23.34,31.89,23,35.29,23,33.2128571429,20.89,38.3633333333,21.29,1,22.7,28.35,21.79,38.23,20.23,36.6266666667,18.7,760.5,37.3333333333,4.3333333333,40,3.8666666667,34.9577585352,34.9577585352 -80,0,23.1,35,23.3566666667,32.03,23,35.29,22.978,33.254,20.89,38.23,21.0966666667,1,22.7,28.29,21.79,38.29,20.23,36.53,18.75,760.4,36.6666666667,4.1666666667,40,3.6833333333,10.1590582985,10.1590582985 -110,0,23.0666666667,34.93,23.29,32.09,23,35.3633333333,22.89,33.3971428571,20.9266666667,38.29,20.9175,1,22.64,28.31,21.89,38.29,20.29,36.59,18.8,760.3,36,4,40,3.5,44.5811614627,44.5811614627 -80,0,23,34.79,23.26,32.2,23,35.3266666667,22.9175,33.6175,20.9266666667,38.23,20.9266666667,1,22.6,28.4214285714,21.9633333333,38.3633333333,20.2,36.4666666667,18.75,760.2333333333,36.1666666667,4,40,3.4666666667,49.2653858732,49.2653858732 -90,0,23,34.79,23.2,32.2,23,35.4,22.9725,33.7,20.9266666667,38.2,20.6666666667,1,22.6,28.6,22.0333333333,38.4,20.2,36.4,18.7,760.1666666667,36.3333333333,4,40,3.4333333333,46.8810369261,46.8810369261 -90,0,23,34.8633333333,23.1666666667,32.4,23.1,35.4333333333,23,33.79,21,38.2,20.6,1,22.5571428571,28.79,22.1,38.3266666667,20.2,36.4,18.65,760.1,36.5,4,40,3.4,38.4545704117,38.4545704117 -70,0,23,34.9,23.1,32.5266666667,23.1,35.5,22.9057142857,33.79,21,38.2,20.5333333333,1,22.5666666667,28.8733333333,22.15,38.29,20.2,36.3266666667,18.6,760.0333333333,36.6666666667,4,40,3.3666666667,46.6224110918,46.6224110918 -80,0,23,34.9,23.1,32.7,23.1,35.5,22.89,33.856,21,38.2,20.6666666667,1,22.5,28.9528571429,22.2,38.3266666667,20.2,36.29,18.55,759.9666666667,36.8333333333,4,40,3.3333333333,17.9465635796,17.9465635796 -80,0,23,34.9333333333,23.1,32.76,23.1,35.4333333333,22.89,33.9,21,38.2,20.7,1,22.5,29.02,22.26,38.4,20.2,36.2,18.5,759.9,37,4,40,3.3,5.0280862604,5.0280862604 -120,0,23,35,23.1,32.8266666667,23.1,35.5,22.89,33.94,21,38.2,20.5666666667,1,22.5,29.1971428571,22.29,38.29,20.2,36.2,18.45,759.8833333333,38.3333333333,4,38.1666666667,3.75,22.6389232674,22.6389232674 -230,0,23,35.1666666667,23.0333333333,32.8266666667,23.2,35.5,22.89,34.0514285714,21,38.2,20.2266666667,1,22.456,29.5,22.3233333333,38.3266666667,20.2,36.09,18.4,759.8666666667,39.6666666667,4,36.3333333333,4.2,4.0619514883,4.0619514883 -310,0,23,35.8933333333,23,32.9633333333,23.1333333333,35.56,22.89,34.112,21,38.32,19.8933333333,1,22.39,29.7671428571,22.456,38.46,20.2,36.1633333333,18.35,759.85,41,4,34.5,4.65,41.1941451137,41.1941451137 -360,0,23.0333333333,37.5966666667,23,33.2966666667,23.2,35.6266666667,22.89,34.2,21,38.6933333333,19.6,1,22.39,30.138,22.5,38.56,20.2,36.2,18.3,759.8333333333,42.3333333333,4,32.6666666667,5.1,1.1682921322,1.1682921322 -110,0,23.1,37.99,23,33.9266666667,23.2,35.7,22.89,34.218,21.1,39.63,19.5333333333,1,22.39,30.29,22.5333333333,38.59,20.2,36.2,18.25,759.8166666667,43.6666666667,4,30.8333333333,5.55,28.5848663305,28.5848663305 -120,0,23.1333333333,38.8633333333,23,34.5933333333,23.23,35.9633333333,22.89,34.29,21.1,40.4966666667,19.3266666667,1,22.39,30.15,22.6,38.4633333333,20.2,36.29,18.2,759.8,45,4,29,6,2.9726239387,2.9726239387 -120,0,23.2,38.7966666667,23,35.1933333333,23.23,36.03,22.89,34.29,21.1,40.9333333333,19.2,1,22.39,30.0428571429,22.6,38.09,20.2,36.29,18.0333333333,759.7666666667,45.5,4,30.8333333333,5.9833333333,19.2847131402,19.2847131402 -440,10,23.2,38.5266666667,23,35.4666666667,23.2,36.23,22.89,34.29,21.1666666667,40.9333333333,19.0666666667,1,22.34,30,22.6,38.1633333333,20.2,36.29,17.8666666667,759.7333333333,46,4,32.6666666667,5.9666666667,16.5486960672,16.5486960672 -150,0,23.2,38.1933333333,22.9633333333,35.6266666667,23.2,36.3633333333,22.934,34.312,21.1666666667,40.76,19,1,22.29,30.0714285714,22.7,38.29,20.2,36.29,17.7,759.7,46.5,4,34.5,5.95,17.9623515462,17.9623515462 -130,0,23.2,37.9666666667,22.89,35.7,23.29,36.59,22.89,34.4428571429,21.1666666667,40.6266666667,18.76,1,22.29,30.1,22.745,38.345,20.2,36.29,17.5333333333,759.6666666667,47,4,36.3333333333,5.9333333333,47.5244544912,47.5244544912 -120,0,23.175,37.7225,22.8566666667,35.56,23.29,36.59,22.89,34.5075,21.1666666667,40.3333333333,18.6,1,22.2385714286,30.0571428571,22.8233333333,38.4333333333,20.2,36.3633333333,17.3666666667,759.6333333333,47.5,4,38.1666666667,5.9166666667,32.3626227793,32.3626227793 -150,10,23.1,37.7966666667,22.79,35.475,23.26,36.56,22.89,34.59,21.1,40.46,18.1333333333,1,22.2,30.3675,22.89,38.5,20.2,36.2966666667,17.2,759.6,48,4,40,5.9,46.5036849724,46.5036849724 -130,0,23.1,37.5266666667,22.73,35.2666666667,23.2,36.5,22.89,34.59,21,40.86,17.86,1,22.2,31.016,22.89,38.3633333333,20.2,35.7566666667,16.9166666667,759.5833333333,49.3333333333,4,40,6.0333333333,41.8639176409,41.8639176409 -130,0,23.1,37.2666666667,22.6666666667,35.09,23.2,36.5,22.89,34.4714285714,21,41.06,17.495,1,22.2,31.645,22.89,38.23,20.2,35.3266666667,16.6333333333,759.5666666667,50.6666666667,4,40,6.1666666667,21.0421319818,21.0421319818 -130,0,23.1,37.2,22.6,35.1633333333,23.2,36.5,22.89,34.356,20.89,41.23,17.1333333333,1,22.2,32.0575,23,38.29,20.2,35.5266666667,16.35,759.55,52,4,40,6.3,7.1325383382,7.1325383382 -130,0,23.0333333333,37.2,22.5,35.29,23.2,36.4666666667,22.89,34.29,20.89,41.3633333333,16.86,1,22.2,32.29,23,38.3633333333,20.2,35.73,16.0666666667,759.5333333333,53.3333333333,4,40,6.4333333333,13.7620744295,13.7620744295 -100,0,23,37.1633333333,22.5,35.3633333333,23.2,36.4,22.89,34.29,20.79,41.29,16.43,1,22.2,32.4414285714,23,38.4633333333,20.2,35.73,15.7833333333,759.5166666667,54.6666666667,4,40,6.5666666667,18.1959134061,18.1959134061 -90,0,23,37.09,22.39,35.3633333333,23.2,36.4666666667,22.89,34.2257142857,20.79,41.3633333333,16.29,1,22.2,32.518,23,38.7233333333,20.2,35.6,15.5,759.5,56,4,40,6.7,36.4712618059,36.4712618059 -120,0,23,37.06,22.3233333333,35.29,23.125,36.425,22.89,34.156,20.79,41.4,16.2266666667,1,22.2,32.6785714286,23,39,20.2,35.26,15.2666666667,759.5166666667,56.6666666667,3.8333333333,40,6.6333333333,33.8959106943,33.8959106943 -410,0,22.9266666667,37.1333333333,22.26,35.4,23.1,36.5,22.89,34.09,20.73,41.4666666667,16.0333333333,1,22.2,32.96,23,39.06,20.1333333333,35.1266666667,15.0333333333,759.5333333333,57.3333333333,3.6666666667,40,6.5666666667,30.5650089285,30.5650089285 -200,0,22.89,37.2,22.2,35.4,23,36.4,22.89,34.09,20.7,41.5,15.8233333333,1,22.2257142857,32.9971428571,23,39.1933333333,20.1,34.8333333333,14.8,759.55,58,3.5,40,6.5,2.3414653377,2.3414653377 -110,0,22.89,37.26,22.1,35.5,23,36.4,22.89,34.09,20.7225,41.6,15.63,1,22.2,32.9,23,39.59,20.1,34.7,14.5666666667,759.5666666667,58.6666666667,3.3333333333,40,6.4333333333,3.5370632424,3.5370632424 -120,0,22.89,37.2,22.1,35.56,23,36.4,22.89,34.09,20.79,42.36,15.5666666667,1,22.2,32.9,22.9266666667,39.53,20.1,34.56,14.3333333333,759.5833333333,59.3333333333,3.1666666667,40,6.3666666667,35.5768638663,35.5768638663 -70,10,22.89,37.1266666667,22.0666666667,35.6633333333,23,36.3266666667,22.8757142857,34.0771428571,20.7,42.5266666667,15.4266666667,1,22.2,32.9,22.89,39.5,20.1,34.4333333333,14.1,759.6,60,3,40,6.3,1.4733929769,1.4733929769 -70,0,22.89,37.2,22,35.6633333333,23,36.4,22.85,34.138,20.7,42.4,15.2633333333,1,22.14,33.134,22.89,39.56,20.1,34.4633333333,14.1833333333,759.6333333333,59.1666666667,3,40,6.1666666667,17.3962044762,17.3962044762 -70,0,22.89,37.1266666667,21.89,35.79,23,36.4,22.89,34.29,20.7,42.4,15.13,1.26,22.1714285714,33.3542857143,22.9266666667,39.89,20.1,35.33,14.2666666667,759.6666666667,58.3333333333,3,40,6.0333333333,12.5152621185,12.5152621185 -60,0,22.89,37.06,21.89,35.8633333333,23,36.4333333333,22.89,34.334,20.7,42.4,15,2.0666666667,22.14,33.54,22.9266666667,40.2966666667,20.1,36.4266666667,14.35,759.7,57.5,3,40,5.9,16.0196393379,16.0196393379 -70,0,22.89,37,21.76,35.9633333333,23.0666666667,36.56,22.89,34.4,20.7,42.5,15,2.1266666667,22.1,33.7257142857,23,40.9633333333,20.1,36.9,14.4333333333,759.7333333333,56.6666666667,3,40,5.7666666667,8.7466670317,8.7466670317 -70,0,22.89,37,21.7,36.1633333333,23.1,36.59,22.89,34.46,20.6333333333,42.5,14.9633333333,2.29,22.1,34.036,22.9266666667,41.2233333333,20.1333333333,37.23,14.5166666667,759.7666666667,55.8333333333,3,40,5.6333333333,20.5093087046,20.5093087046 -80,0,22.89,37,21.7,36.4333333333,23.1,36.59,22.89,34.5,20.6,42.5,14.83,2.5633333333,22.1,34.3814285714,22.89,41.53,20.1333333333,37.3633333333,14.6,759.8,55,3,40,5.5,8.9673151611,8.9673151611 -70,0,22.84,36.95,21.6333333333,36.56,23.1,36.7,22.89,34.5,20.6,42.5,14.66,3.4333333333,22.1,34.576,22.89,41.6633333333,20.1,37.53,14.4333333333,759.8666666667,56,3,40,5.6166666667,12.230718683,12.230718683 -70,0,22.8566666667,36.9666666667,21.55,36.745,23.1,36.7,22.89,34.5514285714,20.6,42.59,14.3925,4.8225,22.1,34.7642857143,22.89,41.86,20.1,37.6633333333,14.2666666667,759.9333333333,57,3,40,5.7333333333,19.2950000986,19.2950000986 -70,0,22.8566666667,36.9666666667,21.5,36.9333333333,23.1,36.7,22.89,34.59,20.6,42.59,14.13,5.7966666667,22.1,35.036,22.89,42.06,20.2,37.8266666667,14.1,760,58,3,40,5.85,18.0416953634,18.0416953634 -60,0,22.79,36.9333333333,21.4266666667,37,23.1,36.7,22.89,34.63125,20.6,42.59,14,6.1266666667,22.1,35.1528571429,22.89,42.36,20.2,37.9,13.9333333333,760.0666666667,59,3,40,5.9666666667,9.7072136938,9.7072136938 -70,0,22.79,37,21.39,37.1266666667,23.2,36.79,22.89,34.7,20.6,42.59,14,5.9333333333,22.1,35.2,22.8233333333,42.56,20.2,38.03,13.7666666667,760.1333333333,60,3,40,6.0833333333,21.1034481064,21.1034481064 -60,0,22.79,37.03,21.3233333333,37.26,23.2,36.8633333333,22.85,34.754,20.6,42.7,13.9633333333,5.9333333333,22.1,35.2642857143,22.79,42.9566666667,20.2,38.09,13.6,760.2,61,3,40,6.2,1.8726460519,1.8726460519 -70,0,22.79,37.09,21.26,37.4,23.2,36.9333333333,22.8185714286,34.7257142857,20.6,42.7,13.83,6.2,22.1,35.44,22.79,43.43,20.2,38.2,13.4833333333,760.1666666667,61.1666666667,3.1666666667,38,6.1166666667,43.4789650026,43.4789650026 -60,0,22.79,37.09,21.2,37.4666666667,23.2675,37.0675,22.81,34.718,20.5666666667,42.7,13.7333333333,6.5333333333,22.1,35.5514285714,22.79,43.6933333333,20.2,38.3266666667,13.3666666667,760.1333333333,61.3333333333,3.3333333333,36,6.0333333333,25.8838112233,25.8838112233 -70,0,22.79,37.09,21.2,37.53,23.29,37.1633333333,22.8614285714,34.79,20.5666666667,42.76,13.5333333333,7.2,22.1,35.612,22.79,44.0925,20.2,38.4,13.25,760.1,61.5,3.5,34,5.95,41.9264481752,41.9264481752 -80,0,22.7,37.2,21.1333333333,37.6633333333,23.29,37.23,22.83,34.834,20.5,42.79,13.2933333333,7.3933333333,22.1,35.7,22.73,44.49,20.2,38.4333333333,13.1333333333,760.0666666667,61.6666666667,3.6666666667,32,5.8666666667,1.6016775975,1.6016775975 -70,0,22.76,37.2,21.1,37.8266666667,23.3566666667,37.29,22.8328571429,34.8371428571,20.5,42.79,12.96,8.1933333333,22.1,35.79,22.7,44.86,20.2,38.5,13.0166666667,760.0333333333,61.8333333333,3.8333333333,30,5.7833333333,21.3648516568,21.3648516568 -70,0,22.7,37.2,21.1,37.9,23.39,37.29,22.83,34.856,20.5,42.79,12.66,8.9666666667,22.1,35.79,22.7,45.06,20.2,38.59,12.9,760,62,4,28,5.7,43.1890543317,43.1890543317 -70,0,22.7,37.2,21,38,23.39,37.29,22.8328571429,34.9428571429,20.5,42.8266666667,12.5333333333,9.6333333333,22.06,35.754,22.7,45.36,20.2,38.6633333333,12.8333333333,760.05,62,3.5,28,5.65,36.0572803533,36.0572803533 -60,0,22.7,37.2,20.9266666667,38.06,23.39,37.4,22.79,34.9,20.5,42.9,12.5,10.0666666667,22.0571428571,35.79,22.7,45.56,20.2,38.73,12.7666666667,760.1,62,3,28,5.6,6.5658508916,6.5658508916 -70,0,22.7,37.26,20.89,38.23,23.4633333333,37.4666666667,22.79,34.9,20.5,42.9,12.4266666667,10.1266666667,22,35.82,22.7,45.8266666667,20.2,38.79,12.7,760.15,62,2.5,28,5.55,9.6813221229,9.6813221229 -60,0,22.7,37.29,20.8233333333,38.29,23.39,37.4333333333,22.79,34.92,20.5,42.9,12.3,10.6,22.0857142857,36.2857142857,22.7,45.9,20.23,38.8266666667,12.6333333333,760.2,62,2,28,5.5,37.9865765572,37.9865765572 -40,0,22.6333333333,37.29,20.8566666667,38.4,23.4633333333,37.5,22.79,35,20.5,42.9,12.2266666667,10.9333333333,22.1,36.46,22.7,46.03,20.23,38.9,12.5666666667,760.25,62,1.5,28,5.45,29.5005509281,29.5005509281 -50,0,22.7,37.3266666667,20.79,38.4666666667,23.39,37.5,22.79,35,20.5,42.9,12.19,11.09,22.1,36.5,22.7,46.09,20.2,38.9333333333,12.5,760.3,62,1,28,5.4,22.17032318,22.17032318 -50,0,22.6333333333,37.3266666667,20.79,38.53,23.39,37.56,22.79,35,20.5,42.9333333333,12.19,10.83,22.1,36.4,22.6,45.9,20.26,39.06,12.1833333333,760.3,63.8333333333,1.1666666667,27.8333333333,5.4833333333,29.700921895,29.700921895 -60,0,22.6,37.3266666667,20.73,38.59,23.39,37.6266666667,22.79,35,20.5,43,12.145,10.69,22.075,36.3725,22.6,45.8266666667,20.29,39.2,11.8666666667,760.3,65.6666666667,1.3333333333,27.6666666667,5.5666666667,6.2700586277,6.2700586277 -80,0,22.6,37.4,20.7,38.7,23.39,37.6266666667,22.79,35,20.5,43,12.1,10.66,22.0285714286,36.3214285714,22.6,45.6333333333,20.29,39.2,11.55,760.3,67.5,1.5,27.5,5.65,37.7521604649,37.7521604649 -60,0,22.6,37.4,20.7,38.8266666667,23.39,37.7,22.79,35.09,20.5,43,12.0333333333,10.66,22,36.312,22.6,45.4333333333,20.2,39.23,11.2333333333,760.3,69.3333333333,1.6666666667,27.3333333333,5.7333333333,4.984941741,4.984941741 -70,0,22.6,37.4,20.6333333333,38.8266666667,23.39,37.7,22.79,35.09,20.4633333333,43,11.89,10.7333333333,22,36.3214285714,22.6,45.26,20.26,39.3633333333,10.9166666667,760.3,71.1666666667,1.8333333333,27.1666666667,5.8166666667,19.6046115248,19.6046115248 -70,0,22.6,37.4,20.6,38.9,23.39,37.7,22.79,35.09,20.39,43,11.83,10.46,22,36.29,22.6,45.2,20.29,39.5,10.6,760.3,73,2,27,5.9,29.9677349976,29.9677349976 -60,0,22.5333333333,37.4,20.6,38.9666666667,23.39,37.7,22.79,35.09,20.5,43,11.66,10.16,22,36.29,22.6,45.06,20.29,39.5,10.6833333333,760.2833333333,71.6666666667,2.3333333333,27.3333333333,5.7,14.0909099369,14.0909099369 -70,0,22.5333333333,37.4,20.5666666667,39,23.4266666667,37.73,22.79,35.09,20.5,43.06,11.5333333333,9.8266666667,22,36.272,22.6,45,20.29,39.5,10.7666666667,760.2666666667,70.3333333333,2.6666666667,27.6666666667,5.5,44.5800186135,44.5800186135 -60,0,22.5,37.4,20.5,39,23.4266666667,37.73,22.79,35.09,20.39,43,11.4633333333,9.7266666667,22,36.2642857143,22.6,44.8633333333,20.29,39.5,10.85,760.25,69,3,28,5.3,12.9142323625,12.9142323625 -80,0,22.5,37.4,20.5,39,23.39,37.745,22.79,35.09,20.39,43,11.33,10,22,36.29,22.5333333333,44.73,20.29,39.5,10.9333333333,760.2333333333,67.6666666667,3.3333333333,28.3333333333,5.1,47.7729401784,47.7729401784 -70,0,22.5,37.4,20.5,39.06,23.4266666667,37.8266666667,22.79,35.09,20.39,43.03,11.16,10.1,22,36.29,22.6,44.6,20.29,39.53,11.0166666667,760.2166666667,66.3333333333,3.6666666667,28.6666666667,4.9,31.56056304,31.56056304 -70,0,22.5,37.4,20.4633333333,39.06,23.5,37.9,22.7675,35.05625,20.39,43.09,11.1,10.0333333333,22,36.29,22.6,44.43,20.29,39.6633333333,11.1,760.2,65,4,29,4.7,16.3457509247,16.3457509247 -70,0,22.5,37.4,20.39,39,23.5,37.79,22.7,35,20.39,43.09,10.9633333333,9.9633333333,22,36.29,22.5333333333,44.29,20.29,39.73,11,760.1666666667,64.8333333333,4,30.8333333333,4.5833333333,39.403435227,39.403435227 -60,0,22.5,37.4,20.39,39.09,23.5,37.79,22.7385714286,35.0257142857,20.39,43.09,10.89,9.89,22,36.236,22.5,44.1633333333,20.29,39.79,10.9,760.1333333333,64.6666666667,4,32.6666666667,4.4666666667,16.7453524075,16.7453524075 -60,0,22.39,37.26,20.3233333333,39.09,23.5,37.79,22.7,35,20.39,43.09,10.7633333333,10,22,36.2385714286,22.5,44.03,20.29,39.8266666667,10.8,760.1,64.5,4,34.5,4.35,47.3902066122,47.3902066122 -70,0,22.39,37.2,20.29,39.09,23.5,37.79,22.7257142857,35,20.39,43.09,10.69,10.0666666667,22,36.236,22.5,43.8633333333,20.29,39.9,10.7,760.0666666667,64.3333333333,4,36.3333333333,4.2333333333,31.6180411028,31.6180411028 -70,0,22.39,37.2,20.29,39.09,23.5,37.9,22.7,35,20.39,43.09,10.66,10.3666666667,22,36.2642857143,22.5,43.79,20.29,39.9333333333,10.6,760.0333333333,64.1666666667,4,38.1666666667,4.1166666667,14.2659494537,14.2659494537 -60,0,22.39,37.2,20.26,39.06,23.5,37.8266666667,22.7,35,20.39,43.1266666667,10.6,10.6266666667,22,36.29,22.5,43.79,20.29,40,10.5,760,64,4,40,4,30.7570862467,30.7570862467 -80,0,22.39,37.2,20.2,39,23.5,37.9,22.7,35,20.39,43.2,10.5,11.2333333333,21.9685714286,36.2642857143,22.5,43.79,20.29,40,10.3666666667,759.9666666667,64.6666666667,4,38.1666666667,4,17.051198543,17.051198543 -70,0,22.3233333333,37.2,20.2,39,23.5,37.9,22.7,35,20.39,43.2,10.395,11.9725,21.978,36.272,22.5,43.76,20.3566666667,40.06,10.2333333333,759.9333333333,65.3333333333,4,36.3333333333,4,14.8457697011,14.8457697011 -70,0,22.3566666667,37.2,20.2,39.06,23.5,37.8633333333,22.7,35,20.39,43.26,10.2266666667,12.6633333333,21.9371428571,36.2257142857,22.5,43.7,20.3233333333,40.1266666667,10.1,759.9,66,4,34.5,4,40.8315569744,40.8315569744 -70,0,22.29,37.1266666667,20.15,39.09,23.5,37.79,22.7,35,20.39,43.29,10.0666666667,13.3333333333,22,36.356,22.4633333333,43.56,20.3233333333,40.2,9.9666666667,759.8666666667,66.6666666667,4,32.6666666667,4,41.245989583,41.245989583 -50,0,22.29,37.2,20.1,39.1266666667,23.5,37.79,22.7,35,20.39,43.29,9.9266666667,14.1933333333,21.9528571429,36.3528571429,22.39,43.5,20.3566666667,40.2,9.8333333333,759.8333333333,67.3333333333,4,30.8333333333,4,34.2871897039,34.2871897039 -70,0,22.29,37.2,20.0333333333,39.1266666667,23.5,37.79,22.7,35,20.39,43.29,9.66,15.6633333333,21.978,36.42,22.39,43.5,20.3566666667,40.26,9.7,759.8,68,4,29,4,17.996058939,17.996058939 -60,0,22.29,37.2,20.1,39.23,23.5,37.8266666667,22.7,35,20.39,43.3633333333,9.5333333333,16.7966666667,21.9371428571,36.5,22.39,43.5,20.3566666667,40.29,9.5833333333,759.7666666667,69,4.1666666667,30.8333333333,4.0833333333,13.7922457419,13.7922457419 -70,0,22.29,37.2,20.0333333333,39.23,23.5,37.8266666667,22.7,35.0257142857,20.39,43.4,9.2633333333,18.06,22,36.5,22.39,43.4666666667,20.29,40.3633333333,9.4666666667,759.7333333333,70,4.3333333333,32.6666666667,4.1666666667,32.4770599953,32.4770599953 -70,0,22.23,37.1266666667,20,39.29,23.5,37.79,22.7,35.018,20.39,43.4,9.0633333333,19.3933333333,21.9371428571,36.5514285714,22.39,43.4,20.39,40.4,9.35,759.7,71,4.5,34.5,4.25,23.5996148898,23.5996148898 -70,0,22.2,37.09,19.9266666667,39.29,23.5,37.8633333333,22.7,35.09,20.39,43.4333333333,8.86,21.6333333333,21.89,36.785,22.29,43.4333333333,20.39,40.6266666667,9.2333333333,759.6666666667,72,4.6666666667,36.3333333333,4.3333333333,0.4188105348,0.4188105348 -80,0,22.2,37.09,19.89,39.4,23.5,37.9,22.66,35.054,20.39,43.5,8.7266666667,23.2333333333,21.912,37.08,22.29,43.5,20.39,40.7,9.1166666667,759.6333333333,73,4.8333333333,38.1666666667,4.4166666667,6.0697351466,6.0697351466 -120,10,22.2,37.33,19.89,39.4666666667,23.5,37.8725,22.6857142857,35.0771428571,20.39,43.7266666667,8.6,24.9666666667,22,37.3685714286,22.29,43.6266666667,20.39,40.8633333333,9,759.6,74,5,40,4.5,27.249272482,27.249272482 -50,0,22.2,37.8633333333,19.89,39.8,23.4266666667,37.6566666667,22.64,35.072,20.39,44.2666666667,8.5333333333,26.0333333333,21.956,36.916,22.29,43.5425,20.39,40.79,8.85,759.6,74.8333333333,4.6666666667,38.1666666667,4.5166666667,0.6715937634,0.6715937634 -40,0,22.2,38.09,19.89,40.1333333333,23.3566666667,37.4,22.6,35,20.39,44.16,8.5333333333,26.9266666667,21.89,36.38,22.29,43.1566666667,20.39,40.79,8.7,759.6,75.6666666667,4.3333333333,36.3333333333,4.5333333333,24.5794999646,24.5794999646 -50,0,22.26,38.1633333333,19.9266666667,40.23,23.23,37.1933333333,22.6,35.036,20.4175,43.37,8.6,27.3266666667,21.85,35.87,22.26,42.5633333333,20.39,40.73,8.55,759.6,76.5,4,34.5,4.55,8.3067880361,8.3067880361 -70,0,22.29,38,19.9266666667,40.1566666667,23.1666666667,36.9,22.6,35.2357142857,20.5,42.8,8.7266666667,27.43,21.8614285714,35.4657142857,22.2,42.1566666667,20.39,40.6633333333,8.4,759.6,77.3333333333,3.6666666667,32.6666666667,4.5666666667,38.4762653732,38.4762653732 -70,0,22.29,37.9333333333,20,39.9666666667,23.1,36.9,22.6,35.29,20.5,42.7333333333,8.9333333333,27.23,21.79,35.054,22.2,41.8333333333,20.39,40.59,8.25,759.6,78.1666666667,3.3333333333,30.8333333333,4.5833333333,7.2116220137,7.2116220137 -90,0,22.2,37.76,20,39.9,23.0666666667,36.76,22.6,35.29,20.5,43.4,9.13,26.7966666667,21.79,34.7842857143,22.2,41.5666666667,20.39,40.4666666667,8.1,759.6,79,3,29,4.6,46.2320057792,46.2320057792 -310,0,22.2,37.7,20,39.76,23,36.7,22.6,35.254,20.39,43.7666666667,9.2175,25.995,21.772,34.516,22.1666666667,41.2,20.39,40.3266666667,8.1,759.65,79.5,3,29,4.7,33.276250097,33.276250097 -340,0,22.2,38.4,20,39.9,23,36.7,22.6,35.2225,20.39,43.9666666667,9.36,25.0566666667,21.7,34.3214285714,22.1,41.1266666667,20.39,40.1333333333,8.1,759.7,80,3,29,4.8,1.0544842575,1.0544842575 -110,0,22.2,38.2,20.0333333333,40.03,23,36.7,22.5857142857,35.1371428571,20.39,43.7,9.5333333333,24.19,21.7,34.09,22.0666666667,40.93,20.39,39.86,8.1,759.75,80.5,3,29,4.9,22.3010516958,22.3010516958 -80,0,22.2,38.1633333333,20.1,40.09,23,36.79,22.56,35.072,20.39,43.6266666667,9.6,23.5966666667,21.7,33.94,22,40.73,20.39,39.56,8.1,759.8,81,3,29,5,43.7244984438,43.7244984438 -100,0,22.2,38.09,20.15,39.895,23,36.79,22.6,35,20.39,43.5,9.7566666667,22.8633333333,21.7,33.736,22.1,40.6633333333,20.39,39.5,8.1,759.85,81.5,3,29,5.1,37.3216679785,37.3216679785 -70,10,22.245,40.05,20.29,40.0666666667,22.9266666667,36.7,22.6,35,20.39,43.4333333333,9.9633333333,21.8633333333,21.6571428571,33.5571428571,22.1,40.53,20.39,39.3333333333,8.1,759.9,82,3,29,5.2,14.7078187088,14.7078187088 -100,20,22.29,39.9666666667,20.3566666667,40.2666666667,23,36.6266666667,22.6,35.0128571429,20.39,43.4333333333,10.2933333333,21.2633333333,21.66,33.356,22,40.1333333333,20.39,39.0666666667,8.2666666667,759.9,80.6666666667,3,30.8333333333,5.1166666667,13.0020411569,13.0020411569 -80,10,22.29,39.2266666667,20.46,39.6933333333,23,36.59,22.6,35.112,20.39,43.56,10.6266666667,19.7233333333,21.6,33.2228571429,22,39.9333333333,20.39,39.1266666667,8.4333333333,759.9,79.3333333333,3,32.6666666667,5.0333333333,43.6390068266,43.6390068266 -80,20,22.2,38.76,20.6666666667,39.36,23.0666666667,36.6633333333,22.6714285714,35.2642857143,20.39,43.5,11.0633333333,16.4666666667,21.6,33.072,22,39.76,20.39,39,8.6,759.9,78,3,34.5,4.95,3.0290952884,3.0290952884 -70,10,22.26,38.76,20.9266666667,38.8633333333,23.1,36.59,22.736,35.4,20.39,43.4333333333,11.3966666667,14.46,21.6,32.9285714286,22,39.6266666667,20.5,38.44,8.7666666667,759.9,76.6666666667,3,36.3333333333,4.8666666667,49.5041004731,49.5041004731 -610,20,22.2,38.2666666667,21,37.7233333333,23.1,36.59,22.79,35.3242857143,20.39,43.4666666667,12,11.9,21.6,32.754,22,39.5,20.5,38.1933333333,8.9333333333,759.9,75.3333333333,3,38.1666666667,4.7833333333,37.9467038205,37.9467038205 -720,10,22.2,37.9333333333,21.1,37,23.1666666667,36.6266666667,22.85,35.2,20.39,43.2666666667,12,10.3666666667,21.6,32.6371428571,22,39.5,20.5,37.86,9.1,759.9,74,3,40,4.7,46.730283252,46.730283252 -400,20,22.2,37.7,21.1,37.06,23.32,37.4975,22.89,35.2,20.39,43.1633333333,12.13,10.2666666667,21.6,32.572,21.89,39.3633333333,20.5,37.7,9.3,759.9,72.8333333333,3.1666666667,38.1666666667,4.65,15.2693657437,15.2693657437 -280,10,22.2,37.6266666667,21.2633333333,37.06,23.7266666667,38.7633333333,22.89,35.2,20.39,43.09,12.3233333333,9.7333333333,21.6,32.4714285714,21.89,39.23,20.5,37.76,9.5,759.9,71.6666666667,3.3333333333,36.3333333333,4.6,40.6784018385,40.6784018385 -310,20,22.2,37.7,21.4633333333,36.86,24.1966666667,39.5666666667,22.9528571429,35.2,20.39,42.9,12.7566666667,9.2933333333,21.6,32.4,21.89,39.145,20.39,37.6266666667,9.7,759.9,70.5,3.5,34.5,4.55,4.4912926154,4.4912926154 -260,10,22.2,38.0333333333,21.6333333333,36.43,24.4633333333,39.5666666667,23,35.116,20.39,42.9,13.03,8.4266666667,21.6,32.3057142857,21.89,39.09,20.39,37.7,9.9,759.9,69.3333333333,3.6666666667,32.6666666667,4.5,43.8110404764,43.8110404764 -320,20,22.29,38.8266666667,21.7,36.43,24.5,38.3233333333,23,34.9571428571,20.39,42.95,13.1666666667,7.3233333333,21.6,32.214,21.89,39.03,20.39,37.79,10.1,759.9,68.1666666667,3.8333333333,30.8333333333,4.45,7.7293086564,7.7293086564 -310,10,22.3566666667,38.6933333333,21.73,36.8266666667,24.5666666667,37.79,23,35,20.39,43.03,13.4333333333,6.59,21.6,32.07875,21.89,38.9,20.39,37.8633333333,10.3,759.9,67,4,29,4.4,20.1810201746,20.1810201746 -320,20,22.3233333333,38.59,21.8566666667,36.9,24.7633333333,37.8266666667,23.0571428571,35.0514285714,20.39,43.03,13.845,5.85,21.6,32,21.89,38.8266666667,20.4633333333,38.1333333333,10.4333333333,759.8833333333,66.8333333333,4.1666666667,28.8333333333,4.5,17.6885721739,17.6885721739 -130,20,22.39,38.59,22.0333333333,36.6633333333,25.03,37.9,23.1,35.156,20.4633333333,42.9,14.2566666667,4.5333333333,21.64,31.934,21.89,38.6633333333,20.39,38.1333333333,10.5666666667,759.8666666667,66.6666666667,4.3333333333,28.6666666667,4.6,1.0392930475,1.0392930475 -680,10,22.3233333333,38.7666666667,22.2266666667,36.53,25.2,37.9666666667,23.1714285714,35.2,20.4633333333,42.9,14.6633333333,4.46,21.6142857143,31.8771428571,21.89,38.59,20.4633333333,38.29,10.7,759.85,66.5,4.5,28.5,4.7,0.0909996335,0.0909996335 -610,20,22.39,38.6333333333,22.46,36.2233333333,25.2,37.9666666667,23.2,35.2,20.4633333333,42.8633333333,14.6633333333,4.2966666667,21.66,31.956,21.89,38.5,20.4633333333,38.3633333333,10.8333333333,759.8333333333,66.3333333333,4.6666666667,28.3333333333,4.8,29.5065433136,29.5065433136 -340,10,22.39,38.59,22.6,35.9633333333,25.3233333333,38.5666666667,23.2771428571,35.2771428571,20.39,42.73,14.2566666667,4.63,21.7,32,21.89,38.4333333333,20.4633333333,38.26,10.9666666667,759.8166666667,66.1666666667,4.8333333333,28.1666666667,4.9,27.5129733724,27.5129733724 -260,20,22.39,38.4633333333,22.73,35.6933333333,25.53,39.1,23.35,35.236,20.5,42.7,14.2633333333,5.0233333333,21.7,32,21.89,38.29,20.39,38.26,11.1,759.8,66,5,28,5,1.7993757152,1.7993757152 -290,10,22.4266666667,38.53,22.815,35.425,25.8233333333,39.4633333333,23.39,35.2,20.5,42.6266666667,14.3233333333,4.83,21.7,31.9057142857,21.89,38.29,20.5,38.29,11.05,759.8,66.6666666667,5,27.3333333333,5.0666666667,16.9924298185,16.9924298185 -270,0,22.5,38.4975,22.89,35.3266666667,25.9633333333,39.9233333333,23.5,35.29,20.5,42.59,14.2566666667,4.7266666667,21.7,31.89,21.89,38.26,20.4266666667,38.23,11,759.8,67.3333333333,5,26.6666666667,5.1333333333,33.5511242389,33.5511242389 -260,0,22.5,38.4,22.9266666667,35.1333333333,26.23,40.1266666667,23.5,35.1971428571,20.5,42.53,14.1966666667,4.9933333333,21.7257142857,31.8185714286,21.89,38.2,20.5,38.29,10.95,759.8,68,5,26,5.2,7.7871301677,7.7871301677 -250,0,22.5,38.3633333333,23,34.86,26.3566666667,40.26,23.4175,35.0225,20.5,42.5,14.33,5.0966666667,21.79,31.79,21.89,38.09,20.4266666667,38.23,10.9,759.8,68.6666666667,5,25.3333333333,5.2666666667,12.2275711386,12.2275711386 -260,0,22.5,38.0966666667,23.0333333333,34.7,26.5333333333,40.3333333333,23.39,34.98,20.5,42.4333333333,14.59,4.43,21.79,31.7385714286,21.89,38.09,20.5,38.2,10.85,759.8,69.3333333333,5,24.6666666667,5.3333333333,36.8302180199,36.8302180199 -220,0,22.5333333333,38.0266666667,23.1,34.6266666667,26.6,40,23.39,34.9,20.5,42.4,14.89,4.0666666667,21.79,31.7,21.9266666667,38.03,20.5,38.2,10.8,759.8,70,5,24,5.4,48.9512162516,48.9512162516 -160,0,22.6,37.8266666667,23.1333333333,34.59,26.7,39.6,23.35,34.856,20.5666666667,42.4,15.1633333333,3.8,21.8328571429,31.7,22,38.1633333333,20.5,38.2,10.9666666667,759.7166666667,69.3333333333,5,26.6666666667,5.45,11.2622766872,11.2622766872 -130,0,22.6,37.76,23.2,34.53,26.6333333333,39.1333333333,23.3328571429,34.8214285714,20.6,42.4,15.26,3.2333333333,21.89,31.7,22.1,38.53,20.5,38.1633333333,11.1333333333,759.6333333333,68.6666666667,5,29.3333333333,5.5,4.362707946,4.362707946 -90,0,22.6,37.7,23.2,34.4666666667,26.445,38.44,23.33,34.79,20.5333333333,42.4,14.8666666667,4.0266666667,21.89,31.6428571429,22.1666666667,38.6633333333,20.5,38.09,11.3,759.55,68,5,32,5.55,45.5661329441,45.5661329441 -750,0,22.7,37.9333333333,23.1333333333,34.4,26.26,38.06,23.29,34.79,20.6,42.4333333333,14.96,3.8633333333,21.89,31.6,22.23,38.8266666667,20.5,38.09,11.4666666667,759.4666666667,67.3333333333,5,34.6666666667,5.6,36.5105634322,36.5105634322 -720,0,22.7,37.9933333333,23.1333333333,34.4333333333,26.1333333333,38.1933333333,23.29,34.79,20.6,42.5,15.1,2.8633333333,21.89,31.6,22.365,38.9,20.5,38.1633333333,11.6333333333,759.3833333333,66.6666666667,5,37.3333333333,5.65,7.1483791224,7.1483791224 -350,0,22.7,38.0666666667,23.2,34.5,26.3233333333,38.8,23.29,34.7771428571,20.6,42.5,15.1,3.53,22,31.5,22.4633333333,38.9,20.5,38.9966666667,11.8,759.3,66,5,40,5.7,2.2794177756,2.2794177756 -280,0,22.7,37.9266666667,23.2,34.4666666667,26.53,39.1933333333,23.236,34.7,20.6,42.59,15.5,1.73,22,31.4842857143,22.6333333333,38.9333333333,20.5666666667,39.59,11.9833333333,759.2333333333,65.1666666667,5.1666666667,40,5.6666666667,41.4066629484,41.4066629484 -290,0,22.79,37.7,23.2,34.4,26.73,39.3633333333,23.2,34.6685714286,20.6,42.59,15.7,1,22,31.37,22.7,38.9333333333,20.6,39.59,12.1666666667,759.1666666667,64.3333333333,5.3333333333,40,5.6333333333,25.4220614792,25.4220614792 -260,0,22.79,37.7,23.2,34.29,26.8566666667,39.23,23.2,34.59,20.6,42.59,15.8666666667,1,22,31.2642857143,22.76,38.6333333333,20.6,39.59,12.35,759.1,63.5,5.5,40,5.6,35.3067082004,35.3067082004 -260,0,22.79,37.4666666667,23.2,34.29,27.0333333333,39.56,23.2,34.5771428571,20.6666666667,42.6633333333,16,1,22,31.1,22.7,38.3,20.6333333333,39.6266666667,12.5333333333,759.0333333333,62.6666666667,5.6666666667,40,5.5666666667,23.1617997517,23.1617997517 -240,0,22.79,37.3266666667,23.2,34.1633333333,27.1666666667,39.36,23.2,34.5,20.6333333333,42.53,16.0333333333,1,22,30.9371428571,22.73,37.93,20.7,39.7,12.7166666667,758.9666666667,61.8333333333,5.8333333333,40,5.5333333333,19.1288726288,19.1288726288 -110,0,22.79,37.06,23.1333333333,34.09,27.2,39.1,23.2,34.4285714286,20.7,42.59,16.4333333333,1,22,30.772,22.73,37.6566666667,20.6,39.3633333333,12.9,758.9,61,6,40,5.5,33.5354498122,33.5354498122 -80,0,22.79,36.9333333333,23.1,34.09,27.2,38.6933333333,23.14,34.356,20.7,42.5,16.7,1,22,30.6714285714,22.73,37.3633333333,20.6666666667,39.29,12.9833333333,758.8333333333,59.8333333333,6,40,5.2833333333,47.478561406,47.478561406 -90,0,22.8566666667,36.7966666667,23.1,34.03,27.1333333333,37.99,23.1142857143,34.3214285714,20.6333333333,42.36,16.9,1,22,30.5,22.79,37.29,20.6666666667,39.1333333333,13.0666666667,758.7666666667,58.6666666667,6,40,5.0666666667,10.3265067912,10.3265067912 -80,0,22.8566666667,36.59,23.1,33.95,26.9266666667,37.2633333333,23.1,34.272,20.7,42.26,17.0666666667,1,22,30.39,22.79,37.26,20.6666666667,39,13.15,758.7,57.5,6,40,4.85,1.0701991618,1.0701991618 -90,0,22.84,36.395,23.0666666667,33.8633333333,26.76,36.7233333333,23.1,34.2385714286,20.7,42.1266666667,17.0666666667,1,22,30.3185714286,22.79,37.1266666667,20.6333333333,38.9,13.2333333333,758.6333333333,56.3333333333,6,40,4.6333333333,28.6389280576,28.6389280576 -80,0,22.79,36.1633333333,23,33.79,26.6333333333,36.53,23.1,34.2,20.7,42,16.9,1,22,30.39,22.79,37.1633333333,20.6333333333,38.8266666667,13.3166666667,758.5666666667,55.1666666667,6,40,4.4166666667,12.4619073933,12.4619073933 -80,0,22.79,36.09,23,33.79,26.4633333333,36.26,23.1,34.2,20.7,41.9333333333,16.7,1,22,30.3471428571,22.79,37.09,20.6,38.645,13.4,758.5,54,6,40,4.2,49.0544197499,49.0544197499 -60,0,22.8566666667,36.1266666667,22.9266666667,33.6566666667,26.3233333333,36.1266666667,23.1,34.2,20.7,41.8633333333,16.53,1,22,30.39,22.79,37.1566666667,20.6,38.59,13.4166666667,758.4333333333,55,6,40,4.45,23.0947911623,23.0947911623 -330,0,22.8566666667,36.3333333333,22.8566666667,33.7,26.26,35.9,23.0285714286,34.1214285714,20.7,41.79,16.3233333333,1,22,30.4528571429,22.79,37.43,20.6,38.53,13.4333333333,758.3666666667,56,6,40,4.7,1.7526231823,1.7526231823 -440,0,22.89,36.6,22.79,33.8333333333,26.1333333333,35.5,23,34.2,20.76,41.76,16.03,1,22,30.5,22.89,37.9633333333,20.6,38.5,13.45,758.3,57,6,40,4.95,49.2978285416,49.2978285416 -310,0,22.89,36.4,22.79,34.03,26.0666666667,35.9966666667,23,34.2,20.7,41.7,15.6966666667,1,21.9685714286,30.5285714286,22.89,38.2233333333,20.6,38.5,13.4666666667,758.2333333333,58,6,40,5.2,12.9304457572,12.9304457572 -440,0,22.89,36.7566666667,22.79,34.09,26.3266666667,37.0566666667,23,34.254,20.7,41.79,15.4633333333,1,22,30.6,23,38.4,20.6333333333,38.4,13.4833333333,758.1666666667,59,6,40,5.45,15.4713401571,15.4713401571 -570,0,22.89,36.7566666667,22.79,34.23,26.6,37.545,23,34.29,20.76,41.79,15.33,1,21.9371428571,30.5857142857,23.0666666667,38.4,20.6333333333,38.3266666667,13.5,758.1,60,6,40,5.7,44.6308329003,44.6308329003 -370,10,22.89,36.59,22.73,34.3633333333,26.9266666667,37.9333333333,23,34.3685714286,20.7,41.8266666667,15.5333333333,1.1933333333,21.934,30.56,23.2,38.5,20.6333333333,38.3266666667,13.45,758.0166666667,59.5,6,40,5.55,11.1669793958,11.1669793958 -270,0,22.89,36.53,22.76,34.4,27.1333333333,38.4666666667,23,34.4,20.745,41.9,15.66,1,21.9214285714,30.6,23.23,38.53,20.6333333333,38.2666666667,13.4,757.9333333333,59,6,40,5.4,36.1722874804,36.1722874804 -270,0,22.89,36.6633333333,22.7,34.4666666667,27.29,38.5,22.9528571429,34.4142857143,20.7,41.9,15.79,1,21.89,30.6,23.29,38.59,20.6666666667,38.2233333333,13.35,757.85,58.5,6,40,5.25,27.3552607629,27.3552607629 -150,0,22.89,36.59,22.6666666667,34.56,27.3566666667,38.36,22.934,34.5,20.73,42,15.3233333333,1,21.9371428571,30.6,23.29,38.59,20.6,38.03,13.3,757.7666666667,58,6,40,5.1,47.7880399092,47.7880399092 -120,0,22.8233333333,36.53,22.6,34.56,27.4633333333,38.1933333333,22.89,34.4714285714,20.73,42,15.13,1,21.934,30.56,23.29,38.59,20.6,37.9666666667,13.25,757.6833333333,57.5,6,40,4.95,14.3099587411,14.3099587411 -130,0,22.89,36.59,22.5666666667,34.6266666667,27.3233333333,37.8,22.89,34.46,20.79,42,15,1.4,21.89,30.5571428571,23.29,38.59,20.6,37.9,13.2,757.6,57,6,40,4.8,31.5927963122,31.5927963122 -170,0,22.79,36.5,22.5,34.7,27.1666666667,37.43,22.89,34.4,20.79,41.9333333333,14.9266666667,1.6666666667,21.89,30.54,23.29,38.6633333333,20.6,37.76,13.1666666667,757.55,57,5.8333333333,40,4.7666666667,8.3010139409,8.3010139409 -440,0,22.8566666667,37.2266666667,22.4633333333,34.83,26.96,36.6966666667,22.89,34.42,20.79,42,14.7633333333,2.5666666667,21.89,30.6,23.3233333333,38.7,20.6,37.7,13.1333333333,757.5,57,5.6666666667,40,4.7333333333,8.6875100154,8.6875100154 -300,0,22.89,37.8633333333,22.39,35.3633333333,26.79,36.2933333333,22.89,34.5,20.79,42,14.63,2.9,21.89,30.6,23.39,38.7,20.6,37.7,13.1,757.45,57,5.5,40,4.7,46.8883060501,46.8883060501 -380,10,22.89,37.53,22.3566666667,35.53,26.93,37.3666666667,22.89,34.5,20.79,42.09,14.2633333333,3.23,21.89,30.6285714286,23.39,38.59,20.6,37.7,13.0666666667,757.4,57,5.3333333333,40,4.6666666667,18.1246469845,18.1246469845 -870,0,22.89,37.59,22.2675,35.74,27.1633333333,38.0666666667,22.8328571429,34.5771428571,20.79,42.1633333333,14.19,3.3633333333,21.83,30.6,23.4633333333,38.6633333333,20.6,37.6633333333,13.0333333333,757.35,57,5.1666666667,40,4.6333333333,45.5272551626,45.5272551626 -420,0,22.9175,39.5425,22.2,36.1966666667,27.3566666667,38.26,22.85,34.752,20.73,42.23,14.0666666667,3.53,21.8185714286,30.6,23.5,38.59,20.6,37.6633333333,13,757.3,57,5,40,4.6,17.6503295545,17.6503295545 -230,0,23.1333333333,45.1933333333,22.2,38.9,27.4266666667,38.29,22.89,35,20.79,42.43,13.9266666667,3.9233333333,21.87,30.6,23.5,38.39,20.6,37.4333333333,12.9666666667,757.3,57.1666666667,4.8333333333,40,4.6166666667,15.3216475388,15.3216475388 -180,0,23.1666666667,44.5,22.1333333333,40.16,27.5,38.3633333333,22.85,34.96,20.79,42.89,13.8,4.5633333333,21.79,30.6,23.5,38.33,20.6,37.595,12.9333333333,757.3,57.3333333333,4.6666666667,40,4.6333333333,44.8387277662,44.8387277662 -110,0,23.1666666667,45.0266666667,22.0666666667,39.99,27.6,38.4666666667,22.8185714286,34.8528571429,20.79,43.2233333333,13.6666666667,4.9566666667,21.79,30.6,23.5666666667,38.8633333333,20.6,37.8333333333,12.9,757.3,57.5,4.5,40,4.65,14.3939846312,14.3939846312 -110,0,23.2,43.5666666667,22,39.5966666667,27.5333333333,38.1933333333,22.79,34.9,20.79,43.6566666667,13.5,5.7933333333,21.79,30.6857142857,23.6,39.2666666667,20.6,38.1266666667,12.8666666667,757.3,57.6666666667,4.3333333333,40,4.6666666667,29.9494322971,29.9494322971 -110,0,23.2,42.5666666667,21.9633333333,39.36,27.3266666667,37.7666666667,22.79,34.9285714286,20.79,43.93,13.4266666667,6.3333333333,21.79,30.71125,23.6666666667,39.7333333333,20.6,37.7933333333,12.8333333333,757.3,57.8333333333,4.1666666667,40,4.6833333333,42.007853929,42.007853929 -110,0,23.2,41.5633333333,21.89,39.36,27.0666666667,37.1,22.79,35.036,20.79,44,13.16,6.8966666667,21.79,30.79,23.73,40.1266666667,20.6,36.99,12.8,757.3,58,4,40,4.7,18.3193481294,18.3193481294 -110,0,23.2,41.1566666667,21.8566666667,39.1333333333,26.76,36.1333333333,22.79,35.1057142857,20.79,44,13.0333333333,7.4233333333,21.79,30.8185714286,23.79,40.2,20.5333333333,36.5966666667,12.7166666667,757.2166666667,58.5,4.1666666667,40,4.7333333333,10.6118762516,10.6118762516 -120,0,23.2,40.6933333333,21.79,38.9333333333,26.6333333333,35.8,22.772,35.156,20.79,44,12.86,7.9333333333,21.754,30.89,23.79,40.29,20.5,36.2233333333,12.6333333333,757.1333333333,59,4.3333333333,40,4.7666666667,48.0622025789,48.0622025789 -100,0,23.2,40.36,21.7,38.76,26.34,35.59,22.7385714286,35.2,20.79,44,12.695,8.625,21.7,30.9528571429,23.79,40.3633333333,20.5,36.03,12.55,757.05,59.5,4.5,40,4.8,40.227706416,40.227706416 -100,0,23.2,40.06,21.7,38.6266666667,26.1666666667,35.59,22.7,35.2,20.79,43.995,12.5333333333,9.6333333333,21.7,31.02,23.84,40.645,20.5,35.9,12.4666666667,756.9666666667,60,4.6666666667,40,4.8333333333,1.4931352343,1.4931352343 -90,0,23.2,39.9333333333,21.6,38.3633333333,26.0333333333,35.59,22.7,35.2128571429,20.79,43.9,12.36,10.3933333333,21.6714285714,31.0714285714,23.89,40.8333333333,20.5,35.8266666667,12.3833333333,756.8833333333,60.5,4.8333333333,40,4.8666666667,12.7573320409,12.7573320409 -90,0,23.1666666667,39.6633333333,21.5333333333,38.29,25.8566666667,35.2,22.7,35.29,20.79,43.9,12.2266666667,10.9333333333,21.7,31.2,23.89,40.6266666667,20.39,35.7,12.3,756.8,61,5,40,4.9,14.4362200866,14.4362200866 -120,0,23.1666666667,39.53,21.5,38.29,25.73,35.2,22.7,35.3685714286,20.79,44,12.0666666667,11.2933333333,21.6857142857,31.2385714286,23.89,40.43,20.39,35.6266666667,12.1666666667,756.7666666667,61.8333333333,4.8333333333,40,4.95,0.8025215939,0.8025215939 -100,0,23.1,39.4,21.4266666667,38.23,25.6666666667,35.2,22.7,35.4,20.79,44,11.9266666667,11.5666666667,21.64,31.236,23.89,40.23,20.39,35.5,12.0333333333,756.7333333333,62.6666666667,4.6666666667,40,5,8.4904301213,8.4904301213 -110,0,23.1,39.1266666667,21.39,38.23,25.5333333333,35.2,22.7,35.4,20.79,44.06,11.8,11.5333333333,21.6,31.2,23.9266666667,40.06,20.39,35.5,11.9,756.7,63.5,4.5,40,5.05,18.8602945302,18.8602945302 -100,0,23.1,38.8633333333,21.3233333333,38.29,25.4633333333,35.23,22.6857142857,35.3371428571,20.79,43.9333333333,11.7266666667,11.6,21.6,31.254,23.9266666667,39.9333333333,20.39,35.4,11.7666666667,756.6666666667,64.3333333333,4.3333333333,40,5.1,49.4105564896,49.4105564896 -110,0,23.1,38.73,21.29,38.4,25.39,35.29,22.6,35.29,20.79,43.9,11.6,12.23,21.6,31.2514285714,23.89,39.7233333333,20.3233333333,35.3266666667,11.6333333333,756.6333333333,65.1666666667,4.1666666667,40,5.15,28.1034988002,28.1034988002 -100,0,23.1,38.59,21.2675,38.475,25.29,35.23,22.6428571429,35.3371428571,21.5966666667,68.6933333333,11.5333333333,13.2966666667,21.6,31.29,23.89,39.4633333333,20.29,35.29,11.5,756.6,66,4,40,5.2,18.2808074867,18.2808074867 -100,0,23.1,38.59,21.2,38.56,25.29,35.29,22.6,35.29,22.2933333333,77.5,11.36,14.73,21.6,31.3614285714,23.9266666667,40.03,20.29,35.29,11.3666666667,756.65,66.8333333333,4.1666666667,40,5.25,48.0101741152,48.0101741152 -90,0,23.1,38.59,21.2,38.73,25.26,35.2,22.6,35.29,21.8933333333,77.7666666667,11.2266666667,15.5233333333,21.6,31.5,24,40.43,20.29,35.4,11.2333333333,756.7,67.6666666667,4.3333333333,40,5.3,45.8135567023,45.8135567023 -50,10,23.1,38.59,21.1333333333,38.8633333333,25.2,35.26,22.6,35.356,21.53,78.3633333333,11.16,16.1966666667,21.6,31.5571428571,24,40.59,20.29,35.425,11.1,756.75,68.5,4.5,40,5.35,13.6930670589,13.6930670589 -50,0,23.0333333333,38.9966666667,21.1,39,25.1,35.23,22.6,35.3214285714,21.39,77.7566666667,11.0333333333,17.2633333333,21.56,31.66,24,40.7966666667,20.29,35.6933333333,10.9666666667,756.8,69.3333333333,4.6666666667,40,5.4,27.0311568282,27.0311568282 -40,0,23,39.4,21.1,39,25.1,35.43,22.6,35.29,21.39,76.1933333333,10.7333333333,18.7,21.6,31.7642857143,24,41.3,20.29,36.1333333333,10.8333333333,756.85,70.1666666667,4.8333333333,40,5.45,12.253051938,12.253051938 -50,0,22.9266666667,39.3266666667,21,39,25.0666666667,35.53,22.5857142857,35.29,21.3233333333,74.5933333333,10.6,19.2266666667,21.6,31.89,24,41.6933333333,20.29,36.6,10.7,756.9,71,5,40,5.5,24.6531591169,24.6531591169 -60,0,22.89,39.23,21,39.06,25,35.59,22.52,35.29,21.29,72.7933333333,10.4633333333,19.6966666667,21.6,31.9528571429,24,42.1933333333,20.3233333333,37.0666666667,10.5833333333,756.9,71.3333333333,5,38.1666666667,5.4833333333,16.5516282083,16.5516282083 -50,0,22.89,39.29,20.89,39.1266666667,25,35.79,22.5571428571,35.29,21.23,71.06,10.33,19.9633333333,21.6,32.018,23.9266666667,42.66,20.3233333333,37.3333333333,10.4666666667,756.9,71.6666666667,5,36.3333333333,5.4666666667,10.6245446368,10.6245446368 -60,0,22.79,39.23,20.8233333333,39.1266666667,25,35.79,22.5,35.29,21.2,68.9966666667,10.245,21.09,21.6,32.0514285714,23.89,43.1566666667,20.39,37.6266666667,10.35,756.9,72,5,34.5,5.45,39.983136009,39.983136009 -50,0,22.79,39.23,20.79,39.1266666667,25,35.9,22.5,35.2771428571,21.1333333333,67.5233333333,10.0666666667,21.29,21.6,32.09,23.89,43.3633333333,20.39,37.76,10.2333333333,756.9,72.3333333333,5,32.6666666667,5.4333333333,11.8855115725,11.8855115725 -60,0,22.79,39.29,20.73,39.2,25,35.925,22.5,35.254,21.1666666667,65.96,10,21.23,21.6,32.1842857143,23.89,43.5,20.39,37.9633333333,10.1166666667,756.9,72.6666666667,5,30.8333333333,5.4166666667,35.9380580834,35.9380580834 -60,0,22.73,39.23,20.7,39.23,25,36,22.5,35.29,21.1,64.595,9.89,21.5333333333,21.6,32.2,23.84,43.7,20.39,38.1633333333,10,756.9,73,5,29,5.4,25.7433934137,25.7433934137 -60,0,22.7,39.2,20.6333333333,39.29,24.89,36,22.5,35.2,21.1,63.1666666667,9.83,21.6,21.6,32.2771428571,23.8233333333,43.8266666667,20.39,38.3266666667,9.8833333333,756.9166666667,72.6666666667,5,30.8333333333,5.2166666667,23.5222273157,23.5222273157 -50,0,22.7,39.2,20.6,39.3266666667,24.89,36,22.5,35.2,21.1,61.5,9.7333333333,22.03,21.5571428571,32.29,23.76,43.9633333333,20.4633333333,38.4666666667,9.7666666667,756.9333333333,72.3333333333,5,32.6666666667,5.0333333333,38.061008486,38.061008486 -50,0,22.7,39.2,20.6,39.4666666667,24.89,36.09,22.478,35.178,21.1,59.8333333333,9.5333333333,24.03,21.5,32.29,23.7,44.1633333333,20.5,38.6266666667,9.65,756.95,72,5,34.5,4.85,27.0099307643,27.0099307643 -50,0,22.6333333333,39.1266666667,20.5,39.5,24.8233333333,36.09,22.4371428571,35.1371428571,21,58.5566666667,9.2333333333,27.9666666667,21.5142857143,32.3057142857,23.7,44.4633333333,20.5,38.76,9.5333333333,756.9666666667,71.6666666667,5,36.3333333333,4.6666666667,9.4697388238,9.4697388238 -60,0,22.6,39.09,20.5,39.56,24.79,36.09,22.39,35.134,21,57.7566666667,8.96,30.9666666667,21.56,32.4,23.6333333333,44.59,20.4266666667,38.8266666667,9.4166666667,756.9833333333,71.3333333333,5,38.1666666667,4.4833333333,35.6502691749,35.6502691749 -50,0,22.6,39.09,20.39,39.59,24.79,36.09,22.39,35.1685714286,21,57.1,8.5,36.0333333333,21.5285714286,32.4,23.6,44.9566666667,20.5,38.9666666667,9.3,757,71,5,40,4.3,13.5674176854,13.5674176854 -60,0,22.6,39,20.39,39.6633333333,24.79,36.2,22.39,35.2,21,56.6933333333,8.1666666667,40.2333333333,21.5,32.4,23.6,45.43,20.4633333333,39.09,9.05,757,73.6666666667,5,37.8333333333,4.55,22.1746926196,22.1746926196 -60,0,22.6,39,20.29,39.845,24.8566666667,36.26,22.39,35.2,21,56.2233333333,7.9333333333,44.53,21.5,32.4857142857,23.5666666667,45.6266666667,20.4633333333,39.2233333333,8.8,757,76.3333333333,5,35.6666666667,4.8,44.8182675173,44.8182675173 -50,0,22.5,39.045,20.29,40.03,24.9266666667,36.4,22.39,35.29,21,55.9633333333,7.7266666667,48.1233333333,21.5,32.5,23.5,45.76,20.5,39.53,8.55,757,79,5,33.5,5.05,24.0245847846,24.0245847846 -60,0,22.5666666667,39.06,20.23,40.03,24.9266666667,36.4,22.39,35.334,20.9633333333,55.6633333333,7.56,50.5333333333,21.5,32.5642857143,23.5333333333,46.1566666667,20.5,39.59,8.3,757,81.6666666667,5,31.3333333333,5.3,27.3368772003,27.3368772003 -60,0,22.5,39.06,20.2,40.1266666667,25,36.5,22.3757142857,35.4,20.9633333333,55.4633333333,7.5,51.7933333333,21.5,32.59,23.5333333333,46.29,20.5,39.59,8.05,757,84.3333333333,5,29.1666666667,5.55,42.2372951754,42.2372951754 -50,0,22.5,39.09,20.1333333333,40.26,25,36.56,22.35,35.42,20.89,55.1333333333,7.3666666667,52.7266666667,21.5,32.6528571429,23.5,46.3633333333,20.5,39.73,7.8,757,87,5,27,5.8,35.4199582362,35.4199582362 -50,0,22.5,39.09,20.1,40.4333333333,25,36.6266666667,22.3471428571,35.5,20.89,54.86,7.3,53.2666666667,21.5,32.7,23.5,46.29,20.5,39.8633333333,7.7166666667,756.9833333333,87.3333333333,4.8333333333,27.1666666667,5.7666666667,22.2517043003,22.2517043003 -50,0,22.5,39.1266666667,20.0333333333,40.5,25,36.7,22.29,35.536,20.89,54.6633333333,7.19,53.85,21.5,32.7,23.4633333333,46.26,20.5,40,7.6333333333,756.9666666667,87.6666666667,4.6666666667,27.3333333333,5.7333333333,20.7502382225,20.7502382225 -40,0,22.5,39.1266666667,20.0666666667,40.59,25,36.73,22.29,35.5642857143,20.89,54.4633333333,7.1566666667,54.5966666667,21.5,32.736,23.39,46.26,20.5,40.06,7.55,756.95,88,4.5,27.5,5.7,19.8427985655,19.8427985655 -50,0,22.4266666667,39.1266666667,20,40.6633333333,24.9266666667,36.8633333333,22.29,35.59,20.89,54.26,7.09,54.99,21.5,32.79,23.39,46.3266666667,20.5,40.1266666667,7.4666666667,756.9333333333,88.3333333333,4.3333333333,27.6666666667,5.6666666667,5.4916733527,5.4916733527 -60,0,22.5,39.2,19.89,40.79,24.89,36.9333333333,22.29,35.59,20.89,54.1266666667,7.09,55.23,21.5,32.79,23.39,46.4,20.5,40.26,7.3833333333,756.9166666667,88.6666666667,4.1666666667,27.8333333333,5.6333333333,21.8015796389,21.8015796389 -50,0,22.4633333333,39.1633333333,19.89,40.8633333333,24.89,37,22.29,35.656,20.89,53.8633333333,7.09,55.3633333333,21.5,32.8371428571,23.3566666667,46.4,20.5,40.3266666667,7.3,756.9,89,4,28,5.6,40.5270105344,40.5270105344 -60,0,22.39,39.09,19.89,41,24.89,37.045,22.29,35.6528571429,20.815,53.6175,7.09,55.4,21.5,32.9,23.29,46.4,20.5,40.4666666667,7.2666666667,756.85,88.3333333333,4,30,5.4666666667,36.2815357978,36.2815357978 -60,0,22.39,39.09,19.89,41.06,24.89,37.09,22.29,35.7,20.79,53.36,7.03,54.5333333333,21.5,32.9,23.29,46.4,20.5,40.5,7.2333333333,756.8,87.6666666667,4,32,5.3333333333,15.0042696972,15.0042696972 -50,0,22.39,39.09,19.79,41.09,24.89,37.09,22.2514285714,35.6214285714,20.8566666667,53.3333333333,7,53.4933333333,21.478,32.878,23.29,46.26,20.5,40.56,7.2,756.75,87,4,34,5.2,3.8064328139,3.8064328139 -60,0,22.39,39.09,19.79,41.09,24.89,37.2,22.29,35.59,20.79,53.0666666667,7,52.36,21.39,32.8214285714,23.23,46.0666666667,20.5333333333,40.7,7.1666666667,756.7,86.3333333333,4,36,5.0666666667,6.585831847,6.585831847 -60,0,22.39,39.09,19.76,41.1266666667,24.89,37.2,22.2385714286,35.5385714286,20.79,52.8633333333,6.9333333333,51.3966666667,21.39,32.9,23.2,45.8633333333,20.6,40.76,7.1333333333,756.65,85.6666666667,4,38,4.9333333333,37.8464593086,37.8464593086 -50,0,22.29,39.09,19.7,41.2,24.89,37.2,22.2,35.5,20.79,52.79,7,50.73,21.4371428571,32.8528571429,23.2,45.79,20.5333333333,40.79,7.1,756.6,85,4,40,4.8,40.0418720208,40.0418720208 -50,0,22.29,39.09,19.7,41.2,24.89,37.26,22.2,35.5,20.79,52.6633333333,7,50.33,21.456,32.834,23.2,45.6633333333,20.5333333333,40.8633333333,7.0666666667,756.6,84.6666666667,4.1666666667,40,4.6833333333,34.2622281751,34.2622281751 -50,0,22.29,39.06,19.7,41.26,24.89,37.29,22.2,35.46,20.79,52.53,7,50.0566666667,21.4685714286,32.79,23.2,45.53,20.6,40.9333333333,7.0333333333,756.6,84.3333333333,4.3333333333,40,4.5666666667,0.5902688019,0.5902688019 -50,0,22.29,39,19.65,41.245,24.89,37.29,22.2,35.4285714286,20.73,52.3633333333,6.9,50.0266666667,21.39,32.7675,23.2,45.5,20.6,41,7,756.6,84,4.5,40,4.45,36.6805962054,36.6805962054 -50,0,22.29,38.9666666667,19.6,41.26,24.8233333333,37.23,22.2,35.4,20.79,52.23,6.9,49.8266666667,21.39,32.736,23.2,45.5,20.6,41,6.9666666667,756.6,83.6666666667,4.6666666667,40,4.3333333333,35.9149489552,35.9149489552 -60,0,22.2225,38.8725,19.6,41.26,24.8233333333,37.23,22.2,35.4,20.76,52.1633333333,6.7633333333,49.9266666667,21.39,32.7128571429,23.2,45.3633333333,20.6,41.0225,6.9333333333,756.6,83.3333333333,4.8333333333,40,4.2166666667,22.5406308426,22.5406308426 -40,0,22.2,38.79,19.5666666667,41.29,24.79,37.23,22.2,35.4,20.76,52.03,6.69,50.2,21.39,32.7,23.1333333333,45.23,20.6,41.09,6.9,756.6,83,5,40,4.1,23.4183678986,23.4183678986 -70,0,22.2,38.76,19.5,41.29,24.79,37.29,22.1857142857,35.4,20.76,51.8633333333,6.59,49.8,21.39,32.7,23.1,45.06,20.6,41.09,6.8,756.5666666667,83.8333333333,4.8333333333,40,4.15,36.0023545916,36.0023545916 -50,0,22.2,38.7,19.5,41.29,24.79,37.23,22.14,35.4,20.7,51.79,6.59,50.2,21.39,32.7,23.1,45,20.6,41.09,6.7,756.5333333333,84.6666666667,4.6666666667,40,4.2,35.9653671272,35.9653671272 -60,0,22.2,38.7,19.5,41.3633333333,24.79,37.29,22.1,35.4,20.7,51.6633333333,6.59,50.2,21.39,32.7,23.1,44.79,20.6,41.2,6.6,756.5,85.5,4.5,40,4.25,39.028336748,39.028336748 -50,0,22.2,38.6266666667,19.4633333333,41.3633333333,24.79,37.29,22.1,35.4,20.7,51.59,6.5,50.23,21.39,32.7,23.1,44.73,20.6,41.2,6.5,756.4666666667,86.3333333333,4.3333333333,40,4.3,32.1238791919,32.1238791919 -60,0,22.2,38.59,19.39,41.29,24.79,37.29,22.1,35.4,20.7,51.4666666667,6.5,49.7633333333,21.39,32.7,23.0666666667,44.6333333333,20.6,41.2,6.4,756.4333333333,87.1666666667,4.1666666667,40,4.35,17.7146518603,17.7146518603 -50,0,22.1333333333,38.59,19.39,41.4,24.79,37.3633333333,22.1,35.4,20.7,51.3266666667,6.4,48.9966666667,21.39,32.7,23,44.4333333333,20.6,41.2,6.3,756.4,88,4,40,4.4,47.1083041746,47.1083041746 -50,0,22.1,38.59,19.39,41.4,24.79,37.3633333333,22.1,35.4,20.7,51.2233333333,6.4,48.0566666667,21.39,32.6842857143,23,44.356,20.6,41.26,6.25,756.3666666667,88,3.8333333333,40,4.3666666667,9.9213143578,9.9213143578 -50,0,22.1,38.59,19.3566666667,41.4,24.76,37.3633333333,22.0666666667,35.29,20.7,51.09,6.4,47.2266666667,21.37,32.59,22.9842857143,44.2385714286,20.6,41.3333333333,6.2,756.3333333333,88,3.6666666667,40,4.3333333333,26.1803985806,26.1803985806 -50,0,22.1,38.5,19.29,41.4,24.7,37.3725,22.0666666667,35.29,20.7,50.95,6.4,48.0266666667,21.29,32.59,22.956,44.2,20.6,41.4,6.15,756.3,88,3.5,40,4.3,47.0427730819,47.0427730819 -50,0,22.1,38.5,19.29,41.4,24.7,37.4,22,35.2,20.7,50.79,6.3,49.0266666667,21.35,32.59,23,44.2,20.6,41.3266666667,6.1,756.2666666667,88,3.3333333333,40,4.2666666667,27.0514702657,27.0514702657 -50,0,22.1,38.4666666667,19.29,41.4,24.7,37.4,22,35.26,20.6333333333,50.73,6.3,49.7666666667,21.29,32.59,22.89,44.2,20.6,41.29,6.05,756.2333333333,88,3.1666666667,40,4.2333333333,15.2851315448,15.2851315448 -60,0,22.1,38.4,19.29,41.4333333333,24.7,37.4,22,35.29,20.6333333333,50.5,6.3,50.36,21.29,32.59,22.9175,44.10375,20.6,41.29,6,756.2,88,3,40,4.2,13.544941193,13.544941193 -50,0,22.0666666667,38.3633333333,19.23,41.4333333333,24.6,37.29,22,35.29,20.6333333333,50.4333333333,6.3666666667,50.56,21.29,32.59,22.9057142857,44.09,20.6,41.3266666667,5.9833333333,756.2,88,3.1666666667,40,4.1833333333,3.923604032,3.923604032 -60,0,22,38.29,19.2,41.4,24.6666666667,37.3633333333,22,35.29,20.6,50.26,6.4,49.7666666667,21.29,32.59,22.89,44.09,20.6,41.3266666667,5.9666666667,756.2,88,3.3333333333,40,4.1666666667,17.0239809901,17.0239809901 -50,0,22,38.26,19.2,41.4,24.6666666667,37.3633333333,22,35.29,20.6666666667,50.26,6.4,48.6933333333,21.29,32.59,22.89,44.1371428571,20.6,41.29,5.95,756.2,88,3.5,40,4.15,20.1913051424,20.1913051424 -60,0,22,38.2,19.2,41.4,24.6,37.29,22,35.29,20.6333333333,50.09,6.4,48.39,21.29,32.59,22.85,44.054,20.6,41.29,5.9333333333,756.2,88,3.6666666667,40,4.1333333333,18.7594847055,18.7594847055 -60,0,22,38.2,19.2,41.4,24.6,37.29,22,35.29,20.7,50.03,6.375,49.195,21.29,32.59,22.8471428571,44.0514285714,20.6,41.29,5.9166666667,756.2,88,3.8333333333,40,4.1166666667,32.3697642423,32.3697642423 -50,0,22,38.2,19.2,41.3266666667,24.6,37.29,21.9266666667,35.29,20.6333333333,49.79,6.3,50.53,21.29,32.5,22.85,44.112,20.6,41.29,5.9,756.2,88,4,40,4.1,40.253367112,40.253367112 -50,0,21.945,38.145,19.2,41.29,24.6,37.29,21.9266666667,35.29,20.7,49.73,6.2633333333,51.4233333333,21.29,32.5,22.8614285714,44.1685714286,20.6,41.29,5.8833333333,756.2333333333,87.8333333333,4,40,4.0333333333,0.1848793938,0.1848793938 -50,0,21.89,38.09,19.26,41.29,24.6,37.29,21.9633333333,35.29,20.6666666667,49.5266666667,6.2633333333,51.4233333333,21.29,32.536,22.85,44.156,20.6,41.3633333333,5.8666666667,756.2666666667,87.6666666667,4,40,3.9666666667,41.5900076507,41.5900076507 -50,0,21.89,38.09,19.29,41.29,24.6,37.29,21.9633333333,35.29,20.6,49.2666666667,6.4333333333,50.8,21.29,32.5257142857,22.79,44.1057142857,20.6,41.29,5.85,756.3,87.5,4,40,3.9,25.1209614333,25.1209614333 -60,0,21.89,38.09,19.29,41.23,24.6,37.29,22,35.2,20.6,49.06,6.6266666667,50.66,21.29,32.5,22.81,44.3,20.6,41.4333333333,5.8333333333,756.3333333333,87.3333333333,4,40,3.8333333333,44.3789931596,44.3789931596 -80,0,21.89,38.4966666667,19.29,41.2666666667,24.6,37.29,21.9266666667,35.2,20.6,49,6.8333333333,47.0566666667,21.29,32.4714285714,22.89,44.8428571429,20.6,41.56,5.8166666667,756.3666666667,87.1666666667,4,40,3.7666666667,33.6487517226,33.6487517226 -50,0,21.9266666667,39.1266666667,19.3566666667,41.66,24.5333333333,37.03,21.89,35.2,20.6333333333,48.7233333333,6.9666666667,43.59,21.2385714286,32.14,22.89,45.054,20.6,41.56,5.8,756.4,87,4,40,3.7,44.6486401372,44.6486401372 -60,0,22,39.1266666667,19.4266666667,42.03,24.3566666667,36.4666666667,21.89,35.2225,20.6333333333,48.39,7.1233333333,40.8266666667,21.2,31.914,22.8471428571,44.6857142857,20.6,41.4333333333,5.8833333333,756.4333333333,86.1666666667,4,40,3.6666666667,14.6680405946,14.6680405946 -50,0,22.0333333333,39.09,19.6333333333,41.9633333333,24.29,36.3266666667,21.89,35.29,20.6,47.9,7.3966666667,39.4333333333,21.2,31.7257142857,22.89,44.334,20.6333333333,41.2,5.9666666667,756.4666666667,85.3333333333,4,40,3.6333333333,35.6191253522,35.6191253522 -80,0,22.0333333333,39.09,20.0966666667,41.1233333333,24.29,36.2233333333,21.9633333333,35.29,20.6666666667,47.5666666667,7.8666666667,36.79,21.2,31.5,22.8185714286,43.9228571429,20.7,40.7333333333,6.05,756.5,84.5,4,40,3.6,42.38384153,42.38384153 -80,0,22.1,38.9666666667,20.3566666667,40.3966666667,24.29,36.03,21.9633333333,35.3633333333,20.65,47.1,8.1266666667,35.2633333333,21.2,31.3914285714,22.89,43.656,20.73,39.9,6.1333333333,756.5333333333,83.6666666667,4,40,3.5666666667,33.4600309376,33.4600309376 -50,0,22.0333333333,38.8266666667,20.5666666667,39.9,24.29,35.895,22.0333333333,35.5966666667,20.6333333333,46.76,8.2633333333,32.6933333333,21.2,31.216,22.89,43.2842857143,20.79,39.5,6.2166666667,756.5666666667,82.8333333333,4,40,3.5333333333,18.7159014866,18.7159014866 -70,0,22,38.7,20.9,39.4266666667,24.26,35.7233333333,22.1,35.8633333333,20.6333333333,46.5,8.3233333333,32.6933333333,21.2,30.9971428571,22.89,42.918,20.73,39,6.3,756.6,82,4,40,3.5,22.8205218096,22.8205218096 -180,0,22.0666666667,38.7,21.5566666667,38.46,24.2,35.59,22.1333333333,36.03,20.7,46.1933333333,8.6666666667,27.23,21.2,30.79,22.89,42.79,20.79,39,6.4166666667,756.6,80.5,4.1666666667,40,3.3166666667,30.0400454085,30.0400454085 -190,0,22.1,38.7,21.9633333333,37.5933333333,24.1666666667,35.4666666667,22.2,36.09,20.6333333333,45.8,8.7266666667,25.83,21.2,30.5985714286,22.89,42.276,20.79,39.1933333333,6.5333333333,756.6,79,4.3333333333,40,3.1333333333,25.7135927794,25.7135927794 -120,0,22.1,38.5666666667,22.0333333333,37.2,24.1,35.4,22.29,36.26,20.6666666667,45.1666666667,8.63,24.7,21.2,30.414,22.89,41.68,20.79,39.6,6.65,756.6,77.5,4.5,40,2.95,17.9296100745,17.9296100745 -300,0,22.1,38.4,22.1666666667,36.8666666667,24.0666666667,35.4333333333,22.29,36.2,20.6666666667,44.4333333333,8.8233333333,24.4933333333,21.2,30.2642857143,22.89,41.53,20.79,40.5,6.7666666667,756.6,76,4.6666666667,40,2.7666666667,48.6572664464,48.6572664464 -350,0,22.1,38.4,22.34,36.4,24,35.4333333333,22.39,36.1333333333,20.7,44.53,9.1,23.34,21.2,30.1,22.89,41.1214285714,20.8566666667,40.8333333333,6.8833333333,756.6,74.5,4.8333333333,40,2.5833333333,20.891853713,20.891853713 -130,0,22.1,38.2,22.1666666667,36.4333333333,24,35.4333333333,22.39,35.9333333333,20.7,44.59,9.0333333333,22.2233333333,21.2,30.0271428571,23,40.62,20.79,40.76,7,756.6,73,5,40,2.4,44.3929500063,44.3929500063 -130,0,22.1,38.2,22.1,36.56,24,35.56,22.39,35.76,20.7,44.7,9.2933333333,19.9633333333,21.2,29.87,23.0142857143,40.2371428571,20.79,40.525,7.2,756.6,72,5.1666666667,40,2.3833333333,38.6251518037,38.6251518037 -120,0,22.1333333333,38.1633333333,22,36.4333333333,23.89,35.56,22.39,35.5666666667,20.7,44.7,9.6,18.26,21.2,29.7257142857,23.1,39.936,20.79,40.3266666667,7.4,756.6,71,5.3333333333,40,2.3666666667,41.3903998211,41.3903998211 -140,0,22.2,38.0675,22.1333333333,36.4333333333,23.89,35.5,22.39,35.4666666667,20.7,44.59,9.9933333333,15.7933333333,21.2,29.6,23.1,39.6214285714,20.79,40.1633333333,7.6,756.6,70,5.5,40,2.35,3.0896162847,3.0896162847 -100,0,22.2,37.9333333333,22.39,35.99,23.89,35.4,22.39,35.2666666667,20.7,44.53,10.63,14.4933333333,21.2,29.5142857143,23.1625,39.41,20.79,40.03,7.8,756.6,69,5.6666666667,40,2.3333333333,29.1560772108,29.1560772108 -110,0,22.2,37.8633333333,22.4633333333,35.73,23.89,35.4,22.5,35.26,20.7,44.3633333333,10.5633333333,14.5666666667,21.2,29.434,23.2,39.09,20.79,39.76,8,756.6,68,5.8333333333,40,2.3166666667,5.590061401,5.590061401 -370,0,22.2,37.6566666667,22.3566666667,35.49,23.79,35.1633333333,22.4266666667,35.1266666667,20.7,44.29,10.5,13.89,21.2,29.3185714286,23.2771428571,38.9814285714,20.79,39.7,8.2,756.6,67,6,40,2.3,46.0798779735,46.0798779735 -400,0,22.29,37.8,22.29,35.23,23.79,35.1633333333,22.5,35.06,20.6333333333,44.09,10.4266666667,13.2233333333,21.2,29.2,23.29,38.878,20.79,39.7,8.25,756.6666666667,66.1666666667,5.8333333333,40,2.1833333333,41.0550783039,41.0550783039 -300,10,22.29,38.1933333333,22.2,35.23,23.8233333333,35.2666666667,22.4725,34.9475,20.7,44.03,10.46,12.86,21.2,29.1857142857,23.29,38.7257142857,20.79,39.5666666667,8.3,756.7333333333,65.3333333333,5.6666666667,40,2.0666666667,36.4452790702,36.4452790702 -300,0,22.29,38.29,22.26,35.43,23.9633333333,35.4666666667,22.39,34.79,20.7,43.9,10.5333333333,10.8,21.2,29.08,23.39,38.554,20.79,39.4333333333,8.35,756.8,64.5,5.5,40,1.95,26.5212093946,26.5212093946 -280,0,22.3566666667,38.29,22.39,35.4666666667,24.23,35.59,22.5,34.79,20.7,43.8266666667,10.6966666667,8.1933333333,21.2,29,23.39,38.4428571429,20.79,39.5,8.4,756.8666666667,63.6666666667,5.3333333333,40,1.8333333333,37.7729679341,37.7729679341 -280,0,22.39,37.93,22.39,35.4,24.43,35.7233333333,22.5,34.79,20.7,43.76,11.2233333333,7.5333333333,21.236,28.934,23.456,38.378,20.79,39.2966666667,8.45,756.9333333333,62.8333333333,5.1666666667,40,1.7166666667,49.384402018,49.384402018 -320,0,22.39,37.8633333333,22.3566666667,35.29,24.86,36.1333333333,22.5,34.7,20.7,43.6175,10.9633333333,9.6266666667,21.29,28.9371428571,23.5,38.2642857143,20.79,38.9633333333,8.5,757,62,5,40,1.6,3.6427804851,3.6427804851 -360,0,22.39,37.79,22.29,35.29,25.1725,36.675,22.5,34.7,20.7,43.59,10.69,10.1666666667,21.25625,28.77,23.5,38.09,20.79,38.8266666667,8.5,757,61.6666666667,5,40,1.5166666667,11.8838086841,11.8838086841 -210,0,22.39,37.79,22.23,35.2,25.43,36.9,22.5,34.7,20.7,43.4666666667,10.7266666667,7.8966666667,21.29,28.7,23.5571428571,37.9985714286,20.79,38.9666666667,8.5,757,61.3333333333,5,40,1.4333333333,27.4641658179,27.4641658179 -90,0,22.4266666667,39.1,22.29,35.46,25.6333333333,36.9,22.5,34.7,20.76,43.4,10.86,6.23,21.29,28.6285714286,23.6,37.86,20.79,39,8.5,757,61,5,40,1.35,25.6729239365,25.6729239365 -100,0,22.5,38.8266666667,22.29,35.79,25.7,36.6933333333,22.5,34.7,20.7,43.5,11,5.6,21.33,28.6,23.6,37.7,20.79,38.6666666667,8.5,757,60.6666666667,5,40,1.2666666667,2.6538557722,2.6538557722 -90,0,22.5,39.0933333333,22.29,35.79,25.5666666667,36.3333333333,22.5,34.8333333333,20.7,43.5,11.19,4.9633333333,21.39,28.5428571429,23.6,37.59,20.79,38.6566666667,8.5,757,60.3333333333,5,40,1.1833333333,34.1277406318,34.1277406318 -90,0,22.5,38.5,22.2,35.56,25.4266666667,36.1266666667,22.5,35,20.7,43.5,11.13,3.6966666667,21.39,28.558,23.6857142857,37.5771428571,20.79,38.5966666667,8.5,757,60,5,40,1.1,40.2476596413,40.2476596413 -100,0,22.5333333333,37.93,22.175,35.375,25.3566666667,35.8633333333,22.5,34.9333333333,20.7,43.4333333333,11.0571428571,3.9828571429,21.39,28.79,23.7,37.418,20.79,38.3333333333,8.65,757,59,4.8333333333,40,0.9833333333,31.6532970523,31.6532970523 -100,0,22.5333333333,37.5966666667,22.0333333333,35.0666666667,25.23,35.79,22.5,34.76,20.7,43.29,10.58,6.616,21.39,28.9266666667,23.7,37.29,20.79,38.0666666667,8.8,757,58,4.6666666667,40,0.8666666667,46.2198250345,46.2198250345 -100,10,22.5,37.3633333333,21.89,35,25.2,35.6633333333,22.5,34.6266666667,20.7,43.23,10.3257142857,7.5828571429,21.4633333333,29.1333333333,23.7,37.29,20.745,37.645,8.95,757,57,4.5,40,0.75,2.0632883767,2.0632883767 -130,0,22.5,37.1175,21.89,34.9333333333,25.1333333333,35.53,22.5,34.4666666667,20.7,43.0266666667,10.77,6.574,21.4266666667,29.1633333333,23.7514285714,37.2128571429,20.79,37.4566666667,9.1,757,56,4.3333333333,40,0.6333333333,6.5096152481,6.5096152481 -260,0,22.5666666667,37.1933333333,21.89,34.8266666667,25.0666666667,35.4666666667,22.5666666667,34.3266666667,20.7,42.8266666667,10.8557142857,5.08,21.5,29.29,23.79,37.178,20.79,37.93,9.25,757,55,4.1666666667,40,0.5166666667,46.9644746976,46.9644746976 -110,0,22.7,38.06,21.9633333333,35.4333333333,24.9266666667,35.1933333333,22.5333333333,34.26,20.79,42.59,11.176,3.614,21.6333333333,29.3233333333,23.79,37.0642857143,20.79,38.23,9.4,757,54,4,40,0.4,46.9052720699,46.9052720699 -110,0,22.76,38.3333333333,21.89,36.3633333333,24.79,34.8633333333,22.6,34.2,20.79,42.59,11.3257142857,1.5971428571,21.7,29.3233333333,23.89,37,20.79,38.43,9.6,757,52.8333333333,4.3333333333,40,0.3,49.2640159675,49.2640159675 -110,0,22.79,38.6633333333,21.89,36.1566666667,24.73,34.79,22.6,34.06,20.79,42.7,11.07,2.19,21.7,29.1666666667,23.89,36.9857142857,20.79,38.53,9.8,757,51.6666666667,4.6666666667,40,0.2,32.3055436369,32.3055436369 -110,0,22.79,38.59,21.89,36.09,24.6,34.6266666667,22.6,33.975,20.79,42.7,10.6842857143,4.1985714286,21.76,29.2933333333,23.89,36.878,20.79,38.59,10,757,50.5,5,40,0.1,36.9549282594,36.9549282594 -110,10,22.8233333333,38.5,21.89,36.09,24.5333333333,34.76,22.6,33.8266666667,20.79,42.7,10.758,5.36,21.79,29.7,23.9214285714,36.79,20.79,38.5,10.2,757,49.3333333333,5.3333333333,40,0,27.4818962906,27.4818962906 -110,0,22.8233333333,38.36,21.79,35.8633333333,24.4633333333,34.76,22.5,33.76,20.79,42.6266666667,11.0228571429,3.2242857143,21.79,29.5666666667,23.934,36.754,20.73,38.56,10.4,757,48.1666666667,5.6666666667,40,-0.1,1.5715149813,1.5715149813 -110,0,22.8233333333,38.06,21.79,35.79,24.39,34.7,22.5,33.7,20.79,42.56,10.756,2.5,21.89,29.5,23.9685714286,36.6242857143,20.73,38.59,10.6,757,47,6,40,-0.2,8.1336283591,8.1336283591 -110,0,22.89,37.86,21.79,35.6633333333,24.3566666667,34.6266666667,22.5,33.6633333333,20.79,42.5,10.6242857143,1.8142857143,21.8233333333,29.6333333333,24,36.45,20.79,38.53,10.3333333333,757.05,48,6,40,-0.2,19.3542106659,19.3542106659 -80,0,22.89,37.5266666667,21.73,35.4633333333,24.29,34.5666666667,22.5,33.5257142857,20.79,42.745,10.4266666667,1.0333333333,21.89,29.714,24,36.4,20.76,38.3333333333,10.0666666667,757.1,49,6,40,-0.2,41.8677399284,41.8677399284 -90,0,22.89,37.1333333333,21.7,35.29,24.245,34.45,22.5,33.5,20.79,42.6633333333,10.5266666667,1,21.934,29.456,24,36.5266666667,20.76,38.1333333333,9.8,757.15,50,6,40,-0.2,14.5768542774,14.5768542774 -80,0,23,36.8333333333,21.7,35.23,24.2,34.3266666667,22.5428571429,33.3985714286,20.79,42.53,10.8,1,22.0625,29.13125,24,36.2666666667,20.79,38.3266666667,9.5333333333,757.2,51,6,40,-0.2,4.9507129588,4.9507129588 -80,0,23,36.6266666667,21.7,34.93,24.2,34.4,22.52,33.272,20.79,42.26,10.89,1,22.1571428571,28.5228571429,24,35.7966666667,20.79,38.3266666667,9.2666666667,757.25,52,6,40,-0.2,26.2857338996,26.2857338996 -70,10,23,36.3633333333,21.7,34.6566666667,24.1,34.3633333333,22.6,33.2,20.79,42.1266666667,10.9633333333,1,22.2,28.078,24,35.39,20.79,38.29,9,757.3,53,6,40,-0.2,35.4593025171,35.4593025171 -80,0,23.0666666667,36.23,21.6666666667,34.5,24.1,34.1566666667,22.6,33.09,20.79,41.8633333333,10.695,1,22.2,27.6971428571,23.89,35.0266666667,20.79,38.3633333333,8.9666666667,757.3,52.6666666667,6.3333333333,40,-0.3,12.9639930208,12.9639930208 -80,0,23,35.9666666667,21.5333333333,34.5,24,33.9,22.6,33.0771428571,20.79,41.73,9.9633333333,1,22.2,27.39,23.89,34.7666666667,20.76,38.5,8.9333333333,757.3,52.3333333333,6.6666666667,40,-0.4,2.8164672549,2.8164672549 -70,0,23,35.7666666667,21.5,34.3,24,33.9,22.58,33,20.79,41.43,9.83,1,22.2,27.2385714286,23.89,34.4666666667,20.7,38.4333333333,8.9,757.3,52,7,40,-0.5,12.4505745131,12.4505745131 -60,0,23,35.6633333333,21.4633333333,34.2,23.89,33.7233333333,22.5,32.9285714286,20.79,41.23,9.5,1,22.18,27.058,23.89,34.3266666667,20.79,38.4,8.8666666667,757.3,51.6666666667,7.3333333333,40,-0.6,1.0210040491,1.0210040491 -60,0,23,35.53,21.39,34.0666666667,23.89,33.59,22.5,32.9,20.89,41.1333333333,9.36,1,22.1714285714,26.7928571429,23.89,34.0266666667,20.73,38.4,8.8333333333,757.3,51.3333333333,7.6666666667,40,-0.7,4.1573222959,4.1573222959 -60,0,23,35.4,21.29,33.93,23.8566666667,33.43,22.5,32.8371428571,20.89,40.9333333333,9.39,1,22.2,26.5,23.89,33.7666666667,20.79,38.3266666667,8.8,757.3,51,8,40,-0.8,47.3307189415,47.3307189415 -80,0,23,35.1633333333,21.29,33.6566666667,23.73,33.29,22.5,32.772,20.9266666667,40.6633333333,9.39,1,22.1714285714,26.2971428571,23.79,33.43,20.73,38.3633333333,8.6666666667,757.35,50.6666666667,7.8333333333,40,-1.0333333333,26.3791292557,26.3791292557 -80,0,23,35.03,21.29,33.5,23.7,33.29,22.5,32.7,21,40.4633333333,9.39,1,22.2,26.12,23.79,33.23,20.73,38.29,8.5333333333,757.4,50.3333333333,7.6666666667,40,-1.2666666667,21.031467081,21.031467081 -80,10,23,34.9666666667,21.29,33.5,23.7,33.23,22.5,32.59,21.1,40.26,9.33,1,22.2,25.9685714286,23.79,33.06,20.79,38.29,8.4,757.45,50,7.5,40,-1.5,3.9872776601,3.9872776601 -70,0,23,34.7666666667,21.2,33.4,23.7,33.1633333333,22.5,32.5385714286,21.1666666667,40.0666666667,9.2333333333,1,22.2,25.79,23.79,32.9333333333,20.79,38.29,8.2666666667,757.5,49.6666666667,7.3333333333,40,-1.7333333333,30.2164337016,30.2164337016 -80,0,23,34.6333333333,21.2,33.4,23.6333333333,32.9633333333,22.5,32.48,21.2,39.8633333333,9.0333333333,1,22.1142857143,25.5985714286,23.79,32.6633333333,20.73,38.2,8.1333333333,757.55,49.3333333333,7.1666666667,40,-1.9666666667,9.7040132852,9.7040132852 -80,0,23,34.4333333333,21.1,33.29,23.6,32.9,22.5,32.4,21.26,39.73,8.89,1,22.1,25.414,23.79,32.53,20.79,38.2,8,757.6,49,7,40,-2.2,11.9230406359,11.9230406359 -190,0,23,34.2,21.0333333333,33.1566666667,23.6,32.8266666667,22.5,32.356,21.2,39.4666666667,8.6966666667,1,22.1,25.2642857143,23.79,32.26,20.73,37.7633333333,8.0833333333,757.6333333333,48.6666666667,7.3333333333,40,-2.2166666667,0.3115398693,0.3115398693 -580,0,22.9266666667,34.0666666667,20.9633333333,33.09,23.6,32.8266666667,22.5,32.2385714286,21.2,39.3266666667,8.3,1,22.1,25.2,23.73,32.1266666667,20.73,37.0966666667,8.1666666667,757.6666666667,48.3333333333,7.6666666667,40,-2.2333333333,24.3087662151,24.3087662151 -480,0,23,36.03,20.9633333333,33.5566666667,23.6,32.7666666667,22.5,32.1266666667,21.2,39.26,8.2266666667,1.3333333333,22.0857142857,25.1428571429,23.7,32.2666666667,20.79,36.6,8.25,757.7,48,8,40,-2.25,3.6245311494,3.6245311494 -200,10,23,38.8966666667,21,36.3933333333,23.6,32.8266666667,22.4685714286,32.2271428571,21.2,39.2225,8.16,2.1966666667,22,25.12,23.7675,32.5925,20.73,36.1933333333,8.3333333333,757.7333333333,47.6666666667,8.3333333333,40,-2.2666666667,9.9820181029,9.9820181029 -120,0,23.0333333333,40.1666666667,21,39.1933333333,23.6,32.9975,22.5,32.5,21.2,39.49,8.1,2.9966666667,22,25.2,23.79,32.73,20.7,35.66,8.4166666667,757.7666666667,47.3333333333,8.6666666667,40,-2.2833333333,41.4473964018,41.4473964018 -120,0,23.1,39.1666666667,21,40.1933333333,23.6,33.1633333333,22.5,32.5,21.2,39.89,8,1,21.956,25.16,23.79,32.9333333333,20.7,35.1933333333,8.5,757.8,47,9,40,-2.3,10.0277892547,10.0277892547 -140,0,23.1,39.6933333333,20.9266666667,39.8,23.6,33.4,22.4214285714,32.4714285714,21.2,40.1633333333,8,1.4,21.89,25.1,23.79,33.06,20.76,34.7666666667,8.1333333333,757.8666666667,49.5,8.5,40,-2,45.7489026361,45.7489026361 -110,0,23.1,39.4333333333,20.89,39.16,23.6,33.5266666667,22.434,32.5,21.6633333333,66.1666666667,7.8666666667,3.7333333333,21.89,25.16,23.8566666667,33.29,20.7,34.56,7.7666666667,757.9333333333,52,8,40,-1.7,30.1326932968,30.1326932968 -110,0,23.1,38.96,20.8233333333,38.6333333333,23.6666666667,33.79,22.39,32.5642857143,21.73,67.1,7.3966666667,5.73,21.89,25.2,23.8566666667,33.43,20.7,34.3633333333,7.4,758,54.5,7.5,40,-1.4,4.2870454141,4.2870454141 -120,0,23.0333333333,38.5,20.745,38.395,23.6,33.79,22.39,32.5,21.8,70.4333333333,6.93,6.93,21.83,25.374,23.89,33.6266666667,20.7,34.23,7.0333333333,758.0666666667,57,7,40,-1.1,14.5495974575,14.5495974575 -100,10,23,38.0266666667,20.7,38.3633333333,23.7,33.9,22.39,32.4142857143,22,72.6266666667,6.3966666667,8.8333333333,21.8042857143,25.5571428571,23.89,33.76,20.7,33.918,6.6666666667,758.1333333333,59.5,6.5,40,-0.8,2.2447442403,2.2447442403 -120,0,23,37.7666666667,20.6333333333,38.0966666667,23.7,33.9,22.35,32.334,21.8566666667,69.3933333333,5.9966666667,10.0933333333,21.76,25.6333333333,23.89,33.9333333333,20.6333333333,33.73,6.3,758.2,62,6,40,-0.5,5.3564650007,5.3564650007 -120,0,23,37.43,20.5666666667,37.8633333333,23.6666666667,33.8633333333,22.39,32.2257142857,21.73,66.06,5.7633333333,9.7933333333,21.7,25.7,23.9633333333,34,20.6,33.59,6.0833333333,758.25,63,5.6666666667,40,-0.5,25.1207082882,25.1207082882 -120,0,23,37.1725,20.5,37.73,23.6,33.73,22.29,32.09,21.6,61.86,5.5633333333,10.4,21.7,25.7,24,34,20.6,33.53,5.8666666667,758.3,64,5.3333333333,40,-0.5,45.1933054836,45.1933054836 -110,0,22.9266666667,36.9333333333,20.4633333333,37.6633333333,23.6,33.73,22.29,32.0514285714,21.6,59.4,5.33,11.5933333333,21.7,25.79,24,34,20.6,33.4,5.65,758.35,65,5,40,-0.5,13.1703673047,13.1703673047 -110,0,22.89,36.76,20.39,37.59,23.6,33.73,22.272,32.014,21.4633333333,57.2266666667,5.1233333333,12.26,21.6142857143,25.7128571429,24.1,34.09,20.6,33.3266666667,5.4333333333,758.4,66,4.6666666667,40,-0.5,22.2591129714,22.2591129714 -110,0,22.89,36.6266666667,20.29,37.59,23.6,33.7,22.2642857143,31.89,21.39,55.9666666667,4.9333333333,13.2966666667,21.6,25.796,24.1,34.09,20.6,33.2,5.2166666667,758.45,67,4.3333333333,40,-0.5,34.2133183032,34.2133183032 -100,0,22.89,36.53,20.29,37.6633333333,23.6,33.7,22.236,32,21.39,54.5933333333,4.8,14.0233333333,21.6,26.1,24.1,34.3,20.6,33,5,758.5,68,4,40,-0.5,43.5732972343,43.5732972343 -110,0,22.8233333333,36.4633333333,20.2,37.59,23.6,33.7,22.2385714286,31.8914285714,21.39,54.0666666667,4.6266666667,15.0266666667,21.6,26.434,24.1666666667,34.6333333333,20.5333333333,33.1566666667,4.9,758.6,68.3333333333,4,40,-0.5333333333,27.6335285977,27.6335285977 -60,10,22.79,36.29,20.2,37.7233333333,23.6,33.76,22.2,31.79,21.29,53.8333333333,4.3666666667,15.6933333333,21.6,26.6942857143,24.2,34.9333333333,20.5333333333,33.3633333333,4.8,758.7,68.6666666667,4,40,-0.5666666667,42.7019587602,42.7019587602 -70,0,22.79,36.29,20.1,37.89,23.6333333333,33.9333333333,22.2,31.79,21.29,53.6266666667,3.93,18,21.6,26.93,24.2,35.1333333333,20.5666666667,33.53,4.7,758.8,69,4,40,-0.6,21.1480708211,21.1480708211 -60,0,22.76,36.4333333333,20.1,38.1633333333,23.6333333333,34,22.2,31.79,21.29,53.3633333333,3.6566666667,20.6666666667,21.6,27.4685714286,24.23,35.4633333333,20.5,33.7233333333,4.6,758.9,69.3333333333,4,40,-0.6333333333,36.1500495812,36.1500495812 -70,0,22.7,36.6333333333,19.9633333333,38.09,23.6,34.03,22.2,31.79,21.2225,52.9975,3.45,23.745,21.6,27.934,24.29,35.6633333333,20.5333333333,34.0666666667,4.5,759,69.6666666667,4,40,-0.6666666667,49.4861140847,49.4861140847 -90,10,22.6666666667,36.6,19.89,38.09,23.6,34.09,22.16,31.81,21.2,52.6266666667,3.26,25.1666666667,21.6571428571,28.2671428571,24.29,35.845,20.6,34.4,4.4,759.1,70,4,40,-0.7,16.2806349108,16.2806349108 -60,0,22.6,36.3266666667,19.8566666667,38.06,23.6,34.245,22.1714285714,31.8185714286,21.2,52.3333333333,3.0666666667,25.56,21.68,28.5,24.29,36.0666666667,20.5333333333,34.73,4.1166666667,759.1,71.5,3.6666666667,40,-0.7,0.9020080091,0.9020080091 -60,0,22.6,36.29,19.79,38,23.6,34.4,22.1,31.89,21.2,52.0666666667,2.8633333333,27.2333333333,21.6,28.5285714286,24.29,36.26,20.6,34.93,3.8333333333,759.1,73,3.3333333333,40,-0.7,40.7732729684,40.7732729684 -60,0,22.6,36.29,19.76,38.1633333333,23.6,34.4,22.1,31.89,21.2,51.6333333333,2.6566666667,27.6933333333,21.6,28.79,24.29,36.9566666667,20.5666666667,35.23,3.55,759.1,74.5,3,40,-0.7,15.6056192238,15.6056192238 -60,0,22.5,36.2,19.7,38.1633333333,23.6,34.5,22.08,31.89,21.2,51.36,2.59,30.0933333333,21.6,28.9528571429,24.29,37.5633333333,20.5666666667,35.3633333333,3.2666666667,759.1,76,2.6666666667,40,-0.7,34.7797435359,34.7797435359 -50,0,22.5,36.1266666667,19.6,38.23,23.6,34.5,22.075,31.9725,21.1666666667,51.1333333333,2.4633333333,30.5666666667,21.6,29.12,24.29,38.2666666667,20.6,35.53,2.9833333333,759.1,77.5,2.3333333333,40,-0.7,2.2353479639,2.2353479639 -60,0,22.5,36,19.525,38.3725,23.6,34.59,22.0714285714,31.9685714286,21.1,50.86,2.26,31.13,21.6,29.2542857143,24.1633333333,38.5266666667,20.525,35.695,2.7,759.1,79,2,40,-0.7,47.9713785695,47.9713785695 -60,0,22.5,35.9333333333,19.5,38.4666666667,23.6,34.59,22,31.89,21.1,50.6333333333,2.2,31.7233333333,21.6,29.474,24.1,38.9633333333,20.5666666667,35.8633333333,2.5833333333,759.1,79.8333333333,2,40,-0.6666666667,16.7851412203,16.7851412203 -60,0,22.4633333333,35.8633333333,19.39,38.5,23.6,34.7,22,31.9842857143,21.1,50.4333333333,2.1633333333,32.73,21.6,29.9285714286,24.1,39.2966666667,20.5333333333,36.1266666667,2.4666666667,759.1,80.6666666667,2,40,-0.6333333333,46.1175799137,46.1175799137 -60,0,22.39,35.73,19.3233333333,38.5,23.6,34.76,22,32,21.0666666667,50.1933333333,2.03,32.4566666667,21.6,30.316,24,39.6933333333,20.6,36.26,2.35,759.1,81.5,2,40,-0.6,26.962532301,26.962532301 -60,0,22.39,35.7,19.29,38.5,23.5,34.8266666667,22,32.0257142857,21.0666666667,50,1.5966666667,31.6333333333,21.6,30.6,24,40.1,20.6,36.53,2.2333333333,759.1,82.3333333333,2,40,-0.5666666667,44.5112412563,44.5112412563 -60,0,22.3566666667,35.59,19.23,38.5,23.5,34.9,22,32.09,21,49.8633333333,1.1966666667,31.76,21.66,30.66,23.89,40.39,20.6,36.6633333333,2.1166666667,759.1,83.1666666667,2,40,-0.5333333333,15.3751764214,15.3751764214 -60,0,22.29,35.53,19.2,38.5,23.4633333333,34.79,22,32.09,21,49.6566666667,0.8666666667,32.8666666667,21.6,30.8828571429,23.89,40.7233333333,20.5666666667,36.8266666667,2,759.1,84,2,40,-0.5,32.1323265554,32.1323265554 -50,0,22.29,35.5,19.1333333333,38.56,23.39,34.79,22,32.09,21,49.5,0.6666666667,33.5333333333,21.6,31.098,23.8566666667,41.03,20.5,37.0266666667,2.0333333333,759.1,83.8333333333,2,40,-0.4833333333,19.3237033556,19.3237033556 -50,0,22.29,35.5,19.0666666667,38.56,23.39,34.7,21.9685714286,32.09,21,49.4333333333,0.5333333333,34.4633333333,21.6428571429,31.44,23.79,41.09,20.6,37.1266666667,2.0666666667,759.1,83.6666666667,2,40,-0.4666666667,0.3877713811,0.3877713811 -60,0,22.2,35.3266666667,19,38.5,23.39,34.7,21.89,32.09,21,49.29,0.325,35.195,21.6625,31.6625,23.79,41.4333333333,20.6,37.26,2.1,759.1,83.5,2,40,-0.45,20.0059831026,20.0059831026 -60,0,22.2,35.3266666667,18.9633333333,38.53,23.3566666667,34.6633333333,21.89,32.09,21,49.23,0.3,36.0633333333,21.7,31.7,23.79,41.5,20.5,37.4333333333,2.1333333333,759.1,83.3333333333,2,40,-0.4333333333,0.8268936654,0.8268936654 -50,0,22.2,35.29,18.89,38.53,23.29,34.59,21.934,32.112,20.9266666667,49.09,0.6,38.2333333333,21.6571428571,31.6,23.7,41.6333333333,20.5,37.56,2.1666666667,759.1,83.1666666667,2,40,-0.4166666667,3.9131148718,3.9131148718 -60,0,22.2,35.29,18.8566666667,38.59,23.29,34.6633333333,21.89,32.2,20.9266666667,49.03,1,39.5666666667,21.66,31.62,23.7,42.0266666667,20.5333333333,37.73,2.2,759.1,83,2,40,-0.4,2.0775243174,2.0775243174 -60,0,22.1666666667,35.2,18.79,38.59,23.29,34.6633333333,21.89,32.2,20.89,48.845,1.23,39.6933333333,21.6285714286,31.7257142857,23.7,42.39,20.6,37.8633333333,2.15,759.0666666667,83.6666666667,2.1666666667,40,-0.35,0.5786089925,0.5786089925 -60,0,22.1,35.2,18.79,38.7,23.29,34.7,21.89,32.2,20.89,48.76,1.29,39.9,21.64,31.934,23.7,42.59,20.5333333333,37.9333333333,2.1,759.0333333333,84.3333333333,2.3333333333,40,-0.3,38.9493845403,38.9493845403 -60,0,22.1,35.2,18.73,38.7,23.29,34.7,21.85,32.156,20.89,48.6266666667,1.2,39.36,21.6428571429,32.0128571429,23.6,42.5,20.5333333333,38,2.05,759,85,2.5,40,-0.25,21.1626521428,21.1626521428 -60,0,22.1,35.2,18.7,38.79,23.23,34.6266666667,21.89,32.2,20.8566666667,48.5266666667,1.1333333333,40.0266666667,21.66,32.174,23.6,42.53,20.5333333333,38.1266666667,2,758.9666666667,85.6666666667,2.6666666667,40,-0.2,16.714298632,16.714298632 -30,0,22.0666666667,35.1633333333,18.7,38.79,23.23,34.6566666667,21.79,32.156,20.8566666667,48.4666666667,1.1666666667,40.9633333333,21.7,32.3214285714,23.6,42.6633333333,20.5333333333,38.2,1.95,758.9333333333,86.3333333333,2.8333333333,40,-0.15,35.8017490013,35.8017490013 -40,0,22,35.09,18.6,38.8266666667,23.23,34.73,21.8328571429,32.2228571429,20.79,48.29,1.2266666667,41.6966666667,21.7,32.44,23.5,42.8633333333,20.5,38.29,1.9,758.9,87,3,40,-0.1,43.3773455909,43.3773455909 -30,0,22,35.09,18.575,38.9,23.2,34.59,21.83,32.236,20.79,48.29,1.6633333333,43.6566666667,21.6571428571,32.5128571429,23.5,42.8633333333,20.5,38.3633333333,1.9166666667,758.8833333333,87,2.8333333333,40,-0.0666666667,42.6603574888,42.6603574888 -30,0,22,35.1633333333,18.5,38.9666666667,23.2,34.59,21.79,32.2,20.79,48.1633333333,1.6633333333,43.3966666667,21.68,32.59,23.5,42.8266666667,20.5,38.5,1.9333333333,758.8666666667,87,2.6666666667,40,-0.0333333333,4.9609790556,4.9609790556 -60,0,21.89,35.1266666667,18.5,39,23.1,34.59,21.79,32.29,20.79,48.09,1.4633333333,43.1666666667,21.6,32.5642857143,23.5,42.8266666667,20.5333333333,38.6266666667,1.95,758.85,87,2.5,40,0,47.4646706716,47.4646706716 -70,0,21.89,35.2,18.5,39,23.1,34.59,21.79,32.29,20.79,48.06,1.4633333333,44.6333333333,21.64,32.5,23.5,42.7,20.5333333333,38.76,1.9666666667,758.8333333333,87,2.3333333333,40,0.0333333333,12.1402446297,12.1402446297 -70,0,21.89,35.2,18.4633333333,39.06,23.1,34.7,21.79,32.356,20.79,48,1.6633333333,45.9266666667,21.6571428571,32.51,23.4266666667,42.5666666667,20.5,38.79,1.9833333333,758.8166666667,87,2.1666666667,40,0.0666666667,36.5977658657,36.5977658657 -50,0,21.89,35.2,18.39,39,23.1,34.76,21.79,32.4,20.79,47.9666666667,1.79,46.2,21.62,32.594,23.39,42.4666666667,20.5,38.8633333333,2,758.8,87,2,40,0.1,32.0330796763,32.0330796763 -70,0,21.8233333333,35.1266666667,18.39,39,23.1333333333,34.79,21.7,32.4,20.73,47.9,1.695,45.645,21.6285714286,32.7514285714,23.39,42.4666666667,20.5,38.9,2,758.75,87.8333333333,2,40,0.2166666667,29.4586079195,29.4586079195 -50,0,21.79,35.2,18.39,39,23.2,34.79,21.7,32.4,20.7,47.79,1.5,45.9933333333,21.66,32.856,23.39,42.4666666667,20.5,38.9,2,758.7,88.6666666667,2,40,0.3333333333,1.8024565768,1.8024565768 -50,0,21.79,35.2,18.39,39,23.2,34.79,21.7,32.4,20.7,47.73,1.5,46.86,21.6,32.8842857143,23.39,42.2666666667,20.5,39.03,2,758.65,89.5,2,40,0.45,39.0273792553,39.0273792553 -60,0,21.79,35.2,18.3233333333,39.06,23.2,34.8633333333,21.7,32.4,20.7,47.7,1.5333333333,47.5966666667,21.6,32.96,23.39,42.06,20.5,39.09,2,758.6,90.3333333333,2,40,0.5666666667,41.8524208828,41.8524208828 -50,0,21.79,35.2,18.3566666667,39.09,23.29,35.03,21.7,32.4714285714,20.7,47.6266666667,1.6,47.93,21.6,33.0257142857,23.39,41.9333333333,20.5,39.09,2,758.55,91.1666666667,2,40,0.6833333333,25.0928058755,25.0928058755 -60,0,21.76,35.29,18.29,39.09,23.29,35.09,21.7,32.5,20.7,47.59,1.6333333333,48.33,21.6,33.054,23.39,41.6633333333,20.5,39.1633333333,2,758.5,92,2,40,0.8,44.390912482,44.390912482 -50,0,21.7,35.29,18.29,39.09,23.29,35.09,21.6428571429,32.4428571429,20.7,47.53,1.76,48.7966666667,21.6,33.0771428571,23.3233333333,41.53,20.5,39.2,2.0333333333,758.4666666667,92,1.8333333333,40,0.8333333333,31.9434167934,31.9434167934 -60,0,21.7,35.29,18.29,39.1633333333,23.29,35.1633333333,21.66,32.46,20.7,47.5,1.9333333333,49.53,21.6,33.09,23.29,41.4,20.5,39.3333333333,2.0666666667,758.4333333333,92,1.6666666667,40,0.8666666667,25.6796939997,25.6796939997 -70,0,21.7,35.3633333333,18.29,39.23,23.29,35.2,21.7,32.5257142857,20.65,47.37,2.06,49.93,21.6,33.09,23.29,41.3266666667,20.5,39.4333333333,2.1,758.4,92,1.5,40,0.9,11.0744424514,11.0744424514 -50,0,21.7,35.4,18.29,39.29,23.365,35.295,21.6,32.5,20.7,47.3266666667,2.1266666667,49.9633333333,21.6,33.09,23.2,41.06,20.5,39.56,2.1333333333,758.3666666667,92,1.3333333333,40,0.9333333333,34.7562931827,34.7562931827 -70,0,21.7,35.4,18.26,39.29,23.39,35.4,21.6,32.5,20.7,47.26,2.2,50.09,21.6,33.09,23.2,41.045,20.5,39.59,2.1666666667,758.3333333333,92,1.1666666667,40,0.9666666667,10.0040126941,10.0040126941 -50,0,21.6,35.3266666667,18.2,39.23,23.39,35.4,21.6,32.5,20.6333333333,47.1266666667,2.2,50.09,21.6,33.2357142857,23.2,41,20.5,39.59,2.2,758.3,92,1,40,1,19.6369742625,19.6369742625 -50,0,21.6,35.4,18.2,39.245,23.39,35.4,21.6,32.5,20.6,47.09,2.26,50.2233333333,21.6,33.356,23.2,41,20.5,39.59,2.3333333333,758.2666666667,92,1.1666666667,37.1666666667,1.1333333333,30.8329844847,30.8329844847 -50,0,21.6,35.4,18.2,39.29,23.39,35.5,21.6,32.5,20.6,47.03,2.29,50.23,21.6,33.4285714286,23.1333333333,40.9333333333,20.5,39.59,2.4666666667,758.2333333333,92,1.3333333333,34.3333333333,1.2666666667,14.8235868895,14.8235868895 -60,0,21.6,35.4,18.2,39.23,23.39,35.5,21.6,32.572,20.6,46.9666666667,2.3633333333,50.43,21.6,33.5,23.1,40.9,20.5,39.59,2.6,758.2,92,1.5,31.5,1.4,24.7579690535,24.7579690535 -50,0,21.5,35.4,18.2,39.29,23.39,35.59,21.5625,32.5675,20.6,46.9,2.53,50.7,21.6,33.5642857143,23.1,40.9,20.5,39.59,2.7333333333,758.1666666667,92,1.6666666667,28.6666666667,1.5333333333,42.4087106949,42.4087106949 -60,0,21.5,35.4,18.2,39.29,23.39,35.6633333333,21.6,32.59,20.6,46.8633333333,2.6725,50.645,21.6,33.536,23.1,40.79,20.5,39.59,2.8666666667,758.1333333333,92,1.8333333333,25.8333333333,1.6666666667,38.0153394188,38.0153394188 -60,0,21.5,35.5,18.2,39.29,23.39,35.6266666667,21.5857142857,32.6528571429,20.6,46.79,2.76,50.76,21.6,33.5642857143,23.0333333333,40.73,20.5,39.59,3,758.1,92,2,23,1.8,43.0933644995,43.0933644995 -60,0,21.5,35.5,18.2,39.29,23.39,35.7,21.5,32.7,20.6,46.7,2.9333333333,51.0666666667,21.6,33.59,23.0666666667,40.7233333333,20.5,39.59,2.95,758.0666666667,92.5,1.8333333333,25.8333333333,1.8166666667,25.4076264682,25.4076264682 -60,0,21.5,35.5,18.2,39.4,23.39,35.7,21.5,32.7257142857,20.5333333333,46.7,3.06,51.3333333333,21.6,33.5128571429,23,40.59,20.5,39.59,2.9,758.0333333333,93,1.6666666667,28.6666666667,1.8333333333,48.258185084,48.258185084 -50,0,21.5,35.59,18.2,39.4,23.4633333333,35.76,21.5,32.79,20.5666666667,46.59,3.23,51.4333333333,21.6,33.518,23,40.56,20.5,39.59,2.85,758,93.5,1.5,31.5,1.85,36.2563412637,36.2563412637 -50,0,21.5,35.59,18.2,39.4,23.39,35.7,21.5,32.79,20.5666666667,46.59,3.3633333333,51.56,21.6,33.6685714286,23,40.5,20.5,39.59,2.8,757.9666666667,94,1.3333333333,34.3333333333,1.8666666667,14.1545593622,14.1545593622 -40,0,21.5,35.7566666667,18.2,39.4,23.4633333333,35.76,21.5,32.812,20.5666666667,46.5,3.53,51.86,21.6,33.656,22.9266666667,40.59,20.5,39.6633333333,2.75,757.9333333333,94.5,1.1666666667,37.1666666667,1.8833333333,22.7369331755,22.7369331755 -50,0,21.5,36.2233333333,18.2,39.9333333333,23.3566666667,35.4,21.5,32.9285714286,20.5,46.4333333333,3.6633333333,52.1933333333,21.5142857143,33.3128571429,23,40.4633333333,20.5,39.76,2.7,757.9,95,1,40,1.9,12.4155503232,12.4155503232 -70,0,21.5,36.3266666667,18.2,40,23.23,34.9266666667,21.5,33.29,20.5,46.1333333333,3.9633333333,52.4,21.5,33.16,22.89,40.1333333333,20.5,39.6266666667,2.8166666667,757.9,94.3333333333,1.1666666667,40,1.9166666667,4.6518086456,4.6518086456 -70,0,21.5,36.4666666667,18.2,40.2,23.1666666667,34.56,21.5,33.38625,20.5,45.86,4.1566666667,51.9333333333,21.4685714286,32.8971428571,22.89,39.9333333333,20.5,39.5266666667,2.9333333333,757.9,93.6666666667,1.3333333333,40,1.9333333333,22.2550714971,22.2550714971 -70,0,21.5,36.7,18.26,40.46,23.1,34.5,21.5,33.4,20.5,45.5266666667,4.3333333333,50.2333333333,21.434,32.7,22.89,39.6333333333,20.5,39.2666666667,3.05,757.9,93,1.5,40,1.95,20.9891731851,20.9891731851 -70,0,21.5,36.76,18.39,40.5266666667,23,34.4,21.5,33.376,20.5,45.2675,4.4666666667,47.7666666667,21.4528571429,32.8242857143,22.89,39.4333333333,20.4266666667,38.7233333333,3.1666666667,757.9,92.3333333333,1.6666666667,40,1.9666666667,47.2443819861,47.2443819861 -80,10,21.5,36.56,18.4633333333,40.3266666667,23,34.475,21.5,33.5,20.5,45.03,4.7933333333,46.9666666667,21.434,32.834,22.79,39.1633333333,20.5,38.4633333333,3.2833333333,757.9,91.6666666667,1.8333333333,40,1.9833333333,45.9159770166,45.9159770166 -100,0,21.5,36.5,18.6333333333,40.0266666667,22.9266666667,34.5,21.5,33.634,20.5,44.76,5.06,44.1666666667,21.39,32.7642857143,22.79,39.03,20.5,38.1,3.4,757.9,91,2,40,2,42.1075098799,42.1075098799 -80,0,21.5,36.56,18.7,39.8266666667,22.89,34.5666666667,21.5,33.7385714286,20.5,44.6266666667,4.9666666667,43.9333333333,21.39,32.656,22.79,38.845,20.4266666667,37.6933333333,3.5,757.9333333333,90.5,2.3333333333,37.6666666667,2.0333333333,38.9039484202,38.9039484202 -70,0,21.5,36.5,18.65,39.645,22.89,34.7,21.56,33.776,20.4266666667,44.29,4.8333333333,43.8,21.39,32.6528571429,22.79,38.7,20.39,37.3333333333,3.6,757.9666666667,90,2.6666666667,35.3333333333,2.0666666667,28.7464873632,28.7464873632 -120,10,21.5,36.53,18.6,39.59,22.89,34.6333333333,21.6,33.9714285714,20.5,44.23,4.64,44.745,21.39,32.7,22.79,38.7,20.39,37.0666666667,3.7,758,89.5,3,33,2.1,39.231590752,39.231590752 -70,10,21.5,36.59,18.6,39.59,22.8233333333,34.36,21.64,34.036,20.5,44.1266666667,4.4666666667,47.3933333333,21.39,32.5957142857,22.79,38.6266666667,20.39,36.745,3.8,758.0333333333,89,3.3333333333,30.6666666667,2.1333333333,41.632749117,41.632749117 -70,20,21.5,36.53,18.6333333333,39.53,22.8233333333,34.3266666667,21.6714285714,34.1528571429,20.4266666667,44.1266666667,4.4666666667,50.3333333333,21.39,32.254,22.79,38.7,20.39,36.39,3.9,758.0666666667,88.5,3.6666666667,28.3333333333,2.1666666667,43.3961169329,43.3961169329 -140,20,21.5,36.7966666667,18.7,39.53,22.89,34.3266666667,21.7,34.218,20.6666666667,51.3666666667,4.8966666667,52.89,21.39,32.1971428571,22.79,38.7,20.4633333333,36.7233333333,4,758.1,88,4,26,2.2,45.4003521125,45.4003521125 -100,10,21.5,36.6633333333,18.73,39.2233333333,22.9266666667,34.4,21.7,34.3214285714,20.9266666667,65.8933333333,5.2966666667,53.5566666667,21.40375,32.53375,22.79,38.7,20.4633333333,36.76,4.15,758.0666666667,87.1666666667,4,26.5,2.2,16.4211509167,16.4211509167 -100,10,21.5,36.59,18.79,38.9633333333,23.0666666667,34.4666666667,21.79,34.4,20.8566666667,65.5666666667,5.2633333333,49.03,21.434,32.634,22.79,38.79,20.39,36.5666666667,4.3,758.0333333333,86.3333333333,4,27,2.2,29.8888551537,29.8888551537 -320,10,21.445,36.45,18.79,38.8633333333,23.0333333333,34.4333333333,21.8471428571,34.4128571429,20.79,64.16,5.19,48.29,21.39,32.5642857143,22.79,38.8633333333,20.39,36.4666666667,4.45,758,85.5,4,27.5,2.2,12.0326527278,12.0326527278 -330,0,21.39,36.29,18.79,38.73,23.1,34.5,21.83,34.152,20.7,62.1566666667,5.0266666667,48.2933333333,21.456,32.554,22.79,38.76,20.39,36.4666666667,4.6,757.9666666667,84.6666666667,4,28,2.2,29.5410344726,29.5410344726 -120,0,21.39,36.29,18.89,38.7,22.93,34.36,21.79,33.9285714286,20.7,60.1566666667,4.9666666667,47.4266666667,21.4842857143,32.3985714286,22.79,38.6266666667,20.5,37.36,4.75,757.9333333333,83.8333333333,4,28.5,2.2,14.5463681081,14.5463681081 -80,0,21.39,37.1266666667,18.9633333333,38.9,22.79,34.56,21.79,33.754,20.7,57.1233333333,5.3233333333,46.1333333333,21.5,32.272,22.89,38.4666666667,20.5,37.4333333333,4.9,757.9,83,4,29,2.2,28.9164371672,28.9164371672 -90,0,21.39,37.1266666667,19.0333333333,39.1633333333,22.79,34.59,21.7385714286,33.6814285714,20.6333333333,54.8633333333,5.9233333333,44.2666666667,21.5,32.1685714286,22.89,38.3266666667,20.4633333333,37.26,4.9166666667,757.9,82.5,4,29,2.1333333333,17.1202893485,17.1202893485 -100,0,21.39,36.8333333333,19.1,38.89,22.79,34.53,21.754,33.876,20.6,53.2333333333,6.1566666667,37.0666666667,21.5,32,22.9266666667,38.1633333333,20.4633333333,37.2,4.9333333333,757.9,82,4,29,2.0666666667,34.5598804764,34.5598804764 -90,0,21.39,36.6266666667,19.2,38.56,22.79,34.5,21.79,34,20.6,52.1666666667,6.09,38.6,21.5571428571,31.8914285714,23,38.03,20.39,36.8633333333,4.95,757.9,81.5,4,29,2,15.3817671817,15.3817671817 -100,0,21.39,36.4666666667,19.2,38.4333333333,22.73,34.4333333333,21.79,34.036,20.6,51.0266666667,5.6,44.86,21.58,31.81,23,37.9,20.39,36.73,4.9666666667,757.9,81,4,29,1.9333333333,5.2805846441,5.2805846441 -90,0,21.39,36.3266666667,19.2,38.4333333333,22.73,34.4,21.79,33.9557142857,20.6,50.36,5,53.9333333333,21.5714285714,31.89,23.0666666667,37.9,20.39,36.6633333333,4.9833333333,757.9,80.5,4,29,1.8666666667,24.4676074362,24.4676074362 -90,0,21.39,36.2,19.26,38.56,22.73,34.3266666667,21.79,33.878,20.6,50.29,5.16,56.06,21.54,31.89,23.1,37.76,20.4633333333,36.6633333333,5,757.9,80,4,29,1.8,35.9719483065,35.9719483065 -80,10,21.39,36.2,19.29,38.59,22.745,34.29,21.7257142857,33.79,20.5333333333,50.1333333333,5.3,55.7266666667,21.5142857143,31.89,23.1,37.6266666667,20.4633333333,36.6633333333,4.95,757.9333333333,81.6666666667,4,30.8333333333,2.0166666667,9.6130460734,9.6130460734 -80,0,21.39,36.23,19.29,38.6633333333,22.79,34.2,21.7,33.79,20.5333333333,49.9333333333,5.5,55.19,21.5,31.89,23.1,37.56,20.39,36.59,4.9,757.9666666667,83.3333333333,4,32.6666666667,2.2333333333,40.5900794081,40.5900794081 -220,0,21.39,36.29,19.34,38.79,22.79,34.2,21.7,33.79,20.5333333333,49.76,5.8233333333,51.9233333333,21.5428571429,31.8614285714,23.1,37.5,20.39,36.59,4.85,758,85,4,34.5,2.45,15.4388781521,15.4388781521 -400,0,21.39,36.29,19.5333333333,38.6633333333,22.79,34.2,21.7,33.83125,20.6,49.5666666667,6.23,47.7966666667,21.54,31.754,23.1,37.5,20.4633333333,36.59,4.8,758.0333333333,86.6666666667,4,36.3333333333,2.6666666667,28.3323778771,28.3323778771 -90,0,21.39,36.29,19.6,38.53,22.79,34.2,21.7,33.856,20.5,49.3333333333,6.6666666667,41.6333333333,21.5714285714,31.7,23.1,37.5,20.445,36.645,4.75,758.0666666667,88.3333333333,4,38.1666666667,2.8833333333,27.3186913691,27.3186913691 -70,0,21.5,36.5,19.7,38.56,22.73,34.2,21.7,33.9714285714,20.5666666667,49.0666666667,7.1266666667,37.1666666667,21.54,31.64,23.1,37.4333333333,20.4633333333,36.6633333333,4.7,758.1,90,4,40,3.1,11.1356324051,11.1356324051 -70,0,21.5,36.5,19.7,38.4333333333,22.79,34.2,21.7,34,20.5,48.8333333333,7.16,33.6233333333,21.5285714286,31.5714285714,23.1,37.4,20.4633333333,36.6633333333,4.9333333333,758.0333333333,88,4,40,3,36.0315074446,36.0315074446 -60,0,21.5,36.5,19.79,38.4666666667,22.79,34.2,21.7,34.0514285714,20.5,48.6266666667,7.4933333333,33.8233333333,21.6,31.5,23.1666666667,37.3266666667,20.4266666667,36.6266666667,5.1666666667,757.9666666667,86,4,40,2.9,46.2114446447,46.2114446447 -80,0,21.5,36.56,19.8566666667,38.4,22.79,34.2,21.7,34.09,20.5,48.43,8.1966666667,30.6566666667,21.6,31.4057142857,23.2,37.2233333333,20.5,36.7,5.4,757.9,84,4,40,2.8,22.2712219809,22.2712219809 -60,0,21.55,36.545,19.89,38.26,22.79,34.1633333333,21.7,34.1685714286,20.5,48.23,7.9233333333,28.1966666667,21.6,31.39,23.2,37.09,20.5,36.7,5.6333333333,757.8333333333,82,4,40,2.7,28.012371785,28.012371785 -70,10,21.6,36.56,19.89,38.26,22.79,34.09,21.7,34.2,20.5,48.0266666667,5.5333333333,42.4633333333,21.6,31.3185714286,23.2,37.09,20.5,36.7,5.8666666667,757.7666666667,80,4,40,2.6,16.8330925633,16.8330925633 -60,0,21.6,36.5,19.76,38.4,22.7,34.2,21.7,34.1842857143,20.5,47.9,4.6,51.7966666667,21.56,31.29,23.2,37.09,20.4266666667,36.6266666667,6.1,757.7,78,4,40,2.5,10.6571933022,10.6571933022 -60,0,21.6,36.5,19.7,38.4,22.76,34.2,21.64,34.09,20.5,47.76,4.66,54.9333333333,21.5285714286,31.29,23.2,37.06,20.5,36.6266666667,5.6166666667,757.7,80.3333333333,3.5,40,2.4166666667,35.0106274127,35.0106274127 -70,0,21.6,36.4333333333,19.79,38.3633333333,22.76,34.2,21.6,34.09,20.5,47.6266666667,4.9933333333,56.2666666667,21.52,31.29,23.2,37,20.4266666667,36.53,5.1333333333,757.7,82.6666666667,3,40,2.3333333333,48.2066404307,48.2066404307 -60,0,21.6,36.4,19.79,38.29,22.7,34.2,21.6,34.134,20.5,47.3633333333,5.2933333333,56.2666666667,21.6125,31.29,23.2,36.8633333333,20.5,36.59,4.65,757.7,85,2.5,40,2.25,39.4629165879,39.4629165879 -50,0,21.6666666667,36.4666666667,19.8233333333,38.3266666667,22.7,34.2,21.6142857143,34.2128571429,20.5,47.23,5.8933333333,56.86,21.7,31.29,23.26,36.8633333333,20.5,36.73,4.1666666667,757.7,87.3333333333,2,40,2.1666666667,18.8478685217,18.8478685217 -50,0,21.7,36.5,19.89,38.4,22.76,34.2,21.7,34.312,20.5,47.06,6.6333333333,51.1233333333,21.7,31.29,23.29,36.79,20.5,36.79,3.6833333333,757.7,89.6666666667,1.5,40,2.0833333333,20.3097989666,20.3097989666 -50,0,21.7,36.5,19.9266666667,38.29,22.7,34.2,21.7,34.4,20.5,46.9333333333,7.0933333333,36.79,21.7,31.2385714286,23.3566666667,36.79,20.4266666667,36.8266666667,3.2,757.7,92,1,40,2,25.4318714724,25.4318714724 -60,0,21.73,36.5,20,38.29,22.7,34.2,21.7,34.4,20.5,46.76,7.295,28.245,21.7,31.2,23.29,36.6633333333,20.5,36.9,3.85,757.6333333333,88.5,1.6666666667,40,2.0166666667,32.3229189031,32.3229189031 -70,10,21.79,36.5,20,38.2,22.7,34.245,21.6428571429,34.3657142857,20.5,46.6175,7.5266666667,24.76,21.7,31.1285714286,23.3566666667,36.53,20.5,36.9,4.5,757.5666666667,85,2.3333333333,40,2.0333333333,0.5978528876,0.5978528876 -60,0,21.79,36.4,20.0666666667,38.2,22.6333333333,34.23,21.62,34.312,20.5,46.53,7.3333333333,29.0333333333,21.736,31.1,23.39,36.4,20.5,36.9,5.15,757.5,81.5,3,40,2.05,6.803042104,6.803042104 -60,0,21.79,36.4,20.1,37.9666666667,22.7,34.29,21.7,34.4,20.5,46.4,7.7266666667,30.1633333333,21.79,30.9514285714,23.39,36.4,20.5,36.9333333333,5.8,757.4333333333,78,3.6666666667,40,2.0666666667,2.334872249,2.334872249 -70,0,21.8233333333,36.4,20.1,37.925,22.6,34.2,21.7,34.4,20.5,46.3266666667,7.6,29.29,21.79,30.89,23.4633333333,36.3633333333,20.5,36.9333333333,6.45,757.3666666667,74.5,4.3333333333,40,2.0833333333,30.6745108333,30.6745108333 -70,0,21.89,36.4,20.1666666667,37.86,22.6,34.2,21.7,34.4571428571,20.5,46.1633333333,7.6,22.63,21.8185714286,30.89,23.4725,36.345,20.5,37,7.1,757.3,71,5,40,2.1,9.3673841446,9.3673841446 -80,0,21.89,36.3633333333,20.1,37.6633333333,22.6,34.2,21.7,34.5,20.5,46.03,7.7266666667,19.63,21.89,30.754,23.5666666667,36.23,20.5,37,7.0166666667,757.3,70.1666666667,5.3333333333,40,1.85,38.849344803,38.849344803 -60,0,21.89,36.29,20.1,37.53,22.6666666667,34.26,21.7,34.4285714286,20.5,45.93,8.0333333333,17.9,21.9842857143,30.5571428571,23.6333333333,36.1633333333,20.5,37,6.9333333333,757.3,69.3333333333,5.6666666667,40,1.6,28.4385307576,28.4385307576 -80,0,22,36.3633333333,20.1333333333,37.5,22.7,34.29,21.7,34.4,20.5,45.79,8.3,16.3666666667,22.02,30.434,23.7,36.09,20.5,37.09,6.85,757.3,68.5,6,40,1.35,15.7875027042,15.7875027042 -70,0,22,36.29,20.1333333333,37.5,22.7,34.23,21.7,34.4,20.39,45.56,7.0633333333,25.29,22.0285714286,30.3185714286,23.7,36,20.5,37.09,6.7666666667,757.3,67.6666666667,6.3333333333,40,1.1,0.0412323163,0.0412323163 -60,10,22,36.26,20.1,37.5,22.6333333333,34.23,21.7,34.3725,20.39,45.5,5.93,37.0966666667,22,30.29,23.7,36,20.5,37.09,6.6833333333,757.3,66.8333333333,6.6666666667,40,0.85,2.2148800548,2.2148800548 -60,0,22,36.2,20.1,37.5,22.7,34.29,21.7,34.4,20.39,45.4,5.8666666667,42.8333333333,22.0142857143,30.29,23.7,36,20.5,37.03,6.6,757.3,66,7,40,0.6,25.5320624216,25.5320624216 -60,0,22,36.2,20.1,37.3633333333,22.7,34.4,21.7,34.3685714286,20.4633333333,45.4,6.3333333333,38.9666666667,22.1,30.272,23.7,35.9333333333,20.5666666667,37.03,6.4333333333,757.3166666667,68.1666666667,6.8333333333,40,0.8666666667,20.6963940291,20.6963940291 -80,0,22.0333333333,36.23,20.1,37.29,22.7,34.4,21.7,34.4,20.4633333333,45.3333333333,6.6266666667,36.2633333333,22.1,30.2,23.7,35.8633333333,20.5666666667,37.09,6.2666666667,757.3333333333,70.3333333333,6.6666666667,40,1.1333333333,35.0569369271,35.0569369271 -80,0,22.1,36.29,20.0666666667,37.53,22.7,34.4,21.6857142857,34.2928571429,20.39,45.2,5.56,41.73,22.04,30,23.7,35.79,20.5,37.09,6.1,757.35,72.5,6.5,40,1.4,10.7141125831,10.7141125831 -80,0,22.1,36.26,20,37.59,22.7,34.4,21.6,34.178,20.5,45.1333333333,4.8966666667,48.0933333333,22.1,29.9371428571,23.7,36.03,20.5,37.03,5.9333333333,757.3666666667,74.6666666667,6.3333333333,40,1.6666666667,14.8638631566,14.8638631566 -100,0,22.1,36.2,20,37.6633333333,22.7,34.5,21.6,34.09,20.5,44.86,5.2725,48.5475,22.1,29.87,23.76,36.09,20.5,37,5.7666666667,757.3833333333,76.8333333333,6.1666666667,40,1.9333333333,30.600797222,30.600797222 -90,0,22.1,36.1633333333,20.0666666667,37.59,22.7,34.5,21.6,34.2,20.5,44.49,5.7333333333,48.2966666667,22.1,29.79,23.79,36.09,20.5,36.9333333333,5.6,757.4,79,6,40,2.2,40.9025597852,40.9025597852 -110,0,22.1,36.03,20.1,37.2966666667,22.7,34.5,21.6,34.2928571429,20.5666666667,44.1566666667,6.3666666667,38.1266666667,22.1,29.7,23.8566666667,36.1633333333,20.5,36.6633333333,5.8833333333,757.3833333333,76.8333333333,6,40,2.0333333333,30.9780856245,30.9780856245 -100,0,22.1333333333,35.8633333333,20.1,37.03,22.7,34.5,21.66,34.478,20.6,43.7966666667,6.6266666667,33.7933333333,22.1,29.5414285714,23.9266666667,36.2666666667,20.5,36.53,6.1666666667,757.3666666667,74.6666666667,6,40,1.8666666667,21.4405480307,21.4405480307 -110,0,22.1333333333,35.73,20.1,36.9,22.7,34.4,21.7,34.59,20.625,43.4475,7.03,24.5,22.1,29.37,24,36.4666666667,20.5,36.4333333333,6.45,757.35,72.5,6,40,1.7,24.3215971626,24.3215971626 -120,0,22.1333333333,36,20.0333333333,36.7666666667,22.6,34.26,21.7,34.59,20.7,43.3266666667,7.09,24.1,22.1,29.2642857143,24.1,36.79,20.5,36.4333333333,6.7333333333,757.3333333333,70.3333333333,6,40,1.5333333333,9.1940064449,9.1940064449 -120,0,22.2,36,20,36.56,22.6,34.2,21.7128571429,34.5385714286,20.79,43.0266666667,7.2933333333,22.8,22.1,29.1,24.1666666667,36.79,20.5,36.1333333333,7.0166666667,757.3166666667,68.1666666667,6,40,1.3666666667,15.4045029194,15.4045029194 -110,0,22.2,36.03,20.075,36.67,22.6,34.09,21.79,34.5,20.8566666667,42.9,7.56,23,22.1,29,24.2,36.59,20.5,35.86,7.3,757.3,66,6,40,1.2,47.0488142804,47.0488142804 -110,0,22.2,36.09,20.1,37.06,22.6,34.03,21.79,34.35,20.79,42.56,7.59,21.7233333333,22.1,29.0142857143,24.26,36.53,20.5,35.495,7.3333333333,757.35,65.6666666667,5.8333333333,40,1.1833333333,30.8335520211,30.8335520211 -110,0,22.2,36,20,37,22.5666666667,33.9666666667,21.7,34.054,20.79,42.4333333333,7.53,23.7233333333,22.1,29.1,24.29,36.45,20.5,35.1633333333,7.3666666667,757.4,65.3333333333,5.6666666667,40,1.1666666667,15.9751696978,15.9751696978 -110,0,22.2,36,20,37.06,22.5666666667,33.9,21.7,33.88,20.7,42.26,7.0266666667,25.63,22.0714285714,29.0285714286,24.26,36.2233333333,20.5,34.9633333333,7.4,757.45,65,5.5,40,1.15,33.9625482913,33.9625482913 -110,0,22.1666666667,36,19.89,37.1266666667,22.5,33.79,21.7,33.772,20.7,42.1266666667,6.8333333333,26.2233333333,22,29,24.26,36.1633333333,20.5,34.6633333333,7.4333333333,757.5,64.6666666667,5.3333333333,40,1.1333333333,27.2744340706,27.2744340706 -100,0,22.1,35.9333333333,19.89,37.2,22.5,33.8633333333,21.7,33.6685714286,20.7,41.8633333333,6.6566666667,25.8666666667,22,29.1414285714,24.29,36.09,20.4266666667,34.39,7.4666666667,757.55,64.3333333333,5.1666666667,40,1.1166666667,34.9511614186,34.9511614186 -100,0,22.1666666667,35.79,19.8566666667,37,22.5,33.79,21.7,33.554,20.7,41.73,6.53,24.46,22.02,29.412,24.29,36.09,20.39,34.1333333333,7.5,757.6,64,5,40,1.1,13.065030938,13.065030938 -90,0,22.1,35.845,19.79,37.06,22.5,33.79,21.6142857143,33.3385714286,20.7,41.6633333333,6.2,24.8666666667,22.0285714286,29.5,24.29,36,20.39,33.9333333333,7.1333333333,757.6333333333,65.3333333333,5,40,1.0166666667,21.8386598164,21.8386598164 -70,0,22.1,35.73,19.79,37.2,22.5,33.79,21.6,33.178,20.6333333333,41.4633333333,5.7933333333,25.06,22,29.5,24.29,36,20.39,33.7233333333,6.7666666667,757.6666666667,66.6666666667,5,40,0.9333333333,18.788501923,18.788501923 -100,0,22.1,35.73,19.79,37.26,22.5,33.8633333333,21.6,33.09,20.7,41.5,5.3666666667,27.23,22,29.5142857143,24.3233333333,36,20.39,33.53,6.4,757.7,68,5,40,0.85,42.7182931686,42.7182931686 -100,0,22.1,35.79,19.76,37.4333333333,22.4633333333,33.9666666667,21.6,33,20.7,41.4333333333,5.095,27.52,21.978,29.518,24.39,35.9333333333,20.29,33.3633333333,6.0333333333,757.7333333333,69.3333333333,5,40,0.7666666667,38.6636141106,38.6636141106 -120,0,22.1,35.9,19.7,37.5,22.39,33.9666666667,21.5428571429,32.8514285714,20.6666666667,41.3633333333,4.8333333333,28.0566666667,21.89,29.3185714286,24.29,35.9,20.29,33.29,5.6666666667,757.7666666667,70.6666666667,5,40,0.6833333333,27.2951325169,27.2951325169 -110,0,22.1,35.8266666667,19.6,37.4,22.39,34.09,21.5,32.714,20.6,41.23,4.59,29.2266666667,21.89,29.434,24.29,35.8266666667,20.29,33.1633333333,5.3,757.8,72,5,40,0.6,32.3666452081,32.3666452081 -110,0,22.1,35.76,19.5333333333,37.4,22.39,34.03,21.5,32.57875,20.6,41.09,4.6566666667,30.6266666667,21.89,29.4685714286,24.3566666667,35.76,20.29,33.03,5.1,757.8333333333,73.6666666667,4.6666666667,40,0.7,3.2932594768,3.2932594768 -110,10,22.0333333333,35.6266666667,19.5,37.29,22.4266666667,34,21.4685714286,32.4714285714,20.6,41.09,4.56,31.3233333333,21.85,29.456,24.3566666667,35.7,20.29,32.9,4.9,757.8666666667,75.3333333333,4.3333333333,40,0.8,32.6905835303,32.6905835303 -110,0,22,35.4666666667,19.4266666667,37.29,22.4266666667,34,21.39,32.29,20.6,40.9666666667,4.2266666667,32.5966666667,21.89,29.6971428571,24.39,35.6633333333,20.29,32.8266666667,4.7,757.9,77,4,40,0.9,46.4575923048,46.4575923048 -110,0,22,35.4,19.3566666667,37.36,22.39,33.9,21.39,32.2771428571,20.6,40.9,3.8333333333,34.9266666667,21.956,30.016,24.39,35.6633333333,20.26,32.6633333333,4.5,757.9333333333,78.6666666667,3.6666666667,40,1,43.0274402024,43.0274402024 -100,10,22,35.5,19.29,37.4333333333,22.39,33.975,21.39,32.218,20.55,40.845,3.6266666667,36.0666666667,21.89,29.89,24.39,35.7,20.2,32.53,4.3,757.9666666667,80.3333333333,3.3333333333,40,1.1,39.8901912966,39.8901912966 -90,0,21.9266666667,35.5,19.29,37.5,22.39,34,21.39,32.2257142857,20.5,40.79,3.4666666667,37.66,21.89,29.976,24.39,35.7,20.2,32.4,4.1,758,82,3,40,1.2,10.6681963778,10.6681963778 -110,0,21.89,35.4,19.2225,37.425,22.39,34.09,21.35,32.2,20.5,40.79,3.3266666667,39.5266666667,21.89,30.1,24.39,35.73,20.2,32.4,3.95,758.05,82.1666666667,3,40,1.1,48.4678517561,48.4678517561 -90,0,21.89,35.4,19.2,37.4666666667,22.39,33.9633333333,21.29,32.2771428571,20.5,40.7,3.29,41.5333333333,21.83,30.14,24.3233333333,35.8633333333,20.2,32.29,3.8,758.1,82.3333333333,3,40,1,36.3885355415,36.3885355415 -90,0,21.89,35.4,19.1,37.59,22.39,33.9,21.29,32.334,20.5,40.7,3.29,42.5333333333,21.8042857143,30.2128571429,24.39,35.9333333333,20.175,32.29,3.65,758.15,82.5,3,40,0.9,17.1981763677,17.1981763677 -80,0,21.89,35.4,19.1,37.59,22.39,33.9666666667,21.29,32.29,20.5,40.7,3.06,43.3966666667,21.79,30.456,24.3233333333,36.1333333333,20.1666666667,32.5633333333,3.5,758.2,82.6666666667,3,40,0.8,7.2005883791,7.2005883791 -80,0,21.79,35.29,19,37.6266666667,22.5,34.03,21.29,32.29,20.5,40.8333333333,2.86,43.8633333333,21.79,30.7642857143,24.39,36.645,20.2,33.3,3.35,758.25,82.8333333333,3,40,0.7,6.9278759882,6.9278759882 -80,10,21.79,35.29,19,37.7,22.5,34.09,21.2385714286,32.29,20.39,40.9333333333,2.6633333333,44.7933333333,21.79,31,24.39,37,20.2,33.6933333333,3.2,758.3,83,3,40,0.6,42.2973051784,42.2973051784 -80,0,21.73,35.5,18.89,37.8266666667,22.5,34.2,21.236,32.334,20.39,41,2.53,45.26,21.815,31.20625,24.39,37,20.2,34.1566666667,3.0333333333,758.2833333333,84.3333333333,3,40,0.6333333333,28.5705586197,28.5705586197 -80,0,21.73,35.4333333333,18.89,37.9,22.5666666667,34.26,21.2385714286,32.3371428571,20.4633333333,41.29,2.1333333333,44.7633333333,21.79,31.4528571429,24.4266666667,37.1266666667,20.2,34.43,2.8666666667,758.2666666667,85.6666666667,3,40,0.6666666667,28.5242720973,28.5242720973 -70,0,21.7,35.4,18.79,37.9333333333,22.6,34.29,21.2,32.334,20.39,41.3633333333,1.8975,45.8425,21.79,31.678,24.5,37.2,20.2,34.7666666667,2.7,758.25,87,3,40,0.7,24.284895265,24.284895265 -70,0,21.7,35.3633333333,18.79,38.06,22.6,34.3633333333,21.2,32.4,20.39,41.53,1.73,45.9,21.79,31.8185714286,24.5,37.2,20.2,34.9666666667,2.5333333333,758.2333333333,88.3333333333,3,40,0.7333333333,7.5638165115,7.5638165115 -60,0,21.6333333333,35.29,18.7,38.1266666667,22.6,34.4,21.2,32.4,20.39,41.6633333333,1.5333333333,46.6,21.79,32.036,24.5,37.2,20.2,35.23,2.3666666667,758.2166666667,89.6666666667,3,40,0.7666666667,36.6192796268,36.6192796268 -60,0,21.6,35.26,18.7,38.26,22.6,34.4666666667,21.2,32.4,20.39,41.79,1.5333333333,47.5266666667,21.79,32.22,24.5666666667,37.4633333333,20.2,35.3633333333,2.2,758.2,91,3,40,0.8,43.5659917537,43.5659917537 -60,0,21.6,35.26,18.6,38.23,22.6,34.5,21.2,32.46,20.39,41.8633333333,1.5,48.5333333333,21.79,32.438,24.5666666667,37.6633333333,20.2,35.53,2.1666666667,758.1833333333,90.8333333333,2.6666666667,40,0.75,22.7238032618,22.7238032618 -80,0,21.6,35.2,18.5333333333,38.3633333333,22.5333333333,34.5,21.1142857143,32.4857142857,20.3566666667,42,1.5666666667,49.6666666667,21.79,32.6214285714,24.6,37.7666666667,20.2,35.6633333333,2.1333333333,758.1666666667,90.6666666667,2.3333333333,40,0.7,25.8045468945,25.8045468945 -70,0,21.6,35.2,18.5,38.5,22.5666666667,34.5,21.1,32.5,20.3566666667,42.06,1.8266666667,50.7,21.79,32.834,24.6,37.9,20.2,35.86,2.1,758.15,90.5,2,40,0.65,32.3802154395,32.3802154395 -80,0,21.5,35.2,18.5,38.56,22.5666666667,34.56,21.1,32.5257142857,20.3566666667,42.2,1.9666666667,50.76,21.79,32.97,24.6,38.1266666667,20.2,36.06,2.0666666667,758.1333333333,90.3333333333,1.6666666667,40,0.6,36.2356270547,36.2356270547 -80,0,21.5,35.2,18.4633333333,38.7,22.6,34.6266666667,21.1,32.59,20.3566666667,42.26,2.09,51.03,21.79,33.156,24.6,38.3333333333,20.2,36.23,2.0333333333,758.1166666667,90.1666666667,1.3333333333,40,0.55,48.1424512924,48.1424512924 -70,0,21.5,35.23,18.39,38.7,22.6,34.7,21.1,32.59,20.29,42.29,2.1633333333,51.1633333333,21.79,33.2642857143,24.6,38.6266666667,20.2,36.3633333333,2,758.1,90,1,40,0.5,4.5912143076,4.5912143076 -80,0,21.5,35.29,18.3566666667,38.8266666667,22.6,34.7,21.1,32.612,20.29,42.4333333333,2.23,51.3666666667,21.79,33.29,24.6,38.6266666667,20.2,36.53,1.9666666667,758.0833333333,90.5,1.1666666667,40,0.55,22.6144031738,22.6144031738 -70,0,21.4633333333,35.2,18.29,38.9,22.6,34.73,21.0875,32.68625,20.29,42.56,2.29,51.76,21.79,33.3842857143,24.6,38.6266666667,20.2,36.6633333333,1.9333333333,758.0666666667,91,1.3333333333,40,0.6,36.5354686277,36.5354686277 -70,0,21.39,35.2,18.29,38.9666666667,22.6,34.79,21,32.59,20.29,42.59,2.4,52.09,21.79,33.4,24.6,38.7,20.2,36.8266666667,1.9,758.05,91.5,1.5,40,0.65,18.1457541068,18.1457541068 -80,0,21.39,35.2,18.2,38.9,22.6333333333,34.8266666667,21.04,32.7,20.29,42.6633333333,2.4,52.03,21.79,33.4285714286,24.5,38.89,20.2,36.9975,1.8666666667,758.0333333333,92,1.6666666667,40,0.7,39.0274359146,39.0274359146 -60,0,21.39,35.2,18.2,38.9666666667,22.7,34.9,21.0142857143,32.7,20.29,42.7,2.29,51.73,21.736,33.5,24.5666666667,39.2233333333,20.2,37.1633333333,1.8333333333,758.0166666667,92.5,1.8333333333,40,0.75,1.9619365106,1.9619365106 -70,0,21.39,35.2,18.2,39,22.7,34.9666666667,21,32.718,20.29,42.76,2.23,51.5966666667,21.79,33.5514285714,24.5,39.36,20.2,37.36,1.8,758,93,2,40,0.8,30.2122837049,30.2122837049 -60,0,21.3233333333,35.2,18.2,39,22.7,34.9,21,32.79,20.29,42.79,2.145,51.145,21.79,33.612,24.5,39.7,20.2,37.56,1.6833333333,757.95,93.5,2,37.5,0.75,31.2647731393,31.2647731393 -70,0,21.29,35.2,18.1,39.03,22.7,35,21,32.79,20.29,42.8633333333,2,51.3266666667,21.7514285714,33.7,24.5,40.1,20.2,37.73,1.5666666667,757.9,94,2,35,0.7,8.695452963,8.695452963 -70,0,21.29,35.2,18.1,39.09,22.7,35,21,32.8528571429,20.23,42.8266666667,1.9333333333,51.5266666667,21.7,33.7,24.5,40.5666666667,20.2,37.79,1.45,757.85,94.5,2,32.5,0.65,19.486813643,19.486813643 -60,0,21.29,35.245,18.1,39.09,22.7,35,21,32.856,20.23,42.9,1.8633333333,51.7,21.7257142857,33.7,24.5,40.8333333333,20.2,37.9333333333,1.3333333333,757.8,95,2,30,0.6,41.4744341513,41.4744341513 -80,0,21.29,35.29,18.1,39.1633333333,22.7,35,20.9214285714,32.9,20.2,42.9,1.79,51.5,21.7,33.7,24.4633333333,40.9666666667,20.2,38.06,1.2166666667,757.75,95.5,2,27.5,0.55,28.3730832627,28.3730832627 -70,0,21.23,35.23,18.0666666667,39.1633333333,22.7,35.09,20.89,32.9,20.2,42.9666666667,1.6,51.1266666667,21.7,33.7,24.39,40.9666666667,20.2,38.2,1.1,757.7,96,2,25,0.5,0.7727877004,0.7727877004 -60,0,21.2,35.2,18,39.09,22.7,35.09,20.89,32.9857142857,20.2,43,1.5333333333,51.26,21.7,33.736,24.39,41.09,20.2,38.26,1.1166666667,757.6333333333,96,2.1666666667,24.5,0.5166666667,39.2055164906,39.2055164906 -70,0,21.2,35.2,18,39.2,22.7,35.09,20.89,33,20.2,43,1.6,51.6933333333,21.7385714286,33.79,24.39,41.1633333333,20.2,38.29,1.1333333333,757.5666666667,96,2.3333333333,24,0.5333333333,37.9238211666,37.9238211666 -70,0,21.2,35.29,17.9266666667,39.2,22.7,35.09,20.89,33,20.2,43,1.6666666667,52.3,21.7,33.8725,24.39,41.4,20.2,38.29,1.15,757.5,96,2.5,23.5,0.55,15.5889616115,15.5889616115 -60,0,21.2,35.29,17.89,39.23,22.7,35.09,20.89,33.09,20.2,43,1.6666666667,52.6333333333,21.7,33.96,24.3233333333,41.4666666667,20.2,38.4,1.1666666667,757.4333333333,96,2.6666666667,23,0.5666666667,40.3294575051,40.3294575051 -40,0,21.1666666667,35.29,17.89,39.29,22.7,35.09,20.89,33.09,20.2,43.03,1.6,52.4333333333,21.7,34,24.39,41.56,20.2,38.4,1.1833333333,757.3666666667,96,2.8333333333,22.5,0.5833333333,35.3560998687,35.3560998687 -40,0,21.1,35.29,17.8566666667,39.26,22.7,35.09,20.87,33.072,20.2,43.09,1.6,52.5966666667,21.7,34,24.3233333333,41.4333333333,20.2,38.5,1.2,757.3,96,3,22,0.6,47.2322077258,47.2322077258 -50,0,21.1,35.29,17.8566666667,39.3333333333,22.625,35.0225,20.79,33,20.2,43.1266666667,1.6666666667,53.1233333333,21.7,34.0771428571,24.3566666667,41.4,20.2,38.5,1.2,757.2333333333,96.1666666667,2.8333333333,22.1666666667,0.6166666667,5.0496720825,5.0496720825 -70,0,21.1,35.29,17.79,39.23,22.6,35.06,20.79,33,20.2,43.2,1.7,53.3333333333,21.7,34.09,24.29,41.4,20.2,38.59,1.2,757.1666666667,96.3333333333,2.6666666667,22.3333333333,0.6333333333,40.9397884505,40.9397884505 -80,0,21.1,35.3266666667,17.79,39.29,22.6,35.03,20.79,33.0771428571,20.1333333333,43.2,1.6333333333,53.0666666667,21.7,34.1685714286,24.29,41.3633333333,20.2,38.6633333333,1.2,757.1,96.5,2.5,22.5,0.65,3.1853340683,3.1853340683 -70,0,21.0333333333,35.3266666667,17.79,39.3633333333,22.6,35.09,20.79,33.09,20.1333333333,43.2,1.6333333333,53.1966666667,21.7,34.254,24.29,41.29,20.2,38.79,1.2,757.0333333333,96.6666666667,2.3333333333,22.6666666667,0.6666666667,0.4318981664,0.4318981664 -70,0,21,35.29,17.76,39.4,22.6,35.09,20.79,33.09,20.1333333333,43.2,1.795,53.9475,21.7,34.2514285714,24.29,41.29,20.2,38.8175,1.2,756.9666666667,96.8333333333,2.1666666667,22.8333333333,0.6833333333,29.3965333141,29.3965333141 -60,0,21,35.29,17.7,39.4,22.6,35.09,20.754,33.2,20.1,43.29,2.0266666667,54.66,21.7,34.29,24.29,41.23,20.2,38.9,1.2,756.9,97,2,23,0.7,18.2811620529,18.2811620529 -60,0,21,35.29,17.7,39.5,22.6,35.09,20.7,33.2,20.1,43.29,2.23,54.9333333333,21.7,34.29,24.29,41.23,20.2,38.9,1.3,756.8166666667,96.8333333333,2,22.6666666667,0.7833333333,10.5644804193,10.5644804193 -70,0,21,35.3633333333,17.7,39.56,22.6,35.09,20.736,33.2,20.1,43.29,2.29,55.06,21.7,34.4,24.29,41.29,20.2,38.9,1.4,756.7333333333,96.6666666667,2,22.3333333333,0.8666666667,0.8116833749,0.8116833749 -60,0,21,35.4,17.7,39.59,22.6,35.09,20.7,33.2675,20.1,43.29,2.3266666667,54.9666666667,21.7,34.4,24.29,41.2,20.2,39,1.5,756.65,96.5,2,22,0.95,2.7025876683,2.7025876683 -70,0,21,35.4,17.7,39.59,22.6,35.1633333333,20.7,33.29,20.1,43.29,2.3266666667,54.8266666667,21.7,34.4,24.2225,41.025,20.2,39,1.6,756.5666666667,96.3333333333,2,21.6666666667,1.0333333333,43.7555613229,43.7555613229 -70,0,20.89,35.5,17.6666666667,39.59,22.6,35.2,20.7,33.4,20.1,43.3633333333,2.4,54.73,21.7,34.4,24.2,40.9,20.2,39,1.7,756.4833333333,96.1666666667,2,21.3333333333,1.1166666667,42.4815200502,42.4815200502 -80,0,20.89,35.5,17.6666666667,39.6633333333,22.6,35.2,20.7,33.4,20.1,43.4,2.4,54.93,21.7,34.356,24.2,40.76,20.2,39,1.8,756.4,96,2,21,1.2,35.4409307358,35.4409307358 -110,0,20.89,35.7666666667,17.7,39.7666666667,22.6,35.2,20.7,33.4,20.1,43.4,2.53,55.23,21.6571428571,34.3371428571,24.2,40.7,20.2,39.03,1.9333333333,756.3166666667,95.8333333333,2.1666666667,21,1.3,38.1260126829,38.1260126829 -60,0,20.89,36.2666666667,17.6333333333,40.2333333333,22.5333333333,35.1266666667,20.6571428571,33.4285714286,20,43.4,2.6633333333,55.43,21.62,34.312,24.2,40.7,20.2,39.1633333333,2.0666666667,756.2333333333,95.6666666667,2.3333333333,21,1.4,25.6945470115,25.6945470115 -60,10,20.9633333333,36.4666666667,17.6,40.9633333333,22.4633333333,34.93,20.64,33.58,20.0666666667,43.4,2.73,55.5,21.6285714286,34.3214285714,24.2,40.76,20.2,39.09,2.2,756.15,95.5,2.5,21,1.5,14.4992960733,14.4992960733 -70,0,21,36.53,17.6,41.1633333333,22.39,34.79,20.6428571429,33.6528571429,20.0333333333,43.4333333333,2.79,55.4333333333,21.64,34.334,24.2,40.73,20.2,39.09,2.3333333333,756.0666666667,95.3333333333,2.6666666667,21,1.6,5.0739429425,5.0739429425 -70,0,21,36.59,17.6,41.3266666667,22.29,34.76,20.6,33.718,20.0333333333,43.4333333333,2.8266666667,55.36,21.6428571429,34.4285714286,24.2,40.6566666667,20.2,39,2.4666666667,755.9833333333,95.1666666667,2.8333333333,21,1.7,43.6769324355,43.6769324355 -110,0,21,36.6266666667,17.6,41.4666666667,22.23,34.7,20.6,33.8214285714,20,43.53,2.9,55.5,21.6,34.554,24.1666666667,40.5,20.2,39,2.6,755.9,95,3,21,1.8,16.8170625926,16.8170625926 -60,10,21,36.8333333333,17.6,41.6266666667,22.26,34.76,20.6,33.9,20,43.8633333333,2.9333333333,55.6266666667,21.6714285714,34.94,24.1,40.56,20.2,38.9666666667,2.6166666667,755.8333333333,94.8333333333,3,21,1.8,17.985738907,17.985738907 -30,0,21,36.9633333333,17.6,41.8333333333,22.2,34.7,20.6,33.9,20,43.9,3.06,55.76,21.66,34.82,24.1,40.76,20.2,38.8266666667,2.6333333333,755.7666666667,94.6666666667,3,21,1.8,19.0937566804,19.0937566804 -40,0,21,37.1633333333,17.6,42.0666666667,22.2,34.745,20.56,33.9,20,43.9975,3.2,55.79,21.6,34.4971428571,24.0333333333,40.5666666667,20.1666666667,38.6633333333,2.65,755.7,94.5,3,21,1.8,38.8235462364,38.8235462364 -30,0,21,37.23,17.675,42.35,22.1333333333,34.6633333333,20.6,33.8214285714,20,44.09,3.3266666667,55.9,21.6,34.316,23.9633333333,40.3633333333,20.1,38.53,2.6666666667,755.6333333333,94.3333333333,3,21,1.8,43.6456234078,43.6456234078 -60,0,21,37.23,17.7,42.0666666667,22.2,34.59,20.6,33.9,20,44.09,3.4666666667,55.9666666667,21.6,34.07125,23.89,40.23,20.1,38.4,2.6833333333,755.5666666667,94.1666666667,3,21,1.8,17.373787309,17.373787309 -60,10,21,37.2,17.7,41.9,22.2,34.59,20.6,33.8528571429,20,44.09,3.6266666667,56.03,21.5714285714,33.7957142857,23.8233333333,40,20.1,38.295,2.7,755.5,94,3,21,1.8,39.697093307,39.697093307 -40,0,21,37.1266666667,17.76,41.8266666667,22.2,34.59,20.6,33.856,20,44.09,3.8333333333,56.1633333333,21.5,33.656,23.8233333333,39.86,20.1,38.1266666667,2.8333333333,755.4333333333,93.6666666667,2.8333333333,21.5,1.8833333333,35.6218155124,35.6218155124 -50,0,21,37.06,17.79,41.76,22.2,34.59,20.5714285714,33.9,20,44.03,4.1,56.36,21.5,33.5242857143,23.76,39.76,20.1,37.9666666667,2.9666666667,755.3666666667,93.3333333333,2.6666666667,22,1.9666666667,7.1939194109,7.1939194109 -60,20,21,37,17.79,41.6266666667,22.2,34.59,20.5,33.834,20,44,4.4933333333,56.6333333333,21.5,33.338,23.7,39.7,20.1,37.8266666667,3.1,755.3,93,2.5,22.5,2.05,3.5028345534,3.5028345534 -70,10,21,36.9666666667,17.9266666667,41.2966666667,22.2,34.53,20.5857142857,33.9571428571,20,43.9333333333,4.9966666667,56.9666666667,21.4685714286,32.9228571429,23.7,39.43,20.1,37.6333333333,3.2333333333,755.2333333333,92.6666666667,2.3333333333,23,2.1333333333,28.7042892771,28.7042892771 -70,20,21,36.9,18,40.9633333333,22.1333333333,34.59,20.6,34.054,20,43.6333333333,5.33,56.6333333333,21.39,32.46,23.6333333333,39.0966666667,20.1,37.36,3.3666666667,755.1666666667,92.3333333333,2.1666666667,23.5,2.2166666667,17.6773463609,17.6773463609 -70,10,20.89,36.79,18,40.6633333333,22.1666666667,34.59,20.6,34.1214285714,20,43.36,5.66,55.7633333333,21.3328571429,32.2385714286,23.55,38.69,20,37.0266666667,3.5,755.1,92,2,24,2.3,16.0017470131,16.0017470131 -70,20,20.89,36.7225,18,40.53,22.1,34.53,20.66,34.29,20,43.1,5.8666666667,54.9566666667,21.29,32.014,23.5,38.3333333333,20,36.7666666667,3.6666666667,755.0166666667,91.3333333333,2.3333333333,24.5,2.35,47.2007588483,47.2007588483 -60,20,20.89,36.6266666667,18,40.29,22.1333333333,34.5,20.6857142857,34.4828571429,20,42.8266666667,6.1,54.26,21.29,31.8185714286,23.4266666667,38.0666666667,20,36.5266666667,3.8333333333,754.9333333333,90.6666666667,2.6666666667,25,2.4,42.4740145681,42.4740145681 -60,10,20.89,36.5,18,40.23,22.1333333333,34.4333333333,20.7,34.612,20,42.56,6.4333333333,53.8666666667,21.29,31.7,23.39,37.79,20,36.3266666667,4,754.85,90,3,25.5,2.45,6.1765450868,6.1765450868 -70,20,20.89,36.5,18.1,40.06,22.1,34.4,20.71125,34.71125,20,42.36,6.8966666667,53.1333333333,21.2385714286,31.5857142857,23.3233333333,37.73,20,36.1333333333,4.1666666667,754.7666666667,89.3333333333,3.3333333333,26,2.5,19.4883339922,19.4883339922 -60,10,20.89,36.4,18.1666666667,39.9333333333,22.1,34.4,20.79,34.79,19.9633333333,42.1333333333,7.1566666667,52.4666666667,21.2,31.5,23.29,37.56,20,35.9333333333,4.3333333333,754.6833333333,88.6666666667,3.6666666667,26.5,2.55,48.4901258373,48.4901258373 -70,20,20.89,36.4,18.2,39.79,22.1,34.4,20.79,34.834,19.89,41.9333333333,7.2266666667,51.53,21.2,31.5,23.29,37.5,20,35.8633333333,4.5,754.6,88,4,27,2.6,29.9352343194,29.9352343194 -60,10,20.8566666667,36.4666666667,18.2,39.79,22.1,34.4,20.8757142857,34.9857142857,19.9633333333,41.7233333333,7.3666666667,51.3966666667,21.2,31.5,23.26,37.3633333333,19.9266666667,35.79,4.6666666667,754.5,87.8333333333,4,26.6666666667,2.75,47.5560129969,47.5560129969 -70,10,20.79,36.4,18.2,39.79,22.1,34.3633333333,20.89,35.018,19.89,41.59,7.4,51.45,21.2,31.5,23.2,37.29,20,35.76,4.8333333333,754.4,87.6666666667,4,26.3333333333,2.9,24.4366460363,24.4366460363 -60,0,20.79,36.4333333333,18.2,39.79,22.0333333333,34.23,20.89,35.0257142857,19.89,41.4666666667,7.2633333333,50.8666666667,21.2,31.5,23.1,37.2,19.9266666667,35.7,5,754.3,87.5,4,26,3.05,47.253504477,47.253504477 -40,10,20.79,36.5,18.2,39.79,22.05,34.245,20.89,35,19.89,41.3266666667,7.2633333333,51.8666666667,21.1714285714,31.5285714286,23.1,37.26,19.89,35.7,5.1666666667,754.2,87.3333333333,4,25.6666666667,3.2,0.7561325212,0.7561325212 -50,20,20.79,36.5,18.2,39.8725,22.0666666667,34.26,20.89,35.0671428571,19.89,41.245,7.4,52.5666666667,21.1,31.6,23.1,37.29,19.89,35.7,5.3333333333,754.1,87.1666666667,4,25.3333333333,3.35,6.4854655182,6.4854655182 -40,10,20.79,36.56,18.2,39.9,22,34.2,20.912,35.218,19.89,41.1633333333,7.4666666667,52.6266666667,21.1,31.6985714286,23.0333333333,37.23,19.89,35.7,5.5,754,87,4,25,3.5,39.292423334,39.292423334 -60,20,20.79,36.59,18.23,40,22,34.29,20.9214285714,35.29,19.89,41.09,7.6,53.33,21.1,31.79,23,37.2,19.865,35.7,5.5,753.9166666667,87.8333333333,3.8333333333,24.3333333333,3.6333333333,16.8685762561,16.8685762561 -70,10,20.79,36.6633333333,18.29,40.06,21.9266666667,34.3633333333,20.934,35.4,19.89,41.06,7.9333333333,54.0566666667,21.1,31.79,23,37.2,19.8566666667,35.76,5.5,753.8333333333,88.6666666667,3.6666666667,23.6666666667,3.7666666667,21.8601476401,21.8601476401 -60,20,20.7,36.73,18.39,40.0266666667,21.89,34.4,21,35.4142857143,19.89,41,8.63,54.6666666667,21.1,31.934,22.89,37.29,19.89,35.79,5.5,753.75,89.5,3.5,23,3.9,34.7388583818,34.7388583818 -70,10,20.76,36.8633333333,18.4633333333,39.9666666667,21.89,34.4,21,35.518,19.89,40.9,9.1633333333,53.6,21.1,32.0514285714,22.9633333333,37.29,19.89,35.8633333333,5.5,753.6666666667,90.3333333333,3.3333333333,22.3333333333,4.0333333333,23.4241176862,23.4241176862 -70,20,20.7,36.9333333333,18.5,40,21.89,34.5,21,35.59,19.89,40.9,9.36,51.4566666667,21.1,32.09,22.89,37.4,19.89,35.9,5.5,753.5833333333,91.1666666667,3.1666666667,21.6666666667,4.1666666667,26.9898332888,26.9898332888 -70,10,20.76,37,18.5,40,21.89,34.5,21.06,35.656,19.89,40.9,9.5,50.6566666667,21.0571428571,32.1214285714,22.8233333333,37.3266666667,19.89,35.9,5.5,753.5,92,3,21,4.3,42.6591758034,42.6591758034 -60,20,20.79,37.09,18.6,40,22,34.5,21.0857142857,35.7228571429,19.9633333333,40.9,9.7933333333,49.9633333333,21.1,32.2,22.79,37.3266666667,19.89,35.9333333333,5.7166666667,753.3833333333,91.8333333333,3.1666666667,21,4.4833333333,28.3425047528,28.3425047528 -60,10,20.79,37.09,18.6666666667,40,22,34.56,21.1,35.718,19.89,40.9,9.9266666667,47.4966666667,21.06,32.2,22.79,37.3725,19.89,35.9333333333,5.9333333333,753.2666666667,91.6666666667,3.3333333333,21,4.6666666667,40.5136643793,40.5136643793 -70,10,20.745,37.2,18.7,39.9,22,34.5,21.1,35.79,19.89,40.9,10.0333333333,46.4333333333,21,32.2,22.79,37.3633333333,19.8566666667,35.9666666667,6.15,753.15,91.5,3.5,21,4.85,27.548532316,27.548532316 -60,0,20.79,37.2666666667,18.76,39.8266666667,22,34.56,21.1,35.79,19.89,40.9,10.2933333333,45.2333333333,21,32.2,22.79,37.4,19.8566666667,35.9666666667,6.3666666667,753.0333333333,91.3333333333,3.6666666667,21,5.0333333333,18.2949872804,18.2949872804 -60,0,20.79,37.4666666667,18.8233333333,39.8266666667,22,34.59,21.1,35.79,19.89,40.8266666667,10.8266666667,42.6333333333,21,32.2257142857,22.73,37.4,19.8566666667,35.9666666667,6.5833333333,752.9166666667,91.1666666667,3.8333333333,21,5.2166666667,43.5857655946,43.5857655946 -60,10,20.79,37.7,18.89,39.8266666667,22,34.6633333333,21.1,35.812,19.89,40.79,11.16,38.3,21,32.2,22.7,37.4,19.8566666667,35.9666666667,6.8,752.8,91,4,21,5.4,48.7093706266,48.7093706266 -70,20,20.79,37.7,18.89,39.7,22,34.7,21.1,35.9,19.89,40.79,9.95,39.04,21,32.2,22.7,37.3266666667,19.79,35.9,7.0833333333,752.65,89,4.1666666667,24.1666666667,5.35,14.7772583412,14.7772583412 -70,10,20.79,37.7,18.9633333333,39.7,22,34.7,21.16,35.9,19.9633333333,40.79,10.4666666667,45.8966666667,21,32.2,22.7,37.29,19.79,35.8266666667,7.3666666667,752.5,87,4.3333333333,27.3333333333,5.3,20.5098622711,20.5098622711 -60,20,20.79,37.7,19.1333333333,39.56,22,34.73,21.1571428571,36.0085714286,19.89,40.79,11.06,44.49,21,32.2642857143,22.7,37.29,19.79,35.79,7.65,752.35,85,4.5,30.5,5.25,38.0738202715,38.0738202715 -80,10,20.79,37.7,19.2,39.4333333333,22,34.79,21.2,36.13,19.89,40.79,11.2566666667,42.3633333333,21,32.334,22.7,37.3266666667,19.79,35.8633333333,7.9333333333,752.2,83,4.6666666667,33.6666666667,5.2,28.8067740155,28.8067740155 -60,20,20.79,37.7,19.29,39.3633333333,22,34.79,21.2,36.30375,19.89,40.79,11.4633333333,40.8233333333,21,32.4428571429,22.7,37.4,19.79,35.9,8.2166666667,752.05,81,4.8333333333,36.8333333333,5.15,25.1987292431,25.1987292431 -60,10,20.79,37.79,19.29,39.29,22,34.79,21.2,36.4,19.89,40.79,11.2333333333,36.7566666667,21,32.4,22.6,37.4,19.79,35.9666666667,8.5,751.9,79,5,40,5.1,45.8559835912,45.8559835912 -50,10,20.79,37.79,19.29,39.29,22,34.79,21.29,36.536,19.9633333333,40.79,10.96,37.5566666667,21,32.4,22.6,37.3266666667,19.79,36,8.5666666667,751.75,79.3333333333,5,38.1666666667,5.2,11.0776176443,11.0776176443 -40,20,20.79,37.79,19.26,39.26,22,34.8266666667,21.29,36.59,19.89,40.79,10.6633333333,37.39,21,32.4,22.6,37.3633333333,19.79,36,8.6333333333,751.6,79.6666666667,5,36.3333333333,5.3,10.5416408274,10.5416408274 -50,10,20.79,37.79,19.2,39.2,22,34.9,21.29,36.634,19.89,40.79,10.1966666667,38.59,21,32.4571428571,22.5333333333,37.29,19.79,36,8.7,751.45,80,5,34.5,5.4,33.8572479086,33.8572479086 -50,20,20.79,38.1566666667,19.26,39.36,21.89,34.9,21.29,36.5642857143,19.89,40.79,9.8666666667,40.96,21,32.5,22.5,37.3266666667,19.79,36,8.7666666667,751.3,80.3333333333,5,32.6666666667,5.5,28.8750239997,28.8750239997 -60,10,20.79,38.29,19.2,39.5,21.89,34.9666666667,21.29,36.5,19.89,40.79,8.9333333333,52.2933333333,21,32.5,22.5,37.4,19.79,36,8.8333333333,751.15,80.6666666667,5,30.8333333333,5.6,46.7660144786,46.7660144786 -70,20,20.79,38.29,19.2,39.59,21.89,35,21.29,36.3514285714,19.89,40.8633333333,7.7666666667,57.6666666667,21,32.46,22.5,37.4,19.79,36,8.9,751,81,5,29,5.7,4.8956385232,4.8956385232 -60,10,20.79,38.29,19.1333333333,39.59,21.89,35.06,21.29,36.29,19.89,40.79,7.56,58.7933333333,20.9528571429,32.4,22.4266666667,37.3266666667,19.79,35.9333333333,8.6666666667,750.9333333333,82.1666666667,5.1666666667,30.8333333333,5.6833333333,2.9953575344,2.9953575344 -60,20,20.79,38.2,19.2,39.5,21.89,35.09,21.29,36.3214285714,19.89,40.79,7.7633333333,59.29,21,32.42,22.4633333333,37.3633333333,19.79,36,8.4333333333,750.8666666667,83.3333333333,5.3333333333,32.6666666667,5.6666666667,32.2952770744,32.2952770744 -70,10,20.79,38.2,19.1333333333,39.56,21.89,35.09,21.29,36.4,19.89,40.79,7.6233333333,59.23,20.9685714286,32.5,22.39,37.29,19.79,36,8.2,750.8,84.5,5.5,34.5,5.65,43.2265691459,43.2265691459 -70,10,20.79,38.2,19.1,39.59,21.89,35.09,21.29,36.4857142857,19.89,40.79,7.8666666667,59.4333333333,20.89,32.59,22.39,37.4,19.79,36,7.9666666667,750.7333333333,85.6666666667,5.6666666667,36.3333333333,5.6333333333,36.8361308705,36.8361308705 -60,0,20.79,38.23,19.1,39.6633333333,21.89,35.1633333333,21.29,36.5,19.89,40.79,8,59.5,20.89,32.6528571429,22.39,37.4,19.79,36.06,7.7333333333,750.6666666667,86.8333333333,5.8333333333,38.1666666667,5.6166666667,29.4886086369,29.4886086369 -60,0,20.79,38.29,19.1,39.73,21.89,35.23,21.29,36.4285714286,19.89,40.79,8.13,59.59,20.89,32.754,22.39,37.4666666667,19.76,36.1266666667,7.5,750.6,88,6,40,5.6,47.0681841252,47.0681841252 -70,0,20.79,38.29,19.1,39.79,21.8233333333,35.23,21.254,36.356,19.89,40.79,8.3675,59.695,20.89,32.8214285714,22.29,37.5,19.7,36.2,7.3833333333,750.5,89,5.6666666667,43.8333333333,5.65,17.7424110123,17.7424110123 -60,0,20.79,38.29,19.1,39.8266666667,21.89,35.3266666667,21.2,36.29,19.89,40.8633333333,8.5,59.79,20.89,32.9,22.29,37.56,19.7,36.29,7.2666666667,750.4,90,5.3333333333,47.6666666667,5.7,11.8251423119,11.8251423119 -80,0,20.79,38.29,19.1,39.9,21.89,35.4,21.2,36.29,19.89,40.9,8.6666666667,59.79,20.89,32.9875,22.29,37.6266666667,19.7,36.29,7.15,750.3,91,5,51.5,5.75,1.1667309212,1.1667309212 -60,0,20.79,38.29,19.1,39.9,21.89,35.4,21.2,36.3685714286,19.89,40.9,8.9333333333,59.93,20.89,33.0771428571,22.29,37.7,19.7,36.4,7.0333333333,750.2,92,4.6666666667,55.3333333333,5.8,7.8514227993,7.8514227993 -60,0,20.79,38.4,19.1,39.9,21.89,35.4,21.2,36.4,19.89,40.9,8.9333333333,60.06,20.89,33.112,22.26,37.7,19.7,36.4666666667,6.9166666667,750.1,93,4.3333333333,59.1666666667,5.85,6.1449128087,6.1449128087 -60,0,20.79,38.4,19.0666666667,39.9,21.89,35.4,21.1428571429,36.4571428571,19.89,40.9,8.6,59.86,20.89,33.2257142857,22.2,37.7,19.73,36.5,6.8,750,94,4,63,5.9,40.909755847,40.909755847 -50,0,20.73,38.4,19,39.9975,21.89,35.4,21.14,36.5,19.89,40.9,8.6,59.8633333333,20.89,33.29,22.2,37.73,19.73,36.56,7.0166666667,749.8666666667,93.3333333333,4.3333333333,59.1666666667,6,21.1126280949,21.1126280949 -70,0,20.79,38.4,18.9266666667,40.1633333333,21.89,35.4,21.1,36.5,19.89,40.9,8.5333333333,59.79,20.8042857143,33.29,22.2,37.79,19.7,36.6266666667,7.2333333333,749.7333333333,92.6666666667,4.6666666667,55.3333333333,6.1,29.0918295854,29.0918295854 -90,0,20.79,38.6566666667,18.89,40.4633333333,21.8233333333,35.4333333333,21.1,36.634,19.89,40.9,8.4266666667,59.73,20.79,33.356,22.2,37.9,19.7,36.7,7.45,749.6,92,5,51.5,6.2,49.3809371954,49.3809371954 -80,0,20.79,38.93,18.89,40.7233333333,21.8233333333,35.5,21.0857142857,36.7385714286,19.89,41,8.5,59.6566666667,20.79,33.4714285714,22.2,38.16,19.7,36.76,7.6666666667,749.4666666667,91.3333333333,5.3333333333,47.6666666667,6.3,5.7455728529,5.7455728529 -90,0,20.76,39.1266666667,18.8566666667,40.9,21.79,35.5,21.04,36.798,19.8233333333,40.9333333333,8.2633333333,59.1933333333,20.79,33.536,22.23,38.7266666667,19.7,36.8266666667,7.8833333333,749.3333333333,90.6666666667,5.6666666667,43.8333333333,6.4,24.5727866073,24.5727866073 -80,20,20.7,39.26,18.79,41.0266666667,21.79,35.56,21,36.80375,19.8233333333,41.03,8.19,59,20.79,33.59,22.29,39.06,19.7,36.9,8.1,749.2,90,6,40,6.5,4.6374209225,4.6374209225 -80,20,20.73,39.2,18.79,41.09,21.79,35.59,21,36.9714285714,19.8233333333,41.03,8.13,58.8266666667,20.79,33.59,22.39,39.23,19.7,36.9,8.0833333333,749.1,90.6666666667,5.6666666667,37.5,6.6,0.8914915612,0.8914915612 -170,10,20.73,39.2,18.8566666667,41.1633333333,21.79,35.6633333333,21.04,37.17,19.79,41.09,8.2633333333,59.0266666667,20.79,33.59,22.39,39.43,19.7,36.9,8.0666666667,749,91.3333333333,5.3333333333,35,6.7,43.1626783218,43.1626783218 -440,20,20.7,39.4633333333,18.89,41.23,21.79,35.73,21.0571428571,37.2642857143,19.8566666667,41.1633333333,8.5633333333,59.1566666667,20.79,33.59,22.5333333333,39.73,19.7,36.9,8.05,748.9,92,5,32.5,6.8,49.0980635746,49.0980635746 -250,10,20.76,39.7233333333,18.89,41.49,21.73,35.79,21.06,37.456,19.89,41.29,8.7633333333,59.0966666667,20.79,33.59,22.6,39.93,19.7,36.9666666667,8.0333333333,748.8,92.6666666667,4.6666666667,30,6.9,17.2659690841,17.2659690841 -110,0,20.8233333333,42.63,18.9266666667,43.2966666667,21.76,35.9333333333,21.1,37.8428571429,19.8233333333,41.29,8.89,58.66,20.79,33.656,22.6,40.06,19.6,36.9,8.0166666667,748.7,93.3333333333,4.3333333333,27.5,7,30.9784481651,30.9784481651 -110,0,20.9175,44.4725,19,44.2233333333,21.76,36.06,21.1,37.96,19.79,41.5966666667,8.34,57.02,20.79,33.6685714286,22.675,39.925,19.6666666667,36.9666666667,8,748.6,94,4,25,7.1,5.9153110953,5.9153110953 -120,0,21,43.9333333333,19.1333333333,44.1,21.79,36.1266666667,21.1,37.7285714286,19.79,41.99,6.5633333333,58.1666666667,20.79,33.46,22.7,39.8266666667,19.6,36.9666666667,7.5833333333,748.6,93.8333333333,4.3333333333,29.3333333333,6.65,21.443643712,21.443643712 -120,20,21.1,42.7333333333,19.26,43.9,21.79,36.2,21.1,37.656,19.79,42.2666666667,6.3333333333,57.99,20.7385714286,33.2857142857,22.73,39.79,19.6,36.9,7.1666666667,748.6,93.6666666667,4.6666666667,33.6666666667,6.2,47.8143089102,47.8143089102 -110,20,21.1666666667,42.0666666667,19.39,43.49,21.79,36.29,21.1,37.8428571429,19.79,42.4666666667,6.4,57.5966666667,20.7,33.2,22.79,39.79,19.6,36.8633333333,6.75,748.6,93.5,5,38,5.75,32.4972125585,32.4972125585 -110,10,21.3233333333,41.3633333333,19.4633333333,43.0966666667,21.79,36.29,21.1,37.96,19.79,42.53,6.3,57.43,20.7,33.1214285714,22.79,39.79,19.6,36.79,6.3333333333,748.6,93.3333333333,5.3333333333,42.3333333333,5.3,34.4654275337,34.4654275337 -170,20,21.39,40.7566666667,19.6333333333,42.6,21.79,36.29,21.1,37.8242857143,19.79,42.59,6.3666666667,57.29,20.7,33.09,22.8566666667,39.8633333333,19.6,36.76,5.9166666667,748.6,93.1666666667,5.6666666667,46.6666666667,4.85,41.1752806627,41.1752806627 -110,0,21.5333333333,40.2966666667,19.76,42.1933333333,21.79,36.3633333333,21.1,37.7,19.8566666667,42.6633333333,6.3,57.2,20.7,33.09,22.89,40,19.6,36.7,5.5,748.6,93,6,51,4.4,47.0922617591,47.0922617591 -90,0,21.6666666667,40.2966666667,19.89,41.9333333333,21.79,36.4,21.1,37.6214285714,19.79,42.6633333333,6.3,57.1266666667,20.7,33.09,22.9633333333,40.06,19.6,36.7,5.6333333333,748.55,93.1666666667,5.3333333333,46.5,4.5666666667,6.2005082262,6.2005082262 -100,0,21.8233333333,40.1633333333,19.9975,41.8425,21.79,36.425,21.1,37.46,19.79,42.79,6.1566666667,56.56,20.7,33.0257142857,23,40.1566666667,19.6,36.6266666667,5.7666666667,748.5,93.3333333333,4.6666666667,42,4.7333333333,4.4084380614,4.4084380614 -100,0,21.9633333333,39.9633333333,20.1666666667,41.6566666667,21.79,36.4333333333,21.1,37.2542857143,19.8925,48.9675,5.9633333333,56.36,20.7,33,23.0666666667,40.3633333333,19.6,36.59,5.9,748.45,93.5,4,37.5,4.9,13.195895555,13.195895555 -100,0,22.1,39.76,20.23,41.4666666667,21.73,36.5,21.04,37.116,21.1333333333,75.0333333333,5.6266666667,55.9,20.6571428571,32.8985714286,23.1,40.1933333333,19.575,36.59,6.0333333333,748.4,93.6666666667,3.3333333333,33,5.0666666667,44.8683891096,44.8683891096 -100,0,22.1,39.6266666667,20.29,41.2666666667,21.79,36.5,21,36.9285714286,21.0966666667,77.16,5.5,55.6266666667,20.6625,32.73125,23.1,40.7333333333,19.5,36.53,6.1666666667,748.35,93.8333333333,2.6666666667,28.5,5.2333333333,9.5546029625,9.5546029625 -120,20,22.2,39.43,20.29,41.06,21.79,36.53,21,36.834,20.6966666667,77.6333333333,5.4666666667,55.3333333333,20.64,32.634,23.1,41,19.5,36.5,6.3,748.3,94,2,24,5.4,37.0186812128,37.0186812128 -120,10,22.2,39.23,20.29,40.86,21.79,36.59,21,36.9142857143,20.5,77.1966666667,5.4666666667,55.2,20.6,32.59,23.1,40.9333333333,19.5,36.4333333333,6.1833333333,748.3,93.5,2.1666666667,26.6666666667,5.2,36.672306282,36.672306282 -120,10,22.2,38.9666666667,20.29,40.6333333333,21.7,36.56,21,37.094,20.4266666667,76.3233333333,5.59,55.06,20.6,32.59,23.2,40.79,19.5,36.4,6.0666666667,748.3,93,2.3333333333,29.3333333333,5,27.7334839106,27.7334839106 -100,20,22.2,38.8266666667,20.29,40.5,21.7,36.56,21.0714285714,37.4657142857,20.39,74.9633333333,5.6566666667,55.06,20.6,32.59,23.2,40.6566666667,19.5,36.4,5.95,748.3,92.5,2.5,32,4.8,1.9500118564,1.9500118564 -100,10,22.29,38.6633333333,20.29,40.3633333333,21.7,36.59,21.1,37.736,20.39,73.3633333333,5.69,55.06,20.6,32.59,23.23,40.53,19.5,36.4,5.8333333333,748.3,92,2.6666666667,34.6666666667,4.6,17.5309068873,17.5309068873 -90,10,22.29,38.53,20.23,40.1566666667,21.6333333333,36.59,21.1,37.8985714286,20.3566666667,68.1666666667,5.69,55.045,20.6,32.6214285714,23.29,40.4633333333,19.5,36.4,5.7166666667,748.3,91.5,2.8333333333,37.3333333333,4.4,29.7733713989,29.7733713989 -70,20,22.2,38.26,20.2,40.09,21.6666666667,36.7,21.12,38.018,20.29,66.0266666667,5.69,54.9333333333,20.6,32.7,23.3233333333,40.4633333333,19.5,36.4,5.6,748.3,91,3,40,4.2,48.7779839896,48.7779839896 -60,10,22.2,38.2,20.1333333333,40.1633333333,21.6,36.7,21.2,38.1725,20.26,63.09,5.6566666667,54.8633333333,20.6,32.7128571429,23.39,40.6633333333,19.5,36.4,5.5666666667,748.3333333333,90.3333333333,2.8333333333,40,4.0666666667,38.8213106082,38.8213106082 -80,10,22.2,38.2,20.0666666667,40.3633333333,21.6,36.7,21.2,38.2,20.2,61.1633333333,5.53,54.73,20.64,32.79,23.39,40.83,19.5,36.53,5.5333333333,748.3666666667,89.6666666667,2.6666666667,40,3.9333333333,28.4885850735,28.4885850735 -70,20,22.2,38.2,20,40.3633333333,21.6,36.7,21.2,38.2,20.2,59.1,5.4666666667,54.7233333333,20.6,32.7514285714,23.39,41.2225,19.5,36.6633333333,5.5,748.4,89,2.5,40,3.8,6.8373768474,6.8373768474 -60,10,22.1333333333,38.2,19.9633333333,40.4333333333,21.6,36.76,21.2,38.1371428571,20.2,58.0266666667,5.3333333333,54.59,20.6,32.79,23.39,41.4666666667,19.5,36.8266666667,5.4666666667,748.4333333333,88.3333333333,2.3333333333,40,3.6666666667,28.3956094994,28.3956094994 -60,10,22.1,38.2,19.89,40.5,21.6666666667,36.76,21.218,38.112,20.1666666667,57.0633333333,5.3,54.56,20.6142857143,32.7257142857,23.39,41.7666666667,19.5,36.9666666667,5.4333333333,748.4666666667,87.6666666667,2.1666666667,40,3.5333333333,2.9242232325,2.9242232325 -60,20,22.0333333333,38.1266666667,19.79,40.4333333333,21.6666666667,36.76,21.2257142857,38.1214285714,20.1,56.53,5.3,54.56,20.64,32.736,23.39,41.9666666667,19.5,37.03,5.4,748.5,87,2,40,3.4,35.794408503,35.794408503 -60,10,22,38.2,19.79,40.56,21.6,36.7,21.29,38.09,20.1,55.8633333333,4.7966666667,54.56,20.6,32.7,23.3233333333,42.23,19.5,37.09,5.35,748.5333333333,88.1666666667,2.3333333333,42.5,3.5333333333,6.0069419793,6.0069419793 -60,10,22,38.26,19.7,40.59,21.6,36.7,21.29,38.0385714286,20.1,55.39,4.3233333333,54.4333333333,20.64,32.7,23.3233333333,42.43,19.5,37.1266666667,5.3,748.5666666667,89.3333333333,2.6666666667,45,3.6666666667,3.9012454683,3.9012454683 -70,20,21.89,38.29,19.625,40.5225,21.6,36.6725,21.29,37.94,20.1,54.9,3.93,54.1633333333,20.6142857143,32.6371428571,23.3233333333,42.59,19.5,37.2,5.25,748.6,90.5,3,47.5,3.8,14.5173766534,14.5173766534 -70,10,21.89,38.29,19.5333333333,40.5,21.6,36.59,21.29,37.9,20.075,54.32,3.73,54.09,20.6,32.572,23.39,42.59,19.5,37.23,5.2,748.6333333333,91.6666666667,3.3333333333,50,3.9333333333,8.1316170283,8.1316170283 -70,10,21.89,38.2,19.4633333333,40.5,21.6,36.56,21.29,37.79,20,53.8,3.56,54,20.6428571429,32.5385714286,23.29,42.7,19.5,37.29,5.15,748.6666666667,92.8333333333,3.6666666667,52.5,4.0666666667,9.8991470528,9.8991470528 -70,20,21.8233333333,38.1266666667,19.39,40.4333333333,21.6,36.5,21.29,37.7385714286,20,53.3333333333,3.4333333333,53.8,20.6,32.46,23.29,42.96,19.5,37.29,5.1,748.7,94,4,55,4.2,3.1466580462,3.1466580462 -60,10,21.79,38.06,19.29,40.3333333333,21.7,36.59,21.29,37.634,20,53.0666666667,3.29,53.56,20.6,32.4,23.29,43.23,19.5,37.3266666667,4.8166666667,748.7833333333,93.5,4,52.5,3.85,35.3317158064,35.3317158064 -60,10,21.79,37.9333333333,19.23,40.1266666667,21.7,36.59,21.29,37.59,20,52.6933333333,3.29,53.5,20.6,32.334,23.23,43.1566666667,19.5,37.4,4.5333333333,748.8666666667,93,4,50,3.5,25.4499986186,25.4499986186 -60,20,21.7,37.9,19.2,40.06,21.7,36.56,21.39,37.5,20,52.4333333333,3.1633333333,53.5,20.6,32.2257142857,23.1666666667,43.09,19.5,37.4333333333,4.25,748.95,92.5,4,47.5,3.15,11.9007395464,11.9007395464 -70,10,21.7,37.8266666667,19.1333333333,39.9333333333,21.7,36.5,21.39,37.4428571429,19.9266666667,52.2233333333,2.9975,53.425,20.6,32.2,23.1,43.1633333333,19.5,37.5,3.9666666667,749.0333333333,92,4,45,2.8,40.4460050981,40.4460050981 -60,10,21.7,37.79,19.0666666667,39.8633333333,21.7,36.4666666667,21.39,37.4,19.9266666667,51.9633333333,2.9,53.4666666667,20.6,32.1371428571,23.1,43.29,19.5,37.5,3.6833333333,749.1166666667,91.5,4,42.5,2.45,47.3158311681,47.3158311681 -40,10,21.6333333333,37.73,19,39.79,21.7,36.4,21.39,37.3685714286,19.89,51.6633333333,2.79,53.4,20.6,32.07875,23.1,43.49,19.5,37.5,3.4,749.2,91,4,40,2.1,10.9718286199,10.9718286199 -60,20,21.6,37.7,18.9633333333,39.76,21.7,36.4,21.39,37.29,19.89,51.4633333333,2.79,53.4666666667,20.6,32,23.1,43.6633333333,19.5,37.5,3.3,749.15,91,3.6666666667,40,1.9833333333,33.6684887297,33.6684887297 -50,20,21.6,37.6266666667,18.89,39.76,21.7,36.3266666667,21.39,37.2542857143,19.89,51.26,2.7,53.5,20.6,31.9528571429,23.0333333333,43.53,19.5,37.5,3.2,749.1,91,3.3333333333,40,1.8666666667,10.9070326202,10.9070326202 -60,10,21.55,38.295,18.79,39.9,21.7,36.3633333333,21.39,37.09,19.89,51.1266666667,2.76,53.56,20.6,31.89,23,43.4,19.5,37.5,3.1,749.05,91,3,40,1.75,33.0185775296,33.0185775296 -50,0,21.5,38.6933333333,18.79,39.9,21.7,36.29,21.39,37.1685714286,19.89,50.93,2.79,53.6266666667,20.6,31.8328571429,23,43.4,19.5,37.5,3,749,91,2.6666666667,40,1.6333333333,34.2080255388,34.2080255388 -50,0,21.5,38.5,18.7,40,21.7,36.29,21.39,36.9,19.89,50.73,2.73,53.76,20.6,31.79,22.945,43.5,19.5,37.5,2.9,748.95,91,2.3333333333,40,1.5166666667,4.7068139655,4.7068139655 -50,10,21.5,38.8266666667,18.7,40.06,21.7,36.29,21.3757142857,36.7385714286,19.89,50.59,2.7,53.9,20.5714285714,31.79,22.89,43.6566666667,19.5,37.56,2.8,748.9,91,2,40,1.4,7.8448377084,7.8448377084 -50,0,21.4266666667,38.8266666667,18.7,40.03,21.7,36.29,21.29,36.516,19.8233333333,50.53,2.6266666667,53.9,20.6,31.79,22.89,43.93,19.5,37.73,2.7833333333,748.8833333333,91,2.1666666667,40,1.4,4.3514655554,4.3514655554 -50,0,21.39,38.6633333333,18.6333333333,40.03,21.7,36.29,21.29,36.3685714286,19.79,50.26,2.4666666667,54.1266666667,20.5142857143,31.7385714286,22.89,44,19.5,37.79,2.7666666667,748.8666666667,91,2.3333333333,40,1.4,31.090211845,31.090211845 -60,0,21.3233333333,38.53,18.5666666667,40,21.7,36.29,21.2675,36.10875,19.79,50.1266666667,2.3266666667,54.26,20.54,31.7,22.89,43.9333333333,19.5,37.9333333333,2.75,748.85,91,2.5,40,1.4,36.4765304141,36.4765304141 -60,0,21.29,38.4,18.5,40,21.7,36.29,21.2,35.9,19.79,50.06,2.26,54.3333333333,20.5,31.7,22.8566666667,43.93,19.5,38,2.7333333333,748.8333333333,91,2.6666666667,40,1.4,34.197407274,34.197407274 -50,0,21.29,38.2666666667,18.5,40.06,21.7,36.29,21.2,35.8371428571,19.79,49.9333333333,2.1266666667,54.26,20.5,31.6,22.79,43.79,19.5,38.2,2.7166666667,748.8166666667,91,2.8333333333,40,1.4,26.8404887407,26.8404887407 -50,0,21.29,38,18.3566666667,40,21.7,36.29,21.2,35.736,19.79,49.79,2.0266666667,54.3266666667,20.5,31.6,22.79,43.6633333333,19.5,38.2675,2.7,748.8,91,3,40,1.4,22.1322560334,22.1322560334 -60,0,21.23,37.86,18.29,40,21.7,36.29,21.1285714286,35.6214285714,19.76,49.6633333333,1.9,54.4,20.5,31.54,22.79,43.53,19.5666666667,38.3633333333,2.65,748.7666666667,91.3333333333,3,40,1.4,14.945685491,14.945685491 -40,0,21.26,37.8633333333,18.29,40,21.79,36.29,21.1,35.554,19.7,49.53,1.745,54.545,20.5,31.5,22.76,43.4666666667,19.5,38.4333333333,2.6,748.7333333333,91.6666666667,3,40,1.4,14.4441284938,14.4441284938 -50,0,21.2,37.79,18.29,40,21.79,36.29,21.1,35.4428571429,19.7,49.4666666667,1.43,54.7666666667,20.5,31.5,22.76,43.3266666667,19.5,38.5,2.55,748.7,92,3,40,1.4,11.5874982555,11.5874982555 -50,0,21.2,37.6633333333,18.2,39.9666666667,21.79,36.2,21.08,35.378,19.7,49.3266666667,1.1633333333,54.9666666667,20.5,31.4842857143,22.79,43.2,19.5,38.59,2.5,748.6666666667,92.3333333333,3,40,1.4,49.3080283632,49.3080283632 -50,0,21.2,37.59,18.2,39.9666666667,21.8566666667,36.26,21,35.29,19.7,49.1633333333,0.8666666667,55.1266666667,20.478,31.414,22.73,43.1266666667,19.5,38.6633333333,2.45,748.6333333333,92.6666666667,3,40,1.4,24.2483620066,24.2483620066 -60,0,21.1,37.59,18.1,39.9,21.89,36.29,21,35.2,19.7,49.09,0.8,55.2,20.4371428571,31.3328571429,22.7,42.9666666667,19.5,38.73,2.4,748.6,93,3,40,1.4,30.979001394,30.979001394 -50,0,21.1,37.53,18.1,39.9666666667,21.89,36.3633333333,20.9842857143,35.1842857143,19.7,49,0.8666666667,55.1633333333,20.39,31.29,22.7,42.8266666667,19.5,38.8633333333,2.25,748.5833333333,93.1666666667,3,40,1.2666666667,47.0711806556,47.0711806556 -60,0,21.1,37.4,18.0666666667,40,21.89,36.3633333333,20.934,35.09,19.7,48.86,0.8,55.09,20.4371428571,31.3328571429,22.7,42.6633333333,19.5,39,2.1,748.5666666667,93.3333333333,3,40,1.1333333333,13.5856692563,13.5856692563 -50,0,21.1,37.4,18,40,21.9633333333,36.3633333333,20.89,35.09,19.7,48.76,0.8,55.2,20.39,31.236,22.7,42.59,19.5,39.06,1.95,748.55,93.5,3,40,1,21.432281367,21.432281367 -30,0,21,37.245,18,40,22,36.29,20.89,35,19.7,48.7,0.7333333333,55.2,20.39,31.2,22.6666666667,42.56,19.5,39.2,1.8,748.5333333333,93.6666666667,3,40,0.8666666667,24.9240738456,24.9240738456 -30,0,21,37.09,17.9266666667,40,22,36.29,20.8471428571,34.9428571429,19.7,48.56,0.6333333333,55.1266666667,20.39,31.2,22.6,42.4333333333,19.5,39.2,1.65,748.5166666667,93.8333333333,3,40,0.7333333333,28.4788428224,28.4788428224 -20,0,21,37.09,17.89,40.03,22,36.29,20.83,34.834,19.7,48.5,0.6333333333,55.2,20.39,31.2,22.6,42.3633333333,19.5,39.2,1.5,748.5,94,3,40,0.6,18.9871470095,18.9871470095 -40,0,21,37.06,17.89,40.09,21.9266666667,36.29,20.79,34.79,19.6666666667,48.3333333333,0.4,55.2,20.39,31.175,22.6,42.214,19.5,39.2,1.4333333333,748.4666666667,94.1666666667,3.1666666667,40,0.5666666667,31.0056279181,31.0056279181 -50,0,20.9266666667,37,17.79,40,21.89,36.29,20.79,34.79,19.6,48.1266666667,0.4,55.2,20.39,31.1,22.5333333333,42.09,19.5,39.2,1.3666666667,748.4333333333,94.3333333333,3.3333333333,40,0.5333333333,26.439041039,26.439041039 -60,0,20.89,36.9,17.79,40,21.89,36.29,20.73,34.73,19.6,48,0.5,55.29,20.39,31.1,22.5333333333,42.09,19.5,39.2,1.3,748.4,94.5,3.5,40,0.5,49.9611494946,49.9611494946 -60,0,20.89,36.9,17.76,40.03,21.89,36.29,20.76,34.7,19.6,47.9333333333,0.4333333333,55.23,20.39,31.1,22.5333333333,42.09,19.5,39.3266666667,1.2333333333,748.3666666667,94.6666666667,3.6666666667,40,0.4666666667,13.8775106519,13.8775106519 -50,0,20.89,36.79,17.7,40.1175,21.89,36.3725,20.76,34.7,19.6,47.8633333333,0.5,55.29,20.29,31,22.5,42,19.5,39.4,1.1666666667,748.3333333333,94.8333333333,3.8333333333,40,0.4333333333,34.8610811285,34.8610811285 -70,0,20.8233333333,36.73,17.6333333333,40.0666666667,21.89,36.4,20.7,34.6633333333,19.6,47.73,0.475,55.2675,20.29,31,22.5,41.9333333333,19.5,39.4,1.1,748.3,95,4,40,0.4,3.5576392431,3.5576392431 -80,0,20.79,36.8,17.6,40.0666666667,21.89,36.3633333333,20.7,34.59,19.6,47.545,0.4,55.2,20.29,30.9633333333,22.5,41.8633333333,19.5,39.475,1.1833333333,748.25,94.1666666667,4,38.1666666667,0.35,21.7433624086,21.7433624086 -50,0,20.79,37.1333333333,17.5333333333,40.46,21.89,36.1566666667,20.7,34.59,19.6,47.4666666667,0.4333333333,55.23,20.29,30.89,22.5,41.73,19.5,39.5,1.2666666667,748.2,93.3333333333,4,36.3333333333,0.3,31.9911603467,31.9911603467 -60,0,20.79,37.33,17.5,40.86,21.76,35.76,20.6666666667,34.56,19.6,47.4,0.5,55.29,20.29,30.89,22.4725,41.65,19.5,39.4666666667,1.35,748.15,92.5,4,34.5,0.25,46.8890821212,46.8890821212 -280,0,20.79,37.39,17.5,41.1333333333,21.76,35.76,20.6,34.5,19.6,47.29,0.5,55.29,20.29,30.89,22.39,41.5,19.5,39.4,1.4333333333,748.1,91.6666666667,4,32.6666666667,0.2,46.8245795346,46.8245795346 -150,0,20.79,37.3266666667,17.5,41.3266666667,21.7,35.6633333333,20.6,34.5,19.5333333333,47.29,0.5666666667,55.29,20.29,30.8233333333,22.39,41.5,19.5,39.3633333333,1.5166666667,748.05,90.8333333333,4,30.8333333333,0.15,41.6532257572,41.6532257572 -70,0,20.79,37.4,17.5,41.4,21.7,35.59,20.6,34.5,19.5,47.2,0.6333333333,55.23,20.29,30.8233333333,22.39,41.5,19.5,39.23,1.6,748,90,4,29,0.1,49.7247580788,49.7247580788 -70,0,20.79,37.29,17.4266666667,41.4333333333,21.6333333333,35.53,20.6,34.5,19.5,47.1266666667,0.6333333333,55.23,20.29,30.79,22.39,41.5225,19.5,39.2,1.6166666667,747.9833333333,90,4.1666666667,29,0.1166666667,19.8749743169,19.8749743169 -100,0,20.79,37.3633333333,17.4266666667,41.5,21.6333333333,35.53,20.6,34.5,19.5,47,0.7,55.3633333333,20.29,30.79,22.39,41.53,19.5,39.2,1.6333333333,747.9666666667,90,4.3333333333,29,0.1333333333,44.2097634892,44.2097634892 -60,10,20.79,37.3,17.5,41.5,21.6,35.59,20.5,34.6566666667,19.5,47,0.8333333333,55.29,20.29,30.79,22.29,41.3633333333,19.5,39.2,1.65,747.95,90,4.5,29,0.15,39.6491136169,39.6491136169 -70,0,20.79,37.4333333333,17.5,41.6333333333,21.6,35.59,20.5,34.93,19.5,46.9,1.0333333333,55.29,20.29,30.79,22.29,41.23,19.5,39.0666666667,1.6666666667,747.9333333333,90,4.6666666667,29,0.1666666667,24.2919022683,24.2919022683 -50,0,20.79,37.59,17.5,41.6333333333,21.6,35.5,20.5,35.06,19.5,46.8266666667,1.1666666667,55.29,20.29,30.79,22.26,40.93,19.5,38.8333333333,1.6833333333,747.9166666667,90,4.8333333333,29,0.1833333333,41.7809891514,41.7809891514 -40,0,20.7675,37.4475,17.5,41.5,21.6,35.5,20.5,34.9333333333,19.5,46.79,1.3233333333,55.29,20.29,30.79,22.2,40.6566666667,19.5,38.6266666667,1.7,747.9,90,5,29,0.2,39.5355964662,39.5355964662 -40,0,20.76,37.3266666667,17.6,41.3633333333,21.6666666667,35.5,20.5,34.76,19.5,46.79,1.53,55.23,20.26,30.76,22.2,40.4666666667,19.5,38.4666666667,1.8333333333,747.9333333333,89.5,5,30.8333333333,0.25,18.3391001774,18.3391001774 -40,0,20.7,37.2,17.6,41.23,21.6,35.5,20.5,34.7,19.5,46.7,1.9633333333,55.2,20.2,30.6333333333,22.2,40.3266666667,19.5,38.2666666667,1.9666666667,747.9666666667,89,5,32.6666666667,0.3,9.6480001812,9.6480001812 -60,0,20.7,37.1266666667,17.7,41.06,21.6,35.4666666667,20.39,34.59,19.5,46.7,2.1633333333,55.2,20.2,30.6,22.2,40.145,19.5,38.0266666667,2.1,748,88.5,5,34.5,0.35,13.2660149131,13.2660149131 -380,0,20.7,37.06,17.76,40.9333333333,21.6,35.4,20.39,34.59,19.5,46.56,2.395,55.29,20.2,30.6,22.1,39.9666666667,19.5,37.8266666667,2.2333333333,748.0333333333,88,5,36.3333333333,0.4,25.3145024879,25.3145024879 -220,0,20.7,37,17.96,40.9,21.6,35.4666666667,20.39,34.59,19.5,46.5,3.0666666667,55.23,20.26,30.6666666667,22.1,39.8266666667,19.5,37.6333333333,2.3666666667,748.0666666667,87.5,5,38.1666666667,0.45,7.9417704255,7.9417704255 -50,0,20.7,37.09,18.25,40.525,21.625,35.4,20.39,34.59,19.5,46.4666666667,3.4,55.23,20.2,30.6,22.1,39.7,19.5,37.36,2.5,748.1,87,5,40,0.5,31.5521619166,31.5521619166 -50,0,20.7,37.09,18.9,40.0666666667,21.76,35.2666666667,20.39,34.73,19.5,46.4,4.1333333333,55.06,20.2,30.6,22.0333333333,39.5666666667,19.6,37.0266666667,2.75,748.0666666667,85.5,5.3333333333,40,0.4833333333,29.2713238741,29.2713238741 -50,0,20.7,37.09,19.8966666667,38.8233333333,21.89,35.1633333333,20.4725,34.9475,19.445,46.19,4.5933333333,55.06,20.2,30.5,22,39.4,19.6,36.7,3,748.0333333333,84,5.6666666667,40,0.4666666667,7.8992475872,7.8992475872 -50,0,20.7,37.09,20.43,37.7633333333,21.89,35.09,20.5666666667,35.06,19.5,46.1633333333,5.0333333333,55.2666666667,20.2,30.5,22,39.3266666667,19.6666666667,36.5,3.25,748,82.5,6,40,0.45,27.0210738061,27.0210738061 -50,0,20.73,37.09,20.5666666667,37.09,21.89,35.09,20.6,35.06,19.5,46.09,5.4333333333,55.7333333333,20.2,30.5,22,39.26,19.7,36.3633333333,3.5,747.9666666667,81,6.3333333333,40,0.4333333333,17.3150930903,17.3150930903 -40,0,20.79,37.09,20.6933333333,37.1633333333,21.89,35.09,20.6666666667,35.06,19.39,45.9,5.53,57.1566666667,20.2,30.4266666667,22,39.1266666667,19.7,36.23,3.75,747.9333333333,79.5,6.6666666667,40,0.4166666667,27.1865006769,27.1865006769 -60,0,20.79,37.09,21.2633333333,36.4233333333,21.89,35.09,20.73,35.06,19.4633333333,45.9,5.99,57.43,20.2,30.39,21.9266666667,39.06,19.7,36.06,4,747.9,78,7,40,0.4,32.2990699671,32.2990699671 -60,0,20.79,37.09,21.3233333333,35.9633333333,21.89,35.09,20.79,35,19.39,45.76,6.3666666667,58.3333333333,20.2,30.39,22,39,19.7,35.9333333333,4.25,747.9166666667,77.5,7,40,0.5666666667,47.5703803939,47.5703803939 -60,0,20.8233333333,37.03,21.3,36.0266666667,21.89,35.09,20.79,35,19.39,45.6266666667,6.3,58.9333333333,20.2,30.39,21.89,38.8633333333,19.7,35.79,4.5,747.9333333333,77,7,40,0.7333333333,14.1957813408,14.1957813408 -60,0,20.89,37.09,21.5666666667,35.6933333333,21.89,35.09,20.79,35,19.5,45.6633333333,6.66,58.9,20.2,30.3233333333,21.89,38.79,19.7,35.79,4.75,747.95,76.5,7,40,0.9,28.0257805251,28.0257805251 -50,0,20.89,37.09,21.43,35.53,21.8566666667,35.09,20.89,35.06,19.4266666667,45.4633333333,6.9333333333,58.9666666667,20.2,30.29,21.89,38.7,19.7,35.7,5,747.9666666667,76,7,40,1.0666666667,38.6018082267,38.6018082267 -50,0,20.89,37.09,21.29,35.7233333333,21.8566666667,35.09,20.89,35,19.39,45.3633333333,6.8666666667,57.6333333333,20.26,30.3566666667,21.89,38.7,19.7,35.6266666667,5.25,747.9833333333,75.5,7,40,1.2333333333,12.6207894064,12.6207894064 -50,0,20.79,36.9666666667,21.26,35.6633333333,21.8566666667,35.09,20.89,35,19.39,45.23,7,54.2266666667,20.26,30.3566666667,21.8233333333,38.59,19.7,35.59,5.5,748,75,7,40,1.4,44.6686281823,44.6686281823 -40,0,20.865,36.975,21.0666666667,35.59,21.79,35.09,20.89,34.9333333333,19.39,45.1633333333,6.6633333333,51.4633333333,20.26,30.29,21.8233333333,38.53,19.7,35.53,5.5666666667,748,75.0833333333,7.1666666667,39.0833333333,1.4833333333,30.0852859276,30.0852859276 -50,0,20.89,37,20.89,35.86,21.79,35.09,20.8566666667,34.8633333333,19.39,45.09,6.0633333333,49.33,20.2,30.29,21.79,38.5,19.7,35.4666666667,5.6333333333,748,75.1666666667,7.3333333333,38.1666666667,1.5666666667,28.8155870396,28.8155870396 -30,0,20.89,36.9666666667,20.8233333333,36,21.79,35.09,20.8566666667,34.8633333333,19.39,45,6.345,50.6,20.2,30.29,21.79,38.4333333333,19.7,35.4,5.7,748,75.25,7.5,37.25,1.65,37.9027618561,37.9027618561 -40,0,20.89,36.9,20.76,36.03,21.79,35.09,20.79,34.79,19.39,44.9333333333,6.4333333333,46.9966666667,20.2,30.29,21.79,38.4,19.6666666667,35.3633333333,5.7666666667,748,75.3333333333,7.6666666667,36.3333333333,1.7333333333,20.3294401988,20.3294401988 -30,0,20.89,36.9,20.7,36.1633333333,21.79,35.03,20.79,34.79,19.39,44.8633333333,6.8933333333,47.2566666667,20.23,30.23,21.79,38.3175,19.6,35.23,5.8333333333,748,75.4166666667,7.8333333333,35.4166666667,1.8166666667,15.0161672733,15.0161672733 -50,0,20.89,36.9,20.89,36.06,21.76,35,20.79,34.79,19.39,44.79,7.3,45.8266666667,20.29,30.29,21.79,38.29,19.7,35.29,5.9,748,75.5,8,34.5,1.9,3.7564437371,3.7564437371 -60,0,20.89,36.9,20.9175,35.875,21.76,35.06,20.8566666667,34.79,19.39,44.7,7.4333333333,46.3,20.29,30.2,21.73,38.26,19.7,35.29,5.9666666667,748,75.5833333333,8.1666666667,33.5833333333,1.9833333333,43.780511606,43.780511606 -40,0,20.89,36.9666666667,21.1333333333,35.7,21.79,35.045,20.89,34.9,19.39,44.6266666667,8.0333333333,38.3933333333,20.29,30.2,21.79,38.26,19.7,35.29,6.0333333333,748,75.6666666667,8.3333333333,32.6666666667,2.0666666667,25.7831779309,25.7831779309 -50,0,20.9266666667,37,21.29,35.43,21.79,35.09,20.89,34.8725,19.4633333333,44.56,8.5,34.06,20.29,30.1666666667,21.79,38.3266666667,19.7,35.29,6.1,748,75.75,8.5,31.75,2.15,24.9930320657,24.9930320657 -50,0,20.9266666667,37,21.29,35.23,21.73,35.09,20.9633333333,34.79,19.39,44.425,7.9633333333,37.06,20.29,30.1666666667,21.73,38.4,19.7,35.29,6.1666666667,748,75.8333333333,8.6666666667,30.8333333333,2.2333333333,2.2086806013,2.2086806013 -50,0,21,37,21.2,35.1266666667,21.79,35.2,20.89,34.79,19.39,44.3266666667,7.5633333333,38.2666666667,20.29,30.1,21.73,38.3633333333,19.7,35.2,6.2333333333,748,75.9166666667,8.8333333333,29.9166666667,2.3166666667,39.0938685741,39.0938685741 -60,0,21,37,21.2,35.2,21.79,35.2,20.89,34.79,19.39,44.26,7.8933333333,43.9966666667,20.29,30.1,21.79,38.23,19.7,35.2,6.3,748,76,9,29,2.4,7.3205916095,7.3205916095 -50,0,21,36.9,21.26,35.1333333333,21.76,35.1266666667,20.89,34.79,19.39,44.2,8.56,41.39,20.29,30.1,21.76,38.09,19.7,35.09,6.1,748,76.8333333333,8.3333333333,30.8333333333,2.3333333333,33.3542252658,33.3542252658 -60,0,21,36.8266666667,21.1333333333,35.1333333333,21.76,35.2,20.89,34.79,19.39,44.1633333333,7.73,34.2666666667,20.29,30.1,21.7,38.09,19.7,35.1633333333,5.9,748,77.6666666667,7.6666666667,32.6666666667,2.2666666667,25.126117433,25.126117433 -50,0,21,36.79,20.9633333333,35.36,21.79,35.2,20.89,34.79,19.39,44.09,6.5233333333,35.6,20.29,30.1333333333,21.7,38.09,19.7,35.2,5.7,748,78.5,7,34.5,2.2,47.8741076309,47.8741076309 -60,0,21,36.79,20.89,35.5,21.79,35.2,20.89,34.79,19.39,44.09,5.9333333333,45.46,20.29,30.2,21.7,38.09,19.6333333333,35.1266666667,5.5,748,79.3333333333,6.3333333333,36.3333333333,2.1333333333,13.7436742894,13.7436742894 -50,0,21,36.76,20.79,35.4333333333,21.79,35.1633333333,20.89,34.79,19.39,44.09,5.7933333333,46.2,20.29,30.23,21.7,38.09,19.7,35.2,5.3,748,80.1666666667,5.6666666667,38.1666666667,2.0666666667,41.058338352,41.058338352 -40,0,21,36.7,20.6633333333,35.56,21.79,35.09,20.89,34.79,19.39,44.09,5.3966666667,47.4666666667,20.29,30.29,21.7,38.09,19.6333333333,35.1266666667,5.1,748,81,5,40,2,12.4851329951,12.4851329951 -50,0,21,36.7,20.5666666667,35.73,21.79,35.2,20.8566666667,34.79,19.39,44.03,5.9233333333,52,20.29,30.29,21.6666666667,38.06,19.6,35.06,5.0833333333,748.05,80.8333333333,5,40,1.9666666667,26.57218026,26.57218026 -50,0,21,36.7,20.5,35.79,21.79,35.1266666667,20.79,34.79,19.39,44,7.1,54.19,20.29,30.3566666667,21.6,37.9333333333,19.6,35.06,5.0666666667,748.1,80.6666666667,5,40,1.9333333333,13.6248040246,13.6248040246 -60,0,20.9266666667,36.7,20.5,35.8633333333,21.79,35.09,20.79,34.79,19.39,44,7.3,51.6566666667,20.29,30.4266666667,21.6,38,19.6,35.09,5.05,748.15,80.5,5,40,1.9,19.78008101,19.78008101 -60,0,20.9633333333,36.73,20.4266666667,35.8633333333,21.79,35.09,20.79,34.79,19.39,43.9,7.2266666667,48.5966666667,20.29,30.5,21.6,38,19.6,35.09,5.0333333333,748.2,80.3333333333,5,40,1.8666666667,29.4199372875,29.4199372875 -40,0,20.9633333333,36.79,20.3566666667,35.9633333333,21.79,35.09,20.79,34.8633333333,19.39,43.9,6.7,45.96,20.29,30.5,21.6,38,19.6,35.09,5.0166666667,748.25,80.1666666667,5,40,1.8333333333,19.0567838261,19.0567838261 -40,0,20.9633333333,36.79,20.23,36.1633333333,21.79,35.09,20.79,34.79,19.39,43.9,6.16,45.7,20.29,30.5,21.6,37.9333333333,19.6,35.09,5,748.3,80,5,40,1.8,11.4925684989,11.4925684989 -30,0,20.89,36.79,20.0666666667,36.4,21.79,35.09,20.76,34.79,19.3233333333,43.8266666667,6.3666666667,48.9333333333,20.29,30.5,21.55,37.9,19.6,35.06,4.85,748.35,80.3333333333,4.5,40,1.7,45.2082510456,45.2082510456 -30,0,20.89,36.79,20,36.4666666667,21.79,35.09,20.76,34.73,19.3566666667,43.79,6.5,49.4666666667,20.29,30.5,21.6,37.9666666667,19.6,35,4.7,748.4,80.6666666667,4,40,1.6,36.9839511812,36.9839511812 -40,0,20.89,36.79,19.945,36.645,21.79,35.09,20.76,34.7,19.3566666667,43.79,6.59,50.1666666667,20.29,30.5,21.5333333333,37.9,19.6,35.03,4.55,748.45,81,3.5,40,1.5,29.5498503023,29.5498503023 -50,0,20.89,36.79,19.76,36.86,21.7,35.09,20.7,34.745,19.29,43.7,6.3966666667,48.9,20.29,30.5333333333,21.5,37.9333333333,19.6,35.09,4.4,748.5,81.3333333333,3,40,1.4,4.2718488839,4.2718488839 -50,0,20.89,36.79,19.7,37.06,21.7,35.09,20.7,34.7,19.29,43.7,6.0633333333,48.49,20.29,30.6666666667,21.5,37.9333333333,19.6,35.09,4.25,748.55,81.6666666667,2.5,40,1.3,41.3652227027,41.3652227027 -60,0,20.89,36.79,19.7,37.2,21.7,35.09,20.7,34.7,19.3566666667,43.6266666667,6.5966666667,51.5633333333,20.23,30.6333333333,21.5,38,19.6,35.09,4.1,748.6,82,2,40,1.2,37.2288106941,37.2288106941 -50,0,20.89,36.8633333333,19.76,37.2,21.7,35.09,20.7,34.7,19.29,43.59,7.2933333333,51.3,20.29,30.7,21.5,38,19.6,35.09,4.3,748.5666666667,80.6666666667,2.3333333333,40,1.1666666667,4.821134056,4.821134056 -60,0,20.89,36.9,19.76,37.2,21.7,35.1633333333,20.7,34.79,19.29,43.53,7.6266666667,47.6333333333,20.29,30.7,21.5,37.9333333333,19.6,35.09,4.5,748.5333333333,79.3333333333,2.6666666667,40,1.1333333333,23.3266385272,23.3266385272 -50,0,20.89,36.9,19.7,37.2,21.76,35.09,20.6333333333,34.73,19.29,43.5,7.8,47.2566666667,20.23,30.6333333333,21.5,37.9333333333,19.6,35.09,4.7,748.5,78,3,40,1.1,49.8895643745,49.8895643745 -50,0,20.8566666667,36.8633333333,19.7,37.3266666667,21.79,35.09,20.6666666667,34.76,19.29,43.5,7.8666666667,46.8633333333,20.29,30.7,21.5,37.9,19.6,35.09,4.9,748.4666666667,76.6666666667,3.3333333333,40,1.0666666667,5.1269630785,5.1269630785 -50,0,20.79,36.8633333333,19.7,37.4666666667,21.79,35.09,20.6,34.7,19.39,43.4,8.2966666667,40.0266666667,20.29,30.7,21.5,37.9,19.6,35.1633333333,5.1,748.4333333333,75.3333333333,3.6666666667,40,1.0333333333,43.621281581,43.621281581 -50,0,20.8566666667,36.9,19.7,37.4666666667,21.79,35.09,20.6,34.7,19.39,43.4,8.8233333333,41.0266666667,20.29,30.7,21.5,37.9,19.6,35.2,5.3,748.4,74,4,40,1,7.7269518515,7.7269518515 -50,0,20.8566666667,36.9666666667,19.6333333333,37.4,21.79,35.09,20.6,34.7,19.29,43.4,7.545,31.245,20.29,30.7,21.5,37.9,19.6,35.1266666667,5.25,748.4333333333,74.1666666667,4.3333333333,40,0.9666666667,45.8269272,45.8269272 -70,0,20.8233333333,36.9,19.5666666667,37.53,21.76,35,20.6,34.59,19.29,43.3266666667,6.03,45.8333333333,20.29,30.5666666667,21.5,37.8633333333,19.5,35.06,5.2,748.4666666667,74.3333333333,4.6666666667,40,0.9333333333,45.3308554483,45.3308554483 -90,0,20.89,36.9666666667,19.5,37.59,21.7,35,20.6,34.59,19.29,43.29,6.2966666667,49.9,20.29,30.5,21.5,37.79,19.5,35,5.15,748.5,74.5,5,40,0.9,27.0837900462,27.0837900462 -120,0,20.84,37.05,19.5,37.6266666667,21.7,35,20.6,34.5,19.29,43.29,6.53,44.13,20.29,30.4633333333,21.5,37.9633333333,19.5,34.9666666667,5.1,748.5333333333,74.6666666667,5.3333333333,40,0.8666666667,11.6361668217,11.6361668217 -100,0,20.89,37.29,19.5,37.76,21.7,35,20.6,34.5,19.39,43.26,6.73,41.33,20.29,30.39,21.5,38.09,19.5,34.8266666667,5.05,748.5666666667,74.8333333333,5.6666666667,40,0.8333333333,45.3200485441,45.3200485441 -90,0,20.89,37.29,19.5,37.79,21.7,35,20.6,34.5,19.39,43.2,6.8666666667,34.5266666667,20.29,30.34,21.6333333333,38.1266666667,19.5,34.79,5,748.6,75,6,40,0.8,1.1491067125,1.1491067125 -100,0,20.89,37.29,19.5,37.8633333333,21.7,35,20.6,34.4333333333,19.39,43.09,6.8,35.8,20.29,30.1666666667,21.76,38.26,19.5,34.79,5.3833333333,748.5833333333,71.8333333333,6,40,0.5166666667,41.0999419168,41.0999419168 -110,0,20.89,37.29,19.4633333333,37.9,21.7,35,20.6,34.3633333333,19.39,43.09,6.9,40.53,20.29,30.1,21.89,38.5,19.5,34.6633333333,5.7666666667,748.5666666667,68.6666666667,6,40,0.2333333333,5.9763825266,5.9763825266 -210,0,20.89,37.23,19.39,37.9,21.7,35,20.6,34.29,19.39,43.09,6.9,38.8633333333,20.2,29.9,21.9725,38.475,19.5,34.59,6.15,748.55,65.5,6,40,-0.05,41.8406615849,41.8406615849 -590,0,20.89,37.5633333333,19.39,37.745,21.65,34.9,20.5,34.1633333333,19.39,43.03,7.1,39.26,20.2,29.6333333333,22.0666666667,38.2666666667,19.5,34.3333333333,6.5333333333,748.5333333333,62.3333333333,6,40,-0.3333333333,46.315165842,46.315165842 -460,0,21.0333333333,41.1266666667,19.4266666667,38.59,21.7,35.03,20.5,34.0225,19.39,42.9,7.3666666667,31.8666666667,20.2,29.3566666667,22.1,38.09,19.5,34.07,6.9166666667,748.5166666667,59.1666666667,6,40,-0.6166666667,30.9584979317,30.9584979317 -100,0,21.1666666667,46.4,19.5666666667,40.7966666667,21.7,35.4233333333,20.5,33.9333333333,19.4725,42.9975,7.5,31.3233333333,20.2,29.1633333333,22.1666666667,37.89,19.5,33.8266666667,7.3,748.5,56,6,40,-0.9,19.6100156521,19.6100156521 -100,0,21.29,45,19.6333333333,42.2,21.79,36.1566666667,20.5,33.8633333333,19.5,43.2966666667,7.5,28.93,20.1666666667,29.0666666667,22.1,37.59,19.5,33.6633333333,7.15,748.5666666667,56.6666666667,6.1666666667,40,-0.9,8.8208925677,8.8208925677 -100,0,21.29,43.9266666667,19.7,41.7933333333,21.79,36.29,20.5,33.73,19.5,43.6933333333,7.2,26.4333333333,20.1,28.9266666667,22.1666666667,37.59,19.4266666667,33.4633333333,7,748.6333333333,57.3333333333,6.3333333333,40,-0.9,24.0044692298,24.0044692298 -80,0,21.39,42.4933333333,19.7,41.2966666667,21.79,36.3266666667,20.4633333333,33.56,19.5,43.9666666667,6.8666666667,26.0333333333,20.1,28.76,22.3233333333,37.6633333333,19.39,33.26,6.85,748.7,58,6.5,40,-0.9,45.5742952065,45.5742952065 -70,0,21.4633333333,41.36,19.76,40.83,21.79,36.3266666667,20.39,33.5,19.5,44.09,6.4666666667,23.69,20.1,28.5666666667,22.39,37.59,19.39,33.1266666667,6.7,748.7666666667,58.6666666667,6.6666666667,40,-0.9,22.5001149345,22.5001149345 -100,0,21.5,40.3333333333,19.8233333333,40.2666666667,21.7,36.26,20.39,33.3333333333,19.5,44.03,6.4,24.0233333333,20.1,28.3566666667,22.39,37.5,19.39,32.9666666667,6.55,748.8333333333,59.3333333333,6.8333333333,40,-0.9,41.7753768736,41.7753768736 -140,0,21.5666666667,39.7266666667,19.9633333333,39.8,21.7,36.2,20.39,33.2,19.6666666667,51.09,6.3,26.65,20.0333333333,28.1633333333,22.39,37.5,19.39,32.9,6.4,748.9,60,7,40,-0.9,20.6585354521,20.6585354521 -120,0,21.7,39.16,20.0333333333,39.26,21.79,36.09,20.39,33.09,19.9266666667,65.4966666667,6.19,25.9666666667,20.0333333333,28,22.4266666667,37.5,19.39,32.76,6.1833333333,748.95,61.6666666667,6.6666666667,40,-0.75,11.3801138476,11.3801138476 -130,0,21.76,38.8266666667,20.1666666667,39.0666666667,21.8566666667,36.09,20.39,33.03,19.8566666667,65.6333333333,6.0633333333,25.9,20.0333333333,27.9266666667,22.5,37.4333333333,19.39,32.6266666667,5.9666666667,749,63.3333333333,6.3333333333,40,-0.6,21.0022413172,21.0022413172 -130,0,21.89,38.5266666667,20.23,38.6633333333,21.9266666667,36.06,20.39,32.9,19.79,64.0266666667,5.8,26.8333333333,20,27.79,22.6333333333,37.26,19.3566666667,32.56,5.75,749.05,65,6,40,-0.45,45.9339160356,45.9339160356 -100,0,21.89,38.1933333333,20.29,38.59,22,35.9333333333,20.3233333333,32.9,19.7,62.36,5.66,28.7,20,27.73,22.7,37.1266666667,19.3566666667,32.5,5.5333333333,749.1,66.6666666667,5.6666666667,40,-0.3,32.2612108896,32.2612108896 -110,0,22.05,37.895,20.39,38.3333333333,22,35.8633333333,20.39,32.9,19.7,60.6933333333,5.4333333333,31.9666666667,20,27.7,22.79,36.9,19.29,32.3633333333,5.3166666667,749.15,68.3333333333,5.3333333333,40,-0.15,14.3578526448,14.3578526448 -100,0,22.1333333333,37.5266666667,20.39,38.0666666667,22,35.73,20.3233333333,32.9,19.6666666667,58.59,5.16,33.1,20,27.7,22.79,36.8266666667,19.29,32.29,5.1,749.2,70,5,40,0,18.9600140904,18.9600140904 -100,0,22.2,37.1933333333,20.39,37.8333333333,22.0666666667,35.6633333333,20.29,32.8633333333,19.6,56.7233333333,5.09,30.9633333333,19.945,27.7,22.79,36.7,19.29,32.29,4.7,749.2833333333,72.8333333333,5.1666666667,37.6666666667,0.1166666667,31.8814024446,31.8814024446 -100,0,22.2,36.8633333333,20.39,37.6266666667,22.0666666667,35.53,20.29,32.79,19.6,55.0266666667,5.03,31.2233333333,19.89,27.6666666667,22.79,36.6266666667,19.29,32.29,4.3,749.3666666667,75.6666666667,5.3333333333,35.3333333333,0.2333333333,20.2555778902,20.2555778902 -100,0,22.2,36.6566666667,20.29,37.4666666667,22,35.4,20.29,32.8633333333,19.6,54.1,4.6266666667,34.1966666667,19.89,27.6,22.73,36.56,19.29,32.2,3.9,749.45,78.5,5.5,33,0.35,38.0185737391,38.0185737391 -100,0,22.2,36.43,20.29,37.4,22,35.3266666667,20.29,32.79,19.5666666667,53.0333333333,4.2933333333,36.4633333333,19.89,27.6333333333,22.79,36.5,19.23,32.1266666667,3.5,749.5333333333,81.3333333333,5.6666666667,30.6666666667,0.4666666667,21.7861433863,21.7861433863 -90,10,22.2,36.29,20.2,37.45,22,35.145,20.29,32.79,19.5,52.3666666667,3.9,38.2966666667,19.89,27.8266666667,22.79,36.495,19.2,32.09,3.1,749.6166666667,84.1666666667,5.8333333333,28.3333333333,0.5833333333,29.0249098442,29.0249098442 -80,0,22.2,36.26,20.1666666667,37.2,22,35.2,20.245,32.8175,19.5,52.1633333333,3.5666666667,39.83,19.89,28.1333333333,22.79,36.86,19.2675,32.815,2.7,749.7,87,6,26,0.7,7.3212826857,7.3212826857 -90,0,22.2,36.1266666667,20.0333333333,37.2,22,35.26,20.23,32.9,19.5,51.97,3.1333333333,41.4,19.89,28.26,22.8566666667,37.1933333333,19.29,33.8633333333,2.3833333333,749.7,88.1666666667,5.5,28.3333333333,0.5833333333,48.9598244079,48.9598244079 -80,0,22.1,36.1266666667,20,37.23,22,35.4,20.2,32.9,19.5,51.6566666667,2.9333333333,43,19.89,28.4266666667,22.89,37.53,19.3233333333,34.6666666667,2.0666666667,749.7,89.3333333333,5,30.6666666667,0.4666666667,28.8166211685,28.8166211685 -80,0,22.0333333333,36.1266666667,19.9266666667,37.29,22,35.4,20.2,32.9666666667,19.39,51.2966666667,2.76,44.2666666667,19.89,28.5666666667,22.89,37.7233333333,19.39,35.1333333333,1.75,749.7,90.5,4.5,33,0.35,43.3864383143,43.3864383143 -70,0,22,36.2,19.79,37.3266666667,22,35.5,20.2,33,19.39,50.9633333333,2.6266666667,45.3933333333,19.89,28.73,22.9266666667,37.9633333333,19.39,35.4633333333,1.4333333333,749.7,91.6666666667,4,35.3333333333,0.2333333333,42.316926457,42.316926457 -50,0,22,36.26,19.79,37.4,22,35.56,20.2,33.06,19.39,50.6633333333,2.45,46.35,19.89,28.8566666667,23,38.09,19.3233333333,35.6633333333,1.1166666667,749.7,92.8333333333,3.5,37.6666666667,0.1166666667,5.088434543,5.088434543 -40,0,21.9633333333,36.29,19.6666666667,37.53,22,35.59,20.2,33.09,19.39,50.4633333333,2.4,47.6933333333,19.89,28.9266666667,23,38.39,19.39,35.8266666667,0.8,749.7,94,3,40,0,3.9886053419,3.9886053419 -30,0,21.89,36.3633333333,19.6,37.59,22,35.59,20.2,33.1633333333,19.39,50.1633333333,2.2666666667,48.1,19.89,29,23.0666666667,38.7966666667,19.39,35.9666666667,1.1666666667,749.6833333333,92.6666666667,3.1666666667,40,0.1333333333,20.435589191,20.435589191 -30,0,21.89,36.4,19.5666666667,37.73,22,35.7,20.2,33.1266666667,19.39,50.03,2.2,48.83,19.89,29.1,23,39.0666666667,19.39,36.1266666667,1.5333333333,749.6666666667,91.3333333333,3.3333333333,40,0.2666666667,13.2369727595,13.2369727595 -40,0,21.8233333333,36.3266666667,19.4266666667,37.79,22,35.7,20.1333333333,33.2,19.39,49.76,2.2,49.2233333333,19.89,29.1666666667,23,39.26,19.39,36.26,1.9,749.65,90,3.5,40,0.4,48.8554520649,48.8554520649 -60,0,21.79,36.26,19.3566666667,37.76,22,35.73,20.1,33.2,19.39,49.5666666667,2.23,49.3266666667,19.89,29.2,23,39.5666666667,19.39,36.4333333333,2.2666666667,749.6333333333,88.6666666667,3.6666666667,40,0.5333333333,27.734924783,27.734924783 -60,0,21.73,36.2,19.29,37.7,22,35.79,20.1,33.26,19.3566666667,49.3633333333,2.23,49.3266666667,19.89,29.26,22.9266666667,39.8333333333,19.39,36.6333333333,2.6333333333,749.6166666667,87.3333333333,3.8333333333,40,0.6666666667,9.8567502224,9.8567502224 -50,0,21.7,36.09,19.2,37.59,22,35.79,20.1,33.29,19.29,49.23,2.26,49.0333333333,19.89,29.29,22.89,40.23,19.39,36.8266666667,3,749.6,86,4,40,0.8,40.991123335,40.991123335 -50,0,21.7,36.09,19.1333333333,37.7233333333,22,35.79,20.1,33.29,19.29,49.06,2.1266666667,48.76,19.89,29.29,22.89,40.43,19.39,36.9666666667,3,749.6166666667,85.1666666667,4.3333333333,40,0.6833333333,1.2846702943,1.2846702943 -40,0,21.6333333333,36.03,19.0666666667,37.7,22,35.79,20.1,33.29,19.29,48.9333333333,2.06,49,19.89,29.39,22.79,40.6566666667,19.39,37.1266666667,3,749.6333333333,84.3333333333,4.6666666667,40,0.5666666667,9.6021207049,9.6021207049 -50,0,21.6,36,19,37.6266666667,22,35.8633333333,20.0333333333,33.29,19.29,48.76,1.9333333333,49.3333333333,19.89,29.39,22.79,40.8633333333,19.39,37.26,3,749.65,83.5,5,40,0.45,14.9996568798,14.9996568798 -60,0,21.5333333333,36,18.89,37.6266666667,22,35.8266666667,20.1,33.4,19.29,48.6266666667,1.9333333333,50.1933333333,19.89,29.39,22.79,41.03,19.39,37.4333333333,3,749.6666666667,82.6666666667,5.3333333333,40,0.3333333333,3.069685318,3.069685318 -50,0,21.5,36,18.8233333333,37.6266666667,22,35.9,20.1,33.4,19.29,48.4666666667,2.06,50.6,19.89,29.5,22.79,41.1633333333,19.39,37.6333333333,3,749.6833333333,81.8333333333,5.6666666667,40,0.2166666667,6.4679892734,6.4679892734 -60,0,21.5,36,18.76,37.6566666667,22.05,35.95,20,33.29,19.29,48.3266666667,2.09,50.66,19.89,29.5,22.79,41.23,19.39,37.9333333333,3,749.7,81,6,40,0.1,25.9427948389,25.9427948389 -60,0,21.5,36,18.7,37.8175,22.1,35.9,20,33.29,19.29,48.26,2.09,50.4666666667,19.89,29.5,22.73,41.23,19.39,38.095,2.95,749.7,81.8333333333,5.8333333333,40,0.1833333333,2.2827546578,2.2827546578 -60,0,21.4266666667,35.86,18.6333333333,37.9,22.1,35.9,20,33.29,19.2675,48.095,2.2,50.4233333333,19.89,29.5,22.7,41.045,19.39,38.26,2.9,749.7,82.6666666667,5.6666666667,40,0.2666666667,16.6672589374,16.6672589374 -50,0,21.39,35.79,18.6,37.9333333333,22.1,35.9666666667,20,33.29,19.26,48,2.2,49.9975,19.89,29.6,22.6,40.8633333333,19.39,38.4333333333,2.85,749.7,83.5,5.5,40,0.35,13.7849025661,13.7849025661 -50,0,21.3233333333,35.79,18.5333333333,38,22.1,35.9,20,33.3633333333,19.2,47.76,2.2,50.1,19.89,29.6,22.6,40.73,19.39,38.5,2.8,749.7,84.3333333333,5.3333333333,40,0.4333333333,9.3839149573,9.3839149573 -50,0,21.29,35.76,18.4633333333,38.06,22.1,35.9,19.9633333333,33.29,19.2,47.7,2.1333333333,49.7333333333,19.79,29.5,22.5,40.79,19.39,38.6266666667,2.75,749.7,85.1666666667,5.1666666667,40,0.5166666667,7.3752183001,7.3752183001 -40,0,21.29,35.7,18.39,38,22.1,35.9,19.89,33.29,19.2,47.59,2,49.66,19.79,29.5,22.5,40.79,19.39,38.7,2.7,749.7,86,5,40,0.6,49.0050034714,49.0050034714 -50,0,21.29,35.7,18.3566666667,38.09,22.1,35.9333333333,19.9633333333,33.29,19.2,47.53,1.8633333333,49.6266666667,19.79,29.5,22.5,40.9333333333,19.39,38.79,2.6666666667,749.7,86,5,40,0.5666666667,18.1663378142,18.1663378142 -60,0,21.29,35.7,18.29,38.1633333333,22.1,35.9333333333,19.89,33.29,19.2,47.4,1.79,49.8333333333,19.79,29.5,22.5,41,19.39,38.8633333333,2.6333333333,749.7,86,5,40,0.5333333333,25.5134851788,25.5134851788 -30,0,21.2,35.56,18.29,38.2,22.1,35.9333333333,19.89,33.4,19.2,47.3266666667,1.7,50.1666666667,19.79,29.5,22.39,41.2,19.39,38.9333333333,2.6,749.7,86,5,40,0.5,31.4529695199,31.4529695199 -40,0,21.2,35.5,18.23,38.1266666667,22.1,35.9333333333,19.89,33.4,19.2,47.26,1.7,50.7666666667,19.79,29.5,22.39,41.2,19.39,39.06,2.5666666667,749.7,86,5,40,0.4666666667,47.1333848312,47.1333848312 -40,0,21.2,35.5,18.1666666667,38.2,22.1,35.9,19.89,33.4,19.2,47.1266666667,1.76,51.06,19.79,29.6,22.39,41.23,19.39,39.09,2.5333333333,749.7,86,5,40,0.4333333333,19.0882353461,19.0882353461 -30,0,21.1333333333,35.5,18.1,38.2,22.1,35.9,19.89,33.4,19.1666666667,47.06,1.7,50.9333333333,19.79,29.6,22.3233333333,41.3633333333,19.39,39.09,2.5,749.7,86,5,40,0.4,41.1819656147,41.1819656147 -50,0,21.1,35.5,18.1,38.29,22.0666666667,35.9,19.89,33.4,19.1,47,1.53,50.6,19.79,29.5333333333,22.3566666667,41.4,19.39,39.09,2.5333333333,749.7166666667,85.6666666667,5,40,0.3833333333,47.0828727935,47.0828727935 -50,0,21.1,35.5,18.1,38.3633333333,22,35.9,19.89,33.4,19.1,46.9,1.4633333333,50.9333333333,19.79,29.6,22.29,41.3266666667,19.39,39.09,2.5666666667,749.7333333333,85.3333333333,5,40,0.3666666667,23.2464656699,23.2464656699 -50,0,21.1,35.5,18,38.2,22,35.9666666667,19.8566666667,33.3633333333,19.1,46.8266666667,1.6633333333,51.9566666667,19.79,29.6,22.29,41.26,19.39,39.23,2.6,749.75,85,5,40,0.35,31.343288708,31.343288708 -50,0,21,35.4,18,38.26,22,35.9,19.79,33.29,19.1,46.76,1.99,52.6233333333,19.79,29.6,22.29,41.2,19.39,39.3633333333,2.6333333333,749.7666666667,84.6666666667,5,40,0.3333333333,12.8337549279,12.8337549279 -50,0,21,35.4,17.9633333333,38.3266666667,22,35.9333333333,19.79,33.29,19.1,46.7,2.23,52.76,19.79,29.6,22.29,41.06,19.39,39.4333333333,2.6666666667,749.7833333333,84.3333333333,5,40,0.3166666667,18.272904004,18.272904004 -50,0,21,35.4,17.89,38.4,22,35.9333333333,19.79,33.29,19.1,46.59,2.29,52.5666666667,19.79,29.6,22.29,41,19.39,39.5,2.7,749.8,84,5,40,0.3,4.415439174,4.415439174 -60,0,21,35.4,17.89,38.45,22,35.9,19.79,33.4,19.1,46.59,2.45,52.545,19.79,29.6,22.23,40.8266666667,19.39,39.59,2.6333333333,749.8166666667,85.1666666667,4.8333333333,37.5,0.4166666667,29.0628275019,29.0628275019 -40,0,20.89,35.4,17.79,38.4333333333,22,35.9,19.79,33.4,19.1,46.5,2.59,52.5,19.79,29.6333333333,22.23,40.7666666667,19.39,39.6175,2.5666666667,749.8333333333,86.3333333333,4.6666666667,35,0.5333333333,30.793365126,30.793365126 -70,0,20.89,35.4,17.79,38.5,22,35.9,19.79,33.4,19.1,46.4333333333,2.59,52.56,19.73,29.7,22.2,40.6633333333,19.39,39.7,2.5,749.85,87.5,4.5,32.5,0.65,14.2919295351,14.2919295351 -50,0,20.89,35.4,17.79,38.59,22,35.9333333333,19.73,33.4,19.1,46.4,2.6266666667,52.7666666667,19.7,29.7,22.2,40.5675,19.39,39.7,2.4333333333,749.8666666667,88.6666666667,4.3333333333,30,0.7666666667,40.5391907902,40.5391907902 -40,0,20.89,35.4,17.79,38.59,22,36,19.73,33.4,19.1,46.3633333333,2.7,52.9,19.7,29.7,22.2,40.5,19.39,39.7,2.3666666667,749.8833333333,89.8333333333,4.1666666667,27.5,0.8833333333,48.9063904737,48.9063904737 -60,0,20.8566666667,35.4,17.76,38.7,22,36,19.7,33.5,19.1,46.29,2.73,52.9333333333,19.7,29.73,22.2,40.53,19.39,39.73,2.3,749.9,91,4,25,1,49.0243394161,49.0243394161 -40,0,20.79,35.4,17.7,38.7,22,36,19.7,33.5,19.0333333333,46.2,2.79,53.06,19.7,29.79,22.2,40.53,19.39,39.79,2.4166666667,749.9333333333,90.5,4.3333333333,25.5,1.0333333333,40.1955345413,40.1955345413 -60,0,20.79,35.4,17.7,38.79,22,36,19.7,33.5,19.0333333333,46.1266666667,2.76,53.0666666667,19.7,29.79,22.2,40.5,19.39,39.79,2.5333333333,749.9666666667,90,4.6666666667,26,1.0666666667,49.6212165686,49.6212165686 -50,0,20.79,35.4,17.7,38.79,22,36,19.7,33.56,19.0666666667,46.06,2.7,53.2,19.7,29.79,22.1333333333,40.5,19.39,39.8633333333,2.65,750,89.5,5,26.5,1.1,34.1015320271,34.1015320271 -50,0,20.76,35.4,17.6333333333,38.8266666667,22.1,36.06,19.7,33.59,19.0666666667,46.06,2.7,53.5666666667,19.7,29.79,22.1,40.5,19.39,39.9,2.7666666667,750.0333333333,89,5.3333333333,27,1.1333333333,47.2721080412,47.2721080412 -60,0,20.7,35.4,17.6333333333,38.9,22.1,36,19.7,33.59,19,45.9666666667,2.7,53.76,19.7,29.79,22.1,40.5,19.39,39.9666666667,2.8833333333,750.0666666667,88.5,5.6666666667,27.5,1.1666666667,29.5392784523,29.5392784523 -80,0,20.7,35.5,17.6,38.9,22.1,36,19.6,33.59,19,45.9,2.7,53.8633333333,19.7,29.89,22.1,40.5,19.39,40.03,3,750.1,88,6,28,1.2,3.7210893584,3.7210893584 -20,0,20.7,35.6933333333,17.6,38.9666666667,22.1,35.9333333333,19.6666666667,33.6633333333,19,45.9,2.6266666667,53.79,19.7,29.89,22.1,40.5,19.39,40.09,2.9333333333,750.1166666667,88.8333333333,5.8333333333,33.8333333333,1.2666666667,22.6820587413,22.6820587413 -30,0,20.7,36.1266666667,17.6,39.4633333333,21.9633333333,35.3333333333,19.6,33.59,19,45.9,2.4666666667,53.76,19.7,29.89,22,40.4,19.39,40.09,2.8666666667,750.1333333333,89.6666666667,5.6666666667,39.6666666667,1.3333333333,17.1919960878,17.1919960878 -30,10,20.7,36.26,17.6,39.7233333333,21.8233333333,35.0666666667,19.6,33.59,19,45.9333333333,2.3266666667,53.9,19.6333333333,29.89,22,40.4,19.39,40.03,2.8,750.15,90.5,5.5,45.5,1.4,28.5007133265,28.5007133265 -40,0,20.7,36.4,17.5,39.9633333333,21.7,34.9666666667,19.6,33.7,19,46,2.29,54.1933333333,19.65,29.945,22,40.4,19.39,40,2.7333333333,750.1666666667,91.3333333333,5.3333333333,51.3333333333,1.4666666667,19.6599573246,19.6599573246 -60,0,20.7,36.4,17.5,40.1633333333,21.7,34.9,19.6,33.7,19,46,2.3725,54.57,19.6666666667,29.9633333333,22,40.4,19.39,40,2.6666666667,750.1833333333,92.1666666667,5.1666666667,57.1666666667,1.5333333333,10.6221041409,10.6221041409 -80,0,20.7,36.4666666667,17.5,40.29,21.6,34.79,19.6,33.7,19,46,2.4666666667,54.9,19.6666666667,29.9633333333,21.9633333333,40.4,19.39,39.9666666667,2.6,750.2,93,5,63,1.6,49.9219266349,49.9219266349 -70,0,20.7,36.4666666667,17.5,40.3633333333,21.6,34.79,19.6,33.9,19,46,2.6266666667,55.2666666667,19.6,30,21.89,40.4666666667,19.39,39.9,2.5166666667,750.25,93.5,4.6666666667,62.6666666667,1.5833333333,46.9040477648,46.9040477648 -70,10,20.7,36.4,17.5,40.4,21.6,34.7666666667,19.6,34.545,19,45.9333333333,2.76,55.4666666667,19.6,30,21.89,40.4666666667,19.39,39.76,2.4333333333,750.3,94,4.3333333333,62.3333333333,1.5666666667,12.3837592429,12.3837592429 -60,0,20.6,36.36,17.5,40.5,21.6,34.925,19.6,34.7,19,45.9,3.03,55.7666666667,19.6666666667,30.0666666667,21.89,40.4,19.39,39.595,2.35,750.35,94.5,4,62,1.55,47.2765048733,47.2765048733 -50,0,20.6,36.5,17.5,40.5,21.6,35,19.6,34.76,19,45.9,3.09,55.9666666667,19.6,30.0666666667,21.8566666667,40.2233333333,19.39,39.4333333333,2.2666666667,750.4,95,3.6666666667,61.6666666667,1.5333333333,22.8942153044,22.8942153044 -60,10,20.6333333333,36.6266666667,17.5,40.53,21.6,35,19.6,34.9333333333,18.89,45.79,3.2666666667,56.1566666667,19.6,30.1,21.79,40.03,19.29,39.1633333333,2.1833333333,750.45,95.5,3.3333333333,61.3333333333,1.5166666667,30.3213422187,30.3213422187 -60,20,20.6333333333,36.76,17.5,40.59,21.6,35,19.6,35.06,18.89,45.76,3.4666666667,56.3633333333,19.6,30.1666666667,21.79,39.9,19.29,39.09,2.1,750.5,96,3,61,1.5,4.3659394956,4.3659394956 -60,10,20.6,36.9,17.5,40.59,21.6,35.06,19.7633333333,35.39,18.89,45.7,3.6266666667,56.53,19.6,30.2,21.73,39.7,19.29,39.0266666667,2.25,750.5166666667,95.8333333333,3,61.6666666667,1.6166666667,23.5825608135,23.5825608135 -80,30,20.6,36.9666666667,17.5,40.6633333333,21.6,35,20.03,35.7233333333,18.89,45.7,3.76,56.53,19.6,30.2,21.73,39.5666666667,19.29,38.8266666667,2.4,750.5333333333,95.6666666667,3,62.3333333333,1.7333333333,27.5963894557,27.5963894557 -60,20,20.6333333333,37.0666666667,17.5,40.8266666667,21.6,35,20.23,35.73,18.89,45.6266666667,3.79,56.5,19.6,30.29,21.7,39.2233333333,19.29,38.6633333333,2.55,750.55,95.5,3,63,1.85,13.4325809311,13.4325809311 -70,30,20.6333333333,37.0666666667,17.5666666667,40.8266666667,21.6,35,20.29,35.73,19.0666666667,45.5666666667,3.8633333333,56.56,19.6,30.29,21.7,39.03,19.29,38.53,2.7,750.5666666667,95.3333333333,3,63.6666666667,1.9666666667,46.0564239416,46.0564239416 -70,20,20.6,36.9666666667,17.5,40.76,21.6,35,20.39,35.59,19.26,48.9,3.1966666667,55.7666666667,19.5,30.2266666667,21.6,38.76,19.26,38.2233333333,2.85,750.5833333333,95.1666666667,3,64.3333333333,2.0833333333,48.879824183,48.879824183 -50,30,20.6,36.9,17.5,40.5666666667,21.6,34.9333333333,20.39,35.53,19.29,49.2666666667,2.39,55.9666666667,19.5,30.0333333333,21.6,38.6266666667,19.2,37.9633333333,3,750.6,95,3,65,2.2,10.5248726788,10.5248726788 -70,30,20.6,36.8333333333,17.5,40.2233333333,21.6,34.8633333333,20.39,35.3633333333,19.29,47.9933333333,2.3266666667,55.4233333333,19.5,30.2,21.5666666667,38.4666666667,19.2,37.6333333333,3.0333333333,750.6666666667,94.6666666667,3.1666666667,60.8333333333,2.2,45.2635249472,45.2635249472 -40,20,20.6,36.7,17.5,40.03,21.5333333333,34.73,20.39,35.23,19.29,47.2,2.5266666667,55.03,19.5666666667,31.5933333333,21.5,38.1933333333,19.2,37.36,3.0666666667,750.7333333333,94.3333333333,3.3333333333,56.6666666667,2.2,18.082724337,18.082724337 -40,30,20.6,36.56,17.5,39.76,21.5,34.7,20.4266666667,35.2,19.23,47,2.8266666667,54.76,19.6333333333,32.6933333333,21.5,38.0666666667,19.2,37.06,3.1,750.8,94,3.5,52.5,2.2,3.4176144865,3.4176144865 -90,30,20.6,36.4333333333,17.5,39.6266666667,21.5,34.6266666667,20.4266666667,35.1266666667,19.2,46.6,3.12,54.6725,19.6333333333,32.6933333333,21.5,38.1266666667,19.1333333333,36.6,3.1333333333,750.8666666667,93.6666666667,3.6666666667,48.3333333333,2.2,11.7133906228,11.7133906228 -70,20,20.5,36.345,17.5333333333,39.56,21.39,34.5,20.4266666667,35.1266666667,19.1333333333,46.0666666667,3.5266666667,54.53,19.55,32.3,21.4633333333,37.6,18.9633333333,35.8633333333,3.1666666667,750.9333333333,93.3333333333,3.8333333333,44.1666666667,2.2,34.3735330505,34.3735330505 -110,20,20.5,36.2,17.6,39.5,21.39,34.5,20.5,35.2,19.1,45.2966666667,4.1966666667,54.2233333333,19.5,32.06,21.39,37.6,18.89,35.93,3.2,751,93,4,40,2.2,39.3776366836,39.3776366836 -80,20,20.5,36.2,17.86,39.4666666667,21.3233333333,34.6266666667,20.5,35.29,19.1,44.89,4.9233333333,54.09,19.5,31.9266666667,21.39,37.76,19.0333333333,37.1933333333,3.4166666667,751.0666666667,92.6666666667,4,37.3333333333,2.3666666667,40.2680909494,40.2680909494 -80,10,20.5,36.4633333333,18.1933333333,39.2666666667,21.39,34.7,20.5,35.3633333333,19.1,44.73,5.79,54,19.5,31.8566666667,21.3233333333,37.7,19.1666666667,38.9333333333,3.6333333333,751.1333333333,92.3333333333,4,34.6666666667,2.5333333333,26.2277667061,26.2277667061 -60,20,20.5,36.6633333333,18.55,39.045,21.39,34.73,20.55,35.545,19.1,44.8633333333,6.3966666667,54.1333333333,19.5,31.79,21.3566666667,37.7,19.2,38.9,3.85,751.2,92,4,32,2.7,34.4274715404,34.4274715404 -60,10,20.6,36.89,18.79,39.5,21.39,34.8975,20.6,35.6266666667,19.0333333333,44.7,6.69,54.63,19.5,31.76,21.29,37.7,19.2,38.425,4.0666666667,751.2666666667,91.6666666667,4,29.3333333333,2.8666666667,33.1381484051,33.1381484051 -90,10,20.6,37.1633333333,18.73,39.9,21.39,35,20.6,35.7,19.1,44.7,6.6233333333,55.2966666667,19.5,31.7,21.29,37.7,19.2,38.0666666667,4.2833333333,751.3333333333,91.3333333333,4,26.6666666667,3.0333333333,24.7922676732,24.7922676732 -90,20,20.5333333333,37.3266666667,18.7,40.2333333333,21.3233333333,35.03,20.6,35.7,19.1,44.45,6.5,55.6266666667,19.5,31.5666666667,21.29,37.645,19.2,37.7233333333,4.5,751.4,91,4,24,3.2,48.6891087261,48.6891087261 -100,10,20.6,37.6,18.6333333333,40.6266666667,21.39,35.09,20.6,35.7,19,44.1633333333,6.56,55.9,19.5,31.5,21.254,37.554,19.2,37.53,4.9666666667,751.4333333333,89,4.3333333333,26.6666666667,3.3,20.3360739863,20.3360739863 -80,10,20.6,38.2933333333,18.8933333333,40.6266666667,21.39,35.1266666667,20.6,35.7,19.0666666667,44.03,7.2266666667,56.36,19.5,31.39,21.2,37.4,19.2,37.1933333333,5.4333333333,751.4666666667,87,4.6666666667,29.3333333333,3.4,30.0799042219,30.0799042219 -70,20,20.6666666667,38.96,19.2266666667,40.2933333333,21.39,35.26,20.6666666667,35.8333333333,19.1,43.9666666667,7.8333333333,56.8933333333,19.5,31.39,21.2,37.29,19.2,36.9333333333,5.9,751.5,85,5,32,3.5,13.5460304795,13.5460304795 -110,0,20.6333333333,38.9,19.39,39.4666666667,21.4633333333,35.4,20.7,36.03,19.1,43.8266666667,7.8333333333,58.9566666667,19.5,31.29,21.2,37.29,19.2,36.6633333333,6.3666666667,751.5333333333,83,5.3333333333,34.6666666667,3.6,30.1936599775,30.1936599775 -50,0,20.6333333333,38.9,19.3233333333,39.4,21.39,35.4666666667,20.7,36.2233333333,19.0333333333,43.7,7.2933333333,59.1566666667,19.4266666667,31.1633333333,21.2,37.2,19.2,36.53,6.8333333333,751.5666666667,81,5.6666666667,37.3333333333,3.7,31.5749272821,31.5749272821 -40,10,20.6,38.8333333333,19.36,39.5266666667,21.39,35.73,20.7,36.4,19.1,43.6266666667,7.3666666667,59.2,19.5,31.2,21.2,37.2,19.2,36.26,7.3,751.6,79,6,40,3.8,49.0864084451,49.0864084451 -40,0,20.6,38.5666666667,19.5666666667,39.1333333333,21.39,35.79,20.77,37.3388888889,19.1,43.5,7.4333333333,59.0666666667,19.5,31.1181818182,21.175,37.09,19.2,36.1266666667,7.15,751.6666666667,78.6666666667,6.3333333333,38.1666666667,3.6,4.2540793656,4.2540793656 -20,0,20.6,38.3633333333,19.5333333333,38.7233333333,21.39,36.03,20.79,37.8557142857,19.0333333333,43.36,7.25,59.04,19.5,31.0636363636,21.15,37.09,19.2,36,7,751.7333333333,78.3333333333,6.6666666667,36.3333333333,3.4,16.3684074534,16.3684074534 -50,10,20.6,38.23,19.6,38.4633333333,21.39,36.49,20.73,37.6933333333,19,43.06,7.201,59.065,19.5,31.0666666667,21.2,37.09,19.2,35.86,6.85,751.8,78,7,34.5,3.2,33.7176834932,33.7176834932 -70,0,20.6,38.1566666667,19.6333333333,38.1333333333,21.39,36.6633333333,20.7,37.1942857143,19,42.9333333333,7.3557142857,59.1714285714,19.5,31,21.1285714286,37.09,19.2,35.76,6.7,751.8666666667,77.6666666667,7.3333333333,32.6666666667,3,22.9216625099,22.9216625099 -70,0,20.6,38.1566666667,19.76,37.9333333333,21.39,36.59,20.7,36.8027777778,19,42.7233333333,7.97,54.0291666667,19.5,30.9633333333,21.1,37.06,19.2,35.6266666667,6.55,751.9333333333,77.3333333333,7.6666666667,30.8333333333,2.8,10.1976498496,10.1976498496 -70,0,20.6,37.69,19.8233333333,37.5266666667,21.39,36.4666666667,20.7,36.515,19.0666666667,42.59,8.74,44.9444444444,19.54375,30.750625,21.1222222222,36.9833333333,19.2,35.56,6.4,752,77,8,29,2.6,16.4111017482,16.4111017482 -70,0,20.6,37.3633333333,19.89,37.2666666667,21.39,36.3266666667,20.7,36.4722222222,19.1,42.4666666667,8.8944444444,35.51,19.6,30.5611111111,21.1,36.9494444444,19.2,35.4333333333,6.5833333333,752.05,76.3333333333,8.1666666667,28.3333333333,2.6666666667,34.2703542672,34.2703542672 -60,0,20.6,37.23,20,36.9666666667,21.5,36.3633333333,20.7,36.3816666667,19.1,42.2666666667,9.017,31.995,19.6,30.3692307692,21.1388888889,36.8022222222,19.2,35.2233333333,6.7666666667,752.1,75.6666666667,8.3333333333,27.6666666667,2.7333333333,33.3863683743,33.3863683743 -60,0,20.6333333333,37.09,20.0666666667,36.8266666667,21.5,36.29,20.735,36.2144444444,19.1,42.06,9.3533333333,32.6738888889,19.68125,30.208125,21.1722222222,36.5516666667,19.2,35.03,6.95,752.15,75,8.5,27,2.8,48.9440692938,48.9440692938 -60,0,20.7,37.09,20.15,36.495,21.39,36.06,20.7654545455,36.0245454545,19.1,41.9333333333,9.6054545455,32.4163636364,19.7,30.0538461538,21.1,36.4,19.2,34.9,7.1333333333,752.2,74.3333333333,8.6666666667,26.3333333333,2.8666666667,15.2858334128,15.2858334128 -70,0,20.7,36.9666666667,20.2,36.2233333333,21.445,35.9475,20.7,35.9333333333,19.1,41.8633333333,9.498,30.6,19.79,29.79,21.1,36.26,19.2,34.795,7.3166666667,752.25,73.6666666667,8.8333333333,25.6666666667,2.9333333333,11.5441780537,11.5441780537 -70,0,20.7,36.7666666667,20.2,36.03,21.39,35.73,20.7,35.9,19.1,41.73,9.4633333333,30.2666666667,19.736,29.772,21.1,36.0511111111,19.2,34.5666666667,7.5,752.3,73,9,25,3,38.2897338131,38.2897338131 -90,0,20.7,36.6633333333,20.2,35.76,21.4266666667,35.7,20.76,35.9,19.05,41.59,9.8,20.8333333333,19.79,29.4633333333,21.2,35.8633333333,19.2,34.5,7.55,752.3666666667,72.1666666667,8.5,27.5,2.8833333333,10.1517463336,10.1517463336 -150,0,20.7,36.4633333333,20.2,35.6266666667,21.5,35.6266666667,20.79,35.76,19.1,41.4666666667,9.86,19.7,19.89,29.3266666667,21.2,35.6566666667,19.2,34.5,7.6,752.4333333333,71.3333333333,8,30,2.7666666667,33.6403728346,33.6403728346 -90,0,20.79,36.6266666667,20.23,35.5,21.5,35.5,20.79,35.5666666667,19.1,41.4,9.2966666667,17.2633333333,19.89,29.0666666667,21.2,35.73,19.23,34.5,7.65,752.5,70.5,7.5,32.5,2.65,3.6243651179,3.6243651179 -80,0,20.8566666667,36.7,20.23,35.36,21.5,35.5,20.79,35.1,19.1,41.3633333333,8.5566666667,26.7233333333,19.89,28.93,21.26,35.93,19.29,34.36,7.7,752.5666666667,69.6666666667,7,35,2.5333333333,4.6269352548,4.6269352548 -100,0,20.8233333333,36.43,20.29,35.3633333333,21.4633333333,35.4666666667,20.79,34.8633333333,19.1,41.29,8.7,21.5566666667,19.89,28.73,21.3233333333,36,19.29,34.1633333333,7.75,752.6333333333,68.8333333333,6.5,37.5,2.4166666667,9.1677280143,9.1677280143 -60,0,20.89,36.23,20.29,35.0966666667,21.4633333333,35.4,20.79,34.8633333333,19.1,41.1633333333,9.6266666667,17.89,19.9266666667,28.6333333333,21.39,36,19.29,34.03,7.8,752.7,68,6,40,2.3,8.948263526,8.948263526 -60,0,20.89,36.0266666667,20.29,34.76,21.39,35.1633333333,20.79,34.9,19.1,41.03,9.8233333333,15.0666666667,20,28.4266666667,21.5,36.09,19.29,33.9,7.8,752.7666666667,67.8333333333,6,40,2.25,45.7203026628,45.7203026628 -70,0,20.89,35.8266666667,20.29,34.7,21.39,35.09,20.73,34.8266666667,19.0333333333,40.79,10.0233333333,16,20,28.29,21.5666666667,36.1633333333,19.29,33.8266666667,7.8,752.8333333333,67.6666666667,6,40,2.2,11.7609692505,11.7609692505 -70,0,20.89,35.79,20.26,34.5,21.3566666667,34.9666666667,20.76,34.79,19.1,40.79,10.06,16.0966666667,20,28.23,21.6,36.2,19.29,33.7,7.8,752.9,67.5,6,40,2.15,3.7255782867,3.7255782867 -90,0,20.89,35.6566666667,20.2,34.5,21.29,34.7666666667,20.7,34.73,19.1,40.7,9.6666666667,17.3566666667,20,28.1,21.7,36.3266666667,19.29,33.6266666667,7.8,752.9666666667,67.3333333333,6,40,2.1,9.5946744434,9.5946744434 -90,0,20.9633333333,35.4666666667,20.1,34.56,21.29,34.76,20.7,34.7,19.0333333333,40.5666666667,9.7333333333,18.1966666667,20,28.1,21.7,36.4,19.29,33.59,7.8,753.0333333333,67.1666666667,6,40,2.05,37.3255786719,37.3255786719 -80,0,20.9633333333,35.4,20.1666666667,34.5,21.29,34.7,20.7,34.6266666667,19.1,40.4666666667,10.1266666667,16.7233333333,20,28.2,21.73,36.4333333333,19.29,33.53,7.8,753.1,67,6,40,2,22.8514593095,22.8514593095 -90,0,21,35.29,20.2,34.4666666667,21.29,34.56,20.7,34.5,19.1,40.4,10.1,14.7233333333,20,28.1333333333,21.79,36.5,19.23,33.4333333333,8.1166666667,753.1,66.1666666667,6,40,2.1166666667,36.2330329721,36.2330329721 -100,0,21,35.2675,20.1333333333,34.4,21.29,34.5,20.7,34.5,19.1,40.26,10.12,14.965,20,27.9633333333,21.8233333333,36.53,19.29,33.4333333333,8.4333333333,753.1,65.3333333333,6,40,2.2333333333,47.6259431103,47.6259431103 -100,0,21,35.1266666667,20.0666666667,34.3333333333,21.29,34.5,20.6666666667,34.26,19.1,40.2,9.7933333333,10.1566666667,20,27.89,21.89,36.53,19.23,33.29,8.75,753.1,64.5,6,40,2.35,48.0463514337,48.0463514337 -100,0,21,34.9666666667,20,34.2,21.29,34.4333333333,20.6,34.1266666667,19.1,40.1633333333,9.3666666667,12.39,20,27.79,22.0333333333,36.4,19.23,33.1566666667,9.0666666667,753.1,63.6666666667,6,40,2.4666666667,9.113010671,9.113010671 -100,0,21,34.8266666667,19.8566666667,34.2,21.29,34.4666666667,20.6,34.06,19.1,40.09,8.7,21.0566666667,20,27.79,22.1666666667,36.4,19.26,33.06,9.3833333333,753.1,62.8333333333,6,40,2.5833333333,48.2048861217,48.2048861217 -110,0,21,34.79,19.7675,34.295,21.29,34.3725,20.6,34,19.0666666667,40,7.8633333333,24.6266666667,19.89,27.9266666667,22.23,36.4333333333,19.2,32.8975,9.7,753.1,62,6,40,2.7,9.7434894298,9.7434894298 -100,0,21,34.73,19.7,34.5266666667,21.29,34.23,20.5,34,19,39.9333333333,7.59,26.7666666667,19.89,28.025,22.29,36.5,19.2,32.79,9.3,753.1666666667,62.8333333333,6.1666666667,40,2.5,3.1863368698,3.1863368698 -100,0,20.89,34.7,19.7,34.59,21.29,34.23,20.5363636364,33.9045454545,19,39.9,7.338,25.996,19.89,28.1,22.42,36.5872727273,19.2,32.7,8.9,753.2333333333,63.6666666667,6.3333333333,40,2.3,46.8453105423,46.8453105423 -90,0,20.89,34.7,19.6333333333,34.59,21.29,34.23,20.5,33.7088888889,19,39.9,6.774,36.096,19.89,28.16875,22.5277777778,36.745,19.2,32.6266666667,8.5,753.3,64.5,6.5,40,2.1,14.8048459436,14.8048459436 -100,0,20.9266666667,34.7,19.6333333333,34.7666666667,21.2,34.0266666667,20.5,33.6511111111,19.0666666667,39.9666666667,6.7188235294,38.2576470588,19.89,28.245,22.6055555556,36.9033333333,19.2,32.59,8.1,753.3666666667,65.3333333333,6.6666666667,40,1.9,18.5514452867,18.5514452867 -70,0,20.9266666667,34.76,19.7,34.9,21.1333333333,33.9,20.5,33.59,19.0666666667,39.9,6.4981818182,37.0872727273,19.8757142857,28.2371428571,22.6454545455,37.0409090909,19.2,32.59,7.7,753.4333333333,66.1666666667,6.8333333333,40,1.7,14.3402388203,14.3402388203 -60,0,21,34.8266666667,19.5666666667,34.86,21.1666666667,34,20.4175,33.5058333333,19,39.9,6.31,37.519,19.8455555556,28.2277777778,22.7,37.06,19.2,32.5666666667,7.3,753.5,67,7,40,1.5,12.8058301751,12.8058301751 -70,0,21,34.9,19.5,35,21.1,33.9333333333,20.39,33.4833333333,19,39.9333333333,6.3,38.6,19.79625,28.205625,22.7,37,19.2,32.7,7.25,753.55,66.3333333333,6.3333333333,40,1.3,48.9101227722,48.9101227722 -90,0,20.89,35,19.4633333333,35.09,21.1,33.9333333333,20.39,33.4666666667,19,39.9333333333,6.4,40.4566666667,19.79,28.26,22.675,37,19.2,32.7,7.2,753.6,65.6666666667,5.6666666667,40,1.1,5.7417813689,5.7417813689 -120,0,20.9633333333,35,19.39,35.09,21.1,34.06,20.39,33.5,19,39.9,6.4285714286,40.6142857143,19.7835714286,28.3542857143,22.65,37.0685714286,19.1333333333,32.7,7.15,753.65,65,5,40,0.9,9.0364397736,9.0364397736 -110,0,21,35.09,19.39,35.2,21.1,34.09,20.39,33.5,19,39.9,6.3,40.1416666667,19.745,28.39,22.7,37.275,19.2,32.7,7.1,753.7,64.3333333333,4.3333333333,40,0.7,16.7378145154,16.7378145154 -160,0,21,35.03,19.39,35.2,21.1666666667,34.09,20.34,33.545,19,39.9,6.3,40.4509090909,19.7081818182,28.39,22.7,37.7,19.2,32.7,7.05,753.75,63.6666666667,3.6666666667,40,0.5,45.2731850441,45.2731850441 -360,0,21.1333333333,34.9666666667,19.5,35.3266666667,21.23,34,20.29,33.678,19,39.9,6.3,40.75,19.7,28.39,22.7,38.64,19.1,32.7,7,753.8,63,3,40,0.3,20.6027461332,20.6027461332 -180,0,21.26,37.4333333333,19.5666666667,35.4,21.29,34.06,20.29,33.76,19,39.9,6.16,39.1933333333,19.7,28.39,22.7,39.1333333333,19.1,32.7,7.2166666667,753.8666666667,62.6666666667,3,40,0.45,4.3715133099,4.3715133099 -100,0,21.4266666667,41.7266666667,19.7,35.83,21.3233333333,34.5,20.29,34.0966666667,19,40.0266666667,6.09,39.9933333333,19.7,28.39,22.7,39.5,19.1,32.7,7.4333333333,753.9333333333,62.3333333333,3,40,0.6,39.4357347395,39.4357347395 -100,10,21.575,39.795,19.76,36.2233333333,21.39,34.9,20.29,34.49,19,40.23,6.09,40.6,19.6666666667,28.39,22.745,39.5,19.1,32.7,7.65,754,62,3,40,0.75,44.4141108426,44.4141108426 -100,0,21.6666666667,37.5266666667,19.89,36.5,21.5,35.06,20.29,34.73,19,40.3633333333,6.09,41.1666666667,19.6,28.39,22.76,39.56,19.1,32.7,7.8666666667,754.0666666667,61.6666666667,3,40,0.9,27.3807329009,27.3807329009 -140,0,21.73,36.5633333333,19.89,36.4333333333,21.5,35,20.29,34.79,19.1666666667,47.6966666667,5.9475,41.55,19.7,28.5,22.79,39.4666666667,19.1,33.0333333333,8.0833333333,754.1333333333,61.3333333333,3,40,1.05,42.745679745,42.745679745 -100,0,21.8566666667,36.1566666667,19.9266666667,36.4,21.5333333333,34.8633333333,20.29,34.9333333333,19.5,62.7633333333,5.76,41.9,19.6333333333,28.5,22.73,39.3266666667,19.1,33.4333333333,8.3,754.2,61,3,40,1.2,5.8217891725,5.8217891725 -100,0,21.9266666667,35.93,20.025,36.4,21.625,34.7225,20.29,35.06,19.39,61.73,5.56,42.63,19.6,28.5333333333,22.76,39.06,19.1,33.5,7.7666666667,754.2,64,2.8333333333,40,1.2833333333,4.2979642283,4.2979642283 -120,0,22,35.6566666667,20.1666666667,36.3266666667,21.7,34.6266666667,20.29,35.1266666667,19.3233333333,60.3233333333,5.4333333333,43.2233333333,19.6,28.6,22.7,38.9333333333,19.1,33.5,7.2333333333,754.2,67,2.6666666667,40,1.3666666667,46.6275435872,46.6275435872 -100,0,22.1,35.56,20.2,36.3266666667,21.7,34.59,20.29,35.2,19.29,58.8,5.0933333333,43.26,19.6,28.79,22.76,38.5633333333,19.1,33.5,6.7,754.2,70,2.5,40,1.45,45.8647739841,45.8647739841 -90,0,22.1666666667,35.4333333333,20.1333333333,36.4,21.7,34.53,20.29,35.3266666667,21.3233333333,87.46,4.6933333333,43.26,19.6,28.8566666667,22.7,38.0966666667,19.1,33.5,6.1666666667,754.2,73,2.3333333333,40,1.5333333333,6.7124940455,6.7124940455 -110,0,22.2,35.26,20.2,36.29,21.79,34.5,20.29,35.4,21.0566666667,86.46,4.2,43.4633333333,19.6,28.8566666667,22.7,38.4633333333,19.0333333333,33.4333333333,5.6333333333,754.2,76,2.1666666667,40,1.6166666667,31.5179992816,31.5179992816 -100,0,22.2,35.0666666667,20.2,36.29,21.79,34.4333333333,20.29,35.5,20.43,88.09,3.8,43.8633333333,19.6,28.79,22.7,38.6633333333,19.1,33.4333333333,5.1,754.2,79,2,40,1.7,47.9034954333,47.9034954333 -100,0,22.23,34.9,20.1333333333,36.1633333333,21.79,34.3633333333,20.29,35.5,20.23,87.63,3.4,44.5966666667,19.6,28.79,22.76,38.56,19,33.29,4.8666666667,754.2333333333,80.1666666667,1.8333333333,40,1.6833333333,25.0557951164,25.0557951164 -110,0,22.29,34.7666666667,20.1333333333,36.09,21.79,34.29,20.29,35.4,19.9633333333,86.7,3.1266666667,45.3233333333,19.575,28.7225,22.76,38.5,19,33.23,4.6333333333,754.2666666667,81.3333333333,1.6666666667,40,1.6666666667,2.9070493532,2.9070493532 -100,0,22.23,34.59,20.1,36.06,21.79,34.2,20.29,35.3266666667,19.8233333333,85.4333333333,2.7233333333,46.13,19.5,28.7,22.79,38.4,19,33.2,4.4,754.3,82.5,1.5,40,1.65,40.2844503056,40.2844503056 -110,0,22.23,34.53,20.0333333333,35.9333333333,21.79,34.2,20.29,35.29,19.76,82.56,2.4633333333,46.2566666667,19.5,28.7,22.79,38.3266666667,19,33.1266666667,4.1666666667,754.3333333333,83.6666666667,1.3333333333,40,1.6333333333,41.2222063751,41.2222063751 -130,0,22.2,34.4666666667,19.9633333333,35.9,21.79,34.1633333333,20.29,35.2,19.9666666667,86.3666666667,2.1333333333,46.09,19.5,28.7,22.79,38.29,19,33.09,3.9333333333,754.3666666667,84.8333333333,1.1666666667,40,1.6166666667,38.80417092,38.80417092 -80,20,22.2,34.4,19.89,35.9666666667,21.79,34.09,20.23,35.1266666667,20.7933333333,90.2666666667,1.9333333333,46.4966666667,19.5,28.7,22.79,38.29,19,33.09,3.7,754.4,86,1,40,1.6,28.8910042727,28.8910042727 -70,10,22.2,34.53,19.8566666667,36.4266666667,21.7,34.1266666667,20.2,35.1566666667,20.46,85.46,1.7266666667,47.09,19.5,28.8266666667,22.79,38.4,19,33.1266666667,3.6333333333,754.45,85.8333333333,1,40,1.5,7.7764323913,7.7764323913 -60,20,22.2,34.6633333333,19.79,36.8333333333,21.6333333333,34.26,20.26,35.43,20.26,82.5633333333,1.6,47.4966666667,19.5,28.9266666667,22.8566666667,38.5266666667,19,33.26,3.5666666667,754.5,85.6666666667,1,40,1.4,43.1587896543,43.1587896543 -50,10,22.1666666667,34.8266666667,19.7,36.9333333333,21.5666666667,34.4333333333,20.29,35.6266666667,20.1333333333,81.6966666667,1.5,48.35,19.5,29.0666666667,22.8233333333,38.6566666667,19,33.53,3.5,754.55,85.5,1,40,1.3,28.3647118486,28.3647118486 -60,10,22.1,34.9666666667,19.7,37,21.5,34.5,20.29,35.8333333333,20.1,80.5333333333,1.39,48.7566666667,19.5333333333,29.1333333333,22.8233333333,38.79,18.9266666667,33.6633333333,3.4333333333,754.6,85.3333333333,1,40,1.2,26.7341239844,26.7341239844 -70,20,22.1,35.09,19.6,37,21.39,34.4333333333,20.3233333333,36.1266666667,20.0333333333,79.3933333333,1.39,49.3633333333,19.5333333333,29.26,22.79,39.1,19,33.8266666667,3.3666666667,754.65,85.1666666667,1,40,1.1,4.465750989,4.465750989 -80,10,22,35.1266666667,19.5333333333,37.06,21.39,34.5,20.39,36.2,19.9633333333,78,1.29,49.5,19.5333333333,29.29,22.79,39.4333333333,19,33.9,3.3,754.7,85,1,40,1,36.4583193557,36.4583193557 -70,10,22,35.2,19.4633333333,37.1633333333,21.39,34.5,20.39,36.2,19.8233333333,76.7333333333,1.23,49.5,19.5333333333,29.3566666667,22.79,39.56,19,34.03,3.1666666667,754.7666666667,85.5,1,40,0.95,48.8809946692,48.8809946692 -70,20,21.89,35.2,19.315,37.195,21.39,34.5675,20.39,36.2,19.79,75.1666666667,1.0666666667,49.5666666667,19.5666666667,29.39,22.73,39.86,18.9175,34.195,3.0333333333,754.8333333333,86,1,40,0.9,11.6589454119,11.6589454119 -80,10,21.89,35.26,19.23,37.29,21.39,34.59,20.39,36.23,19.73,73.96,1,49.96,19.5,29.4633333333,22.73,40.1933333333,18.89,34.3633333333,2.9,754.9,86.5,1,40,0.85,39.1526716063,39.1526716063 -70,20,21.89,35.29,19.1666666667,37.4,21.3566666667,34.6266666667,20.4633333333,36.3633333333,19.7,72.495,1,50.2666666667,19.5,29.5,22.6666666667,40.4,18.9266666667,34.53,2.7666666667,754.9666666667,87,1,40,0.8,37.6747179776,37.6747179776 -60,10,21.8233333333,35.23,19.1,37.4666666667,21.29,34.7,20.5,36.4,19.6666666667,71.1966666667,0.9333333333,50.4,19.5,29.5666666667,22.6,40.5266666667,18.9266666667,34.6633333333,2.6333333333,755.0333333333,87.5,1,40,0.75,11.4474016475,11.4474016475 -70,10,21.79,35.23,19,37.5,21.29,34.7,20.5666666667,36.4,19.6666666667,70.1966666667,0.8,50.3266666667,19.5,29.6,22.5,40.7666666667,18.89,34.79,2.5,755.1,88,1,40,0.7,45.8030146779,45.8030146779 -70,20,21.73,35.29,19,37.4333333333,21.29,34.76,20.5666666667,36.29,19.6,68.8933333333,0.7333333333,50.2666666667,19.5,29.6,22.5,41.1,18.89,34.8633333333,2.2833333333,755.1,88.8333333333,1,37.8333333333,0.6166666667,43.4643228422,43.4643228422 -70,10,21.7,35.53,18.89,37.5,21.3233333333,34.79,20.5666666667,36.23,19.6,68.0333333333,0.6,50.23,19.5,29.6333333333,22.4633333333,41.4633333333,18.89,35,2.0666666667,755.1,89.6666666667,1,35.6666666667,0.5333333333,30.3171042353,30.3171042353 -70,20,21.7,35.53,18.8233333333,37.4333333333,21.39,34.8633333333,20.5666666667,36.1633333333,19.5666666667,67.1333333333,0.6,50.3633333333,19.5,29.7,22.39,41.7233333333,18.89,35.06,1.85,755.1,90.5,1,33.5,0.45,49.4827609975,49.4827609975 -60,10,21.6,35.4,18.76,37.4,21.39,34.9333333333,20.5666666667,36.03,19.5,66.4666666667,0.6,50.76,19.5,29.7,22.39,42.0666666667,18.89,35.2,1.6333333333,755.1,91.3333333333,1,31.3333333333,0.3666666667,29.9419269664,29.9419269664 -60,10,21.6,35.4,18.7,37.4666666667,21.39,34.9333333333,20.6,36,19.5,65.6333333333,0.5333333333,50.76,19.5,29.7,22.39,42.46,18.89,35.26,1.4166666667,755.1,92.1666666667,1,29.1666666667,0.2833333333,7.2338726372,7.2338726372 -60,20,21.5,35.5,18.6666666667,37.5,21.39,34.9,20.6,35.9,19.5,65.0333333333,0.4,50.59,19.5,29.7,22.39,42.8266666667,18.89,35.4,1.2,755.1,93,1,27,0.2,23.0615998735,23.0615998735 -40,10,21.5,35.5,18.6,37.5,21.39,34.9,20.6,35.8266666667,19.39,64.1,0.325,50.595,19.5,29.7,22.39,42.9,18.89,35.4666666667,1.05,755.1166666667,93.1666666667,1.1666666667,25.8333333333,0.0833333333,49.7192644281,49.7192644281 -40,10,21.5,35.53,18.5,37.59,21.39,34.9,20.6,35.9,19.39,63.4266666667,0.3,50.73,19.5,29.7,22.29,42.9,18.89,35.5,0.9,755.1333333333,93.3333333333,1.3333333333,24.6666666667,-0.0333333333,19.0960466745,19.0960466745 -50,10,21.4266666667,35.53,18.4266666667,37.59,21.4633333333,34.9666666667,20.6,35.9,19.39,62.6233333333,0.2,50.5966666667,19.5,29.7,22.29,42.9666666667,18.89,35.56,0.75,755.15,93.5,1.5,23.5,-0.15,29.3636308168,29.3636308168 -40,0,21.39,35.53,18.39,37.6266666667,21.39,34.9,20.6,35.8633333333,19.39,61.9566666667,0.2,50.8633333333,19.5,29.7,22.29,43.03,18.89,35.59,0.6,755.1666666667,93.6666666667,1.6666666667,22.3333333333,-0.2666666667,0.4770588013,0.4770588013 -50,0,21.39,35.7233333333,18.3233333333,37.7,21.39,34.8266666667,20.6,35.73,19.29,61.2333333333,0.1,51.03,19.5,29.7,22.23,43.03,18.89,35.6633333333,0.45,755.1833333333,93.8333333333,1.8333333333,21.1666666667,-0.3833333333,15.2949101292,15.2949101292 -60,0,21.29,35.79,18.29,37.79,21.29,34.79,20.6,35.5266666667,19.29,60.6333333333,0.1,51.2966666667,19.5,29.7,22.2,42.9666666667,18.89,35.73,0.3,755.2,94,2,20,-0.5,26.0295233689,26.0295233689 -40,0,21.29,35.79,18.23,37.8633333333,21.29,34.79,20.5333333333,35.3266666667,19.29,59.99,0.0666666667,51.16,19.5,29.7,22.2,42.95,18.89,35.8633333333,0.3166666667,755.2166666667,94.3333333333,2,20.1666666667,-0.45,3.7916561356,3.7916561356 -50,10,21.23,35.73,18.1666666667,37.9,21.3233333333,34.9333333333,20.5,35.2,19.29,59.5966666667,-0.0666666667,51.2333333333,19.5,29.7,22.2,42.8266666667,18.89,36.03,0.3333333333,755.2333333333,94.6666666667,2,20.3333333333,-0.4,0.2583852969,0.2583852969 -50,0,21.2,35.7,18.1,37.975,21.39,35,20.5,35.2,19.26,59.1,0,51.59,19.4266666667,29.6333333333,22.1666666667,42.6633333333,18.89,36.1175,0.35,755.25,95,2,20.5,-0.35,7.0042486419,7.0042486419 -60,0,21.2,35.7,18.0333333333,38.06,21.39,35,20.5,35.2,19.2,58.7666666667,-0.0666666667,51.4633333333,19.5,29.7,22.1666666667,42.53,18.89,36.2,0.3666666667,755.2666666667,95.3333333333,2,20.6666666667,-0.3,1.4333229861,1.4333229861 -50,0,21.1666666667,35.6633333333,18,38.1266666667,21.39,35,20.4266666667,35.1266666667,19.2,58.4,-0.2,51.03,19.39,29.6,22.1,42.3633333333,18.89,36.29,0.3833333333,755.2833333333,95.6666666667,2,20.8333333333,-0.25,41.0587857245,41.0587857245 -60,0,21.1,35.59,17.9266666667,38.2,21.4633333333,35.06,20.39,35,19.2,57.9975,-0.2,51.2966666667,19.39,29.6,22.1,42.1566666667,18.89,36.3633333333,0.4,755.3,96,2,21,-0.2,44.8467300856,44.8467300856 -60,0,21.1,35.59,17.89,38.23,21.5,35.09,20.39,35,19.2,57.6566666667,-0.2,51.53,19.39,29.6,22.1,41.9666666667,18.89,36.4333333333,0.35,755.3166666667,95.8333333333,2,21.1666666667,-0.2666666667,42.9594704998,42.9594704998 -50,0,21.1,35.59,17.89,38.29,21.5,35.03,20.3566666667,34.9,19.2,57.3633333333,-0.2,51.9233333333,19.39,29.6,22.1,41.8266666667,18.89,36.56,0.3,755.3333333333,95.6666666667,2,21.3333333333,-0.3333333333,25.4715093644,25.4715093644 -50,0,21.0666666667,35.5,17.79,38.29,21.5,35.09,20.29,34.8266666667,19.2,57.1566666667,-0.1333333333,52.43,19.39,29.6,22.0333333333,41.6566666667,18.89,36.7,0.25,755.35,95.5,2,21.5,-0.4,19.778945297,19.778945297 -50,0,21,35.5,17.79,38.29,21.5,35.09,20.29,34.79,19.1,56.8633333333,-0.2,52.49,19.39,29.6,22.1,41.73,18.89,36.76,0.2,755.3666666667,95.3333333333,2,21.6666666667,-0.4666666667,48.7408254296,48.7408254296 -50,10,21,35.4666666667,17.79,38.3266666667,21.5666666667,35.1266666667,20.245,34.7225,19.1,56.6566666667,-0.2,52.895,19.39,29.6,22,41.4666666667,18.89,36.8266666667,0.15,755.3833333333,95.1666666667,2,21.8333333333,-0.5333333333,43.5043672682,43.5043672682 -50,0,21,35.4,17.73,38.4,21.5666666667,35.2,20.23,34.6266666667,19.1,56.43,-0.1666666667,53.03,19.39,29.5333333333,22,41.4,18.89,36.9666666667,0.1,755.4,95,2,22,-0.6,21.7534423107,21.7534423107 -50,0,20.89,35.4,17.7,38.5,21.5,35.2,20.2,34.59,19.1,56.23,-0.1,53.1633333333,19.39,29.6,22,41.4,18.89,37.09,0.0333333333,755.4,95.3333333333,2.1666666667,29.1666666667,-0.6166666667,25.2872883109,25.2872883109 -30,0,20.89,35.4,17.6333333333,38.4333333333,21.5,35.2,20.2,34.59,19.1,55.9666666667,-0.2333333333,52.6233333333,19.39,29.6,22,41.3266666667,18.89,37.1633333333,-0.0333333333,755.4,95.6666666667,2.3333333333,36.3333333333,-0.6333333333,31.2664289144,31.2664289144 -40,0,20.89,35.4,17.6,38.5,21.5,35.2,20.1666666667,34.5,19.1,55.8266666667,-0.3666666667,51.9566666667,19.39,29.6,21.9633333333,41.2,18.89,37.3266666667,-0.1,755.4,96,2.5,43.5,-0.65,26.7309059273,26.7309059273 -40,0,20.89,35.4,17.5333333333,38.5,21.5,35.2,20.1,34.5,19.1,55.6333333333,-0.3666666667,51.9633333333,19.39,29.6,21.89,41.2,18.89,37.4666666667,-0.1666666667,755.4,96.3333333333,2.6666666667,50.6666666667,-0.6666666667,12.6001937082,12.6001937082 -30,0,20.8233333333,35.29,17.5,38.59,21.5,35.2,20.1,34.4,19.1,55.4333333333,-0.3666666667,52.09,19.39,29.6,21.89,41.09,18.89,37.53,-0.2333333333,755.4,96.6666666667,2.8333333333,57.8333333333,-0.6833333333,48.5674198018,48.5674198018 -60,0,20.8233333333,35.29,17.5,38.59,21.5,35.2,20.1,34.4,19,55.1633333333,-0.4333333333,52.2,19.3566666667,29.5333333333,21.89,41.09,18.89,37.59,-0.3,755.4,97,3,65,-0.7,38.8814714388,38.8814714388 -40,0,20.79,35.2,17.4633333333,38.59,21.5,35.23,20.1,34.29,19,55.03,-0.5,52.0666666667,19.29,29.5333333333,21.8233333333,40.9333333333,18.89,37.7,-0.2333333333,755.4,96.6666666667,2.8333333333,57.6666666667,-0.6833333333,4.8575915163,4.8575915163 -50,0,20.79,35.2,17.39,38.59,21.5,35.29,20.0333333333,34.23,19,54.76,-0.6333333333,51.7233333333,19.29,29.5,21.89,41,18.89,37.76,-0.1666666667,755.4,96.3333333333,2.6666666667,50.3333333333,-0.6666666667,40.0624004775,40.0624004775 -50,0,20.79,35.2,17.3566666667,38.7,21.5,35.4,20,34.2,19,54.6266666667,-0.7,51.6633333333,19.29,29.5,21.84,40.895,18.89,37.8266666667,-0.1,755.4,96,2.5,43,-0.65,1.7802761868,1.7802761868 -50,0,20.7,35.1633333333,17.34,38.7225,21.5,35.4,20,34.1266666667,18.9633333333,54.4666666667,-0.7,51.8266666667,19.29,29.5,21.79,40.76,18.89,37.975,-0.0333333333,755.4,95.6666666667,2.3333333333,35.6666666667,-0.6333333333,45.1281182701,45.1281182701 -60,0,20.7,35.1633333333,17.29,38.79,21.5,35.45,19.9633333333,34.1633333333,18.9633333333,54.3266666667,-0.7,51.6933333333,19.29,29.5,21.79,40.7,18.89,38,0.0333333333,755.4,95.3333333333,2.1666666667,28.3333333333,-0.6166666667,26.9341058796,26.9341058796 -60,10,20.7,35.1633333333,17.29,38.79,21.5,35.5,19.9633333333,34.09,18.89,54.1633333333,-0.8,51.4666666667,19.29,29.5,21.79,40.7,18.89,38.09,0.1,755.4,95,2,21,-0.6,2.3100975668,2.3100975668 -80,0,20.7,35.2233333333,17.23,38.79,21.5,35.5,19.89,34.09,18.89,53.9975,-0.8666666667,51.3266666667,19.29,29.5,21.79,40.6266666667,18.89,38.1633333333,1.38777878078145E-17,755.4,95.1666666667,1.8333333333,28.1666666667,-0.6833333333,45.111692627,45.111692627 -60,0,20.7,35.6266666667,17.2,39.1933333333,21.4633333333,35.1933333333,19.89,34.03,18.89,53.8266666667,-0.9333333333,51,19.29,29.4266666667,21.76,40.56,18.89,38.23,-0.1,755.4,95.3333333333,1.6666666667,35.3333333333,-0.7666666667,16.9025570154,16.9025570154 -50,0,20.7,35.7,17.1333333333,39.6,21.39,34.9333333333,19.89,34,18.89,53.59,-1,51.2,19.29,29.4266666667,21.7,40.5,18.89,38.23,-0.2,755.4,95.5,1.5,42.5,-0.85,13.9883918222,13.9883918222 -270,0,20.7,35.8633333333,17.1,39.9333333333,21.29,34.8633333333,19.89,34,18.89,53.53,-0.9333333333,51.5266666667,19.29,29.39,21.7,40.4633333333,18.89,38.2,-0.3,755.4,95.6666666667,1.3333333333,49.6666666667,-0.9333333333,4.8942892929,4.8942892929 -160,10,20.7,35.79,17.1,40.06,21.29,34.79,19.8566666667,33.9666666667,18.89,53.3633333333,-0.9,51.5666666667,19.29,29.39,21.7,40.6633333333,18.89,38.2,-0.4,755.4,95.8333333333,1.1666666667,56.8333333333,-1.0166666667,1.111890038,1.111890038 -80,0,20.7,35.79,17.1,40.2,21.26,34.76,19.79,33.8725,18.89,53.29,-0.9,51.9,19.23,29.3233333333,21.7,40.79,18.89,38.2,-0.5,755.4,96,1,64,-1.1,8.2735750009,8.2735750009 -70,0,20.6333333333,36.1966666667,17.1,40.2,21.26,34.7,19.79,33.8633333333,18.79,53.06,-0.7666666667,52.1566666667,19.29,29.39,21.7,40.93,18.89,38.2,-0.4833333333,755.4166666667,96.1666666667,1.1666666667,63.8333333333,-1.05,47.8773560026,47.8773560026 -60,0,20.6,35.93,17.1,40.26,21.2,34.56,19.79,34.03,18.8566666667,52.8,-0.7,52.3633333333,19.23,29.3233333333,21.6666666667,40.93,18.89,38.06,-0.4666666667,755.4333333333,96.3333333333,1.3333333333,63.6666666667,-1,32.1172650321,32.1172650321 -70,0,20.6,35.73,17.1,40.2,21.2,34.5,19.79,34.09,18.8566666667,52.6333333333,-0.5666666667,52.6933333333,19.26,29.3566666667,21.6666666667,40.73,18.89,37.9333333333,-0.45,755.45,96.5,1.5,63.5,-0.95,21.0014770157,21.0014770157 -60,0,20.6,35.59,17.1,40.2,21.1666666667,34.3633333333,19.79,34.36,18.79,52.4333333333,-0.4333333333,52.9,19.2,29.29,21.6,40.3633333333,18.89,37.6633333333,-0.4333333333,755.4666666667,96.6666666667,1.6666666667,63.3333333333,-0.9,15.4585275217,15.4585275217 -70,0,20.6,35.59,17.1,40.1266666667,21.1,34.29,19.79,34.56,18.79,52.29,-0.2333333333,53.2666666667,19.2,29.29,21.6,40.03,18.89,37.53,-0.4166666667,755.4833333333,96.8333333333,1.8333333333,63.1666666667,-0.85,8.399694378,8.399694378 -80,0,20.6,35.59,17.1333333333,40.23,21.1,34.29,19.79,34.6266666667,18.79,52.23,-0.0333333333,53.4666666667,19.26,29.3566666667,21.5666666667,39.5266666667,18.8566666667,37.3333333333,-0.4,755.5,97,2,63,-0.8,20.1410945156,20.1410945156 -70,0,20.6,35.6633333333,17.2,40.29,21.1,34.29,19.79,34.7,18.79,52.1633333333,0.1666666667,53.8,19.2,29.29,21.5,39.2666666667,18.79,37.0666666667,-5.55111512312578E-17,755.55,96.3333333333,2,56.1666666667,-0.5166666667,47.3106209422,47.3106209422 -70,0,20.5666666667,35.7,17.29,40.4,21.0333333333,34.3266666667,19.79,34.79,18.79,52.09,0.3666666667,54,19.2,29.29,21.5,39.0266666667,18.8233333333,36.9,0.4,755.6,95.6666666667,2,49.3333333333,-0.2333333333,27.4256148608,27.4256148608 -90,0,20.575,35.75,17.29,40.4,21.0333333333,34.3266666667,19.79,34.79,18.79,52,0.8,54.5,19.2,29.39,21.4266666667,38.7666666667,18.8233333333,36.7666666667,0.8,755.65,95,2,42.5,0.05,1.6661795555,1.6661795555 -310,0,20.6,35.9,17.395,40.45,21,34.4333333333,19.79,34.79,18.79,51.9333333333,1.26,54.96,19.2,29.39,21.39,38.6633333333,18.79,36.545,1.2,755.7,94.3333333333,2,35.6666666667,0.3333333333,46.2490675156,46.2490675156 -350,0,20.5666666667,35.9333333333,17.6966666667,40.1633333333,21.0666666667,34.56,19.79,34.79,18.76,51.8633333333,2.2333333333,55.6966666667,19.2,29.5,21.39,38.5225,18.9266666667,36.3333333333,1.6,755.75,93.6666666667,2,28.8333333333,0.6166666667,9.445958829,9.445958829 -80,0,20.5666666667,36.1933333333,18.0966666667,39.7566666667,21.15,34.545,19.79,34.89,18.76,51.73,3.0933333333,56.3633333333,19.2,29.5,21.39,38.5,19,36.1266666667,2,755.8,93,2,22,0.9,18.3359339135,18.3359339135 -70,0,20.6,36.4333333333,18.8,39.0566666667,21.3233333333,34.4666666667,19.8566666667,35.2233333333,18.79,51.6333333333,4.2,56.895,19.2,29.5666666667,21.29,38.26,19,35.8333333333,2.4833333333,755.85,91.3333333333,2,23.1666666667,1.1333333333,23.7008165568,23.7008165568 -80,0,20.6,36.5,19.5333333333,38.13,21.4633333333,34.4666666667,20,35.4333333333,18.79,51.095,5.2266666667,57.39,19.2,29.5,21.23,38.0666666667,19.0666666667,35.7,2.9666666667,755.9,89.6666666667,2,24.3333333333,1.3666666667,9.6670495812,9.6670495812 -70,0,20.6,36.43,19.86,37.1,21.4266666667,34.4333333333,20.0666666667,35.56,18.73,50.4266666667,5.4933333333,57.6633333333,19.1333333333,29.5,21.2,37.8333333333,19.1,35.4666666667,3.45,755.95,88,2,25.5,1.6,41.2814629846,41.2814629846 -70,0,20.6,36.23,20.1933333333,36.7666666667,21.5666666667,34.5,20.2,35.7666666667,18.79,49.8633333333,6.5,58.0666666667,19.1333333333,29.5666666667,21.2,37.6266666667,19.1,35.3266666667,3.9333333333,756,86.3333333333,2,26.6666666667,1.8333333333,9.5751751214,9.5751751214 -80,0,20.6,36.1633333333,20.8666666667,36.0933333333,21.5333333333,34.4,20.26,36.0266666667,18.73,49.39,7.1666666667,58.5333333333,19.1,29.5,21.1666666667,37.5,19.1,35.06,4.4166666667,756.05,84.6666666667,2,27.8333333333,2.0666666667,16.244084877,16.244084877 -80,0,20.6666666667,36.1633333333,21.4666666667,35.1666666667,21.6,34.4666666667,20.39,36.23,18.76,48.9,7.5666666667,58.9266666667,19.1,29.5,21.1,37.4333333333,19.1,35,4.9,756.1,83,2,29,2.3,37.4992582365,37.4992582365 -60,0,20.7,36.09,21.96,34.1233333333,21.6,34.53,20.4725,36.3725,18.7,48.5,8.2266666667,58.7333333333,19.1,29.5,21.1,37.29,19.1,34.8633333333,5.0833333333,756.15,82.1666666667,2,30.8333333333,2.3333333333,49.380234105,49.380234105 -60,20,20.7,36.09,21.96,33.6566666667,21.5333333333,34.59,20.5666666667,36.4,18.76,48.1333333333,8.83,53.56,19.1,29.5,21.1,37.23,19.1,34.79,5.2666666667,756.2,81.3333333333,2,32.6666666667,2.3666666667,35.2335976786,35.2335976786 -60,10,20.7,36.06,21.6666666667,33.76,21.5,34.7,20.6333333333,36.4,18.7,47.9333333333,8.89,48.5,19.1,29.4266666667,21.0666666667,37.1333333333,19.1,34.56,5.45,756.25,80.5,2,34.5,2.4,35.3503864375,35.3503864375 -60,10,20.7,36,21.5333333333,33.8333333333,21.5,34.7,20.7,36.4,18.7,47.49,9.0633333333,41.1,19.1,29.39,21,37,19.1,34.4333333333,5.6333333333,756.3,79.6666666667,2,36.3333333333,2.4333333333,48.8562022918,48.8562022918 -80,10,20.7,35.9,21.8666666667,33.6233333333,21.4633333333,34.7,20.79,36.3633333333,18.7,47.1566666667,9.5966666667,35.3,19.1,29.3233333333,21,36.8633333333,19.1,34.29,5.8166666667,756.35,78.8333333333,2,38.1666666667,2.4666666667,2.3214168847,2.3214168847 -90,10,20.7,35.8266666667,22.26,32.9566666667,21.39,34.7,20.8566666667,36.3633333333,18.7,46.8333333333,10.3266666667,31.5966666667,19.1,29.29,21,36.79,19.1,34.29,6,756.4,78,2,40,2.5,11.0341750784,11.0341750784 -70,10,20.79,35.8266666667,22.23,32.6633333333,21.4266666667,34.7666666667,21,36.26,18.7,46.6266666667,10.7933333333,27.5966666667,19.1,29.23,21,36.76,19.1,34.2,6.1416666667,756.3833333333,76.9166666667,2.1666666667,40,2.4166666667,31.3585655997,31.3585655997 -70,10,20.79,36.0266666667,22.23,32.39,21.4266666667,34.8266666667,21.0666666667,36.2,18.7,46.2233333333,10.7933333333,25.1233333333,19.1,29.1666666667,20.9266666667,36.7,19.1,34.1266666667,6.2833333333,756.3666666667,75.8333333333,2.3333333333,40,2.3333333333,17.4813830643,17.4813830643 -90,10,20.73,36.0266666667,22.0333333333,32.4666666667,21.39,34.79,21.1333333333,36.2,18.7,46.03,10.7933333333,23.4566666667,19.1,29.1,20.89,36.6333333333,19.1,33.8633333333,6.425,756.35,74.75,2.5,40,2.25,19.6244568913,19.6244568913 -80,20,20.79,35.8725,22.0333333333,32.2666666667,21.39,34.79,21.2,36.1266666667,18.7,45.76,10.9633333333,21.5666666667,19.1,28.9633333333,20.89,36.5,19.1,33.79,6.5666666667,756.3333333333,73.6666666667,2.6666666667,40,2.1666666667,42.6285647089,42.6285647089 -70,10,20.79,35.73,22.0666666667,32.3633333333,21.5,35,21.23,35.8633333333,18.76,45.5666666667,11.0966666667,20.4933333333,19.1,28.89,20.89,36.4,19.05,33.545,6.7083333333,756.3166666667,72.5833333333,2.8333333333,40,2.0833333333,24.7704811511,24.7704811511 -70,10,20.79,35.56,22.2675,31.9425,21.5,35,21.23,35.5966666667,18.7,45.2966666667,11.95,14.7,19.1,28.76,20.84,36.2725,19.1,33.5,6.85,756.3,71.5,3,40,2,3.9962793817,3.9962793817 -60,10,20.79,35.5,22.23,31.6333333333,21.5,35,21.26,35.43,18.7,45.09,10.8566666667,12.4633333333,19.1,28.6333333333,20.8233333333,36.1566666667,19.1,33.36,6.9916666667,756.2833333333,70.4166666667,3.1666666667,40,1.9166666667,43.8394392724,43.8394392724 -70,10,20.79,35.3633333333,21.9633333333,31.6333333333,21.5,35,21.2,35.29,18.7,44.8633333333,9.2633333333,15.1966666667,19.1,28.6333333333,20.79,36.09,19,33.09,7.1333333333,756.2666666667,69.3333333333,3.3333333333,40,1.8333333333,15.6314186635,15.6314186635 -40,0,20.79,35.23,21.7633333333,31.76,21.5,35,21.2,35.1333333333,18.7,44.695,7.23,31.43,19.1,28.7,20.79,36.09,19,33.09,7.275,756.25,68.25,3.5,40,1.75,14.7642049356,14.7642049356 -50,0,20.79,35.2,21.6666666667,32.03,21.5,35,21.2,34.86,18.7,44.53,6.6233333333,42.1633333333,19.1,28.8233333333,20.73,36.09,19,33.09,7.4166666667,756.2333333333,67.1666666667,3.6666666667,40,1.6666666667,11.0889554606,11.0889554606 -50,0,20.79,35.1266666667,21.6,32.09,21.5,35,21.1666666667,34.7,18.7,44.26,7.3566666667,48.5,19.1,28.9633333333,20.73,36.09,19,33.09,7.5583333333,756.2166666667,66.0833333333,3.8333333333,40,1.5833333333,9.9333498394,9.9333498394 -60,0,20.79,35.09,21.4633333333,32.1633333333,21.5,35,21.1,34.6266666667,18.7,44.1266666667,7.83,47.0266666667,19.1,29.245,20.7,36.2,19,33.2,7.7,756.2,65,4,40,1.5,34.9923967617,34.9923967617 -50,0,20.73,35.09,21.3233333333,32.2233333333,21.5,35,21.0666666667,34.56,18.7,44.06,7.2,42.4933333333,19.1,29.39,20.7,36.26,19,33.26,7.2333333333,756.25,66.8333333333,4,40,1.4,23.4321232536,23.4321232536 -30,0,20.7,35.09,21.2,32.36,21.5,34.9,21,34.425,18.7,43.9333333333,7.2666666667,45.36,19.1,29.4633333333,20.7,36.3266666667,19,33.29,6.7666666667,756.3,68.6666666667,4,40,1.3,14.2918856349,14.2918856349 -30,0,20.7,35.09,21.2,32.5,21.5,34.9,21,34.4,18.7,43.8633333333,8.4233333333,49.0566666667,19.1333333333,29.6,20.7,36.4,19,33.3633333333,6.3,756.35,70.5,4,40,1.2,26.9823101815,26.9823101815 -40,0,20.7,35,21.2,32.5,21.5,34.9,21,34.4333333333,18.7,43.6566666667,9.09,46.7233333333,19.2,29.6666666667,20.7,36.4333333333,19,33.4,5.8333333333,756.4,72.3333333333,4,40,1.1,17.5599563401,17.5599563401 -30,0,20.7,35,21.2,32.56,21.5,34.9,21,34.5,18.7,43.5,9.5566666667,44.0666666667,19.29,29.79,20.6333333333,36.4333333333,19,33.4666666667,5.3666666667,756.45,74.1666666667,4,40,1,44.800983218,44.800983218 -60,0,20.79,35,21.1666666667,32.7666666667,21.39,34.79,20.9633333333,34.5,18.7,43.4333333333,9.9633333333,40.4,19.29,29.79,20.6666666667,36.56,19,33.59,4.9,756.5,76,4,40,0.9,11.7295962526,11.7295962526 -50,0,20.79,35,21.1,32.9,21.39,34.79,20.89,34.5,18.7,43.4,9.9633333333,36.6966666667,19.29,29.89,20.6,36.5,19,33.6633333333,5.2083333333,756.475,75.5833333333,3.9166666667,40,1.1166666667,21.0942972219,21.0942972219 -50,0,20.79,35,21,33.03,21.39,34.9,20.89,34.4666666667,18.7,43.3266666667,9.43,32.9566666667,19.29,29.89,20.6,36.56,18.9266666667,33.59,5.5166666667,756.45,75.1666666667,3.8333333333,40,1.3333333333,23.8481021021,23.8481021021 -60,0,20.79,35,21,33.09,21.39,34.9,20.89,34.4,18.7,43.29,9.16,38.03,19.29,29.9266666667,20.6,36.56,19,33.6633333333,5.825,756.425,74.75,3.75,40,1.55,37.1071129222,37.1071129222 -60,0,20.79,35,20.8566666667,33.2,21.4266666667,34.9333333333,20.89,34.4333333333,18.7,43.23,9.0333333333,39.3633333333,19.29,30.1333333333,20.6,36.59,19,33.73,6.1333333333,756.4,74.3333333333,3.6666666667,40,1.7666666667,6.9773665396,6.9773665396 -50,0,20.79,35.0225,20.8566666667,33.3333333333,21.5,35,20.89,34.5,18.7,43.1633333333,9.1666666667,39.4333333333,19.3233333333,30.29,20.6,36.6633333333,19,33.8633333333,6.4416666667,756.375,73.9166666667,3.5833333333,40,1.9833333333,42.909177125,42.909177125 -40,0,20.79,35.09,20.79,33.4,21.5,34.9,20.79,34.5,18.7,43.09,9.625,38.27,19.39,30.3566666667,20.5,36.79,18.945,34,6.75,756.35,73.5,3.5,40,2.2,45.6930878572,45.6930878572 -50,0,20.79,35.09,20.73,33.4666666667,21.5,34.9666666667,20.79,34.5,18.7,43.06,10.1266666667,35.4666666667,19.39,30.3566666667,20.5666666667,36.79,18.9266666667,34,7.0583333333,756.325,73.0833333333,3.4166666667,40,2.4166666667,49.3579736911,49.3579736911 -50,0,20.79,35.09,20.7,33.5,21.5,35,20.79,34.4666666667,18.7,43,10.5666666667,30.36,19.39,30.29,20.5,36.79,18.9266666667,34,7.3666666667,756.3,72.6666666667,3.3333333333,40,2.6333333333,46.7748052906,46.7748052906 -50,0,20.79,35.09,20.5666666667,33.4,21.5,35,20.79,34.3266666667,18.6666666667,42.93,10.0933333333,20.6933333333,19.39,30.1666666667,20.5,36.6633333333,18.89,33.8633333333,7.675,756.275,72.25,3.25,40,2.85,10.7831333065,10.7831333065 -50,0,20.79,35.03,20.4266666667,33.4,21.5,35,20.76,34.26,18.675,42.845,8.8966666667,18.6666666667,19.3233333333,30.0333333333,20.5,36.59,18.89,33.73,7.9833333333,756.25,71.8333333333,3.1666666667,40,3.0666666667,17.6082857535,17.6082857535 -60,0,20.79,35.1333333333,20.29,33.5666666667,21.5,35,20.7,34.2,18.7,42.73,8.9633333333,20.3333333333,19.39,29.8566666667,20.5,36.56,18.89,33.56,8.2916666667,756.225,71.4166666667,3.0833333333,40,3.2833333333,31.1650120304,31.1650120304 -80,0,20.79,35.4666666667,20.3566666667,33.7,21.5,35,20.7,34.06,18.7,42.6633333333,9.63,17.4666666667,19.39,29.73,20.5,36.4333333333,18.89,33.4333333333,8.6,756.2,71,3,40,3.5,47.5499083521,47.5499083521 -80,0,20.89,35.6633333333,20.3566666667,33.79,21.5,35,20.7,34,18.7,42.59,9.63,14.8,19.445,29.7,20.5333333333,36.53,18.89,33.3633333333,8.4333333333,756.2333333333,71,3.5,38,3.35,15.124501742,15.124501742 -70,0,20.89,35.59,20.29,33.79,21.5,34.9333333333,20.7,34,18.7,42.5,9.8,11.06,19.6,29.43,20.6,36.59,18.89,33.23,8.2666666667,756.2666666667,71,4,36,3.2,49.0356594441,49.0356594441 -50,0,20.89,35.56,20.26,33.76,21.5,34.9,20.7,33.925,18.7,42.4333333333,10.06,11.06,19.6,29.1633333333,20.6333333333,36.73,18.89,33.06,8.1,756.3,71,4.5,34,3.05,8.8824225124,8.8824225124 -50,0,20.89,35.4333333333,20.2,33.6266666667,21.5,34.9,20.7,33.9,18.7,42.4,10.7566666667,7.9666666667,19.7,28.9633333333,20.7,36.79,18.89,32.9333333333,7.9333333333,756.3333333333,71,5,32,2.9,39.4826221629,39.4826221629 -50,0,20.9266666667,35.26,20.23,33.4666666667,21.5,34.79,20.7,33.76,18.7,42.3266666667,11.03,6.1,19.7,28.7633333333,20.79,36.7,18.89,32.6633333333,7.7666666667,756.3666666667,71,5.5,30,2.75,49.3297938723,49.3297938723 -120,0,21,35.2,20.23,33.3266666667,21.5,34.79,20.7,33.76,18.73,42.1633333333,11.49,4.93,19.79,28.43,20.8566666667,36.76,18.89,32.4633333333,7.6,756.4,71,6,28,2.6,10.122014326,10.122014326 -400,0,21,35.1633333333,20.1666666667,33.26,21.4633333333,34.76,20.7,33.76,18.79,42.03,11.69,1.93,19.79,28.1633333333,20.9266666667,36.76,18.89,32.26,7.9333333333,756.35,68.3333333333,5.5,30,2.3333333333,24.6413906687,24.6413906687 -240,0,21,34.89,20.1666666667,33.0666666667,21.39,34.7,20.7,33.6266666667,18.79,41.8633333333,11.9266666667,1,19.79,27.93,21,36.5666666667,18.89,32.1266666667,8.2666666667,756.3,65.6666666667,5,32,2.0666666667,25.758373586,25.758373586 -120,0,21,34.6633333333,20.2,32.79,21.5,34.8633333333,20.7,33.56,18.79,41.73,11.7933333333,1,19.79,27.5966666667,21.0333333333,36.29,18.89,31.8566666667,8.6,756.25,63,4.5,34,1.8,17.7950520301,17.7950520301 -120,0,21,34.59,20.2,32.73,21.5,34.79,20.6333333333,33.36,18.79,41.56,11.7266666667,1,19.89,27.3266666667,21.1,36.1566666667,18.89,31.6633333333,8.9333333333,756.2,60.3333333333,4,36,1.5333333333,45.906920149,45.906920149 -120,0,21.0333333333,34.4666666667,20.1,32.59,21.5,34.8633333333,20.6,33.1633333333,18.8566666667,41.5,11.86,1,19.89,26.9933333333,21.23,35.9666666667,18.8566666667,31.2933333333,9.2666666667,756.15,57.6666666667,3.5,38,1.2666666667,25.1794269425,25.1794269425 -130,0,21.1,34.3266666667,20.1,32.53,21.5,34.79,20.6,32.9633333333,18.89,41.26,11.745,1,19.89,26.4966666667,21.29,35.6933333333,18.8566666667,31.0333333333,9.6,756.1,55,3,40,1,32.6277940301,32.6277940301 -120,0,21.1,34.4,20.1,32.2233333333,21.5,34.79,20.6,32.7666666667,18.89,41.1266666667,11.6,1,19.89,26.1633333333,21.4266666667,35.3633333333,18.79,30.65,9.6833333333,756.1,53.5,3.1666666667,40,0.6666666667,25.221332931,25.221332931 -140,0,21.1,33.6933333333,20.0333333333,31.6966666667,21.5,34.5966666667,20.6,32.2266666667,19,40.93,11.6,1,19.89,25.8566666667,21.5666666667,35.23,18.79,30.3266666667,9.7666666667,756.1,52,3.3333333333,40,0.3333333333,21.1695947219,21.1695947219 -230,0,21.1,33.3,20,31.39,21.5,34.145,20.6,32.09,19.0666666667,40.73,11.4633333333,1,19.89,25.73,21.6333333333,35,18.79,30.1333333333,9.85,756.1,50.5,3.5,40,0,29.4617329724,29.4617329724 -580,0,21.1333333333,33.43,20,31.39,21.5,34.09,20.6,32.09,19.1333333333,40.4666666667,11.4633333333,1,19.89,25.4633333333,21.772,34.814,18.79,30,9.9333333333,756.1,49,3.6666666667,40,-0.3333333333,35.7261582743,35.7261582743 -410,0,21.1333333333,33.23,20,31.39,21.5666666667,34.4233333333,20.5,32.2,19.2225,40.25,11.36,1,19.89,25.3233333333,21.79,34.7,18.79,29.9266666667,10.0166666667,756.1,47.5,3.8333333333,40,-0.6666666667,22.3748537479,22.3748537479 -350,0,21.1,33.5,20,31.5333333333,21.8933333333,35.9333333333,20.5,32.2,19.29,40.0666666667,11.1666666667,1,19.89,25.1666666667,21.79,34.43,18.79,29.79,10.1,756.1,46,4,40,-1,36.257169547,36.257169547 -560,0,21.1666666667,33.8333333333,19.9266666667,31.5333333333,22.2933333333,36.8,20.5666666667,32.09,19.29,39.9,11.03,1,19.89,25.05,21.79,34.29,18.79,29.73,10.05,756.1166666667,45.1666666667,4.1666666667,40,-1.3333333333,32.2830679477,32.2830679477 -550,0,21.1,33.76,19.89,31.73,22.6633333333,37.5666666667,20.5,32.09,19.29,39.8266666667,10.83,1,19.84,24.795,21.79,34.29,18.79,29.5666666667,10,756.1333333333,44.3333333333,4.3333333333,40,-1.6666666667,2.4289429421,2.4289429421 -300,0,21.1,33.6266666667,19.89,31.79,22.9966666667,38.0266666667,20.5,31.945,19.2,39.59,10.66,1,19.79,24.5666666667,21.79,34.29,18.79,29.4266666667,9.95,756.15,43.5,4.5,40,-2,2.9603017261,2.9603017261 -300,0,21.2,33.29,19.89,31.79,23.2633333333,38.1566666667,20.5,31.79,19.2,39.53,10.46,1,19.79,24.4266666667,21.8233333333,34.2666666667,18.79,29.3566666667,9.9,756.1666666667,42.6666666667,4.6666666667,40,-2.3333333333,14.1471348586,14.1471348586 -290,0,21.2,33.29,19.8233333333,31.79,23.4633333333,38.23,20.5,31.73,19.2,39.3633333333,10.2633333333,1,19.79,24.29,21.89,34.4666666667,18.79,29.23,9.85,756.1833333333,41.8333333333,4.8333333333,40,-2.6666666667,42.0171800884,42.0171800884 -200,0,21.2,33.5,19.79,31.9266666667,23.7,38.06,20.5,31.6666666667,19.2,39.23,9.99,1,19.79,24.23,21.89,34.5,18.79,29.1666666667,9.8,756.2,41,5,40,-3,48.469123512,48.469123512 -150,0,21.2,33.7,19.73,32,23.8266666667,37.9333333333,20.4266666667,31.5333333333,19.2,39.09,9.6266666667,1,19.76,24.1666666667,21.89,34.4333333333,18.79,29.1666666667,9.6833333333,756.2,41.3333333333,4.6666666667,40,-2.9833333333,26.055569353,26.055569353 -120,0,21.1333333333,33.6666666667,19.7,32.06,23.8566666667,37.3933333333,20.4266666667,31.5333333333,19.2,39.09,9.4266666667,1,19.7,24.1,21.89,34.3633333333,18.79,29.2,9.5666666667,756.2,41.6666666667,4.3333333333,40,-2.9666666667,14.8396454169,14.8396454169 -90,0,21.1333333333,33.86,19.7,32.4666666667,23.73,36.8,20.4266666667,31.46,19.2,39.06,10.2666666667,1,19.7,24.1,21.9633333333,34.29,18.79,29.2,9.45,756.2,42,4,40,-2.95,40.2989213355,40.2989213355 -90,0,21.1,33.5,19.6666666667,32.73,23.6666666667,36.3333333333,20.39,31.39,19.2,38.9333333333,11.1333333333,1,19.7,24.1,22,34.09,18.79,29.29,9.3333333333,756.2,42.3333333333,3.6666666667,40,-2.9333333333,15.1035043877,15.1035043877 -70,0,21.1,33.36,19.6,32.79,23.5333333333,36.1266666667,20.39,31.3233333333,19.2,38.8633333333,9.845,1,19.6666666667,24.0666666667,22,34.09,18.79,29.29,9.2166666667,756.2,42.6666666667,3.3333333333,40,-2.9166666667,30.8903841535,30.8903841535 -90,0,21.1,33.1633333333,19.5,32.8266666667,23.39,35.8633333333,20.39,31.29,19.1333333333,38.73,8.0333333333,1,19.6,24.0666666667,22,34.09,18.76,29.29,9.1,756.2,43,3,40,-2.9,23.287223326,23.287223326 -90,0,21.1,33.09,19.4266666667,32.9,23.3233333333,35.73,20.39,31.29,19.1,38.6633333333,7.1,1,19.6,24.2633333333,22,34.09,18.7,29.3566666667,8.55,756.2,46.6666666667,2.8333333333,40,-2.4833333333,21.9293777249,21.9293777249 -110,0,21.1,33,19.39,32.9333333333,23.1666666667,35.4,20.3566666667,31.39,19.1,38.59,6.1333333333,2.5266666667,19.5333333333,24.53,22.0333333333,34.1266666667,18.7,29.445,8,756.2,50.3333333333,2.6666666667,40,-2.0666666667,27.862431854,27.862431854 -130,0,21.1,33,19.3233333333,33.1333333333,23.0333333333,35.2666666667,20.29,31.4633333333,19.1,38.5,5.5333333333,4.3333333333,19.5,24.7633333333,22.1666666667,34.2,18.7,29.5333333333,7.45,756.2,54,2.5,40,-1.65,47.8877368034,47.8877368034 -110,0,21.0333333333,32.9333333333,19.29,33.29,22.945,35.145,20.29,31.5333333333,19.1,38.5,4.9933333333,6.4666666667,19.5,25.03,22.2,34.2,18.7,29.6,6.9,756.2,57.6666666667,2.3333333333,40,-1.2333333333,35.6208033743,35.6208033743 -100,0,21,32.9,19.2,33.4333333333,22.89,35,20.29,31.6,19.1,38.5,4.66,7.8666666667,19.5,25.23,22.26,34.26,18.7,29.7,6.35,756.2,61.3333333333,2.1666666667,40,-0.8166666667,9.0717382263,9.0717382263 -80,10,21,32.9666666667,19.1333333333,33.56,22.8233333333,34.9333333333,20.29,31.7,19.1,38.5,4.33,9.23,19.5,25.3566666667,22.29,34.29,18.7,29.76,5.8,756.2,65,2,40,-0.4,1.843941526,1.843941526 -50,0,21,33.2666666667,19.1,33.6566666667,22.79,34.8633333333,20.29,31.76,19.1,38.56,4.0633333333,9.8966666667,19.39,25.46,22.3233333333,34.5666666667,18.7,29.9266666667,5.55,756.2,66.5,2,40,-0.3166666667,2.7884366456,2.7884366456 -50,0,21,33.5266666667,19.0333333333,33.79,22.73,34.8633333333,20.2,31.6,19,38.6266666667,3.9,10.5266666667,19.39,25.7266666667,22.3233333333,34.9,18.7,30.0666666667,5.3,756.2,68,2,40,-0.2333333333,6.0428595287,6.0428595287 -50,0,21,33.5,18.9633333333,33.9333333333,22.7,34.9,20.2,31.5333333333,19,38.76,3.8266666667,11.3333333333,19.5,26.05,22.39,35.5,18.7,30.4933333333,5.05,756.2,69.5,2,40,-0.15,28.374253423,28.374253423 -40,0,21,33.5,18.89,34.06,22.7,34.9666666667,20.2,31.6,19,39,3.6633333333,13.16,19.39,26.23,22.3233333333,35.8333333333,18.7,30.9,4.8,756.2,71,2,40,-0.0666666667,26.8829272827,26.8829272827 -60,0,20.9633333333,33.53,18.79,34.1266666667,22.6666666667,35,20.2,31.6,19,39.06,3.53,14.8266666667,19.39,26.3566666667,22.3566666667,36.2666666667,18.7,31.3933333333,4.55,756.2,72.5,2,40,0.0166666667,29.077090288,29.077090288 -60,0,20.89,33.53,18.73,34.26,22.6,35,20.2,31.6666666667,19,39.23,3.3333333333,15.89,19.39,26.5333333333,22.29,36.6,18.7,31.7266666667,4.3,756.2,74,2,40,0.1,3.9841400343,3.9841400343 -50,0,20.89,33.59,18.7,34.4633333333,22.6,35,20.2,31.7,19,39.3633333333,3.1266666667,16.69,19.39,26.6666666667,22.29,36.9633333333,18.6333333333,32.0966666667,4.0833333333,756.1833333333,74.8333333333,2.1666666667,40,0.0333333333,36.9677334907,36.9677334907 -60,0,20.89,33.59,18.6333333333,34.59,22.6,35.06,20.1333333333,31.7,18.9633333333,39.5,2.9666666667,18.4333333333,19.39,26.79,22.23,37.1633333333,18.7,32.43,3.8666666667,756.1666666667,75.6666666667,2.3333333333,40,-0.0333333333,31.4003968262,31.4003968262 -50,0,20.8233333333,33.53,18.5666666667,34.7666666667,22.6,35.03,20.1,31.79,18.89,39.56,2.8266666667,19.8933333333,19.39,26.8566666667,22.2,37.53,18.7,32.7666666667,3.65,756.15,76.5,2.5,40,-0.1,49.4074174436,49.4074174436 -40,0,20.8233333333,33.53,18.5,35.0266666667,22.6,35.09,20.1,31.8566666667,18.89,39.7,2.645,22.445,19.39,27.0333333333,22.1333333333,37.6633333333,18.7,33.0266666667,3.4333333333,756.1333333333,77.3333333333,2.6666666667,40,-0.1666666667,26.7083542189,26.7083542189 -50,0,20.79,33.59,18.39,35.1266666667,22.6,35.09,20.1,31.9266666667,18.89,39.76,2.73,25.8233333333,19.39,27.1,22.0666666667,37.79,18.7,33.4633333333,3.2166666667,756.1166666667,78.1666666667,2.8333333333,40,-0.2333333333,44.2637403379,44.2637403379 -50,0,20.79,33.59,18.39,35.2,22.6,35.09,20.0333333333,32,18.89,39.9333333333,2.93,27.8233333333,19.39,27.29,22,37.8633333333,18.7,33.7233333333,3,756.1,79,3,40,-0.3,18.3983388124,18.3983388124 -60,0,20.79,33.6266666667,18.29,35.4333333333,22.5666666667,35.09,20,32.03,18.89,40,3.36,28.8333333333,19.39,27.3566666667,22,38.1566666667,18.7,34.0666666667,3.0388888889,756.0555555556,79.1111111111,3.0555555556,40,-0.2444444444,13.0307483836,13.0307483836 -60,0,20.79,33.7,18.23,35.5,22.5,35.09,20,32.1633333333,18.89,40.1266666667,3.56,29.2266666667,19.39,27.4266666667,22,38.49,18.7,34.3333333333,3.0777777778,756.0111111111,79.2222222222,3.1111111111,40,-0.1888888889,27.1947068744,27.1947068744 -50,0,20.7,33.7,18.2,35.6266666667,22.5,35.2,20,32.2,18.89,40.2,3.7,29.6333333333,19.39,27.5666666667,21.89,38.86,18.7,34.69,3.1166666667,755.9666666667,79.3333333333,3.1666666667,40,-0.1333333333,36.4595929743,36.4595929743 -50,0,20.7,33.79,18.1333333333,35.76,22.5,35.2,20,32.26,18.89,40.29,3.5666666667,29.1666666667,19.29,27.7,21.89,39,18.7,34.9633333333,3.1555555556,755.9222222222,79.4444444444,3.2222222222,40,-0.0777777778,13.9647652395,13.9647652395 -40,0,20.7,33.79,18.1,35.95,22.5,35.2,20,32.29,18.89,40.3633333333,3.4333333333,30.3,19.29,27.76,21.89,39.1566666667,18.7,35.2233333333,3.1944444444,755.8777777778,79.5555555556,3.2777777778,40,-0.0222222222,21.2930855108,21.2930855108 -30,0,20.6666666667,33.79,18.0666666667,36.06,22.5,35.2,20,32.29,18.89,40.4,3.56,30.5666666667,19.29,27.8233333333,21.8233333333,39.3633333333,18.7,35.53,3.2333333333,755.8333333333,79.6666666667,3.3333333333,40,0.0333333333,19.1811556113,19.1811556113 -20,0,20.6,33.79,18,36.06,22.5,35.2,19.9633333333,32.3633333333,18.865,40.45,3.6266666667,30.5,19.29,27.89,21.79,39.6266666667,18.7,35.6633333333,3.2722222222,755.7888888889,79.7777777778,3.3888888889,40,0.0888888889,41.1923724692,41.1923724692 -40,0,20.6,33.9,18,36.2,22.39,35.1266666667,19.9633333333,32.3633333333,18.8566666667,40.5266666667,3.7,30.76,19.29,27.9266666667,21.79,39.925,18.7,35.9333333333,3.3111111111,755.7444444444,79.8888888889,3.4444444444,40,0.1444444444,23.8673219574,23.8673219574 -50,0,20.6,33.9,17.9266666667,36.3333333333,22.39,35.1266666667,19.89,32.4,18.79,40.5,3.76,30.9633333333,19.29,28,21.79,40.26,18.76,36.1333333333,3.35,755.7,80,3.5,40,0.2,33.3456187393,33.3456187393 -50,0,20.5666666667,33.9333333333,17.89,36.4,22.3233333333,35.2,19.89,32.4,18.79,40.5,3.6266666667,30.8233333333,19.29,28.05,21.76,40.36,18.79,36.3266666667,3.3888888889,755.6555555556,80.1111111111,3.5555555556,40,0.2555555556,9.7376631689,9.7376631689 -60,0,20.5,34,17.89,36.4666666667,22.3233333333,35.2,19.89,32.5,18.79,40.59,3.3633333333,30.3933333333,19.29,28.1333333333,21.76,40.5,18.73,36.4666666667,3.4277777778,755.6111111111,80.2222222222,3.6111111111,40,0.3111111111,17.324809276,17.324809276 -50,0,20.5,34.03,17.89,36.53,22.29,35.2,19.89,32.5,18.79,40.6633333333,3.1566666667,30.7933333333,19.29,28.2,21.73,40.59,18.79,36.6266666667,3.4666666667,755.5666666667,80.3333333333,3.6666666667,40,0.3666666667,35.6388077256,35.6388077256 -70,0,20.5,34.09,17.8233333333,36.53,22.3566666667,35.2,19.89,32.5,18.79,40.7,2.8633333333,31.3633333333,19.29,28.2,21.73,40.53,18.79,36.76,3.5055555556,755.5222222222,80.4444444444,3.7222222222,40,0.4222222222,43.2773300214,43.2773300214 -50,0,20.4633333333,34.09,17.76,36.59,22.3233333333,35.2,19.89,32.5,18.79,40.76,2.695,32.315,19.29,28.2,21.7,40.7,18.79,36.9333333333,3.5444444444,755.4777777778,80.5555555556,3.7777777778,40,0.4777777778,17.6706244703,17.6706244703 -50,0,20.4633333333,34.1633333333,17.76,36.6633333333,22.3233333333,35.2,19.8233333333,32.4333333333,18.79,40.79,2.53,33.3233333333,19.29,28.29,21.7,40.6266666667,18.79,37.06,3.5833333333,755.4333333333,80.6666666667,3.8333333333,40,0.5333333333,7.8118323465,7.8118323465 -50,0,20.39,34.09,17.7,36.73,22.3566666667,35.2,19.79,32.5,18.79,40.8633333333,2.53,34.0666666667,19.29,28.29,21.6666666667,40.4666666667,18.79,37.1266666667,3.6222222222,755.3888888889,80.7777777778,3.8888888889,40,0.5888888889,11.5332189249,11.5332189249 -50,0,20.39,34.09,17.7,36.79,22.3566666667,35.2,19.79,32.5,18.76,40.9,2.59,34.2,19.26,28.29,21.6666666667,40.4666666667,18.79,37.26,3.6611111111,755.3444444444,80.8888888889,3.9444444444,40,0.6444444444,16.4606475853,16.4606475853 -50,0,20.39,34.09,17.6,36.79,22.29,35.2,19.79,32.5,18.76,40.9,2.5,34.4633333333,19.2,28.29,21.6,40.26,18.79,37.3266666667,3.7,755.3,81,4,40,0.7,26.0849756538,26.0849756538 -50,0,20.39,34.09,17.6,36.79,22.29,35.2,19.79,32.56,18.79,41,2.5,34.9966666667,19.26,28.29,21.6,40.1266666667,18.79,37.4666666667,3.8333333333,755.2333333333,79.5,4.1666666667,40,0.5666666667,20.6895157928,20.6895157928 -50,0,20.3566666667,34.2,17.6,36.9,22.29,35.2,19.79,32.59,18.79,41,2.5,35.0966666667,19.2,28.29,21.5666666667,40.06,18.79,37.59,3.9666666667,755.1666666667,78,4.3333333333,40,0.4333333333,13.2760182256,13.2760182256 -60,0,20.29,34.2,17.6,36.9666666667,22.29,35.2,19.79,32.59,18.79,41.03,2.6333333333,35.8966666667,19.2,28.29,21.5666666667,40.06,18.79,37.6633333333,4.1,755.1,76.5,4.5,40,0.3,12.5971021247,12.5971021247 -50,0,20.3566666667,34.2,17.5,37.03,22.29,35.2,19.79,32.59,18.73,41.09,2.9,36.1,19.2,28.3566666667,21.5,40.09,18.79,37.845,4.2333333333,755.0333333333,75,4.6666666667,40,0.1666666667,28.8970160764,28.8970160764 -60,0,20.29,34.2,17.5,37.09,22.29,35.2,19.73,32.59,18.79,41.09,2.9666666667,36.0266666667,19.2,28.39,21.5,40.09,18.79,37.9333333333,4.3666666667,754.9666666667,73.5,4.8333333333,40,0.0333333333,12.8613349632,12.8613349632 -50,0,20.29,34.2,17.5,37.145,22.29,35.2,19.76,32.7,18.73,41.09,3.2,35.8633333333,19.2,28.39,21.4633333333,40.06,18.79,38.06,4.5,754.9,72,5,40,-0.1,47.753448505,47.753448505 -50,0,20.29,34.29,17.5,37.2,22.29,35.2,19.7,32.7,18.7,41.2,3.26,35.53,19.2,28.39,21.4633333333,40.1333333333,18.79,38.23,4.55,754.85,72.3333333333,5,40,-1.38777878078145E-17,43.2408543653,43.2408543653 -50,0,20.29,34.29,17.4266666667,37.2,22.29,35.2,19.7,32.7,18.7,41.2,3.3266666667,35.53,19.2,28.4633333333,21.5,40.29,18.79,38.3633333333,4.6,754.8,72.6666666667,5,40,0.1,12.1386849787,12.1386849787 -40,0,20.29,34.29,17.39,37.29,22.29,35.2,19.7,32.76,18.7,41.26,3.4,35.7233333333,19.2,28.5,21.5,40.23,18.79,38.5,4.65,754.75,73,5,40,0.2,2.5400527637,2.5400527637 -40,0,20.23,34.29,17.39,37.29,22.29,35.2,19.7,32.79,18.7,41.29,3.4,35.6266666667,19.2,28.5,21.445,40.2,18.79,38.56,4.7,754.7,73.3333333333,5,40,0.3,16.1764114862,16.1764114862 -30,0,20.26,34.29,17.29,37.3266666667,22.2,35.09,19.7,32.79,18.7,41.29,3.4666666667,35.96,19.2,28.5,21.4633333333,40.2,18.79,38.6266666667,4.75,754.65,73.6666666667,5,40,0.4,17.3832839471,17.3832839471 -40,0,20.2,34.29,17.3566666667,37.4,22.2,35.09,19.7,32.79,18.7,41.3266666667,3.59,36.045,19.2,28.6,21.39,40.2,18.79,38.7,4.8,754.6,74,5,40,0.5,18.5425339732,18.5425339732 -40,0,20.2,34.29,17.29,37.4,22.2,35.03,19.6,32.79,18.7,41.4,3.7,36.2233333333,19.1333333333,28.6,21.39,40.2,18.79,38.73,4.8083333333,754.575,74.0833333333,5.0833333333,40,0.525,39.5046304096,39.5046304096 -50,0,20.2,34.29,17.29,37.4666666667,22.2,35.09,19.6,32.79,18.7,41.4,3.7,36.2233333333,19.1666666667,28.7,21.39,40.1266666667,18.79,38.8633333333,4.8166666667,754.55,74.1666666667,5.1666666667,40,0.55,41.0229065688,41.0229065688 -50,0,20.2,34.4,17.29,37.5,22.2,35.09,19.6,32.8633333333,18.7,41.4,3.76,36.2666666667,19.1,28.7,21.39,40.09,18.79,38.9,4.825,754.525,74.25,5.25,40,0.575,44.6352480329,44.6352480329 -50,0,20.1333333333,34.4,17.29,37.56,22.2,35.09,19.6,32.8633333333,18.7,41.4,3.7,36.4,19.2,28.7,21.39,40.09,18.79,38.9,4.8333333333,754.5,74.3333333333,5.3333333333,40,0.6,49.1980286897,49.1980286897 -50,0,20.2,34.4,17.29,37.59,22.1,35.1266666667,19.6,32.9,18.7,41.4,3.79,36.2233333333,19.1333333333,28.7,21.3233333333,40,18.79,38.9,4.8416666667,754.475,74.4166666667,5.4166666667,40,0.625,9.6930293832,9.6930293832 -50,0,20.1333333333,34.4,17.23,37.59,22.1,35.2,19.6,32.9,18.6333333333,41.4333333333,3.79,36.09,19.1,28.7,21.3233333333,40,18.79,38.9,4.85,754.45,74.5,5.5,40,0.65,45.8330735564,45.8330735564 -50,0,20.1,34.4333333333,17.23,37.6266666667,22.1,35.2,19.6,33,18.6333333333,41.4333333333,3.9333333333,36.53,19.1,28.76,21.29,40.03,18.79,38.9,4.8583333333,754.425,74.5833333333,5.5833333333,40,0.675,6.0151711339,6.0151711339 -50,0,20.1,34.5,17.23,37.7,22.1,35.2,19.6,33,18.6,41.4,4.06,36.79,19.1,28.79,21.29,40.09,18.79,38.9,4.8666666667,754.4,74.6666666667,5.6666666667,40,0.7,35.7646705583,35.7646705583 -60,0,20.1,34.5,17.2,37.7,22.1,35.2,19.5333333333,33,18.6,41.4,4.1233333333,36.9333333333,19.1,28.79,21.29,40.2,18.79,38.9,4.875,754.375,74.75,5.75,40,0.725,12.8121917485,12.8121917485 -50,0,20.1,34.5,17.2,37.7,22.1,35.2,19.5333333333,33,18.6,41.4333333333,4.2633333333,37,19.1,28.89,21.29,40.1266666667,18.79,38.9,4.8833333333,754.35,74.8333333333,5.8333333333,40,0.75,12.054304732,12.054304732 -60,0,20.0666666667,34.4666666667,17.2,37.79,22.0666666667,35.1633333333,19.5,33.09,18.6,41.4333333333,4.5633333333,36.6,19.1,28.89,21.2,40.06,18.79,38.9,4.8916666667,754.325,74.9166666667,5.9166666667,40,0.775,42.8520321031,42.8520321031 -60,0,20,34.4975,17.2,37.79,22,35.09,19.5,33.09,18.6,41.4333333333,4.8966666667,36.1933333333,19.1,29,21.2,40.06,18.79,39.03,4.9,754.3,75,6,40,0.8,49.3954338715,49.3954338715 -70,0,20,34.9966666667,17.2,37.99,21.9633333333,34.8933333333,19.5,33.09,18.6,41.5,5.26,35.6,19.1,28.9266666667,21.2,40.2,18.79,39.1633333333,5.0666666667,754.2833333333,74.8333333333,6,40,0.9333333333,36.265612999,36.265612999 -100,0,20.1,35.3266666667,17.2,38.36,21.815,34.225,19.5,33.1725,18.6,41.43,5.55,34.9357142857,19.0666666667,28.8566666667,21.2,40.05,18.79,39.0266666667,5.2333333333,754.2666666667,74.6666666667,6,40,1.0666666667,7.5553557952,7.5553557952 -60,0,20.1,35.66,17.2,38.6333333333,21.73,34.1333333333,19.5,33.4633333333,18.6,41.195,5.7633333333,34.59,19,28.8566666667,21.2,39.6333333333,18.79,38.9,5.4,754.25,74.5,6,40,1.2,10.4798787157,10.4798787157 -60,0,20.1,35.79,17.23,38.8266666667,21.7,34.4,19.5,33.7233333333,18.6,41.03,5.9966666667,34.5666666667,19,28.9266666667,21.1333333333,39.36,18.79,38.6333333333,5.5666666667,754.2333333333,74.3333333333,6,40,1.3333333333,25.9769051103,25.9769051103 -130,0,20.1,35.79,17.29,38.9,21.7,34.4,19.5,33.79,18.6,40.7233333333,6.395,34.195,19,29,21.1,39.0266666667,18.79,38.3,5.7333333333,754.2166666667,74.1666666667,6,40,1.4666666667,21.0469951271,21.0469951271 -470,10,20.1,36.03,17.29,39.03,21.7,34.3333333333,19.5,33.8175,18.6666666667,40.53,6.73,33.2266666667,19,29.05,21.1,38.7225,18.79,38.0266666667,5.9,754.2,74,6,40,1.6,3.3623961848,3.3623961848 -290,0,20.1,36.09,17.3566666667,39.03,21.76,34.5933333333,19.5,33.9,18.7,40.5,7.03,31.8933333333,19,29.2,21.0333333333,38.4633333333,18.79,37.6933333333,6.05,754.2166666667,74.3333333333,6.1666666667,40,1.8,42.1085843584,42.1085843584 -250,0,20.1,36.06,17.4266666667,39,21.9933333333,36.3933333333,19.5,34,18.6333333333,40.5,7.35,31.1844444444,19,29.23,21,38.1788888889,18.76,37.4666666667,6.2,754.2333333333,74.6666666667,6.3333333333,40,2,26.2117804145,26.2117804145 -250,0,20.1,36,17.5,38.9333333333,22.3266666667,37.4666666667,19.5,34,18.6,40.4,7.6,30.3666666667,19,29.29,21,38.09,18.7,37.2666666667,6.35,754.25,75,6.5,40,2.2,38.6222163099,38.6222163099 -400,0,20.1,36.1666666667,17.6,38.7233333333,22.7633333333,38.39,19.5,34.23,18.6,40.4,7.8666666667,29.2333333333,18.9266666667,29.3566666667,20.89,38,18.7,37.06,6.5,754.2666666667,75.3333333333,6.6666666667,40,2.4,43.5604040627,43.5604040627 -510,0,20.1666666667,36.2266666667,17.6,38.9233333333,22.9633333333,38.2566666667,19.5,34.4475,18.6,40.4,8.025,28.8175,18.945,29.445,20.89,37.925,18.7,36.9333333333,6.65,754.2833333333,75.6666666667,6.8333333333,40,2.6,27.6072671637,27.6072671637 -260,0,20.1,36.09,17.6,38.8633333333,23.23,38.09,19.5,34.56,18.6,40.4,8.2333333333,28.3333333333,19,29.5,20.8566666667,37.76,18.7,36.76,6.8,754.3,76,7,40,2.8,13.535082445,13.535082445 -80,0,20.1,36.09,17.6,38.79,23.3566666667,37.9633333333,19.5777777778,34.4666666667,18.6,40.3633333333,8.445,27.195,19,29.6555555556,20.85,37.7,18.7,36.6266666667,6.8833333333,754.35,76,7,40,2.8833333333,39.7956284927,39.7956284927 -100,0,20.1,36.3933333333,17.7,38.8633333333,23.5,37.66,19.525,34.475,18.6,40.29,8.445,26.695,19,29.7,20.8566666667,37.6333333333,18.7,36.4666666667,6.9666666667,754.4,76,7,40,2.9666666667,41.3863330032,41.3863330032 -70,0,20.1666666667,37.6,17.7,39.3966666667,23.36,36.86,19.5333333333,34.4666666667,18.6,40.3266666667,8.4266666667,27.6566666667,19,29.79,20.79,37.5,18.7,36.4,7.05,754.45,76,7,40,3.05,36.4668780472,36.4668780472 -90,0,20.23,38.7233333333,17.7,40.4633333333,23.1666666667,35.7666666667,19.5333333333,34.6266666667,18.6,40.4666666667,8.5,28.5966666667,18.9266666667,29.8566666667,20.79,37.5,18.6333333333,36.23,7.1333333333,754.5,76,7,40,3.1333333333,43.4367700247,43.4367700247 -60,0,20.23,38.2566666667,17.7,40.53,23.0333333333,35.2266666667,19.5333333333,34.7,18.6,40.7,8.36,28.2666666667,18.89,30.0333333333,20.79,37.5,18.6333333333,36.1566666667,7.2166666667,754.55,76,7,40,3.2166666667,42.8400699166,42.8400699166 -70,0,20.2,37.76,17.7,40.3333333333,22.89,34.8333333333,19.5,34.7,18.6,40.7,8.36,28.9333333333,18.89,30.1,20.7,37.4,18.7,36.2,7.3,754.6,76,7,40,3.3,0.6518547307,0.6518547307 -50,0,20.2,37.525,17.7675,40.095,22.8233333333,34.5666666667,19.5,34.6266666667,18.6,40.73,8.5333333333,28.5,18.89,30.2,20.7,37.4,18.6333333333,36.03,7.2666666667,754.6166666667,76.6666666667,6.8333333333,40,3.4,10.263962578,10.263962578 -40,0,20.2,37.3266666667,17.79,39.9333333333,22.76,34.4,19.5,34.59,18.6666666667,40.79,8.66,28.0266666667,18.9633333333,30.2,20.7,37.4,18.6333333333,36.03,7.2333333333,754.6333333333,77.3333333333,6.6666666667,40,3.5,40.1860371465,40.1860371465 -50,0,20.2,37.1633333333,17.89,39.7233333333,22.6333333333,34.2666666667,19.5,34.59,18.6,40.7,8.96,28.2333333333,18.89,30.3233333333,20.76,37.4,18.6,35.9,7.2,754.65,78,6.5,40,3.6,25.5394451553,25.5394451553 -60,0,20.2,37.03,17.9633333333,39.53,22.55,34.145,19.5,34.6266666667,18.625,40.7,9.16,28.5666666667,18.89,30.39,20.7,37.4,18.6666666667,35.9666666667,7.1666666667,754.6666666667,78.6666666667,6.3333333333,40,3.7,33.7118515396,33.7118515396 -60,0,20.2,36.9666666667,18,39.4,22.5,34.09,19.5,34.7,18.6333333333,40.6266666667,9.3,29.09,18.9266666667,30.5333333333,20.7,37.4,18.6,35.79,7.1333333333,754.6833333333,79.3333333333,6.1666666667,40,3.8,40.4842465301,40.4842465301 -60,0,20.2,36.9,18.0666666667,39.4,22.4266666667,34.03,19.5,34.7,18.6,40.5,9.2,30.3,18.9266666667,30.6666666667,20.7,37.4333333333,18.6,35.79,7.1,754.7,80,6,40,3.9,12.511717109,12.511717109 -50,0,20.2,36.9,18,39.29,22.3566666667,34,19.5,34.7675,18.6,40.4333333333,8.9266666667,31.3,19,30.8233333333,20.6333333333,37.4333333333,18.6,35.79,7.1666666667,754.7666666667,80.5,5.8333333333,36.6666666667,4.0333333333,28.43649555,28.43649555 -50,0,20.2,36.9,18,39.3633333333,22.29,34,19.5,34.8633333333,18.6,40.4,8.83,32.66,18.9175,30.9975,20.6,37.45,18.6,35.8633333333,7.2333333333,754.8333333333,81,5.6666666667,33.3333333333,4.1666666667,30.714485934,30.714485934 -20,0,20.2,36.9,18.0333333333,39.4333333333,22.26,34.06,19.5,34.9,18.6,40.4,8.89,33.86,18.89,31.1666666667,20.6,37.53,18.6,35.9333333333,7.3,754.9,81.5,5.5,30,4.3,5.5517302826,5.5517302826 -30,0,20.2,36.9,18.0333333333,39.4333333333,22.2,34,19.5,34.9666666667,18.6,40.4,9.0666666667,34.9333333333,18.89,31.3233333333,20.6,37.59,18.6,36,7.3666666667,754.9666666667,82,5.3333333333,26.6666666667,4.4333333333,15.9234679304,15.9234679304 -20,0,20.2,36.9333333333,18,39.4333333333,22.1666666667,34.09,19.5,35.1266666667,18.6,40.4,9,35.9333333333,18.89,31.53,20.6,37.7,18.6,36.09,7.4333333333,755.0333333333,82.5,5.1666666667,23.3333333333,4.5666666667,33.1601287238,33.1601287238 -40,0,20.2,37,18.0666666667,39.56,22.1,34.09,19.5,35.26,18.6,40.4,9.13,36.89,18.9266666667,31.7633333333,20.6,37.76,18.6,36.1633333333,7.5,755.1,83,5,20,4.7,30.5535033462,30.5535033462 -70,0,20.2,37.09,18.1,39.59,22,34.09,19.5,35.3266666667,18.6,40.4,9.3233333333,37.1633333333,18.9266666667,31.9633333333,20.5,37.9333333333,18.6,36.23,7.4333333333,755.1333333333,84.5,4.8333333333,21.5,4.9,42.3829199048,42.3829199048 -60,0,20.1333333333,37.1633333333,18.1,39.59,21.9266666667,34.1633333333,19.5,35.4,18.6,40.4,9.6,36.5,18.89,32.03,20.5,38,18.6,36.29,7.3666666667,755.1666666667,86,4.6666666667,23,5.1,4.4690517243,4.4690517243 -300,0,20.1333333333,37.2,18.2,39.59,21.89,34.2,19.5,35.53,18.6666666667,40.4666666667,10,36.2266666667,18.9633333333,32.1633333333,20.5,38.09,18.6,36.4,7.3,755.2,87.5,4.5,24.5,5.3,1.4014288317,1.4014288317 -780,0,20.1333333333,37.3333333333,18.26,39.59,21.89,34.26,19.5,35.6633333333,18.6,40.4,10.63,35.4266666667,19,32.3266666667,20.5,38.09,18.6,36.4666666667,7.2333333333,755.2333333333,89,4.3333333333,26,5.5,44.4656022009,44.4656022009 -470,0,20.1,37.5666666667,18.3233333333,39.5,21.9933333333,35.1,19.5,35.79,18.6666666667,40.5266666667,10.9633333333,33.1666666667,19,32.4666666667,20.5,38.2,18.6,36.53,7.1666666667,755.2666666667,90.5,4.1666666667,27.5,5.7,31.9156004349,31.9156004349 -270,0,20.1666666667,37.76,18.39,39.5,22.3266666667,36.4933333333,19.5,35.79,18.6666666667,40.56,10.8966666667,29.7266666667,19,32.5,20.5,38.2,18.6,36.6725,7.1,755.3,92,4,29,5.9,25.6310007651,25.6310007651 -240,0,20.2,37.8633333333,18.5,39.6266666667,22.8,37.6333333333,19.5,35.9,18.6666666667,40.6333333333,10.23,29.8666666667,19,32.5,20.5,38.29,18.6,36.7,7.35,755.2666666667,91,4,30.8333333333,5.9666666667,40.4179816484,40.4179816484 -260,0,20.15,37.7225,18.5,39.6725,23.1333333333,38.1,19.5,35.9,18.7,40.7,8.8666666667,34.53,19,32.5,20.5,38.23,18.6,36.6633333333,7.6,755.2333333333,90,4,32.6666666667,6.0333333333,18.2099327678,18.2099327678 -220,0,20.2,37.7,18.6333333333,39.59,23.46,38.3633333333,19.5,36,18.7,40.7,8.6,38.39,19,32.5,20.5,38.2,18.6,36.59,7.85,755.2,89,4,34.5,6.1,42.1366124181,42.1366124181 -110,0,20.46,39.2233333333,18.7633333333,39.4,23.6,37.8233333333,19.5,36,18.7,40.79,8.9,42.8633333333,19,32.53,20.5,38.2,18.6,36.6266666667,8.1,755.1666666667,88,4,36.3333333333,6.1666666667,8.7242292124,8.7242292124 -80,0,20.6,38.63,18.9633333333,39.4,23.55,36.595,19.5,36.1933333333,18.7,40.8975,9.525,44.5425,19,32.59,20.4266666667,38.23,18.6,36.7,8.35,755.1333333333,87,4,38.1666666667,6.2333333333,34.2219774728,34.2219774728 -50,0,20.6333333333,38.2,19.23,39.3633333333,23.5666666667,36.0266666667,19.5,36.5266666667,18.7,41.06,10.1266666667,44.6666666667,19,32.73,20.5,38.3633333333,18.6,36.73,8.6,755.1,86,4,40,6.3,1.7720756005,1.7720756005 -60,0,20.7,38.1266666667,19.3566666667,39.23,23.4266666667,35.8266666667,19.5,36.86,18.7,41.1266666667,10.3666666667,44.2966666667,19,32.8633333333,20.39,38.29,18.6,36.79,8.4166666667,755.15,86.3333333333,3.8333333333,40,6.1833333333,40.596415929,40.596415929 -50,0,20.8233333333,38,19.5333333333,39.0266666667,23.39,35.7,19.5,37.1725,18.7,41.26,10.76,44.1633333333,19,32.9333333333,20.39,38.3633333333,18.6,36.8266666667,8.2333333333,755.2,86.6666666667,3.6666666667,40,6.0666666667,49.7182135354,49.7182135354 -280,0,20.89,38,19.7266666667,38.7666666667,23.3233333333,35.7,19.5,37.43,18.73,41.3266666667,11,40.8233333333,19,33.095,20.39,38.4,18.6,36.9,8.05,755.25,87,3.5,40,5.95,5.3529111436,5.3529111436 -380,0,21,38.53,19.79,38.4666666667,23.29,35.8,19.6,37.53,18.79,41.4,10.6666666667,38.3633333333,19,33.2,20.39,38.5,18.6,37,7.8666666667,755.3,87.3333333333,3.3333333333,40,5.8333333333,30.7130486122,30.7130486122 -280,0,21.0666666667,38.79,19.8566666667,38.4,23.3566666667,36.3333333333,19.6,37.7233333333,18.79,41.5,10.1633333333,34.0566666667,19,33.06,20.39,38.5,18.6,37,7.6833333333,755.35,87.6666666667,3.1666666667,40,5.7166666667,35.8014499536,35.8014499536 -260,0,21.23,38.8266666667,19.9266666667,38.2233333333,23.6633333333,37.03,19.6,37.86,18.79,41.56,9.6966666667,34.33,19,32.9333333333,20.39,38.5,18.6,36.9666666667,7.5,755.4,88,3,40,5.6,34.7980124643,34.7980124643 -250,0,21.29,39.0266666667,20,38.03,23.93,37.1633333333,19.6,38.1333333333,18.79,41.59,9.1266666667,35.2566666667,19,32.9,20.39,38.4333333333,18.6,36.9,7.5833333333,755.4666666667,85.6666666667,3.5,40,5.2666666667,13.5570106097,13.5570106097 -220,0,21.4266666667,39.06,20.0333333333,38,24.1633333333,37.3633333333,19.7,38.1333333333,18.79,41.59,8.9266666667,37.7966666667,19,32.8266666667,20.3566666667,38.4,18.6,36.79,7.6666666667,755.5333333333,83.3333333333,4,40,4.9333333333,25.1246023225,25.1246023225 -220,0,21.5666666667,39.1333333333,20.1,38,24.29,37.23,19.6333333333,37.9333333333,18.79,41.6266666667,9.1,40.5333333333,19,32.79,20.3566666667,38.4,18.6,36.79,7.75,755.6,81,4.5,40,4.6,32.6651241747,32.6651241747 -190,0,21.7,39.1333333333,20.23,37.9,24.4266666667,37,19.6333333333,37.76,18.79,41.7,9.5,41.7933333333,19.0666666667,32.8633333333,20.39,38.29,18.6,36.79,7.8333333333,755.6666666667,78.6666666667,5,40,4.2666666667,27.9931618134,27.9931618134 -70,0,21.76,38.9333333333,20.3566666667,37.8266666667,24.5666666667,36.86,19.6333333333,37.6266666667,18.79,41.7,9.8666666667,41.23,19.1,32.9333333333,20.39,38.3633333333,18.6,36.79,7.9166666667,755.7333333333,76.3333333333,5.5,40,3.9333333333,20.1680661296,20.1680661296 -50,0,21.8233333333,38.79,20.4266666667,37.7,24.6,36.5266666667,19.6,37.4666666667,18.79,41.76,10,41.03,19.1,33.06,20.39,38.4,18.6,36.79,8,755.8,74,6,40,3.6,4.4448573841,4.4448573841 -50,0,21.89,38.6566666667,20.5,37.6266666667,24.5333333333,36.1333333333,19.6,37.4,18.79,41.79,10.1,40.0666666667,19.1,33.1266666667,20.3233333333,38.4666666667,18.6,36.79,7.9333333333,755.8166666667,76,5.5,38.1666666667,3.9,34.3980918522,34.3980918522 -60,0,21.9266666667,38.2966666667,20.6,37.5,24.3566666667,35.5266666667,19.6,37.3633333333,18.8566666667,41.8633333333,10.2933333333,40.4666666667,19.1,33.2,20.39,38.5,18.6,36.79,7.8666666667,755.8333333333,78,5,36.3333333333,4.2,24.1943372996,24.1943372996 -60,0,22,37.9975,20.6975,37.3975,24.23,35.2666666667,19.6,37.29,18.89,41.9,10.96,40.4633333333,19.1,33.3266666667,20.3233333333,38.5,18.6,36.9,7.8,755.85,80,4.5,34.5,4.5,23.2103466988,23.2103466988 -50,0,22.0666666667,37.9,20.79,37.23,24.0666666667,35.06,19.6,37.29,18.89,41.9666666667,10.9975,38.7925,19.1,33.4666666667,20.3233333333,38.6266666667,18.6,36.9666666667,7.7333333333,755.8666666667,82,4,32.6666666667,4.8,40.1458531502,40.1458531502 -60,0,22.1,37.76,20.79,37.1633333333,24,34.9333333333,19.6,37.29,18.89,41.9333333333,11.09,38.6666666667,19.1,33.6266666667,20.3233333333,38.7,18.6,37.03,7.6666666667,755.8833333333,84,3.5,30.8333333333,5.1,15.7890208298,15.7890208298 -60,0,22.1,37.8333333333,20.79,37.09,23.8566666667,34.9,19.6,37.3266666667,18.89,42,11.6,36.2266666667,19.1,33.76,20.29,38.8266666667,18.6,37.09,7.6,755.9,86,3,29,5.4,16.6942456155,16.6942456155 -70,0,22.2,37.8633333333,20.89,37.09,23.6975,34.95,19.6,37.6,18.89,42,11.7266666667,33.1666666667,19.1333333333,33.79,20.29,39.16,18.7,37.29,7.7333333333,755.8666666667,86.1666666667,3.1666666667,30.8333333333,5.55,2.291910944,2.291910944 -80,0,22.2,37.79,20.89,37.09,23.5333333333,34.9666666667,19.6333333333,38.0966666667,19,42,11.83,31.3233333333,19.2,33.8633333333,20.4266666667,39.7666666667,18.6333333333,37.29,7.8666666667,755.8333333333,86.3333333333,3.3333333333,32.6666666667,5.7,22.2068638541,22.2068638541 -90,0,22.2,37.6633333333,21,37.09,23.4633333333,34.9666666667,19.7,38.42,19,42,11.9633333333,29.7233333333,19.2,33.9,20.5666666667,40.0266666667,18.6666666667,37.3633333333,8,755.8,86.5,3.5,34.5,5.85,15.4517824529,15.4517824529 -70,0,22.2,37.53,21,37.09,23.39,34.9,19.7,38.59,19,42.09,12.1,28,19.2,33.9,20.6333333333,40.3266666667,18.6666666667,37.3633333333,8.1333333333,755.7666666667,86.6666666667,3.6666666667,36.3333333333,6,16.0572351888,16.0572351888 -100,0,22.23,37.5,21.1,37.09,23.3566666667,35,19.7,38.7,19,42.09,12.16,26.6666666667,19.2,33.9,20.7675,40.475,18.7,37.4333333333,8.2666666667,755.7333333333,86.8333333333,3.8333333333,38.1666666667,6.15,36.5945987403,36.5945987403 -140,0,22.29,37.5,21.1,37.03,23.29,34.9333333333,19.76,38.76,19,42.1266666667,12.33,25.2333333333,19.2,33.9,20.8566666667,40.56,18.7,37.56,8.4,755.7,87,4,40,6.3,49.5757779805,49.5757779805 -90,0,22.3233333333,37.5966666667,21.1,36.9666666667,23.29,35.03,19.79,38.8266666667,19,42.2,12.39,23.2333333333,19.2,33.9,21,40.6633333333,18.7,37.59,8.55,755.6666666667,85.5,4,40,6.1833333333,35.7580048032,35.7580048032 -80,0,22.39,37.53,21.1666666667,36.8266666667,23.29,35.09,19.79,38.9666666667,19.1,42.3266666667,12.5333333333,21.9666666667,19.2,33.79,21.0666666667,40.6633333333,18.7,37.59,8.7,755.6333333333,84,4,40,6.0666666667,37.7813508851,37.7813508851 -80,0,22.4266666667,37.1633333333,21.2,36.79,23.29,35.2,19.79,39,19.1,42.4,12.46,21.3666666667,19.2,33.79,21.1333333333,40.7,18.7,37.59,8.85,755.6,82.5,4,40,5.95,14.6868133452,14.6868133452 -330,0,22.5,37.09,21.2,36.79,23.23,35.2,19.79,39,19.1,42.5,12.2333333333,21.3666666667,19.2,33.8266666667,21.2,40.7,18.76,37.59,9,755.5666666667,81,4,40,5.8333333333,27.0129830809,27.0129830809 -410,20,22.5333333333,37,21.2,36.79,23.2,35.23,19.8233333333,39.0666666667,19.0333333333,42.5,11.96,22.16,19.2,33.9,21.29,40.79,18.73,37.59,9.15,755.5333333333,79.5,4,40,5.7166666667,17.5310255028,17.5310255028 -330,0,22.6,37.1333333333,21.2,36.79,23.2,35.29,19.89,39.46,19.1,42.59,11.4,24.6633333333,19.2,33.9333333333,21.29,40.8633333333,18.79,37.59,9.3,755.5,78,4,40,5.6,41.3600364118,41.3600364118 -100,10,22.6333333333,39.6933333333,21.2,37.1966666667,23.1666666667,35.3266666667,19.9266666667,39.8333333333,19.1,42.59,10.7933333333,28.0633333333,19.2,34.06,21.34,40.795,18.79,37.59,9.3166666667,755.5,78.1666666667,4,40,5.65,44.179741689,44.179741689 -120,10,22.76,39.4933333333,21.2,37.7966666667,23.1,35.4666666667,20,39.6266666667,19.1,42.86,10.53,30.6666666667,19.2,34.24,21.29,40.5666666667,18.79,37.6725,9.3333333333,755.5,78.3333333333,4,40,5.7,26.9005128648,26.9005128648 -130,0,22.89,39,21.2,38.1266666667,23.1,35.6266666667,20,39.53,19.1,43.1333333333,10.1966666667,31.7266666667,19.2,34.3633333333,21.3233333333,40.6266666667,18.79,37.7,9.35,755.5,78.5,4,40,5.75,44.4591710228,44.4591710228 -130,0,22.9633333333,38.6666666667,21.2,38.2,23.1,35.76,20,40.13,19.1,43.4333333333,9.756,32.874,19.2,34.4,21.4633333333,40.8333333333,18.79,37.7,9.3666666667,755.5,78.6666666667,4,40,5.8,24.7102782247,24.7102782247 -120,0,23.05,37.895,21.29,38.09,23.1,35.79,20.1,40.73,19.1,43.5,9.3966666667,32.99,19.2,34.3266666667,21.6,40.79,18.79,37.7,9.3833333333,755.5,78.8333333333,4,40,5.85,18.7995669199,18.7995669199 -110,10,23.1333333333,37.6,21.29,37.9666666667,23.0333333333,35.79,20.1666666667,40.73,19.1,43.59,9.0633333333,33.0633333333,19.2,34.29,21.6666666667,40.79,18.79,37.8633333333,9.4,755.5,79,4,40,5.9,4.8260308453,4.8260308453 -100,0,23.2,37.3266666667,21.3566666667,37.8266666667,23,35.79,20.2,40.4666666667,19.1,43.59,8.86,34.1666666667,19.2,34.29,21.79,40.76,18.79,37.79,9.15,755.5,79.8333333333,4,40,5.8166666667,4.5252567972,4.5252567972 -150,0,23.23,37.06,21.39,37.7,23,35.79,20.2,40.2666666667,19.1,43.59,8.6666666667,35.2933333333,19.2,34.29,21.79,40.76,18.79,37.7,8.9,755.5,80.6666666667,4,40,5.7333333333,1.9980292884,1.9980292884 -130,0,23.29,36.9333333333,21.4633333333,37.6266666667,22.945,35.79,20.29,40.2,19.1,43.56,8.4975,36.1725,19.2,34.29,21.79,40.8266666667,18.79,37.7,8.65,755.5,81.5,4,40,5.65,11.1671210732,11.1671210732 -100,0,23.29,36.73,21.5,37.53,22.89,35.9,20.26,39.99,19.1,43.5,8.2566666667,37.0933333333,19.2,34.29,21.79,40.9,18.79,37.7,8.4,755.5,82.3333333333,4,40,5.5666666667,16.890159226,16.890159226 -100,0,23.29,36.79,21.5,37.6633333333,22.89,35.9,20.26,39.79,19.1,43.56,8.0333333333,38.0666666667,19.2,34.29,21.89,41,18.79,37.7,8.15,755.5,83.1666666667,4,40,5.4833333333,0.5396462977,0.5396462977 -120,0,23.39,36.79,21.5,37.73,22.8566666667,35.9,20.2,39.5266666667,19.1,43.5,7.8333333333,38.66,19.2,34.29,21.9633333333,41,18.79,37.7,7.9,755.5,84,4,40,5.4,24.990813632,24.990813632 -100,0,23.39,36.73,21.5,37.79,22.79,35.9666666667,20.2,39.3266666667,19.1,43.59,7.6266666667,39.3666666667,19.2,34.29,22,40.95,18.79,37.7,7.7666666667,755.55,84.6666666667,3.8333333333,40,5.3666666667,16.7468507309,16.7468507309 -120,0,23.39,36.6633333333,21.5,37.79,22.79,36,20.1,39.1633333333,19.1666666667,43.59,7.4333333333,40.0333333333,19.2,34.29,22,41,18.79,37.7,7.6333333333,755.6,85.3333333333,3.6666666667,40,5.3333333333,11.3525322056,11.3525322056 -100,0,23.39,36.59,21.5,37.8633333333,22.79,36,20.1,39.03,19.1666666667,43.59,7.3666666667,40.5666666667,19.2,34.2,22.0666666667,41.1333333333,18.79,37.6266666667,7.5,755.65,86,3.5,40,5.3,46.0124631762,46.0124631762 -110,0,23.39,36.59,21.4266666667,37.8266666667,22.79,36.03,20.1,38.8633333333,19.1666666667,43.59,7.3,41.16,19.2,34.2,22.1,41.09,18.79,37.59,7.3666666667,755.7,86.6666666667,3.3333333333,40,5.2666666667,24.3207484484,24.3207484484 -100,0,23.39,36.53,21.4266666667,37.8266666667,22.73,36.09,20.0333333333,38.73,19.2,43.56,7.19,41.6333333333,19.2,34.2,22.1,41.09,18.79,37.59,7.2333333333,755.75,87.3333333333,3.1666666667,40,5.2333333333,3.5600704025,3.5600704025 -80,0,23.39,36.4666666667,21.3566666667,37.9,22.7,36.1266666667,20.0333333333,38.59,19.2,43.5,7.19,42.16,19.2,34.2,22.1333333333,41.1266666667,18.79,37.59,7.1,755.8,88,3,40,5.2,45.3588423668,45.3588423668 -80,0,23.39,36.4,21.29,37.9,22.7,36.2,20.0333333333,38.53,19.2,43.5,7.2633333333,42.86,19.2,34.2,22.2,41.26,18.79,37.59,7.05,755.8833333333,88.3333333333,3,40,5.2,34.071515128,34.071515128 -60,10,23.39,36.4,21.26,38,22.6,36.1266666667,20,38.4666666667,19.2,43.5,7.19,43.4666666667,19.2,34.26,22.2,41.5966666667,18.79,37.59,7,755.9666666667,88.6666666667,3,40,5.2,44.4684315822,44.4684315822 -60,0,23.3233333333,36.4,21.1333333333,38.1333333333,22.6,36.2,20,38.4,19.2,43.4666666667,7.1566666667,44.7933333333,19.2,34.29,22.2,41.99,18.79,37.6675,6.95,756.05,89,3,40,5.2,33.5672049201,33.5672049201 -60,10,23.29,36.5,21.1,38,22.6,36.23,19.89,38.29,19.2,43.4,7.09,45.6225,19.2,34.23,22.2,42.4266666667,18.79,38.1,6.9,756.1333333333,89.3333333333,3,40,5.2,26.0101427906,26.0101427906 -60,0,23.29,36.5,20.96,38,22.6,36.29,19.89,38.29,19.2,43.5,7.09,46.5633333333,19.2,34.2,22.2,42.8333333333,18.89,38.4333333333,6.85,756.2166666667,89.6666666667,3,40,5.2,13.7952233665,13.7952233665 -60,0,23.2,36.4,20.84,38.09,22.6,36.29,19.89,38.29,19.2,43.4333333333,7.09,47.2566666667,19.2,34.2,22.1,43.1266666667,18.89,38.56,6.8,756.3,90,3,40,5.2,22.5113409339,22.5113409339 -50,0,23.175,36.4,20.79,38.2,22.6,36.29,19.89,38.3633333333,19.2,43.4666666667,7.03,47.7233333333,19.2,34.1266666667,22.1,43.26,18.89,38.6266666667,6.8166666667,756.3,90.5,3,40,5.3,1.8040554016,1.8040554016 -50,0,23.1,36.4,20.73,38.26,22.6,36.29,19.89,38.4,19.2,43.475,7.03,48.1666666667,19.2,34.1266666667,22,43.36,18.89,38.7,6.8333333333,756.3,91,3,40,5.4,41.8795947218,41.8795947218 -50,0,23.1,36.4,20.6666666667,38.4,22.6,36.29,19.89,38.4,19.2,43.4333333333,7.09,48.7666666667,19.2,34.1633333333,22,43.56,18.89,38.8266666667,6.85,756.3,91.5,3,40,5.5,29.7354571871,29.7354571871 -40,0,23.0333333333,36.4,20.5333333333,38.4666666667,22.6,36.29,19.79,38.29,19.2,43.4666666667,7.09,49.5,19.2,34.1633333333,21.89,43.86,18.89,38.9,6.8666666667,756.3,92,3,40,5.6,23.9061273402,23.9061273402 -50,0,23,36.4333333333,20.5,38.53,22.6,36.29,19.79,38.2,19.2,43.4,7.09,49.9,19.2,34.2,21.89,44.1933333333,18.89,38.9,6.8833333333,756.3,92.5,3,40,5.7,34.1155051487,34.1155051487 -60,0,23,36.5,20.4266666667,38.59,22.6,36.29,19.79,38.26,19.2,43.4,7.1233333333,50.1566666667,19.2,34.1266666667,21.89,44.86,18.89,38.9,6.9,756.3,93,3,40,5.8,32.2391469846,32.2391469846 -60,0,22.89,36.59,20.3566666667,38.73,22.6,36.29,19.79,38.29,19.2,43.4,7.1233333333,50.49,19.2,34.2,21.8233333333,45.1933333333,18.89,38.9633333333,6.9166666667,756.3166666667,93.3333333333,2.8333333333,37.1666666667,5.8833333333,37.7258619643,37.7258619643 -50,0,22.8233333333,36.59,20.29,38.8633333333,22.6,36.29,19.79,38.29,19.2,43.4,7.1233333333,51,19.2,34.2,21.79,45.8,18.9633333333,39.09,6.9333333333,756.3333333333,93.6666666667,2.6666666667,34.3333333333,5.9666666667,18.097872159,18.097872159 -60,0,22.79,36.59,20.26,38.9,22.6,36.29,19.79,38.29,19.2,43.4,7.1233333333,51.26,19.2,34.2,21.79,46.2,18.9266666667,39.23,6.95,756.35,94,2.5,31.5,6.05,7.2099937242,7.2099937242 -40,0,22.79,36.59,20.2,38.9666666667,22.6666666667,36.3633333333,19.79,38.29,19.2,43.4,7.09,51.4633333333,19.2,34.2,21.79,46.5266666667,18.9266666667,39.3633333333,6.9666666667,756.3666666667,94.3333333333,2.3333333333,28.6666666667,6.1333333333,16.0385469324,16.0385469324 -60,0,22.7,36.59,20.1666666667,39.03,22.7,36.4,19.7,38.29,19.2,43.4,7.03,51.6633333333,19.2,34.26,21.79,46.8266666667,19,39.5,6.9833333333,756.3833333333,94.6666666667,2.1666666667,25.8333333333,6.2166666667,14.8057643091,14.8057643091 -50,0,22.7,36.59,20.1,39.09,22.7,36.4666666667,19.7,38.29,19.1333333333,43.4,6.9666666667,51.6266666667,19.2,34.29,21.73,47.0266666667,18.9266666667,39.5,7,756.4,95,2,23,6.3,47.0576038701,47.0576038701 -50,0,22.6,36.53,20,39.1266666667,22.79,36.5,19.7,38.29,19.2,43.4,6.9,51.7,19.2,34.29,21.7,47.29,19,39.6266666667,6.9333333333,756.4333333333,95.1666666667,2,23.3333333333,6.25,4.8714580713,4.8714580713 -40,0,22.6,36.59,20,39.2,22.79,36.56,19.7,38.29,19.2,43.4,6.8,51.7666666667,19.2,34.29,21.7,47.3633333333,19,39.7,6.8666666667,756.4666666667,95.3333333333,2,23.6666666667,6.2,24.0922269179,24.0922269179 -60,0,22.5,36.7,19.89,39.29,22.8566666667,36.6633333333,19.7,38.29,19.2,43.4,6.8,51.975,19.2,34.23,21.7,47.4,19,39.73,6.8,756.5,95.5,2,24,6.15,3.0958813964,3.0958813964 -50,0,22.5,36.76,19.89,39.3633333333,22.79,36.59,19.7,38.29,19.1333333333,43.4,6.8,52.06,19.2,34.29,21.7,47.4666666667,19,39.8175,6.7333333333,756.5333333333,95.6666666667,2,24.3333333333,6.1,42.4847524031,42.4847524031 -60,0,22.4633333333,36.8633333333,19.79,39.4,22.89,36.7,19.6666666667,38.26,19.1333333333,43.4,6.7633333333,52.2,19.2,34.23,21.7,47.4,19,39.9666666667,6.6666666667,756.5666666667,95.8333333333,2,24.6666666667,6.05,13.0414163112,13.0414163112 -50,0,22.39,36.79,19.79,39.4,22.89,36.76,19.6,38.2,19.1,43.4,6.6233333333,52.1266666667,19.2,34.2,21.7,47.3266666667,19,40.03,6.6,756.6,96,2,25,6,0.0666073756,0.0666073756 -50,0,22.3566666667,36.9,19.7,39.45,22.9266666667,36.79,19.6,38.2,19.1,43.4,6.5,52.0266666667,19.2,34.2,21.7,47.26,19,40.09,6.5666666667,756.65,95.8333333333,2,27.5,5.95,37.2263506288,37.2263506288 -40,0,22.29,36.9,19.7,39.53,23,36.79,19.6,38.2,19.1333333333,43.4,6.4333333333,51.7666666667,19.2,34.2,21.7,47.2,19,40.1266666667,6.5333333333,756.7,95.6666666667,2,30,5.9,9.2753041536,9.2753041536 -50,0,22.29,36.9,19.7,39.59,23,36.79,19.6,38.1633333333,19.175,43.4,6.3666666667,51.79,19.2,34.2,21.6333333333,47,19,40.26,6.5,756.75,95.5,2,32.5,5.85,41.1380669568,41.1380669568 -40,0,22.2,36.9,19.6,39.5,23,36.8633333333,19.6,38.1633333333,19.1,43.4,6.2266666667,51.53,19.2,34.1633333333,21.6333333333,46.86,19,40.4,6.4666666667,756.8,95.3333333333,2,35,5.8,23.0952876154,23.0952876154 -30,0,22.2,36.9,19.6,39.56,23,36.9,19.6,38.09,19.1,43.4,6.1566666667,51.59,19.2,34.09,21.6,46.8633333333,19,40.4666666667,6.4333333333,756.85,95.1666666667,2,37.5,5.75,46.7114559142,46.7114559142 -40,0,22.1,37,19.5666666667,39.59,22.9725,36.9,19.6,38.09,19.1,43.4,6.09,51.6633333333,19.2,34.09,21.6,46.79,19.1,40.59,6.4,756.9,95,2,40,5.7,30.9098003316,30.9098003316 -30,0,22.1,37,19.5,39.59,22.89,36.9,19.6,38.09,19.1,43.4,5.9666666667,51.86,19.2,34.06,21.6,46.6633333333,19.1,40.6633333333,6.2833333333,756.9,95.1666666667,2,37.1666666667,5.6,49.7544827289,49.7544827289 -40,0,22.0666666667,36.9666666667,19.4633333333,39.6633333333,22.89,37,19.5,38.09,19.1,43.4,5.9,52.06,19.2,34,21.6,46.53,19.0333333333,40.6266666667,6.1666666667,756.9,95.3333333333,2,34.3333333333,5.5,6.3064268907,6.3064268907 -60,0,22,36.9666666667,19.39,39.6633333333,22.89,37,19.5666666667,38.03,19.1,43.4,5.8666666667,52.0666666667,19.2,34,21.6,46.3633333333,19.1,40.7,6.05,756.9,95.5,2,31.5,5.4,32.9587294604,32.9587294604 -50,0,21.9633333333,37,19.39,39.73,22.89,37,19.5,38,19.1,43.4,5.8,52.26,19.2,33.9333333333,21.6,46.29,19.1,40.73,5.9333333333,756.9,95.6666666667,2,28.6666666667,5.3,32.6273328159,32.6273328159 -50,0,21.89,37,19.3233333333,39.79,22.89,37,19.5,38,19.1,43.3633333333,5.69,52.26,19.2,33.9666666667,21.6,46.09,19.1,40.79,5.8166666667,756.9,95.8333333333,2,25.8333333333,5.2,39.1718718689,39.1718718689 -40,0,21.89,37.09,19.29,39.8266666667,22.89,37.09,19.5,38,19.1,43.3633333333,5.69,52.2,19.2,33.9,21.5333333333,46,19.1,40.79,5.7,756.9,96,2,23,5.1,25.7247206406,25.7247206406 -50,0,21.89,37.09,19.23,39.8266666667,22.89,37.09,19.5,38,19.1,43.4,5.59,52.2,19.2,33.9,21.5333333333,45.9333333333,19.1,40.79,5.6,756.9166666667,96.1666666667,2,24,5.0166666667,1.4986579074,1.4986579074 -40,0,21.8566666667,37.09,19.2,39.9,22.89,37.09,19.5,38,19.1,43.3266666667,5.5,52.29,19.2,33.9,21.5666666667,45.79,19.1,40.79,5.5,756.9333333333,96.3333333333,2,25,4.9333333333,49.6455903281,49.6455903281 -60,0,21.79,37.09,19.2,39.9,22.89,37.09,19.5,37.9333333333,19.1,43.29,5.5,52.29,19.2,33.9,21.5,45.73,19.1,40.8633333333,5.4,756.95,96.5,2,26,4.85,39.0714396141,39.0714396141 -60,0,21.79,37.1266666667,19.1666666667,39.9333333333,22.89,37.09,19.5,37.9,19.1,43.29,5.4,52.4333333333,19.2,33.9,21.5,45.59,19.1,40.9333333333,5.3,756.9666666667,96.6666666667,2,27,4.7666666667,9.112298768,9.112298768 -60,0,21.73,37.2,19.1,40,22.89,37.09,19.4266666667,37.8266666667,19.1,43.29,5.4,52.5,19.2,33.79,21.5,45.53,19.1,41,5.2,756.9833333333,96.8333333333,2,28,4.6833333333,30.1095664967,30.1095664967 -60,0,21.7,37.2,19.0666666667,40.06,22.89,37.09,19.39,37.79,19.1,43.29,5.2633333333,52.26,19.2,33.79,21.5,45.4666666667,19.1,41,5.1,757,97,2,29,4.6,21.6230408405,21.6230408405 -60,0,21.7,37.2,19,40,22.89,37.09,19.39,37.73,19.1,43.29,5.19,52.26,19.2,33.79,21.5,45.3266666667,19.1,41,5.0833333333,757.0333333333,96.6666666667,1.8333333333,30.8333333333,4.55,8.873636357,8.873636357 -40,0,21.7,37.2,19,40.09,22.89,37.1266666667,19.39,37.76,19.1,43.29,5.19,52.4333333333,19.2,33.73,21.4633333333,45.2233333333,19.1,41,5.0666666667,757.0666666667,96.3333333333,1.6666666667,32.6666666667,4.5,19.9111762224,19.9111762224 -50,0,21.6333333333,37.1266666667,18.9633333333,40.09,22.89,37.2,19.39,37.7,19.0333333333,43.23,5.1233333333,52.5,19.2,33.7,21.39,45.09,19.1,41,5.05,757.1,96,1.5,34.5,4.45,15.725261718,15.725261718 -50,0,21.65,37.145,18.89,40.09,22.89,37.2,19.39,37.7,19.075,43.2225,5,52.4333333333,19.2,33.7,21.5,45.09,19.1,41.06,5.0333333333,757.1333333333,95.6666666667,1.3333333333,36.3333333333,4.4,24.7373404214,24.7373404214 -50,0,21.6,37.09,18.89,40.2,22.89,37.2,19.39,37.7,19.0666666667,43.2,5,52.5,19.2,33.7,21.4266666667,44.9633333333,19.1,41.09,5.0166666667,757.1666666667,95.3333333333,1.1666666667,38.1666666667,4.35,34.6533429693,34.6533429693 -60,0,21.6,37.09,18.8233333333,40.2,22.89,37.2,19.39,37.7,19.1,43.2,4.9333333333,52.6266666667,19.2,33.7,21.39,44.9,19.1,41.09,5,757.2,95,1,40,4.3,6.1716157943,6.1716157943 -50,0,21.6,37.09,18.79,40.2,22.89,37.2,19.39,37.7,19.1,43.2,5,52.76,19.2,33.59,21.39,44.9,19.1,41.1266666667,4.9666666667,757.2166666667,95.1666666667,1,40,4.2833333333,12.2508194763,12.2508194763 -60,0,21.5333333333,37.09,18.79,40.2,22.89,37.2,19.39,37.6266666667,19.1,43.2,4.9666666667,52.9,19.1666666667,33.59,21.39,44.79,19.1,41.2,4.9333333333,757.2333333333,95.3333333333,1,40,4.2666666667,19.0594361629,19.0594361629 -50,0,21.5,37.1633333333,18.7,40.3266666667,22.89,37.2,19.39,37.7,19.1,43.2,4.9666666667,52.9666666667,19.1666666667,33.59,21.39,44.73,19.1,41.1266666667,4.9,757.25,95.5,1,40,4.25,47.3507101648,47.3507101648 -60,0,21.5,37.09,18.7,40.4,22.89,37.2,19.3233333333,37.6266666667,19.1,43.2,4.9,52.9,19.1333333333,33.59,21.3566666667,44.7,19.1,41.2,4.8666666667,757.2666666667,95.6666666667,1,40,4.2333333333,23.7077793223,23.7077793223 -50,0,21.5,37.09,18.7,40.4,22.89,37.2,19.3566666667,37.59,19.1,43.2,4.9,53.0266666667,19.2,33.59,21.29,44.6266666667,19.1,41.1266666667,4.8333333333,757.2833333333,95.8333333333,1,40,4.2166666667,30.4706023657,30.4706023657 -50,0,21.5,37.09,18.7,40.4666666667,22.89,37.2,19.29,37.59,19.0666666667,43.1633333333,5,53.145,19.1,33.59,21.29,44.59,19.1,41.2,4.8,757.3,96,1,40,4.2,6.298290391,6.298290391 -40,0,21.5,37.1633333333,18.6666666667,40.4666666667,22.8566666667,37.1633333333,19.29,37.59,19.0666666667,43.1633333333,5.1233333333,53.5666666667,19.1,33.59,21.29,44.59,19.1,41.2,4.8,757.35,96.1666666667,1,40,4.2166666667,48.7461066921,48.7461066921 -20,0,21.5,37.1633333333,18.6666666667,40.5266666667,22.8566666667,37.1633333333,19.29,37.59,19.1,43.2,5.2633333333,53.8333333333,19.1,33.59,21.29,44.59,19.1,41.26,4.8,757.4,96.3333333333,1,40,4.2333333333,4.9332689028,4.9332689028 -30,0,21.4633333333,37.1633333333,18.6,40.5,22.8566666667,37.1633333333,19.29,37.59,19.1,43.2,5.4633333333,54.1266666667,19.1,33.59,21.29,44.59,19.2,41.2,4.8,757.45,96.5,1,40,4.25,42.6638299599,42.6638299599 -40,0,21.39,37.09,18.6,40.5,22.79,37.09,19.29,37.59,19.1,43.2,5.73,54.3333333333,19.1333333333,33.59,21.29,44.59,19.1333333333,41.2,4.8,757.5,96.6666666667,1,40,4.2666666667,43.9311366994,43.9311366994 -60,0,21.39,37.09,18.6,40.56,22.79,37.2,19.29,37.59,19.1,43.2,5.9633333333,54.5666666667,19.1333333333,33.59,21.29,44.59,19.2,41.29,4.8,757.55,96.8333333333,1,40,4.2833333333,34.3448127504,34.3448127504 -50,0,21.39,37.09,18.6666666667,40.56,22.79,37.2,19.29,37.59,19.0333333333,43.1266666667,6.23,54.8333333333,19.1333333333,33.59,21.29,44.59,19.2,41.29,4.8,757.6,97,1,40,4.3,41.1273948383,41.1273948383 -50,0,21.39,37.09,18.7,40.59,22.79,37.2,19.29,37.59,19.1,43.2,6.4633333333,54.9666666667,19.1333333333,33.59,21.29,44.59,19.2,41.29,4.9,757.6833333333,96.6666666667,1,40,4.35,49.0826069727,49.0826069727 -60,0,21.39,37.09,18.7,40.53,22.79,37.2,19.29,37.59,19.0333333333,43.1266666667,6.59,54.6933333333,19.1,33.59,21.29,44.59,19.2,41.3266666667,5,757.7666666667,96.3333333333,1,40,4.4,15.4741675826,15.4741675826 -80,0,21.29,37.2666666667,18.79,40.4,22.79,37.2,19.29,37.59,19.1,43.2,6.76,54.8266666667,19.1,33.59,21.29,44.6633333333,19.2,41.5266666667,5.1,757.85,96,1,40,4.45,46.2094975053,46.2094975053 -80,0,21.3566666667,37.66,18.89,40.59,22.73,36.9266666667,19.23,37.7233333333,19.0333333333,43.1266666667,7.0266666667,55.0266666667,19.1,33.6266666667,21.29,44.59,19.2,41.4666666667,5.2,757.9333333333,95.6666666667,1,40,4.5,32.6516599976,32.6516599976 -50,0,21.39,37.95,18.9633333333,40.53,22.6,36.4333333333,19.29,38.5666666667,19.1,43.0425,7.6,55.1933333333,19.1,33.76,21.2,44.43,19.2,41.4,5.3,758.0166666667,95.3333333333,1,40,4.55,6.5717232646,6.5717232646 -70,0,21.39,38,19,40.29,22.6,36.56,19.29,38.7,19.1666666667,42.5966666667,7.9333333333,54.6666666667,19.1,33.8266666667,21.2,44.23,19.2,41.1633333333,5.4,758.1,95,1,40,4.6,3.1773561379,3.1773561379 -300,0,21.39,38.3933333333,19,40.29,22.6,36.5,19.29,38.76,19.29,42.29,8.2266666667,53.86,19.1,33.9,21.2,43.93,19.2,41.03,5.5333333333,758.1666666667,93.8333333333,1,40,4.5666666667,31.5923884278,31.5923884278 -370,0,21.39,38.26,19.1333333333,40.3633333333,22.6,36.5,19.29,38.73,19.23,42.29,8.4333333333,52.86,19.1,33.9,21.2,43.73,19.2,40.76,5.6666666667,758.2333333333,92.6666666667,1,40,4.5333333333,29.7714443412,29.7714443412 -590,0,21.39,38.1266666667,19.2,40.23,22.6,36.545,19.3566666667,38.99,19.2,42.6266666667,8.93,51.0666666667,19.1,33.9,21.2,43.56,19.2,40.5666666667,5.8,758.3,91.5,1,40,4.5,27.174246544,27.174246544 -320,0,21.39,38.09,19.2633333333,40.0266666667,22.6333333333,36.59,19.39,39.3266666667,19.2,42.76,9.2633333333,48.1933333333,19.1,33.8266666667,21.1333333333,43.5,19.2,40.3633333333,5.9333333333,758.3666666667,90.3333333333,1,40,4.4666666667,30.3355920129,30.3355920129 -310,10,21.39,38.03,19.53,39.7666666667,22.7,36.59,19.4633333333,39.4666666667,19.2,42.9,9.65,42.495,19.1,33.79,21.2,43.5,19.2,40.29,6.0666666667,758.4333333333,89.1666666667,1,40,4.4333333333,32.7846443281,32.7846443281 -260,0,21.3233333333,37.9,19.73,39.2966666667,22.7,36.59,19.5,39.5,19.2,42.8266666667,10.63,41.1266666667,19.1,33.79,21.2,43.56,19.29,40.4,6.2,758.5,88,1,40,4.4,17.5624620169,17.5624620169 -190,0,21.3233333333,37.9,19.79,38.9633333333,22.7,36.59,19.5666666667,39.5,19.2,42.76,10.9633333333,33.4666666667,19.1,33.79,21.23,43.6566666667,19.29,40.5266666667,6.35,758.55,87.1666666667,1,40,4.3833333333,27.9013355379,27.9013355379 -150,0,21.3233333333,37.79,19.89,38.76,22.7,36.59,19.6333333333,39.4333333333,19.2,42.6266666667,10.83,28.9,19.1,33.73,21.23,43.6566666667,19.3233333333,40.9333333333,6.5,758.6,86.3333333333,1,40,4.3666666667,39.3736088183,39.3736088183 -130,0,21.3233333333,37.73,19.89,38.5666666667,22.7,36.59,19.7,39.4333333333,19.2,42.59,10.89,28.6333333333,19.1,33.73,21.29,43.645,19.39,41.2666666667,6.65,758.65,85.5,1,40,4.35,17.4560401356,17.4560401356 -290,0,21.29,37.59,19.89,38.53,22.7,36.59,19.73,39.3633333333,19.2,42.59,11.13,26.6,19.1,33.73,21.3233333333,43.43,19.39,41.4,6.8,758.7,84.6666666667,1,40,4.3333333333,29.326797463,29.326797463 -490,0,21.3566666667,37.59,19.9633333333,38.53,22.7,36.59,19.79,39.29,19.1333333333,42.59,11.59,24.1266666667,19.1333333333,33.76,21.39,43.1566666667,19.4633333333,41.4666666667,6.95,758.75,83.8333333333,1,40,4.3166666667,37.8339534043,37.8339534043 -840,0,21.39,37.7,20.1333333333,38.4666666667,22.7,36.59,19.8233333333,39.3266666667,19.2,42.59,12.1,20.5966666667,19.2,33.7,21.4266666667,42.8633333333,19.5,41.5,7.1,758.8,83,1,40,4.3,47.7725222358,47.7725222358 -700,0,21.39,37.8333333333,20.2,38.3266666667,22.7,36.7233333333,19.89,39.4,19.2,42.5,11.96,17.7233333333,19.1666666667,33.59,21.5666666667,42.6566666667,19.39,41.29,7.25,758.85,82.1666666667,1,40,4.3166666667,16.0229227273,16.0229227273 -430,10,21.39,37.9,20.2,38.29,22.96,37.8933333333,19.89,39.29,19.2,42.5,11.7933333333,17.1,19.1666666667,33.59,21.6,42.2966666667,19.4633333333,41.29,7.4,758.9,81.3333333333,1,40,4.3333333333,5.4916081834,5.4916081834 -300,0,21.39,37.9,20.2,38.23,23.2266666667,39.0266666667,19.9633333333,39.23,19.2,42.59,11.4,16.4333333333,19.1666666667,33.56,21.6,41.83,19.4266666667,41.06,7.55,758.95,80.5,1,40,4.35,29.0945744258,29.0945744258 -310,0,21.39,37.9,20.2,38.2,23.5666666667,40.03,20,39.1333333333,19.2,42.59,11.46,17.66,19.1666666667,33.5,21.5,41.2966666667,19.4266666667,40.86,7.7,759,79.6666666667,1,40,4.3666666667,31.9905743469,31.9905743469 -290,0,21.39,37.8266666667,20.2,38.1633333333,23.8266666667,40.49,20,38.86,19.2,42.59,11.8666666667,17.8,19.2,33.5,21.5,40.9633333333,19.4266666667,40.7,7.85,759.05,78.8333333333,1,40,4.3833333333,32.9769002507,32.9769002507 -300,0,21.39,37.76,20.26,38.09,24.1633333333,40.89,20,38.79,19.2,42.59,12.5266666667,16.0633333333,19.2,33.5,21.5,40.5266666667,19.5,40.7,8,759.1,78,1,40,4.4,45.7176158088,45.7176158088 -240,0,21.39,37.8,20.3566666667,37.8633333333,24.3566666667,41.09,20.025,38.8175,19.2,42.53,12.86,14.93,19.2,33.5,21.5,40.2666666667,19.5,40.6633333333,8.1166666667,759.1166666667,77.3333333333,1,37.8333333333,4.3833333333,4.2409099871,4.2409099871 -160,0,21.39,37.6266666667,20.29,37.79,24.5666666667,40.6933333333,20.1,38.7666666667,19.2,42.4666666667,13.0666666667,14.13,19.2,33.5,21.5,39.9666666667,19.5,40.59,8.2333333333,759.1333333333,76.6666666667,1,35.6666666667,4.3666666667,47.0190269989,47.0190269989 -90,0,21.5,37.56,20.29,37.79,24.76,40.3,20.1,38.6633333333,19.2,42.4,13.0666666667,12.9966666667,19.2,33.5,21.5666666667,39.8266666667,19.4633333333,40.4666666667,8.35,759.15,76,1,33.5,4.35,38.002901664,38.002901664 -70,10,21.5,37.5,20.3566666667,37.73,24.84,39.595,20.1,38.59,19.2,42.3633333333,13.33,11.26,19.2,33.4666666667,21.5333333333,39.56,19.4633333333,40.4,8.4666666667,759.1666666667,75.3333333333,1,31.3333333333,4.3333333333,4.7161483439,4.7161483439 -80,0,21.5,37.3633333333,20.4266666667,37.3633333333,24.7266666667,38.7666666667,20.1,38.4666666667,19.2,42.29,13.39,7.9266666667,19.26,33.4,21.6,39.36,19.39,40.1633333333,8.5833333333,759.1833333333,74.6666666667,1,29.1666666667,4.3166666667,45.6763241906,45.6763241906 -80,0,21.5,37.23,20.5,37.1566666667,24.6,38.36,20.1,38.3266666667,19.29,42.26,13.495,3.995,19.29,33.1633333333,21.6,39.1333333333,19.4633333333,40.1633333333,8.7,759.2,74,1,27,4.3,14.5675293054,14.5675293054 -80,0,21.5,37.06,20.39,36.9666666667,24.4633333333,37.9,20.0666666667,38.1333333333,19.29,42.9266666667,13,2.2,19.29,32.9633333333,21.6,38.8,19.4266666667,40,8.8333333333,759.2333333333,73,1,29.1666666667,4.2166666667,15.3352988884,15.3352988884 -570,0,21.5,36.9333333333,20.39,36.8266666667,24.39,37.5666666667,20,37.9333333333,20.8933333333,80.1,13.0666666667,3,19.29,32.6633333333,21.6,38.4666666667,19.5,39.86,8.9666666667,759.2666666667,72,1,31.3333333333,4.1333333333,5.1016837126,5.1016837126 -610,0,21.5,38.2666666667,20.5,36.8266666667,24.39,37.53,20,37.76,21.7666666667,82.8933333333,12.9333333333,2.1566666667,19.29,32.53,21.6,38.86,19.4633333333,39.76,9.1,759.3,71,1,33.5,4.05,4.4603274669,4.4603274669 -330,0,21.5,37.86,20.5666666667,36.8266666667,24.53,38.2633333333,20.0666666667,37.6266666667,21.0966666667,85.0633333333,13.1333333333,1.0966666667,19.29,32.3333333333,21.7,39.8,19.39,39.5666666667,9.2333333333,759.3333333333,70,1,35.6666666667,3.9666666667,10.7463454013,10.7463454013 -350,0,21.5333333333,37.9233333333,20.7,36.76,24.86,38.83,20,37.3633333333,20.6966666667,84.6633333333,13.39,1,19.29,32.0666666667,21.8425,40.1225,19.39,39.2233333333,9.3666666667,759.3666666667,69,1,37.8333333333,3.8833333333,1.7877110979,1.7877110979 -260,0,21.6,38.0566666667,20.7,36.8333333333,25.1333333333,39.1633333333,20,37.23,20.43,83.9933333333,13.39,1,19.39,31.8266666667,21.9633333333,40.03,19.4633333333,39.2966666667,9.5,759.4,68,1,40,3.8,38.2925486891,38.2925486891 -270,10,21.6333333333,37.3633333333,20.79,36.6333333333,25.3233333333,39.26,20,37.4,20.23,83.4666666667,13.2333333333,1,19.39,31.7,22.0333333333,39.9,19.445,39.4,9.6666666667,759.4,67.1666666667,1.3333333333,37,3.7833333333,25.2304919297,25.2304919297 -210,0,21.7,37.1566666667,20.79,36.4333333333,25.4633333333,39.2,20,37.5266666667,20.1666666667,82.0333333333,12.9,1,19.39,31.5,22.1666666667,39.8266666667,19.4266666667,39.26,9.8333333333,759.4,66.3333333333,1.6666666667,34,3.7666666667,21.9109986094,21.9109986094 -100,0,21.7,36.8333333333,20.79,36.2,25.6333333333,38.9,20.0666666667,37.76,20.1,80.3,12.63,1.1933333333,19.39,31.4266666667,22.23,39.6633333333,19.4266666667,39.1266666667,10,759.4,65.5,2,31,3.75,9.1034054523,9.1034054523 -100,0,21.7,36.5666666667,20.8566666667,36.1266666667,25.7,38.5666666667,20,37.7,20.0666666667,77.3933333333,12.8966666667,1,19.39,31.2266666667,22.29,39.4633333333,19.4633333333,38.99,10.1666666667,759.4,64.6666666667,2.3333333333,28,3.7333333333,8.120156941,8.120156941 -90,0,21.73,36.3333333333,20.9266666667,35.8333333333,25.5666666667,38.0633333333,20,37.7,20,74.2,12.9633333333,1,19.39,31.1,22.39,39.2233333333,19.39,38.73,10.3333333333,759.4,63.8333333333,2.6666666667,25,3.7166666667,3.5340989009,3.5340989009 -100,0,21.79,36.1266666667,21.025,35.6175,25.4266666667,37.53,20,37.6266666667,19.89,70.6233333333,12.89,1,19.39,30.9633333333,22.4633333333,39.09,19.4633333333,38.6633333333,10.5,759.4,63,3,22,3.7,46.9316753675,46.9316753675 -110,0,21.79,35.9,21.0333333333,35.39,25.2,37.1933333333,20.1,37.645,19.89,68.4966666667,12.7266666667,1,19.4633333333,30.9633333333,22.5333333333,38.93,19.4633333333,38.59,10.5,759.4333333333,62.3333333333,3.3333333333,25,3.55,4.893286142,4.893286142 -100,0,21.79,35.7225,21.1,35.26,25.1333333333,36.86,20.1,37.59,19.84,65.745,13,1,19.5,30.8566666667,22.6,38.73,19.4633333333,38.4666666667,10.5,759.4666666667,61.6666666667,3.6666666667,28,3.4,43.4201844619,43.4201844619 -80,0,21.8566666667,35.59,21.1666666667,35.1266666667,25,36.6333333333,20.1,37.53,19.79,64.5,13.19,1,19.5,30.73,22.6333333333,38.4666666667,19.4633333333,38.4666666667,10.5,759.5,61,4,31,3.25,6.0903476202,6.0903476202 -90,10,21.89,35.56,21.2,34.93,24.9266666667,36.4333333333,20.1,37.4666666667,19.79,62.2266666667,13.2633333333,1,19.5,30.55,22.7,38.3266666667,19.5,38.4333333333,10.5,759.5333333333,60.3333333333,4.3333333333,34,3.1,1.4004201512,1.4004201512 -90,0,21.89,35.4333333333,21.2,34.79,24.8566666667,36.2233333333,20.1,37.4,19.7,59.5966666667,13.1266666667,1,19.5,30.3566666667,22.7,38.26,19.5,38.5,10.5,759.5666666667,59.6666666667,4.6666666667,37,2.95,25.7915250375,25.7915250375 -80,0,21.89,35.36,21.2,34.6633333333,24.7675,36.0225,20.1,37.26,19.7,58.1233333333,13,1,19.5,30.29,22.7,38.2,19.4633333333,38.3633333333,10.5,759.6,59,5,40,2.8,15.247853566,15.247853566 -90,0,21.89,35.6333333333,21.2,34.2566666667,24.4933333333,35.3933333333,20.1,37.0666666667,19.7,56.6966666667,13.0666666667,1,19.5333333333,30.2,22.7,38.09,19.39,38.3633333333,10.5333333333,759.65,59.5,5.1666666667,40,2.9333333333,13.7348058517,13.7348058517 -90,0,21.89,35.09,21.1,34,24.29,34.93,20.1,36.79,19.7,55.63,13.1,1,19.6,30.1333333333,22.7,38.03,19.39,38.3633333333,10.5666666667,759.7,60,5.3333333333,40,3.0666666667,48.1142098899,48.1142098899 -250,0,21.89,35.09,21.1,34.06,24.23,34.5966666667,20.1,36.8633333333,19.7,54.2633333333,13.1,1,19.6,30.0666666667,22.7,37.9666666667,19.39,38.29,10.6,759.75,60.5,5.5,40,3.2,37.4019235256,37.4019235256 -390,0,21.89,35.23,21.1,34.2666666667,24.1666666667,34.3266666667,20.1,36.9633333333,19.6333333333,53.2633333333,12.86,1,19.6,30,22.7,37.9,19.5,38.3633333333,10.6333333333,759.8,61,5.6666666667,40,3.3333333333,6.5297801979,6.5297801979 -190,10,21.89,35.43,21.1,34.66,24.1,34.4,20.1666666667,37.03,19.7,52.3333333333,12.86,1,19.6,30.0333333333,22.79,37.9,19.4266666667,38.29,10.6666666667,759.85,61.5,5.8333333333,40,3.4666666667,24.7885393095,24.7885393095 -100,0,21.89,35.7666666667,21.1,35.1933333333,24,34.3633333333,20.1666666667,36.9666666667,19.7,51.7266666667,12.6266666667,1.1666666667,19.6,30.1,22.79,37.9,19.5,38.26,10.7,759.9,62,6,40,3.6,44.1824368783,44.1824368783 -280,0,21.89,36.0266666667,21.0333333333,35.5266666667,23.9266666667,34.3633333333,20.1,36.9666666667,19.7,51.1933333333,12.4266666667,1.8933333333,19.7,30.2,22.79,37.9,19.4266666667,38.1266666667,10.6666666667,759.9166666667,62.3333333333,6,40,3.6666666667,36.0950822593,36.0950822593 -560,0,21.89,37.0566666667,21.1,36.1333333333,23.8566666667,34.4,20.2,37.6933333333,19.7,50.8,12.39,2.9666666667,19.6333333333,30.2,22.79,37.9,19.5,38,10.6333333333,759.9333333333,62.6666666667,6,40,3.7333333333,10.6152451597,10.6152451597 -600,0,21.89,38.9966666667,21.0333333333,36.9333333333,23.73,34.5266666667,20.2,37.9,19.7,50.3633333333,12.1966666667,3.4333333333,19.6666666667,30.3566666667,22.79,37.9,19.4266666667,38,10.6,759.95,63,6,40,3.8,33.7813677383,33.7813677383 -290,10,21.9266666667,42.7666666667,21,39.46,23.76,34.8,20.2,37.9666666667,19.7,50.23,11.9333333333,4.06,19.6,30.3566666667,22.79,37.9333333333,19.5,38,10.5666666667,759.9666666667,63.3333333333,6,40,3.8666666667,23.2851007255,23.2851007255 -90,0,22,44.6933333333,21,41.6666666667,23.6333333333,35.3933333333,20.2,37.7666666667,19.7,50.4333333333,11.7266666667,4.6666666667,19.6666666667,30.4633333333,22.79,38,19.39,37.93,10.5333333333,759.9833333333,63.6666666667,6,40,3.9333333333,37.1107492596,37.1107492596 -370,0,22.0333333333,43.36,20.89,42.1266666667,23.6,35.8266666667,20.2,38.3675,19.7,50.6333333333,11.66,5.1266666667,19.6375,30.52375,22.79,38,19.4633333333,37.8633333333,10.5,760,64,6,40,4,27.126134024,27.126134024 -670,0,22.1,42.7666666667,20.89,42.02,23.6,35.9,20.26,39.7333333333,19.7,50.79,11.6,4.7933333333,19.7,30.6,22.79,38,19.39,37.7666666667,10.3666666667,760.1,64.5,6,40,3.95,21.8204217963,21.8204217963 -230,0,22.0333333333,41.93,20.89,41.5,23.7633333333,36.8933333333,20.29,40.19,19.7,50.79,11.66,3.3633333333,19.7,30.6666666667,22.79,38.09,19.4633333333,37.9,10.2333333333,760.2,65,6,40,3.9,45.2035963652,45.2035963652 -160,0,22.0333333333,41.4566666667,20.79,40.99,24.03,37.8933333333,20.29,39.7966666667,19.7,50.79,11.5333333333,3.2233333333,19.7,30.73,22.79,38.03,19.5,37.9,10.1,760.3,65.5,6,40,3.85,47.7292972384,47.7292972384 -90,0,22,41.145,20.79,40.73,24.3233333333,38.1933333333,20.23,39.39,19.7,50.9,11.4633333333,2.3633333333,19.7,30.79,22.79,37.9666666667,19.5,37.9,9.9666666667,760.4,66,6,40,3.8,7.9793164157,7.9793164157 -70,0,22,40.8633333333,20.7,40.59,24.3233333333,37.86,20.26,38.99,19.7,50.9,11.39,2.9566666667,19.7,30.79,22.79,37.8266666667,19.39,37.79,9.8333333333,760.5,66.5,6,40,3.75,27.097526344,27.097526344 -70,10,22,40.6566666667,20.7,40.53,24.26,37.5266666667,20.2,38.6566666667,19.76,50.9,11.245,2.595,19.7,30.8233333333,22.79,37.6633333333,19.39,37.73,9.7,760.6,67,6,40,3.7,45.0880507007,45.0880507007 -70,0,22,40.4666666667,20.6,40.4,24.2,37.3266666667,20.2,38.3333333333,19.7,50.9,11.19,2.7666666667,19.7,30.89,22.79,37.53,19.4266666667,37.73,9.6833333333,760.6666666667,67,6,40,3.7,17.1616205131,17.1616205131 -70,0,21.9266666667,40.4,20.6,40.3266666667,24.2,37.2,20.2,38.1266666667,19.79,50.79,11.19,2.36,19.7,30.89,22.79,37.5,19.4266666667,37.73,9.6666666667,760.7333333333,67,6,40,3.7,35.1131404052,35.1131404052 -70,0,21.89,40.26,20.5,40.29,24.2,37.06,20.2,37.93,19.79,50.79,11.16,3.29,19.7,30.9633333333,22.79,37.4333333333,19.39,37.7,9.65,760.8,67,6,40,3.7,13.9593196101,13.9593196101 -70,0,21.89,40.1266666667,20.4266666667,40.23,24.1333333333,37,20.2,37.73,19.79,50.7,11.1,3.49,19.7,31,22.7,37.3633333333,19.4633333333,37.7,9.6333333333,760.8666666667,67,6,40,3.7,26.8600625917,26.8600625917 -70,0,21.89,39.9666666667,20.39,40.23,24.0666666667,36.8633333333,20.2,37.5,19.79,50.6266666667,10.9333333333,4.46,19.7,31,22.7,37.29,19.4633333333,37.6633333333,9.6166666667,760.9333333333,67,6,40,3.7,19.0338625456,19.0338625456 -70,0,21.89,39.8266666667,20.3233333333,40.29,24,36.73,20.1333333333,37.4333333333,19.79,50.4666666667,10.6,5.46,19.7,31.0333333333,22.7,37.29,19.39,37.6633333333,9.6,761,67,6,40,3.7,23.7345915521,23.7345915521 -80,0,21.89,39.7,20.26,40.26,23.89,36.59,20.1666666667,37.4,19.79,50.4,10.3,6.9666666667,19.7,31.1,22.7,37.29,19.39,37.59,9.55,761.0833333333,67,6,40,3.6666666667,23.4586400446,23.4586400446 -60,0,21.89,39.6266666667,20.2,40.2,23.89,36.53,20.1,37.4,19.79,50.29,10.4333333333,6.8933333333,19.7,31.1,22.6666666667,37.26,19.39,37.59,9.5,761.1666666667,67,6,40,3.6333333333,13.2908061147,13.2908061147 -50,10,21.79,39.4,20.1666666667,40.3266666667,23.79,36.4,20.1,37.29,19.79,50.23,11.13,4.8233333333,19.7,31.1666666667,22.65,37.2,19.39,37.59,9.45,761.25,67,6,40,3.6,34.1008894495,34.1008894495 -60,0,21.79,39.3266666667,20.1,40.3266666667,23.79,36.3266666667,20.1,37.23,19.79,50.1333333333,11.4633333333,3.3633333333,19.7,31.1333333333,22.6,37.1266666667,19.39,37.56,9.4,761.3333333333,67,6,40,3.5666666667,25.7880281773,25.7880281773 -40,0,21.79,39.2,19.9633333333,40.29,23.6666666667,36.26,20.1,37.3266666667,19.79,50,10.3566666667,4.8266666667,19.7,31.2,22.6,37.09,19.39,37.5,9.35,761.4166666667,67,6,40,3.5333333333,24.2933026166,24.2933026166 -70,0,21.73,39.2,19.89,40.3633333333,23.6,36.2,20.0333333333,37.3266666667,19.76,49.8633333333,9.3566666667,7.3,19.7,31.2,22.6,37.09,19.3566666667,37.4,9.3,761.5,67,6,40,3.5,36.5388696198,36.5388696198 -70,0,21.7,39.09,19.79,40.3266666667,23.5,36.2,20,37.3266666667,19.7,49.79,8.59,9.4333333333,19.6333333333,31.1333333333,22.6,37,19.3566666667,37.4,9.05,761.6,67.3333333333,5.8333333333,40,3.3166666667,12.6672232291,12.6672232291 -60,0,21.7,39.03,19.73,40.4,23.5,36.1266666667,20,37.4666666667,19.7,49.6633333333,8.1966666667,11.1666666667,19.6,31.2,22.6,37,19.29,37.29,8.8,761.7,67.6666666667,5.6666666667,40,3.1333333333,9.4594915281,9.4594915281 -80,0,21.7,38.8633333333,19.65,40.29,23.39,36.09,20,37.69,19.7,49.59,7.7,12.7566666667,19.6,31.2,22.5666666667,37,19.29,37.29,8.55,761.8,68,5.5,40,2.95,25.6680093938,25.6680093938 -70,0,21.6333333333,38.73,19.5666666667,40.29,23.39,36.09,20,37.9333333333,19.7,49.545,7.3666666667,14.63,19.6,31.23,22.5,37,19.29,37.26,8.3,761.9,68.3333333333,5.3333333333,40,2.7666666667,37.9564898554,37.9564898554 -80,0,21.6,38.645,19.5,40.3633333333,23.39,36.06,20,38.06,19.7,49.4666666667,7.0266666667,17.0333333333,19.6,31.29,22.5,36.9,19.29,37.2,8.05,762,68.6666666667,5.1666666667,40,2.5833333333,27.6872896822,27.6872896822 -70,0,21.6,38.59,19.39,40.3266666667,23.39,36,20,38.2,19.7,49.4,6.7425,19.3725,19.6,31.29,22.5,36.9,19.29,37.2,7.8,762.1,69,5,40,2.4,8.4908363642,8.4908363642 -70,0,21.5333333333,38.59,19.3233333333,40.4,23.29,36,19.9266666667,38.26,19.6666666667,49.26,6.5633333333,21.3233333333,19.6,31.29,22.5,36.9,19.29,37.2,7.6,762.1833333333,70,4.8333333333,40,2.4166666667,13.7945102528,13.7945102528 -70,0,21.5,38.5,19.26,40.4666666667,23.29,36,19.89,38.29,19.6,49.1266666667,6.23,23.2666666667,19.6,31.29,22.5,36.9,19.23,37.1266666667,7.4,762.2666666667,71,4.6666666667,40,2.4333333333,26.4107343392,26.4107343392 -70,0,21.5,38.4333333333,19.2,40.4666666667,23.29,36,19.89,38.3633333333,19.6333333333,49.09,5.9633333333,24.6,19.6,31.29,22.5,36.9,19.23,37.1266666667,7.2,762.35,72,4.5,40,2.45,30.3881242522,30.3881242522 -70,0,21.5,38.4,19.1,40.5,23.2225,35.95,19.89,38.4,19.6333333333,49.03,5.8,26.8933333333,19.6,31.3566666667,22.5,36.9,19.2,37.09,7,762.4333333333,73,4.3333333333,40,2.4666666667,24.9900345691,24.9900345691 -70,0,21.4266666667,38.3266666667,19.0333333333,40.5,23.2,36,19.89,38.4,19.6,48.9,5.7266666667,28.8933333333,19.6,31.39,22.39,36.79,19.2,37.09,6.8,762.5166666667,74,4.1666666667,40,2.4833333333,31.1946180533,31.1946180533 -60,0,21.39,38.2,19,40.53,23.2,35.9666666667,19.89,38.4,19.6,48.9,5.59,30.19,19.6,31.39,22.39,36.79,19.2,37.09,6.6,762.6,75,4,40,2.5,40.4705343419,40.4705343419 -70,0,21.39,38.1266666667,18.9266666667,40.59,23.2,35.9,19.89,38.4,19.6,48.79,5.53,31.4566666667,19.5666666667,31.39,22.39,36.79,19.2,37.03,6.4,762.7166666667,76.1666666667,3.8333333333,40,2.5,6.956027844,6.956027844 -80,0,21.39,38.09,18.8566666667,40.7,23.2,35.9,19.89,38.4,19.6,48.73,5.3666666667,32.3633333333,19.5666666667,31.39,22.39,36.79,19.2,37.06,6.2,762.8333333333,77.3333333333,3.6666666667,40,2.5,44.1974986927,44.1974986927 -110,10,21.3233333333,38.09,18.79,40.76,23.2,35.9666666667,19.89,38.4,19.6,48.7,5.3,33.4966666667,19.5666666667,31.4266666667,22.39,36.79,19.2,37,6,762.95,78.5,3.5,40,2.5,23.3335177531,23.3335177531 -70,0,21.29,38.23,18.76,40.86,23.29,36.09,19.89,38.5,19.6,48.6266666667,5.23,34.3333333333,19.5666666667,31.5,22.39,36.79,19.15,37,5.8,763.0666666667,79.6666666667,3.3333333333,40,2.5,26.8044263241,26.8044263241 -50,0,21.29,38.3633333333,18.7,41.1333333333,23.29,36.1633333333,19.8233333333,38.4333333333,19.6,47.7666666667,5.09,34.8666666667,19.5666666667,31.5,22.39,37.15,19.1333333333,37.0966666667,5.6,763.1833333333,80.8333333333,3.1666666667,40,2.5,19.3258670159,19.3258670159 -50,0,21.29,38.5,18.7,41.29,23.29,36.29,19.79,38.26,19.6,47.4333333333,5.06,35.5666666667,19.5,31.5,22.39,37.89,19.2,37.5633333333,5.4,763.3,82,3,40,2.5,47.5110349827,47.5110349827 -40,0,21.29,38.5,18.6333333333,41.29,23.29,36.29,19.79,38.2,19.5,47.4666666667,5,35.76,19.5,31.5,22.39,38.3633333333,19.2,37.79,5.2166666667,763.3666666667,82.6666666667,2.8333333333,40,2.45,22.9963666759,22.9963666759 -20,0,21.26,38.43,18.6,41.3266666667,23.2,36.29,19.79,38.06,19.5,47.4,4.83,36.2566666667,19.5,31.5,22.39,39,19.2,37.8633333333,5.0333333333,763.4333333333,83.3333333333,2.6666666667,40,2.4,21.42152132,21.42152132 -40,0,21.2,38.29,18.5333333333,41.4,23.2,36.29,19.79,38,19.5,47.4,4.69,37.1966666667,19.5,31.5,22.39,39.4,19.2,38.03,4.85,763.5,84,2.5,40,2.35,35.8003998408,35.8003998408 -30,0,21.2,38.26,18.5,41.45,23.2,36.29,19.79,37.845,19.5,47.4,4.69,38.395,19.5,31.5,22.29,39.6566666667,19.2,38.09,4.6666666667,763.5666666667,84.6666666667,2.3333333333,40,2.3,23.5001212452,23.5001212452 -70,0,21.2,38.2,18.4633333333,41.4666666667,23.2,36.3633333333,19.79,37.79,19.5,47.345,4.7266666667,39.6,19.5,31.5333333333,22.23,39.73,19.1666666667,38.1266666667,4.4833333333,763.6333333333,85.3333333333,2.1666666667,40,2.25,30.4673999432,30.4673999432 -50,0,21.2,38.2,18.39,41.4,23.2,36.4,19.73,37.73,19.5,47.29,4.8,40.06,19.5,31.6,22.2,40,19.1666666667,38.2,4.3,763.7,86,2,40,2.2,15.3100033524,15.3100033524 -60,0,21.15,38.1725,18.39,41.5,23.1333333333,36.4666666667,19.7,37.6633333333,19.5,47.29,4.8,40.09,19.5,31.6,22.2,40.4,19.1333333333,38.29,4.2833333333,763.7166666667,86.3333333333,2.1666666667,38.1666666667,2.2166666667,11.240066553,11.240066553 -50,0,21.1333333333,38.09,18.3233333333,41.5,23.2,36.5,19.7,37.59,19.5,47.26,4.66,40.03,19.5,31.6,22.2,41,19.1333333333,38.3633333333,4.2666666667,763.7333333333,86.6666666667,2.3333333333,36.3333333333,2.2333333333,21.808814269,21.808814269 -50,0,21.1,38.09,18.29,41.5,23.2,36.5,19.7,37.5,19.5,47.26,4.53,41.3,19.5,31.6,22.2,41.3333333333,19.1666666667,38.5,4.25,763.75,87,2.5,34.5,2.25,47.0005335868,47.0005335868 -60,0,21.1,38.03,18.29,41.56,23.2,36.5,19.7,37.5,19.5,47.2,4.59,41.8333333333,19.5,31.6,22.2,41.6266666667,19.1666666667,38.6333333333,4.2333333333,763.7666666667,87.3333333333,2.6666666667,32.6666666667,2.2666666667,8.0594409024,8.0594409024 -40,0,21.0666666667,38,18.2,41.53,23.2,36.5,19.6666666667,37.4,19.5,47.2,4.6566666667,41.8,19.5,31.6666666667,22.1333333333,41.76,19.1,38.8266666667,4.2166666667,763.7833333333,87.6666666667,2.8333333333,30.8333333333,2.2833333333,40.9818314714,40.9818314714 -60,0,21,38,18.2,41.59,23.2,36.56,19.6,37.3266666667,19.4633333333,47.06,4.53,41.8,19.39,31.5,22.1,41.9333333333,19.1,38.9666666667,4.2,763.8,88,3,29,2.3,1.2516919058,1.2516919058 -50,0,21,37.9,18.1666666667,41.59,23.2,36.5,19.6,37.29,19.39,47,4.3666666667,42.2666666667,19.4633333333,31.5666666667,22.1,42.06,19.1,39,4.1166666667,763.85,88.3333333333,3,28.5,2.2833333333,42.684241361,42.684241361 -60,0,21,37.9,18.1,41.59,23.2,36.5,19.6,37.29,19.4633333333,47.0266666667,4.16,42.8,19.4633333333,31.5666666667,22.1,42.23,19.1,39.1333333333,4.0333333333,763.9,88.6666666667,3,28,2.2666666667,38.8703759061,38.8703759061 -50,0,20.9633333333,37.9,18.1,41.59,23.2,36.59,19.6,37.26,19.39,46.9,3.8333333333,42.5966666667,19.39,31.5666666667,22.1,42.3633333333,19.1,39.4333333333,3.95,763.95,89,3,27.5,2.25,20.226831804,20.226831804 -60,0,20.89,37.9,18.1,41.59,23.2,36.59,19.6,37.2,19.39,46.9,3.5666666667,43.1966666667,19.4633333333,31.5666666667,22.1,42.53,19.1,39.56,3.8666666667,764,89.3333333333,3,27,2.2333333333,35.916993313,35.916993313 -50,0,20.89,37.9,18.0666666667,41.56,23.2,36.56,19.5666666667,37.1633333333,19.39,46.9,3.3633333333,44.3333333333,19.39,31.5666666667,22.1,42.6633333333,19.1,39.79,3.7833333333,764.05,89.6666666667,3,26.5,2.2166666667,6.4099181443,6.4099181443 -40,0,20.89,37.9,18,41.5,23.2,36.56,19.5,37.09,19.39,46.79,3.1566666667,44.7333333333,19.39,31.5,22,42.53,19.1,39.9333333333,3.7,764.1,90,3,26,2.2,22.513651289,22.513651289 -50,0,20.8566666667,37.8333333333,18,41.5,23.2,36.59,19.5,37.09,19.39,46.79,3.06,45.8266666667,19.39,31.5,22,42.53,19.1,40,3.6666666667,764.0833333333,90.3333333333,3,25.6666666667,2.2166666667,0.5194048863,0.5194048863 -40,0,20.79,37.76,18,41.5,23.2,36.59,19.5,37.09,19.39,46.76,3.06,46.6933333333,19.39,31.5,22,42.5,19.1,40.1266666667,3.6333333333,764.0666666667,90.6666666667,3,25.3333333333,2.2333333333,37.3530485551,37.3530485551 -50,0,20.79,37.76,17.9266666667,41.5,23.2,36.59,19.5,37,19.39,46.7,3.09,47.895,19.39,31.5,22,42.4666666667,19.1,40.2,3.6,764.05,91,3,25,2.25,43.8803316443,43.8803316443 -50,0,20.79,37.76,17.9266666667,41.56,23.2,36.59,19.5,37,19.39,46.6633333333,3,48.16,19.39,31.5,22,42.3266666667,19.1,40.3266666667,3.5666666667,764.0333333333,91.3333333333,3,24.6666666667,2.2666666667,8.4746180801,8.4746180801 -60,0,20.79,37.7,17.89,41.59,23.2,36.6266666667,19.5,37,19.39,46.59,3.06,49.5666666667,19.39,31.5,22,42.29,19.1,40.4666666667,3.5333333333,764.0166666667,91.6666666667,3,24.3333333333,2.2833333333,4.8887075623,4.8887075623 -50,0,20.73,37.7,17.79,41.5,23.1333333333,36.7,19.4633333333,36.9666666667,19.3566666667,46.59,3.06,49.3,19.39,31.5,22,42.29,19.1,40.6266666667,3.5,764,92,3,24,2.3,34.4707225333,34.4707225333 -60,0,20.7,37.7,17.79,41.56,23.2,36.7,19.39,36.8266666667,19.34,46.5225,2.7266666667,47.6933333333,19.39,31.5,21.89,42.29,19.1,40.7,3.4166666667,764.05,92.1666666667,2.8333333333,23.5,2.25,27.351922018,27.351922018 -40,0,20.7,37.7225,17.79,41.59,23.2,36.6266666667,19.39,36.79,19.29,46.5,2.6266666667,48.9333333333,19.39,31.5,21.89,42.23,19.1,40.8266666667,3.3333333333,764.1,92.3333333333,2.6666666667,23,2.2,3.6679920508,3.6679920508 -20,0,20.7,37.73,17.73,41.59,23.2,36.6266666667,19.39,36.79,19.3566666667,46.3633333333,2.6266666667,49.4,19.39,31.5,21.89,42.2,19.1,40.9,3.25,764.15,92.5,2.5,22.5,2.15,15.097813739,15.097813739 -40,0,20.7,37.7,17.7,41.7,23.1333333333,36.6266666667,19.39,36.79,19.29,46.29,2.5,49.03,19.39,31.5,21.8233333333,42.0666666667,19.1,41,3.1666666667,764.2,92.6666666667,2.3333333333,22,2.1,30.6585000013,30.6585000013 -40,0,20.7,37.7,17.7,41.7,23.1,36.6266666667,19.39,36.79,19.29,46.26,2.4333333333,49.43,19.3566666667,31.5,21.8566666667,42.09,19.1,41,3.0833333333,764.25,92.8333333333,2.1666666667,21.5,2.05,23.4623850556,23.4623850556 -50,0,20.7,37.7,17.6,41.56,23.0333333333,36.6266666667,19.39,36.79,19.29,46.2,2.4,49.93,19.3566666667,31.5,21.79,41.9633333333,19.1,41.09,3,764.3,93,2,21,2,10.1682777284,10.1682777284 -50,0,20.6333333333,37.6266666667,17.6,41.56,23,36.59,19.39,36.73,19.29,46.09,2.4,50.3233333333,19.3566666667,31.5,21.79,41.8633333333,19.1,41.09,2.8666666667,764.3333333333,93.5,2,28,1.9333333333,8.5573575343,8.5573575343 -60,0,20.6,37.59,17.6,41.59,23,36.59,19.3566666667,36.7,19.29,46.03,2.3633333333,50.2666666667,19.29,31.5,21.79,41.79,19.1,41.23,2.7333333333,764.3666666667,94,2,35,1.8666666667,32.6957459329,32.6957459329 -50,0,20.6,37.59,17.6,41.59,23,36.59,19.3566666667,36.7,19.29,46,2.3633333333,50.86,19.29,31.5,21.76,41.9,19.1,41.29,2.6,764.4,94.5,2,42,1.8,21.0398909287,21.0398909287 -60,0,20.6,37.59,17.6,41.7,23,36.59,19.29,36.7,19.29,46,2.6266666667,51.93,19.29,31.5,21.7,41.9,19.1,41.29,2.4666666667,764.4333333333,95,2,49,1.7333333333,10.0696242414,10.0696242414 -50,0,20.6,37.59,17.5333333333,41.7,23,36.59,19.29,36.6266666667,19.29,45.9666666667,2.7,51.93,19.29,31.5,21.79,41.9333333333,19.1,41.29,2.3333333333,764.4666666667,95.5,2,56,1.6666666667,21.7443414615,21.7443414615 -50,0,20.6,37.59,17.5,41.73,23,36.6266666667,19.29,36.6633333333,19.29,45.9,2.7,52.2,19.29,31.5,21.73,41.9333333333,19.1,41.4,2.2,764.5,96,2,63,1.6,39.0969274566,39.0969274566 -50,0,20.5333333333,37.59,17.4266666667,41.73,23,36.7,19.29,36.6633333333,19.29,45.79,2.6725,52.075,19.29,31.5333333333,21.7,42,19.1,41.4,2.1666666667,764.55,95.8333333333,2,63,1.5333333333,42.0991028659,42.0991028659 -50,0,20.5,37.59,17.5,41.79,23,36.6266666667,19.29,36.6633333333,19.29,45.79,2.4633333333,51.4266666667,19.29,31.5333333333,21.7,42.1333333333,19.1,41.4,2.1333333333,764.6,95.6666666667,2,63,1.4666666667,32.2766634752,32.2766634752 -50,0,20.5,37.59,17.4266666667,41.79,23,36.7,19.29,36.59,19.29,45.7,2.3266666667,51.2633333333,19.29,31.6,21.7,42.23,19.1,41.4,2.1,764.65,95.5,2,63,1.4,32.9492212739,32.9492212739 -60,0,20.5,37.59,17.39,41.76,23,36.59,19.26,36.59,19.23,45.5666666667,2.4666666667,52.0633333333,19.29,31.5333333333,21.7,42.2225,19.1,41.4,2.0666666667,764.7,95.3333333333,2,63,1.3333333333,5.7361887651,5.7361887651 -50,0,20.5,37.59,17.39,41.76,23,36.6633333333,19.2675,36.59,19.2,45.5,2.6266666667,52.7266666667,19.29,31.6,21.7,42.2,19.1,41.4333333333,2.0333333333,764.75,95.1666666667,2,63,1.2666666667,27.3052439559,27.3052439559 -60,0,20.5,37.59,17.39,41.745,23,36.59,19.23,36.53,19.2,45.4333333333,2.76,53.06,19.29,31.6,21.6,42.09,19.1,41.56,2,764.8,95,2,63,1.2,21.3388171163,21.3388171163 -60,0,20.5,37.59,17.39,41.7,23,36.59,19.2,36.5,19.2,45.4,2.73,52.8966666667,19.29,31.5666666667,21.6,42.09,19.1,41.59,2.0333333333,764.8833333333,95.3333333333,2,62.6666666667,1.2833333333,17.8913442418,17.8913442418 -50,0,20.4633333333,37.56,17.39,41.7,23,36.59,19.2,36.5,19.2,45.3725,2.93,53.6233333333,19.29,31.5666666667,21.6,42.29,19.1,41.6633333333,2.0666666667,764.9666666667,95.6666666667,2,62.3333333333,1.3666666667,20.3159418539,20.3159418539 -50,0,20.4633333333,37.56,17.39,41.6266666667,23,36.59,19.2,36.5,19.2,45.29,3.09,53.6633333333,19.29,31.6,21.6,42.29,19.1,41.59,2.1,765.05,96,2,62,1.45,45.972124394,45.972124394 -50,0,20.39,37.5,17.39,41.6266666667,23,36.59,19.2,36.5,19.2,45.26,3.1633333333,53.9233333333,19.29,31.6,21.6,42.29,19.1666666667,41.59,2.1333333333,765.1333333333,96.3333333333,2,61.6666666667,1.5333333333,20.8929408458,20.8929408458 -50,0,20.39,37.5,17.39,41.59,23,36.53,19.2,36.5,19.2,45.2,3.5666666667,54.53,19.29,31.6,21.6,42.29,19.1,41.59,2.1666666667,765.2166666667,96.6666666667,2,61.3333333333,1.6166666667,2.2927086218,2.2927086218 -50,0,20.39,37.5,17.4633333333,41.6633333333,22.9266666667,36.59,19.2,36.56,19.2,45.09,3.76,54.6633333333,19.29,31.6333333333,21.6,42.29,19.1,41.59,2.2,765.3,97,2,61,1.7,45.8315692376,45.8315692376 -60,0,20.39,37.5,17.5,41.7666666667,22.9266666667,36.53,19.2,36.59,19.2,45.09,4.1233333333,54.9666666667,19.29,31.7,21.5333333333,42.3633333333,19.1333333333,41.59,2.55,765.35,96.5,2,61.3333333333,1.9833333333,38.4991520783,38.4991520783 -60,0,20.39,37.5,17.5,42.0266666667,22.89,36.4,19.2,36.7966666667,19.23,44.3333333333,4.33,54.9666666667,19.2,31.6,21.5333333333,42.29,19.1333333333,41.53,2.9,765.4,96,2,61.6666666667,2.2666666667,26.353203482,26.353203482 -80,0,20.39,37.6666666667,17.5,42.3266666667,22.79,36.06,19.2,37.23,19.29,43.8,4.8233333333,55.26,19.2,31.6,21.6,42.29,19.2,41.5,3.25,765.45,95.5,2,62,2.55,25.2341646585,25.2341646585 -50,0,20.39,38.1933333333,17.5666666667,42.4666666667,22.73,35.86,19.26,37.43,19.29,43.4,5.3633333333,55.0666666667,19.2,31.6333333333,21.5,42.26,19.1333333333,41.4333333333,3.6,765.5,95,2,62.3333333333,2.8333333333,15.7579375547,15.7579375547 -50,0,20.4633333333,38.53,17.8666666667,42.3633333333,22.73,35.76,19.23,37.4633333333,19.29,43,6.2,52.045,19.2,31.7,21.5,42.0666666667,19.2,41.0633333333,3.95,765.55,94.5,2,62.6666666667,3.1166666667,39.4597682287,39.4597682287 -60,0,20.4633333333,38.59,18.66,41.5566666667,22.79,35.6266666667,19.29,37.59,19.3233333333,42.6333333333,6.93,44.6566666667,19.1666666667,31.7,21.5,41.8333333333,19.26,40.5966666667,4.3,765.6,94,2,63,3.4,29.4595346204,29.4595346204 -60,10,20.5,38.7233333333,19.4566666667,40.0566666667,22.9266666667,35.56,19.29,37.7666666667,19.3233333333,42.3,7.4566666667,37.4566666667,19.1666666667,31.7,21.4266666667,41.5666666667,19.39,40.05,4.7,765.65,92.5,2.3333333333,57.3333333333,3.5666666667,31.1732125236,31.1732125236 -60,0,20.5,38.53,20.0633333333,39.33,23,35.4333333333,19.3566666667,37.9666666667,19.39,41.93,8.1,33.23,19.1333333333,31.7,21.39,41.3633333333,19.39,39.6333333333,5.1,765.7,91,2.6666666667,51.6666666667,3.7333333333,49.0520203952,49.0520203952 -60,0,20.5333333333,38.76,20.9566666667,38.1666666667,23,35.3633333333,19.5,38.06,19.39,41.6566666667,8.56,29.1566666667,19.1333333333,31.7,21.39,41.23,19.4633333333,39.5,5.5,765.75,89.5,3,46,3.9,37.0872512227,37.0872512227 -70,0,20.6,38.6266666667,21.5633333333,37.2933333333,23,35.29,19.5666666667,38.06,19.4266666667,41.53,8.7933333333,26.6,19.1,31.6666666667,21.4633333333,41.1633333333,19.4266666667,39.3266666667,5.9,765.8,88,3.3333333333,40.3333333333,4.0666666667,14.6796607645,14.6796607645 -200,0,20.6,38.6633333333,21.96,36.43,23,35.26,19.65,38.09,19.4266666667,41.6633333333,9.26,24.1266666667,19.1,31.6,21.39,41.09,19.5,39.2666666667,6.3,765.85,86.5,3.6666666667,34.6666666667,4.2333333333,8.2980263396,8.2980263396 -160,0,20.6,38.59,22.1666666667,35.8966666667,23,35.2,19.79,37.8333333333,19.3566666667,41.9333333333,9.3,20.8233333333,19.1,31.6,21.39,41.045,19.5,39.4633333333,6.7,765.9,85,4,29,4.4,31.1613717349,31.1613717349 -50,0,20.6,38.4666666667,22.34,35.44,22.89,35.1633333333,19.8566666667,37.6266666667,19.29,42.06,9.2266666667,19.3633333333,19.1,31.5333333333,21.3566666667,40.9633333333,19.5,39.9233333333,6.8833333333,765.9166666667,82.8333333333,4.3333333333,29,4.1833333333,2.1177843562,2.1177843562 -160,0,20.6666666667,38.5266666667,22.9266666667,35.2933333333,22.8233333333,35.09,19.9266666667,37.43,19.29,42.2,9.6,17.8,19.1,31.4633333333,21.3566666667,41.1633333333,19.5666666667,40.73,7.0666666667,765.9333333333,80.6666666667,4.6666666667,29,3.9666666667,49.5906269643,49.5906269643 -60,0,20.7,38.7,23.26,36.1666666667,22.6666666667,34.9,20.0666666667,37.23,19.29,42.2675,9.8,14.3333333333,19.1,31.3233333333,21.39,41.29,19.5666666667,40.73,7.25,765.95,78.5,5,29,3.75,37.556730397,37.556730397 -60,0,20.7,38.7,23.4266666667,36.3633333333,22.6,34.8266666667,20.1333333333,37.06,19.29,42.3633333333,10.0633333333,11.0966666667,19.1,31.2,21.39,41.1566666667,19.5333333333,40.73,7.4333333333,765.9666666667,76.3333333333,5.3333333333,29,3.5333333333,14.1038648086,14.1038648086 -50,0,20.79,38.545,23.5666666667,36.23,22.6,34.76,20.2,36.86,19.29,42.4666666667,10.2633333333,8.23,19.1,30.9633333333,21.39,40.8633333333,19.6,40.73,7.6166666667,765.9833333333,74.1666666667,5.6666666667,29,3.3166666667,35.6544958311,35.6544958311 -40,0,20.8233333333,38.3633333333,23.73,35.96,22.5333333333,34.6266666667,20.29,36.6633333333,19.29,42.4,10.5,5.8333333333,19.1,30.8233333333,21.39,40.73,19.6,40.59,7.8,766,72,6,29,3.1,18.6726011569,18.6726011569 -60,0,20.89,38.23,23.79,35.3666666667,22.5,34.4666666667,20.3566666667,36.53,19.29,42.4,10.5666666667,5.56,19.1,30.76,21.39,40.59,19.6,40.59,8.0166666667,766,70.8333333333,5.8333333333,30.8333333333,3.0666666667,10.5925368262,10.5925368262 -60,0,20.8233333333,38.23,23.9266666667,34.8633333333,22.5,34.4,20.39,36.4,19.29,42.4,10.63,4.53,19.1,30.6333333333,21.39,40.53,19.6,40.5,8.2333333333,766,69.6666666667,5.6666666667,32.6666666667,3.0333333333,0.9258906357,0.9258906357 -60,0,20.89,38.3633333333,24,34.59,22.4633333333,34.4666666667,20.4633333333,36.4,19.29,42.4,10.7633333333,3.5966666667,19.1,30.5666666667,21.4633333333,40.43,19.6,40.4333333333,8.45,766,68.5,5.5,34.5,3,23.4637233196,23.4637233196 -70,0,20.89,38.4,24,34.4666666667,22.39,34.425,20.5333333333,36.26,19.29,42.4666666667,10.8666666667,2.53,19.1,30.4266666667,21.4633333333,40.1566666667,19.6,40.3633333333,8.6666666667,766,67.3333333333,5.3333333333,36.3333333333,2.9666666667,48.4970736317,48.4970736317 -90,0,20.9633333333,39.7333333333,23.9266666667,34.4,22.39,34.5,20.6,36.2,19.29,42.5,11.025,3.04,19.1,30.3566666667,21.5,39.9666666667,19.6,40.23,8.8833333333,766,66.1666666667,5.1666666667,38.1666666667,2.9333333333,37.5366045278,37.5366045278 -80,0,21.0333333333,42.2333333333,23.89,34.06,22.39,34.59,20.6333333333,36.03,19.29,42.5,11.2333333333,3.79,19.1,30.29,21.5666666667,39.8266666667,19.6,40.1633333333,9.1,766,65,5,40,2.9,37.2993746074,37.2993746074 -80,0,21.1,41.5666666667,23.89,33.9333333333,22.39,34.6633333333,20.7,36.1633333333,19.29,42.59,11.3,2.56,19.0666666667,30.2266666667,21.6,39.6633333333,19.6,40.09,9.2666666667,766,66.1666666667,5,40,3.2833333333,35.5198379839,35.5198379839 -90,0,21.1,41.1,23.79,33.8266666667,22.39,34.8266666667,20.7,36.09,19.29,42.6633333333,11.2266666667,1.5666666667,19.0666666667,30.1666666667,21.6666666667,39.53,19.6,40,9.4333333333,766,67.3333333333,5,40,3.6666666667,3.0868395232,3.0868395232 -100,0,21.1,40.5666666667,23.79,33.9,22.39,34.9666666667,20.7,36.09,19.29,42.7,11.33,1.4666666667,19.1,30.1,21.73,39.2966666667,19.6,39.8633333333,9.6,766,68.5,5,40,4.05,2.2774537792,2.2774537792 -100,0,21.1,40.49,23.73,33.79,22.39,35,20.79,36.06,19.29,42.7,11.39,1,19.0333333333,29.96,21.79,38.9633333333,19.6,39.79,9.7666666667,766,69.6666666667,5,40,4.4333333333,0.2416035975,0.2416035975 -100,0,21.1666666667,40.1566666667,23.79,33.5966666667,22.39,35.06,20.79,36,19.29,42.7,11.6666666667,1.3566666667,19.0333333333,29.8233333333,21.8233333333,38.6633333333,19.6,39.7233333333,9.9333333333,766,70.8333333333,5,40,4.8166666667,37.9903207417,37.9903207417 -90,0,21.2,39.6633333333,23.76,33.4,22.39,35.1266666667,20.89,35.95,19.29,42.7,11.86,1.0966666667,19.0333333333,29.8233333333,21.9633333333,38.53,19.6,39.59,10.1,766,72,5,40,5.2,10.5096248095,10.5096248095 -100,0,21.2,39.33,23.6333333333,33.3266666667,22.39,35.2,20.89,35.8725,19.29,42.7,11.9266666667,1,19.1,29.8566666667,22.0333333333,38.3633333333,19.6,39.4666666667,10.2666666667,765.9666666667,69.1666666667,5.1666666667,40,4.7166666667,12.302203197,12.302203197 -90,0,21.23,39.1633333333,23.5666666667,33.3266666667,22.39,35.2,20.89,35.745,19.3566666667,42.76,12,1,19.1,29.79,22.1,38.1933333333,19.6,39.4,10.4333333333,765.9333333333,66.3333333333,5.3333333333,40,4.2333333333,44.4800959085,44.4800959085 -100,0,21.29,38.89,23.4725,33.295,22.39,35.2,20.89,35.59,19.29,42.79,12.1177777778,1,19.1,29.615,22.2,37.9475,19.6,39.2,10.6,765.9,63.5,5.5,40,3.75,34.007635864,34.007635864 -90,0,21.3233333333,38.9666666667,23.3233333333,33.1266666667,22.39,35.2,20.89,35.53,19.34,42.7225,12.36,1,19.1,29.39,22.254,37.736,19.6,39.2,10.7666666667,765.8666666667,60.6666666667,5.6666666667,40,3.2666666667,25.3218482481,25.3218482481 -110,0,21.39,38.8266666667,23.2,33,22.39,35.2,20.89,35.3725,19.3566666667,42.7,12.5,1,19.1,29.254,22.315,37.525,19.5333333333,39.06,10.9333333333,765.8333333333,57.8333333333,5.8333333333,40,2.7833333333,4.335150728,4.335150728 -90,0,21.39,38.45,23.1333333333,33,22.39,35.1633333333,20.89,35.23,19.39,42.7,12.5,1,19.1,29.075,22.39,37.3266666667,19.6,38.9333333333,11.1,765.8,55,6,40,2.3,10.6437105569,10.6437105569 -100,0,21.5,38.26,23,32.9,22.39,35.1633333333,20.89,35.094,19.39,42.6266666667,12.6925,1,19.1,28.9266666667,22.4725,37.195,19.6,38.9,11.2,765.75,54.6666666667,5.8333333333,40,2.3,38.174525951,38.174525951 -90,0,21.5,38.1266666667,22.9266666667,32.9666666667,22.4266666667,35.1266666667,20.89,34.9333333333,19.4266666667,42.6966666667,12.89,1,19.1,28.89,22.5,37.1633333333,19.6,38.8266666667,11.3,765.7,54.3333333333,5.6666666667,40,2.3,41.3784279139,41.3784279139 -70,0,21.5333333333,37.9,22.8566666667,33,22.5,35.2,20.89,34.9633333333,19.5666666667,43.03,13.0333333333,1,19.1666666667,28.8233333333,22.39,37.0666666667,19.6,38.6333333333,11.4,765.65,54,5.5,40,2.3,20.4044122016,20.4044122016 -60,0,21.6,37.4266666667,22.73,33.1333333333,22.39,35.1633333333,20.89,35.09,19.5,42.9666666667,13.1,1,19.2,28.89,22.39,37.2,19.6,38.5,11.5,765.6,53.6666666667,5.3333333333,40,2.3,42.8785482538,42.8785482538 -60,0,21.6333333333,36.66,22.5666666667,33.23,22.39,35.09,20.89,35,19.5,42.8266666667,13.13,1,19.2,28.8233333333,22.5,37.2,19.6,38.4,11.6,765.55,53.3333333333,5.1666666667,40,2.3,3.2745859469,3.2745859469 -80,0,21.7,36.1933333333,22.5,32.9566666667,22.39,35.03,20.89,34.8,19.5,42.5266666667,13.295,1,19.2,28.79,22.5,37.2,19.6,38.3266666667,11.7,765.5,53,5,40,2.3,27.7068532188,27.7068532188 -80,0,21.7,35.6933333333,22.3566666667,32.73,22.29,34.9,20.89,34.59,19.5,42.2666666667,13.4633333333,1,19.2,28.73,22.5,37.1633333333,19.6,38.2,11.8166666667,765.4666666667,51.3333333333,4.8333333333,40,1.9166666667,37.4362259055,37.4362259055 -120,0,21.7,35.56,22.29,32.79,22.29,34.8266666667,20.89,34.53,19.5,41.93,13.5333333333,1,19.2,28.6666666667,22.5666666667,37.03,19.6,38.1266666667,11.9333333333,765.4333333333,49.6666666667,4.6666666667,40,1.5333333333,8.0732661998,8.0732661998 -120,0,21.79,35.8633333333,22.26,32.6333333333,22.29,34.6633333333,20.9266666667,34.86,19.5,41.6566666667,13.6,1,19.26,28.5333333333,22.6,36.8633333333,19.6,38.045,12.05,765.4,48,4.5,40,1.15,16.6218732367,16.6218732367 -110,0,21.79,35.73,22.2,32.4333333333,22.29,34.4633333333,21,35,19.4266666667,41.29,13.63,1,19.2,28.26,22.6,36.73,19.6,37.9666666667,12.1666666667,765.3666666667,46.3333333333,4.3333333333,40,0.7666666667,47.0933531295,47.0933531295 -140,0,21.8233333333,35.2966666667,22.1333333333,32.3633333333,22.29,34.2233333333,21.0333333333,35.1266666667,19.5,41.1566666667,13.69,1,19.26,28.2,22.7,36.59,19.6,37.9,12.2833333333,765.3333333333,44.6666666667,4.1666666667,40,0.3833333333,16.6782533401,16.6782533401 -110,0,21.89,35.03,22.1333333333,32.23,22.29,34.03,21.1,35.2,19.5,40.8633333333,13.83,1,19.29,28.0666666667,22.7,36.53,19.6,37.79,12.4,765.3,43,4,40,0,11.2546107615,11.2546107615 -110,0,21.89,34.9,22.1,32.1266666667,22.39,33.9,21.1,35.045,19.5,40.73,13.89,1,19.29,28,22.79,36.4,19.6,37.73,12.5166666667,765.3,43.1666666667,4.1666666667,40,0.15,7.0632234449,7.0632234449 -110,0,21.89,34.9,22.1,32.26,22.39,33.9,21.1,34.9333333333,19.5,40.59,14,1,19.29,27.9633333333,22.79,36.3266666667,19.6,37.59,12.6333333333,765.3,43.3333333333,4.3333333333,40,0.3,21.8442988349,21.8442988349 -120,0,22,34.9,22,32.09,22.39,34,21.1,35,19.5,40.53,14,1,19.29,27.89,22.79,36.2,19.6,37.59,12.75,765.3,43.5,4.5,40,0.45,45.5471227411,45.5471227411 -100,0,22,34.9,22,32.09,22.39,34.06,21.15,34.925,19.5,40.5,14.0333333333,1,19.29,27.76,22.815,36.1175,19.6,37.56,12.8666666667,765.3,43.6666666667,4.6666666667,40,0.6,5.1489018486,5.1489018486 -80,0,22.1,34.9666666667,22,32.09,22.39,34.09,21.1666666667,34.9,19.5,40.5,14.16,1,19.3566666667,27.6333333333,22.89,36.09,19.6,37.5,12.9833333333,765.3,43.8333333333,4.8333333333,40,0.75,16.4875224931,16.4875224931 -100,0,22.1,34.7666666667,21.89,31.9633333333,22.39,34.09,21.2,34.6333333333,19.5,40.5,14.19,1,19.39,27.55,22.89,36,19.6,37.5,13.1,765.3,44,5,40,0.9,37.4729540781,37.4729540781 -270,0,22.1333333333,34.56,21.89,31.8233333333,22.39,34.2,21.26,34.5,19.5,40.3633333333,14.2633333333,1,19.39,27.3566666667,22.89,36,19.6,37.4333333333,13.2166666667,765.3166666667,43.3333333333,4.8333333333,40,0.8166666667,18.5777821345,18.5777821345 -250,0,22.2,34.8,21.79,31.5666666667,22.4633333333,34.26,21.23,34.59,19.5,40.23,14.36,1,19.39,27.1533333333,22.9175,35.9475,19.6,37.4,13.3333333333,765.3333333333,42.6666666667,4.6666666667,40,0.7333333333,18.7309641158,18.7309641158 -110,0,22.2,37.3666666667,21.73,31.5,22.5,34.29,21.29,34.612,19.6,40.2,14.345,1,19.39,27,23,35.7225,19.6,37.3266666667,13.45,765.35,42,4.5,40,0.65,6.1648620758,6.1648620758 -130,0,22.29,38.86,21.7,31.7633333333,22.5,34.29,21.29,34.8333333333,19.6,40.2,14.4266666667,1,19.39,27,23,35.6266666667,19.6,37.3633333333,13.5666666667,765.3666666667,41.3333333333,4.3333333333,40,0.5666666667,24.3115043733,24.3115043733 -430,0,22.3566666667,39.3933333333,21.7,32.0233333333,22.5,34.4333333333,21.29,35.1566666667,19.7,40.4333333333,14.5666666667,1,19.39,27,23,35.7,19.6,37.29,13.6833333333,765.3833333333,40.6666666667,4.1666666667,40,0.4833333333,16.0000477103,16.0000477103 -300,0,22.39,38.0266666667,21.7,32.2666666667,22.5666666667,34.56,21.3566666667,35.3633333333,19.7,40.56,14.55,1,19.39,27,23,35.79,19.6,37.29,13.8,765.4,40,4,40,0.4,35.667763534,35.667763534 -270,0,22.39,37.3,21.7,32.4666666667,22.6,34.845,21.3233333333,35.4,19.79,40.59,14.4633333333,1,19.39,27,23,35.79,19.6666666667,37.3633333333,13.7833333333,765.4166666667,39.6666666667,4,40,0.2833333333,24.5861007832,24.5861007832 -240,0,22.39,36.76,21.6,32.53,22.6,34.8266666667,21.39,35.4,19.8566666667,40.6633333333,14.4633333333,1,19.4633333333,27.0666666667,23,36.63,19.6666666667,37.2,13.7666666667,765.4333333333,39.3333333333,4,40,0.1666666667,34.5651033917,34.5651033917 -220,0,22.4633333333,36.7,21.6,32.59,22.6,34.8266666667,21.39,35.425,19.89,40.5,14.4266666667,1,19.4633333333,27.0666666667,23.0666666667,37.4966666667,19.6666666667,37.2,13.75,765.45,39,4,40,0.05,13.589994947,13.589994947 -360,0,22.5,36.59,21.5,32.7,22.6,34.73,21.39,35.56,19.89,40.4333333333,14.5,1,19.4633333333,27.0666666667,23.1333333333,37.49,19.6,37.2,13.7333333333,765.4666666667,38.6666666667,4,40,-0.0666666667,31.672258256,31.672258256 -430,0,22.5,36.6633333333,21.5,32.8333333333,22.6666666667,34.79,21.39,35.59,20.0333333333,40.4,14.5,1,19.4633333333,27.0666666667,23.1333333333,37.1566666667,19.6,37.09,13.7166666667,765.4833333333,38.3333333333,4,40,-0.1833333333,4.0670283139,4.0670283139 -450,0,22.6,36.9933333333,21.5,33.33,22.7,34.8266666667,21.39,35.59,20.1,40.4,14.4266666667,1,19.5,27.0333333333,23.2,36.76,19.6,37.09,13.7,765.5,38,4,40,-0.3,1.3241138426,1.3241138426 -440,0,22.7933333333,37.6,21.5,34.33,22.7,34.9,21.39,35.6933333333,20.1,40.4,14.39,1,19.5,27.1,23.2,36.5,19.6,37,13.6333333333,765.5,38.3333333333,4,40,-0.25,49.3280895171,49.3280895171 -410,0,23.3,36.96,21.5333333333,35.3266666667,22.73,35.03,21.4975,36.4,20.1,40.4666666667,14.39,1,19.5,27.0666666667,23.2,36.2,19.6,36.9333333333,13.5666666667,765.5,38.6666666667,4,40,-0.2,25.9851099341,25.9851099341 -100,0,23.6333333333,36.4266666667,21.6,35.4,22.79,35.09,21.6,36.7,20.1,40.59,14.2633333333,1,19.5,27,23.2,36.26,19.6,36.8633333333,13.5,765.5,39,4,40,-0.15,41.0181772429,41.0181772429 -120,0,23.6333333333,35.99,21.6,35.4,22.79,35.09,21.6,36.49,20.1,40.6633333333,14.13,1,19.5,26.9633333333,23.2,36.4633333333,19.6,36.79,13.4333333333,765.5,39.3333333333,4,40,-0.1,10.0567716989,10.0567716989 -110,0,23.4266666667,35.6566666667,21.5333333333,35.3266666667,22.79,35.09,21.6,36.23,20.1,40.59,14.03,1,19.5,26.89,23.26,36.7233333333,19.6,36.7,13.3666666667,765.5,39.6666666667,4,40,-0.05,4.6428169124,4.6428169124 -120,0,23.3566666667,35.4666666667,21.5,35.2,22.79,35.09,21.6,35.93,20.1666666667,40.53,13.7566666667,1,19.5,26.8566666667,23.29,37.245,19.6,36.6266666667,13.3,765.5,40,4,40,0,4.6179191908,4.6179191908 -120,10,23.29,35.3266666667,21.5,35.06,22.79,35.03,21.5333333333,35.6566666667,20.1,40.45,13.6,1,19.5,26.79,23.29,37.73,19.6333333333,36.36,13.1666666667,765.5166666667,40.8333333333,3.8333333333,40,0.15,19.0066721058,19.0066721058 -100,0,23.26,35.06,21.4266666667,34.8,22.79,35,21.5,35.3633333333,20.1,40.4333333333,13.66,1,19.5,26.865,23.29,37.79,19.6333333333,36.4333333333,13.0333333333,765.5333333333,41.6666666667,3.6666666667,40,0.3,1.8510903115,1.8510903115 -170,0,23.175,34.82,21.3566666667,34.5266666667,22.79,35,21.5,35.1566666667,21.1666666667,69.6266666667,14.2933333333,1,19.5,26.8233333333,23.29,37.4,19.6,36.3333333333,12.9,765.55,42.5,3.5,40,0.45,29.5048551867,29.5048551867 -100,0,23.1,34.7,21.29,34.4666666667,22.79,35,21.5,34.9666666667,22.19,81,14.5666666667,1,19.5,26.8233333333,23.29,37.46,19.6666666667,36.1266666667,12.7666666667,765.5666666667,43.3333333333,3.3333333333,40,0.6,30.1997879753,30.1997879753 -90,0,23.1,34.7,21.26,35,22.79,35,21.4266666667,34.7666666667,21.5966666667,81.26,14.0266666667,1,19.5,26.89,23.3233333333,37.9,19.6333333333,36.1266666667,12.6333333333,765.5833333333,44.1666666667,3.1666666667,40,0.75,48.7042046734,48.7042046734 -90,0,23.1,34.76,21.2,35.26,22.76,34.9,21.39,34.6633333333,21.2266666667,81.26,12.6933333333,1,19.5,26.8233333333,23.39,37.8266666667,19.6333333333,36.1266666667,12.5,765.6,45,3,40,0.9,10.1712193689,10.1712193689 -90,0,23.0666666667,34.76,21.1,35.4666666667,22.7,34.9,21.39,34.59,20.96,81.5933333333,11.495,1,19.5,26.8233333333,23.39,37.7,19.6,35.9666666667,12.1,765.65,46.8333333333,3,40,1.0166666667,1.0300505906,1.0300505906 -120,0,23,34.76,21.0333333333,35.3266666667,22.6,34.9,21.3566666667,34.59,20.79,80.6933333333,10.1933333333,1,19.5,27.03,23.39,37.7,19.6,35.6933333333,11.7,765.7,48.6666666667,3,40,1.1333333333,3.5960330162,3.5960330162 -120,0,23,34.79,20.9633333333,35.29,22.5666666667,35,21.29,34.6633333333,20.73,79.3,9.4666666667,1,19.5,27.23,23.5,37.79,19.6,35.1,11.3,765.75,50.5,3,40,1.25,28.4685727675,28.4685727675 -110,0,22.9266666667,34.79,20.89,35.29,22.5,35,21.29,34.7,20.6666666667,76.3233333333,8.7233333333,1,19.5,27.3566666667,23.5,37.73,19.6,34.6933333333,10.9,765.8,52.3333333333,3,40,1.3666666667,47.6954108919,47.6954108919 -110,0,22.89,34.79,20.79,35.2,22.5,35.03,21.29,34.7,20.6,73.2566666667,8.1966666667,1.5266666667,19.5,27.46,23.5,37.59,19.55,34.19,10.5,765.85,54.1666666667,3,40,1.4833333333,27.9614062281,27.9614062281 -100,0,22.89,34.8633333333,20.73,35.26,22.5,35.09,21.26,34.6633333333,20.5,69.7566666667,7.7,2.96,19.5,27.6,23.5,37.59,19.5,33.9666666667,10.1,765.9,56,3,40,1.6,3.0627447646,3.0627447646 -100,10,22.79,34.73,20.7,35.29,22.5,35.2,21.2,34.6633333333,20.4266666667,66.63,7.3666666667,4.2333333333,19.4266666667,27.73,23.5,37.59,19.5,33.7666666667,9.8166666667,765.9166666667,57,2.8333333333,40,1.5666666667,47.104433307,47.104433307 -70,0,22.79,34.79,20.6333333333,35.23,22.4266666667,35.2,21.2,34.8333333333,20.39,64.9933333333,6.8966666667,5.0666666667,19.5,27.93,23.5,37.6633333333,19.5,34.2333333333,9.5333333333,765.9333333333,58,2.6666666667,40,1.5333333333,21.215350565,21.215350565 -80,0,22.76,34.9333333333,20.5666666667,35.36,22.39,35.3266666667,21.2,34.595,20.3233333333,63.7333333333,6.5633333333,5.5266666667,19.5,28.1333333333,23.6,37.86,19.5,35.2333333333,9.25,765.95,59,2.5,40,1.5,16.6546099354,16.6546099354 -80,0,22.7,35,20.5,35.56,22.39,35.4666666667,21.2,34.4333333333,20.29,61.2,6.23,6.3933333333,19.5,28.26,23.6,38,19.5,36.2266666667,8.9666666667,765.9666666667,60,2.3333333333,40,1.4666666667,42.2617853153,42.2617853153 -80,0,22.7,35.26,20.3566666667,35.7666666667,22.39,35.5,21.1666666667,34.4,20.29,59.5933333333,6.09,7.5333333333,19.5,28.4266666667,23.6,38,19.5,36.6333333333,8.6833333333,765.9833333333,61,2.1666666667,40,1.4333333333,7.8354169964,7.8354169964 -80,0,22.6333333333,35.1266666667,20.29,35.9666666667,22.39,35.5,21.1,34.4,20.2,58.2633333333,5.8666666667,8.5966666667,19.5,28.5,23.5333333333,38.06,19.5,37.0666666667,8.4,766,62,2,40,1.4,35.3926991811,35.3926991811 -90,0,22.6,35.23,20.26,36.09,22.39,35.53,21.1,34.4666666667,20.2,57.3966666667,5.7266666667,9.0633333333,19.5,28.6333333333,23.5,38.36,19.5666666667,37.26,8.1833333333,766,63,2,40,1.4333333333,23.9684456377,23.9684456377 -80,0,22.5333333333,35.23,20.125,36.1725,22.39,35.53,21.1,34.3266666667,20.2,56.45,5.4333333333,9.2266666667,19.5,28.7225,23.5,38.56,19.5333333333,37.5,7.9666666667,766,64,2,40,1.4666666667,38.7460856582,38.7460856582 -70,0,22.5,35.29,20.0333333333,36.2,22.39,35.59,21.0666666667,34.26,20.1666666667,55.5333333333,5.2266666667,9.56,19.5,28.79,23.6,38.895,19.5333333333,37.56,7.75,766,65,2,40,1.5,11.4809359075,11.4809359075 -60,0,22.5,35.23,19.9633333333,36.29,22.3233333333,35.6633333333,21,34.2,20.1,54.9266666667,5.19,10.3933333333,19.5,28.89,23.6,39.2666666667,19.6,37.73,7.5333333333,766,66,2,40,1.5333333333,16.8657125789,16.8657125789 -40,0,22.445,35.1,19.89,36.3633333333,22.29,35.6633333333,21,34.09,20.1,54.2966666667,5.1233333333,10.8,19.5,28.9633333333,23.6,39.4666666667,19.6,37.8633333333,7.3166666667,766,67,2,40,1.5666666667,9.2725281953,9.2725281953 -40,0,22.39,35.06,19.8566666667,36.5,22.29,35.6633333333,21,34.09,20.1,53.83,5.045,11.995,19.5,29.0333333333,23.6333333333,39.8,19.6,37.9333333333,7.1,766,68,2,40,1.6,48.2456351048,48.2456351048 -30,0,22.39,35.06,19.79,36.5,22.29,35.7,20.9633333333,34.09,20.1,53.2966666667,4.9666666667,12.7933333333,19.5,29.1,23.7,40.1933333333,19.6,38,6.9666666667,766,68.1666666667,1.8333333333,40,1.4833333333,35.4316407931,35.4316407931 -50,0,22.29,35.09,19.7,36.6266666667,22.23,35.6266666667,20.89,34.03,20.1,52.89,4.8333333333,13.6666666667,19.5,29.1,23.6666666667,40.4666666667,19.6,38.1266666667,6.8333333333,766,68.3333333333,1.6666666667,40,1.3666666667,22.7943270816,22.7943270816 -60,0,22.29,35.09,19.6333333333,36.76,22.26,35.7233333333,20.89,34.09,20.0666666667,52.3633333333,4.8,14.59,19.5,29.1666666667,23.6,40.4666666667,19.6,38.2,6.7,766,68.5,1.5,40,1.25,21.7034167494,21.7034167494 -60,0,22.2,35.09,19.5666666667,36.8266666667,22.2,35.6725,20.89,34.09,20.0666666667,51.9633333333,4.7266666667,15.1966666667,19.5,29.29,23.5666666667,40.6566666667,19.6,38.29,6.5666666667,766,68.6666666667,1.3333333333,40,1.1333333333,32.0335969445,32.0335969445 -50,0,22.2,35.09,19.5,36.9666666667,22.2,35.7,20.89,34.09,20,51.5266666667,4.59,16.1,19.5,29.29,23.5,40.79,19.6,38.3633333333,6.4333333333,766,68.8333333333,1.1666666667,40,1.0166666667,37.5815218315,37.5815218315 -50,0,22.2,35.1633333333,19.39,37,22.2,35.7,20.89,34.09,20,51.2666666667,4.53,17.3,19.4633333333,29.26,23.39,40.7,19.6,38.45,6.3,766,69,1,40,0.9,22.8834201815,22.8834201815 -50,0,22.1333333333,35.1633333333,19.39,37.06,22.2,35.7,20.8566666667,34.06,20,51.06,4.56,17.2,19.4633333333,29.3266666667,23.3233333333,40.7,19.6,38.5,6.1666666667,766,69.6666666667,1,40,0.9166666667,26.8529732944,26.8529732944 -60,0,22.1,35.2,19.29,37.1266666667,22.2,35.7,20.79,34,20,50.9333333333,4.5,17.4666666667,19.4266666667,29.3233333333,23.26,41,19.6,38.56,6.0333333333,766,70.3333333333,1,40,0.9333333333,12.2122776462,12.2122776462 -50,0,22.1,35.2,19.23,37.2,22.2,35.7,20.79,33.9,20,50.76,4.5,17.23,19.5,29.39,23.2,41.4,19.6,38.6266666667,5.9,766,71,1,40,0.95,48.9183298312,48.9183298312 -60,0,22,35.23,19.2,37.23,22.2,35.7,20.79,33.9,20,50.5666666667,4.56,17.0233333333,19.4266666667,29.3233333333,23.2,41.7666666667,19.6,38.7,5.7666666667,766,71.6666666667,1,40,0.9666666667,42.7320559276,42.7320559276 -60,0,22,35.3633333333,19.1333333333,37.29,22.2,35.7,20.73,33.9,19.89,50.43,4.56,17.6233333333,19.5,29.39,23.1333333333,41.9666666667,19.6,38.79,5.6333333333,766,72.3333333333,1,40,0.9833333333,31.998413126,31.998413126 -60,0,21.9633333333,35.4333333333,19.1,37.4,22.2,35.76,20.7,34,19.89,50.23,4.5,17.69,19.4266666667,29.3233333333,23.1,42.3,19.6,38.8633333333,5.5,766,73,1,40,1,38.8727607438,38.8727607438 -50,0,21.89,35.56,19.1,37.4,22.2,35.7,20.7,34,19.89,50.06,4.3666666667,17.93,19.4266666667,29.3233333333,23.1,42.6933333333,19.6,38.9,5.2,765.9333333333,75.3333333333,1,40,1.1166666667,21.8259007204,21.8259007204 -50,0,21.89,35.59,19,37.4333333333,22.2,35.73,20.7,34.09,19.89,49.86,4.16,18.5966666667,19.39,29.29,23.1,42.9633333333,19.6,38.9666666667,4.9,765.8666666667,77.6666666667,1,40,1.2333333333,0.6428330904,0.6428330904 -50,0,21.8233333333,35.53,18.9175,37.5225,22.2,35.73,20.7,34.09,19.89,49.6633333333,3.76,18.9,19.4725,29.365,23.1,43.1633333333,19.6,39.03,4.6,765.8,80,1,40,1.35,27.1855985979,27.1855985979 -50,0,21.79,35.53,18.8233333333,37.53,22.2,35.79,20.7,34.2,19.89,49.4975,3.595,20.2425,19.4266666667,29.39,23,43.03,19.6,39.1633333333,4.3,765.7333333333,82.3333333333,1,40,1.4666666667,32.6382321189,32.6382321189 -50,0,21.73,35.59,18.79,37.59,22.2,35.73,20.7,34.2,19.89,49.2666666667,3.4333333333,21.7633333333,19.39,29.39,23,43.1175,19.6,39.2,4,765.6666666667,84.6666666667,1,40,1.5833333333,39.634100988,39.634100988 -20,0,21.7,35.59,18.79,37.6633333333,22.2,35.7,20.6666666667,34.2,19.79,48.9666666667,3.1333333333,23.0233333333,19.39,29.39,23,43.1266666667,19.6,39.2,3.7,765.6,87,1,40,1.7,11.125006096,11.125006096 -40,0,21.7,35.59,18.7,37.73,22.2,35.7,20.6,34.2,19.79,48.8266666667,2.9333333333,23.83,19.39,29.39,22.89,42.93,19.6,39.2,3.65,765.5833333333,87,1,40,1.65,24.3342147092,24.3342147092 -30,0,21.7,35.59,18.7,37.8633333333,22.23,35.59,20.6,34.2,19.79,48.6633333333,2.7,24.8,19.39,29.39,22.89,42.73,19.6,39.2,3.6,765.5666666667,87,1,40,1.6,21.8186064507,21.8186064507 -50,0,21.6,35.5,18.6,37.9,22.23,35.53,20.6,34.2,19.79,48.53,2.7,25.5933333333,19.39,29.4633333333,22.89,42.4666666667,19.6,39.2,3.55,765.55,87,1,40,1.55,20.5745258369,20.5745258369 -60,0,21.6,35.5,18.6,37.9,22.2,35.5,20.6,34.29,19.79,48.3633333333,2.73,27.1933333333,19.39,29.4633333333,22.89,42.4,19.6,39.2,3.5,765.5333333333,87,1,40,1.5,45.8540488966,45.8540488966 -40,0,21.5,35.59,18.5666666667,38,22.2675,35.595,20.6,34.29,19.79,48.29,2.79,28.7333333333,19.39,29.4266666667,22.79,42.23,19.6666666667,39.3633333333,3.45,765.5166666667,87,1,40,1.45,27.6918227086,27.6918227086 -50,0,21.5,35.59,18.5,38,22.29,35.7,20.5,34.3266666667,19.76,48.1633333333,2.76,30.1,19.39,29.5,22.79,42.29,19.6,39.29,3.4,765.5,87,1,40,1.4,26.9604443223,26.9604443223 -50,0,21.5,35.7,18.5,38.09,22.29,35.73,20.5,34.4,19.76,47.9633333333,2.5666666667,30.3666666667,19.39,29.5,22.76,42.29,19.6,39.4,3.1666666667,765.4833333333,88,1,40,1.3166666667,5.9828143683,5.9828143683 -50,0,21.5,35.7,18.4266666667,38.09,22.29,35.79,20.5,34.4,19.7,47.8633333333,2.3633333333,31.3633333333,19.39,29.5,22.7,42.29,19.6,39.4,2.9333333333,765.4666666667,89,1,40,1.2333333333,36.8440026417,36.8440026417 -60,0,21.39,35.6266666667,18.39,38.09,22.3233333333,35.79,20.5,34.4,19.7,47.73,2.23,32.43,19.39,29.5,22.7,42.4,19.6,39.4666666667,2.7,765.45,90,1,40,1.15,30.9289137251,30.9289137251 -60,0,21.39,35.7,18.39,38.09,22.39,35.8633333333,20.5,34.4,19.7,47.56,2.1633333333,33.5933333333,19.39,29.5,22.7,42.4,19.6,39.5,2.4666666667,765.4333333333,91,1,40,1.0666666667,14.5624109311,14.5624109311 -50,0,21.39,35.7,18.3233333333,38.2,22.39,35.9333333333,20.5,34.4,19.7,47.5,2.09,34.0666666667,19.39,29.5,22.6666666667,42.2233333333,19.6,39.56,2.2333333333,765.4166666667,92,1,40,0.9833333333,24.8539354187,24.8539354187 -50,0,21.3233333333,35.7,18.3233333333,38.2,22.39,35.9333333333,20.5,34.4,19.7,47.3633333333,1.9666666667,33.7633333333,19.39,29.5,22.6,42.03,19.6,39.59,2,765.4,93,1,40,0.9,36.7862533429,36.7862533429 -50,0,21.29,35.79,18.29,38.29,22.4266666667,36.03,20.39,34.29,19.7,47.23,1.9,34.5633333333,19.39,29.5,22.6,42.03,19.6,39.59,2.0333333333,765.35,92.3333333333,1,38,0.85,45.7918693894,45.7918693894 -50,0,21.29,35.79,18.29,38.29,22.5,36.09,20.39,34.29,19.7,47.09,1.9,35.745,19.39,29.5,22.6,42.03,19.6666666667,39.7,2.0666666667,765.3,91.6666666667,1,36,0.8,15.8379553468,15.8379553468 -50,0,21.29,35.79,18.2,38.29,22.5,36.2,20.39,34.29,19.7,47.03,1.7266666667,35.79,19.39,29.6,22.5666666667,41.9,19.6,39.7,2.1,765.25,91,1,34,0.75,9.7643449903,9.7643449903 -60,0,21.23,35.79,18.2,38.29,22.5,36.26,20.39,34.29,19.6,46.8633333333,1.5333333333,35.79,19.39,29.6,22.5,41.8266666667,19.6333333333,39.73,2.1333333333,765.2,90.3333333333,1,32,0.7,30.014942179,30.014942179 -50,0,21.2,35.9,18.1333333333,38.3633333333,22.5,36.23,20.39,34.29,19.6,46.7675,1.39,36.2333333333,19.39,29.6,22.5,41.8266666667,19.6333333333,39.73,2.1666666667,765.15,89.6666666667,1,30,0.65,9.6408493584,9.6408493584 -70,0,21.2,35.9,18.1,38.4666666667,22.5,36.29,20.39,34.29,19.6666666667,46.7,1.3233333333,37.0266666667,19.39,29.6,22.5,41.8266666667,19.6,39.79,2.2,765.1,89,1,28,0.6,35.9412191086,35.9412191086 -70,0,21.2,35.89,18.1,38.5266666667,22.4633333333,36.2233333333,20.3566666667,34.29,19.6666666667,46.56,1.29,37.6666666667,19.39,29.6666666667,22.445,41.745,19.6,39.79,2.1333333333,765.0666666667,89.3333333333,1,28,0.5833333333,10.5632782681,10.5632782681 -40,10,21.2,36.195,18.1,39.2266666667,22.39,35.89,20.29,34.23,19.6,46.5,1.34,38.1,19.39,29.6333333333,22.39,41.7,19.6,39.79,2.0666666667,765.0333333333,89.6666666667,1,28,0.5666666667,13.7321805232,13.7321805232 -40,0,21.2,36.29,18.0333333333,39.6333333333,22.29,35.7233333333,20.29,34.29,19.6,46.5,1.3566666667,38.4333333333,19.39,29.7,22.39,41.7,19.6,39.79,2,765,90,1,28,0.55,22.0156138996,22.0156138996 -230,0,21.2,36.26,18,39.9333333333,22.23,35.4633333333,20.29,34.29,19.6,46.5,1.29,38.7666666667,19.3233333333,29.7,22.39,41.7,19.6,39.76,1.9333333333,764.9666666667,90.3333333333,1,28,0.5333333333,15.909245098,15.909245098 -170,0,21.2,36.2,18,40,22.2,35.26,20.29,34.23,19.6,46.5,1.39,39.2666666667,19.39,29.7,22.3233333333,41.7,19.6,39.76,1.8666666667,764.9333333333,90.6666666667,1,28,0.5166666667,8.6625897209,8.6625897209 -60,0,21.2,36.1566666667,18,40.09,22.125,35.145,20.29,34.23,19.6,46.5,1.4633333333,39.6,19.3233333333,29.7,22.29,41.7,19.6,39.7,1.8,764.9,91,1,28,0.5,19.7348159971,19.7348159971 -70,0,21.2,36.29,18,40.1633333333,22.1,35.2,20.29,34.29,19.6,46.4,1.5333333333,39.79,19.39,29.7,22.29,41.7,19.6,39.7,1.7833333333,764.8333333333,91.5,1,27.8333333333,0.55,29.5223487075,29.5223487075 -90,0,21.2,36.4333333333,18,40.2,22.1,35.1633333333,20.29,34.29,19.6,46.2666666667,1.6,39.93,19.29,29.7,22.29,41.76,19.6,39.59,1.7666666667,764.7666666667,92,1,27.6666666667,0.6,23.1872835662,23.1872835662 -80,0,21.2,36.4333333333,18,40.2,22.1,35.09,20.26,34.3633333333,19.6,46.29,1.73,40.1933333333,19.29,29.7,22.29,41.5666666667,19.6,39.48,1.75,764.7,92.5,1,27.5,0.65,37.8792620846,37.8792620846 -80,0,21.2,36.4,18,40.29,22.1,35.06,20.2,34.3633333333,19.6,46.23,1.93,40.66,19.29,29.7,22.29,41.3333333333,19.5714285714,39.3685714286,1.7333333333,764.6333333333,93,1,27.3333333333,0.7,34.8150713136,34.8150713136 -80,0,21.2,36.3266666667,18.0666666667,40.3633333333,22.1,35,20.2,34.53,19.6,46.1633333333,2.1566666667,40.9333333333,19.29,29.7,22.23,41,19.56,39.2,1.7166666667,764.5666666667,93.5,1,27.1666666667,0.75,33.3892885013,33.3892885013 -80,0,21.2,36.4333333333,18.1,40.4,22.2,35,20.32,34.8425,19.6,46.09,2.4975,41,19.33,29.7,22.1666666667,40.76,19.5,39.1242857143,1.7,764.5,94,1,27,0.8,20.6602417515,20.6602417515 -80,0,21.2,36.5,18.1,40.4,22.2,34.9333333333,20.5666666667,35.26,19.5666666667,45.9666666667,2.9,41.06,19.3471428571,29.7385714286,22.1666666667,40.5666666667,19.5,38.918,2.2666666667,764.5,92.3333333333,1,29.1666666667,1.1,47.7775158011,47.7775158011 -70,0,21.2,36.73,18.1333333333,40.29,22.2,34.9,20.7633333333,35.5666666667,19.5,45.9,3.4266666667,41.7333333333,19.29,29.736,22.1,40.3333333333,19.5,38.7642857143,2.8333333333,764.5,90.6666666667,1,31.3333333333,1.4,20.4417064204,20.4417064204 -80,0,21.2,36.79,18.2,40.29,22.2,34.9,20.9633333333,35.7,19.5,45.8633333333,4.1,43,19.3614285714,29.7642857143,22.1,40.1266666667,19.5,38.554,3.4,764.5,89,1,33.5,1.7,5.1294840989,5.1294840989 -340,0,21.2,36.79,18.3233333333,40.29,22.2,34.8266666667,21.1333333333,35.79,19.5,45.79,5.4566666667,45.8,19.33,29.79,22,39.9,19.5,38.3671428571,3.9666666667,764.5,87.3333333333,1,35.6666666667,2,21.7619721894,21.7619721894 -370,0,21.2,36.73,18.6725,40.2475,22.2,34.9,21.2,35.6566666667,19.5,45.7,6.8566666667,45.0666666667,19.39,29.79,22.0666666667,39.8266666667,19.56,38.038,4.5333333333,764.5,85.6666666667,1,37.8333333333,2.3,43.5140906251,43.5140906251 -80,0,21.2,36.73,19.5,39.36,22.29,34.8633333333,21.29,35.73,19.575,45.595,8.46,37.03,19.39,29.79,22,39.6633333333,19.6714285714,37.7642857143,5.1,764.5,84,1,40,2.6,1.7259619432,1.7259619432 -50,0,21.26,36.93,20.3,38.2333333333,22.3566666667,34.73,21.29,35.8633333333,19.5333333333,45.4333333333,9.5333333333,29.7633333333,19.39,29.79,22,39.53,19.7,37.7,5.6666666667,764.4833333333,82,1,38.1666666667,2.7666666667,29.8652770813,29.8652770813 -50,0,21.29,37,20.8333333333,37.5666666667,22.5333333333,34.6633333333,21.3566666667,35.8633333333,19.5666666667,45.3333333333,10.7,19.2,19.39,29.7675,22,39.4,19.7,37.84,6.2333333333,764.4666666667,80,1,36.3333333333,2.9333333333,40.1888155495,40.1888155495 -40,0,21.29,37.06,21.6666666667,36.5566666667,22.6,34.53,21.3566666667,35.79,19.5,45.2,11.4333333333,9.6,19.39,29.7,22,39.295,19.754,37.9,6.8,764.45,78,1,34.5,3.1,4.2515508947,4.2515508947 -50,0,21.29,37.145,22.3333333333,35.6966666667,22.6,34.5,21.39,35.79,19.5333333333,45.06,12.3566666667,4.36,19.39,29.7,21.9266666667,39.1266666667,19.79,37.9,7.3666666667,764.4333333333,76,1,32.6666666667,3.2666666667,10.8718181611,10.8718181611 -50,0,21.39,37.09,22.9266666667,34.6233333333,22.6,34.5,21.39,35.79,19.6,44.9333333333,13.0233333333,2.2333333333,19.39,29.7,21.89,39,19.79,37.9,7.9333333333,764.4166666667,74,1,30.8333333333,3.4333333333,12.5225683674,12.5225683674 -50,0,21.39,36.9633333333,23.3266666667,33.6233333333,22.5666666667,34.53,21.5333333333,35.9,19.5333333333,44.8633333333,13.6666666667,1,19.39,29.7,21.89,38.9333333333,19.8185714286,37.9285714286,8.5,764.4,72,1,29,3.6,11.4382653031,11.4382653031 -60,0,21.4266666667,36.79,23.7633333333,32.9233333333,22.5,34.59,21.6,35.6266666667,19.5333333333,44.73,14,1,19.39,29.6,21.89,38.76,19.79,37.96,8.9333333333,764.35,69.6666666667,1.1666666667,29,3.5166666667,42.3105957452,42.3105957452 -50,0,21.5,36.73,24.03,32.39,22.5,34.7,21.7,35.56,19.5,44.59,14.43,1,19.39,29.5428571429,21.89,38.7,19.79,38,9.3666666667,764.3,67.3333333333,1.3333333333,29,3.4333333333,22.5649531116,22.5649531116 -70,0,21.5,36.6633333333,24.4266666667,31.8266666667,22.5,34.79,21.76,35.4333333333,19.5666666667,44.53,14.8966666667,1,19.39,29.54,21.8233333333,38.5666666667,19.79,38.2,9.8,764.25,65,1.5,29,3.35,9.743787453,9.743787453 -50,0,21.5,36.59,24.6333333333,31.5666666667,22.5,34.79,21.9266666667,35.4666666667,19.5,44.4,15.2566666667,1,19.39,29.5,21.8233333333,38.5666666667,19.79,38.2514285714,10.2333333333,764.2,62.6666666667,1.6666666667,29,3.2666666667,36.5159636945,36.5159636945 -50,0,21.6,36.5,24.8233333333,31.26,22.5333333333,34.9333333333,22,35.4,19.5666666667,44.3266666667,15.59,1,19.434,29.6,21.79,38.5,19.79,38.356,10.6666666667,764.15,60.3333333333,1.8333333333,29,3.1833333333,42.6824770286,42.6824770286 -60,0,21.6,36.5,24.89,31.0666666667,22.6,34.9333333333,22.1,35.3633333333,19.6,44.29,16.045,1,19.4685714286,29.6571428571,21.79,38.5,19.8328571429,38.4714285714,11.1,764.1,58,2,29,3.1,2.3773720022,2.3773720022 -50,0,21.6333333333,36.5,25.1,30.76,22.6,35.03,22.125,35.29,19.6,44.23,16.3233333333,1,19.456,29.66,21.79,38.5,19.79,38.5,11.4083333333,764.0583333333,56.3333333333,2.0833333333,29.9166666667,2.8833333333,48.0344107258,48.0344107258 -50,0,21.6333333333,36.4333333333,25.1,30.6333333333,22.6,35.09,22.2,35.23,19.6,44.1633333333,16.53,1,19.5,29.7,21.79,38.4333333333,19.79,38.5,11.7166666667,764.0166666667,54.6666666667,2.1666666667,30.8333333333,2.6666666667,19.2095855135,19.2095855135 -50,0,21.7,36.4666666667,25.1,30.5,22.6,35.09,22.29,35.1633333333,19.6,44.09,16.8233333333,1,19.5,29.7,21.79,38.4,19.79,38.46,12.025,763.975,53,2.25,31.75,2.45,18.1479136692,18.1479136692 -50,0,21.7,36.4,25.1,30.5,22.6,35.09,22.29,35.09,19.6,44,16.9633333333,1,19.5,29.7,21.79,38.3266666667,19.8025,38.4375,12.3333333333,763.9333333333,51.3333333333,2.3333333333,32.6666666667,2.2333333333,22.5428271689,22.5428271689 -60,0,21.7,36.3633333333,25.1,30.4633333333,22.6,35.1266666667,22.3233333333,34.9666666667,19.6,44,17.0333333333,1,19.5,29.64,21.76,38.26,19.8185714286,38.4285714286,12.6416666667,763.8916666667,49.6666666667,2.4166666667,33.5833333333,2.0166666667,12.0278872084,12.0278872084 -50,0,21.76,36.3633333333,25.1,30.39,22.6,35.2,22.39,34.9,19.6,43.9666666667,17.2266666667,1,19.5,29.6,21.76,38.1266666667,19.79,38.356,12.95,763.85,48,2.5,34.5,1.8,4.0170744178,4.0170744178 -60,0,21.79,36.4,25,30.39,22.6,35.2,22.4266666667,34.79,19.6,43.9,17.2266666667,1,19.54,29.56,21.76,38.09,19.8185714286,38.3214285714,13.2583333333,763.8083333333,46.3333333333,2.5833333333,35.4166666667,1.5833333333,34.9038678803,34.9038678803 -50,0,21.79,36.4,25,30.3566666667,22.6,35.2,22.5,34.73,19.6,43.9,17.2933333333,1,19.5714285714,29.5,21.7,38.03,19.79,38.272,13.5666666667,763.7666666667,44.6666666667,2.6666666667,36.3333333333,1.3666666667,0.6786637823,0.6786637823 -50,0,21.89,36.3633333333,24.9266666667,30.29,22.6,35.2,22.5,34.59,19.6,43.8633333333,17.5,1,19.6,29.5,21.7,37.9,19.79,38.2,13.875,763.725,43,2.75,37.25,1.15,19.221518666,19.221518666 -50,0,21.89,36.29,24.89,30.29,22.6,35.2,22.5,34.53,19.6,43.79,17.5666666667,1,19.6,29.4528571429,21.7,37.8266666667,19.79,38.09,14.1833333333,763.6833333333,41.3333333333,2.8333333333,38.1666666667,0.9333333333,24.5740974206,24.5740974206 -50,0,21.89,36.4,24.8233333333,30.23,22.6,35.2,22.5333333333,34.5,19.6,43.76,17.6966666667,1,19.6,29.39,21.7,37.79,19.8042857143,38.0514285714,14.4916666667,763.6416666667,39.6666666667,2.9166666667,39.0833333333,0.7166666667,27.1596556879,27.1596556879 -60,0,21.9266666667,36.3333333333,24.76,30.23,22.6,35.2,22.6,34.4333333333,19.6,43.7,17.8233333333,1,19.6571428571,29.4528571429,21.7,37.7,19.83,38.016,14.8,763.6,38,3,40,0.5,13.1487975479,13.1487975479 -70,0,22,36.2,24.7,30.29,22.6,35.2,22.6,34.29,19.6333333333,43.73,17.96,1,19.7,29.5,21.76,37.76,19.8185714286,37.9,14.9083333333,763.5166666667,37.75,3,38.9166666667,0.5083333333,0.4900829284,0.4900829284 -80,0,22.0333333333,36.09,24.7,30.29,22.6,35.2,22.6,34.23,19.6333333333,43.73,18.0333333333,1,19.7,29.4214285714,21.9266666667,37.9,19.83,37.834,15.0166666667,763.4333333333,37.5,3,37.8333333333,0.5166666667,41.5133999195,41.5133999195 -100,0,22.1,36.03,24.6333333333,30.23,22.6,35.2,22.6,34.1633333333,19.6666666667,43.7233333333,18.23,1,19.79,29.29,22.0666666667,38.0266666667,19.8042857143,37.7542857143,15.125,763.35,37.25,3,36.75,0.525,31.2866389984,31.2866389984 -90,0,22.1333333333,35.9,24.5,30.29,22.5333333333,35.29,22.6,34.03,19.6,43.59,18.43,1,19.83,29.33,22.23,38.23,19.79,37.7,15.2333333333,763.2666666667,37,3,35.6666666667,0.5333333333,9.7293429426,9.7293429426 -90,0,22.2,35.8266666667,24.4266666667,30.29,22.6,35.29,22.6,34,19.6,43.59,18.5666666667,1,19.89,29.3328571429,22.29,38.29,19.79,37.6214285714,15.3416666667,763.1833333333,36.75,3,34.5833333333,0.5416666667,19.8061214993,19.8061214993 -70,0,22.2,35.79,24.3566666667,30.4266666667,22.6,35.3266666667,22.6,34,19.6666666667,43.6633333333,18.6333333333,1,19.956,29.236,22.4266666667,38.4333333333,19.79,37.59,15.45,763.1,36.5,3,33.5,0.55,49.7626935015,49.7626935015 -80,0,22.26,35.79,24.23,30.5,22.6,35.3266666667,22.6,33.9,19.7,43.6633333333,18.89,1,20,29.1,22.5,38.56,19.79,37.5128571429,15.5583333333,763.0166666667,36.25,3,32.4166666667,0.5583333333,33.3306121174,33.3306121174 -70,0,22.29,35.7,24.1,30.5333333333,22.6333333333,35.36,22.6,33.795,19.7,43.59,19.095,1,20.1,28.956,22.6,38.56,19.79,37.5,15.6666666667,762.9333333333,36,3,31.3333333333,0.5666666667,33.9469723171,33.9469723171 -90,0,22.3566666667,35.7,24.1,30.6666666667,22.7,35.5,22.5333333333,33.6266666667,20.9266666667,76.3666666667,19.43,1,20.1,28.82,22.6,38.3,19.79,37.4285714286,15.775,762.85,35.75,3,30.25,0.575,7.650498196,7.650498196 -80,0,22.39,35.6633333333,24,30.7,22.73,35.4,22.6,33.59,21.9933333333,83.9666666667,19.7,1,20.16,28.62,22.6,38.33,19.79,37.4,15.8833333333,762.7666666667,35.5,3,29.1666666667,0.5833333333,43.5487261042,43.5487261042 -100,0,22.39,35.59,24,30.76,22.79,35.4,22.5333333333,33.59,21.43,85.4633333333,19.8266666667,1,20.2,28.4685714286,22.6666666667,38.8633333333,19.79,37.3057142857,15.9916666667,762.6833333333,35.25,3,28.0833333333,0.5916666667,16.547954292,16.547954292 -90,0,22.4633333333,35.6633333333,24,30.79,22.79,35.4,22.6,33.56,21.1633333333,85.3966666667,19.9266666667,1,20.29,28.456,22.79,39.1266666667,19.79,37.272,16.1,762.6,35,3,27,0.6,33.3992371801,33.3992371801 -80,0,22.4633333333,35.59,23.9266666667,30.79,22.79,35.4,22.6,33.5,20.9633333333,85.1233333333,20.1933333333,1,20.3471428571,28.3328571429,22.79,39.2,19.79,37.2,16.1833333333,762.5166666667,34.5,3,29.1666666667,0.4833333333,40.099792392,40.099792392 -80,0,22.5,35.59,23.89,30.8233333333,22.89,35.5,22.6,33.5,20.89,85.19,20.29,1,20.39,28.29,22.9266666667,39.29,19.79,37.09,16.2666666667,762.4333333333,34,3,31.3333333333,0.3666666667,45.3224172699,45.3224172699 -80,0,22.5,35.59,23.8233333333,30.89,22.89,35.4333333333,22.5333333333,33.5,20.745,85.09,20.43,1,20.4214285714,28.3185714286,23,39.29,19.79,37.0771428571,16.35,762.35,33.5,3,33.5,0.25,1.2874469394,1.2874469394 -70,0,22.5,35.6633333333,23.84,30.945,22.89,35.5,22.6,33.59,20.7,84.6333333333,20.3566666667,1,20.5,28.29,23.1,39.29,19.79,37,16.4333333333,762.2666666667,33,3,35.6666666667,0.1333333333,19.6076969267,19.6076969267 -80,0,22.5666666667,35.59,23.76,30.9266666667,22.89,35.5,22.6,33.59,20.7,83.7666666667,20.29,1,20.5857142857,28.2128571429,23.1666666667,39.23,19.79,37,16.5166666667,762.1833333333,32.5,3,37.8333333333,0.0166666667,5.9928414528,5.9928414528 -90,0,22.6,35.59,23.7,31.0666666667,22.89,35.4333333333,22.6,33.6266666667,20.7,82.83,20.29,1,20.6,28.218,23.2,39.2,19.79,36.9714285714,16.6,762.1,32,3,40,-0.1,18.0730108288,18.0730108288 -90,0,22.6,35.59,23.7,31.1633333333,22.89,35.5,22.6,33.7,20.7,82.5633333333,20.3566666667,1,20.6714285714,28.3614285714,23.26,39.26,19.79,36.9,16.6166666667,762.05,32.5,3.1666666667,38.1666666667,0.1,25.1339885406,25.1339885406 -80,0,22.6,35.59,23.7,31.29,22.89,35.5,22.6,33.8266666667,20.6,82.0266666667,20.3566666667,1,20.7,28.434,23.29,39.29,19.79,36.9,16.6333333333,762,33,3.3333333333,36.3333333333,0.3,18.8896070467,18.8896070467 -80,0,22.7,35.7,23.6666666667,31.39,22.9633333333,35.5,22.6,33.9,20.6,81.5666666667,20.29,1,20.7385714286,28.5714285714,23.39,39.36,19.79,36.9,16.65,761.95,33.5,3.5,34.5,0.5,13.5306451004,13.5306451004 -70,0,22.7,35.76,23.6,31.4633333333,23,35.5,22.5333333333,34,20.5,80.2933333333,20.2,1,20.79,28.718,23.4633333333,39.6333333333,19.79,36.9714285714,16.6666666667,761.9,34,3.6666666667,32.6666666667,0.7,21.1140982108,21.1140982108 -80,0,22.7,35.79,23.5,31.6333333333,23,35.5,22.6,34.06,20.5,78.5,20.2,1,20.79,28.8614285714,23.5,39.9333333333,19.79,37,16.6833333333,761.85,34.5,3.8333333333,30.8333333333,0.9,26.0697099264,26.0697099264 -60,0,22.7,35.8633333333,23.5,31.76,23,35.5,22.5666666667,34.2,20.39,75.7933333333,20.2,1,20.79,29.04,23.5,40,19.79,37,16.7,761.8,35,4,29,1.1,20.1685003587,20.1685003587 -40,0,22.6333333333,35.9333333333,23.5,32.03,23,35.5,22.5,34.26,20.39,74.1266666667,20.3266666667,1,20.79,29.2514285714,23.5,40,19.79,37.04,16.6666666667,761.7,37.1666666667,3.8333333333,30.8333333333,1.8,6.9882454933,6.9882454933 -50,0,22.7,36,23.5,32.09,23,35.5,22.5,34.4,20.39,71.8966666667,20.6,1,20.79,29.432,23.5,40,19.79,37.2,16.6333333333,761.6,39.3333333333,3.6666666667,32.6666666667,2.5,30.353367771,30.353367771 -70,0,22.7,36.09,23.4633333333,32.23,22.89,35.53,22.5,34.4666666667,20.3233333333,70.03,20.2666666667,1,20.79,29.6285714286,23.5333333333,40.09,19.79,37.29,16.6,761.5,41.5,3.5,34.5,3.2,30.1456571557,30.1456571557 -90,0,22.7,36.1633333333,23.39,32.3633333333,22.89,35.6633333333,22.5,34.645,20.3566666667,66.73,19.545,1,20.79,30.18125,23.5333333333,40.1633333333,19.79,37.29,16.5666666667,761.4,43.6666666667,3.3333333333,36.3333333333,3.9,13.7984394911,13.7984394911 -320,0,22.7,36.4333333333,23.26,32.6266666667,22.89,35.76,22.5,34.8266666667,20.29,64.2566666667,19.1666666667,1,20.736,30.64,23.6,40.1266666667,19.79,37.312,16.5333333333,761.3,45.8333333333,3.1666666667,38.1666666667,4.6,28.4469825448,28.4469825448 -330,0,22.6333333333,36.36,23.2,32.76,22.89,35.76,22.5,34.9666666667,20.29,61.2233333333,18.8933333333,1,20.7128571429,30.9114285714,23.6,40.0666666667,19.79,37.4,16.5,761.2,48,3,40,5.3,7.5336408569,7.5336408569 -270,10,22.6333333333,36.8333333333,23.1666666667,33,22.89,35.79,22.5,35.3,20.29,59.2966666667,18.73,1,20.7,31.24,23.6,40,19.79,37.44,16.4166666667,761.15,49.1666666667,3.1666666667,40,5.55,19.3427863647,19.3427863647 -260,10,22.7,37.4333333333,23.1,33.3333333333,22.89,35.8633333333,22.5,35.6333333333,20.23,57.5266666667,18.79,1,20.7,31.7957142857,23.6,40.06,19.79,37.5,16.3333333333,761.1,50.3333333333,3.3333333333,40,5.8,17.3684995854,17.3684995854 -240,10,22.73,37.2,23.0666666667,33.6266666667,22.9266666667,35.8266666667,22.5,36.0666666667,20.23,56.3933333333,18.2933333333,1.2333333333,20.7,32.58,23.6,40.23,19.79,37.518,16.25,761.05,51.5,3.5,40,6.05,9.8543992382,9.8543992382 -210,0,22.79,37.1266666667,23,33.76,23,35.9,22.5,36.3333333333,20.2,55.3,18.0333333333,2.0333333333,20.7,33.1242857143,23.6,40.3633333333,19.79,37.59,16.1666666667,761,52.6666666667,3.6666666667,40,6.3,39.4165736041,39.4165736041 -280,0,22.89,37.23,23,34.0666666667,23,35.9,22.5,36.5,20.2,54.37,17.76,3.1233333333,20.736,33.698,23.6,40.6266666667,19.79,37.7,16.0833333333,760.95,53.8333333333,3.8333333333,40,6.55,34.3190582935,34.3190582935 -170,0,22.9633333333,37.43,23,34.3975,23,35.9666666667,22.5,36.5,20.2,53.7266666667,17.1666666667,4.7966666667,20.7642857143,34.2257142857,23.6,40.745,19.79,37.7928571429,16,760.9,55,4,40,6.8,21.9020018703,21.9020018703 -120,0,23.0666666667,37.83,22.9266666667,34.8633333333,23,36.03,22.5,36.59,20.2,53.1933333333,16.7266666667,6.46,20.736,34.634,23.675,40.845,19.79,37.92,15.8,760.85,57,4,40,7.1166666667,16.5636588936,16.5636588936 -100,0,23.2,38.4233333333,22.9633333333,35.5,23.0666666667,36.1633333333,22.5,36.79,20.2,52.9333333333,16.5333333333,6.9333333333,20.7128571429,34.7514285714,23.6333333333,40.6566666667,19.79,38.0257142857,15.6,760.8,59,4,40,7.4333333333,13.8803974376,13.8803974376 -120,0,23.2,38.745,22.89,35.9,23.1,36.29,22.5,36.9,20.2,52.7233333333,16.3566666667,7.03,20.7,34.856,23.6,40.9633333333,19.79,38.134,15.4,760.75,61,4,40,7.75,15.1133870007,15.1133870007 -120,10,23.2,38.99,22.8566666667,36.3266666667,23.1,36.3633333333,22.5,36.9666666667,20.2,52.53,16.195,7.34,20.7,35.0285714286,23.675,41.24,19.79,38.2514285714,15.2,760.7,63,4,40,8.0666666667,26.5682857716,26.5682857716 -130,0,23.1333333333,38.79,22.79,36.4,23.1,36.53,22.5,37.1566666667,20.23,51.89,16,7.66,20.79,36.036,23.7,41.29,19.79,38.29,15,760.65,65,4,40,8.3833333333,9.3134580413,9.3134580413 -130,0,23.1,38.7,22.7,36.4333333333,23.1,36.6175,22.5,37.3633333333,20.29,50.3633333333,15.9266666667,8.06,20.7642857143,36.3685714286,23.7,41.29,19.79,38.4475,14.8,760.6,67,4,40,8.7,33.5560207837,33.5560207837 -120,0,23.1,38.6266666667,22.6333333333,36.5,23.1,36.76,22.5,37.5666666667,20.39,49.1633333333,15.66,8.49,20.79,36.63,23.745,41.29,19.79,38.5,14.6833333333,760.5666666667,67.3333333333,3.8333333333,40,8.6666666667,6.2356096343,6.2356096343 -120,0,23.1,38.59,22.5,36.6266666667,23.1,36.79,22.5,37.7,20.3233333333,49.3633333333,15.5333333333,8.9633333333,20.79,36.8214285714,23.79,41.29,19.79,38.59,14.5666666667,760.5333333333,67.6666666667,3.6666666667,40,8.6333333333,36.0653712181,36.0653712181 -140,10,23.1,38.59,22.5,36.7,23.1,36.79,22.5,37.79,20.29,49.8,15.2633333333,9.5266666667,20.89,37.236,23.79,41.29,19.8042857143,38.6185714286,14.45,760.5,68,3.5,40,8.6,16.719685914,16.719685914 -150,0,23.0666666667,38.56,22.3566666667,36.8266666667,23.1,36.8633333333,22.5,37.79,20.23,50,15.13,10.3933333333,20.89,37.3671428571,23.79,41.29,19.83,38.736,14.3333333333,760.4666666667,68.3333333333,3.3333333333,40,8.5666666667,17.7168943803,17.7168943803 -150,30,23,38.5,22.29,36.9666666667,23.0333333333,36.79,22.5,37.95,20.2,50.09,14.595,14,20.89,37.54,23.79,41.29,19.79,38.7642857143,14.2166666667,760.4333333333,68.6666666667,3.1666666667,40,8.5333333333,16.5725681814,16.5725681814 -150,20,23,38.5,22.2,37.1266666667,23.1,36.9,22.5333333333,38.1266666667,20.2,50.09,14.16,15.2566666667,20.89,37.7642857143,23.89,41.5,19.79,38.9,14.1,760.4,69,3,40,8.5,28.8293433376,28.8293433376 -140,20,23,38.56,22.1333333333,37.26,23.0333333333,36.8266666667,22.6,38.26,20.1333333333,50.06,14.0333333333,15.59,20.934,37.94,23.9633333333,41.5,19.79,38.9142857143,13.9666666667,760.4333333333,70.1666666667,3,40,8.6,45.4845867935,45.4845867935 -130,0,22.9266666667,38.59,22.0666666667,37.4333333333,23,36.79,22.6,38.5,20.2,50,13.7633333333,16.1966666667,20.9685714286,38.14,24.0333333333,41.5,19.79,39,13.8333333333,760.4666666667,71.3333333333,3,40,8.7,38.1631911034,38.1631911034 -100,0,22.9266666667,38.59,22,37.6333333333,23,36.79,22.6,38.5,20.1,49.9666666667,13.63,16.53,21,38.296,24.1,41.5,19.8328571429,39.1114285714,13.7,760.5,72.5,3,40,8.8,6.225892494,6.225892494 -80,0,22.89,38.6266666667,21.89,37.9633333333,23.0666666667,36.9,22.6,38.4,20.1,49.9,13.5,17.3966666667,21,38.5642857143,24.1,41.6566666667,19.79,39.2,13.5666666667,760.5333333333,73.6666666667,3,40,8.9,19.621239556,19.621239556 -60,10,22.89,38.76,21.89,38.1633333333,23,36.9,22.6,38.4,20.1,49.79,13.4266666667,17.9966666667,21,38.634,24.0333333333,41.93,19.79,39.2514285714,13.4333333333,760.5666666667,74.8333333333,3,40,9,47.3056611721,47.3056611721 -30,20,22.89,38.8266666667,21.79,38.3266666667,23,36.9333333333,22.6,38.29,20.1,49.79,13.2633333333,18.9,21.025,38.7225,24,42.23,19.79,39.29,13.3,760.6,76,3,40,9.1,46.3461937848,46.3461937848 -40,20,22.89,38.9,21.7225,38.4975,23,37,22.6,38.3633333333,20.1,49.8633333333,13.13,20.0933333333,21,38.8842857143,24,42.49,19.8328571429,39.3371428571,13.1333333333,760.6,77.1666666667,2.8333333333,40,9.1666666667,11.2389727379,11.2389727379 -40,20,22.79,38.79,21.7,38.6633333333,23,37.03,22.6,38.53,20.1,50.03,13.0666666667,20.7333333333,21,38.9,24,42.8266666667,19.79,39.29,12.9666666667,760.6,78.3333333333,2.6666666667,40,9.2333333333,35.2944008657,35.2944008657 -80,30,22.79,38.79,21.5666666667,38.7,23,37.1633333333,22.6,38.6633333333,20.1,50.1633333333,12.9266666667,21.5266666667,21,38.9,23.9266666667,43.1,19.79,39.29,12.8,760.6,79.5,2.5,40,9.3,23.9065511036,23.9065511036 -70,20,22.79,38.79,21.5,38.76,23,37.23,22.6333333333,38.7666666667,20.1,50.23,12.7633333333,23.0333333333,21,38.96,23.89,43.4333333333,19.79,39.29,12.6333333333,760.6,80.6666666667,2.3333333333,40,9.3666666667,23.6292087357,23.6292087357 -60,20,22.7225,38.79,21.4633333333,38.8633333333,23,37.29,22.7,38.9,20.1,50.29,12.69,24.3666666667,21,39.1,23.89,43.6333333333,19.79,39.29,12.4666666667,760.6,81.8333333333,2.1666666667,40,9.4333333333,18.367567088,18.367567088 -70,20,22.7,38.79,21.39,38.8633333333,23.1,37.29,22.7,39.03,20.1,50.4,12.5666666667,25.7666666667,21,39.276,23.79,43.645,19.79,39.29,12.3,760.6,83,2,40,9.5,19.2300858791,19.2300858791 -60,20,22.7,38.79,21.29,39.03,23.1,37.3725,22.7,39.09,20.1,50.4,12.4266666667,26.2266666667,21,39.4,23.79,43.86,19.79,39.3057142857,12.25,760.55,83.1666666667,2.1666666667,40,9.4833333333,18.2225025026,18.2225025026 -70,20,22.7,38.79,21.23,39.03,23.1,37.4,22.73,39.09,20.0333333333,50.3266666667,12.3233333333,27.7233333333,21,39.5,23.73,44.1933333333,19.79,39.42,12.2,760.5,83.3333333333,2.3333333333,40,9.4666666667,10.1996682468,10.1996682468 -50,30,22.6666666667,38.8633333333,21.2,39.2,23.1,37.4333333333,22.79,39.1633333333,20.0333333333,50.3266666667,11.99,28.7233333333,21,39.4428571429,23.7,44.6333333333,19.79,39.5,12.15,760.45,83.5,2.5,40,9.45,12.0422811713,12.0422811713 -80,20,22.6,38.79,21.1333333333,39.26,23.1,37.5,22.79,39.2,20,50.29,11.53,30.4266666667,21,39.334,23.6333333333,45.0266666667,19.79,39.59,12.1,760.4,83.6666666667,2.6666666667,40,9.4333333333,1.6711174394,1.6711174394 -60,20,22.6,38.9,21.1,39.4333333333,23.1,37.5,22.79,39.2,20,50.29,11.1925,32.82,21,39.3214285714,23.6,45.3266666667,19.79,39.6842857143,12.05,760.35,83.8333333333,2.8333333333,40,9.4166666667,29.5448124642,29.5448124642 -60,0,22.6,38.9,21.0333333333,39.5,23.1666666667,37.5,22.84,39.245,20,50.29,10.9266666667,35,21,39.59,23.5333333333,45.4666666667,19.79,39.718,12,760.3,84,3,40,9.4,19.8185648653,19.8185648653 -70,0,22.5,39,20.9633333333,39.6266666667,23.2,37.5,22.79,39.09,20,50.29,10.96,36.8333333333,20.9685714286,39.6371428571,23.5666666667,45.7,19.79,39.8214285714,11.8,760.25,84.6666666667,3,40,9.3,14.4255453721,14.4255453721 -50,0,22.5,39,20.89,39.76,23.2,37.5,22.79,39.03,20,50.2,11.16,37.9666666667,20.956,39.612,23.5,45.96,19.79,39.9625,11.6,760.2,85.3333333333,3,40,9.2,2.481734741,2.481734741 -50,0,22.5,39.09,20.89,39.86,23.2,37.5,22.79,39,20,50.2,11.33,38.7266666667,21,39.7,23.5,46.29,19.79,40,11.4,760.15,86,3,40,9.1,35.8130101115,35.8130101115 -50,0,22.5,39.09,20.8233333333,40,23.2,37.5,22.73,38.9333333333,20,50.2,11.39,39.1933333333,21,39.79,23.5,46.3633333333,19.79,40.0514285714,11.2,760.1,86.6666666667,3,40,9,31.8218800123,31.8218800123 -50,0,22.5,39.09,20.76,40.1266666667,23.2,37.59,22.7,38.9,20,50.1266666667,11.4266666667,39.8666666667,21,39.9228571429,23.4633333333,46.4666666667,19.79,40.156,11,760.05,87.3333333333,3,40,8.9,35.5619956506,35.5619956506 -40,0,22.5,39.1633333333,20.7,40.26,23.2,37.59,22.7,38.9,20,50.09,11.4266666667,41.2,21,40.174,23.39,46.4666666667,19.79,40.2642857143,10.8,760,88,3,40,8.8,22.708381305,22.708381305 -60,0,22.39,39.1266666667,20.6666666667,40.4,23.2,37.6266666667,22.6666666667,38.9666666667,20,50.09,11.4633333333,43.7666666667,21,40.3685714286,23.39,46.5,19.79,40.44,10.9333333333,760,88,3.1666666667,38,8.95,11.8323626812,11.8323626812 -60,0,22.39,39.2,20.6,40.4666666667,23.2,37.7,22.6,38.9,20,50,11.39,44.7666666667,21,40.5,23.39,46.4333333333,19.8328571429,40.5928571429,11.0666666667,760,88,3.3333333333,36,9.1,34.8042507772,34.8042507772 -60,0,22.39,39.23,20.6,40.645,23.2,37.7,22.6,38.9333333333,20,50,11.39,45.4966666667,21,40.58,23.3566666667,46.4,19.83,40.656,11.2,760,88,3.5,34,9.25,7.9874269315,7.9874269315 -60,0,22.39,39.29,20.5666666667,40.8266666667,23.2,37.7,22.6,39,20,49.9333333333,11.4633333333,47.03,21,40.832,23.29,46.4,19.79,40.7642857143,11.3333333333,760,88,3.6666666667,32,9.4,44.2811632645,44.2811632645 -50,0,22.3566666667,39.4,20.5,40.9666666667,23.29,37.73,22.5666666667,39,20,49.9,11.5666666667,49.96,21,41,23.29,46.4,19.83,40.976,11.4666666667,760,88,3.8333333333,30,9.55,5.3410856985,5.3410856985 -40,0,22.29,39.4,20.5,41.1266666667,23.23,37.73,22.5,39.06,19.9266666667,49.9,11.5,51.4266666667,21,40.9,23.29,46.4666666667,19.8042857143,41.0257142857,11.6,760,88,4,28,9.7,33.8074259344,33.8074259344 -20,0,22.29,39.4666666667,20.4266666667,41.26,23.26,37.76,22.5,39.09,20,49.79,11.36,52.6266666667,21,40.9857142857,23.26,46.5,19.83,41.156,11.5166666667,760,89.1666666667,4.3333333333,32.1666666667,9.8,26.3600358856,26.3600358856 -30,0,22.29,39.59,20.39,41.29,23.26,37.76,22.5,39.09,19.9266666667,49.79,11.2266666667,51.96,21,40.895,23.2,46.5,19.8185714286,41.2957142857,11.4333333333,760,90.3333333333,4.6666666667,36.3333333333,9.9,2.2889357642,2.2889357642 -30,0,22.29,39.59,20.39,41.43,23.2,37.745,22.4633333333,39.06,19.89,49.76,10.9633333333,49.83,21,40.812,23.2,46.5,19.89,41.536,11.35,760,91.5,5,40.5,10,26.2701652362,26.2701652362 -50,0,22.2,39.59,20.29,41.5,23.2,37.79,22.39,38.9333333333,19.89,49.7,10.83,48.2966666667,21,40.8214285714,23.1333333333,46.4,19.89,41.6528571429,11.2666666667,760,92.6666666667,5.3333333333,44.6666666667,10.1,37.964233628,37.964233628 -60,0,22.2,39.59,20.29,41.5,23.1333333333,37.8633333333,22.39,38.9,19.89,49.7,10.595,46.545,21,40.7,23.2,46.4,19.89,41.718,11.1833333333,760,93.8333333333,5.6666666667,48.8333333333,10.2,44.367068389,44.367068389 -60,0,22.2,39.59,20.29,41.53,23.1,37.9333333333,22.39,38.8266666667,19.89,49.7,10.09,45.0633333333,21,40.6528571429,23.1666666667,46.5,19.89,41.79,11.1,760,95,6,53,10.3,44.3521059118,44.3521059118 -60,0,22.2,39.59,20.29,41.59,23.1666666667,38,22.3566666667,38.7,19.89,49.59,9.6966666667,45.3966666667,21,40.634,23.1,46.5,19.89,41.94,10.9333333333,760,93.5,6.1666666667,50.8333333333,9.8833333333,44.2646690994,44.2646690994 -60,0,22.2,39.59,20.26,41.56,23.2,37.9,22.29,38.6175,19.89,49.59,9.2933333333,46.4,21,40.6214285714,23.1,46.4,19.89,42.0128571429,10.7666666667,760,92,6.3333333333,48.6666666667,9.4666666667,21.7139269458,21.7139269458 -50,0,22.2,39.59,20.2,41.5,23.2,37.9,22.29,38.53,19.89,49.56,8.9,46.46,21,40.656,23.1,46.3266666667,19.89,42.09,10.6,760,90.5,6.5,46.5,9.05,25.297809497,25.297809497 -50,0,22.1,39.59,20.2,41.5,23.2,37.9,22.29,38.4666666667,19.89,49.5,8.53,46.9333333333,21,40.4557142857,23.1,46.26,19.89,42.1214285714,10.4333333333,760,89,6.6666666667,44.3333333333,8.6333333333,30.858731037,30.858731037 -40,0,22.1,39.59,20.1333333333,41.5,23.2,37.9,22.29,38.4,19.89,49.5,8.33,47.86,21,40.378,23.1,46.2,19.89,42.2,10.2666666667,760,87.5,6.8333333333,42.1666666667,8.2166666667,24.6866146917,24.6866146917 -50,0,22.0666666667,39.56,20.1,41.5,23.2,37.9,22.26,38.26,19.89,49.5,8.2633333333,49.03,21,40.29,23.0333333333,46.03,19.89,42.2,10.1,760,86,7,40,7.8,24.8784090043,24.8784090043 -50,0,22,39.4333333333,20.0333333333,41.4333333333,23.2,37.9,22.2,38.2,19.89,49.4,8.19,49.23,21,40.29,23.0333333333,45.9633333333,19.89,42.218,9.8833333333,760.0666666667,86.5,6.3333333333,38.1666666667,7.6666666667,4.4998985948,4.4998985948 -50,0,22,39.4,20,41.4333333333,23.2,37.9333333333,22.2,38.1633333333,19.89,49.4,8.2266666667,49.6966666667,21,40.1657142857,23,45.9,19.89,42.29,9.6666666667,760.1333333333,87,5.6666666667,36.3333333333,7.5333333333,7.4870662182,7.4870662182 -60,0,22,39.4,20,41.5,23.2,38,22.2,38.09,19.89,49.345,8.2266666667,49.63,21,40.254,23,45.8266666667,19.89,42.3175,9.45,760.2,87.5,5,34.5,7.4,23.6602295074,23.6602295074 -50,0,21.9633333333,39.4,19.89,41.5,23.2,38,22.1333333333,38.09,19.8566666667,49.1633333333,8,49.8633333333,20.9685714286,40.2257142857,23,45.7,19.89,42.4,9.2333333333,760.2666666667,88,4.3333333333,32.6666666667,7.2666666667,47.8486657725,47.8486657725 -60,0,21.89,39.3266666667,19.8566666667,41.5,23.2,37.9333333333,22.1333333333,38.03,19.8566666667,49.1633333333,8.0666666667,50.9966666667,21,39.96,23,45.6266666667,19.89,42.4,9.0166666667,760.3333333333,88.5,3.6666666667,30.8333333333,7.1333333333,0.0148971449,0.0148971449 -40,0,21.89,39.29,19.8566666667,41.56,23.2,38,22.1,38,19.89,49.1633333333,8.19,50.9666666667,20.9685714286,39.9,22.89,45.4666666667,19.89,42.4,8.8,760.4,89,3,29,7,13.5390991461,13.5390991461 -50,0,21.89,39.29,19.79,41.59,23.2,37.9333333333,22.1,38,19.89,49.09,8.13,50.4333333333,21,39.834,22.89,45.4,19.9214285714,42.3528571429,8.65,760.45,89.5,3,28.5,6.95,6.1800087569,6.1800087569 -50,0,21.89,39.29,19.73,41.59,23.1666666667,37.9,22.1,38,19.89,49.06,7.7966666667,49.6,21,39.7257142857,22.89,45.4633333333,19.89,42.356,8.5,760.5,90,3,28,6.9,29.1689428501,29.1689428501 -50,0,21.8566666667,39.29,19.7,41.6266666667,23.1,37.9,22.1,38,19.89,49,7.4633333333,49.6,20.89,39.59,22.89,45.6633333333,19.9371428571,42.29,8.35,760.55,90.5,3,27.5,6.85,42.4721395364,42.4721395364 -50,0,21.79,39.29,19.7,41.7,23,37.79,22,37.79,19.89,48.9666666667,7.245,50.09,20.89,39.59,22.89,45.6633333333,19.89,42.29,8.2,760.6,91,3,27,6.8,42.8408599808,42.8408599808 -60,0,21.79,39.26,19.6666666667,41.6633333333,22.9725,37.7675,22,37.79,19.89,48.9,6.9666666667,50.0966666667,20.89,39.59,22.815,45.5225,19.89,42.29,8.05,760.65,91.5,3,26.5,6.75,24.4743090123,24.4743090123 -70,0,21.79,39.2,19.6,41.6633333333,22.89,37.7,22,37.79,19.8233333333,48.73,6.8333333333,50.49,20.89,39.59,22.79,45.4333333333,19.89,42.29,7.9,760.7,92,3,26,6.7,15.9376961645,15.9376961645 -70,0,21.79,39.2666666667,19.6,41.7,22.89,37.76,22,37.73,19.89,48.79,6.6566666667,51.1333333333,20.89,39.59,22.79,45.4,19.9371428571,42.3957142857,7.7666666667,760.75,92.1666666667,2.8333333333,25.6666666667,6.5833333333,11.4417379722,11.4417379722 -30,0,21.79,39.4,19.6,41.8333333333,22.89,37.6266666667,22,37.7,19.89,48.79,6.59,51.7333333333,20.89,39.6085714286,22.79,45.3266666667,19.934,42.378,7.6333333333,760.8,92.3333333333,2.6666666667,25.3333333333,6.4666666667,22.0332570723,22.0332570723 -40,10,21.79,39.4633333333,19.5,42.0666666667,22.8566666667,37.56,21.9725,37.7,19.89,48.79,6.4666666667,51.6233333333,20.89,39.5,22.79,45.3633333333,19.89,42.29,7.5,760.85,92.5,2.5,25,6.35,47.5207595387,47.5207595387 -50,0,21.79,39.59,19.5,42.26,22.79,37.5,21.89,37.7,19.89,48.73,6.4,51.6233333333,20.89,39.518,22.79,45.29,19.89,42.2,7.3666666667,760.9,92.6666666667,2.3333333333,24.6666666667,6.2333333333,34.7648971481,34.7648971481 -50,0,21.79,39.56,19.5,42.29,22.7,37.5,21.89,37.79,19.8233333333,48.6566666667,6.4333333333,52.8933333333,20.89,39.5514285714,22.76,45.29,19.9842857143,42.4257142857,7.2333333333,760.95,92.8333333333,2.1666666667,24.3333333333,6.1166666667,47.6766195032,47.6766195032 -60,0,21.79,39.5,19.5,42.29,22.7,37.5,21.89,37.79,19.79,48.59,6.7,54.1666666667,20.89,39.736,22.76,45.29,20,42.376,7.1,761,93,2,24,6,36.97829101,36.97829101 -110,0,21.79,39.4,19.5,42.2,22.7,37.5,21.89,37.79,19.8566666667,48.6633333333,7.16,54.9633333333,20.9528571429,40.0685714286,22.76,45.29,20,42.7671428571,7.0166666667,761.0833333333,93.3333333333,2,24.1666666667,5.9666666667,11.7473374237,11.7473374237 -70,10,21.79,39.4666666667,19.5,42.2,22.7,37.56,21.89,37.79,19.89,48.7,7.3666666667,55.03,21,40.152,22.76,45.29,20,42.656,6.9333333333,761.1666666667,93.6666666667,2,24.3333333333,5.9333333333,25.426126644,25.426126644 -50,0,21.79,39.7666666667,19.4633333333,42.36,22.7,37.5,21.89,37.79,19.89,48.7,7.5,54.7333333333,21,39.8971428571,22.7,45.1333333333,20,42.4557142857,6.85,761.25,94,2,24.5,5.9,41.0307972576,41.0307972576 -60,0,21.79,40.16,19.39,42.6333333333,22.76,37.56,21.89,37.8633333333,19.8566666667,48.6333333333,7.5,54.3266666667,21,39.554,22.7,44.86,19.956,42.334,6.7666666667,761.3333333333,94.3333333333,2,24.6666666667,5.8666666667,13.9448852744,13.9448852744 -60,0,21.79,40.09,19.445,43,22.79,37.59,21.8566666667,38,19.865,48.545,7.66,54.4333333333,20.9685714286,39.2842857143,22.6666666667,44.6333333333,20,42.2257142857,6.6833333333,761.4166666667,94.6666666667,2,24.8333333333,5.8333333333,29.0804175194,29.0804175194 -60,0,21.79,40.09,19.5333333333,42.76,22.8566666667,37.6633333333,21.8566666667,38.1333333333,19.8233333333,48.4333333333,7.8666666667,54.2266666667,20.934,39.016,22.6,44.36,20,42.156,6.6,761.5,95,2,25,5.8,14.2167787999,14.2167787999 -50,0,21.79,40,19.6,42.6266666667,22.89,37.79,21.79,38.1266666667,19.8233333333,48.3266666667,8.0633333333,52.6266666667,20.89,38.7957142857,22.6,44.1633333333,19.9528571429,42.09,6.8833333333,761.6,94.1666666667,2.1666666667,25.1666666667,5.95,12.2321652598,12.2321652598 -50,0,21.79,39.9333333333,19.6,42.5,22.89,37.79,21.79,38.2,19.8233333333,48.2666666667,8.2633333333,50.8333333333,20.89,38.554,22.5333333333,43.9633333333,20,42.036,7.1666666667,761.7,93.3333333333,2.3333333333,25.3333333333,6.1,37.0466766413,37.0466766413 -50,0,21.79,39.845,19.6,42.4333333333,22.89,37.79,21.79,38.29,19.89,48.2,8.65,47.9,20.89,38.3671428571,22.5666666667,43.76,20,41.9285714286,7.45,761.8,92.5,2.5,25.5,6.25,25.0882899505,25.0882899505 -50,0,21.79,39.76,19.73,42.3633333333,22.89,37.79,21.79,38.29,19.8233333333,48.0666666667,9.3266666667,41.7566666667,20.89,38.178,22.5,43.6266666667,20,41.79,7.7333333333,761.9,91.6666666667,2.6666666667,25.6666666667,6.4,29.8255339614,29.8255339614 -40,10,21.79,39.7,19.9966666667,42.1566666667,22.9266666667,37.79,21.79,38.29,19.89,48,9.7933333333,37.3633333333,20.89,37.9971428571,22.5,43.4666666667,20.1,41.79,8.0166666667,762,90.8333333333,2.8333333333,25.8333333333,6.55,42.5418243976,42.5418243976 -70,0,21.79,39.7,20.9566666667,41.1,23.025,37.7225,21.79,38.29,19.8233333333,47.86,10.1666666667,33.8633333333,20.89,37.79,22.5,43.4,20.1,41.6971428571,8.3,762.1,90,3,26,6.7,12.4697314459,12.4697314459 -50,0,21.79,39.7,21.43,39.9666666667,23.1,37.7,21.79,38.4,19.89,47.76,10.4333333333,32.7966666667,20.89,37.6371428571,22.5,43.245,20.16,41.536,8.4666666667,762.1833333333,88.6666666667,3.3333333333,28.3333333333,6.6333333333,12.9291374469,12.9291374469 -60,0,21.79,39.59,21.9566666667,39.1933333333,23.23,37.59,21.79,38.4666666667,19.8233333333,47.6266666667,10.7933333333,30.5633333333,20.87,37.458,22.39,42.9666666667,20.2,41.5,8.6333333333,762.2666666667,87.3333333333,3.6666666667,30.6666666667,6.5666666667,16.4003236918,16.4003236918 -50,0,21.79,39.59,22.5633333333,38.5266666667,23.29,37.59,21.8233333333,38.53,19.89,46.8233333333,11.1266666667,28.43,20.8614285714,37.29,22.39,42.8266666667,20.2,41.46,8.8,762.35,86,4,33,6.5,21.8739919947,21.8739919947 -50,0,21.79,39.59,23.3333333333,37.4666666667,23.39,37.56,21.9175,38.59,19.9633333333,45.9566666667,11.46,25.3333333333,20.85,37.156,22.39,42.7,20.2514285714,41.4571428571,8.9666666667,762.4333333333,84.6666666667,4.3333333333,35.3333333333,6.4333333333,40.2739118668,40.2739118668 -50,0,21.79,39.59,23.7933333333,36.8,23.39,37.5,22,38.53,20.1,45.49,11.6,21.26,20.8471428571,37.0128571429,22.39,42.6266666667,20.29,41.44,9.1333333333,762.5166666667,83.3333333333,4.6666666667,37.6666666667,6.3666666667,2.3115377524,2.3115377524 -30,0,21.8566666667,39.6633333333,24.1966666667,35.99,23.39,37.5,22.1,38.59,20.1,45.0966666667,11.6666666667,19.39,20.87,36.918,22.39,42.5,20.29,41.4285714286,9.3,762.6,82,5,40,6.3,37.9439145676,37.9439145676 -30,0,21.8566666667,39.6633333333,24.5966666667,35.4566666667,23.3233333333,37.5,22.1666666667,38.53,20.1333333333,44.7233333333,11.9333333333,16.99,20.8614285714,36.79,22.3233333333,42.5,20.29,41.5,9.4666666667,762.7,80.3333333333,5,40,6.15,42.7800635109,42.7800635109 -20,0,21.89,39.7,25.0666666667,34.6233333333,23.29,37.53,22.23,38.5,20.2,44.53,12.19,13.8633333333,20.83,36.59,22.3566666667,42.29,20.29,41.5,9.6333333333,762.8,78.6666666667,5,40,6,9.3154294416,9.3154294416 -40,10,21.89,39.7,25.26,34.0966666667,23.29,37.59,22.29,38.4333333333,20.2,44.3333333333,12.13,12.33,20.8757142857,36.44,22.29,42.29,20.29,41.48,9.8,762.9,77,5,40,5.85,9.8823136417,9.8823136417 -60,0,22,39.6633333333,25.4266666667,33.6333333333,23.2,37.53,22.39,38.29,20.26,44.2,12.3,9.2566666667,20.79,36.236,22.29,42.09,20.29,41.4,9.9666666667,763,75.3333333333,5,40,5.7,3.9662506199,3.9662506199 -60,0,22,39.59,25.6333333333,33.36,23.2,37.59,22.39,38.23,20.29,44.06,12.36,8.2566666667,20.8025,36.08375,22.29,42.03,20.29,41.4,10.1333333333,763.1,73.6666666667,5,40,5.55,0.3489340656,0.3489340656 -50,0,22,39.56,25.73,32.9,23.1333333333,37.59,22.5,38.2,20.29,43.82,12.39,5.2,20.8471428571,35.9285714286,22.29,41.8633333333,20.29,41.3371428571,10.3,763.2,72,5,40,5.4,8.5041072918,8.5041072918 -60,0,22.0666666667,39.56,25.865,32.62,23.2,37.59,22.5,38.1266666667,20.3566666667,43.6266666667,12.53,3.1333333333,20.85,35.754,22.29,41.73,20.29,41.272,10.3666666667,763.2666666667,70.1666666667,5.1666666667,40,5.0666666667,17.199053173,17.199053173 -50,0,22.1,39.5,25.89,32.2666666667,23.2,37.6633333333,22.6,38.06,20.39,43.4,12.96,2.9266666667,20.8757142857,35.6371428571,22.2,41.43,20.29,41.2,10.4333333333,763.3333333333,68.3333333333,5.3333333333,40,4.7333333333,39.7851786343,39.7851786343 -40,0,22.1,39.4333333333,25.89,32.1633333333,23.2,37.59,22.6666666667,38,20.39,43.2666666667,13.1675,2.195,20.85,35.476,22.2,41.23,20.29,41.09,10.5,763.4,66.5,5.5,40,4.4,21.4699736913,21.4699736913 -60,0,22.1333333333,39.29,25.89,32.09,23.2,37.6266666667,22.7,38,20.4266666667,43.1266666667,13.2633333333,1.7333333333,20.89,35.3214285714,22.26,41.1633333333,20.29,41.0385714286,10.5666666667,763.4666666667,64.6666666667,5.6666666667,40,4.0666666667,39.5591837703,39.5591837703 -50,0,22.2,39.2225,25.8566666667,32.06,23.2,37.6266666667,22.76,37.9333333333,20.5,43.0666666667,13.2633333333,1,20.89,35.254,22.2,40.9633333333,20.29,40.98,10.6333333333,763.5333333333,62.8333333333,5.8333333333,40,3.7333333333,45.2647021622,45.2647021622 -50,10,22.2,39.1266666667,25.79,32.06,23.1333333333,37.7,22.79,37.8633333333,20.5,42.9666666667,13.2633333333,1,20.89,35.04,22.2,40.8333333333,20.29,40.8685714286,10.7,763.6,61,6,40,3.4,24.8787625227,24.8787625227 -60,0,22.2,39.09,25.7,32,23.1333333333,37.7,22.79,37.79,20.5,42.7666666667,13.2266666667,1,20.89,34.86,22.2,40.6266666667,20.29,40.79,10.8,763.65,60.1666666667,5.8333333333,40,3.2833333333,36.8307137047,36.8307137047 -60,0,22.26,39.09,25.7,31.9266666667,23.2,37.7,22.79,37.7,20.6,42.56,13.2266666667,1,20.89,34.6685714286,22.2,40.4666666667,20.29,40.6971428571,10.9,763.7,59.3333333333,5.6666666667,40,3.1666666667,6.7431344534,6.7431344534 -50,0,22.29,38.9666666667,25.7,31.89,23.2,37.7,22.8566666667,37.7,20.6,42.4333333333,13.3,1,20.89,34.46,22.2,40.3175,20.29,40.572,11,763.75,58.5,5.5,40,3.05,44.1178016481,44.1178016481 -50,0,22.3566666667,38.9,25.6333333333,31.7633333333,23.2,37.7,22.89,37.6633333333,20.6,42.26,13.36,1,20.89,34.3371428571,22.2,40.1566666667,20.3185714286,40.5,11.1,763.8,57.6666666667,5.3333333333,40,2.9333333333,2.661492629,2.661492629 -50,0,22.39,38.76,25.6,31.6666666667,23.2,37.59,22.89,37.59,20.6,42.1266666667,13.6666666667,1,20.89,34.272,22.2,40.06,20.29,40.4,11.2,763.85,56.8333333333,5.1666666667,40,2.8166666667,12.0804294012,12.0804294012 -50,0,22.39,38.6266666667,25.5333333333,31.6,23.2,37.59,22.89,37.59,20.6,42,13.8,1,20.89,34.2,22.2,39.9333333333,20.29,40.28125,11.3,763.9,56,5,40,2.7,31.7457218771,31.7457218771 -60,0,22.5,38.56,25.3566666667,31.8233333333,23.2,37.59,22.89,37.5,20.6,41.9333333333,13.96,1,20.934,34.09,22.2,39.9,20.29,40.1842857143,11.5,763.9333333333,55.3333333333,4.8333333333,40,2.7333333333,43.6522881035,43.6522881035 -40,0,22.5,38.4333333333,25.23,31.9633333333,23.2,37.59,22.89,37.5,20.7,41.79,14.1,1,21,33.9557142857,22.2,39.8266666667,20.29,40.072,11.7,763.9666666667,54.6666666667,4.6666666667,40,2.7666666667,40.3750207392,40.3750207392 -60,0,22.5333333333,38.4,25.1,32.03,23.2,37.59,22.89,37.3633333333,20.7,41.73,14.16,1,21,33.878,22.2,39.76,20.3328571429,40,11.9,764,54,4.5,40,2.8,32.4683149462,32.4683149462 -60,0,22.6,38.3266666667,25.0333333333,32.1633333333,23.2,37.59,22.89,37.23,20.7,41.59,14.1,1,21,33.7514285714,22.2,39.7,20.39,40,12.1,764.0333333333,53.3333333333,4.3333333333,40,2.8333333333,27.3826688295,27.3826688295 -50,0,22.6,38.1633333333,24.8566666667,32.29,23.2,37.59,22.89,37.09,20.76,41.53,14.2633333333,1,21.06,33.71,22.23,39.59,20.3328571429,39.9428571429,12.3,764.0666666667,52.6666666667,4.1666666667,40,2.8666666667,0.0214108382,0.0214108382 -60,0,22.6,38.09,24.73,32.3633333333,23.2,37.59,22.9633333333,37.09,20.79,41.4,13.99,1,21.0857142857,33.6214285714,22.29,39.59,20.29,39.878,12.5,764.1,52,4,40,2.9,0.6062912405,0.6062912405 -40,0,22.7,38.06,24.6666666667,32.5,23.29,37.7,22.9266666667,37.06,20.79,41.3266666667,14.0666666667,1,21.12,33.552,22.29,39.4666666667,20.29,39.7642857143,12.5333333333,764.1333333333,51,4.1666666667,40,2.6333333333,37.5542906579,37.5542906579 -30,0,22.7,37.9333333333,24.5333333333,32.56,23.29,37.7,23,37,20.79,41.245,14,1,21.2,33.3685714286,22.3566666667,39.2666666667,20.29,39.554,12.5666666667,764.1666666667,50,4.3333333333,40,2.3666666667,22.3368891515,22.3368891515 -30,0,22.73,37.76,24.39,32.6266666667,23.26,37.56,22.9266666667,37,20.79,41.06,14.2566666667,1,21.236,33.09,22.4266666667,39.06,20.3328571429,39.5,12.6,764.2,49,4.5,40,2.1,45.7998613594,45.7998613594 -20,0,22.79,37.7,24.365,32.7675,23.2,37.5,23,37,20.79,40.9333333333,14.445,1,21.3471428571,32.8928571429,22.5,38.9333333333,20.37,39.5,12.6333333333,764.2333333333,48,4.6666666667,40,1.8333333333,46.6360755498,46.6360755498 -60,0,22.89,37.6633333333,24.29,32.8633333333,23.2,37.5,23,36.9333333333,20.89,40.9666666667,14.19,1,21.39,32.696,22.5333333333,38.7233333333,20.3614285714,39.5,12.6666666667,764.2666666667,47,4.8333333333,40,1.5666666667,5.271203455,5.271203455 -50,0,22.89,37.59,24.1666666667,32.9333333333,23.1333333333,37.5,23,37,20.89,40.8266666667,14.3666666667,1,21.39,32.4714285714,22.6,38.53,20.29,39.5,12.7,764.3,46,5,40,1.3,18.4484173427,18.4484173427 -70,0,22.945,37.45,24.1666666667,32.9333333333,23.1,37.59,23,36.9,20.89,40.76,14.5,1,21.5,32.33125,22.7,38.4666666667,20.3757142857,39.4142857143,12.8333333333,764.3166666667,45.3333333333,4.8333333333,38.1666666667,1.2166666667,8.1482258742,8.1482258742 -60,0,23,37.3633333333,24.1,33,23.1,37.59,23,36.9,20.9633333333,40.7,14.4266666667,1,21.6,32.2,22.76,38.3266666667,20.39,39.334,12.9666666667,764.3333333333,44.6666666667,4.6666666667,36.3333333333,1.1333333333,12.0201656711,12.0201656711 -60,0,23,37.29,24.0333333333,33,23.2,37.545,23,36.8633333333,21,40.56,14.5,1,21.6571428571,32.1528571429,22.79,38.1633333333,20.39,39.2514285714,13.1,764.35,44,4.5,34.5,1.05,38.4180669906,38.4180669906 -50,0,23.0333333333,37.29,23.9633333333,33.1266666667,23.2,37.59,23,36.79,21,40.5,14.5333333333,1,21.718,32.036,22.8566666667,38.03,20.39,39.2,13.2333333333,764.3666666667,43.3333333333,4.3333333333,32.6666666667,0.9666666667,42.6484003663,42.6484003663 -50,0,23.1,37.29,23.89,33.2,23.2,37.59,23.0333333333,36.8266666667,21.0333333333,40.4333333333,14.6,1,21.79,31.9214285714,22.89,37.8633333333,20.39,39.1371428571,13.3666666667,764.3833333333,42.6666666667,4.1666666667,30.8333333333,0.8833333333,3.5429001437,3.5429001437 -40,0,23.1333333333,37.26,23.8566666667,33.3266666667,23.23,37.53,23.0333333333,36.7666666667,21.1,40.4333333333,14.59,1,21.83,31.79,22.9725,37.695,20.39,39.09,13.5,764.4,42,4,29,0.8,26.5597836231,26.5597836231 -50,0,23.2,37.2,23.73,33.4666666667,23.23,37.53,23.05,36.745,21.1,40.3633333333,14.39,1,21.89,31.7385714286,23,37.59,20.39,39.09,13.6166666667,764.4,41.8333333333,4,30.8333333333,0.8166666667,33.6822031299,33.6822031299 -50,0,23.2,37.09,23.6666666667,33.56,23.2,37.5,23.1,36.79,21.1666666667,40.23,14.5666666667,1,21.956,31.64,23.1,37.5,20.39,39.09,13.7333333333,764.4,41.6666666667,4,32.6666666667,0.8333333333,25.3494466306,25.3494466306 -50,0,23.2,37.09,23.6,33.6333333333,23.2,37.5,23.1,36.79,21.1,40.2,14.4266666667,1,22,31.5285714286,23.1,37.4333333333,20.39,39.0128571429,13.85,764.4,41.5,4,34.5,0.85,31.8743008305,31.8743008305 -60,0,23.2,37.09,23.5666666667,33.73,23.29,37.59,23.1,36.7,21.1666666667,40.1266666667,14.5633333333,1,22,31.456,23.1333333333,37.26,20.39,39,13.9666666667,764.4,41.3333333333,4,36.3333333333,0.8666666667,28.9373165579,28.9373165579 -50,0,23.2,37.03,23.4266666667,33.79,23.29,37.59,23.1,36.6266666667,21.2,40,14.7633333333,1,22.0857142857,31.4214285714,23.26,37.2,20.39,38.9285714286,14.0833333333,764.4,41.1666666667,4,38.1666666667,0.8833333333,4.0345099755,4.0345099755 -60,0,23.29,37.09,23.39,33.79,23.29,37.59,23.1,36.56,21.2,40,14.8,1,22.1,31.37,23.23,37.03,20.39,38.9,14.2,764.4,41,4,40,0.9,42.8975953488,42.8975953488 -60,0,23.29,37.09,23.3233333333,33.8633333333,23.29,37.59,23.1,36.5,21.29,40,14.8,1,22.1,31.29,23.29,37.03,20.39,38.83125,14.1666666667,764.4166666667,40.6666666667,4.1666666667,40,0.7833333333,37.2391640907,37.2391640907 -60,0,23.29,37.09,23.29,33.9333333333,23.29,37.59,23.1,36.5,21.29,39.9333333333,14.7266666667,1,22.14,31.2,23.29,36.9666666667,20.39,38.79,14.1333333333,764.4333333333,40.3333333333,4.3333333333,40,0.6666666667,24.1654434474,24.1654434474 -60,0,23.29,37.09,23.23,33.9333333333,23.29,37.53,23.1,36.5,21.29,39.8633333333,14.8,1,22.2,31.1857142857,23.29,36.9,20.39,38.714,14.1,764.45,40,4.5,40,0.55,31.4649004606,31.4649004606 -80,0,23.29,36.9,23.1,33.9666666667,23.29,37.5,23.1,36.3333333333,21.365,39.6725,14.8,1,22.2,30.896,23.39,36.8266666667,20.4371428571,38.5642857143,14.0666666667,764.4666666667,39.6666666667,4.6666666667,40,0.4333333333,22.2217907547,22.2217907547 -70,0,23.3566666667,36.6266666667,23.1,33.7666666667,23.29,37.5,23.1,36.1266666667,21.39,39.1,14.89,1,22.2,30.3242857143,23.3233333333,36.9666666667,20.456,38.32,14.0333333333,764.4833333333,39.3333333333,4.8333333333,40,0.3166666667,18.4194001951,18.4194001951 -90,0,23.29,35.7333333333,23,33.05,23.29,37.4666666667,23.1,35.7233333333,21.4266666667,38.1233333333,14.89,1,22.2,29.814,23.39,36.9666666667,20.4842857143,38.1242857143,14,764.5,39,5,40,0.2,42.2155468259,42.2155468259 -150,0,23.29,34.7333333333,22.89,32.43,23.29,37.3266666667,23.1,35.53,21.5,37.4566666667,14.86,1,22.2,29.48,23.4633333333,36.9666666667,20.456,37.918,14.05,764.5,38.8333333333,4.8333333333,38.1666666667,0.15,9.3934998615,9.3934998615 -460,0,23.29,34.3966666667,22.8233333333,32.1566666667,23.29,37.2233333333,23.0333333333,35.3333333333,21.5,37.1333333333,14.8,1,22.2,29.252,23.6333333333,36.8633333333,20.4528571429,37.7257142857,14.1,764.5,38.6666666667,4.6666666667,36.3333333333,0.1,9.1772146872,9.1772146872 -340,0,23.315,35.8425,22.76,32.03,23.29,36.9633333333,23.0333333333,35.0666666667,21.5666666667,36.86,14.69,1,22.1714285714,28.9971428571,23.7,36.79,20.434,37.5,14.15,764.5,38.5,4.5,34.5,0.05,28.8496679161,28.8496679161 -310,0,23.39,38.66,22.7,32.03,23.29,36.49,23,34.8633333333,21.6333333333,37.3633333333,14.63,1,22.1,28.66,23.79,36.6633333333,20.4842857143,37.3671428571,14.2,764.5,38.3333333333,4.3333333333,32.6666666667,0,31.0218375642,31.0218375642 -120,0,23.3566666667,38.0633333333,22.6,31.89,23.29,36.02,23,34.39,21.7,37.1566666667,14.5,1,22.1,28.4371428571,23.79,36.53,20.456,37.254,14.25,764.5,38.1666666667,4.1666666667,30.8333333333,-0.05,0.6342910463,0.6342910463 -140,0,23.29,35.73,22.6,31.8233333333,23.29,35.73,23,33.8,21.7,36.6233333333,14.4266666667,1,22.04,28.216,23.89,36.4666666667,20.4685714286,37.2642857143,14.3,764.5,38,4,29,-0.1,44.1157124471,44.1157124471 -150,0,23.3566666667,36.1666666667,22.5,31.43,23.26,35.5266666667,22.9266666667,33.0666666667,21.7,36.0966666667,14.3,1,22,28.1,23.89,36.3266666667,20.456,37.254,14.1833333333,764.5666666667,38.3333333333,4.1666666667,30.8333333333,-0.0666666667,49.3446256733,49.3446256733 -120,0,23.3566666667,35.5,22.5,31.43,23.26,35.4666666667,22.89,32.56,21.7,36.23,14.2266666667,1,22,27.956,23.89,36.1,20.4371428571,37.1842857143,14.0666666667,764.6333333333,38.6666666667,4.3333333333,32.6666666667,-0.0333333333,16.2231383845,16.2231383845 -130,0,23.39,35.7333333333,22.4633333333,31.86,23.29,35.59,22.865,32.7,21.7,36.3633333333,14.0666666667,1,21.93125,27.78,23.89,35.76,20.456,37.134,13.95,764.7,39,4.5,34.5,0,33.0910288729,33.0910288729 -130,0,23.39,35.1333333333,22.39,32.06,23.29,35.6633333333,22.8566666667,33.16,21.7,36.3633333333,14,1,21.89,27.6,23.89,35.6266666667,20.4685714286,37.0642857143,13.8333333333,764.7666666667,39.3333333333,4.6666666667,36.3333333333,0.0333333333,6.6877363482,6.6877363482 -130,0,23.39,34.76,22.39,32.09,23.29,35.7,22.89,33.5666666667,21.7,36.29,13.8233333333,1,21.87,27.458,24,35.5,20.39,36.9,13.7166666667,764.8333333333,39.6666666667,4.8333333333,38.1666666667,0.0666666667,5.6267099688,5.6267099688 -130,0,23.39,34.7,22.3233333333,32.09,23.3566666667,35.7,22.89,33.7,21.7,36.06,13.63,1,21.79,27.2642857143,24,35.4333333333,20.4842857143,36.6714285714,13.6,764.9,40,5,40,0.1,15.9832010395,15.9832010395 -170,0,23.29,34.43,22.26,31.9633333333,23.3233333333,35.8266666667,22.8566666667,33.76,21.8266666667,48.86,13.39,1,21.79,27.2,24.1,35.4666666667,20.5,36.518,13.3833333333,764.95,40.8333333333,4.8333333333,40,0.1666666667,23.8468336174,23.8468336174 -210,0,23.29,34.23,22.2,31.9633333333,23.39,35.8266666667,22.79,33.7,22.0666666667,58.3666666667,13.59,1,21.79,27.1142857143,24.1666666667,35.4,20.5,36.5257142857,13.1666666667,765,41.6666666667,4.6666666667,40,0.2333333333,24.3066328927,24.3066328927 -110,0,23.29,34.1566666667,22.1666666667,32.1266666667,23.39,35.79,22.8233333333,33.6633333333,21.9266666667,59.0333333333,13.5233333333,1,21.736,27.14,24.2,35.29,20.5,36.7,12.95,765.05,42.5,4.5,40,0.3,43.4429431101,43.4429431101 -100,0,23.29,34.1566666667,22.0333333333,32.2,23.39,35.79,22.8233333333,33.53,21.79,59.1633333333,12.99,1,21.7,27.1,24.26,35.29,20.4371428571,36.4971428571,12.7333333333,765.1,43.3333333333,4.3333333333,40,0.3666666667,45.4696736066,45.4696736066 -110,0,23.29,34.03,22,32.29,23.3566666667,35.7,22.79,33.4,21.73,58.83,12.095,1,21.6,27,24.29,35.2,20.39,36.298,12.5166666667,765.15,44.1666666667,4.1666666667,40,0.4333333333,6.0285543674,6.0285543674 -90,0,23.29,34.09,21.9266666667,32.3633333333,23.29,35.76,22.79,33.4,21.995,70.6,10.9933333333,1,21.6,27.3557142857,24.29,35.2,20.39,36.2642857143,12.3,765.2,45,4,40,0.5,40.8390578814,40.8390578814 -120,20,23.2,33.9,21.84,32.69,23.26,35.79,22.79,33.4,22.53,77.4566666667,10.2,1,21.6,27.994,24.29,35.36,20.39,35.674,11.9166666667,765.2333333333,47.5,3.6666666667,40,0.85,23.7509099185,23.7509099185 -130,0,23.2,33.9666666667,21.79,33.0666666667,23.2,35.79,22.79,33.4666666667,22.3233333333,75.4566666667,9.3666666667,1,21.6428571429,28.5685714286,24.29,35.6333333333,20.39,34.95375,11.5333333333,765.2666666667,50,3.3333333333,40,1.2,4.1335784714,4.1335784714 -130,0,23.2,34.09,21.73,33.4,23.1666666667,35.9,22.79,33.59,22.0666666667,71.8566666667,8.9,1.0666666667,21.6,28.89,24.29,35.86,20.39,34.3642857143,11.15,765.3,52.5,3,40,1.55,39.6801305818,39.6801305818 -120,0,23.2,34.09,21.6,33.4633333333,23.1,35.9666666667,22.79,33.59,21.9266666667,68.19,8.2933333333,2.0266666667,21.6,29.1114285714,24.29,36.1933333333,20.33,34.016,10.7666666667,765.3333333333,55,2.6666666667,40,1.9,7.8744293307,7.8744293307 -120,0,23.1,34.2,21.6,33.6633333333,23.1,36,22.76,33.56,21.8566666667,63.6666666667,7.8266666667,2.9666666667,21.6,29.332,24.29,36.6566666667,20.29,33.7642857143,10.3833333333,765.3666666667,57.5,2.3333333333,40,2.25,28.4232311416,28.4232311416 -60,10,23.1,34.29,21.5,33.86,23.1,36.0225,22.7,33.5,21.73,60.4666666667,7.3966666667,4.2266666667,21.6,29.5285714286,24.3566666667,36.93,20.2,33.356,10,765.4,60,2,40,2.6,16.4689978468,16.4689978468 -60,0,23.1,34.43,21.5,34.06,23.1,36.09,22.7,33.53,21.6666666667,57.6266666667,7.0633333333,5.6266666667,21.6,29.934,24.29,37.1933333333,20.2,33.4514285714,9.7166666667,765.4833333333,61,1.8333333333,40,2.5333333333,29.8649605364,29.8649605364 -50,0,23.1,34.53,21.3566666667,34.1566666667,23.1,36.09,22.7,33.6633333333,21.6,56.1666666667,6.83,7.5333333333,21.6,30.4257142857,24.29,37.7333333333,20.218,34.272,9.4333333333,765.5666666667,62,1.6666666667,40,2.4666666667,26.7520396621,26.7520396621 -60,10,23.1,34.59,21.23,34.3633333333,23.0333333333,36.09,22.7,33.79,21.5666666667,55.0333333333,6.5633333333,8.4666666667,21.6,30.698,24.29,38.65,20.29,35.5285714286,9.15,765.65,63,1.5,40,2.4,24.5299443486,24.5299443486 -60,0,23.1,34.79,21.2,34.5966666667,23,36.09,22.7,33.9,21.5,54.4266666667,6.3666666667,9.7333333333,21.6,30.9685714286,24.26,39,20.29,36.58,8.8666666667,765.7333333333,64,1.3333333333,40,2.3333333333,9.7587415366,9.7587415366 -50,0,23.0333333333,34.79,21.1333333333,34.8633333333,23,36.09,22.7,33.9666666667,21.4633333333,53.96,6.16,9.8666666667,21.6,31.1,24.2,39.1333333333,20.29,36.91,8.5833333333,765.8166666667,65,1.1666666667,40,2.2666666667,12.1827003197,12.1827003197 -60,0,23,34.79,21.0666666667,35.09,23,36.09,22.6333333333,33.9333333333,21.39,53.5666666667,5.9333333333,10.7933333333,21.5857142857,31.1842857143,24.1,39.29,20.29,37.112,8.3,765.9,66,1,40,2.2,44.5690392517,44.5690392517 -60,0,23,34.8633333333,21,35.2233333333,23,36.09,22.6333333333,33.9333333333,21.39,53.26,5.66,10.6,21.5,31.496,24.1,39.3633333333,20.3185714286,37.2,8,765.95,68.1666666667,1,40,2.3333333333,42.5585175049,42.5585175049 -60,0,22.9633333333,35,20.8566666667,35.4,23,36.2,22.6,33.8633333333,21.3233333333,53.0666666667,5.4333333333,11.1,21.5,31.7642857143,24,39.4333333333,20.29,37.29,7.7,766,70.3333333333,1,40,2.4666666667,25.6342414883,25.6342414883 -50,0,22.89,35,20.79,35.4666666667,23,36.1266666667,22.6,33.79,21.29,52.76,5.4,12.85,21.5,31.89,24,39.6933333333,20.29,37.41,7.4,766.05,72.5,1,40,2.6,40.8151159296,40.8151159296 -40,0,22.89,35,20.76,35.6266666667,22.9633333333,36.09,22.6,33.7,21.29,52.5666666667,5.56,14.8333333333,21.5,32.2642857143,24,40.2666666667,20.29,37.616,7.1,766.1,74.6666666667,1,40,2.7333333333,4.1461984278,4.1461984278 -60,0,22.8233333333,35,20.7,35.76,22.89,36.09,22.6,33.7,21.29,52.26,5.4666666667,15.0266666667,21.5,32.6128571429,24,40.4666666667,20.29,37.9971428571,6.8,766.15,76.8333333333,1,40,2.8666666667,31.8497295259,31.8497295259 -50,0,22.79,35,20.6666666667,35.9,22.89,36.09,22.5,33.7,21.23,51.9266666667,5.26,15.6933333333,21.5,32.894,24,40.59,20.29,38.29,6.5,766.2,79,1,40,3,45.8371220855,45.8371220855 -50,0,22.79,35,20.5333333333,36.0266666667,22.89,36.09,22.5666666667,33.7,21.2,51.44,4.9333333333,16.5933333333,21.5,33.1214285714,23.9266666667,40.59,20.29,38.4414285714,6.4666666667,766.2166666667,78.6666666667,1,40,2.9333333333,39.1261731391,39.1261731391 -40,0,22.79,35,20.445,36.245,22.9266666667,36.2,22.5,33.7,21.2,51.0266666667,4.8,18.1333333333,21.5,33.334,23.89,40.7,20.31,38.576,6.4333333333,766.2333333333,78.3333333333,1,40,2.8666666667,48.4796148492,48.4796148492 -30,0,22.79,35.06,20.39,36.4333333333,23,36.2,22.5,33.7,21.2,50.7666666667,4.6566666667,20.03,21.5,33.4857142857,23.8233333333,40.7,20.3185714286,38.7,6.4,766.25,78,1,40,2.8,0.429867988,0.429867988 -40,0,22.7,35.09,20.3233333333,36.56,23,36.23,22.5,33.6266666667,21.1,50.3333333333,4.59,23.3633333333,21.5,33.754,23.76,40.8,20.39,38.834,6.3666666667,766.2666666667,77.6666666667,1,40,2.7333333333,1.6810850822,1.6810850822 -40,0,22.7,35.1725,20.26,36.7,23,36.3633333333,22.5,33.7,21.1,50.1266666667,4.4666666667,24.5,21.5,33.8214285714,23.7,41.1333333333,20.39,38.9,6.3333333333,766.2833333333,77.3333333333,1,40,2.6666666667,28.3267554594,28.3267554594 -40,0,22.7,35.2,20.2,36.76,23.1,36.53,22.4633333333,33.6633333333,21.1,49.93,4.3333333333,25.4266666667,21.5,34.036,23.7,41.5666666667,20.39,38.96,6.3,766.3,77,1,40,2.6,31.9650526275,31.9650526275 -50,0,22.6,35.2,20.1666666667,36.9333333333,23.1,36.6175,22.39,33.59,21.0333333333,49.5966666667,4.1566666667,25.7333333333,21.5,34.2042857143,23.6333333333,41.76,20.39,39.0257142857,5.9666666667,766.35,78.3333333333,1,40,2.5,32.8510147403,32.8510147403 -60,0,22.6,35.26,20.1,37.06,23.1,36.7,22.39,33.59,21,49.4666666667,4.03,26.4,21.5,34.332,23.6666666667,42.0966666667,20.39,39.09,5.6333333333,766.4,79.6666666667,1,40,2.4,30.6391934631,30.6391934631 -50,0,22.6,35.29,20,37.1266666667,23.1,36.79,22.39,33.59,21,49.2666666667,4.06,28.6966666667,21.5,34.6685714286,23.6,42.3633333333,20.3614285714,39.1685714286,5.3,766.45,81,1,40,2.3,34.6504043089,34.6504043089 -50,0,22.5333333333,35.29,20,37.2,23.1,36.8633333333,22.39,33.59,21,49.1633333333,3.9333333333,29.2233333333,21.5,34.94,23.6,42.4333333333,20.3471428571,39.2514285714,4.9666666667,766.5,82.3333333333,1,40,2.2,48.2200827799,48.2200827799 -60,0,22.5,35.4,19.89,37.29,23.1,36.9,22.3566666667,33.59,21,48.89,3.76,29.1666666667,21.5,35.0228571429,23.6,42.5,20.39,39.356,4.6333333333,766.55,83.6666666667,1,40,2.1,20.536126988,20.536126988 -60,0,22.5,35.4,19.89,37.3633333333,23.1,36.9666666667,22.29,33.59,20.89,48.6633333333,3.6266666667,29.8333333333,21.5,35.09,23.55,42.5,20.39,39.4714285714,4.3,766.6,85,1,40,2,11.9616133277,11.9616133277 -50,0,22.5,35.4,19.79,37.4,23.2,37,22.29,33.59,20.89,48.53,3.5,31.1,21.5,35.09,23.5,42.53,20.39,39.5,4.25,766.6,85.6666666667,1,40,2.0666666667,46.1481242324,46.1481242324 -60,0,22.5,35.4666666667,19.79,37.4666666667,23.2,37,22.29,33.59,20.89,48.3633333333,3.5,32.19,21.5,34.96,23.5,42.59,20.39,39.5,4.2,766.6,86.3333333333,1,40,2.1333333333,20.8915681462,20.8915681462 -50,0,22.39,35.4,19.76,37.53,23.2,37.03,22.29,33.56,20.89,48.23,3.4333333333,32.79,21.5,34.8371428571,23.4633333333,42.73,20.39,39.5,4.15,766.6,87,1,40,2.2,22.819120565,22.819120565 -50,0,22.39,35.4666666667,19.7,37.6633333333,23.26,37.09,22.29,33.56,20.89,48.06,3.3333333333,32.9,21.456,34.79,23.39,42.8633333333,20.39,39.5,4.1,766.6,87.6666666667,1,40,2.2666666667,29.477176792,29.477176792 -50,0,22.39,35.5,19.6666666667,37.7,23.23,37.0666666667,22.29,33.56,20.8233333333,47.9333333333,3.1266666667,32.7666666667,21.5,34.79,23.39,43.06,20.39,39.5,4.05,766.6,88.3333333333,1,40,2.3333333333,17.2466354328,17.2466354328 -50,0,22.39,35.5,19.6,37.76,23.23,37.1266666667,22.23,33.5,20.8566666667,47.8633333333,3.1633333333,33.7966666667,21.456,34.71,23.39,43,20.39,39.5514285714,4,766.6,89,1,40,2.4,17.0780614018,17.0780614018 -40,0,22.3566666667,35.5,19.5666666667,37.9,23.26,37.1633333333,22.26,33.56,20.79,47.73,3.03,33.7966666667,21.4214285714,34.6214285714,23.39,42.8633333333,20.35,39.612,3.9166666667,766.6,89,1,40,2.3166666667,44.3452528212,44.3452528212 -60,0,22.29,35.5,19.5,37.9,23.26,37.1633333333,22.2,33.5,20.79,47.645,2.8633333333,33.6633333333,21.39,34.572,23.3233333333,42.79,20.39,39.7,3.8333333333,766.6,89,1,40,2.2333333333,35.5865488877,35.5865488877 -60,0,22.29,35.53,19.5,37.95,23.23,37.1266666667,22.2,33.5,20.79,47.5,2.73,33.9233333333,21.39,34.5957142857,23.29,42.59,20.39,39.7,3.75,766.6,89,1,40,2.15,32.0492950617,32.0492950617 -60,0,22.29,35.59,19.4633333333,37.9666666667,23.29,37.2,22.2,33.5,20.79,47.4333333333,2.6633333333,34.73,21.39,34.834,23.29,42.59,20.39,39.7514285714,3.6666666667,766.6,89,1,40,2.0666666667,42.6946382504,42.6946382504 -60,0,22.2,35.53,19.39,37.9666666667,23.29,37.26,22.2,33.53,20.79,47.29,2.53,35.0633333333,21.4175,34.90875,23.26,42.6333333333,20.39,39.812,3.5833333333,766.6,89,1,40,1.9833333333,4.6373425284,4.6373425284 -50,0,22.2,35.59,19.29,38.03,23.29,37.2,22.1333333333,33.59,20.73,47.29,2.4,35.83,21.4214285714,35.0257142857,23.2,42.56,20.39,39.8528571429,3.5,766.6,89,1,40,1.9,23.2620479073,23.2620479073 -50,0,22.2,35.59,19.29,38.09,23.29,37.2,22.1,33.59,20.7,47.2,2.4,36.5566666667,21.412,35.076,23.2,42.8266666667,20.39,39.9,3.3333333333,766.6166666667,89.5,1,38.1666666667,1.8,48.5527413664,48.5527413664 -50,0,22.2,35.7,19.29,38.1266666667,23.29,37.2,22.1,33.59,20.7,47.1266666667,2.29,37,21.4528571429,35.2571428571,23.2,42.9,20.3614285714,39.9571428571,3.1666666667,766.6333333333,90,1,36.3333333333,1.7,40.6822540448,40.6822540448 -20,0,22.1333333333,35.7,19.29,38.2,23.29,37.2,22.1,33.59,20.7,47.09,2.23,37.2,21.434,35.29,23.2,42.79,20.39,40,3,766.65,90.5,1,34.5,1.6,19.8750630836,19.8750630836 -30,0,22.1,35.7,19.2,38.2,23.29,37.2,22.1,33.59,20.7,47.09,2.09,37.7333333333,21.4371428571,35.3842857143,23.2,42.73,20.39,40.0257142857,2.8333333333,766.6666666667,91,1,32.6666666667,1.5,20.9933462902,20.9933462902 -30,0,22.1,35.76,19.2,38.2,23.23,37.2,22.1,33.59,20.7,47,2.0225,38.4225,21.456,35.46,23.1666666667,42.6633333333,20.39,40.09,2.6666666667,766.6833333333,91.5,1,30.8333333333,1.4,46.2432998465,46.2432998465 -30,0,22.0666666667,35.76,19.1666666667,38.29,23.2,37.2,22.075,33.5675,20.7,46.9333333333,2,39.2966666667,21.4214285714,35.4571428571,23.1666666667,42.53,20.39,40.09,2.5,766.7,92,1,29,1.3,48.6306565115,48.6306565115 -60,0,22,35.7,19.1,38.29,23.2,37.2,22,33.56,20.6,46.79,1.8633333333,38.8633333333,21.434,35.4,23.1333333333,42.3633333333,20.39,40.09,2.45,766.6833333333,92.1666666667,1,30.8333333333,1.2666666667,14.9828973575,14.9828973575 -50,0,22,35.73,19.1,38.3266666667,23.1333333333,37.2,22.1,33.59,20.6,46.79,1.73,39.0633333333,21.4528571429,35.4271428571,23.125,42.195,20.3471428571,40.1214285714,2.4,766.6666666667,92.3333333333,1,32.6666666667,1.2333333333,3.2357154065,3.2357154065 -60,0,22,35.79,19.1,38.4,23.2,37.2,22.0333333333,33.53,20.6,46.7,1.73,39.9966666667,21.39,35.29,23.1,42.03,20.39,40.156,2.35,766.65,92.5,1,34.5,1.2,40.6409296324,40.6409296324 -40,0,22,35.79,19,38.29,23.2,37.2,22,33.5,20.6,46.6266666667,1.79,40.59,21.39,35.29,23.1,42,20.39,40.15875,2.3,766.6333333333,92.6666666667,1,36.3333333333,1.1666666667,37.1183319483,37.1183319483 -60,0,21.9266666667,35.79,19,38.3633333333,23.2,37.2,22,33.5,20.6,46.59,1.6333333333,40.2,21.39,35.4,23.1,41.9333333333,20.39,40.2,2.25,766.6166666667,92.8333333333,1,38.1666666667,1.1333333333,45.9109618794,45.9109618794 -70,0,21.89,35.79,19,38.4,23.2,37.2,22,33.53,20.6,46.53,1.5,40.5333333333,21.39,35.3371428571,23,41.79,20.39,40.2,2.2,766.6,93,1,40,1.1,7.7562836115,7.7562836115 -70,10,21.89,35.93,18.9266666667,38.4,23.2,37.2,22,33.59,20.6,46.5,1.5,40.9333333333,21.39,35.312,23,41.73,20.39,40.2642857143,2.1166666667,766.6,93.1666666667,1,40,1.0666666667,48.6818388454,48.6818388454 -70,0,21.89,36.4333333333,18.89,39.1,23.0666666667,36.7333333333,21.9633333333,33.59,20.6,46.5,1.4266666667,41.1933333333,21.39,35.4714285714,23,41.6633333333,20.39,40.356,2.0333333333,766.6,93.3333333333,1,40,1.0333333333,37.6306903199,37.6306903199 -70,0,21.89,36.56,18.89,39.6933333333,23,36.3266666667,21.89,33.6633333333,20.5666666667,46.5,1.5333333333,42.06,21.39,35.5,22.9266666667,41.53,20.39,40.29,1.95,766.6,93.5,1,40,1,12.7764623147,12.7764623147 -70,10,21.89,36.79,18.79,40.1,23,36.26,21.9633333333,33.73,20.55,46.5,1.5333333333,42.1333333333,21.39,35.5,22.9266666667,41.4666666667,20.37,40.236,1.8666666667,766.6,93.6666666667,1,40,0.9666666667,11.6420250153,11.6420250153 -50,0,21.89,36.79,18.79,40.2233333333,23,36.2,21.89,33.8633333333,20.5,46.4333333333,1.6633333333,43.1333333333,21.39,35.378,22.9266666667,41.3266666667,20.3185714286,40.1214285714,1.7833333333,766.6,93.8333333333,1,40,0.9333333333,1.3925970299,1.3925970299 -70,0,21.89,36.8,18.79,40.09,23,36.2,21.89,33.79,20.5666666667,46.1333333333,1.8633333333,43.6,21.3185714286,34.9971428571,22.89,41.0266666667,20.29,39.856,1.7,766.6,94,1,40,0.9,24.8617509846,24.8617509846 -280,0,21.89,36.8,18.79,39.8333333333,23,36.1266666667,21.89,33.73,20.5,45.9333333333,2.0666666667,44.7633333333,21.29,34.656,22.8233333333,40.6333333333,20.29,39.5528571429,1.7833333333,766.6166666667,94,1,37.8333333333,0.9666666667,13.5563469725,13.5563469725 -150,0,21.89,36.4666666667,18.79,39.6266666667,22.9633333333,36.1566666667,21.89,33.59,20.5,45.6333333333,2.26,45.6233333333,21.29,34.5242857143,22.79,40.1933333333,20.29,39.22,1.8666666667,766.6333333333,94,1,35.6666666667,1.0333333333,23.3983532875,23.3983532875 -60,0,21.89,36.295,18.79,39.4666666667,22.89,36.23,21.89,33.53,20.5,45.4333333333,2.545,46.1,21.272,34.294,22.79,39.9333333333,20.2642857143,38.7642857143,1.95,766.65,94,1,33.5,1.1,20.8804300753,20.8804300753 -70,0,21.89,36.1266666667,18.79,39.2666666667,22.89,36.29,21.8566666667,33.4666666667,20.5,45.1633333333,2.8266666667,46.5966666667,21.2,34.0257142857,22.79,39.76,20.29,38.356,2.0333333333,766.6666666667,94,1,31.3333333333,1.1666666667,3.9671189152,3.9671189152 -60,0,21.89,35.9666666667,18.79,39.09,22.79,36.09,21.8566666667,33.4,20.5,45.03,3.1,47.2633333333,21.2,33.9,22.79,39.6266666667,20.2514285714,38.0371428571,2.1166666667,766.6833333333,94,1,29.1666666667,1.2333333333,42.2685233061,42.2685233061 -70,0,21.89,35.8266666667,18.79,39.03,22.79,36.09,21.8566666667,33.3633333333,20.5,44.76,3.5666666667,47.93,21.2,33.7928571429,22.7,39.56,20.2,37.714,2.2,766.7,94,1,27,1.3,45.5360797117,45.5360797117 -50,0,21.89,35.79,18.79,38.9666666667,22.79,35.9666666667,21.79,33.3175,20.5,44.6266666667,3.8333333333,47.8633333333,21.2,33.8225,22.7,39.5,20.2,37.4971428571,2.85,766.7,92.1666666667,1,27.3333333333,1.65,42.7604099386,42.7604099386 -60,0,21.89,35.79,18.8566666667,38.9666666667,22.79,35.9,21.79,33.4,20.4266666667,44.4,4.2266666667,48.5266666667,21.2,33.92,22.7,39.4,20.2,37.29,3.5,766.7,90.3333333333,1,27.6666666667,2,28.0831477954,28.0831477954 -50,0,21.79,35.73,18.89,38.9333333333,22.79,35.8333333333,21.79,33.4333333333,20.5,44.1333333333,4.8333333333,50,21.2,34,22.7,39.4,20.2,37.15,4.15,766.7,88.5,1,28,2.35,30.1578325103,30.1578325103 -50,0,21.79,35.73,18.89,39.06,22.73,35.5666666667,21.79,33.5,20.5333333333,45.36,6.2333333333,52.9266666667,21.2,34,22.7,39.29,20.218,37.016,4.8,766.7,86.6666666667,1,28.3333333333,2.7,9.4599384465,9.4599384465 -80,0,21.79,35.7,19.3,39.1,22.79,35.4666666667,21.79,33.5666666667,20.6,46.56,7.5666666667,52.1266666667,21.1571428571,34.08,22.6666666667,39.26,20.2514285714,36.7571428571,5.45,766.7,84.8333333333,1,28.6666666667,3.05,1.7833534512,1.7833534512 -60,10,21.79,35.7,20.16,38.36,22.8566666667,35.4,21.79,33.76,20.6,44.9266666667,9.1566666667,42.5333333333,21.2,34.394,22.6,39.1266666667,20.33,36.59,6.1,766.7,83,1,29,3.4,1.755339466,1.755339466 -370,0,21.8233333333,35.79,21.0566666667,37.0933333333,23,35.1633333333,21.79,33.79,20.6,44,10.23,32.3266666667,21.2,34.7542857143,22.6,39.09,20.39,36.4557142857,6.6,766.7333333333,80.5,1,30.8333333333,3.4166666667,23.5655716737,23.5655716737 -400,0,21.8233333333,35.79,21.6566666667,36.3666666667,23.0666666667,35.09,21.8566666667,33.8633333333,20.5666666667,43.8266666667,11.2966666667,21.6333333333,21.236,35,22.6,39.03,20.39,36.378,7.1,766.7666666667,78,1,32.6666666667,3.4333333333,6.8415044341,6.8415044341 -70,0,21.89,36.1333333333,22.4566666667,35.4966666667,23.1,35,21.9266666667,33.9,20.5,44.16,12.0233333333,14.9,21.29,34.9428571429,22.6,38.9666666667,20.39,36.29,7.6,766.8,75.5,1,34.5,3.45,10.7886998914,10.7886998914 -70,0,21.89,36.6,23.1233333333,34.6966666667,23.1666666667,34.86,22.075,33.975,20.5,44.2233333333,12.93,7.8933333333,21.236,34.794,22.6,38.9,20.5,36.4,8.1,766.8333333333,73,1,36.3333333333,3.4666666667,19.2580966512,19.2580966512 -80,0,22,36.7666666667,23.9,33.85,23.2,34.79,22.1333333333,34,20.5,43.89,13.2633333333,2.9666666667,21.2,34.4542857143,22.6,38.76,20.5,36.59375,8.6,766.8666666667,70.5,1,38.1666666667,3.4833333333,5.485769501,5.485769501 -90,0,22,36.9666666667,24.5566666667,33.5266666667,23.2,34.79,22.26,34,20.5,43.745,13.5475,1.075,21.2,34.156,22.5333333333,38.5666666667,20.5,36.8414285714,9.1,766.9,68,1,40,3.5,12.7297105035,12.7297105035 -70,10,22.1,37.3,25.03,33.66,23.1,34.9333333333,22.39,34.0666666667,20.5,44.3,13.8966666667,1,21.2,33.7971428571,22.5,38.5,20.5,37.094,9.4333333333,766.8833333333,67.1666666667,1.1666666667,40,3.6166666667,18.1227918132,18.1227918132 -80,0,22.1,37.6333333333,25.4933333333,32.43,23.1,35.06,22.4633333333,34.3333333333,20.4266666667,44.36,14.1966666667,1,21.2,33.476,22.5,38.56,20.5,37.44,9.7666666667,766.8666666667,66.3333333333,1.3333333333,40,3.7333333333,41.4566266001,41.4566266001 -60,10,22.2,38,25.8266666667,31.43,23.1,35.2666666667,22.5,34.4333333333,20.4633333333,44.1933333333,14.4425,1,21.2,33.0957142857,22.5,38.7,20.6,37.7,10.1,766.85,65.5,1.5,40,3.85,4.7639004653,4.7639004653 -50,10,22.2675,38.1725,26.1333333333,30.9666666667,23.1,35.4,22.5666666667,34.5,20.39,43.9333333333,14.7933333333,1,21.1,32.9,22.5,38.7,20.5285714286,37.6528571429,10.4333333333,766.8333333333,64.6666666667,1.6666666667,40,3.9666666667,41.0139862564,41.0139862564 -80,0,22.29,38.89,26.3266666667,30.4933333333,23.1,35.6266666667,22.6333333333,34.5966666667,20.7333333333,58.73,15.2566666667,1,21.1285714286,32.6685714286,22.5,38.7,20.6,37.718,10.7666666667,766.8166666667,63.8333333333,1.8333333333,40,4.0833333333,3.0145188095,3.0145188095 -80,0,22.4266666667,40.4266666667,26.4266666667,30.03,23.1,35.875,22.7,34.79,21,63.59,15.59,1,21.1,32.458,22.5,38.6266666667,20.5714285714,37.79,11.1,766.8,63,2,40,4.2,31.2576036318,31.2576036318 -80,0,22.5,40.2933333333,26.5666666667,29.7633333333,23.1,36,22.73,34.9,20.89,61.3966666667,15.96,1,21.1,31.8642857143,22.5,38.4666666667,20.5,37.79,11.4333333333,766.8166666667,61,2.1666666667,40,4.0166666667,21.3103280403,21.3103280403 -80,0,22.5,40.03,26.6333333333,29.53,23.2,36.1266666667,22.79,34.9475,20.8233333333,59.99,16.2266666667,1,21.1,31.254,22.5666666667,38.3266666667,20.5142857143,37.7385714286,11.7666666667,766.8333333333,59,2.3333333333,40,3.8333333333,25.6069833296,25.6069833296 -120,0,22.5,39.4233333333,26.65,29.34,23.2,36.4,22.8566666667,35.4233333333,20.79,58.4566666667,16.2633333333,1,21.0857142857,30.9671428571,22.6333333333,38.2,20.54,37.678,12.1,766.85,57,2.5,40,3.65,41.5086283698,41.5086283698 -90,10,22.6,37.9,26.5225,28.565,23.1333333333,35.9266666667,22.89,35.0933333333,20.73,57.1233333333,16.39,1,21.02,30.836,22.7,38.2,20.5,37.59,12.4333333333,766.8666666667,55,2.6666666667,40,3.4666666667,33.1517884973,33.1517884973 -50,10,22.5333333333,35.8266666667,26.1633333333,26.6566666667,22.9266666667,34.3333333333,22.89,34.3666666667,20.7,55.6966666667,16.4266666667,1,21.1,31.2,22.73,38.06,20.56,37.5,12.7666666667,766.8833333333,53,2.8333333333,40,3.2833333333,30.5911001982,30.5911001982 -70,0,22.5,34.7566666667,25.8266666667,25.26,22.6666666667,33.8,23,33.9666666667,20.7,54.4966666667,16.6933333333,1,21.1,30.956,22.79,37.8975,20.5,37.4857142857,13.1,766.9,51,3,40,3.1,4.3734257342,4.3734257342 -60,0,22.5,33.3633333333,25.6333333333,24.7333333333,22.5333333333,32.3933333333,23.0666666667,33.8266666667,20.6,52.7266666667,16.8233333333,1,21.1,30.6228571429,22.79,37.73,20.5,37.378,13.3166666667,766.8666666667,50,3,40,3.0166666667,21.4624405839,21.4624405839 -90,10,22.5,32.5,25.5,24.29,22.4633333333,31.9566666667,23.0666666667,32.5566666667,20.6666666667,51.3933333333,17.0966666667,1,21.1,30.37,22.89,37.49,20.5,37.2257142857,13.5333333333,766.8333333333,49,3,40,2.9333333333,20.8765204763,20.8765204763 -80,0,22.5,32.2266666667,25.5,24.6233333333,22.4633333333,32.23,23,31.9566666667,20.6,50.4,17.23,1,21.1125,30.365,22.89,37.23,20.54,37.29,13.75,766.8,48,3,40,2.85,41.0438177176,41.0438177176 -80,0,22.5,32.1933333333,25.5,25.3933333333,22.5333333333,32.3266666667,23.0333333333,31.9266666667,20.6,49.9266666667,17.23,1,21.1571428571,30.39,22.89,37.06,20.5571428571,37.2385714286,13.9666666667,766.7666666667,47,3,40,2.7666666667,36.9087010273,36.9087010273 -80,0,22.5666666667,32.4666666667,25.5666666667,25.7266666667,22.6666666667,32.4666666667,23.1,32.06,20.6,49.6,17.0933333333,1,21.14,30.39,22.89,36.9333333333,20.5,37.2,14.1833333333,766.7333333333,46,3,40,2.6833333333,31.1607739306,31.1607739306 -60,10,22.6,32.6933333333,25.4633333333,26.1966666667,22.7,32.53,23.1,32.23,20.6,49.1333333333,16.4933333333,1,21.2,30.39,22.9266666667,36.79,20.5,37.1528571429,14.4,766.7,45,3,40,2.6,42.1579460148,42.1579460148 -70,0,22.6,32.9666666667,25.39,26.5966666667,22.76,32.6633333333,23.1,32.3633333333,20.6,48.395,16.6633333333,1,21.2,30.39,23,36.6566666667,20.5,37.09,14.4166666667,766.6833333333,44.1666666667,2.8333333333,40,2.3333333333,43.5910642846,43.5910642846 -60,0,22.6333333333,33.1266666667,25.29,26.995,22.79,32.8266666667,23.1,32.53,20.6,48.06,16.79,1,21.2385714286,30.4371428571,23,36.56,20.5428571429,37.09,14.4333333333,766.6666666667,43.3333333333,2.6666666667,40,2.0666666667,49.7835566057,49.7835566057 -60,10,22.7,33.26,25.1666666667,27.3233333333,22.79,32.9666666667,23.1,32.59,20.6,47.9333333333,17.0966666667,1,21.29,30.54,23.0666666667,36.56,20.5,37.09,14.45,766.65,42.5,2.5,40,1.8,27.9494346934,27.9494346934 -70,0,22.79,33.4333333333,25.1,27.53,22.79,33.03,23.2,32.79,20.6,47.76,17.34,1,21.3471428571,30.6,23.1,36.5,20.5,37.0642857143,14.4666666667,766.6333333333,41.6666666667,2.3333333333,40,1.5333333333,1.3226970565,1.3226970565 -70,0,22.79,33.56,25,27.9266666667,22.8566666667,33.2233333333,23.2,32.8633333333,20.6,47.6266666667,17.3566666667,1,21.39,30.58,23.1666666667,36.36,20.5,37,14.4833333333,766.6166666667,40.8333333333,2.1666666667,40,1.2666666667,40.7999295159,40.7999295159 -80,0,22.89,33.745,24.9266666667,28.1333333333,22.89,33.4,23.2,32.9,20.6,47.5,17.4266666667,1,21.39,30.5,23.29,36.3633333333,20.5,36.9857142857,14.5,766.6,40,2,40,1,5.9104810702,5.9104810702 -70,10,22.9266666667,33.8266666667,24.76,28.46,22.9175,33.475,23.2,32.9,20.6,47.4333333333,17.36,1,21.5,30.29,23.3566666667,36.23,20.5125,36.9,14.6666666667,766.5333333333,39.3333333333,2.1666666667,40,0.9166666667,12.0938191772,12.0938191772 -70,0,23,33.9,24.7,28.6666666667,23,33.5,23.2,33,20.6,47.29,17.2,1,21.5571428571,30.0828571429,23.39,36.06,20.54,36.9,14.8333333333,766.4666666667,38.6666666667,2.3333333333,40,0.8333333333,0.7923181634,0.7923181634 -70,0,23.0333333333,34.03,24.6,28.8233333333,23,33.53,23.2,33,20.6,47.29,17.2,1,21.62,29.83,23.4633333333,36,20.5,36.9285714286,15,766.4,38,2.5,40,0.75,38.8479117421,38.8479117421 -60,10,23.1,34.09,24.5333333333,28.9633333333,23.0666666667,33.6633333333,23.245,33.045,20.6,47.2,17.1333333333,1,21.7257142857,29.7257142857,23.5333333333,35.9666666667,20.5,37,15.1666666667,766.3333333333,37.3333333333,2.6666666667,40,0.6666666667,13.7131597847,13.7131597847 -70,0,23.2,34.2,24.5,29.23,23.1,33.7,23.26,33.09,20.6,47.0666666667,17.3266666667,1,21.79,29.6,23.6666666667,35.9,20.5,37,15.3333333333,766.2666666667,36.6666666667,2.8333333333,40,0.5833333333,48.8597117364,48.8597117364 -60,0,23.2,34.2,24.4266666667,29.29,23.1,33.76,23.26,33.09,20.6,46.9666666667,17.5,1,21.8471428571,29.5142857143,23.73,35.76,20.5,36.98,15.5,766.2,36,3,40,0.5,37.1610613074,37.1610613074 -70,10,23.29,34.3633333333,24.39,29.5666666667,23.1,33.79,23.29,33.1266666667,20.6,46.7666666667,17.4266666667,1,21.912,29.478,23.8566666667,35.7,20.5,36.9428571429,15.45,766.15,35.8333333333,3,40,0.4,29.9907089327,29.9907089327 -70,0,23.29,34.3633333333,24.3233333333,29.76,23.1666666667,33.8633333333,23.29,33.2,20.5666666667,46.6633333333,17.3233333333,1,22,29.3614285714,23.89,35.5266666667,20.5,36.96,15.4,766.1,35.6666666667,3,40,0.3,30.1421135548,30.1421135548 -70,0,23.39,34.4,24.26,29.89,23.2,33.9,23.29,33.2,20.5666666667,46.53,17.39,1,22.1,29.29,23.9975,35.4,20.5,36.8842857143,15.35,766.05,35.5,3,40,0.2,24.3193125352,24.3193125352 -80,0,23.39,34.4,24.2,30.03,23.2,33.9,23.29,33.26,20.6,46.3633333333,17.5333333333,1,22.1857142857,29.2242857143,24.1,35.2666666667,20.5,36.79,15.3,766,35.3333333333,3,40,0.1,7.9505348927,7.9505348927 -70,10,23.5,34.53,24.2,30.23,23.26,33.9666666667,23.3233333333,33.3266666667,20.6,46.29,17.5333333333,1,22.218,29.12,24.2,35.1633333333,20.5,36.79,15.25,765.95,35.1666666667,3,40,0,14.9113570573,14.9113570573 -80,0,23.5,34.59,24.1333333333,30.43,23.26,33.9666666667,23.39,33.4,20.6,46.2,17.4266666667,1,22.29,29.1285714286,24.26,35.09,20.5,36.79,15.2,765.9,35,3,40,-0.1,49.9816739,49.9816739 -70,0,23.5,34.59,24.1,30.6333333333,23.29,34.09,23.39,33.4333333333,20.5333333333,46.1266666667,17.4266666667,1,22.39,29.1,24.3233333333,35.03,20.5,36.7642857143,15.2833333333,765.85,35,3.1666666667,40,-0.0333333333,7.3289469816,7.3289469816 -70,0,23.5666666667,34.59,24.0333333333,30.7,23.29,34.09,23.39,33.6933333333,20.6,46.06,17.5,1,22.4057142857,29.1142857143,24.39,35.2233333333,20.5,36.79,15.3666666667,765.8,35,3.3333333333,40,0.0333333333,32.763381605,32.763381605 -50,0,23.6,34.7666666667,24,30.8233333333,23.29,34.1266666667,23.4266666667,34.1933333333,20.6,45.975,17.5666666667,1,22.5,29.2,24.4266666667,35.7266666667,20.5,36.79,15.45,765.75,35,3.5,40,0.1,46.8933634576,46.8933634576 -60,0,23.6,34.9666666667,23.945,31.0725,23.29,34.2,23.5,34.4666666667,20.6,45.9,17.4633333333,1,22.5,29.2,24.5,36.1933333333,20.5,36.79,15.5333333333,765.7,35,3.6666666667,40,0.1666666667,49.5179850841,49.5179850841 -80,0,23.6333333333,34.9333333333,23.9266666667,31.26,23.2,34.23,23.5,34.5,20.6,45.79,17.34,1,22.6,29.2,24.5,36.5,20.5,36.7385714286,15.6166666667,765.65,35,3.8333333333,40,0.2333333333,12.976078107,12.976078107 -90,0,23.7,34.9333333333,23.89,31.3566666667,23.2,34.43,23.5,34.4333333333,20.6,45.79,17.39,1,22.6,29.016,24.5,36.7666666667,20.5,36.734,15.7,765.6,35,4,40,0.3,48.8723007264,48.8723007264 -90,0,23.7,34.6233333333,23.8233333333,31.0966666667,23.2,34.53,23.5,34.3633333333,20.6,45.5633333333,17.3566666667,1,22.6142857143,28.6385714286,24.5,37.09,20.5,37.2328571429,15.7666666667,765.5333333333,35,4,40,0.35,18.5169992154,18.5169992154 -80,0,23.7,33.6675,23.79,30.6566666667,23.2,34.59,23.5,34.1566666667,20.6666666667,45.1566666667,17.29,1,22.7,28.376,24.5666666667,37.03,20.54,37.334,15.8333333333,765.4666666667,35,4,40,0.4,49.1305289324,49.1305289324 -80,0,23.7,32.7333333333,23.73,29.99,23.245,34.745,23.5,33.9666666667,20.7,44.46,17.26,1,22.6571428571,27.95,24.5333333333,36.8633333333,20.6,37.4,15.9,765.4,35,4,40,0.45,12.8610492917,12.8610492917 -70,0,23.7,31.9266666667,23.7,29.3333333333,23.29,34.79,23.5,33.7666666667,20.7,43.8666666667,17.26,1,22.66,27.714,24.6,36.73,20.6,37.44,15.9666666667,765.3333333333,35,4,40,0.5,9.644858411,9.644858411 -80,0,23.7,31.2666666667,23.6333333333,28.7333333333,23.29,34.79,23.5,33.495,20.79,43.16,17.26,1,22.6857142857,27.5271428571,24.6,36.56,20.6,37.4,16.0333333333,765.2666666667,35,4,40,0.55,18.605885841,18.605885841 -90,0,23.7,30.8566666667,23.5666666667,28.2266666667,23.29,34.76,23.5,33.26,20.79,42.6333333333,17.3266666667,1,22.68,27.352,24.6,36.5,20.6,37.236,16.1,765.2,35,4,40,0.6,12.4039114336,12.4039114336 -90,0,23.7,30.6633333333,23.5,27.96,23.29,34.76,23.5,33.0666666667,20.89,42.1,17.5,1,22.6,27.1285714286,24.6333333333,36.5,20.6,37.2228571429,16.1,765.1333333333,34.8333333333,3.8333333333,40,0.55,1.9642219995,1.9642219995 -130,0,23.7,31.4266666667,23.39,27.73,23.29,34.6633333333,23.39,32.76,20.9633333333,41.6333333333,17.5,1,22.6,27,24.7,36.4333333333,20.6,36.735,16.1,765.0666666667,34.6666666667,3.6666666667,40,0.5,39.9853269104,39.9853269104 -120,0,23.7,31.4933333333,23.39,27.93,23.29,34.59,23.39,32.6266666667,21,41.2233333333,17.39,1,22.6,27.0714285714,24.7,36.4,20.6,36.154,16.1,765,34.5,3.5,40,0.45,36.1069944687,36.1069944687 -130,0,23.7,31.3233333333,23.39,28.46,23.29,34.56,23.39,32.5,21.0666666667,41.09,17.3233333333,1,22.6,27.218,24.7,36.5266666667,20.6,35.7642857143,16.1,764.9333333333,34.3333333333,3.3333333333,40,0.4,16.0564981867,16.0564981867 -120,0,23.7,31.53,23.3233333333,28.7266666667,23.29,34.5,23.39,32.5,21.1333333333,40.9666666667,17.29,1,22.6,27.3614285714,24.7,36.59,20.6,35.554,16.1,764.8666666667,34.1666666667,3.1666666667,40,0.35,13.5465107625,13.5465107625 -130,0,23.76,31.9633333333,23.29,29.0333333333,23.39,34.59,23.39,32.4,21.2,40.8266666667,17.29,1,22.6,27.5,24.76,36.56,20.6,35.3514285714,16.1,764.8,34,3,40,0.3,46.9770133961,46.9770133961 -120,0,23.76,31.9633333333,23.29,29.1666666667,23.39,34.59,23.39,32.4,21.23,40.7,17.26,1,22.6,27.5857142857,24.76,36.4333333333,20.56,35.196,16.0166666667,764.75,35,3.1666666667,40,0.5666666667,6.989599776,6.989599776 -200,0,23.79,32.2266666667,23.29,29.2633333333,23.39,34.59,23.3566666667,32.4,21.23,40.6266666667,17.2,1,22.6,27.62,24.79,36.4,20.5571428571,34.9285714286,15.9333333333,764.7,36,3.3333333333,40,0.8333333333,7.6420067344,7.6420067344 -120,0,23.79,33.36,23.23,29.4633333333,23.39,34.59,23.29,32.4,21.26,40.56,17.2266666667,1,22.6,27.7,24.79,36.312,20.56,34.856,15.85,764.65,37,3.5,40,1.1,2.8866803041,2.8866803041 -110,0,23.79,33.6633333333,23.2,29.9933333333,23.39,34.7,23.29,32.3633333333,21.2,40.5,17.0333333333,1,22.56,27.7,24.81,36.236,20.5,34.7233333333,15.7666666667,764.6,38,3.6666666667,40,1.3666666667,32.4798285379,32.4798285379 -120,0,23.79,33.59,23.2,30.3266666667,23.39,34.7,23.29,32.29,21.245,40.5,16.76,1,22.5285714286,27.7657142857,24.8471428571,36.1214285714,20.5,34.53,15.6833333333,764.55,39,3.8333333333,40,1.6333333333,46.3382929447,46.3382929447 -130,0,23.79,33.4666666667,23.1,30.445,23.39,34.76,23.29,32.29,21.29,40.4666666667,16.5225,1,22.5,27.976,24.89,35.856,20.5,34.3633333333,15.6,764.5,40,4,40,1.9,38.3128911373,38.3128911373 -130,0,23.79,33.3266666667,23.0666666667,30.7,23.39,34.76,23.29,32.3633333333,21.29,40.4,16.4633333333,1,22.5,28.1714285714,24.89,35.7228571429,20.5,34.23,15.4333333333,764.4666666667,40.6666666667,3.8333333333,40,1.9833333333,13.5693498887,13.5693498887 -110,0,23.76,33.2,23,30.76,23.39,34.8266666667,23.29,32.3633333333,21.29,40.29,17.13,1,22.5,28.29,24.89,35.552,20.5,34.09,15.2666666667,764.4333333333,41.3333333333,3.6666666667,40,2.0666666667,0.0139887445,0.0139887445 -120,0,23.7,33.2,22.9633333333,31,23.39,34.9666666667,23.29,32.29,21.29,40.23,17.13,1,22.4371428571,28.3757142857,24.89,35.4,20.5,34.1633333333,15.1,764.4,42,3.5,40,2.15,18.5914534726,18.5914534726 -90,0,23.7,33.09,22.89,31.0666666667,23.29,35,23.26,32.26,21.29,40.09,16.5333333333,1,22.39,28.476,24.89,35.59,20.5,34.06,14.9333333333,764.3666666667,42.6666666667,3.3333333333,40,2.2333333333,19.0617139218,19.0617139218 -90,0,23.7,33.2,22.79,31.1333333333,23.29,35.09,23.2,32.2,21.29,40.03,15.66,1,22.39,28.6971428571,24.9057142857,35.72,20.5,33.7266666667,14.7666666667,764.3333333333,43.3333333333,3.1666666667,40,2.3166666667,20.1985747204,20.1985747204 -80,0,23.7,33.2,22.73,31.2,23.23,35.09,23.2,32.2,21.2,39.79,14.1566666667,1,22.39,29.04,24.956,36,20.5,33.3333333333,14.6,764.3,44,3,40,2.4,2.6907704771,2.6907704771 -80,0,23.7,33.23,22.6666666667,31.29,23.1666666667,35.06,23.2,32.2,21.2,39.79,13.2966666667,1,22.39,29.28125,24.9685714286,36.2,20.4266666667,33,14.2166666667,764.2833333333,45.6666666667,3,40,2.5166666667,31.8497481989,31.8497481989 -100,0,23.7,33.23,22.6,31.43,23.1,35.06,23.2,32.26,21.2,39.76,12.3333333333,1,22.39,29.6114285714,24.956,36.29,20.39,32.76,13.8333333333,764.2666666667,47.3333333333,3,40,2.6333333333,11.8112458847,11.8112458847 -110,0,23.6,33.2,22.5,31.6333333333,23.1,35.09,23.1666666667,32.3266666667,21.2,39.6266666667,11.6666666667,1,22.39,29.93,24.89,36.4542857143,20.39,32.7,13.45,764.25,49,3,40,2.75,17.5394768128,17.5394768128 -110,0,23.6,33.26,22.4266666667,31.8266666667,23.1,35.1633333333,23.1,32.4,21.1666666667,39.73,11,1.1666666667,22.39,30.6257142857,24.89,36.63,20.39,32.59,13.0666666667,764.2333333333,50.6666666667,3,40,2.8666666667,19.7701247525,19.7701247525 -120,0,23.6,33.3266666667,22.3566666667,32.1566666667,23.1,35.23,23.1,32.53,21.1,39.79,10.6,2.0266666667,22.39,31.374,24.89,36.8214285714,20.39,32.6175,12.6833333333,764.2166666667,52.3333333333,3,40,2.9833333333,34.8467694828,34.8467694828 -80,0,23.5333333333,33.5266666667,22.29,32.49,23.1,35.29,23.1,32.6633333333,21.1666666667,39.9333333333,10.09,3.4333333333,22.39,31.8557142857,24.89,37.134,20.39,32.7,12.3,764.2,54,3,40,3.1,10.0874322234,10.0874322234 -80,0,23.5,33.7,22.2,32.73,23.1,35.29,23.1,32.73,21.1666666667,40.06,9.7566666667,4.7666666667,22.39,32.196,24.89,37.3542857143,20.39,32.9266666667,12.0166666667,764.2166666667,54.6666666667,3,40,3.0333333333,8.4855237743,8.4855237743 -80,0,23.5,33.7,22.1333333333,32.8633333333,23.1,35.3633333333,23.1,32.8633333333,21.1,40.23,9.4333333333,5.8633333333,22.4371428571,32.4971428571,24.912,37.554,20.39,33.4,11.7333333333,764.2333333333,55.3333333333,3,40,2.9666666667,17.6053994452,17.6053994452 -70,0,23.5,33.79,22.0666666667,33.03,23.1,35.4,23.1,32.9333333333,21.1,40.3633333333,9.2266666667,6.9233333333,22.39,32.976,25,37.6685714286,20.39,33.86,11.45,764.25,56,3,40,2.9,38.7866258156,38.7866258156 -80,0,23.4266666667,33.73,22,33.2233333333,23.1,35.4,23.0333333333,32.9333333333,21.1,40.53,9.1266666667,7.4966666667,22.4214285714,33.09,25,37.79,20.39,34.1333333333,11.1666666667,764.2666666667,56.6666666667,3,40,2.8333333333,29.4139532722,29.4139532722 -60,0,23.39,33.79,21.8566666667,33.5,23.1,35.5,23,33,21.1,40.6633333333,8.9266666667,7.9633333333,22.412,33.376,25,37.8985714286,20.39,34.4633333333,10.8833333333,764.2833333333,57.3333333333,3,40,2.7666666667,9.0248515946,9.0248515946 -50,0,23.39,33.79,21.79,33.6333333333,23.1,35.5,23,33,21.1,40.7,8.7,8.65,22.5,33.9,25,38.058,20.39,34.6633333333,10.6,764.3,58,3,40,2.7,49.8080124147,49.8080124147 -70,0,23.39,33.8266666667,21.7,33.95,23.1333333333,35.59,23,33,21.1,40.79,8.36,9.2933333333,22.5,34.08,25,38.4657142857,20.39,34.79,10.4666666667,764.3166666667,58.3333333333,2.8333333333,40,2.65,41.6097123292,41.6097123292 -50,0,23.3233333333,33.9,21.6,34.1566666667,23.2,35.6633333333,23,33.06,21.0333333333,40.73,8.2266666667,9.5,22.5,34.4771428571,24.89,38.985,20.4633333333,34.99,10.3333333333,764.3333333333,58.6666666667,2.6666666667,40,2.6,17.6004211302,17.6004211302 -60,10,23.29,34.2666666667,21.5333333333,34.43,23.29,35.8266666667,23,33.09,21.0333333333,41.0566666667,8.1,10.1,22.478,34.772,24.89,39.174,20.39,35.1933333333,10.2,764.35,59,2.5,40,2.55,21.4317137608,21.4317137608 -50,0,23.29,34.3266666667,21.4633333333,34.59,23.29,35.9666666667,23,33.09,21.1,41.7966666667,7.9666666667,10.4333333333,22.4685714286,34.8114285714,24.7914285714,38.3557142857,20.39,35.66,10.0666666667,764.3666666667,59.3333333333,2.3333333333,40,2.5,22.5345951156,22.5345951156 -50,0,23.29,34.3266666667,21.39,34.6633333333,23.3233333333,36,23,33.09,21.1666666667,42.09,7.6566666667,10.9666666667,22.456,34.62,24.7,38.196,20.39,36.0666666667,9.9333333333,764.3833333333,59.6666666667,2.1666666667,40,2.45,10.151403246,10.151403246 -60,0,23.2225,34.345,21.29,34.9333333333,23.34,36.0675,22.9266666667,33.09,21.1,42.1633333333,7.59,11.7666666667,22.39,34.4714285714,24.7,38.4971428571,20.39,36.26,9.8,764.4,60,2,40,2.4,13.6383023695,13.6383023695 -50,0,23.2,34.4,21.29,35.06,23.39,36.1633333333,22.89,33.09,21.1,42.09,7.33,12.3933333333,22.39,34.5,24.6,38.736,20.4266666667,36.6566666667,9.6166666667,764.35,60.6666666667,2,40,2.3666666667,33.398489526,33.398489526 -50,0,23.2,34.5,21.1666666667,35.1266666667,23.39,36.29,22.89,33.09,21.1,42.03,7.1233333333,13.5266666667,22.39,34.5,24.6,38.8671428571,20.4266666667,36.79,9.4333333333,764.3,61.3333333333,2,40,2.3333333333,28.0740616727,28.0740616727 -60,0,23.2,34.5,21.1,35.26,23.39,36.29,22.89,33.09,21,41.8633333333,7.06,14.0666666667,22.39,34.4,24.58,39.076,20.39,37.03,9.25,764.25,62,2,40,2.3,0.8299931302,0.8299931302 -50,0,23.1,34.5,21.0666666667,35.4,23.4633333333,36.4,22.89,33.09,21,41.79,6.9333333333,14.2,22.3757142857,34.5371428571,24.5,39.2642857143,20.39,37.1633333333,9.0666666667,764.2,62.6666666667,2,40,2.2666666667,25.1479209168,25.1479209168 -60,0,23.1,34.5,21,35.4666666667,23.4633333333,36.4666666667,22.89,33.09,21,41.76,6.8,14.6666666667,22.29,34.612,24.5,39.44,20.4266666667,37.36,8.8833333333,764.15,63.3333333333,2,40,2.2333333333,32.2613413329,32.2613413329 -40,0,23.1,34.59,20.89,35.59,23.5,36.5,22.79,32.9,21,41.7,6.8,15.1933333333,22.29,34.6214285714,24.4842857143,39.6914285714,20.5,37.5225,8.7,764.1,64,2,40,2.2,44.8678032029,44.8678032029 -40,0,23.1,34.59,20.89,35.6633333333,23.5,36.56,22.79,32.9,21,41.6266666667,6.6566666667,15.5266666667,22.29,34.634,24.39,39.876,20.5,37.6633333333,8.5833333333,764.0833333333,64.1666666667,2,40,2.1166666667,41.3626595866,41.3626595866 -20,0,23.1,34.59,20.79,35.7,23.5,36.53,22.79,32.9,21,41.7,6.59,16,22.29,34.6842857143,24.39,40.0571428571,20.5,37.73,8.4666666667,764.0666666667,64.3333333333,2,40,2.0333333333,20.1609665877,20.1609665877 -40,0,23.0333333333,34.53,20.73,35.76,23.5,36.59,22.79,32.9,21,41.59,6.4666666667,16.56,22.29,34.6266666667,24.29,40.334,20.4266666667,37.79,8.35,764.05,64.5,2,40,1.95,16.743283486,16.743283486 -50,0,23,34.53,20.7,35.9,23.4633333333,36.59,22.79,32.9,21,41.59,6.4,17.2933333333,22.29,34.7128571429,24.29,40.6514285714,20.5,37.9333333333,8.2333333333,764.0333333333,64.6666666667,2,40,1.8666666667,26.6344496398,26.6344496398 -50,0,23,34.59,20.7,35.9666666667,23.39,36.59,22.79,32.9,21,41.59,6.295,17.945,22.29,34.79,24.29,40.812,20.5,38,8.1166666667,764.0166666667,64.8333333333,2,40,1.7833333333,32.0010769996,32.0010769996 -50,0,23,34.59,20.6,35.9,23.39,36.7,22.76,32.9,21,41.59,6.09,18.5333333333,22.29,34.79,24.29,40.9971428571,20.5,38.09,8,764,65,2,40,1.7,26.2805468868,26.2805468868 -60,0,23,34.59,20.5333333333,35.9666666667,23.39,36.7,22.76,32.9,20.89,41.7,6.09,19.7333333333,22.29,34.5671428571,24.2,41.4,20.5,38.1633333333,7.8,763.95,66.3333333333,2.1666666667,40,1.7833333333,19.7339213686,19.7339213686 -60,0,22.89,34.59,20.4633333333,36,23.5,36.79,22.7,32.9,20.89,41.645,6.16,20.8566666667,22.29,34.44,24.2,41.4857142857,20.5,38.23,7.6,763.9,67.6666666667,2.3333333333,40,1.8666666667,25.5511098076,25.5511098076 -60,0,22.89,34.59,20.39,36.0675,23.4266666667,36.79,22.7,32.9,20.89,41.7,6.2266666667,21.1233333333,22.29,34.3528571429,24.18,41.5,20.5,38.29,7.4,763.85,69,2.5,40,1.95,47.9835302918,47.9835302918 -60,0,22.8566666667,34.56,20.39,36.1633333333,23.5,36.9,22.7,32.9,20.89,41.7,6.3333333333,21.93,22.254,34.356,24.1,41.5571428571,20.5,38.4,7.2,763.8,70.3333333333,2.6666666667,40,2.0333333333,45.9924363531,45.9924363531 -50,0,22.8566666667,34.6333333333,20.29,36.29,23.5,36.9,22.7,32.9,20.89,41.7,6.4,21.4566666667,22.2514285714,34.3528571429,24.1,41.79,20.5,38.4666666667,7,763.75,71.6666666667,2.8333333333,40,2.1166666667,0.711184938,0.711184938 -50,0,22.79,34.56,20.29,36.3633333333,23.5,36.9,22.7,32.9,20.89,41.73,6.3666666667,20.9933333333,22.254,34.4,24.0857142857,41.8685714286,20.5,38.53,6.8,763.7,73,3,40,2.2,16.8805191177,16.8805191177 -50,0,22.79,34.56,20.26,36.4,23.5,36.925,22.7,32.9,20.89,41.79,6.2266666667,21.3266666667,22.2642857143,34.4428571429,24,41.812,20.5,38.59,6.8666666667,763.6833333333,72.3333333333,3.1666666667,40,2.1333333333,41.1345428787,41.1345428787 -40,0,22.79,34.59,20.2,36.4,23.5,37,22.6,32.79,20.89,41.79,6.19,22.49,22.254,34.554,24,41.9,20.5,38.6266666667,6.9333333333,763.6666666667,71.6666666667,3.3333333333,40,2.0666666667,47.22122862,47.22122862 -50,0,22.7,34.59,20.2,36.5,23.5,37,22.6,32.79,20.89,41.79,6.1233333333,22.8233333333,22.2642857143,34.55,24,42.09,20.5,38.7,7,763.65,71,3.5,40,2,5.0686033326,5.0686033326 -60,0,22.7,34.59,20.1333333333,36.5,23.5,37,22.6,32.9,20.8233333333,41.7666666667,6,22.9,22.2,34.356,23.9371428571,42.09,20.5,38.73,7.0666666667,763.6333333333,70.3333333333,3.6666666667,40,1.9333333333,7.0160511881,7.0160511881 -60,0,22.7,34.59,20.1,36.59,23.5,37,22.6,32.9,20.89,41.9,5.9333333333,23.6333333333,22.2,34.3685714286,23.89,42.09,20.5,38.79,7.1333333333,763.6166666667,69.6666666667,3.8333333333,40,1.8666666667,0.3131432924,0.3131432924 -60,0,22.7,34.59,20.1,36.59,23.5,37,22.6,32.9,20.89,41.9,5.8666666667,24.5,22.2,34.254,23.89,42.1685714286,20.5,38.9,7.2,763.6,69,4,40,1.8,44.1890479764,44.1890479764 -60,0,22.6666666667,34.59,20.0666666667,36.59,23.5,37,22.6,32.9,20.89,41.9,5.8,25.2266666667,22.2,34.1842857143,23.8614285714,42.0357142857,20.5,38.975,7.0666666667,763.55,69.5,3.8333333333,40,1.7833333333,31.466172915,31.466172915 -60,0,22.6,34.59,20,36.6633333333,23.5666666667,37,22.6,32.9,20.79,41.79,5.69,25.2333333333,22.2,34.09,23.83,41.834,20.5,39,6.9333333333,763.5,70,3.6666666667,40,1.7666666667,10.5541563709,10.5541563709 -50,0,22.6,34.59,20,36.73,23.6,37.09,22.5666666667,32.9,20.79,41.79,5.6233333333,25.3,22.2,34.09,23.8042857143,41.7671428571,20.5,39.09,6.8,763.45,70.5,3.5,40,1.75,9.0249367757,9.0249367757 -50,0,22.6,34.59,19.9266666667,36.79,23.6,37.03,22.5,32.9,20.79,41.8266666667,5.4,24.895,22.2,34.4,23.83,41.714,20.5,39.09,6.6666666667,763.4,71,3.3333333333,40,1.7333333333,45.8549126168,45.8549126168 -50,0,22.6,34.59,19.89,36.79,23.6,37,22.5,32.9,20.8566666667,41.9666666667,5.1266666667,25.1,22.2,34.3371428571,23.79,41.59,20.5666666667,39.2,6.5333333333,763.35,71.5,3.1666666667,40,1.7166666667,7.2878280771,7.2878280771 -40,0,22.5333333333,34.59,19.89,36.8633333333,23.5333333333,37.06,22.5,32.9,20.79,41.8266666667,4.8666666667,25.5,22.2,34.276,23.79,41.5,20.5,39.2,6.4,763.3,72,3,40,1.7,47.6534196758,47.6534196758 -50,0,22.5,34.7,19.8233333333,36.8266666667,23.5666666667,37.09,22.5,32.9,20.79,41.9,4.7633333333,26.5666666667,22.2,34.4714285714,23.7771428571,41.4428571429,20.5,39.23,6.1666666667,763.3,73.1666666667,2.8333333333,40,1.7,20.5333326594,20.5333326594 -60,0,22.5,34.7,19.8233333333,36.9,23.5,37.03,22.5,32.9,20.79,41.9,4.69,27.3666666667,22.2,34.5,23.7,41.378,20.5,39.3633333333,5.9333333333,763.3,74.3333333333,2.6666666667,40,1.7,6.2968411949,6.2968411949 -50,0,22.5,34.7,19.79,36.9,23.5,37.03,22.5,32.9,20.79,41.9,4.59,28.1666666667,22.2,34.5,23.7257142857,41.29,20.5,39.4,5.7,763.3,75.5,2.5,40,1.7,10.7354817213,10.7354817213 -60,0,22.5,34.7,19.79,36.975,23.5666666667,37.09,22.5,32.9,20.79,41.845,4.59,28.6333333333,22.2,34.5,23.7,41.254,20.5,39.4,5.4666666667,763.3,76.6666666667,2.3333333333,40,1.7,16.9398224796,16.9398224796 -50,0,22.39,34.59,19.73,37,23.5333333333,37.03,22.4633333333,32.8633333333,20.79,41.8266666667,4.5,29.43,22.2,34.5,23.7,41.1371428571,20.5,39.53,5.2333333333,763.3,77.8333333333,2.1666666667,40,1.7,5.6352811283,5.6352811283 -30,0,22.39,34.6633333333,19.7,37.09,23.6,37.03,22.39,32.79,20.79,41.8266666667,4.4333333333,29.9633333333,22.1375,34.475,23.68,41.052,20.5,39.59,5,763.3,79,2,40,1.7,11.2444098922,11.2444098922 -20,0,22.39,34.7,19.7,37.09,23.6,37,22.39,32.79,20.79,41.8266666667,4.3666666667,30.6233333333,22.1,34.536,23.6,40.9714285714,20.5,39.59,4.8666666667,763.3,79.5,2,40,1.6333333333,35.0779976347,35.0779976347 -30,0,22.39,34.7,19.6,37.06,23.5333333333,37,22.39,32.79,20.79,41.8266666667,4.3,31.3566666667,22.1428571429,34.59,23.6,40.856,20.5,39.59,4.7333333333,763.3,80,2,40,1.5666666667,43.1233298266,43.1233298266 -30,0,22.29,34.7,19.6,37.06,23.5,37,22.39,32.8266666667,20.76,41.79,4.19,31.9266666667,22.12,34.612,23.6,40.7385714286,20.5,39.59,4.6,763.3,80.5,2,40,1.5,6.788069522,6.788069522 -50,0,22.29,34.7225,19.6,37.09,23.4266666667,36.9333333333,22.39,32.9,20.7,41.79,4.19,32.1933333333,22.1285714286,34.7,23.6,40.7,20.5,39.59,4.4666666667,763.3,81,2,40,1.4333333333,3.1724438188,3.1724438188 -70,0,22.29,34.79,19.6,37.09,23.4266666667,37,22.39,32.845,20.76,41.79,4.19,32.86,22.1,34.5,23.6,40.6214285714,20.5,39.59,4.3333333333,763.3,81.5,2,40,1.3666666667,27.0612013061,27.0612013061 -60,0,22.26,34.76,19.6,37.09,23.39,37,22.39,32.9,20.7,41.79,4.19,33.1933333333,22.1,34.4842857143,23.6,40.7,20.5,39.59,4.2,763.3,82,2,40,1.3,18.2494280511,18.2494280511 -60,0,22.2,34.7,19.6,37.09,23.39,36.9333333333,22.39,32.9,20.7,41.79,4.4633333333,33.6933333333,22.1,34.59,23.5142857143,40.6528571429,20.6,39.6266666667,4.3833333333,763.2833333333,80.8333333333,2.1666666667,40,1.2833333333,48.121805198,48.121805198 -50,0,22.2,34.7,19.6,37.1266666667,23.5,37,22.29,32.9,20.7,41.79,4.6925,33.1175,22.1,34.6214285714,23.5,40.7,20.6,39.7675,4.5666666667,763.2666666667,79.6666666667,2.3333333333,40,1.2666666667,33.7269299547,33.7269299547 -60,0,22.2,34.7,19.6,37.1266666667,23.5,37,22.29,32.9,20.7,41.79,4.8666666667,33.0633333333,22.1,34.754,23.5,40.6214285714,20.6,39.79,4.75,763.25,78.5,2.5,40,1.25,21.5916308458,21.5916308458 -50,0,22.2,34.73,19.6,37.09,23.5,37,22.29,32.8633333333,20.7,41.8633333333,5.26,32.3,22.1,34.54,23.5,40.634,20.6,39.73,4.9333333333,763.2333333333,77.3333333333,2.6666666667,40,1.2333333333,43.1863059523,43.1863059523 -70,0,22.2,34.8633333333,19.5333333333,37.4966666667,23.4266666667,36.8,22.29,32.79,20.7,41.9,5.5266666667,30.9,22.08,34.36,23.4528571429,40.5985714286,20.6,39.8633333333,5.1166666667,763.2166666667,76.1666666667,2.8333333333,40,1.2166666667,4.4321732479,4.4321732479 -170,0,22.23,35.4566666667,19.6,37.9333333333,23.3566666667,36.3333333333,22.29,32.92,20.7,41.8266666667,6.1,28.6666666667,22,34.0671428571,23.478,40.436,20.6,39.79,5.3,763.2,75,3,40,1.2,2.1945757442,2.1945757442 -400,0,22.29,35.8633333333,19.6,37.9333333333,23.29,36.0666666667,22.29,33.09,20.7,41.76,6.4933333333,25.7333333333,22,33.554,23.39,39.8714285714,20.6,39.6566666667,5.75,763.1666666667,73.5,2.8333333333,40,1.3333333333,1.7845202936,1.7845202936 -150,0,22.23,36.03,19.6,37.7,23.29,35.9,22.29,33,20.7,41.4266666667,7.0666666667,21.4266666667,21.9371428571,33.1785714286,23.39,39.416,20.6,39.5266666667,6.2,763.1333333333,72,2.6666666667,40,1.4666666667,6.8570461008,6.8570461008 -70,0,22.29,36.09,19.6666666667,37.7,23.29,35.8266666667,22.29,32.86,20.79,40.6933333333,7.8666666667,16.3666666667,21.89,32.794,23.3275,39.06125,20.6,39.1933333333,6.65,763.1,70.5,2.5,40,1.6,10.4490954196,10.4490954196 -110,10,22.29,36.0266666667,19.7,37.4666666667,23.29,35.8633333333,22.29,32.79,20.8566666667,40.36,9.0966666667,11.2,21.89,32.4971428571,23.29,38.6785714286,20.6,38.7333333333,7.1,763.0666666667,69,2.3333333333,40,1.7333333333,30.1347989473,30.1347989473 -100,0,22.29,35.9,20.2475,37.125,23.3566666667,35.79,22.29,32.8633333333,20.89,39.995,10.23,8.46,21.89,32.254,23.29,38.418,20.6,38.1933333333,7.55,763.0333333333,67.5,2.1666666667,40,1.8666666667,1.3102567522,1.3102567522 -120,0,22.29,35.7233333333,21.2966666667,36.0933333333,23.5333333333,35.7,22.29,33.1266666667,20.79,39.9333333333,11.3933333333,3.99,21.89,32.1371428571,23.2257142857,38.1471428571,20.7,37.8266666667,8,763,66,2,40,2,43.2757655741,43.2757655741 -80,0,22.29,35.4633333333,21.9933333333,34.3,23.6,35.5666666667,22.29,33.26,20.79,40.06,12.1933333333,1.9966666667,21.87,32.072,23.2,38,20.7,37.9,8.55,762.9666666667,63.8333333333,2.1666666667,40,1.9833333333,28.732783813,28.732783813 -90,0,22.29,34.6,22.4666666667,32.1,23.73,35.4,22.3566666667,31.8933333333,20.79,40.09,13.23,1,21.8614285714,32,23.2,37.8514285714,20.73,37.6,9.1,762.9333333333,61.6666666667,2.3333333333,40,1.9666666667,30.2934893756,30.2934893756 -120,10,22.29,33.6666666667,23.3,31.19,23.6633333333,35,22.29,31.5666666667,20.79,40.03,14.0233333333,1,21.89,32.09,23.2,37.736,20.79,37.2666666667,9.65,762.9,59.5,2.5,40,1.95,3.769739822,3.769739822 -390,0,22.29,33.7333333333,24.0333333333,30.1233333333,23.39,34.99,22.4266666667,31.8,20.79,40.2,14.7933333333,1,21.8328571429,32.07,23.2,37.7,20.79,37.1633333333,10.2,762.8666666667,57.3333333333,2.6666666667,40,1.9333333333,47.0602907706,47.0602907706 -240,0,22.29,34.0725,24.6633333333,28.7966666667,23.39,34.42,22.5,31.86,20.79,40.1266666667,15.1266666667,1,21.79,31.856,23.16,37.59,20.79,37.09,10.75,762.8333333333,55.1666666667,2.8333333333,40,1.9166666667,2.5676143006,2.5676143006 -120,0,22.29,33.63,24.9966666667,28.0566666667,23.4633333333,34.09,22.6,31.745,20.79,39.8333333333,15.3266666667,1,21.79,31.5257142857,23.1428571429,37.5385714286,20.8233333333,37.4333333333,11.3,762.8,53,3,40,1.9,31.0181906214,31.0181906214 -70,0,22.3233333333,32.9,25.4933333333,27,23.5,34,22.73,32.0666666667,20.79,39.5,15.7333333333,1,21.79,31.54,23.14,37.44,20.89,37.56,11.6333333333,762.7666666667,52.1666666667,3.3333333333,40,1.9833333333,18.4868421755,18.4868421755 -90,0,22.39,32.76,25.9,26.46,23.5,34.06,22.8566666667,32.3333333333,20.73,39.1,16.1,1,21.79,31.51,23.1,37.2957142857,20.79,37.59,11.9666666667,762.7333333333,51.3333333333,3.6666666667,40,2.0666666667,27.5582876173,27.5582876173 -80,0,22.39,32.4,26.2633333333,25.6,23.4633333333,33.8633333333,22.89,32.0333333333,20.73,38.7666666667,16.3233333333,1,21.79,31.3328571429,23.1,37.2,20.79,37.59,12.3,762.7,50.5,4,40,2.15,22.275178018,22.275178018 -70,0,22.39,32.2,26.4633333333,25.6,23.39,33.79,22.89,31.5666666667,20.73,38.56,16.4633333333,1,21.79,31.29,23.1,37.2671428571,20.79,37.59,12.6333333333,762.6666666667,49.6666666667,4.3333333333,40,2.2333333333,45.8314388292,45.8314388292 -80,10,22.39,32.29,26.7633333333,25.6666666667,23.39,33.8266666667,22.79,31.5,20.73,38.36,16.9266666667,1,21.79,31.2357142857,23.1,37.378,20.79,37.4666666667,12.9666666667,762.6333333333,48.8333333333,4.6666666667,40,2.3166666667,32.470502425,32.470502425 -110,0,22.39,32.3633333333,26.89,25.5333333333,23.39,33.9666666667,22.79,31.5,21.4333333333,66.1266666667,17.26,1,21.79,30.754,23.1,37.29,20.79,37.4,13.3,762.6,48,5,40,2.4,3.809952992,3.809952992 -90,0,22.5,32.53,27,26,23.39,34.09,22.8233333333,31.5666666667,22.2266666667,78.2,17.6633333333,1,21.79,30.5285714286,23.1,37.236,20.79,37.5,13.5833333333,762.55,46.5,5,40,2.2,39.2732845154,39.2732845154 -100,0,22.5,32.6633333333,27.0666666667,25.9266666667,23.39,34.09,22.89,31.7,21.9633333333,71.2633333333,17.93,1,21.79,30.08,23.1571428571,37.0985714286,20.79,37.5,13.8666666667,762.5,45,5,40,2,45.0858093798,45.0858093798 -100,10,22.5,32.86,27,25.89,23.4633333333,34.26,22.89,31.7,21.7633333333,68.5966666667,18.1966666667,1,21.79,28.8242857143,23.16,36.9,20.79,37.4,14.15,762.45,43.5,5,40,1.8,6.7492362112,6.7492362112 -100,0,22.5,33.2666666667,26.9266666667,24.8233333333,23.39,34.1266666667,22.89,31.5666666667,21.6666666667,61.5,18.39,1,21.79,28.7,23.2385714286,36.6428571429,20.79,36.9933333333,14.4333333333,762.4,42,5,40,1.6,5.2659302833,5.2659302833 -80,0,22.6,31.7333333333,26.76,23.3666666667,23.29,33.2966666667,22.8566666667,30.9666666667,21.5333333333,59.6333333333,18.6633333333,1,21.79,28.2814285714,23.29,36.156,20.8566666667,36.8633333333,14.7166666667,762.35,40.5,5,40,1.4,8.8766142144,8.8766142144 -80,0,22.6,30.5933333333,26.6333333333,22.2333333333,23.29,32.9633333333,22.79,30.3,21.4633333333,57.29,18.8566666667,1,21.79,27.654,23.3471428571,35.8928571429,20.8566666667,36.73,15,762.3,39,5,40,1.2,1.3231453719,1.3231453719 -90,0,22.6333333333,29.4666666667,26.445,21.04,23.29,32.8633333333,22.79,29.5666666667,21.365,54.9475,19.1633333333,1,21.79,27.0514285714,23.412,35.79,20.8566666667,36.6633333333,15.2166666667,762.2166666667,38.5,4.6666666667,40,1.1666666667,22.7409265353,22.7409265353 -90,0,22.6333333333,28.5933333333,26.26,20.5966666667,23.29,32.79,22.79,29.36,21.29,52.6266666667,19.29,1,21.83,26.66,23.5,35.7642857143,20.79,36.4633333333,15.4333333333,762.1333333333,38,4.3333333333,40,1.1333333333,41.0739792744,41.0739792744 -90,0,22.7,28.5933333333,26.1333333333,20.4633333333,23.29,32.7,22.79,29.0666666667,21.2,50.2666666667,19.0666666667,1,21.8185714286,26.3771428571,23.5,35.7,20.79,36.26,15.65,762.05,37.5,4,40,1.1,12.7567043528,12.7567043528 -90,10,22.7,29,26,20.8333333333,23.29,32.5,22.79,28.9266666667,21.2,48.66,19,1,21.83,26.33,23.5571428571,35.6371428571,20.79,36.1266666667,15.8666666667,761.9666666667,37,3.6666666667,40,1.0666666667,13.6903926032,13.6903926032 -90,0,22.7,28.6566666667,25.9266666667,20.8933333333,23.1666666667,31.6666666667,22.79,28.8933333333,21.2,47.0666666667,19.0666666667,1,21.8185714286,26.3614285714,23.6,35.536,20.79,35.9666666667,16.0833333333,761.8833333333,36.5,3.3333333333,40,1.0333333333,39.104210143,39.104210143 -90,0,22.76,28.4633333333,25.79,21.23,23.1,31.345,22.79,29.1666666667,21.2,45.9933333333,19,1,21.89,26.456,23.6,35.5,20.79,35.8266666667,16.3,761.8,36,3,40,1,38.3410225855,38.3410225855 -160,10,22.84,27.545,25.73,21.43,23.1666666667,30.9266666667,22.79,29.2,21.1666666667,44.9666666667,18.9,1,21.9528571429,26.2242857143,23.6625,35.4625,20.79,35.7,16.4666666667,761.75,35.3333333333,3.1666666667,38,0.9,20.6916365307,20.6916365307 -140,0,22.89,27.36,25.6666666667,21.5666666667,23.1333333333,30.8566666667,22.745,29.0475,21.1,44.1666666667,18.76,1,22,25.998,23.7,35.4,20.79,35.6266666667,16.6333333333,761.7,34.6666666667,3.3333333333,36,0.8,42.4620999023,42.4620999023 -80,0,22.9633333333,27.2333333333,25.5333333333,21.76,23.2,30.6633333333,22.79,28.79,21.1,43.3933333333,18.89,1,22,25.79,23.7385714286,35.27,20.8566666667,35.49,16.8,761.65,34,3.5,34,0.7,40.9332665848,40.9332665848 -70,10,23,27.0233333333,25.43,22.23,23.1666666667,30.8966666667,22.7,28.79,21.1,42.7266666667,18.9966666667,1,22.1,25.89,23.7,34.734,20.79,35.29,16.9666666667,761.6,33.3333333333,3.6666666667,32,0.6,36.6547679645,36.6547679645 -80,0,23.0666666667,27.43,25.23,22.3566666667,23.0333333333,31.6233333333,22.7,28.8566666667,21.1,42.0633333333,18.8566666667,1,22.1,25.8042857143,23.7,34.09,20.79,35.29,17.1333333333,761.55,32.6666666667,3.8333333333,30,0.5,25.6413608207,25.6413608207 -30,0,23.1,27.96,25.0666666667,22.4633333333,22.9633333333,32.1933333333,22.7,29.0333333333,21.0333333333,41.53,19,1,22.12,25.772,23.66,34.356,20.79,34.99,17.3,761.5,32,4,28,0.4,11.9865253335,11.9865253335 -30,0,23.1,28.2933333333,25,22.7233333333,22.9633333333,32.1933333333,22.7,29.1,21.0666666667,40.99,19.0666666667,1,22.2,25.7,23.6285714286,34.29,20.8566666667,34.8633333333,17.3333333333,761.4333333333,31.3333333333,4,30,0.1,48.3762797434,48.3762797434 -40,0,23.2,28.73,25,23.4566666667,23,32,22.7,29.29,21,40.73,19.2,1,22.29,25.79,23.6,34.214,20.8566666667,35.1266666667,17.3666666667,761.3666666667,30.6666666667,4,32,-0.2,33.8860222255,33.8860222255 -20,0,23.26,28.9966666667,24.9266666667,24.0633333333,23,32.06,22.7,29.43,21,40.7,19.2,1,22.3042857143,25.8757142857,23.5285714286,34.09,20.79,35.26,17.4,761.3,30,4,34,-0.5,47.8988401708,47.8988401708 -70,0,23.3233333333,29.4266666667,24.89,24.5966666667,23,32.1266666667,22.7,29.6333333333,21,40.76,19.1,1,22.40375,25.9575,23.5,34.09,20.79,35.3266666667,17.4333333333,761.2333333333,29.3333333333,4,36,-0.8,7.7361679752,7.7361679752 -60,0,23.39,29.6333333333,24.89,24.9966666667,23,32.26,22.7,29.76,21,40.8266666667,19.2266666667,1,22.5,26.12,23.4842857143,34.0771428571,20.79,35.4,17.4666666667,761.1666666667,28.6666666667,4,38,-1.1,23.4678972745,23.4678972745 -60,0,23.5,30.0666666667,24.79,25.36,23.0333333333,32.4333333333,22.79,30.0333333333,21,40.9,19.5666666667,1,22.5714285714,26.2,23.39,34.018,20.79,35.5,17.5,761.1,28,4,40,-1.4,24.3223682977,24.3223682977 -60,0,23.5,30.26,24.79,25.6933333333,23.1,32.56,22.73,30.1666666667,21,41,19.6333333333,1,22.7,26.39,23.39,34.09,20.79,35.5,17.8166666667,760.9833333333,28.1666666667,3.8333333333,40,-1.0333333333,22.8135351092,22.8135351092 -60,0,23.6,30.4,24.76,26.0666666667,23.1,32.7,22.73,30.2633333333,21,41.06,19.5333333333,1,22.7514285714,26.39,23.39,34.2,20.79,35.53,18.1333333333,760.8666666667,28.3333333333,3.6666666667,40,-0.6666666667,5.7290432509,5.7290432509 -50,0,23.6,29.66,24.7,26.2,23.1,32.76,22.73,30.39,21,41.09,19.6666666667,1,22.81,26.412,23.3757142857,34.2514285714,20.79,35.59,18.45,760.75,28.5,3.5,40,-0.3,31.4408247592,31.4408247592 -50,0,23.6,28.6666666667,24.6,25.15,23.1333333333,32.9,22.73,30.5,21,40.9666666667,19.8233333333,1,22.89,26.5285714286,23.29,34.29,20.8566666667,35.59,18.7666666667,760.6333333333,28.6666666667,3.3333333333,40,0.0666666667,18.1190055562,18.1190055562 -50,0,23.6666666667,27.86,24.5,24.5666666667,23.2,32.9,22.79,30.5666666667,21,40.8266666667,19.7633333333,1,23,26.64,23.29,34.3371428571,20.79,35.6633333333,19.0833333333,760.5166666667,28.8333333333,3.1666666667,40,0.4333333333,3.1672883779,3.1672883779 -50,0,23.7,27.9266666667,24.5,24.9,23.2,32.9333333333,22.79,30.73,21,40.6633333333,19.8233333333,1,23,26.7,23.29,34.334,20.79,35.4,19.4,760.4,29,3,40,0.8,20.9628268844,20.9628268844 -70,0,23.76,28.4,24.5,25.36,23.2,32.9333333333,22.79,30.79,21,40.59,19.89,1,22.978,26.754,23.29,34.4,20.79,35.4,19.35,760.3333333333,29.3333333333,3.1666666667,40,0.9166666667,38.5047136806,38.5047136806 -60,0,23.79,28.8933333333,24.4266666667,25.6333333333,23.245,33.045,22.79,30.89,21,40.59,20.0333333333,1,22.89,26.79,23.29,34.4,20.79,35.5,19.3,760.2666666667,29.6666666667,3.3333333333,40,1.0333333333,25.9810503456,25.9810503456 -60,0,23.865,29.37,24.39,26.0666666667,23.29,33.2,22.79,30.9725,21,40.59,20.0333333333,1,22.89,26.79,23.29,34.4428571429,20.79,35.5,19.25,760.2,30,3.5,40,1.15,26.1554810568,26.1554810568 -60,0,23.89,29.7266666667,24.39,26.3266666667,23.29,33.26,22.79,31,21,40.59,20.0333333333,1,22.8471428571,26.7514285714,23.29,34.5,20.79,35.59,19.2,760.1333333333,30.3333333333,3.6666666667,40,1.2666666667,14.8540513823,14.8540513823 -50,0,23.9266666667,30.0666666667,24.39,26.7633333333,23.39,33.3266666667,22.79,31.1333333333,21,40.59,20.2675,1,22.87,26.772,23.29,34.5,20.79,35.5225,19.15,760.0666666667,30.6666666667,3.8333333333,40,1.3833333333,23.0047881138,23.0047881138 -50,0,24,30.26,24.39,26.9633333333,23.39,33.4,22.79,31.2,21.0333333333,40.6266666667,20.39,1,22.8328571429,26.7385714286,23.272,34.48,20.79,35.5,19.1,760,31,4,40,1.5,1.0588256293,1.0588256293 -50,0,24,30.5333333333,24.3233333333,27.2633333333,23.39,33.53,22.79,31.2,21.0333333333,40.6266666667,20.4633333333,1,22.79,26.7,23.2385714286,34.4428571429,20.79,35.5,19.15,759.8666666667,30.8333333333,4.1666666667,40,1.4666666667,42.3107942799,42.3107942799 -60,0,24,30.6666666667,24.3233333333,27.4633333333,23.39,33.59,22.79,31.26,21.1,40.8266666667,20.4633333333,1,22.79,26.7385714286,23.2,34.4,20.79,35.5,19.2,759.7333333333,30.6666666667,4.3333333333,40,1.4333333333,13.1204877747,13.1204877747 -40,0,24,30.9266666667,24.29,27.73,23.4266666667,33.6566666667,22.79,31.29,21.1,40.9,20.5,1,22.79,26.754,23.2,34.475,20.79,35.4428571429,19.25,759.6,30.5,4.5,40,1.4,4.8104691668,4.8104691668 -60,0,24,31.0666666667,24.29,27.8566666667,23.5,33.79,22.79,31.3566666667,21.1333333333,40.9333333333,20.5,1,22.7642857143,26.79,23.2,34.5,20.79,35.44,19.3,759.4666666667,30.3333333333,4.6666666667,40,1.3666666667,8.70607713,8.70607713 -50,0,24.1,31.23,24.29,28.1333333333,23.5,33.8266666667,22.79,31.39,21.2,41,20.4633333333,1,22.736,26.89,23.2,34.5,20.79,35.4,19.35,759.3333333333,30.1666666667,4.8333333333,40,1.3333333333,26.904450811,26.904450811 -60,0,24.1,31.3566666667,24.29,28.3266666667,23.5,33.9,22.79,31.4633333333,21.23,41,20.4633333333,1,22.7128571429,26.9528571429,23.2,34.5,20.79,35.4,19.4,759.2,30,5,40,1.3,25.9018995566,25.9018995566 -50,0,24.1,31.5,24.26,28.5,23.5,33.9333333333,22.79,31.5,21.3566666667,41,20.6,1,22.7,27,23.2,34.59,20.8614285714,35.4714285714,19.35,759.1333333333,30,5,40,1.2666666667,43.7878586003,43.7878586003 -60,0,24.1,31.5666666667,24.2,28.5666666667,23.5666666667,34,22.79,31.5,21.39,41,20.6666666667,1,22.7,27.0285714286,23.2,34.59,20.79,35.4,19.3,759.0666666667,30,5,40,1.2333333333,0.8928205236,0.8928205236 -210,0,24.1,31.73,24.1666666667,28.73,23.6,34.03,22.79,31.5666666667,21.4633333333,41,20.6,1,22.7,27.1,23.2,34.59,20.79,35.4,19.25,759,30,5,40,1.2,35.6461003306,35.6461003306 -320,0,24.1,31.73,24.1,28.79,23.6,34.09,22.79,31.4266666667,21.6,40.7966666667,20.6,1,22.6142857143,26.9985714286,23.2,34.4633333333,20.79,35.4,19.2,758.9333333333,30,5,40,1.1666666667,36.6298954817,36.6298954817 -520,0,24.1,35.6966666667,24.0666666667,28.26,23.6,33.93,22.79,31.39,21.675,40.37,20.6666666667,1,22.6,26.912,23.1,34.3333333333,20.8328571429,35.3528571429,19.15,758.8666666667,30,5,40,1.1333333333,12.6246656175,12.6246656175 -490,0,24.1,36.43,24,28.2925,23.6,33.79,22.79,31.34,21.7,39.89,20.6,1,22.6,27.1,23.1,34.1266666667,20.89,35.478,19.1,758.8,30,5,40,1.1,49.7690797318,49.7690797318 -150,0,24.1333333333,40.6666666667,24,28.6566666667,23.6,33.79,22.79,31.4725,21.7,39.6633333333,20.73,1,22.6,27.61,23.1,34.06,20.89,35.6214285714,19.1,758.7,30.6666666667,4.8333333333,40,1.3666666667,44.7547978023,44.7547978023 -90,0,24.2,40,24,29.7666666667,23.6,33.8633333333,22.79,31.7266666667,21.7,39.59,20.73,1,22.6,28.236,23.1,34.06,20.89,36.036,19.1,758.6,31.3333333333,4.6666666667,40,1.6333333333,43.7137839268,43.7137839268 -90,0,24.2,36.6333333333,24,30.1666666667,23.6,34,22.8566666667,32.03,21.7,39.7,20.76,1,22.6,28.4385714286,23.0666666667,33.9666666667,20.89,36.2357142857,19.1,758.5,32,4.5,40,1.9,8.9468374848,8.9468374848 -80,0,24.2,35.36,23.89,30.2,23.6,34.03,22.8566666667,32.2233333333,21.7,39.6266666667,20.4933333333,1,22.6,28.58,23,33.9,20.89,36.29,19.1,758.4,32.6666666667,4.3333333333,40,2.1666666667,34.068560123,34.068560123 -70,10,24.2,34.395,23.89,30.26,23.6666666667,34.1633333333,22.89,32.345,21.7,39.56,20.26,1,22.6,28.7928571429,23,34,20.89,36.29,19.1,758.3,33.3333333333,4.1666666667,40,2.4333333333,49.7984193615,49.7984193615 -80,0,24.2,33.9666666667,23.79,30.3233333333,23.6666666667,34.1633333333,22.9266666667,32.4333333333,21.7,39.5,20.1333333333,1,22.6,29.14,23,34.06,21,36.156,19.1,758.2,34,4,40,2.7,28.9465684094,28.9465684094 -120,0,24.2,33.8266666667,23.79,30.39,23.6,34.2233333333,22.9266666667,32.4333333333,21.96,57.06,19.84,1,22.6,29.2771428571,23,34.23,20.9371428571,36.1085714286,18.8666666667,758.15,35.8333333333,3.8333333333,40,3.15,5.8773258585,5.8773258585 -110,0,24.2,33.56,23.7,30.5666666667,23.6,34.3266666667,22.9633333333,32.4,22.1,58.06,20.0966666667,1,22.6,29.332,23,34.43,20.934,35.9,18.6333333333,758.1,37.6666666667,3.6666666667,40,3.6,48.2682962553,48.2682962553 -90,0,24.1333333333,33.4333333333,23.7,30.7,23.6,34.4,22.9633333333,32.4666666667,22.89,79.2,20.0966666667,1,22.6,29.6,23,34.6266666667,20.89,35.7,18.4,758.05,39.5,3.5,40,4.05,46.1144946748,46.1144946748 -100,0,24.1,33.4,23.6666666667,31.0666666667,23.6,34.5,23,32.53,22.7633333333,74.8666666667,20.0333333333,1,22.6,29.934,22.9266666667,34.76,20.89,35.7,18.1666666667,758,41.3333333333,3.3333333333,40,4.5,26.4045028016,26.4045028016 -90,0,24.1,33.4666666667,23.6,31.26,23.6,34.56,23,32.59,22.43,67.9333333333,19.56,1,22.6,30.1,22.89,34.9633333333,20.89,35.7,17.9333333333,757.95,43.1666666667,3.1666666667,40,4.95,40.1009190711,40.1009190711 -100,0,24.1,33.59,23.5666666667,31.5666666667,23.6,34.6266666667,23,32.7,22.23,61.8,18.0266666667,1,22.6,30.274,22.89,35.1725,20.89,35.71125,17.7,757.9,45,3,40,5.4,39.0231488389,39.0231488389 -100,0,24.1,33.59,23.5,31.7,23.6,34.7,23,32.76,22.0666666667,55.76,17.0933333333,1,22.6,30.4685714286,22.89,35.26,20.89,35.79,17.4,757.8666666667,45.8333333333,3.1666666667,40,5.3833333333,37.6941330382,37.6941330382 -90,0,24.1,33.73,23.39,31.8233333333,23.6,34.79,23,32.79,22,52.3666666667,16.1266666667,1,22.6,30.54,22.89,35.29,20.89,35.79,17.1,757.8333333333,46.6666666667,3.3333333333,40,5.3666666667,1.4836323215,1.4836323215 -90,0,24.1,33.79,23.3233333333,32.0233333333,23.6,34.79,23,32.79,21.89,49.59,15.3933333333,1,22.6,30.7228571429,22.89,35.3633333333,20.89,35.79,16.8,757.8,47.5,3.5,40,5.35,2.9259660747,2.9259660747 -110,0,24.1,33.9,23.29,32.23,23.6,34.9,23,32.79,21.8233333333,47.6633333333,14.7,1,22.6,30.976,22.8566666667,35.4,20.89,35.8057142857,16.5,757.7666666667,48.3333333333,3.6666666667,40,5.3333333333,15.5862222891,15.5862222891 -100,0,24.0333333333,33.9666666667,23.23,32.29,23.6,34.9,23,32.79,21.7,48.33,14.2933333333,1,22.6,31.1714285714,22.79,35.4,20.89,35.94,16.2,757.7333333333,49.1666666667,3.8333333333,40,5.3166666667,6.8831314333,6.8831314333 -90,0,24,33.9333333333,23.1666666667,32.6266666667,23.6,34.9333333333,23.0666666667,32.9,22.7,73.8633333333,13.9333333333,1.5666666667,22.6,31.434,22.79,35.7333333333,20.89,35.9714285714,15.9,757.7,50,4,40,5.3,3.7594135152,3.7594135152 -100,10,24,34,23.1,32.8333333333,23.6,35,23.0666666667,32.9666666667,22.8,80.045,13.6,2.6333333333,22.6142857143,31.6271428571,22.8566666667,36.7333333333,20.89,36,15.55,757.7,51.6666666667,3.6666666667,40,5.4166666667,8.5745429737,8.5745429737 -70,10,24,34.03,23,32.995,23.6,34.9333333333,23,32.9333333333,21.8566666667,72.6333333333,13.2333333333,3.4933333333,22.64,31.81,22.9266666667,37.5,20.89,36.0928571429,15.2,757.7,53.3333333333,3.3333333333,40,5.5333333333,34.463794902,34.463794902 -50,0,24,34.2233333333,22.89,33.23,23.6,35.06,23,33.06,21.79,64.9,12.96,4.1666666667,22.6285714286,32.1214285714,22.9266666667,37.96,20.89,36.2,14.85,757.7,55,3,40,5.65,35.5466868728,35.5466868728 -50,0,23.9266666667,34.3266666667,22.8233333333,33.29,23.6,35.09,23.0666666667,33.1633333333,21.7,58.5966666667,12.53,5.06,22.7,32.976,23,38.5666666667,20.9685714286,36.2257142857,14.5,757.7,56.6666666667,2.6666666667,40,5.7666666667,1.21637017,1.21637017 -70,0,23.9266666667,34.4,22.76,33.4333333333,23.6,35.1725,23.0666666667,33.2233333333,21.7,55.3966666667,12.33,6.4666666667,22.7,33.4071428571,23,39.16,20.89,36.4,14.15,757.7,58.3333333333,2.3333333333,40,5.8833333333,24.6931917267,24.6931917267 -60,0,23.89,34.4,22.7,33.6333333333,23.6,35.2,23,33.2,21.6,52.2,12.03,6.7933333333,22.7,33.696,23.1,40.1,20.9214285714,36.6,13.8,757.7,60,2,40,6,42.0689129154,42.0689129154 -50,0,23.84,34.4475,22.5666666667,33.7666666667,23.6,35.29,23,33.29,21.5333333333,50.4,11.7725,7.325,22.7,33.9971428571,23.1,40.8333333333,20.89,36.776,13.5666666667,757.65,60.8333333333,2,40,5.9833333333,28.4013823024,28.4013823024 -70,10,23.8233333333,34.59,22.5,33.9666666667,23.6,35.29,23,33.29,21.4633333333,48.5,11.46,7.7,22.7,34.236,23.1,41.4266666667,20.89,36.9285714286,13.3333333333,757.6,61.6666666667,2,40,5.9666666667,28.9151289151,28.9151289151 -50,0,23.79,34.59,22.4633333333,34.1266666667,23.6,35.4,23,33.29,21.3233333333,47.0933333333,11.2333333333,8.3933333333,22.675,34.2675,23.1666666667,41.9,20.89,37.134,13.1,757.55,62.5,2,40,5.95,39.8524096119,39.8524096119 -60,0,23.79,34.6633333333,22.39,34.26,23.6,35.4,23,33.29,21.29,45.9233333333,11.0333333333,9.2666666667,22.6,34.2928571429,23.2,42.4566666667,20.89,37.2671428571,12.8666666667,757.5,63.3333333333,2,40,5.9333333333,17.0096292975,17.0096292975 -50,0,23.76,34.7,22.29,34.4333333333,23.6,35.4333333333,22.89,33.4,21.23,45.2566666667,10.89,10.9633333333,22.6,34.42,23.2,42.99,20.89,37.42,12.6333333333,757.45,64.1666666667,2,40,5.9166666667,27.6342524448,27.6342524448 -50,0,23.7,34.7,22.23,34.56,23.6,35.5,22.89,33.4666666667,21.1,44.6933333333,10.83,12.4966666667,22.6,34.5957142857,23.23,43.6933333333,20.89,37.5642857143,12.4,757.4,65,2,40,5.9,43.6115345685,43.6115345685 -60,0,23.7,34.8266666667,22.1666666667,34.73,23.6,35.5,22.89,33.53,21.0333333333,44.3,10.6266666667,14.4633333333,22.6,35,23.29,43.9666666667,20.89,37.79,12.1833333333,757.3833333333,66.1666666667,2,40,5.9333333333,41.3083503372,41.3083503372 -50,0,23.7,34.9,22.1,34.93,23.6,35.5,22.89,33.59,21,43.99,10.4266666667,15.2566666667,22.6,35.1528571429,23.29,44.145,20.9528571429,37.9414285714,11.9666666667,757.3666666667,67.3333333333,2,40,5.9666666667,43.5151020181,43.5151020181 -50,0,23.6666666667,35,22,35.03,23.6,35.5,22.89,33.6266666667,20.9266666667,43.5966666667,10.2633333333,15.96,22.6,35.332,23.29,44.4333333333,21,38.076,11.75,757.35,68.5,2,40,6,34.2227144167,34.2227144167 -60,0,23.6,35,22,35.1633333333,23.6,35.56,22.89,33.7,20.8566666667,43.6933333333,10.13,17.0266666667,22.6,35.5257142857,23.29,44.56,21,38.2642857143,11.5333333333,757.3333333333,69.6666666667,2,40,6.0333333333,13.8298453297,13.8298453297 -60,0,23.6,35.09,21.89,35.3266666667,23.6,35.59,22.89,33.73,20.79,43.36,9.9633333333,18.93,22.6,35.736,23.29,44.7666666667,21,38.44,11.3166666667,757.3166666667,70.8333333333,2,40,6.0666666667,35.9590086853,35.9590086853 -50,0,23.6,35.1633333333,21.8233333333,35.4666666667,23.6,35.59,22.89,33.8633333333,20.76,43.26,9.7566666667,20.0633333333,22.6,35.9414285714,23.29,44.9666666667,21,38.5671428571,11.1,757.3,72,2,40,6.1,0.6141097168,0.6141097168 -50,0,23.5666666667,35.23,21.79,35.5966666667,23.6333333333,35.6266666667,22.89,33.9,20.7,43.1266666667,9.5666666667,21.43,22.6,36.054,23.29,44.6666666667,21,38.718,10.9666666667,757.3,72.5,2,40,6.1,46.6161238961,46.6161238961 -20,0,23.5,35.3633333333,21.73,35.8633333333,23.7,35.76,22.89,33.9666666667,20.6,42.9,9.4266666667,22.89,22.6,36.1214285714,23.29,43.4666666667,20.95875,38.885,10.8333333333,757.3,73,2,40,6.1,35.2359638549,35.2359638549 -40,0,23.5,35.5,21.65,36,23.7,35.9333333333,22.79,33.9,20.6,42.7,9.3,24.16,22.6,36.29,23.26,42.7966666667,21,39.0642857143,10.7,757.3,73.5,2,40,6.1,14.0459159855,14.0459159855 -40,0,23.5,35.5,21.6,36.1266666667,23.7,36.06,22.79,33.9,20.5333333333,42.4333333333,9.2266666667,24.9666666667,22.6,36.29,23.2,42.59,21,39.2,10.5666666667,757.3,74,2,40,6.1,2.6625090162,2.6625090162 -50,0,23.5,35.59,21.5333333333,36.26,23.7,36.23,22.79,33.9,20.5,42.1633333333,9.1,26.2333333333,22.6,36.29,23.2,42.6566666667,21,39.2771428571,10.4333333333,757.3,74.5,2,40,6.1,11.1409770325,11.1409770325 -60,0,23.4266666667,35.53,21.5,36.4,23.7,36.3633333333,22.79,33.9,20.4266666667,41.9633333333,9.0333333333,26.76,22.6,36.2642857143,23.2,42.93,21,39.376,10.3,757.3,75,2,40,6.1,25.308510242,25.308510242 -50,0,23.39,35.59,21.4266666667,36.4,23.7,36.45,22.79,34,20.3566666667,41.79,8.945,27.95,22.6,36.29,23.2,43.3,21,39.5,10.1833333333,757.25,75.5,2,40,6.0833333333,7.5805604924,7.5805604924 -60,0,23.39,35.59,21.39,36.53,23.7,36.59,22.79,34,20.29,41.73,8.89,29.1633333333,22.6,36.3842857143,23.1333333333,43.56,21,39.59,10.0666666667,757.2,76,2,40,6.0666666667,19.5257123909,19.5257123909 -60,0,23.39,35.59,21.3233333333,36.6633333333,23.7,36.6633333333,22.79,34,20.29,41.59,8.89,30.1633333333,22.6,36.478,23.1,43.86,21,39.7042857143,9.95,757.15,76.5,2,40,6.05,6.7407772876,6.7407772876 -60,0,23.3566666667,35.7,21.29,36.73,23.79,36.7,22.79,34,20.23,41.53,8.96,30.8,22.6,36.5257142857,23.1,44.06,21,39.79,9.8333333333,757.1,77,2,40,6.0333333333,31.6993786953,31.6993786953 -60,0,23.29,35.7,21.23,36.79,23.79,36.7,22.79,34,20.2,41.5,9.0333333333,31,22.6,36.7,23.1,44.2666666667,21,39.79,9.7166666667,757.05,77.5,2,40,6.0166666667,33.2189964014,33.2189964014 -50,0,23.29,35.73,21.2,36.9,23.79,36.79,22.79,34,20.1333333333,41.4333333333,8.86,30.8933333333,22.6,36.7,23.1,44.4666666667,21,39.79,9.6,757,78,2,40,6,9.2145219212,9.2145219212 -40,0,23.29,35.79,21.1333333333,36.9666666667,23.8566666667,36.8633333333,22.79,34.06,20.1,41.4,8.8,31.1666666667,22.6,36.776,23.1,44.6566666667,21,39.8057142857,9.4833333333,756.9333333333,78.1666666667,2.1666666667,40,5.9166666667,20.9764701664,20.9764701664 -50,0,23.29,35.79,21.1,37.09,23.89,36.9333333333,22.7,34.09,20.1,41.3266666667,9,31.8,22.6,36.9,23.1,44.93,21,39.92,9.3666666667,756.8666666667,78.3333333333,2.3333333333,40,5.8333333333,44.0822328324,44.0822328324 -60,0,23.23,35.79,21.1,37.1633333333,23.8233333333,36.9333333333,22.7,34.09,20,41.2,9,32.2666666667,22.6,37,23.1,45,21,40.0642857143,9.25,756.8,78.5,2.5,40,5.75,11.0936569865,11.0936569865 -40,0,23.2,35.79,21.0666666667,37.29,23.89,37.03,22.7,34.09,20,41.26,8.8,32.4333333333,22.5857142857,36.9857142857,23.1,44.8975,21,40.2,9.1333333333,756.7333333333,78.6666666667,2.6666666667,40,5.6666666667,40.3459775611,40.3459775611 -60,0,23.2,35.79,21,37.29,23.89,37.09,22.7,34.1633333333,19.89,41.23,8.7266666667,32.5,22.5,36.9666666667,23.1,44.73,21.0142857143,40.2285714286,9.0166666667,756.6666666667,78.8333333333,2.8333333333,40,5.5833333333,21.871940128,21.871940128 -60,0,23.2,35.9,21,37.4333333333,23.89,37.09,22.7,34.2,19.89,41.29,8.66,33.5933333333,22.5428571429,37,23.1,44.6333333333,21.1,40.42,8.9,756.6,79,3,40,5.5,28.5428446019,28.5428446019 -60,0,23.2,35.9,20.9266666667,37.5,23.89,37.1633333333,22.7,34.2,19.8566666667,41.26,8.6,34.3333333333,22.5,37,23.1,44.4333333333,21.0714285714,40.4714285714,9.0166666667,756.5333333333,78.6666666667,3,40,5.5333333333,8.1272123964,8.1272123964 -50,0,23.1,35.9333333333,20.89,37.59,23.89,37.1266666667,22.7,34.29,19.79,41.26,8.5,35.3966666667,22.5,37,23.0666666667,44.1633333333,21.04,40.536,9.1333333333,756.4666666667,78.3333333333,3,40,5.5666666667,28.6304186913,28.6304186913 -60,0,23.1,36,20.89,37.6633333333,23.89,37.2,22.7,34.29,19.76,41.3266666667,8.4266666667,36.1966666667,22.5,37,23.0666666667,44.09,21.0714285714,40.59,9.25,756.4,78,3,40,5.6,32.5781386811,32.5781386811 -70,0,23.1333333333,36.03,20.89,37.73,23.89,37.2,22.6666666667,34.29,19.7,41.425,8.39,37.0666666667,22.5,37,23,43.8633333333,21.1,40.656,9.3666666667,756.3333333333,77.6666666667,3,40,5.6333333333,10.9175548656,10.9175548656 -50,0,23.1333333333,36.09,20.815,37.745,23.89,37.2,22.6,34.29,19.7,41.5,8.39,37.26,22.5,37.0385714286,23,43.79,21.1,40.7,9.4833333333,756.2666666667,77.3333333333,3,40,5.6666666667,30.5688129622,30.5688129622 -50,0,23.1,36.09,20.79,37.79,23.89,37.2,22.7,34.4,19.6666666667,41.4666666667,8.245,37.8,22.5,37,23,43.56,21.1,40.736,9.6,756.2,77,3,40,5.7,3.4182524541,3.4182524541 -50,0,23.1,36.09,20.76,37.8266666667,23.89,37.2,22.6333333333,34.4,19.6,41.4,8.16,38.0266666667,22.5,37,23,43.36,21.1,40.79,9.5166666667,756.1333333333,77.3333333333,3.1666666667,40,5.6833333333,25.3954443731,25.3954443731 -50,0,23,36.09,20.7,37.9,23.89,37.2,22.6,34.4,19.6,41.4,8.0333333333,38.7666666667,22.5,36.98,23,43.1333333333,21.1,40.856,9.4333333333,756.0666666667,77.6666666667,3.3333333333,40,5.6666666667,39.2148879706,39.2148879706 -40,0,23,36.09,20.7,38,23.89,37.23,22.6,34.4,19.5333333333,41.4,8,39.5333333333,22.5,36.9428571429,23,42.9333333333,21.1,40.9125,9.35,756,78,3.5,40,5.65,34.0599692776,34.0599692776 -60,0,23,36.2,20.6333333333,38,23.89,37.29,22.6,34.4,19.5,41.4,8,40.0666666667,22.5,36.9,23,42.76,21.0571428571,40.9571428571,9.2666666667,755.9333333333,78.3333333333,3.6666666667,40,5.6333333333,7.2782345698,7.2782345698 -50,0,22.9725,36.2225,20.6,38.09,23.89,37.29,22.6,34.5,19.4266666667,41.3266666667,8.0666666667,40.7666666667,22.5,36.8214285714,23,42.7,21.1,41.09,9.1833333333,755.8666666667,78.6666666667,3.8333333333,40,5.6166666667,22.1513847937,22.1513847937 -60,0,22.89,36.29,20.6,38.09,23.89,37.29,22.6,34.5,19.39,41.2,7.9333333333,40.0266666667,22.5,36.9,22.9266666667,42.7,21.1,41.09,9.1,755.8,79,4,40,5.6,47.3084145109,47.3084145109 -50,0,22.89,36.29,20.6,38.2,23.89,37.29,22.6,34.5,19.39,41.2,7.7633333333,40.56,22.5,36.9,23,42.7,21.1,41.09,9.0166666667,755.7333333333,79.5,4,40,5.6166666667,5.4111777106,5.4111777106 -50,0,22.89,36.29,20.5333333333,38.2,23.89,37.3633333333,22.6,34.5,19.29,41.09,7.69,40.8333333333,22.5,36.9,22.9633333333,42.59,21.1,41.09,8.9333333333,755.6666666667,80,4,40,5.6333333333,31.4698123839,31.4698123839 -50,0,22.89,36.3266666667,20.5,38.29,23.9633333333,37.3633333333,22.5666666667,34.5,19.29,41.03,7.7266666667,41.56,22.4842857143,36.7385714286,22.89,42.4633333333,21.04,41.036,8.85,755.6,80.5,4,40,5.65,6.1887715594,6.1887715594 -40,0,22.89,36.4,20.5,38.29,23.89,37.29,22.5,34.5,19.26,40.9666666667,7.8,41.56,22.412,36.612,22.89,42.4,21.1,41.09,8.7666666667,755.5333333333,81,4,40,5.6666666667,43.0371146067,43.0371146067 -60,0,22.79,36.29,20.5,38.29,23.89,37.3633333333,22.5,34.59,19.2,40.9,7.9333333333,41.89,22.5,36.7957142857,22.89,42.3266666667,21.1,41.112,8.6833333333,755.4666666667,81.5,4,40,5.6833333333,26.0474906652,26.0474906652 -50,0,22.79,36.3633333333,20.5,38.29,23.89,37.29,22.5,34.59,19.2,41,8,41.83,22.456,36.856,22.89,42.145,21.1,41.2,8.6,755.4,82,4,40,5.7,3.5920439288,3.5920439288 -50,0,22.79,36.4,20.5,38.26,23.89,37.3633333333,22.5,34.56,19.2,40.9333333333,8.1666666667,41.6333333333,22.4842857143,37.0985714286,22.89,42.09,21.1,41.4,8.7666666667,755.3666666667,81.5,3.8333333333,40,5.7666666667,24.6015519486,24.6015519486 -80,0,22.79,36.4,20.5666666667,38.26,23.89,37.3633333333,22.5,34.56,19.1633333333,43.13,8.36,41.1,22.5,37.58,22.89,42.09,21.1,41.3057142857,8.9333333333,755.3333333333,81,3.6666666667,40,5.8333333333,28.3173194155,28.3173194155 -110,10,22.79,36.8666666667,20.6,38.2666666667,23.89,37.3633333333,22.5,34.6266666667,19.4966666667,55.6633333333,8.5333333333,40.6,22.5,37.3814285714,22.8566666667,42.1333333333,21.1,41.312,9.1,755.3,80.5,3.5,40,5.9,48.2260438963,48.2260438963 -80,0,22.79,37.26,20.6,38.5266666667,23.89,37.23,22.5,34.76,19.7,59.8266666667,8.66,40.2666666667,22.5,37.254,22.79,42,21.1,41.4,9.2666666667,755.2666666667,80,3.3333333333,40,5.9666666667,8.972571115,8.972571115 -70,0,22.79,37.2,20.6,38.86,23.89,36.9666666667,22.5,34.9333333333,19.625,59.9225,8.945,40,22.4371428571,36.8957142857,22.79,41.9666666667,21.1,41.4,9.4333333333,755.2333333333,79.5,3.1666666667,40,6.0333333333,16.206240945,16.206240945 -60,0,22.79,37.3333333333,20.6,39,23.89,36.9,22.5,35.1333333333,19.6,59.53,9.2566666667,40.1333333333,22.39,36.56,22.79,41.9,21.1,41.3842857143,9.6,755.2,79,3,40,6.1,0.1776865334,0.1776865334 -60,0,22.79,37.29,20.6,38.9333333333,23.89,36.9,22.5,35.29,19.6,58.3233333333,9.53,39.5266666667,22.39,36.2571428571,22.79,41.8633333333,21.1,41.214,9.7833333333,755.2,78.8333333333,2.6666666667,40,6.25,8.4422933636,8.4422933636 -70,0,22.79,37.49,20.7,38.9,23.89,36.9,22.5,35.29,19.5333333333,57.1966666667,9.93,39.3333333333,22.29,35.9,22.79,41.8633333333,21.1,40.9971428571,9.9666666667,755.2,78.6666666667,2.3333333333,40,6.4,2.0463405177,2.0463405177 -670,0,22.79,37.4,20.7,38.9,23.89,36.9,22.5,35.29,19.5666666667,56.1966666667,10.6566666667,40.9333333333,22.29,35.656,22.79,41.9,21.1,40.754,10.15,755.2,78.5,2,40,6.55,6.4466662705,6.4466662705 -470,0,22.79,37.3266666667,20.73,38.8633333333,23.7925,36.7225,22.5,35.3175,19.5,55.53,12.0966666667,37,22.29,35.5242857143,22.79,41.8266666667,21.1142857143,40.7671428571,10.3333333333,755.2,78.3333333333,1.6666666667,40,6.7,46.4088234352,46.4088234352 -150,0,22.79,37.1333333333,21.1233333333,38.5966666667,23.6333333333,36.4633333333,22.5,35.4,19.5,54.8333333333,13.2966666667,30.5266666667,22.29,35.378,22.79,41.7233333333,21.2,41,10.5166666667,755.2,78.1666666667,1.3333333333,40,6.85,12.7161385841,12.7161385841 -70,0,22.79,36.9333333333,22.13,37.4566666667,23.5666666667,36.2666666667,22.5,35.5,19.5,54.2266666667,14.5666666667,23.9666666667,22.29,35.2257142857,22.73,41.59,21.2257142857,41.6685714286,10.7,755.2,78,1,40,7,34.2713194783,34.2713194783 -110,0,22.79,37.05,22.39,36.53,23.36,35.7266666667,22.5666666667,35.56,19.5666666667,53.6966666667,15.4333333333,18.1666666667,22.2,35.09,22.79,41.56,21.29,42.2,11.2833333333,755.15,76.8333333333,1,40,7.3166666667,32.4579860666,32.4579860666 -110,0,22.7,36.6633333333,22.6966666667,36.0266666667,23.36,35.79,22.6,35.59,19.5,53.03,16.3,10.59,22.2257142857,34.9814285714,22.79,41.56,21.3042857143,41.9814285714,11.8666666667,755.1,75.6666666667,1,40,7.6333333333,13.3650551317,13.3650551317 -100,0,22.6333333333,36.53,23.2233333333,35.4933333333,23.5666666667,35.73,22.6666666667,35.6633333333,19.5666666667,52.0633333333,16.9666666667,7.59,22.2,34.878,22.79,41.59,21.35,41.696,12.45,755.05,74.5,1,40,7.95,49.9067598372,49.9067598372 -100,0,22.6,36.4666666667,24.0233333333,34.3933333333,23.7,35.7,22.73,35.7,19.5666666667,51.73,17.7333333333,4.5966666667,22.2,34.79,22.79,41.59,21.39,41.3971428571,13.0333333333,755,73.3333333333,1,40,8.2666666667,18.8136657118,18.8136657118 -80,0,22.6,36.4666666667,24.4966666667,33.6666666667,23.76,35.6266666667,22.8566666667,35.76,19.6,50.96,18.3333333333,3.99,22.254,34.856,22.79,41.59,21.39,41.1725,13.6166666667,754.95,72.1666666667,1,40,8.5833333333,49.569157057,49.569157057 -90,0,22.6,36.5666666667,24.86,33.0633333333,23.79,35.59,23,35.79,19.6,50.5,19.0666666667,1.6666666667,22.2,34.79,22.79,41.59,21.39,41,14.2,754.9,71,1,40,8.9,6.240540999,6.240540999 -110,0,22.6,36.7,25.1933333333,32.53,23.8566666667,35.7233333333,23.0666666667,35.79,19.6,49.96,19.4,1,22.218,34.812,22.79,41.56,21.39,40.8514285714,14.5666666667,754.85,68.3333333333,1.3333333333,40,8.65,20.4115707777,20.4115707777 -450,0,22.6333333333,37.0666666667,25.5666666667,32.0333333333,23.76,35.73,23.2,35.79,19.6,49.5666666667,19.6333333333,1,22.2257142857,34.8214285714,22.865,41.5,21.39,40.714,14.9333333333,754.8,65.6666666667,1.6666666667,40,8.4,5.3548894473,5.3548894473 -610,0,22.7,37.4,25.8266666667,31.4933333333,23.7,35.79,23.26,35.79,19.6,49.2233333333,19.76,1,22.2,34.79,22.9633333333,41.4333333333,21.4214285714,40.5514285714,15.3,754.75,63,2,40,8.15,16.2175123929,16.2175123929 -290,0,22.7,37.5666666667,26.1633333333,31.6,23.5666666667,35.73,23.39,35.76,19.6,49.03,20.0966666667,1,22.2642857143,34.9271428571,23,41.4,21.5,40.5,15.6666666667,754.7,60.3333333333,2.3333333333,40,7.9,32.8471547225,32.8471547225 -90,0,22.7,37.8333333333,26.29,31.6,23.5,35.93,23.4633333333,35.76,19.6,48.76,20.43,1,22.236,34.96,23.0666666667,41.3266666667,21.4685714286,40.4714285714,16.0333333333,754.65,57.6666666667,2.6666666667,40,7.65,11.9879169739,11.9879169739 -120,0,22.7,37.9333333333,26.5666666667,31.43,23.5333333333,36.2,23.5333333333,35.79,19.6,48.6266666667,20.695,1,22.2,35,23.1,41.06,21.434,40.374,16.4,754.6,55,3,40,7.4,6.1918076477,6.1918076477 -110,0,22.76,38.06,26.76,31.0233333333,23.6,36.26,23.6,35.79,19.65,48.59,21.3333333333,1,22.236,35.134,23.1,40.86,21.4214285714,40.3214285714,16.6666666667,754.55,54.1666666667,3,40,7.3833333333,30.5391065311,30.5391065311 -70,0,22.79,38.1266666667,27.05,31.1,23.6333333333,36.3266666667,23.6333333333,35.8266666667,19.6,48.4,21.9333333333,1,22.29,35.1842857143,23.1,40.6633333333,21.39,40.29,16.9333333333,754.5,53.3333333333,3,40,7.3666666667,36.0339469393,36.0339469393 -100,0,22.79,38.2,27.1,30.8566666667,23.7,36.4,23.76,35.8266666667,19.6,48.4,22.1966666667,1,22.29,35.09,23.1,40.4633333333,21.4528571429,40.29,17.2,754.45,52.5,3,40,7.35,1.1491943384,1.1491943384 -70,0,22.89,38.29,27.1,30.79,23.7,36.53,23.8233333333,35.79,19.7,48.4,22.4633333333,1,22.29,35.09,23.1,40.1333333333,21.5,40.272,17.4666666667,754.4,51.6666666667,3,40,7.3333333333,2.5722633465,2.5722633465 -70,0,22.89,38.29,27.0666666667,30.7,23.7,36.59,23.89,35.79,19.7,48.3266666667,22.6666666667,1,22.29,35,23.1,39.9333333333,21.5,40.2,17.7333333333,754.35,50.8333333333,3,40,7.3166666667,21.1514752242,21.1514752242 -60,0,22.9266666667,38.29,27,30.7,23.7,36.645,23.945,35.7,19.7,48.1633333333,22.6,1,22.29,34.9857142857,23.1333333333,39.76,21.5,40.09,18,754.3,50,3,40,7.3,41.1432037828,41.1432037828 -60,0,23,38.23,26.9633333333,30.5333333333,23.7,36.7,24,35.7,19.76,48.03,23.0966666667,1,22.31,34.92,23.1333333333,39.6266666667,21.5,40.0128571429,18.25,754.25,49.6666666667,3,40,7.4333333333,29.7527831979,29.7527831979 -80,0,23,38.2,26.89,30.2,23.76,36.7,24.0666666667,35.7,19.79,47.8633333333,23.29,1,22.3185714286,35,23.2,39.59,21.5,40,18.5,754.2,49.3333333333,3,40,7.5666666667,37.0218167198,37.0218167198 -70,0,23.0333333333,38.1266666667,26.8566666667,30.29,23.73,36.76,24.1,35.7,19.79,47.79,23.3233333333,1,22.39,35,23.2,39.53,21.5,40,18.75,754.15,49,3,40,7.7,17.5553242443,17.5553242443 -80,0,23.1,38.1266666667,26.79,30.29,23.79,36.76,24.1666666667,35.7,19.79,47.6633333333,23.5966666667,1,22.39,35,23.2,39.5,21.5,40,19,754.1,48.6666666667,3,40,7.8333333333,30.4962068214,30.4962068214 -310,0,23.1333333333,38.1633333333,26.7,30.39,23.79,36.73,24.1333333333,35.7,19.79,47.59,23.86,1,22.39,35,23.2,39.5,21.5,40,19.25,754.05,48.3333333333,3,40,7.9666666667,1.6420247732,1.6420247732 -340,0,23.26,38.1633333333,26.7,30.39,23.79,36.79,24.2,35.7,19.8233333333,47.59,24.1333333333,1,22.412,35,23.23,39.6266666667,21.5,40,19.5,754,48,3,40,8.1,1.5921605984,1.5921605984 -110,0,23.29,38.1633333333,26.6666666667,30.5333333333,23.8233333333,36.8266666667,24.2,35.7,19.89,47.59,24.1333333333,1,22.5,35,23.29,39.5666666667,21.5,40,19.7,753.95,47.3333333333,3.1666666667,40,8.0833333333,26.1969789863,26.1969789863 -80,0,23.3566666667,37.9633333333,26.5333333333,30.6,23.8233333333,36.8266666667,24.2,35.6266666667,19.89,47.56,23.9266666667,1,22.5,34.79,23.29,39.1933333333,21.5,40,19.9,753.9,46.6666666667,3.3333333333,40,8.0666666667,45.4490011442,45.4490011442 -100,0,23.39,37.2333333333,26.4633333333,30.5666666667,23.8233333333,36.9,24.2,35.56,19.89,47.5,24.1,1,22.5571428571,34.6371428571,23.29,38.86,21.5,40,20.1,753.85,46,3.5,40,8.05,20.1954430668,20.1954430668 -120,0,23.4633333333,36.2333333333,26.39,30.36,23.89,36.9,24.26,35.5,19.89,47.2233333333,24.1666666667,1,22.6,34.378,23.39,38.245,21.456,39.94,20.3,753.8,45.3333333333,3.6666666667,40,8.0333333333,41.945116967,41.945116967 -80,0,23.5333333333,35.6933333333,26.3566666667,29.9966666667,23.79,36.7,24.29,35.4666666667,19.9633333333,46.9633333333,24.29,1,22.6714285714,34.1371428571,23.39,37.7,21.5,39.8214285714,20.5,753.75,44.6666666667,3.8333333333,40,8.0166666667,13.9214843395,13.9214843395 -90,0,23.6,35.3,26.29,29.73,23.8566666667,36.76,24.23,35.2666666667,19.89,46.5266666667,24.2257142857,1,22.736,33.754,23.39,37.76,21.5,39.645,20.7,753.7,44,4,40,8,11.4924618043,11.4924618043 -90,0,23.7,35.16,26.1666666667,29.73,23.89,36.6633333333,24.26,35.1633333333,19.9633333333,46.2666666667,24.12,1,22.79,33.5857142857,23.4633333333,37.93,21.5,39.4666666667,20.8333333333,753.65,43.3333333333,4.1666666667,40,7.9,41.3958353223,41.3958353223 -90,0,23.76,34.8266666667,26.0333333333,29.73,23.89,36.39,24.2,35.09,20,45.995,23.97,1,22.85,33.48,23.39,37.6566666667,21.5,39.4,20.9666666667,753.6,42.6666666667,4.3333333333,40,7.8,34.2703987728,34.2703987728 -70,0,23.89,35.0666666667,26,29.7,23.89,35.93,24.2,35,20,45.7233333333,23.716,1,22.9214285714,33.3214285714,23.39,37.59,21.5,39.29,21.1,753.55,42,4.5,40,7.7,41.1898665363,41.1898665363 -70,0,23.9633333333,36.0666666667,25.9266666667,29.4933333333,23.89,35.93,24.2,35,20,45.53,23.6285714286,1,23.04,33.236,23.39,37.53,21.5,39.23,21.2333333333,753.5,41.3333333333,4.6666666667,40,7.6,34.2247447348,34.2247447348 -70,0,24.0333333333,35.99,25.745,29.85,23.9266666667,36.29,24.2,35,20,45.59,23.6125,1,23.1,33.15,23.39,37.5,21.5,39.2,21.3666666667,753.45,40.6666666667,4.8333333333,40,7.5,48.6462561763,48.6462561763 -70,0,24.1,35.53,25.7,30.1,24,36.29,24.2,35,20.0666666667,45.59,23.54,1,23.12,33.072,23.39,37.5,21.5,39.2,21.5,753.4,40,5,40,7.4,18.0188783212,18.0188783212 -70,0,24.2,35.0333333333,25.6333333333,30.1666666667,24,36.045,24.15,35,20.1,45.59,23.6142857143,1,23.2257142857,32.9285714286,23.4266666667,37.5,21.5,39.2,21.6333333333,753.35,39.8333333333,4.8333333333,40,7.45,48.5432670335,48.5432670335 -140,0,24.2,34.5666666667,25.5666666667,30.2,24,35.6333333333,24.1,35,20.1,45.53,23.68,1,23.35,32.856,23.5,37.5,21.5,39.1266666667,21.7666666667,753.3,39.6666666667,4.6666666667,40,7.5,48.9844168536,48.9844168536 -340,0,24.29,34.6633333333,25.5,30.2,24,35.36,24.1,35,20.1,45.3633333333,23.6,1,23.3757142857,32.7228571429,23.5,37.4666666667,21.5,39.09,21.9,753.25,39.5,4.5,40,7.55,31.2952285283,31.2952285283 -190,0,24.315,35.1975,25.5,30.4933333333,24,35.4,24.1,35,20.1,45.3633333333,23.6,1,23.456,32.634,23.5,37.4,21.5,38.9633333333,22.0333333333,753.2,39.3333333333,4.3333333333,40,7.6,0.4445653642,0.4445653642 -150,0,24.39,35.0666666667,25.5,30.76,24,35.4,24.1,35,20.1,45.4,23.6857142857,1,23.5285714286,32.5642857143,23.5,37.4,21.5,38.9,22.1666666667,753.15,39.1666666667,4.1666666667,40,7.65,44.9040822568,44.9040822568 -80,0,24.5,34.9333333333,25.39,30.89,24,35.4333333333,24.0666666667,34.9666666667,20.1666666667,45.4,23.796,1,23.6,32.356,23.5,37.3266666667,21.5,38.9,22.3,753.1,39,4,40,7.7,28.1580989948,28.1580989948 -80,0,24.5666666667,34.0666666667,25.39,30.8233333333,24,35.6333333333,24,34.9,20.2,45.3633333333,24,1,23.6857142857,32.2228571429,23.6,37.06,21.5,38.76,22.3166666667,753.0666666667,38.5,4.1666666667,40,7.5166666667,15.6411538366,15.6411538366 -70,0,24.6,33.6,25.29,30.5666666667,24.1,35.8266666667,24,34.8633333333,20.2,45.23,24,1,23.718,32.072,23.6,37,21.5,38.7,22.3333333333,753.0333333333,38,4.3333333333,40,7.3333333333,37.2427021386,37.2427021386 -80,10,24.6,33.3266666667,25.29,30.5,24.1,35.9,24,34.79,20.2,45.06,24.1428571429,1,23.79,32,23.6,36.8633333333,21.5,38.59,22.35,753,37.5,4.5,40,7.15,5.5766113685,5.5766113685 -70,0,24.6,33.1633333333,25.29,30.4633333333,24.1,35.9,24,34.8266666667,20.2,44.86,24.2,1,23.83,31.89,23.6666666667,36.79,21.5,38.59,22.3666666667,752.9666666667,37,4.6666666667,40,6.9666666667,3.9037352195,3.9037352195 -70,0,24.6666666667,33.1633333333,25.23,30.39,24.1666666667,35.9666666667,24,34.9,20.29,44.76,24.2642857143,1,23.89,31.8042857143,23.7,36.7,21.5,38.56,22.3833333333,752.9333333333,36.5,4.8333333333,40,6.7833333333,49.2923647398,49.2923647398 -70,0,24.7,33.4333333333,25.2,30.5,24.2,36,24,34.8266666667,20.29,44.6266666667,24.254,1,23.89,31.79,23.7,36.76,21.5,38.56,22.4,752.9,36,5,40,6.6,14.0611744369,14.0611744369 -70,0,24.76,34.3,25.2,30.5666666667,24.2,36,24,34.9,20.29,44.56,24.2128571429,1,23.9175,31.84125,23.7,36.845,21.5,38.59,22.4666666667,752.8666666667,36.1666666667,5,40,6.75,3.6304095411,3.6304095411 -70,0,24.73,34.5,25.1333333333,30.96,24.2,36.03,24,35,20.3566666667,44.5,24.372,1,23.9371428571,32.0957142857,23.7,37.1266666667,21.5,38.59,22.5333333333,752.8333333333,36.3333333333,5,40,6.9,15.6356398948,15.6356398948 -60,0,24.79,34.96,25.1333333333,31.2933333333,24.2,36.1633333333,24,35.06,20.39,44.5,24.4685714286,1,24,32.29,23.7,37.3333333333,21.5,38.6633333333,22.6,752.8,36.5,5,40,7.05,12.0684437337,12.0684437337 -70,0,24.79,35.1266666667,25.1,31.6633333333,24.2,36.1633333333,23.9633333333,35.2,20.5333333333,44.7,24.456,1,24,32.3985714286,23.7,37.53,21.5,38.79,22.6666666667,752.7666666667,36.6666666667,5,40,7.2,9.9317140761,9.9317140761 -80,0,24.79,35.2,25.1,31.8566666667,24.2,36.03,23.9633333333,35.26,20.6,44.76,24.4214285714,1,24,32.54,23.7,37.6633333333,21.5,38.8633333333,22.7333333333,752.7333333333,36.8333333333,5,40,7.35,19.4178743637,19.4178743637 -90,10,24.79,35.5,25.1,32.1933333333,24.2,36,23.9633333333,35.3266666667,20.6,44.79,24.412,1,24,32.7,23.7,37.9333333333,21.5666666667,38.9333333333,22.8,752.7,37,5,40,7.5,21.0533454432,21.0533454432 -90,0,24.79,35.76,25.025,32.57,24.26,36.06,23.89,35.4666666667,20.6666666667,44.93,24.3928571429,1,24,32.834,23.7,38,21.5,39,22.7333333333,752.6666666667,38,5,40,7.75,37.0146796806,37.0146796806 -100,0,24.89,35.8266666667,25,32.8333333333,24.29,36.09,23.89,35.53,20.73,45,24.39,1,24,32.9571428571,23.7,38.03,21.6,39.03,22.6666666667,752.6333333333,39,5,40,8,6.9294070476,6.9294070476 -90,0,24.8233333333,35.8266666667,25,32.9,24.365,36.0225,23.945,35.59,20.8566666667,45.06,24.3328571429,1,23.934,32.96,23.7,38.09,21.5333333333,39.09,22.6,752.6,40,5,40,8.25,14.5691972575,14.5691972575 -100,0,24.8233333333,35.8266666667,25,33,24.39,36,23.89,35.59,21,45.06,24.216,1,23.89,33,23.73,38.23,21.6,39.09,22.5333333333,752.5666666667,41,5,40,8.5,8.9231682359,8.9231682359 -90,0,24.8233333333,35.8266666667,24.9633333333,33.09,24.39,35.9666666667,23.89,35.7,21.0666666667,45,24.1,1,23.89,33.054,23.73,38.29,21.6,39.09,22.4666666667,752.5333333333,42,5,40,8.75,7.5222000596,7.5222000596 -230,0,24.79,35.79,24.89,33.1633333333,24.39,35.9666666667,23.89,35.7,21.1,44.9,24.1,1,23.89,33.0128571429,23.7,38.3266666667,21.6,39.09,22.4,752.5,43,5,40,9,30.5264982046,30.5264982046 -230,0,24.79,35.915,24.89,33.23,24.39,35.9666666667,23.89,35.7,21.1666666667,44.8266666667,24.0428571429,1,23.89,33.072,23.76,38.66,21.6,39.09,22.4166666667,752.5,43,4.8333333333,40,9.0166666667,20.2439219458,20.2439219458 -200,0,24.79,36.6966666667,24.89,33.29,24.39,35.9666666667,23.89,35.7,21.1333333333,44.7,23.934,1,23.8185714286,33,23.79,39.1566666667,21.6,39.09,22.4333333333,752.5,43,4.6666666667,40,9.0333333333,20.8294347744,20.8294347744 -190,10,24.79,37.2633333333,24.89,33.5666666667,24.39,36.09,23.89,35.73,21.2,44.7,23.89,1,23.79,33.036,23.8566666667,39.49,21.6,39.09,22.45,752.5,43,4.5,40,9.05,23.8970462815,23.8970462815 -100,0,24.79,38.3233333333,24.89,33.9,24.4633333333,36.2966666667,23.89,35.79,21.2,44.73,23.7675,1,23.79,33.1057142857,23.89,39.6633333333,21.6,39.09,22.4666666667,752.5,43,4.3333333333,40,9.0666666667,38.8724179007,38.8724179007 -110,0,24.79,38.33,24.8566666667,34.1633333333,24.5,36.53,23.89,35.8266666667,21.26,44.93,23.6,1,23.754,33.276,23.89,39.53,21.6,39.09,22.4833333333,752.5,43,4.1666666667,40,9.0833333333,4.2813429958,4.2813429958 -110,0,24.79,38.33,24.73,34.2966666667,24.5666666667,36.6633333333,23.89,35.9,21.3233333333,45.2,23.3942857143,1,23.7257142857,33.4285714286,23.9266666667,39.7666666667,21.6,39.1266666667,22.5,752.5,43,4,40,9.1,16.0781889921,16.0781889921 -110,0,24.79,37.9666666667,24.6666666667,34.5266666667,24.6,36.79,23.89,35.9333333333,21.39,45.26,23.31,1,23.7,33.634,24.0666666667,40.1,21.6,39.2,22.2666666667,752.4666666667,43.6666666667,3.8333333333,40,9.1166666667,29.6630714322,29.6630714322 -110,0,24.79,37.8266666667,24.5333333333,34.6,24.6,36.79,23.89,36,21.3566666667,45.26,23.39,1,23.7,33.7671428571,24.1,40.36,21.6,39.29,22.0333333333,752.4333333333,44.3333333333,3.6666666667,40,9.1333333333,37.1232692269,37.1232692269 -140,0,24.76,37.73,24.39,35.2,24.6,36.8266666667,23.89,36.23,21.3566666667,45.2,23.13,1,23.68,33.92,24.175,40.595,21.6,39.3725,21.8,752.4,45,3.5,40,9.15,42.2857275582,42.2857275582 -150,20,24.7,37.93,24.1,36.2,24.6,36.9,23.89,36.29,21.79,65.9566666667,22.1071428571,1,23.6,34.0642857143,24.26,40.8333333333,21.6,39.4,21.5666666667,752.3666666667,45.6666666667,3.3333333333,40,9.1666666667,46.10067592,46.10067592 -140,20,24.7,38.53,24.0428571429,36.5371428571,24.7,37,23.89,36.4633333333,21.7675,59.8225,20.912,1,23.6,34.29,24.3471428571,40.8371428571,21.6,39.53,21.3333333333,752.3333333333,46.3333333333,3.1666666667,40,9.1833333333,4.8653536127,4.8653536127 -130,20,24.7,38.79,24.06,36.772,24.7,37,23.9633333333,36.7233333333,21.6333333333,58.1266666667,19.8242857143,1,23.6,34.3528571429,24.456,40.834,21.6,39.59,21.1,752.3,47,3,40,9.2,20.2950144187,20.2950144187 -130,20,24.6666666667,38.6633333333,24.1,36.6214285714,24.7,37.09,24,36.9633333333,21.5666666667,57.6633333333,18.674,1,23.54,34.4,24.5285714286,40.7642857143,21.6,39.6266666667,20.6833333333,752.3166666667,47.5,2.8333333333,37,9,38.7830700609,38.7830700609 -140,20,24.6666666667,38.59,24.1,36.5,24.7,37.09,24,37.1633333333,21.5,57.7233333333,17.9128571429,1,23.5,34.4,24.6,40.7,21.6,39.7,20.2666666667,752.3333333333,48,2.6666666667,34,8.8,27.3929071845,27.3929071845 -120,0,24.6666666667,38.5266666667,24.0857142857,36.5,24.7,37.2,24,37.26,21.5,56.8966666667,17.176,1.416,23.5,34.4,24.6857142857,40.7771428571,21.6,39.7,19.85,752.35,48.5,2.5,31,8.6,37.2087846277,37.2087846277 -100,0,24.6,38.4,24,36.5,24.7,37.2,24.0666666667,37.26,21.5,55.6966666667,16.4971428571,2.9571428571,23.39,34.4285714286,24.76,40.79,21.6,39.7,19.4333333333,752.3666666667,49,2.3333333333,28,8.4,13.0253125215,13.0253125215 -80,0,24.6,38.3633333333,24,36.645,24.7,37.245,24.05,37.145,21.39,54.66,15.92,4.62,23.39,34.5,24.79,40.9266666667,21.6,39.7,19.0166666667,752.3833333333,49.5,2.1666666667,25,8.2,6.4995407243,6.4995407243 -90,0,24.6,38.29,23.89,36.73,24.6666666667,37.26,24,37,21.39,54.1933333333,15.5814285714,5.7957142857,23.39,34.5,24.73,41.4,21.6,39.7,18.6,752.4,50,2,22,8,14.9369758437,14.9369758437 -80,10,24.6,38.29,23.89,36.8633333333,24.6666666667,37.26,24,37,21.39,53.6,15.276,6.696,23.3185714286,34.5,24.79,41.8266666667,21.6,39.59,18.2833333333,752.4166666667,51.1666666667,1.8333333333,25,8.0166666667,28.9018020965,28.9018020965 -80,0,24.6,38.29,23.79,36.9,24.7,37.29,24,36.9,21.39,53.0666666667,14.8957142857,7.7285714286,23.29,34.536,24.79,41.9,21.6,39.6633333333,17.9666666667,752.4333333333,52.3333333333,1.6666666667,28,8.0333333333,35.4364265222,35.4364265222 -80,0,24.6,38.29,23.73,36.9666666667,24.7,37.29,24,36.9,21.39,52.46,14.6,8.42,23.2514285714,34.4957142857,24.7,42,21.6,39.6633333333,17.65,752.45,53.5,1.5,31,8.05,32.3160494561,32.3160494561 -50,0,24.5,38.36,23.6666666667,37,24.7,37.29,24,36.8633333333,21.3233333333,52.0666666667,14.4385714286,9.2271428571,23.29,34.5,24.6333333333,41.86,21.6,39.59,17.3333333333,752.4666666667,54.6666666667,1.3333333333,34,8.0666666667,11.7806534283,11.7806534283 -50,0,24.5,38.56,23.6,37.06,24.7,37.3633333333,24,36.79,21.29,51.9,14.216,10.252,23.2642857143,34.4714285714,24.6,41.9,21.6,39.7,17.0166666667,752.4833333333,55.8333333333,1.1666666667,37,8.0833333333,45.4467985546,45.4467985546 -60,0,24.5,38.4,23.5,37.1266666667,24.7,37.4333333333,24,36.79,21.29,51.8266666667,14.0714285714,11.1385714286,23.254,34.46,24.6,41.9666666667,21.6,39.76,16.7,752.5,57,1,40,8.1,10.7798047713,10.7798047713 -50,0,24.5,38.3266666667,23.4266666667,37.1266666667,24.6333333333,37.5,24,36.79,21.29,51.7,13.854,11.354,23.2,34.4,24.6,42.23,21.6,40,16.2333333333,752.5,59.1666666667,1,40,8.1666666667,9.6700562397,9.6700562397 -50,0,24.5,38.29,23.29,37.29,24.7,37.59,24,36.7,21.29,51.6266666667,13.7371428571,11.4971428571,23.2,34.4,24.5333333333,42.3633333333,21.6,40,15.7666666667,752.5,61.3333333333,1,40,8.2333333333,40.0006829994,40.0006829994 -50,0,24.4266666667,38.1566666667,23.29,37.3633333333,24.6333333333,37.53,24,36.6266666667,21.29,51.4666666667,13.672,11.82,23.2,34.4,24.5,42.4633333333,21.6,40.3,15.3,752.5,63.5,1,40,8.3,16.3665344473,16.3665344473 -50,0,24.39,38.09,23.1666666667,37.4333333333,24.6666666667,37.6633333333,23.9266666667,36.7,21.29,51.3266666667,13.4971428571,12.8,23.2,34.4,24.5,42.8633333333,21.6,40.6725,14.8333333333,752.5,65.6666666667,1,40,8.3666666667,45.7213528571,45.7213528571 -60,0,24.39,38.09,23.1,37.56,24.6,37.59,23.9266666667,36.7,21.29,51.2,13.2725,14.35,23.2,34.4142857143,24.5,43.2666666667,21.6,40.8633333333,14.3666666667,752.5,67.8333333333,1,40,8.4333333333,17.5645086914,17.5645086914 -60,0,24.39,38,23.0666666667,37.7,24.6333333333,37.6266666667,23.89,36.7,21.23,51.0666666667,13.06,15.7,23.18,34.5,24.5,43.5266666667,21.6,41.03,13.9,752.5,70,1,40,8.5,23.0519639561,23.0519639561 -60,0,24.39,38,23,37.76,24.7,37.7,23.89,36.7,21.245,50.895,12.9842857143,16.7285714286,23.1,34.5,24.445,43.745,21.6666666667,41.2233333333,13.6666666667,752.5,71.3333333333,1.3333333333,40,8.55,41.8401676579,41.8401676579 -60,0,24.29,38,22.9633333333,37.9333333333,24.7,37.73,23.89,36.7,21.2,50.6633333333,12.872,17.118,23.16,34.554,24.39,43.8633333333,21.7,41.3266666667,13.4333333333,752.5,72.6666666667,1.6666666667,40,8.6,16.020789952,16.020789952 -60,10,24.29,38,22.89,38,24.7,37.79,23.89,36.7,21.2,50.53,12.7214285714,17.95,23.1,34.5514285714,24.39,43.8633333333,21.6333333333,41.3266666667,13.2,752.5,74,2,40,8.65,12.4387612101,12.4387612101 -50,0,24.29,38.09,22.79,38.0666666667,24.7,37.79,23.8566666667,36.7,21.2,50.4,12.56,18.79,23.1,34.59,24.39,43.56,21.6333333333,41.4633333333,12.9666666667,752.5,75.3333333333,2.3333333333,40,8.7,35.3718370781,35.3718370781 -60,0,24.23,38.03,22.73,38.26,24.7,37.8633333333,23.79,36.7,21.2,50.3266666667,12.3857142857,19.4414285714,23.1,34.59,24.3233333333,43.5,21.7,41.59,12.7333333333,752.5,76.6666666667,2.6666666667,40,8.75,3.5557039548,3.5557039548 -50,0,24.2,38.03,22.7,38.3266666667,24.7,37.8633333333,23.89,36.79,21.2,50.1633333333,12.3,21.254,23.1,34.59,24.29,43.6266666667,21.7,41.73,12.5,752.5,78,3,40,8.8,44.7169953724,44.7169953724 -50,0,24.2,38.09,22.625,38.425,24.7,37.8175,23.79,36.7,21.2,50.09,12.2685714286,22.5542857143,23.1,34.59,24.29,43.7,21.7,41.79,12.3833333333,752.5,78.1666666667,3,40,8.7,36.016477854,36.016477854 -50,0,24.2,38.09,22.6,38.5,24.7,37.9,23.79,36.79,21.2,49.9666666667,12.3,23.16,23.08,34.634,24.29,43.9633333333,21.7,41.9333333333,12.2666666667,752.5,78.3333333333,3,40,8.6,6.8292116863,6.8292116863 -50,0,24.2,38.03,22.5,38.59,24.6666666667,37.8633333333,23.79,36.79,21.2,49.9,12.44,22.2214285714,23.0428571429,34.6371428571,24.23,44.2233333333,21.7,42.06,12.15,752.5,78.5,3,40,8.5,7.9786565038,7.9786565038 -60,0,24.2,38.06,22.5,38.6633333333,24.6,37.79,23.79,36.79,21.2,49.8633333333,12.416,21.3,23.04,34.536,24.2,44.53,21.7,42.23,12.0333333333,752.5,78.6666666667,3,40,8.4,10.7226478634,10.7226478634 -50,0,24.125,38,22.39,38.6266666667,24.6,37.79,23.79,36.79,21.2,49.73,12.2214285714,21.0285714286,23.0142857143,34.5642857143,24.2,44.7233333333,21.7,42.29,11.9166666667,752.5,78.8333333333,3,40,8.3,14.4415141898,14.4415141898 -60,0,24.1,38,22.39,38.7,24.5333333333,37.79,23.79,36.79,21.1,49.7,12.1,21.1,23,34.5225,24.1666666667,44.6633333333,21.7,42.4333333333,11.8,752.5,79,3,40,8.2,38.420644775,38.420644775 -60,0,24.1,38,22.29,38.79,24.5,37.79,23.79,36.79,21.1,49.6266666667,12.0428571429,20.9842857143,23,34.5,24.1,44.53,21.7,42.56,12.3,752.5,74.8333333333,2.8333333333,40,7.75,22.2071652301,22.2071652301 -60,0,24.1,38,22.29,38.8633333333,24.5,37.79,23.76,36.79,21.1,49.56,11.96,20.654,23,34.5,24.0666666667,44.53,21.7,42.6266666667,12.8,752.5,70.6666666667,2.6666666667,40,7.3,0.5713000894,0.5713000894 -60,0,24.1,38,22.26,38.8633333333,24.5,37.79,23.76,36.79,21.1,49.5,11.8,20.5114285714,23,34.5,24,44.6633333333,21.7,42.7,13.3,752.5,66.5,2.5,40,6.85,18.0947918212,18.0947918212 -60,0,24.0333333333,37.9333333333,22.2,38.79,24.5,37.73,23.7,36.79,21.1,49.4666666667,11.69,20.736,23,34.4428571429,24,45,21.7,42.73,13.8,752.5,62.3333333333,2.3333333333,40,6.4,1.4417870319,1.4417870319 -40,0,24,37.9,22.1666666667,38.9,24.4633333333,37.6633333333,23.7,36.79,21.1,49.4,11.6414285714,20.8357142857,22.978,34.4,24,45,21.7,42.8725,14.3,752.5,58.1666666667,2.1666666667,40,5.95,8.7050750852,8.7050750852 -60,0,24,37.9,22.1,38.9,24.39,37.59,23.7,36.76,21.1,49.29,11.8,20.156,22.89,34.4,23.9633333333,44.76,21.76,42.9666666667,14.8,752.5,54,2,40,5.5,17.0867694891,17.0867694891 -40,0,24,37.9,22.0666666667,38.9666666667,24.39,37.59,23.7,36.7,21.1,49.23,11.6957142857,20,22.89,34.4,23.89,44.6266666667,21.73,43.03,14.7666666667,752.4833333333,53.8333333333,2.1666666667,40,5.4333333333,36.0236692708,36.0236692708 -60,0,24,37.9,22,38.9666666667,24.39,37.59,23.7,36.7,21.1,49.09,11.5,20.374,22.89,34.4,23.89,44.56,21.79,43.09,14.7333333333,752.4666666667,53.6666666667,2.3333333333,40,5.3666666667,34.4686205499,34.4686205499 -40,0,24,37.9,22,39,24.39,37.59,23.7,36.7,21.1,49.0675,11.3542857143,20.7071428571,22.89,34.378,23.89,44.3475,21.73,43.1266666667,14.7,752.45,53.5,2.5,40,5.3,7.1780765662,7.1780765662 -60,0,24,37.9,22,39.06,24.39,37.6633333333,23.7,36.7,21.1666666667,49,11.16,21.525,22.89,34.29,23.89,43.9633333333,21.79,43.2,14.6666666667,752.4333333333,53.3333333333,2.6666666667,40,5.2333333333,13.8863522909,13.8863522909 -60,0,23.9633333333,37.9,21.9633333333,39.09,24.39,37.59,23.7,36.7,21.1,48.9,10.978,22.238,22.89,34.29,23.79,43.6633333333,21.79,43.2,14.6333333333,752.4166666667,53.1666666667,2.8333333333,40,5.1666666667,8.676603029,8.676603029 -50,0,23.89,37.9,21.89,39.09,24.39,37.6633333333,23.7,36.7,21.1,48.8266666667,10.89,22.88,22.89,34.29,23.79,43.6633333333,21.79,43.2,14.6,752.4,53,3,40,5.1,21.9027274405,21.9027274405 -70,0,23.89,37.9,21.89,39.09,24.39,37.73,23.7,36.7,21.1,48.7,10.854,22.89,22.89,34.29,23.79,43.56,21.79,43.23,14.1833333333,752.35,55,2.6666666667,40,5.1833333333,39.7081058822,39.7081058822 -50,0,23.8233333333,37.8266666667,21.8233333333,39.03,24.4633333333,37.8633333333,23.6,36.59,21.1,48.6266666667,10.8,23.2385714286,22.89,34.29,23.79,43.5,21.79,43.29,13.7666666667,752.3,57,2.3333333333,40,5.2666666667,9.3134158873,9.3134158873 -60,0,23.8233333333,37.79,21.84,39.145,24.5,37.95,23.6333333333,36.7,21.1,48.56,10.8,23.4,22.79,34.2,23.79,43.4,21.79,43.29,13.35,752.25,59,2,40,5.35,40.6483468134,40.6483468134 -50,0,23.8233333333,37.79,21.76,39.09,24.5,38,23.6333333333,36.6266666667,21.1,48.5,10.7214285714,23.2285714286,22.79,34.1842857143,23.79,43.3266666667,21.79,43.29,12.9333333333,752.2,61,1.6666666667,40,5.4333333333,32.2257296299,32.2257296299 -50,0,23.79,37.7,21.7,39.09,24.5,38.06,23.6,36.59,21.1,48.4,10.69,23.976,22.79,34.09,23.76,43.2,21.79,43.29,12.5166666667,752.15,63,1.3333333333,40,5.5166666667,42.6120956894,42.6120956894 -50,0,23.79,37.7,21.7,39.09,24.5,38.09,23.6,36.59,21.1,48.3266666667,10.7842857143,23.4228571429,22.79,34.09,23.7,43.1266666667,21.79,43.29,12.1,752.1,65,1,40,5.6,46.9543688348,46.9543688348 -60,0,23.79,37.7,21.7,39.09,24.5,38.09,23.6,36.59,21.1,48.26,10.778,22.996,22.79,34.09,23.7,43.2,21.79,43.29,12.0666666667,752.0666666667,64.8333333333,1,40,5.5333333333,16.800123034,16.800123034 -40,0,23.79,37.73,21.6333333333,39.0666666667,24.5,38.1266666667,23.6,36.6633333333,21.1,48.1266666667,10.6257142857,23.44,22.79,34.09,23.7,43.2,21.79,43.29,12.0333333333,752.0333333333,64.6666666667,1,40,5.4666666667,25.1978383167,25.1978383167 -60,0,23.79,37.99,21.6333333333,39.26,24.5,38.2,23.6,36.6266666667,21.1,48.06,10.636,23.576,22.79,34.036,23.7,43.06,21.79,43.4,12,752,64.5,1,40,5.4,41.8485998875,41.8485998875 -60,0,23.7,38,21.6,39.2,24.5333333333,38.2,23.6,36.6266666667,21.1,48,10.814,23.034,22.79,34.0385714286,23.7,43,21.79,43.4,11.9666666667,751.9666666667,64.3333333333,1,40,5.3333333333,29.3428169563,29.3428169563 -60,0,23.7,37.9333333333,21.5857142857,39.2,24.5333333333,38.2,23.5666666667,36.6266666667,21.1,47.9666666667,10.89,22.6633333333,22.754,34,23.7,42.8633333333,21.79,43.4,11.9333333333,751.9333333333,64.1666666667,1,40,5.2666666667,22.6580605842,22.6580605842 -60,0,23.7,37.9,21.54,39.2,24.6,38.2,23.5,36.7,21.1,47.9,10.9633333333,22.3966666667,22.7771428571,34,23.7,42.73,21.79,43.4,11.9,751.9,64,1,40,5.2,35.246304865,35.246304865 -50,0,23.7,37.8266666667,21.5,39.2,24.6,38.26,23.6,36.59,21.1,47.79,11.13,21.56,22.79,34,23.6,42.5,21.79,43.4,11.8,751.9,64.5,1.1666666667,40,5.2333333333,1.4415563783,1.4415563783 -50,0,23.6666666667,37.76,21.5,39.2,24.6,38.2,23.5333333333,36.59,21.1,47.73,11.19,20.7666666667,22.79,34,23.6,42.4333333333,21.79,43.4,11.7,751.9,65,1.3333333333,40,5.2666666667,38.101595256,38.101595256 -50,0,23.6,37.7,21.5,39.2,24.6,38.2,23.5,36.59,21.1,47.6633333333,11.19,20.3233333333,22.7675,33.9,23.6,42.26,21.79,43.4,11.6,751.9,65.5,1.5,40,5.3,33.7448376697,33.7448376697 -50,0,23.6,37.7,21.5,39.2,24.6333333333,38.29,23.5,36.59,21.05,47.5225,11.19,20.2633333333,22.7,33.9,23.6,42.1266666667,21.79,43.4,11.5,751.9,66,1.6666666667,40,5.3333333333,49.3155105854,49.3155105854 -50,0,23.6,37.7,21.5,39.2,24.7,38.29,23.5,36.59,21.1,47.5,11.2566666667,20.1666666667,22.7257142857,33.9,23.6,42.09,21.79,43.4,11.4,751.9,66.5,1.8333333333,40,5.3666666667,18.2957539335,18.2957539335 -40,0,23.5666666667,37.7,21.5,39.2,24.6333333333,38.23,23.5,36.59,21.1,47.4,11.52,20.025,22.736,33.9,23.575,42.045,21.79,43.4,11.3,751.9,67,2,40,5.4,3.2554732054,3.2554732054 -50,0,23.5,37.7,21.5,39.1842857143,24.6333333333,38.23,23.5,36.59,21.1,47.3266666667,11.7633333333,20,22.7,33.9,23.5666666667,42.09,21.79,43.4,11.5166666667,751.9166666667,66.8333333333,1.8333333333,40,5.5666666667,34.9893919658,34.9893919658 -50,0,23.5,37.7,21.5,39.09,24.6333333333,38.23,23.5,36.6633333333,21.1,47.29,11.96,20,22.7,33.9,23.5,42.09,21.79,43.3266666667,11.7333333333,751.9333333333,66.6666666667,1.6666666667,40,5.7333333333,26.9928471767,26.9928471767 -60,0,23.5,37.7,21.5285714286,39.09,24.7,38.29,23.5,36.7,21.1,47.23,12.16,19.9266666667,22.7385714286,33.9,23.5,42.09,21.79,43.4,11.95,751.95,66.5,1.5,40,5.9,26.2659398257,26.2659398257 -60,0,23.5,37.7,21.6,39.09,24.7,38.29,23.5,36.7,21.1,47.1633333333,12.5633333333,19.6333333333,22.7,33.9,23.5,42.2,21.8566666667,43.4666666667,12.1666666667,751.9666666667,66.3333333333,1.3333333333,40,6.0666666667,48.867858795,48.867858795 -60,0,23.5,37.76,21.6142857143,39.0514285714,24.7,38.29,23.4266666667,36.7,21.1,47.09,12.8233333333,19.2333333333,22.7,33.9285714286,23.5,42.2,21.79,43.4,12.3833333333,751.9833333333,66.1666666667,1.1666666667,40,6.2333333333,15.8508827328,15.8508827328 -50,0,23.4633333333,37.76,21.68,39.036,24.7,38.29,23.39,36.73,21.1,47.06,13,18.89,22.7,34,23.5,42.23,21.8233333333,43.53,12.6,752,66,1,40,6.4,14.746799448,14.746799448 -60,0,23.39,37.7,21.6714285714,39,24.73,38.29,23.39,36.79,21.1,47,13.0666666667,18.9633333333,22.7,34,23.5,42.3633333333,21.89,43.59,13.0333333333,752.0333333333,64.5,1.1666666667,40,6.45,15.3369626845,15.3369626845 -60,0,23.39,37.73,21.7,39,24.79,38.29,23.39,36.79,21.1,46.9666666667,13.3266666667,19.6233333333,22.7,34.054,23.5,42.5666666667,21.89,43.7,13.4666666667,752.0666666667,63,1.3333333333,40,6.5,30.7580164867,30.7580164867 -260,0,23.39,37.915,21.7642857143,38.9571428571,24.76,38.26,23.39,36.79,21.1,46.9,14.1266666667,20.4966666667,22.7,34.09,23.5,42.7,21.89,43.76,13.9,752.1,61.5,1.5,40,6.55,24.8976528179,24.8976528179 -360,0,23.39,38.5633333333,21.9385714286,39.1914285714,24.7,38.1266666667,23.39,36.9,21.1,46.8633333333,15.7233333333,17.7966666667,22.7,34.2,23.5,42.9,21.89,43.59,14.3333333333,752.1333333333,60,1.6666666667,40,6.6,24.3768992368,24.3768992368 -100,0,23.39,39,22.52,39.096,24.79,37.9666666667,23.445,37.05,21.1,46.73,16.8633333333,12.73,22.7,34.2671428571,23.5,42.9,21.89,43.59,14.7666666667,752.1666666667,58.5,1.8333333333,40,6.65,8.9600248029,8.9600248029 -90,0,23.4633333333,39.1333333333,23.4714285714,38.1685714286,24.8566666667,37.9,23.5,37.2,21.1,46.56,18.19,8.8333333333,22.7,34.42,23.5,42.9333333333,21.9266666667,43.4666666667,15.2,752.2,57,2,40,6.7,0.4112419207,0.4112419207 -90,0,23.5,39.3633333333,24.176,37.32,25,37.79,23.5,37.4633333333,21.1666666667,46.4333333333,19.19,5.2933333333,22.7,34.5257142857,23.5,43.06,22,43.2666666667,15.5166666667,752.2166666667,57.1666666667,2.1666666667,40,7.0166666667,38.5642472305,38.5642472305 -100,0,23.5,39.29,24.84,36.6285714286,25.0666666667,37.73,23.5,37.6633333333,21.1,46.26,20.13,2.49,22.7,34.7,23.5,43.1266666667,22,42.895,15.8333333333,752.2333333333,57.3333333333,2.3333333333,40,7.3333333333,47.4616340362,47.4616340362 -120,0,23.5,39.26,25.556,35.64,25.1333333333,37.7,23.6,37.76,21.1666666667,46.2,20.7233333333,1.3566666667,22.7,34.7514285714,23.5,43.2,22,42.6,16.15,752.25,57.5,2.5,40,7.65,3.3975717844,3.3975717844 -200,0,23.5666666667,39.2,26.1971428571,34.8242857143,25.2,37.6266666667,23.6,37.7,21.2,46.09,21.3666666667,1,22.7,34.812,23.6,43.3266666667,22,42.3266666667,16.4666666667,752.2666666667,57.6666666667,2.6666666667,40,7.9666666667,21.7168424861,21.7168424861 -130,0,23.6,39.2,26.776,33.634,25.2,37.56,23.6,37.7,21.2,46.09,21.8266666667,1,22.7,34.9714285714,23.6,43.4666666667,22.1,42.4566666667,16.7833333333,752.2833333333,57.8333333333,2.8333333333,40,8.2833333333,21.1007681559,21.1007681559 -80,0,23.6,39.2,27.1257142857,33.3671428571,25.2,37.5,23.6,37.7,21.2,46.045,22.46,1,22.7,35,23.6,43.5,22.1,43.2633333333,17.1,752.3,58,3,40,8.6,47.6543598226,47.6543598226 -210,0,23.7,39.6933333333,27.39,32.618,25.1666666667,37.43,23.6,37.6633333333,21.2,46,22.8666666667,1,22.7,35.0385714286,23.6,43.56,22.1,43.59,17.4666666667,752.3333333333,56.8333333333,3,40,8.65,26.8726022565,26.8726022565 -240,0,23.7,39.5666666667,27.39,32.29,25.0333333333,37.29,23.6,37.59,21.2,46,23.15,1,22.7,35,23.6,43.7,22.1,43.53,17.8333333333,752.3666666667,55.6666666667,3,40,8.7,20.435222704,20.435222704 -210,0,23.73,39.1633333333,27.54,32.21,25,37.2,23.6,37.59,21.86,64.3,23.3233333333,1,22.7257142857,35,23.6,43.3633333333,22.1333333333,43.2233333333,18.2,752.4,54.5,3,40,8.75,4.4098068727,4.4098068727 -80,0,23.79,39.09,27.8971428571,31.82,25,37.26,23.6,37.59,23.1933333333,82.9,23.53,1,22.79,34.96,23.6,42.89,22.2,43.03,18.5666666667,752.4333333333,53.3333333333,3,40,8.8,24.6970679378,24.6970679378 -100,0,23.79,39.3266666667,28.178,31.376,25.1,37.29,23.6,37.5,22.6933333333,82.03,23.73,1,22.79,34.8975,23.6,42.3633333333,22.2,42.76,18.9333333333,752.4666666667,52.1666666667,3,40,8.85,23.0394707061,23.0394707061 -90,0,23.8566666667,39.4,28.3614285714,30.7257142857,25.0333333333,37.29,23.68,37.496,22.36,82.23,23.85,1,22.79,34.5842857143,23.6,41.89,22.2,42.5957142857,19.3,752.5,51,3,40,8.9,30.6602292228,30.6602292228 -110,0,23.9266666667,39.7333333333,28.434,29.754,25,37.145,23.7,37.3633333333,22.1666666667,82.3666666667,24.236,1,22.79,34.294,23.6,41.4,22.2,42.254,19.7,752.5,49,3.1666666667,40,8.6,40.2653090889,40.2653090889 -120,0,24,40.8666666667,28.5571428571,29.2971428571,25,37,23.7,37.23,22.1,81.8266666667,24.5842857143,1,22.79,33.9971428571,23.6666666667,41.3266666667,22.2,41.9814285714,20.1,752.5,47,3.3333333333,40,8.3,20.555042848,20.555042848 -360,0,24,38.5933333333,28.6,28.896,25,36.86,23.7,36.93,22,79.2566666667,24.816,1,22.79,33.656,23.73,41.1633333333,22.2,41.714,20.5,752.5,45,3.5,40,8,11.3841086277,11.3841086277 -270,0,24.0666666667,37.7333333333,28.6,28.7257142857,25,36.8266666667,23.7,36.73,21.9266666667,75.73,25.2257142857,1,22.8042857143,33.4814285714,23.8566666667,41.03,22.2,41.4971428571,20.9,752.5,43,3.6666666667,40,7.7,17.2839332256,17.2839332256 -120,0,24.1,36.55,28.6,28.754,25,36.9666666667,23.7,36.4666666667,21.89,71.8566666667,25.54,1,22.89,33.4,23.9266666667,40.76,22.254,41.32,21.3,752.5,41,3.8333333333,40,7.4,7.8395264456,7.8395264456 -140,0,24.23,35.3233333333,28.6,28.57,25,36.9666666667,23.7,36.3266666667,21.8233333333,68.1233333333,25.5271428571,1,22.89,33.3685714286,24.0666666667,40.6266666667,22.2128571429,41.0671428571,21.7,752.5,39,4,40,7.1,48.2069109567,48.2069109567 -120,0,24.29,34.6566666667,28.58,28.312,25,36.8266666667,23.7,36.2,21.79,65.1966666667,25.456,1,22.89,33.09,24.1333333333,40.1,22.29,41.09,21.8666666667,752.4833333333,38.3333333333,4,40,7.0166666667,26.9543295959,26.9543295959 -100,0,24.3233333333,34.2966666667,28.4214285714,28.2,24.89,36.7233333333,23.79,36,21.79,63.9966666667,25.5714285714,1,22.89,32.9557142857,24.26,39.8266666667,22.2642857143,40.9971428571,22.0333333333,752.4666666667,37.6666666667,4,40,6.9333333333,33.9320536004,33.9320536004 -260,0,24.4633333333,34.03,28.35,28.06,24.89,36.53,23.79,36,21.7,62.4266666667,25.6,1,22.89,32.816,24.3233333333,39.6,22.254,40.754,22.2,752.45,37,4,40,6.85,2.9373892932,2.9373892932 -250,0,24.5333333333,33.9966666667,28.2385714286,27.9228571429,24.89,36.5,23.79,35.9333333333,21.7,60.96,25.4228571429,1,22.89,32.6214285714,24.39,39.2666666667,22.2642857143,40.4814285714,22.3666666667,752.4333333333,36.3333333333,4,40,6.7666666667,20.4376760055,20.4376760055 -100,0,24.6666666667,33.6633333333,28.2,27.736,24.89,36.4333333333,23.79,35.79,21.7,58.8266666667,25.35,1,23,32.356,24.39,38.93,22.254,40.356,22.5333333333,752.4166666667,35.6666666667,4,40,6.6833333333,4.5490489225,4.5490489225 -90,0,24.79,32.7966666667,28.1714285714,27.6428571429,24.89,36.4,23.79,35.73,21.7,57.16,25.3185714286,1,23,32.0985714286,24.39,38.73,22.245,40.13,22.7,752.4,35,4,40,6.6,41.4877230884,41.4877230884 -80,0,24.8566666667,33.13,28.0375,27.40625,24.89,36.4,23.79,35.7,21.7,55.63,25.5,1,23,31.958,24.5,38.7,22.2385714286,39.7642857143,22.8333333333,752.3666666667,34,4.1666666667,40,6.2,19.8008595151,19.8008595151 -100,0,24.89,32.9966666667,27.85,26.66,24.89,36.4,23.8566666667,35.6266666667,21.7,54.3975,25.4685714286,1,23.0428571429,31.8071428571,24.5,38.5,22.2,39.554,22.9666666667,752.3333333333,33,4.3333333333,40,5.8,40.9955611103,40.9955611103 -80,0,24.89,32.4633333333,27.7385714286,26.3942857143,24.89,36.3266666667,23.9266666667,35.3333333333,21.7,53.2333333333,25.434,1,23.1,31.66,24.39,37.99,22.2642857143,39.4271428571,23.1,752.3,32,4.5,40,5.4,14.558192133,14.558192133 -90,0,24.89,32.1266666667,27.64,26.29,24.9266666667,36.3633333333,23.9266666667,34.9266666667,21.6,52.0933333333,25.39,1,23.1142857143,31.5428571429,24.39,37.5966666667,22.218,39.236,23.2333333333,752.2666666667,31,4.6666666667,40,5,26.4971117373,26.4971117373 -80,0,24.9633333333,32.2,27.5285714286,26.3185714286,25,36.29,23.9633333333,34.8583333333,21.6,51.2933333333,25.33,1,23.2,31.434,24.39,37.3,22.2257142857,39.0571428571,23.3666666667,752.2333333333,30,4.8333333333,40,4.6,49.8870639363,49.8870639363 -80,10,25.0333333333,32.4,27.456,26.54,25,36.2,24,34.79,21.6,50.6233333333,25.2528571429,1,23.2257142857,31.3471428571,24.39,37.0266666667,22.236,38.94,23.5,752.2,29,5,40,4.2,1.0077857878,1.0077857878 -80,0,25.1,32.6,27.3757142857,26.7371428571,25,36.2,24.0325,34.78625,21.6666666667,50.1566666667,25.274,1,23.29,31.374,24.39,36.8266666667,22.2257142857,38.8128571429,23.5833333333,752.1833333333,28.8333333333,5.1666666667,40,4.25,30.7865082636,30.7865082636 -70,10,25.1,32.6333333333,27.272,26.85,25,36.29,24.065,34.7825,21.6333333333,49.49,25.39,1,23.3914285714,31.7628571429,24.39,36.6633333333,22.29,38.812,23.6666666667,752.1666666667,28.6666666667,5.3333333333,40,4.3,15.8442278509,15.8442278509 -80,0,25.1,32.5,27.2,27.0514285714,25,36.2675,24.0975,34.77875,21.7,49.03,25.374,1,23.478,31.852,24.39,36.53,22.29,38.9,23.75,752.15,28.5,5.5,40,4.35,27.7429309674,27.7429309674 -70,0,25.2,32.7,27.2,27.776,25,36.2,24.13,34.775,21.7,48.5266666667,25.5571428571,1,23.39,31.6714285714,24.39,36.43,22.29,38.7,23.8333333333,752.1333333333,28.3333333333,5.6666666667,40,4.4,0.7818966638,0.7818966638 -70,0,25.26,32.7,27.2,28.14,25.1,36.2,24.1625,34.77125,21.7,48.2666666667,25.6,1,23.39,31.456,24.39,36.23,22.29,38.5857142857,23.9166666667,752.1166666667,28.1666666667,5.8333333333,40,4.45,41.9890809222,41.9890809222 -70,0,25.29,32.8266666667,27.18,28.412,25.0333333333,36.2,24.195,34.7675,21.7,47.93,25.535,1,23.39,31.1957142857,24.39,36.0266666667,22.29,38.44,24,752.1,28,6,40,4.5,13.6065809173,13.6065809173 -80,0,25.365,32.9,27.1428571429,28.7257142857,25.1,36.2,24.2275,34.76375,21.7,47.6566666667,25.5,1,23.39,31.018,24.39,35.9,22.29,38.2957142857,24.1,752.1,27.5,5.6666666667,40,4.25,18.3859613491,18.3859613491 -100,0,25.4633333333,32.3,27.1,28.265,25.1,36.2,24.26,34.76,21.7,47.4,25.54,1,23.39,30.84125,24.39,35.71,22.29,38.09,24.2,752.1,27,5.3333333333,40,4,15.3444401221,15.3444401221 -90,0,25.5,32.43,27.1,27.7633333333,25.1,36.26,24.2,34.7,21.7,47,25.6,1,23.39,30.6714285714,24.5,35.59,22.29,38.0385714286,24.3,752.1,26.5,5,40,3.75,2.2597764619,2.2597764619 -90,0,25.5666666667,32.3566666667,26.9633333333,27.6233333333,25.1,36.2,24.29,34.79,21.7,46.6333333333,25.6,1,23.39,30.6,24.5,35.53,22.29,37.918,24.4,752.1,26,4.6666666667,40,3.5,0.25014329,0.25014329 -100,0,25.6,31.43,26.89,27.29,25.1,36.1633333333,24.29,34.845,21.7,46.36,25.6,1,23.39,30.6142857143,24.5,35.4633333333,22.29,37.79,24.5,752.1,25.5,4.3333333333,40,3.25,21.804017399,21.804017399 -110,0,25.6,31.29,26.76,27.4266666667,25.1,36.03,24.29,34.9,21.7,46.0266666667,25.7,1,23.39,30.754,24.5666666667,35.7233333333,22.29,37.7,24.6,752.1,25,4,40,3,20.3016209183,20.3016209183 -110,0,25.6333333333,31.1333333333,26.7,27.5666666667,25.2,36,24.3566666667,34.9,21.76,45.7666666667,25.8266666667,1,23.39,30.79,24.6333333333,36.03,22.29,37.6842857143,24.7333333333,752.0333333333,25.3333333333,4,40,3.3333333333,27.3213749635,27.3213749635 -100,0,25.7,30.9266666667,26.6,27.79,25.2,36,24.39,34.9,21.73,45.5266666667,25.8266666667,1,23.39,30.79,24.7,36.09,22.29,37.59,24.8666666667,751.9666666667,25.6666666667,4,40,3.6666666667,46.208210499,46.208210499 -110,0,25.6333333333,30.79,26.5333333333,27.8566666667,25.2,36,24.39,34.9,21.79,45.3266666667,25.6333333333,1,23.39,30.79,24.79,36.2,22.29,37.59,25,751.9,26,4,40,4,8.8595790206,8.8595790206 -100,0,25.7,30.8566666667,26.39,27.9266666667,25.2,35.9333333333,24.39,34.9,21.79,45.1,25.5333333333,1,23.434,30.85,24.79,36.26,22.29,37.59,25.1333333333,751.8333333333,26.3333333333,4,40,4.3333333333,1.1813185993,1.1813185993 -90,0,25.6333333333,30.89,26.39,28.0666666667,25.2,35.9333333333,24.39,34.9,21.79,44.8633333333,25.62,1,23.412,30.912,24.83,36.4,22.29,37.59,25.2666666667,751.7666666667,26.6666666667,4,40,4.6666666667,25.4518630449,25.4518630449 -100,0,25.7,30.9633333333,26.3566666667,28.2,25.2,35.9166666667,24.39,34.9,21.79,44.73,25.6714285714,1,23.4266666667,31,24.79,36.2,22.29,37.59,25.4,751.7,27,4,40,5,20.7425560802,20.7425560802 -90,0,25.7,31.23,26.29,28.475,25.2,35.9,24.39,34.8266666667,21.79,44.56,25.35,1,23.5,31.14,24.79,36.1371428571,22.29,37.6725,25.35,751.6333333333,26.8333333333,4,40,4.85,17.3667730298,17.3667730298 -100,0,25.6333333333,31.3566666667,26.23,28.76,25.2,35.9,24.4266666667,34.8266666667,21.79,44.4333333333,25.2771428571,1,23.39,31.14,24.79,36.0225,22.29,37.7,25.3,751.5666666667,26.6666666667,4,40,4.7,20.5568168312,20.5568168312 -90,0,25.6,31.6966666667,26.1666666667,29.1633333333,25.2,35.9,24.5,34.9,21.89,44.4666666667,25.098,1,23.4371428571,31.3085714286,24.79,36.054,22.29,37.7928571429,25.25,751.5,26.5,4,40,4.55,39.715489035,39.715489035 -90,0,25.6,32.0233333333,26.1,29.4966666667,25.2,35.9,24.4633333333,34.9666666667,21.89,44.4,24.89,1,23.412,31.432,24.79,36.09,22.29,37.9,25.2,751.4333333333,26.3333333333,4,40,4.4,17.2069383203,17.2069383203 -80,0,25.5666666667,32.53,26.0666666667,29.9266666667,25.2,35.9,24.4633333333,35.0266666667,21.89,44.4,25.276,1,23.4528571429,31.6285714286,24.79,36.2,22.29,37.9285714286,25.15,751.3666666667,26.1666666667,4,40,4.25,35.9076533001,35.9076533001 -90,0,25.5,32.59,26,30.0666666667,25.2,35.9,24.5,35.1266666667,21.9633333333,44.4,25.6114285714,1,23.434,31.736,24.79,36.1528571429,22.29,38.036,25.1,751.3,26,4,40,4.1,35.7532042195,35.7532042195 -80,0,25.5,32.8,26.1,30.23,25.29,35.9,24.5,35.2,22,44.4,25.85,1,23.4371428571,31.9042857143,24.79,36.2,22.29,38.1528571429,24.6833333333,751.2833333333,28.6666666667,3.8333333333,40,4.9333333333,10.3243821533,10.3243821533 -90,0,25.5,33.1333333333,26.0333333333,30.3566666667,25.29,35.9666666667,24.5,35.245,22,44.4,25.9214285714,1,23.456,32.196,24.79,36.2642857143,22.29,38.2,24.2666666667,751.2666666667,31.3333333333,3.6666666667,40,5.7666666667,47.7650604676,47.7650604676 -90,0,25.5,33.4333333333,26.1,30.6333333333,25.29,35.9666666667,24.5,35.29,22.0333333333,44.4333333333,26.474,1,23.5285714286,32.4971428571,24.79,36.4,22.29,38.2,23.85,751.25,34,3.5,40,6.6,32.38843648,32.38843648 -80,0,25.5,33.375,26.1,30.7,25.29,35.8266666667,24.5,35.29,22.1666666667,44.5,27.01,1,23.6,32.79,24.79,36.3242857143,22.29,38.2,23.4333333333,751.2333333333,36.6666666667,3.3333333333,40,7.4333333333,9.4927671016,9.4927671016 -70,0,25.5,33,26.1,30.6666666667,25.39,35.7,24.5,35.29,22.29,44.5,27.35,1,23.6,32.9414285714,24.79,36.2,22.29,38.2,23.0166666667,751.2166666667,39.3333333333,3.1666666667,40,8.2666666667,12.0069661061,12.0069661061 -80,0,25.5,32.86,26.0333333333,30.6,25.3233333333,35.7,24.5,35.2,22.29,44.4333333333,27.2642857143,1,23.66,33.076,24.79,36.1685714286,22.29,38.178,22.6,751.2,42,3,40,9.1,22.0016024192,22.0016024192 -560,10,25.5,33.6,26,30.6,25.39,35.6266666667,24.5,35.2,22.29,44.26,26.956,1,23.7,33.2257142857,24.79,36,22.29,38.1214285714,22.8,751.1666666667,41,3,40,8.9,5.7188404608,5.7188404608 -630,0,25.5,35.1933333333,26,30.7933333333,25.3233333333,35.8333333333,24.5,35.26,22.29,44.1266666667,26.8057142857,1,23.7,33.44,24.8042857143,36.4071428571,22.29,38.2,23,751.1333333333,40,3,40,8.7,16.386105807,16.386105807 -230,0,25.5,36.9333333333,25.89,31.1233333333,25.29,36.09,24.5,35.4333333333,22.29,44.1266666667,26.3625,1,23.7128571429,33.7385714286,24.89,37.12,22.3185714286,38.2514285714,23.2,751.1,39,3,40,8.5,22.9785169475,22.9785169475 -100,0,25.5,40.03,25.8233333333,32.3966666667,25.3566666667,36.09,24.5,35.5,22.3566666667,44.4,26.018,1,23.79,33.8175,24.89,37.4,22.35,38.29,23.4,751.0666666667,38,3,40,8.3,13.7785427622,13.7785427622 -110,0,25.5,37.7633333333,25.79,33.2,25.39,36.09,24.5,35.5,22.39,44.7666666667,25.7642857143,1,23.79,33.79,24.89,37.634,22.39,38.29,23.6,751.0333333333,37,3,40,8.1,22.0980081591,22.0980081591 -120,0,25.5,37.16,25.73,33.0666666667,25.39,36.09,24.5,35.5,22.39,44.975,25.254,1,23.79,33.8214285714,24.9057142857,38.0085714286,22.29,38.334,23.8,751,36,3,40,7.9,5.0731260097,5.0731260097 -130,0,25.4266666667,36.9666666667,25.5666666667,33.6966666667,25.29,36.2,24.5,35.6266666667,22.4633333333,45.06,25.7542857143,1,23.79,34.28,24.976,38.394,22.3471428571,38.4142857143,23.6166666667,751.05,37.5,2.8333333333,40,8.2833333333,13.8808723772,13.8808723772 -120,0,25.39,37.2266666667,25.4266666667,34.5566666667,25.3566666667,36.26,24.5,35.8333333333,22.5,45.06,26.756,1,23.79,34.6928571429,25.1285714286,38.6685714286,22.35,38.518,23.4333333333,751.1,39,2.6666666667,40,8.6666666667,1.5570749994,1.5570749994 -140,0,25.39,37.56,25.26,35.3666666667,25.39,36.4333333333,24.5,35.9333333333,22.5666666667,45,27.3671428571,1,23.79,35.076,25.2,38.834,22.39,38.59,23.25,751.15,40.5,2.5,40,9.05,11.6507837316,11.6507837316 -100,10,25.29,38.03,25.1,36.3,25.39,36.56,24.5,36.1333333333,22.5666666667,45.09,27.016,1,23.8328571429,35.64,25.2514285714,39.0242857143,22.39,38.79,23.0666666667,751.2,42,2.3333333333,40,9.4333333333,10.7231607079,10.7231607079 -110,0,25.29,38.43,24.9266666667,36.9,25.39,36.73,24.5,36.4333333333,22.5666666667,45.1633333333,25.78,1,23.83,36.28,25.29,39.296,22.39,38.9414285714,22.8833333333,751.25,43.5,2.1666666667,40,9.8166666667,30.7150810491,30.7150810491 -100,0,25.26,38.6566666667,24.6666666667,37.36,25.39,36.8633333333,24.5,36.56,22.5,45.3266666667,23.856,1,23.89,36.8257142857,25.3614285714,39.5957142857,22.39,39.076,22.7,751.3,45,2,40,10.2,1.4772775699,1.4772775699 -100,0,25.1333333333,38.8633333333,24.5333333333,37.5,25.39,36.95,24.5,36.8266666667,22.5,45.4666666667,22.2,1,23.89,37.296,25.39,39.94,22.39,39.2642857143,22.4666666667,751.3,46.1666666667,1.8333333333,40,10.3333333333,38.6560516665,38.6560516665 -100,0,25.1,38.9,24.4266666667,37.76,25.39,37.09,24.5,36.9666666667,22.63,52.9233333333,20.84,1,23.9371428571,37.5957142857,25.39,39.9528571429,22.39,39.44,22.2333333333,751.3,47.3333333333,1.6666666667,40,10.4666666667,5.1863612724,5.1863612724 -100,0,25.1,38.9666666667,24.5666666667,37.6266666667,25.39,37.09,24.5,37.09,23.63,73.9233333333,19.9128571429,1,23.89,37.59,25.312,39.914,22.39,39.55625,22,751.3,48.5,1.5,40,10.6,19.0450114431,19.0450114431 -70,0,25.1,39.03,24.6333333333,37.5,25.39,37.23,24.5,37.1725,23.5966666667,77.5933333333,19.076,1,23.89,37.44,25.2642857143,40.7928571429,22.39,39.6842857143,21.7666666667,751.3,49.6666666667,1.3333333333,40,10.7333333333,30.2177061909,30.2177061909 -50,0,25.1,39.09,24.7,37.4333333333,25.39,37.29,24.5,37.26,23.2633333333,78.9266666667,18.3957142857,1,23.89,37.196,25.29,41.134,22.39,39.718,21.5333333333,751.3,50.8333333333,1.1666666667,40,10.8666666667,44.6441613371,44.6441613371 -50,10,25.1,39,24.6,37.1333333333,25.39,37.29,24.5,37.2,23.1666666667,79.1566666667,17.62,1.28,23.89,36.9714285714,25.315,41.2,22.39,39.7514285714,21.3,751.3,52,1,40,11,13.4261646424,13.4261646424 -60,0,25.0666666667,38.8633333333,24.6,37,25.39,37.3633333333,24.5,37.26,23.1,78.6966666667,17.21,2.9642857143,23.79,36.656,25.2771428571,41.3285714286,22.39,39.79,20.7166666667,751.35,53.6666666667,1,40,10.9,6.1998915742,6.1998915742 -60,0,25,38.79,24.5666666667,36.9,25.29,37.5,24.5,37.29,22.9633333333,75.9566666667,16.772,4.098,23.79,36.5385714286,25.218,41.594,22.39,39.79,20.1333333333,751.4,55.3333333333,1,40,10.8,42.6155250636,42.6155250636 -50,0,25,38.7,24.5,36.9,25.29,37.5,24.4266666667,37.23,22.89,73.5633333333,16.2957142857,5.25,23.79,36.48,25.2642857143,41.8685714286,22.39,39.79,19.55,751.45,57,1,40,10.7,21.5102785733,21.5102785733 -60,0,25,38.7,24.39,36.8266666667,25.39,37.5,24.4633333333,37.26,22.79,70.6566666667,15.756,6.79,23.7257142857,36.4285714286,25.254,42.09,22.39,39.79,18.9666666667,751.5,58.6666666667,1,40,10.6,26.1846609181,26.1846609181 -60,0,24.89,38.6266666667,24.3233333333,36.9666666667,25.3233333333,37.5,24.39,37.26,22.79,68.6566666667,15.48,8.17,23.7,36.4,25.2257142857,42.2357142857,22.39,39.79,18.3833333333,751.55,60.3333333333,1,40,10.5,45.0572973234,45.0572973234 -70,10,24.89,38.6266666667,24.29,37.03,25.39,37.59,24.4266666667,37.36,22.73,65.13,15.216,9.66,23.7,36.4857142857,25.18,42.254,22.39,39.8842857143,17.8,751.6,62,1,40,10.4,19.6490465081,19.6490465081 -60,0,24.89,38.6566666667,24.23,37.09,25.39,37.59,24.4266666667,37.4333333333,22.79,61.6633333333,15.0285714286,11.0957142857,23.7,36.5,25.1,42.3214285714,22.39,39.96,17.4333333333,751.6166666667,63.6666666667,1,40,10.4333333333,11.613576964,11.613576964 -70,0,24.89,38.79,24.1,37.3266666667,25.39,37.59,24.39,37.5,22.79,59.8233333333,15,12.69,23.7,36.5957142857,25.1,42.536,22.39,40.0257142857,17.0666666667,751.6333333333,65.3333333333,1,40,10.4666666667,18.9553183736,18.9553183736 -50,0,24.89,38.79,24.0333333333,37.4666666667,25.39,37.59,24.39,37.5,22.7225,58.8175,15,12.54,23.7,36.94,25.1,42.7814285714,22.39,40.2,16.7,751.65,67,1,40,10.5,34.3243742594,34.3243742594 -50,0,24.89,38.8633333333,23.9633333333,37.6266666667,25.39,37.59,24.39,37.5,22.7,58.1333333333,15,12.516,23.7,37.1142857143,25.1,43.116,22.39,40.34,16.3333333333,751.6666666667,68.6666666667,1,40,10.5333333333,47.9092843714,47.9092843714 -50,0,24.8566666667,38.79,23.89,37.76,25.39,37.6633333333,24.39,37.4333333333,22.6666666667,57.5333333333,14.84625,12.68375,23.718,37.254,25.1,43.4971428571,22.39,40.42,15.9666666667,751.6833333333,70.3333333333,1,40,10.5666666667,28.0877066194,28.0877066194 -60,0,24.79,38.79,23.79,37.79,25.39,37.9,24.39,37.4666666667,22.6,56.9266666667,14.3957142857,12.9428571429,23.7257142857,37.3214285714,25.1,43.78,22.39,40.5642857143,15.6,751.7,72,1,40,10.6,44.8128764518,44.8128764518 -50,0,24.79,38.79,23.7,37.9333333333,25.4633333333,37.9666666667,24.39,37.4,22.6,56.4,14.256,13.934,23.7,37.4625,25.1,44.0371428571,22.39,40.79,15.2666666667,751.7,73.5,1,40,10.55,21.4790843776,21.4790843776 -50,0,24.79,38.79,23.7,38.06,25.5,38.1266666667,24.29,37.4,22.6,56,14.04,14.1657142857,23.7,37.5,25.1,44.156,22.39,40.9414285714,14.9333333333,751.7,75,1,40,10.5,20.8032620372,20.8032620372 -60,0,24.79,38.79,23.6,38.03,25.5,38.2225,24.29,37.4,22.5666666667,55.4,13.836,14.732,23.7,37.5514285714,25.1,44.2,22.39,41.054,14.6,751.7,76.5,1,40,10.45,26.2315897853,26.2315897853 -60,0,24.79,38.79,23.5333333333,38.1633333333,25.5,38.3633333333,24.29,37.4,22.5,55.0666666667,13.8,15.9828571429,23.7,37.612,25.1,44.29,22.39,41.1214285714,14.2666666667,751.7,78,1,40,10.4,2.7883465751,2.7883465751 -60,0,24.73,38.79,23.5,38.29,25.5333333333,38.4,24.29,37.4,22.5333333333,54.6,13.8,16.99,23.7,37.7,25.1285714286,44.3842857143,22.39,41.29,13.9333333333,751.7,79.5,1,40,10.35,32.1761844563,32.1761844563 -60,0,24.73,38.79,23.4266666667,38.23,25.6,38.4,24.29,37.4,22.5333333333,54.1933333333,13.8,17.18,23.7,37.79,25.1,44.4,22.39,41.3671428571,13.6,751.7,81,1,40,10.3,13.5834153974,13.5834153974 -60,0,24.7,38.8266666667,23.39,38.3266666667,25.6,38.4333333333,24.29,37.4,22.5,53.8333333333,13.696,17.174,23.7,37.8528571429,25.0285714286,44.4,22.39,41.518,13.5,751.7,81.3333333333,1.1666666667,40,10.2833333333,36.3465203205,36.3465203205 -60,0,24.7,38.9,23.3233333333,38.4,25.6,38.5,24.29,37.4,22.5,53.5,13.4214285714,17.7928571429,23.7,37.92,25,44.4,22.39,41.6685714286,13.4,751.7,81.6666666667,1.3333333333,40,10.2666666667,14.2940912629,14.2940912629 -50,0,24.7,38.9,23.29,38.53,25.6,38.5,24.29,37.29,22.5,53.1333333333,13.256,17.934,23.7,38.1214285714,24.9528571429,44.4,22.39,41.834,13.3,751.7,82,1.5,40,10.25,4.8986381968,4.8986381968 -60,0,24.7,38.9,23.23,38.53,25.6,38.5,24.29,37.29,22.5,52.86,13.07,18.8785714286,23.7,38.536,24.934,44.4,22.4528571429,42.0085714286,13.2,751.7,82.3333333333,1.6666666667,40,10.2333333333,22.6806843071,22.6806843071 -60,0,24.6333333333,38.8266666667,23.1666666667,38.59,25.6666666667,38.5,24.26,37.29,22.5,52.56,13.04,20.08,23.7,38.6814285714,24.89,44.4,22.4175,42.0675,13.1,751.7,82.6666666667,1.8333333333,40,10.2166666667,36.8410256808,36.8410256808 -60,0,24.6666666667,38.8633333333,23.1,38.6633333333,25.6666666667,38.56,24.26,37.3633333333,22.4266666667,52.36,12.9214285714,21.4214285714,23.7,38.938,24.89,44.5,22.456,42.21,13,751.7,83,2,40,10.2,13.0844452768,13.0844452768 -50,0,24.6,38.79,23.1,38.79,25.6333333333,38.59,24.23,37.3266666667,22.39,52.09,12.89,22.216,23.7,39.1942857143,24.8328571429,44.3957142857,22.5,42.3685714286,12.8833333333,751.7166666667,83.3333333333,1.8333333333,40,10.1333333333,8.474604378,8.474604378 -40,0,24.6,38.9,23.0333333333,38.79,25.7,38.59,24.23,37.3266666667,22.39,51.9633333333,12.89,23.1528571429,23.7,39.4,24.79,44.4,22.5,42.5,12.7666666667,751.7333333333,83.6666666667,1.6666666667,40,10.0666666667,41.4404482697,41.4404482697 -60,0,24.6,38.9,23,38.9333333333,25.7,38.7,24.23,37.3266666667,22.39,51.76,12.872,23.58,23.7128571429,39.4,24.79,44.4,22.5,42.5771428571,12.65,751.75,84,1.5,40,10,22.8106874973,22.8106874973 -50,0,24.6,38.9,22.9266666667,39.06,25.7,38.7,24.23,37.3266666667,22.39,51.7,12.8,23.9071428571,23.79,39.42,24.79,44.245,22.5,42.656,12.5333333333,751.7666666667,84.3333333333,1.3333333333,40,9.9333333333,8.9671655674,8.9671655674 -50,0,24.6,38.9,22.89,39.1266666667,25.7,38.7,24.2,37.29,22.39,51.495,12.756,25.276,23.79,39.5642857143,24.79,44.1528571429,22.5,42.7642857143,12.4166666667,751.7833333333,84.6666666667,1.1666666667,40,9.8666666667,4.033335275,4.033335275 -50,0,24.5666666667,38.9333333333,22.89,39.26,25.7,38.7,24.2,37.29,22.39,51.3633333333,12.7085714286,25.3514285714,23.79,39.554,24.7771428571,44.1371428571,22.5,42.834,12.3,751.8,85,1,40,9.8,3.3569290303,3.3569290303 -60,0,24.5,39,22.79,39.245,25.7,38.79,24.2,37.29,22.39,51.23,12.618,25.74,23.7642857143,39.5514285714,24.754,44.09,22.5,42.9571428571,12.25,751.7833333333,85.1666666667,1.1666666667,37.8333333333,9.7833333333,49.9721278902,49.9721278902 -50,0,24.5,39,22.79,39.4,25.6333333333,38.79,24.2,37.29,22.39,51.09,12.6514285714,26.7071428571,23.79,39.656,24.79,44.0257142857,22.5,43.076,12.2,751.7666666667,85.3333333333,1.3333333333,35.6666666667,9.7666666667,23.7778098439,23.7778098439 -60,0,24.5,39,22.73,39.4,25.7,38.79,24.2,37.4,22.39,51.03,12.69,26.934,23.79,39.6685714286,24.736,43.9,22.5,43.2257142857,12.15,751.75,85.5,1.5,33.5,9.75,30.7542222785,30.7542222785 -60,0,24.5,39,22.7,39.53,25.7,38.79,24.2,37.4,22.3233333333,50.9,12.8042857143,27.1142857143,23.79,39.59,24.79,43.754,22.5,43.4,12.1,751.7333333333,85.6666666667,1.6666666667,31.3333333333,9.7333333333,20.6138129812,20.6138129812 -50,0,24.5,39.06,22.7,39.59,25.7,38.79,24.2,37.4,22.39,50.8266666667,13.13375,27.17,23.79,39.7357142857,24.718,43.7,22.5,43.5528571429,12.05,751.7166666667,85.8333333333,1.8333333333,29.1666666667,9.7166666667,37.063078105,37.063078105 -60,0,24.4633333333,39.06,22.6666666667,39.7,25.7,38.79,24.2,37.4,22.3566666667,50.76,13.538,27.67,23.79,39.876,24.7,43.7,22.5,43.7,12,751.7,86,2,27,9.7,23.2961103786,23.2961103786 -50,0,24.4633333333,39.06,22.6,39.7,25.7,38.79,24.2,37.45,22.29,50.6266666667,13.8,27.174,23.79,40.0257142857,24.66,43.554,22.5714285714,43.7642857143,12.1333333333,751.7,85.8333333333,2,27.1666666667,9.8,23.562640883,23.562640883 -60,0,24.4633333333,39.09,22.6,39.8266666667,25.7,38.79,24.2,37.5,22.3233333333,50.56,13.8385714286,26.9371428571,23.79,40.236,24.6,43.5,22.5,43.94,12.2666666667,751.7,85.6666666667,2,27.3333333333,9.9,47.1634582384,47.1634582384 -60,0,24.39,39.09,22.6,39.9666666667,25.7,38.79,24.2,37.5,22.3233333333,50.5,13.89,27.14,23.79,40.4414285714,24.6,43.515,22.5142857143,44.0671428571,12.4,751.7,85.5,2,27.5,10,29.6868249774,29.6868249774 -50,0,24.39,39.09,22.6,40.03,25.7,38.79,24.1,37.53,22.29,50.4,14.0414285714,27.2814285714,23.79,40.5675,24.6,43.696,22.58,44.2,12.5333333333,751.7,85.3333333333,2,27.6666666667,10.1,25.7253106451,25.7253106451 -60,0,24.39,39.09,22.6,40.1633333333,25.7,38.8633333333,24.1,37.59,22.29,50.3266666667,14.154,27.836,23.79,40.63,24.6,43.79,22.5428571429,44.2642857143,12.6666666667,751.7,85.1666666667,2,27.8333333333,10.2,48.2448116876,48.2448116876 -50,0,24.39,39.1633333333,22.5,40.4,25.73,38.9,24.1,37.59,22.29,50.26,14.19,28.6828571429,23.79,40.8971428571,24.5666666667,43.9766666667,22.6,44.5,12.8,751.7,85,2,28,10.3,1.1405641912,1.1405641912 -40,0,24.39,39.3266666667,22.5,40.5266666667,25.73,38.9,24.1,37.6633333333,22.29,50.2,14.3,29.754,23.79,41.134,24.6,44.236,22.5714285714,44.64,12.9,751.6333333333,85.3333333333,1.8333333333,27.5,10.45,18.219982821,18.219982821 -50,0,24.39,39.4,22.5,40.6266666667,25.7,39,24.1,37.73,22.29,50.1633333333,14.3385714286,30.0142857143,23.79,41.3542857143,24.6,44.4333333333,22.6,44.74,13,751.5666666667,85.6666666667,1.6666666667,27,10.6,7.0704741869,7.0704741869 -50,0,24.39,39.5,22.5,40.7,25.7,39,24.1,37.79,22.29,50.09,14.278,30.22,23.81,41.518,24.6,44.638,22.6,44.9,13.1,751.5,86,1.5,26.5,10.75,14.3517252407,14.3517252407 -50,0,24.3233333333,39.56,22.5,40.8266666667,25.7,39.03,24.1,37.9,22.29,50.09,14.19,30.7257142857,23.8614285714,41.5257142857,24.6,44.812,22.6,45,13.2,751.4333333333,86.3333333333,1.3333333333,26,10.9,27.8706520214,27.8706520214 -60,0,24.29,39.6266666667,22.5,40.9,25.7,39.09,24.1,37.9,22.29,50.03,14.19,30.916,23.79,41.46,24.6,44.9,22.6,45.0671428571,13.3,751.3666666667,86.6666666667,1.1666666667,25.5,11.05,4.4770077104,4.4770077104 -60,0,24.29,39.7,22.5,41,25.7,39.09,24.1,38,22.29,50,14.2057142857,30.4785714286,23.79,41.4,24.6,44.79,22.6,45.218,13.4,751.3,87,1,25,11.2,0.1287650201,0.1287650201 -60,0,24.29,39.7,22.5,41,25.7,39.09,24.1,38,22.29,49.925,14.3,30.216,23.79,41.316,24.6,44.79,22.6,45.33125,13.4666666667,751.3166666667,85.8333333333,1,25.6666666667,11.0666666667,7.1600468596,7.1600468596 -50,0,24.29,39.76,22.4633333333,41.06,25.7,39,24.1,38.03,22.29,49.9,14.3,29.9428571429,23.79,41.2642857143,24.55,44.745,22.6,45.4714285714,13.5333333333,751.3333333333,84.6666666667,1,26.3333333333,10.9333333333,38.5127839749,38.5127839749 -60,0,24.2,39.7,22.4725,41.0675,25.76,39,24.1,38.09,22.29,49.9,14.19,30,23.79,41.29,24.5,44.7,22.6,45.59,13.6,751.35,83.5,1,27,10.8,12.1865171241,12.1865171241 -50,0,24.2,39.76,22.5,41.09,25.76,39,24.1,38.09,22.29,49.8266666667,14.1385714286,29.81,23.79,41.3671428571,24.5,44.678,22.6,45.6842857143,13.6666666667,751.3666666667,82.3333333333,1,27.6666666667,10.6666666667,23.4965666081,23.4965666081 -60,0,24.2,39.79,22.5,41.09,25.76,39,24.1,38.1633333333,22.29,49.79,14.04,29.874,23.83,41.536,24.5,44.6633333333,22.6,45.678,13.7333333333,751.3833333333,81.1666666667,1,28.3333333333,10.5333333333,20.1062472304,20.1062472304 -50,0,24.2,39.8633333333,22.5,41.03,25.79,39,24.1,38.2,22.29,49.79,14.0285714286,30.5828571429,23.8185714286,41.5257142857,24.5,44.59,22.6428571429,45.6371428571,13.8,751.4,80,1,29,10.4,18.2316799066,18.2316799066 -60,0,24.2,39.9,22.5333333333,41,25.79,39,24.0333333333,38.2,22.29,49.7,14.136,29.976,23.89,41.536,24.5,44.5225,22.64,45.736,13.7166666667,751.45,80.3333333333,1,29,10.3833333333,21.463519102,21.463519102 -50,0,24.2,39.9666666667,22.6,40.9333333333,25.79,38.95,24.0333333333,38.23,22.29,49.7,14.2528571429,29.2385714286,23.8471428571,41.5514285714,24.5,44.5,22.6142857143,45.7642857143,13.6333333333,751.5,80.6666666667,1,29,10.3666666667,48.0714000063,48.0714000063 -50,0,24.1666666667,40,22.6,40.9,25.79,38.9333333333,24.1,38.29,22.29,49.59,14.318,28.858,23.89,41.536,24.5,44.4333333333,22.6,45.79,13.55,751.55,81,1,29,10.35,25.6219320698,25.6219320698 -50,0,24.1,40,22.6,40.8266666667,25.79,38.86,24.1,38.3633333333,22.29,49.53,14.39,28.82875,23.89,41.5,24.5,44.4,22.6428571429,45.8371428571,13.4666666667,751.6,81.3333333333,1,29,10.3333333333,32.3698774795,32.3698774795 -40,0,24.1,40.03,22.6,40.79,25.79,38.9,24.0666666667,38.4,22.29,49.5,14.39,28.6285714286,23.89,41.4,24.4266666667,44.4,22.7,46,13.3833333333,751.65,81.6666666667,1,29,10.3166666667,34.5974093187,34.5974093187 -60,0,24.1,40.09,22.6666666667,40.79,25.79,38.9666666667,24.0666666667,38.4666666667,22.29,49.5,14.434,29.176,23.8471428571,41.3528571429,24.5,44.5,22.7,46,13.3,751.7,82,1,29,10.3,11.7546534515,11.7546534515 -40,0,24.1,40.09,22.7,40.76,25.79,39,24.0333333333,38.4633333333,22.29,49.4,14.6242857143,29.2242857143,23.83,41.376,24.5,44.5,22.7,46,13.7166666667,751.75,80.5,1,28.6666666667,10.4,9.5119287493,9.5119287493 -50,0,24.1,40.2,22.7,40.7,25.79,39,24.0333333333,38.59,22.29,49.4,15.058,29.836,23.8614285714,41.5642857143,24.4633333333,44.56,22.7,46.0257142857,14.1333333333,751.8,79,1,28.3333333333,10.5,24.8557342449,24.8557342449 -60,0,24.1,40.26,22.73,40.7,25.79,38.9333333333,24,38.59,22.29,49.3633333333,16.1257142857,31.4785714286,23.83,41.5,24.39,44.56,22.7,46.09,14.55,751.85,77.5,1,28,10.6,30.3829200449,30.3829200449 -90,0,24.1,40.86,22.79,40.7,25.79,38.792,24,38.59,22.29,49.29,17.656,24.774,23.8185714286,41.5,24.39,44.59,22.7,46.2266666667,14.9666666667,751.9,76,1,27.6666666667,10.7,47.4074246828,47.4074246828 -60,0,24.1,41.3333333333,23.3966666667,40.9,25.79,38.545,24.0333333333,38.6266666667,22.29,49.26,18.7371428571,18.0785714286,23.89,41.554,24.39,44.634,22.79,46.29,15.3833333333,751.95,74.5,1,27.3333333333,10.8,41.2754617864,41.2754617864 -70,0,24.1,41.6266666667,24.1233333333,40.2933333333,25.934,38.374,24.1,38.6266666667,22.29,49.2,19.736,10.834,23.89,41.5642857143,24.434,44.634,22.79,46.23,15.8,752,73,1,27,10.9,9.5524248783,9.5524248783 -60,10,24.1666666667,41.7,24.8,39.2333333333,26,38.43,24.1,38.73,22.29,49.09,20.7671428571,6.65,23.865,41.59,24.4083333333,44.545,22.8233333333,46.09,16.2833333333,752.0166666667,70.8333333333,1,29.1666666667,10.8666666667,33.8395328959,33.8395328959 -400,0,24.2,42.2566666667,25.3333333333,38.4933333333,26.1,38.29,24.1666666667,38.79,22.29,49.03,21.776,3.94,23.89,42.036,24.434,44.554,22.89,46.03,16.7666666667,752.0333333333,68.6666666667,1,31.3333333333,10.8333333333,18.0251178332,18.0251178332 -130,0,24.26,43.39,26.2333333333,37.4933333333,26.16,38.29,24.2,38.9333333333,22.29,49,22.3828571429,1.7,23.89,42.4614285714,24.39,44.536,22.89,45.7,17.25,752.05,66.5,1,33.5,10.8,10.5887275189,10.5887275189 -370,0,24.23,42.6933333333,26.76,36.36,26.2,38.29,24.26,39.1333333333,22.29,48.9333333333,22.994,1,23.89,42.916,24.39,44.6666666667,22.89,45.5,17.7333333333,752.0666666667,64.3333333333,1,35.6666666667,10.7666666667,22.1376403351,22.1376403351 -70,0,24.29,42.3,27.445,35.55,26.254,38.29,24.3233333333,39.2,22.3566666667,53.3333333333,23.6657142857,1,23.89,42.85,24.412,45.02,22.9266666667,45.1266666667,18.2166666667,752.0833333333,62.1666666667,1,37.8333333333,10.7333333333,6.3491301611,6.3491301611 -330,0,24.3233333333,42.06,27.9933333333,34.56,26.29,38.29,24.4633333333,39.26,22.7,67.1666666667,24.236,1,23.89,42.46,24.5,45.2,22.945,45.1725,18.7,752.1,60,1,40,10.7,45.996830042,45.996830042 -230,0,24.39,41.9333333333,28.4,34.1666666667,26.29,38.3083333333,24.5,39.29,22.8266666667,74.1666666667,24.4385714286,1,23.89,42.2857142857,24.5,45.35,22.9266666667,45.09,19.0166666667,752.1,58.8333333333,1.1666666667,40,10.6833333333,23.3681501937,23.3681501937 -60,0,24.39,41.79,28.8,33.4333333333,26.272,38.4,24.5666666667,39.43,23.39,80.4333333333,24.54,1,23.89,42.116,24.5,46.0933333333,23,44.9666666667,19.3333333333,752.1,57.6666666667,1.3333333333,40,10.6666666667,10.9624771052,10.9624771052 -80,0,24.39,41.79,29.1333333333,33.2266666667,26.2,38.4,24.6333333333,39.53,23.4633333333,80.2266666667,24.7257142857,1,23.89,41.8714285714,24.5666666667,46.7116666667,23,44.8266666667,19.65,752.1,56.5,1.5,40,10.65,37.660192058,37.660192058 -80,0,24.5,41.9,29.36,32.7233333333,26.2,38.4666666667,24.7225,39.7675,23.8266666667,85.7666666667,25.04,1,23.89,41.67,24.6,46.495,23.0333333333,44.8266666667,19.9666666667,752.1,55.3333333333,1.6666666667,40,10.6333333333,9.926581441,9.926581441 -80,0,24.5666666667,41.9,29.5,32.4633333333,26.2,38.5,24.8566666667,39.9666666667,23.5666666667,82.6333333333,25.3671428571,1,23.945,42.04,24.5,46.156,23.0333333333,44.7666666667,20.2833333333,752.1,54.1666666667,1.8333333333,40,10.6166666667,21.9711589976,21.9711589976 -410,0,24.6,42.06,29.6633333333,32.2233333333,26.2,38.51125,25,40.1633333333,23.3566666667,74.86,25.574,1,24,41.976,24.5,45.9475,23.1,44.7,20.6,752.1,53,2,40,10.6,4.9323627725,4.9323627725 -180,0,24.6666666667,42.06,29.8566666667,32.03,26.18,38.554,25.0666666667,40.03,23.23,65.9266666667,26.1114285714,1,24,41.5285714286,24.5,45.498,23.1,44.6266666667,21.0166666667,752.1,52,2,40,10.7,19.0286361962,19.0286361962 -50,0,24.7,42.36,29.8566666667,31.79,26.1714285714,38.59,25.1,39.76,23.1666666667,60.13,26.39,1,24,41.054,24.434,45.056,23.1,44.4666666667,21.4333333333,752.1,51,2,40,10.8,17.0553455711,17.0553455711 -60,0,24.7675,42.475,29.79,31.79,26.2,38.59,25.1,39.6266666667,23.1,57.39,26.5985714286,1,23.9371428571,40.6242857143,24.39,44.5616666667,23.1,44.4,21.85,752.1,50,2,40,10.9,21.5327611775,21.5327611775 -50,0,24.79,42.4,29.6666666667,31.8233333333,26.2,38.59,25.1333333333,39.3633333333,23.1,55,26.856,1,23.89,40.11,24.39,44.145,23.1,44.26,22.2666666667,752.1,49,2,40,11,25.8872286999,25.8872286999 -60,0,24.8233333333,42.26,29.5333333333,31.89,26.2,38.59,25.1333333333,39.1566666667,23.1,53.46,27.1285714286,1,23.9371428571,39.6942857143,24.39,43.634,23.1,44.1266666667,22.6833333333,752.1,48,2,40,11.1,22.7726472891,22.7726472891 -50,0,24.89,42.1266666667,29.4633333333,31.89,26.1571428571,38.59,25.1666666667,39,23,52.0566666667,27.434,1,23.89,39.32,24.35,43.174,23.1,43.93,23.1,752.1,47,2,40,11.2,21.9463556074,21.9463556074 -50,0,24.89,41.93,29.39,31.89,26.16,38.59,25.1666666667,38.86,23,50.9233333333,27.4371428571,1,23.89,38.9814285714,24.39,42.6725,23.1,43.73,23.15,752.0833333333,46.8333333333,2.1666666667,40,11.1833333333,28.9139177534,28.9139177534 -50,0,24.89,41.6566666667,29.26,31.89,26.1285714286,38.59,25.1666666667,38.6633333333,23,49.5566666667,27.432,1,23.89,38.69,24.35,42.274,23.1,43.56,23.2,752.0666666667,46.6666666667,2.3333333333,40,11.1666666667,21.9447989832,21.9447989832 -50,0,24.89,41.3633333333,29.1333333333,31.89,26.1,38.656,25.1,38.53,23.0666666667,48.83,27.6625,1,23.89,38.2842857143,24.3233333333,41.6066666667,23.1,43.4333333333,23.25,752.05,46.5,2.5,40,11.15,6.9061240298,6.9061240298 -60,0,24.89,41.23,28.9633333333,31.7233333333,26.1,38.6214285714,25.1,38.3633333333,23.0333333333,47.66,27.5285714286,1,23.89,37.9,24.29,41.245,23.1,43.2233333333,23.3,752.0333333333,46.3333333333,2.6666666667,40,11.1333333333,22.6016723667,22.6016723667 -40,0,25,40.93,28.89,31.39,26.1,38.634,25.1,38.23,23.1,47.0666666667,27.456,1,23.89,37.66,24.39,40.88,23.1,43.03,23.35,752.0166666667,46.1666666667,2.8333333333,40,11.1166666667,10.1509874454,10.1509874454 -60,0,25,40.6566666667,28.76,31.4266666667,26.1,38.6057142857,25.1666666667,38.09,23.05,45.895,27.3471428571,1,23.89,37.4333333333,24.39,40.6333333333,23.1,42.8633333333,23.4,752,46,3,40,11.1,7.816168759,7.816168759 -50,0,25,40.3633333333,28.5666666667,31.5,26.1,38.59,25.1,38.03,23.1,45.5,27.412,1,23.89,37.312,24.39,40.32,23.1,42.6566666667,23.6,751.9666666667,45.3333333333,3.1666666667,40,11.0666666667,13.3244340541,13.3244340541 -60,0,25,40.23,28.39,31.65,26.1,38.59,25.1333333333,38,23.1,45.2266666667,27.5714285714,1,23.89,37.23,24.4057142857,39.9714285714,23.1,42.495,23.8,751.9333333333,44.6666666667,3.3333333333,40,11.0333333333,3.122547816,3.122547816 -60,0,25.0666666667,40.06,28.26,31.8233333333,26.1,38.554,25.1333333333,37.9333333333,23.1,44.9,27.83,1,23.89,37.1371428571,24.5,39.9,23.1,42.3633333333,24,751.9,44,3.5,40,11,41.2786830217,41.2786830217 -60,0,25.0666666667,39.9333333333,28.2,31.89,26.1,38.5642857143,25.1,37.9,23.1,44.5,27.7528571429,1,23.89,37.072,24.5,39.92,23.1,42.29,24.2,751.8666666667,43.3333333333,3.6666666667,40,10.9666666667,15.9896499594,15.9896499594 -50,0,25.1,39.79,28,32.09,26.1,38.5,25.1,37.9,23.1,43.8333333333,27.66,1,23.89,36.98,24.5,39.8971428571,23.1,42.1633333333,24.4,751.8333333333,42.6666666667,3.8333333333,40,10.9333333333,8.9485337492,8.9485337492 -60,0,25.1,39.6566666667,27.9266666667,31.89,26.1,38.5,25.1,37.79,23.1666666667,43.3,27.6714285714,1,23.89,36.7666666667,24.5,39.58,23.1,42.09,24.6,751.8,42,4,40,10.9,12.4867864768,12.4867864768 -60,0,25.1,39.4666666667,27.76,31.8233333333,26.1,38.4,25.1,37.6633333333,23.2,42.3,27.456,1,23.89,36.5633333333,24.5857142857,39.2928571429,23.1,41.9666666667,24.7166666667,751.7833333333,40.6666666667,4,40,10.45,31.756945909,31.756945909 -50,0,25.1,39.4,27.6333333333,31.89,26.1,38.4,25.1,37.53,23.2,41.7666666667,27.2657142857,1,23.89,36.356,24.56,38.958,23.1,41.8266666667,24.8333333333,751.7666666667,39.3333333333,4,40,10,36.0855026636,36.0855026636 -60,0,25.1,39.2233333333,27.5666666667,31.89,26.1,38.4,25.1,37.5,23.2,41.49,27.31,1,23.89,36.09,24.6125,38.49625,23.1,41.56,24.95,751.75,38,4,40,9.55,23.8133718842,23.8133718842 -60,0,25.1,39.03,27.4266666667,31.9633333333,26.1714285714,38.4,25.1,37.5,23.26,41.0966666667,27.4214285714,1,23.89,35.954,24.7,38.0928571429,23.1,41.4333333333,25.0666666667,751.7333333333,36.6666666667,4,40,9.1,37.0723422267,37.0723422267 -50,0,25.1,38.845,27.39,31.9633333333,26.2,38.29,25.1,37.3633333333,23.29,40.2933333333,27.6,1,23.89,35.592,24.79,37.5,23.1,41.26,25.1833333333,751.7166666667,35.3333333333,4,40,8.65,40.5511523364,40.5511523364 -60,0,25.1,38.6633333333,27.3233333333,31.89,26.1857142857,38.29,25.1,37.23,23.3566666667,39.5666666667,27.9828571429,1,23.89,35.4,24.7642857143,37.3671428571,23.1,41.0666666667,25.3,751.7,34,4,40,8.2,11.8012723629,11.8012723629 -60,0,25.1,38.53,27.1666666667,31.9266666667,26.16,38.236,25.1,37.1633333333,23.39,39.1,28.14,1,23.934,35.196,24.772,37.134,23.1,40.79,25.2,751.6333333333,33.8333333333,4,40,8.05,8.2452050992,8.2452050992 -50,0,25.1,38.3633333333,27.1,32,26.2,38.2,25.1,37.09,23.39,38.7666666667,27.8957142857,1,23.934,34.96,24.7257142857,37.09,23.1,40.79,25.1,751.5666666667,33.6666666667,4,40,7.9,47.2156524658,47.2156524658 -60,0,25.1,38.23,27,32.09,26.14,38.09,25.1,36.9666666667,23.4266666667,38.46,27.736,1,24,34.7,24.7,36.96,23.1,40.76,25,751.5,33.5,4,40,7.75,32.7546026325,32.7546026325 -50,0,25.1,38.06,26.9266666667,31.7633333333,26.2,38.09,25.1,36.9,23.5,38,27.91,1,24,34.58,24.7514285714,36.7385714286,23.1,40.5666666667,24.9,751.4333333333,33.3333333333,4,40,7.6,29.2405752232,29.2405752232 -60,0,25.1,37.9333333333,26.8566666667,31.7,26.2,38.0385714286,25.1,36.79,23.5,37.7666666667,27.978,1,24,34.356,24.81,36.436,23.1,40.3633333333,24.8,751.3666666667,33.1666666667,4,40,7.45,16.9456187985,16.9456187985 -40,0,25.1666666667,37.76,26.79,31.7,26.2,38,25.1,36.73,23.5666666667,37.2266666667,27.9214285714,1,24,34.145,24.89,36.0957142857,23.1,40.23,24.7,751.3,33,4,40,7.3,30.123288196,30.123288196 -50,0,25.1666666667,37.7,26.7,31.7,26.1571428571,37.9714285714,25.0333333333,36.6633333333,23.6,36.8633333333,28.04,1,24,33.894,24.89,35.656,23.1,40,24.65,751.25,33,4,40,7.25,24.6278653969,24.6278653969 -50,0,25.1333333333,37.56,26.7,31.6333333333,26.2,37.94,25.0333333333,36.53,23.6975,36.0225,28.1142857143,1,24,33.656,24.89,35.59,23.1,39.86,24.6,751.2,33,4,40,7.2,45.6408839906,45.6408839906 -50,0,25.2,37.4333333333,26.6666666667,31.5666666667,26.2,37.9428571429,25.0666666667,36.4666666667,23.79,35.2266666667,28.218,1,24,33.47,24.89,35.596,23.1,39.645,24.55,751.15,33,4,40,7.15,47.0967364614,47.0967364614 -50,0,25.1333333333,37.26,26.5333333333,31.5666666667,26.2,37.9,25,36.3266666667,23.89,34.9,28.29,1,24,33.1942857143,24.89,35.3685714286,23.1,39.3633333333,24.5,751.1,33,4,40,7.1,36.1925307196,36.1925307196 -60,0,25.2,37.1266666667,26.5,31.55,26.2,37.8685714286,25.1,36.2,23.89,34.5,28.236,1,24.06,32.96,24.89,35.254,23.1,39.23,24.45,751.05,33,4,40,7.05,28.3970123506,28.3970123506 -60,0,25.2,37,26.39,31.6,26.2,37.754,25.0333333333,36.2,24,34.29,28.2,1,24.0428571429,32.8085714286,24.89,35,23.1,39.06,24.4,751,33,4,40,7,42.4199858331,42.4199858331 -50,0,25.1333333333,36.9333333333,26.39,31.6,26.2,37.7257142857,25,36.06,24.0666666667,34.03,28.15,1,24,32.516,24.89,34.52,23.1,38.9333333333,24.6833333333,750.9833333333,32.6666666667,4,40,7.0833333333,45.882972877,45.882972877 -60,0,25.1333333333,36.79,26.29,31.5,26.2,37.7,25,35.975,24.1,33.4,28.12,1,24.05,32.3666666667,24.9685714286,34.0957142857,23.1,38.6633333333,24.9666666667,750.9666666667,32.3333333333,4,40,7.1666666667,13.1236894638,13.1236894638 -50,0,25.1333333333,36.73,26.29,31.4266666667,26.2,37.7,25,35.9,24.1,33.26,27.87875,1,24.0833333333,32.1633333333,24.89,33.96,23.1,38.53,25.25,750.95,32,4,40,7.25,19.2145909066,19.2145909066 -60,0,25.1666666667,36.59,26.2,31.4266666667,26.2,37.59,25,35.79,24.1666666667,33.2333333333,27.62,1,24.1,31.95,24.8757142857,34.1,23.1,38.4,25.5333333333,750.9333333333,31.6666666667,4,40,7.3333333333,22.1269085188,22.1269085188 -50,0,25.1,36.53,26.2,31.5,26.2514285714,37.5771428571,25,35.73,24.1,33.1,27.094,1,24.1,31.812,24.83,34.236,23.1,38.3266666667,25.8166666667,750.9166666667,31.3333333333,4,40,7.4166666667,31.4911026973,31.4911026973 -70,0,25.1333333333,36.3633333333,26.1,31.39,26.236,37.5,25,35.6266666667,24.1,33.1,26.814,1,24.1,31.7,24.79,34.2957142857,23.1,38.2,26.1,750.9,31,4,40,7.5,14.1945865704,14.1945865704 -50,0,25.2,36.23,26.1,31.39,26.2,37.5,25,35.6266666667,24.1,32.8266666667,26.945,1,24.1,31.56,24.79,34.46,23.1,38.0666666667,26.0333333333,750.85,29.8333333333,4.5,40,6.85,35.4924559942,35.4924559942 -60,0,25.15,36.145,26.0666666667,31.39,26.236,37.4,25,35.56,24.23,32.46,27.1,1,24.1,31.456,24.7385714286,34.4,23.1,37.9666666667,25.9666666667,750.8,28.6666666667,5,40,6.2,1.9242340582,1.9242340582 -60,0,25.1,36,26,31.39,26.29,37.3842857143,25,35.4333333333,24.3566666667,31.9266666667,27.18,1,24.1,31.274,24.718,34.3,23.1,37.9,25.9,750.75,27.5,5.5,40,5.55,27.6359566255,27.6359566255 -60,0,25.1,35.9333333333,25.9633333333,31.2233333333,26.29,37.272,25,35.3633333333,24.39,31.0966666667,26.9283333333,1,24.0571428571,30.8428571429,24.7257142857,33.7957142857,23.1,37.9,25.8333333333,750.7,26.3333333333,6,40,4.9,46.1055244785,46.1055244785 -40,0,25.1,35.76,25.89,30.8233333333,26.29,37.2,25,35.23,24.39,30.89,26.6,1,24.06,30.558,24.7,33.656,23.1,37.8266666667,25.7666666667,750.65,25.1666666667,6.5,40,4.25,5.9102286235,5.9102286235 -60,0,25.1,35.6266666667,25.79,30.76,26.29,37.2,24.9633333333,35.1633333333,24.4266666667,30.6,26.5,1,24.05,30.3233333333,24.6428571429,33.3257142857,23.1,37.7,25.7,750.6,24,7,40,3.6,3.4846023424,3.4846023424 -40,0,25.1,35.5,25.79,30.7,26.29,37.2,24.89,35.03,24.4266666667,30.5333333333,26.4371428571,1,24.08,30.178,24.6,33.05625,23.1,37.6266666667,25.6,750.6,24.5,6.6666666667,38.1666666667,3.7666666667,29.6151329181,29.6151329181 -50,0,25.1,35.4333333333,25.76,30.7,26.29,37.178,24.89,34.9666666667,24.5,30.2933333333,26.34,1,24.04,29.958,24.6,33.09,23.1,37.56,25.5,750.6,25,6.3333333333,36.3333333333,3.9333333333,41.9468818465,41.9468818465 -40,0,25.1,35.3633333333,25.7,30.7,26.2514285714,37.0642857143,24.89,34.9,24.5,30.0333333333,26.29,1,24.0714285714,29.8328571429,24.6,33.1214285714,23.1,37.5,25.4,750.6,25.5,6,34.5,4.1,1.4804397593,1.4804397593 -50,0,25.1,35.29,25.7,30.6666666667,26.29,37.054,24.89,34.79,24.5,29.8566666667,26.33,1,24.1,29.79,24.6,33.2,23.1,37.4666666667,25.3,750.6,26,5.6666666667,32.6666666667,4.2666666667,23.6757789622,23.6757789622 -60,0,25.1,35.26,25.7,30.6666666667,26.2385714286,36.9142857143,24.89,34.73,24.55,29.815,26.39,1,24.1,29.79,24.6,33.1842857143,23.1,37.4,25.2,750.6,26.5,5.3333333333,30.8333333333,4.4333333333,47.3996415734,47.3996415734 -50,0,25.1,35.2,25.6,30.73,26.2,36.834,24.89,34.7,24.5,30.03,26.1616666667,1,24.1,29.79,24.54,33.134,23.1,37.3266666667,25.1,750.6,27,5,29,4.6,30.0893215113,30.0893215113 -60,0,25.0333333333,35.1633333333,25.6,30.79,26.2,36.7257142857,24.89,34.6266666667,24.4633333333,30.1666666667,25.656,1,24.1,29.79,24.5,33.1214285714,23.1,37.3266666667,24.8833333333,750.6,27.8333333333,4.8333333333,30.8333333333,4.8333333333,30.4125957657,30.4125957657 -50,0,25.0333333333,35.09,25.5333333333,30.8566666667,26.2,36.59,24.89,34.7,24.3233333333,30.2933333333,25.096,1,24.1,29.89,24.5,33.44,23.1,37.4,24.6666666667,750.6,28.6666666667,4.6666666667,32.6666666667,5.0666666667,13.3575321641,13.3575321641 -50,0,25,35.09,25.5,30.9266666667,26.2,36.5,24.9633333333,34.7,24.26,30.9566666667,24.4616666667,1,24.0714285714,29.9971428571,24.5,33.7528571429,23.1,37.5,24.45,750.6,29.5,4.5,34.5,5.3,32.1816777927,32.1816777927 -60,0,25,35.09,25.5,31,26.1428571429,36.5,24.89,34.645,24.2,31.8966666667,23.718,1,24,30.236,24.456,34.08,23.1,37.56,24.2333333333,750.6,30.3333333333,4.3333333333,36.3333333333,5.5333333333,10.9370445367,10.9370445367 -90,10,25,35.1566666667,25.39,31.36,26.1,36.44,24.89,34.79,24.2,33.3233333333,23.29,1,24.0142857143,30.6114285714,24.4214285714,34.4542857143,23.1,37.6266666667,24.0166666667,750.6,31.1666666667,4.1666666667,38.1666666667,5.7666666667,6.4755327185,6.4755327185 -70,0,25,35.6233333333,25.3233333333,32.0266666667,26.1166666667,36.4,24.89,34.8633333333,24.3266666667,43.1966666667,22.4657142857,1,24.025,31.0975,24.5,35.28,23.1,37.76,23.8,750.6,32,4,40,6,31.1874641222,31.1874641222 -90,0,25,36.03,25.1333333333,32.6666666667,26.2,36.4,24.89,34.9333333333,24.3566666667,43.6666666667,21.494,1,24.1,32.018,24.5,36.05,23.1,37.8666666667,23.3666666667,750.65,33.6666666667,4,40,6.3,49.4225071394,49.4225071394 -80,0,24.9266666667,36.2233333333,24.9266666667,33.3933333333,26.2,36.4285714286,24.89,35,24.23,39.8,20.6228571429,1,24.2,32.745,24.52,36.734,23.1,38.46,22.9333333333,750.7,35.3333333333,4,40,6.6,8.3799880929,8.3799880929 -80,10,24.89,36.59,24.76,33.6333333333,26.2,36.5,24.89,35.1266666667,24.1,38.46,19.774,1,24.2,33.1833333333,24.6,37.2928571429,23.1666666667,38.9633333333,22.5,750.75,37,4,40,6.9,23.5091769951,23.5091769951 -70,0,24.89,36.6175,24.6333333333,33.9,26.1857142857,36.5514285714,24.89,35.2,24.1,38,19.275,1,24.2,33.6475,24.6,37.874,23.1,39.1633333333,22.0666666667,750.8,38.6666666667,4,40,7.2,6.1883973191,6.1883973191 -80,0,24.8233333333,36.7,24.4633333333,34.5266666667,26.1,36.59,24.89,35.29,24,37.59,18.7783333333,1,24.2,34,24.6,38.2071428571,23.1333333333,39.4333333333,21.6333333333,750.85,40.3333333333,4,40,7.5,26.754773315,26.754773315 -70,0,24.79,37.1333333333,24.3233333333,35.2666666667,26.1,36.6685714286,24.89,35.29,24,37.7966666667,18.16,1,24.2,34.116,24.6,38.636,23.2,39.56,21.2,750.9,42,4,40,7.8,6.9418359897,6.9418359897 -80,0,24.79,37.5266666667,24.1666666667,35.8333333333,26.1,36.79,24.89,35.4,23.9633333333,38.2666666667,17.7971428571,1,24.2,34.2928571429,24.6285714286,39.5285714286,23.1333333333,39.79,21,750.9666666667,42.6666666667,4,40,7.8333333333,38.2212866913,38.2212866913 -60,0,24.76,37.4666666667,24.0333333333,35.6266666667,26.0571428571,36.8057142857,24.89,35.45,23.89,38.4,17.498,1,24.2,34.4,24.7,40.09,23.18,39.916,20.8,751.0333333333,43.3333333333,4,40,7.8666666667,0.2038535313,0.2038535313 -50,0,24.7,37.66,24,36.0666666667,26,36.9,24.89,35.53,23.89,38.3266666667,17.1971428571,1,24.1,34.67,24.7,40.112,23.1714285714,39.7285714286,20.6,751.1,44,4,40,7.9,21.9293318689,21.9293318689 -60,0,24.7,38.36,24,36.1266666667,26,36.9,24.89,35.6,23.89,38.4,16.79,1,24.1857142857,35.0971428571,24.7,40.276,23.14,39.29,20.4,751.1666666667,44.6666666667,4,40,7.9333333333,10.5846239952,10.5846239952 -60,0,24.7,38.6333333333,24.1,36.06,26,37.0266666667,24.89,35.67,23.8566666667,38.56,16.6414285714,1.4671428571,24.2,35.376,24.7,40.4285714286,23.1285714286,39.3985714286,20.2,751.2333333333,45.3333333333,4,40,7.9666666667,43.1029290776,43.1029290776 -60,0,24.6666666667,38.7233333333,24.1,36,26.1,37.2,24.89,35.74,23.79,38.56,16.5,2.054,24.2,35.5957142857,24.7,40.874,23.16,39.518,20,751.3,46,4,40,8,20.7898531226,20.7898531226 -60,0,24.6,38.4633333333,24,35.9,26.1,37.3333333333,24.89,35.81,23.79,38.7,16.4685714286,2.6471428571,24.2,35.94,24.7,41.14,23.1714285714,39.6214285714,19.45,751.35,48.5,3.6666666667,40,8.1833333333,12.5708246953,12.5708246953 -60,0,24.6,38.4,24,35.9666666667,26.1333333333,37.5,24.89,35.88,23.76,38.8266666667,16.39,3.856,24.2,36.1528571429,24.7,41.218,23.1375,39.8175,18.9,751.4,51,3.3333333333,40,8.3666666667,36.6398017504,36.6398017504 -60,0,24.6,38.4,24,36.1266666667,26.2,37.56,24.89,35.95,23.7,38.9666666667,16.2385714286,4.9671428571,24.2,36.456,24.6571428571,41.35,23.2,40,18.35,751.45,53.5,3,40,8.55,25.3296470619,25.3296470619 -50,0,24.6,38.4,23.9175,36.295,26.2,37.7,24.89,36,23.7,39.03,16.018,5.656,24.2,36.7957142857,24.6,41.59,23.2,40.1528571429,17.8,751.5,56,2.6666666667,40,8.7333333333,17.9706245079,17.9706245079 -60,0,24.6,38.4,23.89,36.4666666667,26.2,37.7,24.8233333333,35.9633333333,23.7,39.1633333333,15.8257142857,6.3714285714,24.2,37.036,24.6,41.6685714286,23.18,40.394,17.25,751.55,58.5,2.3333333333,40,8.9166666667,8.1376956543,8.1376956543 -50,0,24.6,38.4,23.79,36.53,26.29,37.79,24.84,36.045,23.7,39.2,15.756,6.554,24.2,37.2514285714,24.6,41.8285714286,23.1285714286,40.6942857143,16.7,751.6,61,2,40,9.1,41.4802150452,41.4802150452 -60,0,24.6,38.4,23.79,36.59,26.29,37.79,24.8566666667,36.06,23.7,39.2,15.6771428571,6.74,24.2,37.576,24.58,42.018,23.2,40.79,16.8,751.6166666667,60.3333333333,2.1666666667,40,9.0166666667,32.1026634891,32.1026634891 -50,0,24.5666666667,38.4,23.7,36.73,26.29,37.8633333333,24.79,36.045,23.6666666667,39.26,15.654,6.92,24.2,37.9714285714,24.5,42.1942857143,23.2,40.9771428571,16.9,751.6333333333,59.6666666667,2.3333333333,40,8.9333333333,44.4127401337,44.4127401337 -60,0,24.5666666667,38.4,23.7,36.8633333333,26.29,37.9,24.785,36.0475,23.6,39.26,15.69,7,24.236,38.17,24.5,42.356,23.2,41.296,17,751.65,59,2.5,40,8.85,24.1245426587,24.1245426587 -60,0,24.6,38.4,23.6,36.8266666667,26.29,37.9,24.78,36.05,23.6,39.29,15.636,7.54,24.2514285714,38.38,24.5,42.3371428571,23.2,41.5257142857,17.1,751.6666666667,58.3333333333,2.6666666667,40,8.7666666667,49.3607213954,49.3607213954 -40,0,24.5333333333,38.4,23.6,36.9666666667,26.29,38,24.775,36.0525,23.6,39.29,15.7528571429,7.6485714286,24.236,38.554,24.5,42.272,23.2,41.79,17.2,751.6833333333,57.6666666667,2.8333333333,40,8.6833333333,0.8384691901,0.8384691901 -60,0,24.5,38.4,23.5,37.09,26.29,38.06,24.77,36.055,23.5666666667,39.4,15.716,7.436,24.2,38.6214285714,24.5,42.2,23.2,41.9928571429,17.3,751.7,57,3,40,8.6,11.8422651314,11.8422651314 -50,0,24.5,38.4333333333,23.5,37.1633333333,26.29,38.03,24.765,36.0575,23.5,39.4,15.5285714286,7.8285714286,24.236,38.7,24.5,42.29,23.2,42.174,17.1166666667,751.7333333333,57.6666666667,2.8333333333,40,8.5833333333,28.1535048969,28.1535048969 -50,0,24.5,38.4333333333,23.39,37.23,26.29,38.09,24.76,36.06,23.5,39.5,15.456,8.04,24.2514285714,38.7,24.4528571429,42.29,23.2,42.3214285714,16.9333333333,751.7666666667,58.3333333333,2.6666666667,40,8.5666666667,14.1868337174,14.1868337174 -50,0,24.5,38.5,23.39,37.29,26.29,38.1266666667,24.755,36.0625,23.5,39.5,15.3771428571,8.5357142857,24.29,38.7,24.434,42.254,23.2,42.5,16.75,751.8,59,2.5,40,8.55,0.4654512624,0.4654512624 -60,0,24.5,38.5,23.39,37.4333333333,26.29,38.2,24.75,36.065,23.5,39.5,15.3,9.0633333333,24.29,38.7257142857,24.4214285714,42.2514285714,23.2,42.6528571429,16.5666666667,751.8333333333,59.6666666667,2.3333333333,40,8.5333333333,23.5649458366,23.5649458366 -60,0,24.5,38.5,23.3233333333,37.5,26.29,38.2,24.745,36.0675,23.5,39.5,15.3128571429,8.97,24.29,38.7,24.434,42.036,23.2,42.812,16.3833333333,751.8666666667,60.3333333333,2.1666666667,40,8.5166666667,4.6765396721,4.6765396721 -50,0,24.5,38.5,23.29,37.6266666667,26.29,38.2,24.74,36.07,23.5,39.59,15.4971428571,7.9285714286,24.29,38.71,24.4057142857,41.7971428571,23.2,42.9971428571,16.2,751.9,61,2,40,8.5,3.603659221,3.603659221 -70,0,24.5,38.5,23.23,37.6266666667,26.3233333333,38.2,24.735,36.0725,23.4266666667,39.59,15.6,7.674,24.29,38.59,24.39,41.516,23.29,43.334,16.1,751.8833333333,61.1666666667,2,40,8.4833333333,27.450317645,27.450317645 -50,0,24.5,38.5,23.2,37.6266666667,26.39,38.2,24.73,36.075,23.4633333333,39.56,15.5271428571,7.77,24.29,38.554,24.39,41.4,23.2385714286,43.47,16,751.8666666667,61.3333333333,2,40,8.4666666667,6.469583977,6.469583977 -60,0,24.4633333333,38.56,23.2,37.7,26.39,38.2,24.725,36.0775,23.39,39.5,15.39,7.012,24.29,38.5257142857,24.39,41.29,23.218,43.652,15.9,751.85,61.5,2,40,8.45,48.2613201602,48.2613201602 -60,0,24.39,38.5,23.2,37.73,26.39,38.2,24.72,36.08,23.39,39.5,15.3257142857,6.3685714286,24.29,38.536,24.39,41.1371428571,23.2514285714,43.8814285714,15.8,751.8333333333,61.6666666667,2,40,8.4333333333,33.9682447026,33.9682447026 -60,0,24.39,38.5,23.125,37.79,26.39,38.2,24.715,36.0825,23.39,39.5,15.19,6,24.29,38.4557142857,24.33,40.98,23.29,44.09,15.7,751.8166666667,61.8333333333,2,40,8.4166666667,8.2238021656,8.2238021656 -50,0,24.39,38.5,23.1,37.79,26.39,38.2,24.71,36.085,23.39,39.4333333333,15.0985714286,6.21,24.29,38.42,24.29,40.8685714286,23.29,44.1528571429,15.6,751.8,62,2,40,8.4,34.9196221912,34.9196221912 -60,0,24.39,38.5,23,37.7,26.39,38.2,24.705,36.0875,23.39,39.4,15,6.212,24.29,38.5642857143,24.35,40.656,23.29,44.218,15.55,751.7833333333,61.6666666667,2,40,8.2666666667,36.8753185496,36.8753185496 -60,0,24.39,38.4333333333,23,37.76,26.39,38.2,24.7,36.09,23.39,39.4,15,6.5257142857,24.29,38.554,24.29,40.5771428571,23.29,44.3214285714,15.5,751.7666666667,61.3333333333,2,40,8.1333333333,12.0549519081,12.0549519081 -60,0,24.39,38.4,23,37.79,26.39,38.23,24.7,36.1266666667,23.39,39.29,14.89,6.65,24.29,38.4428571429,24.29,40.5,23.29,44.5,15.45,751.75,61,2,40,8,31.3859989401,31.3859989401 -50,0,24.39,38.4,23,37.8633333333,26.39,38.2225,24.7,36.2,23.39,39.3633333333,14.89,6.81,24.29,38.378,24.29,40.5257142857,23.29,44.55625,15.4,751.7333333333,60.6666666667,2,40,7.8666666667,32.3249619338,32.3249619338 -50,0,24.39,38.4,22.89,37.9,26.39,38.2,24.6928571429,36.2,23.39,39.29,14.912,6.898,24.29,38.2257142857,24.29,40.4,23.29,44.6657142857,15.35,751.7166666667,60.3333333333,2,40,7.7333333333,9.6606407082,9.6606407082 -50,0,24.39,38.4,22.89,37.9,26.39,38.2,24.6857142857,36.2,23.3233333333,39.29,15,7.0042857143,24.29,38.2,24.29,40.3057142857,23.29,44.79,15.3,751.7,60,2,40,7.6,40.3289169772,40.3289169772 -60,0,24.39,38.4,22.8566666667,37.9,26.39,38.26,24.6785714286,36.2,23.29,39.29,15,7.476,24.29,38.2,24.29,40.29,23.29,44.8685714286,15.1833333333,751.7333333333,60.1666666667,2.1666666667,40,7.5166666667,1.1999361217,1.1999361217 -40,0,24.365,38.4,22.79,37.9,26.39,38.29,24.6714285714,36.2,23.29,39.29,14.8385714286,7.3828571429,24.29,38.178,24.27875,40.2425,23.33,45,15.0666666667,751.7666666667,60.3333333333,2.3333333333,40,7.4333333333,24.4329230511,24.4329230511 -50,0,24.29,38.4,22.79,38,26.39,38.29,24.6642857143,36.2,23.29,39.29,14.594,7.034,24.2642857143,38.09,24.2,40.09,23.3185714286,45.0514285714,14.95,751.8,60.5,2.5,40,7.35,1.5281224623,1.5281224623 -60,0,24.29,38.3266666667,22.79,38,26.3566666667,38.29,24.6571428571,36.2,23.29,39.29,14.2471428571,7.3042857143,24.29,38.44,24.2,40.09,23.33,45.112,14.8333333333,751.8333333333,60.6666666667,2.6666666667,40,7.2666666667,17.2030114336,17.2030114336 -60,0,24.29,38.4,22.76,38,26.29,38.29,24.65,36.2,23.29,39.29,14.154,7.876,24.29,38.4428571429,24.2,40.0385714286,23.29,45.2,14.7166666667,751.8666666667,60.8333333333,2.8333333333,40,7.1833333333,35.5220539961,35.5220539961 -50,0,24.29,38.29,22.7,38.06,26.29,38.29,24.6428571429,36.2,23.29,39.29,13.7242857143,8.02,24.272,38.42,24.2,39.98,23.39,45.29,14.6,751.9,61,3,40,7.1,18.8973872922,18.8973872922 -60,0,24.29,38.29,22.7,38.2,26.3566666667,38.29,24.6357142857,36.2,23.29,39.29,13.296,8.916,24.2642857143,38.5642857143,24.2,39.8685714286,23.3185714286,45.3842857143,14.3,751.9,62.8333333333,2.8333333333,40,7.2166666667,4.7746761702,4.7746761702 -60,0,24.29,38.29,22.7,38.2,26.3233333333,38.26,24.6285714286,36.2,23.23,39.23,12.9971428571,10.1971428571,24.29,38.59,24.2,39.856,23.33,45.42,14,751.9,64.6666666667,2.6666666667,40,7.3333333333,45.4779927037,45.4779927037 -50,0,24.29,38.29,22.6,38.23,26.39,38.26,24.6214285714,36.2,23.2,39.2,12.654,11.39,24.29,38.5771428571,24.1,39.79,23.3185714286,45.5257142857,13.7,751.9,66.5,2.5,40,7.45,0.0135387527,0.0135387527 -60,0,24.26,38.26,22.6,38.29,26.39,38.2,24.6142857143,36.2,23.2,39.2,12.39375,12.72,24.29,38.554,24.1,39.7675,23.33,45.59,13.4,751.9,68.3333333333,2.3333333333,40,7.5666666667,19.0615518251,19.0615518251 -60,0,24.2,38.26,22.6,38.4,26.39,38.26,24.6071428571,36.2,23.2,39.23,11.98,14.04,24.29,38.5257142857,24.1,39.76,23.3328571429,45.59,13.1,751.9,70.1666666667,2.1666666667,40,7.6833333333,30.6286212988,30.6286212988 -90,0,24.2,38.23,22.5333333333,38.4666666667,26.39,38.29,24.6,36.2,23.2,39.3175,11.716,15.154,24.29,38.4,24.1,39.812,23.29,45.656,12.8,751.9,72,2,40,7.8,27.1866145893,27.1866145893 -70,0,24.2,38.7633333333,22.5,38.69,26.3233333333,38.29,24.6,36.2,23.2,39.4,11.5714285714,16.8471428571,24.29,38.4428571429,24.1,39.9,23.29,45.7,12.3666666667,751.9666666667,74.1666666667,1.8333333333,40,7.8,44.5721636759,44.5721636759 -50,10,24.23,39.1933333333,22.5,39.5666666667,26.26,37.93,24.6,36.3,23.1,39.5666666667,11.354,17.86,24.29,38.44,24.05,39.9166666667,23.39,45.9,11.9333333333,752.0333333333,76.3333333333,1.6666666667,40,7.8,21.1034509586,21.1034509586 -60,10,24.29,39.4666666667,22.5,39.76,26.1333333333,37.73,24.6,36.4,23.1,39.9,11.2371428571,19.0514285714,24.29,38.2957142857,24.02,39.92,23.3757142857,45.8242857143,11.5,752.1,78.5,1.5,40,7.8,39.4183037221,39.4183037221 -70,0,24.29,39.4333333333,22.5,39.9,26,37.56,24.6,36.5,23.1,40.36,11.19,20.43,24.2,37.975,24,39.9,23.35,45.48,11.0666666667,752.1666666667,80.6666666667,1.3333333333,40,7.8,3.3812963986,3.3812963986 -50,0,24.3566666667,39.5,22.5,39.9666666667,25.9266666667,37.1666666667,24.6,36.4,23.1,40.6933333333,11.19,22.3185714286,24.2,37.79,24,40.08,23.39,44.8242857143,10.6333333333,752.2333333333,82.8333333333,1.1666666667,40,7.8,48.6620577984,48.6620577984 -60,10,24.39,39.5,22.5,40.03,25.89,37,24.55,36.45,23.0666666667,40.9333333333,11.19,23.14,24.2,37.7642857143,24,40.334,23.39,44.32,10.2,752.3,85,1,40,7.8,10.0052848458,10.0052848458 -40,0,24.39,39.5,22.5,40.09,25.79,37,24.5,36.5,23,41.1333333333,11.3042857143,23.5528571429,24.218,37.916,24,40.4333333333,23.39,43.9685714286,10.5166666667,752.3333333333,84,1.1666666667,38.1666666667,7.9166666667,10.2423176635,10.2423176635 -70,0,24.39,39.4,22.5333333333,39.9666666667,25.79,36.86,24.5666666667,36.53,23,41.4333333333,11.476,24.016,24.2642857143,37.8971428571,24,40.536,23.33,43.596,10.8333333333,752.3666666667,83,1.3333333333,36.3333333333,8.0333333333,2.4538819329,2.4538819329 -50,0,24.39,39.4,22.6,39.9,25.79,36.79,24.5,36.59,23,41.6333333333,11.7685714286,24.8242857143,24.2,37.554,24,40.5,23.3328571429,43.2957142857,11.15,752.4,82,1.5,34.5,8.15,11.7581865517,11.7581865517 -60,0,24.34,39.45,22.6333333333,39.8266666667,25.79,36.79,24.5,36.7,23,41.73,12.234,25.374,24.2,37.3,24,40.3975,23.35,43.054,11.4666666667,752.4333333333,81,1.6666666667,32.6666666667,8.2666666667,19.2448762129,19.2448762129 -50,0,24.29,39.4666666667,22.7,39.7666666667,25.89,36.79,24.5,36.7,23,41.79,12.8128571429,25.3528571429,24.2,37.116,24,40.2225,23.29,42.88,11.7833333333,752.4666666667,80,1.8333333333,30.8333333333,8.3833333333,33.2899221918,33.2899221918 -60,10,24.29,39.4,22.7,39.59,25.89,36.8633333333,24.5,36.79,23,41.9,13.356,25.02,24.2,36.9714285714,23.89,40.2,23.29,42.7233333333,12.1,752.5,79,2,29,8.5,43.9246627386,43.9246627386 -50,0,24.29,39.4,22.76,39.53,25.89,36.9,24.5,36.79,23,41.9666666667,14.0285714286,24.6571428571,24.1,36.79,23.89,40.2,23.3042857143,42.4542857143,12.5833333333,752.5,77.5,2,30.8333333333,8.6666666667,39.4148130552,39.4148130552 -60,0,24.29,39.3266666667,22.89,39.4666666667,25.9633333333,37.16,24.5,36.9333333333,23,41.9,15.09,25.56,24.1,36.7771428571,23.89,40.2,23.3471428571,42.29,13.0666666667,752.5,76,2,32.6666666667,8.8333333333,35.2529636235,35.2529636235 -60,0,24.29,39.29,22.9633333333,39.3266666667,26,37.29,24.5,37,23,41.9,16.3528571429,20.6071428571,24.1,36.7,23.89,40.2,23.29,42.29,13.55,752.5,74.5,2,34.5,9,1.9717556308,1.9717556308 -60,0,24.23,39.23,23.0966666667,39.2666666667,26,37.29,24.5,37.03,23,41.9,17.598,13.58,24.0571428571,36.6528571429,23.89,40.2,23.3471428571,42.1757142857,14.0333333333,752.5,73,2,36.3333333333,9.1666666667,22.8394878446,22.8394878446 -50,0,24.23,39.2,23.6233333333,39.0666666667,26.1,37.26,24.5,37.09,23,41.9,18.6657142857,6.0571428571,24.04,36.44,23.89,40.156,23.39,42.045,14.5166666667,752.5,71.5,2,38.1666666667,9.3333333333,10.9398570494,10.9398570494 -50,0,24.23,39.1266666667,24.3333333333,38.1966666667,26.1666666667,37.2,24.5,37.2,23,41.9,19.374,1.9,24.0428571429,36.3385714286,23.89,40.0385714286,23.39,41.7233333333,15,752.5,70,2,40,9.5,39.3003849895,39.3003849895 -70,10,24.26,39.09,24.7266666667,37.4566666667,26.26,37.09,24.55,37.245,23,41.9666666667,19.8571428571,1.1428571429,24,36.116,23.89,39.98,23.39,41.59,15.35,752.55,68.5,2.1666666667,40,9.5,12.2055845684,12.2055845684 -50,0,24.26,39.09,25.0966666667,36.8633333333,26.2,37.09,24.5666666667,37.2955555556,23,42,20.18,1,24,36,23.8471428571,39.8528571429,23.4633333333,41.3333333333,15.7,752.6,67,2.3333333333,40,9.5,8.9153273031,8.9153273031 -70,0,24.29,39.2233333333,25.4975,36.14,26.26,37.03,24.5833333333,37.3461111111,23,42.0225,20.5714285714,1,24,35.856,23.83,39.834,23.4633333333,41.1333333333,16.05,752.65,65.5,2.5,40,9.5,38.9067069045,38.9067069045 -60,0,24.29,39.09,25.7,35.53,26.2,37.03,24.6,37.3966666667,23,42.03,20.815,1,24,35.6757142857,23.8042857143,39.7285714286,23.5,41.06,16.4,752.7,64,2.6666666667,40,9.5,21.9465672504,21.9465672504 -70,0,24.29,39.06,25.79,35.1633333333,26.1666666667,37,24.6166666667,37.4472222222,23,42,20.934,1,24,35.572,23.79,39.678,23.5,41,16.75,752.75,62.5,2.8333333333,40,9.5,48.4948396333,48.4948396333 -70,0,24.29,38.9333333333,25.8566666667,35.03,26.1,37.06,24.6333333333,37.4977777778,23,41.9333333333,21.2385714286,1,24,35.5,23.79,39.59,23.5,40.76,17.1,752.8,61,3,40,9.5,2.1766054677,2.1766054677 -70,0,24.39,38.9,26.4266666667,34.8,26.1,37,24.65,37.5483333333,23,41.79,21.7,1,24,35.5,23.79,39.59,23.5,40.7,17.45,752.8,59.6666666667,3.1666666667,40,9.4833333333,6.4571698313,6.4571698313 -70,0,24.39,38.9,26.9,34.3266666667,26.1,37,24.6666666667,37.5988888889,23,41.73,22.2642857143,1,24,35.5514285714,23.79,39.6971428571,23.5,40.79,17.8,752.8,58.3333333333,3.3333333333,40,9.4666666667,30.5181310396,30.5181310396 -70,0,24.39,38.9,27.1,33.8633333333,26.1,37,24.6833333333,37.6494444444,23,41.6633333333,22.54,1,24,35.612,23.79,39.79,23.5,40.79,18.15,752.8,57,3.5,40,9.45,16.1358482903,16.1358482903 -60,10,24.4633333333,38.9666666667,27.1666666667,33.73,26.1,37.03,24.7,37.7,23,41.59,22.8828571429,1,24,35.7642857143,23.79,39.8685714286,23.5,40.73,18.5,752.8,55.6666666667,3.6666666667,40,9.4333333333,1.8911919906,1.8911919906 -60,0,24.5,39.09,27.2,33.59,26.1,37.09,24.7,37.76,23,41.59,23.14,1,24,35.9,23.79,40.036,23.5,40.76,18.85,752.8,54.3333333333,3.8333333333,40,9.4166666667,39.7856294527,39.7856294527 -60,0,24.5,39.1725,27.26,33.53,26.1,37.2,24.79,37.9,23,41.59,23.5571428571,1,24,35.9985714286,23.79,40.08,23.5,40.7,19.2,752.8,53,4,40,9.4,19.6119136759,19.6119136759 -60,0,24.5,39.2,27.46,33.1933333333,26.1,37.2,24.79,37.9,23.0333333333,41.6566666667,24.29,1,24,36.145,23.79,40.2,23.5,40.7,19.4333333333,752.8,52.1666666667,3.8333333333,40,9.35,25.831977604,25.831977604 -50,0,24.5333333333,39.2,27.6,33,26.1333333333,37.2,24.79,38,23.1,41.79,24.4814285714,1,24,36.254,23.79,40.2642857143,23.5,40.76,19.6666666667,752.8,51.3333333333,3.6666666667,40,9.3,41.7047413299,41.7047413299 -60,0,24.6,39.26,27.7,32.9,26.2,37.26,24.79,38,23.0333333333,41.8266666667,24.738,1,24,36.3214285714,23.79,40.4,23.5,40.845,19.9,752.8,50.5,3.5,40,9.25,25.8170564426,25.8170564426 -50,0,24.6,39.29,27.7,32.8266666667,26.2,37.23,24.79,38,23.1,41.9666666667,25.0514285714,1,24,36.5,23.79,40.4985714286,23.5,41,20.1333333333,752.8,49.6666666667,3.3333333333,40,9.2,5.1839748048,5.1839748048 -50,0,24.6,39.3633333333,27.8233333333,32.6633333333,26.2,37.29,24.79,38.06,23.1,42.03,25.83,1,24,36.59,23.79,40.59,23.5,41,20.3666666667,752.8,48.8333333333,3.1666666667,40,9.15,9.7856905311,9.7856905311 -50,0,24.6333333333,39.4333333333,27.9633333333,32.7966666667,26.2,37.3266666667,24.79,38.09,23.1,42.09,25.8371428571,1,24,36.59,23.79,40.6685714286,23.5,41,20.6,752.8,48,3,40,9.1,33.1700967858,33.1700967858 -50,0,24.7,39.5,27.89,32.5,26.2,37.4,24.79,38.09,23.1,42.2,25.454,1,24,36.6725,23.79,40.79,23.5,41,20.85,752.8,47.6666666667,2.8333333333,40,9.2166666667,29.383736616,29.383736616 -60,0,24.73,39.5,27.89,32.56,26.2,37.5,24.79,38.09,23.1,42.2,25.3614285714,1,24,36.73,23.79,40.9414285714,23.5,41,21.1,752.8,47.3333333333,2.6666666667,40,9.3333333333,27.6085234131,27.6085234131 -60,20,24.79,39.56,27.89,32.53,26.2,37.5,24.79,38.1633333333,23.1,42.29,25.35,1,24,36.856,23.79,41.076,23.5,41,21.35,752.8,47,2.5,40,9.45,9.4590605702,9.4590605702 -80,20,24.79,39.6266666667,27.8233333333,32.59,26.2,37.5,24.8233333333,38.2666666667,23.1,42.3633333333,25.1557142857,1,24,36.975,23.79,41.21125,23.5,41,21.6,752.8,46.6666666667,2.3333333333,40,9.5666666667,47.6749654044,47.6749654044 -70,10,24.79,39.7,27.76,32.79,26.2,37.56,24.89,38.4,23.1,42.45,25.12,1,24,37,23.79,41.29,23.5,41,21.85,752.8,46.3333333333,2.1666666667,40,9.6833333333,13.281613728,13.281613728 -70,0,24.8233333333,39.7666666667,27.7,32.8725,26.2,37.59,24.9266666667,38.4633333333,23.1333333333,42.53,25.2642857143,1,24,37,23.85,41.356,23.5428571429,41,22.1,752.8,46,2,40,9.8,36.314226978,36.314226978 -60,0,24.89,39.9,27.7,32.9,26.26,37.59,24.9633333333,38.5266666667,23.1333333333,42.59,25.6,1,24,37,23.8328571429,41.3957142857,23.5,41,22.1,752.8166666667,46.3333333333,2.1666666667,40,9.9333333333,38.1545651471,38.1545651471 -230,0,24.9266666667,39.9333333333,27.6666666667,33,26.29,37.7,25,38.59,23.1333333333,42.6266666667,25.7514285714,1,24,37.1266666667,23.79,41.42,23.5714285714,41.0514285714,22.1,752.8333333333,46.6666666667,2.3333333333,40,10.0666666667,42.6870502066,42.6870502066 -190,30,25,40.1333333333,27.6666666667,33.06,26.29,37.7,25,38.59,23.2,42.7,25.952,1,24,37.245,23.8185714286,41.5571428571,23.54,41.09,22.1,752.85,47,2.5,40,10.2,7.0800100337,7.0800100337 -180,20,25,40.09,27.6,33.23,26.29,37.7,25.025,38.7,23.2,42.79,26.3242857143,1,24,37.3175,23.79,41.7,23.5714285714,41.1685714286,22.1,752.8666666667,47.3333333333,2.6666666667,40,10.3333333333,14.7495854879,14.7495854879 -80,20,25,40.09,27.6,33.3633333333,26.29,37.7,25.05,38.81,23.2,42.79,27.014,1,24,37.4,23.8471428571,41.8142857143,23.54,41.2,22.1,752.8833333333,47.6666666667,2.8333333333,40,10.4666666667,32.7770675067,32.7770675067 -80,10,25,40.2666666667,27.5666666667,33.4333333333,26.33,37.7,25.075,38.92,23.2,42.8266666667,27.5528571429,1,24.0142857143,37.5528571429,23.85,41.938,23.6,41.29,22.1,752.9,48,3,40,10.6,5.0646463642,5.0646463642 -60,0,25,40.4,27.5,33.56,26.39,37.745,25.1,39.03,23.2,42.9,27.696,1,24.1,37.7,23.89,42.09,23.6,41.356,22.2166666667,752.8833333333,47.5,3,40,10.55,47.119448171,47.119448171 -360,0,25.1,40.345,27.39,33.7666666667,26.39,37.79,25.1,39.09,23.26,43,27.4528571429,1,24.0333333333,37.73,23.89,42.2,23.6,41.4,22.3333333333,752.8666666667,47,3,40,10.5,24.1441205842,24.1441205842 -370,0,25.1,40.4,27.3233333333,33.9666666667,26.39,37.73,25.1,39.09,23.26,43.06,27.56,1,24.1,37.8633333333,23.89,42.2514285714,23.6,41.5,22.45,752.85,46.5,3,40,10.45,24.5382946567,24.5382946567 -110,0,25.1,40.5266666667,27.29,34.09,26.39,37.79,25.1666666667,39.09,23.29,43.2,27.525,1,24.1,37.9,23.89,42.29,23.6,41.5,22.5666666667,752.8333333333,46,3,40,10.4,12.7256851993,12.7256851993 -60,0,25.1,40.59,27.23,34.1633333333,26.39,37.79,25.1,39.09,23.29,43.2,27.24,1,24.1,37.795,23.89,42.29,23.6,41.5,22.6833333333,752.8166666667,45.5,3,40,10.35,35.7352462481,35.7352462481 -70,0,25.1,40.59,27.1,34.3266666667,26.39,37.79,25.1,39.03,23.29,43.29,27.06,1,24.1,37.7,23.89,42.2,23.6,41.5,22.8,752.8,45,3,40,10.3,8.9465192519,8.9465192519 -240,0,25.1,40.4666666667,27.0333333333,34.4666666667,26.39,37.79,25.1666666667,39,23.29,43.29,27.0714285714,1,24.1,37.59,23.89,42.1371428571,23.6,41.4,22.75,752.8,45.6666666667,3,40,10.4666666667,9.6665770863,9.6665770863 -60,0,25.1666666667,40.3266666667,26.89,34.1266666667,26.35,37.754,25.1,38.9333333333,23.29,43.29,26.776,1,24.1,37.53,23.89,42.072,23.6,41.3842857143,22.7,752.8,46.3333333333,3,40,10.6333333333,49.2782032699,49.2782032699 -50,0,25.23,40.3666666667,26.89,34.2,26.254,37.7,25.1,38.8633333333,23.29,43.23,27.07,1,24.1666666667,37.4666666667,23.89,42,23.6,41.236,22.65,752.8,47,3,40,10.8,25.8908624528,25.8908624528 -60,0,25.29,40.3666666667,26.8566666667,34.23,26.29,37.7,25.1,38.79,23.3233333333,43.29,26.998,1,24.1666666667,37.4,23.89,41.9,23.6,41.2642857143,22.6,752.8,47.6666666667,3,40,10.9666666667,36.9501607725,36.9501607725 -50,0,25.29,40.2,26.79,34.3633333333,26.29,37.7,25.1,38.79,23.39,43.23,26.8928571429,1,24.1666666667,37.3633333333,23.9057142857,41.8371428571,23.6,41.23375,22.55,752.8,48.3333333333,3,40,11.1333333333,45.5157902907,45.5157902907 -60,0,25.29,40.1266666667,26.76,34.4333333333,26.29,37.678,25.1,38.79,23.39,43.2,27.1,1,24.1666666667,37.29,23.956,41.79,23.6,41.156,22.5,752.8,49,3,40,11.3,33.3227876108,33.3227876108 -80,0,25.29,39.9,26.76,34.5,26.245,37.59,25.1166666667,39.0583333333,23.39,43.2,27.0428571429,1,24.2,37.2,24,41.79,23.6,41.0385714286,22.45,752.75,49.1666666667,3,40,11.2666666667,10.6466640602,10.6466640602 -60,0,25.29,39.6266666667,26.7,34.59,26.275,37.59,25.1333333333,39.3266666667,23.39,43.2,27.18,1,24.2,37.2,24,41.7,23.6,41,22.4,752.7,49.3333333333,3,40,11.2333333333,29.473810026,29.473810026 -80,0,25.29,39.56,26.7,34.5,26.29,37.634,25.2,39.5266666667,23.4266666667,43.09,27.6142857143,1,24.2,37.09,24,41.7,23.6,41,22.35,752.65,49.5,3,40,11.2,41.5653592907,41.5653592907 -70,20,25.29,39.4333333333,26.7,34.4333333333,26.39,37.7,25.2,39.73,23.5,43.09,27.64,1,24.2,37.09,24,41.678,23.6,41,22.3,752.6,49.6666666667,3,40,11.1666666667,42.4866362475,42.4866362475 -70,20,25.29,39.3633333333,26.6666666667,34.4333333333,26.39,37.7,25.26,39.79,23.4266666667,42.9333333333,27.7385714286,1,24.2,37,24,41.6214285714,23.6,41,22.25,752.55,49.8333333333,3,40,11.1333333333,21.1737705511,21.1737705511 -70,30,25.29,39.3633333333,26.6,34.5,26.39,37.754,25.29,39.7,23.5,43,27.578,1,24.2,37.06,24,41.634,23.6,41,22.2,752.5,50,3,40,11.1,19.1559621133,19.1559621133 -70,20,25.29,39.26,26.5666666667,34.59,26.39,37.79,25.29,39.5666666667,23.5,42.9,27.2257142857,1,24.2,37.06,24,41.6214285714,23.6,41,22.45,752.4833333333,48.8333333333,3,40,10.9666666667,25.7994209882,25.7994209882 -70,20,25.3566666667,39.1266666667,26.5,34.6633333333,26.39,37.736,25.34,39.345,23.5,42.8266666667,27.236,1,24.2,37,24,41.6175,23.6,41,22.7,752.4666666667,47.6666666667,3,40,10.8333333333,23.4400242916,23.4400242916 -70,20,25.3233333333,39.06,26.5,34.7,26.4842857143,37.7771428571,25.39,39.26,23.5,42.79,27.1557142857,1,24.2,36.9666666667,24,41.572,23.6,41,22.95,752.45,46.5,3,40,10.7,15.393161762,15.393161762 -100,20,25.39,38.9333333333,26.5,34.7,26.5,37.718,25.4633333333,39.1266666667,23.5,42.73,27.178,1,24.2,36.9,24,41.6214285714,23.6,40.98,23.2,752.4333333333,45.3333333333,3,40,10.5666666667,11.49700674,11.49700674 -90,20,25.39,39.045,26.39,34.73,26.5,37.7225,25.5,39,23.5,42.7,27.0657142857,1,24.29,37,24.14,42.28,23.6,40.9,23.45,752.4166666667,44.1666666667,3,40,10.4333333333,20.7829751307,20.7829751307 -90,30,25.39,39.1266666667,26.39,34.8633333333,26.5,37.7642857143,25.5666666667,39,23.5,42.7,26.314,1,24.23,36.9333333333,24.2514285714,42.7142857143,23.6,40.856,23.7,752.4,43,3,40,10.3,37.3473333311,37.3473333311 -90,20,25.39,39.2,26.26,35.1266666667,26.5,37.79,25.6333333333,39.03,23.5,42.7,25.8957142857,1,24.245,36.95,24.31,42.978,23.6,40.8057142857,23.5833333333,752.3666666667,42.8333333333,3,40,10.1166666667,0.3112187376,0.3112187376 -170,20,25.39,39.2,26.2,35.26,26.5,37.79,25.7,39.03,23.5,42.7,25.66,1,24.2,36.9,24.39,43.1685714286,23.6,40.856,23.4666666667,752.3333333333,42.6666666667,3,40,9.9333333333,20.3871923033,20.3871923033 -410,20,25.39,39.3333333333,26.1666666667,35.4,26.5,37.79,25.7,38.8333333333,23.5,42.7,25.6714285714,1,24.2,36.9666666667,24.5,43.44,23.6,40.9,23.35,752.3,42.5,3,40,9.75,49.39473907,49.39473907 -540,20,25.39,40.2566666667,26.1,35.4666666667,26.4685714286,37.79,25.7,38.7,23.5,42.76,25.416,1,24.2,37,24.5571428571,43.4142857143,23.6,40.856,23.2333333333,752.2666666667,42.3333333333,3,40,9.5666666667,11.2199457129,11.2199457129 -310,20,25.4633333333,41.9233333333,26.1,35.9933333333,26.39,37.834,25.6666666667,38.9633333333,23.5,42.8266666667,24.9928571429,1,24.26,36.9333333333,24.62,43.5,23.6,40.79,23.1166666667,752.2333333333,42.1666666667,3,40,9.3833333333,38.5445536813,38.5445536813 -110,10,25.5,43.3933333333,26.1,36.86,26.39,38.0371428571,25.6666666667,39.3633333333,23.5,43.0266666667,24.732,1,24.2,36.9,24.7,43.9714285714,23.6,40.79,23,752.2,42,3,40,9.2,31.2401345582,31.2401345582 -110,10,25.5,44.2666666667,25.9633333333,37.43,26.39,38.156,25.6,39.73,23.5,43.36,24.3242857143,1,24.2,36.9666666667,24.736,43.834,23.6,40.79,22.8666666667,752.1833333333,42.5,3,40,9.2666666667,49.281990889,49.281990889 -110,20,25.6,43.8266666667,25.8233333333,37.8966666667,26.4371428571,38.2257142857,25.6,39.79,23.5666666667,43.6333333333,23.674,1,24.2,37.1933333333,24.79,44.2414285714,23.6,41,22.7333333333,752.1666666667,43,3,40,9.3333333333,31.1368415016,31.1368415016 -120,20,25.6,43.5666666667,25.7,38.6566666667,26.5,38.334,25.6,40.1333333333,23.5333333333,43.9333333333,23.05,1,24.26,37.5266666667,24.85,44.732,23.6,41,22.6,752.15,43.5,3,40,9.4,3.7137931911,3.7137931911 -160,30,25.6,43.1333333333,25.7,38.8633333333,26.5,38.47,25.6,40.66,23.575,47.52,22.29875,1,24.2,37.8,24.89,44.9285714286,23.6,41.234,22.4666666667,752.1333333333,44,3,40,9.4666666667,48.6585406004,48.6585406004 -110,20,25.6,42.86,25.7,38.7,26.52,38.59,25.6,41.0666666667,23.76,56.7666666667,21.772,1.02,24.2,38.06,25,45,23.6,41.6214285714,22.3333333333,752.1166666667,44.5,3,40,9.5333333333,27.5451297988,27.5451297988 -120,20,25.6,42.7,25.6,38.73,26.6,38.59,25.6,41.4666666667,23.79,55.36,21.3928571429,1.3142857143,24.2,38.36,25.0142857143,45.1842857143,23.6,41.79,22.2,752.1,45,3,40,9.6,44.3542247755,44.3542247755 -110,10,25.6,42.7,25.6,38.79,26.6,38.656,25.6333333333,41.73,23.73,56.0266666667,20.956,2.28,24.2,38.6333333333,25.1,45.254,23.6,41.88375,21.9333333333,752.1333333333,46.8333333333,2.8333333333,40,9.9,9.4203728717,9.4203728717 -110,0,25.6,42.6266666667,25.5666666667,38.8266666667,26.6,38.6528571429,25.7,41.79,23.7,55.5933333333,20.6814285714,3.1542857143,24.2,38.79,25.1714285714,45.3214285714,23.6,42.0671428571,21.6666666667,752.1666666667,48.6666666667,2.6666666667,40,10.2,20.4866521992,20.4866521992 -110,0,25.6,42.7,25.5,38.9666666667,26.6,38.718,25.7,41.6633333333,23.7,54.9266666667,20.396,4.194,24.29,39.045,25.236,45.4,23.6,42.24,21.4,752.2,50.5,2.5,40,10.5,20.4984111595,20.4984111595 -100,0,25.5,42.7,25.5,39.1266666667,26.6,38.79,25.7,41.4633333333,23.7,53.3233333333,20.1,4.7971428571,24.2,39.1266666667,25.3042857143,45.4571428571,23.6,42.4,21.1333333333,752.2333333333,52.3333333333,2.3333333333,40,10.8,39.9859424448,39.9859424448 -110,0,25.5666666667,42.7,25.4266666667,39.3333333333,26.6,38.9,25.7,41.4,23.7,52.3966666667,19.79,5.35,24.2,39.26,25.39,45.518,23.6,42.5,20.8666666667,752.2666666667,54.1666666667,2.1666666667,40,11.1,20.0029365951,20.0029365951 -100,0,25.5,42.79,25.39,39.4333333333,26.6,38.9,25.6,41.29,23.6,51.46,19.57,5.8257142857,24.2,39.4,25.39,45.6214285714,23.6,42.5514285714,20.6,752.3,56,2,40,11.4,24.6387501713,24.6387501713 -100,0,25.5,42.745,25.39,39.6333333333,26.6,38.96,25.6,41.29,23.6,50.9266666667,19.414,6.514,24.2,39.4,25.434,45.79,23.6,42.612,20.3833333333,752.3166666667,56.8333333333,2,38.1666666667,11.4166666667,44.859462278,44.859462278 -100,0,25.5,42.79,25.29,39.7666666667,26.6,38.9571428571,25.5,41.29,23.6,50.4,19.2257142857,7.1785714286,24.2,39.53,25.4685714286,45.79,23.6,42.7,20.1666666667,752.3333333333,57.6666666667,2,36.3333333333,11.4333333333,14.9860362988,14.9860362988 -120,20,25.5,42.79,25.29,39.9666666667,26.56,39.09,25.5,41.23,23.6,49.9266666667,19.06,8.354,24.2,39.545,25.5,45.812,23.6,42.7,19.95,752.35,58.5,2,34.5,11.45,38.4915910661,38.4915910661 -80,20,25.5,42.79,25.2,40.09,26.5,39.1057142857,25.5,41.36,23.6,49.5266666667,18.9371428571,9.7971428571,24.2,39.6633333333,25.5,45.9542857143,23.6,42.7771428571,19.7333333333,752.3666666667,59.3333333333,2,32.6666666667,11.4666666667,32.3668818688,32.3668818688 -70,20,25.5,42.76,25.1333333333,40.2233333333,26.56,39.2,25.5666666667,41.5,23.6,49.2666666667,18.89,10.318,24.2,39.6633333333,25.6,46.09,23.6,42.79,19.5166666667,752.3833333333,60.1666666667,2,30.8333333333,11.4833333333,2.3743209196,2.3743209196 -70,30,25.5,42.7,25.1,40.3266666667,26.6,39.2,25.6333333333,41.6333333333,23.6,49,18.7928571429,10.6614285714,24.2,39.59,25.6,46.31125,23.6,42.8214285714,19.3,752.4,61,2,29,11.5,16.9004436582,16.9004436582 -70,20,25.5,42.59,25.0333333333,40.4666666667,26.6,39.29,25.7,41.56,23.6,48.9333333333,18.6,12.06,24.2,39.6266666667,25.6857142857,46.5842857143,23.6,43,19.3333333333,752.4666666667,60.5,2.3333333333,30.8333333333,11.4333333333,41.249157174,41.249157174 -70,20,25.5,42.59,24.89,40.6266666667,26.6,39.29,25.7,41.79,23.5,48.79,18.4985714286,12.4685714286,24.2,39.7,25.7,46.876,23.6,43.14,19.3666666667,752.5333333333,60,2.6666666667,32.6666666667,11.3666666667,6.7035036045,6.7035036045 -70,20,25.5,42.59,24.89,40.76,26.6125,39.3725,25.7,41.8633333333,23.5,48.73,18.37,13.216,24.2,39.7,25.7,47.0257142857,23.6,43.254,19.4,752.6,59.5,3,34.5,11.3,30.7105841464,30.7105841464 -80,20,25.5,42.53,24.79,40.8266666667,26.7,39.4,25.79,41.9,23.6,48.59,18.2642857143,13.5857142857,24.2,39.7,25.7,47.236,23.6,43.3685714286,19.4333333333,752.6666666667,59,3.3333333333,36.3333333333,11.2333333333,34.7739809309,34.7739809309 -70,30,25.5,42.59,24.79,40.9666666667,26.7,39.4,25.79,41.9,23.6,48.59,18.16,15.236,24.2,39.73,25.6142857143,47.3671428571,23.6,43.5,19.4666666667,752.7333333333,58.5,3.6666666667,38.1666666667,11.1666666667,28.8382527302,28.8382527302 -70,20,25.4266666667,42.59,24.7,41.23,26.7,39.44,25.8233333333,41.79,23.55,48.545,18.0271428571,17.78,24.2,39.79,25.6,47.576,23.6,43.5671428571,19.5,752.8,58,4,40,11.1,46.2839399581,46.2839399581 -80,20,25.39,42.59,24.625,41.3425,26.7,39.5,25.89,41.79,23.6,48.5,17.87,19.834,24.2,39.9,25.6,47.7957142857,23.6,43.718,19.35,752.85,59.5,3.8333333333,40,11.3,42.9240050609,42.9240050609 -70,20,25.39,42.6633333333,24.6,41.56,26.7,39.518,25.89,41.76,23.6,48.5,17.6971428571,21.8785714286,24.2,39.9666666667,25.6,48,23.6,43.8685714286,19.2,752.9,61,3.6666666667,40,11.5,12.9524625139,12.9524625139 -70,20,25.39,42.7,24.5,41.73,26.7,39.59,25.9633333333,42.0333333333,23.5666666667,48.4,17.456,25.574,24.2,40.09,25.6,48.1814285714,23.6,44.036,19.05,752.95,62.5,3.5,40,11.7,18.035467912,18.035467912 -80,30,25.39,42.7,24.5,41.8633333333,26.7,39.59,26,42.2,23.5666666667,48.4,17.3642857143,26.9642857143,24.2,40.1633333333,25.6,48.4,23.6,44.1528571429,18.9,753,64,3.3333333333,40,11.9,37.0596915483,37.0596915483 -60,10,25.39,42.7,24.39,41.9333333333,26.7,39.6057142857,26,42.26,23.5666666667,48.4,17.23,27.7666666667,24.2,40.23,25.6,48.5357142857,23.6,44.276,18.75,753.05,65.5,3.1666666667,40,12.1,32.6847647782,32.6847647782 -60,0,25.39,42.8333333333,24.39,42.1333333333,26.718,39.656,26.1,42.26,23.5666666667,48.4,17.1,29.15,24.2,40.3633333333,25.6,49,23.6,44.4285714286,18.6,753.1,67,3,40,12.3,41.0425824113,41.0425824113 -60,0,25.3233333333,43.09,24.29,42.3266666667,26.7514285714,39.6685714286,26.1,42.1175,23.5,48.4,16.9214285714,30.1828571429,24.2,40.4,25.5857142857,49.3,23.7,44.634,18.3333333333,753.1,69,3.1666666667,40,12.4833333333,1.2578129652,1.2578129652 -60,0,25.39,43.09,24.29,42.4666666667,26.754,39.7,26.0333333333,42.09,23.5666666667,48.4,16.79,30.79,24.2,40.4666666667,25.56,49.66,23.6571428571,44.8142857143,18.0666666667,753.1,71,3.3333333333,40,12.6666666667,16.9164520921,16.9164520921 -60,0,25.29,43.09,24.26,42.59,26.7642857143,39.7,26,42.09,23.5,48.29,16.6414285714,31.2957142857,24.2,40.59,25.5285714286,49.9971428571,23.65,45.05,17.8,753.1,73,3.5,40,12.85,20.2761673951,20.2761673951 -50,0,25.29,43.09,24.2,42.6633333333,26.754,39.7,25.9266666667,41.7566666667,23.5,48.29,16.518,31.976,24.2,40.59,25.5,50.29,23.7,45.276,17.5333333333,753.1,75,3.6666666667,40,13.0333333333,7.481803291,7.481803291 -70,0,25.29,43.09,24.1,42.79,26.7514285714,39.7642857143,25.89,41.7,23.5333333333,48.29,16.3185714286,32.4971428571,24.2,40.59,25.5285714286,50.4414285714,23.7,45.4285714286,17.2666666667,753.1,77,3.8333333333,40,13.2166666667,29.2477614828,29.2477614828 -50,0,25.29,43.09,24.1,42.8633333333,26.79,39.79,25.89,41.7,23.5333333333,48.29,16.236,34.41,24.2,40.6266666667,25.5,50.536,23.7,45.59,17,753.1,79,4,40,13.4,41.293265007,41.293265007 -50,0,25.29,43.09,24.0666666667,43,26.79,39.79,25.79,41.7,23.5,48.29,16.2514285714,34.8371428571,24.2,40.7,25.5,50.5,23.6571428571,45.7128571429,16.8833333333,753.0666666667,79.8333333333,3.6666666667,40,13.4333333333,44.4158722181,44.4158722181 -60,0,25.29,43.1266666667,24,43,26.79,39.79,25.79,41.76,23.5,48.29,16.236,35.276,24.2,40.7,25.5,50.59,23.7,45.978,16.7666666667,753.0333333333,80.6666666667,3.3333333333,40,13.4666666667,32.3473604047,32.3473604047 -50,0,25.23,43.2,24,43.2,26.79,39.8371428571,25.76,41.79,23.5,48.29,16.2,36.3528571429,24.2,40.76,25.5,50.6657142857,23.7,46.1214285714,16.65,753,81.5,3,40,13.5,46.7088204925,46.7088204925 -50,0,25.26,43.2,24,43.26,26.79,39.9,25.7,41.8633333333,23.5,48.29,16.1,37.2,24.2,40.8266666667,25.5,50.856,23.7,46.29,16.5333333333,752.9666666667,82.3333333333,2.6666666667,40,13.5333333333,20.0272458256,20.0272458256 -50,0,25.2,43.2,23.89,43.4333333333,26.79,39.9142857143,25.7,41.9,23.5,48.4333333333,16.0857142857,37.87,24.2,40.9,25.5,50.9,23.7,46.4414285714,16.4166666667,752.9333333333,83.1666666667,2.3333333333,40,13.5666666667,12.7116399235,12.7116399235 -50,0,25.2,43.29,23.89,43.56,26.736,40,25.7,41.9666666667,23.5,48.56,15.978,39.152,24.2,40.9,25.434,50.79,23.7,46.576,16.3,752.9,84,2,40,13.6,48.1883969391,48.1883969391 -50,0,25.2,43.29,23.8566666667,43.6633333333,26.7,40,25.7,42,23.5,48.7,15.8257142857,40.2671428571,24.2,40.9666666667,25.4214285714,50.7385714286,23.7,46.7642857143,16.2166666667,752.8833333333,84.8333333333,2.1666666667,36.8333333333,13.65,24.6848385665,24.6848385665 -50,0,25.2,43.29,23.79,43.6633333333,26.7675,40,25.7,42.06,23.5,48.7,15.756,41.374,24.2,41.03,25.434,50.678,23.736,47,16.1333333333,752.8666666667,85.6666666667,2.3333333333,33.6666666667,13.7,27.3373148055,27.3373148055 -60,0,25.2,43.3633333333,23.745,43.845,26.7,40.0257142857,25.6,42.1266666667,23.5,48.7,15.6771428571,42.0257142857,24.2,41.09,25.39,50.59,23.7257142857,47.14,16.05,752.85,86.5,2.5,30.5,13.75,3.5041355179,3.5041355179 -50,0,25.1666666667,43.4,23.7,44.03,26.7,40,25.6,42.2,23.5333333333,48.59,15.6,42.6933333333,24.2,41.1842857143,25.39,50.5,23.79,47.276,15.9666666667,752.8333333333,87.3333333333,2.6666666667,27.3333333333,13.8,41.4714976447,41.4714976447 -70,0,25.1,43.4,23.7,44.09,26.7257142857,40.0771428571,25.6,42.29,23.5333333333,48.59,15.5,43.1333333333,24.2,41.2,25.39,50.5642857143,23.79,47.4714285714,15.8833333333,752.8166666667,88.1666666667,2.8333333333,24.1666666667,13.85,3.294222604,3.294222604 -60,0,25.1,43.5,23.6333333333,44.1566666667,26.7675,40.145,25.6,42.29,23.5,48.59,15.4266666667,43.8,24.1285714286,41.2642857143,25.39,50.7514285714,23.736,47.7,15.8,752.8,89,3,21,13.9,16.7942021741,16.7942021741 -50,0,25.1,43.56,23.6333333333,44.29,26.754,40.2,25.6,42.4,23.5,48.59,15.36,44.5966666667,24.2,41.29,25.39,50.92,23.79,47.8542857143,15.6833333333,752.75,90,2.8333333333,21,13.9666666667,36.0172987333,36.0172987333 -70,0,25.1,43.59,23.6,44.3266666667,26.79,40.2,25.5333333333,42.4666666667,23.5,48.59,15.3,45.1966666667,24.1571428571,41.3057142857,25.39,51.0257142857,23.79,48.094,15.5666666667,752.7,91,2.6666666667,21,14.0333333333,0.1862204983,0.1862204983 -50,0,25.1,43.59,23.6,44.4666666667,26.79,40.254,25.5,42.5,23.5,48.59,15.2633333333,46.2333333333,24.2,41.4,25.39,51.29,23.79,48.3214285714,15.45,752.65,92,2.5,21,14.1,1.4540156815,1.4540156815 -60,0,25.1,43.7,23.5,44.6266666667,26.79,40.2771428571,25.5,42.5,23.5,48.6266666667,15.19,47.4225,24.2,41.4,25.39,51.29,23.79,48.5,15.3333333333,752.6,93,2.3333333333,21,14.1666666667,39.5998451626,39.5998451626 -50,0,25.1,43.7,23.5,44.7,26.79,40.29,25.5,42.5,23.5,48.76,15.13,48.0633333333,24.2,41.44,25.39,51.29,23.79,48.64,15.2166666667,752.55,94,2.1666666667,21,14.2333333333,43.3552147122,43.3552147122 -70,0,25.1,43.79,23.5,44.8266666667,26.79,40.29,25.5,42.5,23.5,48.8266666667,15.1,48.6333333333,24.2,41.5,25.39,51.29,23.79,48.718,15.1,752.5,95,2,21,14.3,15.597844671,15.597844671 -50,0,25.0666666667,43.8266666667,23.5,44.9,26.79,40.29,25.5,42.56,23.5,48.9,15.0333333333,48.9666666667,24.2,41.5,25.33,51.29,23.79,48.8685714286,15.05,752.4333333333,95.3333333333,1.8333333333,20.8333333333,14.3,16.0815519979,16.0815519979 -60,0,25,43.9,23.39,44.9333333333,26.7385714286,40.29,25.5,42.59,23.5,48.9,15,49.53,24.2,41.5,25.3757142857,51.29,23.79,49,15,752.3666666667,95.6666666667,1.6666666667,20.6666666667,14.3,9.4439003849,9.4439003849 -50,0,25.0666666667,43.9,23.39,45.06,26.7,40.29,25.4266666667,42.59,23.5,48.9,14.9266666667,50.3966666667,24.2,41.5,25.31,51.29,23.79,49.0514285714,14.95,752.3,96,1.5,20.5,14.3,10.3452064563,10.3452064563 -60,0,25,43.9666666667,23.39,45.1266666667,26.6571428571,40.29,25.39,42.59,23.5,48.79,14.89,50.9633333333,24.1571428571,41.5128571429,25.39,51.29,23.79,49.112,14.9,752.2333333333,96.3333333333,1.3333333333,20.3333333333,14.3,4.449723463,4.449723463 -50,0,25,44,23.39,45.2,26.6,40.29,25.39,42.59,23.5,48.79,14.89,51.4966666667,24.1375,41.59,25.39,51.09,23.79,49.2,14.85,752.1666666667,96.6666666667,1.1666666667,20.1666666667,14.3,43.7196627841,43.7196627841 -50,0,25,44.06,23.3233333333,45.29,26.6,40.3842857143,25.39,42.7,23.5,48.79,14.86,52.03,24.2,41.59,25.39,51.0771428571,23.815,49.38375,14.8,752.1,97,1,20,14.3,34.9670118769,34.9670118769 -50,0,25,44.09,23.3233333333,45.3633333333,26.6,40.356,25.39,42.7,23.5,48.79,14.8,52.4233333333,24.1285714286,41.5642857143,25.39,50.98,23.79,49.4,14.7666666667,752.0166666667,97,1,20.1666666667,14.2833333333,34.9528949126,34.9528949126 -50,0,25,44.1633333333,23.29,45.5,26.6,40.4,25.39,42.7,23.5,48.7,14.69,52.9633333333,24.2,41.59,25.39,50.8685714286,23.8042857143,49.4142857143,14.7333333333,751.9333333333,97,1,20.3333333333,14.2666666667,42.1145660221,42.1145660221 -50,0,25,44.2,23.29,45.56,26.5,40.4,25.39,42.7,23.5,48.7,14.69,53.2966666667,24.2,41.5385714286,25.39,50.656,23.83,49.46,14.7,751.85,97,1,20.5,14.25,18.2096983539,18.2096983539 -50,0,25,44.2,23.26,45.59,26.5,40.4,25.39,42.7,23.5,48.6633333333,14.69,54.1666666667,24.18,41.518,25.39,50.5771428571,23.8614285714,49.5642857143,14.6666666667,751.7666666667,97,1,20.6666666667,14.2333333333,38.802024757,38.802024757 -50,0,24.89,44.29,23.245,45.6725,26.5,40.4,25.39,42.7,23.5,48.59,14.69,54.8333333333,24.1285714286,41.5514285714,25.39,50.5,23.89,49.7,14.6333333333,751.6833333333,97,1,20.8333333333,14.2166666667,47.4758498487,47.4758498487 -100,0,24.89,44.29,23.2,45.7,26.5,40.4285714286,25.39,42.7,23.5,48.59,14.66,55.33,24.16,41.59,25.39,50.4714285714,23.89,49.7,14.6,751.6,97,1,21,14.2,34.1787391924,34.1787391924 -50,0,24.89,44.3266666667,23.2,45.7666666667,26.5,40.5,25.39,42.7,23.5,48.59,14.66,55.8633333333,24.1714285714,41.59,25.39,50.4,23.85,49.718,14.6333333333,751.55,96.8333333333,1.3333333333,21.6666666667,14.1833333333,43.8806630322,43.8806630322 -80,10,24.9633333333,44.6,23.2,46.0266666667,26.5,40.5,25.29,42.7,23.5,48.59,14.69,56.39,24.1,41.59,25.3042857143,50.3371428571,23.89,49.8214285714,14.6666666667,751.5,96.6666666667,1.6666666667,22.3333333333,14.1666666667,16.0173227778,16.0173227778 -60,0,25,44.7666666667,23.2,46.3266666667,26.5,40.518,25.29,42.545,23.5,48.59,14.69,56.7233333333,24.1714285714,41.59,25.33,50.29,23.89,49.9,14.7,751.45,96.5,2,23,14.15,32.496524835,32.496524835 -80,0,25,44.8266666667,23.2,46.4666666667,26.5,40.59,25.29,42.6266666667,23.5666666667,55.13,14.745,57.045,24.1,41.59,25.29,50.29,23.9685714286,49.6342857143,14.7333333333,751.4,96.3333333333,2.3333333333,23.6666666667,14.1333333333,44.1146158148,44.1146158148 -60,10,25,44.73,23.2,46.59,26.5,40.59,25.29,42.7,24.2633333333,75.13,14.83,57.33,24.1142857143,41.59,25.29,50.2,23.89,49.59,14.7666666667,751.35,96.1666666667,2.6666666667,24.3333333333,14.1166666667,34.8513658508,34.8513658508 -70,0,25,44.73,23.2,46.6633333333,26.5428571429,40.5385714286,25.29,42.76,24.3233333333,73.2566666667,14.89,57.6633333333,24.2,41.656,25.29,50.2514285714,23.9685714286,49.5257142857,14.8,751.3,96,3,25,14.1,14.3534673261,14.3534673261 -70,0,25,44.9333333333,23.2,46.8266666667,26.58,40.518,25.2,43.4666666667,24.2,72.79,15,57.79,24.1571428571,41.7957142857,25.29,50.29,24,49.4,14.85,751.25,95.5,3,27.5,14.0666666667,23.7017222331,23.7017222331 -60,0,25,45.27,23.2,47.0266666667,26.5,40.6942857143,25.1333333333,44.1933333333,24.1333333333,71.19,15.0666666667,57.93,24.16,42.036,25.29,50.1942857143,24,49.1914285714,14.9,751.2,95,3,30,14.0333333333,35.6030896539,35.6030896539 -60,10,25,45.5,23.1,47.36,26.456,41.036,25.1666666667,44.4633333333,24,67.96,15.13,58.0666666667,24.1714285714,42.2514285714,25.29,49.80875,23.956,49.016,14.95,751.15,94.5,3,32.5,14,11.535038671,11.535038671 -60,0,25,45.9633333333,23.1,47.56,26.48625,41.18125,25.1,44.7966666667,23.9266666667,65.0333333333,15.19,58.1266666667,24.12,42.42,25.236,49.46,24,48.7957142857,15,751.1,94,3,35,13.9666666667,27.2789622541,27.2789622541 -60,0,24.9266666667,46.2233333333,23.1,47.86,26.4371428571,41.3528571429,25.1,45.39,23.89,61.9333333333,15.33,58.2666666667,24.2,42.5642857143,25.2128571429,49.2385714286,24,48.59,15.05,751.05,93.5,3,37.5,13.9333333333,34.2215060606,34.2215060606 -60,10,24.89,46.4633333333,23.1,48.06,26.456,41.42,25.0333333333,45.9233333333,23.89,60.2666666667,15.4633333333,58.4666666667,24.1,42.79,25.2,49.072,24,48.4814285714,15.1,751,93,3,40,13.9,31.8386573577,31.8386573577 -80,0,24.89,46.7233333333,23.1,48.3,26.4214285714,41.5257142857,25,46.29,23.89,58.4566666667,15.63,58.4666666667,24.1857142857,42.9542857143,25.2,48.9285714286,24,48.316,15.1833333333,751,92.6666666667,3,40,13.9333333333,18.0311563076,18.0311563076 -50,0,24.89,47.3266666667,23.1,48.56,26.5,41.7,25.0666666667,46.23,23.8233333333,57.2633333333,15.7633333333,58.5266666667,24.2,43.112,25.16,48.79,23.9528571429,48.2,15.2666666667,751,92.3333333333,3,40,13.9666666667,5.5695977877,5.5695977877 -60,0,24.89,47.4,23.1333333333,48.7,26.5,41.7514285714,25.1,46.2,23.79,56.2333333333,15.89,58.4666666667,24.2,43.2,25.1428571429,48.7385714286,23.956,48.09,15.35,751,92,3,40,14,33.3127897582,33.3127897582 -50,0,24.79,47.4,23.2,48.6266666667,26.5,41.79,25.1,46.1266666667,23.79,55.6933333333,15.89,58.4,24.2,43.334,25.12,48.7,23.9057142857,48.09,15.4333333333,751,91.6666666667,3,40,14.0333333333,31.5146556008,31.5146556008 -60,0,24.79,47.4,23.2,48.5,26.5,41.8685714286,25.1,46.06,23.79,55.1333333333,15.86,58.3633333333,24.2,43.4571428571,25.1285714286,48.6214285714,23.978,48.036,15.5166666667,751,91.3333333333,3,40,14.0666666667,34.5813567634,34.5813567634 -50,0,24.79,47.4,23.2,48.56,26.54,41.79,25.1,45.9333333333,23.73,54.8,15.8,58.1566666667,24.2,43.518,25.1,48.59,23.89,47.9285714286,15.6,751,91,3,40,14.1,18.5765388887,18.5765388887 -60,0,24.79,47.4,23.1,48.545,26.5142857143,41.8214285714,25.1,45.8633333333,23.79,54.3333333333,15.8,58.1333333333,24.2,43.59,25.1,48.59,23.89,47.9,15.6333333333,751,90.8333333333,3.1666666667,36.8333333333,14.1,5.1976238959,5.1976238959 -50,0,24.79,47.3633333333,23.2,48.5,26.5,41.812,25.1,45.79,23.7225,53.9975,15.8,58.1333333333,24.2,43.6528571429,25.1,48.572,23.89,47.83125,15.6666666667,751,90.6666666667,3.3333333333,33.6666666667,14.1,35.0588707835,35.0588707835 -60,0,24.79,47.29,23.2,48.5,26.5,41.8214285714,25.1,45.79,23.76,53.5966666667,16.1966666667,58.79,24.2,43.73,25.1,48.5,23.89,47.79,15.7,751,90.5,3.5,30.5,14.1,38.9009639155,38.9009639155 -60,0,24.7,47.29,23.29,48.4666666667,26.5,41.834,25.1,45.79,23.73,53.4333333333,16.53,58.5966666667,24.2,43.8671428571,25.1,48.5,23.89,47.79,15.7333333333,751,90.3333333333,3.6666666667,27.3333333333,14.1,43.3506287518,43.3506287518 -60,0,24.7,47.29,23.29,48.3266666667,26.5,41.8685714286,25.1,45.79,23.73,53.4333333333,16.84,57.895,24.2,44.018,25.1,48.5128571429,23.89,47.79,15.7666666667,751,90.1666666667,3.8333333333,24.1666666667,14.1,46.757006296,46.757006296 -60,0,24.7,47.3266666667,23.39,48.26,26.56,41.856,25.1,45.79,23.7,53.3333333333,17.0666666667,56.9,24.2,44.1214285714,25.08,48.59,23.89,47.79,15.8,751,90,4,21,14.1,15.5419934425,15.5419934425 -60,0,24.7,47.3266666667,23.39,48.2,26.5285714286,41.9,25.1,45.79,23.76,53.1266666667,17.4,56.7666666667,24.2,44.236,25.0285714286,48.59,23.89,47.79,15.9,750.9833333333,90,4,24.1666666667,14.2,39.9680434028,39.9680434028 -60,0,24.7,47.4,23.39,48.1633333333,26.5,41.9,25.1,45.79,23.7,52.93,17.7,55.4933333333,24.2,44.3528571429,25,48.59,23.89,47.79,16,750.9666666667,90,4,27.3333333333,14.3,37.0125494548,37.0125494548 -50,0,24.7,47.4,23.39,48.09,26.5857142857,41.9,25.1,45.79,23.7,52.6566666667,17.7,54.8266666667,24.2,44.46,25.0142857143,48.6371428571,23.89,47.79,16.1,750.95,90,4,30.5,14.4,45.2605203725,45.2605203725 -50,0,24.7,47.5,23.39,48.2,26.58,41.92,25.1,45.9,23.7,52.26,17.73,54.4933333333,24.2,44.5385714286,25.08,48.656,23.89,47.79,16.2,750.9333333333,90,4,33.6666666667,14.5,14.133993932,14.133993932 -50,0,24.7225,47.5225,23.4633333333,48.26,26.5,42,25.1,45.9,23.7,52.1266666667,17.73,53.7666666667,24.2,44.634,25,48.7,23.89,47.79,16.3,750.9166666667,90,4,36.8333333333,14.6,48.2830488705,48.2830488705 -50,0,24.73,47.59,23.5,48.29,26.5,42,25.1,46,23.7,51.93,17.7,53.5566666667,24.2128571429,44.7671428571,25,48.79,23.89,47.812,16.4,750.9,90,4,40,14.7,25.1538095647,25.1538095647 -50,0,24.73,47.59,23.5,48.29,26.5,42.0514285714,25.1,46,23.7,51.73,17.6333333333,52.7566666667,24.272,44.9,25,48.79,23.89,47.9,16.4333333333,750.9166666667,89.6666666667,4,38,14.6833333333,32.0980431512,32.0980431512 -50,0,24.73,47.6633333333,23.5333333333,48.3633333333,26.5,42.054,25.1,46.0266666667,23.7,51.56,17.99,53.5933333333,24.2642857143,44.9971428571,25,48.856,23.89,47.9,16.4666666667,750.9333333333,89.3333333333,4,36,14.6666666667,27.5718428195,27.5718428195 -60,0,24.7,47.7,23.6666666667,48.23,26.5,42.09,25.1,45.8266666667,23.7,51.4333333333,18.7966666667,51.8666666667,24.29,45.2,25,48.9285714286,23.9057142857,47.9142857143,16.5,750.95,89,4,34,14.65,43.3019265765,43.3019265765 -50,0,24.7,47.76,23.8233333333,48,26.5,42.09,25.1,45.79,23.7,51.1633333333,19.29,47.1566666667,24.29,45.2514285714,25,49,24,48,16.5333333333,750.9666666667,88.6666666667,4,32,14.6333333333,42.5798261771,42.5798261771 -60,0,24.79,47.8266666667,23.89,48,26.5,42.1214285714,25.1666666667,45.73,23.7,51.09,19.29,43.29,24.29,45.356,25,49,24,48,16.5666666667,750.9833333333,88.3333333333,4,30,14.6166666667,15.6749163289,15.6749163289 -60,0,24.79,47.9,24,47.76,26.5,42.09,25.2,45.6633333333,23.7,50.9666666667,19.39,39.0566666667,24.29,45.4,24.956,49.018,24,48,16.6,751,88,4,28,14.6,37.9920390667,37.9920390667 -60,0,24.79,47.9,24,47.7,26.5428571429,42.09,25.2,45.59,23.7,50.9,19.4633333333,37.4633333333,24.29,45.29,24.9175,49.0225,24,48,16.7,751,87.3333333333,4.1666666667,30,14.5666666667,35.9770748648,35.9770748648 -50,0,24.79,47.9,24.05,47.59,26.5625,42.09,25.2,45.59,23.7,50.79,19.4633333333,35.79,24.29,45.2385714286,24.9685714286,49,24,47.98,16.8,751,86.6666666667,4.3333333333,32,14.5333333333,10.4418222676,10.4418222676 -60,0,24.79,47.9,24.1333333333,47.43,26.54,42.09,25.2,45.53,23.7,50.73,19.6566666667,36.0633333333,24.29,45.2,25,49,24,47.9,16.9,751,86,4.5,34,14.5,44.4630441722,44.4630441722 -60,0,24.79,47.9,24.26,47.23,26.5857142857,42.09,25.2,45.56,23.745,50.645,20.0966666667,33.1,24.3614285714,45.1685714286,24.9685714286,49,24,47.9,17,751,85.3333333333,4.6666666667,36,14.4666666667,25.9882002138,25.9882002138 -50,0,24.79,47.9,24.5333333333,46.8633333333,26.56,42.09,25.2,45.5,23.79,50.56,20.5633333333,32.0933333333,24.39,45.09,25,49,24,47.8057142857,17.1,751,84.6666666667,4.8333333333,38,14.4333333333,32.3121622321,32.3121622321 -60,0,24.79,47.9,24.6666666667,46.53,26.6,42.0257142857,25.23,45.5,23.79,50.5,21.0566666667,27.5633333333,24.4057142857,45.0514285714,25,49,24,47.79,17.2,751,84,5,40,14.4,3.7943142466,3.7943142466 -60,0,24.8233333333,47.9,24.8233333333,46.1333333333,26.6,42.054,25.29,45.5,23.79,50.4,21.7225,24.2975,24.5,45.072,25,48.96,24,47.79,17.3166666667,750.9666666667,84.3333333333,4.8333333333,40,14.5833333333,21.6206273413,21.6206273413 -50,0,24.89,47.9,24.9633333333,45.86,26.6,42.0128571429,25.29,45.4,23.79,50.3266666667,22.1666666667,22.0266666667,24.5,45,25.0142857143,48.9428571429,24,47.7,17.4333333333,750.9333333333,84.6666666667,4.6666666667,40,14.7666666667,17.8556027357,17.8556027357 -60,0,24.89,47.79,25.1,45.514,26.6,42.09,25.365,45.3725,23.79,50.29,22.416,18.5,24.5,45,25.1,48.96,24,47.7,17.55,750.9,85,4.5,40,14.95,9.7830405924,9.7830405924 -60,0,24.89,47.79,25.1,45.4,26.6,42,25.39,45.29,23.79,50.29,21.9,16.8966666667,24.5571428571,44.9857142857,25.1,48.9285714286,24,47.7,17.6666666667,750.8666666667,85.3333333333,4.3333333333,40,15.1333333333,27.7912571793,27.7912571793 -60,0,24.89,47.76,25.06,45.4,26.6,42,25.39,45.2,23.79,50.29,21.4266666667,17.4966666667,24.6,44.9,25.1,48.9,24,47.6842857143,17.7833333333,750.8333333333,85.6666666667,4.1666666667,40,15.3166666667,3.0079861172,3.0079861172 -50,0,24.89,47.7,25.1285714286,45.3685714286,26.7,42,25.39,45.2,23.8566666667,50.29,21.3966666667,20.3266666667,24.6125,44.9125,25.1,48.8057142857,24,47.59,17.9,750.8,86,4,40,15.5,14.6366223693,14.6366223693 -60,0,24.945,47.645,25.39,44.916,26.7,42,25.39,45.2,23.8233333333,50.2,22.3966666667,17.9933333333,24.7,45,25.1,48.79,24.0714285714,47.6685714286,17.75,750.7333333333,86.3333333333,3.6666666667,40,15.4,17.0611670706,17.0611670706 -50,0,25,47.59,25.4842857143,44.6371428571,26.7,42,25.4633333333,45.1266666667,23.89,50.2,23.39,13.5666666667,24.7,45,25.1,48.7257142857,24.1,47.736,17.6,750.6666666667,86.6666666667,3.3333333333,40,15.3,44.0432016389,44.0432016389 -60,0,25,47.53,25.434,44.554,26.7,42.06,25.4266666667,45.09,23.89,50.2,23.2633333333,11.8266666667,24.7,44.9428571429,25.2,48.736,24.1,47.7128571429,17.45,750.6,87,3,40,15.2,23.8662905875,23.8662905875 -50,0,25.1,47.5,25.4214285714,44.5642857143,26.7,42,25.5,45.09,23.89,50.1266666667,23.1966666667,11.5266666667,24.718,44.878,25.2,48.7128571429,24.1,47.736,17.3,750.5333333333,87.3333333333,2.6666666667,40,15.1,17.3658097745,17.3658097745 -50,0,25.1,47.5,25.5,44.4,26.7,42,25.5,45.06,23.89,50.09,23.4633333333,10.2666666667,24.7514285714,44.79,25.2,48.678,24.1,47.7,17.15,750.4666666667,87.6666666667,2.3333333333,40,15,49.2419700953,49.2419700953 -50,0,25.1,47.4666666667,25.5,44.3242857143,26.7,42.09,25.5,45,23.89,50.09,23.7,8.59,24.79,44.754,25.2,48.59,24.1,47.656,17,750.4,88,2,40,14.9,0.8578324341,0.8578324341 -50,0,25.1,47.3266666667,25.56,44.178,26.7,42.09,25.5,44.9666666667,23.89,50.06,23.4933333333,8.59,24.79,44.6242857143,25.2,48.46,24.1,47.6214285714,17.35,750.35,86,2.5,40,14.8833333333,28.5479026497,28.5479026497 -50,0,25.1,47.29,25.6,44.0642857143,26.7,42.09,25.5,44.9,23.89,50,23.5,8.4633333333,24.85,44.554,25.2,48.3371428571,24.1,47.59,17.7,750.3,84,3,40,14.8666666667,19.6391796228,19.6391796228 -50,0,25.1666666667,47.29,25.64,43.9,26.7,42.09,25.5,44.8633333333,23.89,49.9666666667,23.6933333333,8.13,24.89,44.5257142857,25.254,48.29,24.1,47.59,18.05,750.25,82,3.5,40,14.85,36.3719508052,36.3719508052 -60,0,25.2,47.2,25.6142857143,43.9,26.7,42.09,25.5,44.79,23.9633333333,49.9,24.1566666667,6.8966666667,24.89,44.5,25.29,48.2642857143,24.1,47.554,18.4,750.2,80,4,40,14.8333333333,34.3432539259,34.3432539259 -60,0,25.2,47.1266666667,25.6,43.9,26.7,42.09,25.5,44.79,23.9633333333,49.9,23.89,6.8233333333,24.89,44.5,25.29,48.2,24.1,47.5257142857,18.75,750.15,78,4.5,40,14.8166666667,41.3587249815,41.3587249815 -50,0,25.2,47.09,25.6,43.9,26.7,42.09,25.5,44.79,23.9633333333,49.8266666667,23.7266666667,6.66,24.956,44.48,25.3328571429,48.2,24.1,47.5,19.1,750.1,76,5,40,14.8,8.9869801537,8.9869801537 -60,0,25.2,47.09,25.5,44,26.7,42.1266666667,25.6,44.79,23.945,49.79,23.3933333333,6.8,25,44.4,25.29,48.178,24.1285714286,47.5,19.2,750.05,75.3333333333,4.6666666667,40,14.75,4.0783505887,4.0783505887 -60,0,25.23,47.06,25.5857142857,43.9857142857,26.7,42.2,25.5333333333,44.79,24,49.7,23.5333333333,7.2566666667,25,44.4,25.3328571429,48.09,24.1,47.5,19.3,750,74.6666666667,4.3333333333,40,14.7,26.608462201,26.608462201 -60,0,25.23,47,25.6,43.9,26.73,42.2,25.6,44.76,24,49.7,23.7266666667,6.73,25,44.3057142857,25.35,48.09,24.1,47.5,19.4,749.95,74,4,40,14.65,37.4254888855,37.4254888855 -60,0,25.26,47,25.5625,43.9,26.73,42.2,25.5333333333,44.7,24,49.7,23.745,5.7,25,44.272,25.3757142857,48.0128571429,24.1,47.5,19.5,749.9,73.3333333333,3.6666666667,40,14.6,40.8338537789,40.8338537789 -50,0,25.26,46.9333333333,25.5,43.9,26.79,42.2,25.55,44.7,24,49.7,23.6666666667,6.23,25,44.2,25.39,48,24.1,47.5,19.6,749.85,72.6666666667,3.3333333333,40,14.55,3.9898684132,3.9898684132 -60,0,25.29,46.9,25.54,43.856,26.79,42.1266666667,25.5333333333,44.7,24,49.59,23.6666666667,6.09,25,44.2,25.39,48,24.1,47.5,19.7,749.8,72,3,40,14.5,6.947463809,6.947463809 -50,0,25.29,46.9,25.5428571429,43.79,26.79,42.1266666667,25.5333333333,44.7,24,49.59,23.89,5.8666666667,25,44.2,25.39,48,24.1428571429,47.4142857143,19.7166666667,749.75,71.3333333333,2.8333333333,40,14.3833333333,1.9980666577,1.9980666577 -60,0,25.29,46.8266666667,25.5,43.79,26.79,42.1266666667,25.5,44.7,24,49.56,23.6966666667,5.3933333333,25,44.178,25.33,47.96,24.14,47.4,19.7333333333,749.7,70.6666666667,2.6666666667,40,14.2666666667,38.092550158,38.092550158 -70,0,25.29,46.9,25.5,43.8214285714,26.79,42.09,25.5,44.6266666667,24,49.56,23.0633333333,5.9233333333,25,44.09,25.3471428571,47.9,24.1,47.4,19.75,749.65,70,2.5,40,14.15,39.323696366,39.323696366 -70,0,25.29,46.9666666667,25.39,44.236,26.79,42.09,25.5666666667,44.59,24,49.5,22.5966666667,6.9233333333,25,44.09,25.39,47.938,24.1,47.4,19.7666666667,749.6,69.3333333333,2.3333333333,40,14.0333333333,14.9078179384,14.9078179384 -70,0,25.29,47.1266666667,25.3328571429,44.6371428571,26.79,42.03,25.5666666667,44.59,24,49.5,22.39,8.5933333333,25,44.09,25.39,48.2642857143,24.1428571429,47.4,19.7833333333,749.55,68.6666666667,2.1666666667,40,13.9166666667,28.8632372976,28.8632372976 -80,0,25.29,47.26,25.29,45.154,26.79,42.09,25.5666666667,44.6266666667,24,49.5,22.3233333333,9.5933333333,25,44.112,25.5,48.634,24.16,47.4,19.8,749.5,68,2,40,13.8,9.8054238246,9.8054238246 -70,0,25.29,47.5666666667,25.2257142857,45.6685714286,26.79,42.09,25.5,44.7,24.0666666667,49.56,22.29,10.23,25,44.2,25.5,48.8971428571,24.15,47.4,19.6666666667,749.4666666667,68.8333333333,2.3333333333,40,13.85,11.7774580955,11.7774580955 -80,0,25.29,47.76,25.2,45.79,26.8566666667,42.09,25.5,44.7,24.0333333333,49.53,22.3566666667,9.9633333333,25,44.254,25.56,49.018,24.1714285714,47.4,19.5333333333,749.4333333333,69.6666666667,2.6666666667,40,13.9,1.7177445232,1.7177445232 -80,0,25.29,47.9,25.2,45.79,26.79,42.2,25.5,44.7,24.1,49.59,22.1666666667,9.2566666667,25,44.2,25.6714285714,49.09,24.2,47.4,19.4,749.4,70.5,3,40,13.95,18.8667325303,18.8667325303 -100,0,25.3566666667,47.9,25.14,45.956,26.6633333333,42.4,25.5,44.9333333333,24.1,49.7,22.1666666667,9.6633333333,25,44.1685714286,25.7,49.2,24.2,47.4,19.2666666667,749.3666666667,71.3333333333,3.3333333333,40,14,45.3179652686,45.3179652686 -350,0,25.3233333333,48.23,25.0714285714,46.2642857143,26.5,42.73,25.5,45.1333333333,24.1,49.7,21.9966666667,9.49,25,44.134,25.7514285714,49.2514285714,24.2,47.4,19.1333333333,749.3333333333,72.1666666667,3.6666666667,40,14.05,6.6251768381,6.6251768381 -140,0,25.3233333333,48.1566666667,25,46.29,26.4266666667,42.79,25.5,45.36,24.1,49.7,21.6633333333,10.2966666667,25,44.09,25.81,49.334,24.2,47.2957142857,19,749.3,73,4,40,14.1,34.1153951595,34.1153951595 -80,0,25.39,49.4933333333,24.9057142857,46.4614285714,26.3566666667,43.03,25.5,45.56,24.1,49.76,21.39,11.0633333333,25,44.09,25.89,49.1942857143,24.2,47.156,18.95,749.2666666667,74.1666666667,3.8333333333,40,14.2833333333,40.5526076327,40.5526076327 -80,0,25.39,48.7666666667,24.87,46.674,26.29,43.1633333333,25.4633333333,45.73,24.1633333333,55.2333333333,21.53,11.0633333333,25,44.0642857143,25.89,48.79,24.2,47.09,18.9,749.2333333333,75.3333333333,3.6666666667,40,14.4666666667,18.1737883016,18.1737883016 -100,0,25.3566666667,48.5,24.6971428571,46.9657142857,26.14875,43.585,25.39,45.8633333333,25.23,76.8333333333,21.53,10.93,24.978,44.09,25.89,48.5933333333,24.2,47.2,18.85,749.2,76.5,3.5,40,14.65,48.6679550027,48.6679550027 -110,0,25.29,48.5,24.5,47.476,26.0428571429,44.0685714286,25.39,46.1266666667,25.745,83.75,21.2633333333,11.4633333333,24.9371428571,44.09,25.89,48.975,24.2,47.2,18.8,749.1666666667,77.6666666667,3.3333333333,40,14.8333333333,49.0825486486,49.0825486486 -100,0,25.29,48.59,24.38,47.9228571429,25.956,44.27,25.39,46.3333333333,25.26,84.6333333333,21.3566666667,11.5633333333,24.89,44.2,25.956,49.796,24.2,47.2,18.75,749.1333333333,78.8333333333,3.1666666667,40,15.0166666667,0.2085876302,0.2085876302 -100,0,25.23,48.6633333333,24.31,48.178,26,44.4971428571,25.39,46.53,25.0666666667,85.3,20.8925,12.7225,24.89,44.2514285714,26,50.5,24.1333333333,47.26,18.7,749.1,80,3,40,15.2,30.8853868512,30.8853868512 -100,0,25.2,48.6633333333,24.4685714286,48.0642857143,26,44.254,25.39,46.6725,24.89,85.8333333333,20.5,14.26,24.89,44.29,26.05,50.745,24.2,47.29,18.7,749.0666666667,79.6666666667,3,40,15.1166666667,4.6008494101,4.6008494101 -100,0,25.2,48.59,24.5,47.856,26,44.2,25.3233333333,46.7,24.8233333333,83.7666666667,20.8933333333,14.4,24.89,44.3685714286,26.1,51.056,24.2,47.29,18.7,749.0333333333,79.3333333333,3,40,15.0333333333,41.3818879053,41.3818879053 -140,0,25.2,48.53,24.5,47.7771428571,26,44.178,25.39,46.6633333333,24.7633333333,80.4933333333,20.4333333333,13.5933333333,24.89,44.29,26.1,51.445,24.2,47.5,18.7,749,79,3,40,14.95,2.7584475582,2.7584475582 -90,0,25.2,48.53,24.478,47.66,26,44.09,25.3233333333,46.53,24.8233333333,80.9666666667,18.6266666667,17.63,24.8471428571,44.1371428571,26.1,51.6175,24.2,47.5,18.7,748.9666666667,78.6666666667,3,40,14.8666666667,44.7458626819,44.7458626819 -100,0,25.2,48.4,24.4371428571,47.5385714286,26,43.96,25.29,46.3633333333,24.76,77.8266666667,17.7666666667,22.3633333333,24.83,44.036,26.1,51.7257142857,24.1333333333,47.5,18.7,748.9333333333,78.3333333333,3,40,14.7833333333,18.2271113386,18.2271113386 -90,0,25.125,48.4,24.39,47.536,26,43.9,25.29,46.29,24.6333333333,74.8933333333,17.0966666667,27.4933333333,24.7642857143,44.0642857143,26.16,52.134,24.1333333333,47.56,18.7,748.9,78,3,40,14.7,7.4834109284,7.4834109284 -100,0,25.1,48.4,24.39,47.59,26,43.9,25.29,46.29,24.6,71.8666666667,16.6966666667,31.96,24.7,44.2,26.2,52.425,24.1,47.7,18.4166666667,748.95,78,3,40,14.45,16.5518332971,16.5518332971 -90,0,25.1,48.29,24.3042857143,47.6528571429,26,43.9,25.29,46.2128571429,24.5333333333,69.7266666667,16.3266666667,35.5966666667,24.7,44.2514285714,26.2,52.53,24.04,47.718,18.1333333333,749,78,3,40,14.2,31.3015330234,31.3015330234 -90,0,25.1,48.29,24.272,47.678,26,43.94,25.29,46.134,24.5,67.53,16.0666666667,37.4566666667,24.68,44.29,26.2,52.714,24,47.8083333333,17.85,749.05,78,3,40,13.95,15.3255935758,15.3255935758 -100,0,25.1,48.29,24.2,47.6942857143,25.9057142857,43.5285714286,25.2514285714,46.09,24.4266666667,65.6566666667,15.7,39.0566666667,24.6,44.2514285714,26.2771428571,53.5842857143,24,47.9,17.5666666667,749.1,78,3,40,13.7,21.8880854663,21.8880854663 -100,0,25.1,48.29,24.1,47.79,25.89,43.48,25.254,46.09,24.39,63.7566666667,15.3666666667,40.7233333333,24.56,44.2,26.29,54.2233333333,23.90375,47.9875,17.2833333333,749.15,78,3,40,13.45,20.3494194429,20.3494194429 -110,10,25.0666666667,48.29,24.1,47.8528571429,25.89,43.4285714286,25.2257142857,46.0514285714,24.3233333333,62.6966666667,15.1266666667,42.03,24.5,44.2,26.33,54.67,23.89,48,17,749.2,78,3,40,13.2,18.9974919544,18.9974919544 -70,0,25,48.29,24.04,47.856,25.934,43.66,25.2,46.016,24.3233333333,62.1333333333,14.7933333333,42.83,24.52,44.116,26.39,54.4371428571,23.79,47.9,16.6666666667,749.25,79.5,2.8333333333,40,13.1333333333,9.0237575932,9.0237575932 -60,0,25,48.26,24,47.9,26,43.9,25.2,45.9,24.3233333333,62.1933333333,14.5666666667,45.16,24.6,43.8971428571,26.4633333333,54.3266666667,23.83,47.94,16.3333333333,749.3,81,2.6666666667,40,13.0666666667,1.786988473,1.786988473 -60,0,25,48.2,23.89,47.9,26.02,43.834,25.2,45.856,24.29,62.29,14.4266666667,46.36,24.6,43.656,26.5,54.2233333333,23.89,47.8671428571,16,749.35,82.5,2.5,40,13,36.4068194409,36.4068194409 -50,0,25,48.1633333333,23.8328571429,47.9,26.1,43.79,25.2,45.7385714286,24.3566666667,62.43,14.33,48.5266666667,24.6142857143,43.5385714286,26.412,53.678,23.89,47.678,15.6666666667,749.4,84,2.3333333333,40,12.9333333333,30.6265899562,30.6265899562 -60,0,25,48.09,23.79,47.9666666667,26.2,43.79,25.16,45.7,24.39,62.29,14.4633333333,50.0666666667,24.64,43.418,26.39,53.116,23.9685714286,47.5257142857,15.3333333333,749.45,85.5,2.1666666667,40,12.8666666667,46.8548421166,46.8548421166 -60,0,25,48.06,23.7385714286,48.0928571429,26.2514285714,43.79,25.1571428571,45.6685714286,24.3233333333,62.23,14.5333333333,51.3,24.6,43.29,26.3733333333,52.9333333333,23.934,47.356,15,749.5,87,2,40,12.8,2.9600295937,2.9600295937 -60,0,25,48,23.68,48.178,26.29,43.79,25.1,45.59,24.29,62.2,14.6225,52.0475,24.6,43.13125,26.29,52.96,24,47.29,14.9666666667,749.4833333333,87.3333333333,2,40,12.8333333333,3.2495342661,3.2495342661 -50,0,25,48,23.6,48.09,26.3614285714,43.79,25.1285714286,45.59,24.29,61.9666666667,14.69,52.43,24.6,43.09,26.31,53.24,24,47.236,14.9333333333,749.4666666667,87.6666666667,2,40,12.8666666667,35.4382441728,35.4382441728 -60,0,25,47.9333333333,23.6,48.2357142857,26.39,43.7,25.1,45.59,24.29,61.7666666667,14.69,52.83,24.6,43.0385714286,26.33,53.42,24,47.2,14.9,749.45,88,2,40,12.9,46.1282568052,46.1282568052 -60,0,24.89,47.9,23.54,48.29,26.39,43.7257142857,25.1,45.59,24.29,61.3333333333,14.69,53.03,24.6,43,26.37,53.572,24,47.2,14.8666666667,749.4333333333,88.3333333333,2,40,12.9333333333,10.9631346073,10.9631346073 -60,0,24.9633333333,47.8266666667,23.5,48.3685714286,26.39,43.7,25.1,45.5,24.23,61,14.69,53.5666666667,24.6,43,26.3233333333,53.59,24,47.2,14.8333333333,749.4166666667,88.6666666667,2,40,12.9666666667,29.6145637636,29.6145637636 -60,0,24.89,47.79,23.4725,48.475,26.4214285714,43.7,25.1,45.5385714286,24.2,60.56,14.63,53.9,24.6,43,26.3471428571,54.1957142857,24,47.2,14.8,749.4,89,2,40,13,1.7785333563,1.7785333563 -50,0,24.89,47.73,23.39,48.42,26.5,43.6725,25.1,45.5,24.2,60.36,14.69,54.36,24.6,42.9571428571,26.39,54.46,24,47.2,14.9333333333,749.35,88.5,2.1666666667,40,13.0333333333,35.7620748691,35.7620748691 -60,0,24.89,47.7,23.39,48.5,26.5,43.59,25.1,45.5642857143,24.2,60.0266666667,14.69,54.56,24.6,42.94,26.39,54.5,24,47.156,15.0666666667,749.3,88,2.3333333333,40,13.0666666667,20.6073307665,20.6073307665 -50,0,24.89,47.6633333333,23.3185714286,48.5642857143,26.5,43.59,25.1,45.55625,24.2,59.8266666667,14.69,54.6333333333,24.6,42.9,26.35,54.46,24,47.1371428571,15.2,749.25,87.5,2.5,40,13.1,12.0691500953,12.0691500953 -70,0,24.89,47.59,23.29,48.634,26.52,43.536,25.1,45.59,24.1333333333,59.6633333333,14.7633333333,55.16,24.6,42.9,26.29,54.3214285714,24,47.2,15.3333333333,749.2,87,2.6666666667,40,13.1333333333,14.8986838874,14.8986838874 -50,0,24.89,47.56,23.29,48.7,26.5571428571,43.5,25.1,45.59,24.1333333333,59.53,14.8,55.4,24.6,42.9,26.29,54.4,24,47.2,15.4666666667,749.15,86.5,2.8333333333,40,13.1666666667,17.8212539759,17.8212539759 -60,0,24.89,47.5,23.2642857143,48.7,26.56,43.5,25.1,45.59,24.1666666667,59.3633333333,14.7057142857,55.3685714286,24.6,42.9,26.29,54.5,24,47.2,15.6,749.1,86,3,40,13.2,28.7589497631,28.7589497631 -40,0,24.89,47.5,23.2,48.736,26.5428571429,43.5,25.1,45.59,24.1,59.1566666667,14.652,55.32,24.6,42.9,26.29,54.4333333333,24,47.2,15.5166666667,749.05,87,3,40,13.3,43.6509644613,43.6509644613 -50,0,24.89,47.5,23.2,48.79,26.54,43.5,25.025,45.5,24.1,58.9666666667,14.4214285714,54.8814285714,24.6,42.9,26.29,54.4,24,47.2,15.4333333333,749,88,3,40,13.4,49.5949736913,49.5949736913 -50,0,24.8233333333,47.4333333333,23.1875,48.845,26.5714285714,43.5642857143,25.1,45.5,24.1,58.8266666667,14.3,55.29,24.6,42.9,26.2,54.3633333333,24.0285714286,47.2257142857,15.35,748.95,89,3,40,13.5,14.8288430646,14.8288430646 -60,0,24.8233333333,47.4333333333,23.1,48.92,26.6,43.554,25.025,45.5,24.1,58.76,14.2371428571,55.5085714286,24.6,42.856,26.2,54.1566666667,24.04,47.334,15.2666666667,748.9,90,3,40,13.6,48.6553451628,48.6553451628 -50,0,24.79,47.4,23.1,48.9571428571,26.6,43.545,25.02,45.48,24.1,58.6266666667,14.19,55.74,24.6,42.8214285714,26.2,53.8633333333,24.0142857143,47.2671428571,15.1833333333,748.85,91,3,40,13.7,19.341166073,19.341166073 -60,0,24.79,47.3266666667,23.1,49,26.5666666667,43.5,25,45.4,24.1,58.4666666667,14.19,55.9071428571,24.6,42.79,26.2,53.6566666667,24.06,47.254,15.1,748.8,92,3,40,13.8,0.6798814633,0.6798814633 -50,0,24.79,47.29,23.1,49.0514285714,26.55,43.5,25,45.4,24.1,58.4,14.234,56.58,24.6,42.79,26.2,53.56,24.05,47.23125,15.0166666667,748.8166666667,92.3333333333,3,40,13.7666666667,35.7727902243,35.7727902243 -60,0,24.79,47.29,23.08,49.09,26.6,43.554,25,45.4,24.1,58.29,14.3514285714,56.8285714286,24.6,42.79,26.2,53.5,24.0714285714,47.2328571429,14.9333333333,748.8333333333,92.6666666667,3,40,13.7333333333,19.7352974559,19.7352974559 -50,0,24.79,47.29,23,49.09,26.6,43.5,25,45.4,24.075,58.1725,14.412,57.058,24.6,42.79,26.1333333333,53.3633333333,24,47.09,14.85,748.85,93,3,40,13.7,9.1634829994,9.1634829994 -70,0,24.79,47.29,23,49.134,26.6,43.5,25,45.4,24,57.9333333333,14.5375,57.23375,24.6,42.79,26.2,53.23,24.0428571429,47.1371428571,14.7666666667,748.8666666667,93.3333333333,3,40,13.6666666667,10.4233749444,10.4233749444 -50,0,24.79,47.29,22.9842857143,49.2514285714,26.6,43.5,25,45.4,24,57.79,14.6,57.29,24.6,42.7514285714,26.1666666667,53.06,24.1,47.178,14.6833333333,748.8833333333,93.6666666667,3,40,13.6333333333,7.6606927323,7.6606927323 -60,0,24.79,47.29,22.934,49.29,26.6,43.5,25,45.4,24,57.73,14.6,57.29,24.6,42.79,26.1666666667,53,24.0285714286,47.09,14.6,748.9,94,3,40,13.6,34.0667348937,34.0667348937 -50,0,24.79,47.29,22.89,49.29,26.66,43.5,25,45.4,24,57.59,14.6,57.3671428571,24.6,42.79,26.1,52.79,24.04,47.134,14.6,748.9,94,2.8333333333,40,13.6,21.8179103569,21.8179103569 -60,0,24.79,47.29,22.89,49.4,26.6428571429,43.4428571429,25,45.4,24,57.59,14.6,57.5,24.6,42.79,26.1,52.73,24.0857142857,47.0928571429,14.6,748.9,94,2.6666666667,40,13.6,2.1337808343,2.1337808343 -60,0,24.7,47.29,22.89,49.4,26.6666666667,43.4,25,45.4,24,57.5,14.6257142857,57.5257142857,24.5285714286,42.79,26.1,52.56,24.02,47.018,14.6,748.9,94,2.5,40,13.6,41.2124810508,41.2124810508 -60,0,24.7,47.29,22.89,49.4,26.7,43.4,25,45.4,24,57.4333333333,14.654,57.656,24.6,42.73,26.1,52.5,24.0285714286,47.0257142857,14.6,748.9,94,2.3333333333,40,13.6,16.5191972745,16.5191972745 -50,0,24.745,47.29,22.89,49.4714285714,26.7,43.4,24.978,45.4,24,57.3633333333,14.6771428571,57.6842857143,24.5714285714,42.7771428571,26.0666666667,52.4,24.06,47.054,14.6,748.9,94,2.1666666667,40,13.6,3.8212305051,3.8212305051 -60,0,24.7,47.29,22.89,49.5,26.7,43.4,24.9371428571,45.4,24,57.29,14.712,57.718,24.6,42.79,26.0666666667,52.3266666667,24.0571428571,47.0514285714,14.6,748.9,94,2,40,13.6,44.5683248807,44.5683248807 -50,0,24.7,47.29,22.8185714286,49.4414285714,26.7,43.4,24.934,45.4,24,57.2,14.8,57.7257142857,24.56,42.79,26.1,52.2,24.06,47.054,14.5833333333,748.85,94.3333333333,2,38.1666666667,13.6333333333,8.5294077173,8.5294077173 -50,0,24.7,47.29,22.83,49.536,26.7,43.4,24.945,45.4,24,57.2,14.8,57.736,24.5,42.79,26.0333333333,52.2,24.0285714286,47.0514285714,14.5666666667,748.8,94.6666666667,2,36.3333333333,13.6666666667,43.0077798781,43.0077798781 -50,0,24.7,47.29,22.79,49.5,26.7,43.345,24.89,45.4,24,57.09,14.8771428571,57.97,24.5,42.79,26.1,52.06,24.1,47.2,14.55,748.75,95,2,34.5,13.7,43.8204251928,43.8204251928 -50,0,24.6333333333,47.23,22.79,49.59,26.7,43.29,24.89,45.4,24,57.03,14.89,58,24.5285714286,42.79,26.0333333333,52,24.0714285714,47.1685714286,14.5333333333,748.7,95.3333333333,2,32.6666666667,13.7333333333,4.4716801029,4.4716801029 -60,0,24.7,47.3633333333,22.79,49.6057142857,26.7,43.29,24.89,45.4,23.89,56.9666666667,14.9371428571,57.9714285714,24.5,42.79,26.05,51.9,24.1,47.2,14.5166666667,748.65,95.6666666667,2,30.8333333333,13.7666666667,9.0703465277,9.0703465277 -50,0,24.6666666667,47.26,22.79,49.7,26.7,43.3214285714,24.89,45.425,23.89,56.9,15,58,24.5285714286,42.8371428571,26.0666666667,51.9,24.1,47.1685714286,14.5,748.6,96,2,29,13.8,23.883452185,23.883452185 -50,0,24.6,47.26,22.79,49.7,26.7,43.4,24.89,45.4714285714,23.9633333333,56.76,14.9057142857,58,24.54,42.812,26,51.9,24.06,47.156,14.55,748.5833333333,96,2.1666666667,27.8333333333,13.85,4.3424057425,4.3424057425 -50,0,24.6,47.29,22.79,49.7,26.7,43.4,24.89,45.4,23.89,56.7,14.956,58,24.5,42.9,26,51.79,24.0428571429,47.09,14.6,748.5666666667,96,2.3333333333,26.6666666667,13.9,26.1201460846,26.1201460846 -50,0,24.6666666667,47.3633333333,22.7257142857,49.7514285714,26.65,43.4,24.89,45.4,23.89,56.59,14.9685714286,58,24.56,42.9,26,51.79,24.1,47.156,14.65,748.55,96,2.5,25.5,13.95,13.3878430934,13.3878430934 -50,0,24.6,47.29,22.79,49.79,26.7,43.4,24.89,45.4,23.89,56.53,14.89,57.916,24.5285714286,42.9,26,51.79,24.1,47.1214285714,14.7,748.5333333333,96,2.6666666667,24.3333333333,14,32.5228440692,32.5228440692 -60,0,24.6,47.29,22.75625,49.79,26.7,43.4,24.89,45.4285714286,23.89,56.4666666667,14.8228571429,57.6628571429,24.5,42.878,26,51.73,24.1,47.09,14.75,748.5166666667,96,2.8333333333,23.1666666667,14.05,5.3206236102,5.3206236102 -60,0,24.6,47.29,22.7257142857,49.79,26.7,43.4428571429,24.89,45.5,23.89,56.4,14.652,57.318,24.5,42.79,26,51.7,24.0571428571,47.09,14.8,748.5,96,3,22,14.1,0.9159954265,0.9159954265 -50,0,24.6,47.29,22.7,49.79,26.736,43.4,24.89,45.5,23.89,56.3266666667,14.3957142857,56.4971428571,24.5,42.856,26,51.6266666667,24.1,47.09,14.7666666667,748.4833333333,95.6666666667,2.8333333333,22.1666666667,14.0333333333,48.8606968662,48.8606968662 -60,0,24.6,47.29,22.7,49.7128571429,26.7128571429,43.4,24.89,45.46,23.89,56.2,14.154,55.96,24.5,42.79,25.9266666667,51.2266666667,24.0571428571,47.0514285714,14.7333333333,748.4666666667,95.3333333333,2.6666666667,22.3333333333,13.9666666667,37.1111148153,37.1111148153 -100,0,24.6,47.3633333333,22.754,49.678,26.7,43.4,24.89,45.4285714286,23.89,56.1266666667,13.9514285714,56.1228571429,24.5,42.772,26,51.5,24.1,47.09,14.7,748.45,95,2.5,22.5,13.9,29.6230370877,29.6230370877 -70,0,24.6,47.53,22.7642857143,49.7642857143,26.7,43.3,24.89,45.4,23.89,56.06,13.83,56.4966666667,24.5,42.7,25.89,50.9666666667,24.1,47.2385714286,14.6666666667,748.4333333333,94.6666666667,2.3333333333,22.6666666667,13.8333333333,2.711097186,2.711097186 -70,10,24.6,47.79,22.736,50.09,26.56,43.09,24.8471428571,45.2985714286,23.89,56,13.7842857143,56.7814285714,24.5,42.736,25.89,50.9,24.1,47.2,14.6333333333,748.4166666667,94.3333333333,2.1666666667,22.8333333333,13.7666666667,18.1564031984,18.1564031984 -320,0,24.7,47.9666666667,22.79,50.0128571429,26.4371428571,43.09,24.84,45.245,23.89,55.5633333333,13.7685714286,57.1942857143,24.5,42.8528571429,25.89,50.6633333333,24.1,47.298,14.6,748.4,94,2,23,13.7,3.9510061732,3.9510061732 -80,0,24.7,47.9,22.79,50,26.39,43.036,24.8614285714,45.3085714286,23.89,55.1566666667,13.89,57.67,24.5,42.92,25.89,50.53,24.1,47.2642857143,14.55,748.4166666667,94.3333333333,2.1666666667,23.1666666667,13.6833333333,46.6754401103,46.6754401103 -60,0,24.7,47.9,22.8614285714,50.0385714286,26.3614285714,43,24.85,45.356,23.89,54.8333333333,14.1214285714,58.1228571429,24.5,43.0257142857,25.89,50.43,24.1,47.2,14.5,748.4333333333,94.6666666667,2.3333333333,23.3333333333,13.6666666667,36.7853677832,36.7853677832 -70,0,24.7,47.79,22.89,50,26.29,42.975,24.8614285714,45.4,23.89,54.5666666667,14.516,58.46,24.5,43.134,25.89,50.1566666667,24.1,47.1371428571,14.45,748.45,95,2.5,23.5,13.65,12.7667301917,12.7667301917 -60,0,24.7,47.79,22.9842857143,49.9857142857,26.2257142857,42.9714285714,24.83,45.44,23.89,54.3333333333,14.9242857143,58.5257142857,24.5,43.2514285714,25.79,49.8633333333,24.08,47.072,14.4,748.4666666667,95.3333333333,2.6666666667,23.6666666667,13.6333333333,34.4329465996,34.4329465996 -70,0,24.7,47.7,23.02,49.834,26.2,43,24.8471428571,45.5385714286,23.89,54.1266666667,15.336,58.46,24.478,43.29,25.79,49.6566666667,24.0714285714,47.0642857143,14.35,748.4833333333,95.6666666667,2.8333333333,23.8333333333,13.6166666667,47.5336910575,47.5336910575 -70,0,24.76,47.7,23.1,49.79,26.1428571429,43,24.79,45.5,23.89,53.9666666667,15.4671428571,57.9814285714,24.4685714286,43.3685714286,25.79,49.4666666667,24.1,47.09,14.3,748.5,96,3,24,13.6,3.0676153954,3.0676153954 -70,0,24.7,47.76,23.1,49.7,26.1,43,24.8614285714,45.5642857143,23.89,53.8266666667,15.618,57.534,24.5,43.5,25.79,49.3266666667,24.0428571429,47.0385714286,14.3166666667,748.5333333333,95.5,3.1666666667,23.6666666667,13.55,6.3895006664,6.3895006664 -80,0,24.7,47.76,23.1,49.7,26.1,43,24.79,45.59,23.89,53.7,15.7214285714,57.09,24.5,43.5225,25.79,49.1,24.02,47.018,14.3333333333,748.5666666667,95,3.3333333333,23.3333333333,13.5,4.7543872613,4.7543872613 -70,0,24.73,47.79,23.1,49.7,26,43.036,24.8328571429,45.6371428571,23.89,53.395,16,56.82,24.5,43.5642857143,25.7,48.9666666667,24.1,47.0257142857,14.35,748.6,94.5,3.5,23,13.45,6.6447144607,6.6447144607 -70,0,24.79,47.8633333333,23.1,49.7,26,43.1057142857,24.8185714286,45.6685714286,23.89,53.3,16.2242857143,56.6,24.5,43.674,25.7,48.7666666667,24,47.134,14.3666666667,748.6333333333,94,3.6666666667,22.6666666667,13.4,8.5622034967,8.5622034967 -100,0,24.73,47.9333333333,23.2,49.59,26,43.2,24.8066666667,45.715,23.9633333333,54.6333333333,16.598,56,24.4214285714,43.8214285714,25.6666666667,48.5,23.7685714286,47.4514285714,14.3833333333,748.6666666667,93.5,3.8333333333,22.3333333333,13.35,2.1388866589,2.1388866589 -410,0,24.79,48,23.2514285714,49.5242857143,26,43.2,24.8614285714,45.6942857143,23.89,54.13,16.9971428571,54.7671428571,24.39,44,25.6,48.4333333333,23.68,47.834,14.4,748.7,93,4,22,13.3,21.4134868933,21.4134868933 -270,0,24.76,48.03,23.332,49.4,26,43.2,24.89,45.7,23.89,53.2566666667,17.29,52.016,24.39,44.1528571429,25.5,48.3633333333,23.5714285714,47.94,14.6,748.7333333333,92.3333333333,3.6666666667,25,13.3666666667,45.0510113616,45.0510113616 -60,0,24.76,48.1633333333,23.6,49.4,26,43.2,24.8614285714,45.6428571429,23.79,52.9333333333,17.4657142857,51.1385714286,24.39,44.516,25.5,48.3633333333,23.456,48.334,14.8,748.7666666667,91.6666666667,3.3333333333,28,13.4333333333,32.208823238,32.208823238 -70,0,24.79,48.3266666667,24.656,48.62,26.0571428571,43.1057142857,24.89,45.718,23.79,53.095,18.292,50.178,24.39,45.0957142857,25.4633333333,48.6933333333,23.3328571429,48.7971428571,15,748.8,91,3,31,13.5,4.4969826471,4.4969826471 -80,0,24.79,48.4,25.41,46.6842857143,26.1,43.09,24.9685714286,45.6942857143,23.79,53.26,19.1428571429,43.39,24.39,45.054,25.39,49.0266666667,23.35,49.058,15.2,748.8333333333,90.3333333333,2.6666666667,34,13.5666666667,5.4735754733,5.4735754733 -80,0,24.79,48.3633333333,25.834,45.51,26.1,43.09,25.04,45.59,23.79,53.2,19.176,40.056,24.39,44.88,25.39,49.7,23.4971428571,49.5657142857,15.4,748.8666666667,89.6666666667,2.3333333333,37,13.6333333333,36.5984682343,36.5984682343 -40,0,24.79,48.3633333333,26.6657142857,44.2042857143,26,43.49,25.17,45.4557142857,23.79,53.26,19.65,36.9985714286,24.39,44.772,25.3233333333,49.76,23.6,50.21,15.6,748.9,89,2,40,13.7,19.1208556294,19.1208556294 -50,0,24.79,48.59,26.754,43.554,25.6385714286,44.01,25.31,45.316,23.79,53.4333333333,19.934,33.658,24.39,44.6214285714,25.39,49.76,23.6571428571,49.7371428571,15.8666666667,748.8666666667,87.5,1.8333333333,40,13.6833333333,46.4768597973,46.4768597973 -70,0,24.79,48.6633333333,26.6725,43.9075,25.37,44.796,25.39,45.1214285714,23.79,53.4333333333,20.0257142857,32.6371428571,24.39,44.5,25.3233333333,49.5666666667,23.718,49.4,16.1333333333,748.8333333333,86,1.6666666667,40,13.6666666667,37.4544284423,37.4544284423 -70,0,24.79,49.095,26.9528571429,44.1385714286,25.2257142857,45.5928571429,25.5,44.96,23.79,53.4,20.434,30.076,24.4057142857,44.5128571429,25.3233333333,49.3633333333,23.7257142857,49.1214285714,16.4,748.8,84.5,1.5,40,13.65,7.57855064,7.57855064 -90,0,24.7,49.5966666667,27.138,44.46,25.16,46.334,25.6,44.8371428571,23.79,53.4666666667,20.6271428571,28.6242857143,24.456,44.576,25.39,49.23,23.79,49.2,16.6666666667,748.7666666667,83,1.3333333333,40,13.6333333333,7.1688769152,7.1688769152 -70,0,24.76,49.99,27.3614285714,44.7285714286,25.1,46.6,25.7,44.736,23.79,53.6266666667,20.872,27.276,24.4528571429,44.6528571429,25.3233333333,49.3266666667,23.79,49.2128571429,16.9333333333,748.7333333333,81.5,1.1666666667,40,13.6166666667,8.0079404986,8.0079404986 -60,0,24.79,50.36,27.39,44.38,25.12,46.86,25.7257142857,44.6214285714,23.79,53.76,21.12375,26.53,24.434,44.67,25.3233333333,49.4,23.79,49.27875,17.2,748.7,80,1,40,13.6,35.15929922,35.15929922 -50,0,24.79,50.4333333333,27.39,44.4128571429,25.1714285714,46.8214285714,25.79,44.5,23.79,54.03,21.3928571429,23.4214285714,24.5,44.7771428571,25.29,49.5,23.81,49.218,17.3666666667,748.6833333333,79.3333333333,1,38.1666666667,13.6333333333,26.5225579264,26.5225579264 -70,0,24.79,50.5666666667,27.292,44.736,25.1,47.036,25.8757142857,44.4142857143,23.79,54.09,21.5,21.274,24.5,44.7,25.29,49.5,23.89,49.29,17.5333333333,748.6666666667,78.6666666667,1,36.3333333333,13.6666666667,18.0771011743,18.0771011743 -90,0,24.79,50.7,27.1,44.5957142857,25.1,47.1528571429,25.87,44.654,23.79,54.2,21.7814285714,19.4842857143,24.5,44.7385714286,25.29,49.59,23.89,49.254,17.7,748.65,78,1,34.5,13.7,9.20426558,9.20426558 -60,10,24.79,50.6333333333,27.2,44.08,25.1,47.16,25.7642857143,45.5357142857,23.79,54.1266666667,22.24,16.876,24.5,44.59,25.29,49.59,23.89,48.9685714286,17.8666666667,748.6333333333,77.3333333333,1,32.6666666667,13.7333333333,35.0212286692,35.0212286692 -50,0,24.79,50.5,27.3857142857,43.5814285714,25.1714285714,46.9828571429,25.736,45.9,23.79,54.06,22.8528571429,13.5214285714,24.5571428571,44.4557142857,25.29,49.345,23.89,48.616,18.0333333333,748.6166666667,76.6666666667,1,30.8333333333,13.7666666667,13.037058874,13.037058874 -50,0,24.79,50.4666666667,27.6,42.796,25.33,47.054,25.8471428571,45.6785714286,23.79,53.9333333333,23.874,8.28,24.6,44.334,25.29,49.1633333333,23.89,48.3971428571,18.2,748.6,76,1,29,13.8,4.1330523207,4.1330523207 -60,0,24.79,50.1933333333,27.5714285714,42.2957142857,25.4528571429,46.8671428571,25.89,45.4,23.79,53.6333333333,23.8671428571,6.5814285714,24.6,44.1942857143,25.29,49.03,23.79,48,18.55,748.55,74.3333333333,1,30.8333333333,13.7833333333,31.2021231395,31.2021231395 -60,0,24.79,49.93,27.39,42.09,25.52,46.616,25.9214285714,45.2385714286,23.79,53.36,23.7,6.472,24.6,44.09,25.29,48.9,23.79,48,18.9,748.5,72.6666666667,1,32.6666666667,13.7666666667,24.8886883142,24.8886883142 -50,0,24.8566666667,49.73,27.39,41.9185714286,25.6,46.3971428571,26,45.29,23.8233333333,53.2,23.9714285714,5.81,24.6142857143,44.0385714286,25.29,48.8266666667,23.79,47.98,19.25,748.45,71,1,34.5,13.75,28.8520544535,28.8520544535 -60,0,24.89,49.4666666667,27.39,41.652,25.7,46.156,26,45.1371428571,23.8233333333,53.0666666667,24.35,2.374,24.66,43.94,25.29,48.76,23.79,47.8428571429,19.6,748.4,69.3333333333,1,36.3333333333,13.7333333333,2.2143282113,2.2143282113 -50,0,24.89,49.2666666667,27.39,41.3714285714,25.7,45.8928571429,26,44.958,23.79,52.8333333333,24.2228571429,1.4128571429,24.7,43.7957142857,25.29,48.6266666667,23.83,47.7,19.95,748.35,67.6666666667,1,38.1666666667,13.7166666667,48.2200801722,48.2200801722 -70,0,24.89,48.9666666667,27.5,40.9,25.718,45.714,26.0428571429,44.7642857143,23.815,52.595,24.16,1.656,24.7,43.59,25.29,48.4666666667,23.89,47.7771428571,20.3,748.3,66,1,40,13.7,28.5869668005,28.5869668005 -50,0,24.89,48.7666666667,27.4057142857,40.7928571429,25.79,45.5257142857,26.1,44.656,23.89,52.4333333333,24.0257142857,1.2257142857,24.7,43.46,25.29,48.4,23.912,47.79,20.3833333333,748.25,65.8333333333,1,40,13.7333333333,45.1567709562,45.1567709562 -60,0,25,48.56,27.33,40.7,25.815,45.30875,26.075,44.50875,23.8233333333,52.23,23.7,1.6,24.7514285714,43.3371428571,25.29,48.3633333333,23.9214285714,47.7257142857,20.4666666667,748.2,65.6666666667,1,40,13.7666666667,10.8440833399,10.8440833399 -50,0,25,48.4333333333,27.3185714286,40.7,25.85,45.09,26.0428571429,44.3371428571,23.89,52.1566666667,23.7128571429,2.9142857143,24.79,43.29,25.29,48.23,23.934,47.59,20.55,748.15,65.5,1,40,13.8,2.0280523342,2.0280523342 -60,0,25,48.26,27.39,40.59,25.8757142857,44.9557142857,26.1,44.29,23.89,52.06,23.81,2.7,24.79,43.3371428571,25.29,48.2,24,47.7357142857,20.6333333333,748.1,65.3333333333,1,40,13.8333333333,32.4999077013,32.4999077013 -50,0,25.025,48.1175,27.3328571429,40.5257142857,25.89,44.878,26.0571428571,44.29,23.89,51.9333333333,24.0685714286,3.01,24.89,43.4,25.29,48.2,24,47.856,20.7166666667,748.05,65.1666666667,1,40,13.8666666667,43.1186442729,43.1186442729 -70,0,25.1,48.2966666667,27.272,40.656,25.89,44.7257142857,26.1,44.29,23.89,51.8633333333,24.5,1.374,24.89,43.4,25.29,48.26,24,47.9428571429,20.8,748,65,1,40,13.9,26.9963199156,26.9963199156 -70,0,25.1,48.26,27.2,40.7257142857,25.89,44.7,26.1,44.2514285714,23.89,51.73,25.01,1.3285714286,24.89,43.4,25.3566666667,48.4,24,47.856,20.9666666667,747.95,63.5,1.1666666667,40,13.7,18.6482641613,18.6482641613 -80,0,25.1,48.1266666667,27.16,40.9,25.9528571429,44.91,26.1,44.236,23.89,51.6633333333,25.536,1,24.9685714286,43.4,25.4266666667,48.73,24,47.8842857143,21.1333333333,747.9,62,1.3333333333,40,13.5,31.5535441623,31.5535441623 -60,0,25.2,48.06,27.1,41.0528571429,26,44.98,26.1,44.2385714286,23.89,51.59,25.6714285714,1,25.04,43.4,25.6333333333,48.8633333333,24,47.878,21.3,747.85,60.5,1.5,40,13.3,5.8196434285,5.8196434285 -90,0,25.26,48,27.1,41.2,26,44.9,26.1,44.2,23.89,51.56,25.676,1,25.0714285714,43.2928571429,25.7,48.8633333333,24,47.6942857143,21.4666666667,747.8,59,1.6666666667,40,13.1,30.4928154685,30.4928154685 -70,0,25.29,47.8633333333,27.0714285714,41.2,26,44.79,26.1,44.1371428571,23.89,51.5,25.4385714286,1,25.1,43.134,25.76,48.79,24,47.5,21.6333333333,747.75,57.5,1.8333333333,40,12.9,33.5130606778,33.5130606778 -90,0,25.29,47.79,27,41.2,26,44.7385714286,26.1,44.09,23.9633333333,51.4,25.12,1,25.1714285714,43.09,25.79,49.03,24.0142857143,47.5928571429,21.8,747.7,56,2,40,12.7,34.644158429,34.644158429 -70,0,25.3233333333,47.6633333333,26.93125,40.96625,26.02,44.7,26.1,44.09,23.89,51.4,25.5142857143,1,25.2,43,25.8566666667,49.2233333333,24.04,47.58,21.8333333333,747.65,55.8333333333,2.1666666667,40,12.65,21.7807726352,21.7807726352 -90,0,25.39,47.53,26.9528571429,41.1228571429,26.1,44.6214285714,26.1,44.054,23.9266666667,51.29,25.5,1,25.2771428571,42.8385714286,26,49.55,24.0125,47.41125,21.8666666667,747.6,55.6666666667,2.3333333333,40,12.6,47.0788637293,47.0788637293 -70,0,25.5,47.4666666667,26.934,40.972,26.1,44.5,26.1428571429,43.9428571429,24,51.23,25.4385714286,1,25.29,42.596,26,49.1633333333,24.1,47.2642857143,21.9,747.55,55.5,2.5,40,12.55,2.9168559588,2.9168559588 -80,0,25.5,47.3266666667,26.89,40.7,26.1,44.4857142857,26.18,43.834,24,51.06,25.156,1,25.29,42.2957142857,26,48.9633333333,24.1,47.09,21.9333333333,747.5,55.3333333333,2.6666666667,40,12.5,29.224422737,29.224422737 -80,0,25.5,47.1633333333,26.89,40.7,26.1,44.4,26.1,43.79,24,50.9333333333,24.945,1,25.29,42.09,26.1,48.76,24.1,47.1057142857,21.9666666667,747.45,55.1666666667,2.8333333333,40,12.45,27.1691989037,27.1691989037 -80,0,25.5666666667,46.9633333333,26.8328571429,40.6057142857,26.1285714286,44.3214285714,26.14,43.7,24,50.8633333333,25.0942857143,1,25.3471428571,42.0242857143,26.1,48.6266666667,24.1,47.116,22,747.4,55,3,40,12.4,19.3333430565,19.3333430565 -80,0,25.6,46.79,26.83,40.59,26.2,44.2,26.2,43.6371428571,24,50.73,25.254,1,25.39,41.834,26.23,48.5,24.1,46.9714285714,22.2833333333,747.3166666667,53.6666666667,3,40,12.2666666667,39.4494779874,39.4494779874 -80,0,25.6,46.79,26.7257142857,40.6214285714,26.2,44.1842857143,26.2,43.59,24,50.545,25.35,1,25.39,41.7514285714,26.29,48.4333333333,24.1,46.9,22.5666666667,747.2333333333,52.3333333333,3,40,12.1333333333,28.250069276,28.250069276 -70,0,25.6,46.7,26.6,40.874,26.2,44.09,26.1285714286,43.6214285714,24,50.4666666667,25.316,1.1,25.39,41.9,26.3233333333,48.59,24.1,47.1285714286,22.85,747.15,51,3,40,12,15.2247436345,15.2247436345 -80,0,25.6,46.7,26.6,41.1271428571,26.2,44.09,26.1,43.736,24,50.4,24.7957142857,2.8357142857,25.39,42.1814285714,26.3233333333,48.7233333333,24.1,47.56,23.1333333333,747.0666666667,49.6666666667,3,40,11.8666666667,17.0736991917,17.0736991917 -70,0,25.6,46.7,26.6,41.376,26.2,44.036,26.1,43.91,24,50.4333333333,24.6,4.234,25.39,42.576,26.39,49.1266666667,24.1,48.1214285714,23.4166666667,746.9833333333,48.3333333333,3,40,11.7333333333,49.2626649095,49.2626649095 -70,0,25.6,46.76,26.5714285714,41.5957142857,26.2,44.09,26.1,44.018,24.0666666667,50.6333333333,24.5857142857,3.8528571429,25.39,42.7957142857,26.4633333333,49.26,24.1,48.536,23.7,746.9,47,3,40,11.6,15.6039693509,15.6039693509 -70,0,25.6333333333,46.8266666667,26.456,41.834,26.2,44.054,26.1,44.09,24,50.6266666667,24.376,3.436,25.39,43,26.5,49.4,24.1,48.9485714286,23.5333333333,746.85,48.5,2.8333333333,40,11.9,1.2208049418,1.2208049418 -80,0,25.675,47.175,26.3757142857,42.7085714286,26.2,44.09,26.1,44.2,24,50.7,24.1,2.6528571429,25.3757142857,43,26.5,49.4,24.06,48.998,23.3666666667,746.8,50,2.6666666667,40,12.2,0.0312483171,0.0312483171 -70,0,25.5333333333,48.3333333333,26.196,44.532,26.2,44.28,26.1,44.3828571429,24.0333333333,50.83,23.956,4.874,25.33,43.076,26.5,49,24.1,48.6214285714,23.2,746.75,51.5,2.5,40,12.5,41.7524863267,41.7524863267 -80,0,25.5,49.2266666667,25.8928571429,46.1242857143,26.2,44.8257142857,26.04,44.898,24.1,51.2966666667,23.8057142857,5.4542857143,25.29,43.29375,26.5,49.06,24.1,48.254,23.0333333333,746.7,53,2.3333333333,40,12.8,32.0881206193,32.0881206193 -80,0,25.5,49.7666666667,25.66,47.28,26.18,45.314,26,45.64125,24,51.7266666667,23.46,6.696,25.29,43.6214285714,26.6,49.2666666667,24.1,48.1371428571,22.8666666667,746.65,54.5,2.1666666667,40,13.1,2.1590486751,2.1590486751 -70,0,25.4633333333,50.53,25.4514285714,48.6371428571,26.175,45.855,26,46.6214285714,24.0666666667,52.3333333333,22.8957142857,8.8571428571,25.29,44.08,26.6,49.5266666667,24.1,48.076,22.7,746.6,56,2,40,13.4,20.7131051924,20.7131051924 -90,0,25.4633333333,50.79,25.456,48.936,26.2,46.4657142857,25.89,47.476,24,53.1,22.12,12.67,25.29,44.61,26.6,50.1,24.1,48.2257142857,22.5833333333,746.5333333333,56.5,1.8333333333,40,13.45,47.3861537175,47.3861537175 -80,0,25.5,50.9666666667,25.5285714286,48.3242857143,26.2,46.634,25.89,47.8942857143,24,53.9666666667,21.6385714286,15.52,25.29,45.096,26.6666666667,50.7666666667,24.1,48.4,22.4666666667,746.4666666667,57,1.6666666667,40,13.5,12.5932810712,12.5932810712 -100,0,25.5,50.9666666667,25.6,48.014,26.2385714286,46.6685714286,25.89,48.174,24,55.13,21.214,18.478,25.29,45.6214285714,26.7,51.3,24.1,48.6128571429,22.35,746.4,57.5,1.5,40,13.55,26.5711545711,26.5711545711 -110,0,25.4266666667,50.9,25.5428571429,47.8371428571,26.254,46.678,25.89,48.29,24,55.9966666667,20.4971428571,24.5828571429,25.29,46.09,26.76,51.5,24.12,48.976,22.2333333333,746.3333333333,58,1.3333333333,40,13.6,25.7826119661,25.7826119661 -100,0,25.4266666667,50.9,25.5,47.79,26.29,46.59,25.89,47.916,23.9633333333,55.8933333333,18.59,31.734,25.2771428571,45.9528571429,26.79,51.35,24.1285714286,49.6428571429,22.1166666667,746.2666666667,58.5,1.1666666667,40,13.65,17.8003624547,17.8003624547 -110,0,25.4266666667,51.3633333333,25.5,47.6942857143,26.29,46.5,25.89,47.5842857143,23.9633333333,55.3,17.7085714286,34.3528571429,25.218,45.596,26.7,50.3333333333,24.1,49.356,22,746.2,59,1,40,13.7,33.4693263751,33.4693263751 -90,0,25.4266666667,50.9633333333,25.5,47.5,26.29,46.3985714286,25.89,47.316,23.9633333333,54.93,17.236,36.772,25.2257142857,45.3214285714,26.6333333333,49.8,24.1,49.2228571429,21.3833333333,746.1333333333,59.3333333333,1.6666666667,40,13.2,9.9504362908,9.9504362908 -100,0,25.5,50.6633333333,25.4842857143,47.4428571429,26.29,46.214,25.8614285714,47.1214285714,23.89,54.5966666667,16.9214285714,37.9542857143,25.2,45.156,26.6,49.4,24.1,49.09,20.7666666667,746.0666666667,59.6666666667,2.3333333333,40,12.7,11.4773351001,11.4773351001 -100,0,25.5,50.53,25.39,47.378,26.29,46.0642857143,25.79,47.054,24,54.1933333333,16.754,38.79,25.2,45.0385714286,26.6,49.4,24.1,49.0642857143,20.15,746,60,3,40,12.2,4.5333702583,4.5333702583 -100,0,25.5,50.3333333333,25.3614285714,47.29,26.29,45.96,25.79,46.9271428571,24,53.9333333333,16.5857142857,38.5371428571,25.18,44.98,26.7,49.4633333333,24.1,49,19.5333333333,745.9333333333,60.3333333333,3.6666666667,40,11.7,16.8837550678,16.8837550678 -110,0,25.5,50.1266666667,25.29,47.2675,26.29,45.8528571429,25.79,46.79,24,53.645,16.478,39.076,25.1,44.8214285714,26.7,49.7966666667,24.1,48.9375,18.9166666667,745.8666666667,60.6666666667,4.3333333333,40,11.2,48.2474109624,48.2474109624 -90,0,25.5,49.8333333333,25.1,47.2,26.31,45.834,25.79,46.7257142857,24,53.3633333333,16.2928571429,41.0671428571,25.1,44.754,26.7,50.1933333333,24.1,48.8371428571,18.3,745.8,61,5,40,10.7,12.7748783329,12.7748783329 -120,10,25.5,49.6266666667,25.1,47.2128571429,26.3185714286,45.7257142857,25.79,46.59,24,53.23,16.2,42.976,25.1,44.6371428571,26.7,50.5266666667,24.08,48.772,18.2666666667,745.75,62.3333333333,4.3333333333,40,10.9666666667,36.8998349411,36.8998349411 -90,0,25.5,49.5666666667,25.04,47.312,26.35,45.59,25.7257142857,46.5385714286,24,53.6333333333,16.1375,44.32125,25.1,44.59,26.7,50.86,24,48.7,18.2333333333,745.7,63.6666666667,3.6666666667,40,11.2333333333,9.3394367606,9.3394367606 -100,0,25.5,49.6266666667,24.9214285714,47.4,26.2385714286,45.59,25.736,46.48,24.5933333333,72.0933333333,16.17,45.0771428571,25.1,44.5257142857,26.7,50.8,24,48.656,18.2,745.65,65,3,40,11.5,20.9152911673,20.9152911673 -80,0,25.5,49.345,24.89,47.4,26.2,45.572,25.7,46.3685714286,25.0966666667,80.8,16.29,44.414,25.06,44.356,26.7,50.5966666667,23.9842857143,48.5242857143,18.1666666667,745.6,66.3333333333,2.3333333333,40,11.7666666667,6.5187020809,6.5187020809 -90,0,25.5,49.2,24.8042857143,47.4,26.2,45.5,25.7,46.254,24.7633333333,82,16.29,44.1371428571,24.9842857143,44.2385714286,26.7,51.1966666667,23.934,48.4,18.1333333333,745.55,67.6666666667,1.6666666667,40,12.0333333333,48.3605397982,48.3605397982 -100,0,25.5,49.1266666667,24.736,47.42,26.2,45.5,25.7,46.2,24.5666666667,82.8633333333,16.16,44.79,24.89,44.2,26.7,51.6633333333,23.89,48.4,18.1,745.5,69,1,40,12.3,16.3764385623,16.3764385623 -90,0,25.39,49.09,24.6714285714,47.5,26.1142857143,45.4142857143,25.7,46.134,24.4266666667,81.13,15.9985714286,45.4942857143,24.89,44.2,26.7,51.4633333333,23.85,48.356,17.9333333333,745.4833333333,71,1.1666666667,40,12.5333333333,47.1969889826,47.1969889826 -90,0,25.39,49.03,24.6,47.59,26.1,45.378,25.6285714286,46.09,24.3566666667,76.3333333333,15.89,46.714,24.79,44.09,26.6666666667,51.1633333333,23.8042857143,48.3671428571,17.7666666667,745.4666666667,73,1.3333333333,40,12.7666666667,28.4017955186,28.4017955186 -80,0,25.39,48.9666666667,24.5857142857,47.6657142857,26.1,45.29,25.66,46.09,24.29,72.9266666667,15.8642857143,47.8685714286,24.79,44.1528571429,26.6666666667,51.1633333333,23.83,48.46,17.6,745.45,75,1.5,40,13,49.2911472567,49.2911472567 -70,0,25.39,48.9,24.478,47.812,26.06,45.29,25.6,46.09,24.29,69.4233333333,15.8,49.454,24.79,44.2,26.6,50.9666666667,23.79,48.5,17.4333333333,745.4333333333,77,1.6666666667,40,13.2333333333,39.7740602726,39.7740602726 -80,0,25.3566666667,48.9,24.39,47.8528571429,26.0285714286,45.2128571429,25.6,46.09,24.23,67.03,15.94,49.4785714286,24.79,44.2,26.6,50.8266666667,23.7,48.5,17.2666666667,745.4166666667,79,1.8333333333,40,13.4666666667,40.3965848032,40.3965848032 -70,0,25.29,48.8266666667,24.39,48,26.02,45.2,25.6,46.09,24.2,65.2666666667,15.916,49.414,24.736,44.054,26.5,50.4666666667,23.7,48.5,17.1,745.4,81,2,40,13.7,33.0871987506,33.0871987506 -60,0,25.29,48.76,24.3042857143,48.0928571429,26.1,45.2,25.6,46.09,24.2,64.7266666667,15.7685714286,50.1685714286,24.79,43.9271428571,26.5,50.4,23.7,48.5,17.1,745.45,80.3333333333,2.6666666667,40,13.5833333333,37.0854177629,37.0854177629 -50,0,25.29,48.7,24.272,48.178,26.1,45.09,25.6,46.0385714286,24.2,64.0933333333,15.6,50.28,24.8025,43.745,26.5,50.45,23.7257142857,48.4714285714,17.1,745.5,79.6666666667,3.3333333333,40,13.4666666667,13.7224805192,13.7224805192 -70,0,25.29,48.7,24.2,48.09,26.1428571429,45.0771428571,25.6,45.925,24.2,63.7666666667,15.4,50.9242857143,24.87,43.678,26.4266666667,50.7666666667,23.79,48.4,17.1,745.55,79,4,40,13.35,15.1106158271,15.1106158271 -60,0,25.29,48.7,24.1,48.134,26.15,45,25.56,45.834,24.1666666667,63.1933333333,15.234,51.596,24.79,43.5257142857,26.4266666667,51.0266666667,23.79,48.2928571429,17.1,745.6,78.3333333333,4.6666666667,40,13.2333333333,45.1778303366,45.1778303366 -60,0,25.2,48.59,24.1,48.2514285714,26.2,44.98,25.6,45.79,24.1,62.8,15.1642857143,52.1685714286,24.85,43.46,26.39,51.23,23.79,48.2,17.1,745.65,77.6666666667,5.3333333333,40,13.1166666667,8.9172987849,8.9172987849 -50,0,25.2,48.59,24.04,48.236,26.2,44.9,25.54,45.656,24.1,62.1933333333,14.89,52.334,24.8328571429,43.3842857143,26.39,51.23,23.79,48.1685714286,17.1,745.7,77,6,40,13,35.5296181282,35.5296181282 -60,0,25.2,48.59,23.98625,48.23375,26.2,44.856,25.5142857143,45.59,24.1,61.7266666667,14.8385714286,52.8128571429,24.83,43.316,26.4266666667,51.29,23.83,48.134,16.7333333333,745.7333333333,79.6666666667,5.6666666667,40,13.1166666667,38.5966688045,38.5966688045 -40,0,25.2,48.53,23.9388888889,48.29,26.2,44.9,25.5,45.536,24.1,61.245,14.778,53.396,24.79,43.2,26.5,51.3633333333,23.89,48.1528571429,16.3666666667,745.7666666667,82.3333333333,5.3333333333,40,13.2333333333,19.323670608,19.323670608 -60,0,25.2,48.5,23.89,48.4,26.2514285714,44.9985714286,25.5,45.4285714286,24.1,60.7233333333,14.6642857143,53.3114285714,24.85,43.2,26.4633333333,51.4,23.89,48.178,16,745.8,85,5,40,13.35,41.9749998022,41.9749998022 -70,0,25.2,48.4333333333,23.8471428571,48.4985714286,26.29,45.09,25.5,45.4,24.1,60.39,14.456,52.96,24.8042857143,43.1528571429,26.39,51.3266666667,23.89,48.09,15.6333333333,745.8333333333,87.6666666667,4.6666666667,40,13.4666666667,25.9260026854,25.9260026854 -50,0,25.2,48.4666666667,23.83,48.554,26.29,45.09,25.5,45.4,24.1,59.99,14.25,52.9142857143,24.85,43.134,26.39,50.9,23.89,48.09,15.2666666667,745.8666666667,90.3333333333,4.3333333333,40,13.5833333333,41.7145099724,41.7145099724 -50,0,25.1333333333,48.3266666667,23.7642857143,48.59,26.33,45.2,25.5,45.4,24.1,59.6566666667,14.19,53.158,24.8614285714,43.09,26.39,50.9,23.89,48.0385714286,14.9,745.9,93,4,40,13.7,38.7914473889,38.7914473889 -60,0,25.1,48.29,23.7,48.59,26.3042857143,45.2,25.5,45.3685714286,24.1,59.2233333333,14.1257142857,53.6942857143,24.79,43,26.39,51.03,23.89,48,14.8,745.9,93.5,3.8333333333,40,13.6833333333,27.2847097716,27.2847097716 -50,0,25.1666666667,48.2,23.6857142857,48.6371428571,26.31,45.218,25.5,45.334,24.1,59.03,14,53.714,24.8042857143,43,26.3233333333,51.09,23.912,48,14.7,745.9,94,3.6666666667,40,13.6666666667,12.8167043207,12.8167043207 -60,0,25.1,48.2,23.6,48.6725,26.39,45.2257142857,25.5,45.3528571429,24.1,58.76,14.0625,54.53375,24.83,42.98,26.29,51.1266666667,23.9214285714,48,14.6,745.9,94.5,3.5,40,13.65,10.405611177,10.405611177 -60,0,25.1,48.09,23.6,48.718,26.39,45.2,25.478,45.356,24.0333333333,58.5,14.1,55.0514285714,24.79,42.9714285714,26.29,51.1266666667,24,48,14.5,745.9,95,3.3333333333,40,13.6333333333,34.0252244496,34.0252244496 -60,0,25.1,48.09,23.5285714286,48.79,26.39,45.2257142857,25.4371428571,45.4,24.0666666667,58.1933333333,14.08,55.09,24.79,42.96,26.29,51.2,23.9685714286,47.9857142857,14.4,745.9,95.5,3.1666666667,40,13.6166666667,34.4675748493,34.4675748493 -60,0,25.1,48.09,23.5,48.79,26.39,45.2,25.39,45.4,24,57.86,13.9685714286,55.0514285714,24.79,42.9,26.29,51.2,23.934,47.96,14.3,745.9,96,3,40,13.6,13.249058777,13.249058777 -50,0,25.1,48.03,23.4842857143,48.8842857143,26.4214285714,45.2,25.39,45.3057142857,24.0666666667,57.6933333333,13.89,55.44,24.79,42.9,26.2,51.4633333333,23.89,47.9285714286,14.2333333333,745.8666666667,96,2.6666666667,37,13.55,23.261500115,23.261500115 -60,0,25.1,48,23.39,48.9,26.434,45.156,25.39,45.312,24,57.4333333333,14.0271428571,55.7971428571,24.79,42.9,26.2,51.7233333333,24,47.94,14.1666666667,745.8333333333,96,2.3333333333,34,13.5,26.4630256454,26.4630256454 -60,0,25.1,48,23.39,48.9714285714,26.5,45.1685714286,25.39,45.3214285714,24,57.1633333333,14,55.894,24.79,42.834,26.2,51.79,24,47.9285714286,14.1,745.8,96,2,31,13.45,44.9323494802,44.9323494802 -60,0,25.0666666667,48,23.35,49,26.5,45.09,25.39,45.29,24,56.9633333333,14.0285714286,56.2257142857,24.79,42.8057142857,26.1333333333,51.8633333333,24,47.94,14.0333333333,745.7666666667,96,1.6666666667,28,13.4,33.1000114558,33.1000114558 -50,0,25,48,23.3185714286,49.0514285714,26.5,45.09,25.39,45.2771428571,24,56.76,14,56.254,24.79,42.79,26.1,52.2,24,47.9,13.9666666667,745.7333333333,96,1.3333333333,25,13.35,29.7442115494,29.7442115494 -60,0,25,47.9666666667,23.29,49.09,26.5,45.054,25.39,45.2,24,56.6266666667,13.8928571429,56.2985714286,24.79,42.79,26.1,52.6266666667,24,47.9,13.9,745.7,96,1,22,13.3,25.9698431124,25.9698431124 -50,0,25,47.9,23.29,49.09,26.5,45,25.39,45.2,24,56.4666666667,13.778,56.254,24.79,42.79,26.1,52.8333333333,24,47.9,13.9166666667,745.6666666667,95.8333333333,1,22.3333333333,13.2833333333,10.9347180696,10.9347180696 -60,0,25,47.9,23.254,49.09,26.52,45,25.39,45.2,24,56.3266666667,13.6642857143,56.1685714286,24.79,42.7385714286,26.1,52.9,24,47.9,13.9333333333,745.6333333333,95.6666666667,1,22.6666666667,13.2666666667,48.1328779948,48.1328779948 -60,0,25,47.9,23.2,49.09,26.5571428571,45,25.3471428571,45.1371428571,24,56.1633333333,13.456,55.754,24.79,42.7,26.1,52.8266666667,24,47.9,13.95,745.6,95.5,1,23,13.25,35.7556281495,35.7556281495 -60,0,25,47.9,23.2,49.09,26.54,45,25.39,45.09,24,56.03,13.2842857143,55.4685714286,24.79,42.6685714286,26.1,52.7233333333,24,47.9,13.9666666667,745.5666666667,95.3333333333,1,23.3333333333,13.2333333333,13.5720209102,13.5720209102 -50,0,25,47.9,23.2,49.09,26.6,44.8985714286,25.3185714286,45.0257142857,24,56,13.058,54.998,24.79,42.59,26.1,52.59,23.9528571429,47.9,13.9833333333,745.5333333333,95.1666666667,1,23.6666666667,13.2166666667,31.483239762,31.483239762 -60,0,24.89,47.79,23.1,49.134,26.6,44.79,25.29,44.9428571429,23.9633333333,55.79,12.8642857143,54.5357142857,24.71125,42.53375,26.1,52.3333333333,24,47.9,14,745.5,95,1,24,13.2,13.6521949549,13.6521949549 -50,0,24.89,47.79,23.1,49.1057142857,26.6,44.79,25.29,44.8633333333,23.89,55.73,12.654,54.59,24.7385714286,42.4428571429,26.0333333333,52.0666666667,24,47.9,13.8,745.4333333333,95.1666666667,1,30.3333333333,13.0333333333,21.6700846679,21.6700846679 -70,0,24.89,47.76,23.1,49.156,26.6,44.7675,25.29,44.7385714286,23.9266666667,55.56,12.5428571429,54.7271428571,24.754,42.4,26,51.8633333333,24,47.94,13.6,745.3666666667,95.3333333333,1,36.6666666667,12.8666666667,18.1430245866,18.1430245866 -50,0,24.89,47.7,23.0714285714,49.1685714286,26.6,44.736,25.29,44.7,23.9266666667,55.4333333333,12.52,55.234,24.7257142857,42.3214285714,26,51.79,24,47.9571428571,13.4,745.3,95.5,1,43,12.7,9.8979658331,9.8979658331 -60,0,24.89,47.6266666667,23,49.09,26.6,44.7128571429,25.29,44.7,23.89,55.29,12.6,55.59,24.754,42.29,26,51.79,24,47.96,13.2,745.2333333333,95.6666666667,1,49.3333333333,12.5333333333,39.5827678964,39.5827678964 -50,0,24.89,47.59,23,49.09,26.6,44.678,25.29,44.656,23.89,55.23,12.56,55.5,24.7,42.2385714286,26,51.79,24,47.9714285714,13,745.1666666667,95.8333333333,1,55.6666666667,12.3666666667,28.1526305364,28.1526305364 -50,0,24.89,47.53,23,49.09,26.6,44.59,25.29,44.59,23.89,55.06,12.4371428571,55.5128571429,24.7,42.2,25.9266666667,51.4266666667,24,48,12.8,745.1,96,1,62,12.2,17.0397116686,17.0397116686 -50,0,24.89,47.5,22.9214285714,49.1214285714,26.6,44.59,25.29,44.59,23.89,55,12.39,55.63,24.7,42.1685714286,25.9266666667,51.3666666667,24,48,12.7666666667,745.0833333333,96.3333333333,1,60.1666666667,12.2166666667,30.5846258998,30.5846258998 -50,0,24.89,47.5,22.89,49.2,26.6,44.59,25.29,44.5642857143,23.89,54.8633333333,12.4214285714,55.9228571429,24.7,42.09,25.89,51.06,24,48,12.7333333333,745.0666666667,96.6666666667,1,58.3333333333,12.2333333333,21.1307292338,21.1307292338 -50,0,24.8566666667,47.4,22.89,49.1685714286,26.6,44.59,25.2,44.5,23.89,54.79,12.5,56.10625,24.7,42.09,25.89,50.9333333333,24,47.9714285714,12.7,745.05,97,1,56.5,12.25,34.1383803287,34.1383803287 -50,0,24.79,47.3266666667,22.87,49.2,26.55,44.59,25.2,44.5,23.89,54.6633333333,12.6,56.29,24.7,42.036,25.89,50.754,24,48,12.6666666667,745.0333333333,97.3333333333,1,54.6666666667,12.2666666667,22.7871356183,22.7871356183 -50,0,24.79,47.3633333333,22.8525,49.25625,26.52,44.59,25.2,44.5,23.89,54.53,12.6,56.29,24.7,42,25.89,50.6371428571,24,48,12.6333333333,745.0166666667,97.6666666667,1,52.8333333333,12.2833333333,16.6113685817,16.6113685817 -60,0,24.79,47.29,22.79,49.2257142857,26.5,44.59,25.2,44.5,23.89,54.4666666667,12.4633333333,56.2233333333,24.7,42,25.89,50.516,24,48,12.6,745,98,1,51,12.3,13.1833887193,13.1833887193 -50,0,24.79,47.2,22.79,49.29,26.55,44.59,25.2,44.5,23.89,54.3266666667,12.33,55.9633333333,24.7,42,25.89,50.4,24,48,12.55,744.95,98.1666666667,1,52.6666666667,12.2666666667,46.3970831246,46.3970831246 -70,0,24.79,47.2,22.7514285714,49.29,26.5,44.59,25.2,44.4142857143,23.89,54.2,12.16,55.56,24.7,41.94,25.85,50.254,24,48,12.5,744.9,98.3333333333,1,54.3333333333,12.2333333333,44.7452434921,44.7452434921 -50,0,24.79,47.2,22.736,49.29,26.5333333333,44.5,25.2,44.4,23.89,54.2,12.1,55.5,24.7,41.9,25.8328571429,50.1371428571,24,48,12.45,744.85,98.5,1,56,12.2,3.3671586192,3.3671586192 -50,0,24.79,47.2,22.7,49.29,26.5833333333,44.5,25.2,44.4,23.89,54.06,11.9333333333,55.1233333333,24.7,41.856,25.79,49.95875,24,48,12.4,744.8,98.6666666667,1,57.6666666667,12.1666666667,48.015558708,48.015558708 -60,0,24.79,47.1633333333,22.7,49.29,26.52,44.44,25.2,44.29,23.89,54,11.8,54.79,24.7,41.8214285714,25.79,49.75,24,47.98,12.35,744.75,98.8333333333,1,59.3333333333,12.1333333333,30.6981544592,30.6981544592 -60,0,24.79,47.09,22.7,49.29,26.5333333333,44.5,25.1428571429,44.2128571429,23.89,53.8633333333,11.66,54.79,24.66,41.754,25.79,49.59,23.9685714286,47.9428571429,12.3,744.7,99,1,61,12.1,13.4835022385,13.4835022385 -50,0,24.76,47.09,22.66,49.254,26.5857142857,44.4142857143,25.15,44.2,23.89,53.79,11.6,55.0633333333,24.6714285714,41.7328571429,25.79,49.4,24,47.9,12.25,744.65,98.6666666667,1,61.5,12.0166666667,40.6356122461,40.6356122461 -60,0,24.7,47.09,22.6285714286,49.2642857143,26.6,44.4,25.1,44.2,23.89,53.7,11.6,55.3266666667,24.7,41.7,25.7771428571,49.3371428571,24,47.8371428571,12.2,744.6,98.3333333333,1,62,11.9333333333,7.6433196198,7.6433196198 -90,0,24.7,47.06,22.66,49.254,26.6,44.4,25.1,44.2,23.89,53.56,11.66,55.6,24.6857142857,41.6057142857,25.754,49.29,24,47.812,12.15,744.55,98,1,62.5,11.85,25.3436195082,25.3436195082 -50,0,24.7,47.1933333333,22.6,49.4642857143,26.5428571429,44.2385714286,25.1,44.2,23.89,53.5,11.7266666667,55.9,24.6,41.545,25.7642857143,49.29,24,47.8214285714,12.1,744.5,97.6666666667,1,63,11.7666666667,32.3531898903,32.3531898903 -60,0,24.79,47.56,22.6,49.754,26.478,43.994,25.1,44.09,23.79,53.29,11.8,55.9,24.6,41.5,25.7,49.29,24,47.79,12.05,744.45,97.3333333333,1,63.5,11.6833333333,8.0076776096,8.0076776096 -50,10,24.79,47.375,22.6,49.79,26.34,43.79,25.1,44.1371428571,23.79,52.8966666667,11.83,56.03,24.6,41.5,25.7,49.3057142857,24,47.7771428571,12,744.4,97,1,64,11.6,33.8002165314,33.8002165314 -40,0,24.79,47.1266666667,22.6,49.656,26.2385714286,43.5985714286,25.1,44.09,23.89,52.6266666667,11.9633333333,56.1633333333,24.6,41.5,25.7,49.478,24,47.7,11.8333333333,744.3833333333,97.3333333333,1,54.1666666667,11.4833333333,45.5151551636,45.5151551636 -50,0,24.79,47,22.6,49.6214285714,26.14,43.5,25.1,44.09,23.8233333333,52.7,12.13,56.3266666667,24.6,41.48,25.7,49.4971428571,24,47.6214285714,11.6666666667,744.3666666667,97.6666666667,1,44.3333333333,11.3666666667,12.0542915887,12.0542915887 -40,0,24.79,47,22.6,49.572,26.1,43.5,25.1,44.09,23.79,52.79,12.3225,56.5925,24.6,41.4375,25.7,49.254,24,47.5,11.5,744.35,98,1,34.5,11.25,39.3123002839,39.3123002839 -50,0,24.79,47,22.6714285714,49.5642857143,26.1,43.4,25.1,44.09,23.79,52.79,12.7,56.99,24.6,41.4,25.6857142857,49.04,23.9842857143,47.4428571429,11.3333333333,744.3333333333,98.3333333333,1,24.6666666667,11.1333333333,38.477818307,38.477818307 -60,0,24.79,47,22.736,49.5,26.0428571429,43.4571428571,25.1,44.09,23.8566666667,52.8633333333,13.1966666667,57.29,24.6,41.4,25.6,48.834,23.912,47.334,11.1666666667,744.3166666667,98.6666666667,1,14.8333333333,11.0166666667,49.1239803145,49.1239803145 -60,0,24.79,47,22.8471428571,49.3985714286,26,43.48,25.1,44.134,23.8566666667,52.79,13.53,57.43,24.6,41.4,25.6,48.6942857143,24,47.2642857143,11,744.3,99,1,5,10.9,32.9338982818,32.9338982818 -60,0,24.79,47,22.976,49.272,26,43.4,25.1,44.2,23.79,52.7,13.7266666667,57.59,24.6,41.42,25.6,48.59,24,47.2,11.3666666667,744.3,99,1,11.3333333333,11.25,22.5349199492,22.5349199492 -50,0,24.79,47,23.1285714286,49.0957142857,26,43.4,25.1,44.2,23.79,52.6266666667,14,57.7966666667,24.6,41.4571428571,25.6,48.5128571429,24,47.1057142857,11.7333333333,744.3,99,1,17.6666666667,11.6,48.6210601404,48.6210601404 -60,10,24.79,47,23.33,48.82,26,43.4,25.1,44.2,23.8233333333,52.59,14.49,58.0666666667,24.6,41.5,25.58,48.44,24,47.09,12.1,744.3,99,1,24,11.95,11.0888071591,11.0888071591 -50,0,24.79,47.03,23.4814285714,48.5542857143,26.02,43.4,25.1,44.2,23.8233333333,52.59,14.8233333333,58.3333333333,24.6,41.53,25.5,48.4,24,47.09,12.4666666667,744.3,99,1,30.3333333333,12.3,49.950529635,49.950529635 -70,0,24.79,47.1633333333,23.854,48.22,26.0571428571,43.4,25.1,44.2225,23.79,52.5,15.43,58.6566666667,24.62,41.696,25.5,48.4,24,47.036,12.8333333333,744.3,99,1,36.6666666667,12.65,31.8057157914,31.8057157914 -50,0,24.79,47.23,24.4214285714,47.35,26.1,43.356,25.12,44.312,23.79,52.5,15.8966666667,58.73,24.7,41.9,25.5,48.4,24.0625,47.0675,13.2,744.3,99,1,43,13,23.4434187063,23.4434187063 -60,0,24.79,47.3633333333,24.7,46.62,26.1,43.3528571429,25.16,44.4,23.8233333333,52.5,16.3933333333,58.6933333333,24.6333333333,41.9,25.5,48.4,24.0857142857,47.09,13.6166666667,744.3166666667,97.1666666667,1.1666666667,46.1666666667,13.1166666667,16.0408357042,16.0408357042 -50,0,24.8566666667,47.4666666667,24.5875,46.4125,26.1,43.4,25.2,44.4,23.8233333333,52.4333333333,16.6,57.5,24.6571428571,42.0085714286,25.5,48.4714285714,24,47.09,14.0333333333,744.3333333333,95.3333333333,1.3333333333,49.3333333333,13.2333333333,27.3655143217,27.3655143217 -50,0,24.79,47.4666666667,24.4528571429,46.4985714286,26.04,43.5,25.2,44.4,23.79,52.4666666667,16.86,57.09,24.7,42.174,25.5,48.44,24,47.09,14.45,744.35,93.5,1.5,52.5,13.35,0.1226811903,0.1226811903 -50,0,24.8566666667,47.56,24.5,46.612,26.1,43.5,25.2,44.5,23.79,52.295,17.1333333333,54.7566666667,24.6285714286,42.1471428571,25.5,48.5,24,47.09,14.8666666667,744.3666666667,91.6666666667,1.6666666667,55.6666666667,13.4666666667,25.9559391183,25.9559391183 -50,0,24.79,47.56,24.5714285714,46.5957142857,26.0571428571,43.5,25.2,44.5,23.79,52.2,17.6966666667,51.8966666667,24.66,42.254,25.5,48.518,24.0285714286,47.21,15.2833333333,744.3833333333,89.8333333333,1.8333333333,58.8333333333,13.5833333333,45.5975540797,45.5975540797 -40,0,24.8566666667,47.6633333333,24.6,46.4,26,43.518,25.2,44.59,23.8233333333,52.09,18.0966666667,47.8966666667,24.6833333333,42.3666666667,25.4266666667,48.59,24,47.2,15.7,744.4,88,2,62,13.7,9.7021457856,9.7021457856 -50,10,24.79,47.6633333333,24.6142857143,46.2671428571,26,43.59,25.2,44.59,23.89,52.03,18.46,44.5933333333,24.7,42.4333333333,25.39,48.59,24,47.2257142857,15.8333333333,744.3833333333,86,2.1666666667,55.3333333333,13.4666666667,7.5243939646,7.5243939646 -40,0,24.84,47.745,24.68,46.25,26,43.634,25.2,44.6842857143,23.89,51.9666666667,18.6666666667,42.0666666667,24.7,42.5,25.39,48.59,24,47.29,15.9666666667,744.3666666667,84,2.3333333333,48.6666666667,13.2333333333,27.0743846893,27.0743846893 -50,0,24.8566666667,47.79,24.6714285714,46.1685714286,26,43.7,25.2,44.7,23.89,51.9,19.0666666667,41.1333333333,24.7,42.59,25.39,48.59,24,47.29,16.1,744.35,82,2.5,42,13,0.818052364,0.818052364 -50,0,24.8566666667,47.8633333333,24.7,46.2,26,43.718,25.2,44.7257142857,23.89,51.9,19.2475,38.245,24.7,42.59,25.39,48.59,24.02,47.312,16.2333333333,744.3333333333,80,2.6666666667,35.3333333333,12.7666666667,32.571849972,32.571849972 -60,0,24.8566666667,47.8633333333,24.6428571429,46.1371428571,26,43.79,25.2,44.754,23.89,51.8266666667,19.39,36.4,24.7,42.59,25.39,48.59,24.0285714286,47.3214285714,16.3666666667,744.3166666667,78,2.8333333333,28.6666666667,12.5333333333,35.5723315501,35.5723315501 -60,0,24.79,47.79,24.6,46.09,26,43.79,25.2,44.7771428571,23.89,51.76,19.26,35.4333333333,24.7,42.6633333333,25.39,48.59,24,47.29,16.5,744.3,76,3,22,12.3,6.9377802894,6.9377802894 -60,0,24.79,47.8266666667,24.6285714286,46.1214285714,26,43.79,25.218,44.812,23.8233333333,51.7,19.2,35.3,24.7,42.7,25.39,48.59,24,47.29,16.5166666667,744.3166666667,75.6666666667,3,21.6666666667,12.2333333333,35.0325566833,35.0325566833 -60,0,24.8566666667,47.9666666667,24.7,46.09,26,43.812,25.2642857143,44.8528571429,23.89,51.7,19.2633333333,34.6566666667,24.7,42.7225,25.39,48.59,24,47.29,16.5333333333,744.3333333333,75.3333333333,3,21.3333333333,12.1666666667,21.1241344805,21.1241344805 -50,0,24.89,48,24.7,46.09,26,43.8528571429,25.2,44.9,23.8233333333,51.6266666667,19.3233333333,33.0633333333,24.7,42.79,25.39,48.6633333333,24,47.29,16.55,744.35,75,3,21,12.1,17.1012317762,17.1012317762 -60,10,24.89,48,24.718,46.072,26,43.856,25.2,44.9,23.89,51.59,19.1,32.0233333333,24.7,42.76,25.39,48.59,24.06,47.356,16.5666666667,744.3666666667,74.6666666667,3,20.6666666667,12.0333333333,0.2969679772,0.2969679772 -60,0,24.89,48,24.8185714286,46,26,43.88625,25.2385714286,44.9,23.89,51.59,19.2266666667,31.29,24.7,42.7,25.3566666667,48.59,24,47.29,16.5833333333,744.3833333333,74.3333333333,3,20.3333333333,11.9666666667,40.4923510971,40.4923510971 -50,0,24.89,48,25.04,45.71,26,43.8214285714,25.218,44.9,23.89,51.56,19.7666666667,26.5633333333,24.7,42.73,25.29,48.59,24.02,47.29,16.6,744.4,74,3,20,11.9,17.4802398775,17.4802398775 -50,0,24.89,47.9666666667,25.1571428571,45.44,26,43.856,25.29,44.9,23.89,51.5,20.0333333333,21.29,24.7,42.73,25.29,48.59,24.0285714286,47.2257142857,16.8833333333,744.4,72.5,3,20.8333333333,11.85,15.5661354424,15.5661354424 -50,0,24.89,47.9,25.254,45.176,26,43.8214285714,25.29,44.79,23.89,51.4666666667,20.0666666667,22.49,24.7,42.7,25.29,48.53,24.04,47.2,17.1666666667,744.4,71,3,21.6666666667,11.8,31.02443479,31.02443479 -50,0,24.9633333333,47.8633333333,25.3614285714,44.7957142857,26,43.834,25.29,44.7771428571,23.89,51.4,20.3266666667,21.0966666667,24.76,42.6266666667,25.29,48.4666666667,24.0428571429,47.1371428571,17.45,744.4,69.5,3,22.5,11.75,23.8067190978,23.8067190978 -50,0,24.9633333333,47.8633333333,25.39,44.59,26,43.8528571429,25.29,44.7,23.89,51.4,20.26,20.8233333333,24.76,42.59,25.29,48.4,24.06,47.09,17.7333333333,744.4,68,3,23.3333333333,11.7,29.3774893158,29.3774893158 -50,0,25,47.79,25.4528571429,44.4657142857,26,43.856,25.29,44.7,23.89,51.3266666667,20.4666666667,18.89,24.76,42.53,25.26,48.29,24.1,47.09,18.0166666667,744.4,66.5,3,24.1666666667,11.65,46.5845903265,46.5845903265 -50,0,25,47.79,25.58,44.196,26,43.8214285714,25.39,44.656,23.89,51.29,21,15,24.79,42.4666666667,25.26,48.29,24.1,47,18.3,744.4,65,3,25,11.6,19.5774580003,19.5774580003 -60,0,25.0333333333,47.76,25.7257142857,43.8971428571,26,43.834,25.39,44.59,23.89,51.2225,21.26,13.1333333333,24.79,42.3266666667,25.29,48.29,24.1,47,18.55,744.3666666667,64.3333333333,2.8333333333,24.8333333333,11.6666666667,10.739187384,10.739187384 -60,10,25.1,47.7,25.79,43.59,26.0857142857,43.8057142857,25.39,44.572,23.9633333333,51.2,21.7633333333,9.4933333333,24.89,42.4,25.29,48.29,24.1,46.94,18.8,744.3333333333,63.6666666667,2.6666666667,24.6666666667,11.7333333333,40.9440491814,40.9440491814 -50,0,25.1,47.6633333333,25.8757142857,43.5385714286,26.1,43.79,25.39,44.4714285714,24,51.2,22.0966666667,8.3,24.89,42.4,25.26,48.2,24.1,46.9,19.05,744.3,63,2.5,24.5,11.8,5.1877805497,5.1877805497 -60,0,25.1666666667,47.59,25.912,43.5,26.1,43.79,25.456,44.4,24,51.1266666667,22.6966666667,6.0233333333,24.89,42.3633333333,25.26,48.2,24.1,46.8214285714,19.3,744.2666666667,62.3333333333,2.3333333333,24.3333333333,11.8666666667,4.5592784998,4.5592784998 -50,0,25.2,47.5,26,43.7,26.1,43.79,25.4842857143,44.3371428571,24,51.09,22.8233333333,4.1633333333,24.9633333333,42.29,25.245,48.145,24.1,46.79,19.55,744.2333333333,61.6666666667,2.1666666667,24.1666666667,11.9333333333,33.9763963129,33.9763963129 -60,0,25.29,47.4,26.1,43.53375,26.1428571429,43.7128571429,25.5,44.29,24,51.09,23.1,2.745,25,42.2,25.29,48.09,24.1,46.7385714286,19.8,744.2,61,2,24,12,39.2354927608,39.2354927608 -60,0,25.29,47.3266666667,26.2,43.356,26.16,43.7,25.5285714286,44.2257142857,24,51.09,23.1633333333,2.8333333333,25.0666666667,42.2,25.23,48.09,24.1,46.7,20,744.1833333333,60,2.1666666667,24,11.9166666667,39.8436204065,39.8436204065 -60,0,25.3233333333,47.29,26.2,43.2128571429,26.2,43.6685714286,25.54,44.2,24,51.09,23.29,2.0266666667,25.1,42.09,25.26,48,24.1,46.6685714286,20.2,744.1666666667,59,2.3333333333,24,11.8333333333,40.9496921347,40.9496921347 -50,0,25.39,47.23,26.2,43.134,26.2,43.59,25.6,44.1371428571,24,51.03,23.2633333333,1.39,25.1,42.03,25.26,48,24.1,46.59,20.4,744.15,58,2.5,24,11.75,45.678804256,45.678804256 -60,0,25.39,47.1633333333,26.2,43.09,26.2,43.59,25.6,44.09,24,51.03,23.3233333333,1.5966666667,25.1,41.9,25.29,48,24.1,46.59,20.6,744.1333333333,57,2.6666666667,24,11.6666666667,31.6546622431,31.6546622431 -50,0,25.39,47.09,26.2,43.09,26.218,43.59,25.6,44.09,24,51,23.7333333333,2.8333333333,25.175,41.9,25.23,48,24.1,46.536,20.8,744.1166666667,56,2.8333333333,24,11.5833333333,7.6233409345,7.6233409345 -60,0,25.5,47.09,26.2,43.09,26.29,43.59,25.6,44.054,24,51,24.1933333333,1.1666666667,25.2,41.9,25.2,48,24.1,46.5,21,744.1,55,3,24,11.5,43.376708508,43.376708508 -60,0,25.5,47.03,26.2,43.072,26.254,43.59,25.6142857143,44.0257142857,24.0666666667,51.0266666667,24.36,1.0333333333,25.23,41.79,25.26,47.86,24.1,46.5,21.0333333333,744.1,55.3333333333,3.1666666667,24.5,11.6333333333,3.4263744135,3.4263744135 -60,0,25.5,46.9,26.2257142857,43,26.2514285714,43.5128571429,25.64,43.98,24,50.9,24.6333333333,1.0333333333,25.23,41.73,25.23,47.79,24.1,46.5,21.0666666667,744.1,55.6666666667,3.3333333333,25,11.7666666667,20.6852714415,20.6852714415 -50,0,25.5,46.9,26.236,42.9,26.29,43.5,25.6428571429,43.9,24.1,51,24.8,1.0666666667,25.29,41.7,25.29,47.79,24.1,46.44,21.1,744.1,56,3.5,25.5,11.9,14.1235480318,14.1235480318 -70,0,25.5333333333,46.79,26.2771428571,42.9,26.29,43.5,25.66,43.9,24.1,51,24.9266666667,1.0666666667,25.29,41.7,25.29,47.79,24.1428571429,46.4,21.1333333333,744.1,56.3333333333,3.6666666667,26,12.0333333333,11.013893038,11.013893038 -40,0,25.6,46.79,26.236,42.9,26.29,43.44,25.6428571429,43.9,24.1,51,24.7266666667,1,25.29,41.7,25.23,47.8633333333,24.1,46.4,21.1666666667,744.1,56.6666666667,3.8333333333,26.5,12.1666666667,31.2259954284,31.2259954284 -50,0,25.5,46.79,26.2,42.9,26.29,43.4285714286,25.7,43.9,24.1,51,24.6666666667,1,25.29,41.6266666667,25.29,47.79,24.1,46.4,21.2,744.1,57,4,27,12.3,37.3100774712,37.3100774712 -60,0,25.5,46.73,26.2,42.96,26.29,43.5,25.7,43.9,24.1,51,24.9266666667,1,25.29,41.59,25.29,47.79,24.1,46.4,21.2,744.1,57.1666666667,3.8333333333,26.5,12.3666666667,32.4968859088,32.4968859088 -80,0,25.5333333333,46.7,26.1857142857,42.9985714286,26.29,43.5,25.7,43.83125,24.1,51.8,24.86,1,25.29,41.59,25.23,47.9933333333,24.1,46.4,21.2,744.1,57.3333333333,3.6666666667,26,12.4333333333,39.294268121,39.294268121 -60,0,25.6,46.7,26.1,43.09,26.29,43.5,25.7,43.856,24.1,52.3266666667,24.4,1.26,25.29,41.73,25.29,48.9333333333,24.16,46.356,21.2,744.1,57.5,3.5,25.5,12.5,12.0797513868,12.0797513868 -80,0,25.6,46.7,26.1,43.1214285714,26.29,43.5,25.6857142857,43.8842857143,24.1,52.4,24.2,1.6666666667,25.29,41.79,25.39,49.6266666667,24.1428571429,46.3842857143,21.2,744.1,57.6666666667,3.3333333333,25,12.5666666667,29.2834268999,29.2834268999 -80,0,25.6,46.7,26.1,43.2,26.29,43.5514285714,25.64,43.9,24.1,52.6,24.6,2.7266666667,25.2,41.9,25.4633333333,49.8333333333,24.1,46.4,21.2,744.1,57.8333333333,3.1666666667,24.5,12.6333333333,18.905644631,18.905644631 -100,0,25.6,46.7,26.0571428571,43.34,26.254,43.59,25.6714285714,43.9714285714,24.1,52.59,24.46,3.4666666667,25.2,42.0266666667,25.5,50.1566666667,24.1,46.4,21.2,744.1,58,3,24,12.7,44.4969991571,44.4969991571 -100,0,25.6,46.7,26.04,43.4,26.29,43.59,25.64,44.036,24.1,52.53,24.5,4.3233333333,25.2,42.2,25.6,50.3175,24.2,46.5,21.2,744.1,57.8333333333,2.8333333333,24.8333333333,12.65,47.1711730235,47.1711730235 -110,0,25.6,46.7,26,43.4714285714,26.29,43.59,25.6428571429,44.09,24.1,52.4666666667,24.5666666667,4.1966666667,25.2,42.3333333333,25.76,50.4,24.1142857143,46.5,21.2,744.1,57.6666666667,2.6666666667,25.6666666667,12.6,37.5979996286,37.5979996286 -200,0,25.6,47.0933333333,25.956,44.09,26.2385714286,43.8914285714,25.6,44.156,24.1,52.4,24.445,4.545,25.26,42.5,25.8233333333,50.2233333333,24.14,46.594,21.2,744.1,57.5,2.5,26.5,12.55,28.3945202245,28.3945202245 -100,0,25.6,48.2333333333,25.7385714286,45.7842857143,26.2,44.38,25.6714285714,44.2,24.1,52.29,24.5666666667,4.9333333333,25.2,42.56,25.9633333333,50.3633333333,24.1714285714,46.8685714286,21.2,744.1,57.3333333333,2.3333333333,27.3333333333,12.5,22.9030715767,22.9030715767 -100,0,25.6,49.2,25.58,47.056,26.2,44.9714285714,25.64,44.29,24.1,52.29,25.0333333333,4.3333333333,25.26,42.79,26.1,50.3633333333,24.2,47,21.2,744.1,57.1666666667,2.1666666667,28.1666666667,12.45,26.0226561804,26.0226561804 -100,0,25.5333333333,49.26,25.5,46.9285714286,26.2,45.334,25.6142857143,44.3842857143,24.2,52.29,25.1233333333,1.43,25.26,42.79,26.1,50.23,24.2,47.075,21.2,744.1,57,2,29,12.4,41.1825141986,41.1825141986 -110,0,25.5,49.26,25.39,47.09,26.1571428571,45.4571428571,25.6,44.4,24.2,52.3633333333,24.73,1.8966666667,25.245,42.79,26.23,50.26,24.1857142857,47.0128571429,21.2,744.1,56.5,2.3333333333,29,12.2666666667,3.1512125279,3.1512125279 -120,0,25.5,49.2,25.4842857143,46.7371428571,26.2,45.5,25.6,44.4285714286,24.2,52.3633333333,24.4,1.26,25.2,42.8633333333,26.3566666667,50.0666666667,24.16,47,21.2,744.1,56,2.6666666667,29,12.1333333333,14.7873876034,14.7873876034 -110,0,25.5,49.26,25.5,46.4,26.2,45.5,25.6,44.46,24.2,52.1566666667,23.8666666667,1,25.2,42.79,26.5,49.6933333333,24.2,46.9285714286,21.2,744.1,55.5,3,29,12,21.0080231423,21.0080231423 -470,0,25.5,49,25.5,46.07125,26.2,45.4,25.6,44.4,24.2,51.9666666667,23.0633333333,1.2333333333,25.2,42.6633333333,26.5666666667,49.36,24.14,46.9,21.2,744.1,55,3.3333333333,29,11.8666666667,47.6493474212,47.6493474212 -340,0,25.5333333333,49.5933333333,25.4685714286,45.8814285714,26.1714285714,45.3371428571,25.6,44.378,24.1333333333,51.8266666667,22.6633333333,1.4933333333,25.2,42.53,26.6333333333,49.2,24.1428571429,46.8057142857,21.2,744.1,54.5,3.6666666667,29,11.7333333333,1.2323049945,1.2323049945 -100,0,25.6,53.26,25.5,46.79,26.2,45.332,25.6,44.2257142857,24.2,51.7666666667,21.9,1.5966666667,25.1666666667,42.2233333333,26.7,48.9266666667,24.16,46.714,21.2,744.1,54,4,29,11.6,15.6531157321,15.6531157321 -110,0,25.6,51.3333333333,25.4371428571,47.1328571429,26.2,45.5957142857,25.6,44.156,24.1333333333,51.9666666667,21.6333333333,2.99,25.1,42.03,26.6,48.3633333333,24.1571428571,46.5257142857,20.8833333333,744.1,55,3.6666666667,30.8333333333,11.5666666667,17.4920414109,17.4920414109 -110,0,25.6,50.86,25.39,47.036,26.2,45.79,25.5714285714,44.09,24.2,52.1266666667,21.26,5.6266666667,25.1,42.03,26.6666666667,48.43,24.14,46.634,20.5666666667,744.1,56,3.3333333333,32.6666666667,11.5333333333,9.2346931808,9.2346931808 -90,0,25.6,50.2966666667,25.3185714286,46.9714285714,26.2,45.7385714286,25.58,44.09,24.2,52.1266666667,21.1333333333,6.96,25.1,42.1633333333,26.7,48.73,24.2,46.7671428571,20.25,744.1,57,3,34.5,11.5,23.9361547516,23.9361547516 -110,0,25.6,49.9633333333,25.29,46.856,26.2,45.678,25.5428571429,44.1685714286,24.1666666667,52.06,20.8566666667,8.0333333333,25.1,42.4333333333,26.7,48.79,24.2,46.92,19.9333333333,744.1,58,2.6666666667,36.3333333333,11.4666666667,14.1166634392,14.1166634392 -110,0,25.6,49.56,25.2128571429,46.79,26.2,45.5257142857,25.5,44.236,24.1666666667,51.9333333333,20.6633333333,8.4333333333,25.1,42.5,26.7,48.7,24.2,47.0257142857,19.6166666667,744.1,59,2.3333333333,38.1666666667,11.4333333333,35.1298465859,35.1298465859 -130,0,25.6,49.36,25.14,46.772,26.2,45.4,25.5,44.29,24.1,51.76,20.3266666667,8.83,25.1,42.59,26.7,48.7,24.2,47.09,19.3,744.1,60,2,40,11.4,24.6269364608,24.6269364608 -120,0,25.6,49.06,25.1,46.6685714286,26.2,45.3371428571,25.5,44.356,24.175,51.595,20.1333333333,9.2966666667,25.1,42.6633333333,26.73,48.7,24.2,47.0514285714,19.2166666667,744.1166666667,61,2,40,11.55,44.1499519511,44.1499519511 -120,0,25.6,48.86,25.1,46.554,26.2,45.29,25.5,44.4,24.2,51.4333333333,19.7933333333,10.1566666667,25.1,42.73,26.8566666667,48.7,24.2,47.054,19.1333333333,744.1333333333,62,2,40,11.7,38.4577511577,38.4577511577 -120,0,25.6,48.6633333333,25.1,46.5771428571,26.2,45.2128571429,25.5,44.44,24.1666666667,51.26,19.3333333333,11.1566666667,25.1,42.79,26.9266666667,48.8666666667,24.2,47.09,19.05,744.15,63,2,40,11.85,20.5981990905,20.5981990905 -130,0,25.525,48.5225,25.1,46.59,26.2,45.2,25.5,44.5,24.1666666667,51.2,18.93,12.7,25.1,42.9333333333,27,49.26,24.14,47.2,18.9666666667,744.1666666667,64,2,40,12,15.4764605337,15.4764605337 -120,0,25.5,48.4333333333,25.0285714286,46.6214285714,26.2,45.1214285714,25.5,44.5675,24.2,51.06,18.5966666667,14.16,25.1,43,27.05,49.245,24.1571428571,47.2,18.8833333333,744.1833333333,65,2,40,12.15,2.0564840641,2.0564840641 -130,0,25.5666666667,48.3633333333,24.89,46.7,26.2,45.09,25.456,44.59,24.2,51,18.195,16.15,25,43.1266666667,27.1333333333,49.2,24.14,47.218,18.8,744.2,66,2,40,12.3,29.5552533236,29.5552533236 -120,0,25.5,48.29,24.89,46.7771428571,26.2,45.0257142857,25.4685714286,44.59,24.2,50.9,17.8266666667,18.4266666667,25,43.2,27.2,49.2,24.1,47.29,18.6666666667,744.2666666667,67.1666666667,1.8333333333,40,12.4333333333,43.2073988253,43.2073988253 -80,0,25.5,48.29,24.83,46.812,26.2,45,25.39,44.7,24.2,50.9,17.6333333333,20.9666666667,25,43.23,27.23,49.09,24.1,47.334,18.5333333333,744.3333333333,68.3333333333,1.6666666667,40,12.5666666667,40.1478611166,40.1478611166 -70,0,25.5,48.29,24.79,46.9971428571,26.2,45,25.4214285714,44.8142857143,24.2,50.79,17.4633333333,24.9333333333,25,43.3633333333,27.23,49.2233333333,24.1,47.47,18.4,744.4,69.5,1.5,40,12.7,31.3016989618,31.3016989618 -70,0,25.5,48.3266666667,24.7,47.236,26.2,45,25.39,44.92,24.2,50.79,17.3233333333,28.1266666667,25,43.645,27.2,49.6933333333,24.08,47.656,18.2666666667,744.4666666667,70.6666666667,1.3333333333,40,12.8333333333,28.3372006845,28.3372006845 -130,0,25.5,48.4,24.7,47.4414285714,26.2,45,25.39,45.0957142857,24.1666666667,50.79,17.1666666667,30.9666666667,25,43.9,27.1333333333,50.0266666667,24.0714285714,47.8428571429,18.1333333333,744.5333333333,71.8333333333,1.1666666667,40,12.9666666667,49.779347796,49.779347796 -80,0,25.5,48.4333333333,24.64,47.594,26.2,45,25.39,45.4,24.1,50.79,17.0333333333,31.6333333333,25,44.0266666667,27.1,50.36,24,48,18,744.6,73,1,40,13.1,3.6088568158,3.6088568158 -70,10,25.5,48.56,24.6,47.9657142857,26.2,45,25.39,45.5371428571,24.1,50.9,16.5966666667,33.5666666667,25,44.23,27.1,50.6333333333,24.0428571429,48.1914285714,17.8,744.6666666667,73.6666666667,1,37.8333333333,13.0333333333,16.5236159693,16.5236159693 -80,10,25.5,48.73,24.5,48.236,26.2,45.054,25.39,45.674,24.1,50.9,16.1966666667,35.76,24.9266666667,44.29,27.0666666667,50.7266666667,24.025,48.3725,17.6,744.7333333333,74.3333333333,1,35.6666666667,12.9666666667,11.2598082167,11.2598082167 -80,10,25.5,48.8633333333,24.5285714286,48.3985714286,26.2,45.09,25.39,45.79,24.1666666667,51.03,15.7933333333,38.0633333333,24.9633333333,44.4,27.0666666667,51.1933333333,24,48.46,17.4,744.8,75,1,33.5,12.9,42.2468534671,42.2468534671 -60,0,25.5,49,24.478,48.554,26.2225,45.09,25.39,45.94,24.1,51.09,15.5333333333,39.79,24.9633333333,44.3266666667,27.0142857143,51.3842857143,24,48.5642857143,17.2,744.8666666667,75.6666666667,1,31.3333333333,12.8333333333,9.4171982841,9.4171982841 -60,0,25.5,49,24.39,48.59,26.29,45.09,25.39,46.1116666667,24.1,51.2,15.36,41.6,25,44.09,27,51.42,24,48.46,17,744.9333333333,76.3333333333,1,29.1666666667,12.7666666667,35.3340515518,35.3340515518 -60,0,25.4633333333,49.03,24.35,48.7,26.29,45.06,25.39,46.156,24.1,51.26,15.3,43.5266666667,25,44.03,27,51.6814285714,24.0428571429,48.2,16.8,745,77,1,27,12.7,32.3512015166,32.3512015166 -60,0,25.39,49.1633333333,24.315,48.7225,26.3566666667,45,25.39,46.1214285714,24.1,51.29,15.0666666667,44.7266666667,24.9633333333,43.8633333333,26.956,51.92,24.06,48.036,16.5,745.0833333333,78.6666666667,1,26.6666666667,12.7333333333,5.4298149305,5.4298149305 -70,0,25.39,49.2,24.2128571429,48.7257142857,26.39,45,25.39,46.09,24.1,51.29,15,46.6666666667,24.9633333333,43.73,26.89,51.6528571429,24.1,48,16.2,745.1666666667,80.3333333333,1,26.3333333333,12.7666666667,41.619763989,41.619763989 -50,0,25.39,49.1266666667,24.18,48.79,26.39,45,25.39,46.09,24.1,51.29,14.86,47.26,24.9266666667,43.6633333333,26.89,51.79,24.1,47.96,15.9,745.25,82,1,26,12.8,31.4859044272,31.4859044272 -60,0,25.3566666667,49.06,24.1,48.8214285714,26.39,44.9666666667,25.29,46.054,24.125,51.29,14.7266666667,48.0666666667,25,43.59,26.89,51.79,24.1,47.9,15.6,745.3333333333,83.6666666667,1,25.6666666667,12.8333333333,3.1742652296,3.1742652296 -60,0,25.3566666667,49,24,48.79,26.39,44.9,25.29,46,24.1333333333,51.23,14.66,48.5,25,43.4666666667,26.89,51.856,24.1,47.9,15.3,745.4166666667,85.3333333333,1,25.3333333333,12.8666666667,10.3718522005,10.3718522005 -60,0,25.39,49,23.9842857143,48.8842857143,26.39,44.8633333333,25.29,46,24.1,51.2,14.6225,49.52,24.9266666667,43.4,26.8042857143,51.7128571429,24.1,47.9,15,745.5,87,1,25,12.9,44.4514331175,44.4514331175 -60,0,25.29,48.9,23.89,48.978,26.39,44.79,25.29,45.9,24.1,51.2,14.63,49.8666666667,24.89,43.3633333333,26.79,51.678,24.1,47.856,14.85,745.5,87.6666666667,1,24.5,12.85,37.7050594194,37.7050594194 -60,0,25.29,48.9,23.89,49.09,26.4266666667,44.76,25.29,45.9,24.1,51.2,14.5666666667,49.9,24.9633333333,43.29,26.79,51.4971428571,24.1,47.79,14.7,745.5,88.3333333333,1,24,12.8,18.7302664504,18.7302664504 -50,0,25.29,48.79,23.79,49.09,26.5,44.7,25.29,45.9,24.1,51.1266666667,14.4266666667,49.7666666667,24.89,43.26,26.79,51.2,24.1,47.772,14.55,745.5,89,1,23.5,12.75,38.5372496909,38.5372496909 -60,0,25.29,48.73,23.7385714286,49.1971428571,26.5,44.7,25.29,45.878,24.1,51.09,14.2633333333,49.6933333333,24.9633333333,43.2,26.7128571429,51.1371428571,24.1285714286,47.7,14.4,745.5,89.6666666667,1,23,12.7,35.7118716463,35.7118716463 -50,0,25.29,48.6633333333,23.7,49.312,26.5,44.6175,25.245,45.79,24.1,51.09,14.19,50.2333333333,24.89,43.2,26.7,51.09,24.16,47.7,14.25,745.5,90.3333333333,1,22.5,12.65,12.0376424631,12.0376424631 -70,0,25.29,48.59,23.6714285714,49.3685714286,26.5,44.59,25.272,45.79,24.1,51.06,14.2266666667,51.5266666667,24.89,43.1175,26.7,51.07875,24.1571428571,47.7,14.1,745.5,91,1,22,12.6,8.9870294789,8.9870294789 -50,0,25.29,48.59,23.6,49.4,26.6,44.59,25.2257142857,45.79,24.1,51,14.36,52.3333333333,24.89,43.09,26.6714285714,51.0642857143,24.14,47.7,14.2666666667,745.5666666667,91.5,1.3333333333,25.8333333333,12.8666666667,21.0381672252,21.0381672252 -60,0,25.29,48.53,23.6,49.4857142857,26.5333333333,44.59,25.29,45.79,24.1,51,14.5633333333,53.7333333333,24.89,43.09,26.6,51.054,24.1714285714,47.7,14.4333333333,745.6333333333,92,1.6666666667,29.6666666667,13.1333333333,32.2055945871,32.2055945871 -40,0,25.29,48.5,23.54,49.576,26.6,44.56,25.2675,45.8725,24.1,51,14.7633333333,54.4666666667,24.89,43.09,26.5857142857,50.9685714286,24.2,47.7,14.6,745.7,92.5,2,33.5,13.4,3.1693438534,3.1693438534 -60,0,25.23,48.5,23.5,49.7257142857,26.6,44.5,25.2,45.9,24.1,50.9666666667,14.89,54.7,24.89,43.09,26.52,50.9,24.2,47.7514285714,14.7666666667,745.7666666667,93,2.3333333333,37.3333333333,13.6666666667,24.5759819634,24.5759819634 -50,0,25.2,48.5,23.5,49.834,26.5,44.53,25.2,45.9,24.1,50.9666666667,14.89,54.7,24.89,43.09,26.5285714286,50.9,24.2,47.79,14.9333333333,745.8333333333,93.5,2.6666666667,41.1666666667,13.9333333333,44.7990000248,44.7990000248 -50,0,25.2,48.5,23.4057142857,49.8057142857,26.5666666667,44.53,25.2,45.9,24.1,50.9666666667,14.89,54.8266666667,24.89,43.09,26.5,50.8633333333,24.2,47.79,15.1,745.9,94,3,45,14.2,29.4401699677,29.4401699677 -50,0,25.2,48.4666666667,23.39,49.79,26.6,44.5,25.2,45.856,24.1,50.9,14.89,54.9666666667,24.89,43.09,26.5,50.775,24.2,47.79,15.1666666667,745.9166666667,93.1666666667,3,40.8333333333,14.1,20.8439480397,20.8439480397 -50,0,25.2,48.4666666667,23.39,49.79,26.6,44.5,25.2,45.79,24.1,50.9,14.86,55.03,24.89,43.06,26.5,50.718,24.2,47.8214285714,15.2333333333,745.9333333333,92.3333333333,3,36.6666666667,14,8.9074514108,8.9074514108 -60,0,25.2,48.4,23.29,49.79,26.5666666667,44.5,25.2,45.772,24.1,50.9,14.7266666667,55.09,24.89,43,26.445,50.79,24.236,47.896,15.3,745.95,91.5,3,32.5,13.9,28.8425574079,28.8425574079 -60,0,25.1333333333,48.4,23.29,49.79,26.5666666667,44.5,25.2,45.7,24.1,50.9,14.5666666667,55.0633333333,24.89,43,26.4371428571,50.9542857143,24.2,47.9,15.3666666667,745.9666666667,90.6666666667,3,28.3333333333,13.8,19.8237411445,19.8237411445 -50,0,25.1,48.4,23.29,49.834,26.6,44.5,25.2,45.7,24.1,50.8266666667,14.3666666667,54.4566666667,24.89,42.9333333333,26.434,51.09,24.2675,48.0675,15.4333333333,745.9833333333,89.8333333333,3,24.1666666667,13.7,36.6866372991,36.6866372991 -60,0,25.1,48.3266666667,23.29,49.79,26.6,44.4333333333,25.1285714286,45.6214285714,24.1,50.79,14,53.5933333333,24.89,42.9,26.39,51.09,24.254,48.09,15.5,746,89,3,20,13.6,43.5886671068,43.5886671068 -60,0,25.1,48.29,23.29,49.79,26.6,44.4,25.1,45.5,24.1,50.79,13.5975,53.2,24.89,42.8266666667,26.39,51.09,24.2514285714,48.2042857143,15.2166666667,745.9666666667,89.6666666667,2.8333333333,27.5,13.45,9.773440205,9.773440205 -50,0,25.1,48.29,23.2128571429,49.7128571429,26.6,44.4,25.1,45.4428571429,24.0333333333,50.6566666667,13.4633333333,54.2,24.89,42.79,26.39,51.09,24.254,48.276,14.9333333333,745.9333333333,90.3333333333,2.6666666667,35,13.3,10.223315144,10.223315144 -60,0,25.1,48.29,23.2,49.7,26.6,44.29,25.1,45.4,24.1,50.7,13.4333333333,54.6933333333,24.89,42.73,26.3328571429,51.0242857143,24.29,48.4,14.65,745.9,91,2.5,42.5,13.15,19.3238548818,19.3238548818 -60,0,25.1,48.1633333333,23.2,49.7,26.6,44.29,25.1,45.4,24.1,50.7,13.1666666667,54.36,24.89,42.7,26.29,50.816,24.29,48.5,14.3666666667,745.8666666667,91.6666666667,2.3333333333,50,13,42.5753086573,42.5753086573 -60,0,25.1,48.09,23.2,49.7,26.6,44.26,25.1,45.356,24.1,50.7,12.9333333333,54.1633333333,24.89,42.7,26.29,50.7,24.29,48.6142857143,14.0833333333,745.8333333333,92.3333333333,2.1666666667,57.5,12.85,34.4261964667,34.4261964667 -60,0,25.1,48.09,23.1,49.7,26.6,44.2,25.1,45.2385714286,24.1,50.6266666667,12.7266666667,54.2233333333,24.89,42.59,26.29,50.59,24.29,48.7,13.8,745.8,93,2,65,12.7,30.2170125768,30.2170125768 -60,0,25.0333333333,48.09,23.1,49.6842857143,26.6,44.1633333333,25.1,45.2,24.1,50.59,12.6,54.33,24.89,42.59,26.29,50.575,24.29,48.7,13.6333333333,745.7833333333,93.6666666667,1.8333333333,60,12.6333333333,21.1024177959,21.1024177959 -50,0,25,48,23.06,49.554,26.675,44.09,25.1,45.1214285714,24.1,50.53,12.46,54.33,24.89,42.5,26.272,50.418,24.29,48.7,13.4666666667,745.7666666667,94.3333333333,1.6666666667,55,12.5666666667,43.7977059744,43.7977059744 -60,0,25,48,23.0285714286,49.5257142857,26.7,44.09,25.1,45,24.1,50.5,12.3233333333,54.6333333333,24.815,42.3425,26.245,50.29,24.29,48.7,13.3,745.75,95,1.5,50,12.5,28.72784551,28.72784551 -60,0,25,47.9666666667,23,49.44,26.6,44.06,25.1,44.95,24.1,50.5,12.13,54.4333333333,24.79,42.23,26.2128571429,50.1057142857,24.29,48.718,13.1333333333,745.7333333333,95.6666666667,1.3333333333,45,12.4333333333,47.0046933624,47.0046933624 -60,0,25,47.9,22.9842857143,49.4142857143,26.6,44,25.1,44.856,24.0333333333,50.4333333333,12.0666666667,54.73,24.79,42.1633333333,26.2,49.958,24.29,48.79,12.9666666667,745.7166666667,96.3333333333,1.1666666667,40,12.3666666667,13.1359258667,13.1359258667 -50,0,25,47.8633333333,22.89,49.4,26.6333333333,44,25.1,44.7385714286,24.0333333333,50.4333333333,11.9266666667,54.5966666667,24.79,42.09,26.2,49.79,24.29,48.79,12.8,745.7,97,1,35,12.3,24.5095546707,24.5095546707 -50,0,25,47.79,22.89,49.4,26.7,44,25.1,44.7,24.0666666667,50.4666666667,11.7633333333,54.3266666667,24.79,42,26.2,49.66,24.29,48.79,12.7,745.7333333333,96.8333333333,1,35.3333333333,12.1833333333,29.8634246225,29.8634246225 -50,0,24.89,47.79,22.89,49.4,26.6666666667,43.9,25.05,44.6175,24,50.3266666667,11.69,54.5266666667,24.79,42,26.1,49.47125,24.29,48.79,12.6,745.7666666667,96.6666666667,1,35.6666666667,12.0666666667,18.2313374593,18.2313374593 -50,0,24.89,47.73,22.8328571429,49.4,26.6,43.9,25,44.59,24.0333333333,50.3266666667,11.69,54.8266666667,24.79,41.9,26.1,49.356,24.29,48.8214285714,12.5,745.8,96.5,1,36,11.95,49.6928029694,49.6928029694 -50,0,24.89,47.6633333333,22.79,49.4,26.6,43.8266666667,25,44.59,24.0333333333,50.3266666667,11.69,55.0266666667,24.79,41.9,26.1,49.3214285714,24.29,48.9,12.4,745.8333333333,96.3333333333,1,36.3333333333,11.8333333333,28.1646798248,28.1646798248 -50,0,24.89,47.59,22.79,49.4,26.6,43.8266666667,25,44.4985714286,24,50.29,11.6,54.79,24.79,41.79,26.1,49.272,24.29,48.9,12.3,745.8666666667,96.1666666667,1,36.6666666667,11.7166666667,22.4657852668,22.4657852668 -50,0,24.89,47.5,22.754,49.356,26.6,43.79,25,44.4,24,50.23,11.46,54.6566666667,24.79,41.79,26.1,49.178,24.29,48.9,12.2,745.9,96,1,37,11.6,21.4753133594,21.4753133594 -60,0,24.89,47.5,22.7257142857,49.29,26.6,43.79,25,44.4,24,50.2,11.3,54.59,24.79,41.7,26.1,49.072,24.29,48.9,12.2,745.95,96.1666666667,1,37,11.6166666667,46.642401081,46.642401081 -50,0,24.89,47.5,22.7,49.356,26.6,43.76,24.956,44.356,24,50.2,11.2633333333,54.7,24.79,41.6266666667,26.0333333333,49,24.29,49,12.2,746,96.3333333333,1,37,11.6333333333,35.051628307,35.051628307 -60,0,24.89,47.4333333333,22.7,49.4,26.6,43.7,24.9842857143,44.29,24,50.09,11.2633333333,54.96,24.73,41.59,26.06,48.92,24.29,49,12.2,746.05,96.5,1,37,11.65,28.4194626729,28.4194626729 -60,0,24.89,47.4,22.7,49.356,26.6,43.7,24.978,44.236,24,50.09,11.4266666667,55.39,24.79,41.53,26,48.9,24.29,49,12.2,746.1,96.6666666667,1,37,11.6666666667,22.1210610936,22.1210610936 -70,0,24.865,47.295,22.7,49.3685714286,26.6,43.6266666667,24.9633333333,44.2,24,50.09,11.5,55.6633333333,24.79,41.4666666667,26,48.8828571429,24.3185714286,49.1685714286,12.2,746.15,96.8333333333,1,37,11.6833333333,21.7393061612,21.7393061612 -60,0,24.79,47.46,22.7,49.394,26.6,43.56,24.978,44.2,24,50,11.7566666667,56.0666666667,24.79,41.4,26,49,24.39,49.156,12.2,746.2,97,1,37,11.7,24.4990811101,24.4990811101 -70,0,24.89,47.3633333333,22.7,49.59,26.46,43.3,24.89,44.2,24,50,11.9633333333,56.2,24.76,41.4,25.978,48.918,24.365,49.09,12.1833333333,746.25,97.3333333333,1,40.5,11.7333333333,5.7107869885,5.7107869885 -190,0,24.89,47.29,22.736,49.5,26.3566666667,43.1266666667,24.89,44.2,24,50,12.0333333333,56.23,24.7,41.4,25.945,48.78,24.3757142857,49.2514285714,12.1666666667,746.3,97.6666666667,1,44,11.7666666667,40.4048390919,40.4048390919 -370,0,24.89,47.23,22.7642857143,49.5514285714,26.29,43.1266666667,24.89,44.29,24,50,12.1,56.3633333333,24.7,41.4333333333,25.89,48.44,24.39,49.214,12.15,746.35,98,1,47.5,11.8,9.3198936316,9.3198936316 -100,0,24.89,47.3633333333,22.79,49.656,26.29,43,24.89,44.3528571429,24,50,12.33,56.5,24.7,41.5,25.89,48.316,24.3185714286,49.1114285714,12.1333333333,746.4,98.3333333333,1,51,11.8333333333,17.1800851822,17.1800851822 -90,0,24.89,47.3633333333,22.79,49.5957142857,26.39,43,24.89,44.478,24,49.9333333333,12.4633333333,56.56,24.79,41.5,25.89,48.1116666667,24.29,48.276,12.1166666667,746.45,98.6666666667,1,54.5,11.8666666667,26.702784386,26.702784386 -110,0,24.89,47.29,22.89,49.4,26.39,43,24.8614285714,44.6371428571,24,49.8633333333,12.6666666667,56.6266666667,24.7,41.5,25.87,47.856,24.1557142857,47.6371428571,12.1,746.5,99,1,58,11.9,41.7597475345,41.7597475345 -80,0,24.89,47.2,22.89,49.2475,26.39,43.09,24.79,44.7,24,49.79,12.86,56.76,24.7,41.5,25.79,47.6685714286,24.04,47.196,12.4333333333,746.55,97.1666666667,1.1666666667,58.5,11.9333333333,33.9783012285,33.9783012285 -120,0,24.89,47.1266666667,22.9528571429,49.0785714286,26.39,43.1633333333,24.7514285714,44.7957142857,24,49.76,13.3566666667,56.9633333333,24.7,41.5,25.79,47.5,24,47,12.7666666667,746.6,95.3333333333,1.3333333333,59,11.9666666667,13.5889106547,13.5889106547 -110,0,24.8566666667,47.43,23.02,48.9,26.39,43.29,24.754,44.94,24,49.7,14.0233333333,57.09,24.76,41.4333333333,25.79,47.356,23.89,46.9,13.1,746.65,93.5,1.5,59.5,12,31.8145303754,31.8145303754 -80,0,24.79,47.29,23.1542857143,48.9,26.4633333333,43.23,24.7771428571,45.1528571429,24,49.56,14.8566666667,57.39,24.73,41.4,25.79,47.2675,23.9528571429,46.9,13.4333333333,746.7,91.6666666667,1.6666666667,60,12.0333333333,12.6191717922,12.6191717922 -560,0,24.79,47.2266666667,24.014,48.2,26.5666666667,43.1333333333,24.79,45.312,24,49.5,15.6566666667,57.8633333333,24.73,41.4,25.79,47.1816666667,24,46.94,13.7666666667,746.75,89.8333333333,1.8333333333,60.5,12.0666666667,32.9166988144,32.9166988144 -660,10,24.79,48.5,24.6057142857,47.0814285714,26.5,43.1333333333,24.8614285714,45.4,24,49.4666666667,16.4266666667,58.4233333333,24.7,41.4,25.736,47.09,24.0285714286,46.9285714286,14.1,746.8,88,2,61,12.1,39.8966866196,39.8966866196 -330,20,24.79,48.76,25.014,46.34,26.8,44.2666666667,24.89,45.5,24,49.4,17.075,55.8225,24.76,41.4666666667,25.7,47.09,24.1,46.9,14.4,746.85,86.8333333333,2.1666666667,54.1666666667,12.2,41.9200722477,41.9200722477 -270,20,24.79,48.6266666667,25.4971428571,45.4714285714,27.1933333333,45.1933333333,24.945,45.575,24,49.4633333333,17.8666666667,47.9933333333,24.76,41.5,25.7,47.2042857143,24.1571428571,46.8371428571,14.7,746.9,85.6666666667,2.3333333333,47.3333333333,12.3,45.2771509299,45.2771509299 -290,20,24.79,48.49,25.974,44.17,27.5666666667,45.26,25.04,45.59,24,49.53,18.1633333333,36.1933333333,24.76,41.56,25.68,47.152,24.2,46.714,15,746.95,84.5,2.5,40.5,12.4,18.7119855895,18.7119855895 -230,20,24.73,48.1566666667,26.5242857143,43.4371428571,27.8266666667,45.1266666667,25.1142857143,45.5385714286,24,49.6266666667,18.3566666667,33.7266666667,24.76,41.6266666667,25.6,46.8725,24.2257142857,46.59,15.3,747,83.3333333333,2.6666666667,33.6666666667,12.5,46.3139098487,46.3139098487 -250,30,24.7,48.09,27.074,42.596,27.934,44.736,25.2,45.44,24,49.7,18.5333333333,31.9,24.7,41.7,25.54,46.678,24.254,46.356,15.6,747.05,82.1666666667,2.8333333333,26.8333333333,12.6,12.0579498704,12.0579498704 -190,20,24.7,48.09,27.536,41.694,28.14,44.514,25.2642857143,45.3685714286,24,49.7,18.6666666667,31.6333333333,24.7,41.6633333333,25.5,46.536,24.236,46.2,15.9,747.1,81,3,20,12.7,42.9831653484,42.9831653484 -80,20,24.7,48.09,27.8266666667,40.8966666667,28.2128571429,44.1528571429,25.39,45.2,24,49.6266666667,19.0666666667,30.0233333333,24.7,41.6633333333,25.5,46.5642857143,24.2,46.09,16.0833333333,747.15,80.1666666667,3.1666666667,20.3333333333,12.7,7.1698840125,7.1698840125 -70,20,24.7675,48.09,28.2633333333,40.3933333333,28.216,43.918,25.39,45.1528571429,24,49.6266666667,19.26,27.69,24.7,41.79,25.5,46.7,24.2128571429,46.1657142857,16.2666666667,747.2,79.3333333333,3.3333333333,20.6666666667,12.7,30.5767791229,30.5767791229 -60,20,24.79,48.1633333333,28.4633333333,39.7266666667,27.9971428571,43.5828571429,25.456,45.178,24,49.59,19.4266666667,28.3666666667,24.76,41.8633333333,25.4057142857,46.84,24.272,46.334,16.45,747.25,78.5,3.5,21,12.7,43.7723200535,43.7723200535 -80,30,24.79,48.29,28.73,39.2966666667,27.754,43,25.5714285714,45.09,24,49.59,19.5,25.5,24.7,41.9,25.39,46.9,24.2,46.29,16.6333333333,747.3,77.6666666667,3.6666666667,21.3333333333,12.7,22.1096421243,22.1096421243 -80,20,24.79,48.29,28.8566666667,38.89,27.6,42.7842857143,25.6,45.09,24,49.6633333333,19.6,23.1666666667,24.76,41.9,25.39,46.9,24.2,46.2,16.8166666667,747.35,76.8333333333,3.8333333333,21.6666666667,12.7,34.7899910179,34.7899910179 -70,20,24.79,48.26,29.1,38.93,27.5,42.536,25.6428571429,45.09,24,49.59,19.7933333333,21.6333333333,24.73,41.9,25.39,46.9,24.2,46.1057142857,17,747.4,76,4,22,12.7,34.3037205166,34.3037205166 -60,20,24.79,48.2,29.1666666667,38.5966666667,27.4528571429,42.4714285714,25.62,45.036,24.0333333333,49.59,20.0333333333,19.5666666667,24.79,41.8266666667,25.3471428571,46.8528571429,24.2,46.072,17.3,747.4333333333,75.6666666667,3.8333333333,22.1666666667,12.9333333333,38.7582294643,38.7582294643 -80,20,24.8233333333,48.2,29.2,38.3633333333,27.39,42.334,25.7,45,24.0333333333,49.53,20.3666666667,19.4933333333,24.79,41.845,25.29,46.938,24.2,46.0957142857,17.6,747.4666666667,75.3333333333,3.6666666667,22.3333333333,13.1666666667,0.3216259531,0.3216259531 -70,20,24.89,48.2,29.2,38.23,27.3042857143,42.4571428571,25.7,44.9,24,49.5,20.6966666667,16.76,24.79,42.03,25.29,47.1214285714,24.29,46.4,17.9,747.5,75,3.5,22.5,13.4,35.2769117104,35.2769117104 -80,30,24.89,48.2,29.26,38.2,27.2225,42.4875,25.7,44.9285714286,24.0666666667,49.56,20.9633333333,13.4933333333,24.79,42.03,25.29,47.2,24.29,46.4,18.2,747.5333333333,74.6666666667,3.3333333333,22.6666666667,13.6333333333,39.8880393128,39.8880393128 -80,20,24.89,48.1266666667,29.2,38.1266666667,27.16,42.4,25.7,44.878,24.1,49.5,21.2333333333,9.9266666667,24.79,42,25.2385714286,47.1214285714,24.29,46.2928571429,18.5,747.5666666667,74.3333333333,3.1666666667,22.8333333333,13.8666666667,7.4800114031,7.4800114031 -110,20,24.89,48.06,29.1333333333,37.9633333333,27.1285714286,42.4,25.7,44.7257142857,24.1,49.4333333333,21.5,8.7933333333,24.79,42,25.2,47.218,24.29,46.2,18.8,747.6,74,3,23,14.1,4.7403039061,4.7403039061 -600,20,24.89,48.1333333333,28.9175,37.9475,27.1,42.44,25.7,44.9,24,49.26,21.7633333333,7.5,24.8233333333,42,25.2,47.29,24.29,46.2642857143,19.0333333333,747.6333333333,72.5,3.3333333333,23.8333333333,13.9833333333,28.0383264995,28.0383264995 -560,20,25,48.5,28.8233333333,38.1,27.1142857143,42.91,25.7514285714,44.8371428571,24.0666666667,49.3333333333,21.9633333333,4.96,24.89,42,25.2,47.29,24.29,46.2,19.2666666667,747.6666666667,71,3.6666666667,24.6666666667,13.8666666667,4.7990589403,4.7990589403 -320,0,25.0666666667,48.7,28.76,38.2,27.296,43.42,25.81,44.79,24.1,49.4,22.145,4.39,24.89,41.9666666667,25.2,47.3528571429,24.29,46.2671428571,19.5,747.7,69.5,4,25.5,13.75,25.4313130281,25.4313130281 -260,0,25.1,48.39,28.7,38.26,27.6,43.9714285714,25.89,44.7257142857,24.1,49.4,22.4633333333,4.1966666667,24.89,41.9,25.2,47.46,24.29,46.42,19.7333333333,747.7333333333,68,4.3333333333,26.3333333333,13.6333333333,14.2717996961,14.2717996961 -280,0,25.1666666667,48.7966666667,28.5666666667,38.5666666667,27.89,44.054,25.89,44.59,24.1,49.5,22.39,3.6566666667,24.89,41.9333333333,25.2,47.5642857143,24.3614285714,46.5257142857,19.9666666667,747.7666666667,66.5,4.6666666667,27.1666666667,13.5166666667,0.5324579543,0.5324579543 -260,0,25.2,48.8633333333,28.5,38.76,28.1114285714,44.3714285714,25.89,44.5385714286,24.1,49.5,22.4266666667,3.1666666667,24.89,42,25.2,47.59,24.39,46.7,20.2,747.8,65,5,28,13.4,30.0070435856,30.0070435856 -240,0,25.26,48.6566666667,28.3566666667,38.8266666667,28.35,44.378,25.87,44.5,24.1,49.59,22.6333333333,2.76,24.89,41.9333333333,25.1714285714,47.6971428571,24.39,46.7,20.3666666667,747.8333333333,64.5,4.8333333333,28,13.4333333333,41.5333127836,41.5333127836 -210,0,25.4266666667,48.5666666667,28.29,38.9,28.3614285714,43.9657142857,25.79,44.4285714286,24.1,49.59,22.7,1.7266666667,24.89,41.9333333333,25.2,47.79,24.39,46.678,20.5333333333,747.8666666667,64,4.6666666667,28,13.4666666667,25.5298830103,25.5298830103 -100,0,25.5666666667,48.4333333333,28.2,39,28.236,43.254,25.79,44.356,24.1,49.7,22.7,1.1333333333,25,41.9,25.2,47.79,24.39,46.59,20.7,747.9,63.5,4.5,28,13.5,13.358254137,13.358254137 -380,0,25.6,47.95,28.1333333333,39.06,28.1957142857,42.5342857143,25.79,44.2771428571,24.1,49.59,22.8233333333,1.3333333333,25,41.8266666667,25.2,47.7,24.39,46.59,20.8666666667,747.9333333333,63,4.3333333333,28,13.5333333333,7.7056899318,7.7056899318 -620,0,25.7,47.6,28.1,39.1633333333,27.956,42.194,25.79,44.178,24.1,49.59,22.8233333333,1,25,41.76,25.1857142857,47.6242857143,24.39,46.4557142857,21.0333333333,747.9666666667,62.5,4.1666666667,28,13.5666666667,45.7926930627,45.7926930627 -310,0,25.7,47.4666666667,28.0333333333,39.09,28.1,42.79,25.79,44.09,24.1,49.5,23.0333333333,1,25,41.6266666667,25.16,47.554,24.39,46.316,21.2,748,62,4,28,13.6,16.7656527949,16.7656527949 -270,0,25.7,47.2,27.89,38.79,28.374,42.834,25.79,44,24.1,49.4333333333,23.2933333333,1,25.1,41.4666666667,25.1571428571,47.5257142857,24.4214285714,46.2257142857,21.2166666667,747.9833333333,61,4.1666666667,28.1666666667,13.35,36.4618803142,36.4618803142 -280,0,25.76,47.1266666667,27.89,38.73,28.6,42.6785714286,25.79,43.9166666667,24.1333333333,49.2,23.6633333333,1,25.1,41.3266666667,25.15,47.245,24.39,46.036,21.2333333333,747.9666666667,60,4.3333333333,28.3333333333,13.1,8.4599530324,8.4599530324 -240,0,25.8233333333,47.1966666667,27.79,38.86,28.58,42.298,25.79,43.7542857143,24.2,49.2,23.73,1,25.2,41.1333333333,25.1285714286,47.2642857143,24.4371428571,46.04,21.25,747.95,59,4.5,28.5,12.85,1.125066611,1.125066611 -280,0,25.9633333333,46.79,27.79,39,28.4214285714,41.8971428571,25.79,43.66,24.2,49.06,23.8,1,25.2,40.875,25.1142857143,47.1485714286,24.5,45.994,21.2666666667,747.9333333333,58,4.6666666667,28.6666666667,12.6,23.9106345223,23.9106345223 -230,0,26.0333333333,45.8233333333,27.7,38.9666666667,28.35,41.12,25.7514285714,43.4714285714,24.2,48.9333333333,24.0666666667,1,25.26,40.5,25.14,46.878,24.4528571429,45.5542857143,21.2833333333,747.9166666667,57,4.8333333333,28.8333333333,12.35,31.6620974685,31.6620974685 -170,0,26.1,45.1566666667,27.6333333333,38.7666666667,28.2771428571,40.6114285714,25.754,43.356,24.2,48.6333333333,24,1,25.29,40.1633333333,25.1,46.5928571429,24.456,45.156,21.3,747.9,56,5,29,12.1,12.1376253432,12.1376253432 -170,0,26.2,44.1966666667,27.5,38.59,28.12,39.878,25.7,43.2128571429,24.2,48.36,24,1,25.3566666667,39.89,25.1,46.356,24.4057142857,44.7271428571,21.6,747.8833333333,54.1666666667,5.1666666667,30.8333333333,11.85,48.095552274,48.095552274 -620,0,26.26,43.93,27.5,38.53,28,39.6114285714,25.7,43.116,24.2,48.1,24,1,25.4266666667,39.6333333333,25.1285714286,45.9814285714,24.5,44.596,21.9,747.8666666667,52.3333333333,5.3333333333,32.6666666667,11.6,25.5386852776,25.5386852776 -460,0,26.26,43.66,27.3566666667,38.2,28.04,39.834,25.7,43,24.2,47.7666666667,23.86,1,25.5,39.36,25.1,45.616,24.5,44.4285714286,22.2,747.85,50.5,5.5,34.5,11.35,17.3885693192,17.3885693192 -240,10,26.2,43.5266666667,27.2225,38.2,28.3357142857,39.8371428571,25.7,42.856,24.23,47.59,23.8566666667,1,25.5333333333,39.1,25.1,45.3142857143,24.434,44.036,22.5,747.8333333333,48.6666666667,5.6666666667,36.3333333333,11.1,18.8808370964,18.8808370964 -250,0,26.2,43.5,27.1333333333,38.2,28.52,39.476,25.7,42.7228571429,24.23,47.39,23.73,1,25.6,38.8266666667,25.1,44.47,24.5,43.7357142857,22.8,747.8166666667,46.8333333333,5.8333333333,38.1666666667,10.85,9.0606112266,9.0606112266 -270,0,26.2,43.4333333333,27.0666666667,38.29,28.6714285714,39.0957142857,25.7,42.572,24.23,47.1633333333,23.6333333333,1,25.6333333333,38.43,25.1571428571,43.8928571429,24.5,43.1225,23.1,747.8,45,6,40,10.6,24.9529515277,24.9529515277 -250,0,26.1666666667,43.26,26.9266666667,38.03,28.83,38.754,25.7,42.4714285714,24.29,46.9633333333,23.7675,1,25.7,38.23,25.16,43.552,24.5,42.958,23.1,747.8333333333,45,6.1666666667,40,10.5833333333,15.4435070814,15.4435070814 -220,0,26.1,43.2,26.89,38,28.9528571429,38.8257142857,25.7,42.29,24.29,46.7233333333,23.8566666667,1,25.73,37.93,25.1285714286,43.3428571429,24.5,42.8685714286,23.1,747.8666666667,45,6.3333333333,40,10.5666666667,33.9295468759,33.9295468759 -170,0,26.1,43.06,26.8233333333,38.06,29.0666666667,38.7,25.6571428571,42.2128571429,24.29,46.53,23.8566666667,1,25.79,37.73,25.2,42.71,24.5,42.62,23.1,747.9,45,6.5,40,10.55,39.7097122739,39.7097122739 -100,0,26.1,42.8,26.76,38.09,29.1,38.2385714286,25.68,42.116,24.29,46.3633333333,23.79,1,25.8233333333,37.43,25.1857142857,42.7514285714,24.5,42.3957142857,23.1,747.9333333333,45,6.6666666667,40,10.5333333333,18.3630285901,18.3630285901 -200,0,26.1,42.3633333333,26.7,38.09,28.9971428571,37.5828571429,25.6,42,24.29,46.1566666667,23.8566666667,1,25.89,37.23,25.12,43.04,24.5,42.22,23.1,747.9666666667,45,6.8333333333,40,10.5166666667,21.6704782099,21.6704782099 -350,0,26.1,42.03,26.5666666667,38.06,28.7,37.036,25.6,41.96,24.29,45.995,23.73,1,25.89,37.06,25.2,43.64,24.5,41.7828571429,23.1,748,45,7,40,10.5,49.1842816118,49.1842816118 -300,0,26.1,41.745,26.5,38,28.7657142857,37.4228571429,25.6,41.8057142857,24.29,45.7233333333,23.6333333333,1,25.89,37,25.236,44.09,24.5,42.58,23.1,748.0166666667,45,7,40,10.5,21.2258690735,21.2258690735 -450,0,26.1,41.8266666667,26.4633333333,38,28.956,37.978,25.6,41.79,24.3566666667,45.53,23.6333333333,1,25.89,36.9666666667,25.3757142857,43.8928571429,24.5,42.6557142857,23.1,748.0333333333,45,7,40,10.5,20.2819229802,20.2819229802 -450,0,26.1,41.8266666667,26.39,38.06,29.0714285714,37.9971428571,25.6,41.79,24.39,45.3633333333,23.6333333333,1,25.9633333333,37.16,25.39,43.696,24.5,42.536,23.1,748.05,45,7,40,10.5,9.8150006263,9.8150006263 -290,0,26.1,41.7,26.29,38.09,29.16,37.656,25.6,41.7,24.4633333333,45.29,23.6333333333,1,26,37.2,25.39,43.3971428571,24.5,42.3814285714,23.1,748.0666666667,45,7,40,10.5,26.3510935125,26.3510935125 -270,0,26.1,41.6266666667,26.29,38.09,29.1985714286,37.5242857143,25.6,41.7257142857,24.6666666667,53.5666666667,23.43,1,25.9266666667,36.9266666667,25.39,43.254,24.5,42.09,23.1,748.0833333333,45,7,40,10.5,44.6856703958,44.6856703958 -280,0,26.1,41.5,26.29,38.09,29.236,37.316,25.56,41.7,25.4666666667,74.2266666667,23.23,1,25.89,36.79,25.4528571429,43.3971428571,24.5,42.0471428571,23.1,748.1,45,7,40,10.5,45.7762257895,45.7762257895 -200,0,26.0333333333,41.56,26.29,38.09,29.2,37.0957142857,25.6,41.7,25.3566666667,77.2566666667,22.9,1,25.89,36.79,25.5,44.098,24.5,41.596,22.8666666667,748.15,45.3333333333,7.5,38.1666666667,10.3666666667,20.1898112427,20.1898112427 -120,0,26.0666666667,41.7,26.26,38.1266666667,29.06,36.82,25.6,41.7,25.29,77.4633333333,22.5666666667,1,25.89,36.79,25.5285714286,44.3214285714,24.5,41.2257142857,22.6333333333,748.2,45.6666666667,8,36.3333333333,10.2333333333,4.5922808698,4.5922808698 -120,0,26.0666666667,41.76,26.2,38.26,28.8671428571,36.1828571429,25.5285714286,41.6371428571,25.29,76.5,22.3566666667,1,25.89,36.76,25.6,44.536,24.434,40.7,22.4,748.25,46,8.5,34.5,10.1,12.7739243093,12.7739243093 -110,0,26.1,41.76,26.2,38.4333333333,28.598,35.58,25.56,41.59,25.29,74.5666666667,22.0966666667,1,25.8233333333,36.7,25.6571428571,44.4557142857,24.4057142857,40.2,22.1666666667,748.3,46.3333333333,9,32.6666666667,9.9666666667,22.7902026149,22.7902026149 -560,0,26.0333333333,41.7,26.1333333333,38.56,28.3614285714,35.5257142857,25.525,41.51,25.2,70.29,21.8266666667,1,25.79,36.59,25.7,44.36,24.37,39.9,21.9333333333,748.35,46.6666666667,9.5,30.8333333333,9.8333333333,26.8022118835,26.8022118835 -450,0,26.1,41.8666666667,26.2,38.59,28.2,35.67,25.5,41.4,25.26,67.6233333333,21.4933333333,1,25.79,36.53,25.7642857143,44.0957142857,24.3328571429,39.7957142857,21.7,748.4,47,10,29,9.7,7.2750829044,7.2750829044 -490,0,26.1666666667,42.26,26.175,38.6175,28.1714285714,36.0842857143,25.5,41.46,25.29,63.8233333333,21.1666666667,1,25.79,36.4666666667,25.79,43.7816666667,24.29,39.416,21.4166666667,748.4833333333,47.5,9.8333333333,29,9.6166666667,13.8717061258,13.8717061258 -280,0,26.2,42.8666666667,26.1,38.8333333333,28.296,36.254,25.5,41.3528571429,25.29,60.8233333333,20.96,1,25.73,36.4,25.79,43.5642857143,24.2128571429,39.2128571429,21.1333333333,748.5666666667,48,9.6666666667,29,9.5333333333,14.0980106778,14.0980106778 -280,0,26.2,42.6666666667,25.9633333333,38.13,28.5,36.29,25.5,41.272,25.29,58.6,20.695,1,25.7,36.4,25.79,43.59,24.2,39.2,20.85,748.65,48.5,9.5,29,9.45,35.3082262562,35.3082262562 -310,0,26.26,41.6233333333,25.7633333333,37.39,28.7,36.254,25.5,41.2,25.29,57.3933333333,20.3266666667,1,25.7,36.3266666667,25.83,43.7,24.1714285714,39.2385714286,20.5666666667,748.7333333333,49,9.3333333333,29,9.3666666667,18.1584555074,18.1584555074 -280,10,26.2,41.0966666667,25.5666666667,37.1333333333,28.6285714286,36.0114285714,25.5,41.054,25.3233333333,56.13,19.9933333333,1,25.6,36.29,25.8771428571,43.6957142857,24.1,39.054,20.2833333333,748.8166666667,49.5,9.1666666667,29,9.2833333333,24.5361344656,24.5361344656 -310,0,26.1666666667,40.2666666667,25.36,36.8,28.5,35.678,25.5,40.8242857143,25.39,54.9966666667,19.6,1,25.6,36.23,25.956,43.7,24.0857142857,38.6242857143,20,748.9,50,9,29,9.2,30.4772193544,30.4772193544 -330,0,26.1,39.7266666667,25.2266666667,36.16,28.5714285714,35.3657142857,25.5,40.276,25.6333333333,67.4666666667,19.7933333333,1,25.6,36.06,26.06,43.616,24,38.074,19.7333333333,749.0166666667,49.6666666667,9,30.8333333333,8.8333333333,2.0524566644,2.0524566644 -190,0,26.0666666667,38.99,25.0333333333,35.9666666667,28.7,34.79,25.5,39.8971428571,25.7,71.06,20.5666666667,1,25.5333333333,35.86,26.1,43.4333333333,23.9685714286,37.79,19.4666666667,749.1333333333,49.3333333333,9,32.6666666667,8.4666666667,25.805920735,25.805920735 -130,0,26,38.73,25.1,36.4633333333,28.6285714286,34.5528571429,25.5,39.7,25.795,63.3,20.3666666667,1,25.5,35.76,26.16,43.378,23.89,37.73375,19.2,749.25,49,9,34.5,8.1,35.0474395906,35.0474395906 -140,0,26,38.79,25.1666666667,36.7233333333,28.376,34.196,25.5,39.8285714286,25.3566666667,54.3633333333,19.8666666667,1,25.5,35.7,26.218,43.25,23.79,37.554,18.9333333333,749.3666666667,48.6666666667,9,36.3333333333,7.7333333333,1.6567090875,1.6567090875 -150,0,26,38.9,25.1,37.03,27.9971428571,33.7857142857,25.456,40.018,25.1633333333,51.1566666667,19.1266666667,1,25.39,35.73,26.29,43.0583333333,23.7514285714,37.5671428571,18.6666666667,749.4833333333,48.3333333333,9,38.1666666667,7.3666666667,19.6658348897,19.6658348897 -140,0,26,39.0266666667,25.1,37.3633333333,27.6,33.67,25.4685714286,40.1371428571,24.8266666667,48.7266666667,17.8666666667,1.5966666667,25.39,35.79,26.29,42.845,23.736,37.858,18.4,749.6,48,9,40,7,43.1663219468,43.1663219468 -130,0,26,39.2,24.9633333333,37.4666666667,27.4371428571,33.9542857143,25.39,40.036,24.6333333333,47.6666666667,16.66,4.53,25.39,35.9,26.29,42.62,23.6714285714,38.1685714286,17.8666666667,749.7666666667,51.1666666667,8.6666666667,37.8333333333,7.3333333333,36.3630800741,36.3630800741 -130,0,26,39.2,24.8233333333,37.4,27.23,34.1933333333,25.39,40.09,24.4633333333,46.6966666667,15.6933333333,7.7566666667,25.3233333333,35.9666666667,26.3733333333,42.43,23.6,38.334,17.3333333333,749.9333333333,54.3333333333,8.3333333333,35.6666666667,7.6666666667,1.538564777,1.538564777 -100,0,25.89,38.76,24.6666666667,37.4333333333,27.0714285714,34.47,25.39,40.072,24.3233333333,45.9566666667,15.0266666667,9.9633333333,25.26,36.03,26.39,42.2,23.5142857143,38.4857142857,16.8,750.1,57.5,8,33.5,8,34.994786256,34.994786256 -120,0,25.89,38.7,24.6,37.6333333333,26.9214285714,34.3757142857,25.39,40,24.1666666667,44.99,14.3666666667,12.43,25.175,36.1725,26.35,42.2,23.434,38.518,16.2666666667,750.2666666667,60.6666666667,7.6666666667,31.3333333333,8.3333333333,8.7621319573,8.7621319573 -100,10,25.79,38.73,24.6,38.0666666667,26.754,34.4,25.39,40,24.0333333333,44.4566666667,13.9,14.69,25.1,36.26,26.34,42.2,23.39,38.59,15.7333333333,750.4333333333,63.8333333333,7.3333333333,29.1666666667,8.6666666667,1.343121496,1.343121496 -80,0,25.79,38.8633333333,24.5333333333,38.4,26.6428571429,34.4857142857,25.39,40,23.8266666667,43.66,13.3666666667,16.53,25.1,36.3266666667,26.34,42.2,23.254,38.554,15.2,750.6,67,7,27,9,7.5337176328,7.5337176328 -60,0,25.73,39.1566666667,24.39,38.6566666667,26.6,34.736,25.39,40.076,23.7,43.4666666667,12.96,18.39,25.1,36.4666666667,26.29,42.72,23.2128571429,38.7342857143,14.7666666667,750.7666666667,68.8333333333,6.8333333333,26.5,8.9666666667,23.4804558917,23.4804558917 -60,0,25.73,39.29,24.3233333333,38.93,26.5285714286,34.7957142857,25.39,40.2,23.73,44.86,12.4333333333,20.3666666667,25.1,36.5,26.39,43.476,23.31,39.31,14.3333333333,750.9333333333,70.6666666667,6.6666666667,26,8.9333333333,4.4342922978,4.4342922978 -60,0,25.7,39.4,24.29,39.19,26.5,34.79,25.39,40.29,23.8566666667,45.9933333333,12.1666666667,22.6333333333,25.1,36.5,26.39,43.925,23.4214285714,40.4785714286,13.9,751.1,72.5,6.5,25.5,8.9,16.4622787503,16.4622787503 -60,0,25.7,39.4,24.1666666667,39.4633333333,26.3485714286,34.7957142857,25.39,40.245,23.89,47.1966666667,11.7,24.795,25.1,36.59,26.37,44.12,23.5,41.08,13.4666666667,751.2666666667,74.3333333333,6.3333333333,25,8.8666666667,29.3681123643,29.3681123643 -60,0,25.6666666667,39.4,24.1,39.6633333333,26.29,34.834,25.39,40.2,23.9633333333,47.8633333333,11.3233333333,26.5333333333,25.1,36.59,26.3614285714,44.1214285714,23.5857142857,41.41,13.0333333333,751.4333333333,76.1666666667,6.1666666667,24.5,8.8333333333,36.9345340761,36.9345340761 -60,0,25.6,39.4,24,39.73,26.2257142857,34.7642857143,25.39,40.09,24,48.5966666667,11.0633333333,28.0666666667,25.1,36.6266666667,26.365,44.0225,23.6,41.696,12.6,751.6,78,6,24,8.8,38.6266673449,38.6266673449 -50,0,25.6,39.4,23.9266666667,39.93,26.06,34.5,25.39,40.0128571429,24,48.99,10.86,28.6333333333,25.1,36.7,26.29,44.134,23.6285714286,41.9542857143,12.3,751.7166666667,78.5,6.3333333333,23.8333333333,8.6,40.5919188284,40.5919188284 -50,0,25.6,39.4,23.8566666667,40.09,25.9371428571,34.2657142857,25.39,39.9625,24,49.4633333333,10.6666666667,28.9,25.1,36.7,26.29,44.015,23.6,42.236,12,751.8333333333,79,6.6666666667,23.6666666667,8.4,32.6171163237,32.6171163237 -50,0,25.5,39.5,23.79,40.1633333333,25.812,34.054,25.37,39.9,24,49.7233333333,10.4633333333,30.2,25.1,36.7,26.29,43.925,23.6857142857,42.5085714286,11.7,751.95,79.5,7,23.5,8.2,13.9365970506,13.9365970506 -60,0,25.5,39.5,23.6666666667,40.26,25.7,34.2328571429,25.33,39.834,24,50.03,10.33,31.06,25.1,36.7,26.2514285714,43.8528571429,23.7,42.74,11.4,752.0666666667,80,7.3333333333,23.3333333333,8,45.083883265,45.083883265 -60,0,25.4633333333,39.5,23.6,40.26,25.79,34.44,25.29,39.79,24,50.1633333333,10.1266666667,32.4333333333,25.1,36.7,26.2,43.7,23.7257142857,42.9971428571,11.1,752.1833333333,80.5,7.6666666667,23.1666666667,7.8,46.2330138544,46.2330138544 -60,0,25.445,39.5225,23.5,40.5,25.8042857143,34.5514285714,25.29,39.7642857143,24,50.245,10,33.16,25.0666666667,36.7,26.2,43.7,23.7,43.236,10.8,752.3,81,8,23,7.6,42.1340597444,42.1340597444 -70,0,25.39,39.53,23.4266666667,40.5,25.89,34.59,25.29,39.7,24,50.3266666667,9.7633333333,33.5666666667,25,36.7,26.1285714286,43.7,23.7514285714,43.41,10.6666666667,752.3833333333,81.6666666667,7.8333333333,22.8333333333,7.5833333333,0.9973331355,0.9973331355 -60,0,25.3566666667,39.59,23.3566666667,40.6266666667,25.89,34.59,25.29,39.7,24,50.4,9.69,33.76,25,36.7,26.1,43.59,23.79,43.576,10.5333333333,752.4666666667,82.3333333333,7.6666666667,22.6666666667,7.5666666667,40.7189019839,40.7189019839 -60,0,25.29,39.59,23.29,40.76,25.89,34.536,25.29,39.6214285714,24,50.4,9.5666666667,34.53,25,36.7,26.1,43.59,23.79,43.7,10.4,752.55,83,7.5,22.5,7.55,32.6696579927,32.6696579927 -60,0,25.29,39.6633333333,23.26,40.9,25.89,34.5128571429,25.2675,39.59,24,50.4,9.3666666667,34.79,25,36.7,26.1,43.6685714286,23.79,43.834,10.2666666667,752.6333333333,83.6666666667,7.3333333333,22.3333333333,7.5333333333,5.6401439128,5.6401439128 -60,0,25.29,39.59,23.1333333333,40.9666666667,25.89,34.5,25.254,39.536,24,50.3633333333,9.2633333333,35.5966666667,25,36.6266666667,26.1,43.59,23.79,44.04375,10.1333333333,752.7166666667,84.3333333333,7.1666666667,22.1666666667,7.5166666667,2.086182416,2.086182416 -50,0,25.2,39.7,23.1,41.03,25.8614285714,34.5,25.2642857143,39.5,24,50.29,9.13,36.0633333333,24.945,36.59,26.0666666667,43.56,23.79,44.1842857143,10,752.8,85,7,22,7.5,29.5668228879,29.5668228879 -60,0,25.2,39.7,23.1,41.1633333333,25.79,34.46,25.2,39.5,24,50.29,9.1,36.7,24.89,36.59,26,43.545,23.79,44.276,9.9166666667,752.8833333333,85,6.5,22,7.4333333333,4.780445341,4.780445341 -50,0,25.2,39.7,23,41.23,25.6985714286,34.3842857143,25.2,39.5,23.9266666667,50.23,9.16,36.6266666667,24.89,36.59,26,43.59,23.79,44.4285714286,9.8333333333,752.9666666667,85,6,22,7.3666666667,29.3237655307,29.3237655307 -60,0,25.1333333333,39.7,22.9266666667,41.29,25.58,34.272,25.2,39.4,23.89,50.1633333333,9.19,35.85,24.89,36.59,25.934,43.4,23.83,44.536,9.75,753.05,85,5.5,22,7.3,19.6837969939,19.6837969939 -60,0,25.1,39.7,22.89,41.29,25.4685714286,34.1214285714,25.2,39.4,23.89,50.09,9.2266666667,34.9666666667,24.89,36.59,25.9725,43.5975,23.89,44.6657142857,9.6666666667,753.1333333333,85,5,22,7.2333333333,4.9760641064,4.9760641064 -70,0,25.1,39.7,22.815,41.245,25.456,34.254,25.2,39.29,23.9633333333,50,9.3,33.9666666667,24.89,36.56,25.89,43.29,23.89,44.79,9.5833333333,753.2166666667,85,4.5,22,7.1666666667,7.7732384088,7.7732384088 -60,0,25.1,39.7,22.79,41.29,25.39,34.2,25.2,39.29,23.9633333333,49.9333333333,9.2633333333,32.7633333333,24.89,36.5,25.89,43.29,23.89,44.79,9.5,753.3,85,4,22,7.1,15.6651969068,15.6651969068 -70,0,25.1,39.7,22.7,41.4,25.39,34.0542857143,25.1714285714,39.2257142857,23.89,49.8633333333,9.13,32.0966666667,24.89,36.5,25.89,43.245,23.89,44.834,9.4333333333,753.3833333333,85,4,22,7.0166666667,2.8232299257,2.8232299257 -60,0,25,39.6633333333,22.7,41.4,25.33,34.054,25.2,39.2,23.89,49.73,8.9333333333,31.7266666667,24.89,36.5,25.85,43.054,23.89,44.8685714286,9.3666666667,753.4666666667,85,4,22,6.9333333333,47.5440940005,47.5440940005 -60,0,25,39.53,22.6666666667,41.4,25.29,34.0642857143,25.2,39.1633333333,23.9633333333,49.59,8.7266666667,31.7933333333,24.89,36.4666666667,25.79,43,23.89,44.9,9.3,753.55,85,4,22,6.85,24.0469808807,24.0469808807 -70,0,25,39.5,22.6,41.4,25.29,34,25.15,39.09,23.89,49.53,8.6,32.09,24.89,36.4,25.79,42.9285714286,23.89,44.9714285714,9.2333333333,753.6333333333,85,4,22,6.7666666667,23.4693427687,23.4693427687 -60,0,25,39.5,22.575,41.4,25.29,34,25.1,39,23.89,49.4666666667,8.5333333333,32.1633333333,24.79,36.29,25.81,42.98,23.89,45.09,9.1666666667,753.7166666667,85,4,22,6.6833333333,36.7836405872,36.7836405872 -60,0,25,39.4,22.5,41.4,25.29,33.98,25.1,38.94,23.89,49.3266666667,8.4633333333,32.5,24.79,36.23,25.8233333333,42.9,23.89,45.1528571429,9.1,753.8,85,4,22,6.6,4.0288979071,4.0288979071 -50,0,25,39.4,22.5,41.4,25.23,33.9,25.1,38.8985714286,23.89,49.1633333333,8.39,32.6933333333,24.79,36.1633333333,25.79,42.7928571429,23.89,45.2,9.0166666667,753.8333333333,84.8333333333,3.6666666667,22.1666666667,6.5,24.9149475479,24.9149475479 -60,0,24.89,39.4,22.478,41.44,25.1666666667,33.73,25.1,38.79,23.89,49.03,8.5,32.76,24.79,36.09,25.79,42.616,23.89,45.2,8.9333333333,753.8666666667,84.6666666667,3.3333333333,22.3333333333,6.4,25.9410772473,25.9410772473 -60,0,24.89,39.4,22.39,41.3528571429,25.1,33.79,25.1,38.77875,23.89,48.95,8.5,32.5666666667,24.79,36.09,25.79,42.3725,23.89,45.29,8.85,753.9,84.5,3,22.5,6.3,36.2419609679,36.2419609679 -60,0,24.89,39.4,22.35,41.29,25,33.56,25.1,38.7385714286,23.89,48.8633333333,8.6666666667,31.13,24.79,36.09,25.79,42.1685714286,23.89,45.29,8.7666666667,753.9333333333,84.3333333333,2.6666666667,22.6666666667,6.2,29.1790900403,29.1790900403 -70,0,24.89,39.29,22.29,41.29,25,33.5,25.1,38.656,23.89,48.73,8.86,29.39,24.79,36,25.79,41.96,23.89,45.29,8.6833333333,753.9666666667,84.1666666667,2.3333333333,22.8333333333,6.1,40.3226589086,40.3226589086 -60,0,24.89,39.23,22.29,41.29,24.89,33.56,25.1,38.59,23.89,48.59,9.0333333333,26.3233333333,24.79,36,25.79,41.8242857143,23.89,45.29,8.6,754,84,2,23,6,6.9470558199,6.9470558199 -70,0,24.89,39.1633333333,22.2257142857,41.2257142857,24.89,33.4333333333,25.1,38.572,23.89,48.53,9.16,24.7966666667,24.7,36,25.79,41.7,23.89,45.4,8.65,754.05,82.8333333333,2.3333333333,23.3333333333,5.8333333333,42.9549416876,42.9549416876 -60,0,24.89,39.03,22.254,41.156,24.89,33.5,25.1,38.5,23.89,48.4666666667,9.3,24.19,24.7,36,25.7642857143,41.6214285714,23.89,45.4571428571,8.7,754.1,81.6666666667,2.6666666667,23.6666666667,5.6666666667,33.0914500402,33.0914500402 -60,0,24.8566666667,38.9666666667,22.2,41.09,24.89,33.5,25.1,38.5,23.89,48.4,9.3225,23.4475,24.7,35.9,25.754,41.46,23.89,45.5,8.75,754.15,80.5,3,24,5.5,39.0453013591,39.0453013591 -50,0,24.79,38.9,22.2,41.09,24.79,33.4,25.0857142857,38.4428571429,23.89,48.26,9.39,22.9266666667,24.7,35.8633333333,25.7,41.3371428571,23.89,45.5,8.8,754.2,79.3333333333,3.3333333333,24.3333333333,5.3333333333,24.0530660143,24.0530660143 -60,0,24.79,38.79,22.1714285714,41.09,24.79,33.3266666667,25,38.4,23.89,48.2,9.36,21.3633333333,24.7,35.79,25.7,41.272,23.89,45.5,8.85,754.25,78.1666666667,3.6666666667,24.6666666667,5.1666666667,37.8407271695,37.8407271695 -60,0,24.79,38.73,22.1,41.054,24.7,33.1566666667,25,38.3528571429,23.89,48.06,9.3,21.03,24.7,35.7,25.7,41.2,23.89,45.5385714286,8.9,754.3,77,4,25,5,27.3689144873,27.3689144873 -50,0,24.79,38.7,22.1,41,24.7,33.29,25,38.29,23.89,47.9333333333,9.19,20.3633333333,24.7,35.7,25.7,41.2,23.89,45.5,8.85,754.3166666667,76.3333333333,4.1666666667,25.3333333333,4.8166666667,31.8270336837,31.8270336837 -60,0,24.79,38.7,22.1,40.98,24.6666666667,33,25,38.2771428571,23.8233333333,47.79,9.19,19.5566666667,24.6666666667,35.6633333333,25.7,41.1242857143,23.89,45.5771428571,8.8,754.3333333333,75.6666666667,4.3333333333,25.6666666667,4.6333333333,31.4142583869,31.4142583869 -60,0,24.79,38.59,22.1,40.9,24.6,33,25,38.2,23.89,47.79,9.19,18.7333333333,24.6666666667,35.59,25.7,41,23.9371428571,45.5642857143,8.75,754.35,75,4.5,26,4.45,1.1262617074,1.1262617074 -60,0,24.73,38.59,22,40.754,24.55,32.8,25,38.1685714286,23.8233333333,47.6266666667,9.19,17.8666666667,24.6,35.5,25.7,40.9285714286,23.956,45.5,8.7,754.3666666667,74.3333333333,4.6666666667,26.3333333333,4.2666666667,36.7877146928,36.7877146928 -70,0,24.7,38.56,22,40.63125,24.5,32.8266666667,25,38.09,23.8233333333,47.5666666667,9.19,17.7,24.6666666667,35.5,25.7,40.79,23.9214285714,45.5,8.65,754.3833333333,73.6666666667,4.8333333333,26.6666666667,4.0833333333,40.8133925754,40.8133925754 -60,0,24.7,38.4333333333,22,40.5128571429,24.5,32.7666666667,25,38.0771428571,23.89,47.5,9.19,17.5666666667,24.6,35.4,25.6142857143,40.79,23.89,45.5,8.6,754.4,73,5,27,3.9,34.3312033452,34.3312033452 -60,0,24.7,38.4,22,40.5,24.39,32.59,24.934,38,23.89,47.4333333333,9.2633333333,17.1566666667,24.6,35.4,25.6,40.79,23.9371428571,45.5,8.6333333333,754.45,72.8333333333,5,27,3.9,29.6407999005,29.6407999005 -60,0,24.6333333333,38.2666666667,22,40.4285714286,24.4633333333,32.59,24.89,37.9571428571,23.79,47.1633333333,9.19,16.63,24.6,35.26,25.6,40.79,23.934,45.4,8.6666666667,754.5,72.6666666667,5,27,3.9,47.4487032392,47.4487032392 -50,0,24.7,38.29,21.956,40.29,24.39,32.4333333333,24.89,37.9,23.79,47.09,9.19,15.5666666667,24.6,35.2,25.5,40.7,23.9528571429,45.4,8.7,754.55,72.5,5,27,3.9,22.6634757244,22.6634757244 -60,0,24.6333333333,38.23,21.89,40.2385714286,24.39,32.4333333333,24.89,37.8371428571,23.8566666667,47.06,9.19,14.4933333333,24.5666666667,35.2,25.5,40.6842857143,23.956,45.334,8.7333333333,754.6,72.3333333333,5,27,3.9,21.1821907782,21.1821907782 -50,0,24.6,38.045,21.89,40.134,24.29,32.29,24.89,37.79,23.79,46.9333333333,9.19,13.8233333333,24.5666666667,35.1266666667,25.5,40.656,23.9528571429,45.29,8.7666666667,754.65,72.1666666667,5,27,3.9,17.9524707375,17.9524707375 -60,0,24.6,38,21.89,40.0642857143,24.29,32.23,24.89,37.7642857143,23.79,46.845,9.19,13.3566666667,24.6,35.06,25.5,40.6214285714,23.89,45.29,8.8,754.7,72,5,27,3.9,47.7740550414,47.7740550414 -70,0,24.6,37.9333333333,21.89,40,24.26,32.1333333333,24.89,37.7,23.79,46.7,9.19,13.16,24.5333333333,35,25.5,40.59,23.9214285714,45.2514285714,8.7666666667,754.7666666667,71.1666666667,5,27.3333333333,3.7,49.0816588164,49.0816588164 -50,0,24.6,37.8633333333,21.89,39.9428571429,24.2,32.06,24.89,37.6371428571,23.79,46.6266666667,9.1225,13.15,24.5,34.9666666667,25.5,40.5385714286,23.934,45.29,8.7333333333,754.8333333333,70.3333333333,5,27.6666666667,3.5,14.6329610958,14.6329610958 -70,0,24.5333333333,37.79,21.89,39.834,24.2,32,24.89,37.59,23.79,46.4666666667,9.1,13.4333333333,24.5666666667,34.8266666667,25.456,40.5,23.89,45.2642857143,8.7,754.9,69.5,5,28,3.3,35.6444766279,35.6444766279 -60,0,24.5,37.7,21.8614285714,39.7642857143,24.2,32,24.89,37.5642857143,23.79,46.4,9.1,13.2633333333,24.5,34.8266666667,25.4214285714,40.5,23.89,45.2,8.6666666667,754.9666666667,68.6666666667,5,28.3333333333,3.1,33.6622851435,33.6622851435 -70,0,24.5,37.7,21.89,39.7,24.2,31.9633333333,24.89,37.5,23.79,46.29,9.1,12.93,24.5,34.8175,25.39,40.536,23.9057142857,45.2,8.6333333333,755.0333333333,67.8333333333,5,28.6666666667,2.9,7.0225694566,7.0225694566 -70,0,24.5,37.6633333333,21.8185714286,39.6214285714,24.2,31.89,24.89,37.5,23.79,46.23,9.13,12.2333333333,24.5,34.79,25.39,40.59,23.978,45.2,8.6,755.1,67,5,29,2.7,38.5513539193,38.5513539193 -60,0,24.5,37.53,21.85,39.634,24.1,31.8233333333,24.8042857143,37.2571428571,23.79,45.8633333333,9.2633333333,10.5666666667,24.5,34.3633333333,25.39,40.552,23.9685714286,45.2,8.6,755.1666666667,66.5,5.1666666667,30.8333333333,2.6,14.3406277755,14.3406277755 -100,0,24.5,37.3333333333,21.9214285714,39.4657142857,24.0333333333,31.8233333333,24.79,36.74,23.79,45.33,9.5566666667,7.8,24.4266666667,33.7566666667,25.39,40.185,23.934,44.916,8.6,755.2333333333,66,5.3333333333,32.6666666667,2.5,2.5316196959,2.5316196959 -50,0,24.5,37.2,22.1,38.916,24,31.8566666667,24.79,36.3971428571,23.79,44.5633333333,9.9633333333,5.3933333333,24.4633333333,33.2666666667,25.39,39.7957142857,23.9371428571,44.2228571429,8.6,755.3,65.5,5.5,34.5,2.4,46.220503666,46.220503666 -80,0,24.5,37.09,22.2371428571,38.4814285714,23.9266666667,31.5233333333,24.736,35.96,23.79,44.0966666667,10.19,2.6933333333,24.39,32.8,25.39,39.4,23.89,43.174,8.6,755.3666666667,65,5.6666666667,36.3333333333,2.3,6.5404268447,6.5404268447 -320,0,24.5,36.7566666667,22.254,38.02,23.89,31.6333333333,24.7642857143,36.1128571429,23.73,43.5266666667,10.2633333333,2.6933333333,24.39,32.4,25.3328571429,39.1385714286,23.89,41.5971428571,8.6,755.4333333333,64.5,5.8333333333,38.1666666667,2.2,39.3874714966,39.3874714966 -350,0,24.5,36.59,22.3614285714,37.7957142857,23.9725,31.7225,24.79,36.334,23.76,42.7595833333,10.33,2.3633333333,24.39,32.0666666667,25.29,38.794,23.89,40.916,8.6,755.5,64,6,40,2.1,27.3958128993,27.3958128993 -160,0,24.5,36.59,22.54,37.62,24.1,31.976,24.7514285714,36.2642857143,23.79,41.9925,10.4633333333,2.9633333333,24.29,31.8266666667,25.29,38.4971428571,23.89,40.7414285714,8.6666666667,755.55,63.3333333333,5.8333333333,40,2.0166666667,29.060953157,29.060953157 -70,0,24.5,36.59,22.6,37.2214285714,24.2,32.1633333333,24.79,36.09,23.79,41.48,10.7266666667,3.5,24.29,31.7,25.29,38.254,23.89,41.198,8.7333333333,755.6,62.6666666667,5.6666666667,40,1.9333333333,19.9656752986,19.9656752986 -80,0,24.5,36.59,22.6,37.2,24.2225,32.3425,24.79,35.94,23.8185714286,40.9285714286,10.8,2.76,24.29,31.5666666667,25.2514285714,38.1842857143,23.89,41.9657142857,8.8,755.65,62,5.5,40,1.85,45.1732156449,45.1732156449 -70,0,24.4633333333,36.43,22.6714285714,37.1214285714,24.31,32.678,24.79,35.75,23.79,40.536,10.9266666667,1.4666666667,24.29,31.36,25.272,38.072,23.93125,41.725,8.8666666667,755.7,61.3333333333,5.3333333333,40,1.7666666667,8.7258100742,8.7258100742 -70,0,24.39,36.29,22.7,36.82,24.3233333333,32.8633333333,24.79,35.6371428571,23.7242857143,38.8814285714,11.1266666667,1,24.29,31.1666666667,25.2385714286,38,23.89,41.05,8.9333333333,755.75,60.6666666667,5.1666666667,40,1.6833333333,12.1787192649,12.1787192649 -70,0,24.39,36.1633333333,23.0142857143,35.8814285714,24.39,33.0225,24.79,35.4,23.58,37.254,11.2266666667,1,24.29,31.0333333333,25.2,37.856,23.7528571429,38.8671428571,9,755.8,60,5,40,1.6,10.4459395166,10.4459395166 -80,0,24.39,35.865,23.1,35.20375,24.39,33.09,24.79,35.2385714286,23.5285714286,37.2928571429,11.2175,1,24.29,30.76,25.2,37.65,23.456,37.316,9.0166666667,755.8666666667,60.8333333333,5,40,1.8166666667,8.8161048712,8.8161048712 -80,0,24.39,35.73,23.12,35.4,24.39,33.1266666667,24.79,35.072,23.6,37.874,11.19,1,24.29,30.6333333333,25.2,37.59,23.4528571429,37.0285714286,9.0333333333,755.9333333333,61.6666666667,5,40,2.0333333333,12.5044397544,12.5044397544 -100,0,24.39,35.79,23.2928571429,35.4714285714,24.445,33.2,24.79,34.9285714286,23.6,38.2685714286,11.19,1,24.29,30.4633333333,25.2,37.6942857143,23.5,36.554,9.05,756,62.5,5,40,2.25,47.1546174726,47.1546174726 -90,0,24.39,35.8633333333,23.5,35.29,24.39,33.2,24.79,34.754,23.638,41.936,11.3233333333,1,24.29,30.3233333333,25.254,37.856,23.5,36.1242857143,9.0666666667,756.0666666667,63.3333333333,5,40,2.4666666667,40.1307045249,40.1307045249 -290,0,24.39,35.8633333333,23.5842857143,35.15,24.39,33.3333333333,24.8042857143,34.6528571429,24.4757142857,70.8685714286,11.6,1,24.29,30.1666666667,25.2,37.3957142857,23.5,35.696,9.0833333333,756.1333333333,64.1666666667,5,40,2.6833333333,1.2186799082,1.2186799082 -430,0,24.39,35.79,23.956,34.994,24.5,33.5,24.89,34.7,25.11875,78.5375,11.66,1,24.29,30.0333333333,25.254,37.42,23.5,35.4285714286,9.1,756.2,65,5,40,2.9,17.6151865628,17.6151865628 -100,0,24.4266666667,35.86,24.2642857143,34.8114285714,24.58,33.572,24.89,34.7,24.66,79.814,11.8266666667,1,24.29,29.89,25.29,37.7,23.5,35.156,9.2666666667,756.25,63.3333333333,5,40,2.65,0.8134570089,0.8134570089 -100,0,24.5,36.06,24.434,34.634,24.6,33.59,24.89,34.7,24.4657142857,80.11,12.2333333333,1,24.29,29.7925,25.3566666667,37.6266666667,23.4057142857,34.88,9.4333333333,756.3,61.6666666667,5,40,2.4,27.6927698054,27.6927698054 -100,0,24.4266666667,36.39,24.6271428571,34.4971428571,24.6,33.59,24.89,34.7,24.272,77.296,12.6666666667,1,24.29,29.7,25.39,37.56,23.412,34.678,9.6,756.35,60,5,40,2.15,34.8653086345,34.8653086345 -110,0,24.5,36.7233333333,24.85,34.316,24.64,33.736,24.912,34.776,24.2,69.5142857143,12.9333333333,1,24.29,29.6,25.478,37.38,23.4528571429,34.4542857143,9.7666666667,756.4,58.3333333333,5,40,1.9,44.0466344822,44.0466344822 -110,0,24.5,36.79,24.8614285714,34.2,24.7,33.8266666667,24.9685714286,35.0285714286,24.16,62.34,12.9266666667,1,24.29,29.5333333333,25.52,37.116,23.39,34.156,9.9333333333,756.45,56.6666666667,5,40,1.65,11.7474685656,11.7474685656 -110,0,24.5,36.73,25.04,33.96,24.7,33.9,25,35.4,24.1,59.0371428571,13.1266666667,1,24.29,29.4633333333,25.6285714286,36.9285714286,23.39,33.9557142857,10.1,756.5,55,5,40,1.4,40.2866898803,40.2866898803 -90,0,24.5,36.6633333333,25.0428571429,33.7542857143,24.7,34.03,25,35.4571428571,24.04,56.19,13.39,1,24.29,29.39,25.7,36.7,23.39,33.816,10.2166666667,756.5833333333,55,5.1666666667,40,1.5,36.2380427425,36.2380427425 -90,0,24.5,36.4633333333,24.978,33.754,24.7,34.09,25,35.516,24,53.85,13.1966666667,1,24.29,29.29,25.7514285714,36.6842857143,23.39,33.5957142857,10.3333333333,756.6666666667,55,5.3333333333,40,1.6,41.9022782356,41.9022782356 -100,0,24.5333333333,37.3333333333,24.9371428571,33.7642857143,24.7,34.045,25.0375,35.36125,24,52.08,13.19,1,24.29,29.23,25.772,36.572,23.39,33.4,10.45,756.75,55,5.5,40,1.7,30.2685162169,30.2685162169 -90,0,24.6,39.26,25,33.736,24.73,34.2,25.0285714286,34.59,23.9842857143,51.1357142857,13.3233333333,1,24.29,29.1666666667,25.7257142857,36.5,23.39,33.5242857143,10.5666666667,756.8333333333,55,5.6666666667,40,1.8,43.5155718122,43.5155718122 -100,0,24.6,39.2633333333,24.9685714286,33.9542857143,24.79,34.26,24.85,33.174,23.934,50.198,13.16,1,24.3566666667,29.1666666667,25.79,36.59,23.412,33.74,10.6833333333,756.9166666667,55,5.8333333333,40,1.9,35.0879940088,35.0879940088 -110,0,24.6,38.4566666667,25,34.016,24.79,34.4333333333,24.7385714286,32.4285714286,23.9685714286,49.2257142857,13.2333333333,1,24.39,29.1666666667,25.79,36.59,23.5,33.9,10.8,757,55,6,40,2,37.5509301899,37.5509301899 -110,0,24.6,38.2966666667,25,33.7957142857,24.79,34.5,24.7,32.116,23.89,48.174,13.33,1,24.39,29.1,25.79,36.5385714286,23.5,33.754,10.7,757.0666666667,55.3333333333,6,38.1666666667,2.0166666667,11.8589654681,11.8589654681 -130,0,24.7266666667,38.3633333333,25.06,33.79,24.79,34.5,24.7642857143,32.5928571429,23.89,47.4542857143,13.4225,1,24.39,29.1,25.85,36.418,23.5,33.54,10.6,757.1333333333,55.6666666667,6,36.3333333333,2.0333333333,40.9625880886,40.9625880886 -110,0,24.79,37.6933333333,25,33.8842857143,24.79,34.5,24.89,33.134,23.89,46.796,13.1,1,24.39,29.0333333333,25.89,36.2257142857,23.478,33.294,10.5,757.2,56,6,34.5,2.05,46.6048897244,46.6048897244 -110,0,24.865,37.7,25,33.856,24.8233333333,34.6266666667,24.9057142857,33.3842857143,23.89,46.2,13.4266666667,1,24.39,28.9633333333,25.934,36.254,23.39,32.8114285714,10.4,757.2666666667,56.3333333333,6,32.6666666667,2.0666666667,43.1074558757,43.1074558757 -130,0,24.9633333333,37.2266666667,25,33.8685714286,24.89,34.7,24.956,33.696,23.89,45.754,13.3666666667,1,24.39,28.8233333333,26,36.4571428571,23.16,31.97,10.3,757.3333333333,56.6666666667,6,30.8333333333,2.0833333333,48.0698026367,48.0698026367 -110,0,25.0333333333,36.7233333333,24.956,33.79,24.89,34.7,25,33.9542857143,23.89,45.3285714286,13.2633333333,1,24.4266666667,28.9266666667,26.02,36.36,23.1,31.7925,10.2,757.4,57,6,29,2.1,39.5676498651,39.5676498651 -130,0,25.1,36.53,24.89,33.7228571429,24.89,34.7,25.1,34.236,23.89,44.86,13.2633333333,1,24.5,29.7333333333,26.1,36.0957142857,23.1,31.89,10.5166666667,757.4,55.6666666667,6.1666666667,28.8333333333,2,44.2775951466,44.2775951466 -130,10,25.2,36.2233333333,24.89,33.552,24.89,34.7,25.1,34.4928571429,23.8614285714,44.2285714286,13.7333333333,1,24.5,30.3566666667,26.16,35.754,23.1,31.85,10.8333333333,757.4,54.3333333333,6.3333333333,28.6666666667,1.9,31.5415258054,31.5415258054 -120,0,25.2,36.1633333333,24.8614285714,33.1685714286,24.89,34.7,25.1,34.29,23.89,43.754,13.2666666667,1,24.5,30.0233333333,26.2371428571,35.5542857143,23.1,31.9942857143,11.15,757.4,53,6.5,28.5,1.8,21.4761873125,21.4761873125 -90,0,25.2,34.26,24.445,30.4,24.89,34.79,24.9971428571,32.1685714286,23.8328571429,43.4371428571,13.2666666667,1,24.5,29.445,26.236,35.26,23.2,32.12,11.4666666667,757.4,51.6666666667,6.6666666667,28.3333333333,1.7,10.7951942482,10.7951942482 -100,0,25.1333333333,32.7333333333,24.3614285714,30.0285714286,24.89,34.73,24.89,31.16,23.79,42.914,13.6,1,24.5,29.03,26.2,34.7571428571,23.2257142857,31.7714285714,11.7833333333,757.4,50.3333333333,6.8333333333,28.1666666667,1.6,36.9615500327,36.9615500327 -100,0,25.1333333333,32.2,24.4842857143,30.1,24.89,34.59,24.89,31.17,23.8328571429,42.4657142857,13.96,1,24.5,28.8233333333,26.2,34.79,23.2,31.518,12.1,757.4,49,7,28,1.5,46.1454986711,46.1454986711 -110,0,25.2,32.2,24.5,30.274,24.9633333333,34.53,24.89,31.392,23.79,42.12,14.1,1,24.5,28.5666666667,26.2,34.79,23.2,31.3185714286,12.1,757.45,48.6666666667,7.1666666667,30,1.4166666667,35.446026735,35.446026735 -110,0,25.2,32.53,24.5,30.4214285714,24.9633333333,34.4333333333,24.8614285714,31.4114285714,23.79,41.8385714286,14.16,1,24.5,28.4266666667,26.254,34.956,23.2,31.33,12.1,757.5,48.3333333333,7.3333333333,32,1.3333333333,23.417148937,23.417148937 -100,0,25.2,32.79,24.5,30.6,24.9633333333,34.5,24.56,30.016,23.79,41.66,13.9,1,24.5,28.39,26.29,35.2957142857,23.2,31.3614285714,12.1,757.55,48,7.5,34,1.25,27.9322759481,27.9322759481 -90,0,25.2,33.1566666667,24.4842857143,30.6671428571,24.8566666667,34.26,24.3485714286,29.7271428571,23.79,41.5,13.69,1,24.5666666667,28.3233333333,26.29,35.44,23.218,31.47,12.1,757.6,47.6666666667,7.6666666667,36,1.1666666667,46.7228383059,46.7228383059 -130,0,25.1333333333,32.3566666667,24.256,29.634,24.6975,33.475,24.236,29.436,23.79,41.4714285714,13.63,1,24.7,28.29,26.3328571429,35.4428571429,23.29,31.8614285714,12.1,757.65,47.3333333333,7.8333333333,38,1.0833333333,11.7736178334,11.7736178334 -120,0,25.0333333333,31.43,24.1,29.3185714286,24.46,32.36,24.1,28.9971428571,23.79,41.156,13.7266666667,1,24.7,28.23,26.35,35.4,23.39,31.79,12.1,757.7,47,8,40,1,42.4117094022,42.4117094022 -140,0,25.1,31.29,24.2,29.39,24.2266666667,31.1933333333,24,28.716,23.79,40.94,13.7266666667,1,24.7,28.0666666667,26.39,35.4,23.39,31.7385714286,12.1,757.7333333333,47.1666666667,7.8333333333,40,1.0666666667,29.6221951605,29.6221951605 -130,0,25.0333333333,31.36,24.2,29.5414285714,24.0333333333,30.86,24,29.0985714286,23.79,40.696,13.645,1,24.7,28,26.39,35.29,23.39,31.718,12.1,757.7666666667,47.3333333333,7.6666666667,40,1.1333333333,38.6512739002,38.6512739002 -130,0,25.1,31.5666666667,24.2,29.698,24,30.93,24,29.22,23.79,40.3971428571,13.7633333333,1,24.7,28,26.4371428571,35.1485714286,23.4214285714,31.9185714286,12.1,757.8,47.5,7.5,40,1.2,39.7005484905,39.7005484905 -130,0,25.1,31.8,24.2385714286,30.0542857143,23.86,30.3966666667,24.0285714286,29.9242857143,23.7,40.134,13.3566666667,1,24.76,28,26.39,34.636,23.5,32.29,12.1,757.8333333333,47.6666666667,7.3333333333,40,1.2666666667,49.6829127194,49.6829127194 -130,0,25.0333333333,31.9266666667,24.1,29.956,23.4633333333,29.4933333333,24.2,30.58,23.7771428571,39.9971428571,12.9633333333,1,24.73,27.9633333333,26.3614285714,34.0671428571,23.5,32.41,12.1,757.8666666667,47.8333333333,7.1666666667,40,1.3333333333,13.0726932432,13.0726932432 -120,0,25,31.945,24.0428571429,29.9671428571,23.4633333333,29.9666666667,24.3342857143,31.0528571429,23.79,39.834,12.89,1,24.79,27.8233333333,26.29,33.62,23.5,32.48,12.1,757.9,48,7,40,1.4,49.9053335632,49.9053335632 -110,0,25,32.03,24,30.198,23.5,30,24.4671428571,31.3764285714,23.79,39.7514285714,13.19,1,24.79,27.7,26.29,33.4842857143,23.5,32.3116666667,12.0666666667,757.9333333333,48.5,7,40,1.4833333333,27.1583572146,27.1583572146 -110,0,25,32.09,24,30.48,23.4266666667,29.8,24.6,31.7,23.79,39.754,13.0633333333,1,24.79,27.6333333333,26.29,33.552,23.5,32.174,12.0333333333,757.9666666667,49,7,40,1.5666666667,27.3644614732,27.3644614732 -110,0,25,31.8666666667,23.89,29.7,23.4633333333,30.1333333333,24.6666666667,31.76,23.79,39.54,13.2333333333,1,24.79,27.6,26.29,33.4285714286,23.5,32.45,12,758,49.5,7,40,1.65,7.3091461672,7.3091461672 -110,0,24.9266666667,31.3933333333,23.82,29.6428571429,23.3233333333,29.5933333333,24.7,31.86,23.79,39.4,12.7666666667,1,24.79,27.5333333333,26.25625,33.7,23.5,32.416,11.9666666667,758.0333333333,50,7,40,1.7333333333,22.6870659855,22.6870659855 -110,0,25,31.39,23.7,29.698,23.1666666667,29,24.7,32.06,23.8185714286,39.4,12.33,1,24.79,27.5,26.236,34.036,23.5,32.12,11.9333333333,758.0666666667,50.5,7,40,1.8166666667,13.7117516715,13.7117516715 -100,0,24.9266666667,31.39,23.7,29.9685714286,23.0333333333,28.86,24.7,32.23,23.85,39.156,12.53,1,24.79,27.4175,26.29,34.1528571429,23.5,31.9633333333,11.9,758.1,51,7,40,1.9,25.5098287715,25.5098287715 -100,0,24.89,31.5966666667,23.7,30.236,23,28.7666666667,24.7,32.29,23.8757142857,39.1214285714,12.5,1,24.79,27.39,26.31,34.156,23.4633333333,31.7266666667,11.85,758.1666666667,50.8333333333,7.1666666667,38.1666666667,1.8166666667,35.2161839954,35.2161839954 -90,0,24.89,31.93,23.7,30.4242857143,23.1333333333,29.2933333333,24.73,32.4,23.89,39.016,12.3666666667,1,24.79,27.29,26.4214285714,34.1214285714,23.456,31.314,11.8,758.2333333333,50.6666666667,7.3333333333,36.3333333333,1.7333333333,41.4448338677,41.4448338677 -100,0,25,32.2,23.68,30.66,23.3233333333,29.8966666667,24.79,32.4,23.9371428571,38.8214285714,12.2333333333,1,24.79,27.29,26.5,34.09,23.35,31.06,11.75,758.3,50.5,7.5,34.5,1.65,32.7532019815,32.7532019815 -490,0,24.9266666667,32.1266666667,23.6,30.7257142857,23.4633333333,30.5633333333,24.79,32.4333333333,23.89,38.7,12.0333333333,1,24.76,27.29,26.5,34.1057142857,23.29,30.89,11.7,758.3666666667,50.3333333333,7.6666666667,32.6666666667,1.5666666667,42.1838581329,42.1838581329 -570,10,24.89,32.6666666667,23.56,31.14,23.6,30.8233333333,24.8566666667,32.56,23.89,38.6842857143,11.7633333333,1,24.7,27.3566666667,26.54,34.296,23.236,30.83,11.65,758.4333333333,50.1666666667,7.8333333333,30.8333333333,1.4833333333,30.3456112277,30.3456112277 -460,0,24.9633333333,36.26,23.5,32.2828571429,23.6,31.1566666667,24.89,32.79,23.89,38.612,11.69,1,24.7,27.4266666667,26.5714285714,34.5,23.2,30.772,11.6,758.5,50,8,29,1.4,10.8368356479,10.8368356479 -120,10,25.0333333333,40.2933333333,23.5,35.87125,23.7,31.745,24.89,32.93,23.9214285714,38.7257142857,11.56,1,24.7,27.5,26.6,34.67,23.2,30.7,11.3833333333,758.55,50.8333333333,7.8333333333,30.8333333333,1.4333333333,15.2750131325,15.2750131325 -100,0,25.1,41.6266666667,23.5,38.156,23.7,32.0666666667,24.89,33.7266666667,23.956,39.236,10.925,1,24.7,27.4633333333,26.5428571429,34.1542857143,23.1,30.66,11.1666666667,758.6,51.6666666667,7.6666666667,32.6666666667,1.4666666667,27.9221485485,27.9221485485 -110,10,25.1,39.9633333333,23.3928571429,36.8542857143,23.76,32.46,24.89,34.1333333333,23.9985714286,39.6657142857,11,1,24.7,27.39,26.478,33.476,23.1,30.716,10.95,758.65,52.5,7.5,34.5,1.5,27.4267275003,27.4267275003 -110,0,25.0333333333,36.63,22.814,32.216,23.89,32.9,24.5633333333,31.26,24.12,39.918,11.0666666667,1,24.7,27.29,26.3614285714,33.3685714286,23.1333333333,31.1333333333,10.7333333333,758.7,53.3333333333,7.3333333333,36.3333333333,1.5333333333,35.2001993102,35.2001993102 -100,0,24.8566666667,33.53,22.7,31.2671428571,23.89,32.9,24.23,29.6666666667,24.2,39.3971428571,10.9266666667,1,24.6333333333,27.1633333333,26.29,33.156,23.15,31.045,10.5166666667,758.75,54.1666666667,7.1666666667,38.1666666667,1.5666666667,16.3790166844,16.3790166844 -100,0,24.79,32.3966666667,22.718,30.978,23.9266666667,32.9333333333,24.23,29.6633333333,24.2,38.82,10.8,1,24.6,27.0666666667,26.2771428571,32.94,23.1,30.62,10.3,758.8,55,7,40,1.6,35.288618051,35.288618051 -90,0,24.79,31.8266666667,22.79,30.89,24,33.06,24.29,29.93,24.1571428571,38.4971428571,10.6666666667,1,24.5333333333,26.9266666667,26.26,32.79,23,30.5,10.1833333333,758.85,54.6666666667,6.8333333333,40,1.4,36.6321221343,36.6321221343 -90,0,24.79,31.65,22.79,31.14,24,33.1266666667,24.29,30.1,24.2,38.378,11.5233333333,1,24.5,26.8233333333,26.2,32.7,23.0857142857,30.5285714286,10.0666666667,758.9,54.3333333333,6.6666666667,40,1.2,35.0495142979,35.0495142979 -90,0,24.79,31.7,22.7128571429,31.4814285714,24,33.2,24.29,30.1633333333,24.2,38.30375,12.3966666667,1,24.5,26.89,26.2,32.594,23.1,30.5,9.95,758.95,54,6.5,40,1,30.7077508885,30.7077508885 -90,0,24.7,31.86,22.7,31.85,24,33.29,24.29,30.3566666667,24.2,38.4,12.2333333333,1,24.5,26.89,26.2,32.458,23.1,30.5,9.8333333333,759,53.6666666667,6.3333333333,40,0.8,41.761263425,41.761263425 -80,10,24.7,32.06,22.6285714286,31.8185714286,24,33.29,24.29,30.5,24.16,38.29,11.6266666667,1,24.4266666667,26.8233333333,26.2,32.13,23.06,30.214,9.7166666667,759.05,53.3333333333,6.1666666667,40,0.6,37.5091655529,37.5091655529 -110,0,24.7,32.09,22.5,31.79,24,33.4,24.29,30.5666666667,24.1,38.2771428571,10.0666666667,1,24.39,26.7,26.125,31.7475,22.9371428571,29.9985714286,9.6,759.1,53,6,40,0.4,1.6747237067,1.6747237067 -90,0,24.6333333333,32.03,22.4842857143,31.8614285714,24,33.4333333333,24.29,30.7,24.08,38.178,9.3266666667,1,24.39,26.7,26.1,31.3266666667,22.83,29.85,9.4333333333,759.1833333333,53.3333333333,6,40,0.35,31.3870139187,31.3870139187 -80,0,24.6,32.1266666667,22.37,31.93,24,33.56,24.29,30.8266666667,24.0428571429,38.2071428571,8.76,1,24.29,26.7,26.08,31.52,22.79,29.956,9.2666666667,759.2666666667,53.6666666667,6,40,0.3,25.0205439981,25.0205439981 -80,0,24.6,32.26,22.29,32.5614285714,24,33.59,24.29,30.9266666667,24,38.156,8.3666666667,1,24.29,26.7,26.0666666667,32.1666666667,22.79,30,9.1,759.35,54,6,40,0.25,27.8988032485,27.8988032485 -80,10,24.5333333333,32.2,22.254,33.054,24,33.6633333333,24.23,30.9266666667,24,38.0242857143,8.0333333333,2.1333333333,24.29,26.7,26.0333333333,32.5266666667,22.79,30,8.9333333333,759.4333333333,54.3333333333,6,40,0.2,48.9692176925,48.9692176925 -80,0,24.5333333333,32.26,22.2257142857,33.0771428571,24,33.79,24.2,31,24,37.86,7.76,3.3933333333,24.29,26.79,26,33.02,22.79,30.06,8.7666666667,759.5166666667,54.6666666667,6,40,0.15,23.6371455947,23.6371455947 -80,0,24.5,32.4333333333,22.14,33.174,24,33.8633333333,24.2,31.0666666667,23.9528571429,37.7571428571,7.4666666667,4.7566666667,24.29,26.79,26,33.41,22.79,30.1,8.6,759.6,55,6,40,0.1,13.5796229006,13.5796229006 -80,0,24.5,32.5,22.1,33.3685714286,24,33.9,24.2,31.2,24.06,38.254,7.145,5.8675,24.26,26.89,25.9266666667,33.33,22.7385714286,30.1142857143,8.3833333333,759.6666666667,57.5,5.6666666667,40,0.45,30.0397215993,30.0397215993 -70,0,24.5,32.5,22,33.476,24,33.9,24.2,31.26,24.0285714286,38.34,6.66,7.4,24.2,26.9633333333,25.89,33.295,22.7,30.2,8.1666666667,759.7333333333,60,5.3333333333,40,0.8,22.3656214541,22.3656214541 -80,0,24.5,32.56,22,33.72,24,33.9,24.2,31.39,24,38.356,6.33,8.3933333333,24.2,27.0333333333,25.89,33.5266666667,22.7,30.218,7.95,759.8,62.5,5,40,1.15,3.758417035,3.758417035 -70,0,24.5,32.7,21.978,33.894,24,33.9666666667,24.1333333333,31.4633333333,23.9214285714,38.3214285714,6.1233333333,9.3333333333,24.2,27.1,25.8566666667,33.79,22.6571428571,30.29,7.7333333333,759.8666666667,65,4.6666666667,40,1.5,2.3586462252,2.3586462252 -70,0,24.4266666667,32.6266666667,21.89,34.1685714286,23.945,34.045,24.1,31.6333333333,23.89,38.2,6.3666666667,12.3266666667,24.2,27.2,25.79,33.8633333333,22.6,30.29,7.5166666667,759.9333333333,67.5,4.3333333333,40,1.85,23.6954040127,23.6954040127 -90,0,24.39,32.8,21.83,34.4,23.9725,34.2,24.1,31.7,23.89,38.2,6.56,13.4,24.1333333333,27.26,25.79,33.93,22.7,30.5,7.3,760,70,4,40,2.2,0.6739604287,0.6739604287 -70,10,24.39,33.06,21.8328571429,34.5528571429,23.89,34.2,24.1,31.76,23.89,38.14,6.4333333333,13.6933333333,24.1,27.36,25.73,33.73,22.6714285714,30.6642857143,7.2333333333,760.05,70.5,3.8333333333,40,2.2166666667,27.114985371,27.114985371 -50,0,24.39,33.2666666667,21.79,34.76,23.9057142857,34.3142857143,24.1,31.7,23.89,37.9,6.3,15.6933333333,24.1666666667,27.76,25.7,33.7,22.7,31.1333333333,7.1666666667,760.1,71,3.6666666667,40,2.2333333333,1.5853963909,1.5853963909 -50,0,24.39,33.5266666667,21.7642857143,35.0257142857,24,34.42,24.1,31.73,23.85,37.9,6.1266666667,16.8,24.1333333333,28.1633333333,25.7,33.96,22.7,31.716,7.1,760.15,71.5,3.5,40,2.25,24.8753454769,24.8753454769 -50,0,24.29,33.9633333333,21.7,35.3175,24,34.5,24.025,31.79,23.79,37.9857142857,5.8666666667,17.6666666667,24.2,28.3566666667,25.7,34.6966666667,22.79,32.2975,7.0333333333,760.2,72,3.3333333333,40,2.2666666667,47.7050965652,47.7050965652 -60,0,24.29,34.1175,21.6,35.4,24,34.59,24.0666666667,31.8566666667,23.79,38.018,5.7633333333,18.9933333333,24.2,28.6333333333,25.7,35.2233333333,22.79,32.7966666667,6.9666666667,760.25,72.5,3.1666666667,40,2.2833333333,19.8564142105,19.8564142105 -50,0,24.23,34.2,21.6,35.4857142857,24,34.6842857143,24,32,23.79,38.1685714286,5.69,19.5933333333,24.2,28.8266666667,25.6,35.3266666667,22.79,33.176,6.9,760.3,73,3,40,2.3,15.1356869843,15.1356869843 -40,0,24.2,34.3266666667,21.54,35.576,24,34.754,24,32.06,23.79,38.2,5.4333333333,19.8,24.2,29.0333333333,25.5333333333,35.4666666667,22.79,33.5725,6.7833333333,760.3166666667,73.1666666667,2.8333333333,40,2.2166666667,21.0963571328,21.0963571328 -50,0,24.2,34.4666666667,21.5,35.7257142857,24,34.79,24,32.1266666667,23.7385714286,38.34,5.16,20.4,24.2,29.1666666667,25.5,35.6266666667,22.79,33.93,6.6666666667,760.3333333333,73.3333333333,2.6666666667,40,2.1333333333,31.7832397413,31.7832397413 -50,0,24.1,34.5666666667,21.456,35.79,24,34.9,24,32.2,23.718,38.46,4.9333333333,21.6666666667,24.2,29.3233333333,25.5,35.8333333333,22.83,34.316,6.55,760.35,73.5,2.5,40,2.05,18.4355093515,18.4355093515 -50,0,24.1,34.7,21.39,35.8528571429,24,35.0085714286,24,32.3266666667,23.7514285714,38.5642857143,4.66,21.9266666667,24.2,29.4633333333,25.39,35.9,22.89,34.82,6.4333333333,760.3666666667,73.6666666667,2.3333333333,40,1.9666666667,13.7953903177,13.7953903177 -50,0,24.1,34.7,21.37,35.978,24,35.09,24,32.4666666667,23.7,38.634,4.2633333333,23.43,24.1,29.6,25.39,35.7666666667,22.89,35.1566666667,6.3166666667,760.3833333333,73.8333333333,2.1666666667,40,1.8833333333,8.7491794606,8.7491794606 -60,0,24.1,34.76,21.29,36.1214285714,24,35.1685714286,24,32.59,23.7257142857,38.7,4.3225,24.77,24.1,29.7,25.39,35.79,22.89,35.434,6.2,760.4,74,2,40,1.8,15.1083579403,15.1083579403 -50,0,24.0666666667,34.79,21.254,36.29,24,35.2,24,32.6633333333,23.7,38.745,4.16,24.79,24.1666666667,29.76,25.3233333333,35.8633333333,22.89,35.752,6,760.45,75.3333333333,2,40,1.85,6.8534348742,6.8534348742 -60,0,24,34.79,21.2,36.3528571429,24.0857142857,35.2771428571,24,32.7,23.7,38.856,3.7966666667,25.4566666667,24.1,29.86,25.26,35.9333333333,22.89,36,5.8,760.5,76.6666666667,2,40,1.9,47.6570081431,47.6570081431 -50,0,24,34.8266666667,21.18,36.478,24.1,35.312,24,32.76,23.7,38.9,3.53,26.5233333333,24.1,30,25.2,36,22.89,36.24,5.6,760.55,78,2,40,1.95,2.5903248577,2.5903248577 -50,0,24,34.9,21.1,36.59,24.1,35.3685714286,24,32.9,23.7,38.94,3.26,27.93,24.0333333333,30.0333333333,25.2,36,22.9266666667,36.615,5.4,760.6,79.3333333333,2,40,2,12.0386726107,12.0386726107 -50,0,23.9633333333,34.9333333333,21.04,36.736,24.1,35.334,23.9266666667,32.9,23.7,39,3.1266666667,28.7966666667,24.1,30.1,25.2,35.8633333333,22.89,36.916,5.2,760.65,80.6666666667,2,40,2.05,46.0883999127,46.0883999127 -50,0,23.89,35,21.0428571429,36.8057142857,24.1,35.3371428571,23.9266666667,33,23.7,39,2.8633333333,29.5566666667,24.1,30.2,25.1333333333,35.79,22.89,37.09,5,760.7,82,2,40,2.1,17.3081484973,17.3081484973 -60,0,23.89,35,21,36.92,24.1,35.29,23.9266666667,33,23.7,39,2.79,30.3633333333,24.0333333333,30.1333333333,25.1,35.8266666667,22.934,37.258,4.9,760.7,82.6666666667,2,40,2.1166666667,0.1816846663,0.1816846663 -50,0,23.89,35.06,20.9685714286,37.0257142857,24.1285714286,35.3214285714,23.89,33.09,23.7,39,2.6633333333,30.7633333333,24,30.1333333333,25.1,35.9,23,37.44,4.8,760.7,83.3333333333,2,40,2.1333333333,20.5191359622,20.5191359622 -50,0,23.79,35,20.85,37.09,24.2,35.4,23.89,33.1633333333,23.6142857143,38.8828571429,2.53,31.1566666667,24,30.2,25.1,36,23,37.59,4.7,760.7,84,2,40,2.15,49.7034599422,49.7034599422 -60,0,23.79,35.06,20.8042857143,37.1657142857,24.2,35.4,23.89,33.2,23.6,38.9,2.5,32.96,24,30.23,25.0333333333,36.06,23,37.674,4.6,760.7,84.6666666667,2,40,2.1666666667,45.740358741,45.740358741 -60,0,23.79,35.09,20.83,37.29,24.2,35.48625,23.89,33.26,23.6,38.9,2.5,33.8333333333,24,30.29,24.9633333333,36.2,23,37.898,4.5,760.7,85.3333333333,2,40,2.1833333333,6.6381753772,6.6381753772 -50,0,23.79,35.09,20.7642857143,37.3214285714,24.2,35.59,23.84,33.395,23.6,38.94,2.4,33.6933333333,24,30.3233333333,24.9633333333,36.2,23,38,4.4,760.7,86,2,40,2.2,30.7699519093,30.7699519093 -60,0,23.79,35.09,20.7,37.5,24.2,35.59,23.79,33.4333333333,23.6,39,2.4,33.9666666667,24,30.39,24.89,36.23,23,38.116,4.4,760.7,85.8333333333,2,40,2.1666666667,44.2008252605,44.2008252605 -50,0,23.79,35.2,20.7,37.5928571429,24.2,35.634,23.79,33.5,23.54,39,2.29,34.4333333333,24,30.3233333333,24.89,36.3633333333,23,38.236,4.4,760.7,85.6666666667,2,40,2.1333333333,1.4332861989,1.4332861989 -60,0,23.79,35.2,20.68,37.7,24.2,35.7,23.8566666667,33.59,23.5285714286,39,2.29,34.6333333333,24,30.39,24.89,36.29,23,38.4333333333,4.4,760.7,85.5,2,40,2.1,14.2079035053,14.2079035053 -50,0,23.76,35.2,20.6428571429,37.7385714286,24.254,35.754,23.79,33.59,23.5,39,2.2,34.995,24,30.5,24.89,36.3633333333,23,38.5642857143,4.4,760.7,85.3333333333,2,40,2.0666666667,27.0280363271,27.0280363271 -40,0,23.7,35.2,20.6,37.79,24.29,35.8214285714,23.79,33.7,23.5,39.018,2.06,35.03,24,30.5,24.79,36.4,23,38.7,4.4,760.7,85.1666666667,2,40,2.0333333333,17.3794329981,17.3794329981 -60,0,23.7,35.23,20.6,37.9,24.29,35.94,23.79,33.7,23.5,39.09,2,35.2966666667,23.9633333333,30.5,24.79,36.4,23.05,38.7675,4.4,760.7,85,2,40,2,9.6541045117,9.6541045117 -30,0,23.7,35.29,20.5142857143,37.9857142857,24.2771428571,36,23.79,33.73,23.5,39.09,1.9666666667,35.4933333333,23.89,30.5,24.79,36.29,23,38.8685714286,4.2666666667,760.7,85.5,2,40,1.95,8.5150354309,8.5150354309 -40,0,23.7,35.29,20.5,38.018,24.254,36.076,23.79,33.79,23.5,39.09,1.9,36.16,23.89,30.5,24.79,36.29,23.06,39,4.1333333333,760.7,86,2,40,1.9,18.5778080253,18.5778080253 -30,0,23.7,35.29,20.4685714286,38.0642857143,24.2257142857,36.2,23.76,33.79,23.5,39.1685714286,2.1566666667,37.6933333333,23.89,30.6,24.76,36.2,23,39.0225,4,760.7,86.5,2,40,1.85,38.3255486959,38.3255486959 -40,0,23.7,35.4,20.39,38.09,24.2,36.29,23.76,33.79,23.5,39.2,2.3633333333,37.7666666667,23.89,30.6,24.7,36.26,23.0428571429,39.1371428571,3.8666666667,760.7,87,2,40,1.8,27.2287617321,27.2287617321 -40,0,23.7,35.4,20.39,38.1842857143,24.2,36.29,23.73,33.8266666667,23.5,39.2,2.4,37.83,23.89,30.6,24.7,36.4,23.06,39.254,3.7333333333,760.7,87.5,2,40,1.75,0.4091203096,0.4091203096 -50,0,23.6,35.3266666667,20.37,38.254,24.2,36.29,23.73,33.9,23.5,39.2,2.4,38.03,23.89,30.6666666667,24.7,36.4,23,39.2928571429,3.6,760.7,88,2,40,1.7,31.0430208803,31.0430208803 -60,0,23.6,35.4,20.29,38.3214285714,24.2,36.3214285714,23.7,33.9,23.4371428571,39.2,2.3266666667,38.5966666667,23.89,30.6666666667,24.7,36.4,23,39.4,3.6833333333,760.7,87.5,2,38.1666666667,1.7166666667,13.6698865448,13.6698865448 -50,0,23.6,35.4,20.29,38.4,24.2,36.5,23.7,33.9,23.39,39.2,2.4,38.73,23.89,30.6666666667,24.6,36.4,23.04,39.44,3.7666666667,760.7,87,2,36.3333333333,1.7333333333,31.0765150236,31.0765150236 -60,0,23.6,35.4,20.29,38.4142857143,24.2,36.5128571429,23.7,33.9333333333,23.39,39.2257142857,2.4,38.7,23.79,30.6,24.6,36.4,23.075,39.55625,3.85,760.7,86.5,2,34.5,1.75,10.375361552,10.375361552 -40,0,23.6,35.4,20.29,38.5,24.2,36.59,23.7,34,23.39,39.29,2.3266666667,38.6266666667,23.8566666667,30.6666666667,24.6,36.5,23,39.5225,3.9333333333,760.7,86,2,32.6666666667,1.7666666667,12.0987118105,12.0987118105 -50,0,23.6,35.4666666667,20.29,38.5257142857,24.2,36.59,23.7,34,23.39,39.29,2.4,39.0266666667,23.79,30.6,24.6,36.5,23.0714285714,39.6685714286,4.0166666667,760.7,85.5,2,30.8333333333,1.7833333333,44.8857709765,44.8857709765 -60,0,23.5666666667,35.5,20.2,38.536,24.2,36.634,23.7,34,23.39,39.29,2.4,39.2333333333,23.79,30.6666666667,24.6,36.4666666667,23,39.59,4.1,760.7,85,2,29,1.8,37.9648336559,37.9648336559 -40,0,23.5,35.5,20.2,38.59,24.2,36.7,23.6666666667,34,23.39,39.3175,2.8,40.8966666667,23.79,30.7,24.5333333333,36.4,23.0428571429,39.6914285714,4.1333333333,760.75,85,2.1666666667,30.8333333333,1.8166666667,16.5255732252,16.5255732252 -60,0,23.5,35.5,20.2,38.612,24.2,36.736,23.6,34,23.39,39.4,3.1175,41.52,23.79,30.7,24.5,36.4,23,39.718,4.1666666667,760.8,85,2.3333333333,32.6666666667,1.8333333333,13.7255537673,13.7255537673 -60,0,23.5,35.545,20.2,38.7,24.2257142857,36.7957142857,23.6,34,23.39,39.4,3.3633333333,41.79,23.79,30.73,24.5,36.4,23,39.79,4.2,760.85,85,2.5,34.5,1.85,0.788274454,0.788274454 -60,0,23.5,35.56,20.2,38.7,24.29,36.9,23.6,34.03,23.39,39.4,3.6266666667,42.36,23.79,30.73,24.5,36.4,23.0666666667,39.9666666667,4.2333333333,760.9,85,2.6666666667,36.3333333333,1.8666666667,25.1469620503,25.1469620503 -60,0,23.5,35.59,20.2,38.7514285714,24.2642857143,36.8828571429,23.6,34.03,23.3733333333,39.4166666667,3.8333333333,42.56,23.7,30.79,24.5,36.4,23.0428571429,39.9428571429,4.2666666667,760.95,85,2.8333333333,38.1666666667,1.8833333333,35.0801197346,35.0801197346 -50,0,23.4266666667,35.59,20.2,38.772,24.29,36.94,23.6,34.09,23.29,39.5,4,41.86,23.7,30.79,24.4633333333,36.4,23.06,40.054,4.3,761,85,3,40,1.9,47.7170333266,47.7170333266 -50,0,23.39,35.59,20.2,38.7,24.29,36.925,23.6,34.1633333333,23.29,39.5,4,41.4,23.7,30.8233333333,24.39,36.3266666667,23.0285714286,40.0257142857,4.3833333333,761.0166666667,85.5,2.8333333333,40,2.0666666667,13.2247863803,13.2247863803 -60,0,23.39,35.59,20.2,38.7,24.29,36.9,23.6,34.2,23.29,39.515,3.9333333333,41.1933333333,23.7,30.8233333333,24.39,36.29,23,40.018,4.4666666667,761.0333333333,86,2.6666666667,40,2.2333333333,22.6946894894,22.6946894894 -40,0,23.39,35.6266666667,20.2514285714,38.7,24.29,36.9,23.6,34.2,23.29,39.59,4.1266666667,41.9933333333,23.7,30.89,24.39,36.29,23,40.09,4.55,761.05,86.5,2.5,40,2.4,3.6046905094,3.6046905094 -60,0,23.39,35.7,20.29,38.7,24.29,36.9,23.6,34.2,23.29,39.59,4.4333333333,41.8333333333,23.7,30.89,24.3566666667,36.29,23.075,40.1725,4.6333333333,761.0666666667,87,2.3333333333,40,2.5666666667,45.6160578295,45.6160578295 -50,0,23.39,35.7,20.29,38.6214285714,24.29,36.9,23.5333333333,34.2,23.29,39.59,4.6266666667,41.5,23.7,30.89,24.29,36.43,23.0714285714,40.2328571429,4.7166666667,761.0833333333,87.5,2.1666666667,40,2.7333333333,22.0949279144,22.0949279144 -90,0,23.39,35.9,20.39,38.554,24.29,36.8685714286,23.5,34.29,23.29,39.59,4.9633333333,40.4966666667,23.7,30.89,24.39,36.59,23.1,40.254,4.8,761.1,88,2,40,2.9,21.518784191,21.518784191 -80,0,23.39,36.1566666667,20.39,38.885,24.29,36.7,23.5,34.29,23.29,39.59,5.23,39.9633333333,23.7,30.89,24.3233333333,36.7233333333,23.1,39.7128571429,4.9666666667,761.1333333333,87.1666666667,2.1666666667,40,2.9333333333,33.1298935926,33.1298935926 -50,0,23.39,36.7633333333,20.4057142857,39.3128571429,24.29,36.7,23.5333333333,34.29,23.29,39.69,5.8266666667,40.4,23.7,31,24.29,36.79,23.04,39.034,5.1333333333,761.1666666667,86.3333333333,2.3333333333,40,2.9666666667,45.3527791775,45.3527791775 -60,0,23.39,36.9666666667,20.52,39.518,24.35,36.678,23.5333333333,34.29,23.29,39.79,6.7666666667,38.46,23.7,31,24.29,36.79,23,38.4657142857,5.3,761.2,85.5,2.5,40,3,38.7635942432,38.7635942432 -60,0,23.39,36.9666666667,20.7257142857,39.6685714286,24.4685714286,36.6685714286,23.5,34.26,23.29,39.8985714286,7.9233333333,32.53,23.7,31,24.29,36.79,23.075,38.0425,5.4666666667,761.2333333333,84.6666666667,2.6666666667,40,3.0333333333,44.6039417526,44.6039417526 -220,0,23.4633333333,37.1333333333,21.954,38.76,24.6,36.59,23.5,34.3333333333,23.272,39.918,8.8633333333,28.0633333333,23.7,30.8,24.29,36.7233333333,23.0714285714,37.7,5.6333333333,761.2666666667,83.8333333333,2.8333333333,40,3.0666666667,29.8165192246,29.8165192246 -190,0,23.39,36.9333333333,22.9371428571,37.1957142857,24.6857142857,36.5385714286,23.5333333333,34.6266666667,23.218,39.714,10.05,17.795,23.6333333333,30.4633333333,24.29,36.59,23.04,37.134,5.8,761.3,83,3,40,3.1,31.0089759179,31.0089759179 -120,0,23.4266666667,36.86,23.196,35.976,24.68,36.48,23.6,34.76,23.2514285714,39.5257142857,10.4633333333,8.3233333333,23.6333333333,30.1966666667,24.23,36.4,23.1,37.8,6.2,761.3833333333,80.5,3.3333333333,40,3,22.973742825,22.973742825 -70,0,23.5,36.8,22.85,35.5957142857,24.6,36.3214285714,23.5333333333,34.5266666667,23.29,39.254,10.4633333333,7.5966666667,23.6,29.93,24.23,36.3266666667,23.1,38.734,6.6,761.4666666667,78,3.6666666667,40,2.9,11.6935223225,11.6935223225 -50,0,23.39,36.4,22.6,35.7,24.56,36.254,23.5333333333,34.4666666667,23.236,39.054,10.6,7.3333333333,23.6,29.73,24.2,36.2,23.1428571429,39.4114285714,7,761.55,75.5,4,40,2.8,3.0681638978,3.0681638978 -150,0,23.4633333333,36.2,22.5285714286,35.8828571429,24.5285714286,36.2771428571,23.6,34.45,23.215,38.9166666667,10.5333333333,7.06,23.6,29.6,24.2,36.2,23.2,38.995,7.4,761.6333333333,73,4.3333333333,40,2.7,34.4701272086,34.4701272086 -130,10,23.445,36.44,22.62,35.856,24.434,36.152,23.6,34.59,23.2,38.775,10.6966666667,6.8333333333,23.5333333333,29.5333333333,24.2,36.1633333333,23.1285714286,38.4285714286,7.8,761.7166666667,70.5,4.6666666667,40,2.6,21.4366000379,21.4366000379 -120,0,23.5,37.5333333333,22.7,35.51,24.39,35.9285714286,23.6,34.39,23.2,38.7,11.09,5.4333333333,23.6,29.39,24.2,36.1633333333,23.1142857143,37.8957142857,8.2,761.8,68,5,40,2.5,34.7857017885,34.7857017885 -110,0,23.5,39.5333333333,22.5,33.97,24.5,35.856,23.4633333333,32.9333333333,23.2,38.616,11.2633333333,4.83,23.6,29.39,24.2,36.53,23.2,37.574,8.35,761.8,67.6666666667,5,40,2.5833333333,6.937653129,6.937653129 -80,0,23.5,38.03,22.2971428571,33.4985714286,24.3485714286,35.3257142857,23.2633333333,32.3266666667,23.2,38.48,11.0633333333,4.43,23.5333333333,29.3566666667,24.26,36.8633333333,23.2,37.0928571429,8.5,761.8,67.3333333333,5,40,2.6666666667,12.8871824592,12.8871824592 -100,0,23.4266666667,36.9566666667,22.218,33.738,24.29,35.072,23.29,32.6933333333,23.2,38.4166666667,10.9,5.3,23.5333333333,29.29,24.29,36.9,23.1,36.59,8.65,761.8,67,5,40,2.75,15.7873510732,15.7873510732 -100,0,23.5,36.86,22.3928571429,34.5371428571,24.29,35,23.3566666667,33.0266666667,23.2,38.518,11.4333333333,5.0933333333,23.5,29.2,24.29,36.9666666667,23.1142857143,36.4557142857,8.8,761.8,66.6666666667,5,40,2.8333333333,23.0886869482,23.0886869482 -100,0,23.4266666667,37.1333333333,22.456,36.616,24.254,34.96,23.39,33.2666666667,23.2,38.59,11.83,3.3966666667,23.55,29.2,24.29,37,23.2,36.345,8.95,761.8,66.3333333333,5,40,2.9166666667,4.4679325307,4.4679325307 -70,0,23.39,36.5333333333,22.1385714286,35.51,24.1428571429,34.6957142857,23.4633333333,33.5266666667,23.2,38.59,11.83,2.4566666667,23.5,29.2,24.3566666667,36.9333333333,23.2,36.1371428571,9.1,761.8,66,5,40,3,14.0620933147,14.0620933147 -80,0,23.39,35.7933333333,22,34.238,24.04,33.956,23.5,33.7,23.2,38.46,12.13,1.9333333333,23.5,29.1,24.39,36.7233333333,23.2,35.918,9.25,761.85,65.1666666667,4.8333333333,40,2.9666666667,29.0046108421,29.0046108421 -80,10,23.3566666667,35,22,34.0257142857,23.9214285714,33.0714285714,23.5,33.545,23.2,38.1257142857,12.39,1,23.5,29.0333333333,24.4633333333,36.53,23.2,35.6942857143,9.4,761.9,64.3333333333,4.6666666667,40,2.9333333333,10.8186178724,10.8186178724 -200,0,23.29,35.06,21.89,33.856,23.66,33.08,23.5333333333,33.4666666667,23.2,37.816,12.6,1.1333333333,23.6,29,24.5333333333,36.3333333333,23.2,35.46,9.55,761.95,63.5,4.5,40,2.9,11.0609187861,11.0609187861 -110,10,23.2,34.56,22.0557142857,33.79,23.6,33.09375,23.6,33.4666666667,23.2,37.634,12.86,1,23.6,28.9266666667,24.6,36.095,23.1571428571,35.3528571429,9.7,762,62.6666666667,4.3333333333,40,2.8666666667,29.5265661902,29.5265661902 -110,0,23.2,34.5,22.218,33.736,23.6985714286,33.4957142857,23.6,33.56,23.2,37.575,12.66,1,23.5333333333,28.89,24.6666666667,36,23.14,35.25,9.85,762.05,61.8333333333,4.1666666667,40,2.8333333333,9.7004808835,9.7004808835 -100,0,23.2,34.53,22.3614285714,33.7385714286,23.79,33.718,23.6,33.4333333333,23.2,37.5,12.695,1,23.6,28.8233333333,24.79,36.09,23.1,35.075,10,762.1,61,4,40,2.8,27.4706636555,27.4706636555 -100,10,23.2,34.6633333333,22.434,33.736,23.8614285714,33.94,23.6,33.4633333333,23.2,37.5,13,1,23.6,28.76,24.79,36.09,23.08,34.834,10.1,762.1,60.5,4.1666666667,40,2.7833333333,28.5635064822,28.5635064822 -110,0,23.1333333333,34.86,22.6428571429,33.8085714286,23.89,34.09,23.6,33.7233333333,23.2,37.5,13.5333333333,1,23.6,28.6333333333,24.89,35.9666666667,23.0428571429,34.5357142857,10.2,762.1,60,4.3333333333,40,2.7666666667,15.1890162728,15.1890162728 -100,10,23.2,35.06,22.73,33.76,23.9528571429,34.2357142857,23.6,33.9,23.2,37.5,13.66,1,23.6,28.6,24.89,35.7666666667,23.06,34.32,10.3,762.1,59.5,4.5,40,2.75,5.3980754572,5.3980754572 -110,0,23.1666666667,35.23,22.8042857143,33.78,24,34.356,23.6666666667,33.9666666667,23.2,37.5,13.7,1,23.6,28.5333333333,25,35.6333333333,23,34.04,10.4,762.1,59,4.6666666667,40,2.7333333333,20.6051108544,20.6051108544 -110,0,23.1,35.29,22.9214285714,33.8685714286,24,34.4714285714,23.7,34.145,23.2,37.5,13.5666666667,1,23.6,28.5,25.0666666667,35.4333333333,23,33.878,10.5,762.1,58.5,4.8333333333,40,2.7166666667,40.6288481317,40.6288481317 -90,10,23.1666666667,35.4,23.1,33.7,24,34.5,23.7,34.1633333333,23.2,37.5,14.0633333333,1,23.6,28.4266666667,25.1333333333,35.3633333333,23,33.79,10.6,762.1,58,5,40,2.7,39.110812475,39.110812475 -100,0,23.175,35.4975,23.1,33.7,24,34.5671428571,23.7,34.03,23.2,37.5128571429,14.0633333333,1,23.6,28.39,25.26,35.23,23,33.652,10.7166666667,762.1,57.5,5,40,2.6833333333,5.7133639464,5.7133639464 -90,0,23.2,35.59,23.16,33.678,24.04,34.736,23.79,33.9333333333,23.2,37.536,14.1666666667,1,23.6666666667,28.39,25.23,35.2,22.9214285714,33.5,10.8333333333,762.1,57,5,40,2.6666666667,30.8245459804,30.8245459804 -110,0,23.2,35.5666666667,23.2257142857,33.5257142857,24.0714285714,34.7957142857,23.79,33.9333333333,23.2,37.56,14.5,1,23.7,28.3566666667,25.23,35.1266666667,22.89,33.4,10.95,762.1,56.5,5,40,2.65,3.9302887744,3.9302887744 -100,0,23.2,35.76,23.2,33.254,24.1,34.9,23.79,33.8633333333,23.18,37.516,14.6633333333,1,23.7,28.29,25.2,35.09,22.9371428571,33.3842857143,11.0666666667,762.1,56,5,40,2.6333333333,48.422922357,48.422922357 -90,0,23.2,35.4666666667,23.2771428571,33.2257142857,24.1,34.9285714286,23.8566666667,33.79,23.1666666667,37.3816666667,14.2566666667,1,23.7,28.2,25.2,35.03,22.934,33.29,11.1833333333,762.1,55.5,5,40,2.6166666667,8.0759927863,8.0759927863 -110,0,23.26,35.2666666667,23.272,33.16,24.16,34.92,23.79,33.56,23.2,37.29,14.7266666667,1,23.7,28.2,25.33,35,22.89,33.20875,11.3,762.1,55,5,40,2.6,13.9809585293,13.9809585293 -110,0,23.29,35.03,23.2,33.1685714286,24.2,35,23.8566666667,33.56,23.2,37.29,14.8,1,23.7,28.15,25.39,35,22.89,33.0257142857,11.5166666667,762.05,54,5,40,2.5333333333,43.73785184,43.73785184 -100,0,23.29,35.09,23.29,33.5,24.2,34.925,23.89,33.4666666667,23.2,37.3633333333,15.2633333333,1,23.7,28.0666666667,25.4057142857,34.9842857143,22.89,32.9,11.7333333333,762,53,5,40,2.4666666667,45.1568877208,45.1568877208 -260,0,23.29,35.1266666667,23.3471428571,33.5771428571,24.2,35,23.8233333333,33.2666666667,23.2,37.4,15.3233333333,1,23.7,28,25.5,35.156,22.9214285714,32.8371428571,11.95,761.95,52,5,40,2.4,20.8572309348,20.8572309348 -160,0,23.29,35.2,23.412,33.572,24.2,35,23.8233333333,33.23,23.2,37.4,15.46,1,23.79,27.89,25.5,35.2,22.89,32.976,12.1666666667,761.9,51,5,40,2.3333333333,9.4884209568,9.4884209568 -80,10,23.39,35.26,23.5,33.4714285714,24.2,35,23.89,33.23,23.1333333333,37.4,15.7933333333,1,23.79,27.8233333333,25.5,35,22.9214285714,34.2071428571,12.3833333333,761.85,50,5,40,2.2666666667,25.9633355774,25.9633355774 -80,0,23.39,35.1266666667,23.5,33.254,24.2,35.0225,23.89,33.1633333333,23.2,37.4,15.9266666667,1,23.8233333333,27.73,25.5571428571,34.9428571429,23,35.29,12.6,761.8,49,5,40,2.2,37.1600053273,37.1600053273 -90,0,23.39,34.93,23.4842857143,32.9957142857,24.2,35.09,23.8233333333,33.03,23.2,37.3633333333,15.7475,1,23.8233333333,27.6633333333,25.6,34.94,23,35.2228571429,12.6333333333,761.75,48.8333333333,4.8333333333,40,2.1666666667,49.0390021936,49.0390021936 -90,0,23.39,34.93,23.312,32.156,24.2,35.09,23.8233333333,33,23.2,37.29,15.33,1,23.8233333333,27.6,25.5285714286,34.9,23,34.994,12.6666666667,761.7,48.6666666667,4.6666666667,40,2.1333333333,30.4021644406,30.4021644406 -70,0,23.39,34.8633333333,23.2642857143,31.7642857143,24.2,34.9475,23.89,32.86,23.2,37.1633333333,15.2633333333,1,23.8233333333,27.46,25.55,34.745,23,34.6685714286,12.7,761.65,48.5,4.5,40,2.1,35.3093742626,35.3093742626 -100,0,23.39,34.73,23.33,32,24.2,34.32,23.79,32.7,23.2,37.09,15.3966666667,1,23.8233333333,27.39,25.6,34.7,23,34.21,12.7333333333,761.6,48.3333333333,4.3333333333,40,2.0666666667,27.8916562092,27.8916562092 -100,10,23.4266666667,34.8633333333,23.39,32.1142857143,24.1333333333,34,23.79,32.7,23.2,37.06,15.53,1,23.89,27.39,25.6,34.6371428571,23,33.94,12.7666666667,761.55,48.1666666667,4.1666666667,40,2.0333333333,31.9859233219,31.9859233219 -100,0,23.5,34.8633333333,23.37,32.296,24.2,34.018,23.79,32.6266666667,23.2,37,15.4633333333,1,23.89,27.3566666667,25.6,34.545,23,33.696,12.8,761.5,48,4,40,2,5.8091020677,5.8091020677 -80,0,23.5,34.9333333333,23.29,32.5,24.2,34.09,23.79,32.7225,23.2,36.9666666667,15.53,1,23.89,27.29,25.6,34.5,23,33.4285714286,12.9333333333,761.4666666667,48,4,40,2.1,28.8646578789,28.8646578789 -90,0,23.5,35,23.29,32.59,24.2,34.2,23.79,32.99,23.2,36.9,15.4633333333,1,23.89,27.2,25.6666666667,34.4333333333,22.934,33.254,13.0666666667,761.4333333333,48,4,40,2.2,8.0813702079,8.0813702079 -100,0,23.5,35,23.29,32.6842857143,24.2,34.2514285714,23.89,33.36,23.2,37,15.3966666667,1,23.89,27.2,25.7,34.2675,22.9057142857,33.04,13.2,761.4,48,4,40,2.3,40.6084039481,40.6084039481 -90,20,23.5,34.9666666667,23.272,32.678,24.2,34.356,23.89,33.56,23.2,37,15.19,1,23.89,27.2,25.7,34.112,22.89,32.9,13.3333333333,761.3666666667,48,4,40,2.4,27.2666004021,27.2666004021 -100,20,23.5,34.9666666667,23.2,32.59,24.2,34.4,23.89,33.73,23.1666666667,37,14.9333333333,1,23.89,27.2,25.754,34.13,22.89,32.8214285714,13.4666666667,761.3333333333,48,4,40,2.5,48.15244528,48.15244528 -100,20,23.5,34.9,23.1,32.7225,24.2225,34.55,23.89,33.8633333333,23.1,37,14.6666666667,1,23.89,27.2,25.79,34.3685714286,22.89,32.7,13.6,761.3,48,4,40,2.6,49.910295906,49.910295906 -110,30,23.5,34.9,23,32.834,24.29,34.718,23.9266666667,34.03,23.1,37.03,14.39,1,23.89,27.26,25.79,34.29,22.89,32.6371428571,13.6,761.2666666667,47.5,4,40,2.4833333333,33.8828370674,33.8828370674 -130,20,23.5,34.9333333333,22.9371428571,32.97,24.29,34.876,24,34.1633333333,23.1,37.1725,14.33,1,23.79,27.3233333333,25.79,34.26,22.89,32.59,13.6,761.2333333333,47,4,40,2.3666666667,25.68613732,25.68613732 -110,20,23.5,35,22.87,33.112,24.29,35,24.0333333333,34.23,23.1,37.2,13.8966666667,1,23.79,27.4175,25.79,34.05,22.89,32.6214285714,13.6,761.2,46.5,4,40,2.25,40.6178753474,40.6178753474 -110,20,23.5,34.9,22.7257142857,33.2257142857,24.29,35,24.1,34.29,23.1,37.29,13.63,1,23.79,27.5666666667,25.85,33.79,22.89,32.7,13.6,761.1666666667,46,4,40,2.1333333333,49.732428533,49.732428533 -300,30,23.5,35.0266666667,22.66,33.46,24.29,35,24.1333333333,34.3266666667,23.1,37.29,13.36,1,23.79,27.6333333333,25.89,33.96,22.8757142857,32.7385714286,13.6,761.1333333333,45.5,4,40,2.0166666667,5.2342905197,5.2342905197 -360,20,23.5,35.06,22.5857142857,33.6128571429,24.29,35.018,24.2,34.3266666667,23.1,37.29,13.1666666667,1,23.73,27.76,25.89,33.98,22.79,32.718,13.6,761.1,45,4,40,1.9,5.5889635463,5.5889635463 -140,20,23.5,35,22.5,33.812,24.29,35.09,24.2,34.29,23.1,37.29,12.7,2,23.7,28.0333333333,25.89,34.08,22.8328571429,32.8685714286,13.3833333333,761.0833333333,46.6666666667,3.8333333333,40,2.1666666667,3.831419372,3.831419372 -100,20,23.5,35.09,22.5,33.9714285714,24.29,35.09,24.2,34.29,23.1,37.3266666667,12.2633333333,4.1266666667,23.7,28.1666666667,25.89,34.4,22.8275,32.9625,13.1666666667,761.0666666667,48.3333333333,3.6666666667,40,2.4333333333,8.6007915321,8.6007915321 -200,20,23.5,35.1633333333,22.39,34.134,24.29,35.156,24.2,34.29,23.1,37.4,12.0633333333,5.3933333333,23.7,28.4266666667,25.89,34.44,22.79,33.134,12.95,761.05,50,3.5,40,2.7,42.1028566896,42.1028566896 -330,30,23.5,35.36,22.3757142857,34.3542857143,24.29,35.2,24.2,34.29,23,37.3266666667,11.9633333333,6.0333333333,23.7,28.5666666667,25.89,34.616,22.8185714286,33.2771428571,12.7333333333,761.0333333333,51.6666666667,3.3333333333,40,2.9666666667,26.8208256341,26.8208256341 -290,20,23.5,35.8933333333,22.33,34.816,24.29,35.23,24.26,34.4666666667,23,37.4,11.89,6.4933333333,23.6666666667,28.79,25.89,35.08,22.79,33.356,12.5166666667,761.0166666667,53.3333333333,3.1666666667,40,3.2333333333,25.5493905628,25.5493905628 -120,0,23.5333333333,37.2333333333,22.29,35.9285714286,24.29,35.29,24.2,34.4666666667,23.0333333333,37.4633333333,11.7633333333,6.8966666667,23.6,28.8566666667,25.89,35.272,22.79,33.4285714286,12.3,761,55,3,40,3.5,37.9229044775,37.9229044775 -80,10,23.6,37.7666666667,22.29,36.94,24.29,35.4,24.23,34.6266666667,23.0333333333,37.59,11.63,7.09,23.6,29.0333333333,25.85,35.054,22.79,33.536,12.1,760.9833333333,56.6666666667,3,38.1666666667,3.7166666667,12.6424862538,12.6424862538 -80,0,23.6,37.59,22.2128571429,37.0514285714,24.29,35.475,24.29,34.7,23,37.8266666667,11.5666666667,7.7,23.6,29.1666666667,25.79,35,22.79,33.6528571429,11.9,760.9666666667,58.3333333333,3,36.3333333333,3.9333333333,37.4830345856,37.4830345856 -100,30,23.6,37.59,22.18,37.09,24.29,35.5642857143,24.2,34.59,23,37.9666666667,11.3666666667,9.7,23.6,29.2633333333,25.79,35,22.79,33.718,11.7,760.95,60,3,34.5,4.15,8.2266498357,8.2266498357 -110,20,23.6,37.45,22.1714285714,37.09,24.2,35.634,24.2,34.73,23,38.09,11.03,13.2966666667,23.6,29.4633333333,25.79,35.13375,22.79,33.8214285714,11.5,760.9333333333,61.6666666667,3,32.6666666667,4.3666666667,44.858174026,44.858174026 -100,20,23.6,37.3633333333,22.1,37.09,24.2,35.736,24.2,34.93,23,38.1633333333,10.7566666667,16.5566666667,23.6,29.6633333333,25.772,35.332,22.79,33.94,11.3,760.9166666667,63.3333333333,3,30.8333333333,4.5833333333,19.8742940091,19.8742940091 -110,20,23.6,37.29,22.1,37.1528571429,24.2,35.9,24.2,35.23,23,38.2,10.4633333333,19.7333333333,23.5333333333,29.93,25.7257142857,35.6214285714,22.79,34.1142857143,11.1,760.9,65,3,29,4.8,3.7112924736,3.7112924736 -100,20,23.6,37.29,22.08,37.254,24.218,35.978,24.2,35.3633333333,23,38.26,10.33,24.3333333333,23.5,30.23,25.7,36.036,22.79,34.276,10.9333333333,760.9,67.3333333333,3.1666666667,30.8333333333,5.0833333333,19.1940715071,19.1940715071 -100,20,23.6,37.29,22,37.3971428571,24.236,36.09,24.2,35.53,23,38.4,10.16,26.6333333333,23.5,30.43,25.7,36.22,22.79,34.4714285714,10.7666666667,760.9,69.6666666667,3.3333333333,32.6666666667,5.3666666667,46.0763528594,46.0763528594 -80,0,23.6,37.4,22,37.59,24.29,36.145,24.2,35.6633333333,23,38.4666666667,9.96,29.4933333333,23.5,30.73,25.7,36.42,22.79,34.7,10.6,760.9,72,3.5,34.5,5.65,44.5070971968,44.5070971968 -100,0,23.6,37.4,21.9057142857,37.8385714286,24.29,36.334,24.2,35.7,22.9266666667,38.53,9.7633333333,31.43,23.5,30.93,25.7,36.5642857143,22.79,34.84,10.4333333333,760.9,74.3333333333,3.6666666667,36.3333333333,5.9333333333,2.8239665087,2.8239665087 -90,0,23.6,37.5,21.89,38.094,24.2,36.29,24.2,35.7,23,38.6175,9.63,33.09,23.5,31.15,25.7,36.94,22.772,34.978,10.2666666667,760.9,76.6666666667,3.8333333333,38.1666666667,6.2166666667,13.3081990178,13.3081990178 -100,0,23.6,37.56,21.8471428571,38.3214285714,24.29,36.4,24.1,35.7,23,38.7,9.5666666667,34.3,23.5,31.3233333333,25.7,37.2071428571,22.7642857143,35.1214285714,10.1,760.9,79,4,40,6.5,29.8532452318,29.8532452318 -90,0,23.6,37.7,21.79,38.536,24.29,36.42,24.1,35.7,22.89,38.73,9.4725,35.075,23.5,31.4633333333,25.68,37.46,22.7,35.236,9.9333333333,760.9333333333,80.8333333333,3.6666666667,36.6666666667,6.6833333333,13.820546132,13.820546132 -170,0,23.6,37.7,21.79,38.7985714286,24.29,36.44,24.0666666667,35.7,22.9633333333,38.79,9.39,35.7333333333,23.5,31.6333333333,25.6285714286,37.7,22.7257142857,35.3528571429,9.7666666667,760.9666666667,82.6666666667,3.3333333333,33.3333333333,6.8666666667,33.6864406243,33.6864406243 -500,0,23.6,37.8266666667,21.7225,39.00875,24.29,36.5,24,35.7,22.89,38.9,9.39,36.1966666667,23.5,31.76,25.7,38.2,22.736,35.46,9.6,761,84.5,3,30,7.05,33.5128779989,33.5128779989 -330,0,23.6,37.9,21.7,39.218,24.33,36.98,24,35.79,22.89,38.9666666667,9.33,37.0566666667,23.5,31.9266666667,25.6142857143,38.2671428571,22.7,35.5,9.4333333333,761.0333333333,86.3333333333,2.6666666667,26.6666666667,7.2333333333,41.4170896867,41.4170896867 -290,0,23.6,38.03,21.7,39.3685714286,24.676,38.36,24,35.79,23.0933333333,48.0266666667,9.19,38.8633333333,23.4266666667,32,25.6,38.54,22.7,35.536,9.2666666667,761.0666666667,88.1666666667,2.3333333333,23.3333333333,7.4166666667,32.2846896597,32.2846896597 -260,0,23.5333333333,38.09,21.66,39.59,25.125,39.55,23.9633333333,35.9,23.5666666667,66.76,9.19,40.53,23.39,32.03,25.6,39.2642857143,22.6857142857,35.6371428571,9.1,761.1,90,2,20,7.6,19.97828366,19.97828366 -230,0,23.5666666667,38.23,21.6,39.6528571429,25.356,39.796,23.89,35.9666666667,23.4633333333,68.5966666667,9.1,42.5933333333,23.39,32.1633333333,25.56,40.134,22.6,35.612,9.05,761.15,90.8333333333,1.8333333333,27,7.6833333333,32.4081491679,32.4081491679 -240,0,23.5,38.29,21.6,39.776,25.718,39.98,23.8566666667,36,23.39,66.4566666667,9.1,43.5333333333,23.4633333333,32.29,25.5857142857,40.6242857143,22.6,35.7,9,761.2,91.6666666667,1.6666666667,34,7.7666666667,26.7002176726,26.7002176726 -240,0,23.5,38.29,21.5714285714,39.9714285714,25.945,40.095,23.79,36.06,23.26,61.6333333333,9.1,44,23.39,32.29,25.58,40.958,22.6,35.76,8.95,761.25,92.5,1.5,41,7.85,31.3480278011,31.3480278011 -150,10,23.5,38.43,21.5,40.036,26.14,40.254,23.79,36.09,23.2,58.6933333333,9.0333333333,44.3333333333,23.39,32.4,25.5,40.6785714286,22.6,35.9228571429,8.9,761.3,93.3333333333,1.3333333333,48,7.9333333333,44.2959849839,44.2959849839 -100,0,23.5,38.5,21.5,40.1528571429,26.2633333333,40.0783333333,23.79,36.1725,23.2,56.7333333333,9,44.59,23.39,32.4666666667,25.54,40.514,22.6,36.145,8.85,761.35,94.1666666667,1.1666666667,55,8.0166666667,12.3921596794,12.3921596794 -90,0,23.5,38.56,21.478,40.178,26.29,39.65,23.79,36.2,23.2,56.0666666667,8.9266666667,44.7966666667,23.4633333333,32.56,25.5714285714,40.3242857143,22.6,36.5557142857,8.8,761.4,95,1,62,8.1,28.3879714669,28.3879714669 -90,0,23.5,38.69,21.39,40.1685714286,26.216,39.28,23.79,36.23,23.1,54.5,8.8,45.1266666667,23.39,32.5,25.66,40.178,22.66,36.976,8.7666666667,761.4166666667,95.3333333333,1,59.3333333333,8.1,49.0987298777,49.0987298777 -90,0,23.4633333333,38.79,21.29,40.29,26.0714285714,38.8971428571,23.73,36.29,23.1,52.6266666667,8.7266666667,45.26,23.4633333333,32.6633333333,25.7,40.0257142857,22.6,37.145,8.7333333333,761.4333333333,95.6666666667,1,56.6666666667,8.1,49.4288290618,49.4288290618 -80,0,23.39,38.79,21.29,40.3842857143,26,38.71,23.7,36.29,23.0666666667,50.6933333333,8.53,44.9,23.39,32.59,25.736,40.476,22.64,37.41,8.7,761.45,96,1,54,8.1,31.1778492643,31.1778492643 -100,0,23.39,38.8266666667,21.29,40.4,25.9528571429,38.3485714286,23.7,36.29,23.0666666667,49.4333333333,8.33,44.8333333333,23.5,32.7,25.7642857143,40.7228571429,22.65,37.5816666667,8.6666666667,761.4666666667,96.3333333333,1,51.3333333333,8.1,45.4005228938,45.4005228938 -70,0,23.39,39.1,21.2257142857,40.3214285714,25.934,38.16,23.7,36.3266666667,23,48.0933333333,8.3,45.5266666667,23.5,32.7,25.79,40.634,22.7,37.9,8.6333333333,761.4833333333,96.6666666667,1,48.6666666667,8.1,8.2248853869,8.2248853869 -80,0,23.3566666667,39.4,21.2,40.4,25.87,37.94,23.7,36.4,23,47.2933333333,8.3225,46.375,23.5,32.79,25.8614285714,40.4971428571,22.7,38.036,8.6,761.5,97,1,46,8.1,31.0736327549,31.0736327549 -80,0,23.29,39.4666666667,21.1428571429,40.4428571429,25.7642857143,37.9,23.6666666667,36.3633333333,23,46.34,8.39,46.9,23.5,32.79,25.83,40.254,22.7,38.1266666667,8.5833333333,761.5,97,1,45.1666666667,8.1,41.4048439125,41.4048439125 -80,0,23.29,39.4666666667,21.1,40.42,25.7,37.79,23.6,36.29,23,45.66,8.39,46.9633333333,23.4266666667,32.79,25.89,39.9557142857,22.7,38.4,8.5666666667,761.5,97,1,44.3333333333,8.1,13.0047236453,13.0047236453 -80,0,23.29,39.4,21.0714285714,40.4285714286,25.7,37.79,23.6,36.4,23,45.1933333333,8.39,47.2233333333,23.39,32.79,25.90375,39.70625,22.7,38.5357142857,8.55,761.5,97,1,43.5,8.1,26.2031865655,26.2031865655 -90,0,23.29,39.29,21.06,40.5,25.68,37.772,23.6,36.4,23,44.7233333333,8.36,47.5666666667,23.39,32.8633333333,25.956,39.718,22.736,38.834,8.5333333333,761.5,97,1,42.6666666667,8.1,11.5246486384,11.5246486384 -90,0,23.23,39.23,21,40.5514285714,25.6,37.7,23.6,36.5,23,44.4633333333,8.36,47.8333333333,23.39,32.9,26,39.7257142857,22.7,39.09,8.5166666667,761.5,97,1,41.8333333333,8.1,29.9708487117,29.9708487117 -80,0,23.2,39.23,20.978,40.612,25.6,37.7,23.6,36.5,23,44.2233333333,8.3,48.1333333333,23.39,32.9,26.06,39.59,22.7257142857,39.1942857143,8.5,761.5,97,1,41,8.1,45.7934861421,45.7934861421 -70,0,23.2,39.29,20.89,40.7,25.5857142857,37.6371428571,23.6,36.5,23,44.03,8.3,48.4666666667,23.39,32.9,26.0857142857,39.5385714286,22.7,39.44,8.4666666667,761.4833333333,97.1666666667,1,39.8333333333,8.0833333333,22.8343942319,22.8343942319 -50,0,23.2,39.29,20.89,40.736,25.5,37.634,23.5333333333,36.56,22.9633333333,43.76,8.3,48.6566666667,23.39,32.9666666667,26.08,39.554,22.7,39.6266666667,8.4333333333,761.4666666667,97.3333333333,1,38.6666666667,8.0666666667,34.6951348591,34.6951348591 -60,0,23.2,39.29,20.89,40.9228571429,25.5,37.59,23.5,36.59,22.89,43.6266666667,8.3,48.79,23.39,33,25.9685714286,39.5042857143,22.7,39.7957142857,8.4,761.45,97.5,1,37.5,8.05,19.3292009411,19.3292009411 -60,0,23.1,39.3,20.8233333333,41.03,25.5,37.59,23.5,36.59,22.9266666667,43.4666666667,8.2633333333,48.76,23.39,33,25.89,39.67,22.79,40.036,8.3666666667,761.4333333333,97.6666666667,1,36.3333333333,8.0333333333,29.1624066653,29.1624066653 -50,0,23.1666666667,39.5,20.79,41.03,25.4057142857,37.59,23.5,36.6266666667,22.9266666667,43.3266666667,8.2633333333,48.96,23.39,33.03,25.8471428571,40.0842857143,22.79,40.236,8.3333333333,761.4166666667,97.8333333333,1,35.1666666667,8.0166666667,10.1753995521,10.1753995521 -50,0,23.1,39.53,20.79,41.1057142857,25.39,37.59,23.5,36.7,22.89,43.26,8.3,49.2,23.39,33.09,25.87,40.254,22.7771428571,40.4928571429,8.3,761.4,98,1,34,8,45.7991915173,45.7991915173 -60,0,23.1,39.59,20.79,41.2,25.39,37.59,23.5,36.7,22.89,43.2,8.2266666667,49.1266666667,23.39,33.09,25.7642857143,40.2642857143,22.754,40.59,8.25,761.4,98.1666666667,1,33.3333333333,7.9666666667,35.2696389309,35.2696389309 -50,0,23.1,39.7,20.736,41.2,25.39,37.59,23.5,36.79,22.89,43.06,8.16,49.23,23.39,33.1633333333,25.7,40.09,22.79,40.59,8.2,761.4,98.3333333333,1,32.6666666667,7.9333333333,26.1280828272,26.1280828272 -50,0,23.1,39.7,20.7,41.26,25.3042857143,37.59,23.4266666667,36.73,22.89,43,8.1,49.43,23.39,33.2,25.6857142857,40.09,22.79,40.68125,8.15,761.4,98.5,1,32,7.9,24.0979755996,24.0979755996 -50,0,23.1,39.7,20.7,41.312,25.29,37.59,23.39,36.79,22.89,42.9666666667,8.1,49.6566666667,23.39,33.2,25.6,40.112,22.79,40.9,8.1,761.4,98.6666666667,1,31.3333333333,7.8666666667,11.3676104345,11.3676104345 -60,0,23.0333333333,39.6266666667,20.66,41.356,25.29,37.59,23.39,36.73,22.89,42.9,8.025,49.8175,23.39,33.2,25.6,40.3428571429,22.79,40.9571428571,8.05,761.4,98.8333333333,1,30.6666666667,7.8333333333,36.1659370363,36.1659370363 -50,0,23.0333333333,39.7,20.6833333333,41.4,25.29,37.59,23.39,36.79,22.89,42.8633333333,8,49.9,23.39,33.2,25.5,40.536,22.79,41.018,8,761.4,99,1,30,7.8,17.7643104224,17.7643104224 -70,0,23,39.7,20.6,41.4,25.29,37.59,23.39,36.79,22.89,42.79,8,49.9333333333,23.39,33.2,25.5,40.7985714286,22.79,41.1214285714,7.9666666667,761.3333333333,99,1,27.8333333333,7.7666666667,4.7314142925,4.7314142925 -50,0,23,39.7,20.58,41.42,25.29,37.59,23.39,36.79,22.89,42.7,8,50.06,23.39,33.2,25.434,40.978,22.79,41.236,7.9333333333,761.2666666667,99,1,25.6666666667,7.7333333333,28.9348105201,28.9348105201 -60,0,23,39.7,20.5666666667,41.5,25.2642857143,37.59,23.39,36.79,22.84,42.6175,8,50.09,23.39,33.29,25.4371428571,41.1942857143,22.79,41.3528571429,7.9,761.2,99,1,23.5,7.7,9.9629219156,9.9629219156 -60,0,23,39.7,20.55,41.5,25.2,37.59,23.3233333333,36.79,22.89,42.59,7.9333333333,50.09,23.39,33.29,25.39,41.634,22.79,41.42,7.8666666667,761.1333333333,99,1,21.3333333333,7.6666666667,13.0248863483,13.0248863483 -50,0,23,39.7,20.56,41.536,25.2,37.59,23.3233333333,36.8633333333,22.79,42.5,7.9,50.2,23.39,33.29,25.39,41.5928571429,22.79,41.5,7.8333333333,761.0666666667,99,1,19.1666666667,7.6333333333,17.8354899515,17.8354899515 -70,0,23,39.7,20.5,41.6266666667,25.2,37.59,23.29,36.9,22.8566666667,42.56,7.9,50.2,23.3233333333,33.29,25.37,41.576,22.79,41.59,7.8,761,99,1,17,7.6,29.0529662278,29.0529662278 -50,0,23,39.76,20.5,41.7,25.2,37.59,23.29,36.9,22.79,42.5,7.8,50.03,23.3233333333,33.3633333333,25.29,41.7333333333,22.79,41.6528571429,7.7166666667,760.95,99,1,16.3333333333,7.5166666667,44.7288848693,44.7288848693 -50,0,22.9266666667,39.76,20.5,41.7,25.2,37.59,23.29,36.9,22.79,42.5,7.7266666667,50.03,23.39,33.3266666667,25.29,41.9,22.79,41.718,7.6333333333,760.9,99,1,15.6666666667,7.4333333333,45.0287580956,45.0287580956 -50,0,22.9266666667,39.7,20.5,41.7,25.2,37.59,23.29,36.9,22.79,42.5,7.6566666667,50.06,23.3233333333,33.4,25.2514285714,41.7928571429,22.79,41.79,7.55,760.85,99,1,15,7.35,19.819492253,19.819492253 -50,0,22.9266666667,39.76,20.434,41.736,25.1142857143,37.59,23.29,37,22.79,42.5,7.59,50,23.29,33.4,25.2,41.772,22.79,41.79,7.4666666667,760.8,99,1,14.3333333333,7.2666666667,3.0357741169,3.0357741169 -50,0,22.89,39.7,20.456,41.754,25.04,37.656,23.23,36.9333333333,22.79,42.59,7.59,50,23.29,33.4,25.2,41.79,22.79,41.8842857143,7.3833333333,760.75,99,1,13.6666666667,7.1833333333,23.1166778714,23.1166778714 -50,0,22.89,39.7,20.39,41.7,25,37.7,23.26,36.9666666667,22.79,42.59,7.59,50.2666666667,23.29,33.4,25.1428571429,41.6842857143,22.79,41.92,7.3,760.7,99,1,13,7.1,12.8504720517,12.8504720517 -50,0,22.89,39.7,20.39,41.718,25,37.7,23.2,36.9,22.79,42.59,7.69,50.8266666667,23.29,33.4,25.1,41.436,22.79,42,7.2666666667,760.7,99.1666666667,1,13.5,7.1,29.8692708253,29.8692708253 -60,0,22.89,39.7,20.39,41.79,24.9057142857,37.7,23.2,36.9,22.79,42.6633333333,7.69,50.8266666667,23.29,33.4,25.1,41.145,22.79,42.09,7.2333333333,760.7,99.3333333333,1,14,7.1,18.5290508904,18.5290508904 -50,0,22.89,39.7,20.3471428571,41.79,24.89,37.7,23.2,37,22.79,42.59,7.69,51.03,23.29,33.4,25.06,41.018,22.79,42.1528571429,7.2,760.7,99.5,1,14.5,7.1,45.5559208873,45.5559208873 -60,0,22.89,39.6725,20.29,41.9,24.89,37.7,23.2,37,22.79,42.59,7.7175,51.1725,23.29,33.4,25,40.754,22.79,42.218,7.1666666667,760.7,99.6666666667,1,15,7.1,31.1585694202,31.1585694202 -60,0,22.89,39.6633333333,20.29,41.9428571429,24.83,37.59,23.2,37,22.79,42.59,7.8,51.26,23.29,33.4666666667,24.945,40.6725,22.79,42.29,7.1333333333,760.7,99.8333333333,1,15.5,7.1,29.1308577172,29.1308577172 -50,0,22.8566666667,39.6633333333,20.29,42,24.89,37.59,23.2,37,22.79,42.59,7.8333333333,51.5666666667,23.29,33.5,24.934,40.674,22.79,42.356,7.1,760.7,100,1,16,7.1,17.0701034134,17.0701034134 -60,0,22.79,39.53,20.29,42,24.83,37.536,23.2,37.06,22.79,42.59,7.9,51.7,23.29,33.5,24.89,40.772,22.79,42.3842857143,7.1666666667,760.6833333333,99.8333333333,0.8333333333,18.6666666667,7.1333333333,18.9327146159,18.9327146159 -50,0,22.79,39.56,20.29,42.018,24.79,37.5,23.1333333333,37.06,22.79,42.59,8,51.7,23.23,33.4333333333,24.89,40.7,22.79,42.46,7.2333333333,760.6666666667,99.6666666667,0.6666666667,21.3333333333,7.1666666667,41.2340702489,41.2340702489 -50,0,22.79,39.56,20.29,42.09,24.79,37.5,23.1,37.09,22.79,42.53,8,51.6266666667,23.23,33.4333333333,24.81,40.692,22.79,42.5257142857,7.3,760.65,99.5,0.5,24,7.2,13.6058675824,13.6058675824 -50,0,22.79,39.59,20.29,42.134,24.79,37.4857142857,23.1,37.09,22.79,42.53,7.9666666667,51.59,23.2,33.4333333333,24.79,40.754,22.79,42.59,7.3666666667,760.6333333333,99.3333333333,0.3333333333,26.6666666667,7.2333333333,42.3416919075,42.3416919075 -50,0,22.79,39.59,20.2514285714,42.1528571429,24.79,37.42,23.1,37.09,22.79,42.545,7.9,51.59,23.2,33.5,24.79,40.7,22.84,42.645,7.4333333333,760.6166666667,99.1666666667,0.1666666667,29.3333333333,7.2666666667,0.1583899255,0.1583899255 -50,0,22.79,39.59,20.2,42.09,24.79,37.5257142857,23.1,37.09,22.79,42.56,8,51.59,23.26,33.56,24.736,40.754,22.8042857143,42.7,7.5,760.6,99,0,32,7.3,15.3671134729,15.3671134729 -50,0,22.79,39.59,20.2,42.09,24.79,37.634,23.1,37.1266666667,22.73,42.5,8,51.6633333333,23.2,33.5,24.7,40.754,22.79,42.7,7.5166666667,760.6166666667,99,0.1666666667,36.8333333333,7.3166666667,31.0063742101,31.0063742101 -50,0,22.76,39.59,20.2,42.09,24.8757142857,37.84,23.1,37.2,22.79,42.4666666667,8,51.7,23.26,33.56,24.7,40.79,22.79,42.7,7.5333333333,760.6333333333,99,0.3333333333,41.6666666667,7.3333333333,31.3109518494,31.3109518494 -60,0,22.76,39.59,20.2,42.1214285714,24.89,37.96,23.1,37.2,22.73,42.4,8,51.7,23.29,33.59,24.675,40.845,22.79,42.79,7.55,760.65,99,0.5,46.5,7.35,39.289817377,39.289817377 -50,0,22.76,39.59,20.2,42.134,24.89,38.0257142857,23.1,37.2,22.79,42.3633333333,8.1,51.9,23.23,33.53,24.6,40.812,22.79,42.79,7.5666666667,760.6666666667,99,0.6666666667,51.3333333333,7.3666666667,32.8147549531,32.8147549531 -60,0,22.7,39.59,20.2,42.1685714286,24.89,38.09,23.1,37.2,22.73,42.29,8.16,51.8266666667,23.26,33.59,24.6,40.9,22.79,42.79,7.5833333333,760.6833333333,99,0.8333333333,56.1666666667,7.3833333333,8.5788130993,8.5788130993 -60,0,22.7,39.59,20.2,42.2,24.89,38.1528571429,23.0333333333,37.1266666667,22.7,42.26,8.19,51.9,23.2,33.59,24.6,40.9,22.79,42.79,7.6,760.7,99,1,61,7.4,10.5067422148,10.5067422148 -60,0,22.7,39.59,20.2,42.2,24.912,38.2,23.0666666667,37.2,22.7,42.26,8.2633333333,52.0266666667,23.2,33.59,24.6,40.9,22.79,42.834,7.6333333333,760.7333333333,98,1,54.3333333333,7.3,47.3474065657,47.3474065657 -50,0,22.7,39.59,20.2,42.254,25,38.21125,23,37.2,22.7,42.2,8.3,52.09,23.2,33.59,24.5666666667,40.9666666667,22.79,42.8685714286,7.6666666667,760.7666666667,97,1,47.6666666667,7.2,18.8987807604,18.8987807604 -50,0,22.7,39.59,20.2,42.2257142857,25,38.29,23,37.2,22.7,42.2,8.3675,52.0225,23.2,33.59,24.5,40.9,22.79,42.9,7.7,760.8,96,1,41,7.1,19.8742562905,19.8742562905 -90,0,22.7,39.59,20.2,42.2,25,38.29,23,37.2,22.7,42.2,8.4633333333,52.06,23.2,33.59,24.5,40.9,22.8185714286,42.9071428571,7.7333333333,760.8333333333,95,1,34.3333333333,7,40.8814871102,40.8814871102 -60,0,22.7,40.0566666667,20.2,42.6057142857,24.8914285714,38.0128571429,23,37.26,22.7,42.1266666667,8.6666666667,52.1566666667,23.2,33.59,24.5,41.0225,22.79,43,7.7666666667,760.8666666667,94,1,27.6666666667,6.9,24.4735827204,24.4735827204 -40,0,22.745,40.545,20.218,43.27,24.79,37.634,23,37.3266666667,22.7,42.06,8.9333333333,52.43,23.2,33.59,24.5,41.09,22.79,42.9142857143,7.8,760.9,93,1,21,6.8,44.7939106496,44.7939106496 -50,0,22.79,40.6266666667,20.29,43.6214285714,24.7257142857,37.5642857143,23,37.4666666667,22.7,42,9.2566666667,52.4333333333,23.2,33.6266666667,24.5,41.29,22.79,42.878,7.9166666667,760.9333333333,91.8333333333,1.1666666667,22.3333333333,6.7,33.7678574258,33.7678574258 -60,0,22.8566666667,40.76,20.39,43.7,24.66,37.46,23,37.53,22.7,41.9666666667,9.59,52.4333333333,23.2,33.7,24.5,41.29,22.79,42.79,8.0333333333,760.9666666667,90.6666666667,1.3333333333,23.6666666667,6.6,42.6356307464,42.6356307464 -50,0,22.8233333333,40.73,20.4528571429,43.7,24.6,37.4,23,37.59,22.7,41.9,10.0633333333,52.0666666667,23.2,33.7,24.4633333333,41.26,22.79,42.656,8.15,761,89.5,1.5,25,6.5,37.0161111699,37.0161111699 -160,0,22.89,40.79,20.5,43.678,24.6,37.378,23,37.7,22.7,41.79,10.2633333333,50.9933333333,23.2,33.7,24.39,41.2,22.79,42.4557142857,8.2666666667,761.0333333333,88.3333333333,1.6666666667,26.3333333333,6.4,10.1989974501,10.1989974501 -170,0,22.89,40.73,20.5428571429,43.5642857143,24.6,37.29,23,37.7,22.7,41.93,10.3,49.3666666667,23.2,33.7,24.5,41.425,22.79,42.28,8.3833333333,761.0666666667,87.1666666667,1.8333333333,27.6666666667,6.3,4.248104908,4.248104908 -80,0,22.89,40.8633333333,20.5,43.4375,24.6,37.254,22.9633333333,37.79,22.7,42.36,10.36,49.1666666667,23.2,33.7,24.4266666667,41.4333333333,22.79,42.3714285714,8.5,761.1,86,2,29,6.2,1.8532239483,1.8532239483 -60,0,22.89,40.8333333333,20.6,43.356,24.6,37.236,22.9633333333,37.79,22.7,42.6933333333,10.5333333333,49.1233333333,23.2,33.7,24.39,41.44,22.89,43.44,8.4666666667,761.15,84.8333333333,2,30.8333333333,5.9833333333,16.6910755332,16.6910755332 -50,0,22.8233333333,40.6266666667,20.6,43.0257142857,24.6,37.2,22.9633333333,37.8633333333,22.7,42.9,10.6,48.5966666667,23.1666666667,33.59,24.39,41.4271428571,22.89,43.5957142857,8.4333333333,761.2,83.6666666667,2,32.6666666667,5.7666666667,34.6362527809,34.6362527809 -50,0,22.89,40.6633333333,20.6,42.812,24.6666666667,37.2,22.89,37.79,22.7,42.9,10.7266666667,47.6633333333,23.1,33.59,24.39,41.312,22.89,43.4,8.4,761.25,82.5,2,34.5,5.55,31.4074795577,31.4074795577 -80,10,22.89,40.59,20.6714285714,42.9428571429,24.56,37.2,22.89,37.79,22.7,42.8266666667,10.9333333333,47.59,23.1,33.56,24.39,41.496,22.89,43.0957142857,8.3666666667,761.3,81.3333333333,2,36.3333333333,5.3333333333,16.9790537795,16.9790537795 -100,20,22.89,40.59,20.7,42.856,24.5,37.2,22.89,37.79,22.6,42.6633333333,11.2266666667,44.7566666667,23.1,33.5,24.39,41.425,22.89,42.754,8.3333333333,761.35,80.1666666667,2,38.1666666667,5.1166666667,46.3864526362,46.3864526362 -320,30,22.89,40.59,20.7514285714,42.7228571429,24.434,37.116,22.9266666667,37.9333333333,22.6,42.6633333333,11.36,43.3633333333,23.1,33.5,24.39,41.2233333333,22.89,42.4214285714,8.3,761.4,79,2,40,4.9,16.0180401639,16.0180401639 -160,20,22.89,40.7633333333,20.79,42.476,24.39,37,23,38.06,22.6,42.59,11.5333333333,42.9233333333,23.1,33.5,24.39,40.774,22.89,42.00875,8.35,761.4,78.6666666667,1.8333333333,40,4.8833333333,18.9188179094,18.9188179094 -100,20,22.89,41.3633333333,20.79,42.0957142857,24.412,37.094,23.1,38.29,22.6,42.59,11.7933333333,42.59,23.1,33.4,24.39,40.125,22.89,41.696,8.4,761.4,78.3333333333,1.6666666667,40,4.8666666667,30.6015734444,30.6015734444 -100,20,22.79,41.1333333333,20.83,41.834,24.5,37.2,23.1,38.29,22.6,42.4666666667,12.05,40.55,23.1,33.4,24.39,39.7666666667,22.8471428571,41.2857142857,8.45,761.4,78,1.5,40,4.85,11.5340719349,11.5340719349 -110,20,22.79,40.8,20.9057142857,41.6785714286,24.5,37.254,23.2,38.29,22.6,42.4,12.3666666667,37.3,23.0666666667,33.3333333333,24.39,39.416,22.89,40.82,8.5,761.4,77.6666666667,1.3333333333,40,4.8333333333,30.290835537,30.290835537 -100,20,22.79,40.43,21,41.4,24.5,37.29,23.2675,38.2675,22.6,42.254,12.76,34.8266666667,23,33.1266666667,24.39,38.9942857143,22.8328571429,40.6371428571,8.55,761.4,77.3333333333,1.1666666667,40,4.8166666667,27.293697081,27.293697081 -100,30,22.79,40.23,21.0666666667,41.2,24.5,37.29,23.3566666667,38.2,22.6,42.156,13.2566666667,28.9,23.0333333333,33.09,24.39,38.696,22.79,40.516,8.6,761.4,77,1,40,4.8,3.142838378,3.142838378 -100,20,22.79,39.9666666667,21.14,40.916,24.52,37.29,23.39,38.06,22.6,41.9985714286,13.59,25.3,23.0333333333,32.89,24.39,38.4714285714,22.79,40.345,8.7166666667,761.4,76,1,37.8333333333,4.7,11.4284356823,11.4284356823 -90,0,22.79,39.795,21.2514285714,40.6228571429,24.6,37.3214285714,23.39,38,22.6,41.816,14.2333333333,22.3633333333,23.1,32.8633333333,24.39,38.2,22.89,40.06,8.8333333333,761.4,75,1,35.6666666667,4.6,2.1880527143,2.1880527143 -110,0,22.79,39.5666666667,21.372,40.276,24.6,37.4,23.5,37.93,22.6,41.7,14.8333333333,17.89,23.1,32.73,24.39,38.04,22.89,39.9333333333,8.95,761.4,74,1,33.5,4.5,9.0876322007,9.0876322007 -110,0,22.79,39.5,21.5,39.8971428571,24.6,37.29,23.5,37.6566666667,22.6,41.514,15.43,12.7,23.1,32.56,24.3525,37.9,22.8233333333,39.6633333333,9.0666666667,761.4,73,1,31.3333333333,4.4,31.9810504094,31.9810504094 -110,0,22.79,39.4333333333,21.7,39.62,24.6,37.3371428571,23.3566666667,37.2233333333,22.6,41.1257142857,15.8233333333,9.2333333333,23.1,32.4333333333,24.39,37.92,22.8233333333,39.33,9.1833333333,761.4,72,1,29.1666666667,4.3,13.8723483309,13.8723483309 -290,0,22.79,39.1333333333,21.8085714286,39.21,24.6,37.29,23.23,36.6966666667,22.6,40.74,15.5,1,23.1,32.1933333333,24.39,37.9285714286,22.8233333333,38.93,9.3,761.4,71,1,27,4.2,45.3658017679,45.3658017679 -450,0,22.79,38.86,21.976,38.6,24.6,37.29,23.1666666667,36.0266666667,22.6,40.3971428571,15.36,1,23.1,31.8,24.39,37.754,22.8233333333,38.53,9.55,761.4166666667,69.6666666667,1,29.1666666667,4.1666666667,10.0201460649,10.0201460649 -160,0,22.89,38.59,22.1285714286,37.9971428571,24.6,37.156,23.1,35.9,22.6,40.29,15.2566666667,1,23.15,31.445,24.4528571429,37.8142857143,22.89,38.26,9.8,761.4333333333,68.3333333333,1,31.3333333333,4.1333333333,13.9593958389,13.9593958389 -100,0,22.89,38.59,22.236,37.7,24.6,37.09,23.1666666667,35.76,22.6,40.1657142857,15.33,1,23.2,31.29,24.52,37.9,22.89,38.2,10.05,761.45,67,1,33.5,4.1,6.6395813948,6.6395813948 -120,0,22.89,38.56,22.3628571429,37.5542857143,24.62,37.09,23.1666666667,35.6266666667,22.6,40.116,15.0333333333,1,23.2,31.29,24.5571428571,37.9,22.89,38,10.3,761.4666666667,65.6666666667,1,35.6666666667,4.0666666667,3.4704054706,3.4704054706 -120,0,22.9633333333,38.3,22.52,37.4,24.6571428571,37.0514285714,23.2,35.4666666667,22.6,40,15.0333333333,1,23.2,31.1333333333,24.6,37.7,22.89,38,10.55,761.4833333333,64.3333333333,1,37.8333333333,4.0333333333,7.8695070231,7.8695070231 -120,10,23,37.9666666667,22.6,37.0957142857,24.7,37.09,23.2,35.3266666667,22.6,39.9,15.03,1,23.26,31,24.6985714286,37.6242857143,22.89,38.09,10.8,761.5,63,1,40,4,40.2950903052,40.2950903052 -330,0,23.0666666667,37.9666666667,22.625,36.83125,24.7,37.0128571429,23.23,35.2666666667,22.6,39.8057142857,15.09,1,23.29,30.8566666667,24.81,37.48,22.89,38.1633333333,11.1333333333,761.4333333333,62,1,40,4.0666666667,3.2261156011,3.2261156011 -350,0,23.1333333333,38.09,22.736,36.656,24.7,37,23.29,35.4,22.6,39.745,15.89,1,23.29,30.73,24.9214285714,37.3214285714,22.89,38.2,11.4666666667,761.3666666667,61,1,40,4.1333333333,17.75924908,17.75924908 -360,0,23.2,38.1633333333,22.7642857143,36.6614285714,24.7,37,23.3233333333,35.59,22.6,39.736,16.03,1,23.39,30.4633333333,25,37.29,22.89,38.4,11.8,761.3,60,1,40,4.2,47.1746702562,47.1746702562 -340,0,23.23,42.43,22.81,37.554,24.7,37,23.39,35.6633333333,22.6,39.7642857143,16.3,1,23.39,30.3233333333,25,37.2385714286,22.89,38.95,12.1333333333,761.2333333333,59,1,40,4.2666666667,16.1939605256,16.1939605256 -100,0,23.3566666667,46.03,22.89,39.2542857143,24.7,37,23.5,35.9475,22.6,40.036,16.5666666667,1,23.4266666667,30.2,25.02,37.26,22.89,38.7566666667,12.4666666667,761.1666666667,58,1,40,4.3333333333,46.3050621212,46.3050621212 -80,0,23.39,44.36,22.89,38.58,24.68,37.036,23.5,36.045,22.6,40.4485714286,16.5,1,23.5,30.1333333333,25.1,37.6214285714,22.89,39.2966666667,12.8,761.1,57,1,40,4.4,4.3132958002,4.3132958002 -90,10,23.39,41.4333333333,22.89,37.5485714286,24.5714285714,36.9828571429,23.6,35.79,22.62,40.718,16.3566666667,1,23.5,29.9633333333,25.1,37.514,22.89,39.6566666667,12.8,761.0666666667,56.3333333333,1,40,4.25,48.0819771066,48.0819771066 -80,0,23.5,39.8633333333,22.89,36.152,24.456,37.254,23.6,35.745,22.6571428571,40.7257142857,16.5633333333,1,23.56,29.812,25.1571428571,36.9528571429,22.89,39.794,12.8,761.0333333333,55.6666666667,1,40,4.1,26.4609780745,26.4609780745 -80,0,23.5,39.33,22.8614285714,34.9428571429,24.39,36.7814285714,23.6,35.5266666667,22.64,40.4,17.5566666667,1,23.6,29.6714285714,25.2,36.516,22.89,39.6214285714,12.8,761,55,1,40,3.95,6.5524224774,6.5524224774 -100,0,23.5,37.395,22.66,33.754,24.37,36.18,23.6,35.1333333333,22.7,40.11,17.89,1,23.7,29.56,25.2,36.3428571429,22.89,39.79,12.8,760.9666666667,54.3333333333,1,40,3.8,12.6504472573,12.6504472573 -100,0,23.5,36.6933333333,22.6571428571,33.5542857143,24.2642857143,35.4142857143,23.6,34.5,22.7,39.676,17.4,1,23.7,29.3485714286,25.2,35.82,22.89,39.7514285714,12.8,760.9333333333,53.6666666667,1,40,3.65,8.1476933672,8.1476933672 -100,0,23.5,36.1666666667,22.7,33.36,24.16,34.856,23.6,33.7,22.6714285714,39.2642857143,16.9266666667,1,23.7,29.272,25.2,35.4814285714,22.89,39.772,12.8,760.9,53,1,40,3.5,32.0948278881,32.0948278881 -80,0,23.5,36.2266666667,22.7,32.8971428571,24.0857142857,34.71,23.55,33.6,22.66,38.856,17.2633333333,1,23.7,29.1714285714,25.2,35.25,22.9371428571,39.6685714286,12.9666666667,760.85,53,1.1666666667,40,3.6333333333,18.4384347172,18.4384347172 -210,0,23.5666666667,36.6933333333,22.7,32.754,24,34.38,23.5333333333,33.4866666667,22.6857142857,38.7228571429,17.39,1,23.7,29.06,25.2,35.09,22.89,39.5,13.1333333333,760.8,53,1.3333333333,40,3.7666666667,16.0718831117,16.0718831117 -90,10,23.6,37.3633333333,22.7771428571,32.6057142857,24,34.44,23.5166666667,33.3733333333,22.7,38.572,17.6666666667,1,23.7514285714,28.9228571429,25.14,35,22.89,39.3514285714,13.3,760.75,53,1.5,40,3.9,0.3187664784,0.3187664784 -100,0,23.6666666667,37.9633333333,22.772,32.53,23.956,33.9,23.5,33.26,22.7,38.5,18.26,1,23.79,28.79,25.1571428571,34.8985714286,22.89,39.236,13.4666666667,760.7,53,1.6666666667,40,4.0333333333,28.0567888753,28.0567888753 -90,0,23.6,36.2333333333,22.6714285714,32.2257142857,23.9528571429,34.1,23.4266666667,32.7933333333,22.7,38.356,17.89,1,23.79,28.7514285714,25.14,34.79,22.89,39.1685714286,13.6333333333,760.65,53,1.8333333333,40,4.1666666667,15.2453796007,15.2453796007 -90,0,23.6,35.2333333333,22.5,31.956,24.05,34.25625,23.26,32.2233333333,22.7,38.1371428571,17.6966666667,1,23.79,28.7,25.1,34.79,22.89,39.09,13.8,760.6,53,2,40,4.3,39.5774082514,39.5774082514 -90,0,23.6,34.3333333333,22.4371428571,31.68,24.12,34.2,23.1333333333,32.03,22.7,37.9,17.39,1,23.79,28.6375,25.1,34.79,22.89,39.0385714286,13.8666666667,760.55,51.6666666667,2,40,4,2.0686127595,2.0686127595 -90,0,23.6,33.86,22.35,31.412,24.1571428571,34.2,23.0666666667,31.8233333333,22.7,37.5957142857,17.39,1,23.7771428571,28.5571428571,25.0714285714,34.7,22.89,39,13.9333333333,760.5,50.3333333333,2,40,3.7,26.4899864327,26.4899864327 -90,0,23.6,33.76,22.4214285714,31.7542857143,24.2,34.2,23.0666666667,32.0233333333,22.7,37.254,17.5,1,23.736,28.58,25,34.7,22.89,38.9285714286,14,760.45,49,2,40,3.4,3.5280627431,3.5280627431 -80,0,23.6,33.76,22.6,32.036,24.2514285714,34.2514285714,23.1333333333,32.4633333333,22.7,37.0857142857,17.76,1,23.7642857143,28.5,24.978,34.634,22.89,38.79,14.0666666667,760.4,47.6666666667,2,40,3.1,11.9440167793,11.9440167793 -90,0,23.6,33.9333333333,22.6142857143,32.2128571429,24.29,34.312,23.26,32.8633333333,22.7,36.94,17.6,1,23.736,28.5,24.9214285714,34.59,22.89,38.7385714286,14.1333333333,760.35,46.3333333333,2,40,2.8,22.7387090097,22.7387090097 -90,0,23.6,34.06,22.68,32.4,24.29,34.4,23.29,33.2666666667,22.7,36.8685714286,17.6,1,23.7128571429,28.5,24.89,34.5,22.89,38.718,14.2,760.3,45,2,40,2.5,16.5619436419,16.5619436419 -120,0,23.5,34.1566666667,22.6285714286,32.3528571429,24.29,34.4,23.3566666667,33.4666666667,22.7,36.754,17.46,1,23.7,28.478,24.89,34.4428571429,22.89,38.7514285714,14.2666666667,760.3,44.8333333333,2.1666666667,40,2.4666666667,43.2617597515,43.2617597515 -110,0,23.5,34.5633333333,22.7,32.5,24.2385714286,34.2,23.39,33.6266666667,22.7514285714,36.7,17.4,1,23.7,28.39,24.89,34.4,22.89,38.736,14.3333333333,760.3,44.6666666667,2.3333333333,40,2.4333333333,2.5045288843,2.5045288843 -110,0,23.5,34.6566666667,22.6571428571,32.5514285714,24.18,34.054,23.39,33.7,22.736,36.754,17.1333333333,1,23.7,28.39,24.89,34.4,22.89,38.5842857143,14.4,760.3,44.5,2.5,40,2.4,17.5882256357,17.5882256357 -630,0,23.5,34.73,22.6625,32.5325,24.1,33.8185714286,23.39,33.545,22.7,36.79,17.3233333333,1,23.7,28.39,24.89,34.356,22.89,38.4,14.4666666667,760.3,44.3333333333,2.6666666667,40,2.3666666667,34.6910870285,34.6910870285 -400,0,23.5,36.7633333333,22.6,32.738,24.14,33.46,23.5,33.6266666667,22.7,36.79,17.2633333333,1,23.66,28.314,24.8328571429,34.3214285714,22.89,38.2671428571,14.5333333333,760.3,44.1666666667,2.8333333333,40,2.3333333333,3.5485429806,3.5485429806 -350,0,23.575,40.7175,22.6,34.4785714286,24.1428571429,33.6528571429,23.4266666667,33.7,22.736,37.036,17,1,23.6714285714,28.3614285714,24.83,34.29,22.89,38.2,14.6,760.3,44,3,40,2.3,18.7736330321,18.7736330321 -120,0,23.5333333333,40.5266666667,22.5,34.374,24.08,34.04,23.4633333333,33.7,22.7385714286,37.2985714286,16.9266666667,1,23.64,28.33,24.8614285714,34.3685714286,22.85,38.014,14.5333333333,760.3,44.5,2.8333333333,40,2.4,14.9288538843,14.9288538843 -100,0,23.5,39.9666666667,22.5571428571,35.4685714286,24.1571428571,34.2642857143,23.4633333333,33.8333333333,22.754,37.478,16.89,1,23.6142857143,28.3042857143,24.83,34.156,22.8471428571,38.0085714286,14.4666666667,760.3,45,2.6666666667,40,2.5,32.5391073013,32.5391073013 -110,0,23.5,39.6933333333,22.6,36.34,24.2,34.4,23.4266666667,33.8266666667,22.7514285714,37.6214285714,16.7633333333,1,23.6,28.272,24.8614285714,34.2814285714,22.83,38.016,14.4,760.3,45.5,2.5,40,2.6,38.7289246079,38.7289246079 -100,0,23.5333333333,40.1933333333,22.6,36.4571428571,24.2514285714,34.6,23.4266666667,33.8266666667,22.7,37.834,16.54,1,23.6,28.2642857143,24.89,34.545,22.79,37.7957142857,14.3333333333,760.3,46,2.3333333333,40,2.7,19.8340677656,19.8340677656 -150,0,23.6,40.66,22.6,36.536,24.29,34.74,23.39,33.8266666667,22.7385714286,37.9571428571,16.3628571429,1,23.6,28.29,24.89,34.73,22.79,37.656,14.2666666667,760.3,46.5,2.1666666667,40,2.8,30.8952128165,30.8952128165 -100,0,23.6,39.6233333333,22.6,36.47,24.29,34.9285714286,23.39,33.9,22.772,38.054,16.272,1,23.5428571429,28.29,24.89,34.79,22.79,37.5785714286,14.2,760.3,47,2,40,2.9,45.5602335744,45.5602335744 -120,0,23.6,39.0966666667,22.6,36.356,24.29,35.09,23.39,33.9,22.8242857143,46.7214285714,16.1,1,23.5,28.29,25,34.79,22.79,36.976,14.1333333333,760.3,47,2,40,2.85,33.2924209069,33.2924209069 -120,0,23.5,38.76,22.6,36.2,24.3757142857,35.1528571429,23.3233333333,33.9,23.1,58.17,15.81,1,23.5,28.29,25,34.79,22.79,36.2671428571,14.0666666667,760.3,47,2,40,2.8,20.6088229665,20.6088229665 -110,0,23.5,38.5666666667,22.5,36.29,24.39,35.218,23.3566666667,33.8266666667,23.31,65.7228571429,15.4257142857,1,23.5,28.39,25,34.76,22.79,35.514,14,760.3,47,2,40,2.75,44.1562844324,44.1562844324 -120,0,23.5,38.43,22.5,36.1657142857,24.4685714286,35.3685714286,23.3566666667,34.16,24.094,79.08,14.996,1,23.5,28.4814285714,25,34.6266666667,22.79,35.27,13.9333333333,760.3,47,2,40,2.7,38.9733788441,38.9733788441 -120,20,23.5,38.23,22.478,36.254,24.5,35.5,23.39,34.73,23.7642857143,77.9542857143,14.44,1,23.478,28.836,25,35.4566666667,22.79,35.036,13.8666666667,760.3,47,2,40,2.65,49.8104847851,49.8104847851 -110,10,23.5,38.29,22.39,36.29,24.5,35.5514285714,23.39,34.79,23.456,78.43,13.81,1,23.4371428571,29.5142857143,25,36.1233333333,22.7642857143,35,13.8,760.3,47,2,40,2.6,17.1218343778,17.1218343778 -100,20,23.5,38.29,22.29,36.4,24.434,35.554,23.39,34.9,23.3471428571,76.4057142857,13.3228571429,1,23.39,29.934,25.0333333333,36.73,22.7,35,13.6,760.3,48.8333333333,2,40,2.9166666667,27.538937272,27.538937272 -130,0,23.5,38.2,22.2771428571,36.4571428571,24.39,35.60375,23.39,34.9,23.432,76.44,12.83,1.2633333333,23.39,30.1,25.075,36.845,22.7,34.9285714286,13.4,760.3,50.6666666667,2,40,3.2333333333,48.1320100487,48.1320100487 -80,0,23.4266666667,38.1266666667,22.2,36.58,24.39,35.7,23.39,34.9,23.4971428571,76.7814285714,12.4257142857,2.4385714286,23.35,30.376,25,36.93,22.7,35.018,13.2,760.3,52.5,2,40,3.55,42.1168371337,42.1168371337 -80,0,23.4633333333,38.1333333333,22.1285714286,36.9714285714,24.39,35.7,23.3233333333,34.9666666667,23.2,63.89,11.9971428571,3.9114285714,23.39,30.9575,25,37.3,22.6714285714,35.0642857143,13,760.3,54.3333333333,2,40,3.8666666667,46.9308200642,46.9308200642 -80,0,23.39,37.9333333333,22.1,37.236,24.3471428571,35.7514285714,23.29,35,23.0414285714,58.1828571429,11.654,3.736,23.39,31.4971428571,25.0666666667,37.6933333333,22.64,35.09,12.8,760.3,56.1666666667,2,40,4.1833333333,27.3188820225,27.3188820225 -80,0,23.39,37.8633333333,22.0142857143,37.3057142857,24.33,35.79,23.29,35,22.87,54.074,11.4385714286,4.5971428571,23.39,31.736,25.0666666667,37.9,22.6142857143,35.0128571429,12.6,760.3,58,2,40,4.5,2.0903725992,2.0903725992 -80,0,23.39,37.79,22,37.46,24.29,35.8214285714,23.23,35,22.7257142857,50.8214285714,11.216,5.296,23.39,31.8471428571,25,37.8266666667,22.6,34.918,12.4666666667,760.35,58.3333333333,1.8333333333,40,4.4666666667,7.8947136761,7.8947136761 -70,10,23.39,37.79,21.9685714286,37.5,24.29,36,23.2,35,22.56,48.01,11.0285714286,5.31,23.39,31.89,25,37.79,22.6,34.79,12.3333333333,760.4,58.6666666667,1.6666666667,40,4.4333333333,48.2663761242,48.2663761242 -60,0,23.39,37.89,21.89,37.59,24.29,35.9714285714,23.2,35,22.4228571429,46.68,10.89,5.36,23.39,31.9942857143,25,37.79,22.6,34.736,12.2,760.45,59,1.5,40,4.4,22.6016088622,22.6016088622 -60,0,23.39,38.1633333333,21.8328571429,37.6057142857,24.29,36.018,23.2,35.03,22.29,45.658,10.8385714286,6.1528571429,23.39,32.236,24.89,37.9333333333,22.6,34.78,12.0666666667,760.5,59.3333333333,1.3333333333,40,4.3666666667,29.0958463098,29.0958463098 -60,10,23.3233333333,38.29,21.772,37.718,24.29,36.09,23.2,35.09,22.2257142857,44.85,10.778,7.456,23.39,32.4542857143,24.89,38.06,22.6,35.14,11.9333333333,760.55,59.6666666667,1.1666666667,40,4.3333333333,37.954843964,37.954843964 -50,0,23.39,38.43,21.7,37.885,24.29,36.134,23.1666666667,35.09,22.16,44.21,10.6257142857,8.3,23.39,32.674,24.89,38.2666666667,22.6375,35.72125,11.8,760.6,60,1,40,4.3,13.707237097,13.707237097 -50,0,23.29,38.53,21.6714285714,38,24.29,36.2,23.1,35.09,22.0428571429,43.6257142857,10.39,9.59,23.39,32.79,24.89,38.6,22.6,36.1942857143,11.55,760.6,63,1,40,4.6666666667,48.8494585268,48.8494585268 -40,0,23.29,38.53,21.6,38.09,24.29,36.254,23.1,35.2666666667,21.945,42.8225,10.2371428571,11.0371428571,23.39,32.9,24.8566666667,39,22.6,36.736,11.3,760.6,66,1,40,5.0333333333,27.1998828161,27.1998828161 -60,0,23.29,38.5,21.5142857143,38.1971428571,24.2642857143,36.29,23.1666666667,35.4666666667,21.87,42.296,10.08,11.496,23.39,33.1385714286,24.8566666667,39.1933333333,22.6,36.9414285714,11.05,760.6,69,1,40,5.4,44.8845287319,44.8845287319 -40,0,23.23,38.5,21.434,38.254,24.2,36.29,23.2,35.7666666667,21.79,41.7957142857,9.9214285714,12.1957142857,23.39,33.376,24.79,39.26,22.6,37.076,10.8,760.6,72,1,40,5.7666666667,33.6837872863,33.6837872863 -40,10,23.2,38.56,21.39,38.3214285714,24.2,36.3528571429,23.2,36.0266666667,21.7,41.46,9.756,12.154,23.4685714286,33.5957142857,24.79,39.4,22.6285714286,37.2257142857,10.55,760.6,75,1,40,6.1333333333,35.8950129128,35.8950129128 -50,0,23.2,38.56,21.35,38.5,24.18,36.4,23.2,36.23,21.6428571429,40.9657142857,9.6385714286,12.4428571429,23.5,33.7,24.76,39.3333333333,22.66,37.29,10.3,760.6,78,1,40,6.5,5.377614894,5.377614894 -60,10,23.2,38.59,21.29,38.5514285714,24.1,36.4,23.2,36.3633333333,21.54,40.494,9.6,13.418,23.5,33.84,24.7,39.2,22.6,37.3671428571,10.2333333333,760.6,77.8333333333,1,40,6.4333333333,48.7812152831,48.7812152831 -70,0,23.2,38.59,21.272,38.656,24.1,36.5,23.2,36.5666666667,21.5,40.29,9.6,14.24,23.5,33.9,24.6,39,22.6,37.518,10.1666666667,760.6,77.6666666667,1,40,6.3666666667,12.218925776,12.218925776 -60,10,23.1,38.7,21.2,38.7,24.1,36.5514285714,23.26,36.76,21.39,40.2,9.56,14.68,23.5,33.9714285714,24.6,39.06,22.6,37.59,10.1,760.6,77.5,1,40,6.3,4.2450118461,4.2450118461 -70,0,23.1,38.76,21.2,38.79,24.12,36.674,23.23,36.86,21.3328571429,40.1371428571,9.4842857143,15.4657142857,23.5,34.09,24.5,39.29,22.6,37.7,10.0333333333,760.6,77.3333333333,1,40,6.2333333333,25.3733446705,25.3733446705 -50,0,23.1,38.89,21.1142857143,38.9542857143,24.2,36.8685714286,23.29,37,21.236,40.036,9.39,16.812,23.5,34.1057142857,24.5,39.29,22.6428571429,37.7985714286,9.9666666667,760.6,77.1666666667,1,40,6.1666666667,6.7141643609,6.7141643609 -40,0,23.1,39.1633333333,21.08,39.156,24.236,37.036,23.29,36.9,21.2,40,9.39,17.6971428571,23.5,34.24,24.5,39.29,22.6,37.876,9.9,760.6,77,1,40,6.1,24.1869578836,24.1869578836 -50,0,23.1,39.29,21,39.2257142857,24.29,37.1528571429,23.2225,36.8175,21.18,39.94,9.39,18.1625,23.5,34.4,24.5,40,22.6285714286,38.1214285714,9.8,760.55,77.1666666667,1,40,6.0333333333,7.0680994308,7.0680994308 -50,0,23.1,39.29,21,39.29,24.29,37.254,23.2,36.8633333333,21.1,39.9285714286,9.39,19.716,23.5,34.536,24.4266666667,40.0666666667,22.6,38.29,9.7,760.5,77.3333333333,1,40,5.9666666667,9.5694786636,9.5694786636 -50,0,23,39.26,20.9842857143,39.3985714286,24.29,37.29,23.1,36.9,21,40,9.4528571429,21.3957142857,23.5,34.6971428571,24.39,40.09,22.6,38.38,9.6,760.45,77.5,1,40,5.9,30.5665204651,30.5665204651 -50,0,23,39.2,20.89,39.518,24.29,37.4,23.1,36.9,20.9842857143,40.14,9.456,22.816,23.5,34.79,24.39,40.4233333333,22.64,38.62,9.5,760.4,77.6666666667,1,40,5.8333333333,12.497054087,12.497054087 -60,0,23,39.2,20.89,39.59,24.3275,37.4625,23.1,36.9333333333,20.89,40.276,9.4685714286,23.7285714286,23.5,34.79,24.39,40.59,22.6,38.7257142857,9.4,760.35,77.8333333333,1,40,5.7666666667,39.3920716364,39.3920716364 -50,0,22.89,39.29,20.8733333333,39.59,24.3757142857,37.5,23.1,37,20.8614285714,40.3685714286,9.39,24.876,23.5,34.9,24.39,40.59,22.6,38.9,9.3,760.3,78,1,40,5.7,6.4214604441,6.4214604441 -60,0,22.89,39.29,20.79,39.612,24.39,37.536,23,36.9,20.79,40.29,9.3385714286,25.9785714286,23.5,35.01875,24.3233333333,40.4666666667,22.6,38.97,9.2666666667,760.2833333333,78.5,1,40,5.7333333333,48.1042401167,48.1042401167 -50,0,22.89,39.29,20.772,39.7,24.4371428571,37.5642857143,23,36.9666666667,20.7514285714,40.3057142857,9.3,26.512,23.5,35.1528571429,24.3233333333,40.3266666667,22.62,39.112,9.2333333333,760.2666666667,79,1,40,5.7666666667,17.2518048552,17.2518048552 -60,0,22.89,39.29,20.736,39.718,24.5,37.7,23,37,20.7,40.4,9.2685714286,27.4785714286,23.5,35.254,24.29,40.06,22.7,39.26,9.2,760.25,79.5,1,40,5.8,23.2876865892,23.2876865892 -50,0,22.89,39.29,20.7,39.79,24.5,37.6685714286,22.9266666667,37,20.6285714286,40.3528571429,9.19,28.874,23.5,35.3685714286,24.29,39.9333333333,22.7,39.398,9.1666666667,760.2333333333,80,1,40,5.8333333333,30.9486861806,30.9486861806 -60,0,22.89,39.3633333333,20.7,39.9,24.5,37.7,22.89,37.03,20.6,40.536,9.19,29.7685714286,23.5,35.29,24.254,39.79,22.68,39.5,9.1333333333,760.2166666667,80.5,1,40,5.8666666667,26.9080765545,26.9080765545 -50,0,22.8566666667,39.3633333333,20.7,39.9333333333,24.5,37.7257142857,22.89,37.09,20.5428571429,40.8128571429,9.172,30.974,23.5,35.3175,24.2,39.834,22.62,39.576,9.1,760.2,81,1,40,5.9,29.1658988688,29.1658988688 -40,0,22.79,39.29,20.675,40.0675,24.5,37.79,22.89,37.09,20.5,41.094,9.1642857143,32.7071428571,23.5,35.438,24.2,39.9,22.7,39.78125,9.0833333333,760.1666666667,81.8333333333,1.1666666667,38,6.0333333333,38.6000246042,38.6000246042 -60,0,22.79,39.29,20.6666666667,40.1633333333,24.5,37.79,22.89,37.1633333333,20.4685714286,41.3971428571,9.19,33.874,23.5,35.6633333333,24.1571428571,39.9571428571,22.7,39.9285714286,9.0666666667,760.1333333333,82.6666666667,1.3333333333,36,6.1666666667,43.7869240879,43.7869240879 -40,0,22.79,39.29,20.6,40.29,24.5,37.856,22.89,37.29,20.39,41.634,9.19,34.4485714286,23.5,35.73,24.2,40.054,22.7,40.09,9.05,760.1,83.5,1.5,34,6.3,45.1136911754,45.1136911754 -70,0,22.79,39.4,20.6,40.3633333333,24.5,37.9,22.89,37.29,20.39,41.9325,9.136,35.214,23.5,35.856,24.14,40.09,22.7,40.2357142857,9.0333333333,760.0666666667,84.3333333333,1.6666666667,32,6.4333333333,45.2741939807,45.2741939807 -50,0,22.79,39.4,20.5333333333,40.53,24.5,37.9,22.79,37.29,20.3042857143,42.3814285714,9.0285714286,36.3371428571,23.5,35.9166666667,24.1,40.112,22.7,40.376,9.0166666667,760.0333333333,85.1666666667,1.8333333333,30,6.5666666667,18.0274862563,18.0274862563 -60,0,22.79,39.4,20.6,40.59,24.5857142857,37.9,22.79,37.29,20.29,42.554,9,37.634,23.5,36.045,24.04,40.152,22.7,40.5257142857,9,760,86,2,28,6.7,2.919301542,2.919301542 -60,0,22.79,39.4,20.5,40.73,24.6,37.9,22.79,37.4,20.2642857143,42.5642857143,8.9371428571,38.3842857143,23.5,36.2,24.05,40.245,22.7,40.59,9.1,759.9333333333,86.8333333333,2,33.8333333333,6.95,33.4300451679,33.4300451679 -50,0,22.79,39.5,20.5,40.79,24.6,37.9,22.79,37.4,20.2,42.634,8.872,39.172,23.5,36.2514285714,24.06,40.29,22.7,40.59,9.2,759.8666666667,87.6666666667,2,39.6666666667,7.2,26.7294308054,26.7294308054 -60,0,22.79,39.5,20.5,40.8266666667,24.6,37.9,22.745,37.5,20.1857142857,42.7,8.8,39.5957142857,23.5,36.356,24,40.3214285714,22.7,40.612,9.3,759.8,88.5,2,45.5,7.45,10.4251352837,10.4251352837 -40,0,22.79,39.5,20.5,40.9666666667,24.6,37.9,22.76,37.5,20.1,42.754,8.654,40.28,23.5,36.4,24,40.29,22.7,40.7957142857,9.4,759.7333333333,89.3333333333,2,51.3333333333,7.7,24.247941887,24.247941887 -50,0,22.79,39.56,20.39,41,24.6,37.9142857143,22.7,37.56,20.1,42.79,8.51,40.8225,23.54,36.5,24,40.29,22.7,40.925,9.5,759.6666666667,90.1666666667,2,57.1666666667,7.95,34.4574575429,34.4574575429 -50,0,22.79,39.59,20.39,41.06,24.6,38,22.7,37.59,20.06,42.656,8.3675,40.95,23.6,36.5257142857,23.9057142857,40.3671428571,22.7,41.054,9.6,759.6,91,2,63,8.2,34.9890646292,34.9890646292 -50,0,22.76,39.59,20.39,41.1266666667,24.6,38,22.7,37.6633333333,20,42.5385714286,8.234,41.216,23.6,36.518,23.89,40.418,22.7,41.1083333333,9.4333333333,759.5333333333,91.5,2,61.3333333333,8.1166666667,49.1168274195,49.1168274195 -50,0,22.7,39.59,20.39,41.2,24.56,38.036,22.7,37.7,19.978,42.5,8.116,41.88,23.5285714286,36.59,23.89,40.3685714286,22.7,41.2,9.2666666667,759.4666666667,92,2,59.6666666667,8.0333333333,49.3354493054,49.3354493054 -60,0,22.7,39.6633333333,20.39,41.29,24.5,38.09,22.7,37.7,19.89,42.4714285714,7.9166666667,41.9833333333,23.5,36.5,23.89,40.46,22.7,41.236,9.1,759.4,92.5,2,58,7.95,30.2499678684,30.2499678684 -50,0,22.7,39.59,20.39,41.29,24.52,38.09,22.7,37.79,19.85,42.356,7.8,42.3,23.5285714286,36.5,23.8757142857,40.4128571429,22.7,41.29,8.9333333333,759.3333333333,93,2,56.3333333333,7.8666666667,22.046738246,22.046738246 -60,0,22.7,39.6266666667,20.29,41.29,24.6,38.09,22.7,37.79,19.79,42.2385714286,7.59,42.356,23.5,36.576,23.79,40.272,22.7,41.334,8.7666666667,759.2666666667,93.5,2,54.6666666667,7.7833333333,10.2466322132,10.2466322132 -70,0,22.7,39.6266666667,20.29,41.3633333333,24.56,38.09,22.6333333333,37.73,19.736,42.178,7.5,42.82,23.5,36.7,23.79,40.1685714286,22.7,41.4142857143,8.6,759.2,94,2,53,7.7,31.4342629514,31.4342629514 -80,0,22.7,39.6933333333,20.29,41.53,24.5428571429,38.0771428571,22.6333333333,37.79,19.7,42.09,7.375,43.0675,23.5,36.7,23.79,40.09,22.7,41.554,8.45,759.1333333333,94.1666666667,2,51,7.5833333333,47.6786372717,47.6786372717 -50,0,22.7,40.0266666667,20.29,41.9475,24.48625,37.81125,22.6,37.76,19.7,42.52,7.234,43.3,23.5,36.65875,23.79,40.09,22.7,41.5642857143,8.3,759.0666666667,94.3333333333,2,49,7.4666666667,17.3085585469,17.3085585469 -50,0,22.7,39.8333333333,20.23,42.2,24.39,37.436,22.5333333333,37.7,19.7,42.71,7.19,43.9483333333,23.5,36.6528571429,23.79,40.09,22.7,41.554,8.15,759,94.5,2,47,7.35,20.526987128,20.526987128 -50,0,22.7,39.7,20.2,42.2,24.3471428571,37.1214285714,22.5,37.7,19.68,42.414,7.19,44.795,23.5,36.678,23.79,40.0642857143,22.7,41.5285714286,8,758.9333333333,94.6666666667,2,45,7.2333333333,17.7029429353,17.7029429353 -50,0,22.76,39.6633333333,20.2,42.2,24.29,36.96,22.5,37.7,19.6,42.09,7.34,45.58,23.5,36.59,23.79,40.09,22.7,41.718,7.85,758.8666666667,94.8333333333,2,43,7.1166666667,5.6977135595,5.6977135595 -60,0,22.7,39.59,20.29,42.29,24.29,36.9,22.5666666667,37.76,19.5,42.09,7.5228571429,46.45,23.5,36.59,23.7128571429,40.3128571429,22.7,41.772,7.7,758.8,95,2,41,7,23.8694567466,23.8694567466 -40,0,22.76,39.59,20.29,42.29,24.272,36.9,22.5666666667,37.76,19.5,42.3685714286,7.874,47.88,23.5,36.7514285714,23.7,40.536,22.7,41.678,7.8333333333,758.7833333333,95,2.1666666667,41.6666666667,7.1333333333,23.1717777089,23.1717777089 -50,0,22.76,39.59,20.29,42.4333333333,24.2,36.8214285714,22.6,37.9,19.5,42.674,8.2942857143,48.4971428571,23.5,36.9,23.7,40.4714285714,22.7,41.59,7.9666666667,758.7666666667,95,2.3333333333,42.3333333333,7.2666666667,5.9495789115,5.9495789115 -40,0,22.79,39.7,20.29,42.4333333333,24.2,36.79,22.6,38.0266666667,19.5,42.8971428571,8.5,48.5,23.5,36.9285714286,23.7,40.29,22.7,41.59,8.1,758.75,95,2.5,43,7.4,40.4928900534,40.4928900534 -80,0,22.79,39.76,20.39,42.5,24.1142857143,36.8842857143,22.6,38.345,19.456,43.054,8.5142857143,48.6528571429,23.5,37,23.7,40.2228571429,22.7,41.554,8.2333333333,758.7333333333,95,2.6666666667,43.6666666667,7.5333333333,46.0239976761,46.0239976761 -70,0,22.79,39.8266666667,20.4633333333,42.5,24.08,36.9,22.6333333333,38.53,19.39,43.3,8.618,49.076,23.5,37.0514285714,23.68,39.994,22.7,41.475,8.3666666667,758.7166666667,95,2.8333333333,44.3333333333,7.6666666667,5.3927346133,5.3927346133 -60,0,22.79,39.9,20.5333333333,42.5,24.0714285714,36.9,22.7,38.59,19.39,43.5925,8.7942857143,49.4285714286,23.5,37.152,23.6,39.7642857143,22.65,41.2816666667,8.5,758.7,95,3,45,7.8,9.7675599973,9.7675599973 -70,0,22.79,39.9666666667,20.6666666667,42.56,24.1,36.9,22.7,38.53,19.412,44.112,9.20625,49.75,23.5,37.5285714286,23.6,39.59,22.64,41.13,8.6666666667,758.7166666667,94.3333333333,3.1666666667,47.8333333333,7.85,40.6071206555,40.6071206555 -110,0,22.79,39.9975,20.8233333333,42.3633333333,24.1,36.9857142857,22.7,38.6633333333,19.5,44.4,10.076,50.12,23.5,37.916,23.5571428571,39.4985714286,22.65,41.045,8.8333333333,758.7333333333,93.6666666667,3.3333333333,50.6666666667,7.9,4.7012707684,4.7012707684 -50,0,22.79,40.29,21.03,42.29,24.08,36.98,22.7,38.73,19.5,44.634,10.8785714286,49.1528571429,23.5,37.5985714286,23.58,39.4,22.6,40.725,9,758.75,93,3.5,53.5,7.95,5.7476170245,5.7476170245 -50,0,22.8233333333,40.5,21.23,42.1633333333,24.0714285714,37.0357142857,22.7,38.93,19.5,44.8285714286,11.67,45.914,23.5,37.48,23.5,39.4,22.7,40.59,9.1666666667,758.7666666667,92.3333333333,3.6666666667,56.3333333333,8,13.8416285976,13.8416285976 -50,0,22.89,40.4333333333,21.43,41.89,24.06,37.054,22.73,39,19.5,44.978,12.45,39.94,23.5,37.2957142857,23.5,39.4,22.7,40.59,9.3333333333,758.7833333333,91.6666666667,3.8333333333,59.1666666667,8.05,46.8747626757,46.8747626757 -50,0,22.89,40.4,21.9933333333,41.0933333333,24.0142857143,37.0128571429,22.79,39,19.5,45.1214285714,13.136,31.516,23.456,37.054,23.4725,39.30875,22.7,40.59,9.5,758.8,91,4,62,8.1,28.3165501431,28.3165501431 -70,0,22.89,40.4,22.4,40.3666666667,24.1,37.09,22.79,38.9,19.5,45.09,13.3485714286,29.0642857143,23.39,36.8385714286,23.39,39.2,22.7,40.552,9.6833333333,758.8166666667,90.1666666667,4,62.1666666667,8.1333333333,19.6220860234,19.6220860234 -50,0,22.89,40.4,22.5333333333,39.8633333333,24.0285714286,37.09,22.79,38.8266666667,19.5,45.1214285714,13.454,27.394,23.39,36.678,23.39,39.2,22.7,40.3266666667,9.8666666667,758.8333333333,89.3333333333,4,62.3333333333,8.1666666667,23.1096709962,23.1096709962 -60,0,22.89,40.4,23.1,39.4925,24.1,37.09,22.8233333333,38.8266666667,19.5,45.072,14.0657142857,24.9114285714,23.39,36.5257142857,23.39,39.2,22.7,40.4766666667,10.05,758.85,88.5,4,62.5,8.2,39.3277580268,39.3277580268 -60,0,22.9266666667,40.4,23.9333333333,38.6,24.1857142857,37.0128571429,22.89,38.9,19.5,45.0642857143,14.88,22.65,23.39,36.356,23.35,39.2,22.736,40.59,10.2333333333,758.8666666667,87.6666666667,4,62.6666666667,8.2333333333,25.9936315822,25.9936315822 -50,0,23,40.4,24.6966666667,37.3933333333,24.2,36.98,23,38.79,19.5,45.2,15.2928571429,18.8942857143,23.39,36.29,23.29,39.1057142857,22.79,40.59,10.4166666667,758.8833333333,86.8333333333,4,62.8333333333,8.2666666667,1.8864334677,1.8864334677 -50,0,23,40.4,25.03,36.5266666667,24.2642857143,36.9714285714,23.0666666667,38.79,19.5,45.2771428571,15.614,17.92,23.39,36.236,23.29,39.156,22.79,40.59,10.6,758.9,86,4,63,8.3,34.8661181983,34.8661181983 -50,0,23,40.4,25.3933333333,35.8933333333,24.29,37,23.2,38.7,19.52,45.334,15.7942857143,15.8428571429,23.3614285714,36.1685714286,23.2642857143,39.1685714286,22.79,40.696,10.7666666667,758.9,85.1666666667,4,63.3333333333,8.3166666667,34.7763765953,34.7763765953 -50,0,23.0333333333,40.4333333333,25.7266666667,35.1666666667,24.29,37.0385714286,23.26,38.7,19.5714285714,45.3685714286,15.836,14.256,23.29,36.09,23.2,39.09,22.79,40.79,10.9333333333,758.9,84.3333333333,4,63.6666666667,8.3333333333,9.4621653087,9.4621653087 -50,0,23.1,40.5,25.89,34.6333333333,24.2225,37.045,23.3233333333,38.59,19.54,45.356,15.68,13.3271428571,23.3328571429,36.0128571429,23.2,39.1842857143,22.79,40.965,11.1,758.9,83.5,4,64,8.35,31.2356232083,31.2356232083 -50,0,23.1,40.4666666667,26.03,34.56,24.2,37.112,23.39,38.59,19.5714285714,45.3528571429,15.934,13.64,23.315,35.9875,23.2,39.2,22.79,41.036,11.2666666667,758.9,82.6666666667,4,64.3333333333,8.3666666667,5.6499838363,5.6499838363 -60,0,23.1,40.4,26.46,34.16,24.2,37.2,23.445,38.545,19.6,45.46,16.5228571429,12.0571428571,23.29,35.9,23.1714285714,39.2,22.79,41.2,11.4333333333,758.9,81.8333333333,4,64.6666666667,8.3833333333,35.4471766157,35.4471766157 -50,0,23.1,40.4,26.6666666667,33.6333333333,24.2,37.2,23.6,38.5,19.6285714286,45.5257142857,17.414,8.936,23.29,35.9,23.1,39.29,22.79,41.2,11.6,758.9,81,4,65,8.4,1.5897864942,1.5897864942 -50,0,23.1666666667,40.4,26.89,33.1633333333,24.2,37.2,23.6,38.4333333333,19.66,45.656,17.9542857143,6.0985714286,23.236,35.79,23.1,39.29,22.79,41.2,12.0166666667,758.8833333333,79.3333333333,4,58.5,8.4833333333,27.4226367241,27.4226367241 -60,0,23.2,40.4,26.89,33.09,24.2,37.218,23.7,38.4666666667,19.6142857143,45.59,18.296,4.378,23.29,35.79,23.1,39.312,22.79,41.2,12.4333333333,758.8666666667,77.6666666667,4,52,8.5666666667,19.6759830113,19.6759830113 -50,0,23.2,40.4,27,33.43,24.2385714286,37.29,23.76,38.4,19.7,45.612,18.5714285714,3.1685714286,23.236,35.736,23.1,39.4285714286,22.79,41.09,12.85,758.85,76,4,45.5,8.65,43.9041257254,43.9041257254 -60,0,23.26,40.4,27,33.23,24.29,37.356,23.79,38.3633333333,19.7,45.7,18.776,2.814,23.2,35.7,23.1,39.5,22.83,41.116,13.2666666667,758.8333333333,74.3333333333,4,39,8.7333333333,26.5865109744,26.5865109744 -50,0,23.29,40.4,27.0333333333,33.1633333333,24.2514285714,37.3371428571,23.79,38.29,19.736,45.79,19.1642857143,1.9714285714,23.2,35.7,23.0142857143,39.5128571429,22.79,41,13.6833333333,758.8166666667,72.6666666667,4,32.5,8.8166666667,7.9207398463,7.9207398463 -60,0,23.29,40.4,27.0333333333,33.09,24.254,37.356,23.89,38.3633333333,19.7675,45.79,19.554,1.4,23.2,35.7,23,39.612,22.79,40.9,14.1,758.8,71,4,26,8.9,8.290753339,8.290753339 -40,0,23.39,40.29,27.0333333333,33,24.2257142857,37.3685714286,23.9633333333,38.29,19.79,45.8842857143,19.815,1,23.2,35.7,23,39.7,22.81,40.9,14.3833333333,758.7833333333,69.8333333333,4.1666666667,26.3333333333,8.9,5.5332336691,5.5332336691 -60,0,23.39,40.29,27.0333333333,33,24.29,37.5,23.9266666667,38.26,19.79,45.9,19.8614285714,1,23.2,35.7,23,39.7,22.8185714286,40.8214285714,14.6666666667,758.7666666667,68.6666666667,4.3333333333,26.6666666667,8.9,31.243980315,31.243980315 -40,0,23.39,40.29,27,33,24.29,37.5,24,38.2,19.79,45.9,19.714,1,23.2,35.7,23,39.7,22.79,40.754,14.95,758.75,67.5,4.5,27,8.9,9.4743102905,9.4743102905 -60,0,23.4633333333,40.3633333333,26.9266666667,32.6666666667,24.272,37.536,24,38.2,19.89,45.96,19.3628571429,1,23.2,35.7,23,39.7,22.79,40.656,15.2333333333,758.7333333333,66.3333333333,4.6666666667,27.3333333333,8.9,11.0916551785,11.0916551785 -50,0,23.5,40.4,26.79,32.53,24.2642857143,37.5257142857,24,38.1266666667,19.89,45.9,19.216,1,23.2,35.6214285714,23,39.7,22.79,40.59,15.5166666667,758.7166666667,65.1666666667,4.8333333333,27.6666666667,8.9,45.0920379488,45.0920379488 -60,0,23.5,40.4,26.6975,32.6175,24.29,37.59,24.1,38.1633333333,19.89,45.9,19.1,1,23.2,35.59,23,39.7,22.79,40.59,15.8,758.7,64,5,28,8.9,26.4237916097,26.4237916097 -50,0,23.5,40.4,26.5333333333,32.76,24.29,37.59,24.1,38.09,19.89,45.8214285714,19.2,1,23.2,35.59,22.9057142857,39.7128571429,22.79,40.59,16,758.6666666667,62.6666666667,5,27.5,8.75,15.939682012,15.939682012 -50,0,23.5666666667,40.4,26.39,32.9333333333,24.29,37.59,24.1,38.2,20,45.9,19.3071428571,1,23.2,35.59,22.89,39.8575,22.79,40.59,16.2,758.6333333333,61.3333333333,5,27,8.6,31.6130825784,31.6130825784 -60,0,23.6,40.29,26.3233333333,33.06,24.29,37.59,24.1,38.2,20,45.9857142857,19.26,1,23.2,35.59,22.89,40.018,22.79,40.59,16.4,758.6,60,5,26.5,8.45,7.4565281975,7.4565281975 -50,0,23.6,40.29,26.26,33.23,24.315,37.59,24.1333333333,38.2,20.02,46.018,19.6257142857,1.0428571429,23.2,35.612,22.89,40.1214285714,22.79,40.59,16.6,758.5666666667,58.6666666667,5,26,8.3,47.3705188953,47.3705188953 -50,0,23.6,40.29,26.2,33.3633333333,24.39,37.59,24.2,38.2,20.1,46.0642857143,19.83,1,23.2,35.7,22.89,40.2,22.79,40.59,16.8,758.5333333333,57.3333333333,5,25.5,8.15,13.3180169505,13.3180169505 -40,0,23.6666666667,40.29,26.2,33.4,24.3614285714,37.59,24.2,38.1633333333,20.1,45.96,20.1942857143,1,23.2,35.7,22.89,40.2,22.79,40.59,17,758.5,56,5,25,8,29.7606822453,29.7606822453 -50,0,23.7,40.29,26.1333333333,33.4666666667,24.39,37.59,24.2,38.1725,20.1,45.9142857143,20.678,1,23.2,35.7,22.89,40.2,22.79,40.59,16.8666666667,758.45,56.6666666667,5,27.5,8.05,7.8218423063,7.8218423063 -50,0,23.7,40.29,26.0666666667,33.53,24.39,37.59,24.2,38.1266666667,20.12,46,20.9214285714,1,23.2,35.7,22.89,40.2642857143,22.79,40.59,16.7333333333,758.4,57.3333333333,5,30,8.1,37.5177860027,37.5177860027 -40,0,23.73,40.2,26,33.6633333333,24.39,37.59,24.2,38.1633333333,20.2,45.9285714286,20.934,1,23.2,35.7,22.89,40.29,22.79,40.59,16.6,758.35,58,5,32.5,8.15,46.6370329726,46.6370329726 -30,0,23.79,40.2,26,33.73,24.39,37.59,24.2,38.1633333333,20.2,45.9,21,1,23.2,35.7,22.89,40.2514285714,22.79,40.59,16.4666666667,758.3,58.6666666667,5,35,8.2,6.7512327689,6.7512327689 -40,0,23.79,40.2,25.9266666667,33.53,24.39,37.59,24.2,38.2,20.2,45.9,20.896,1,23.2,35.7,22.89,40.254,22.79,40.59,16.3333333333,758.25,59.3333333333,5,37.5,8.25,0.4682727507,0.4682727507 -40,0,23.79,40.09,25.8266666667,33.5666666667,24.39,37.59,24.1333333333,38.2,20.218,45.834,20.5685714286,1,23.1857142857,35.7,22.89,40.2514285714,22.79,40.59,16.2,758.2,60,5,40,8.3,7.0155932335,7.0155932335 -60,0,23.79,40.09,25.7,33.745,24.39,37.6214285714,24.1333333333,38.2,20.2642857143,45.7642857143,20.39,1,23.16,35.7,22.89,40.29,22.79,40.59,16.2333333333,758.1666666667,60.1666666667,5,38.1666666667,8.4,34.0724442271,34.0724442271 -60,0,23.8233333333,40.09,25.7,33.9333333333,24.39,37.634,24.1333333333,38.2,20.29,45.754,20.7657142857,1,23.1571428571,35.7,22.89,40.29,22.79,40.59,16.2666666667,758.1333333333,60.3333333333,5,36.3333333333,8.5,34.7494737245,34.7494737245 -50,0,23.89,40.09,25.7,34,24.39,37.7,24.1,38.2,20.29,45.7,21.12,1,23.14,35.656,22.89,40.29,22.79,40.59,16.3,758.1,60.5,5,34.5,8.6,25.9855516837,25.9855516837 -60,0,23.89,40.09,25.56,34.036,24.39,37.7,24.1,38.2,20.33,45.66,21.1714285714,1,23.1142857143,35.6685714286,22.89,40.29,22.79,40.59,16.3333333333,758.0666666667,60.6666666667,5,32.6666666667,8.7,31.2024495332,31.2024495332 -50,0,23.89,40.09,25.5,34.1971428571,24.39,37.7,24.1,38.2,20.3614285714,45.4714285714,21,1,23.1,35.59,22.89,40.1633333333,22.79,40.572,16.3666666667,758.0333333333,60.8333333333,5,30.8333333333,8.8,17.8871007869,17.8871007869 -50,0,23.89,40.09,25.414,34.312,24.39,37.7,24.0333333333,38.2,20.35,45.29,20.88,1,23.1,35.59,22.89,40.09,22.79,40.5,16.4,758,61,5,29,8.9,41.9603432529,41.9603432529 -40,0,23.89,40.03,25.29,34.4,24.39,37.6685714286,24.1,38.2,20.3757142857,45.0685714286,20.872,1,23.1,35.5,22.89,40.0266666667,22.79,40.44,16.35,757.9555555556,61.25,4.9444444444,29.3055555556,8.9083333333,44.2856818554,44.2856818554 -50,0,23.89,40,25.29,34.4,24.39,37.678,24.1,38.2,20.39,44.61,21.4428571429,1,23.1,35.4857142857,22.89,39.7666666667,22.79,40.3514285714,16.3,757.9111111111,61.5,4.8888888889,29.6111111111,8.9166666667,31.423549552,31.423549552 -60,0,23.9633333333,40,25.29,34.4,24.39,37.59,24.1,38.1633333333,20.412,44.356,21.64,1,23.1,35.378,22.8566666667,39.3633333333,22.79,40.29,16.25,757.8666666667,61.75,4.8333333333,29.9166666667,8.925,36.0264812829,36.0264812829 -60,0,24,39.9,25.245,34.4125,24.456,37.71,24.1,38.09,20.5,44.3528571429,21.675,1,23.1,35.29,22.8566666667,39.29,22.79,40.29,16.2,757.8222222222,62,4.7777777778,30.2222222222,8.9333333333,22.4354201462,22.4354201462 -50,0,24,39.9,25.14,34.518,24.4528571429,37.6528571429,24,38.06,20.5,44.254,21.2557142857,1,23.1,35.254,22.89,39.2,22.79,40.2,16.15,757.7777777778,62.25,4.7222222222,30.5277777778,8.9416666667,40.6188188586,40.6188188586 -60,0,24,39.79,25.1,34.6214285714,24.5,37.678,24,38,20.5,44.2,20.694,1,23.1,35.2,22.8233333333,39.2,22.79,40.2,16.1,757.7333333333,62.5,4.6666666667,30.8333333333,8.95,46.3962556794,46.3962556794 -60,0,24,39.73,25,34.736,24.5,37.59,24,38.06,20.5,44.2,20.0942857143,1,23.1,35.2,22.79,39.245,22.79,40.178,16.05,757.6888888889,62.75,4.6111111111,31.1388888889,8.9583333333,21.3340887683,21.3340887683 -50,0,24,39.6633333333,24.8914285714,34.91,24.5,37.59,24,38.0225,20.5,44.2,19.56,1,23.1,35.2,22.79,39.29,22.79,40.1685714286,16,757.6444444444,63,4.5555555556,31.4444444444,8.9666666667,27.3011189303,27.3011189303 -80,0,24,39.59,24.79,35,24.5,37.59,24,38.09,20.5,44.2,19.7514285714,1,23.1,35.2,22.8566666667,39.3633333333,22.79,40.254,15.95,757.6,63.25,4.5,31.75,8.975,11.3812246942,11.3812246942 -70,0,23.89,39.56,24.7257142857,35,24.5,37.536,24,38.09,20.5428571429,44.34,19.87,1,23.1,35.2,22.89,39.83,22.79,40.0857142857,15.9,757.5555555556,63.5,4.4444444444,32.0555555556,8.9833333333,13.0895196577,13.0895196577 -80,0,23.9633333333,39.4333333333,24.6,34.94,24.4685714286,37.4714285714,23.9266666667,38.03,20.5,44.4,19.7357142857,1,23.04,35.156,22.89,40.3633333333,22.79,39.918,15.85,757.5111111111,63.75,4.3888888889,32.3611111111,8.9916666667,3.3854278387,3.3854278387 -80,0,23.89,39.26,24.4985714286,35,24.39,37.29,23.89,38,20.5,44.4,19.254,1,23,35.2,23,40.89,22.79,39.7257142857,15.8,757.4666666667,64,4.3333333333,32.6666666667,9,44.7379372315,44.7379372315 -80,0,23.89,39.1725,24.39,35.094,24.39,37.2385714286,23.89,38,20.6,44.4,19.1714285714,1,23,35.2,23.0666666667,41.2233333333,22.754,39.59,15.75,757.4222222222,64.25,4.2777777778,32.9722222222,9.0083333333,29.6521738754,29.6521738754 -90,0,23.89,39.1633333333,24.3614285714,35.3214285714,24.39,37.178,23.8566666667,37.9666666667,20.6,44.3371428571,19.42,1,23,35.2,23.2,41.36,22.7642857143,39.4557142857,15.7,757.3777777778,64.5,4.2222222222,33.2777777778,9.0166666667,7.5142566231,7.5142566231 -100,0,23.89,39.1266666667,24.29,35.5,24.39,37.1685714286,23.8566666667,37.9666666667,20.6,44.29,19.6714285714,1,23,35.254,23.26,41.7666666667,22.754,39.4,15.65,757.3333333333,64.75,4.1666666667,33.5833333333,9.025,44.2619190784,44.2619190784 -190,0,23.89,39.3333333333,24.29,35.5514285714,24.39,37.09,23.79,37.9,20.6,44.2257142857,19.254,1,23,35.29,23.39,42.1266666667,22.79,39.4,15.6,757.2888888889,65,4.1111111111,33.8888888889,9.0333333333,41.1422162433,41.1422162433 -380,0,23.89,39.29,24.29,35.674,24.4371428571,37.2228571429,23.79,37.9,20.6,44.2,19.1857142857,1,23,35.29,23.4633333333,42.26,22.7,39.45,15.55,757.2444444444,65.25,4.0555555556,34.1944444444,9.0416666667,9.5492448425,9.5492448425 -100,0,23.89,42.29,24.2642857143,35.8214285714,24.39,37.2,23.79,37.9,20.6142857143,44.2671428571,19.018,1,22.9842857143,35.29,23.5,42.1933333333,22.7,39.2828571429,15.5,757.2,65.5,4,34.5,9.05,7.7834778465,7.7834778465 -90,0,24,42.53,24.2,36.714,24.4842857143,37.3071428571,23.79,37.9666666667,20.64,44.42,18.8357142857,1,22.9725,35.30375,23.5,41.7266666667,22.7128571429,39.1971428571,15.45,757.1555555556,65.75,3.9444444444,34.8055555556,9.0583333333,33.8554099086,33.8554099086 -110,0,24,42.3233333333,24.1571428571,37.1385714286,24.5,37.5257142857,23.79,38,20.6,44.5257142857,18.456,1,22.934,35.4,23.5333333333,41.59,22.736,39.112,15.4,757.1111111111,66,3.8888888889,35.1111111111,9.0666666667,36.1199452193,36.1199452193 -90,0,23.9633333333,41.7966666667,24.14,37.29,24.56,37.736,23.79,38,20.6,44.7,18.1957142857,1,22.89,35.4,23.6,41.6633333333,22.7,39.1685714286,15.35,757.0666666667,66.25,3.8333333333,35.4166666667,9.075,35.3569898056,35.3569898056 -110,0,23.9633333333,41.4633333333,24.1,37.29,24.5142857143,37.8985714286,23.79,38.09,20.6,44.7,18.018,1,22.89,35.4,23.7,41.7,22.7,39.09,15.3,757.0222222222,66.5,3.7777777778,35.7222222222,9.0833333333,11.8444161839,11.8444161839 -100,0,23.89,41.1333333333,24,37.2,24.58,38,23.73,38.09,20.6,44.678,17.7642857143,1,22.89,35.4142857143,23.76,41.6266666667,22.7,39.09,15.25,756.9777777778,66.75,3.7222222222,36.0277777778,9.0916666667,24.5837296243,24.5837296243 -90,0,23.89,40.9333333333,24,37.2771428571,24.5714285714,38.0642857143,23.7,38.1266666667,20.6,44.59,17.214,2.14,22.89,35.5,23.79,41.5,22.7,39.09,15.2,756.9333333333,67,3.6666666667,36.3333333333,9.1,3.1460844679,3.1460844679 -140,0,23.89,40.76,23.934,37.29,24.5,38.09,23.7,38.2,20.6,44.59,17.3371428571,2.8814285714,22.89,35.5257142857,23.79,41.5,22.7,39.09,15.15,756.8888888889,67.25,3.6111111111,36.6388888889,9.1083333333,14.819616836,14.819616836 -140,0,23.89,40.7,23.89,37.3971428571,24.5571428571,38.09,23.7,38.23,20.8714285714,54.5371428571,18.576,2.352,22.89,35.59,23.89,41.59,22.7,39.09,15.1,756.8444444444,67.5,3.5555555556,36.9444444444,9.1166666667,42.3667410505,42.3667410505 -130,10,23.89,40.79,23.79,37.634,24.6,38.09,23.7,38.29,21.1,62.354,19.6428571429,1,22.89,35.7357142857,23.9633333333,41.59,22.7,39.09,15.05,756.8,67.75,3.5,37.25,9.125,47.6757110795,47.6757110795 -120,0,23.89,40.79,23.7385714286,37.8285714286,24.6,38.09,23.7,38.495,21.1971428571,64.1228571429,19.434,1,22.89,35.876,24.05,41.645,22.7,39.09,15,756.7555555556,68,3.4444444444,37.5555555556,9.1333333333,29.4990469585,29.4990469585 -120,0,23.89,40.79,23.7,38.018,24.62,38.112,23.7,39,22.0475,80.45625,19.4385714286,1,22.89,36.0571428571,24.1,41.7666666667,22.6571428571,39.0514285714,14.95,756.7111111111,68.25,3.3888888889,37.8611111111,9.1416666667,1.6138036503,1.6138036503 -130,0,23.89,40.93,23.6285714286,38.0514285714,24.6714285714,38.1685714286,23.7,39.46,21.6,72.314,18.8333333333,1,22.89,36.556,24.1666666667,41.9666666667,22.6,39,14.9,756.6666666667,68.5,3.3333333333,38.1666666667,9.15,36.2105336506,36.2105336506 -140,0,23.89,40.9333333333,23.5375,38.44375,24.64,38.134,23.79,39.6633333333,22.08,80.2985714286,17.2714285714,2.3242857143,22.9528571429,37.31,24.2,42.3266666667,22.6,39.0771428571,14.85,756.6222222222,68.75,3.2777777778,38.4722222222,9.1583333333,17.6947033149,17.6947033149 -110,10,23.89,41.06,23.456,38.834,24.6857142857,38.2,23.73,39.59,22.292,83.356,15.7971428571,5.3657142857,23,37.88,24.26,42.4666666667,22.6,39.156,14.8,756.5777777778,69,3.2222222222,38.7777777778,9.1666666667,27.9638533131,27.9638533131 -110,0,23.89,41.145,23.3757142857,39.1,24.6,38.2,23.7,39.5,22.0714285714,81.4714285714,14.68,7.474,23,38.2957142857,24.29,42.7,22.6,39.2,14.75,756.5333333333,69.25,3.1666666667,39.0833333333,9.175,45.1334923389,45.1334923389 -110,0,23.89,41.23,23.29,39.276,24.6,38.2,23.7,39.5,21.89,79.22,14.0142857143,9.4671428571,23.06,38.7,24.3566666667,42.7,22.6,39.29,14.7,756.4888888889,69.5,3.1111111111,39.3888888889,9.1833333333,2.0819152938,2.0819152938 -110,0,23.89,41.29,23.2257142857,39.4285714286,24.6,38.2,23.7,39.5,21.7914285714,76.8942857143,13.46,11.436,23.0857142857,38.9414285714,24.39,42.56,22.5428571429,39.29,14.65,756.4444444444,69.75,3.0555555556,39.6944444444,9.1916666667,41.5236697765,41.5236697765 -90,0,23.89,41.29,23.2,39.634,24.5142857143,38.2514285714,23.7,39.5,21.68,74.15,12.9714285714,13.3257142857,23.1,39.174,24.4633333333,42.5,22.5,39.356,14.6,756.4,70,3,40,9.2,48.9652190241,48.9652190241 -60,10,23.89,41.29,23.1142857143,39.8285714286,24.478,38.272,23.7,39.4,21.6285714286,69.9928571429,12.56,15.916,23.1,39.3971428571,24.5,42.4,22.5,39.4,14.25,756.4166666667,71.6666666667,3,37.8333333333,9.2,46.2706333958,46.2706333958 -80,0,23.89,41.4333333333,23.08,40.018,24.4214285714,38.2571428571,23.7,39.4666666667,21.6,66.45,12.3542857143,18.2128571429,23.1,39.634,24.5,42.4,22.5,39.44,13.9,756.4333333333,73.3333333333,3,35.6666666667,9.2,32.8077517101,32.8077517101 -50,0,23.8233333333,41.4333333333,23,40.1214285714,24.39,38.29,23.6,39.4,21.5857142857,65.1671428571,12.3,20.48,23.1,39.7514285714,24.4633333333,42.6266666667,22.5,39.6271428571,13.55,756.45,75,3,33.5,9.2,45.8828230854,45.8828230854 -60,0,23.79,41.4333333333,22.85,40.254,24.4528571429,38.3528571429,23.6,39.3266666667,21.5,64.26,12.3,22.1685714286,23.1,39.876,24.39,42.8333333333,22.5,40.016,13.2,756.4666666667,76.6666666667,3,31.3333333333,9.2,43.128886004,43.128886004 -50,0,23.79,41.5,22.79,40.34,24.5,38.46,23.6,39.29,21.5,63.4714285714,12.19,22.74,23.1,40.0642857143,24.39,43.0666666667,22.5285714286,40.5257142857,12.85,756.4833333333,78.3333333333,3,29.1666666667,9.2,4.0421691025,4.0421691025 -60,10,23.79,41.5,22.736,40.478,24.5,38.5,23.6,39.29,21.5,62.71,12.1257142857,24.6714285714,23.14,40.2,24.39,43.3333333333,22.6,40.94,12.5,756.5,80,3,27,9.2,15.8957796753,15.8957796753 -80,0,23.73,41.56,22.6714285714,40.5642857143,24.5,38.5,23.6,39.29,21.5,62.14,12.316,27.298,23.1142857143,40.2514285714,24.29,43.6566666667,22.6,41.17,12.3333333333,756.4666666667,80.8333333333,2.8333333333,26.8333333333,9.1666666667,39.9829818984,39.9829818984 -50,0,23.76,41.59,22.6,40.59,24.5,38.5128571429,23.6,39.29,21.434,61.292,12.7428571429,26.0828571429,23.1,40.29,24.29,43.73,22.6,41.3671428571,12.1666666667,756.4333333333,81.6666666667,2.6666666667,26.6666666667,9.1333333333,45.4806416412,45.4806416412 -40,0,23.7,41.53,22.5142857143,40.6842857143,24.5,38.536,23.5666666667,39.2,21.39,60.3971428571,12.8,23.15,23.1,40.3725,24.26,43.4,22.6,41.518,12,756.4,82.5,2.5,26.5,9.1,34.2932292027,34.2932292027 -20,0,23.7,41.4,22.478,40.7,24.5,38.5,23.5666666667,39.1266666667,21.39,59.47,12.8385714286,22.0342857143,23.1714285714,40.4,24.26,43.26,22.6,41.59,11.8333333333,756.3666666667,83.3333333333,2.3333333333,26.3333333333,9.0666666667,15.9381158068,15.9381158068 -30,10,23.7,41.4,22.39,40.7,24.5,38.5257142857,23.5,39.06,21.39,58.8528571429,12.854,21.274,23.2,40.4,24.2,43.23,22.6,41.7,11.6666666667,756.3333333333,84.1666666667,2.1666666667,26.1666666667,9.0333333333,45.5833626096,45.5833626096 -30,0,23.7,41.26,22.29,40.79,24.39,38.5,23.5,39,21.39,58.22,12.89,20.5942857143,23.2,40.4142857143,24.2,43.3425,22.6,41.7771428571,11.5,756.3,85,2,26,9,3.8616310107,3.8616310107 -60,0,23.7,41.2,22.2771428571,40.8371428571,24.39,38.5671428571,23.5,38.9333333333,21.39,57.7642857143,12.934,20.39,23.2,40.46,24.2,43.6333333333,22.6,41.856,11.5833333333,756.2833333333,84.1666666667,2,26,8.9333333333,42.7643042291,42.7643042291 -60,0,23.6,41.09,22.2,40.812,24.39,38.718,23.5,38.9,21.33,57.254,12.9685714286,20.2942857143,23.2,40.5,24.1,44.03,22.6,41.9,11.6666666667,756.2666666667,83.3333333333,2,26,8.8666666667,44.4378416636,44.4378416636 -60,0,23.6,41.03,22.1714285714,40.9,24.4685714286,38.94,23.5,38.8266666667,21.3471428571,56.88,12.956,20.236,23.2,40.5,24.1,44.43,22.6,42,11.75,756.25,82.5,2,26,8.8,42.4417870934,42.4417870934 -60,0,23.6,41.06,22.1,40.94,24.5,39.036,23.5,38.79,21.29,56.494,12.9685714286,20.2642857143,23.2,40.5,24,44.5966666667,22.6,42.0514285714,11.8333333333,756.2333333333,81.6666666667,2,26,8.7333333333,6.4732991625,6.4732991625 -60,0,23.6,41,22.0857142857,41.0385714286,24.5571428571,39.09,23.5,38.79,21.29,56.1214285714,12.89,20,23.2,40.5,24,45.0633333333,22.6,42.112,11.9166666667,756.2166666667,80.8333333333,2,26,8.6666666667,2.148220723,2.148220723 -50,0,23.5333333333,41,22,41.018,24.6,39.09,23.4633333333,38.7233333333,21.29,55.71,12.72,19.76875,23.2,40.5,24,45.3266666667,22.6,42.2,12,756.2,80,2,26,8.6,38.6069701402,38.6069701402 -60,0,23.5,41,22,41.09,24.6,39.09,23.39,38.59,21.29,55.42125,12.1528571429,19.61,23.254,40.5,24,45.4666666667,22.6,42.29,12.1333333333,756.15,78.6666666667,2,28.3333333333,8.4666666667,31.8408153136,31.8408153136 -50,10,23.5,41,22,41.09,24.6,39.09,23.39,38.59,21.29,55.04,11.536,20.394,23.2,40.5928571429,24,45.59,22.6428571429,42.44,12.2666666667,756.1,77.3333333333,2,30.6666666667,8.3333333333,17.8336987272,17.8336987272 -50,0,23.5,41.03,21.93125,41.1175,24.6571428571,39.1842857143,23.39,38.59,21.29,54.816,10.8928571429,22.0685714286,23.218,40.7,24,45.53,22.64,42.536,12.4,756.05,76,2,33,8.2,3.8205624907,3.8205624907 -50,0,23.4266666667,40.9633333333,21.89,41.2,24.7,39.254,23.39,38.56,21.2257142857,54.5285714286,10.354,24.416,23.29,40.7642857143,23.9633333333,45.59,22.6,42.5642857143,12.5333333333,756,74.6666666667,2,35.3333333333,8.0666666667,37.9738237127,37.9738237127 -50,0,23.4633333333,40.9666666667,21.87,41.2,24.7,39.29,23.39,38.5,21.254,54.32,10.0685714286,25.8528571429,23.29,40.656,23.89,45.59,22.64,42.67,12.6666666667,755.95,73.3333333333,2,37.6666666667,7.9333333333,41.8039920158,41.8039920158 -50,0,23.39,40.9,21.79,41.2,24.7,39.29,23.39,38.5,21.2385714286,54.0857142857,9.696,27.896,23.29,40.6842857143,23.89,45.4,22.6571428571,42.7642857143,12.8,755.9,72,2,40,7.8,18.9076905139,18.9076905139 -40,0,23.39,40.9,21.754,41.2,24.7,39.29,23.3233333333,38.4333333333,21.236,53.918,9.3257142857,30.2071428571,23.29,40.678,23.89,45.3266666667,22.6,42.79,12.2166666667,755.8333333333,74.3333333333,2,37.1666666667,7.6833333333,22.4102655658,22.4102655658 -60,0,23.39,40.9,21.7,41.2771428571,24.7,39.29,23.39,38.4,21.2,53.7257142857,9.06,33.2,23.29,40.5257142857,23.89,45.1633333333,22.6,42.79,11.6333333333,755.7666666667,76.6666666667,2,34.3333333333,7.5666666667,42.2548616654,42.2548616654 -50,0,23.29,40.8266666667,21.7,41.356,24.7,39.29,23.3233333333,38.4,21.2,53.5,8.9242857143,34.2285714286,23.29,40.4,23.89,44.9633333333,22.7,42.94,11.05,755.7,79,2,31.5,7.45,42.4467153265,42.4467153265 -60,0,23.29,40.9,21.6285714286,41.3528571429,24.7,39.4,23.29,38.29,21.2,53.4271428571,8.818,34.834,23.2514285714,40.3371428571,23.89,44.76,22.6714285714,42.9714285714,10.4666666667,755.6333333333,81.3333333333,2,28.6666666667,7.3333333333,14.9783664383,14.9783664383 -60,10,23.29,40.79,21.6,41.4,24.736,39.312,23.29,38.29,21.2,53.272,8.8514285714,35.9071428571,23.272,40.356,23.89,44.7,22.66,42.978,9.8833333333,755.5666666667,83.6666666667,2,25.8333333333,7.2166666667,49.5740705985,49.5740705985 -60,0,23.29,40.79,21.5428571429,41.4571428571,24.76,39.3816666667,23.29,38.29,21.2,53.0957142857,8.89,37.036,23.2642857143,40.5357142857,23.8566666667,44.49,22.7,43.09,9.3,755.5,86,2,23,7.1,9.8702224088,9.8702224088 -50,0,23.29,40.79,21.5,41.576,24.754,39.356,23.2675,38.29,21.2,52.9,8.9057142857,37.7114285714,23.29,40.59,23.79,44.29,22.7,43.09,9.1166666667,755.45,86.5,2,23,6.9833333333,39.3720990745,39.3720990745 -60,0,23.29,40.79,21.4214285714,41.6528571429,24.7771428571,39.29,23.2,38.29,21.2,52.8242857143,8.978,38.336,23.29,40.554,23.84,44.2,22.7,43.1528571429,8.9333333333,755.4,87,2,23,6.8666666667,21.043076925,21.043076925 -50,0,23.23,40.73,21.39,41.7,24.79,39.29,23.2,38.29,21.2,52.7,8.9371428571,38.9285714286,23.29,40.59,23.8042857143,44.1057142857,22.675,43.2175,8.75,755.35,87.5,2,23,6.75,9.2090181424,9.2090181424 -50,0,23.23,40.6566666667,21.3328571429,41.7771428571,24.79,39.29,23.2,38.29,21.2,52.6214285714,8.934,39.874,23.29,40.6633333333,23.79,44.09,22.66,43.254,8.5666666667,755.3,88,2,23,6.6333333333,21.0768669029,21.0768669029 -60,0,23.29,40.76,21.29,41.856,24.79,39.29,23.2,38.29,21.2,52.46,9,40.7528571429,23.245,40.645,23.79,44.054,22.7,43.29,8.3833333333,755.25,88.5,2,23,6.5166666667,41.940478934,41.940478934 -40,0,23.23,40.6266666667,21.2642857143,41.9428571429,24.7,39.3083333333,23.2,38.29,21.1857142857,52.3371428571,9.06,41.358,23.26,40.6333333333,23.7514285714,43.9428571429,22.64,43.334,8.2,755.2,89,2,23,6.4,27.8173162602,27.8173162602 -60,0,23.2,40.59,21.2,41.94,24.7,39.4,23.2,38.29,21.16,52.272,9.176,41.612,23.26,40.56,23.736,43.834,22.7,43.4,8.3666666667,755.1,89.5,2,22.5,6.65,44.9014529353,44.9014529353 -40,10,23.2,40.59,21.2,42.0514285714,24.73,39.3266666667,23.2,38.29,21.1571428571,52.2,9.3,41.8333333333,23.26,40.5266666667,23.7642857143,43.79,22.7,43.42,8.5333333333,755,90,2,22,6.9,5.2788303932,5.2788303932 -60,0,23.2,40.59,21.18,42.112,24.79,39.4,23.2,38.4,21.1,52.09,9.345,42.045,23.2,40.4666666667,23.79,43.79,22.7,43.5,8.7,754.9,90.5,2,21.5,7.15,39.9906169157,39.9906169157 -60,0,23.2,40.59,21.1,42.2257142857,24.7,39.3266666667,23.2,38.4,21.1142857143,51.9985714286,9.5,42,23.2,40.53,23.7128571429,43.7771428571,22.7,43.5,8.8666666667,754.8,91,2,21,7.4,24.5210273773,24.5210273773 -50,0,23.2,40.59,21.1,42.29,24.76,39.4,23.1666666667,38.4,21.2,51.9,9.5666666667,41.9333333333,23.2,40.59,23.7,43.718,22.7,43.5514285714,9.0333333333,754.7,91.5,2,20.5,7.65,48.5614388948,48.5614388948 -60,0,23.1,40.59,21.0428571429,42.29,24.79,39.3633333333,23.1666666667,38.4,21.1714285714,51.8214285714,9.7266666667,41.9666666667,23.26,40.56,23.7,43.7642857143,22.7,43.59,9.2,754.6,92,2,20,7.9,36.5469526965,36.5469526965 -50,0,23.1,40.59,21,42.29,24.79,39.29,23.1,38.4333333333,21.2,51.7,9.8,41.8266666667,23.2,40.5,23.7,43.7,22.7,43.59,9.3333333333,754.5,91.5,1.8333333333,20,7.9666666667,2.3865605472,2.3865605472 -60,0,23.1,40.59,21,42.3685714286,24.79,39.3633333333,23.1666666667,38.5,21.1428571429,51.5928571429,9.8,41.8633333333,23.2,40.53,23.7,43.7771428571,22.7,43.7,9.4666666667,754.4,91,1.6666666667,20,8.0333333333,24.7116041603,24.7116041603 -50,0,23.1,40.59,21,42.5,24.79,39.3633333333,23.1,38.5,21.16,51.48,9.86,42.0633333333,23.2,40.59,23.7,43.772,22.7,43.7,9.6,754.3,90.5,1.5,20,8.1,17.5547700957,17.5547700957 -50,0,23.1,40.59,20.9842857143,42.5,24.79,39.29,23.1,38.5,21.2,51.38625,9.89,42.5,23.2,40.6266666667,23.7,43.7385714286,22.7,43.7,9.7333333333,754.2,90,1.3333333333,20,8.1666666667,47.2754408256,47.2754408256 -40,0,23.1,40.59,20.9175,42.53375,24.79,39.29,23.1,38.59,21.1285714286,51.29,9.9633333333,42.4333333333,23.2,40.7,23.64,43.634,22.7,43.7,9.8666666667,754.1,89.5,1.1666666667,20,8.2333333333,0.8998528938,0.8998528938 -80,0,23.1,40.59,20.89,42.59,24.7,39.3633333333,23.1,38.53,21.16,51.2,10,42.4333333333,23.2,40.7,23.6285714286,43.6214285714,22.7,43.754,10,754,89,1,20,8.3,37.5602097483,37.5602097483 -70,0,23.1,40.7966666667,20.89,42.7257142857,24.7,39.29,23.1,38.56,21.1571428571,50.6242857143,10,42.56,23.2,40.6266666667,23.68,43.678,22.7,43.84,10.0333333333,753.9333333333,88.8333333333,1,20.1666666667,8.2833333333,17.7830639761,17.7830639761 -60,0,23.1666666667,41.23,20.89,43.334,24.6666666667,39.1333333333,23.1,38.56,21.218,49.56,10.1,42.7,23.2675,40.59,23.6,43.6685714286,22.7,43.834,10.0666666667,753.8666666667,88.6666666667,1,20.3333333333,8.2666666667,26.1300535291,26.1300535291 -50,0,23.1,41.29,20.89,43.5842857143,24.6,39,23.1,38.7,21.29,48.8242857143,10.16,42.76,23.2,40.59,23.6,43.736,22.7,43.79,10.1,753.8,88.5,1,20.5,8.25,21.332543029,21.332543029 -70,10,23.2,41.29,20.89,43.656,24.5,38.8633333333,23.1,38.8266666667,21.39,48.356,10.3,42.9,23.2,40.6266666667,23.6,43.79,22.7,43.79,10.1333333333,753.7333333333,88.3333333333,1,20.6666666667,8.2333333333,37.9249779042,37.9249779042 -60,0,23.2,41.29,20.89,43.7,24.5,38.73,23.1,38.9666666667,21.39,48.2128571429,10.36,42.7666666667,23.2,40.8333333333,23.6,43.856,22.7,43.8842857143,10.1666666667,753.6666666667,88.1666666667,1,20.8333333333,8.2166666667,40.28618671,40.28618671 -60,0,23.2,41.29,20.89,43.79,24.39,38.56,23.0333333333,38.9633333333,21.39,48.278,10.5333333333,42.76,23.2,41,23.6,43.9285714286,22.7,43.98,10.2,753.6,88,1,21,8.2,13.6343888938,13.6343888938 -130,0,23.2,41.3633333333,20.89,43.8842857143,24.39,38.5,23.0333333333,39.03,21.3614285714,48.8185714286,10.66,42.7,23.2675,41.575,23.6,44.09,22.7,43.8214285714,10.3,753.5333333333,87.3333333333,1,21.6666666667,8.1833333333,5.4326496203,5.4326496203 -60,0,23.2,41.5,20.89,44,24.445,38.5,23,39.09,21.29,49.32,10.83,42.2233333333,23.29,41.5,23.6,44.0242857143,22.7,43.7,10.4,753.4666666667,86.6666666667,1,22.3333333333,8.1666666667,0.6849320722,0.6849320722 -70,0,23.2,41.595,20.89,44.2257142857,24.39,38.4,23,39.1633333333,21.3471428571,48.5342857143,10.9975,41.815,23.29,40.99,23.6,43.86,22.7,43.5928571429,10.5,753.4,86,1,23,8.15,46.7324928031,46.7324928031 -50,0,23.2,41.7,20.89,44.4,24.39,38.4,23,39.29,21.456,48.016,11.16,41.4633333333,23.23,40.5966666667,23.6,43.6685714286,22.7,43.5,10.6,753.3333333333,85.3333333333,1,23.6666666667,8.1333333333,46.9403153169,46.9403153169 -50,0,23.2,41.7,20.9842857143,44.4,24.4633333333,38.4666666667,23.0666666667,39.3633333333,21.5,47.7957142857,11.4266666667,41.26,23.2,40.26,23.5,43.4,22.6875,43.47375,10.7,753.2666666667,84.6666666667,1,24.3333333333,8.1166666667,29.9381300574,29.9381300574 -50,0,23.2,41.7,21,44.4,24.39,38.4666666667,23,39.29,21.5,47.5,11.7,41.2,23.2,40.0666666667,23.5,43.28125,22.6,43.29,10.8,753.2,84,1,25,8.1,8.0791119835,8.0791119835 -50,0,23.2,41.7,21.0285714286,44.3528571429,24.39,38.5,23.0666666667,39.43,21.5142857143,47.3385714286,12.2333333333,41.0266666667,23.2,39.9666666667,23.4842857143,43.0785714286,22.6,43.2,10.9666666667,753.1333333333,83.5,1.3333333333,25.1666666667,8.1833333333,47.1642716671,47.1642716671 -50,0,23.26,41.76,21.14,44.2,24.39,38.5,23.0333333333,39.4333333333,21.6,47.16,12.7,39.8333333333,23.2,39.8266666667,23.412,42.9,22.6142857143,43.1528571429,11.1333333333,753.0666666667,83,1.6666666667,25.3333333333,8.2666666667,13.7206243002,13.7206243002 -50,0,23.2,41.73,21.2,44.1371428571,24.39,38.5,23.0333333333,39.5,21.6,46.9714285714,13.2933333333,38.4566666667,23.2,39.6633333333,23.5,42.9428571429,22.64,43.116,11.3,753,82.5,2,25.5,8.35,27.1136733936,27.1136733936 -60,0,23.2,41.79,21.2,44.09,24.39,38.5,23.0666666667,39.59,21.6,47.134,13.5666666667,36.3233333333,23.2,39.53,23.39,42.79,22.6,42.9571428571,11.4666666667,752.9333333333,82,2.3333333333,25.6666666667,8.4333333333,26.6938725603,26.6938725603 -60,10,23.29,41.9,21.2257142857,44.1471428571,24.39,38.56,23.0666666667,39.59,21.6571428571,47.7685714286,13.9,32.9333333333,23.2,39.4666666667,23.39,42.7385714286,22.6,42.8755555556,11.6333333333,752.8666666667,81.5,2.6666666667,25.8333333333,8.5166666667,27.6198518812,27.6198518812 -50,0,23.29,41.9666666667,21.33,44.156,24.3233333333,38.56,23.0666666667,39.7,21.7,48.06,14.4333333333,30.86,23.2,39.3266666667,23.37,42.7,22.6,42.79,11.8,752.8,81,3,26,8.6,41.5418638499,41.5418638499 -70,0,23.26,41.9666666667,21.4528571429,44.0242857143,24.3233333333,38.59,23.0666666667,39.76,21.7,47.5928571429,15.1,28.76,23.1,39.26,23.3614285714,42.6214285714,22.6,42.65,12.0166666667,752.75,80.3333333333,3.1666666667,26,8.7,13.9338513603,13.9338513603 -70,0,23.26,41.9666666667,21.58,43.816,24.39,38.59,23.1,39.79,21.6,46.82,15.6333333333,26.3666666667,23.1,39.1266666667,23.29,42.59,22.6,42.572,12.2333333333,752.7,79.6666666667,3.3333333333,26,8.8,41.5759390453,41.5759390453 -80,0,23.2,41.9,21.7257142857,43.6685714286,24.39,38.59,23.1,39.79,21.5428571429,46.4971428571,16.13,22.7,23.1,39.06,23.29,42.6057142857,22.6,42.4285714286,12.45,752.65,79,3.5,26,8.9,24.023359234,24.023359234 -50,0,23.2,41.9,22.08,43.21,24.39,38.59,23.1,39.95,21.478,46.378,16.7233333333,19.9666666667,23.1,39,23.29,42.996,22.6,42.29,12.6666666667,752.6,78.3333333333,3.6666666667,26,9,19.0416893689,19.0416893689 -50,0,23.29,42.2666666667,22.51,42.7371428571,24.39,38.59,23.1,40.03,21.39,46.3214285714,17.5233333333,14.7966666667,23.1,38.9,23.29,43.3528571429,22.6285714286,42.27,12.8833333333,752.55,77.6666666667,3.8333333333,26,9.1,28.0810888275,28.0810888275 -50,0,23.29,42.5266666667,22.974,42.238,24.39,38.59,23.1666666667,40.09,21.39,46.5,18.2633333333,11.19,23.1,38.9,23.29,43.4,22.64,42.236,13.1,752.5,77,4,26,9.2,27.590410749,27.590410749 -40,0,23.29,42.73,23.50875,41.6175,24.39,38.7,23.2,40.4,21.3275,46.4375,18.6966666667,6.69,23.1,38.8633333333,23.29,43.3371428571,22.6,42.1685714286,13.4333333333,752.4333333333,75.6666666667,4,26.1666666667,9.25,7.5911353226,7.5911353226 -90,0,23.29,42.79,23.8328571429,41.35,24.39,38.76,23.26,40.4666666667,21.29,46.3842857143,19.0966666667,4.83,23.0333333333,38.73,23.29,43.236,22.66,42.156,13.7666666667,752.3666666667,74.3333333333,4,26.3333333333,9.3,34.264142043,34.264142043 -60,0,23.39,42.9,23.6,41.036,24.29,38.845,23.29,40.4,21.236,46.236,19.26,4.0666666667,23,38.645,23.2642857143,43.1685714286,22.6,41.9557142857,14.1,752.3,73,4,26.5,9.35,44.5068341098,44.5068341098 -80,0,23.39,42.9,23.5428571429,40.8257142857,24.29,38.9666666667,23.29,40.3333333333,21.2385714286,46.3428571429,19.05,3.5475,23,38.59,23.254,43.156,22.6,41.834,14.4333333333,752.2333333333,71.6666666667,4,26.6666666667,9.4,8.8501496823,8.8501496823 -70,0,23.39,42.495,23.396,40.63,24.23,38.9,23.29,40.2666666667,21.2,46.4,18.86,3.6566666667,23,38.53,23.2,43.1842857143,22.6285714286,41.7514285714,14.7666666667,752.1666666667,70.3333333333,4,26.8333333333,9.45,17.1147047426,17.1147047426 -60,0,23.3566666667,42.23,23.14,41.076,24.1,38.8175,23.29,40.2,21.2,46.4857142857,18.1175,4.3925,23,38.5,23.2,43.2,22.6,41.59,15.1,752.1,69,4,27,9.5,45.389319188,45.389319188 -40,0,23.29,42.49,23.0333333333,41.5266666667,24.0333333333,38.9,23.2128571429,40.1685714286,21.2,46.518,17.3933333333,6.4333333333,22.9266666667,38.5,23.2,43.2,22.6285714286,41.57,15.2166666667,752.0166666667,68.6666666667,4.3333333333,29.1666666667,9.5333333333,47.8639520705,47.8639520705 -60,0,23.29,42.53,22.79,42.0266666667,23.79,39,23.2,40.2,21.2,46.59,17.2,8,22.89,38.5,23.2,43.254,22.6,41.48,15.3333333333,751.9333333333,68.3333333333,4.6666666667,31.3333333333,9.5666666667,15.6188280904,15.6188280904 -50,0,23.29,42.59,22.8566666667,42.9666666667,23.8566666667,39.06,23.2,40.29,21.1,46.554,17.26,7.66,22.89,38.5,23.2,43.26,22.6,41.4,15.45,751.85,68,5,33.5,9.6,39.5408645971,39.5408645971 -50,0,23.29,42.6633333333,22.96,42.1933333333,23.89,39.09,23.2,40.3266666667,21.1285714286,46.5514285714,18.16,7.4266666667,22.89,38.5,23.2,43.2,22.6,41.4,15.5666666667,751.7666666667,67.6666666667,5.3333333333,35.6666666667,9.6333333333,45.3518407536,45.3518407536 -90,0,23.29,42.59,23.1666666667,41.4666666667,23.7633333333,39.1633333333,23.2,40.3266666667,21.12,46.59,19.0333333333,4.3,22.89,38.5,23.2,43.2,22.6,41.3371428571,15.6833333333,751.6833333333,67.3333333333,5.6666666667,37.8333333333,9.6666666667,28.4443768556,28.4443768556 -100,0,23.2,42.4333333333,23.0666666667,41,23.6,39.36,23.2,40.39,21.2,46.59,19.5666666667,2.8333333333,22.89,38.5,23.2,43.26,22.6,41.29,15.8,751.6,67,6,40,9.7,10.7810286572,10.7810286572 -80,0,23.2,42.6333333333,23.1333333333,41,23.6,39.5,23.2,41.13,21.16,46.21,19.6333333333,1.1666666667,22.89,38.4333333333,23.1,43.1333333333,22.6,41.1975,15.8666666667,751.55,67,6.1666666667,38.1666666667,9.75,0.5894942675,0.5894942675 -60,0,23.2,42.6633333333,23.3233333333,40.6566666667,23.73,39.86,23.29,41.59,21.1142857143,45.6842857143,19.4266666667,1,22.89,38.1633333333,23.1,42.7475,22.6,40.8971428571,15.9333333333,751.5,67,6.3333333333,36.3333333333,9.8,1.5906495508,1.5906495508 -70,0,23.2,42.53,23.4633333333,40.6566666667,23.8566666667,40.06,23.29,41.53,21.18,45.316,19.8333333333,1,22.89,37.9633333333,23.1,42.4633333333,22.6,40.656,16,751.45,67,6.5,34.5,9.85,16.3091073977,16.3091073977 -50,0,23.2,42.4666666667,23.6,40.1333333333,23.9266666667,40.09,23.29,41.2233333333,21.1,45.1214285714,20.26,1,22.89,37.8633333333,23.1,42.29,22.6,40.5128571429,16.0666666667,751.4,67,6.6666666667,32.6666666667,9.9,11.7094466463,11.7094466463 -60,0,23.2,42.3266666667,23.5333333333,39.9333333333,24,40.09,23.3566666667,41.03,21.1,45,20.0666666667,1,22.8233333333,37.73,23.1,42.23,22.62,40.518,16.1333333333,751.35,67,6.8333333333,30.8333333333,9.95,10.4941755882,10.4941755882 -50,0,23.2,42.2,23.5,39.9,24,39.9666666667,23.39,40.8633333333,21.1,44.9428571429,19.39,1,22.8233333333,37.6266666667,23.1,42.09,22.6285714286,40.5257142857,16.2,751.3,67,7,29,10,23.9005965064,23.9005965064 -50,0,23.2,42.1266666667,23.5666666667,39.7666666667,24.0666666667,39.9,23.3233333333,40.6566666667,21.1,44.96,19.8633333333,1,22.89,37.6266666667,23.1,42.03,22.6,40.29,16.2,751.2,65.6666666667,6.8333333333,29,9.6833333333,3.3313671476,3.3313671476 -50,0,23.2,42.09,23.7,39.43,24.1,39.79,23.34,40.5,21.1,44.9285714286,20.4633333333,1,22.8566666667,37.56,23.1,42,22.6,40.2771428571,16.2,751.1,64.3333333333,6.6666666667,29,9.3666666667,49.9226237182,49.9226237182 -40,0,23.2,42.09,23.7,39.23,24.1,39.73,23.39,40.3633333333,21.16,44.9,20.5966666667,1,22.79,37.5,23.0333333333,41.9333333333,22.6,40.236,16.2,751,63,6.5,29,9.05,49.4923095801,49.4923095801 -80,0,23.2,42.06,23.84,38.95,24.1,39.6633333333,23.39,40.29,21.1,44.8371428571,20.96,1,22.79,37.4,23,41.79,22.6,40.1214285714,16.2,750.9,61.6666666667,6.3333333333,29,8.7333333333,17.435519502,17.435519502 -70,0,23.2,42.06,24,38.7233333333,24.125,39.5225,23.39,40.09,21.1,44.772,21.22,1,22.79,37.4,23.0666666667,41.99,22.6,40.09,16.2,750.8,60.3333333333,6.1666666667,29,8.4166666667,29.7793747275,29.7793747275 -90,0,23.2,41.9666666667,24,38.59,24.2,39.5,23.39,40.03,21.1,44.5957142857,21.3266666667,1,22.8566666667,37.4,23.1,42.2666666667,22.6,40.0385714286,16.2,750.7,59,6,29,8.1,11.7579862126,11.7579862126 -80,0,23.2,41.9,23.9633333333,38.4666666667,24.2,39.5,23.39,40,21.1,44.356,21.1933333333,1,22.79,37.29,23.1666666667,42.4666666667,22.6,39.98,16.3666666667,750.6166666667,58.6666666667,6.3333333333,30.8333333333,8.1833333333,27.1570413141,27.1570413141 -90,0,23.2,41.8266666667,23.89,38.4666666667,24.2,39.4333333333,23.39,39.9333333333,21.1,44.2128571429,20.9266666667,1,22.79,37.23,23.23,42.6566666667,22.6,39.8685714286,16.5333333333,750.5333333333,58.3333333333,6.6666666667,32.6666666667,8.2666666667,0.1540773432,0.1540773432 -80,0,23.2,41.76,23.9266666667,38.3633333333,24.23,39.4333333333,23.39,39.79,21.1,44.2675,20.79,1,22.79,37.1633333333,23.29,42.73,22.6,39.754,16.7,750.45,58,7,34.5,8.35,30.0502024824,30.0502024824 -90,0,23.2,41.7,24,38.23,24.29,39.5,23.39,39.73,21.1,44.236,20.8566666667,1,22.79,37.03,23.39,42.6333333333,22.6,39.6371428571,16.8666666667,750.3666666667,57.6666666667,7.3333333333,36.3333333333,8.4333333333,11.1804122804,11.1804122804 -90,0,23.2,41.6633333333,24,38.0266666667,24.29,39.4,23.39,39.6633333333,21.1714285714,44.2,20.79,1,22.79,36.8633333333,23.39,42.2266666667,22.6,39.536,17.0333333333,750.2833333333,57.3333333333,7.6666666667,38.1666666667,8.5166666667,4.6644610469,4.6644610469 -90,0,23.2,41.53,24.0666666667,37.9,24.29,39.4,23.39,39.59,21.1,43.856,20.79,1,22.79,36.79,23.5,42.06,22.6,39.4285714286,17.2,750.2,57,8,40,8.6,27.8021165868,27.8021165868 -80,0,23.2,41.4666666667,24.1,37.7233333333,24.3233333333,39.26,23.5,39.56,21.1428571429,43.6242857143,21.1333333333,1,22.79,36.6633333333,23.5666666667,41.86,22.6,39.254,17.25,750.1333333333,56.8333333333,8,38.1666666667,8.6,25.6310661207,25.6310661207 -80,0,23.26,41.4,24.1666666667,37.53,24.3233333333,39.2,23.5,39.4333333333,21.1,43.5,21.2,1,22.79,36.53,23.6,41.56,22.6,39.1242857143,17.3,750.0666666667,56.6666666667,8,36.3333333333,8.6,38.345327205,38.345327205 -80,0,23.29,41.1633333333,24.1666666667,37.3633333333,24.3233333333,39.2,23.5,39.29,21.1714285714,43.4714285714,21.1,1,22.79,36.26,23.6666666667,41.36,22.6,38.98,17.35,750,56.5,8,34.5,8.6,21.4946685359,21.4946685359 -80,0,23.29,41.03,24.1,37.29,24.39,39.1266666667,23.5,39.23,21.16,43.174,21.0333333333,1,22.79,36.1266666667,23.745,41.2,22.6,38.8214285714,17.4,749.9333333333,56.3333333333,8,32.6666666667,8.6,12.3053612653,12.3053612653 -80,0,23.29,41.1633333333,24.1,37.2,24.39,39.09,23.5,39.09,21.1428571429,42.9957142857,20.7633333333,1,22.79,36.09,23.79,41.3266666667,22.6,38.7,17.45,749.8666666667,56.1666666667,8,30.8333333333,8.6,39.3865466234,39.3865466234 -90,0,23.3566666667,41.03,24.1,37.1266666667,24.3233333333,39.03,23.5,39.09,21.12,42.772,20.8233333333,1,22.79,36.03,23.79,41.4666666667,22.6,38.5928571429,17.5,749.8,56,8,29,8.6,48.3036605758,48.3036605758 -90,0,23.39,40.9666666667,24.1,37.09,24.29,38.9,23.5,39.06,21.1571428571,42.7,20.86,1,22.79,35.9,23.89,41.6266666667,22.6,38.5,17.55,749.7666666667,55.3333333333,7.8333333333,30.8333333333,8.45,23.154509149,23.154509149 -90,0,23.39,40.9,24.1,37.03,24.29,38.8266666667,23.5,39,21.2,42.736,21,1,22.79,35.8266666667,23.89,41.6266666667,22.6,38.4285714286,17.6,749.7333333333,54.6666666667,7.6666666667,32.6666666667,8.3,22.5474790321,22.5474790321 -80,0,23.39,40.79,24.1,36.9,24.39,38.7,23.5,38.9,21.1571428571,42.5257142857,20.6666666667,1,22.79,35.76,24,41.4,22.6,38.29,17.65,749.7,54,7.5,34.5,8.15,36.8554295041,36.8554295041 -80,0,23.39,40.73,24.1,36.8266666667,24.39,38.6266666667,23.5,38.79,21.2,42.272,20.3333333333,1,22.79,35.7,24.0666666667,41.6,22.6,38.2,17.7,749.6666666667,53.3333333333,7.3333333333,36.3333333333,8,25.9055586299,25.9055586299 -70,0,23.5,40.6633333333,24.1,36.79,24.39,38.5,23.5,38.79,21.1714285714,42.1528571429,20.1,1,22.79,35.59,24.1,41.1233333333,22.6,38.1371428571,17.75,749.6333333333,52.6666666667,7.1666666667,38.1666666667,7.85,2.4295054493,2.4295054493 -70,0,23.5,40.53,24.1,36.7225,24.39,38.5,23.5,38.7,21.16,42.156,20.1,1,22.79,35.59,24.0333333333,40.3966666667,22.6,38.072,17.8,749.6,52,7,40,7.7,43.1652808678,43.1652808678 -50,0,23.5,40.3633333333,24.0333333333,36.7,24.39,38.4,23.5,38.6266666667,21.1,41.88,19.4666666667,1,22.79,35.45,24,39.8333333333,22.6,37.9714285714,17.5833333333,749.5333333333,52.3333333333,7,40,7.6,5.6627591839,5.6627591839 -70,0,23.5,40.23,24,36.7,24.39,38.29,23.39,38.5,21.1,41.7,19.2,1,22.73,35.4333333333,24,39.6266666667,22.56,37.856,17.3666666667,749.4666666667,52.6666666667,7,40,7.5,3.920604859,3.920604859 -140,0,23.5,40.145,23.9266666667,36.76,24.39,38.29,23.39,38.5,21.1,41.6685714286,18.9266666667,1,22.79,35.4333333333,23.9633333333,39.4666666667,22.5714285714,37.7385714286,17.15,749.4,53,7,40,7.4,8.8049308513,8.8049308513 -240,0,23.5,40.7266666667,23.89,36.8266666667,24.3566666667,38.2,23.39,38.4,21.1,41.59,18.4966666667,1,22.76,35.4,23.89,39.3266666667,22.52,37.678,16.9333333333,749.3333333333,53.3333333333,7,40,7.3,49.4040495134,49.4040495134 -60,0,23.5,43.86,23.8233333333,36.9666666667,24.29,38.2,23.39,38.4,21.0571428571,41.9342857143,17.8966666667,1.1933333333,22.76,35.4666666667,23.8566666667,39.2,22.5285714286,37.6214285714,16.7166666667,749.2666666667,53.6666666667,7,40,7.2,45.9094427759,45.9094427759 -70,0,23.6,43.4666666667,23.76,37.9266666667,24.29,38.23,23.39,38.53,21.08,42.774,16.6233333333,5.4666666667,22.79,35.6566666667,23.79,39.3333333333,22.5,37.834,16.5,749.2,54,7,40,7.1,21.9381773029,21.9381773029 -90,0,23.6,43,23.68,38.458,24.29,38.29,23.39,38.6633333333,21,43.4228571429,16.0966666667,7.8,22.73,35.93,23.79,39.754,22.5,38.0528571429,16.2833333333,749.15,55.3333333333,7,38,7.2166666667,15.0003916118,15.0003916118 -100,0,23.6,42.56,23.58,38.674,24.29,38.5666666667,23.3566666667,38.8266666667,21,44.08,15.5,10.9266666667,22.7,36.1566666667,23.79,40.976,22.5,38.296,16.0666666667,749.1,56.6666666667,7,36,7.3333333333,19.1404518904,19.1404518904 -110,0,23.6,42.4333333333,23.5,38.8971428571,24.29,38.76,23.3566666667,38.9666666667,21,44.6242857143,15.2266666667,13.6666666667,22.7,36.49,23.8233333333,41.6,22.5,38.5,15.85,749.05,58,7,34,7.45,8.6423790897,8.6423790897 -100,0,23.6,42.26,23.5,39.2,24.29,38.8266666667,23.3233333333,39.23,21,45.256,14.9333333333,18.9,22.7,36.86,23.89,42.2666666667,22.4633333333,38.8266666667,15.6333333333,749,59.3333333333,7,32,7.5666666667,9.6349602449,9.6349602449 -240,0,23.6,42.2,23.4371428571,39.34,24.29,38.9,23.39,39.3633333333,21,45.94,14.6666666667,22.4266666667,22.7,37.1333333333,23.9266666667,42.86,22.456,39.158,15.4166666667,748.95,60.6666666667,7,30,7.6833333333,47.2815484973,47.2815484973 -130,0,23.6,42.53,23.33,39.518,24.29,39,23.3233333333,39.5666666667,20.89,46.7425,14.5333333333,27.6,22.7,37.4633333333,24,43.2385714286,22.456,39.456,15.2,748.9,62,7,28,7.8,40.3374858084,40.3374858084 -150,10,23.6,42.6633333333,23.29,39.8971428571,24.29,39.06,23.3233333333,39.8333333333,20.89,47.714,14.6,28.7266666667,22.7,37.7233333333,24.1,43.88375,22.5,39.7257142857,14.75,748.9,66.8333333333,6.6666666667,27.1666666667,8.3333333333,17.8914873395,17.8914873395 -120,10,23.6,43.09,23.29,40.44,24.3233333333,39.1266666667,23.3566666667,40.0666666667,21.0985714286,55.4685714286,14.4633333333,30.1566666667,22.76,38.0666666667,24.2,44.134,22.5,40.036,14.3,748.9,71.6666666667,6.3333333333,26.3333333333,8.8666666667,29.9632302369,29.9632302369 -210,30,23.6666666667,43.2233333333,23.2128571429,40.6271428571,24.39,39.26,23.29,40.4,21.2,56.256,14.33,31.2966666667,22.76,38.7333333333,24.2514285714,44.5928571429,22.5,40.3557142857,13.85,748.9,76.5,6,25.5,9.4,46.7938696616,46.7938696616 -330,20,23.7,43.29,23.18,40.916,24.39,39.4,23.4266666667,41.2633333333,21.1285714286,53.0828571429,14.19,32.5566666667,22.79,39.5966666667,24.31,45.116,22.5,40.5,13.4,748.9,81.3333333333,5.6666666667,24.6666666667,9.9333333333,14.0829363721,14.0829363721 -130,30,23.7,43.29,23.1,41.35,24.39,39.4666666667,23.575,41.9925,21.1,51.09,14.19,33.1633333333,22.8566666667,40.0633333333,24.39,45.5928571429,22.5,40.6814285714,12.95,748.9,86.1666666667,5.3333333333,23.8333333333,10.4666666667,29.0305182803,29.0305182803 -130,30,23.6666666667,43.4,23,41.736,24.39,39.6266666667,23.5333333333,42.1933333333,21.1285714286,51.4228571429,14.16,33.9266666667,22.89,40.4333333333,24.5,46.2,22.5,41,12.5,748.9,91,5,23,11,6.4744671574,6.4744671574 -150,20,23.6666666667,43.5266666667,22.9371428571,41.9414285714,24.39,39.76,23.6,42.53,21.1,51.938,13.96,34.7333333333,22.89,40.6333333333,24.5142857143,46.34,22.5,41.1528571429,12.4833333333,748.8333333333,91.1666666667,4.8333333333,23.8333333333,11.0166666667,45.555580419,45.555580419 -140,20,23.6333333333,43.6266666667,22.87,42.054,24.39,39.8266666667,23.6666666667,42.8633333333,21.1,52.29,13.595,36.495,23,40.895,24.6,46.316,22.5,41.332,12.4666666667,748.7666666667,91.3333333333,4.6666666667,24.6666666667,11.0333333333,37.6046481775,37.6046481775 -160,30,23.6333333333,43.7,22.79,42.1942857143,24.39,39.9,23.7,42.76,21.1,52.2,13.3233333333,38.0266666667,23,41.1266666667,24.6,46.2,22.5,41.5257142857,12.45,748.7,91.5,4.5,25.5,11.05,9.595779248,9.595779248 -140,20,23.6666666667,43.8633333333,22.754,42.44,24.39,39.9,23.7,42.7,21.1,52.1371428571,13.13,39.0266666667,23,41.26,24.6,46.2,22.43125,41.55625,12.4333333333,748.6333333333,91.6666666667,4.3333333333,26.3333333333,11.0666666667,40.3731040191,40.3731040191 -140,20,23.675,43.8725,22.7,42.5514285714,24.39,40,23.73,42.7,21.1,52.072,12.8233333333,39.73,23,41.4,24.6428571429,46.1114285714,22.39,41.59,12.4166666667,748.5666666667,91.8333333333,4.1666666667,27.1666666667,11.0833333333,25.4775489797,25.4775489797 -160,20,23.7,43.9,22.68,42.634,24.39,40,23.79,42.6266666667,21.1,52,12.43,39.6566666667,23,41.4,24.66,45.94,22.39,41.4557142857,12.4,748.5,92,4,28,11.1,10.3324693977,10.3324693977 -140,0,23.7,43.7,22.5875,42.60375,24.39,40.09,23.79,42.4666666667,21.1,51.856,12,39.8333333333,23,41.26,24.7,45.7642857143,22.39,41.316,12.3,748.4666666667,92,4.1666666667,28,11,3.5716748214,3.5716748214 -130,0,23.6333333333,43.7,22.5,42.7257142857,24.39,40.03,23.79,42.2666666667,21.1,51.65,11.6,39.6266666667,23,41.2,24.79,45.356,22.39,41.0957142857,12.2,748.4333333333,92,4.3333333333,28,10.9,45.2763773035,45.2763773035 -290,0,23.7,43.6633333333,22.456,42.79,24.39,40,23.79,41.93,21.1,51.516,11.2333333333,40.1666666667,23.0333333333,41.1633333333,24.8471428571,45.0371428571,22.33,40.79,12.1,748.4,92,4.5,28,10.8,37.4013761524,37.4013761524 -460,0,23.7,43.53,22.39,42.79,24.3233333333,39.9333333333,23.73,41.73,21.1,51.2957142857,11.0333333333,40.56,23.0333333333,41.03,24.89,44.61,22.3042857143,40.5414285714,12,748.3666666667,92,4.6666666667,28,10.7,38.0802473635,38.0802473635 -160,0,23.7,43.5,22.39,42.812,24.29,39.9666666667,23.7,41.43,21.06,51.014,10.86,41.7333333333,23,40.9666666667,24.89,44.1942857143,22.29,40.4,11.9,748.3333333333,92,4.8333333333,28,10.6,2.8707047459,2.8707047459 -100,10,23.7,43.4333333333,22.3185714286,42.9,24.29,39.9,23.7,41.1566666667,21.0857142857,50.9128571429,10.8,42.5933333333,23.0666666667,40.9666666667,24.89,43.754,22.29,40.3685714286,11.8,748.3,92,5,28,10.5,46.4453529683,46.4453529683 -110,0,23.6333333333,43.2,22.29,43,24.29,39.9,23.6666666667,40.93,21.1,50.736,10.69,43.5,23.0666666667,40.8633333333,24.89,43.6242857143,22.29,40.09,11.5166666667,748.3833333333,91.5,4.6666666667,30,10.1333333333,18.520025257,18.520025257 -90,0,23.7,43.1266666667,22.2385714286,42.9857142857,24.29,39.9,23.6,40.73,21.1,50.6528571429,10.63,44.0333333333,23.0666666667,41.0633333333,24.912,43.518,22.29,40.2671428571,11.2333333333,748.4666666667,91,4.3333333333,32,9.7666666667,33.8681433233,33.8681433233 -70,0,23.7,43.06,22.18,42.92,24.39,39.8633333333,23.6,40.56,21.1,50.7,10.5666666667,44.53,23.1,41.3633333333,25,43.6685714286,22.29,40.4,10.95,748.55,90.5,4,34,9.4,34.2449646327,34.2449646327 -60,0,23.6333333333,42.9333333333,22.1,43.0642857143,24.39,39.79,23.6,40.5,21.1,50.7,10.4266666667,44.53,23.1,41.3633333333,25,43.58,22.29,40.4971428571,10.6666666667,748.6333333333,90,3.6666666667,36,9.0333333333,32.0671307156,32.0671307156 -60,0,23.7,42.9,22.06,43.054,24.39,39.8633333333,23.6,40.5,21.1,50.754,10.1266666667,44.5966666667,23.1,41.3633333333,24.9057142857,44.0557142857,22.29,40.874,10.3833333333,748.7166666667,89.5,3.3333333333,38,8.6666666667,9.424464521,9.424464521 -50,0,23.7,42.8266666667,22,42.9714285714,24.39,39.8633333333,23.6,40.4333333333,21.1,50.79,9.9266666667,45.1233333333,23.1,41.43,24.89,44.394,22.29,41.1271428571,10.1,748.8,89,3,40,8.3,12.2240875498,12.2240875498 -60,0,23.7,42.7,21.934,43.076,24.5,39.9,23.5,40.4,21.1,50.79,9.7333333333,45.4666666667,23.1,41.59,24.89,44.7642857143,22.29,41.394,10.05,748.8166666667,89.5,2.8333333333,40,8.3333333333,32.0473681553,32.0473681553 -50,0,23.6333333333,42.5666666667,21.89,43.2257142857,24.5,39.9,23.5,40.29,21.075,50.7675,9.575,45.7725,23.1,41.59,24.89,45.134,22.3614285714,41.6214285714,10,748.8333333333,90,2.6666666667,40,8.3666666667,23.2501548016,23.2501548016 -60,0,23.6,42.4666666667,21.79,43.29,24.5,39.9,23.5,40.29,21.0857142857,50.8557142857,9.4266666667,46.5633333333,23.1,41.59,24.8328571429,44.9528571429,22.39,41.79,9.95,748.85,90.5,2.5,40,8.4,30.6678034831,30.6678034831 -40,0,23.6,42.3266666667,21.7771428571,43.3528571429,24.5,39.9,23.5,40.26,21.1,50.856,9.36,47.36,23.1,41.545,24.79,44.7,22.39,41.9414285714,9.9,748.8666666667,91,2.3333333333,40,8.4333333333,34.034862183,34.034862183 -50,0,23.6,42.2,21.7,43.46,24.5,39.845,23.4266666667,40.1266666667,21.0571428571,50.8528571429,9.2266666667,47.1,23.1,41.6633333333,24.77875,44.73375,22.39,42.018,9.85,748.8833333333,91.5,2.1666666667,40,8.4666666667,0.8159085526,0.8159085526 -50,0,23.6,42.1266666667,21.7,43.5,24.5,39.79,23.39,40.09,21.06,50.856,9.0666666667,46.9266666667,23.1,41.8266666667,24.7,44.8971428571,22.39,42.09,9.8,748.9,92,2,40,8.5,11.3571918337,11.3571918337 -50,0,23.6,42.045,21.6,43.5,24.5,39.79,23.39,40.09,21.0857142857,50.8214285714,8.9266666667,47.2,23.1,41.9,24.7,45.09,22.39,42.134,9.6333333333,748.9333333333,92.5,2.1666666667,40,8.4333333333,40.8129825606,40.8129825606 -60,0,23.6,42,21.5857142857,43.5514285714,24.5,39.79,23.39,40.06,21.1,50.812,8.5666666667,46.7266666667,23.2,41.9,24.7,45.1842857143,22.39,42.2,9.4666666667,748.9666666667,93,2.3333333333,40,8.3666666667,31.6159958951,31.6159958951 -50,0,23.6,41.9333333333,21.5,43.612,24.5,39.79,23.3233333333,40,21.0571428571,50.8214285714,8.4266666667,46.86,23.2,41.8266666667,24.68,45.218,22.39,42.254,9.3,749,93.5,2.5,40,8.3,40.2621533489,40.2621533489 -70,0,23.6,41.9,21.5,43.7,24.5,39.76,23.3233333333,40,21.1,50.79,8.16,46.7,23.2,41.6633333333,24.6,45.2257142857,22.39,42.29,9.1333333333,749.0333333333,94,2.6666666667,40,8.2333333333,30.1181941642,30.1181941642 -60,0,23.5333333333,41.8266666667,21.39,43.59,24.5,39.7,23.3233333333,39.9333333333,21.1,50.79,8.0333333333,46.9,23.2,41.53,24.5,45.334,22.456,42.4,8.9666666667,749.0666666667,94.5,2.8333333333,40,8.1666666667,12.3467973666,12.3467973666 -60,0,23.5666666667,41.76,21.3471428571,43.6528571429,24.6,39.7,23.29,39.9,21.1,50.772,7.9,47.4266666667,23.2,41.3633333333,24.5,45.3671428571,22.39,42.425,8.8,749.1,95,3,40,8.1,2.8577951482,2.8577951482 -50,0,23.5,41.7,21.33,43.7,24.6,39.7,23.29,39.8266666667,21.1,50.7,7.9,47.96,23.2,41.23,24.5,45.54,22.39,42.5128571429,8.7333333333,749.1166666667,95,3,38.1666666667,8.0333333333,40.1519182255,40.1519182255 -60,0,23.5,41.6633333333,21.2642857143,43.6685714286,24.6,39.7,23.29,39.79,21.1,50.79,7.7633333333,47.8633333333,23.2,41.1633333333,24.4214285714,45.5571428571,22.412,42.63,8.6666666667,749.1333333333,95,3,36.3333333333,7.9666666667,35.134571977,35.134571977 -40,0,23.5,41.59,21.23375,43.7,24.6,39.6266666667,23.29,39.79,21.1,50.7128571429,7.5633333333,47.6566666667,23.2,41.09,24.39,45.5,22.4214285714,42.7257142857,8.6,749.15,95,3,34.5,7.9,27.3934781202,27.3934781202 -50,0,23.4633333333,41.56,21.2,43.7,24.6,39.59,23.26,39.76,21.06,50.656,7.4666666667,47.53,23.2,40.9666666667,24.39,45.4271428571,22.39,42.79,8.5333333333,749.1666666667,95,3,32.6666666667,7.8333333333,7.7451176243,7.7451176243 -50,0,23.39,41.4333333333,21.1142857143,43.7385714286,24.6,39.59,23.2,39.6266666667,21.1,50.6685714286,7.26,47.39,23.2,40.8266666667,24.37,45.236,22.4371428571,42.8371428571,8.4666666667,749.1833333333,95,3,30.8333333333,7.7666666667,38.5812596185,38.5812596185 -40,0,23.39,41.4,21.08,43.7,24.6,39.56,23.2,39.59,21.1,50.59,7.09,47.3666666667,23.2,40.76,24.29,45.1528571429,22.5,42.9,8.4,749.2,95,3,29,7.7,33.5751444683,33.5751444683 -50,0,23.39,41.4,21,43.7,24.6,39.5,23.2,39.59,21.1,50.59,7.115,48.4,23.2,40.6266666667,24.29,45,22.4528571429,42.8814285714,8.25,749.1833333333,95.1666666667,2.8333333333,28.8333333333,7.5666666667,14.7249208298,14.7249208298 -50,0,23.39,41.29,21,43.7,24.5,39.5,23.2,39.7,21.1,50.536,7.2633333333,49.2333333333,23.1666666667,40.59,24.29,44.8,22.5,43,8.1,749.1666666667,95.3333333333,2.6666666667,28.6666666667,7.4333333333,6.1710074544,6.1710074544 -60,0,23.39,41.29,20.9842857143,43.7128571429,24.5666666667,39.5,23.2,39.79,21.1,50.5,7.3333333333,49.6333333333,23.1666666667,40.53,24.29,44.616,22.5,43,7.95,749.15,95.5,2.5,28.5,7.3,25.9259372018,25.9259372018 -50,0,23.29,41.2,20.89,43.79,24.5666666667,39.5,23.1333333333,39.8633333333,21.1,50.5,7.4666666667,50.16,23.2,40.5,24.29,44.3971428571,22.5,43.018,7.8,749.1333333333,95.6666666667,2.3333333333,28.3333333333,7.1666666667,13.4233198361,13.4233198361 -60,0,23.29,41.2,20.89,43.79,24.5666666667,39.5,23.1,40,21.1,50.5385714286,7.56,50.3633333333,23.2,40.4333333333,24.2,44.09,22.5,43.09,7.65,749.1166666667,95.8333333333,2.1666666667,28.1666666667,7.0333333333,6.8118263735,6.8118263735 -50,0,23.29,41.2,20.85,43.754,24.6,39.4666666667,23.1,40.06,21.1,50.5,7.5,50.23,23.2,40.4,24.2,44.0242857143,22.5,43.134,7.5,749.1,96,2,28,6.9,34.1056651319,34.1056651319 -50,0,23.23,41.1266666667,20.79,43.7128571429,24.6,39.4,23.1,40.09,21.1,50.5,7.4,50.1333333333,23.2,40.3633333333,24.2,43.816,22.5,43.2,7.6,749.1166666667,96.1666666667,2,27.6666666667,7.0166666667,11.8259061361,11.8259061361 -50,0,23.2,41.09,20.772,43.754,24.6,39.4,23.1,40.09,21.1,50.5,7.4666666667,50.6,23.1333333333,40.23,24.2,43.7,22.5,43.2,7.7,749.1333333333,96.3333333333,2,27.3333333333,7.1333333333,18.4260664042,18.4260664042 -50,0,23.2,41.0225,20.7385714286,43.79,24.6,39.4,23.1,40.09,21.1,50.5,7.53,50.9,23.2,40.26,24.2,43.59,22.5,43.2,7.8,749.15,96.5,2,27,7.25,42.5422203261,42.5422203261 -60,0,23.2,41,20.7,43.79,24.6,39.4,23.1,40.1633333333,21.06,50.46,7.59,50.9,23.2,40.2,24.1166666667,43.545,22.5,43.29,7.9,749.1666666667,96.6666666667,2,26.6666666667,7.3666666667,47.1986179939,47.1986179939 -40,0,23.2,41,20.7,43.79,24.6,39.4,23,40.1266666667,21.1,50.4875,7.5,50.7966666667,23.2,40.2,24.1,43.46,22.5,43.3057142857,8,749.1833333333,96.8333333333,2,26.3333333333,7.4833333333,42.8385215811,42.8385215811 -50,0,23.1333333333,41,20.7,43.79,24.6,39.4,23.0666666667,40.26,21.1,50.4,7.3666666667,50.4633333333,23.2,40.2,24.1,43.4,22.5,43.4,8.1,749.2,97,2,26,7.6,28.4720921074,28.4720921074 -40,0,23.1,41,20.6,43.7,24.6,39.3266666667,23,40.2,21.1,50.4,7.2266666667,50.4266666667,23.2,40.156,24.08,43.294,22.5,43.4,8.0833333333,749.2333333333,97,2,25.3333333333,7.5833333333,22.1893795999,22.1893795999 -60,0,23.1,41,20.6,43.7,24.6,39.4,23,40.2,21.1,50.4,7.3666666667,50.9,23.1857142857,40.09,24.0333333333,43.0966666667,22.5,43.4,8.0666666667,749.2666666667,97,2,24.6666666667,7.5666666667,24.423628673,24.423628673 -40,0,23.1,41,20.6,43.7,24.5666666667,39.29,23,40.2,21.1,50.4,7.4,51,23.14,40.054,24,42.9142857143,22.5,43.4857142857,8.05,749.3,97,2,24,7.55,13.2567150635,13.2567150635 -60,0,23.1,41,20.5333333333,43.7,24.5,39.29,23,40.2,21.1,50.4,7.4,51.06,23.1714285714,40.0642857143,24,42.8685714286,22.5,43.5,8.0333333333,749.3333333333,97,2,23.3333333333,7.5333333333,1.4522633632,1.4522633632 -60,0,23.0333333333,40.9333333333,20.5,43.7,24.5,39.29,23,40.2,21.06,50.356,7.3666666667,51.06,23.16,40,24,42.754,22.5,43.5257142857,8.0166666667,749.3666666667,97,2,22.6666666667,7.5166666667,45.0141392997,45.0141392997 -60,0,23.0333333333,40.86,20.5666666667,43.7,24.5666666667,39.29,23,40.2,21.1,50.356,7.2725,50.825,23.1571428571,40.0385714286,24,42.6528571429,22.5,43.59,8,749.4,97,2,22,7.5,15.1087557315,15.1087557315 -60,0,23,40.79,20.5,43.7,24.6,39.29,22.9266666667,40.2,21.1,50.29,7.0633333333,50.3,23.16,40,24,42.616,22.5,43.59,8,749.4333333333,96.8333333333,2,22,7.4833333333,22.560165613,22.560165613 -50,0,23,40.8633333333,20.5,43.795,24.5333333333,39.29,22.9266666667,40.2,21.1,50.272,6.9666666667,50.2,23.2,39.8971428571,23.9214285714,42.4714285714,22.5,43.75875,8,749.4666666667,96.6666666667,2,22,7.4666666667,27.5631790049,27.5631790049 -60,0,23,40.9666666667,20.5,43.9,24.5,39.29,22.89,40.2,21.0714285714,50.2,6.9,50.2,23.1,39.656,23.89,42.2,22.5,43.79,8,749.5,96.5,2,22,7.45,37.238174188,37.238174188 -50,0,23,40.9,20.4633333333,43.9666666667,24.4266666667,39.23,22.89,40.1175,21.1,50.236,6.9,50.5,23.1,39.6528571429,23.89,41.9971428571,22.5,43.79,8,749.5333333333,96.3333333333,2,22,7.4333333333,5.531692435,5.531692435 -60,0,23,40.8633333333,20.39,43.9,24.39,39.2,22.89,40.09,21.1,50.2,6.8333333333,50.5,23.1,39.7,23.87,41.794,22.5,43.736,8,749.5666666667,96.1666666667,2,22,7.4166666667,22.968211968,22.968211968 -50,0,23,40.79,20.39,43.9,24.39,39.2,22.89,40.06,21.1,50.1371428571,6.73,50.1333333333,23.1,39.7642857143,23.8328571429,41.6114285714,22.5,43.79,8,749.6,96,2,22,7.4,23.1601446983,23.1601446983 -80,0,23,40.9566666667,20.39,43.9,24.3566666667,39.1333333333,22.89,40,21.1,50.09,6.59,50,23.1,39.754,23.79,41.334,22.5,43.856,7.9166666667,749.6666666667,96.1666666667,2,22,7.3333333333,33.4637409425,33.4637409425 -40,0,23,41.29,20.39,44.23,24.29,38.7266666667,22.8566666667,39.8633333333,21.1,50.09,6.56,50,23.1,39.7771428571,23.79,41.47,22.5,43.9,7.8333333333,749.7333333333,96.3333333333,2,22,7.2666666667,15.0557970046,15.0557970046 -50,0,23,41.2,20.3233333333,44.3633333333,24.15,38.345,22.79,39.79,21.1,50.09,6.5,50,23.1,39.79,23.79,41.59,22.5,44,7.75,749.8,96.5,2,22,7.2,43.6418087338,43.6418087338 -50,0,23,41.0666666667,20.39,44.29,24,38.09,22.79,39.79,21.1,50.0385714286,6.5,50.0666666667,23.1,39.8685714286,23.79,41.59,22.5,44,7.6666666667,749.8666666667,96.6666666667,2,22,7.1333333333,40.6312136562,40.6312136562 -60,0,23,40.845,20.39,44.23,24,37.9633333333,22.79,39.79,21.1,50,6.56,50.3333333333,23.1,39.96,23.79,41.736,22.5,44,7.5833333333,749.9333333333,96.8333333333,2,22,7.0666666667,38.9941818081,38.9941818081 -60,0,23,40.6633333333,20.39,44.06,23.89,37.86,22.79,39.7,21.1,50,6.6233333333,50.53,23.1,40.1128571429,23.7128571429,41.7385714286,22.5,44,7.5,750,97,2,22,7,48.8088086364,48.8088086364 -60,0,23,40.6633333333,20.39,43.9333333333,23.9633333333,38.06,22.79,39.7,21.04,49.79,6.7633333333,50.93,23.1666666667,40.63,23.7,41.714,22.5,43.9,7.5666666667,750.1,96.6666666667,1.8333333333,22,7.0166666667,9.1139393044,9.1139393044 -70,0,23,40.8266666667,20.5,43.9666666667,24,38.2,22.79,39.7,21.1,49.79,7.0633333333,51.5666666667,23.2,40.6542857143,23.6714285714,41.4657142857,22.5,43.7928571429,7.6333333333,750.2,96.3333333333,1.6666666667,22,7.0333333333,10.7106885291,10.7106885291 -60,0,23,40.9,20.5,43.9,24,38.26,22.79,39.7,21.06,49.736,7.3966666667,51.96,23.2,40.3214285714,23.6,41.09,22.5,43.678,7.7,750.3,96,1.5,22,7.05,0.0297207502,0.0297207502 -50,0,23,40.93,20.6,43.9,24.0333333333,38.3266666667,22.79,39.79,21.1,49.7,7.76,52.23,23.14,40.054,23.5571428571,40.9985714286,22.5,43.5257142857,7.7666666667,750.4,95.6666666667,1.3333333333,22,7.0666666667,31.8987619248,31.8987619248 -50,0,23,40.79,20.6666666667,43.9666666667,24.1,38.4,22.79,39.8633333333,21.1,49.656,8.0725,52.4475,23.1142857143,39.8385714286,23.58,40.816,22.5,43.356,7.8333333333,750.5,95.3333333333,1.1666666667,22,7.0833333333,23.2256129733,23.2256129733 -50,0,23,40.79,20.7,43.79,24.2,38.4333333333,22.79,39.8266666667,21.1,49.59,8.2633333333,52.56,23.1,39.616,23.5,40.6214285714,22.4057142857,43.1371428571,7.9,750.6,95,1,22,7.1,25.4221882205,25.4221882205 -40,0,22.9266666667,40.79,20.7,43.79,24.1333333333,38.5,22.79,39.9,21.1,49.4985714286,8.6,52.86,23.1,39.3971428571,23.5,40.46,22.39,42.98,8.0166666667,750.7166666667,95,1.1666666667,22,7.2166666667,37.1756858658,37.1756858658 -60,0,23,40.79,20.8233333333,43.6633333333,24.2,38.5,22.73,39.8266666667,21.1,49.378,9.06,53.1933333333,23.1,39.2,23.4371428571,40.2857142857,22.4371428571,42.8685714286,8.1333333333,750.8333333333,95,1.3333333333,22,7.3333333333,22.9411371634,22.9411371634 -40,0,23,40.79,20.9975,43.5225,24.2,38.5,22.73,39.9,21.1,49.29,10.0333333333,53.6933333333,23.1,39.0542857143,23.39,40.2,22.5,42.754,8.25,750.95,95,1.5,22,7.45,48.6936232075,48.6936232075 -60,0,22.9266666667,40.9,21.2933333333,43.4333333333,24.23,38.5,22.79,39.9,21.14,49.2,10.9,54.1,23.1,38.94,23.3185714286,40.2,22.5,42.6371428571,8.3666666667,751.0666666667,95,1.6666666667,22,7.5666666667,47.5477095461,47.5477095461 -50,0,23,40.9666666667,22.3666666667,42.1933333333,24.29,38.4333333333,22.79,39.925,21.1571428571,49.1371428571,11.9666666667,54.6333333333,23.1,38.8685714286,23.29,40.2,22.5,42.572,8.4833333333,751.1833333333,95,1.8333333333,22,7.6833333333,31.8744421937,31.8744421937 -60,0,22.9633333333,41.03,22.7,40.9333333333,24.29,38.4666666667,22.79,40,21.14,49.072,12.3,54.7666666667,23.1,38.754,23.2675,40.1725,22.5,42.4714285714,8.6,751.3,95,2,22,7.8,32.3747005663,32.3747005663 -50,0,22.9633333333,41.09,22.4633333333,40.7666666667,24.29,38.4,22.79,40,21.1285714286,49,12.5333333333,54.5266666667,23.1,38.7,23.2,40.1528571429,22.5,42.356,8.7666666667,751.425,93.9166666667,1.9166666667,23.5,7.7916666667,24.3882530718,24.3882530718 -60,0,23,41.1266666667,22.3233333333,41.0266666667,24.29,38.5,22.79,40,21.14,48.9,12.7333333333,54.1333333333,23.08,38.616,23.2,40.2,22.5,42.2385714286,8.9333333333,751.55,92.8333333333,1.8333333333,25,7.7833333333,43.9125065925,43.9125065925 -50,0,22.9266666667,41.2,22.2,41.23,24.29,38.5,22.79,40,21.1285714286,48.8371428571,13.0633333333,54.4333333333,23.0285714286,38.5257142857,23.1714285714,40.2,22.5,42.1633333333,9.1,751.675,91.75,1.75,26.5,7.775,18.5016348376,18.5016348376 -50,0,22.9266666667,41.23,22.3266666667,41.29,24.29,38.5,22.79,40.06,21.14,48.772,13.3233333333,53.2266666667,23,38.4,23.1,40.29,22.5,42.0771428571,9.2666666667,751.8,90.6666666667,1.6666666667,28,7.7666666667,2.7391000767,2.7391000767 -50,0,23,41.29,22.7633333333,40.7966666667,24.365,38.5,22.79,40.2,21.1428571429,48.6685714286,13.93,50.99,23.0285714286,38.4128571429,23.1,40.29,22.5,42,9.4333333333,751.925,89.5833333333,1.5833333333,29.5,7.7583333333,4.384128598,4.384128598 -50,0,23,41.4,22.89,40.39,24.3233333333,38.5,22.79,40.1266666667,21.2,48.59,14.2633333333,45.6566666667,23.04,38.334,23.04,40.236,22.5,41.9,9.6,752.05,88.5,1.5,31,7.75,49.4225443224,49.4225443224 -40,0,22.9725,41.4,22.76,40.2666666667,24.29,38.5,22.79,40.09,21.1714285714,48.5385714286,14.1966666667,41.7233333333,23,38.2257142857,23.0428571429,40.2385714286,22.5,41.8371428571,9.7666666667,752.175,87.4166666667,1.4166666667,32.5,7.7416666667,36.7928165011,36.7928165011 -20,0,22.9633333333,41.4,22.6333333333,40.4666666667,24.29,38.56,22.79,40.1633333333,21.16,48.48,14.53,38.7966666667,23,38.2,23,40.29,22.5,41.79,9.9333333333,752.3,86.3333333333,1.3333333333,34,7.7333333333,11.3746600691,11.3746600691 -40,0,23,41.4333333333,22.99,40.4666666667,24.29,38.59,22.8233333333,40.3266666667,21.2,48.3685714286,15.0933333333,34.7333333333,23.0142857143,38.2,23,40.29,22.5,41.7642857143,10.1,752.425,85.25,1.25,35.5,7.725,17.8573152167,17.8573152167 -30,0,23,41.5,23.6566666667,39.5266666667,24.29,38.59,22.89,40.4,21.2,48.29,15.7,30.8666666667,23.08,38.16,23,40.29,22.5,41.7,10.2666666667,752.55,84.1666666667,1.1666666667,37,7.7166666667,8.0319389934,8.0319389934 -40,0,23,41.53,24.13,38.9,24.29,38.59,22.9266666667,40.4,21.2,48.2128571429,15.845,27.045,23.0714285714,38.0642857143,22.9528571429,40.2642857143,22.5428571429,41.6528571429,10.4333333333,752.675,83.0833333333,1.0833333333,38.5,7.7083333333,33.3253052784,33.3253052784 -60,0,23.0666666667,41.6633333333,24.7233333333,38.2333333333,24.29,38.59,23,40.4,21.2,48.116,16.13,23.8933333333,23.1,38,22.89,40.156,22.52,41.7,10.6,752.8,82,1,40,7.7,38.6763265589,38.6763265589 -50,0,23.1,41.73,25.3933333333,37.0566666667,24.2,38.56,23.1,40.3633333333,21.2,48,16.7233333333,21.96,23.1,37.9428571429,22.89,40.0385714286,22.6,41.7,10.8,752.9,80.8333333333,1.1666666667,40,7.65,14.5161556662,14.5161556662 -60,0,23.1,41.79,25.7266666667,36.2566666667,24.26,38.56,23.1666666667,40.29,21.2,47.9,17.46,15.8333333333,23.1,37.878,22.89,40,22.6,41.736,11,753,79.6666666667,1.3333333333,40,7.6,29.5659343363,29.5659343363 -50,0,23.1,41.79,25.96,35.7666666667,24.29,38.7,23.29,40.26,21.2385714286,47.8814285714,17.8666666667,11.16,23.1,37.7257142857,22.89,39.9285714286,22.6,42.0685714286,11.2,753.1,78.5,1.5,40,7.55,14.924593817,14.924593817 -50,0,23.1666666667,41.79,26.0333333333,35.6933333333,24.29,38.7,23.3566666667,40.1266666667,21.254,47.798,17.7233333333,6.06,23.025,37.5225,22.85,39.856,22.64,42.416,11.4,753.2,77.3333333333,1.6666666667,40,7.5,45.9655944956,45.9655944956 -60,0,23.2,41.79,25.695,35.395,24.29,38.7,23.39,40,21.2642857143,47.6942857143,17.2633333333,8,23.1,37.5,22.79,39.7771428571,22.6428571429,42.5385714286,11.6,753.3,76.1666666667,1.8333333333,40,7.45,20.4267562018,20.4267562018 -40,0,23.2,41.79,25.3566666667,35.8,24.29,38.76,23.39,39.9333333333,21.236,47.634,16.7933333333,6.8333333333,23.0714285714,37.4571428571,22.79,39.678,22.6,42.29,11.8,753.4,75,2,40,7.4,35.2586745401,35.2586745401 -50,0,23.2,41.7,25.29,36,24.29,38.79,23.39,39.9,21.2257142857,47.5671428571,16.6666666667,4.96,23.06,37.334,22.79,39.6214285714,22.6,42.41,11.9666666667,753.5,73.6666666667,2,40,7.3,43.1525026332,43.1525026332 -50,0,23.2,41.7,25.2,36.06,24.29,38.79,23.39,39.8633333333,21.29,47.572,16.9933333333,5.0966666667,23.1,37.29,22.79,39.656,22.6,42.554,12.1333333333,753.6,72.3333333333,2,40,7.2,43.4945363784,43.4945363784 -50,0,23.2,41.7,25.1333333333,36.06,24.29,38.79,23.39,39.79,21.29,47.4875,17.1333333333,4.29,23,37.2,22.79,39.6214285714,22.6,42.59,12.3,753.7,71,2,40,7.1,26.4330099919,26.4330099919 -60,0,23.2,41.7,25,36.2,24.29,38.79,23.39,39.79,21.29,47.4,17,3.56,23.0857142857,37.2,22.79,39.612,22.66,42.514,12.4666666667,753.8,69.6666666667,2,40,7,22.9800115339,22.9800115339 -60,0,23.2,41.59,25,36.26,24.29,38.79,23.39,39.79,21.29,47.29,17.1933333333,3.6933333333,23.1,37.2,22.7642857143,39.6685714286,22.6428571429,42.4571428571,12.6333333333,753.9,68.3333333333,2,40,6.9,8.8969761855,8.8969761855 -60,0,23.2,41.59,24.9266666667,36.29,24.29,38.79,23.5,39.9,21.29,47.2385714286,18.0933333333,2.6333333333,23.1,37.1685714286,22.79,39.7,22.6,42.518,12.8,754,67,2,40,6.8,29.5270912815,29.5270912815 -50,0,23.23,41.59,25,36.23,24.39,38.7,23.5,39.9,21.29,47.178,18.8333333333,1.1666666667,23.1,37.054,22.79,39.6842857143,22.6,42.59,13.2166666667,754.1,65,2,40,6.7166666667,21.6328579118,21.6328579118 -70,0,23.29,41.59,24.89,36.09,24.39,38.7,23.5,39.79,21.3185714286,47.09,18.8666666667,1,23.1,36.9857142857,22.736,39.59,22.6,42.59,13.6333333333,754.2,63,2,40,6.6333333333,19.4582170923,19.4582170923 -50,0,23.29,41.59,24.8233333333,36.09,24.39,38.7,23.5,39.73,21.29,47.054,18.2666666667,1,23.1,36.9,22.7,39.59,22.6714285714,42.71,14.05,754.3,61,2,40,6.55,2.5656286743,2.5656286743 -60,0,23.39,41.59,24.79,36.23,24.39,38.7,23.5333333333,39.7,21.3328571429,47,17.6666666667,1,23.1,36.9,22.7257142857,39.6685714286,22.6,42.7,14.4666666667,754.4,59,2,40,6.4666666667,40.935132443,40.935132443 -40,0,23.39,41.59,24.79,36.29,24.39,38.7,23.6,39.7,21.31,47,17.7266666667,1,23.1,36.9,22.754,39.7,22.6,42.7,14.8833333333,754.5,57,2,40,6.3833333333,42.2048965236,42.2048965236 -50,0,23.39,41.5,24.76,36.4333333333,24.39,38.7,23.6,39.6633333333,21.3471428571,47,17.445,1,23.1,36.8057142857,22.7,39.7257142857,22.6375,42.73375,15.3,754.6,55,2,40,6.3,14.5808218978,14.5808218978 -40,0,23.39,41.5,24.7,36.5,24.4633333333,38.76,23.5333333333,39.59,21.39,46.96,17.26,1,23.1,36.79,22.718,39.7,22.6,42.7,15.45,754.6,54.1666666667,1.8333333333,40,6.1833333333,37.7843749244,37.7843749244 -50,0,23.39,41.5,24.6,36.53,24.39,38.7,23.5,39.59,21.39,46.9,17.26,1,23.1,36.7257142857,22.7642857143,39.7,22.6142857143,42.7,15.6,754.6,53.3333333333,1.6666666667,40,6.0666666667,28.7115261774,28.7115261774 -50,0,23.39,41.5,24.6,36.59,24.4633333333,38.76,23.5,39.59,21.39,46.9,17.6633333333,1,23.1,36.7,22.754,39.59,22.64,42.616,15.75,754.6,52.5,1.5,40,5.95,38.8665147941,38.8665147941 -50,0,23.5,41.5,24.5,36.59,24.39,38.7,23.5,39.56,21.39,46.8214285714,17.9966666667,1,23.1571428571,36.5928571429,22.7771428571,39.5242857143,22.6,42.4714285714,15.9,754.6,51.6666666667,1.3333333333,40,5.8333333333,41.0916704801,41.0916704801 -60,0,23.5,41.5,24.5,36.59,24.39,38.7,23.5666666667,39.5,21.39,46.7,18.73,1,23.2,36.48,22.754,39.4,22.6,42.2,16.05,754.6,50.8333333333,1.1666666667,40,5.7166666667,1.3357388321,1.3357388321 -50,0,23.5,41.5,24.5,36.6266666667,24.5,38.79,23.6,39.5,21.39,46.6842857143,19.1233333333,1,23.2,36.3214285714,22.7642857143,39.3685714286,22.6,41.9971428571,16.2,754.6,50,1,40,5.6,48.818113748,48.818113748 -60,0,23.5,41.4333333333,24.5,36.6725,24.5,38.73,23.6,39.4333333333,21.39,46.572,19.7333333333,1,23.2,36.2,22.79,39,22.6,41.878,16.4,754.6666666667,49.1666666667,1,40,5.55,18.2843526942,18.2843526942 -50,0,23.6,41.3633333333,24.5,36.59,24.5666666667,38.7,23.6,39.4,21.4214285714,46.5257142857,20.0666666667,1,23.2771428571,36.1242857143,22.79,38.7685714286,22.6,41.7257142857,16.6,754.7333333333,48.3333333333,1,40,5.5,12.9366452573,12.9366452573 -60,0,23.6,41.23,24.5,36.5,24.5666666667,38.7,23.6,39.29,21.39,46.4,20.2266666667,1,23.35,35.98,22.79,38.56,22.6,41.59,16.8,754.8,47.5,1,40,5.45,22.859400406,22.859400406 -80,0,23.6,41.2,24.5,36.5,24.6,38.6266666667,23.6,39.23,21.4528571429,46.4,19.96,1,23.39,35.8214285714,22.79,38.3428571429,22.6,41.44,17,754.8666666667,46.6666666667,1,40,5.4,13.8177270303,13.8177270303 -80,0,23.6666666667,41.2,24.4266666667,36.53,24.6,38.7,23.6,39.2,21.5,46.378,20.0666666667,1,23.39,35.656,22.79,38.09,22.6,41.272,17.2,754.9333333333,45.8333333333,1,40,5.35,4.8471392714,4.8471392714 -80,0,23.73,41.06,24.434,36.536,24.6,38.59,23.6666666667,39.2,21.5,46.272,20.2,1,23.4528571429,35.5771428571,22.91,38.2985714286,22.6,41.178,17.4,755,45,1,40,5.3,28.725255304,28.725255304 -80,0,23.79,41,24.39,36.5,24.6,38.6633333333,23.7,39.2,21.5,46.2,20.0666666667,1,23.5,35.5,23.08,38.5,22.6,41.03,17.25,755.05,46.1666666667,1.3333333333,40,5.5166666667,5.9016181971,5.9016181971 -80,0,23.79,40.8633333333,24.39,36.634,24.6,38.59,23.7,39.1266666667,21.5,46.1214285714,19.7333333333,1,23.5,35.4166666667,23.2257142857,38.7571428571,22.6333333333,40.9333333333,17.1,755.1,47.3333333333,1.6666666667,40,5.7333333333,43.847653456,43.847653456 -80,0,23.8566666667,40.8633333333,24.39,36.6842857143,24.6,38.59,23.7,39.09,21.5,46.09,19.46,1,23.54,35.356,23.33,39.09,22.6333333333,40.86,16.95,755.15,48.5,2,40,5.95,38.188207522,38.188207522 -90,0,23.89,40.8633333333,24.39,36.634,24.6,38.59,23.7,39.03,21.5,46.0128571429,19.7933333333,1,23.6,35.2675,23.4528571429,39.2942857143,22.6666666667,40.8333333333,16.8,755.2,49.6666666667,2.3333333333,40,6.1666666667,48.0901270639,48.0901270639 -80,0,23.9175,40.7675,24.39,36.6685714286,24.6,38.59,23.7,39,21.55,46,19.96,1,23.6,35.2,23.56,39.716,22.6,40.7,16.65,755.25,50.8333333333,2.6666666667,40,6.3833333333,43.2601441047,43.2601441047 -100,0,24,40.7,24.39,36.7,24.6,38.59,23.7,39,21.6,46,20.2266666667,1,23.6,35.112,23.6714285714,40.2671428571,22.6,40.56,16.5,755.3,52,3,40,6.6,26.6110423603,26.6110423603 -90,0,24,40.7,24.3328571429,36.7771428571,24.6,38.59,23.7,39,21.6,45.9714285714,20.1666666667,1,23.6,35.09,23.736,40.52,22.6,40.5,16.6666666667,755.3333333333,50.8333333333,3,40,6.3833333333,38.7612188119,38.7612188119 -90,0,24,40.5666666667,24.29,36.636,24.6,38.59,23.7,38.9333333333,21.6,45.9,20.2425,1,23.6,35.09,23.79,41.0242857143,22.6666666667,40.56,16.8333333333,755.3666666667,49.6666666667,3,40,6.1666666667,35.4233939899,35.4233939899 -80,0,24,40.1933333333,24.2257142857,36.0285714286,24.6333333333,38.5,23.7,38.9,21.6142857143,45.7071428571,20.1633333333,1,23.64,35.036,23.79,41.29,22.6,40.5,17,755.4,48.5,3,40,5.95,34.9885008996,34.9885008996 -100,0,24,39.8,24.1,36,24.7,38.36,23.7,38.9,21.7,45.616,20.2,1,23.6,34.9666666667,23.8614285714,41.2257142857,22.6,40.5,17.1666666667,755.4333333333,47.3333333333,3,40,5.7333333333,33.7971630506,33.7971630506 -80,10,24,39.53,24.1857142857,36.0771428571,24.7,38.26,23.7,38.8633333333,21.7,45.3242857143,20.3266666667,1,23.6,34.7483333333,23.934,40.754,22.6,40.4666666667,17.3333333333,755.4666666667,46.1666666667,3,40,5.5166666667,15.0173680275,15.0173680275 -70,0,24.0666666667,39.59,24.2,35.994,24.7,38.26,23.7,38.73,21.79,44.96,20.558,1,23.6,34.498,24,40.54,22.6,40.1933333333,17.5,755.5,45,3,40,5.3,37.8527358174,37.8527358174 -90,0,24.0666666667,39.3333333333,24.1285714286,35.5542857143,24.6666666667,38.2233333333,23.7,38.6633333333,21.79,44.6785714286,20.2633333333,1,23.6,34.3266666667,24.05,40.38625,22.6,39.9666666667,17.5833333333,755.5333333333,45.3333333333,3,40,5.4666666667,17.4883117317,17.4883117317 -70,0,24,38.86,24,35.054,24.6,37.9633333333,23.7,38.59,21.81,44.356,20.29,1,23.6,34.245,24.12,40.214,22.6666666667,39.9,17.6666666667,755.5666666667,45.6666666667,3,40,5.6333333333,6.5417769947,6.5417769947 -100,0,24,38.3633333333,23.945,34.8616666667,24.6,37.6333333333,23.6,38.4666666667,21.89,44.0285714286,20.3566666667,1,23.6,34.156,24.2,39.9971428571,22.6,39.6633333333,17.75,755.6,46,3,40,5.8,43.0468638428,43.0468638428 -400,0,24,38.3633333333,23.79,34.736,24.6,37.4333333333,23.6,38.2225,21.934,43.754,20.2633333333,1,23.6,34.09,24.236,39.79,22.6,39.59,17.8333333333,755.6333333333,46.3333333333,3,40,5.9666666667,22.39874769,22.39874769 -520,0,24,39.0266666667,23.79,34.82,24.5666666667,37.0266666667,23.6,38.03,22,43.4557142857,20.5966666667,1,23.6,34.09,24.2771428571,39.7614285714,22.6,39.5,17.9166666667,755.6666666667,46.6666666667,3,40,6.1333333333,42.8499341011,42.8499341011 -160,0,24,41.7666666667,23.79,35.238,24.5,36.8266666667,23.6,38.03,22,43.312,20.4666666667,1,23.58,34.09,24.254,39.516,22.6,39.5,18,755.7,47,3,40,6.3,0.9437501663,0.9437501663 -100,0,24,43.1266666667,23.79,36.01,24.5,37,23.6,38.09,22,43.4971428571,19.8666666667,1,23.5,34.09,24.29,39.2957142857,22.6,39.4666666667,17.9333333333,755.7333333333,47.1666666667,3,40,6.3,25.3761335043,25.3761335043 -210,0,24,41.6666666667,23.745,36.30375,24.5666666667,37.06,23.6,38.2,22,43.7,19.1566666667,1,23.5,34.09,24.29,39.2,22.6,39.4666666667,17.8666666667,755.7666666667,47.3333333333,3,40,6.3,5.9750670567,5.9750670567 -110,0,24,40.8933333333,23.7,36.4,24.6,37.23,23.5333333333,38.26,22,43.7514285714,18.8233333333,1,23.5,34.236,24.29,39.2,22.6,39.5,17.8,755.8,47.5,3,40,6.3,38.6745594791,38.6745594791 -70,0,24,40.1,23.5414285714,36.4571428571,24.6,37.3725,23.5,38.4,22,43.772,18.4633333333,1,23.5,34.418,24.29,39.218,22.6,39.56,17.7333333333,755.8333333333,47.6666666667,3,40,6.3,13.5571044637,13.5571044637 -70,0,23.89,39.5266666667,23.37,36.612,24.6,37.4,23.5,38.4666666667,22,43.7,18.2633333333,1,23.4371428571,34.5928571429,24.2642857143,39.29,22.6,39.7,17.6666666667,755.8666666667,47.8333333333,3,40,6.3,17.3094287282,17.3094287282 -70,0,23.89,39.4,23.29,36.895,24.6,37.4,23.5,38.53,22,43.554,17.8566666667,1,23.39,34.776,24.236,39.334,22.6,39.76,17.6,755.9,48,3,40,6.3,28.8694725023,28.8694725023 -100,0,23.89,39.4,23.245,37.2416666667,24.6,37.4,23.5,38.6633333333,22,43.5,17.6633333333,1.5266666667,23.39,35.03375,24.2385714286,39.4557142857,22.6,39.9,17.3833333333,756.0166666667,49.6666666667,3,40,6.5833333333,18.6073377845,18.6073377845 -110,0,23.79,39.6266666667,23.16,37.58,24.4633333333,37.5,23.4633333333,38.8266666667,22,43.5,17.3306666667,3.4486666667,23.37,35.276,24.254,40.094,22.6,39.8266666667,17.1666666667,756.1333333333,51.3333333333,3,40,6.8666666667,29.9088144675,29.9088144675 -100,0,23.79,39.76,23,37.925,24.3233333333,37.6333333333,23.39,38.9666666667,22,43.5,17.175,4.815,23.3614285714,35.4971428571,24.3185714286,41.8114285714,22.6,40.36,16.95,756.25,53,3,40,7.15,32.9791374854,32.9791374854 -110,0,23.79,40.03,22.9266666667,38.2833333333,24.23,37.8266666667,23.39,39.1266666667,22,43.58,17.1,5.3966666667,23.29,35.736,24.39,42.054,22.6,40.5,16.7333333333,756.3666666667,54.6666666667,3,40,7.4333333333,2.6055640657,2.6055640657 -100,0,23.73,40.1633333333,22.87,38.754,24.29,37.9666666667,23.39,39.2,23.0142857143,70.0228571429,16.85,5.795,23.29,36,24.39,41.7371428571,22.6333333333,40.5966666667,16.5166666667,756.4833333333,56.3333333333,3,40,7.7166666667,19.2172797397,19.2172797397 -170,0,23.7,40.5,22.79,38.995,24.26,38.1566666667,23.39,39.23,23.998,82.674,16.2233333333,7.9666666667,23.29,36.1914285714,24.39,41.876,22.625,40.9475,16.3,756.6,58,3,40,8,39.9882388534,39.9882388534 -110,10,23.7,40.6333333333,22.665,39.3116666667,24.26,38.3633333333,23.39,39.29,23.5228571429,82.9114285714,15.63,8.8333333333,23.29,36.29,24.39,42.4971428571,22.6,41.1333333333,16.1666666667,756.6666666667,59.8333333333,3,37.3333333333,8.3166666667,37.6371601364,37.6371601364 -130,0,23.6,40.8266666667,22.5,39.58,24.29,38.4,23.3233333333,39.4333333333,22.9775,84.35625,15,9.8633333333,23.29,36.3971428571,24.5,42.94,22.6,41.4,16.0333333333,756.7333333333,61.6666666667,3,34.6666666667,8.6333333333,12.6767036389,12.6767036389 -120,0,23.6,40.9,22.5,39.8266666667,24.29,38.4,23.39,39.56,23.66,88.95,14.7266666667,11.33,23.2,36.44,24.5,43.1528571429,22.6,41.0666666667,15.9,756.8,63.5,3,32,8.95,5.684959318,5.684959318 -90,0,23.6,41,22.5666666667,40.1,24.29,38.4,23.3566666667,39.6266666667,23.3114285714,86.8371428571,14.4333333333,12.8233333333,23.2,36.6142857143,24.56,43.376,22.6666666667,40.9,15.7666666667,756.8666666667,65.3333333333,3,29.3333333333,9.2666666667,35.1145422552,35.1145422552 -90,0,23.6,41.1333333333,22.54,40.358,24.29,38.4666666667,23.29,39.7,23.14,83.918,14.1,15.1566666667,23.2,36.718,24.5571428571,43.4571428571,22.6,40.7,15.6333333333,756.9333333333,67.1666666667,3,26.6666666667,9.5833333333,40.9431232372,40.9431232372 -70,0,23.5333333333,41.3266666667,22.5,40.59,24.29,38.53,23.29,39.79,22.9971428571,80.0514285714,13.7333333333,17.6266666667,23.2,36.8214285714,24.6,44.334,22.5666666667,40.5,15.5,757,69,3,24,9.9,13.9817880699,13.9817880699 -80,0,23.5333333333,41.4,22.5,40.7675,24.29,38.59,23.29,39.9333333333,22.79,74,13.5333333333,20.8933333333,23.2,37,24.6,45.0371428571,22.5,40.5,15.1666666667,757.1,70.8333333333,2.8333333333,24,9.9166666667,17.6285480382,17.6285480382 -70,10,23.5,41.53,22.478,40.96,24.29,38.6266666667,23.29,40.06,22.7385714286,71.1085714286,13.2,22.83,23.1714285714,36.9428571429,24.6,45.59,22.5,40.5,14.8333333333,757.2,72.6666666667,2.6666666667,24,9.9333333333,34.4117115834,34.4117115834 -60,0,23.5,41.7233333333,22.39,41,24.29,38.7,23.29,40.09,22.68,69.256,12.8666666667,22.29,23.2,36.9,24.6,45.6685714286,22.5,40.5,14.5,757.3,74.5,2.5,24,9.95,45.2508021379,45.2508021379 -60,0,23.5,41.76,22.445,41.045,24.39,38.79,23.23,40.03,22.6,67.1242857143,12.3966666667,22.4266666667,23.2,36.8685714286,24.6,45.7,22.5,40.5666666667,14.1666666667,757.4,76.3333333333,2.3333333333,24,9.9666666667,13.6356800329,13.6356800329 -60,0,23.5,41.6266666667,22.37,41.076,24.39,38.79,23.23,40.03,22.56,65.29,11.99,24.3,23.2,36.79,24.5333333333,45.3266666667,22.5,40.96,13.8333333333,757.5,78.1666666667,2.1666666667,24,9.9833333333,5.5842120317,5.5842120317 -50,0,23.5,41.6266666667,22.29,41.2,24.39,38.9,23.23,40.09,22.6142857143,63.3557142857,11.6266666667,27.0233333333,23.1714285714,36.79,24.478,44.598,22.5,41.5666666667,13.5,757.6,80,2,24,10,18.0301877437,18.0301877437 -50,0,23.5,41.6266666667,22.2675,41.23375,24.39,38.9,23.2,40.23,22.64,62.48,11.4266666667,29.23,23.14,36.79,24.39,44.5266666667,22.5,41.76,13.2833333333,757.6333333333,79.8333333333,2.1666666667,26.6666666667,9.7666666667,2.9202305828,2.9202305828 -50,0,23.39,41.5,22.2,41.2,24.39,38.9,23.2,40.29,22.5714285714,62.2642857143,11.1266666667,30.13,23.1,36.79,24.39,44.834,22.5666666667,41.9333333333,13.0666666667,757.6666666667,79.6666666667,2.3333333333,29.3333333333,9.5333333333,16.0326172831,16.0326172831 -50,0,23.39,41.475,22.1428571429,41.2,24.39,38.9,23.2,40.3266666667,22.5,62.2,10.8666666667,30.53,23.1,36.79,24.39,45.036,22.5,42.06,12.85,757.7,79.5,2.5,32,9.3,7.2866820032,7.2866820032 -50,0,23.39,41.4,22.08,41.2,24.39,38.9,23.2,40.4,22.4371428571,62.0557142857,10.53,31.3,23.1,36.7771428571,24.39,45.2,22.5,42.1266666667,12.6333333333,757.7333333333,79.3333333333,2.6666666667,34.6666666667,9.0666666667,48.5448927851,48.5448927851 -50,0,23.39,41.4,22,41.2257142857,24.39,38.9,23.2,40.4333333333,22.39,61.75,10.24,32.525,23.1,36.7,24.33,45.2,22.5,42.26,12.4166666667,757.7666666667,79.1666666667,2.8333333333,37.3333333333,8.8333333333,26.619309769,26.619309769 -60,0,23.39,41.4,22,41.29,24.39,38.9,23.2,40.5,22.39,61.4542857143,10.13,34.5266666667,23.1,36.7,24.29,45.16,22.5333333333,42.3266666667,12.2,757.8,79,3,40,8.6,1.709426567,1.709426567 -50,0,23.29,41.3633333333,21.9057142857,41.4414285714,24.3233333333,38.9333333333,23.1,40.5,22.33,61.054,10.0666666667,35.4666666667,23.1,36.7,24.29,44.95,22.575,42.475,11.9333333333,757.7833333333,80.1666666667,3,40,8.55,36.9507428608,36.9507428608 -60,0,23.3566666667,41.29,21.87,41.5,24.39,39,23.1,40.5,22.3042857143,60.7714285714,9.9266666667,36.1933333333,23.1,36.7,24.218,44.812,22.5666666667,42.56,11.6666666667,757.7666666667,81.3333333333,3,40,8.5,49.4224780123,49.4224780123 -60,0,23.29,41.29,21.79,41.5642857143,24.39,39,23.1666666667,40.56,22.29,60.44,9.86,37.1666666667,23.1,36.7225,24.1,44.834,22.6,42.7,11.4,757.75,82.5,3,40,8.45,24.6867305716,24.6867305716 -50,0,23.29,41.29,21.7,41.59,24.39,39,23.1,40.56,22.29,60.3428571429,9.8,37.9666666667,23.08,36.678,24.15,44.95,22.6,42.76,11.1333333333,757.7333333333,83.6666666667,3,40,8.4,22.7460028837,22.7460028837 -60,0,23.29,41.29,21.7,41.6657142857,24.4266666667,39.1566666667,23.1,40.59,22.29,60.254,9.66,38.1,23.0285714286,36.6214285714,24.1,44.9,22.6,42.8266666667,10.8666666667,757.7166666667,84.8333333333,3,40,8.35,9.4367210288,9.4367210288 -40,0,23.29,41.29,21.68,41.79,24.5,39.29,23.1,40.59,22.2128571429,59.88,9.46,38.3,23,36.59,24.04,44.798,22.6,42.9666666667,10.6,757.7,86,3,40,8.3,12.1348228306,12.1348228306 -50,0,23.26,41.26,21.6,41.79,24.5,39.4,23.1,40.59,22.2,59.552,9.2633333333,38.26,23.0285714286,36.6085714286,24,44.79,22.6,43,10.5166666667,757.7333333333,86,3,40,8.2333333333,32.7714355546,32.7714355546 -50,0,23.2,41.2,21.56,41.9,24.5666666667,39.4,23.1,40.59,22.2,59.2642857143,9.13,38.46,23,36.5,24,44.71,22.6,43.06,10.4333333333,757.7666666667,86,3,40,8.1666666667,4.6001669019,4.6001669019 -60,0,23.2,41.2,21.5,41.9428571429,24.6,39.5,23.0333333333,40.4633333333,22.2,58.856,8.9633333333,39.23,23,36.5,23.956,44.554,22.6,43.1266666667,10.35,757.8,86,3,40,8.1,25.2343220636,25.2343220636 -40,0,23.2,41.2,21.478,41.94,24.6,39.56,23.0666666667,40.5,22.2,58.4942857143,8.83,39.49,23,36.5,23.9633333333,44.4666666667,22.6,43.2,10.2666666667,757.8333333333,86,3,40,8.0333333333,32.6309660566,32.6309660566 -70,0,23.2,41.2,21.39,41.9,24.6,39.6633333333,23,40.5,22.1875,58.05875,8.66,39.8266666667,23,36.5,23.89,44.316,22.6,43.29,10.1833333333,757.8666666667,86,3,40,7.9666666667,36.27214554,36.27214554 -50,0,23.2,41.2,21.39,42,24.6,39.6633333333,23,40.4,22.1,57.75,8.5333333333,40.16,23,36.5,23.89,44.178,22.6,43.29,10.1,757.9,86,3,40,7.9,16.4663534262,16.4663534262 -50,0,23.1,41.2,21.3328571429,42,24.6,39.7,23,40.4,22.1,57.4228571429,8.4633333333,40.4333333333,23,36.4714285714,23.89,44.09,22.6,43.4,9.9666666667,757.8833333333,86.1666666667,3,40,7.8,44.3458861671,44.3458861671 -60,0,23.1,41.2,21.29,42,24.625,39.7225,23,40.4,22.1,57.09,8.33,41.0266666667,23,36.4,23.89,43.978,22.6,43.4666666667,9.8333333333,757.8666666667,86.3333333333,3,40,7.7,48.5813613399,48.5813613399 -50,0,23.1,41.1633333333,21.2642857143,42.0385714286,24.6333333333,39.73,23,40.4,22.1,56.88,8.3,41.6966666667,23,36.4,23.79,43.7,22.6,43.5,9.7,757.85,86.5,3,40,7.6,6.454558915,6.454558915 -60,0,23.1,41.09,21.2,42,24.7,39.79,22.9633333333,40.3633333333,22.1,56.645,8.42,42.815,22.956,36.4,23.79,43.7,22.6,43.5,9.5666666667,757.8333333333,86.6666666667,3,40,7.5,7.3470134404,7.3470134404 -40,0,23.1,41.2,21.2,42.0514285714,24.7,39.79,22.89,40.29,22.0857142857,56.2842857143,8.7933333333,43.9966666667,22.9214285714,36.3214285714,23.79,43.645,22.6,43.59,9.4333333333,757.8166666667,86.8333333333,3,40,7.4,47.6421738858,47.6421738858 -50,0,23.0333333333,41.0666666667,21.14,42.09,24.7,39.79,22.89,40.29,22,55.958,9.2566666667,44.1266666667,22.89,36.29,23.715,43.545,22.6,43.6633333333,9.3,757.8,87,3,40,7.3,46.618077415,46.618077415 -40,0,23.0333333333,41.1266666667,21.1,42.1214285714,24.7,39.79,22.89,40.29,22,55.745,9.53,44,22.89,36.29,23.754,43.46,22.6333333333,43.73,9.3833333333,757.7833333333,86.8333333333,3,40,7.3333333333,14.0592152835,14.0592152835 -30,0,23.0666666667,41.1633333333,21.1,42.2,24.7,39.79,22.89,40.29,22,55.4971428571,9.83,43.4,22.89,36.29,23.7,43.3725,22.625,43.79,9.4666666667,757.7666666667,86.6666666667,3,40,7.3666666667,30.9650956304,30.9650956304 -20,0,23,41.09,21.0125,42.13125,24.7,39.73,22.89,40.29,22,55.272,9.89,43.2,22.89,36.3371428571,23.7,43.275,22.6,43.8633333333,9.55,757.75,86.5,3,40,7.4,38.7257686467,38.7257686467 -30,0,23,41.09,21,42.2514285714,24.6666666667,39.76,22.89,40.2,22,55.09,9.9633333333,44.6666666667,22.89,36.29,23.68,43.236,22.6,43.9333333333,9.6333333333,757.7333333333,86.3333333333,3,40,7.4333333333,41.5488324943,41.5488324943 -50,0,23,41.09,21,42.312,24.6,39.7,22.89,40.2,22,55.09,9.9633333333,45.5933333333,22.89,36.3528571429,23.66,43.254,22.6,44,9.7166666667,757.7166666667,86.1666666667,3,40,7.4666666667,33.2106153015,33.2106153015 -70,0,23,41.1266666667,21,42.4714285714,24.6,39.79,22.89,40.29,22,55.06,10.0333333333,46.6,22.89,36.4,23.65,43.3083333333,22.6666666667,44.1633333333,9.8,757.7,86,3,40,7.5,39.2007403891,39.2007403891 -60,0,22.9266666667,41.2,21,42.536,24.6,39.8633333333,22.89,40.29,22,54.975,10.1,47,22.89,36.4714285714,23.64,43.356,22.6,44.09,9.8333333333,757.7,87.5,3.3333333333,38.1666666667,7.7833333333,23.1189128128,23.1189128128 -50,0,22.89,41.23,20.9371428571,42.6971428571,24.6,39.9,22.8566666667,40.26,21.978,54.816,10.2266666667,47.3666666667,22.89,36.5,23.6,43.42,22.6,44.1266666667,9.8666666667,757.7,89,3.6666666667,36.3333333333,8.0666666667,28.0250557,28.0250557 -60,0,22.89,41.29,20.89,42.812,24.6666666667,39.9666666667,22.79,40.2675,21.945,54.7,10.3,48.0333333333,22.89,36.5514285714,23.6,43.5257142857,22.6,44.2,9.9,757.7,90.5,4,34.5,8.35,37.6136885607,37.6136885607 -60,0,22.9266666667,41.29,20.89,42.9,24.7,40,22.79,40.29,21.912,54.5,10.33,48.5666666667,22.87,36.59,23.6,43.7,22.6,44.29,9.9333333333,757.7,92,4.3333333333,32.6666666667,8.6333333333,16.8008599314,16.8008599314 -50,0,22.9266666667,41.29,20.89,43.036,24.7,40,22.79,40.3266666667,21.89,54.356,10.39,49.0266666667,22.8614285714,36.6685714286,23.5857142857,43.7514285714,22.6,44.29,9.9666666667,757.7,93.5,4.6666666667,30.8333333333,8.9166666667,39.8607698386,39.8607698386 -50,0,22.89,41.4,20.89,43.1528571429,24.7,40,22.79,40.4,21.89,54.1783333333,10.5333333333,49.7666666667,22.815,36.7225,23.54,43.876,22.6666666667,44.4,10,757.7,95,5,29,9.2,42.0682802796,42.0682802796 -50,0,22.89,41.4,20.89,43.218,24.7,40,22.79,40.5,21.89,54,10.66,50.1,22.79,36.7,23.5,44,22.6,44.4,10.1,757.65,94.5,5,28.5,9.2333333333,40.4345647898,40.4345647898 -50,0,22.89,41.5,20.89,43.3685714286,24.7,40.03,22.79,40.5,21.89,53.918,10.8,50.2,22.79,36.7771428571,23.5,44.09,22.6,44.5,10.2,757.6,94,5,28,9.2666666667,48.3368164976,48.3368164976 -50,0,22.89,41.5,20.89,43.4,24.7,40.09,22.79,40.53,21.89,53.7116666667,10.8225,50.2675,22.79,36.812,23.5,44.1528571429,22.6,44.56,10.3,757.55,93.5,5,27.5,9.3,7.8217469854,7.8217469854 -50,0,22.89,41.53,20.8614285714,43.5085714286,24.7,40.09,22.79,40.59,21.89,53.59,10.89,50.29,22.79,36.9,23.5,44.276,22.6,44.6266666667,10.4,757.5,93,5,27,9.3333333333,18.803224864,18.803224864 -60,0,22.89,41.59,20.87,43.572,24.7,40.2,22.79,40.59,21.89,53.4428571429,10.9266666667,50.6266666667,22.79,37,23.5,44.4285714286,22.6,44.7,10.5,757.45,92.5,5,26.5,9.3666666667,39.3221086357,39.3221086357 -80,0,22.89,41.59,20.8185714286,43.5571428571,24.7,40.1266666667,22.79,40.6633333333,21.89,53.316,11,50.7,22.79,37,23.5,44.59,22.6333333333,44.73,10.6,757.4,92,5,26,9.4,6.8753404077,6.8753404077 -80,10,22.89,41.815,20.79,43.736,24.6666666667,40.1,22.76,40.7,21.89,52.9833333333,11.0333333333,50.9333333333,22.79,37.018,23.4057142857,44.6528571429,22.7,44.99,10.7166666667,757.3833333333,91.8333333333,4.8333333333,26.5,9.4666666667,1.9086972577,1.9086972577 -50,0,22.89,42.2233333333,20.79,43.9385714286,24.6666666667,39.8266666667,22.7,40.76,21.89,51.356,11.16,50.9333333333,22.79,37.09,23.39,44.7,22.6,45.06,10.8333333333,757.3666666667,91.6666666667,4.6666666667,27,9.5333333333,15.8735378878,15.8735378878 -60,0,22.89,42.8633333333,20.81,44.438,24.6,39.6633333333,22.7,40.79,21.89,50.114,11.1,50.7,22.79,37.09,23.39,44.7257142857,22.6,45,10.95,757.35,91.5,4.5,27.5,9.6,48.2431245386,48.2431245386 -60,10,22.89,42.79,20.8471428571,44.7828571429,24.6,39.53,22.7,40.79,21.89,49.5133333333,11.1,50.76,22.79,37.1528571429,23.39,44.79,22.6,44.845,11.0666666667,757.3333333333,91.3333333333,4.3333333333,28,9.6666666667,16.1450071842,16.1450071842 -40,0,22.9266666667,42.79,20.89,45,24.6,39.5,22.76,40.79,21.89,49.62,11.2266666667,50.9633333333,22.79,37.276,23.39,44.9775,22.6,45,11.1833333333,757.3166666667,91.1666666667,4.1666666667,28.5,9.7333333333,31.0423777788,31.0423777788 -60,0,23,42.79,20.89,44.9714285714,24.6,39.4333333333,22.7,40.79,21.89,49.978,11.36,51.09,22.7257142857,37.4285714286,23.39,45.1842857143,22.6,44.86,11.3,757.3,91,4,29,9.8,8.8299469789,8.8299469789 -50,0,23,42.9633333333,20.89,45,24.6,39.5,22.7,40.79,21.8733333333,50.09,11.6,51.09,22.7,37.634,23.39,45.074,22.6,44.6633333333,11.3833333333,757.35,90.5,4,30.8333333333,9.8,37.2810156667,37.2810156667 -50,0,23,43.03,20.9214285714,45,24.5333333333,39.5,22.7,40.79,21.81,50.156,11.9333333333,51.09,22.7,37.7514285714,23.3614285714,44.6942857143,22.6,44.59,11.4666666667,757.4,90,4,32.6666666667,9.8,9.9959802697,9.9959802697 -60,10,23,43.09,21,45,24.5,39.5,22.7,40.9,21.8185714286,50.1214285714,12.3,50.4966666667,22.7,37.812,23.29,44.356,22.6333333333,44.5,11.55,757.45,89.5,4,34.5,9.8,3.1043864205,3.1043864205 -90,30,23,43.09,21,45.03375,24.5,39.5,22.7,40.9475,21.83,50.09,12.36,49.6966666667,22.7,37.9,23.2771428571,44.1628571429,22.6333333333,44.4333333333,11.6333333333,757.5,89,4,36.3333333333,9.8,44.6721819695,44.6721819695 -90,20,23,43,21,45,24.39,39.4,22.76,41.2233333333,21.79,49.96,12.4266666667,49.1633333333,22.7,38,23.2,43.98,22.6,44.26,11.7166666667,757.55,88.5,4,38.1666666667,9.8,36.7463968927,36.7463968927 -80,20,22.9266666667,42.9333333333,21.02,45,24.39,39.4,22.8233333333,41.5666666667,21.79,49.8371428571,12.5666666667,48.7566666667,22.7,38.0514285714,23.2,43.9,22.6,44.2,11.8,757.6,88,4,40,9.8,21.2045878754,21.2045878754 -90,20,23,42.9333333333,21.1,44.9285714286,24.39,39.4,22.9633333333,41.76,21.79,49.772,12.9,48.3633333333,22.7,38.156,23.2,43.856,22.6,44.06,11.8833333333,757.6166666667,88,4.1666666667,38,9.8833333333,10.7295943308,10.7295943308 -80,20,23,43,21.2,44.79,24.39,39.4,23.0333333333,41.9333333333,21.79,49.616,13.2333333333,47.7566666667,22.7,38.2642857143,23.2,43.8057142857,22.6,44,11.9666666667,757.6333333333,88,4.3333333333,36,9.9666666667,19.6462389547,19.6462389547 -70,30,23,43,21.2,44.7228571429,24.4633333333,39.4,23.1,41.9333333333,21.79,49.4285714286,13.65,45.895,22.7,38.4,23.14,43.92,22.6,43.9,12.05,757.65,88,4.5,34,10.05,11.2849096884,11.2849096884 -80,0,22.9266666667,43.06,21.296,44.652,24.39,39.3266666667,23.1,41.9,21.79,49.29,14.2333333333,43.2233333333,22.6714285714,38.3828571429,23.1,44.0257142857,22.5333333333,43.8266666667,12.1333333333,757.6666666667,88,4.6666666667,32,10.1333333333,22.6878521615,22.6878521615 -80,0,22.89,43.1566666667,21.5714285714,44.35,24.39,39.4,23.1666666667,41.9,21.79,49.2,14.6266666667,40.09,22.7,38.5,23.1,44.09,22.6,43.76,12.2166666667,757.6833333333,88,4.8333333333,30,10.2166666667,41.7518540868,41.7518540868 -110,0,22.89,43.29,21.7,44.156,24.39,39.425,23.2,42.03,21.79,49.0928571429,14.99,37.2566666667,22.7,38.5642857143,23.1,44.09,22.6,43.7,12.3,757.7,88,5,28,10.3,7.7409029356,7.7409029356 -130,20,22.89,43.4,21.8085714286,44.0371428571,24.39,39.4333333333,23.2,42.1633333333,21.79,48.98,15.3233333333,35.1966666667,22.7,38.7,23.08,44.09,22.6,43.59,12.5166666667,757.7166666667,87.6666666667,4.8333333333,28,10.45,29.2648660252,29.2648660252 -170,20,22.89,43.4,21.912,43.816,24.39,39.4,23.29,42.29,21.79,48.8214285714,15.9,33.3266666667,22.7,38.7514285714,23,44.09,22.6,43.59,12.7333333333,757.7333333333,87.3333333333,4.6666666667,28,10.6,32.4693979928,32.4693979928 -130,20,22.89,43.4,22,43.7,24.39,39.4666666667,23.29,42.29,21.79,48.7,16.1666666667,31.06,22.7,38.885,23,44.29,22.6,43.53,12.95,757.75,87,4.5,28,10.75,38.9123308822,38.9123308822 -130,30,22.89,43.53,21.934,43.79,24.39,39.5,23.3233333333,42.3633333333,21.79,48.6371428571,16.26,30.46,22.7,39.018,23,44.3528571429,22.6,43.59,13.1666666667,757.7666666667,86.6666666667,4.3333333333,28,10.9,43.7572588096,43.7572588096 -90,20,22.89,43.59,21.9214285714,43.8842857143,24.39,39.5,23.39,42.43,21.79,48.572,16.1333333333,29.7933333333,22.7,39.09,23,44.46,22.55,43.59,13.3833333333,757.7833333333,86.3333333333,4.1666666667,28,11.05,45.8482504706,45.8482504706 -70,20,22.89,43.7,21.978,43.92,24.39,39.5,23.5,42.76,21.79,48.5,16.1666666667,30.0266666667,22.7,39.2,23,44.5957142857,22.5666666667,43.59,13.6,757.8,86,4,28,11.2,12.1322426246,12.1322426246 -60,20,22.89,43.76,21.89,44.0642857143,24.39,39.5,23.5666666667,42.6266666667,21.79,48.5,16.0333333333,29.5666666667,22.7,39.2514285714,22.89,44.736,22.5,43.59,13.6333333333,757.8333333333,85.8333333333,4.1666666667,30,11.2166666667,47.5368617685,47.5368617685 -90,20,22.89,43.8266666667,21.934,44.236,24.39,39.59,23.5,42.59,21.79,48.46,16.0666666667,30.2633333333,22.7,39.356,22.89,44.8528571429,22.5333333333,43.59,13.6666666667,757.8666666667,85.6666666667,4.3333333333,32,11.2333333333,29.0974610485,29.0974610485 -80,20,22.89,43.9,21.9842857143,44.3528571429,24.39,39.59,23.5,42.59,21.79,48.4285714286,16.26,30.3966666667,22.7,39.4714285714,22.89,44.978,22.6,43.59,13.7,757.9,85.5,4.5,34,11.25,27.8668984189,27.8668984189 -80,30,22.89,44.03,21.912,44.42,24.39,39.7,23.5333333333,42.6933333333,21.79,48.4,16.1666666667,30.1333333333,22.7,39.59,22.89,45.09,22.6,43.7,13.7333333333,757.9333333333,85.3333333333,4.6666666667,36,11.2666666667,20.2358251321,20.2358251321 -60,20,22.9633333333,44.1633333333,21.9214285714,44.4285714286,24.39,39.76,23.6,43.0266666667,21.79,48.4,16.0333333333,30.3333333333,22.7,39.6528571429,22.79,45.2,22.5333333333,43.7,13.7666666667,757.9666666667,85.1666666667,4.8333333333,38,11.2833333333,10.7350551756,10.7350551756 -100,20,22.9633333333,44.23,21.956,44.4,24.39,39.8266666667,23.7,43.145,21.79,48.29,16,30.7666666667,22.7,39.718,22.79,45.2771428571,22.5,43.7,13.8,758,85,5,40,11.3,36.7515264545,36.7515264545 -80,20,22.89,44.3633333333,21.9685714286,44.4571428571,24.39,39.9,23.79,42.9666666667,21.79,48.3214285714,16.0666666667,31.1666666667,22.7,39.8214285714,22.79,45.332,22.5,43.7,13.85,758.0166666667,85,4.8333333333,38.1666666667,11.35,34.8725423915,34.8725423915 -70,20,22.89,44.4333333333,21.89,44.554,24.39,39.9333333333,23.79,42.8266666667,21.79,48.29,16.1,31.3933333333,22.7,40,22.79,45.5257142857,22.5,43.79,13.9,758.0333333333,85,4.6666666667,36.3333333333,11.4,38.9363611466,38.9363611466 -90,30,22.89,44.5,21.89,44.59,24.39,40,23.79,42.79,21.79,48.29,16.1666666667,31.3933333333,22.7,40.0514285714,22.79,45.65875,22.5,43.79,13.95,758.05,85,4.5,34.5,11.45,48.4415570041,48.4415570041 -70,20,22.89,44.59,21.89,44.7,24.39,40.03,23.8566666667,42.8633333333,21.79,48.29,16.1,32.35,22.7,40.174,22.79,45.834,22.5,43.8266666667,14,758.0666666667,85,4.3333333333,32.6666666667,11.5,45.4503920162,45.4503920162 -80,20,22.89,44.6633333333,21.89,44.7771428571,24.39,40.09,23.89,42.9,21.79,48.29,15.86,35.8966666667,22.7,40.3685714286,22.7771428571,46.1128571429,22.5,43.9,14.05,758.0833333333,85,4.1666666667,30.8333333333,11.55,27.5544118136,27.5544118136 -70,20,22.89,44.73,21.912,44.832,24.5,40.2,23.89,42.9,21.79,48.356,15.9333333333,37.8233333333,22.7,40.634,22.718,46.394,22.5,43.9333333333,14.1,758.1,85,4,29,11.6,31.7529435386,31.7529435386 -80,30,22.89,44.93,21.9175,45.01125,24.5,40.2,23.89,42.9,21.79,48.4,15.9633333333,39.3633333333,22.7,40.8542857143,22.7257142857,46.6942857143,22.5,44.06,14.0833333333,758.15,86.1666666667,4,30.1666666667,11.7833333333,45.1667205081,45.1667205081 -60,20,22.89,45.29,21.9685714286,45.2642857143,24.5,40.245,23.9633333333,42.9666666667,21.79,48.4,15.7566666667,41.0966666667,22.7,41.076,22.7,47.036,22.5,44.23,14.0666666667,758.2,87.3333333333,4,31.3333333333,11.9666666667,22.5625246996,22.5625246996 -60,20,22.9633333333,45.3633333333,22.04,45.634,24.5,40.4,23.89,42.9,21.79,48.4142857143,15.9,41.8933333333,22.7,41.2957142857,22.7,47.3128571429,22.5,44.29,14.05,758.25,88.5,4,32.5,12.15,0.4766518832,0.4766518832 -120,30,23,45.4,22.1142857143,45.7385714286,24.5,40.4,23.8233333333,42.9666666667,21.85,48.554,16.2933333333,41.8933333333,22.7,41.536,22.7,47.54,22.5,44.4633333333,14.0333333333,758.3,89.6666666667,4,33.6666666667,12.3333333333,15.5557707185,15.5557707185 -50,20,23.025,45.525,22.218,45.718,24.4266666667,40.39,23.79,43.09,21.89,48.59,17.0233333333,41.2233333333,22.7,41.7814285714,22.7,47.7957142857,22.5,44.6633333333,14.0166666667,758.35,90.8333333333,4,34.8333333333,12.5166666667,34.3766630162,34.3766630162 -70,20,23.1,45.8333333333,22.29,45.7642857143,24.4266666667,40.53,23.8566666667,43.2233333333,21.89,48.7,17.5633333333,38.89,22.7,42.018,22.7,48.134,22.5,44.6633333333,14,758.4,92,4,36,12.7,17.8481989424,17.8481989424 -60,20,23,45.8266666667,22.29,45.7,24.39,40.6266666667,23.89,43.4333333333,21.89,48.7128571429,17.6333333333,36.0333333333,22.7257142857,42.1685714286,22.7,48.2671428571,22.5,44.695,14.1333333333,758.4166666667,91.8333333333,4.1666666667,34.8333333333,12.8,30.5971606285,30.5971606285 -90,20,23.0666666667,45.9666666667,22.29,45.7814285714,24.39,40.76,23.9633333333,43.56,21.83,48.754,17.6333333333,35.0933333333,22.736,42.29,22.7,48.4,22.5,44.8633333333,14.2666666667,758.4333333333,91.6666666667,4.3333333333,33.6666666667,12.9,31.274026935,31.274026935 -70,30,23.1,46.4633333333,22.31,46.138,24.39,40.9633333333,24,43.59,21.8328571429,48.79,17.5566666667,34.7566666667,22.7642857143,42.3671428571,22.7,48.4,22.5,44.8633333333,14.4,758.45,91.5,4.5,32.5,13,0.3550681635,0.3550681635 -70,0,23.1,46.6633333333,22.4685714286,46.2328571429,24.39,41.2233333333,24,43.7233333333,21.89,48.9,18.63,35.5566666667,22.79,42.5,22.7,48.44,22.5,44.79,14.5333333333,758.4666666667,91.3333333333,4.6666666667,31.3333333333,13.1,26.7596549354,26.7596549354 -70,0,23.1,46.79,22.6,45.9,24.4266666667,41.4333333333,24,43.9666666667,21.89,48.9,19.29,26.3233333333,22.79,42.5,22.7,48.5771428571,22.5,44.8266666667,14.6666666667,758.4833333333,91.1666666667,4.8333333333,30.1666666667,13.2,27.1329030278,27.1329030278 -70,0,23.1,46.8633333333,22.6857142857,45.71,24.5,41.56,24,43.9666666667,21.89,48.92,19.29,24.39,22.79,42.4571428571,22.7,48.572,22.5666666667,44.9,14.8,758.5,91,5,29,13.3,3.0564690707,3.0564690707 -60,0,23.1,46.9333333333,22.7,45.638,24.5,41.59,23.89,44.2266666667,21.89,49.0257142857,18.93,23,22.79,42.46,22.7,48.5,22.5666666667,44.9333333333,15,758.4833333333,90.3333333333,4.8333333333,30.8333333333,13.4,27.6654077345,27.6654077345 -70,0,23.0333333333,47.06,22.7642857143,45.6942857143,24.5666666667,41.59,23.815,44.5725,21.89,49.09,18.9966666667,23.5333333333,22.8328571429,42.4428571429,22.7,48.5,22.5,45,15.2,758.4666666667,89.6666666667,4.6666666667,32.6666666667,13.5,21.6490048449,21.6490048449 -60,0,23.0666666667,47.06,22.79,45.46,24.5333333333,41.6266666667,23.79,44.93,21.89,49.09,19.1233333333,21.3,22.79,42.4,22.7,48.5771428571,22.5333333333,45,15.4,758.45,89,4.5,34.5,13.6,33.7124819518,33.7124819518 -50,0,23.0666666667,47,22.7385714286,45.5371428571,24.5333333333,41.7,23.8566666667,45.06,21.89,49.09,18.5233333333,21.3666666667,22.79,42.4285714286,22.7,48.612,22.5333333333,45,15.6,758.4333333333,88.3333333333,4.3333333333,36.3333333333,13.7,27.9939550092,27.9939550092 -60,0,23,46.9,22.7,45.674,24.6,41.76,23.79,45,21.89,49.134,18.1933333333,23.9,22.79,42.5,22.7,48.6528571429,22.6,45,15.8,758.4166666667,87.6666666667,4.1666666667,38.1666666667,13.8,22.3846857203,22.3846857203 -60,0,23,46.9,22.7257142857,45.7642857143,24.5333333333,41.76,23.79,44.9,21.89,49.09,18.2425,25.8475,22.8614285714,42.5642857143,22.7,48.736,22.5333333333,45,16,758.4,87,4,40,13.9,24.9678408727,24.9678408727 -70,0,23.0666666667,47,22.79,45.59,24.5,41.79,23.79,44.9,21.89,49.09,18.1966666667,24.43,22.79,42.518,22.7,48.8528571429,22.5333333333,45,15.9666666667,758.3833333333,86.5,4.1666666667,40,13.75,30.6064941338,30.6064941338 -60,0,23.0666666667,47.06,22.7128571429,45.6657142857,24.5,41.79,23.79,44.79,21.89,49.09,17.7633333333,29,22.79,42.6214285714,22.7,48.9,22.5333333333,45,15.9333333333,758.3666666667,86,4.3333333333,40,13.6,16.1900876788,16.1900876788 -60,0,23.1,47.09,22.774,45.772,24.6,41.8633333333,23.79,44.79,21.89,49.09,18.3633333333,32.1933333333,22.89,42.856,22.7,48.9714285714,22.5333333333,45.09,15.9,758.35,85.5,4.5,40,13.45,40.0231545907,40.0231545907 -50,0,23.1,47.1633333333,22.9214285714,45.5957142857,24.6,41.8175,23.79,44.7,21.9685714286,49.09,19.4566666667,28.5333333333,22.89,42.79,22.7,49.09,22.5333333333,45.09,15.8666666667,758.3333333333,85,4.6666666667,40,13.3,24.3873079075,24.3873079075 -60,0,23.0666666667,47.2,23.1,45.356,24.6,41.8266666667,23.79,44.6266666667,21.934,49.2,19.93,23.5333333333,22.89,42.79,22.7,49.1057142857,22.6,45.1266666667,15.8333333333,758.3166666667,84.5,4.8333333333,40,13.15,6.1484471429,6.1484471429 -50,0,23.0666666667,47.26,23.1571428571,45.0985714286,24.6,41.8266666667,23.79,44.59,22,49.2,20.23,20.9666666667,22.9685714286,42.8371428571,22.7,49.25875,22.6,45.1266666667,15.8,758.3,84,5,40,13,4.872884776,4.872884776 -40,0,23.05,47.245,23.218,45,24.6,41.9,23.79,44.53,22,49.2,20.43,20.1666666667,23,42.9,22.7,49.478,22.6,45.2,15.9666666667,758.3,82.8333333333,4.8333333333,40,12.95,3.8208040176,3.8208040176 -50,0,23.1,47.29,23.29,44.9714285714,24.6,41.79,23.79,44.5,22,49.2,20.7,18.8233333333,23,42.9985714286,22.7,49.5514285714,22.6,45.2,16.1333333333,758.3,81.6666666667,4.6666666667,40,12.9,39.807546814,39.807546814 -50,0,23.1,47.29,23.29,44.9,24.6,41.79,23.79,44.5,22,49.2,20.7,16.7633333333,23,43.036,22.7,49.7,22.6,45.2,16.3,758.3,80.5,4.5,40,12.85,46.1830735905,46.1830735905 -50,0,23.1,47.2,23.3233333333,44.8633333333,24.6,41.9,23.79,44.4,22,49.2,20.86,12.6666666667,23,42.9714285714,22.7,49.5928571429,22.6,45.2,16.4666666667,758.3,79.3333333333,4.3333333333,40,12.8,29.2300098925,29.2300098925 -40,0,23.1,47.2,23.39,44.6371428571,24.6,41.9,23.79,44.4,22,49.2,20.86,9.1933333333,23.1,42.9,22.736,49.458,22.6,45.2,16.6333333333,758.3,78.1666666667,4.1666666667,40,12.75,47.2943055327,47.2943055327 -30,0,23.1666666667,47.09,23.39,44.48,24.6,41.9333333333,23.79,44.3633333333,22,49.2,20.8,6.9333333333,23.0714285714,42.6528571429,22.7257142857,49.1685714286,22.6,45.1633333333,16.8,758.3,77,4,40,12.7,26.092573558,26.092573558 -40,0,23.1666666667,47.03,23.39,44.3685714286,24.6,41.9333333333,23.79,44.23,22.1,49.254,21,5.5333333333,23.1,42.4,22.736,48.754,22.6,45.09,17,758.25,75.5,4.1666666667,40,12.5666666667,5.4447295726,5.4447295726 -30,0,23.2,46.9666666667,23.39,44.156,24.6,41.8633333333,23.79,44.09,22.1142857143,49.1371428571,21.36,2.8333333333,23.1,42.0957142857,22.79,48.4814285714,22.6333333333,45.09,17.2,758.2,74,4.3333333333,40,12.4333333333,34.5365671441,34.5365671441 -60,0,23.2,46.8266666667,23.39,43.9814285714,24.5333333333,41.8633333333,23.79,43.9975,22.14,49.072,21.3,1.36,23.2,41.754,22.79,48.196,22.7,45.09,17.4,758.15,72.5,4.5,40,12.3,24.7124782647,24.7124782647 -60,0,23.29,46.6633333333,23.39,43.86,24.5,41.79,23.79,43.8266666667,22.1,48.9714285714,20.9633333333,1.9266666667,23.2,41.5714285714,22.7642857143,47.8242857143,22.6,44.8633333333,17.6,758.1,71,4.6666666667,40,12.1666666667,13.016711548,13.016711548 -70,0,23.29,46.53,23.39,43.6685714286,24.5,41.79,23.79,43.7,22.2,48.856,20.89,1.2,23.2,41.294,22.79,47.46,22.6,44.79,17.8,758.05,69.5,4.8333333333,40,12.0333333333,33.3202648209,33.3202648209 -90,0,23.29,46.4,23.39,43.46,24.5,41.6633333333,23.79,43.6266666667,22.2,48.7228571429,21.0333333333,1,23.2,41.0642857143,22.79,47.5242857143,22.6666666667,44.7233333333,18,758,68,5,40,11.9,26.4272633358,26.4272633358 -60,0,23.29,46.1266666667,23.4214285714,43.3142857143,24.5,41.59,23.73,43.4666666667,22.254,48.656,21.1666666667,1,23.2,40.856,22.81,47.74,22.6,44.53,18.05,758.0166666667,66.5,5,40,11.6166666667,3.9633718552,3.9633718552 -80,0,23.39,45.9666666667,23.39,43.178,24.5,41.56,23.73,43.4,22.29,48.6685714286,20.795,1.1,23.2,40.6425,22.89,47.9285714286,22.6333333333,44.5,18.1,758.0333333333,65,5,40,11.3333333333,26.1156382505,26.1156382505 -70,0,23.39,45.7666666667,23.4371428571,43.1114285714,24.5,41.5,23.7,43.3633333333,22.474,54.954,20.8566666667,1,23.2,40.5242857143,23,47.916,22.6333333333,44.4333333333,18.15,758.05,63.5,5,40,11.05,24.3225078215,24.3225078215 -80,0,23.39,45.59,23.434,43.036,24.5,41.4,23.7,43.23,23.9714285714,80.5485714286,20.6633333333,1,23.2,40.378,23.0571428571,47.7685714286,22.6,44.3633333333,18.2,758.0666666667,62,5,40,10.7666666667,12.7949833986,12.7949833986 -70,0,23.4633333333,45.59,23.4528571429,42.9557142857,24.5,41.3266666667,23.7,43.2,24.456,85.474,20.4666666667,1,23.2,40.2257142857,23.12,48.314,22.6,44.29,18.25,758.0833333333,60.5,5,40,10.4833333333,40.50763509,40.50763509 -90,10,23.5,45.6266666667,23.5,42.878,24.6,41.2,23.7,43.2,23.9685714286,87.2685714286,20.26,1,23.2,40.09,23.2257142857,48.6214285714,22.6,44.2,18.3,758.1,59,5,40,10.2,37.0260440162,37.0260440162 -80,0,23.5,45.6266666667,23.5,42.79,24.6,41.09,23.7,43.2,23.6125,86.69625,20.26,1,23.2,40.0242857143,23.29,48.656,22.6,44.1266666667,18.3166666667,758.0833333333,58.6666666667,5,40,10.1333333333,28.1952402438,28.1952402438 -80,0,23.5,45.56,23.39,42.7,24.6,41.09,23.7,43.1266666667,23.5,83.99,20.0666666667,1,23.2,39.878,23.3471428571,48.3642857143,22.6666666667,44.1633333333,18.3333333333,758.0666666667,58.3333333333,5,40,10.0666666667,46.3196709519,46.3196709519 -70,0,23.5,45.425,23.39,42.7,24.7,41.2,23.7,43.2,23.4685714286,81.3828571429,20,1,23.2,39.79,23.39,47.954,22.6,44.0225,18.35,758.05,58,5,40,10,45.9887116333,45.9887116333 -70,0,23.5666666667,45.3266666667,23.39,42.7,24.7,41.2,23.7,43.1266666667,23.5,79.276,20,1,23.2,39.7,23.39,47.4228571429,22.6,44,18.3666666667,758.0333333333,57.6666666667,5,40,9.9333333333,20.013759518,20.013759518 -80,0,23.6,45.1633333333,23.3471428571,42.6214285714,24.7,41.06,23.7,43,23.4214285714,76.3571428571,19.9,1,23.2,39.6371428571,23.39,46.916,22.6666666667,44.06,18.3833333333,758.0166666667,57.3333333333,5,40,9.8666666667,21.812021127,21.812021127 -70,0,23.6,45.03,23.29,42.59,24.7,41,23.7,43,23.39,73,19.9666666667,1.1933333333,23.2,39.59,23.39,46.5842857143,22.6,44,18.4,758,57,5,40,9.8,33.9455666253,33.9455666253 -60,0,23.6,44.8633333333,23.2771428571,42.5771428571,24.73,40.8633333333,23.7,42.8633333333,23.3757142857,70.3814285714,21.2333333333,1,23.2,39.59,23.412,46.334,22.6,43.9666666667,18.2166666667,758.0166666667,56.8333333333,4.8333333333,40,9.5833333333,18.5845548869,18.5845548869 -60,0,23.6,44.79,23.2,42.5,24.73,40.79,23.7,42.79,23.236,67.478,21.4933333333,1,23.2,39.5,23.4214285714,46.1214285714,22.6666666667,43.9666666667,18.0333333333,758.0333333333,56.6666666667,4.6666666667,40,9.3666666667,11.1949398066,11.1949398066 -70,0,23.6,44.6633333333,23.2,42.5,24.6666666667,40.76,23.6666666667,42.76,23.2,64.8228571429,20.3666666667,1,23.1428571429,39.5,23.39,45.7475,22.6,43.79,17.85,758.05,56.5,4.5,40,9.15,7.0316125639,7.0316125639 -60,0,23.6,44.53,23.1,42.536,24.6,40.76,23.6,42.7,23.16,62.76,19.16,1.1933333333,23.14,39.5,23.39,45.59,22.6,43.79,17.6666666667,758.0666666667,56.3333333333,4.3333333333,40,8.9333333333,13.4939808981,13.4939808981 -70,0,23.5,44.4666666667,23.0428571429,42.5128571429,24.5666666667,40.79,23.6,42.7,23.1,61.0842857143,18.26,2.93,23.1,39.5,23.39,45.59,22.6,43.79,17.4833333333,758.0833333333,56.1666666667,4.1666666667,40,8.7166666667,30.3068652516,30.3068652516 -70,0,23.5,44.3266666667,22.98625,42.6,24.5,40.73,23.6,42.7,23.1,60.176,17.7333333333,4.53,23.1,39.536,23.39,45.59,22.6,43.79,17.3,758.1,56,4,40,8.5,6.1274693464,6.1274693464 -70,0,23.5,44.29,22.89,42.776,24.4633333333,40.7,23.6,42.76,23.0714285714,59.6142857143,17.0333333333,7.5633333333,23.1,39.7042857143,23.39,45.7642857143,22.6,43.9,17.05,758.1,58.1666666667,3.6666666667,40,8.75,41.4191352553,41.4191352553 -70,0,23.5,44.29,22.8185714286,42.9,24.39,40.6266666667,23.6,42.9,23,58.276,16.3666666667,9.63,23.1,39.876,23.39,46.036,22.6,43.9666666667,16.8,758.1,60.3333333333,3.3333333333,40,9,39.0359334648,39.0359334648 -70,0,23.5,44.29,22.7,43.09,24.39,40.59,23.5333333333,42.9,23,57.3128571429,15.6633333333,11.9333333333,23.1,40.0642857143,23.39,46.1528571429,22.6,44,16.55,758.1,62.5,3,40,9.25,19.2766161286,19.2766161286 -80,0,23.5,44.29,22.6571428571,43.2514285714,24.39,40.59,23.5,43.03,22.934,56.44,15.165,14.42,23.1,40.2,23.33,46.218,22.6,44.06,16.3,758.1,64.6666666667,2.6666666667,40,9.5,1.7492576153,1.7492576153 -60,0,23.5,44.4,22.64,43.42,24.39,40.59,23.5,43.09,22.89,55.7285714286,14.7566666667,17.1666666667,23.0571428571,40.2128571429,23.3185714286,46.2514285714,22.6,44.06,16.05,758.1,66.8333333333,2.3333333333,40,9.75,6.5400998923,6.5400998923 -70,0,23.5,44.4,22.5285714286,43.5571428571,24.39,40.59,23.5,43.09,22.89,55.014,14.4633333333,21.1566666667,23.04,40.312,23.29,46.29,22.6,44,15.8,758.1,69,2,40,10,4.3947531143,4.3947531143 -60,0,23.5,44.4,22.5,43.79,24.39,40.59,23.5,43.1633333333,22.89,54.4814285714,14.2566666667,24.0966666667,23,40.4,23.29,46.3842857143,22.5666666667,43.9,15.4166666667,758.1333333333,71.5,1.8333333333,40,10.1333333333,5.8413360501,5.8413360501 -80,10,23.5,44.4,22.4685714286,43.9114285714,24.365,40.6725,23.5,43.23,22.87,54.056,14.0666666667,26.2933333333,23,40.5,23.29,46.42,22.5,43.9,15.0333333333,758.1666666667,74,1.6666666667,40,10.2666666667,25.3072787658,25.3072787658 -70,0,23.5,44.53,22.29,44.134,24.3566666667,40.7,23.5,43.29,22.79,53.6214285714,13.8666666667,27.7,23,40.4428571429,23.3614285714,46.6685714286,22.5,43.9,14.65,758.2,76.5,1.5,40,10.4,24.468318955,24.468318955 -50,0,23.4266666667,44.7233333333,22.254,44.272,24.39,40.8266666667,23.5,43.29,22.79,53.5,13.7633333333,28.93,23,40.334,23.434,47.02,22.5,43.9,14.2666666667,758.2333333333,79,1.3333333333,40,10.5333333333,13.3083385997,13.3083385997 -60,0,23.39,45.19,22.2257142857,44.3985714286,24.39,40.9,23.5,43.29,22.79,53.3514285714,13.5633333333,29.8633333333,23,40.2225,23.5,47.4257142857,22.55,44,13.8833333333,758.2666666667,81.5,1.1666666667,40,10.6666666667,17.6561153145,17.6561153145 -40,0,23.39,45.06,22.18,44.518,24.5,41.1266666667,23.5,43.29,22.79,53.214,13.36,31.1933333333,23,40.1685714286,23.5,47.76,22.5666666667,44.1266666667,13.5,758.3,84,1,40,10.8,2.8752601473,2.8752601473 -60,10,23.39,44.9333333333,22.1,44.6685714286,24.5,41.26,23.4266666667,43.23,22.7514285714,52.9971428571,13.1666666667,32.8,23,40.09,23.5,48.1685714286,22.5,44.26,13.45,758.3,84.3333333333,1,40,10.8166666667,49.8183065909,49.8183065909 -50,0,23.39,44.9,22.06,44.754,24.6,41.4333333333,23.39,43.2,22.736,52.754,13.0666666667,34.4333333333,22.9842857143,40.09,23.5,48.634,22.5333333333,44.3266666667,13.4,758.3,84.6666666667,1,40,10.8333333333,31.7754613585,31.7754613585 -60,0,23.39,44.9,22,44.834,24.6,41.5,23.39,43.2,22.7128571429,52.5857142857,13,35.4933333333,22.934,40.112,23.5,48.8971428571,22.5333333333,44.4666666667,13.35,758.3,85,1,40,10.85,12.9553397303,12.9553397303 -60,0,23.29,44.79,22,44.9985714286,24.7,41.6266666667,23.39,43.2,22.7,52.5,13,36.7333333333,22.9214285714,40.1528571429,23.5,49.138,22.5333333333,44.5,13.3,758.3,85.3333333333,1,40,10.8666666667,5.3687173291,5.3687173291 -50,0,23.29,44.79,21.934,45.112,24.7,41.76,23.39,43.2,22.7,52.3985714286,13,37.86,23,40.2,23.5,49.3971428571,22.5333333333,44.56,13.25,758.3,85.6666666667,1,40,10.8833333333,29.77773475,29.77773475 -50,0,23.29,44.79,21.89,45.24,24.73,41.79,23.39,43.2,22.7,52.2642857143,13.0333333333,39.3,22.9057142857,40.2128571429,23.5,49.67,22.5333333333,44.6266666667,13.2,758.3,86,1,40,10.9,25.0010065734,25.0010065734 -50,0,23.29,44.8633333333,21.8185714286,45.4,24.79,41.79,23.34,43.2225,22.7,52.054,13.16,40.4333333333,22.89,40.29,23.4685714286,50.0528571429,22.6,44.7,13.35,758.25,86.8333333333,1.1666666667,38.1666666667,11.1833333333,11.7396671209,11.7396671209 -50,0,23.26,44.8633333333,21.79,45.536,24.79,41.79,23.3233333333,43.29,22.7,51.6542857143,13.2266666667,41.8633333333,22.89,40.3685714286,23.478,50.478,22.5666666667,44.79,13.5,758.2,87.6666666667,1.3333333333,36.3333333333,11.4666666667,3.0372786452,3.0372786452 -50,0,23.2,44.79,21.79,45.634,24.79,41.8633333333,23.29,43.4,22.7,51.418,13.36,43.0566666667,22.89,40.44,23.39,50.7928571429,22.5666666667,44.8633333333,13.65,758.15,88.5,1.5,34.5,11.75,29.9557669554,29.9557669554 -40,0,23.2,44.9,21.7128571429,45.84,24.79,41.79,23.29,43.4,22.6285714286,51.2257142857,13.345,44.05,22.89,40.5514285714,23.39,51.29,22.6,44.9,13.8,758.1,89.3333333333,1.6666666667,32.6666666667,12.0333333333,21.9522865722,21.9522865722 -30,0,23.2,44.9,21.7,45.978,24.79,41.8633333333,23.29,43.4333333333,22.6,50.9,13.19,44.8666666667,22.89,40.612,23.445,51.4766666667,22.6,44.9666666667,13.95,758.05,90.1666666667,1.8333333333,30.8333333333,12.3166666667,23.3677723794,23.3677723794 -40,0,23.2,44.9333333333,21.7,46.1214285714,24.79,41.9,23.29,43.5,22.6,50.6785714286,13.13,45.5333333333,22.89,40.7,23.445,51.745,22.6,45,14.1,758,91,2,29,12.6,7.8020618996,7.8020618996 -40,0,23.2,45,21.64,46.236,24.79,41.9,23.29,43.5,22.6,50.4,13.0666666667,46.2266666667,22.89,40.7,23.39,52.0357142857,22.6,45.06,14.1,757.95,91,2.1666666667,28.8333333333,12.6166666667,26.9794122083,26.9794122083 -40,0,23.2,45.03,21.6125,46.3175,24.79,41.9333333333,23.29,43.5,22.6,50.1214285714,13,46.7666666667,22.89,40.7385714286,23.39,52.2357142857,22.6,45.2,14.1,757.9,91,2.3333333333,28.6666666667,12.6333333333,8.4004938835,8.4004938835 -60,0,23.2,45.09,21.6,46.45,24.79,42,23.29,43.59,22.6,50,13,47.4566666667,22.89,40.79,23.39,52.332,22.6,45.2,14.1,757.85,91,2.5,28.5,12.65,16.6785313166,16.6785313166 -60,0,23.2,45.1266666667,21.6,46.536,24.79,42.09,23.29,43.6633333333,22.6,49.8985714286,13,48.3233333333,22.89,40.79,23.4214285714,52.5257142857,22.6,45.29,14.1,757.8,91,2.6666666667,28.3333333333,12.6666666667,2.93838816,2.93838816 -50,0,23.1333333333,45.2,21.5428571429,46.6842857143,24.8233333333,42.0666666667,23.29,43.7,22.6,49.714,13.0666666667,48.9266666667,22.89,40.9,23.5,52.46,22.6,45.3633333333,14.1,757.75,91,2.8333333333,28.1666666667,12.6833333333,46.6745486483,46.6745486483 -60,0,23.1,45.23,21.5,46.776,24.89,42.2,23.29,43.76,22.6,49.4971428571,13.0666666667,49.4,22.89,40.9142857143,23.5,52.2857142857,22.6,45.6333333333,14.1,757.7,91,3,28,12.7,45.9494623588,45.9494623588 -50,0,23.1,45.29,21.5,46.9,24.89,42.09,23.26,43.76,22.6,49.2,13.13,50.0666666667,22.89,40.96,23.5,52.16,22.6,45.776,14.1333333333,757.6166666667,90.8333333333,3.1666666667,30,12.6833333333,41.7883451097,41.7883451097 -50,0,23.1,45.29,21.4633333333,46.9666666667,24.89,42.1633333333,23.2,43.76,22.5571428571,49.0542857143,13.19,50.4,22.89,41,23.5,52,22.6,45.9285714286,14.1666666667,757.5333333333,90.6666666667,3.3333333333,32,12.6666666667,20.8804633585,20.8804633585 -50,0,23.1,45.4,21.39,46.9666666667,24.89,42.2,23.2,43.79,22.5,48.918,13.33,50.9633333333,22.89,41.09,23.5,51.96,22.6,46.09,14.2,757.45,90.5,3.5,34,12.65,30.6114262552,30.6114262552 -50,0,23.1,45.4,21.4633333333,47.2,24.89,42.2,23.2,43.79,22.5,48.79,13.39,50.9633333333,22.8614285714,41.1528571429,23.5,51.8371428571,22.6,46.1971428571,14.2333333333,757.3666666667,90.3333333333,3.6666666667,36,12.6333333333,4.5873264084,4.5873264084 -50,0,23,45.4,21.39,47.2,24.89,42.2,23.2,43.9,22.5,48.7,13.36,50.7,22.83,41.134,23.5,51.736,22.66,46.378,14.2666666667,757.2833333333,90.1666666667,3.8333333333,38,12.6166666667,1.503525197,1.503525197 -60,0,23.0666666667,45.5266666667,21.39,47.23,24.89,42.26,23.2,43.9,22.5,48.6057142857,13.3,50.9,22.8328571429,41.1371428571,23.5,51.7,22.6,46.42,14.3,757.2,90,4,40,12.6,25.6994838826,25.6994838826 -50,0,23.1,45.59,21.39,47.3633333333,24.89,42.26,23.2,43.9,22.52,48.536,13.1,50.8,22.89,41.2,23.5,51.59,22.6285714286,46.5257142857,14.2666666667,757.15,90.1666666667,4,40,12.6,16.1726351827,16.1726351827 -60,0,23.0333333333,45.59,21.3566666667,47.4,24.9633333333,42.26,23.2,43.9,22.5285714286,48.4714285714,13.0333333333,50.7266666667,22.8025,41.10375,23.5,51.5385714286,22.64,46.634,14.2333333333,757.1,90.3333333333,4,40,12.6,36.2099540187,36.2099540187 -50,0,23,45.59,21.3566666667,47.4,25,42.29,23.2,43.95,22.54,48.4,12.89,50.93,22.79,41.09,23.5,51.5,22.6571428571,46.7928571429,14.2,757.05,90.5,4,40,12.6,39.2580304062,39.2580304062 -60,0,23,45.59,21.29,47.5,25,42.29,23.2,43.9,22.5142857143,48.3057142857,12.74,50.8175,22.79,41.09,23.5,51.5,22.7,46.92,14.1666666667,757,90.6666666667,4,40,12.6,29.256131989,29.256131989 -60,0,22.9633333333,45.7,21.29,47.5,25,42.29,23.2,43.9,22.5,48.29,12.63,50.7666666667,22.79,41.09,23.5,51.4,22.6571428571,46.9571428571,14.1333333333,756.95,90.8333333333,4,40,12.6,41.222710046,41.222710046 -40,0,22.89,45.7,21.29,47.59,25,42.29,23.2,44,22.5,48.2257142857,12.5,50.9633333333,22.79,41.09,23.5,51.2928571429,22.7,47.134,14.1,756.9,91,4,40,12.6,15.5015222495,15.5015222495 -50,0,22.9266666667,45.79,21.29,47.59,25,42.2,23.2,44,22.5,48.2,12.4266666667,51.2233333333,22.79,41.1371428571,23.478,51.178,22.7,47.2671428571,14.0166666667,756.85,91.1666666667,4,38.1666666667,12.55,19.5818649605,19.5818649605 -50,0,23,45.79,21.23,47.5666666667,25,42.2,23.1333333333,44,22.5,48.2,12.39,51.6333333333,22.79,41.09,23.4685714286,51.1371428571,22.7,47.42,13.9333333333,756.8,91.3333333333,4,36.3333333333,12.5,32.5495768804,32.5495768804 -40,0,22.89,45.73,21.23,47.6266666667,25,42.2,23.2,44,22.5,48.1842857143,12.39,51.9,22.79,41.09,23.5,51.09,22.6571428571,47.4571428571,13.85,756.75,91.5,4,34.5,12.45,34.4155146508,34.4155146508 -60,0,22.9633333333,45.79,21.29,47.745,25,42.2,23.1,44,22.5,48.09,12.36,51.9333333333,22.79,41.2,23.5,51.0257142857,22.7,47.536,13.7666666667,756.7,91.6666666667,4,32.6666666667,12.4,28.7352362648,28.7352362648 -50,0,22.89,45.8266666667,21.2,47.7,25,42.23,23.1,43.9333333333,22.5,48.0642857143,12.3,52.1933333333,22.79,41.2,23.5,51,22.7,47.7357142857,13.6833333333,756.65,91.8333333333,4,30.8333333333,12.35,36.7533845012,36.7533845012 -60,0,22.89,45.9,21.2,47.76,25,42.2675,23.1333333333,44,22.5,48,12.19,52.03,22.79,41.134,23.5,50.96,22.7,47.79,13.6,756.6,92,4,29,12.3,27.8101568576,27.8101568576 -60,0,22.89,45.9,21.2,47.79,25,42.26,23.1333333333,44,22.5,48,12.19,51.9633333333,22.79,41.09,23.5,50.9,22.7,47.79,13.4666666667,756.5666666667,92.3333333333,3.8333333333,28.1666666667,12.2333333333,38.0622085882,38.0622085882 -60,0,22.89,45.9,21.2,47.79,25,42.26,23.1,44,22.5,48,12.1,52.23,22.79,41.09,23.5,50.834,22.7,47.79,13.3333333333,756.5333333333,92.6666666667,3.6666666667,27.3333333333,12.1666666667,7.1533504524,7.1533504524 -50,0,22.89,45.9,21.1,47.8266666667,25.0666666667,42.2,23.1,44,22.5,47.9285714286,12.1,52.3633333333,22.79,41.09,23.5,50.73,22.7,47.79,13.2,756.5,93,3.5,26.5,12.1,33.498942398,33.498942398 -60,0,22.89,45.9,21.1,47.9,25.1,42.2,23.1,44,22.5,47.9,12.19,52.8266666667,22.79,41.09,23.5,50.6528571429,22.7,47.812,13.0666666667,756.4666666667,93.3333333333,3.3333333333,25.6666666667,12.0333333333,39.154184761,39.154184761 -50,0,22.89,45.9,21.1,47.9333333333,25.1,42.2,23.1,44,22.5,47.9,12.19,53.0266666667,22.79,41.09,23.5,50.5642857143,22.7,47.9,12.9333333333,756.4333333333,93.6666666667,3.1666666667,24.8333333333,11.9666666667,47.1106358687,47.1106358687 -70,0,22.89,45.9,21.1,48,25.1,42.2,23.1,43.9666666667,22.5,47.9,12.2266666667,53.23,22.79,41.09,23.39,50.334,22.7,47.94,12.8,756.4,94,3,24,11.9,49.6997081791,49.6997081791 -40,0,22.89,45.9,21.1,48.03,25.1,42.2,23.1,43.9666666667,22.4685714286,47.8685714286,12.36,53.43,22.79,41.09,23.39,50.334,22.7385714286,48.0514285714,12.8333333333,756.4,94,3.1666666667,24.1666666667,11.9333333333,20.7820783369,20.7820783369 -50,0,22.89,45.9,21.1,48.09,25.1,42.2,23.1,44,22.5,47.9,12.4266666667,53.6566666667,22.79,41.09,23.39,50.6385714286,22.7675,48.10375,12.8666666667,756.4,94,3.3333333333,24.3333333333,11.9666666667,4.1972229723,4.1972229723 -50,0,22.89,45.9666666667,21,48,25.1,42.2,23.1,44,22.5,47.8528571429,12.5666666667,53.8633333333,22.79,41.09,23.39,50.812,22.79,48.218,12.9,756.4,94,3.5,24.5,12,26.137719804,26.137719804 -50,0,22.89,46,21.0666666667,48.1333333333,25.1,42.23,23.1,44,22.5,47.856,12.79,54.1,22.79,41.09,23.39,50.9,22.79,48.29,12.9333333333,756.4,94,3.6666666667,24.6666666667,12.0333333333,14.7874048562,14.7874048562 -50,0,22.89,46,21.1,48.2,25.1,42.23,23.1,44,22.5,47.8214285714,13.0333333333,54.2666666667,22.79,41.1528571429,23.39,50.9,22.79,48.4,12.9666666667,756.4,94,3.8333333333,24.8333333333,12.0666666667,25.662475836,25.662475836 -50,0,22.8566666667,45.9666666667,21.1,48.26,25.1,42.2,23.0333333333,43.9333333333,22.5,47.79,13.16,54.4,22.79,41.2,23.39,50.98,22.79,48.4571428571,13,756.4,94,4,25,12.1,10.1073930273,10.1073930273 -60,0,22.8566666667,45.9666666667,21.1,48.26,25.1,42.2,23.0666666667,44,22.4842857143,47.8371428571,13.4266666667,54.5666666667,22.79,41.2385714286,23.39,51,22.79,48.5,13.0833333333,756.4166666667,94,4,25,12.1833333333,45.3129121801,45.3129121801 -60,0,22.89,46,21.1666666667,48.2,25.1,42.2,23.0666666667,44.06,22.412,47.876,13.5666666667,54.7,22.736,41.2,23.39,51,22.79,48.5642857143,13.1666666667,756.4333333333,94,4,25,12.2666666667,43.305306125,43.305306125 -50,0,22.89,46,21.2,48.09,25.1,42.2,23,44,22.4685714286,48.0385714286,13.7566666667,54.73,22.7642857143,41.2771428571,23.39,51.094,22.79,48.634,13.25,756.45,94,4,25,12.35,46.9959987677,46.9959987677 -60,0,22.8233333333,45.9333333333,21.2,48.09,25.1,42.1266666667,23,44.06,22.5,48.2,14.03,54.79,22.79,41.29,23.39,51.2,22.79,48.7514285714,13.3333333333,756.4666666667,94,4,25,12.4333333333,29.113505967,29.113505967 -80,0,22.89,46,21.29,48.1633333333,25.1666666667,42.2,23.0666666667,44.1633333333,22.5,48.2,14.2566666667,54.7,22.7771428571,41.3371428571,23.39,51.4616666667,22.79,48.932,13.4166666667,756.4833333333,94,4,25,12.5166666667,3.7232140894,3.7232140894 -80,0,22.8233333333,46.1,21.315,48.09,25.1666666667,42.06,23,44.1633333333,22.5,48.178,14.53,54.7,22.7642857143,41.5285714286,23.39,51.634,22.79,49.6214285714,13.5,756.5,94,4,25,12.6,10.9677491011,10.9677491011 -50,0,22.89,46.6333333333,21.4633333333,48.2233333333,25.0333333333,42,23,44.23,22.5,48.0642857143,14.8666666667,54.4666666667,22.736,41.94,23.39,51.6725,22.79,49.94,13.6666666667,756.4666666667,93.5,4,25.1666666667,12.6833333333,3.9836095762,3.9836095762 -50,0,23,46.9633333333,21.6333333333,48.29,24.89,42,23.0666666667,44.3633333333,22.5,47.96,15.2,54.3266666667,22.7514285714,42.1914285714,23.39,51.5133333333,22.8042857143,50,13.8333333333,756.4333333333,93,4,25.3333333333,12.7666666667,23.3120973106,23.3120973106 -60,0,23,47.2233333333,21.76,48.29,24.89,42.1266666667,23.0666666667,44.4666666667,22.5,47.9571428571,15.7933333333,53.6266666667,22.754,42.394,23.33,51.4,22.89,49.98,14,756.4,92.5,4,25.5,12.85,38.5602736147,38.5602736147 -50,0,23,47.495,22.0666666667,48.3633333333,24.89,42.26,23.0666666667,44.5266666667,22.5,48,16.26,51.2933333333,22.79,42.6214285714,23.34,51.4,22.89,49.7957142857,14.1666666667,756.3666666667,92,4,25.6666666667,12.9333333333,5.1826399402,5.1826399402 -50,0,23.1,47.86,22.4,48.29,24.79,42.23,23.0666666667,44.59,22.5,48.1214285714,16.8333333333,48.66,22.754,42.834,23.3733333333,51.5583333333,22.89,49.514,14.3333333333,756.3333333333,91.5,4,25.8333333333,13.0166666667,8.5493813152,8.5493813152 -80,0,23.1,48.06,23.13,47.7966666667,24.79,42.43,23.0666666667,44.7233333333,22.412,48.334,17.3666666667,45.4666666667,22.7385714286,43.0371428571,23.39,51.554,22.89,48.9342857143,14.5,756.3,91,4,26,13.1,27.1595502039,27.1595502039 -330,10,23.1,48.4566666667,23.6566666667,47.1966666667,24.6666666667,42.9666666667,23.1,45.03,22.4816666667,48.695,18.2333333333,38.1966666667,22.79,43.156,23.39,51.4,22.89,48.494,14.7333333333,756.3166666667,90,4,26.5,13.15,1.6181592247,1.6181592247 -280,0,23.1,48.8633333333,24.23,46.46,24.46,43.6933333333,23.1666666667,45.1633333333,22.39,48.976,18.76,31.6633333333,22.79,43.2257142857,23.39,51.4816666667,22.89,48.1942857143,14.9666666667,756.3333333333,89,4,27,13.2,17.6758135087,17.6758135087 -130,0,23.0666666667,49.0666666667,24.4966666667,45.7933333333,24.29,44.4633333333,23.2,45.4633333333,22.434,49.214,19.2666666667,28.7333333333,22.79,43.334,23.39,51.832,22.956,47.9,15.2,756.35,88,4,27.5,13.25,47.5328545901,47.5328545901 -330,0,23.0666666667,49.3333333333,24.8933333333,45.0333333333,24.29,44.59,23.26,45.7966666667,22.5,49.5283333333,19.9333333333,26,22.79,43.4,23.4685714286,52.3242857143,22.89,47.8842857143,15.4333333333,756.3666666667,87,4,28,13.3,32.2300861357,32.2300861357 -100,0,23,49.3266666667,25.2266666667,44.2933333333,24.3233333333,44.2966666667,23.29,46.6,22.434,49.67,20.4266666667,20.4966666667,22.79,43.46,23.5,52.46,22.89,47.754,15.6666666667,756.3833333333,86,4,28.5,13.35,27.0864443271,27.0864443271 -100,0,23,49.6,25.5666666667,43.5333333333,24.39,44.2966666667,23.29,47.27,22.4633333333,49.8633333333,20.82,17.4175,22.79,43.5,23.4057142857,51.8828571429,22.9371428571,47.7257142857,15.9,756.4,85,4,29,13.4,41.5824022726,41.5824022726 -80,0,23.0666666667,49.76,25.8266666667,42.9266666667,24.29,44.5,23.29,47.56,22.445,49.93,21.26,14.3933333333,22.79,43.59,23.39,51.398,23,47.59,16.15,756.3833333333,83.6666666667,4.1666666667,28.8333333333,13.3833333333,42.0100384275,42.0100384275 -90,0,23,49.76,25.8566666667,42.53,24.3566666667,44.36,23.4266666667,47.5,22.478,50.094,21.86,12.0966666667,22.8328571429,43.6914285714,23.37,51.236,23,47.57,16.4,756.3666666667,82.3333333333,4.3333333333,28.6666666667,13.3666666667,25.2915590885,25.2915590885 -390,0,23,50.1266666667,25.79,42.73,24.39,44.29,23.5,47.4333333333,22.5,50.26,22.0666666667,9.9633333333,22.85,43.82,23.3328571429,51.2,23,47.48,16.65,756.35,81,4.5,28.5,13.35,8.764897252,8.764897252 -790,0,23,50.26,25.53,43.1333333333,24.39,44.49,23.6,47.26,22.5,50.4316666667,22.2,7.4933333333,22.89,43.9,23.29,51.09,23,47.4625,16.9,756.3333333333,79.6666666667,4.6666666667,28.3333333333,13.3333333333,44.8563567712,44.8563567712 -410,0,23,50.26,25.2633333333,43.6,24.46,45.3933333333,23.5333333333,47.2,22.5,50.5,22.26,6.8266666667,22.89,43.9,23.29,51.0385714286,23,47.4,17.15,756.3166666667,78.3333333333,4.8333333333,28.1666666667,13.3166666667,46.4299092302,46.4299092302 -270,0,22.9266666667,50.26,24.9633333333,44.2666666667,24.7933333333,46.4666666667,23.5333333333,47.1566666667,22.5,50.5225,22.2,5.53,22.89,43.9,23.29,50.98,23,47.4,17.4,756.3,77,5,28,13.3,47.0849113888,47.0849113888 -340,0,23,50.3633333333,24.89,44.4,25.2633333333,46.9333333333,23.6,47.29,22.5,50.59,22.4,5.53,22.89,43.9,23.29,50.8685714286,23,47.4,17.5833333333,756.2666666667,75.3333333333,5.1666666667,30,13.1333333333,33.419094258,33.419094258 -270,0,23,50.49,25.1,44.145,25.4633333333,46.86,23.6333333333,47.1266666667,22.5,50.59,22.4266666667,4.2333333333,22.89,43.9,23.29,50.79,23,47.378,17.7666666667,756.2333333333,73.6666666667,5.3333333333,32,12.9666666667,37.3301960179,37.3301960179 -340,0,23,50.6933333333,25.3233333333,43.5633333333,25.7,46.2666666667,23.7,47.0666666667,22.5,50.545,22.6933333333,3.3666666667,23,43.79,23.2128571429,50.6371428571,23,47.29,17.95,756.2,72,5.5,34,12.8,19.3389324239,19.3389324239 -610,0,23,50.6933333333,25.3233333333,43.23,25.6725,45.7925,23.7,46.76,22.5,50.5,22.9633333333,2.1933333333,23,43.79,23.218,50.518,23,47.2,18.1333333333,756.1666666667,70.3333333333,5.6666666667,36,12.6333333333,13.4017280652,13.4017280652 -470,0,23.1,51,25.1,43.6333333333,25.79,45.4633333333,23.7,46.5666666667,22.5,50.5,22.9633333333,2.1933333333,23,43.79,23.2257142857,50.5257142857,23,47.2,18.3166666667,756.1333333333,68.6666666667,5.8333333333,38,12.4666666667,32.578195876,32.578195876 -110,0,23.05,50.9675,25.0333333333,44.2333333333,25.79,44.99,23.73,46.29,22.5,50.575,23.1333333333,2.16,23,43.8214285714,23.2,50.5,23,47.178,18.5,756.1,67,6,40,12.3,49.3712307536,49.3712307536 -590,0,23.1,51.6233333333,25.1,44.4,25.79,44.8633333333,23.79,46.6233333333,22.575,50.7225,23.26,1.7,23.05,43.95,23.2,50.5928571429,23,47.09,18.6333333333,756.0333333333,66.6666666667,6.1666666667,40,12.3333333333,46.2428880506,46.2428880506 -720,0,23.1,51.99,25.1,44.4,25.9266666667,45.2333333333,23.79,47,22.54,50.812,23.1333333333,1.3333333333,23.0714285714,44.01,23.2,50.7,23,47.09,18.7666666667,755.9666666667,66.3333333333,6.3333333333,40,12.3666666667,0.2824911615,0.2824911615 -600,0,23.1527142857,51.8258571429,25.1,44.3438095238,25.9414761905,45.120952381,23.79,47,22.5,50.9,23,1,23.102244898,43.9473571429,23.2257142857,50.6428571429,23.0028571429,47.0702857143,18.9,755.9,66,6.5,40,12.4,33.4538997151,33.4538997151 -260,0,23.2054285714,51.6617142857,25.1,44.2876190476,25.9562857143,45.0085714286,23.8020588235,46.9411764706,22.5191176471,50.9049264706,23.0735294118,1,23.1330612245,43.8847142857,23.2514285714,50.5857142857,23.0057142857,47.0505714286,19.0333333333,755.8333333333,65.6666666667,6.6666666667,40,12.4333333333,5.645198049,5.645198049 -310,0,23.2581428571,51.4975714286,25.1,44.2314285714,25.9710952381,44.8961904762,23.8141176471,46.8823529412,22.5382352941,50.9098529412,23.1470588235,1,23.163877551,43.8220714286,23.2771428571,50.5285714286,23.0085714286,47.0308571429,19.1666666667,755.7666666667,65.3333333333,6.8333333333,40,12.4666666667,38.913267327,38.913267327 -270,0,23.3108571429,51.3334285714,25.1,44.1752380952,25.9859047619,44.7838095238,23.8261764706,46.8235294118,22.5573529412,50.9147794118,23.2205882353,1,23.1946938776,43.7594285714,23.3028571429,50.4714285714,23.0114285714,47.0111428571,19.3,755.7,65,7,40,12.5,5.8848623303,5.8848623303 -250,0,23.3635714286,51.1692857143,25.1,44.119047619,26.0007142857,44.6714285714,23.8382352941,46.7647058824,22.5764705882,50.9197058824,23.2941176471,1,23.2255102041,43.6967857143,23.3285714286,50.4142857143,23.0142857143,46.9914285714,19.4333333333,755.6166666667,64.8333333333,7,40,12.5833333333,44.5932039642,44.5932039642 -270,0,23.4162857143,51.0051428571,25.1,44.0628571429,26.0155238095,44.559047619,23.8502941176,46.7058823529,22.5955882353,50.9246323529,23.3676470588,1,23.2563265306,43.6341428571,23.3542857143,50.3571428571,23.0171428571,46.9717142857,19.5666666667,755.5333333333,64.6666666667,7,40,12.6666666667,10.2427009726,10.2427009726 -230,0,23.469,50.841,25.1,44.0066666667,26.0303333333,44.4466666667,23.8623529412,46.6470588235,22.6147058824,50.9295588235,23.4411764706,1,23.2871428571,43.5715,23.38,50.3,23.02,46.952,19.7,755.45,64.5,7,40,12.75,41.802799236,41.802799236 -200,0,23.5217142857,50.6768571429,25.1,43.9504761905,26.0451428571,44.3342857143,23.8744117647,46.5882352941,22.6338235294,50.9344852941,23.5147058824,1,23.3179591837,43.5088571429,23.4057142857,50.2428571429,23.0228571429,46.9322857143,19.8333333333,755.3666666667,64.3333333333,7,40,12.8333333333,17.7516684867,17.7516684867 -150,0,23.5744285714,50.5127142857,25.1,43.8942857143,26.059952381,44.2219047619,23.8864705882,46.5294117647,22.6529411765,50.9394117647,23.5882352941,1,23.3487755102,43.4462142857,23.4314285714,50.1857142857,23.0257142857,46.9125714286,19.9666666667,755.2833333333,64.1666666667,7,40,12.9166666667,34.4425585121,34.4425585121 -80,0,23.6271428571,50.3485714286,25.1,43.8380952381,26.0747619048,44.1095238095,23.8985294118,46.4705882353,22.6720588235,50.9443382353,23.6617647059,1,23.3795918367,43.3835714286,23.4571428571,50.1285714286,23.0285714286,46.8928571429,20.1,755.2,64,7,40,13,24.3800026248,24.3800026248 -550,10,23.6798571429,50.1844285714,25.1,43.7819047619,26.0895714286,43.9971428571,23.9105882353,46.4117647059,22.6911764706,50.9492647059,23.7352941176,1,23.4104081633,43.3209285714,23.4828571429,50.0714285714,23.0314285714,46.8731428571,20.3333333333,755.1666666667,62.8333333333,7,40,12.9333333333,22.1379444934,22.1379444934 -620,0,23.7325714286,50.0202857143,25.1,43.7257142857,26.1043809524,43.8847619048,23.9226470588,46.3529411765,22.7102941176,50.9541911765,23.8088235294,1,23.4412244898,43.2582857143,23.5085714286,50.0142857143,23.0342857143,46.8534285714,20.5666666667,755.1333333333,61.6666666667,7,40,12.8666666667,47.5820276421,47.5820276421 -250,0,23.7852857143,49.8561428571,25.1,43.6695238095,26.1191904762,43.7723809524,23.9347058824,46.2941176471,22.7294117647,50.9591176471,23.8823529412,1,23.4720408163,43.1956428571,23.5342857143,49.9571428571,23.0371428571,46.8337142857,20.8,755.1,60.5,7,40,12.8,35.9086262528,35.9086262528 -300,0,23.838,49.692,25.1,43.6133333333,26.134,43.66,23.9467647059,46.2352941176,22.7485294118,50.9640441176,23.9558823529,1,23.5028571429,43.133,23.56,49.9,23.04,46.814,21.0333333333,755.0666666667,59.3333333333,7,40,12.7333333333,24.3391596247,24.3391596247 -260,0,23.8907142857,49.5278571429,25.1,43.5571428571,26.1488095238,43.5476190476,23.9588235294,46.1764705882,22.7676470588,50.9689705882,24.0294117647,1,23.5336734694,43.0703571429,23.5857142857,49.8428571429,23.0428571429,46.7942857143,21.2666666667,755.0333333333,58.1666666667,7,40,12.6666666667,22.9466845398,22.9466845398 -220,0,23.9434285714,49.3637142857,25.1,43.500952381,26.1636190476,43.4352380952,23.9708823529,46.1176470588,22.7867647059,50.9738970588,24.1029411765,1,23.5644897959,43.0077142857,23.6114285714,49.7857142857,23.0457142857,46.7745714286,21.5,755,57,7,40,12.6,41.9062635046,41.9062635046 -270,10,23.9961428571,49.1995714286,25.1,43.4447619048,26.1784285714,43.3228571429,23.9829411765,46.0588235294,22.8058823529,50.9788235294,24.1764705882,1,23.5953061224,42.9450714286,23.6371428571,49.7285714286,23.0485714286,46.7548571429,21.6,754.9666666667,56.8333333333,7,40,12.6333333333,43.870771199,43.870771199 -220,0,24.0488571429,49.0354285714,25.1,43.3885714286,26.1932380952,43.2104761905,23.995,46,22.825,50.98375,24.25,1,23.626122449,42.8824285714,23.6628571429,49.6714285714,23.0514285714,46.7351428571,21.7,754.9333333333,56.6666666667,7,40,12.6666666667,36.7854889715,36.7854889715 -110,0,24.1015714286,48.8712857143,25.1,43.3323809524,26.208047619,43.0980952381,24.0070588235,45.9411764706,22.8441176471,50.9886764706,24.3235294118,1,23.6569387755,42.8197857143,23.6885714286,49.6142857143,23.0542857143,46.7154285714,21.8,754.9,56.5,7,40,12.7,7.3928925092,7.3928925092 -480,0,24.1542857143,48.7071428571,25.1,43.2761904762,26.2228571429,42.9857142857,24.0191176471,45.8823529412,22.8632352941,50.9936029412,24.3970588235,1,23.687755102,42.7571428571,23.7142857143,49.5571428571,23.0571428571,46.6957142857,21.9,754.8666666667,56.3333333333,7,40,12.7333333333,21.3990454329,21.3990454329 -520,0,24.207,48.543,25.1,43.22,26.2376666667,42.8733333333,24.0311764706,45.8235294118,22.8823529412,50.9985294118,24.4705882353,1,23.7185714286,42.6945,23.74,49.5,23.06,46.676,22,754.8333333333,56.1666666667,7,40,12.7666666667,9.673157474,9.673157474 -380,0,24.2597142857,48.3788571429,25.1,43.1638095238,26.2524761905,42.760952381,24.0432352941,45.7647058824,22.9014705882,51.0034558824,24.5441176471,1,23.7493877551,42.6318571429,23.7657142857,49.4428571429,23.0628571429,46.6562857143,22.1,754.8,56,7,40,12.8,27.5503332261,27.5503332261 -550,0,24.3124285714,48.2147142857,25.1,43.1076190476,26.2672857143,42.6485714286,24.0552941176,45.7058823529,22.9205882353,51.0083823529,24.6176470588,1,23.7802040816,42.5692142857,23.7914285714,49.3857142857,23.0657142857,46.6365714286,22.2,754.7166666667,55,7,40,12.6166666667,7.2353897383,7.2353897383 -540,0,24.3651428571,48.0505714286,25.1,43.0514285714,26.2820952381,42.5361904762,24.0673529412,45.6470588235,22.9397058824,51.0133088235,24.6911764706,1,23.8110204082,42.5065714286,23.8171428571,49.3285714286,23.0685714286,46.6168571429,22.3,754.6333333333,54,7,40,12.4333333333,8.6031442275,8.6031442275 -340,10,24.4178571429,47.8864285714,25.1,42.9952380952,26.2969047619,42.4238095238,24.0794117647,45.5882352941,22.9588235294,51.0182352941,24.7647058824,1,23.8418367347,42.4439285714,23.8428571429,49.2714285714,23.0714285714,46.5971428571,22.4,754.55,53,7,40,12.25,1.4417831786,1.4417831786 -220,0,24.4705714286,47.7222857143,25.1,42.939047619,26.3117142857,42.3114285714,24.0914705882,45.5294117647,22.9779411765,51.0231617647,24.8382352941,1,23.8726530612,42.3812857143,23.8685714286,49.2142857143,23.0742857143,46.5774285714,22.5,754.4666666667,52,7,40,12.0666666667,43.8598799519,43.8598799519 -140,0,24.5232857143,47.5581428571,25.1,42.8828571429,26.3265238095,42.199047619,24.1035294118,45.4705882353,22.9970588235,51.0280882353,24.9117647059,1,23.9034693878,42.3186428571,23.8942857143,49.1571428571,23.0771428571,46.5577142857,22.6,754.3833333333,51,7,40,11.8833333333,15.0664467597,15.0664467597 -110,0,24.576,47.394,25.1,42.8266666667,26.3413333333,42.0866666667,24.1155882353,45.4117647059,23.0161764706,51.0330147059,24.9852941176,1,23.9342857143,42.256,23.92,49.1,23.08,46.538,22.7,754.3,50,7,40,11.7,35.3921045666,35.3921045666 -90,0,24.6287142857,47.2298571429,25.1,42.7704761905,26.3561428571,41.9742857143,24.1276470588,45.3529411765,23.0352941176,51.0379411765,25.0588235294,1,23.9651020408,42.1933571429,23.9457142857,49.0428571429,23.0828571429,46.5182857143,22.7666666667,754.25,49.8333333333,7,40,11.7333333333,28.0058292439,28.0058292439 -110,10,24.6814285714,47.0657142857,25.1,42.7142857143,26.370952381,41.8619047619,24.1397058824,45.2941176471,23.0544117647,51.0428676471,25.1323529412,1,23.9959183673,42.1307142857,23.9714285714,48.9857142857,23.0857142857,46.4985714286,22.8333333333,754.2,49.6666666667,7,40,11.7666666667,0.6653680932,0.6653680932 -100,0,24.7341428571,46.9015714286,25.1,42.6580952381,26.3857619048,41.7495238095,24.1517647059,45.2352941176,23.0735294118,51.0477941176,25.2058823529,1,24.0267346939,42.0680714286,23.9971428571,48.9285714286,23.0885714286,46.4788571429,22.9,754.15,49.5,7,40,11.8,10.4463340947,10.4463340947 -90,0,24.7868571429,46.7374285714,25.1,42.6019047619,26.4005714286,41.6371428571,24.1638235294,45.1764705882,23.0926470588,51.0527205882,25.2794117647,1,24.0575510204,42.0054285714,24.0228571429,48.8714285714,23.0914285714,46.4591428571,22.9666666667,754.1,49.3333333333,7,40,11.8333333333,42.6165905083,42.6165905083 -100,0,24.8395714286,46.5732857143,25.1,42.5457142857,26.4153809524,41.5247619048,24.1758823529,45.1176470588,23.1117647059,51.0576470588,25.3529411765,1,24.0883673469,41.9427857143,24.0485714286,48.8142857143,23.0942857143,46.4394285714,23.0333333333,754.05,49.1666666667,7,40,11.8666666667,26.1233671219,26.1233671219 -120,0,24.8922857143,46.4091428571,25.1,42.4895238095,26.4301904762,41.4123809524,24.1879411765,45.0588235294,23.1308823529,51.0625735294,25.4264705882,1,24.1191836735,41.8801428571,24.0742857143,48.7571428571,23.0971428571,46.4197142857,23.1,754,49,7,40,11.9,49.8571678763,49.8571678763 -110,0,24.945,46.245,25.1,42.4333333333,26.445,41.3,24.2,45,23.15,51.0675,25.5,1,24.15,41.8175,24.1,48.7,23.1,46.4,23.05,753.9333333333,49.8333333333,6.8333333333,40,12.0833333333,1.9979372271,1.9979372271 -90,0,24.89,46.4,25.0828828829,42.5383483483,26.39,41.4,24.1954954955,45.0422522523,23.145045045,51.101036036,25.430990991,1.4616666667,24.1441441441,41.8632882883,24.1,48.7,23.1,46.4,23,753.8666666667,50.6666666667,6.6666666667,40,12.2666666667,32.0223274641,32.0223274641 -80,0,24.8854545455,46.4699090909,25.0657657658,42.6433633634,26.4000909091,41.4554545455,24.190990991,45.0845045045,23.1400900901,51.1345720721,25.361981982,1.9233333333,24.1382882883,41.9090765766,24.1071818182,48.7572727273,23.1017272727,46.4454545455,22.95,753.8,51.5,6.5,40,12.45,16.8403109885,16.8403109885 -90,10,24.8809090909,46.5398181818,25.0486486486,42.7483783784,26.4101818182,41.5109090909,24.1864864865,45.1267567568,23.1351351351,51.1681081081,25.292972973,2.385,24.1324324324,41.9548648649,24.1143636364,48.8145454545,23.1034545455,46.4909090909,22.9,753.7333333333,52.3333333333,6.3333333333,40,12.6333333333,8.9039236889,8.9039236889 -80,0,24.8763636364,46.6097272727,25.0315315315,42.8533933934,26.4202727273,41.5663636364,24.181981982,45.169009009,23.1301801802,51.2016441441,25.223963964,2.8466666667,24.1265765766,42.0006531532,24.1215454545,48.8718181818,23.1051818182,46.5363636364,22.85,753.6666666667,53.1666666667,6.1666666667,40,12.8166666667,12.9706185893,12.9706185893 -150,0,24.8718181818,46.6796363636,25.0144144144,42.9584084084,26.4303636364,41.6218181818,24.1774774775,45.2112612613,23.1252252252,51.2351801802,25.154954955,3.3083333333,24.1207207207,42.0464414414,24.1287272727,48.9290909091,23.1069090909,46.5818181818,22.8,753.6,54,6,40,13,32.8758795164,32.8758795164 -130,0,24.8672727273,46.7495454545,24.9972972973,43.0634234234,26.4404545455,41.6772727273,24.172972973,45.2535135135,23.1202702703,51.2687162162,25.0859459459,3.77,24.1148648649,42.0922297297,24.1359090909,48.9863636364,23.1086363636,46.6272727273,22.6833333333,753.55,54.3333333333,6.1666666667,40,13,30.5872357101,30.5872357101 -120,10,24.8627272727,46.8194545455,24.9801801802,43.1684384384,26.4505454545,41.7327272727,24.1684684685,45.2957657658,23.1153153153,51.3022522523,25.0169369369,4.2316666667,24.109009009,42.138018018,24.1430909091,49.0436363636,23.1103636364,46.6727272727,22.5666666667,753.5,54.6666666667,6.3333333333,40,13,37.3846890172,37.3846890172 -120,0,24.8581818182,46.8893636364,24.9630630631,43.2734534535,26.4606363636,41.7881818182,24.163963964,45.338018018,23.1103603604,51.3357882883,24.9479279279,4.6933333333,24.1031531532,42.1838063063,24.1502727273,49.1009090909,23.1120909091,46.7181818182,22.45,753.45,55,6.5,40,13,31.6257073893,31.6257073893 -120,0,24.8536363636,46.9592727273,24.9459459459,43.3784684685,26.4707272727,41.8436363636,24.1594594595,45.3802702703,23.1054054054,51.3693243243,24.8789189189,5.155,24.0972972973,42.2295945946,24.1574545455,49.1581818182,23.1138181818,46.7636363636,22.3333333333,753.4,55.3333333333,6.6666666667,40,13,18.1428116048,18.1428116048 -110,10,24.8490909091,47.0291818182,24.9288288288,43.4834834835,26.4808181818,41.8990909091,24.154954955,45.4225225225,23.1004504505,51.4028603604,24.8099099099,5.6166666667,24.0914414414,42.2753828829,24.1646363636,49.2154545455,23.1155454545,46.8090909091,22.2166666667,753.35,55.6666666667,6.8333333333,40,13,24.4234270882,24.4234270882 -110,10,24.8445454545,47.0990909091,24.9117117117,43.5884984985,26.4909090909,41.9545454545,24.1504504505,45.4647747748,23.0954954955,51.4363963964,24.7409009009,6.0783333333,24.0855855856,42.3211711712,24.1718181818,49.2727272727,23.1172727273,46.8545454545,22.1,753.3,56,7,40,13,21.1649081088,21.1649081088 -110,10,24.84,47.169,24.8945945946,43.6935135135,26.501,42.01,24.1459459459,45.507027027,23.0905405405,51.4699324324,24.6718918919,6.54,24.0797297297,42.3669594595,24.179,49.33,23.119,46.9,21.8666666667,753.2166666667,57.1666666667,6.5,40,13.0666666667,24.3824010831,24.3824010831 -110,10,24.8354545455,47.2389090909,24.8774774775,43.7985285285,26.5110909091,42.0654545455,24.1414414414,45.5492792793,23.0855855856,51.5034684685,24.6028828829,7.0016666667,24.0738738739,42.4127477477,24.1861818182,49.3872727273,23.1207272727,46.9454545455,21.6333333333,753.1333333333,58.3333333333,6,40,13.1333333333,12.3654570547,12.3654570547 -110,10,24.8309090909,47.3088181818,24.8603603604,43.9035435435,26.5211818182,42.1209090909,24.1369369369,45.5915315315,23.0806306306,51.5370045045,24.5338738739,7.4633333333,24.068018018,42.458536036,24.1933636364,49.4445454545,23.1224545455,46.9909090909,21.4,753.05,59.5,5.5,40,13.2,30.6077228859,30.6077228859 -110,10,24.8263636364,47.3787272727,24.8432432432,44.0085585586,26.5312727273,42.1763636364,24.1324324324,45.6337837838,23.0756756757,51.5705405405,24.4648648649,7.925,24.0621621622,42.5043243243,24.2005454545,49.5018181818,23.1241818182,47.0363636364,21.1666666667,752.9666666667,60.6666666667,5,40,13.2666666667,17.7243287442,17.7243287442 -100,10,24.8218181818,47.4486363636,24.8261261261,44.1135735736,26.5413636364,42.2318181818,24.1279279279,45.676036036,23.0707207207,51.6040765766,24.3958558559,8.3866666667,24.0563063063,42.5501126126,24.2077272727,49.5590909091,23.1259090909,47.0818181818,20.9333333333,752.8833333333,61.8333333333,4.5,40,13.3333333333,18.8237820985,18.8237820985 -110,10,24.8172727273,47.5185454545,24.809009009,44.2185885886,26.5514545455,42.2872727273,24.1234234234,45.7182882883,23.0657657658,51.6376126126,24.3268468468,8.8483333333,24.0504504505,42.5959009009,24.2149090909,49.6163636364,23.1276363636,47.1272727273,20.7,752.8,63,4,40,13.4,25.3116437234,25.3116437234 -100,20,24.8127272727,47.5884545455,24.7918918919,44.3236036036,26.5615454545,42.3427272727,24.1189189189,45.7605405405,23.0608108108,51.6711486486,24.2578378378,9.31,24.0445945946,42.6416891892,24.2220909091,49.6736363636,23.1293636364,47.1727272727,20.3833333333,752.85,65.1666666667,3.6666666667,40,13.5666666667,18.9926668769,18.9926668769 -100,10,24.8081818182,47.6583636364,24.7747747748,44.4286186186,26.5716363636,42.3981818182,24.1144144144,45.8027927928,23.0558558559,51.7046846847,24.1888288288,9.7716666667,24.0387387387,42.6874774775,24.2292727273,49.7309090909,23.1310909091,47.2181818182,20.0666666667,752.9,67.3333333333,3.3333333333,40,13.7333333333,0.3747959854,0.3747959854 -100,0,24.8036363636,47.7282727273,24.7576576577,44.5336336336,26.5817272727,42.4536363636,24.1099099099,45.845045045,23.0509009009,51.7382207207,24.1198198198,10.2333333333,24.0328828829,42.7332657658,24.2364545455,49.7881818182,23.1328181818,47.2636363636,19.75,752.95,69.5,3,40,13.9,10.5795408366,10.5795408366 -70,10,24.7990909091,47.7981818182,24.7405405405,44.6386486486,26.5918181818,42.5090909091,24.1054054054,45.8872972973,23.0459459459,51.7717567568,24.0508108108,10.695,24.027027027,42.7790540541,24.2436363636,49.8454545455,23.1345454545,47.3090909091,19.4333333333,753,71.6666666667,2.6666666667,40,14.0666666667,20.911612187,20.911612187 -90,10,24.7945454545,47.8680909091,24.7234234234,44.7436636637,26.6019090909,42.5645454545,24.1009009009,45.9295495495,23.040990991,51.8052927928,23.9818018018,11.1566666667,24.0211711712,42.8248423423,24.2508181818,49.9027272727,23.1362727273,47.3545454545,19.1166666667,753.05,73.8333333333,2.3333333333,40,14.2333333333,7.1579805925,7.1579805925 -100,10,24.79,47.938,24.7063063063,44.8486786787,26.612,42.62,24.0963963964,45.9718018018,23.036036036,51.8388288288,23.9127927928,11.6183333333,24.0153153153,42.8706306306,24.258,49.96,23.138,47.4,18.8,753.1,76,2,40,14.4,35.1084381808,35.1084381808 -110,10,24.7854545455,48.0079090909,24.6891891892,44.9536936937,26.6220909091,42.6754545455,24.0918918919,46.0140540541,23.0310810811,51.8723648649,23.8437837838,12.08,24.0094594595,42.9164189189,24.2651818182,50.0172727273,23.1397272727,47.4454545455,18.8166666667,753.05,75.3333333333,2,40,14.3,43.3507435955,43.3507435955 -340,0,24.7809090909,48.0778181818,24.6720720721,45.0587087087,26.6321818182,42.7309090909,24.0873873874,46.0563063063,23.0261261261,51.9059009009,23.7747747748,12.5416666667,24.0036036036,42.9622072072,24.2723636364,50.0745454545,23.1414545455,47.4909090909,18.8333333333,753,74.6666666667,2,40,14.2,28.5006844439,28.5006844439 -90,0,24.7763636364,48.1477272727,24.654954955,45.1637237237,26.6422727273,42.7863636364,24.0828828829,46.0985585586,23.0211711712,51.9394369369,23.7057657658,13.0033333333,23.9977477477,43.0079954955,24.2795454545,50.1318181818,23.1431818182,47.5363636364,18.85,752.95,74,2,40,14.1,9.1054215562,9.1054215562 -90,0,24.7718181818,48.2176363636,24.6378378378,45.2687387387,26.6523636364,42.8418181818,24.0783783784,46.1408108108,23.0162162162,51.972972973,23.6367567568,13.465,23.9918918919,43.0537837838,24.2867272727,50.1890909091,23.1449090909,47.5818181818,18.8666666667,752.9,73.3333333333,2,40,14,27.870357933,27.870357933 -80,0,24.7672727273,48.2875454545,24.6207207207,45.3737537538,26.6624545455,42.8972727273,24.0738738739,46.1830630631,23.0112612613,52.006509009,23.5677477477,13.9266666667,23.986036036,43.0995720721,24.2939090909,50.2463636364,23.1466363636,47.6272727273,18.8833333333,752.85,72.6666666667,2,40,13.9,46.0865119472,46.0865119472 -90,0,24.7627272727,48.3574545455,24.6036036036,45.4787687688,26.6725454545,42.9527272727,24.0693693694,46.2253153153,23.0063063063,52.040045045,23.4987387387,14.3883333333,23.9801801802,43.1453603604,24.3010909091,50.3036363636,23.1483636364,47.6727272727,18.9,752.8,72,2,40,13.8,21.4395992574,21.4395992574 -60,0,24.7581818182,48.4273636364,24.5864864865,45.5837837838,26.6826363636,43.0081818182,24.0648648649,46.2675675676,23.0013513514,52.0735810811,23.4297297297,14.85,23.9743243243,43.1911486486,24.3082727273,50.3609090909,23.1500909091,47.7181818182,18.9,752.6833333333,72.3333333333,2.1666666667,40,13.85,40.938384214,40.938384214 -80,0,24.7536363636,48.4972727273,24.5693693694,45.6887987988,26.6927272727,43.0636363636,24.0603603604,46.3098198198,22.9963963964,52.1071171171,23.3607207207,15.3116666667,23.9684684685,43.2369369369,24.3154545455,50.4181818182,23.1518181818,47.7636363636,18.9,752.5666666667,72.6666666667,2.3333333333,40,13.9,49.6747508994,49.6747508994 -70,0,24.7490909091,48.5671818182,24.5522522523,45.7938138138,26.7028181818,43.1190909091,24.0558558559,46.3520720721,22.9914414414,52.1406531532,23.2917117117,15.7733333333,23.9626126126,43.2827252252,24.3226363636,50.4754545455,23.1535454545,47.8090909091,18.9,752.45,73,2.5,40,13.95,41.9022385497,41.9022385497 -70,0,24.7445454545,48.6370909091,24.5351351351,45.8988288288,26.7129090909,43.1745454545,24.0513513514,46.3943243243,22.9864864865,52.1741891892,23.2227027027,16.235,23.9567567568,43.3285135135,24.3298181818,50.5327272727,23.1552727273,47.8545454545,18.9,752.3333333333,73.3333333333,2.6666666667,40,14,42.5207457389,42.5207457389 -70,0,24.74,48.707,24.518018018,46.0038438438,26.723,43.23,24.0468468468,46.4365765766,22.9815315315,52.2077252252,23.1536936937,16.6966666667,23.9509009009,43.3743018018,24.337,50.59,23.157,47.9,18.9,752.2166666667,73.6666666667,2.8333333333,40,14.05,9.7654106561,9.7654106561 -70,0,24.7354545455,48.7769090909,24.5009009009,46.1088588589,26.7330909091,43.2854545455,24.0423423423,46.4788288288,22.9765765766,52.2412612613,23.0846846847,17.1583333333,23.945045045,43.4200900901,24.3441818182,50.6472727273,23.1587272727,47.9454545455,18.9,752.1,74,3,40,14.1,22.2227276652,22.2227276652 -160,0,24.7309090909,48.8468181818,24.4837837838,46.2138738739,26.7431818182,43.3409090909,24.0378378378,46.5210810811,22.9716216216,52.2747972973,23.0156756757,17.62,23.9391891892,43.4658783784,24.3513636364,50.7045454545,23.1604545455,47.9909090909,18.75,752.0833333333,74.8333333333,2.8333333333,40,14.1333333333,40.5614756048,40.5614756048 -410,0,24.7263636364,48.9167272727,24.4666666667,46.3188888889,26.7532727273,43.3963636364,24.0333333333,46.5633333333,22.9666666667,52.3083333333,22.9466666667,18.0816666667,23.9333333333,43.5116666667,24.3585454545,50.7618181818,23.1621818182,48.0363636364,18.6,752.0666666667,75.6666666667,2.6666666667,40,14.1666666667,4.7786053154,4.7786053154 -140,0,24.7218181818,48.9866363636,24.4495495495,46.4239039039,26.7633636364,43.4518181818,24.0288288288,46.6055855856,22.9617117117,52.3418693694,22.8776576577,18.5433333333,23.9274774775,43.557454955,24.3657272727,50.8190909091,23.1639090909,48.0818181818,18.45,752.05,76.5,2.5,40,14.2,6.6411173437,6.6411173437 -60,0,24.7172727273,49.0565454545,24.4324324324,46.5289189189,26.7734545455,43.5072727273,24.0243243243,46.6478378378,22.9567567568,52.3754054054,22.8086486486,19.005,23.9216216216,43.6032432432,24.3729090909,50.8763636364,23.1656363636,48.1272727273,18.3,752.0333333333,77.3333333333,2.3333333333,40,14.2333333333,28.8431311958,28.8431311958 -50,0,24.7127272727,49.1264545455,24.4153153153,46.6339339339,26.7835454545,43.5627272727,24.0198198198,46.6900900901,22.9518018018,52.4089414414,22.7396396396,19.4666666667,23.9157657658,43.6490315315,24.3800909091,50.9336363636,23.1673636364,48.1727272727,18.15,752.0166666667,78.1666666667,2.1666666667,40,14.2666666667,46.5963367722,46.5963367722 -60,0,24.7081818182,49.1963636364,24.3981981982,46.7389489489,26.7936363636,43.6181818182,24.0153153153,46.7323423423,22.9468468468,52.4424774775,22.6706306306,19.9283333333,23.9099099099,43.6948198198,24.3872727273,50.9909090909,23.1690909091,48.2181818182,18,752,79,2,40,14.3,31.551958702,31.551958702 -60,0,24.7036363636,49.2662727273,24.3810810811,46.843963964,26.8037272727,43.6736363636,24.0108108108,46.7745945946,22.9418918919,52.4760135135,22.6016216216,20.39,23.9040540541,43.7406081081,24.3944545455,51.0481818182,23.1708181818,48.2636363636,17.8666666667,751.8833333333,79.8333333333,2,40,14.3333333333,45.618426532,45.618426532 -60,0,24.6990909091,49.3361818182,24.363963964,46.948978979,26.8138181818,43.7290909091,24.0063063063,46.8168468468,22.9369369369,52.5095495495,22.5326126126,20.8516666667,23.8981981982,43.7863963964,24.4016363636,51.1054545455,23.1725454545,48.3090909091,17.7333333333,751.7666666667,80.6666666667,2,40,14.3666666667,1.8026945996,1.8026945996 -60,0,24.6945454545,49.4060909091,24.3468468468,47.053993994,26.8239090909,43.7845454545,24.0018018018,46.8590990991,22.931981982,52.5430855856,22.4636036036,21.3133333333,23.8923423423,43.8321846847,24.4088181818,51.1627272727,23.1742727273,48.3545454545,17.6,751.65,81.5,2,40,14.4,7.2468372644,7.2468372644 -60,0,24.69,49.476,24.3297297297,47.159009009,26.834,43.84,23.9972972973,46.9013513514,22.927027027,52.5766216216,22.3945945946,21.775,23.8864864865,43.877972973,24.416,51.22,23.176,48.4,17.4666666667,751.5333333333,82.3333333333,2,40,14.4333333333,8.5241598543,8.5241598543 -60,0,24.6854545455,49.5459090909,24.3126126126,47.264024024,26.8440909091,43.8954545455,23.9927927928,46.9436036036,22.9220720721,52.6101576577,22.3255855856,22.2366666667,23.8806306306,43.9237612613,24.4231818182,51.2772727273,23.1777272727,48.4454545455,17.3333333333,751.4166666667,83.1666666667,2,40,14.4666666667,11.0413726768,11.0413726768 -50,0,24.6809090909,49.6158181818,24.2954954955,47.369039039,26.8541818182,43.9509090909,23.9882882883,46.9858558559,22.9171171171,52.6436936937,22.2565765766,22.6983333333,23.8747747748,43.9695495495,24.4303636364,51.3345454545,23.1794545455,48.4909090909,17.2,751.3,84,2,40,14.5,41.9100494124,41.9100494124 -60,0,24.6763636364,49.6857272727,24.2783783784,47.4740540541,26.8642727273,44.0063636364,23.9837837838,47.0281081081,22.9121621622,52.6772297297,22.1875675676,23.16,23.8689189189,44.0153378378,24.4375454545,51.3918181818,23.1811818182,48.5363636364,17.3,751.1833333333,82.8333333333,2.1666666667,40,14.3666666667,25.1639180933,25.1639180933 -60,0,24.6718181818,49.7556363636,24.2612612613,47.5790690691,26.8743636364,44.0618181818,23.9792792793,47.0703603604,22.9072072072,52.7107657658,22.1185585586,23.6216666667,23.8630630631,44.0611261261,24.4447272727,51.4490909091,23.1829090909,48.5818181818,17.4,751.0666666667,81.6666666667,2.3333333333,40,14.2333333333,11.9148838101,11.9148838101 -50,0,24.6672727273,49.8255454545,24.2441441441,47.6840840841,26.8844545455,44.1172727273,23.9747747748,47.1126126126,22.9022522523,52.7443018018,22.0495495495,24.0833333333,23.8572072072,44.1069144144,24.4519090909,51.5063636364,23.1846363636,48.6272727273,17.5,750.95,80.5,2.5,40,14.1,12.5659350189,12.5659350189 -60,0,24.6627272727,49.8954545455,24.227027027,47.7890990991,26.8945454545,44.1727272727,23.9702702703,47.1548648649,22.8972972973,52.7778378378,21.9805405405,24.545,23.8513513514,44.1527027027,24.4590909091,51.5636363636,23.1863636364,48.6727272727,17.6,750.8333333333,79.3333333333,2.6666666667,40,13.9666666667,37.1177768917,37.1177768917 -60,0,24.6581818182,49.9653636364,24.2099099099,47.8941141141,26.9046363636,44.2281818182,23.9657657658,47.1971171171,22.8923423423,52.8113738739,21.9115315315,25.0066666667,23.8454954955,44.198490991,24.4662727273,51.6209090909,23.1880909091,48.7181818182,17.7,750.7166666667,78.1666666667,2.8333333333,40,13.8333333333,25.1909039682,25.1909039682 -50,0,24.6536363636,50.0352727273,24.1927927928,47.9991291291,26.9147272727,44.2836363636,23.9612612613,47.2393693694,22.8873873874,52.8449099099,21.8425225225,25.4683333333,23.8396396396,44.2442792793,24.4734545455,51.6781818182,23.1898181818,48.7636363636,17.8,750.6,77,3,40,13.7,46.8639067141,46.8639067141 -50,0,24.6490909091,50.1051818182,24.1756756757,48.1041441441,26.9248181818,44.3390909091,23.9567567568,47.2816216216,22.8824324324,52.8784459459,21.7735135135,25.93,23.8337837838,44.2900675676,24.4806363636,51.7354545455,23.1915454545,48.8090909091,17.7666666667,750.5333333333,77,2.8333333333,40,13.65,6.9608966121,6.9608966121 -50,0,24.6445454545,50.1750909091,24.1585585586,48.2091591592,26.9349090909,44.3945454545,23.9522522523,47.3238738739,22.8774774775,52.911981982,21.7045045045,26.3916666667,23.8279279279,44.3358558559,24.4878181818,51.7927272727,23.1932727273,48.8545454545,17.7333333333,750.4666666667,77,2.6666666667,40,13.6,7.2457002127,7.2457002127 -50,0,24.64,50.245,24.1414414414,48.3141741742,26.945,44.45,23.9477477477,47.3661261261,22.8725225225,52.945518018,21.6354954955,26.8533333333,23.8220720721,44.3816441441,24.495,51.85,23.195,48.9,17.7,750.4,77,2.5,40,13.55,32.8234259738,32.8234259738 -50,0,24.6354545455,50.3149090909,24.1243243243,48.4191891892,26.9550909091,44.5054545455,23.9432432432,47.4083783784,22.8675675676,52.9790540541,21.5664864865,27.315,23.8162162162,44.4274324324,24.5021818182,51.9072727273,23.1967272727,48.9454545455,17.6666666667,750.3333333333,77,2.3333333333,40,13.5,22.6998308906,22.6998308906 -60,0,24.6309090909,50.3848181818,24.1072072072,48.5242042042,26.9651818182,44.5609090909,23.9387387387,47.4506306306,22.8626126126,53.0125900901,21.4974774775,27.7766666667,23.8103603604,44.4732207207,24.5093636364,51.9645454545,23.1984545455,48.9909090909,17.6333333333,750.2666666667,77,2.1666666667,40,13.45,34.3110650429,34.3110650429 -50,0,24.6263636364,50.4547272727,24.0900900901,48.6292192192,26.9752727273,44.6163636364,23.9342342342,47.4928828829,22.8576576577,53.0461261261,21.4284684685,28.2383333333,23.8045045045,44.519009009,24.5165454545,52.0218181818,23.2001818182,49.0363636364,17.6,750.2,77,2,40,13.4,49.2947936058,49.2947936058 -50,0,24.6218181818,50.5246363636,24.072972973,48.7342342342,26.9853636364,44.6718181818,23.9297297297,47.5351351351,22.8527027027,53.0796621622,21.3594594595,28.7,23.7986486486,44.5647972973,24.5237272727,52.0790909091,23.2019090909,49.0818181818,17.4666666667,750.0166666667,77.6666666667,1.8333333333,40,13.4,16.9670332456,16.9670332456 -60,0,24.6172727273,50.5945454545,24.0558558559,48.8392492492,26.9954545455,44.7272727273,23.9252252252,47.5773873874,22.8477477477,53.1131981982,21.2904504505,29.1616666667,23.7927927928,44.6105855856,24.5309090909,52.1363636364,23.2036363636,49.1272727273,17.3333333333,749.8333333333,78.3333333333,1.6666666667,40,13.4,25.8078551618,25.8078551618 -50,0,24.6127272727,50.6644545455,24.0387387387,48.9442642643,27.0055454545,44.7827272727,23.9207207207,47.6196396396,22.8427927928,53.1467342342,21.2214414414,29.6233333333,23.7869369369,44.6563738739,24.5380909091,52.1936363636,23.2053636364,49.1727272727,17.2,749.65,79,1.5,40,13.4,42.9592035944,42.9592035944 -60,0,24.6081818182,50.7343636364,24.0216216216,49.0492792793,27.0156363636,44.8381818182,23.9162162162,47.6618918919,22.8378378378,53.1802702703,21.1524324324,30.085,23.7810810811,44.7021621622,24.5452727273,52.2509090909,23.2070909091,49.2181818182,17.0666666667,749.4666666667,79.6666666667,1.3333333333,40,13.4,1.5300449682,1.5300449682 -50,0,24.6036363636,50.8042727273,24.0045045045,49.1542942943,27.0257272727,44.8936363636,23.9117117117,47.7041441441,22.8328828829,53.2138063063,21.0834234234,30.5466666667,23.7752252252,44.7479504505,24.5524545455,52.3081818182,23.2088181818,49.2636363636,16.9333333333,749.2833333333,80.3333333333,1.1666666667,40,13.4,1.5425903141,1.5425903141 -60,0,24.5990909091,50.8741818182,23.9873873874,49.2593093093,27.0358181818,44.9490909091,23.9072072072,47.7463963964,22.8279279279,53.2473423423,21.0144144144,31.0083333333,23.7693693694,44.7937387387,24.5596363636,52.3654545455,23.2105454545,49.3090909091,16.8,749.1,81,1,40,13.4,21.1366955424,21.1366955424 -50,0,24.5945454545,50.9440909091,23.9702702703,49.3643243243,27.0459090909,45.0045454545,23.9027027027,47.7886486486,22.822972973,53.2808783784,20.9454054054,31.47,23.7635135135,44.839527027,24.5668181818,52.4227272727,23.2122727273,49.3545454545,16.45,749.25,83,1.5,40,13.4166666667,21.9190097181,21.9190097181 -60,0,24.59,51.014,23.9531531532,49.4693393393,27.056,45.06,23.8981981982,47.8309009009,22.818018018,53.3144144144,20.8763963964,31.9316666667,23.7576576577,44.8853153153,24.574,52.48,23.214,49.4,16.1,749.4,85,2,40,13.4333333333,25.6330813398,25.6330813398 -50,0,24.5854545455,51.0839090909,23.936036036,49.5743543544,27.0660909091,45.1154545455,23.8936936937,47.8731531532,22.8130630631,53.3479504505,20.8073873874,32.3933333333,23.7518018018,44.9311036036,24.5811818182,52.5372727273,23.2157272727,49.4454545455,15.75,749.55,87,2.5,40,13.45,29.7191408696,29.7191408696 -60,0,24.5809090909,51.1538181818,23.9189189189,49.6793693694,27.0761818182,45.1709090909,23.8891891892,47.9154054054,22.8081081081,53.3814864865,20.7383783784,32.855,23.7459459459,44.9768918919,24.5883636364,52.5945454545,23.2174545455,49.4909090909,15.4,749.7,89,3,40,13.4666666667,2.4665517383,2.4665517383 -50,0,24.5763636364,51.2237272727,23.9018018018,49.7843843844,27.0862727273,45.2263636364,23.8846846847,47.9576576577,22.8031531532,53.4150225225,20.6693693694,33.3166666667,23.7400900901,45.0226801802,24.5955454545,52.6518181818,23.2191818182,49.5363636364,15.05,749.85,91,3.5,40,13.4833333333,9.1756317415,9.1756317415 -60,0,24.5718181818,51.2936363636,23.8846846847,49.8893993994,27.0963636364,45.2818181818,23.8801801802,47.9999099099,22.7981981982,53.4485585586,20.6003603604,33.7783333333,23.7342342342,45.0684684685,24.6027272727,52.7090909091,23.2209090909,49.5818181818,14.7,750,93,4,40,13.5,39.9014685303,39.9014685303 -50,0,24.5672727273,51.3635454545,23.8675675676,49.9944144144,27.1064545455,45.3372727273,23.8756756757,48.0421621622,22.7932432432,53.4820945946,20.5313513514,34.24,23.7283783784,45.1142567568,24.6099090909,52.7663636364,23.2226363636,49.6272727273,14.6,749.8333333333,93.8333333333,3.5,37.6666666667,13.55,13.6367725441,13.6367725441 -50,0,24.5627272727,51.4334545455,23.8504504505,50.0994294294,27.1165454545,45.3927272727,23.8711711712,48.0844144144,22.7882882883,53.5156306306,20.4623423423,34.7016666667,23.7225225225,45.160045045,24.6170909091,52.8236363636,23.2243636364,49.6727272727,14.5,749.6666666667,94.6666666667,3,35.3333333333,13.6,48.7198606716,48.7198606716 -40,0,24.5581818182,51.5033636364,23.8333333333,50.2044444444,27.1266363636,45.4481818182,23.8666666667,48.1266666667,22.7833333333,53.5491666667,20.3933333333,35.1633333333,23.7166666667,45.2058333333,24.6242727273,52.8809090909,23.2260909091,49.7181818182,14.4,749.5,95.5,2.5,33,13.65,2.4490051437,2.4490051437 -50,0,24.5536363636,51.5732727273,23.8162162162,50.3094594595,27.1367272727,45.5036363636,23.8621621622,48.1689189189,22.7783783784,53.5827027027,20.3243243243,35.625,23.7108108108,45.2516216216,24.6314545455,52.9381818182,23.2278181818,49.7636363636,14.3,749.3333333333,96.3333333333,2,30.6666666667,13.7,9.9808304338,9.9808304338 -50,0,24.5490909091,51.6431818182,23.7990990991,50.4144744745,27.1468181818,45.5590909091,23.8576576577,48.2111711712,22.7734234234,53.6162387387,20.2553153153,36.0866666667,23.704954955,45.2974099099,24.6386363636,52.9954545455,23.2295454545,49.8090909091,14.2,749.1666666667,97.1666666667,1.5,28.3333333333,13.75,24.1656287108,24.1656287108 -50,0,24.5445454545,51.7130909091,23.781981982,50.5194894895,27.1569090909,45.6145454545,23.8531531532,48.2534234234,22.7684684685,53.6497747748,20.1863063063,36.5483333333,23.6990990991,45.3431981982,24.6458181818,53.0527272727,23.2312727273,49.8545454545,14.1,749,98,1,26,13.8,24.5508056367,24.5508056367 -50,0,24.54,51.783,23.7648648649,50.6245045045,27.167,45.67,23.8486486486,48.2956756757,22.7635135135,53.6833108108,20.1172972973,37.01,23.6932432432,45.3889864865,24.653,53.11,23.233,49.9,14.1833333333,749.1666666667,97.8333333333,1.3333333333,25.8333333333,13.85,32.6668075519,32.6668075519 -60,0,24.5354545455,51.8529090909,23.7477477477,50.7295195195,27.1770909091,45.7254545455,23.8441441441,48.3379279279,22.7585585586,53.7168468468,20.0482882883,37.4716666667,23.6873873874,45.4347747748,24.6601818182,53.1672727273,23.2347272727,49.9454545455,14.2666666667,749.3333333333,97.6666666667,1.6666666667,25.6666666667,13.9,11.6217246046,11.6217246046 -70,0,24.5309090909,51.9228181818,23.7306306306,50.8345345345,27.1871818182,45.7809090909,23.8396396396,48.3801801802,22.7536036036,53.7503828829,19.9792792793,37.9333333333,23.6815315315,45.4805630631,24.6673636364,53.2245454545,23.2364545455,49.9909090909,14.35,749.5,97.5,2,25.5,13.95,49.4014005642,49.4014005642 -60,0,24.5263636364,51.9927272727,23.7135135135,50.9395495495,27.1972727273,45.8363636364,23.8351351351,48.4224324324,22.7486486486,53.7839189189,19.9102702703,38.395,23.6756756757,45.5263513514,24.6745454545,53.2818181818,23.2381818182,50.0363636364,14.4333333333,749.6666666667,97.3333333333,2.3333333333,25.3333333333,14,24.0553703974,24.0553703974 -60,0,24.5218181818,52.0626363636,23.6963963964,51.0445645646,27.2073636364,45.8918181818,23.8306306306,48.4646846847,22.7436936937,53.817454955,19.8412612613,38.8566666667,23.6698198198,45.5721396396,24.6817272727,53.3390909091,23.2399090909,50.0818181818,14.5166666667,749.8333333333,97.1666666667,2.6666666667,25.1666666667,14.05,35.6412396999,35.6412396999 -60,0,24.5172727273,52.1325454545,23.6792792793,51.1495795796,27.2174545455,45.9472727273,23.8261261261,48.5069369369,22.7387387387,53.850990991,19.7722522523,39.3183333333,23.663963964,45.6179279279,24.6889090909,53.3963636364,23.2416363636,50.1272727273,14.6,750,97,3,25,14.1,45.2716661151,45.2716661151 -60,0,24.5127272727,52.2024545455,23.6621621622,51.2545945946,27.2275454545,46.0027272727,23.8216216216,48.5491891892,22.7337837838,53.884527027,19.7032432432,39.78,23.6581081081,45.6637162162,24.6960909091,53.4536363636,23.2433636364,50.1727272727,14.6833333333,750.0166666667,96.8333333333,3.1666666667,27.5,14.15,39.3401175388,39.3401175388 -60,0,24.5081818182,52.2723636364,23.645045045,51.3596096096,27.2376363636,46.0581818182,23.8171171171,48.5914414414,22.7288288288,53.9180630631,19.6342342342,40.2416666667,23.6522522523,45.7095045045,24.7032727273,53.5109090909,23.2450909091,50.2181818182,14.7666666667,750.0333333333,96.6666666667,3.3333333333,30,14.2,23.9423035411,23.9423035411 -70,0,24.5036363636,52.3422727273,23.6279279279,51.4646246246,27.2477272727,46.1136363636,23.8126126126,48.6336936937,22.7238738739,53.9515990991,19.5652252252,40.7033333333,23.6463963964,45.7552927928,24.7104545455,53.5681818182,23.2468181818,50.2636363636,14.85,750.05,96.5,3.5,32.5,14.25,1.7775658634,1.7775658634 -70,0,24.4990909091,52.4121818182,23.6108108108,51.5696396396,27.2578181818,46.1690909091,23.8081081081,48.6759459459,22.7189189189,53.9851351351,19.4962162162,41.165,23.6405405405,45.8010810811,24.7176363636,53.6254545455,23.2485454545,50.3090909091,14.9333333333,750.0666666667,96.3333333333,3.6666666667,35,14.3,46.5854804148,46.5854804148 -60,0,24.4945454545,52.4820909091,23.5936936937,51.6746546547,27.2679090909,46.2245454545,23.8036036036,48.7181981982,22.713963964,54.0186711712,19.4272072072,41.6266666667,23.6346846847,45.8468693694,24.7248181818,53.6827272727,23.2502727273,50.3545454545,15.0166666667,750.0833333333,96.1666666667,3.8333333333,37.5,14.35,9.034923627,9.034923627 -60,10,24.49,52.552,23.5765765766,51.7796696697,27.278,46.28,23.7990990991,48.7604504505,22.709009009,54.0522072072,19.3581981982,42.0883333333,23.6288288288,45.8926576577,24.732,53.74,23.252,50.4,15.1,750.1,96,4,40,14.4,31.8107228959,31.8107228959 -50,0,24.4854545455,52.6219090909,23.5594594595,51.8846846847,27.2880909091,46.3354545455,23.7945945946,48.8027027027,22.7040540541,54.0857432432,19.2891891892,42.55,23.622972973,45.9384459459,24.7391818182,53.7972727273,23.2537272727,50.4454545455,15.1333333333,750.1166666667,95.5,3.8333333333,40,14.3666666667,30.1433268934,30.1433268934 -60,0,24.4809090909,52.6918181818,23.5423423423,51.9896996997,27.2981818182,46.3909090909,23.7900900901,48.844954955,22.6990990991,54.1192792793,19.2201801802,43.0116666667,23.6171171171,45.9842342342,24.7463636364,53.8545454545,23.2554545455,50.4909090909,15.1666666667,750.1333333333,95,3.6666666667,40,14.3333333333,27.0984581439,27.0984581439 -220,0,24.4763636364,52.7617272727,23.5252252252,52.0947147147,27.3082727273,46.4463636364,23.7855855856,48.8872072072,22.6941441441,54.1528153153,19.1511711712,43.4733333333,23.6112612613,46.0300225225,24.7535454545,53.9118181818,23.2571818182,50.5363636364,15.2,750.15,94.5,3.5,40,14.3,16.2696248968,16.2696248968 -490,0,24.4718181818,52.8316363636,23.5081081081,52.1997297297,27.3183636364,46.5018181818,23.7810810811,48.9294594595,22.6891891892,54.1863513514,19.0821621622,43.935,23.6054054054,46.0758108108,24.7607272727,53.9690909091,23.2589090909,50.5818181818,15.2333333333,750.1666666667,94,3.3333333333,40,14.2666666667,33.7079749675,33.7079749675 -260,0,24.4672727273,52.9015454545,23.490990991,52.3047447447,27.3284545455,46.5572727273,23.7765765766,48.9717117117,22.6842342342,54.2198873874,19.0131531532,44.3966666667,23.5995495495,46.1215990991,24.7679090909,54.0263636364,23.2606363636,50.6272727273,15.2666666667,750.1833333333,93.5,3.1666666667,40,14.2333333333,49.7646908159,49.7646908159 -120,0,24.4627272727,52.9714545455,23.4738738739,52.4097597598,27.3385454545,46.6127272727,23.7720720721,49.013963964,22.6792792793,54.2534234234,18.9441441441,44.8583333333,23.5936936937,46.1673873874,24.7750909091,54.0836363636,23.2623636364,50.6727272727,15.3,750.2,93,3,40,14.2,32.0078553981,32.0078553981 -120,0,24.4581818182,53.0413636364,23.4567567568,52.5147747748,27.3486363636,46.6681818182,23.7675675676,49.0562162162,22.6743243243,54.2869594595,18.8751351351,45.32,23.5878378378,46.2131756757,24.7822727273,54.1409090909,23.2640909091,50.7181818182,15.4166666667,750.2666666667,93,3.1666666667,40,14.3,0.8348884061,0.8348884061 -100,0,24.4536363636,53.1112727273,23.4396396396,52.6197897898,27.3587272727,46.7236363636,23.7630630631,49.0984684685,22.6693693694,54.3204954955,18.8061261261,45.7816666667,23.581981982,46.258963964,24.7894545455,54.1981818182,23.2658181818,50.7636363636,15.5333333333,750.3333333333,93,3.3333333333,40,14.4,39.3131287419,39.3131287419 -130,0,24.4490909091,53.1811818182,23.4225225225,52.7248048048,27.3688181818,46.7790909091,23.7585585586,49.1407207207,22.6644144144,54.3540315315,18.7371171171,46.2433333333,23.5761261261,46.3047522523,24.7966363636,54.2554545455,23.2675454545,50.8090909091,15.65,750.4,93,3.5,40,14.5,18.7439416186,18.7439416186 -100,0,24.4445454545,53.2510909091,23.4054054054,52.8298198198,27.3789090909,46.8345454545,23.7540540541,49.182972973,22.6594594595,54.3875675676,18.6681081081,46.705,23.5702702703,46.3505405405,24.8038181818,54.3127272727,23.2692727273,50.8545454545,15.7666666667,750.4666666667,93,3.6666666667,40,14.6,30.8721896727,30.8721896727 -110,0,24.44,53.321,23.3882882883,52.9348348348,27.389,46.89,23.7495495495,49.2252252252,22.6545045045,54.4211036036,18.5990990991,47.1666666667,23.5644144144,46.3963288288,24.811,54.37,23.271,50.9,15.8833333333,750.5333333333,93,3.8333333333,40,14.7,23.1382186757,23.1382186757 -80,0,24.4354545455,53.3909090909,23.3711711712,53.0398498498,27.3990909091,46.9454545455,23.745045045,49.2674774775,22.6495495495,54.4546396396,18.5300900901,47.6283333333,23.5585585586,46.4421171171,24.8181818182,54.4272727273,23.2727272727,50.9454545455,16,750.6,93,4,40,14.8,19.6746954811,19.6746954811 -90,0,24.4309090909,53.4608181818,23.3540540541,53.1448648649,27.4091818182,47.0009090909,23.7405405405,49.3097297297,22.6445945946,54.4881756757,18.4610810811,48.09,23.5527027027,46.4879054054,24.8253636364,54.4845454545,23.2744545455,50.9909090909,15.9666666667,750.6333333333,93.1666666667,3.8333333333,40,14.8,10.0501601235,10.0501601235 -80,0,24.4263636364,53.5307272727,23.3369369369,53.2498798799,27.4192727273,47.0563636364,23.736036036,49.351981982,22.6396396396,54.5217117117,18.3920720721,48.5516666667,23.5468468468,46.5336936937,24.8325454545,54.5418181818,23.2761818182,51.0363636364,15.9333333333,750.6666666667,93.3333333333,3.6666666667,40,14.8,29.9567849492,29.9567849492 -150,0,24.4218181818,53.6006363636,23.3198198198,53.3548948949,27.4293636364,47.1118181818,23.7315315315,49.3942342342,22.6346846847,54.5552477477,18.3230630631,49.0133333333,23.540990991,46.579481982,24.8397272727,54.5990909091,23.2779090909,51.0818181818,15.9,750.7,93.5,3.5,40,14.8,11.602805031,11.602805031 -490,0,24.4172727273,53.6705454545,23.3027027027,53.4599099099,27.4394545455,47.1672727273,23.727027027,49.4364864865,22.6297297297,54.5887837838,18.2540540541,49.475,23.5351351351,46.6252702703,24.8469090909,54.6563636364,23.2796363636,51.1272727273,15.8666666667,750.7333333333,93.6666666667,3.3333333333,40,14.8,45.480182278,45.480182278 -320,0,24.4127272727,53.7404545455,23.2855855856,53.5649249249,27.4495454545,47.2227272727,23.7225225225,49.4787387387,22.6247747748,54.6223198198,18.185045045,49.9366666667,23.5292792793,46.6710585586,24.8540909091,54.7136363636,23.2813636364,51.1727272727,15.8333333333,750.7666666667,93.8333333333,3.1666666667,40,14.8,25.0745078782,25.0745078782 -360,0,24.4081818182,53.8103636364,23.2684684685,53.6699399399,27.4596363636,47.2781818182,23.718018018,49.520990991,22.6198198198,54.6558558559,18.116036036,50.3983333333,23.5234234234,46.7168468468,24.8612727273,54.7709090909,23.2830909091,51.2181818182,15.8,750.8,94,3,40,14.8,37.1672243928,37.1672243928 -470,0,24.4036363636,53.8802727273,23.2513513514,53.774954955,27.4697272727,47.3336363636,23.7135135135,49.5632432432,22.6148648649,54.6893918919,18.047027027,50.86,23.5175675676,46.7626351351,24.8684545455,54.8281818182,23.2848181818,51.2636363636,15.8333333333,750.7666666667,93.5,3.3333333333,38.1666666667,14.7666666667,17.254522373,17.254522373 -410,0,24.3990909091,53.9501818182,23.2342342342,53.87996997,27.4798181818,47.3890909091,23.709009009,49.6054954955,22.6099099099,54.7229279279,17.978018018,51.3216666667,23.5117117117,46.8084234234,24.8756363636,54.8854545455,23.2865454545,51.3090909091,15.8666666667,750.7333333333,93,3.6666666667,36.3333333333,14.7333333333,15.742313792,15.742313792 -290,0,24.3945454545,54.0200909091,23.2171171171,53.984984985,27.4899090909,47.4445454545,23.7045045045,49.6477477477,22.604954955,54.756463964,17.909009009,51.7833333333,23.5058558559,46.8542117117,24.8828181818,54.9427272727,23.2882727273,51.3545454545,15.9,750.7,92.5,4,34.5,14.7,39.1032357933,39.1032357933 -280,0,24.39,54.09,23.2,54.09,27.5,47.5,23.7,49.69,22.6,54.79,17.84,52.245,23.5,46.9,24.89,55,23.29,51.4,15.9333333333,750.6666666667,92,4.3333333333,32.6666666667,14.6666666667,45.6726258737,45.6726258737 -250,0,24.4266666667,53.7966666667,23.26,54.09,27.6633333333,47.56,23.7,49.8633333333,22.6285714286,54.8971428571,17.89,51.7933333333,23.5,46.9285714286,24.9685714286,54.8971428571,23.29,51.4,15.9666666667,750.6333333333,91.5,4.6666666667,30.8333333333,14.6333333333,6.9290209329,6.9290209329 -190,0,24.5,53.6633333333,23.3233333333,53.8333333333,27.8566666667,47.4333333333,23.79,49.76,22.64,55.036,17.8566666667,50.9566666667,23.5,47.09,25,54.7,23.29,51.4,16,750.6,91,5,29,14.6,0.6314193015,0.6314193015 -130,0,24.5,53.3633333333,23.3233333333,53.6266666667,28.0333333333,47.6933333333,23.73,49.7,22.7,55.09,17.79,50.7633333333,23.5,47.1528571429,25.0428571429,54.5542857143,23.29,51.4,15.9666666667,750.6,91,4.6666666667,29,14.5666666667,12.0439423248,12.0439423248 -110,0,24.4266666667,53.1566666667,23.39,53.4,28.1,47.2266666667,23.79,49.59,22.7,55.072,18.13,51.4633333333,23.5,47.218,25.1,54.5,23.29,51.4,15.9333333333,750.6,91,4.3333333333,29,14.5333333333,13.9961603098,13.9961603098 -110,0,24.4266666667,52.8633333333,23.4633333333,53.2,27.9633333333,46.4966666667,23.79,49.59,22.7,55,18.53,50.9233333333,23.5,47.29,25.1142857143,54.4857142857,23.29,51.4,15.9,750.6,91,4,29,14.5,17.7824365557,17.7824365557 -120,0,24.5,53.73,23.6,52.9,27.89,45.9633333333,23.79,49.6266666667,22.7,54.9,18.9266666667,48.3266666667,23.5,47.4,25.1571428571,54.3685714286,23.29,51.4,15.8666666667,750.6,91,3.6666666667,29,14.4666666667,47.7567089605,47.7567089605 -100,0,24.5333333333,54.6666666667,23.6666666667,52.76,27.7266666667,45.6633333333,23.79,49.8333333333,22.7,54.9,19.0666666667,46.66,23.5428571429,47.4,25.2,54.156,23.29,51.5,15.8333333333,750.6,91,3.3333333333,29,14.4333333333,48.6569017405,48.6569017405 -100,0,24.6,53.8666666667,23.7,52.9333333333,27.5333333333,45.59,23.79,50.03,22.7,54.92,19.23,46.2233333333,23.5,47.46,25.2128571429,54.09,23.29,51.4428571429,15.8,750.6,91,3,29,14.4,34.8188815406,34.8188815406 -100,0,24.6,53.3333333333,23.7,52.875,27.26,45.4666666667,23.8566666667,50.2233333333,22.7,55,19.4966666667,45.1633333333,23.5428571429,47.5,25.236,53.954,23.29,51.4,15.8833333333,750.55,90.6666666667,3,30.8333333333,14.4,8.9663601131,8.9663601131 -110,0,24.6666666667,53.1266666667,23.76,52.6266666667,27.1333333333,45.4666666667,23.9266666667,50.4,22.736,55,19.73,42.6,23.6,47.5,25.2,53.5642857143,23.29,51.4114285714,15.9666666667,750.5,90.3333333333,3,32.6666666667,14.4,8.3220249042,8.3220249042 -110,0,24.7,52.8333333333,23.79,52.4666666667,26.9633333333,45.3,24,50.2666666667,22.79,55.0771428571,19.93,41.5266666667,23.6,47.5,25.29,53.4,23.29,50.96,16.05,750.45,90,3,34.5,14.4,20.4568762099,20.4568762099 -100,0,24.7,52.6266666667,23.79,52.2666666667,26.8233333333,44.9666666667,24,50.06,22.79,55.09,20.0666666667,40.9,23.6,47.554,25.29,53.3842857143,23.29,50.7542857143,16.1333333333,750.4,89.6666666667,3,36.3333333333,14.4,48.7462426303,48.7462426303 -100,0,24.7,52.4666666667,23.89,52.26,26.76,45.2,24,49.86,22.79,55.09,19.86,39.4333333333,23.6,47.59,25.29,53.272,23.29,50.634,16.2166666667,750.35,89.3333333333,3,38.1666666667,14.4,3.8598719402,3.8598719402 -110,0,24.7,52.4,23.9633333333,52.0666666667,26.625,45.2225,24,49.76,22.79,55.054,19.73,39.1566666667,23.6,47.5,25.3185714286,53.1685714286,23.3328571429,50.5257142857,16.3,750.3,89,3,40,14.4,20.5863847397,20.5863847397 -110,0,24.7,52.545,23.9633333333,52,26.6,45.29,24,49.6266666667,22.79,55,19.79,38.8233333333,23.6,47.5,25.39,53.054,23.29,50.634,16.4,750.2833333333,88.3333333333,3,40,14.4,38.8353044051,38.8353044051 -110,0,24.7,52.7,23.89,51.9333333333,26.7,45.2,24,49.56,22.79,54.98,19.4966666667,38.56,23.6,47.5,25.39,53.0385714286,23.3185714286,50.7671428571,16.5,750.2666666667,87.6666666667,3,40,14.4,29.8347553238,29.8347553238 -110,0,24.7,52.5666666667,23.89,51.9,26.7,45.1266666667,24,49.4333333333,22.79,54.8685714286,19.0966666667,39.0266666667,23.6,47.5,25.456,53.054,23.33,50.9,16.6,750.25,87,3,40,14.4,29.268098122,29.268098122 -100,0,24.6666666667,52.3333333333,23.8233333333,51.8266666667,26.7,45.09,24,49.3633333333,22.79,54.79,18.745,39.995,23.6,47.5,25.4685714286,53.0514285714,23.29,50.9714285714,16.7,750.2333333333,86.3333333333,3,40,14.4,6.6190709476,6.6190709476 -100,0,24.6,52.1266666667,23.8233333333,51.79,26.76,45.09,24,49.29,22.79,54.7385714286,18.6633333333,40.2966666667,23.6,47.5,25.39,53,23.29,51,16.8,750.2166666667,85.6666666667,3,40,14.4,36.709091207,36.709091207 -90,0,24.6333333333,52.4,23.89,51.73,26.76,45.03,24,49.49,22.815,54.7225,19.1233333333,41.4966666667,23.6,47.5,25.39,52.9428571429,23.29,51.0771428571,16.9,750.2,85,3,40,14.4,43.99789694,43.99789694 -100,0,24.7,52.2666666667,24,51.43,26.6333333333,45.1633333333,24,49.7666666667,22.85,54.754,19.73,39.0666666667,23.6,47.5,25.39,52.9,23.29,51.09,16.7833333333,750.2,85.8333333333,3,37.8333333333,14.4333333333,41.412084864,41.412084864 -100,0,24.7,52.1633333333,24.0666666667,51.29,26.5666666667,45.23,24,49.9666666667,22.89,54.7642857143,19.8566666667,37.8666666667,23.6,47.5257142857,25.39,52.9,23.29,51.09,16.6666666667,750.2,86.6666666667,3,35.6666666667,14.4666666667,16.7348218849,16.7348218849 -110,0,24.7,52.1633333333,24.0666666667,51.1633333333,26.5,45.29,24.1,50.03,22.89,54.7,20.1333333333,36.0266666667,23.6,47.59,25.5,52.79,23.29,50.754,16.55,750.2,87.5,3,33.5,14.5,24.1020125453,24.1020125453 -90,0,24.6333333333,52.2,24,51.1633333333,26.39,45.4,24.1,50.1633333333,22.89,54.7,20.2,33.8933333333,23.6714285714,47.6842857143,25.5,52.7514285714,23.3042857143,50.6242857143,16.4333333333,750.2,88.3333333333,3,31.3333333333,14.5333333333,45.143141353,45.143141353 -90,0,24.7,52.2,24.0333333333,51.23,26.39,45.4666666667,24.1333333333,50.06,22.89,54.7,20.63,30.9266666667,23.62,47.718,25.52,52.812,23.33,50.576,16.3166666667,750.2,89.1666666667,3,29.1666666667,14.5666666667,32.5130493031,32.5130493031 -90,0,24.7,52.1633333333,24.1,51.23,26.39,45.59,24.2,49.9333333333,22.9214285714,54.6214285714,21.03,28.2,23.7,47.79,25.6,52.9714285714,23.29,50.7642857143,16.2,750.2,90,3,27,14.6,3.8346283836,3.8346283836 -80,0,24.7,52.09,24.23,51.2,26.3233333333,45.59,24.2,49.79,22.89,54.59,21.2,25.5,23.7,47.79,25.64,53.236,23.35,50.94,16.25,750.2,90,2.8333333333,29.1666666667,14.6333333333,26.7750142259,26.7750142259 -100,0,24.7,52.09,24.29,51.1266666667,26.29,45.59,24.2,49.79,22.9057142857,54.59,20.9933333333,24.5666666667,23.7,47.8842857143,25.7,53.4542857143,23.29,51.05625,16.3,750.2,90,2.6666666667,31.3333333333,14.6666666667,29.7957434785,29.7957434785 -90,0,24.7,52.09,24.29,51.045,26.29,45.6633333333,24.2,49.7666666667,22.956,54.59,20.79,26.4266666667,23.7,47.96,25.718,53.63,23.29,51.1057142857,16.35,750.2,90,2.5,33.5,14.7,23.5897976556,23.5897976556 -90,0,24.7,51.9666666667,24.2,50.9,26.2,45.6266666667,24.2,49.9666666667,23,54.59,20.73,27.0333333333,23.7,48,25.79,53.8214285714,23.29,51.218,16.4,750.2,90,2.3333333333,35.6666666667,14.7333333333,20.8280220744,20.8280220744 -80,0,24.7,51.9,24.2,50.9,26.1333333333,45.7,24.2,50.03,22.934,54.59,20.4966666667,27.2633333333,23.7,48.09,25.79,54,23.29,51.29,16.45,750.2,90,2.1666666667,37.8333333333,14.7666666667,29.9352291739,29.9352291739 -210,0,24.7,51.9,24.2,50.79,26.1,45.7,24.2,50.09,23,54.5771428571,20.0966666667,27.2633333333,23.7,48.09,25.8757142857,53.8514285714,23.35,51.4,16.5,750.2,90,2,40,14.8,26.5968247666,26.5968247666 -440,0,24.7,51.9,24.1333333333,50.79,26.1,45.8333333333,24.2,49.9666666667,23,54.5,19.6333333333,29.3566666667,23.7,48.112,25.89,53.6675,23.29,51.3242857143,16.3833333333,750.1666666667,90.6666666667,2,37.5,14.8,6.1671088799,6.1671088799 -340,0,24.7,51.9633333333,24.1,50.9333333333,26.1,45.79,24.2,49.9666666667,23,54.5,19.36,31.1633333333,23.7,48.2642857143,25.89,53.516,23.29,51.276,16.2666666667,750.1333333333,91.3333333333,2,35,14.8,46.9478984131,46.9478984131 -240,0,24.7225,52.1925,24.1,51.06,26.1,45.745,24.23,50.3,23,54.44,19.2266666667,32.5,23.7,48.29,25.89,53.4,23.29,51.4,16.15,750.1,92,2,32.5,14.8,21.522587561,21.522587561 -200,0,24.79,52.6333333333,24,51.4566666667,26.1,45.79,24.29,50.6333333333,23,54.5,18.96,33.1666666667,23.7,48.29,26,53.754,23.29,51.536,16.0333333333,750.0666666667,92.6666666667,2,30,14.8,20.7274448476,20.7274448476 -160,0,24.8233333333,52.6566666667,24,52.1233333333,26.2,45.8266666667,24.29,50.6266666667,23,54.5671428571,18.43,34.1666666667,23.7,48.29,25.9528571429,53.1914285714,23.3328571429,51.5128571429,15.9166666667,750.0333333333,93.3333333333,2,27.5,14.8,41.9418200967,41.9418200967 -130,0,24.89,52.93,24,52.89,26.2,45.9,24.29,50.76,23,54.718,18.07,35.2,23.7,48.2642857143,25.956,52.836,23.29,51.5,15.8,750,94,2,25,14.8,11.0182591481,11.0182591481 -110,0,24.89,53.1566666667,24,53.09,26.29,45.9,24.29,50.745,23,54.876,17.5233333333,35.5666666667,23.7,48.09,25.9214285714,52.6142857143,23.29,51.4714285714,15.85,749.9833333333,94,2,25.1666666667,14.85,46.736278641,46.736278641 -120,0,24.89,53.3633333333,23.9633333333,53.0266666667,26.29,45.9666666667,24.29,50.6633333333,23.04,55.036,17.1666666667,36.4966666667,23.7,47.9557142857,26,53.236,23.29,51.356,15.9,749.9666666667,94,2,25.3333333333,14.9,8.1801042543,8.1801042543 -110,0,24.89,53.1633333333,23.89,52.8266666667,26.29,46,24.29,50.53,23.05,55.045,17.0333333333,37.2966666667,23.7,47.834,26.0142857143,53.4928571429,23.29,51.2385714286,15.95,749.95,94,2,25.5,14.95,18.0549980141,18.0549980141 -120,0,24.89,53.03,23.89,52.59,26.29,46.06,24.29,50.4,23,55,16.89,38.0266666667,23.7,47.7257142857,26.1,53.652,23.29,51.178,16,749.9333333333,94,2,25.6666666667,15,30.287843023,30.287843023 -130,10,24.89,52.6333333333,23.8233333333,52.4633333333,26.29,46.06,24.29,50.4,23,54.856,16.7633333333,38.8933333333,23.7,47.59,26.1,53.9,23.29,51.09,16.05,749.9166666667,94,2,25.8333333333,15.05,17.7913352847,17.7913352847 -110,0,24.89,52.4333333333,23.79,52.2233333333,26.29,46,24.29,50.26,23,54.79,16.4666666667,38.8966666667,23.7,47.5242857143,26.1,53.754,23.254,51.054,16.1,749.9,94,2,26,15.1,33.1035622978,33.1035622978 -110,0,24.89,52.29,23.73,52.03,26.29,46,24.29,50.1266666667,23,54.7675,15.46,38.43,23.7,47.1311111111,26.1,53.2814285714,23.2,50.69625,15.9666666667,749.9166666667,94,2,28.3333333333,14.9833333333,42.3473790754,42.3473790754 -110,0,24.89,52.23,23.6666666667,51.6933333333,26.23,45.9333333333,24.29,49.8333333333,23.0714285714,55.1685714286,14.4633333333,43.2,23.7,46.7388888889,26.08,53.018,23.2,50.356,15.8333333333,749.9333333333,94,2,30.6666666667,14.8666666667,10.5998257524,10.5998257524 -90,0,24.89,51.9,23.6,51.36,26.1666666667,45.8633333333,24.29,49.7,23.1,55.59,14.0633333333,46.7333333333,23.68,46.378,26,53.2642857143,23.2,50.1228571429,15.7,749.95,94,2,33,14.75,38.6282428983,38.6282428983 -80,0,24.89,51.5666666667,23.5666666667,51.59,26.1,45.8633333333,24.29,49.4666666667,23.1,55.59,13.6266666667,48.2566666667,23.6428571429,46.0357142857,26,53.12,23.2,49.794,15.5666666667,749.9666666667,94,2,35.3333333333,14.6333333333,23.1567003299,23.1567003299 -80,0,24.9633333333,51.3633333333,23.5,51.5675,26,45.9,24.23,49.1933333333,23.1,55.3725,13.3666666667,49.0566666667,23.7,45.754,25.9528571429,52.57,23.1285714286,49.4657142857,15.4333333333,749.9833333333,94,2,37.6666666667,14.5166666667,24.4300127029,24.4300127029 -90,0,24.89,51.23,23.5,51.4333333333,26,45.9,24.2,48.8633333333,23.1,55.11,13.16,50.9,23.65,45.4125,25.934,52.194,23.06,49.014,15.3,750,94,2,40,14.4,32.1397443768,32.1397443768 -120,0,24.89,50.9666666667,23.39,51.2,25.89,45.5,24.2,48.6566666667,23.1,54.6966666667,13.0333333333,52.4266666667,23.6111111111,45.1633333333,25.89,51.6942857143,23.0857142857,48.8242857143,14.9166666667,750.0666666667,94.3333333333,2.6666666667,36.8333333333,14.05,9.971494996,9.971494996 -120,0,24.89,50.8266666667,23.39,51.1266666667,25.8233333333,45.5,24.2,48.4666666667,23.1,54.4,12.7633333333,53.03,23.6,45,25.89,51.254,23.08,48.596,14.5333333333,750.1333333333,94.6666666667,3.3333333333,33.6666666667,13.7,8.413037227,8.413037227 -130,0,24.89,50.59,23.3566666667,51.06,25.79,45.4666666667,24.2,48.3266666667,23.1,54.1116666667,12.63,53.03,23.6,44.754,25.89,50.8285714286,23,48.2957142857,14.15,750.2,95,4,30.5,13.35,42.1030129655,42.1030129655 -120,10,24.9633333333,50.39,23.29,51,25.79,45.4,24.2,48.1633333333,23.1,53.88,12.4633333333,52.9666666667,23.6,44.54,25.89,50.516,23,48.054,13.7666666667,750.2666666667,95.3333333333,4.6666666667,27.3333333333,13,6.3940487686,6.3940487686 -120,0,24.945,50.09,23.26,50.8333333333,25.79,45.345,24.2,48.0316666667,23.1,53.616,12.33,52.9,23.6,44.4,25.9214285714,50.4071428571,22.9725,47.82125,13.3833333333,750.3333333333,95.6666666667,5.3333333333,24.1666666667,12.65,14.8726488813,14.8726488813 -90,0,24.89,50.1266666667,23.2,50.7,25.8233333333,45.1633333333,24.2,47.9,23.0833333333,53.415,12.2633333333,52.8633333333,23.6,44.2542857143,26.04,50.356,22.89,47.7128571429,13,750.4,96,6,21,12.3,3.0257114791,3.0257114791 -100,10,24.89,50.2,23.1666666667,50.6633333333,25.8233333333,45.03,24.1666666667,47.8633333333,23,53.29,12.1225,52.695,23.6,44.116,26.1,50.1971428571,22.912,47.876,12.8833333333,750.55,95.6666666667,6,27.8333333333,12.1333333333,12.0527345571,12.0527345571 -100,0,24.89,50.06,23.1,50.59,25.89,44.9333333333,24.1,47.73,23.0142857143,53.2257142857,12.0333333333,52.4633333333,23.6,44,26.1,50.13,22.9685714286,48,12.7666666667,750.7,95.3333333333,6,34.6666666667,11.9666666667,43.5830682749,43.5830682749 -90,0,24.89,49.9333333333,23.0666666667,50.56,25.89,44.9333333333,24.1,47.59,23.08,53.272,11.9633333333,52.4,23.6,43.9,26.1714285714,50.3685714286,23,48.2,12.65,750.85,95,6,41.5,11.8,29.1431227583,29.1431227583 -80,0,24.89,49.8633333333,23,50.5,25.89,44.79,24.0333333333,47.4,23,53.1266666667,11.89,52.3266666667,23.6,43.8371428571,26.2,50.254,23.0142857143,48.4571428571,12.5333333333,751,94.6666666667,6,48.3333333333,11.6333333333,47.4876832915,47.4876832915 -70,0,24.8233333333,49.73,22.89,50.59,25.89,44.73,24.0142857143,47.2285714286,23,53.09,11.8,52.2,23.6,43.73,26.2771428571,49.9214285714,23.06,48.674,12.4166666667,751.15,94.3333333333,6,55.1666666667,11.4666666667,38.8086975086,38.8086975086 -80,0,24.8566666667,49.6633333333,22.89,50.59,25.89,44.6633333333,24,47.1633333333,23,53.09,11.7266666667,52.26,23.6,43.59,26.29,49.5725,23.0571428571,48.8214285714,12.3,751.3,94,6,62,11.3,23.9887437783,23.9887437783 -60,0,24.79,49.53,22.79,50.59,25.89,44.59,24,47.03,23,53.03,11.66,52.26,23.6,43.4985714286,26.29,49.44,23.1,49,12.2166666667,751.35,94.3333333333,5.8333333333,55.5,11.2666666667,34.5675805584,34.5675805584 -80,0,24.79,49.4,22.73,50.59,25.89,44.59,24,47,23,53,11.6,52.2,23.6,43.378,26.2514285714,49.3685714286,23.1,49.0771428571,12.1333333333,751.4,94.6666666667,5.6666666667,49,11.2333333333,8.1140022026,8.1140022026 -100,0,24.79,49.3266666667,22.7,50.59,25.89,44.6633333333,24,46.9333333333,23,52.94,11.5666666667,52.29,23.6,43.29,26.29,49.29,23.1,49.09,12.05,751.45,95,5.5,42.5,11.2,4.9893934163,4.9893934163 -80,0,24.76,49.2,22.6333333333,50.59,25.9266666667,44.8966666667,24,46.9,23,52.8685714286,11.5,52.3633333333,23.6,43.29,26.2514285714,49.2385714286,23.1,49.1214285714,11.9666666667,751.5,95.3333333333,5.3333333333,36,11.1666666667,7.4225733639,7.4225733639 -70,0,24.7,49.1266666667,22.6,50.59,26,45.29,24,46.8266666667,23,52.79,11.5,52.3633333333,23.6,43.2225,26.254,49.178,23.1,49.2,11.8833333333,751.55,95.6666666667,5.1666666667,29.5,11.1333333333,45.8816736587,45.8816736587 -60,0,24.7,49,22.6,50.59,26,45.29,23.9266666667,46.76,23,52.754,11.5,52.3633333333,23.6,43.116,26.2514285714,49.2257142857,23.1,49.2514285714,11.8,751.6,96,5,23,11.1,29.7627323307,29.7627323307 -60,0,24.7,48.9333333333,22.5,50.59,26.0666666667,45.29,23.9266666667,46.7,23,52.6633333333,11.5,52.5,23.6,42.9714285714,26.2,49.736,23.1,49.312,11.7666666667,751.6333333333,96,4.8333333333,29.6666666667,11.0666666667,24.5625160169,24.5625160169 -60,0,24.6666666667,48.8333333333,22.5,50.59,26.1,45.29,23.89,46.6633333333,23,52.572,11.5,52.5,23.6,42.9,26.2,49.9633333333,23.1285714286,49.4,11.7333333333,751.6666666667,96,4.6666666667,36.3333333333,11.0333333333,46.8059404637,46.8059404637 -60,0,24.6,48.7,22.4266666667,50.53,26.1,45.29,23.89,46.59,23,52.5,11.5,52.59,23.6,42.83125,26.1333333333,50.09,23.2,49.4,11.7,751.7,96,4.5,43,11,27.8562506195,27.8562506195 -60,0,24.6,48.59,22.39,50.56,26.1,45.29,23.89,46.5,23,52.4666666667,11.5,52.59,23.6,42.7771428571,26.0666666667,50.2,23.2,49.4142857143,11.6666666667,751.7333333333,96,4.3333333333,49.6666666667,10.9666666667,6.6666523344,6.6666523344 -60,0,24.6,48.59,22.39,50.56,26.1666666667,45.23,23.8233333333,46.4333333333,23,52.4,11.5,52.59,23.6,42.7,26,50.2,23.2,49.5,11.6333333333,751.7666666667,96,4.1666666667,56.3333333333,10.9333333333,30.8612811146,30.8612811146 -60,0,24.6,48.5,22.3566666667,50.59,26.2,45.2,23.79,46.3633333333,23,52.3633333333,11.5,52.59,23.5571428571,42.6685714286,25.9633333333,49.8933333333,23.2,49.5,11.6,751.8,96,4,63,10.9,28.4870132105,28.4870132105 -60,0,24.5333333333,48.5,22.29,50.59,26.2,45.145,23.79,46.29,22.9266666667,52.29,11.5,52.645,23.56,42.59,25.89,49.56,23.2,49.5,11.55,751.8833333333,96.1666666667,4,61.6666666667,10.8833333333,17.1306208009,17.1306208009 -60,0,24.5,48.5,22.29,50.59,26.2,45.1266666667,23.79,46.29,23,52.2,11.39,52.59,23.5285714286,42.5385714286,25.79,49.9333333333,23.2,49.5,11.5,751.9666666667,96.3333333333,4,60.3333333333,10.8666666667,32.6348133851,32.6348133851 -60,0,24.5,48.4,22.29,50.59,26.29,45.09,23.79,46.29,23,52.2,11.33,52.59,23.52,42.5,25.79,50.06,23.2,49.5,11.45,752.05,96.5,4,59,10.85,19.2567682359,19.2567682359 -60,0,24.5,48.3266666667,22.2,50.4,26.29,45.03,23.79,46.2,23,52.1633333333,11.3,52.59,23.5714285714,42.4714285714,25.79,50.2666666667,23.2,49.5,11.4,752.1333333333,96.6666666667,4,57.6666666667,10.8333333333,49.2890722118,49.2890722118 -50,0,24.4633333333,48.2233333333,22.2,50.4666666667,26.29,45,23.79,46.1266666667,23,52.09,11.2266666667,52.53,23.6,42.4,25.73,50.4,23.2,49.5,11.35,752.2166666667,96.8333333333,4,56.3333333333,10.8166666667,7.7913392568,7.7913392568 -50,0,24.39,48.09,22.1666666667,50.4,26.29,45,23.745,46.09,23,52.06,11.19,52.56,23.5571428571,42.3371428571,25.7,50.5,23.2,49.5128571429,11.3,752.3,97,4,55,10.8,20.6822258304,20.6822258304 -50,0,24.39,48.09,22.1,50.4,26.29,44.9,23.76,46.06,23,52,11.13,52.5,23.5,42.272,25.7,50.4333333333,23.2,49.545,11.2666666667,752.3333333333,96.8333333333,4,56,10.7333333333,26.381535409,26.381535409 -50,0,24.39,48.09,22.1,50.4,26.29,44.9,23.7,46,22.9266666667,51.9666666667,11.0666666667,52.56,23.5714285714,42.2,25.6666666667,50.4333333333,23.2,49.5,11.2333333333,752.3666666667,96.6666666667,4,57,10.6666666667,48.0372986989,48.0372986989 -50,0,24.39,48.09,22.1,50.4,26.29,44.9,23.7,45.9666666667,23,51.9,11,52.56,23.5,42.09,25.6,50.7666666667,23.2,49.5385714286,11.2,752.4,96.5,4,58,10.6,33.7333553005,33.7333553005 -50,0,24.39,48.03,22.0666666667,50.3633333333,26.23,44.9,23.7,45.9,22.9633333333,51.8633333333,11,52.53,23.5,42.0385714286,25.6,50.9,23.2,49.536,11.1666666667,752.4333333333,96.3333333333,4,59,10.5333333333,29.3817564845,29.3817564845 -60,0,24.3566666667,47.9666666667,22,50.29,26.26,44.79,23.7,45.9,22.9633333333,51.79,10.9266666667,52.59,23.5,42,25.6,50.8725,23.2,49.59,11.1333333333,752.4666666667,96.1666666667,4,60,10.4666666667,47.4673552089,47.4673552089 -50,0,24.29,47.9666666667,22,50.26,26.26,44.79,23.7,45.9,22.89,51.76,10.89,52.59,23.5,41.9285714286,25.6,50.79,23.218,49.612,11.1,752.5,96,4,61,10.4,37.2845802456,37.2845802456 -60,0,24.29,47.9,22,50.2,26.26,44.76,23.7,45.79,22.89,51.7,10.89,52.59,23.5,41.9,25.5,50.76,23.2514285714,49.7,11.1,752.5666666667,95.6666666667,4,61.1666666667,10.3666666667,11.5993472864,11.5993472864 -60,0,24.29,47.8266666667,21.9633333333,50.2,26.26,44.76,23.7,45.79,22.89,51.6633333333,10.89,52.59,23.5,41.9,25.5,50.6266666667,23.29,49.754,11.1,752.6333333333,95.3333333333,4,61.3333333333,10.3333333333,38.5337208165,38.5337208165 -60,0,24.2,47.7,21.89,50.2,26.29,44.7,23.6,45.59,22.89,51.59,10.89,52.59,23.5,41.834,25.39,50.43,23.29,49.7514285714,11.1,752.7,95,4,61.5,10.3,38.7300887029,38.7300887029 -60,0,24.2,47.6266666667,21.89,50.2,26.29,44.7,23.6666666667,45.6633333333,22.89,51.5,10.8,52.5,23.5,41.79,25.39,50.23,23.29,49.79,11.1,752.7666666667,94.6666666667,4,61.6666666667,10.2666666667,38.8847803231,38.8847803231 -60,0,24.2,47.6633333333,21.89,50.1633333333,26.29,44.6633333333,23.6,45.56,22.89,51.5,10.8,52.5,23.5,41.7,25.39,50.0266666667,23.29,49.7514285714,11.1,752.8333333333,94.3333333333,4,61.8333333333,10.2333333333,12.930700602,12.930700602 -50,0,24.2,47.6633333333,21.89,50.09,26.29,44.59,23.6,45.5,22.89,51.5,10.8,52.5,23.5,41.7,25.39,49.8266666667,23.236,49.634,11.1,752.9,94,4,62,10.2,39.678077586,39.678077586 -60,0,24.2,47.59,21.79,50,26.29,44.56,23.6,45.5,22.89,51.4,10.745,52.5,23.5,41.678,25.3566666667,49.79,23.29,49.7,11.0666666667,752.8833333333,94.1666666667,3.8333333333,61.8333333333,10.2,8.0656706821,8.0656706821 -50,0,24.1333333333,47.59,21.79,50,26.29,44.56,23.6,45.5,22.89,51.3266666667,10.8,52.5,23.5,41.59,25.29,49.79,23.29,49.736,11.0333333333,752.8666666667,94.3333333333,3.6666666667,61.6666666667,10.2,5.9179515694,5.9179515694 -50,0,24.1,47.59,21.79,50,26.29,44.5,23.6,45.5,22.9633333333,51.29,10.8,52.4666666667,23.5,41.59,25.29,49.7,23.29,49.7385714286,11,752.85,94.5,3.5,61.5,10.2,48.917345691,48.917345691 -50,0,24.1,47.59,21.79,50,26.29,44.5,23.6,45.4333333333,22.89,51.29,10.8,52.4666666667,23.5,41.5128571429,25.29,49.6266666667,23.29,49.79,10.9666666667,752.8333333333,94.6666666667,3.3333333333,61.3333333333,10.2,1.5569273732,1.5569273732 -50,0,24.1,47.59,21.76,49.9666666667,26.29,44.5,23.6,45.4,22.89,51.2,10.8,52.5,23.5,41.5,25.2,49.5266666667,23.29,49.79,10.9333333333,752.8166666667,94.8333333333,3.1666666667,61.1666666667,10.2,10.8641716302,10.8641716302 -50,0,24.1,47.59,21.7,49.9,26.29,44.5,23.6,45.4,22.89,51.2,10.8,52.5,23.5,41.5,25.2,49.4,23.29,49.79,10.9,752.8,95,3,61,10.2,33.8115563383,33.8115563383 -50,0,24.1,47.59,21.7,49.9,26.29,44.5,23.6,45.3633333333,22.89,51.09,10.7633333333,52.5,23.4528571429,41.41,25.2,49.26,23.29,49.8685714286,10.9,752.9,95,3,60.3333333333,10.2,24.8435112415,24.8435112415 -40,0,24,47.5,21.7,49.9,26.26,44.4,23.575,45.29,22.89,51.09,10.7633333333,52.5,23.5,41.4,25.2,49.2,23.29,49.9,10.9,753,95,3,59.6666666667,10.2,0.8198399213,0.8198399213 -50,0,24,47.5,21.7,49.9,26.2,44.4,23.5,45.29,22.89,51,10.8,52.5,23.4528571429,41.3528571429,25.1666666667,49.2,23.29,49.9,10.9,753.1,95,3,59,10.2,21.4916238096,21.4916238096 -50,0,24,47.5,21.7,49.9,26.2,44.4,23.5,45.29,22.89,51,10.7266666667,52.5,23.456,41.334,25.1,49.26,23.29,49.92,10.9,753.2,95,3,58.3333333333,10.2,5.5602071807,5.5602071807 -60,0,23.9266666667,47.4333333333,21.7,49.8266666667,26.2,44.4,23.5,45.29,22.89,50.9,10.8,52.5,23.5,41.3371428571,25.1,49.29,23.29,49.9571428571,10.9,753.3,95,3,57.6666666667,10.2,21.0961247678,21.0961247678 -90,0,23.89,47.4666666667,21.7,49.9,26.2,44.3266666667,23.5,45.26,22.89,50.9,10.8,52.5,23.456,41.254,25.1,49.29,23.29,49.96,10.9,753.4,95,3,57,10.2,0.7811730378,0.7811730378 -60,0,23.89,47.66,21.6666666667,49.86,26.2,44.3266666667,23.5,45.26,22.89,50.9,10.7266666667,52.5,23.4057142857,41.2128571429,25.1,49.2,23.29,49.9857142857,10.9,753.4333333333,95,3,56.8333333333,10.2,31.7113044788,31.7113044788 -70,0,23.9266666667,47.9666666667,21.6,50.1933333333,26.1,44.0266666667,23.5,45.2225,22.89,50.9,10.8,52.4333333333,23.434,41.236,25.075,49.1725,23.29,50,10.9,753.4666666667,95,3,56.6666666667,10.2,4.7998042894,4.7998042894 -70,10,24,47.8266666667,21.6,50.5,26.0333333333,43.6933333333,23.5,45.29,22.89,50.6933333333,10.89,52.5,23.4371428571,41.2,25.0666666667,49.09,23.29,50.095,10.9,753.5,95,3,56.5,10.2,3.4595476929,3.4595476929 -50,0,24,47.79,21.6,50.5,26,43.3633333333,23.5,45.4,22.89,50.4333333333,10.9633333333,52.4333333333,23.39,41.134,25,49.09,23.29,50.1471428571,10.9,753.5333333333,95,3,56.3333333333,10.2,30.4336908506,30.4336908506 -60,0,24,47.79,21.6,50.59,25.9266666667,43.03,23.5,45.4666666667,22.9633333333,50.3266666667,11.0333333333,52.4333333333,23.39,41.1685714286,25,49.1633333333,23.33,50.356,10.9,753.5666666667,95,3,56.1666666667,10.2,41.2612117478,41.2612117478 -60,0,23.9633333333,47.8266666667,21.6333333333,50.6566666667,25.79,43,23.4266666667,45.4333333333,22.89,50.5266666667,11.16,52.56,23.39,41.156,25,49.4633333333,23.3042857143,50.2128571429,10.9,753.6,95,3,56,10.2,39.2042919761,39.2042919761 -60,0,23.9633333333,47.9,21.6333333333,50.73,25.73,43,23.5,45.5,23,50.645,11.345,52.645,23.39,41.1214285714,25,49.53,23.29,50.134,10.9333333333,753.6666666667,95.1666666667,2.8333333333,54.3333333333,10.25,47.130771412,47.130771412 -50,10,24,47.76,21.6666666667,50.7,25.7,43,23.39,45.4333333333,22.89,50.73,11.39,52.73,23.39,41.2,24.9633333333,49.26,23.29,50.09,10.9666666667,753.7333333333,95.3333333333,2.6666666667,52.6666666667,10.3,15.6743685482,15.6743685482 -80,0,24,47.7,21.6,50.7,25.7,43,23.39,45.5,22.89,50.79,11.4633333333,52.79,23.39,41.1057142857,24.89,49.0666666667,23.29,50.2,11,753.8,95.5,2.5,51,10.35,38.4803413181,38.4803413181 -50,0,24,47.6266666667,21.7,50.79,25.7,43,23.5,45.73,22.89,50.79,11.5,52.9,23.39,41.134,24.89,48.8633333333,23.29,50.2,11.0333333333,753.8666666667,95.6666666667,2.3333333333,49.3333333333,10.4,46.7522103689,46.7522103689 -60,0,24,47.76,21.7,50.8633333333,25.6333333333,42.9333333333,23.4266666667,45.79,22.89,50.8633333333,11.5666666667,52.9,23.39,41.09,24.89,48.6566666667,23.29,50.134,11.0666666667,753.9333333333,95.8333333333,2.1666666667,47.6666666667,10.45,29.0424990933,29.0424990933 -60,0,24,47.79,21.7,50.9,25.6,42.79,23.5,46,22.89,50.9,11.63,52.9333333333,23.39,41.156,24.8566666667,48.43,23.29,50.0257142857,11.1,754,96,2,46,10.5,29.4978852384,29.4978852384 -50,0,24,47.79,21.7,50.9,25.6,42.7,23.4266666667,45.9333333333,22.89,50.9,11.7633333333,53,23.39,41.1842857143,24.79,48.23,23.29,49.9,11.1666666667,754.1,96,2,46.1666666667,10.55,3.2843732042,3.2843732042 -70,0,24,47.79,21.7,50.9,25.6,42.7,23.5,46,22.89,50.79,12.0333333333,53.1266666667,23.39,41.156,24.79,48.06,23.29,49.7928571429,11.2333333333,754.2,96,2,46.3333333333,10.6,15.1166440803,15.1166440803 -50,0,24.1,47.9,21.7,50.8266666667,25.6,42.7,23.4725,45.975,22.89,50.79,12.16,53.2,23.39,41.1528571429,24.79,47.9333333333,23.272,49.66,11.3,754.3,96,2,46.5,10.65,19.8988546035,19.8988546035 -60,0,24.1,47.9,21.79,50.79,25.5333333333,42.7,23.4633333333,45.9,22.89,50.79,12.39,53.29,23.39,41.156,24.79,47.8333333333,23.2,49.4714285714,11.3666666667,754.4,96,2,46.6666666667,10.7,17.8073817748,17.8073817748 -50,10,24.1,47.9,21.73,50.79,25.5666666667,42.7,23.39,45.79,22.89,50.79,12.33,53.3633333333,23.39,41.1685714286,24.79,47.7,23.2,49.29,11.4333333333,754.5,96,2,46.8333333333,10.75,4.5795896091,4.5795896091 -50,0,24.0333333333,47.8266666667,21.79,50.79,25.5,42.7,23.39,45.79,22.89,50.79,12.19,53.4,23.39,41.156,24.7,47.6633333333,23.23,49.245,11.5,754.6,96,2,47,10.8,0.193765224,0.193765224 -50,0,24.1,47.8633333333,21.79,50.79,25.5,42.7,23.39,45.79,22.89,50.79,12.19,53.4,23.39,41.2,24.7,47.59,23.2,49.06,11.5666666667,754.65,95.3333333333,2,49.3333333333,10.7833333333,4.8071080586,4.8071080586 -50,0,24.1,47.79,21.79,50.79,25.5,42.7,23.39,45.73,22.89,50.73,12.19,53.29,23.39,41.2,24.6666666667,47.4666666667,23.2,49,11.6333333333,754.7,94.6666666667,2,51.6666666667,10.7666666667,33.9660147089,33.9660147089 -50,0,24.1,47.8266666667,21.79,50.79,25.39,42.79,23.39,45.7,22.89,50.73,12.13,53.29,23.39,41.2,24.6,47.4,23.2,48.8725,11.7,754.75,94,2,54,10.75,36.9107076433,36.9107076433 -60,0,24.1,47.8266666667,21.79,50.79,25.39,42.79,23.39,45.7,22.89,50.7,11.9333333333,53.1633333333,23.39,41.2,24.6,47.29,23.2,48.79,11.7666666667,754.8,93.3333333333,2,56.3333333333,10.7333333333,32.6076870901,32.6076870901 -50,0,24.1,47.8633333333,21.79,50.73,25.39,42.79,23.39,45.6633333333,22.89,50.7,11.6666666667,52.9633333333,23.39,41.2,24.6,47.29,23.2,48.6633333333,11.8333333333,754.85,92.6666666667,2,58.6666666667,10.7166666667,17.8191649262,17.8191649262 -60,0,24.1,47.79,21.79,50.7,25.39,42.73,23.39,45.59,22.89,50.7,11.3,52.79,23.39,41.2,24.5333333333,47.23,23.2,48.59,11.9,754.9,92,2,61,10.7,4.2817499023,4.2817499023 -50,0,24.1,47.79,21.8925,50.595,25.39,42.59,23.39,45.56,22.89,50.6266666667,11.4975,52.7675,23.39,41.09,24.5,47.09,23.2,48.4666666667,12,754.95,90.6666666667,2,57.5,10.5666666667,1.3387969579,1.3387969579 -60,10,24.1,47.79,21.9266666667,50.36,25.39,42.59,23.39,45.5,22.89,50.59,11.8966666667,52.7,23.39,41.03,24.5,47.03,23.1333333333,48.3266666667,12.1,755,89.3333333333,2,54,10.4333333333,44.4623455289,44.4623455289 -50,0,24.1,47.7,22,50.26,25.39,42.59,23.39,45.4,22.89,50.59,12.2933333333,52.8266666667,23.39,41,24.5,46.9666666667,23.2,48.145,12.2,755.05,88,2,50.5,10.3,24.7619965114,24.7619965114 -60,0,24.1,47.7,22.0666666667,50.2,25.39,42.59,23.39,45.4,22.89,50.545,12.8333333333,52.9,23.39,40.9333333333,24.5,46.9,23.1,48.06,12.3,755.1,86.6666666667,2,47,10.1666666667,30.3344515851,30.3344515851 -50,0,24.1,47.7,22.1633333333,49.9666666667,25.39,42.59,23.3566666667,45.4,22.89,50.5,13.49,53.3666666667,23.39,40.9,24.4633333333,46.8633333333,23.1666666667,47.9333333333,12.4,755.15,85.3333333333,2,43.5,10.0333333333,3.0857096892,3.0857096892 -50,0,24.1,47.7,22.29,49.7666666667,25.39,42.59,23.3566666667,45.4,22.89,50.4333333333,13.7633333333,53.9,23.39,40.9,24.39,46.79,23.1,47.6633333333,12.5,755.2,84,2,40,9.9,1.9209863269,1.9209863269 -50,0,24.1,47.7,22.39,49.4666666667,25.39,42.59,23.39,45.4,22.89,50.4,14.1666666667,54.33,23.39,40.9,24.39,46.79,23.1666666667,47.53,12.5833333333,755.2833333333,84,2.1666666667,40,9.9666666667,3.8704456878,3.8704456878 -40,0,24.1,47.7,22.4633333333,49.3266666667,25.39,42.6633333333,23.39,45.4,22.89,50.4,14.7,54.59,23.39,40.9,24.39,46.79,23.1666666667,47.4666666667,12.6666666667,755.3666666667,84,2.3333333333,40,10.0333333333,7.496185659,7.496185659 -60,0,24.1,47.7,22.6,49.06,25.34,42.7,23.39,45.29,22.89,50.29,14.8966666667,52.9633333333,23.39,41,24.39,46.9,23.1,47.4,12.75,755.45,84,2.5,40,10.1,30.4232646478,30.4232646478 -50,0,24.1,47.73,22.5333333333,49,25.39,42.7,23.39,45.3633333333,22.89,50.29,14.3566666667,48.9633333333,23.3233333333,41,24.39,46.9,23.1666666667,47.4,12.8333333333,755.5333333333,84,2.6666666667,40,10.1666666667,46.9913202687,46.9913202687 -60,0,24.1,47.79,22.5,49.1266666667,25.3233333333,42.7,23.39,45.4,22.89,50.29,13.8233333333,48.4,23.39,41,24.29,46.9,23.1,47.4,12.9166666667,755.6166666667,84,2.8333333333,40,10.2333333333,33.1406288198,33.1406288198 -50,10,24.1,47.76,22.4266666667,49.1266666667,25.29,42.73,23.3566666667,45.4,22.89,50.29,13.49,47.8,23.39,41,24.29,46.9,23.1,47.3266666667,13,755.7,84,3,40,10.3,32.0569006144,32.0569006144 -60,0,24.1,47.7,22.39,49.2,25.29,42.73,23.3566666667,45.4,22.89,50.26,13.2266666667,49.8333333333,23.39,41,24.29,46.9,23.1,47.4,12.9833333333,755.7666666667,84,3.3333333333,37.5,10.2833333333,10.9695528634,10.9695528634 -50,0,24.1,47.7,22.4633333333,49.2,25.39,42.7,23.39,45.3266666667,22.89,50.2,13.5,48.8333333333,23.39,41,24.29,46.9,23.1,47.26,12.9666666667,755.8333333333,84,3.6666666667,35,10.2666666667,23.5780707328,23.5780707328 -60,0,24.1,47.7,22.5333333333,49.0266666667,25.3233333333,42.7,23.39,45.4,22.89,50.2,13.96,47.1233333333,23.39,41,24.29,46.9,23.1,47.1266666667,12.95,755.9,84,4,32.5,10.25,14.5463974099,14.5463974099 -60,0,24.1,47.7,22.6666666667,48.8266666667,25.39,42.7,23.39,45.3266666667,22.89,50.2,14.2333333333,40.1966666667,23.39,41,24.29,46.9,23.1,46.9666666667,12.9333333333,755.9666666667,84,4.3333333333,30,10.2333333333,23.4189830022,23.4189830022 -60,0,24.1,47.7,22.8233333333,48.56,25.3233333333,42.7,23.39,45.4,22.9266666667,50.09,14.46,37.1,23.39,40.9,24.23,46.8266666667,23.1,46.8266666667,12.9166666667,756.0333333333,84,4.6666666667,27.5,10.2166666667,36.6151551832,36.6151551832 -40,0,24.1,47.86,22.89,48.36,25.3233333333,42.7,23.4633333333,45.4666666667,22.9266666667,50.09,14.8666666667,38.6333333333,23.39,40.9,24.29,46.8266666667,23.1,46.6633333333,12.9,756.1,84,5,25,10.2,43.9860922983,43.9860922983 -50,0,24.1,48.2666666667,22.9266666667,48.26,25.39,42.7,23.39,45.4,22.9266666667,50,15.85,34.45,23.39,40.9,24.245,46.895,23.1,46.59,13.1333333333,756.1166666667,82,5,27.5,10.0333333333,6.0800035601,6.0800035601 -60,0,24.1,48.1933333333,23.075,48.07,25.39,42.6266666667,23.39,45.53,23,50,16.0666666667,28.4,23.39,40.9,24.2,47,23.1,46.59,13.3666666667,756.1333333333,80,5,30,9.8666666667,32.7138459077,32.7138459077 -60,10,24.1,48.2666666667,23.1666666667,47.8266666667,25.4633333333,42.7,23.39,45.59,23,50,16.0666666667,22.5933333333,23.39,40.9,24.2,47.06,23.1,46.59,13.6,756.15,78,5,32.5,9.7,23.8107267534,23.8107267534 -80,0,24.1,48.06,23.3233333333,47.6,25.5,42.6633333333,23.5,45.7,23,50,16.36,17.79,23.4266666667,40.79,24.2,47.09,23.1,46.45,13.8333333333,756.1666666667,76,5,35,9.5333333333,30.9301913599,30.9301913599 -80,0,24.1,47.86,23.39,47.2666666667,25.5,42.59,23.5,45.7,23,49.9,16.5666666667,14.4633333333,23.5,40.718,24.2,47.09,23.1,46.254,14.0666666667,756.1833333333,74,5,37.5,9.3666666667,13.4085387108,13.4085387108 -50,0,24.1,47.56,23.5333333333,47.0266666667,25.5,42.59,23.5,45.7,23,49.8083333333,16.9266666667,14.7333333333,23.5,40.634,24.2,47.06,23.1,46.09,14.3,756.2,72,5,40,9.2,30.3400309407,30.3400309407 -60,0,24.1666666667,47.5,23.6666666667,46.8266666667,25.5,42.59,23.5,45.6266666667,23.0285714286,49.8085714286,17.26,10.9333333333,23.5,40.5642857143,24.2,47,23.1,46.03,14.4666666667,756.2666666667,71.8333333333,5,40,9.3333333333,41.6148438118,41.6148438118 -60,0,24.2,47.3633333333,23.73,46.43,25.6,42.59,23.5333333333,45.5,23.02,49.754,17.6966666667,7.93,23.6,40.46,24.2,46.9666666667,23.1333333333,45.9,14.6333333333,756.3333333333,71.6666666667,5,40,9.4666666667,36.239053926,36.239053926 -50,0,24.2,47.1566666667,23.79,46.1566666667,25.6,42.59,23.6,45.36,23.1,49.79,17.89,4.0633333333,23.6,40.3371428571,24.2,46.8266666667,23.1333333333,45.8266666667,14.8,756.4,71.5,5,40,9.6,19.4857998868,19.4857998868 -60,0,24.23,47.03,24,45.9,25.6333333333,42.59,23.6,45.26,23.1,49.7,18.3233333333,1.1933333333,23.6,40.214,24.2,46.76,23.1,45.7,14.9666666667,756.4666666667,71.3333333333,5,40,9.7333333333,19.3340944126,19.3340944126 -60,0,24.29,46.9975,24.0666666667,45.7,25.7,42.5225,23.6,45.2,23.1,49.6842857143,18.3233333333,1,23.6,40.09,24.2,46.7,23.1,45.6266666667,15.1333333333,756.5333333333,71.1666666667,5,40,9.8666666667,16.3913738215,16.3913738215 -60,0,24.29,46.9,24.1,45.3333333333,25.7,42.5,23.6333333333,45.09,23.1,49.59,17.93,1,23.6,39.96,24.2,46.56,23.2,45.4666666667,15.3,756.6,71,5,40,10,14.5769699477,14.5769699477 -50,0,24.3566666667,46.8633333333,24.1,45.1266666667,25.7,42.5,23.7,45.0675,23.1,49.59,17.73,1,23.6857142857,39.9285714286,24.2,46.5,23.1333333333,45.3266666667,15.2833333333,756.65,70.6666666667,5.1666666667,40,9.9333333333,45.4551444855,45.4551444855 -60,0,24.3566666667,46.79,24.1666666667,45,25.7,42.5,23.7,45,23.1,49.59,17.4966666667,1,23.7,39.834,24.1333333333,46.4,23.1,45.26,15.2666666667,756.7,70.3333333333,5.3333333333,40,9.8666666667,29.5091406791,29.5091406791 -40,0,24.39,46.6633333333,24.1666666667,44.9333333333,25.7,42.5,23.7,45,23.1,49.5128571429,17.29,2.1933333333,23.7,39.73125,24.2,46.3266666667,23.1666666667,45.1266666667,15.25,756.75,70,5.5,40,9.8,5.8953415253,5.8953415253 -70,0,24.39,46.59,24.29,44.7233333333,25.7,42.5,23.7,44.9333333333,23.1,49.48,17.6333333333,2.0933333333,23.7,39.59,24.2,46.4,23.2,45.06,15.2333333333,756.8,69.6666666667,5.6666666667,40,9.7333333333,42.5632750499,42.5632750499 -70,0,24.5,46.9666666667,24.29,44.53,25.7,42.5,23.7,44.8633333333,23.1285714286,49.4,17.76,1.2333333333,23.7385714286,39.59,24.1333333333,46.4,23.1333333333,45,15.2166666667,756.85,69.3333333333,5.8333333333,40,9.6666666667,48.8831635215,48.8831635215 -70,0,24.4266666667,46.8266666667,24.29,44.6566666667,25.76,42.4333333333,23.7,44.79,23.2,49.356,17.53,1,23.7,39.5,24.1,46.3633333333,23.2,44.9,15.2,756.9,69,6,40,9.6,42.1830769512,42.1830769512 -70,0,24.5,46.79,24.29,44.79,25.7,42.4,23.7,44.73,23.1714285714,49.29,17.2633333333,1,23.7,39.5,24.1,46.23,23.1333333333,44.8266666667,15.1333333333,756.9666666667,69.6666666667,6,40,9.6666666667,3.3570866915,3.3570866915 -80,0,24.5,46.73,24.3233333333,44.6633333333,25.76,42.4,23.76,44.99,23.2,49.29,17.3233333333,1.6,23.7,39.48,24.1,46.2,23.1,44.76,15.0666666667,757.0333333333,70.3333333333,6,40,9.7333333333,35.2016827674,35.2016827674 -60,0,24.5,46.6633333333,24.39,44.53,25.7,42.3633333333,23.79,45.3266666667,23.2,49.29,17.4975,1,23.7,39.4,24.1,46.2,23.1,44.7,15,757.1,71,6,40,9.8,15.0973608252,15.0973608252 -90,0,24.5,46.59,24.39,44.4,25.7,42.23,23.8566666667,45.5266666667,23.2,49.29,17.6666666667,1,23.79,39.356,24.1,46.2,23.1333333333,44.59,14.9333333333,757.1666666667,71.6666666667,6,40,9.8666666667,44.7921216255,44.7921216255 -70,0,24.5333333333,46.5,24.39,44.2675,25.7,42.1633333333,23.89,45.5,23.2,49.29,17.5966666667,1,23.79,39.29,24.1,46.23,23.2,44.59,14.8666666667,757.2333333333,72.3333333333,6,40,9.9333333333,31.5215775976,31.5215775976 -70,0,24.6,46.36,24.39,44.09,25.7,42.09,23.9633333333,45.56,23.2,49.29,17.53,1,23.79,39.2225,24.1,46.3633333333,23.15,44.5,14.8,757.3,73,6,40,10,29.9695986323,29.9695986323 -60,0,24.6,46.26,24.39,43.9666666667,25.7,42.06,24,45.7,23.2257142857,49.3214285714,17.89,1.6,23.83,39.178,24,46.2,23.1666666667,44.4,14.8166666667,757.35,72.3333333333,6.1666666667,40,9.8833333333,10.6838163105,10.6838163105 -70,0,24.6,46.2,24.39,43.9,25.76,42,24.0666666667,45.76,23.29,49.4,17.8233333333,1.9933333333,23.8614285714,39.1371428571,24.0666666667,46.26,23.1666666667,44.4,14.8333333333,757.4,71.6666666667,6.3333333333,40,9.7666666667,19.5114298491,19.5114298491 -100,0,24.6,46.2,24.39,43.9,25.79,42,24.1,45.76,23.29,49.2857142857,17.3266666667,1.76,23.79,38.9,24.0333333333,46.23,23.1666666667,44.2233333333,14.85,757.45,71,6.5,40,9.65,30.2870412939,30.2870412939 -290,0,24.6,46.1266666667,24.39,43.8266666667,25.79,42,24.1,45.6266666667,23.29,49.096,17.2,3.2933333333,23.8042857143,38.8528571429,24.1,46.29,23.1,44.03,14.8666666667,757.5,70.3333333333,6.6666666667,40,9.5333333333,11.0154232942,11.0154232942 -350,0,24.6,45.8333333333,24.3233333333,43.6633333333,25.79,41.9666666667,24.1,45.56,23.3185714286,48.7957142857,17.2633333333,3.89,23.89,38.878,24.1333333333,46.4333333333,23.1,43.8633333333,14.8833333333,757.55,69.6666666667,6.8333333333,40,9.4166666667,17.7495510667,17.7495510667 -270,0,24.6,45.6266666667,24.3233333333,43.53,25.79,41.9,24.1,45.5,23.39,48.554,17.3233333333,3.7566666667,23.8185714286,38.7257142857,24.2,46.56,23.1,43.73,14.9,757.6,69,7,40,9.3,30.7145053055,30.7145053055 -230,0,24.6,45.795,24.29,43.4333333333,25.79,41.95,24.2,45.4,23.39,48.3385714286,17.0633333333,3.09,23.79,38.59,24.3233333333,47.1566666667,23.1,43.56,14.8666666667,757.65,69.8333333333,7,40,9.4333333333,36.2910085474,36.2910085474 -240,0,24.6666666667,46.9966666667,24.29,43.6333333333,25.79,42,24.2,45.3266666667,23.39,48.178,16.6633333333,5.03,23.79,38.59,24.39,47.3633333333,23.1,43.425,14.8333333333,757.7,70.6666666667,7,40,9.5666666667,14.1864028992,14.1864028992 -590,0,24.6666666667,46.59,24.2,43.8266666667,25.79,41.9333333333,24.2,45.145,23.39,48.0257142857,16.73,5.46,23.79,38.59,24.5,47.56,23.1,43.3633333333,14.8,757.75,71.5,7,40,9.7,34.1459394083,34.1459394083 -490,0,24.79,47.33,24.26,44.0266666667,25.79,41.9,24.2,45.1266666667,23.445,47.9,17.0633333333,4.7933333333,23.8328571429,38.59,24.5,47.5,23.1,43.245,14.7666666667,757.8,72.3333333333,7,40,9.8333333333,18.8302916242,18.8302916242 -460,0,24.8566666667,49.6633333333,24.29,45.06,25.79,41.9666666667,24.2,45.26,23.5,47.9285714286,17.2675,3.59,23.79,38.5,24.6,47.1933333333,23.1,43.2,14.7333333333,757.85,73.1666666667,7,40,9.9666666667,32.9661862692,32.9661862692 -160,0,25.3,49.66,24.29,46.6666666667,25.89,42.3266666667,24.2,45.1333333333,23.6428571429,48.2542857143,17.0666666667,2.1633333333,23.79,38.3985714286,24.6,46.8,23.1,43.1175,14.7,757.9,74,7,40,10.1,5.118773086,5.118773086 -120,0,25.5,49.2666666667,24.29,47.36,25.9633333333,42.7333333333,24.2,44.86,23.718,48.478,16.76,2.36,23.79,38.272,24.6333333333,46.79,23.1,42.8333333333,14.6166666667,757.95,74,6.8333333333,40,10.0166666667,2.4465030176,2.4465030176 -110,0,25.4633333333,48.3333333333,24.3566666667,47.36,26,42.9333333333,24.2,44.6633333333,23.79,48.59,16.36,2.5666666667,23.79,38.1214285714,24.76,46.73,23.1,42.5666666667,14.5333333333,758,74,6.6666666667,40,9.9333333333,23.9495592657,23.9495592657 -120,0,25.39,47.7266666667,24.3566666667,46.8633333333,25.9266666667,42.7266666667,24.2,44.6633333333,24.316,75.434,15.9633333333,3.7666666667,23.79,38,24.73,46.49,23.075,42.24,14.45,758.05,74,6.5,40,9.85,38.0166586139,38.0166586139 -120,0,25.3566666667,47.0266666667,24.29,46.39,25.9266666667,42.53,24.2,44.9333333333,25.1828571429,83.61,15.3225,5.1475,23.79,37.9428571429,24.79,46.1566666667,23,41.9709090909,14.3666666667,758.1,74,6.3333333333,40,9.7666666667,35.1789265522,35.1789265522 -110,0,25.29,46.6333333333,24.1666666667,45.6933333333,26,42.73,24.2,45,24.654,83.076,14.8666666667,6.63,23.754,37.878,24.79,46.83,23.0142857143,42.0142857143,14.2833333333,758.15,74,6.1666666667,40,9.6833333333,46.907997469,46.907997469 -170,0,25.29,46.1933333333,24.1,45.36,25.89,42.2,24.2,45.1266666667,24.45,84.8671428571,14.5666666667,9.0666666667,23.7257142857,37.79,24.815,47.0225,23.05,42.245,14.2,758.2,74,6,40,9.6,17.8409478161,17.8409478161 -110,0,25.29,45.86,24,44.95,25.9633333333,42.46,24.2,45.2,24.6,85.314,15.1666666667,10.1266666667,23.7,37.9,24.89,46.9333333333,23,42,14.0166666667,758.2833333333,74.5,5.8333333333,40,9.5333333333,39.6469567902,39.6469567902 -110,0,25.29,45.59,23.9633333333,44.79,26,42.56,24.2,45.2,24.6,83.2,17.3633333333,4.5933333333,23.7,37.9,24.89,46.8333333333,22.9175,41.925,13.8333333333,758.3666666667,75,5.6666666667,40,9.4666666667,35.8478806913,35.8478806913 -110,0,25.29,45.53,23.89,44.73,26,42.5,24.2,45.2,24.58,81.32,18.2233333333,1.4666666667,23.7,37.9,24.9633333333,46.7,22.89,41.9,13.65,758.45,75.5,5.5,40,9.4,11.6351985955,11.6351985955 -110,0,25.29,45.3633333333,23.8566666667,44.5266666667,25.89,42,24.2,45.2,24.5,79.3257142857,18.1233333333,1,23.7,37.9,25,46.53,22.8566666667,41.6333333333,13.4666666667,758.5333333333,76,5.3333333333,40,9.3333333333,19.0084713278,19.0084713278 -110,0,25.23,45.29,23.79,44.4,25.89,42,24.2,45.2,24.39,77.26,17.2633333333,1.26,23.7,37.9,25.0666666667,46.4633333333,22.8566666667,41.5,13.2833333333,758.6166666667,76.5,5.1666666667,40,9.2666666667,23.3084354084,23.3084354084 -110,0,25.2,45.1333333333,23.7,44.3266666667,25.8566666667,42,24.2,45.06,24.2657142857,75.6942857143,16.1933333333,3.9633333333,23.6428571429,37.8242857143,25.1,46.1933333333,22.79,41.3633333333,13.1,758.7,77,5,40,9.2,20.2271084534,20.2271084534 -110,0,25.2,45,23.7,44.4666666667,25.79,42,24.2,44.86,24.236,73.896,15.5933333333,4.9633333333,23.6,37.736,25.1,45.8,22.79,41.23,12.9666666667,758.7833333333,77.1666666667,5.1666666667,40,9.1,36.3228717935,36.3228717935 -100,0,25.2,44.9666666667,23.6,44.4,25.76,42.09,24.2,44.6633333333,24.1714285714,71.4257142857,14.2966666667,8.4666666667,23.6,37.7,25.1,45.4,22.79,41.1633333333,12.8333333333,758.8666666667,77.3333333333,5.3333333333,40,9,36.1890421249,36.1890421249 -110,0,25.2,44.9,23.6,44.4,25.7,42.03,24.2,44.53,24.1,68.854,13.63,11.3933333333,23.6,37.7,25.1,45.0666666667,22.73,41.03,12.7,758.95,77.5,5.5,40,8.9,45.7280509174,45.7280509174 -100,0,25.15,44.745,23.4633333333,44.4,25.7,41.9,24.2,44.26,24.0428571429,67.1957142857,13,16.9,23.6,37.6214285714,25.1333333333,44.8633333333,22.7,41,12.5666666667,759.0333333333,77.6666666667,5.6666666667,40,8.8,8.9008452953,8.9008452953 -100,20,25.1666666667,44.7,23.39,44.4,25.7,41.8633333333,24.125,44.095,24,65.42,12.6,21.0933333333,23.6,37.7,25.2,44.73,22.6333333333,40.9333333333,12.4333333333,759.1166666667,77.8333333333,5.8333333333,40,8.7,24.2367221392,24.2367221392 -80,20,25.1,44.6266666667,23.3566666667,44.5,25.7,41.79,24.1,44,23.9214285714,63.4971428571,12.36,24.8666666667,23.6,37.74,25.2,44.7666666667,22.6,40.9,12.3,759.2,78,6,40,8.6,25.4763042321,25.4763042321 -70,20,25.1,44.6266666667,23.29,44.56,25.7,41.79,24.1333333333,44.1266666667,23.89,61.21,12.2266666667,26.06,23.6,37.9,25.26,45.4933333333,22.6,40.9666666667,12.1333333333,759.2166666667,78.5,5.6666666667,40,8.5166666667,36.3061994431,36.3061994431 -70,20,25.1,44.7,23.2,44.59,25.7,41.79,24.2,44.26,23.89,60.88,11.9333333333,26.26,23.6,38,25.23,46.39,22.6,41,11.9666666667,759.2333333333,79,5.3333333333,40,8.4333333333,23.2969433418,23.2969433418 -60,30,25.0666666667,44.7,23.1333333333,44.6633333333,25.7,41.79,24.2,44.29,23.83,60.538,11.6666666667,26.4,23.6,38.0385714286,25.29,46.7966666667,22.6,41.06,11.8,759.25,79.5,5,40,8.35,21.0178883048,21.0178883048 -70,20,25,44.7,23.0666666667,44.9333333333,25.7,41.79,24.2,44.3633333333,23.79,60.1685714286,11.4633333333,26.1633333333,23.58,38.054,25.2,47.03,22.6666666667,41.6266666667,11.6333333333,759.2666666667,80,4.6666666667,40,8.2666666667,46.5829675784,46.5829675784 -60,20,25,44.7,23,45.06,25.7,41.79,24.29,44.5,23.79,59.62,11.2725,27.5725,23.5428571429,38.09,25.2,47.03,22.6,41.8333333333,11.4666666667,759.2833333333,80.5,4.3333333333,40,8.1833333333,47.5093365763,47.5093365763 -60,20,24.9266666667,44.7,22.89,45.1566666667,25.7,41.8633333333,24.29,44.56,23.7514285714,59.1557142857,11.0333333333,29.3333333333,23.5,38.09,25.2,47.09,22.7,42.1566666667,11.3,759.3,81,4,40,8.1,26.3220621157,26.3220621157 -70,20,24.89,44.73,22.8233333333,45.29,25.7,42.03,24.29,44.7,23.736,58.592,11.1,29.93,23.5,38.1528571429,25.1333333333,47.09,22.7,42.3633333333,11.2666666667,759.3166666667,81.5,3.8333333333,40,8.15,33.0535559217,33.0535559217 -70,30,24.89,44.79,22.76,45.3266666667,25.76,42.1633333333,24.3566666667,44.7,23.7,58.0671428571,11.1,29.93,23.5,38.178,25.1,47.2666666667,22.7,42.5666666667,11.2333333333,759.3333333333,82,3.6666666667,40,8.2,29.4686585781,29.4686585781 -70,10,24.89,44.76,22.7,45.5425,25.79,42.23,24.39,44.73,23.7,58.24625,11.1,30.2333333333,23.5,38.1685714286,25.075,47.525,22.7,42.76,11.2,759.35,82.5,3.5,40,8.25,2.8055169387,2.8055169387 -60,0,24.89,44.6266666667,22.6333333333,45.6633333333,25.79,42.29,24.39,44.73,23.7,59.09,11.16,30.9,23.5,38.2,25,47.8333333333,22.79,42.995,11.1666666667,759.3666666667,83,3.3333333333,40,8.3,16.8234719895,16.8234719895 -50,0,24.79,44.6566666667,22.6,45.73,25.8233333333,42.4,24.39,44.59,23.7,58.9657142857,11.1,31.5266666667,23.5,38.2,24.9633333333,47.9,22.79,43.23,11.1333333333,759.3833333333,83.5,3.1666666667,40,8.35,29.7354591778,29.7354591778 -70,0,24.79,44.8633333333,22.5333333333,45.8633333333,25.89,42.4,24.39,44.59,23.64,58.574,11.1,32.3333333333,23.5,38.2,24.89,47.9666666667,22.79,43.43,11.1,759.4,84,3,40,8.4,19.6743199835,19.6743199835 -50,0,24.79,44.9,22.5,45.9633333333,25.89,42.5,24.3566666667,44.4666666667,23.6285714286,58.1471428571,11.19,33.1566666667,23.5,38.2,24.89,47.9333333333,22.79,43.6566666667,11.1,759.45,84.1666666667,3.1666666667,40,8.4333333333,6.1753958347,6.1753958347 -60,0,24.73,44.9,22.4266666667,46.09,25.89,42.5,24.29,44.4,23.6,57.79,11.19,33.6966666667,23.5,38.2,24.89,48.1333333333,22.79,43.8633333333,11.1,759.5,84.3333333333,3.3333333333,40,8.4666666667,16.0208439804,16.0208439804 -60,0,24.76,44.79,22.39,46.1266666667,25.89,42.5,24.29,44.26,23.6,57.5257142857,11.2266666667,33.8266666667,23.5,38.2257142857,24.89,48.36,22.79,44.1266666667,11.1,759.55,84.5,3.5,40,8.5,10.3494113195,10.3494113195 -50,0,24.7,44.79,22.39,46.26,25.9633333333,42.8333333333,24.29,44.1266666667,23.6,57.25,11.3,33.8266666667,23.5,38.254,24.89,48.56,22.79,44.3333333333,11.1,759.6,84.6666666667,3.6666666667,40,8.5333333333,12.3670090456,12.3670090456 -60,0,24.6666666667,44.79,22.29,46.29,26,43,24.2,43.8633333333,23.5714285714,56.9657142857,11.3,33.8266666667,23.5,38.29,24.79,48.8266666667,22.79,44.53,11.1,759.65,84.8333333333,3.8333333333,40,8.5666666667,31.5001983894,31.5001983894 -60,0,24.6,44.745,22.29,46.3633333333,26,43,24.2,43.73,23.5,56.21,11.3,33.9666666667,23.5,38.29,24.79,48.9666666667,22.79,44.6633333333,11.1,759.7,85,4,40,8.6,44.9279973633,44.9279973633 -50,0,24.6,44.79,22.26,46.4666666667,26,43,24.2,43.545,23.5,55.7971428571,11.33,34.4633333333,23.4842857143,38.29,24.79,49.09,22.79,44.86,11.1,759.7166666667,85.3333333333,3.8333333333,38.1666666667,8.6666666667,20.5822488409,20.5822488409 -40,0,24.6,44.79,22.2,46.4,26,42.9,24.1,43.5,23.5,55.454,11.39,34.7233333333,23.434,38.29,24.79,49.09,22.8566666667,45.1333333333,11.1,759.7333333333,85.6666666667,3.6666666667,36.3333333333,8.7333333333,33.3290840848,33.3290840848 -50,0,24.6,44.79,22.2,46.53,26,42.9,24.1,43.4333333333,23.5,55.1942857143,11.3,35,23.4371428571,38.3371428571,24.79,49.09,22.89,45.3266666667,11.1,759.75,86,3.5,34.5,8.8,30.8005202678,30.8005202678 -50,0,24.5666666667,44.79,22.1333333333,46.59,25.9633333333,42.7333333333,24.1,43.29,23.5,54.856,11.3,35.4,23.5,38.4,24.73,49.03,22.89,45.4666666667,11.1,759.7666666667,86.3333333333,3.3333333333,32.6666666667,8.8666666667,49.270581943,49.270581943 -50,0,24.5,44.79,22.1,46.59,25.89,42.4,24.0333333333,43.23,23.5,54.6371428571,11.3,35.495,23.4371428571,38.3842857143,24.7,48.93,22.89,45.6266666667,11.1,759.7833333333,86.6666666667,3.1666666667,30.8333333333,8.9333333333,10.1188975386,10.1188975386 -50,0,24.5,44.79,22.1,46.6633333333,25.89,42.4333333333,24,43.2,23.478,54.4,11.19,34.6933333333,23.434,38.356,24.7,48.79,22.89,45.76,11.1,759.8,87,3,29,9,43.1903869263,43.1903869263 -60,0,24.5,44.8633333333,22.1,46.73,25.89,42.5,24,43.1266666667,23.4214285714,54.1214285714,11.13,34.4333333333,23.39,38.3175,24.7,48.59,22.89,45.9333333333,11.05,759.7833333333,86.8333333333,3.3333333333,29,8.9166666667,37.6928664977,37.6928664977 -60,0,24.4633333333,44.79,22.0333333333,46.73,25.89,42.5,24,43.09,23.39,53.856,11.1,34.3633333333,23.39,38.29,24.7,48.59,22.89,46.06,11,759.7666666667,86.6666666667,3.6666666667,29,8.8333333333,9.2086277786,9.2086277786 -60,0,24.39,44.79,22,46.7,25.89,42.5,24,43.03,23.39,53.7228571429,11.1,33.83,23.39,38.356,24.7,48.4666666667,22.89,46.1566666667,10.95,759.75,86.5,4,29,8.75,10.3248384316,10.3248384316 -60,0,24.39,44.73,22,46.7,25.89,42.4666666667,23.9266666667,43,23.39,53.572,11,32.76,23.39,38.29,24.7,48.4,22.89,46.3633333333,10.9,759.7333333333,86.3333333333,4.3333333333,29,8.6666666667,6.3262737938,6.3262737938 -50,0,24.39,44.79,22,46.745,25.89,42.4,23.9266666667,43,23.39,53.4285714286,11,32.5666666667,23.39,38.29,24.65,48.1,22.945,46.6,10.85,759.7166666667,86.1666666667,4.6666666667,29,8.5833333333,29.2247760692,29.2247760692 -60,0,24.39,44.79,22,46.79,25.89,42.4,23.89,42.9,23.39,53.254,10.89,32.7333333333,23.39,38.29,24.6333333333,47.8266666667,22.9266666667,46.79,10.8,759.7,86,5,29,8.5,38.92055467,38.92055467 -50,0,24.3233333333,44.79,21.9266666667,46.79,25.89,42.3266666667,23.89,42.9,23.39,53.1242857143,10.89,33.9333333333,23.39,38.236,24.6333333333,47.8266666667,22.9266666667,46.8633333333,10.7666666667,759.6833333333,86,4.8333333333,28.5,8.4833333333,48.3887499315,48.3887499315 -60,0,24.29,44.79,21.89,46.79,25.9633333333,42.66,23.8233333333,42.79,23.39,52.98,10.83,34.4566666667,23.39,38.2514285714,24.6,47.79,22.89,46.9333333333,10.7333333333,759.6666666667,86,4.6666666667,28,8.4666666667,7.1088176919,7.1088176919 -50,0,24.29,44.79,21.89,46.79,25.89,42.3266666667,23.8233333333,42.73,23.39,52.8214285714,10.83,34.8633333333,23.39,38.236,24.6,47.73,22.89,47,10.7,759.65,86,4.5,27.5,8.45,37.4066560646,37.4066560646 -60,0,24.26,44.76,21.8566666667,46.76,25.89,42.29,23.79,42.7,23.35,52.754,10.8,35.0966666667,23.39,38.2,24.6,47.6633333333,23,47.09,10.6666666667,759.6333333333,86,4.3333333333,27,8.4333333333,10.0369564258,10.0369564258 -50,0,24.26,44.76,21.79,46.7,25.89,42.29,23.79,42.7,23.3328571429,52.5928571429,10.8,35.43,23.39,38.2,24.6,47.53,23,47.1633333333,10.6333333333,759.6166666667,86,4.1666666667,26.5,8.4166666667,29.9479873967,29.9479873967 -50,0,24.2,44.7,21.79,46.73,25.89,42.29,23.79,42.7,23.29,52.48,10.8,35.26,23.39,38.2,24.6,47.4666666667,22.89,47.23,10.6,759.6,86,4,26,8.4,26.1423195712,26.1423195712 -50,0,24.2,44.7,21.73,46.79,25.9633333333,42.5633333333,23.79,42.7,23.29,52.4428571429,10.8,35.3333333333,23.35,38.2,24.6,47.4,22.89,47.3633333333,10.55,759.6166666667,86,3.8333333333,26,8.35,12.7206172212,12.7206172212 -50,0,24.2,44.7,21.76,46.79,25.9266666667,42.4266666667,23.76,42.7,23.29,52.33125,10.69,35.5666666667,23.3471428571,38.2,24.6,47.3633333333,22.9266666667,47.4333333333,10.5,759.6333333333,86,3.6666666667,26,8.3,23.117942689,23.117942689 -50,0,24.2,44.7,21.76,46.79,25.9175,42.325,23.7,42.7,23.29,52.254,10.69,35.76,23.33,38.2,24.5333333333,47.23,22.9266666667,47.5,10.45,759.65,86,3.5,26,8.25,39.9875049712,39.9875049712 -60,0,24.2,44.7,21.7,46.79,25.89,42.2,23.7,42.7,23.29,52.1371428571,10.69,36.19,23.3328571429,38.2,24.5666666667,47.1633333333,22.89,47.53,10.4,759.6666666667,86,3.3333333333,26,8.2,19.603390072,19.603390072 -60,0,24.1,44.7,21.7,46.79,25.89,42.2,23.7,42.7,23.29,52.072,10.63,36.4633333333,23.29,38.2,24.5,47.03,22.9633333333,47.6633333333,10.35,759.6833333333,86,3.1666666667,26,8.15,14.9711419246,14.9711419246 -50,0,24.1,44.76,21.7,46.79,25.89,42.2,23.7,42.7,23.2642857143,51.94,10.69,36.8633333333,23.29,38.2,24.5,46.9,23,47.6633333333,10.3,759.7,86,3,26,8.1,41.8942058925,41.8942058925 -50,0,24.1,44.73,21.7,46.79,25.89,42.2,23.7,42.7,23.2,51.754,10.6,37.26,23.29,38.2,24.5,46.8266666667,23,47.6633333333,10.3,759.6833333333,85.6666666667,3,28.3333333333,8.0166666667,8.9739169227,8.9739169227 -50,0,24.1,44.73,21.7,46.79,25.89,42.2,23.7,42.7,23.2,51.7257142857,10.6,37.3333333333,23.3185714286,38.2,24.5,46.79,23,47.59,10.3,759.6666666667,85.3333333333,3,30.6666666667,7.9333333333,41.5831874823,41.5831874823 -60,0,24,44.6266666667,21.6333333333,46.79,25.89,42.1633333333,23.6333333333,42.6266666667,23.2,51.634,10.6,37.4266666667,23.29,38.2,24.5,46.79,23,47.59,10.3,759.65,85,3,33,7.85,47.6467699627,47.6467699627 -60,0,24,44.7,21.6333333333,46.73,25.89,42.1633333333,23.7,42.7,23.2,51.59,10.6,37.7,23.29,38.2,24.5,46.7,23,47.7,10.3,759.6333333333,84.6666666667,3,35.3333333333,7.7666666667,49.9534182716,49.9534182716 -50,0,24,44.7,21.6333333333,46.73,25.89,42.09,23.6,42.59,23.2,51.5,10.6,37.8633333333,23.29,38.2,24.5,46.6266666667,23,47.76,10.3,759.6166666667,84.3333333333,3,37.6666666667,7.6833333333,12.0705663343,12.0705663343 -90,0,24,44.6266666667,21.6,46.79,25.89,42.09,23.6,42.59,23.2,51.4142857143,10.6,37.5966666667,23.29,38.2,24.5,46.56,23,47.79,10.3,759.6,84,3,40,7.6,30.6296220399,30.6296220399 -50,0,24,44.8,21.6,46.9266666667,25.89,42.06,23.6,42.59,23.2,51.278,10.6,36.7666666667,23.29,38.2,24.5,46.4333333333,23,47.8725,10.2666666667,759.6,84.1666666667,3,40,7.6,48.2829895918,48.2829895918 -40,0,24,45.06,21.6,47.4,25.8233333333,41.8,23.6,42.6633333333,23.2,50.5928571429,10.6,36.1666666667,23.29,38.2,24.5,46.345,23,47.9,10.2333333333,759.6,84.3333333333,3,40,7.6,0.222300319,0.222300319 -60,0,24,45.03,21.6,47.73,25.7,41.49,23.6,42.79,23.2,49.776,10.6,35.66,23.29,38.2,24.4633333333,46.2233333333,23,47.9,10.2,759.6,84.5,3,40,7.6,29.9437574693,29.9437574693 -340,0,24,45.03,21.6,47.8633333333,25.6333333333,41.23,23.6,42.8633333333,23.2,49.4485714286,10.6,35.1333333333,23.29,38.10375,24.39,46.09,23,47.9,10.1666666667,759.6,84.6666666667,3,40,7.6,9.5723877079,9.5723877079 -60,0,24,45.03,21.6,47.9,25.5666666667,41.29,23.6,42.9333333333,23.2,49.594,10.63,33.99,23.2257142857,38.0642857143,24.39,46.09,23,47.79,10.1333333333,759.6,84.8333333333,3,40,7.6,29.1913143708,29.1913143708 -70,0,24,45.09,21.6,47.9,25.5,41.0966666667,23.6,43,23.2,49.8971428571,10.69,33.3233333333,23.236,38.036,24.39,46.09,23,47.73,10.1,759.6,85,3,40,7.6,27.203320968,27.203320968 -70,0,24,45.1266666667,21.6,47.9666666667,25.4633333333,41.09,23.5333333333,43,23.2,50.134,10.7266666667,32.6333333333,23.2,38,24.3233333333,46.1266666667,23,47.59,10.1,759.6,84.6666666667,3.1666666667,40,7.55,37.4698570813,37.4698570813 -70,0,24,45.2,21.6,47.9,25.39,41.03,23.5333333333,43,23.1571428571,50.2514285714,10.8,32.0933333333,23.2,38,24.39,46.2,23,47.53,10.1,759.6,84.3333333333,3.3333333333,40,7.5,32.3023623438,32.3023623438 -70,0,24,45.06,21.6,47.79,25.39,41.2,23.5,43.03,23.14,50.312,10.83,30.9666666667,23.2,37.9142857143,24.29,46.1266666667,23,47.4666666667,10.1,759.6,84,3.5,40,7.45,46.4412794914,46.4412794914 -80,0,24,44.8975,21.6666666667,47.79,25.3233333333,41.2,23.5,42.9633333333,23.1285714286,50.4,10.9175,30.55,23.2,37.9,24.29,46.26,23,47.4,10.1,759.6,83.6666666667,3.6666666667,40,7.4,6.5295615816,6.5295615816 -70,0,24,44.4566666667,21.6,47.49,25.29,41.09,23.5,42.6,23.16,50.4,11,29.76,23.2,37.9,24.29,46.4,23,47.26,10.1,759.6,83.3333333333,3.8333333333,40,7.35,46.6731508728,46.6731508728 -90,0,24,44.1633333333,21.6,47.1566666667,25.2,40.76,23.39,42.4,23.1571428571,50.4,11.0333333333,28.66,23.2,37.9,24.29,46.3266666667,23,47.1266666667,10.1,759.6,83,4,40,7.3,32.0249307435,32.0249307435 -70,20,24,44.03,21.6,46.9666666667,25.2,40.76,23.39,42.4,23.18,50.4,11.16,27.8666666667,23.2,37.8371428571,24.29,46.5,23,46.93,10.1333333333,759.6,82.5,4,40,7.25,8.1840113155,8.1840113155 -80,20,24,43.76,21.6,46.8266666667,25.2,40.7966666667,23.39,42.045,23.1428571429,50.3214285714,11.2266666667,27.5566666667,23.2,37.79,24.29,46.5,23,46.6566666667,10.1666666667,759.6,82,4,40,7.2,4.6303062933,4.6303062933 -120,20,24,43.5666666667,21.7,46.6633333333,25.2,40.59,23.434,42.28,23.1,50.29,11.4333333333,27.2966666667,23.2,37.79,24.29,46.4142857143,23,46.4666666667,10.2,759.6,81.5,4,40,7.15,16.7553174309,16.7553174309 -400,0,24,43.4,21.7,46.4633333333,25.1666666667,40.5266666667,23.5,42.57125,23.1,50.29,11.63,25.73,23.2,37.79,24.29,46.42,22.9266666667,46.2666666667,10.2333333333,759.6,81,4,40,7.1,38.9919485664,38.9919485664 -210,0,24.0666666667,43.4666666667,21.73,46.3633333333,25.1,40.4,23.5,42.736,23.1,50.2,11.69,24.4566666667,23.2,37.79,24.29,46.5,22.89,45.9666666667,10.2666666667,759.6,80.5,4,40,7.05,5.1583303371,5.1583303371 -60,0,24,43.53,21.79,46.23,25.1,40.4666666667,23.5,42.79,23.1,50.1633333333,11.8,23.0933333333,23.2,37.73,24.29,46.46,22.89,45.7666666667,10.3,759.6,80,4,40,7,14.3721076427,14.3721076427 -60,0,24,43.59,21.8233333333,46.1266666667,25.0333333333,40.4,23.5,42.79,23.1,50.09,11.86,22.7,23.2,37.73,24.29,46.4428571429,22.89,45.56,10.3333333333,759.5666666667,80.3333333333,4,40,7.0833333333,5.4267273168,5.4267273168 -60,0,24.0666666667,43.59,21.89,46.2,25.1,40.53,23.5,42.79,23.1,50.06,11.9633333333,21.3666666667,23.2,37.7,24.29,46.5,22.89,45.375,10.3666666667,759.5333333333,80.6666666667,4,40,7.1666666667,23.7165713799,23.7165713799 -50,0,24.0666666667,43.59,21.89,46.2,25.1,40.59,23.5,42.73375,23.1,50,11.9633333333,20.6333333333,23.2,37.7,24.29,46.4285714286,22.89,45.1266666667,10.4,759.5,81,4,40,7.25,41.0575090209,41.0575090209 -60,0,24.1,43.59,22,46.1633333333,25,40.59,23.5,42.656,23.1,49.9,12.0666666667,19.5,23.2,37.6633333333,24.29,46.334,22.89,44.9666666667,10.4333333333,759.4666666667,81.3333333333,4,40,7.3333333333,23.8227320835,23.8227320835 -50,0,24.1,43.59,21.9266666667,46.09,25,40.59,23.5,42.5771428571,23.1,49.8266666667,11.9266666667,19.3,23.2,37.59,24.2642857143,46.5842857143,22.89,44.8266666667,10.4666666667,759.4333333333,81.6666666667,4,40,7.4166666667,10.3973707533,10.3973707533 -30,0,24.1,43.5,21.89,46.09,25.0333333333,40.4666666667,23.5,42.48,23.1,49.76,12.0333333333,19.5966666667,23.2,37.59,24.29,46.894,22.89,44.6633333333,10.5,759.4,82,4,40,7.5,23.6718274769,23.6718274769 -30,0,24.1,43.5,21.9633333333,46.03,25.0333333333,40.4,23.5,42.4,23.1,49.7,12.1,19.39,23.2,37.53,24.29,47.09,22.89,44.53,10.5166666667,759.4,82,4,40,7.5166666667,12.8063502372,12.8063502372 -30,0,24.1,43.5,22,46,25,40.29,23.5,42.29,23.1,49.6633333333,12.19,18.2666666667,23.2,37.5,24.29,47.09,22.8233333333,44.3266666667,10.5333333333,759.4,82,4,40,7.5333333333,10.2860227926,10.2860227926 -30,0,24.1,43.5,22,45.9333333333,25,40.23,23.5,42.2771428571,23.1,49.59,12.245,17.6,23.2,37.5,24.2,47,22.8233333333,44.2666666667,10.55,759.4,82,4,40,7.55,38.6797726853,38.6797726853 -60,0,24.1,43.4,22,45.79,24.9633333333,40.26,23.5,42.2,23.1,49.5,12.3,16.59,23.2,37.5,24.236,47.16,22.79,44.06,10.5666666667,759.4,82,4,40,7.5666666667,31.3147397595,31.3147397595 -50,0,24.1,43.4,22.0666666667,45.79,24.89,40.26,23.5,42.2,23.1,49.5,12.3666666667,16.2233333333,23.2,37.4666666667,24.29,47.5,22.79,43.9333333333,10.5833333333,759.4,82,4,40,7.5833333333,38.5716551682,38.5716551682 -60,0,24.1333333333,43.29,22.1,45.76,24.89,40.2666666667,23.39,42,23.1,49.4666666667,12.5666666667,15.7566666667,23.2,37.4,24.3566666667,47.5,22.8233333333,43.79,10.6,759.4,82,4,40,7.6,14.2579580192,14.2579580192 -60,0,24.125,43.2175,22.1,45.6266666667,24.89,40.475,23.39,42,23.1,49.4,12.8,14.89,23.2,37.2233333333,24.39,47.6333333333,22.8233333333,43.5966666667,10.6166666667,759.4166666667,81.6666666667,4,40,7.55,30.5089613423,30.5089613423 -60,0,24.1,42.6666666667,22.2,45.16,24.89,40.5,23.5,42.0266666667,23.1,49.1,12.86,14.2233333333,23.1333333333,36.9633333333,24.39,47.2266666667,22.79,42.99,10.6333333333,759.4333333333,81.3333333333,4,40,7.5,31.1559841619,31.1559841619 -60,0,24.1,41.96,22.2,44.4933333333,24.8566666667,40.2333333333,23.4266666667,41.7666666667,23.1,48.6933333333,13,13.8,23.1,36.79,24.39,46.5633333333,22.79,42.5966666667,10.65,759.45,81,4,40,7.45,8.6897910456,8.6897910456 -70,0,24.1,41.5,22.2,43.5566666667,24.79,39.6333333333,23.39,41.56,24.1266666667,79.4933333333,13,13.538,23.1,36.645,24.3233333333,46.1566666667,22.79,42.2,10.6666666667,759.4666666667,80.6666666667,4,40,7.4,24.68749322,24.68749322 -90,0,24.0666666667,41.1,22.2,42.83,24.9266666667,39.2966666667,23.39,41.3,24.3333333333,80.16,13.2,12.7566666667,23.1,36.3633333333,24.29,46.1633333333,22.79,41.7666666667,10.6833333333,759.4833333333,80.3333333333,4,40,7.35,34.3329201918,34.3329201918 -90,0,24,40.8266666667,22.23,42.26,25,39.03,23.39,41.2,23.76,79.2666666667,13.7566666667,10.7933333333,23.1,36.29,24.29,46.09,22.79,41.43,10.7,759.5,80,4,40,7.3,37.0728059206,37.0728059206 -100,0,24,40.7,22.3566666667,42.0666666667,25,39,23.39,41.23,23.5,75.6,14.03,6.5933333333,23.1,36.1633333333,24.3233333333,45.93,22.79,41.0966666667,10.8666666667,759.5166666667,79.1666666667,3.8333333333,38.1666666667,7.3,2.75957142,2.75957142 -110,0,24,40.7,22.4266666667,41.7233333333,25,39,23.39,41.29,23.5,69.4,14.33,4.1633333333,23.1,36.03,24.39,45.6566666667,22.79,40.7233333333,11.0333333333,759.5333333333,78.3333333333,3.6666666667,36.3333333333,7.3,23.4034699737,23.4034699737 -100,0,24,40.7,22.5,41.59,25.0333333333,39.09,23.4266666667,41.4633333333,23.4633333333,64.7333333333,14.39,4.8966666667,23.1,35.9,24.4266666667,45.43,22.79,40.59,11.2,759.55,77.5,3.5,34.5,7.3,13.9332315419,13.9332315419 -110,0,24,40.7,22.55,41.545,25.1,39.09,23.5,41.59,23.39,61.9266666667,14.7266666667,4.23,23.1,35.8266666667,24.5666666667,45.0966666667,22.79,40.495,11.3666666667,759.5666666667,76.6666666667,3.3333333333,32.6666666667,7.3,12.7160551958,12.7160551958 -100,0,24,40.7,22.6,41.3633333333,25.1,39.09,23.5,41.6633333333,23.39,60.1666666667,14.86,3.7566666667,23.1,35.76,24.6333333333,44.5266666667,22.79,40.2233333333,11.5333333333,759.5833333333,75.8333333333,3.1666666667,30.8333333333,7.3,21.8361476786,21.8361476786 -170,0,24,40.76,22.6666666667,41.29,25.1,39.09,23.5,41.6633333333,23.39,59.2933333333,15.03,1.8,23.1,35.7,24.7,44.1933333333,22.73,40.03,11.7,759.6,75,3,29,7.3,17.0668515377,17.0668515377 -180,0,24,40.79,22.7633333333,41.2,25.1,39.1266666667,23.6,41.6633333333,23.39,58.1685714286,15.09,1.4,23.1,35.56,24.79,43.634,22.79,39.8633333333,11.8833333333,759.5333333333,74,3.1666666667,30.8333333333,7.2666666667,47.9099127464,47.9099127464 -110,0,24.0666666667,40.99,22.9633333333,41.1266666667,25.1666666667,39.2,23.6,41.53,23.33,57.216,15.8666666667,1,23.1,35.4333333333,24.7385714286,43.0414285714,22.79,39.73,12.0666666667,759.4666666667,73,3.3333333333,32.6666666667,7.2333333333,16.5380327497,16.5380327497 -100,0,24.0666666667,41,23.0333333333,40.9666666667,25.2,39.09,23.6,41.3333333333,23.3328571429,56.1214285714,15.85,1,23.1,35.26,24.7,42.696,22.79,39.59,12.25,759.4,72,3.5,34.5,7.2,37.3210571473,37.3210571473 -110,0,24.0666666667,41.2666666667,23.1666666667,40.7666666667,25.2,39.09,23.6,41.1266666667,23.29,54.434,15.82,1,23.1,35.2,24.7,42.3971428571,22.73,39.53,12.4333333333,759.3333333333,71,3.6666666667,36.3333333333,7.1666666667,2.9787001084,2.9787001084 -100,0,24.1,41.2,23.23,40.56,25.2,39.1266666667,23.6333333333,41,23.3185714286,53.2957142857,16.4,1,23.1333333333,35.2,24.7,42.054,22.745,39.425,12.6166666667,759.2666666667,70,3.8333333333,38.1666666667,7.1333333333,22.3458278226,22.3458278226 -110,0,24.1,41.2,23.3566666667,40.5,25.2,39.2,23.7,40.9333333333,23.29,52.336,16.6966666667,1,23.2,35.2,24.6375,41.8125,22.7,39.4,12.8,759.2,69,4,40,7.1,31.0383067001,31.0383067001 -100,0,24.1333333333,41.2,23.4266666667,40.29,25.2,39.2,23.7,40.8266666667,23.29,52.7857142857,16.8233333333,1,23.2,35.2,24.6,41.5542857143,22.76,39.3633333333,12.9333333333,759.15,69.1666666667,4.1666666667,38.1666666667,7.2833333333,7.7024759725,7.7024759725 -110,0,24.2,41.2,23.5,40.1566666667,25.2,39.2,23.7,40.9,23.29,52.21,16.76,1,23.2,35.1633333333,24.6,41.458,22.7,39.29,13.0666666667,759.1,69.3333333333,4.3333333333,36.3333333333,7.4666666667,26.2630209676,26.2630209676 -110,0,24.2,41.09,23.6,39.9666666667,25.2,39.2,23.7,41.03,23.29,51.7514285714,16.5666666667,1,23.2,35.09,24.6,41.2642857143,22.7,39.2,13.2,759.05,69.5,4.5,34.5,7.65,22.3050012253,22.3050012253 -140,0,24.23,41.03,23.6,39.8266666667,25.2,39.2,23.7,41.09,23.29,51.24,16.6333333333,1,23.23,35,24.6,41.134,22.7,39.1266666667,13.3333333333,759,69.6666666667,4.6666666667,32.6666666667,7.8333333333,43.3194115292,43.3194115292 -140,0,24.29,40.9633333333,23.6333333333,39.6,25.2,39.2,23.79,41.09,23.29,50.8971428571,16.7675,1,23.29,34.9333333333,24.6,40.6842857143,22.79,39,13.4666666667,758.95,69.8333333333,4.8333333333,30.8333333333,8.0166666667,25.6997600314,25.6997600314 -150,0,24.29,40.6633333333,23.7,39.1933333333,25.2,39.23,23.79,41.09,23.29,50.554,16.63,1,23.3233333333,34.9,24.58,40.152,22.79,38.95,13.6,758.9,70,5,29,8.2,7.0921813953,7.0921813953 -150,0,24.29,40.39,23.7,38.7966666667,25.26,39.29,23.79,41.145,23.2385714286,50.1242857143,16.7633333333,1,23.39,34.9,24.5,39.8971428571,22.7,38.9,13.75,758.8833333333,69.5,5,30.8333333333,8.2166666667,14.0801805421,14.0801805421 -150,0,24.3233333333,39.99,23.7,38.39,25.29,39.29,23.79,41.09,23.236,49.712,16.6333333333,1,23.39,34.8175,24.5,39.656,22.7,38.9,13.9,758.8666666667,69,5,32.6666666667,8.2333333333,2.685336268,2.685336268 -150,0,24.39,39.73,23.79,38.06,25.29,39.23,23.8566666667,41.1633333333,23.2,49.2,16.6333333333,1,23.39,34.79,24.5,39.4557142857,22.7,38.79,14.05,758.85,68.5,5,34.5,8.25,14.6056315629,14.6056315629 -150,0,24.3233333333,39.56,23.8566666667,37.9333333333,25.29,39.2,23.89,41.1633333333,23.254,48.674,16.8566666667,1,23.4266666667,34.73,24.5,39.36,22.76,38.79,14.2,758.8333333333,68,5,36.3333333333,8.2666666667,13.9877396752,13.9877396752 -150,0,24.39,39.4333333333,24,37.6333333333,25.29,39.2,23.9633333333,41.09,23.2257142857,48.14,16.6475,1,23.434,34.652,24.5,39.0957142857,22.745,38.745,14.35,758.8166666667,67.5,5,38.1666666667,8.2833333333,27.8611329268,27.8611329268 -160,0,24.4266666667,39.4,24,37.32,25.29,39.09,23.9266666667,40.9666666667,23.2,47.614,16.65,1,23.4633333333,34.5,24.5,38.79,22.7,38.59,14.5,758.8,67,5,40,8.3,8.5450455779,8.5450455779 -140,0,24.4266666667,39.1933333333,23.9266666667,37.0666666667,25.29,38.89,24,40.4425,23.2,47.0828571429,16.65,1,23.5,34.5,24.5,38.7385714286,22.7,38.59,14.45,758.75,66.6666666667,4.8333333333,38,8.1833333333,8.1343405647,8.1343405647 -140,10,24.39,38.63,23.79,36.7233333333,25.2,38.76,23.89,39.9966666667,23.2,47.156,16.7333333333,1,23.5,34.475,24.5,38.634,22.76,38.5,14.4,758.7,66.3333333333,4.6666666667,36,8.0666666667,9.0537447715,9.0537447715 -140,30,24.3233333333,38.09,23.73,36.53,25.2,38.6266666667,23.8233333333,39.33,23.2257142857,46.9657142857,16.9266666667,1,23.5,34.4,24.5,38.59,22.7,38.5,14.35,758.65,66,4.5,34,7.95,33.2053546794,33.2053546794 -140,20,24.29,37.9333333333,23.73,36.56,25.23,38.56,23.8233333333,40.1,23.2,46.5825,16.96,1,23.5,34.3633333333,24.5,38.59,22.79,38.4,14.3,758.6,65.6666666667,4.3333333333,32,7.8333333333,4.8532206449,4.8532206449 -130,20,24.3566666667,38.1333333333,23.8566666667,36.56,25.29,38.5,23.9633333333,40.8333333333,23.236,46.338,17.0333333333,1,23.5,34.29,24.5,38.6057142857,22.73,38.4,14.25,758.55,65.3333333333,4.1666666667,30,7.7166666667,43.521848612,43.521848612 -140,20,24.3566666667,38.26,23.89,36.59,25.29,38.5,24.0333333333,41.1633333333,23.2,45.9971428571,17.1,1,23.5,34.29,24.5,38.66,22.7,38.4,14.2,758.5,65,4,28,7.6,35.0428213365,35.0428213365 -140,20,24.29,38.4,23.8233333333,36.53,25.29,38.56,24.1,40.9633333333,23.2,45.656,16.845,1,23.5666666667,34.23,24.5,38.5385714286,22.76,38.3266666667,14.15,758.4833333333,65.3333333333,4,30,7.6333333333,11.499501043,11.499501043 -140,20,24.39,38.5966666667,23.8233333333,36.73,25.2,38.4,24.1333333333,40.59,23.2514285714,45.4985714286,16.8266666667,1,23.5,34.2,24.5,38.554,22.7,38.29,14.1,758.4666666667,65.6666666667,4,32,7.6666666667,9.0383982169,9.0383982169 -150,30,24.39,38.93,23.89,36.93,25.2,38.1266666667,24.2,40.53,23.236,45.316,17.0333333333,1,23.5333333333,34.09,24.5,38.5257142857,22.7,38.29,14.05,758.45,66,4,34,7.7,48.1561737251,48.1561737251 -140,20,24.39,39.09,23.89,37.2,25.2,37.8633333333,24.2,40.4333333333,23.2,45.2,16.8933333333,1,23.5333333333,34.09,24.5,38.536,22.7,38.2,14,758.4333333333,66.3333333333,4,36,7.7333333333,29.9349245266,29.9349245266 -140,20,24.39,39.09,23.8233333333,37.2,25.2,37.7675,24.2,40.5,23.29,45.2,16.7,1,23.5333333333,34.09,24.5,38.5,22.7,38.2,13.95,758.4166666667,66.6666666667,4,38,7.7666666667,18.3998192893,18.3998192893 -150,20,24.39,39.09,23.89,37.29,25.2,37.6266666667,24.29,40.59,23.3471428571,45.0928571429,16.7,1,23.5333333333,34.03,24.5,38.4,22.7,38.1633333333,13.9,758.4,67,4,40,7.8,41.9666574104,41.9666574104 -150,20,24.4266666667,40.09,23.9633333333,37.29,25.2,37.59,24.29,40.53,23.39,45,16.6333333333,1,23.6,34,24.5285714286,38.4,22.7,38.09,13.95,758.35,66.8333333333,4.1666666667,40,7.8,46.7722384958,46.7722384958 -150,30,24.5,39.89,23.9266666667,37.5,25.2,37.6633333333,24.34,40.5,23.39,44.9714285714,16.36,1,23.6,34,24.5,38.42,22.7,38.06,14,758.3,66.6666666667,4.3333333333,40,7.8,42.310955876,42.310955876 -130,20,24.5,39.76,24,37.56,25.2,37.6633333333,24.365,40.5,23.5,44.9,16.29,1,23.6,34,24.5,38.5,22.7,38.06,14.05,758.25,66.5,4.5,40,7.8,35.5780354934,35.5780354934 -160,20,24.5,39.7,23.89,37.8266666667,25.2,37.6633333333,24.39,40.5,23.5142857143,44.7542857143,16.1633333333,1,23.6,34,24.5,38.5,22.7,38.09,14.1,758.2,66.3333333333,4.6666666667,40,7.8,7.528765162,7.528765162 -480,20,24.6,40.3933333333,23.89,37.8266666667,25.26,37.7,24.3566666667,39.9933333333,23.6,44.634,16,1,23.5,34,24.5,38.59,22.7,38.09,14.15,758.15,66.1666666667,4.8333333333,40,7.8,49.1754499148,49.1754499148 -260,10,24.5333333333,40.4666666667,23.79,37.73,25.2,37.76,24.29,39.3266666667,23.5571428571,44.59,15.625,1,23.5,33.9333333333,24.5,38.59,22.7,38.09,14.2,758.1,66,5,40,7.8,38.7570487685,38.7570487685 -100,0,24.6333333333,41.93,23.79,38.1966666667,25.29,37.8266666667,24.29,39.6266666667,23.64,44.44,15.525,1,23.6,34,24.5,38.59,22.7,38.0225,14.05,758.0833333333,65.8333333333,5.1666666667,38.1666666667,7.65,7.9554737546,7.9554737546 -110,0,24.7,41.73,23.79,39.1,25.29,37.9,24.29,39.7,23.7128571429,44.4428571429,15.525,1,23.5333333333,33.9333333333,24.5,38.7642857143,22.7,38,13.9,758.0666666667,65.6666666667,5.3333333333,36.3333333333,7.5,20.1723232283,20.1723232283 -110,0,24.7,41.5966666667,23.79,39.3266666667,25.29,37.9333333333,24.29,39.7,23.79,44.378,15.2333333333,1,23.5,33.9,24.54,39.334,22.7,37.9666666667,13.75,758.05,65.5,5.5,34.5,7.35,10.2329472429,10.2329472429 -120,0,24.76,41.5966666667,23.79,39.3266666667,25.3566666667,38.06,24.29,39.76,23.79,44.29,15.0333333333,1,23.5,33.9,24.6571428571,40.0242857143,22.7,37.7666666667,13.6,758.0333333333,65.3333333333,5.6666666667,32.6666666667,7.2,1.2836028007,1.2836028007 -120,0,24.79,41.4666666667,23.7,39.2,25.39,38.09,24.29,39.9633333333,23.79,44.156,15,1,23.5,33.9,24.754,40.68,22.6666666667,37.56,13.45,758.0166666667,65.1666666667,5.8333333333,30.8333333333,7.05,11.7440078873,11.7440078873 -110,0,24.79,41.3266666667,23.7,39.2,25.4633333333,38.09,24.29,40.2233333333,24.29,61.2785714286,14.9266666667,1,23.5,33.9,24.8328571429,40.8142857143,22.6,37.5,13.3,758,65,6,29,6.9,23.7987907836,23.7987907836 -160,0,24.76,41.2233333333,23.6666666667,39.06,25.5,38.2,24.29,40.4333333333,25.336,79.334,14.9666666667,1,23.5,33.8633333333,24.79,40.52,22.6666666667,37.6633333333,13.15,757.9666666667,66,6,28.8333333333,6.95,21.0298527731,21.0298527731 -110,0,24.7,41.09,23.6,39,25.5,38.26,24.29,40.545,24.8957142857,78.6257142857,15.95,1,23.5,33.8633333333,24.79,41.11,22.6,37.53,13,757.9333333333,67,6,28.6666666667,7,49.5409621391,49.5409621391 -110,0,24.7,40.9,23.6,39,25.5,38.3266666667,24.29,40.6266666667,24.39,76.814,16.9,1,23.4266666667,33.79,24.79,41.42,22.6,37.4,12.85,757.9,68,6,28.5,7.05,37.2734081815,37.2734081815 -120,0,24.7,40.9,23.5333333333,39.06,25.5,38.4,24.29,40.57,24.4214285714,74.8671428571,16.8333333333,1,23.4725,33.7675,24.79,41.5642857143,22.5333333333,37.3266666667,12.7,757.8666666667,69,6,28.3333333333,7.1,39.7963616881,39.7963616881 -130,0,24.7,40.8333333333,23.5,39.1266666667,25.4633333333,38.4333333333,24.29,40.5133333333,24.37,72.736,15.8333333333,1,23.39,33.7,24.79,41.5,22.5,37.1633333333,12.55,757.8333333333,70,6,28.1666666667,7.15,22.2547118785,22.2547118785 -120,0,24.7,40.7,23.4266666667,39.1266666667,25.39,38.5,24.29,40.4566666667,24.2642857143,68.8957142857,14.7666666667,1,23.39,33.59,24.8614285714,41.3985714286,22.5,37.045,12.4,757.8,71,6,28,7.2,21.7438483145,21.7438483145 -100,0,24.7,40.745,23.29,39.23,25.39,38.545,24.29,40.4,24.29,71.236,13.7666666667,1.0666666667,23.39,33.59,24.85,41.434,22.4266666667,36.9333333333,12.2166666667,757.85,71,5.8333333333,28.1666666667,7.0166666667,20.3780184034,20.3780184034 -90,0,24.7,40.79,23.29,39.43,25.29,38.59,24.29,40.3266666667,24.0214285714,60.6814285714,12.6633333333,4.0333333333,23.39,33.59,24.89,41.7642857143,22.4266666667,36.9333333333,12.0333333333,757.9,71,5.6666666667,28.3333333333,6.8333333333,44.2666572635,44.2666572635 -110,0,24.7,40.73,23.2,39.6266666667,25.29,38.6633333333,24.29,40.2233333333,23.66,53.4375,12.1966666667,6.1,23.39,33.59,24.89,42.334,22.4266666667,36.9333333333,11.85,757.95,71,5.5,28.5,6.65,39.4286467461,39.4286467461 -80,0,24.7,40.76,23.2,39.76,25.26,38.7,24.23,40.03,23.414,50.016,11.7,8.0966666667,23.3566666667,33.59,24.9528571429,42.55,22.4266666667,36.9333333333,11.6666666667,758,71,5.3333333333,28.6666666667,6.4666666667,37.8614550107,37.8614550107 -80,0,24.7,40.7,23.1,39.9,25.2,38.7,24.2,39.8633333333,23.2257142857,47.7385714286,11.3666666667,9.43,23.29,33.59,25,42.6,22.4266666667,36.8266666667,11.4833333333,758.05,71,5.1666666667,28.8333333333,6.2833333333,36.9224757422,36.9224757422 -80,10,24.6666666667,40.6633333333,23.0333333333,39.8266666667,25.1666666667,38.73,24.2,39.73,23.1,45.656,11.03,11.3966666667,23.29,33.59,25.0285714286,43.2,22.4266666667,36.7666666667,11.3,758.1,71,5,29,6.1,0.5360859213,0.5360859213 -90,0,24.6,40.53,22.9633333333,40.03,25.1666666667,38.79,24.1333333333,39.6633333333,22.9514285714,44.5042857143,10.89,12.7966666667,23.29,33.59,25.1,44.49,22.39,36.7,11.1333333333,758.1,71,5,29,5.9666666667,5.2048807382,5.2048807382 -80,0,24.6,40.4,22.89,40.09,25.1333333333,38.7,24.12,39.572,22.812,43.614,10.89,14.3333333333,23.29,33.8266666667,25.1,45.11,22.39,36.775,10.9666666667,758.1,71,5,29,5.8333333333,20.1904944377,20.1904944377 -70,10,24.6,40.3266666667,22.79,40.23,25.2,38.7,24.1,39.5,22.6714285714,42.7328571429,10.83,14.9333333333,23.29,34.0266666667,25.1,45.178,22.39,37.1933333333,10.8,758.1,71,5,29,5.7,31.9435991463,31.9435991463 -60,20,24.6,40.29,22.7675,40.47,25.2,38.7,24.1,39.6566666667,22.456,41.836,10.66,13.6633333333,23.29,34.2,25.1,45.0257142857,22.4266666667,37.6933333333,10.6333333333,758.1,71,5,29,5.5666666667,36.5392128122,36.5392128122 -80,20,24.6,40.29,22.7,40.59,25.2,38.7,24.1,39.93,22.3328571429,41.3128571429,10.46,13.39,23.29,34.26,25.1,45.134,22.5,38.0266666667,10.4666666667,758.1,71,5,29,5.4333333333,18.0860776454,18.0860776454 -60,30,24.5666666667,40.2,22.6,40.6266666667,25.2,38.79,24.2,40.2666666667,22.29,40.98,10.1266666667,14.0266666667,23.29,34.425,25.0571428571,45.3542857143,22.4266666667,38.2666666667,10.3,758.1,71,5,29,5.3,46.7242325773,46.7242325773 -70,20,24.5,40.26,22.5333333333,40.7,25.2,38.79,24.2,40.4666666667,22.29,40.3242857143,9.9266666667,15.3,23.29,34.5,25.08,45.638,22.5,38.4666666667,10.2,758.1,72.3333333333,4.6666666667,29,5.45,39.3501677318,39.3501677318 -60,20,24.5666666667,40.1633333333,22.4633333333,40.7,25.2,38.8266666667,24.23,40.5666666667,22.29,39.856,9.745,17.195,23.29,34.59,25,46.0357142857,22.4266666667,38.6266666667,10.1,758.1,73.6666666667,4.3333333333,29,5.6,46.7456009472,46.7456009472 -60,20,24.5,40.09,22.39,40.76,25.2,38.9,24.29,40.7,22.2385714286,39.5414285714,9.6,18.46,23.29,34.59,24.9725,46.00875,22.5,38.76,10,758.1,75,4,29,5.75,4.9059213488,4.9059213488 -70,20,24.5,40.09,22.3566666667,40.9333333333,25.2,38.9,24.29,40.73,22.18,39.316,9.5333333333,18.9333333333,23.2,34.59,24.89,45.79,22.5,38.9333333333,9.9,758.1,76.3333333333,3.6666666667,29,5.9,28.1045281212,28.1045281212 -50,20,24.4266666667,40.03,22.29,41.06,25.2,38.9666666667,24.29,40.79,22.1,39.1685714286,9.5,19.7333333333,23.2,34.6633333333,24.8328571429,45.7671428571,22.5,39.06,9.8,758.1,77.6666666667,3.3333333333,29,6.05,39.5046071848,39.5046071848 -70,10,24.39,40,22.26,41.1633333333,25.2,39,24.39,40.8266666667,22,38.834,9.4266666667,20.1933333333,23.26,34.76,24.81,46,22.5,39.2225,9.7,758.1,79,3,29,6.2,39.4480267423,39.4480267423 -50,0,24.39,40.06,22.2,41.1633333333,25.2,39.06,24.39,40.8266666667,21.9842857143,38.7928571429,9.39,20.8,23.2,34.7675,24.8185714286,46.2,22.5,39.345,9.6333333333,758.1166666667,79.3333333333,2.6666666667,29,6.1833333333,49.7139561223,49.7139561223 -60,0,24.3566666667,40.3266666667,22.1666666667,41.3266666667,25.2,39.06,24.39,40.8633333333,21.87,38.7,9.345,21.35,23.2,34.79,24.79,46.09,22.5,39.525,9.5666666667,758.1333333333,79.6666666667,2.3333333333,29,6.1666666667,14.2968198517,14.2968198517 -60,0,24.29,40.4,22.1,41.4,25.2,39.06,24.3233333333,40.79,21.79,38.6214285714,9.3,22.175,23.2,34.8266666667,24.79,46.09,22.5,39.8333333333,9.5,758.15,80,2,29,6.15,31.2912595575,31.2912595575 -50,0,24.29,40.4,22,41.4333333333,25.2,39.145,24.29,40.59,21.79,38.7,9.2266666667,22.5666666667,23.2,34.9,24.736,46.112,22.5,40.1566666667,9.4333333333,758.1666666667,80.3333333333,1.6666666667,29,6.1333333333,45.1530430699,45.1530430699 -60,0,24.26,40.3633333333,22,41.56,25.29,39.3266666667,24.29,40.53,21.7128571429,38.7128571429,9.1,23.2583333333,23.2,34.9,24.7,46.2,22.5,40.458,9.3666666667,758.1833333333,80.6666666667,1.3333333333,29,6.1166666667,10.3810010361,10.3810010361 -60,0,24.26,40.3633333333,21.9633333333,41.7,25.29,39.4,24.2,40.3633333333,21.68,38.772,9.0555555556,23.9411111111,23.2,34.98,24.7,46.09,22.5,40.5,9.3,758.2,81,1,29,6.1,46.044640115,46.044640115 -50,0,24.2,40.29,21.89,41.76,25.39,39.4333333333,24.2,40.23,21.5714285714,38.7,9,24.5966666667,23.2,35,24.7,46.0128571429,22.5,40.55,9.2166666667,758.1833333333,81.8333333333,1,29,6.1666666667,41.6231466574,41.6231466574 -60,0,24.2,40.29,21.8566666667,41.9,25.39,39.5,24.2,40.06,21.5,38.7,8.9633333333,25.2633333333,23.2,35,24.64,45.94,22.5,40.8333333333,9.1333333333,758.1666666667,82.6666666667,1,29,6.2333333333,4.4609431177,4.4609431177 -50,0,24.2,40.3266666667,21.79,41.9,25.39,39.53,24.1333333333,39.9333333333,21.4371428571,38.7128571429,8.89,26.0633333333,23.2,35,24.6,45.9,22.5,41.0666666667,9.05,758.15,83.5,1,29,6.3,29.9479973153,29.9479973153 -50,0,24.2,40.4,21.79,42.03,25.39,39.59,24.1,39.845,21.39,38.772,8.7633333333,26.4933333333,23.2,35.09,24.6,46,22.525,41.32,8.9666666667,758.1333333333,84.3333333333,1,29,6.3666666667,41.3693182752,41.3693182752 -50,0,24.1666666667,40.4,21.73,42.09,25.39,39.6266666667,24.0666666667,39.76,21.3185714286,38.7642857143,8.63,27.2333333333,23.2,35.09,24.6,46.0514285714,22.5333333333,41.56,8.8833333333,758.1166666667,85.1666666667,1,29,6.4333333333,46.9752354315,46.9752354315 -50,0,24.1,40.4,21.7,42.245,25.39,39.7,24,39.6266666667,21.2675,38.8725,8.5666666667,27.96,23.1,35.09,24.6,46.076,22.5,41.7666666667,8.8,758.1,86,1,29,6.5,21.8985246494,21.8985246494 -50,0,24.1,40.4,21.7,42.29,25.39,39.7,24,39.59,21.2,38.79,8.4266666667,28.8933333333,23.1,35.09,24.5714285714,46.1685714286,22.5666666667,41.9666666667,8.65,758.05,87,1,29,6.5166666667,40.6107772025,40.6107772025 -50,0,24.1,40.4,21.7,42.3633333333,25.39,39.7,24,39.53,21.1428571429,38.79,8.29,29.645,23.2,35.1266666667,24.5,45.856,22.6,42.2666666667,8.5,758,88,1,29,6.5333333333,31.351922499,31.351922499 -50,0,24.1,40.4,21.6,42.4,25.39,39.73,24,39.5,21.1,38.79,7.9333333333,29.5566666667,23.1333333333,35.2,24.5428571429,45.6971428571,22.5333333333,42.5266666667,8.35,757.95,89,1,29,6.55,33.7961054407,33.7961054407 -70,0,24.0333333333,40.3266666667,21.6,42.4666666667,25.39,39.79,24,39.5,21.0285714286,38.7257142857,7.7266666667,30.0966666667,23.1,35.2,24.54,45.494,22.6,42.8266666667,8.2,757.9,90,1,29,6.5666666667,8.9907617075,8.9907617075 -50,0,24,40.29,21.5666666667,42.53,25.39,39.79,23.89,39.5,20.956,38.7,7.4333333333,30.7633333333,23.1,35.2,24.5,45.1942857143,22.6,42.9666666667,8.05,757.85,91,1,29,6.5833333333,9.1191555024,9.1191555024 -60,0,24,40.29,21.5666666667,42.59,25.4633333333,39.8633333333,23.89,39.5,20.89,38.7,7.16,31.8966666667,23.1,35.2,24.5,44.9,22.6,43.1266666667,7.9,757.8,92,1,29,6.6,30.5169947213,30.5169947213 -50,0,24,40.29,21.5,42.59,25.5,39.8633333333,23.8233333333,39.4333333333,20.83,38.58,6.8966666667,32.6666666667,23.1,35.2,24.5,44.7385714286,22.6,43.2,7.8333333333,757.7666666667,92,1,29,6.55,49.9816673109,49.9816673109 -50,0,24,40.29,21.4266666667,42.59,25.5,39.8633333333,23.8233333333,39.4333333333,20.7257142857,38.4285714286,6.6233333333,33.1333333333,23.1,35.26,24.5,44.634,22.6,43.3266666667,7.7666666667,757.7333333333,92,1,29,6.5,26.3192676706,26.3192676706 -60,0,24,40.4,21.4266666667,42.6566666667,25.5,39.9,23.79,39.29,20.7,38.29,6.3666666667,33.9266666667,23.1,35.2,24.4685714286,44.5642857143,22.6,43.4666666667,7.7,757.7,92,1,29,6.45,35.9381212504,35.9381212504 -60,0,24,40.3266666667,21.4266666667,42.73,25.5,39.9,23.79,39.29,20.6571428571,38.1971428571,6.16,34.3333333333,23.1,35.26,24.39,44.29,22.6,43.6266666667,7.6333333333,757.6666666667,92,1,29,6.4,21.7248922796,21.7248922796 -60,0,23.89,40.4,21.3566666667,42.7,25.5,39.9,23.79,39.26,20.58,38.09,5.9666666667,34.9266666667,23.1,35.2,24.39,44.2228571429,22.6,43.7,7.5666666667,757.6333333333,92,1,29,6.35,15.4696156736,15.4696156736 -40,0,23.89,40.345,21.29,42.7,25.445,39.9,23.79,39.2,20.5,38.0257142857,5.8333333333,35.4,23.1,35.2,24.39,44.06,22.6,43.8266666667,7.5,757.6,92,1,29,6.3,22.2777297837,22.2777297837 -50,0,23.8233333333,40.3266666667,21.29,42.79,25.5,39.9,23.76,39.2,20.434,37.9,5.6566666667,35.6933333333,23.1,35.2,24.39,43.8671428571,22.6,43.9,7.3166666667,757.55,92.1666666667,1,28.5,6.1333333333,34.2558797216,34.2558797216 -50,0,23.8566666667,40.29,21.23,42.73,25.39,39.8266666667,23.7,39.2,20.3628571429,37.8057142857,5.53,36.2333333333,23.1,35.2,24.39,43.7257142857,22.6,44.03,7.1333333333,757.5,92.3333333333,1,28,5.9666666667,25.4848958342,25.4848958342 -50,0,23.79,40.29,21.2,42.79,25.39,39.9,23.7,39.1266666667,20.33,37.736,5.4333333333,37.2666666667,23.0666666667,35.1633333333,24.33,43.7,22.6,44.1633333333,6.95,757.45,92.5,1,27.5,5.8,28.3946240088,28.3946240088 -50,0,23.79,40.29,21.2,42.79,25.39,39.9,23.7,39.1266666667,20.2257142857,37.6685714286,5.5,38.1933333333,23.0666666667,35.1633333333,24.3042857143,43.6842857143,22.6,44.2,6.7666666667,757.4,92.6666666667,1,27,5.6333333333,46.1697953055,46.1697953055 -50,0,23.79,40.29,21.1666666667,42.79,25.39,39.9,23.7,39.09,20.2,37.7,5.5,38.5666666667,23.0666666667,35.1633333333,24.29,43.656,22.65,44.3225,6.5833333333,757.35,92.8333333333,1,26.5,5.4666666667,24.8651024536,24.8651024536 -50,0,23.76,40.29,21.1,42.79,25.39,39.9333333333,23.7,39.09,20.1428571429,37.7514285714,5.425,38.85,23,35.09,24.29,43.7,22.6,44.3633333333,6.4,757.3,93,1,26,5.3,25.5672561005,25.5672561005 -60,0,23.7,40.29,21.05,42.845,25.39,40,23.6333333333,39.03,20.08,37.79,5.4,39.0266666667,23,35.09,24.254,43.554,22.6,44.5,6.3666666667,757.2833333333,93.1666666667,1,25.8333333333,5.3,42.6150241867,42.6150241867 -60,0,23.7,40.29,21,42.9,25.39,40,23.6666666667,39.06,20,37.8214285714,5.4333333333,39.5966666667,23,35.09,24.2642857143,43.5642857143,22.6,44.56,6.3333333333,757.2666666667,93.3333333333,1,25.6666666667,5.3,28.4899598104,28.4899598104 -50,0,23.7,40.29,21,42.9,25.3233333333,40,23.6,39,19.89,37.9,5.5,39.6566666667,23,35.09,24.2,43.44,22.6,44.59,6.3,757.25,93.5,1,25.5,5.3,47.0067705377,47.0067705377 -50,0,23.7,40.29,21,42.9,25.39,40,23.6,39,19.89,37.9,5.5,39.89,23,35.09,24.2,43.4,22.6,44.59,6.2666666667,757.2333333333,93.6666666667,1,25.3333333333,5.3,46.369677363,46.369677363 -60,0,23.6333333333,40.23,20.9266666667,42.9,25.39,40,23.6,39,19.83,37.9,5.5,40.09,23,35.09,24.2,43.29,22.6,44.7,6.2333333333,757.2166666667,93.8333333333,1,25.1666666667,5.3,35.9103940311,35.9103940311 -60,0,23.6,40.2,20.89,43,25.39,39.9,23.6,39,19.79,37.9714285714,5.4,40.1333333333,23,35.09,24.2,43.29,22.6,44.7,6.2,757.2,94,1,25,5.3,41.7619475513,41.7619475513 -80,0,23.6,40.3333333333,20.89,43.06,25.39,39.9666666667,23.5333333333,39,19.7,38.09,5.4666666667,40.86,23,35.09,24.2,43.272,22.6,44.73,6.1833333333,757.1666666667,94.5,1,24.8333333333,5.3666666667,16.487562668,16.487562668 -50,10,23.6,40.8333333333,20.8566666667,43.5666666667,25.26,39.2666666667,23.5,39,19.7,39.08125,5.5633333333,41.6,23,35.09,24.1714285714,43.2642857143,22.6,44.79,6.1666666667,757.1333333333,95,1,24.6666666667,5.4333333333,43.792662432,43.792662432 -50,0,23.6666666667,40.5666666667,20.79,43.7,25.1333333333,38.6666666667,23.5,38.9333333333,19.6571428571,40.41,5.7633333333,42.1933333333,23,35.09,24.16,43.4,22.6,44.76,6.15,757.1,95.5,1,24.5,5.5,22.1518897684,22.1518897684 -50,0,23.6,40.0933333333,20.7,43.2966666667,24.9633333333,37.8333333333,23.4633333333,38.5633333333,19.68,41.094,6.1233333333,43.0666666667,22.9266666667,35.09,24.1,43.3242857143,22.6,44.76,6.1333333333,757.0666666667,96,1,24.3333333333,5.5666666667,5.7590090903,5.7590090903 -40,0,23.6,39.4266666667,20.6333333333,42.83,24.8233333333,37.5666666667,23.39,38.0966666667,19.6,41.1085714286,6.33,43.5266666667,22.945,35.045,24.1,43.254,22.6,44.7,6.1166666667,757.0333333333,96.5,1,24.1666666667,5.6333333333,13.7111843098,13.7111843098 -30,0,23.6,39.0266666667,20.6,42.3333333333,24.76,36.93,23.39,38,19.56,40.254,6.5633333333,44.0666666667,22.89,34.76,24.1,43.3371428571,22.6,44.6266666667,6.1,757,97,1,24,5.7,45.8589924732,45.8589924732 -50,0,23.5333333333,38.9,20.6,42.1266666667,24.7,36.79,23.39,38,19.5,40.5371428571,6.83,44.3333333333,22.89,34.7,24.1,43.356,22.6,44.2966666667,6.2166666667,757.0333333333,97,1,24,5.8166666667,34.244368365,34.244368365 -50,0,23.5,38.9,20.7,42.1633333333,24.65,36.95,23.39,38.09,19.478,40.75,7.1233333333,44.8,22.8566666667,34.6333333333,24.0857142857,43.0557142857,22.6,44.03,6.3333333333,757.0666666667,97,1,24,5.9333333333,0.8920970606,0.8920970606 -50,0,23.5,38.79,20.7,42.03,24.7,37.1266666667,23.3233333333,38.1633333333,19.39,40.6685714286,7.33,45.1933333333,22.79,34.56,24,42.66,22.6,43.7233333333,6.45,757.1,97,1,24,6.05,14.15293467,14.15293467 -80,0,23.4266666667,38.79,20.7,42.03,24.7,37.26,23.39,38.23,19.29,40.94,7.6933333333,45.4633333333,22.79,34.59,24,42.3971428571,22.6,43.4633333333,6.5666666667,757.1333333333,97,1,24,6.1666666667,30.213309743,30.213309743 -70,0,23.39,38.8266666667,20.7,42.09,24.7,37.4333333333,23.3233333333,38.3633333333,19.29,41.1914285714,8.1,45.47,22.79,34.59,24,42.156,22.5,43.1333333333,6.6833333333,757.1666666667,97,1,24,6.2833333333,0.3884532722,0.3884532722 -70,0,23.39,38.9666666667,20.7,42.2,24.7,37.56,23.29,38.4,19.254,41.254,8.4333333333,45.43,22.79,34.59,23.9528571429,41.9814285714,22.5,42.86,6.8,757.2,97,1,24,6.4,40.3310378199,40.3310378199 -90,0,23.39,39.1266666667,20.7,42.2,24.79,37.6266666667,23.29,38.5425,19.2642857143,41.2642857143,8.7566666667,45.16,22.79,34.59,23.89,41.878,22.5,42.545,7.05,757.2166666667,96.3333333333,1,24.1666666667,6.55,1.0077780695,1.0077780695 -50,0,23.39,39.3333333333,20.79,42.26,24.79,37.7,23.29,38.59,19.2,41.236,9.03,44.5666666667,22.79,34.59,23.89,41.7257142857,22.5,42.26,7.3,757.2333333333,95.6666666667,1,24.3333333333,6.7,44.941494416,44.941494416 -60,0,23.39,39.7266666667,20.815,42.3425,24.79,37.79,23.26,38.59,19.2814285714,42.5942857143,9.4,43.6233333333,22.79,34.59,23.89,41.59,22.5,42.0666666667,7.55,757.25,95,1,24.5,6.85,12.1245465823,12.1245465823 -60,0,23.39,40,20.89,42.59,24.79,37.79,23.2,38.6633333333,19.7,44.656,9.7333333333,42.8233333333,22.7,34.6266666667,23.84,41.43375,22.5,41.7233333333,7.8,757.2666666667,94.3333333333,1,24.6666666667,7,12.2718202067,12.2718202067 -60,10,23.39,40,20.9266666667,42.53,24.7,37.7,23.26,38.79,20.1971428571,45.7857142857,10.2566666667,41.3233333333,22.7,34.7,23.79,41.3528571429,22.5,41.53,8.05,757.2833333333,93.6666666667,1,24.8333333333,7.15,1.1920468649,1.1920468649 -70,20,23.39,40.06,21,42.59,24.7,37.76,23.2,38.8633333333,20.434,45.59,10.4633333333,38.3966666667,22.76,34.59,23.79,41.356,22.4633333333,41.43,8.3,757.3,93,1,25,7.3,5.1319152815,5.1319152815 -110,30,23.39,40.1633333333,21,42.6333333333,24.7,37.9333333333,23.1666666667,38.2666666667,20.5,45.1914285714,10.7566666667,35.56,22.7,34.59,23.79,41.3685714286,22.39,41.23,8.4666666667,757.3,91.6666666667,1,25.6666666667,7.2333333333,24.3685003719,24.3685003719 -60,20,23.39,40.03,21.0666666667,42.5,24.7,38,23.1,38.5266666667,20.396,44.078,11.09,33.1,22.7,35,23.79,41.29,22.39,41.06,8.6333333333,757.3,90.3333333333,1,26.3333333333,7.1666666667,36.5179347573,36.5179347573 -110,20,23.39,39.9666666667,21.1333333333,42.2233333333,24.79,38,23.2,38.9333333333,20.1285714286,42.5228571429,11.3666666667,29.1233333333,22.7,35.46,23.7128571429,41.0228571429,22.39,40.86,8.8,757.3,89,1,27,7.1,49.4911826216,49.4911826216 -70,20,23.39,39.9,21.2,42.03,24.79,38.1333333333,23.2,39,19.956,41.82,11.6266666667,26.5233333333,22.6666666667,35.2666666667,23.7,40.396,22.4633333333,40.3,8.9666666667,757.3,87.6666666667,1,27.6666666667,7.0333333333,27.1521667135,27.1521667135 -80,20,23.3233333333,39.9,21.23,41.8333333333,24.79,38.29,23.29,39.2,19.8328571429,41.5542857143,12.0566666667,25.66,22.6,34.8,23.7,40.9114285714,22.3233333333,39.6333333333,9.1333333333,757.3,86.3333333333,1,28.3333333333,6.9666666667,46.609955735,46.609955735 -100,30,23.39,39.8266666667,21.3566666667,41.5666666667,24.79,38.29,23.29,39.26,19.772,41.418,12.4633333333,22.5333333333,22.6,34.56,23.6,41.156,22.2,38.99,9.3,757.3,85,1,29,6.9,1.0761817452,1.0761817452 -110,20,23.3566666667,39.59,21.5666666667,41.1933333333,24.8233333333,38.3266666667,23.39,39.29,19.7,41.14,12.9266666667,18.53,22.525,34.425,23.6285714286,40.9185714286,22.2,38.8633333333,9.4666666667,757.2833333333,83.5,1,28.8333333333,6.7833333333,36.7487864452,36.7487864452 -70,20,23.29,39.4633333333,21.9666666667,40.6666666667,24.89,38.4,23.4633333333,39.29,19.6,40.416,13.2,12.7966666667,22.5,34.3266666667,23.6,40.732,22.1666666667,40.4333333333,9.6333333333,757.2666666667,82,1,28.6666666667,6.6666666667,44.241647562,44.241647562 -90,20,23.39,39.7,22.46,40.06,24.89,38.3633333333,23.5,39.3266666667,19.5142857143,40.1628571429,13.49,11.2566666667,22.5,34.29,23.6,40.44,22.1,39.4333333333,9.8,757.25,80.5,1,28.5,6.55,18.0559413624,18.0559413624 -80,20,23.39,39.75,23.1266666667,40,24.89,38.29,23.5666666667,39.4,19.445,39.7125,14.0233333333,6.33,22.5,34.29,23.6,40.2,22,38.4233333333,9.9666666667,757.2333333333,79,1,28.3333333333,6.4333333333,8.4500059951,8.4500059951 -90,30,23.39,40.0266666667,24.1333333333,38.7333333333,24.89,38.3633333333,23.6333333333,39.4333333333,19.39,39.4,14.345,3.3,22.5,34.1633333333,23.5857142857,39.9971428571,22,37.89,10.1333333333,757.2166666667,77.5,1,28.1666666667,6.3166666667,44.3183528609,44.3183528609 -50,20,23.39,40.8666666667,24.1333333333,38,24.89,38.4,23.7,39.5,19.39,39.2571428571,14.6266666667,2.5966666667,22.5,34.03,23.54,39.834,21.9633333333,37.2666666667,10.3,757.2,76,1,28,6.2,0.8655431215,0.8655431215 -100,20,23.4633333333,41.3333333333,24.0966666667,37.8633333333,24.89,38.4,23.79,39.36,19.39,39.82,14.8333333333,2.79,22.5,34.1333333333,23.5,39.8214285714,21.89,36.9333333333,10.6833333333,757.1666666667,73.5,1,28.1666666667,6.05,24.9376026681,24.9376026681 -70,0,23.39,41.0566666667,24.3566666667,37.0633333333,24.9266666667,38.4,23.745,38.595,19.39,40.4414285714,15.5633333333,1,22.5,34.5266666667,23.5,40,21.89,36.845,11.0666666667,757.1333333333,71,1,28.3333333333,5.9,38.3545792429,38.3545792429 -120,10,23.39,40.0566666667,24.29,36.03,24.9266666667,38.3266666667,23.66,37.854,19.39,40.436,15.5633333333,1,22.5666666667,34.59,23.5,39.8985714286,21.89,36.8333333333,11.45,757.1,68.5,1,28.5,5.75,48.3324919944,48.3324919944 -80,0,23.39,39.2666666667,24.23,35.7566666667,24.9266666667,38.26,23.6,37.5266666667,19.3471428571,40.2642857143,15.4,1,22.5,34.53,23.5,39.772,21.89,36.5666666667,11.8333333333,757.0666666667,66,1,28.6666666667,5.6,6.9770721137,6.9770721137 -50,0,23.39,38.8,24.2,34.84,25,38.2,23.6,37.2666666667,19.39,40.356,16,1,22.5,34.4666666667,23.5,39.7,21.89,36.3333333333,12.2166666667,757.0333333333,63.5,1,28.8333333333,5.45,10.0153061445,10.0153061445 -60,0,23.39,38.8333333333,24.4266666667,34.6333333333,24.8566666667,37.93,23.6,37.09,19.39,40.1057142857,16.7933333333,1,22.5,34.3266666667,23.5,39.554,21.8233333333,36.1266666667,12.6,757,61,1,29,5.3,19.7201916599,19.7201916599 -50,0,23.39,38.7,24.5666666667,34.8266666667,24.8566666667,38.0633333333,23.6666666667,37.1633333333,19.37,39.856,16.2666666667,1,22.5333333333,34.2233333333,23.4842857143,39.47,21.79,36.2,12.7166666667,756.9666666667,61.3333333333,1,28.3333333333,5.4833333333,35.467102949,35.467102949 -50,0,23.39,38.59,24.6333333333,34.6633333333,24.89,38.23,23.7,37.29,19.29,39.7,16.7,1,22.6,33.9633333333,23.456,39.316,21.79,35.9266666667,12.8333333333,756.9333333333,61.6666666667,1,27.6666666667,5.6666666667,15.4830292799,15.4830292799 -50,0,23.39,38.4633333333,24.76,34.4633333333,24.9633333333,38.23,23.76,37.29,19.35,39.634,17.0333333333,1,22.5666666667,33.79,23.5,39.1685714286,21.7,35.7666666667,12.95,756.9,62,1,27,5.85,10.0146386423,10.0146386423 -50,0,23.39,38.3633333333,24.79,34.26,24.9633333333,38.29,23.79,37.4,19.29,39.7514285714,16.4633333333,1,22.5666666667,33.79,23.456,39.09,21.7,35.9666666667,13.0666666667,756.8666666667,62.3333333333,1,26.3333333333,6.0333333333,3.1098597334,3.1098597334 -40,0,23.39,38.29,24.79,34.1266666667,24.89,38.29,23.79,37.4666666667,19.29,39.834,16.53,1,22.6,33.9,23.4371428571,39.0514285714,21.7,36.23,13.1833333333,756.8333333333,62.6666666667,1,25.6666666667,6.2166666667,37.3718345771,37.3718345771 -60,0,23.39,38.2,24.79,34,24.9633333333,38.29,23.79,37.5,19.29,39.79,16.5333333333,1,22.6,33.9,23.39,39,21.7,36.29,13.3,756.8,63,1,25,6.4,30.3963249782,30.3963249782 -60,0,23.39,38.2,24.79,34,24.89,38.23,23.79,37.56,19.29,40.134,16.7933333333,1,22.6,33.9,23.39,39,21.7,36.4,13.4,756.7833333333,63.3333333333,1,27.5,6.55,43.3986742748,43.3986742748 -60,0,23.39,38.2,24.7,34,25,38.26,23.8233333333,37.6266666667,19.29,40.2642857143,17.1633333333,1,22.6,33.9,23.39,38.9375,21.7,36.4,13.5,756.7666666667,63.6666666667,1,30,6.7,25.5366740166,25.5366740166 -50,0,23.4633333333,38.26,24.6333333333,33.9333333333,25,38.2,23.89,37.76,19.29,40.218,17.1633333333,1,22.6,33.9,23.39,38.9,21.7,36.29,13.6,756.75,64,1,32.5,6.85,4.6624262701,4.6624262701 -60,0,23.5,38.1633333333,24.6,33.9333333333,25,38.2,23.89,37.79,19.29,40.3214285714,17.0666666667,1,22.6,33.9,23.39,38.8842857143,21.6333333333,36.29,13.7,756.7333333333,64.3333333333,1,35,7,11.8808949483,11.8808949483 -70,0,23.5,38.09,24.6,34,25,38.2,23.89,37.79,19.29,40.32,16.78375,1,22.6,33.9,23.39,38.856,21.6,36.4,13.8,756.7166666667,64.6666666667,1,37.5,7.15,34.9790873355,34.9790873355 -50,0,23.5,38.045,24.6,34,25,38.2,23.89,37.79,19.3085714286,43.4242857143,16.6318181818,1,22.675,33.9333333333,23.39,38.9,21.6,36.4,13.9,756.7,65,1,40,7.3,13.5760011268,13.5760011268 -70,0,23.6,38.0266666667,24.5333333333,34,25.025,38.1725,23.89,37.79,20.398,72.772,16.9744444444,1,22.7,33.9,23.39,38.834,21.6333333333,36.495,14.0333333333,756.6666666667,63.6666666667,1.1666666667,38,7.1166666667,47.4488624721,47.4488624721 -80,0,23.6,37.9,24.5666666667,34.09,25.1,38.09,23.9266666667,37.79,21.6685714286,81.9214285714,16.9735714286,1,22.7,33.9,23.39,39.2128571429,21.6352941176,36.6158823529,14.1666666667,756.6333333333,62.3333333333,1.3333333333,36,6.9333333333,43.0392548558,43.0392548558 -70,0,23.6,37.79,24.5,34.09,25.1,38.06,24,37.79,21.06,81.276,17.17375,1,22.765,33.9,23.456,39.814,21.5846153846,36.5892307692,14.3,756.6,61,1.5,34,6.75,37.1206294629,37.1206294629 -90,0,23.6666666667,37.8633333333,24.5,34.23,25.1,38,24,37.8266666667,20.8357142857,81.0514285714,17.3146153846,1,22.79,33.9,23.5714285714,40.1685714286,21.5375,36.640625,14.4333333333,756.5666666667,59.6666666667,1.6666666667,32,6.5666666667,22.041158902,22.041158902 -70,0,23.7,37.8266666667,24.5,34.29,25.1,38.03,24,37.8725,20.64,81.216,16.8711764706,1,22.79,33.9,23.7,40.4,21.575,36.79,14.5666666667,756.5333333333,58.3333333333,1.8333333333,30,6.3833333333,27.5140574318,27.5140574318 -80,0,23.7,37.8266666667,24.39,34.3266666667,25.1,38.09,24,37.845,20.58,81.016,16.8377777778,1,22.815,33.925,23.7657142857,40.3528571429,21.5176470588,36.7476470588,14.7,756.5,57,2,28,6.2,30.0788098713,30.0788098713 -80,0,23.73,37.79,24.4175,34.425,25.1,38,24,37.9,20.4266666667,79.5333333333,17.41875,1,22.8733333333,33.9833333333,23.85,40.334,21.5882352941,36.7964705882,14.7,756.4666666667,57.1666666667,2,30,6.25,36.1285397434,36.1285397434 -80,0,23.79,37.79,24.5,34.5,25.1,38.06,24,37.9,20.39,76.02,17.5666666667,1,22.89,34,23.89,40.2257142857,21.6,36.8984615385,14.7,756.4333333333,57.3333333333,2,32,6.3,6.3176749391,6.3176749391 -80,0,23.8233333333,37.8266666667,24.4266666667,34.4333333333,25.1,38,24.0333333333,37.9333333333,20.39,72.4428571429,17.6766666667,1,22.9083333333,33.9611111111,24.04,40.236,21.60625,36.9875,14.7,756.4,57.5,2,34,6.35,21.6797786183,21.6797786183 -70,0,23.89,37.9,24.4266666667,34.4333333333,25.1,38,24.05,37.95,20.39,68.36,18.03,1,23,33.9,24.0714285714,40.3842857143,21.6428571429,37.005,14.7,756.3666666667,57.6666666667,2,36,6.4,40.2675417252,40.2675417252 -90,0,23.9266666667,37.9333333333,24.5,34.53,25.1,38.06,24.1,38,20.39,64.0114285714,18.3433333333,1,23,33.9,24.16,40.48,21.6277777778,37.0022222222,14.7,756.3333333333,57.8333333333,2,38,6.45,40.1160163106,40.1160163106 -80,0,24,38.06,24.5666666667,34.6633333333,25.1,38.045,24.1,38.1333333333,20.39,60.854,18.6725,1,23,33.9,24.2,40.4714285714,21.6,36.8144444444,14.7,756.3,58,2,40,6.5,41.1913856864,41.1913856864 -90,0,24.0333333333,38.1566666667,24.5666666667,34.73,25.1,38.0675,24.1333333333,38.5666666667,20.39,59.5271428571,18.89,1,23.025,33.925,24.29,40.416,21.6,36.9571428571,14.9,756.2833333333,57.6666666667,2,40,6.6,22.5874501048,22.5874501048 -70,0,24.1,38.23,24.5,34.79,25.1,38.09,24.2,38.7,20.39,58.434,18.9214285714,1,23.1,34.0642857143,24.29,40.2385714286,21.67375,37.045,15.1,756.2666666667,57.3333333333,2,40,6.7,10.629632324,10.629632324 -80,0,24.1,38.2666666667,24.5,34.9,25.1,38.09,24.2,38.7,20.39,57.2257142857,18.7366666667,1,23.1,34.09,24.31,40.178,21.7158823529,36.9941176471,15.3,756.25,57,2,40,6.8,35.7201753999,35.7201753999 -80,0,24.1,38.4666666667,24.4266666667,34.7666666667,25.1,38.09,24.2,38.8333333333,20.39,56.134,18.3622222222,1,23.1,34.09,24.39,40.0642857143,21.79,36.85,15.5,756.2333333333,56.6666666667,2,40,6.9,41.603611107,41.603611107 -80,0,24.2,38.2,24.5,34.79,25.1,38.0257142857,24.2,39.1266666667,20.39,55.3528571429,18.495625,1,23.16,34.09,24.33,39.96,21.79,36.735,15.7,756.2166666667,56.3333333333,2,40,7,34.549152595,34.549152595 -90,0,24.2,38.1266666667,24.5,34.73,25.1,37.9,24.26,39.3333333333,20.456,54.756,18.7145454545,1,23.2,34.156,24.39,39.9,21.79,36.7,15.9,756.2,56,2,40,7.1,12.4576551258,12.4576551258 -420,0,24.2,38.1633333333,24.4633333333,34.76,25.0428571429,37.8842857143,24.3233333333,39.6566666667,20.5,54.2,18.7063636364,1,23.2,34.2,24.5,39.9,21.79,36.7,15.9166666667,756.2,55.1666666667,1.8333333333,37.8333333333,6.8833333333,12.9848483019,12.9848483019 -240,0,24.2675,38.1725,24.39,34.7,25.02,37.79,24.39,39.8633333333,20.6,53.62,18.76,1,23.2,34.1633333333,24.5,39.8266666667,21.79,36.7,15.9333333333,756.2,54.3333333333,1.6666666667,35.6666666667,6.6666666667,37.7130145207,37.7130145207 -270,0,24.29,38.1266666667,24.29,34.59,25.1,37.79,24.4633333333,39.6333333333,20.6,53.1242857143,18.5666666667,1,23.2,34.09,24.6,39.7,21.79,36.7,15.95,756.2,53.5,1.5,33.5,6.45,48.0556305498,48.0556305498 -190,0,24.39,37.99,24.29,34.59,25.1,37.79,24.39,39.4333333333,20.6,52.732,18.5666666667,1,23.2,34.09,24.6,39.545,21.8566666667,36.76,15.9666666667,756.2,52.6666666667,1.3333333333,31.3333333333,6.2333333333,44.5738824084,44.5738824084 -180,0,24.39,37.79,24.23,34.6266666667,25.1625,37.79,24.39,38.9,20.6714285714,52.44,18.7633333333,1,23.254,34.2,24.56,39.2,21.8233333333,36.73,15.9833333333,756.2,51.8333333333,1.1666666667,29.1666666667,6.0166666667,4.5284049003,4.5284049003 -70,0,24.5,37.8266666667,24.29,34.6266666667,25.2,37.79,24.39,38.5666666667,20.736,52.054,18.9633333333,1,23.2257142857,34.2385714286,24.5,39.0542857143,21.89,36.79,16,756.2,51,1,27,5.8,11.2263569143,11.2263569143 -80,0,24.5,37.6933333333,24.26,34.56,25.2,37.714,24.39,38.4,20.79,51.8228571429,19.3,1,23.236,34.29,24.5,39,21.89,36.9633333333,16.0833333333,756.1833333333,51.8333333333,1.1666666667,29.1666666667,6.1166666667,22.5235352176,22.5235352176 -120,0,24.5,37.2233333333,24.1333333333,34.3,25.2,37.6371428571,24.3566666667,38.29,20.85,51.59,19.5666666667,1,23.2385714286,34.29,24.5,38.9714285714,21.89,37.03,16.1666666667,756.1666666667,52.6666666667,1.3333333333,31.3333333333,6.4333333333,33.4600388305,33.4600388305 -190,0,24.5,37.1633333333,24.1,34.3,25.2,37.554,24.29,38.1566666667,20.89,51.59,19.26,1,23.2,34.29,24.39,38.79,21.89,37.2,16.25,756.15,53.5,1.5,33.5,6.75,0.4269138561,0.4269138561 -160,0,24.5,37.4333333333,24.1,34.4333333333,25.1428571429,37.2842857143,24.29,38,21,51.59,19.2,1,23.2514285714,34.4542857143,24.39,38.7385714286,21.89,37.3333333333,16.3333333333,756.1333333333,54.3333333333,1.6666666667,35.6666666667,7.0666666667,16.6686095414,16.6686095414 -90,0,24.5,37.6333333333,24.0333333333,34.4333333333,25.1,36.994,24.29,37.9333333333,21.0571428571,51.5514285714,19.2,1,23.29,34.59,24.39,38.7,22,37.3633333333,16.4166666667,756.1166666667,55.1666666667,1.8333333333,37.8333333333,7.3833333333,39.3606984057,39.3606984057 -100,0,24.5,38,24,34.4,25.1,36.7257142857,24.29,37.8633333333,21.12,51.48,19.26,1,23.29,34.59,24.39,38.7957142857,22,37.3633333333,16.5,756.1,56,2,40,7.7,38.6326226289,38.6326226289 -170,0,24.5,37.86,24,34.2666666667,25,36.7,24.29,37.79,21.2,51.3685714286,19.3233333333,1,23.29,34.7,24.39,39.134,22,37.23,16.4833333333,756.1,55.8333333333,2,38.1666666667,7.6166666667,38.1426410633,38.1426410633 -310,0,24.5,37.2966666667,23.8566666667,34.3333333333,24.9371428571,36.6714285714,24.29,37.79,21.29,51.145,19.39,1,23.315,34.75625,24.4057142857,39.6214285714,22,37.3633333333,16.4666666667,756.1,55.6666666667,2,36.3333333333,7.5333333333,31.1611043056,31.1611043056 -120,0,24.5,36.9633333333,23.73,34.3333333333,24.85,36.5,24.29,37.79,21.3185714286,50.7285714286,19.43,1,23.3614285714,34.9414285714,24.5,40.34,22.0333333333,37.39,16.45,756.1,55.5,2,34.5,7.45,4.3968762504,4.3968762504 -120,0,24.5,37,23.7,34.4,24.84,36.45,24.29,37.9,21.39,50.3475,19.3566666667,1,23.39,35,24.55,40.545,22.1,37.7233333333,16.4333333333,756.1,55.3333333333,2,32.6666666667,7.3666666667,27.1180247772,27.1180247772 -120,0,24.4883116883,37.0661038961,23.6830519481,34.5155844156,24.8420779221,36.488961039,24.2783116883,37.9298701299,21.3887012987,50.3507792208,19.2546320346,1.661038961,23.3875324675,35.0545454545,24.538961039,40.5885714286,22.1,37.8074458874,16.4166666667,756.1,55.1666666667,2,30.8333333333,7.2833333333,10.2688564453,10.2688564453 -120,0,24.4766233766,37.1322077922,23.6661038961,34.6311688312,24.8441558442,36.5279220779,24.2666233766,37.9597402597,21.3874025974,50.3540584416,19.1525974026,2.3220779221,23.3850649351,35.1090909091,24.5279220779,40.6321428571,22.1,37.8915584416,16.4,756.1,55,2,29,7.2,46.6504379641,46.6504379641 -120,0,24.4649350649,37.1983116883,23.6491558442,34.7467532468,24.8462337662,36.5668831169,24.2549350649,37.9896103896,21.3861038961,50.3573376623,19.0505627706,2.9831168831,23.3825974026,35.1636363636,24.5168831169,40.6757142857,22.1,37.9756709957,16.3666666667,756.1,55.3333333333,1.8333333333,30.8333333333,7.2666666667,49.5800595963,49.5800595963 -130,0,24.4532467532,37.2644155844,23.6322077922,34.8623376623,24.8483116883,36.6058441558,24.2432467532,38.0194805195,21.3848051948,50.3606168831,18.9485281385,3.6441558442,23.3801298701,35.2181818182,24.5058441558,40.7192857143,22.1,38.0597835498,16.3333333333,756.1,55.6666666667,1.6666666667,32.6666666667,7.3333333333,48.4697945416,48.4697945416 -110,0,24.4415584416,37.3305194805,23.6152597403,34.9779220779,24.8503896104,36.6448051948,24.2315584416,38.0493506494,21.3835064935,50.3638961039,18.8464935065,4.3051948052,23.3776623377,35.2727272727,24.4948051948,40.7628571429,22.1,38.1438961039,16.3,756.1,56,1.5,34.5,7.4,17.575382092,17.575382092 -120,0,24.4298701299,37.3966233766,23.5983116883,35.0935064935,24.8524675325,36.6837662338,24.2198701299,38.0792207792,21.3822077922,50.3671753247,18.7444588745,4.9662337662,23.3751948052,35.3272727273,24.4837662338,40.8064285714,22.1,38.228008658,16.2666666667,756.1,56.3333333333,1.3333333333,36.3333333333,7.4666666667,19.7255636449,19.7255636449 -110,0,24.4181818182,37.4627272727,23.5813636364,35.2090909091,24.8545454545,36.7227272727,24.2081818182,38.1090909091,21.3809090909,50.3704545455,18.6424242424,5.6272727273,23.3727272727,35.3818181818,24.4727272727,40.85,22.1,38.3121212121,16.2333333333,756.1,56.6666666667,1.1666666667,38.1666666667,7.5333333333,15.8103582216,15.8103582216 -110,0,24.4064935065,37.5288311688,23.5644155844,35.3246753247,24.8566233766,36.7616883117,24.1964935065,38.138961039,21.3796103896,50.3737337662,18.5403896104,6.2883116883,23.3702597403,35.4363636364,24.4616883117,40.8935714286,22.1,38.3962337662,16.2,756.1,57,1,40,7.6,26.8442860804,26.8442860804 -240,0,24.3948051948,37.5949350649,23.5474675325,35.4402597403,24.8587012987,36.8006493506,24.1848051948,38.1688311688,21.3783116883,50.377012987,18.4383549784,6.9493506494,23.3677922078,35.4909090909,24.4506493506,40.9371428571,22.1,38.4803463203,16.0166666667,756.1333333333,58.1666666667,1.1666666667,37.6666666667,7.7333333333,42.3924630624,42.3924630624 -440,0,24.3831168831,37.661038961,23.5305194805,35.5558441558,24.8607792208,36.8396103896,24.1731168831,38.1987012987,21.377012987,50.3802922078,18.3363203463,7.6103896104,23.3653246753,35.5454545455,24.4396103896,40.9807142857,22.1,38.5644588745,15.8333333333,756.1666666667,59.3333333333,1.3333333333,35.3333333333,7.8666666667,45.507505245,45.507505245 -160,0,24.3714285714,37.7271428571,23.5135714286,35.6714285714,24.8628571429,36.8785714286,24.1614285714,38.2285714286,21.3757142857,50.3835714286,18.2342857143,8.2714285714,23.3628571429,35.6,24.4285714286,41.0242857143,22.1,38.6485714286,15.65,756.2,60.5,1.5,33,8,30.8749534423,30.8749534423 -80,0,24.3597402597,37.7932467532,23.4966233766,35.787012987,24.8649350649,36.9175324675,24.1497402597,38.2584415584,21.3744155844,50.3868506494,18.1322510823,8.9324675325,23.3603896104,35.6545454545,24.4175324675,41.0678571429,22.1,38.7326839827,15.4666666667,756.2333333333,61.6666666667,1.6666666667,30.6666666667,8.1333333333,21.9773435383,21.9773435383 -110,10,24.3480519481,37.8593506494,23.4796753247,35.9025974026,24.867012987,36.9564935065,24.1380519481,38.2883116883,21.3731168831,50.3901298701,18.0302164502,9.5935064935,23.3579220779,35.7090909091,24.4064935065,41.1114285714,22.1,38.8167965368,15.2833333333,756.2666666667,62.8333333333,1.8333333333,28.3333333333,8.2666666667,42.061031959,42.061031959 -70,20,24.3363636364,37.9254545455,23.4627272727,36.0181818182,24.8690909091,36.9954545455,24.1263636364,38.3181818182,21.3718181818,50.3934090909,17.9281818182,10.2545454545,23.3554545455,35.7636363636,24.3954545455,41.155,22.1,38.9009090909,15.1,756.3,64,2,26,8.4,15.1383153629,15.1383153629 -70,0,24.3246753247,37.9915584416,23.4457792208,36.1337662338,24.8711688312,37.0344155844,24.1146753247,38.3480519481,21.3705194805,50.3966883117,17.8261471861,10.9155844156,23.352987013,35.8181818182,24.3844155844,41.1985714286,22.1,38.985021645,14.7666666667,756.35,65.8333333333,1.8333333333,28.3333333333,8.4666666667,46.713240922,46.713240922 -50,0,24.312987013,38.0576623377,23.4288311688,36.2493506494,24.8732467532,37.0733766234,24.102987013,38.3779220779,21.3692207792,50.3999675325,17.7241125541,11.5766233766,23.3505194805,35.8727272727,24.3733766234,41.2421428571,22.1,39.0691341991,14.4333333333,756.4,67.6666666667,1.6666666667,30.6666666667,8.5333333333,16.3868773961,16.3868773961 -50,0,24.3012987013,38.1237662338,23.4118831169,36.3649350649,24.8753246753,37.1123376623,24.0912987013,38.4077922078,21.3679220779,50.4032467532,17.6220779221,12.2376623377,23.3480519481,35.9272727273,24.3623376623,41.2857142857,22.1,39.1532467532,14.1,756.45,69.5,1.5,33,8.6,46.7047915561,46.7047915561 -60,0,24.2896103896,38.1898701299,23.3949350649,36.4805194805,24.8774025974,37.1512987013,24.0796103896,38.4376623377,21.3666233766,50.406525974,17.52004329,12.8987012987,23.3455844156,35.9818181818,24.3512987013,41.3292857143,22.1,39.2373593074,13.7666666667,756.5,71.3333333333,1.3333333333,35.3333333333,8.6666666667,44.0448625362,44.0448625362 -40,0,24.2779220779,38.255974026,23.377987013,36.5961038961,24.8794805195,37.1902597403,24.0679220779,38.4675324675,21.3653246753,50.4098051948,17.418008658,13.5597402597,23.3431168831,36.0363636364,24.3402597403,41.3728571429,22.1,39.3214718615,13.4333333333,756.55,73.1666666667,1.1666666667,37.6666666667,8.7333333333,29.112309881,29.112309881 -50,0,24.2662337662,38.3220779221,23.361038961,36.7116883117,24.8815584416,37.2292207792,24.0562337662,38.4974025974,21.364025974,50.4130844156,17.315974026,14.2207792208,23.3406493506,36.0909090909,24.3292207792,41.4164285714,22.1,39.4055844156,13.1,756.6,75,1,40,8.8,22.2807166283,22.2807166283 -50,0,24.2545454545,38.3881818182,23.3440909091,36.8272727273,24.8836363636,37.2681818182,24.0445454545,38.5272727273,21.3627272727,50.4163636364,17.2139393939,14.8818181818,23.3381818182,36.1454545455,24.3181818182,41.46,22.1,39.4896969697,12.85,756.6166666667,76.8333333333,1.3333333333,37.1666666667,8.8833333333,12.9246889031,12.9246889031 -60,0,24.2428571429,38.4542857143,23.3271428571,36.9428571429,24.8857142857,37.3071428571,24.0328571429,38.5571428571,21.3614285714,50.4196428571,17.1119047619,15.5428571429,23.3357142857,36.2,24.3071428571,41.5035714286,22.1,39.5738095238,12.6,756.6333333333,78.6666666667,1.6666666667,34.3333333333,8.9666666667,44.5053150994,44.5053150994 -50,0,24.2311688312,38.5203896104,23.3101948052,37.0584415584,24.8877922078,37.3461038961,24.0211688312,38.587012987,21.3601298701,50.4229220779,17.0098701299,16.2038961039,23.3332467532,36.2545454545,24.2961038961,41.5471428571,22.1,39.6579220779,12.35,756.65,80.5,2,31.5,9.05,8.0937965191,8.0937965191 -60,0,24.2194805195,38.5864935065,23.2932467532,37.174025974,24.8898701299,37.3850649351,24.0094805195,38.6168831169,21.3588311688,50.4262012987,16.9078354978,16.8649350649,23.3307792208,36.3090909091,24.2850649351,41.5907142857,22.1,39.742034632,12.1,756.6666666667,82.3333333333,2.3333333333,28.6666666667,9.1333333333,45.6557786441,45.6557786441 -50,0,24.2077922078,38.6525974026,23.2762987013,37.2896103896,24.8919480519,37.424025974,23.9977922078,38.6467532468,21.3575324675,50.4294805195,16.8058008658,17.525974026,23.3283116883,36.3636363636,24.274025974,41.6342857143,22.1,39.8261471861,11.85,756.6833333333,84.1666666667,2.6666666667,25.8333333333,9.2166666667,35.6272879522,35.6272879522 -60,0,24.1961038961,38.7187012987,23.2593506494,37.4051948052,24.894025974,37.462987013,23.9861038961,38.6766233766,21.3562337662,50.4327597403,16.7037662338,18.187012987,23.3258441558,36.4181818182,24.262987013,41.6778571429,22.1,39.9102597403,11.6,756.7,86,3,23,9.3,12.8047444392,12.8047444392 -50,0,24.1844155844,38.7848051948,23.2424025974,37.5207792208,24.8961038961,37.5019480519,23.9744155844,38.7064935065,21.3549350649,50.436038961,16.6017316017,18.8480519481,23.3233766234,36.4727272727,24.2519480519,41.7214285714,22.1,39.9943722944,11.4666666667,756.75,87,2.8333333333,29.5,9.35,29.2354228091,29.2354228091 -60,0,24.1727272727,38.8509090909,23.2254545455,37.6363636364,24.8981818182,37.5409090909,23.9627272727,38.7363636364,21.3536363636,50.4393181818,16.4996969697,19.5090909091,23.3209090909,36.5272727273,24.2409090909,41.765,22.1,40.0784848485,11.3333333333,756.8,88,2.6666666667,36,9.4,37.0535703492,37.0535703492 -50,0,24.161038961,38.917012987,23.2085064935,37.7519480519,24.9002597403,37.5798701299,23.951038961,38.7662337662,21.3523376623,50.4425974026,16.3976623377,20.1701298701,23.3184415584,36.5818181818,24.2298701299,41.8085714286,22.1,40.1625974026,11.2,756.85,89,2.5,42.5,9.45,45.7364866277,45.7364866277 -50,0,24.1493506494,38.9831168831,23.1915584416,37.8675324675,24.9023376623,37.6188311688,23.9393506494,38.7961038961,21.351038961,50.4458766234,16.2956277056,20.8311688312,23.315974026,36.6363636364,24.2188311688,41.8521428571,22.1,40.2467099567,11.0666666667,756.9,90,2.3333333333,49,9.5,23.573954415,23.573954415 -50,0,24.1376623377,39.0492207792,23.1746103896,37.9831168831,24.9044155844,37.6577922078,23.9276623377,38.825974026,21.3497402597,50.4491558442,16.1935930736,21.4922077922,23.3135064935,36.6909090909,24.2077922078,41.8957142857,22.1,40.3308225108,10.9333333333,756.95,91,2.1666666667,55.5,9.55,1.8811182817,1.8811182817 -50,0,24.125974026,39.1153246753,23.1576623377,38.0987012987,24.9064935065,37.6967532468,23.915974026,38.8558441558,21.3484415584,50.4524350649,16.0915584416,22.1532467532,23.311038961,36.7454545455,24.1967532468,41.9392857143,22.1,40.4149350649,10.8,757,92,2,62,9.6,34.852615674,34.852615674 -50,0,24.1142857143,39.1814285714,23.1407142857,38.2142857143,24.9085714286,37.7357142857,23.9042857143,38.8857142857,21.3471428571,50.4557142857,15.9895238095,22.8142857143,23.3085714286,36.8,24.1857142857,41.9828571429,22.1,40.499047619,10.7666666667,757,92.1666666667,2,62,9.5833333333,45.2790529816,45.2790529816 -50,0,24.1025974026,39.2475324675,23.1237662338,38.3298701299,24.9106493506,37.7746753247,23.8925974026,38.9155844156,21.3458441558,50.4589935065,15.8874891775,23.4753246753,23.3061038961,36.8545454545,24.1746753247,42.0264285714,22.1,40.5831601732,10.7333333333,757,92.3333333333,2,62,9.5666666667,1.3385870494,1.3385870494 -60,0,24.0909090909,39.3136363636,23.1068181818,38.4454545455,24.9127272727,37.8136363636,23.8809090909,38.9454545455,21.3445454545,50.4622727273,15.7854545455,24.1363636364,23.3036363636,36.9090909091,24.1636363636,42.07,22.1,40.6672727273,10.7,757,92.5,2,62,9.55,35.391008982,35.391008982 -50,0,24.0792207792,39.3797402597,23.0898701299,38.561038961,24.9148051948,37.8525974026,23.8692207792,38.9753246753,21.3432467532,50.4655519481,15.6834199134,24.7974025974,23.3011688312,36.9636363636,24.1525974026,42.1135714286,22.1,40.7513852814,10.6666666667,757,92.6666666667,2,62,9.5333333333,29.4342250563,29.4342250563 -60,0,24.0675324675,39.4458441558,23.0729220779,38.6766233766,24.9168831169,37.8915584416,23.8575324675,39.0051948052,21.3419480519,50.4688311688,15.5813852814,25.4584415584,23.2987012987,37.0181818182,24.1415584416,42.1571428571,22.1,40.8354978355,10.6333333333,757,92.8333333333,2,62,9.5166666667,43.8939152402,43.8939152402 -60,0,24.0558441558,39.5119480519,23.055974026,38.7922077922,24.918961039,37.9305194805,23.8458441558,39.0350649351,21.3406493506,50.4721103896,15.4793506494,26.1194805195,23.2962337662,37.0727272727,24.1305194805,42.2007142857,22.1,40.9196103896,10.6,757,93,2,62,9.5,18.827473803,18.827473803 -60,0,24.0441558442,39.5780519481,23.039025974,38.9077922078,24.921038961,37.9694805195,23.8341558442,39.0649350649,21.3393506494,50.4753896104,15.3773160173,26.7805194805,23.2937662338,37.1272727273,24.1194805195,42.2442857143,22.1,41.0037229437,10.4666666667,757,93.3333333333,2,61.8333333333,9.4166666667,3.033077775,3.033077775 -50,0,24.0324675325,39.6441558442,23.0220779221,39.0233766234,24.9231168831,38.0084415584,23.8224675325,39.0948051948,21.3380519481,50.4786688312,15.2752813853,27.4415584416,23.2912987013,37.1818181818,24.1084415584,42.2878571429,22.1,41.0878354978,10.3333333333,757,93.6666666667,2,61.6666666667,9.3333333333,15.7024551881,15.7024551881 -50,0,24.0207792208,39.7102597403,23.0051298701,39.138961039,24.9251948052,38.0474025974,23.8107792208,39.1246753247,21.3367532468,50.4819480519,15.1732467532,28.1025974026,23.2888311688,37.2363636364,24.0974025974,42.3314285714,22.1,41.1719480519,10.2,757,94,2,61.5,9.25,18.0606259033,18.0606259033 -60,0,24.0090909091,39.7763636364,22.9881818182,39.2545454545,24.9272727273,38.0863636364,23.7990909091,39.1545454545,21.3354545455,50.4852272727,15.0712121212,28.7636363636,23.2863636364,37.2909090909,24.0863636364,42.375,22.1,41.2560606061,10.0666666667,757,94.3333333333,2,61.3333333333,9.1666666667,9.5079353545,9.5079353545 -50,0,23.9974025974,39.8424675325,22.9712337662,39.3701298701,24.9293506494,38.1253246753,23.7874025974,39.1844155844,21.3341558442,50.4885064935,14.9691774892,29.4246753247,23.2838961039,37.3454545455,24.0753246753,42.4185714286,22.1,41.3401731602,9.9333333333,757,94.6666666667,2,61.1666666667,9.0833333333,14.1962392256,14.1962392256 -50,0,23.9857142857,39.9085714286,22.9542857143,39.4857142857,24.9314285714,38.1642857143,23.7757142857,39.2142857143,21.3328571429,50.4917857143,14.8671428571,30.0857142857,23.2814285714,37.4,24.0642857143,42.4621428571,22.1,41.4242857143,9.8,757,95,2,61,9,6.799218629,6.799218629 -40,0,23.974025974,39.9746753247,22.9373376623,39.6012987013,24.9335064935,38.2032467532,23.764025974,39.2441558442,21.3315584416,50.4950649351,14.7651082251,30.7467532468,23.278961039,37.4545454545,24.0532467532,42.5057142857,22.1,41.5083982684,9.6666666667,757,95,1.8333333333,58.6666666667,8.8833333333,23.6493987963,23.6493987963 -50,0,23.9623376623,40.0407792208,22.9203896104,39.7168831169,24.9355844156,38.2422077922,23.7523376623,39.274025974,21.3302597403,50.4983441558,14.6630735931,31.4077922078,23.2764935065,37.5090909091,24.0422077922,42.5492857143,22.1,41.5925108225,9.5333333333,757,95,1.6666666667,56.3333333333,8.7666666667,33.5886851535,33.5886851535 -50,0,23.9506493506,40.1068831169,22.9034415584,39.8324675325,24.9376623377,38.2811688312,23.7406493506,39.3038961039,21.328961039,50.5016233766,14.561038961,32.0688311688,23.274025974,37.5636363636,24.0311688312,42.5928571429,22.1,41.6766233766,9.4,757,95,1.5,54,8.65,22.1542820451,22.1542820451 -60,0,23.938961039,40.172987013,22.8864935065,39.9480519481,24.9397402597,38.3201298701,23.728961039,39.3337662338,21.3276623377,50.5049025974,14.459004329,32.7298701299,23.2715584416,37.6181818182,24.0201298701,42.6364285714,22.1,41.7607359307,9.2666666667,757,95,1.3333333333,51.6666666667,8.5333333333,35.4740115697,35.4740115697 -50,0,23.9272727273,40.2390909091,22.8695454545,40.0636363636,24.9418181818,38.3590909091,23.7172727273,39.3636363636,21.3263636364,50.5081818182,14.356969697,33.3909090909,23.2690909091,37.6727272727,24.0090909091,42.68,22.1,41.8448484848,9.1333333333,757,95,1.1666666667,49.3333333333,8.4166666667,7.1233592345,7.1233592345 -60,0,23.9155844156,40.3051948052,22.8525974026,40.1792207792,24.9438961039,38.3980519481,23.7055844156,39.3935064935,21.3250649351,50.511461039,14.2549350649,34.0519480519,23.2666233766,37.7272727273,23.9980519481,42.7235714286,22.1,41.928961039,9,757,95,1,47,8.3,46.0265863687,46.0265863687 -50,0,23.9038961039,40.3712987013,22.8356493506,40.2948051948,24.945974026,38.437012987,23.6938961039,39.4233766234,21.3237662338,50.5147402597,14.1529004329,34.712987013,23.2641558442,37.7818181818,23.987012987,42.7671428571,22.1,42.0130735931,8.9333333333,757,95,1,47.5,8.2333333333,32.665180508,32.665180508 -60,0,23.8922077922,40.4374025974,22.8187012987,40.4103896104,24.9480519481,38.475974026,23.6822077922,39.4532467532,21.3224675325,50.5180194805,14.0508658009,35.374025974,23.2616883117,37.8363636364,23.975974026,42.8107142857,22.1,42.0971861472,8.8666666667,757,95,1,48,8.1666666667,7.9693074455,7.9693074455 -50,0,23.8805194805,40.5035064935,22.8017532468,40.525974026,24.9501298701,38.5149350649,23.6705194805,39.4831168831,21.3211688312,50.5212987013,13.9488311688,36.0350649351,23.2592207792,37.8909090909,23.9649350649,42.8542857143,22.1,42.1812987013,8.8,757,95,1,48.5,8.1,33.3495649043,33.3495649043 -60,0,23.8688311688,40.5696103896,22.7848051948,40.6415584416,24.9522077922,38.5538961039,23.6588311688,39.512987013,21.3198701299,50.5245779221,13.8467965368,36.6961038961,23.2567532468,37.9454545455,23.9538961039,42.8978571429,22.1,42.2654112554,8.7333333333,757,95,1,49,8.0333333333,14.6019721054,14.6019721054 -60,0,23.8571428571,40.6357142857,22.7678571429,40.7571428571,24.9542857143,38.5928571429,23.6471428571,39.5428571429,21.3185714286,50.5278571429,13.7447619048,37.3571428571,23.2542857143,38,23.9428571429,42.9414285714,22.1,42.3495238095,8.6666666667,757,95,1,49.5,7.9666666667,14.8980824626,14.8980824626 -50,0,23.8454545455,40.7018181818,22.7509090909,40.8727272727,24.9563636364,38.6318181818,23.6354545455,39.5727272727,21.3172727273,50.5311363636,13.6427272727,38.0181818182,23.2518181818,38.0545454545,23.9318181818,42.985,22.1,42.4336363636,8.6,757,95,1,50,7.9,43.3825545129,43.3825545129 -50,0,23.8337662338,40.7679220779,22.733961039,40.9883116883,24.9584415584,38.6707792208,23.6237662338,39.6025974026,21.315974026,50.5344155844,13.5406926407,38.6792207792,23.2493506494,38.1090909091,23.9207792208,43.0285714286,22.1,42.5177489177,8.5,756.95,95.5,1,50.5,7.8666666667,40.9958665608,40.9958665608 -50,0,23.8220779221,40.834025974,22.717012987,41.1038961039,24.9605194805,38.7097402597,23.6120779221,39.6324675325,21.3146753247,50.5376948052,13.4386580087,39.3402597403,23.2468831169,38.1636363636,23.9097402597,43.0721428571,22.1,42.6018614719,8.4,756.9,96,1,51,7.8333333333,41.0111803329,41.0111803329 -50,0,23.8103896104,40.9001298701,22.7000649351,41.2194805195,24.9625974026,38.7487012987,23.6003896104,39.6623376623,21.3133766234,50.540974026,13.3366233766,40.0012987013,23.2444155844,38.2181818182,23.8987012987,43.1157142857,22.1,42.685974026,8.3,756.85,96.5,1,51.5,7.8,33.8025398552,33.8025398552 -50,0,23.7987012987,40.9662337662,22.6831168831,41.3350649351,24.9646753247,38.7876623377,23.5887012987,39.6922077922,21.3120779221,50.5442532468,13.2345887446,40.6623376623,23.2419480519,38.2727272727,23.8876623377,43.1592857143,22.1,42.7700865801,8.2,756.8,97,1,52,7.7666666667,47.5759600638,47.5759600638 -50,0,23.787012987,41.0323376623,22.6661688312,41.4506493506,24.9667532468,38.8266233766,23.577012987,39.7220779221,21.3107792208,50.5475324675,13.1325541126,41.3233766234,23.2394805195,38.3272727273,23.8766233766,43.2028571429,22.1,42.8541991342,8.1,756.75,97.5,1,52.5,7.7333333333,36.6394792567,36.6394792567 -60,0,23.7753246753,41.0984415584,22.6492207792,41.5662337662,24.9688311688,38.8655844156,23.5653246753,39.7519480519,21.3094805195,50.5508116883,13.0305194805,41.9844155844,23.237012987,38.3818181818,23.8655844156,43.2464285714,22.1,42.9383116883,8,756.7,98,1,53,7.7,26.0381635395,26.0381635395 -50,0,23.7636363636,41.1645454545,22.6322727273,41.6818181818,24.9709090909,38.9045454545,23.5536363636,39.7818181818,21.3081818182,50.5540909091,12.9284848485,42.6454545455,23.2345454545,38.4363636364,23.8545454545,43.29,22.1,43.0224242424,8.1166666667,756.7333333333,98.3333333333,1,44.3333333333,7.8666666667,47.042037861,47.042037861 -60,0,23.7519480519,41.2306493506,22.6153246753,41.7974025974,24.972987013,38.9435064935,23.5419480519,39.8116883117,21.3068831169,50.5573701299,12.8264502165,43.3064935065,23.2320779221,38.4909090909,23.8435064935,43.3335714286,22.1,43.1065367965,8.2333333333,756.7666666667,98.6666666667,1,35.6666666667,8.0333333333,39.3630561302,39.3630561302 -50,0,23.7402597403,41.2967532468,22.5983766234,41.912987013,24.9750649351,38.9824675325,23.5302597403,39.8415584416,21.3055844156,50.5606493506,12.7244155844,43.9675324675,23.2296103896,38.5454545455,23.8324675325,43.3771428571,22.1,43.1906493506,8.35,756.8,99,1,27,8.2,17.3321857932,17.3321857932 -60,0,23.7285714286,41.3628571429,22.5814285714,42.0285714286,24.9771428571,39.0214285714,23.5185714286,39.8714285714,21.3042857143,50.5639285714,12.6223809524,44.6285714286,23.2271428571,38.6,23.8214285714,43.4207142857,22.1,43.2747619048,8.4666666667,756.8333333333,99.3333333333,1,18.3333333333,8.3666666667,0.5224930239,0.5224930239 -60,0,23.7168831169,41.428961039,22.5644805195,42.1441558442,24.9792207792,39.0603896104,23.5068831169,39.9012987013,21.302987013,50.5672077922,12.5203463203,45.2896103896,23.2246753247,38.6545454545,23.8103896104,43.4642857143,22.1,43.3588744589,8.5833333333,756.8666666667,99.6666666667,1,9.6666666667,8.5333333333,16.1483213422,16.1483213422 -60,0,23.7051948052,41.4950649351,22.5475324675,42.2597402597,24.9812987013,39.0993506494,23.4951948052,39.9311688312,21.3016883117,50.570487013,12.4183116883,45.9506493506,23.2222077922,38.7090909091,23.7993506494,43.5078571429,22.1,43.442987013,8.7,756.9,100,1,1,8.7,23.2629422448,23.2629422448 -70,0,23.6935064935,41.5611688312,22.5305844156,42.3753246753,24.9833766234,39.1383116883,23.4835064935,39.961038961,21.3003896104,50.5737662338,12.3162770563,46.6116883117,23.2197402597,38.7636363636,23.7883116883,43.5514285714,22.1,43.5270995671,8.6666666667,756.9166666667,100,1,1,8.6666666667,32.6198084862,32.6198084862 -100,0,23.6818181818,41.6272727273,22.5136363636,42.4909090909,24.9854545455,39.1772727273,23.4718181818,39.9909090909,21.2990909091,50.5770454545,12.2142424242,47.2727272727,23.2172727273,38.8181818182,23.7772727273,43.595,22.1,43.6112121212,8.6333333333,756.9333333333,100,1,1,8.6333333333,44.9594050297,44.9594050297 -40,0,23.6701298701,41.6933766234,22.4966883117,42.6064935065,24.9875324675,39.2162337662,23.4601298701,40.0207792208,21.2977922078,50.5803246753,12.1122077922,47.9337662338,23.2148051948,38.8727272727,23.7662337662,43.6385714286,22.1,43.6953246753,8.6,756.95,100,1,1,8.6,10.3150738054,10.3150738054 -50,0,23.6584415584,41.7594805195,22.4797402597,42.7220779221,24.9896103896,39.2551948052,23.4484415584,40.0506493506,21.2964935065,50.5836038961,12.0101731602,48.5948051948,23.2123376623,38.9272727273,23.7551948052,43.6821428571,22.1,43.7794372294,8.5666666667,756.9666666667,100,1,1,8.5666666667,3.9512237068,3.9512237068 -50,10,23.6467532468,41.8255844156,22.4627922078,42.8376623377,24.9916883117,39.2941558442,23.4367532468,40.0805194805,21.2951948052,50.5868831169,11.9081385281,49.2558441558,23.2098701299,38.9818181818,23.7441558442,43.7257142857,22.1,43.8635497835,8.5333333333,756.9833333333,100,1,1,8.5333333333,19.8755889665,19.8755889665 -80,0,23.6350649351,41.8916883117,22.4458441558,42.9532467532,24.9937662338,39.3331168831,23.4250649351,40.1103896104,21.2938961039,50.5901623377,11.8061038961,49.9168831169,23.2074025974,39.0363636364,23.7331168831,43.7692857143,22.1,43.9476623377,8.5,757,100,1,1,8.5,45.6706047989,45.6706047989 -50,0,23.6233766234,41.9577922078,22.4288961039,43.0688311688,24.9958441558,39.3720779221,23.4133766234,40.1402597403,21.2925974026,50.5934415584,11.7040692641,50.5779220779,23.2049350649,39.0909090909,23.7220779221,43.8128571429,22.1,44.0317748918,8.6666666667,757.025,99.9166666667,1,3.5833333333,8.6583333333,5.2550861845,5.2550861845 -180,0,23.6116883117,42.0238961039,22.4119480519,43.1844155844,24.9979220779,39.411038961,23.4016883117,40.1701298701,21.2912987013,50.5967207792,11.602034632,51.238961039,23.2024675325,39.1454545455,23.711038961,43.8564285714,22.1,44.1158874459,8.8333333333,757.05,99.8333333333,1,6.1666666667,8.8166666667,17.6207286189,17.6207286189 -90,0,23.6,42.09,22.395,43.3,25,39.45,23.39,40.2,21.29,50.6,11.5,51.9,23.2,39.2,23.7,43.9,22.1,44.2,9,757.075,99.75,1,8.75,8.975,15.3330145404,15.3330145404 -70,0,23.6,42.09,23.116,42.47,24.9266666667,39.4,23.5,40.5966666667,21.29,50.5,12.2,52.1566666667,23.2,39.2,23.6333333333,43.8266666667,22.1,44.2,9.1666666667,757.1,99.6666666667,1,11.3333333333,9.1333333333,43.3188384166,43.3188384166 -130,0,23.6,42.03,23.5957142857,41.4942857143,24.76,38.9333333333,23.5,40.79,21.29,50.26,13.1266666667,52.29,23.2,39.2128571429,23.6,43.8266666667,22.2,44.06,9.3333333333,757.125,99.5833333333,1,13.9166666667,9.2916666667,29.342170665,29.342170665 -360,0,23.6,42.1966666667,24.294,40.576,24.7,39,23.5,41,21.29,50.2,14.0333333333,47.5666666667,23.18,39.236,23.6,43.9,22.2,43.925,9.5,757.15,99.5,1,16.5,9.45,49.4891732,49.4891732 -160,0,23.6,42.59,25.0942857143,39.4971428571,24.76,39.1933333333,23.5666666667,41.3333333333,21.3233333333,50,14.16,39.6266666667,23.1428571429,39.2642857143,23.6,43.9,22.245,43.9,9.6666666667,757.175,99.4166666667,1,19.0833333333,9.6083333333,25.2543372335,25.2543372335 -90,0,23.6,42.6566666667,25.54,38.47,24.7,39.4666666667,23.6333333333,41.6266666667,21.315,49.925,14.6242857143,35.9385714286,23.16,39.29,23.6,43.9666666667,22.29,43.812,9.8333333333,757.2,99.3333333333,1,21.6666666667,9.7666666667,33.0260094954,33.0260094954 -90,0,23.6,42.93,25.81,38.0214285714,24.79,39.4,23.76,41.76,21.29,49.9,15.2,32.54,23.1714285714,39.3057142857,23.6,44.03,22.3566666667,43.79,10,757.225,99.25,1,24.25,9.925,22.3276498145,22.3276498145 -110,0,23.6,43.03,26.098,37.914,24.79,39.4,23.8233333333,42.0666666667,21.29,49.9,15.9,30.6966666667,23.1,39.4,23.5333333333,44.1633333333,22.39,43.79,10.1666666667,757.25,99.1666666667,1,26.8333333333,10.0833333333,33.9543810464,33.9543810464 -130,0,23.5333333333,43.2233333333,26.3928571429,37.4657142857,24.79,39.5,23.89,42.3333333333,21.29,49.9,16.55,26.8425,23.1,39.4714285714,23.5,44.23,22.39,43.79,10.3333333333,757.275,99.0833333333,1,29.4166666667,10.2416666667,5.5989633314,5.5989633314 -100,0,23.5666666667,43.4,26.83,36.62,24.79,39.56,24.0333333333,42.53,21.39,49.9,16.9666666667,24.4666666667,23.1,39.59,23.5,44.3633333333,22.39,43.79,10.5,757.3,99,1,32,10.4,44.3113604211,44.3113604211 -110,0,23.575,43.4975,27.2085714286,36.4085714286,24.8233333333,39.6266666667,24.1,42.59,21.39,49.9666666667,17.37,22.1975,23.1142857143,39.6057142857,23.5,44.4633333333,22.4633333333,43.9,11.1,757.3,96.8333333333,1,36.1666666667,10.6166666667,48.8906335318,48.8906335318 -90,0,23.6,43.6633333333,27.5,35.936,24.89,39.76,24.2,42.6633333333,21.39,50,17.7933333333,19.3566666667,23.14,39.718,23.5,44.59,22.4633333333,43.9,11.7,757.3,94.6666666667,1,40.3333333333,10.8333333333,41.6306618368,41.6306618368 -80,0,23.6,43.86,27.5714285714,35.7385714286,24.89,39.9333333333,24.26,42.59,21.39,50.06,18.15,15.49,23.1,39.7514285714,23.5,44.73,22.5,44.03,12.3,757.3,92.5,1,44.5,11.05,9.708080627,9.708080627 -460,0,23.6,44.06,27.7,35.5,24.89,40,24.2,42.4633333333,21.39,50.09,18.4633333333,13.1666666667,23.14,39.79,23.5,44.79,22.5,44.1633333333,12.9,757.3,90.3333333333,1,48.6666666667,11.2666666667,2.8635649593,2.8635649593 -820,0,23.6,44.26,27.4085714286,35.7714285714,24.89,40.1933333333,24.2,42.695,21.39,50.1633333333,18.3233333333,12.3,23.1142857143,39.79,23.5,44.9333333333,22.5,44.1633333333,13.5,757.3,88.1666666667,1,52.8333333333,11.4833333333,3.319312667,3.319312667 -350,0,23.6,44.2,27.4075,35.53125,24.9633333333,40.8,24.1333333333,42.73,21.39,50.2,18.5666666667,6.8566666667,23.16,39.714,23.4266666667,44.9333333333,22.5,44.4266666667,14.1,757.3,86,1,57,11.7,45.0924720848,45.0924720848 -300,0,23.6,43.96,27.6,34.676,25.2633333333,41.8,24.1333333333,42.4666666667,21.39,50.2,18.76,2.0633333333,23.2,39.4971428571,23.5,45.1933333333,22.5333333333,44.7233333333,14.5333333333,757.3,83.6666666667,1,58,11.6666666667,28.6776739289,28.6776739289 -260,0,23.6,43.5666666667,27.6714285714,33.9285714286,25.5966666667,42,24.2,42.1933333333,21.39,50.06,18.96,1,23.2,39.12,23.5,45.2666666667,22.6,44.53,14.9666666667,757.3,81.3333333333,1,59,11.6333333333,38.9373675571,38.9373675571 -290,0,23.6,43.1333333333,27.7,33.554,25.895,42.04,24.2,41.6,21.39,49.9333333333,19.2933333333,1,23.2,38.8671428571,23.4633333333,44.99,22.6,44.3633333333,15.4,757.3,79,1,60,11.6,22.4124812172,22.4124812172 -220,0,23.6,42.8,27.6857142857,33.5128571429,26.1633333333,42.06,24.2,41.3266666667,21.39,49.7233333333,19.8,1,23.2,38.678,23.39,44.73,22.6,44.29,15.8333333333,757.3,76.6666666667,1,61,11.5666666667,10.5573461275,10.5573461275 -170,0,23.6333333333,42.9333333333,27.6,33.696,26.29,41.7266666667,24.3233333333,41.26,21.39,49.4633333333,19.9266666667,1,23.2,38.59,23.445,44.6,22.6,44.29,16.2666666667,757.3,74.3333333333,1,62,11.5333333333,23.3802231145,23.3802231145 -90,0,23.76,43.3266666667,27.5285714286,33.9971428571,26.2,40.7333333333,24.39,41.2,21.4266666667,49.29,20.0966666667,1,23.2,38.59,23.39,44.4,22.6,44.23,16.7,757.3,72,1,63,11.5,44.2113589379,44.2113589379 -80,0,23.79,43.06,27.39,34.236,26.26,40.0666666667,24.5,41.4666666667,21.4266666667,49.23,20.3566666667,1,23.2385714286,38.6371428571,23.4633333333,44.4666666667,22.6,44.09,16.8166666667,757.25,70.8333333333,1,56,11.35,0.9961454431,0.9961454431 -80,0,23.79,42.86,27.3328571429,34.3371428571,26.2,39.56,24.5,41.4,21.5,49.26,20.2933333333,1,23.218,38.59,23.39,44.4,22.6,44.09,16.9333333333,757.2,69.6666666667,1,49,11.2,14.5779120387,14.5779120387 -100,0,23.79,43.1966666667,27.236,34.356,26.1333333333,39.36,24.6,41.2966666667,21.5,49.2,19.96,1,23.29,38.5642857143,23.39,44.3266666667,22.6,44.09,17.05,757.15,68.5,1,42,11.05,47.2062146408,47.2062146408 -600,0,23.79,43.53,27.1714285714,34.4285714286,26,39.2,24.6,41.03,21.5,49.2,20.0333333333,1,23.29,38.46,23.39,44.29,22.6,44.09,17.1666666667,757.1,67.3333333333,1,35,10.9,0.0358827878,0.0358827878 -510,10,23.89,43.16,27.1,34.536,26,39.4,24.5,40.9,21.5,49.2,20.2266666667,1,23.3042857143,38.3371428571,23.4633333333,44.3633333333,22.6,44.09,17.2833333333,757.05,66.1666666667,1,28,10.75,9.0264888015,9.0264888015 -280,0,23.9633333333,42.8266666667,26.9514285714,34.38,26.2633333333,40.0666666667,24.5,40.8266666667,21.5,49.2,20.3566666667,1,23.33,38.29,23.39,44.29,22.6,44.09,17.4,757,65,1,21,10.6,42.2375577036,42.2375577036 -250,0,24,42.56,26.83,34.356,26.53,40.3333333333,24.5,40.9,21.5,49.09,20.29,1,23.365,38.20875,23.39,44.23,22.6,44.09,17.7166666667,756.9833333333,63,1,21.5,10.4,14.8745834711,14.8745834711 -260,0,24,42.36,26.7257142857,34.4714285714,26.7633333333,40.4,24.5,40.9,21.5666666667,49.03,20.5666666667,1,23.39,38.09,23.39,44.2,22.7,44.1,18.0333333333,756.9666666667,61,1,22,10.2,30.1093986956,30.1093986956 -250,0,24.1,42.3,26.6,34.5642857143,26.9633333333,40.6,24.4633333333,40.8333333333,21.5333333333,48.9666666667,20.8266666667,1,23.39,38,23.39,44.2,22.6333333333,43.9,18.35,756.95,59,1,22.5,10,6.4480731846,6.4480731846 -180,0,24.1,42.1266666667,26.5941176471,34.59,27.1333333333,40.3633333333,24.4633333333,40.7,21.6,48.9,21.3233333333,1,23.3964705882,37.9529411765,23.39,44.12,22.6,43.9,18.6666666667,756.9333333333,57,1,23,9.8,33.4792527836,33.4792527836 -110,0,24.1,42.1266666667,26.5,34.645,27.26,40.1566666667,24.5,40.7,21.6,48.79,21.3233333333,1,23.5,37.878,23.39,44.09,22.6,43.9,18.9833333333,756.9166666667,55,1,23.5,9.6,1.1104152771,1.1104152771 -80,0,24.2,42.23,26.3233333333,34.8483333333,27.26,39.7233333333,24.5,40.7,21.6,48.745,21.195,1,23.5,37.772,23.39,44.09,22.6,43.9333333333,19.3,756.9,53,1,24,9.4,10.4959366494,10.4959366494 -70,0,24.2,42.0966666667,26.29,34.856,27.1333333333,39.39,24.39,40.395,21.6,48.6633333333,21.0966666667,1,23.5,37.6214285714,23.39,44.09,22.6,43.9333333333,19.3833333333,756.8833333333,52.1666666667,1.1666666667,24.8333333333,9.25,39.9855247349,39.9855247349 -80,10,24.2,41.9,26.2257142857,34.9285714286,26.9633333333,38.7633333333,24.39,40.36,21.6,48.53,21.6233333333,1,23.5,37.5,23.39,43.9666666667,22.6,43.9,19.4666666667,756.8666666667,51.3333333333,1.3333333333,25.6666666667,9.1,5.2033825661,5.2033825661 -70,0,24.2,41.9,26.2,35.09,26.89,38.23,24.39,40.56,21.6,48.4666666667,21.9266666667,1,23.5857142857,37.4428571429,23.39,43.9,22.6,43.9,19.55,756.85,50.5,1.5,26.5,8.95,38.6124665383,38.6124665383 -80,0,24.2,41.9,26.1142857143,35.1528571429,26.79,38.06,24.39,40.7,21.6,48.4,22.3266666667,1,23.6,37.378,23.39,43.79,22.6,43.79,19.6333333333,756.8333333333,49.6666666667,1.6666666667,27.3333333333,8.8,28.8087286288,28.8087286288 -70,0,24.2,41.9,26.08,35.276,26.73,37.9333333333,24.4633333333,40.76,21.7,48.4,22.1333333333,1,23.6,37.29,23.39,43.73,22.6,43.73,19.7166666667,756.8166666667,48.8333333333,1.8333333333,28.1666666667,8.65,5.6023097364,5.6023097364 -80,0,24.2,41.9,25.9685714286,35.3542857143,26.65,37.745,24.4266666667,40.7,21.7,48.3266666667,22.4,1,23.7,37.29,23.3233333333,43.7,22.6,43.7,19.8,756.8,48,2,29,8.5,45.9801437333,45.9801437333 -70,0,24.2,41.8266666667,25.89,35.2,26.5,37.59,24.5,40.6266666667,21.7,48.29,22.4266666667,1,23.7,37.2385714286,23.39,43.7,22.6,43.7,19.8666666667,756.7666666667,48.3333333333,2.1666666667,28.5,8.65,2.3406059132,2.3406059132 -70,0,24.2,41.76,25.7914285714,35.34,26.5,37.53,24.5,40.3633333333,21.7,48.23,22.6933333333,1,23.718,37.2,23.39,43.7,22.6,43.73,19.9333333333,756.7333333333,48.6666666667,2.3333333333,28,8.8,4.5822719927,4.5822719927 -70,0,24.2,41.6266666667,25.7,35.46,26.5,37.56,24.5,40.23,21.7,48.1633333333,23.13,1,23.79,37.1214285714,23.39,43.7,22.6,43.73,20,756.7,49,2.5,27.5,8.95,37.8704467788,37.8704467788 -60,0,24.2,41.5,25.7,35.5642857143,26.5,37.56,24.4266666667,40.1266666667,21.76,48.09,23.4633333333,1,23.83,37.09,23.39,43.6266666667,22.6,43.495,20.0666666667,756.6666666667,49.3333333333,2.6666666667,27,9.1,26.0837001493,26.0837001493 -60,10,24.2,41.56,25.7,35.634,26.4633333333,37.59,24.5,40.1266666667,21.73,48,23.7633333333,1,23.89,37.0385714286,23.39,43.3633333333,22.6,43.29,20.1333333333,756.6333333333,49.6666666667,2.8333333333,26.5,9.25,34.7889941069,34.7889941069 -60,0,24.2,41.59,25.6142857143,35.7128571429,26.39,37.59,24.5,39.9666666667,21.79,47.925,23.9633333333,1,23.89,36.94,23.39,43.29,22.6,43.3633333333,20.2,756.6,50,3,26,9.4,1.3842477812,1.3842477812 -60,0,24.2,41.59,25.525,35.895,26.3566666667,37.5,24.5,39.9,21.79,47.9,23.9966666667,1,23.89,36.8685714286,23.39,43.23,22.6,43.29,20.3666666667,756.5666666667,49.6666666667,2.6666666667,28.3333333333,9.45,23.7739850068,23.7739850068 -60,0,24.2,41.59,25.5,36.018,26.29,37.4333333333,24.5,39.9,21.79,47.79,23.93,1,24,36.79,23.39,43.23,22.6,43.3633333333,20.5333333333,756.5333333333,49.3333333333,2.3333333333,30.6666666667,9.5,13.95501527,13.95501527 -50,0,24.2,41.6633333333,25.4214285714,36.09,26.26,37.29,24.5,39.8266666667,21.8566666667,47.79,24.0666666667,1,24,36.7385714286,23.39,43.2,22.6,43.29,20.7,756.5,49,2,33,9.55,2.7986181551,2.7986181551 -70,0,24.2,41.6266666667,25.39,36.29,26.2,37.23,24.5,39.8266666667,21.89,47.79,24,1,24,36.7,23.39,43.2,22.6666666667,43.29,20.8666666667,756.4666666667,48.6666666667,1.6666666667,35.3333333333,9.6,17.5609130994,17.5609130994 -70,0,24.2,41.7,25.39,36.29,26.1666666667,37.2,24.5,39.9666666667,21.89,47.73,23.7266666667,1,24,36.7257142857,23.39,43.2,22.6,43.26,21.0333333333,756.4333333333,48.3333333333,1.3333333333,37.6666666667,9.65,22.6190549321,22.6190549321 -130,0,24.2,41.7,25.39,36.29,26.1,37.1266666667,24.6,40.2,21.89,47.7,23.7266666667,1,24.04,36.94,23.39,43.2,22.6,43.2,21.2,756.4,48,1,40,9.7,18.6337497202,18.6337497202 -390,0,24.2,41.7,25.39,36.29,26.1,37.09,24.5333333333,40.2,21.9633333333,47.7,24.1,1,24.1,37.0671428571,23.4266666667,43.53,22.6,43.23,21.1166666667,756.35,47.5,1.1666666667,40,9.45,21.8935213517,21.8935213517 -420,10,24.26,42.5,25.3042857143,36.4542857143,26.1,37.09,24.6,40.23,21.9266666667,47.59,24.1,1,24.12,37.276,23.5,43.79,22.6,43.3633333333,21.0333333333,756.3,47,1.3333333333,40,9.2,36.0315377708,36.0315377708 -710,0,24.29,43.5,25.35,36.612,26,37.2,24.6,40.3975,22,47.59,24.376,1,24.2,37.4,23.6333333333,44.0666666667,22.6,43.4666666667,20.95,756.25,46.5,1.5,40,8.95,28.6418364849,28.6418364849 -850,0,24.3566666667,43.6266666667,25.39,36.7957142857,26,37.3333333333,24.6666666667,40.56,22,47.7,24.55,1,24.2,37.4,23.7,44.3333333333,22.6,43.4333333333,20.8666666667,756.2,46,1.6666666667,40,8.7,22.2309742938,22.2309742938 -470,0,24.39,43.7566666667,25.39,37.134,26.1633333333,38.0666666667,24.7,40.7,22,47.7,24.65,1,24.2,37.5,23.8233333333,45.1,22.6,43.5,20.7833333333,756.15,45.5,1.8333333333,40,8.45,10.8439785196,10.8439785196 -360,0,24.39,44.2233333333,25.3471428571,37.4642857143,26.43,38.66,24.7,40.6266666667,22.1,47.9,24.3514285714,1,24.2257142857,37.7257142857,23.9633333333,45.7666666667,22.6,43.5,20.7,756.1,45,2,40,8.2,22.5261460291,22.5261460291 -620,0,24.39,44.3333333333,25.37,37.736,26.73,38.8633333333,24.7,40.56,22.1,47.9666666667,23.95,1,24.254,37.856,24.0333333333,45.9333333333,22.6,43.5,20.7666666667,756.05,45.1666666667,2,40,8.3333333333,4.2256163666,4.2256163666 -600,0,24.39,44.0666666667,25.2642857143,37.5285714286,26.9725,39.0425,24.7,40.5,22.1333333333,48,23.8266666667,1,24.2771428571,37.8842857143,24.1666666667,46.06,22.7,43.59,20.8333333333,756,45.3333333333,2,40,8.4666666667,9.5606506686,9.5606506686 -520,0,24.39,43.3666666667,25.06,37.12,27.1666666667,39.1266666667,24.6666666667,40.43,22.2,48,23.6966666667,1,24.29,37.938,24.2,46.09,22.7,43.59,20.9,755.95,45.5,2,40,8.6,14.6043725545,14.6043725545 -290,0,24.39,43.5666666667,24.9371428571,37.0928571429,27.4266666667,38.9666666667,24.6,40.23,22.2225,47.9,24.045,1,24.29,38.07875,24.2675,46.015,22.65,43.59,20.9666666667,755.9,45.6666666667,2,40,8.7333333333,16.7097291676,16.7097291676 -250,0,24.39,45.4666666667,24.87,37.2,27.5666666667,38.9,24.6,40.2,22.29,47.9,24.1,1,24.29,37.9977777778,24.29,45.53,22.7,43.6214285714,21.0333333333,755.85,45.8333333333,2,40,8.8666666667,6.9161818014,6.9161818014 -190,0,24.39,43.7333333333,24.79,37.1214285714,27.73,38.6633333333,24.6,40.2,22.29,47.79,24.0333333333,1,24.29,37.856,24.29,44.9,22.7,43.59,21.1,755.8,46,2,40,9,21.5056611109,21.5056611109 -120,0,24.3566666667,42.6666666667,24.7,37.08,27.79,38.53,24.6,40.1633333333,22.29,47.73,23.96,1,24.29,37.8671428571,24.29,44.5,22.7,43.59,21.0333333333,755.75,46.5,2.1666666667,38.1666666667,9.1,34.6208870178,34.6208870178 -100,0,24.29,42.0666666667,24.6428571429,37.5957142857,27.8566666667,38.1933333333,24.6,40.09,22.29,47.495,24.1,1,24.29,38.018,24.29,44.1633333333,22.7,43.56,20.9666666667,755.7,47,2.3333333333,36.3333333333,9.2,2.9745511012,2.9745511012 -320,0,24.39,42.3,24.56,38.2,27.73,37.86,24.6,40.09,22.3233333333,47.4266666667,23.5,1,24.29,38.1214285714,24.23,43.89,22.7,43.56,20.9,755.65,47.5,2.5,34.5,9.3,14.7493394907,14.7493394907 -270,0,24.3233333333,42.6333333333,24.5875,38.605,27.6333333333,37.89,24.6,40.1633333333,22.5966666667,56.76,23.0333333333,1,24.29,38.2,24.29,43.76,22.7,43.7,20.8333333333,755.6,48,2.6666666667,32.6666666667,9.4,2.9612991726,2.9612991726 -290,0,24.39,42.53,24.5777777778,39.0922222222,27.8266666667,38.2966666667,24.5,40.2,22.86,65.3933333333,22.8666666667,1,24.29,38.336,24.29,43.7,22.7,43.5666666667,20.7666666667,755.55,48.5,2.8333333333,30.8333333333,9.5,3.9321503835,3.9321503835 -270,0,24.3233333333,42.7233333333,24.6,39.7,28.0666666667,38.9333333333,24.5,40.2,22.956,70.196,22.8,1,24.2385714286,38.4985714286,24.29,43.6633333333,22.7,43.5225,20.7,755.5,49,3,29,9.6,44.4536426337,44.4536426337 -260,0,24.39,42.9,24.5,39.9977777778,28.2,39.06,24.5,40.2,22.8566666667,67.43,23,1,24.254,38.732,24.29,43.6633333333,22.7,43.7233333333,20.5833333333,755.5,49.6666666667,3,30.8333333333,9.6833333333,17.5548998755,17.5548998755 -310,0,24.39,43.175,24.56,40.236,28.3233333333,39.2,24.5,40.26,22.79,64.695,23.25,1,24.29,38.9971428571,24.29,44.0566666667,22.7,43.73,20.4666666667,755.5,50.3333333333,3,32.6666666667,9.7666666667,16.4133280632,16.4133280632 -250,0,24.39,43.7333333333,24.5,40.3371428571,28.39,39.2,24.5,40.4,22.79,57.6666666667,23.025,1,24.254,39.29,24.3566666667,45.13,22.625,43.7225,20.35,755.5,51,3,34.5,9.85,37.9552831175,37.9552831175 -130,0,24.39,44.33,24.5,40.42,28.4266666667,39.06,24.5,40.4666666667,23.19,70.86,22.0933333333,1,24.2385714286,39.47,24.5,46.06,22.7,43.79,20.2333333333,755.5,51.6666666667,3,36.3333333333,9.9333333333,7.8161512618,7.8161512618 -120,0,24.39,44.7233333333,24.5,40.5642857143,28.4266666667,38.86,24.5,40.645,23.61,80.6666666667,21.4,1,24.29,39.88,24.5,46.1933333333,22.7,43.8266666667,20.1166666667,755.5,52.3333333333,3,38.1666666667,10.0166666667,20.7070774632,20.7070774632 -100,20,24.4266666667,44.73,24.4725,40.7675,28.26,38.56,24.4633333333,41.1266666667,23.3118181818,81.8181818182,20.6963636364,1,24.29,40.3054545455,24.5333333333,46.6266666667,22.7,43.9666666667,20,755.5,53,3,40,10.1,5.9125602827,5.9125602827 -90,20,24.4266666667,44.73,24.39,40.834,28.0666666667,38.4333333333,24.39,41.3333333333,23.1666666667,81.6666666667,20.53,1,24.29,40.5,24.5333333333,46.8333333333,22.7,44,19.7833333333,755.55,54.1666666667,3,37.1666666667,10.2166666667,5.9049570118,5.9049570118 -100,10,24.39,44.59,24.3328571429,41.1,27.8266666667,38,24.4266666667,41.83,23.1,81.26,20.1566666667,1,24.29,40.7571428571,24.6,47.4666666667,22.7,44,19.5666666667,755.6,55.3333333333,3,34.3333333333,10.3333333333,5.8746520896,5.8746520896 -80,0,24.4633333333,44.6633333333,24.29,41.276,27.6333333333,37.9333333333,24.5,42.09,23.08,79.918,19.63,1,24.29,40.9,24.6666666667,48.2666666667,22.7,44,19.35,755.65,56.5,3,31.5,10.45,10.466359905,10.466359905 -90,10,24.5,44.7,24.29,41.4285714286,27.3566666667,38,24.5,41.9666666667,22.9266666667,77.4666666667,18.9333333333,1.6633333333,24.29,41.1928571429,24.7,48.4333333333,22.7,44,19.1333333333,755.7,57.6666666667,3,28.6666666667,10.5666666667,42.9212276707,42.9212276707 -90,30,24.5,44.7,24.2,41.5,27.1975,38.0675,24.5,41.9,22.89,74.6633333333,18.3933333333,3.6566666667,24.29,41.5,24.7,48.6333333333,22.7,44.06,18.9166666667,755.75,58.8333333333,3,25.8333333333,10.6833333333,47.4984661327,47.4984661327 -100,10,24.5,44.7,24.1857142857,41.6914285714,27.0333333333,38.1633333333,24.5333333333,42.36,22.8233333333,71.9966666667,17.93,5.9566666667,24.29,41.7957142857,24.7,48.7233333333,22.7,44.06,18.7,755.8,60,3,23,10.8,8.4046872682,8.4046872682 -80,0,24.5,44.7,24.1,41.876,26.8566666667,37.8266666667,24.6,42.4333333333,22.79,69.5233333333,17.695,7.595,24.29,42.374,24.625,48.2975,22.7,44.1266666667,18.3833333333,755.85,62,3.1666666667,29.5,10.9333333333,40.4347566189,40.4347566189 -60,10,24.5,44.79,24.1,42.0642857143,26.73,38.0266666667,24.6,42.29,22.79,67.2633333333,17.43,9.76,24.3328571429,42.6528571429,24.6666666667,48.3333333333,22.7,44.2225,18.0666666667,755.9,64,3.3333333333,36,11.0666666667,41.6757806321,41.6757806321 -80,20,24.5,44.73,24,42.134,26.7,38.23,24.6,42.23,22.76,66.2,17.1633333333,11.0333333333,24.3566666667,42.8266666667,24.7,48.59,22.7,44.29,17.75,755.95,66,3.5,42.5,11.2,3.383367986,3.383367986 -60,20,24.5,44.79,23.9371428571,42.3285714286,26.7,38.3633333333,24.6,42.39,22.7,65.7266666667,16.7933333333,12.8666666667,24.3757142857,43.0685714286,24.7,48.7966666667,22.7,44.29,17.4333333333,756,68,3.6666666667,49,11.3333333333,46.9818885322,46.9818885322 -80,20,24.5,44.79,23.87,42.518,26.79,38.29,24.6,42.6633333333,22.7,65.06,16.5333333333,14.4,24.3328571429,43.4971428571,24.7,49.5,22.7,44.29,17.1166666667,756.05,70,3.8333333333,55.5,11.4666666667,7.2920488426,7.2920488426 -70,20,24.5,44.7,23.79,42.6685714286,26.79,38.29,24.6,42.8266666667,22.7,64.375,16.2266666667,15.6666666667,24.39,43.59,24.7,49.76,22.7,44.3266666667,16.8,756.1,72,4,62,11.6,23.8193909987,23.8193909987 -80,20,24.5,44.7,23.7,42.834,26.79,38.4,24.6666666667,42.9666666667,22.7,63.6933333333,15.96,16.4666666667,24.3471428571,43.7357142857,24.73,49.9,22.7,44.4,16.6333333333,756.1,72.6666666667,4,62.3333333333,11.5833333333,24.7316680849,24.7316680849 -70,20,24.5,44.59,23.6857142857,42.9571428571,26.79,38.4666666667,24.7,43.1266666667,22.7,63.0633333333,15.66,17.7666666667,24.33,43.812,24.79,49.8266666667,22.7,44.4333333333,16.4666666667,756.1,73.3333333333,4,62.6666666667,11.5666666667,7.9816682031,7.9816682031 -70,20,24.5,44.59,23.6,43.018,26.79,38.5,24.7,43.2,22.6333333333,62.53,15.6,18.4333333333,24.29,43.8214285714,24.76,49.6633333333,22.6333333333,44.4333333333,16.3,756.1,74,4,63,11.55,12.8712029196,12.8712029196 -60,20,24.5,44.59,23.6,43.1214285714,26.79,38.56,24.7,43.2,22.6,61.96,15.5,18.73,24.29,43.754,24.7,49.6633333333,22.6666666667,44.4666666667,16.1333333333,756.1,74.6666666667,4,63.3333333333,11.5333333333,23.904923792,23.904923792 -70,20,24.5,44.59,23.5,43.334,26.7,38.59,24.7,43.2,22.6,61.5,15.5,18.8566666667,24.29,43.7,24.6,49.7666666667,22.6666666667,44.5266666667,15.9666666667,756.1,75.3333333333,4,63.6666666667,11.5166666667,15.1391624589,15.1391624589 -60,20,24.4266666667,44.53,23.4528571429,43.4114285714,26.7,38.6633333333,24.7,43.2,22.6,60.96,15.36,19.36,24.29,43.7,24.6,49.9666666667,22.6,44.4333333333,15.8,756.1,76,4,64,11.5,35.24128563,35.24128563 -70,20,24.5,44.59,23.39,43.42,26.7,38.7,24.7,43.2,22.6,60.5666666667,15.195,19.77,24.29,43.7257142857,24.6,50.1333333333,22.6666666667,44.56,15.6333333333,756.1,76.5,3.8333333333,63.8333333333,11.4333333333,7.2024549241,7.2024549241 -60,20,24.4266666667,44.53,23.3185714286,43.5642857143,26.7,38.76,24.76,43.26,22.6,60.1,14.96,20.6666666667,24.29,43.9,24.6,50.4,22.6,44.5,15.4666666667,756.1,77,3.6666666667,63.6666666667,11.3666666667,17.2403939534,17.2403939534 -70,20,24.39,44.56,23.254,43.656,26.7,38.9633333333,24.8233333333,43.3266666667,22.6,59.7666666667,14.7633333333,23,24.29,43.9142857143,24.5666666667,50.3633333333,22.6,44.5,15.3,756.1,77.5,3.5,63.5,11.3,49.4207513402,49.4207513402 -70,20,24.39,44.56,23.2257142857,43.6842857143,26.76,39.09,24.89,43.4,22.5333333333,59.4,14.5633333333,23.9333333333,24.29,44.018,24.5,50.29,22.6,44.5,15.1333333333,756.1,78,3.3333333333,63.3333333333,11.2333333333,0.948283379,0.948283379 -60,10,24.39,44.56,23.2,43.754,26.73,39.23,24.89,43.3633333333,22.5333333333,59.1266666667,14.39,26.1566666667,24.29,44.1214285714,24.5,50.4333333333,22.6,44.5,14.9666666667,756.1,78.5,3.1666666667,63.1666666667,11.1666666667,3.8848181372,3.8848181372 -60,10,24.3233333333,44.56,23.1285714286,43.8971428571,26.79,39.3633333333,24.89,43.23,22.5,58.8633333333,14.33,27.43,24.236,44.134,24.5666666667,50.56,22.6,44.5,14.8,756.1,79,3,63,11.1,14.0090977889,14.0090977889 -70,0,24.3566666667,44.73,23.1,44.036,26.79,39.4333333333,24.89,43,22.5,58.73,14.36,28.0333333333,24.2771428571,44.3242857143,24.5,50.59,22.6,44.56,14.75,756.0666666667,79.1666666667,2.8333333333,62.8333333333,11.0833333333,21.6462738463,21.6462738463 -50,10,24.3566666667,44.79,23.0428571429,44.09,26.79,39.5225,24.89,42.9333333333,22.5,58.56,14.36,28.1,24.254,44.434,24.5,50.59,22.6,44.7,14.7,756.0333333333,79.3333333333,2.6666666667,62.6666666667,11.0666666667,26.86513589,26.86513589 -60,0,24.29,44.76,23,44.1725,26.79,39.59,24.89,42.76,22.5,58.4333333333,14.39,27.86,24.2514285714,44.6214285714,24.4633333333,50.59,22.6,44.7675,14.65,756,79.5,2.5,62.5,11.05,29.7509588883,29.7509588883 -60,0,24.29,44.7,22.934,44.254,26.79,39.7,24.89,42.7,22.5,58.26,14.4633333333,27.86,24.29,44.79,24.445,50.6225,22.6,44.79,14.6,755.9666666667,79.6666666667,2.3333333333,62.3333333333,11.0333333333,44.0643765731,44.0643765731 -60,0,24.29,44.7,22.89,44.3685714286,26.79,39.7,24.79,42.5,22.5,58.0666666667,14.39,27.4666666667,24.2514285714,44.7514285714,24.39,50.4333333333,22.6666666667,44.9666666667,14.55,755.9333333333,79.8333333333,2.1666666667,62.1666666667,11.0166666667,6.6896947217,6.6896947217 -60,0,24.29,44.7,22.79,44.29,26.79,39.79,24.79,42.4333333333,22.5,57.9666666667,14.39,27.5333333333,24.272,44.772,24.39,50.26,22.6,44.9,14.5,755.9,80,2,62,11,6.6882231855,6.6882231855 -60,0,24.2,44.59,22.79,44.3671428571,26.79,39.79,24.79,42.3633333333,22.5,57.8266666667,14.3,28.9,24.2,44.6685714286,24.39,50.26,22.7,45.03,14.4333333333,755.8666666667,80.1666666667,2,62,10.9833333333,12.5930073438,12.5930073438 -50,0,24.2,44.59,22.79,44.5,26.79,39.79,24.73,42.29,22.39,57.645,14.3,29.9666666667,24.2,44.7,24.39,50.4,22.7,45.09,14.3666666667,755.8333333333,80.3333333333,2,62,10.9666666667,22.0001835609,22.0001835609 -60,0,24.2,44.59,22.7257142857,44.5642857143,26.79,39.79,24.7,42.29,22.4633333333,57.5,14.16,30.7333333333,24.2,44.7514285714,24.39,50.4,22.7,45.09,14.3,755.8,80.5,2,62,10.95,49.2987612961,49.2987612961 -60,0,24.2,44.6633333333,22.7,44.7,26.79,39.9,24.7,42.23,22.4633333333,57.5,14.1,31.7333333333,24.2,44.856,24.39,50.53,22.7,45.1633333333,14.2333333333,755.7666666667,80.6666666667,2,62,10.9333333333,37.4772820855,37.4772820855 -60,0,24.2,44.7,22.7,44.7514285714,26.79,39.9,24.7,42.29,22.39,57.29,14,33.3633333333,24.2,44.9,24.39,50.59,22.7,45.2,14.1666666667,755.7333333333,80.8333333333,2,62,10.9166666667,9.8076408729,9.8076408729 -40,0,24.1333333333,44.7,22.68,44.79,26.79,39.9333333333,24.7,42.29,22.39,57.23,14,34.1633333333,24.2,44.976,24.39,50.56,22.7,45.2,14.1,755.7,81,2,62,10.9,6.9397986284,6.9397986284 -60,0,24.2,44.745,22.6,44.8214285714,26.79,40,24.7,42.29,22.39,57.1333333333,13.89,34.0333333333,24.2,45.31125,24.39,50.56,22.7,45.29,14.0833333333,755.7166666667,81.1666666667,1.8333333333,61.8333333333,10.9166666667,7.8803745564,7.8803745564 -40,0,24.1666666667,44.79,22.6,44.9,26.79,40,24.7,42.23,22.39,57,13.9725,33.22,24.2,45.4,24.39,50.4666666667,22.7,45.29,14.0666666667,755.7333333333,81.3333333333,1.6666666667,61.6666666667,10.9333333333,26.7340120161,26.7340120161 -60,0,24.1,44.79,22.5857142857,44.9,26.79,40,24.6,42.09,22.39,56.9,14,33,24.2,45.46,24.39,50.3266666667,22.7,45.5,14.05,755.75,81.5,1.5,61.5,10.95,35.0459532347,35.0459532347 -50,0,24.1,44.79,22.5,44.92,26.76,40.03,24.6,42.09,22.39,56.8266666667,13.9633333333,33.4333333333,24.2,45.4285714286,24.3566666667,50.1633333333,22.7,45.6266666667,14.0333333333,755.7666666667,81.6666666667,1.3333333333,61.3333333333,10.9666666667,40.9200880327,40.9200880327 -50,0,24.1,44.79,22.5,45,26.7,40.09,24.6,42.09,22.39,56.79,13.89,34.6333333333,24.2,45.5,24.29,50.09,22.7,45.59,14.0166666667,755.7833333333,81.8333333333,1.1666666667,61.1666666667,10.9833333333,15.1081254473,15.1081254473 -60,0,24.1,44.8266666667,22.5,45.036,26.7,40.09,24.5666666667,42.1266666667,22.39,56.73,13.7633333333,36.36,24.2,45.5,24.3233333333,50.09,22.7,45.59,14,755.8,82,1,61,11,21.6927949572,21.6927949572 -60,0,24.1,44.8266666667,22.5,45.1528571429,26.7,40.1633333333,24.5,42.1266666667,22.39,56.59,13.69,36.9666666667,24.2,45.554,24.3233333333,50.03,22.7,45.6266666667,13.9333333333,755.75,82.8333333333,1.5,59.6666666667,11.0666666667,45.6079136347,45.6079136347 -60,0,24.1,44.79,22.434,45.156,26.7,40.2,24.5,42.1266666667,22.39,56.59,13.6,37.0666666667,24.2,45.59,24.29,49.9333333333,22.7,45.96,13.8666666667,755.7,83.6666666667,2,58.3333333333,11.1333333333,3.7342715543,3.7342715543 -60,0,24.1,44.8633333333,22.39,45.2,26.7,40.2,24.5,42.2,22.39,56.5,13.6,37.26,24.2,45.554,24.29,50.06,22.7,46,13.8,755.65,84.5,2.5,57,11.2,35.5184647138,35.5184647138 -50,0,24.0333333333,44.86,22.39,45.29,26.7,40.245,24.5,42.2,22.39,56.4333333333,13.6,37.7666666667,24.2,45.4428571429,24.29,49.9666666667,22.7,46,13.7333333333,755.6,85.3333333333,3,55.6666666667,11.2666666667,24.1972799064,24.1972799064 -60,0,24.0333333333,44.9333333333,22.39,45.29,26.7,40.29,24.5,42.2,22.39,56.3633333333,13.5333333333,37.9,24.2,45.378,24.29,49.9,22.7,45.95,13.6666666667,755.55,86.1666666667,3.5,54.3333333333,11.3333333333,26.4064574149,26.4064574149 -60,0,24,44.9,22.39,45.356,26.6333333333,40.29,24.5,42.2,22.39,56.29,13.4633333333,37.56,24.2,45.29,24.29,49.9,22.7,46.03,13.6,755.5,87,4,53,11.4,11.2049915362,11.2049915362 -60,0,24,44.9,22.3185714286,45.4,26.7,40.29,24.5,42.2,22.39,56.2,13.4633333333,37.6333333333,24.2,45.29,24.29,49.9,22.7,46.09,13.5666666667,755.5,87.5,3.6666666667,51.6666666667,11.45,36.5281251376,36.5281251376 -60,0,24,44.9,22.29,45.5,26.7,40.3633333333,24.4633333333,42.1633333333,22.39,56.1266666667,13.5,37.83,24.2,45.2128571429,24.29,49.9,22.73,46.09,13.5333333333,755.5,88,3.3333333333,50.3333333333,11.5,12.7152145258,12.7152145258 -50,0,24,44.9,22.29,45.5,26.7,40.4,24.39,42.1633333333,22.39,56.09,13.4266666667,38.09,24.2,45.254,24.26,49.93,22.73,46.1633333333,13.5,755.5,88.5,3,49,11.55,44.1214594292,44.1214594292 -60,0,24,45,22.29,45.518,26.7,40.4,24.39,42.2,22.39,56.0225,13.3233333333,38.1,24.2,45.3685714286,24.26,49.8633333333,22.76,46.23,13.4666666667,755.5,89,2.6666666667,47.6666666667,11.6,9.5014400082,9.5014400082 -60,0,24,45,22.29,45.59,26.7,40.4,24.39,42.2,22.39,55.9333333333,13.19,38.8333333333,24.2,45.356,24.29,49.9333333333,22.7,46.29,13.4333333333,755.5,89.5,2.3333333333,46.3333333333,11.65,18.2625840534,18.2625840534 -60,0,24,45,22.2,45.59,26.7,40.4,24.4633333333,42.26,22.39,55.9,13.0666666667,39.7633333333,24.1571428571,45.2385714286,24.23,49.9333333333,22.76,46.4,13.4,755.5,90,2,45,11.7,38.5142483981,38.5142483981 -60,0,23.9266666667,45,22.2,45.634,26.7,40.4,24.39,42.2,22.39,55.8266666667,12.9266666667,40.6966666667,24.2,45.178,24.23,49.9333333333,22.76,46.4,13.3833333333,755.5,89.8333333333,2,45.1666666667,11.6666666667,13.5917383595,13.5917383595 -60,0,23.89,45,22.2,45.7,26.6333333333,40.4,24.39,42.2,22.39,55.79,12.8,41.05,24.1714285714,45.1214285714,24.23,49.9333333333,22.79,46.4333333333,13.3666666667,755.5,89.6666666667,2,45.3333333333,11.6333333333,3.1722770073,3.1722770073 -60,0,23.89,45,22.2,45.7,26.7,40.4666666667,24.39,42.2,22.39,55.73,12.9266666667,42.0666666667,24.2,45.254,24.2,50,22.79,46.5,13.35,755.5,89.5,2,45.5,11.6,27.3360171006,27.3360171006 -50,0,23.89,45.06,22.2,45.7,26.7,40.4666666667,24.3566666667,42.2,22.39,55.7,13.1266666667,42.2,24.2,45.1371428571,24.2,50,22.76,46.59,13.3333333333,755.5,89.3333333333,2,45.6666666667,11.5666666667,25.4900036147,25.4900036147 -60,0,23.79,45,22.2,45.754,26.6,40.5,24.34,42.2225,22.39,55.6266666667,13.2266666667,42,24.2,45.156,24.2,50.06,22.76,46.59,13.3166666667,755.5,89.1666666667,2,45.8333333333,11.5333333333,28.1266022357,28.1266022357 -50,10,23.79,45.1333333333,22.2,45.8671428571,26.6666666667,40.5,24.3566666667,42.23,22.39,55.59,13.3,41.8,24.2,45.1214285714,24.2,50.06,22.79,46.9,13.3,755.5,89,2,46,11.5,22.324247309,22.324247309 -110,0,23.89,45.3633333333,22.2,46.112,26.53,40.1,24.29,42.29,22.39,55.53,13.5333333333,41.2666666667,24.2,45.29,24.2,50.1,22.79,47.2333333333,13.3333333333,755.55,89,1.8333333333,46.3333333333,11.5333333333,48.9005196607,48.9005196607 -70,0,23.89,45.3633333333,22.2,46.2642857143,26.3233333333,39.8266666667,24.29,42.3633333333,22.39,55.4666666667,13.7333333333,40.6666666667,24.2,44.9814285714,24.2,49.6333333333,22.79,47.4666666667,13.3666666667,755.6,89,1.6666666667,46.6666666667,11.5666666667,20.9561155876,20.9561155876 -50,0,24,45.4333333333,22.2,46.44,26.1666666667,39.76,24.29,42.5,22.39,55.2666666667,13.8666666667,39.7666666667,24.14,44.574,24.1666666667,49.1933333333,22.79,47.4,13.4,755.65,89,1.5,47,11.6,41.634207929,41.634207929 -50,0,24,45.56,22.2771428571,46.6085714286,26.1,39.7,24.29,42.56,22.39,54.93,14.1266666667,39.0266666667,24.1,44.1685714286,24.1,48.86,22.79,47.1333333333,13.4333333333,755.7,89,1.3333333333,47.3333333333,11.6333333333,39.2812421196,39.2812421196 -50,0,24,45.4666666667,22.29,46.572,26,39.73,24.29,42.59,22.39,54.73,14.3666666667,38.0933333333,24.075,43.6425,24.1,48.6333333333,22.79,46.9333333333,13.4666666667,755.75,89,1.1666666667,47.6666666667,11.6666666667,34.04104152,34.04104152 -50,0,24,45.4,22.3614285714,46.4285714286,25.9266666667,39.53,24.29,42.59,22.39,54.43,14.6266666667,36.96,24,43.254,24.1,48.4333333333,22.79,46.745,13.5,755.8,89,1,48,11.7,30.4136986961,30.4136986961 -60,0,23.9266666667,45.3633333333,22.39,46.29,25.84,39.4,24.29,42.7,22.39,54.1566666667,14.96,35.1633333333,24,43.04,24,48.1633333333,22.79,46.56,13.6,755.8,88.5,1.1666666667,49.1666666667,11.7,6.3360682223,6.3360682223 -60,0,24,45.49,22.39,46.29,25.79,39.4333333333,24.29,42.7,22.39,53.9666666667,15.2333333333,34.89,24,42.878,24,48.03,22.79,46.5,13.7,755.8,88,1.3333333333,50.3333333333,11.7,43.8675118261,43.8675118261 -190,0,23.89,45.5,22.39,46.29,25.73,39.56,24.23,42.6266666667,22.39,53.8266666667,15.6666666667,33.59,24,42.7257142857,24,47.95,22.79,46.4,13.8,755.8,87.5,1.5,51.5,11.7,37.0380560053,37.0380560053 -130,0,23.9633333333,45.5,22.39,46.29,25.73,39.7,24.29,42.7,22.39,53.6633333333,15.9333333333,31.7233333333,23.956,42.59,24,47.8633333333,22.79,46.3266666667,13.9,755.8,87,1.6666666667,52.6666666667,11.7,45.6597748445,45.6597748445 -180,0,24,45.5,22.5,46.4,25.79,39.7,24.29,42.73,22.39,53.53,16.2633333333,29.6266666667,23.9214285714,42.5385714286,24,47.79,22.79,46.4266666667,14,755.8,86.5,1.8333333333,53.8333333333,11.7,33.925615414,33.925615414 -360,0,24,45.5,22.47,46.3828571429,25.7,39.9,24.29,42.79,22.39,53.4,16.5966666667,28.7,23.89,42.5,24,47.79,22.79,46.5666666667,14.1,755.8,86,2,55,11.7,32.0849074284,32.0849074284 -100,0,23.8566666667,48.7566666667,22.252,46.68,25.76,39.9,24.29,42.9,22.39,53.25,17.0966666667,27.1666666667,23.89,42.5,24,47.79,22.79,46.4,14.2666666667,755.85,85.3333333333,2.1666666667,56,11.75,47.583559202,47.583559202 -70,0,23.79,48.2233333333,22.1,47.1214285714,25.89,39.9,24.23,42.8266666667,22.39,53.1266666667,17.5633333333,25.3666666667,23.89,42.46,23.89,47.79,22.79,46.3266666667,14.4333333333,755.9,84.6666666667,2.3333333333,57,11.8,6.4733481384,6.4733481384 -80,0,23.7,47.3333333333,22.236,47.374,25.89,39.9,24.2,42.8266666667,22.39,52.9666666667,18.25,21.445,23.89,42.4857142857,23.89,47.8633333333,22.79,46.29,14.6,755.95,84,2.5,58,11.85,13.018373854,13.018373854 -80,0,23.6333333333,47,22.6114285714,47.1842857143,26,40.3633333333,24.26,43.1,22.39,52.9,19.13,17.0266666667,23.89,42.44,23.89,47.9,22.8566666667,46.3633333333,14.7666666667,756,83.3333333333,2.6666666667,59,11.9,4.4375072466,4.4375072466 -90,0,23.6,47.1,22.97,46.61,26,40.3633333333,24.29,43.2666666667,22.39,52.79,19.5966666667,14.5,23.89,42.4285714286,23.89,47.9,22.89,46.5,14.9333333333,756.05,82.6666666667,2.8333333333,60,11.95,29.4627405005,29.4627405005 -90,0,23.6,47.2,23.4971428571,45.8971428571,26,40.4,24.29,43.4,22.39,52.73,20.4566666667,10.5,23.89,42.5,23.89,47.9,22.89,46.5,15.1,756.1,82,3,61,12,16.5761319804,16.5761319804 -60,0,23.6,47.2,24.04,44.71,26.0666666667,40.4,24.39,43.45,22.4266666667,52.7,20.93,6.5666666667,23.8757142857,42.5,23.89,47.9666666667,22.89,46.5,15.3,756.1166666667,81.3333333333,2.6666666667,61,12.0666666667,38.6042357539,38.6042357539 -70,0,23.6,47.2,24.185,44.24375,26.1,40.4666666667,24.39,43.5,22.4266666667,52.5666666667,21.3333333333,5.03,23.79,42.5,23.89,48,22.89,46.5,15.5,756.1333333333,80.6666666667,2.3333333333,61,12.1333333333,38.1280456204,38.1280456204 -50,0,23.6,47.2,24.4528571429,43.75,26.1,40.4666666667,24.39,43.5,22.5,52.5,21.6,3.5566666667,23.79,42.5,23.89,48,22.89,46.5,15.7,756.15,80,2,61,12.2,31.8459269358,31.8459269358 -580,0,23.6333333333,47.2266666667,24.814,43.472,26.1666666667,40.5,24.5,43.5,22.5,52.4333333333,22.0966666667,1.6966666667,23.79,42.5,23.89,48,22.89,46.4333333333,15.9,756.1666666667,79.3333333333,1.6666666667,61,12.2666666667,27.7402141597,27.7402141597 -660,0,23.76,47.6933333333,25.4971428571,42.5957142857,26.0333333333,40.6933333333,24.5,43.56,22.5,52.4,22.6233333333,1.0966666667,23.79,42.5514285714,23.8233333333,47.9333333333,22.89,46.29,16.1,756.1833333333,78.6666666667,1.3333333333,61,12.3333333333,4.1059066658,4.1059066658 -300,0,23.79,47.8633333333,25.934,41.754,26.0666666667,41.5666666667,24.4633333333,43.7,22.5,52.4,23.1666666667,1,23.79,42.612,23.89,48,22.89,46.29,16.3,756.2,78,1,61,12.4,1.6744129243,1.6744129243 -260,0,23.79,47.8633333333,26.2957142857,41.7242857143,26.3266666667,42.36,24.39,43.8333333333,22.5,52.4333333333,23.2933333333,1,23.79,42.7257142857,23.8233333333,47.9333333333,22.89,46.26,16.6166666667,756.2,76.8333333333,1.1666666667,61.3333333333,12.4666666667,26.5487286379,26.5487286379 -290,0,23.79,48.1266666667,26.54,41.296,26.7633333333,43.0966666667,24.39,44.0666666667,22.5666666667,52.5,23.2266666667,1,23.79,42.834,23.79,48.03,22.9175,46.2,16.9333333333,756.2,75.6666666667,1.3333333333,61.6666666667,12.5333333333,29.2012915481,29.2012915481 -240,0,23.79,48.26,26.7257142857,40.8214285714,27.0725,43.8225,24.39,44.26,22.5,52.53,22.96,1,23.79,42.9142857143,23.79,48.09,22.9266666667,46.2,17.25,756.2,74.5,1.5,62,12.6,24.2618250777,24.2618250777 -240,0,23.89,48.4,26.89,40.514,27.3266666667,44,24.39,44.4,22.5,52.59,23.1666666667,1,23.79,43,23.79,48.2,23,46.1633333333,17.5666666667,756.2,73.3333333333,1.6666666667,62.3333333333,12.6666666667,25.4395799246,25.4395799246 -180,0,23.9633333333,48.3266666667,26.89,39.9628571429,27.5333333333,43.7666666667,24.39,44.4,22.5,52.59,23.4266666667,1,23.79,43,23.79,48.2225,23,46.1633333333,17.8833333333,756.2,72.1666666667,1.8333333333,62.6666666667,12.7333333333,6.1943139532,6.1943139532 -190,0,24.1,48.3333333333,26.85,39.75,27.6666666667,43.36,24.5,44.5,22.5666666667,52.59,23.26,1,23.79,42.96,23.8566666667,48.3633333333,23,46.09,18.2,756.2,71,2,63,12.8,48.4029279207,48.4029279207 -70,0,24.1666666667,48.46,26.89,39.5642857143,27.7,42.7666666667,24.5,44.5,22.5333333333,52.59,23.26,1,23.8328571429,42.9428571429,23.79,48.29,23,46.1633333333,18.5,756.1833333333,70.3333333333,1.8333333333,63.3333333333,12.95,26.6700080247,26.6700080247 -400,0,24.23,48.4666666667,26.79,39.5,27.6333333333,42.2266666667,24.4633333333,44.43,22.6,52.59,23.4633333333,1,23.79,42.845,23.79,48.3633333333,23.0333333333,46.1566666667,18.8,756.1666666667,69.6666666667,1.6666666667,63.6666666667,13.1,3.6736094044,3.6736094044 -620,0,24.3566666667,48.3266666667,26.7771428571,39.5671428571,27.5333333333,41.9633333333,24.4633333333,44.3633333333,22.6,52.59,23.39,1,23.83,42.834,23.79,48.4,23.0333333333,46.23,19.1,756.15,69,1.5,64,13.25,11.7039324599,11.7039324599 -330,0,24.3233333333,47.8333333333,26.68,39.696,27.6666666667,42.4233333333,24.5,44.3633333333,22.6,52.59,24.3966666667,1,23.79,42.8214285714,23.79,48.4,23.0333333333,46.1566666667,19.4,756.1333333333,68.3333333333,1.3333333333,64.3333333333,13.4,2.3498401279,2.3498401279 -250,0,24.39,47.5666666667,26.6285714286,39.9285714286,27.9266666667,42.9933333333,24.5,44.3633333333,22.6666666667,52.6633333333,24.93,1,23.79,43,23.79,48.5,23.1,46.29,19.7,756.1166666667,67.6666666667,1.1666666667,64.6666666667,13.55,9.110548906,9.110548906 -260,0,24.4266666667,47.76,26.7,39.9,28.1333333333,43.4666666667,24.5,44.53,22.6333333333,52.6266666667,25.35,1,23.8471428571,43.0514285714,23.79,48.5,23.1,46.23,20,756.1,67,1,65,13.7,36.2211757456,36.2211757456 -240,0,24.6,47.975,26.7,39.9571428571,28.3233333333,43.5,24.5,44.59,22.7,52.7,25.3666666667,1,23.89,43.112,23.79,48.6266666667,23.0333333333,46.23,20.1833333333,756.1,65.8333333333,1,58.1666666667,13.5833333333,16.4597980794,16.4597980794 -230,0,24.76,47.9266666667,26.7,40.018,28.4633333333,43.36,24.5,44.7,22.7,52.7,24.56,1,23.89,43.2,23.79,48.7,23.1,46.3266666667,20.3666666667,756.1,64.6666666667,1,51.3333333333,13.4666666667,19.1765718511,19.1765718511 -220,0,24.8233333333,47.79,26.6285714286,40.09,28.6333333333,43.06,24.5,44.7225,22.7,52.76,24.0666666667,1,23.89,43.2,23.79,48.73,23.1,46.4,20.55,756.1,63.5,1,44.5,13.35,48.9082364249,48.9082364249 -90,0,24.89,47.79,26.56,40.236,28.76,42.8,24.5,44.79,22.7,52.79,24.1933333333,1,23.89,43.2514285714,23.79,48.8633333333,23.1,46.4,20.7333333333,756.1,62.3333333333,1,37.6666666667,13.2333333333,12.2112812009,12.2112812009 -70,0,24.89,47.79,26.5714285714,40.3842857143,28.79,42.43,24.5,44.8266666667,22.7,52.8633333333,24.5933333333,1,23.89,43.312,23.79,48.9,23.1,46.4666666667,20.9166666667,756.1,61.1666666667,1,30.8333333333,13.1166666667,28.4642119077,28.4642119077 -370,0,24.89,47.73,26.5,40.46,28.73,42.1566666667,24.5,44.9,22.7,52.9,25,1,23.89,43.4285714286,23.79,48.9666666667,23.1,46.4333333333,21.1,756.1,60,1,24,13,48.6861158744,48.6861158744 -280,0,25.0333333333,48.3633333333,26.5285714286,40.5957142857,28.4966666667,41.9,24.5,45.0666666667,22.76,52.9,25.2633333333,1,23.89,43.5,23.79,49.09,23.1,46.5,21.25,756.05,59.8333333333,1.1666666667,23.6666666667,13.1,32.4203478172,32.4203478172 -240,0,25.1666666667,48.1566666667,26.6,40.94,28.29,41.9666666667,24.5,45.3333333333,22.79,53,25.39,1,23.9057142857,43.5,23.79,49.1633333333,23.1,46.5,21.4,756,59.6666666667,1.3333333333,23.3333333333,13.2,49.1890274803,49.1890274803 -250,0,25.3233333333,47.93,26.6,41.0128571429,28.2,42.09,24.5333333333,45.5666666667,22.79,53.06,25.86,1,23.934,43.5,23.89,49.29,23.1,46.5225,21.55,755.95,59.5,1.5,23,13.3,15.0811623549,15.0811623549 -220,0,25.39,47.6566666667,26.6,41.036,28.2,42.03,24.6,45.76,22.79,53.2,26.0666666667,1,23.89,43.5,23.8233333333,49.29,23.1,46.53,21.7,755.9,59.3333333333,1.6666666667,22.6666666667,13.4,45.226865937,45.226865937 -230,0,25.5,47.1333333333,26.6,41,28.2,41.7966666667,24.6,45.79,22.8566666667,53.26,25.9966666667,1,23.89,43.4,23.8233333333,49.3266666667,23.1,46.53,21.85,755.85,59.1666666667,1.8333333333,22.3333333333,13.5,5.7734314818,5.7734314818 -190,10,25.5,47.06,26.54,41,28.2,41.53,24.6,45.8633333333,22.89,53.2,25.73,1,23.9057142857,43.4571428571,23.8233333333,49.3266666667,23.1,46.53,22,755.8,59,2,22,13.6,41.5150438203,41.5150438203 -160,0,25.6,46.99,26.5125,41.20375,28.2,41.59,24.6333333333,46.03,22.89,53.2,25.3333333333,1,23.934,43.5,23.84,49.345,23.1,46.53,21.9666666667,755.8,59,2,21.8333333333,13.55,19.5406424697,19.5406424697 -80,0,25.6,46.73,26.4371428571,41.3842857143,28.4266666667,41.43,24.7,46.09,22.89,53.09,24.9266666667,1,23.9685714286,43.4571428571,23.8233333333,49.3266666667,23.1,46.59,21.9333333333,755.8,59,2,21.6666666667,13.5,16.977597482,16.977597482 -60,0,25.5666666667,46.6333333333,26.37,41.378,28.5666666667,41.1566666667,24.7,45.9666666667,22.89,53.03,25.0233333333,1,24,43.29,23.8233333333,49.3266666667,23.1,46.6266666667,21.9,755.8,59,2,21.5,13.45,8.9914197568,8.9914197568 -60,0,25.5,46.36,26.3185714286,41.2642857143,28.5666666667,40.6633333333,24.7,45.8266666667,22.89,52.9666666667,25.69,1,24,43.1971428571,23.89,49.1633333333,23.1,46.7,21.8666666667,755.8,59,2,21.3333333333,13.4,40.4098852305,40.4098852305 -60,0,25.5,46.06,26.35,41,28.4266666667,40.59,24.6666666667,45.5266666667,22.89,52.8266666667,26.7,1,24,43.156,23.89,49.03,23.1,46.59,21.8333333333,755.8,59,2,21.1666666667,13.35,37.8890857799,37.8890857799 -60,0,25.5,45.9333333333,26.2771428571,41,28.3566666667,40.56,24.6666666667,45.4,22.945,52.645,26.4933333333,1,24,43.1685714286,23.9633333333,49,23.1,46.59,21.8,755.8,59,2,21,13.3,17.1233146335,17.1233146335 -70,0,25.5,45.76,26.2,41,28.29,40.4333333333,24.7,45.3633333333,23,52.56,26.5,1,24,43.09,23.89,49,23.1333333333,46.59,21.9666666667,755.75,58.3333333333,2,21.3333333333,13.2833333333,24.0584316431,24.0584316431 -80,0,25.5,45.6266666667,26.1714285714,41,28.26,40.26,24.7,45.23,23,52.4333333333,26.5,1,24,43.0385714286,23.9266666667,48.79,23.1333333333,46.59,22.1333333333,755.7,57.6666666667,2,21.6666666667,13.2666666667,9.5386712579,9.5386712579 -80,0,25.5,45.59,26.1,41,28.2,40.1266666667,24.7,45.1633333333,23.0333333333,52.29,25.7633333333,1,24,42.978,24,48.79,23.1666666667,46.59,22.3,755.65,57,2,22,13.25,30.0206846674,30.0206846674 -70,0,25.5,45.5225,26.1,41.0514285714,28.2,40.2,24.7,45.1633333333,23.0333333333,52.1566666667,26.19,1,24.0714285714,43.2642857143,23.89,48.79,23.1,46.59,22.4666666667,755.6,56.3333333333,2,22.3333333333,13.2333333333,23.8517369959,23.8517369959 -100,0,25.5,45.6333333333,26.08,41.196,28.1333333333,40.26,24.7,45.3,23.0333333333,52.1266666667,26.23,1,24.2,43.6,23.89,48.93,23.2,46.59,22.6333333333,755.55,55.6666666667,2,22.6666666667,13.2166666667,47.9813094949,47.9813094949 -100,0,25.5,45.73,26,41.4285714286,28.1,40.4333333333,24.7,45.4333333333,23.1,52.2,25.9966666667,1,24.2,43.8714285714,24,49.4566666667,23.2,46.59,22.8,755.5,55,2,23,13.2,18.2156020892,18.2156020892 -90,0,25.5,45.79,26,41.59,28.1,40.56,24.7,45.5,23.1,52.09,25.8566666667,1,24.2514285714,44.1528571429,24.08,50.076,23.16,46.59,22.8333333333,755.45,55,2.1666666667,22.8333333333,13.2333333333,38.7515938259,38.7515938259 -100,0,25.5,45.9333333333,26,41.6528571429,28,40.7,24.7,45.4666666667,23.1,52.09,26.3233333333,1,24.31,44.29,24.218,50.716,23.2,46.6214285714,22.8666666667,755.4,55,2.3333333333,22.6666666667,13.2666666667,32.3062239215,32.3062239215 -220,0,25.4266666667,46.06,26,41.7,28,40.76,24.7,45.4,23.2,52.06,26.53,1,24.39,44.3685714286,24.3566666667,51.3333333333,23.2,46.7,22.9,755.35,55,2.5,22.5,13.3,23.009520059,23.009520059 -180,0,25.5,46.53,26,41.7257142857,27.8566666667,40.5,24.7,45.5,23.2,52,26.2933333333,1,24.5,44.634,24.434,51.632,23.2,46.6528571429,22.9333333333,755.3,55,2.6666666667,22.3333333333,13.3333333333,25.2967316657,25.2967316657 -120,0,25.5,47.4566666667,26,42.32,27.6633333333,40.6933333333,24.7,45.56,23.2,52.1266666667,25.8333333333,1,24.4685714286,44.6685714286,24.54,51.5,23.2,46.718,22.9666666667,755.25,55,2.8333333333,22.1666666667,13.3666666667,1.7963948427,1.7963948427 -110,0,25.6,47.1933333333,25.9685714286,42.5285714286,27.39,41.03,24.7,45.6266666667,23.2,52.26,25.9633333333,1,24.5,44.718,24.6,50.8633333333,23.2,46.7514285714,23,755.2,55,3,22,13.4,18.2482014061,18.2482014061 -90,0,25.5333333333,46.86,25.978,42.534,27.3233333333,41.09,24.7,45.6266666667,23.2,52.3266666667,25.63,1,24.5,44.7642857143,24.6666666667,50.445,23.2,46.745,22.8666666667,755.2,55.3333333333,3.1666666667,22.8333333333,13.3666666667,16.9661622378,16.9661622378 -100,0,25.5666666667,46.56,25.89,42.0257142857,27.2,41.1633333333,24.7,45.59,23.2,52.4,24.7966666667,1,24.5,44.5,24.7,50.074,23.2,46.79,22.7333333333,755.2,55.6666666667,3.3333333333,23.6666666667,13.3333333333,43.0968118715,43.0968118715 -90,0,25.5,46.5,25.754,42.08,27.1333333333,41.2233333333,24.7,45.59,23.23,52.3266666667,24.1966666667,1,24.5571428571,44.4142857143,24.7,49.79,23.2,46.79,22.6,755.2,56,3.5,24.5,13.3,49.2829397204,49.2829397204 -270,10,25.5,46.5966666667,25.6285714286,42.7685714286,27.05,41.69,24.7,45.73,23.23,52.2666666667,23.6266666667,1,24.54,44.4,24.7,49.66,23.2,46.79,22.4666666667,755.2,56.3333333333,3.6666666667,25.3333333333,13.2666666667,29.1991170845,29.1991170845 -420,10,25.5,46.99,25.414,43.036,26.89,41.29,24.7,45.79,23.2,52.2,22.4333333333,1,24.5,44.2957142857,24.6625,49.51875,23.2,46.8175,22.3333333333,755.2,56.6666666667,3.8333333333,26.1666666667,13.2333333333,6.3227836508,6.3227836508 -430,10,25.5,46.6,25.2642857143,42.9714285714,26.8233333333,41.1566666667,24.7,45.9633333333,23.2,52.2,21.0266666667,1,24.5,44.054,24.736,49.736,23.2,46.845,22.2,755.2,57,4,27,13.2,34.1188505874,34.1188505874 diff --git a/data/stock_data.csv b/data/stock_data.csv deleted file mode 100644 index 301f6a97..00000000 --- a/data/stock_data.csv +++ /dev/null @@ -1,3686 +0,0 @@ -Open,High,Low,Close,Adj_Close,Volume -49.676899,51.693783,47.669952,49.845802,49.845802,44994500 -50.178635,54.187561,49.925285,53.80505,53.80505,23005800 -55.017166,56.373344,54.172661,54.346527,54.346527,18393200 -55.260582,55.439419,51.450363,52.096165,52.096165,15361800 -52.140873,53.651051,51.604362,52.657513,52.657513,9257400 -52.135906,53.626213,51.991844,53.606342,53.606342,7148200 -53.700729,53.959049,52.503513,52.732029,52.732029,6258300 -52.299839,52.40416,50.675404,50.675404,50.675404,5235700 -50.819469,51.519913,50.74992,50.85424,50.85424,4954800 -51.018177,51.152302,49.512966,49.80109,49.80109,9206800 -49.274517,50.85424,49.150326,50.427021,50.427021,15232100 -50.14883,50.541279,49.339096,49.681866,49.681866,5191000 -50.178635,50.670437,49.483158,50.461796,50.461796,5891300 -50.04451,51.18211,49.925285,50.819469,50.819469,5023000 -50.933723,51.023144,50.173668,50.824436,50.824436,4092100 -50.471729,52.935703,50.322701,52.324677,52.324677,8764200 -52.970478,53.854729,52.886028,53.402668,53.402668,7902900 -53.377831,55.638126,53.049961,55.384777,55.384777,10910200 -54.922779,56.745922,54.743942,55.638126,55.638126,10793500 -55.80703,57.525848,55.46426,56.616764,56.616764,9335800 -56.840309,58.365391,56.408119,58.365391,58.365391,9543500 -58.097134,60.407108,58.007717,59.294346,59.294346,10708500 -59.517895,59.820923,58.375324,58.539257,58.539257,7282900 -58.320679,59.448345,58.027588,58.807514,58.807514,7638000 -59.036026,60.918781,58.131908,60.01963,60.01963,8599600 -60.079243,61.649033,59.493053,59.527828,59.527828,9191900 -59.3937,60.049435,58.519386,58.747902,58.747902,7119100 -60.25808,63.288372,59.716602,63.020115,63.020115,17056100 -62.940632,67.073753,62.70715,65.116478,65.116478,30745600 -64.530296,65.722542,64.083199,64.381264,64.381264,13861300 -64.977386,66.686272,64.033524,65.861633,65.861633,15238400 -67.188004,67.992775,66.581947,67.09362,67.09362,13120500 -66.894913,68.817406,65.692734,68.737923,68.737923,15085500 -68.330574,68.777664,67.560585,68.097092,68.097092,13481800 -68.017609,69.488045,67.833809,68.976372,68.976372,14221000 -68.911797,69.388695,68.067291,68.419991,68.419991,11152500 -68.05735,68.981346,66.492531,67.192978,67.192978,10550700 -66.785622,68.360382,66.268982,68.256058,68.256058,11753000 -71.19693,71.311188,69.587402,69.994751,69.994751,19914500 -70.049393,70.729973,68.832314,70.541199,70.541199,10520500 -71.996727,72.279892,70.516357,71.589378,71.589378,13293800 -71.137321,74.117935,70.14875,74.098061,74.098061,14141700 -74.763733,75.707596,73.198914,73.492004,73.492004,18245900 -73.536713,74.013611,69.348953,69.791077,69.791077,22893300 -71.733444,74.579933,70.352425,74.207352,74.207352,29368600 -84.718987,89.502869,81.509857,85.657875,85.657875,74263500 -87.630051,96.5868,85.717491,93.094513,93.094513,65954500 -92.567932,95.697578,89.418419,90.312607,90.312607,44904300 -90.76963,94.147659,90.297699,92.384132,92.384132,26886700 -92.736839,96.566925,92.200325,96.025444,96.025444,29886600 -98.802383,99.328964,94.684174,94.704041,94.704041,42600200 -96.149643,98.196327,95.017006,97.38163,97.38163,24608700 -98.747742,98.981224,96.045319,96.805374,96.805374,22840000 -98.449677,100.148628,94.758682,95.215714,95.215714,27957900 -93.611153,94.584816,91.082596,91.753235,91.753235,29006600 -90.402023,90.560989,83.730415,84.127831,84.127831,39924100 -84.912727,87.153152,84.152664,85.717491,85.717491,22529100 -86.48748,87.033928,82.101013,83.804932,83.804932,22272300 -84.783562,85.702591,82.627586,83.387642,83.387642,21426400 -84.018539,91.281303,83.243584,90.918663,90.918663,30165800 -92.016518,94.286758,88.126823,90.411957,90.411957,33709900 -89.641968,93.551537,88.797455,91.837685,91.837685,23957800 -88.176498,89.155128,84.863045,85.712524,85.712524,42106800 -83.963898,88.176498,83.953957,85.69265,85.69265,36501500 -84.594795,86.646446,82.329529,83.228676,83.228676,33475500 -84.003639,84.440796,82.72197,84.152664,84.152664,17652600 -81.703598,84.202347,80.133804,82.016563,82.016563,24897200 -83.442291,84.863045,82.712036,83.218742,83.218742,24988000 -86.845154,88.032433,85.697617,86.815353,86.815353,30760600 -87.331993,89.433319,87.093544,89.115387,89.115387,13044400 -89.59726,90.883888,88.181465,89.940025,89.940025,21471900 -89.771126,90.90873,89.54261,90.402023,90.402023,15500000 -90.387115,90.660339,89.19487,89.398552,89.398552,15830400 -89.368744,90.168541,88.698105,89.120361,89.120361,12603200 -89.393578,89.944992,88.226173,89.617126,89.617126,11814600 -88.986229,89.766159,87.441277,87.575409,87.575409,12589300 -87.431343,87.530701,84.723953,85.16111,85.16111,13831100 -84.624596,86.278839,83.819832,84.440796,84.440796,15181600 -84.574921,86.189423,83.690674,86.154648,86.154648,15407500 -86.154648,86.874962,85.09156,85.270401,85.270401,8690500 -85.528717,86.030457,84.177505,84.674278,84.674278,9699800 -84.947502,88.83223,84.252022,88.767654,88.767654,22320900 -88.419914,89.761192,87.759209,89.309128,89.309128,23091100 -87.903275,89.661835,87.406502,87.664825,87.664825,17257000 -87.808891,89.666801,87.704567,89.45816,89.45816,14868300 -90.411957,93.621086,90.347374,91.912201,91.912201,19796800 -92.553032,93.332962,91.107437,91.281303,91.281303,11104300 -91.35582,92.821289,90.913696,92.548065,92.548065,7864700 -93.119347,93.690636,92.399033,93.342896,93.342896,7276100 -93.963852,96.025444,93.939018,95.334938,95.334938,12287500 -95.434296,96.149643,94.887848,95.757195,95.757195,8345300 -95.270355,96.134735,95.270355,95.826736,95.826736,5391000 -95.861511,98.474518,95.30513,98.161552,98.161552,11885300 -98.971291,99.294189,95.657837,95.772095,95.772095,15436700 -98.062202,101.162041,97.098465,100.700043,100.700043,31894300 -100.049278,100.809334,96.114868,96.621567,96.621567,27690700 -96.09996,97.813812,95.493904,96.129768,96.129768,16580200 -96.909698,97.317047,93.253479,93.665794,93.665794,20909100 -94.704041,96.497375,93.780052,96.298668,96.298668,19451500 -96.621567,98.409935,95.295197,96.899757,96.899757,15177200 -97.177948,98.216202,95.965836,96.144669,96.144669,14007900 -96.537117,97.331947,94.634491,97.058723,97.058723,16461900 -97.058723,98.057236,96.398026,97.03389,97.03389,13787800 -97.366722,99.358765,96.437767,99.338898,99.338898,19405800 -99.835663,101.84758,98.688126,101.291199,101.291199,26516500 -101.663773,101.986671,97.719429,98.01252,98.01252,22661700 -95.628029,97.490913,95.379646,96.333443,96.333443,18120200 -96.641441,97.04879,93.452187,93.53167,93.53167,18637100 -93.735344,94.053276,89.577385,89.776093,89.776093,28227700 -90.382149,90.531181,87.575409,87.987724,87.987724,21456900 -89.055779,94.093018,88.996162,94.008568,94.008568,24775800 -93.770119,93.819794,92.001617,93.432312,93.432312,13340900 -94.396042,96.720924,92.567932,94.555008,94.555008,24575200 -96.219185,97.545563,95.240555,97.177948,97.177948,19318100 -96.561958,97.694588,94.699074,95.329971,95.329971,37922900 -107.07856,107.699516,101.171974,102.314545,102.314545,66025100 -102.329445,105.995598,102.240028,104.748711,104.748711,26145000 -102.567894,103.203758,100.645401,101.519714,101.519714,29831300 -101.966805,102.533119,97.123306,97.38163,97.38163,26089300 -97.84362,99.363731,96.636475,98.678192,98.678192,23109200 -99.731346,100.148628,94.117851,95.171005,95.171005,34566200 -95.364746,95.483971,92.026459,93.382637,93.382637,38212200 -92.726898,95.538612,92.433807,93.094513,93.094513,26402500 -90.834213,95.916161,89.915192,95.871452,95.871452,77625900 -96.174477,99.274315,95.916161,96.984215,96.984215,51900900 -96.720924,99.020966,96.522217,98.563934,98.563934,33279500 -98.27581,99.229607,97.769104,98.310585,98.310585,20964200 -98.613617,98.77755,97.694588,98.335426,98.335426,17082100 -97.615105,98.80735,94.579849,95.066681,95.066681,27142700 -96.025444,96.611633,93.720436,96.348351,96.348351,31374600 -91.092529,94.311592,90.526215,93.834694,93.834694,51964300 -93.963852,94.346367,92.155617,92.33445,92.33445,20076700 -92.399033,94.321526,92.324516,93.387604,93.387604,15738400 -94.033401,94.261917,90.411957,92.428841,92.428841,18743400 -92.374191,93.228638,91.584335,91.991684,91.991684,14665700 -92.463615,93.268379,91.559494,92.900772,92.900772,15316100 -92.746773,93.019997,91.937035,92.349358,92.349358,13636200 -93.283279,94.187401,92.910706,93.794952,93.794952,17447500 -93.939018,94.311592,91.88736,92.001617,92.001617,16196700 -91.509819,91.728394,89.497902,90.089058,90.089058,22868500 -89.920158,90.014542,88.126823,89.408485,89.408485,22063500 -89.637001,89.89035,88.002625,88.325531,88.325531,16160900 -88.588814,88.623589,85.727425,86.929604,86.929604,22438000 -87.083603,89.418419,86.54213,88.727913,88.727913,20979600 -87.779083,88.727913,86.939545,87.232635,87.232635,14305000 -87.992691,89.239586,87.331993,89.065712,89.065712,16628600 -88.827263,89.617126,88.57888,89.438293,89.438293,14272100 -89.055779,90.496407,88.052307,89.855576,89.855576,15064600 -90.004608,90.382149,88.350365,88.722946,88.722946,11336500 -88.409981,89.537643,88.409981,88.911713,88.911713,9752900 -89.766159,89.845642,89.021004,89.045845,89.045845,7458500 -90.252991,91.80291,89.89035,90.123833,90.123833,17589600 -89.940025,91.047821,88.459656,89.204811,89.204811,13030100 -89.736351,90.138733,89.219711,89.641968,89.641968,12553200 -88.40004,90.108925,88.246048,89.671768,89.671768,13625200 -90.292732,90.883888,89.413452,89.438293,89.438293,12444300 -89.393578,92.061234,89.338936,92.046326,92.046326,16257700 -93.258446,94.515266,93.178963,93.675728,93.675728,17587000 -94.008568,94.212242,93.183929,93.998627,93.998627,10573400 -93.780052,96.681183,93.710503,96.25396,96.25396,19510300 -96.219185,96.919632,95.106422,95.404488,95.404488,10299700 -95.921127,96.770599,95.538612,95.990677,95.990677,10891300 -95.876419,96.581825,94.093018,96.353317,96.353317,14734300 -96.109901,96.53215,94.251984,95.841644,95.841644,13196800 -96.010544,96.552025,94.435783,95.106422,95.106422,12385400 -94.435783,94.555008,91.73336,91.902267,91.902267,23305300 -91.693619,93.332962,91.152145,92.880898,92.880898,13185800 -94.053276,95.379646,93.407471,95.081589,95.081589,16969600 -98.648384,99.60218,97.322014,98.409935,98.409935,31104000 -99.562439,101.837646,99.015999,101.450165,101.450165,35734600 -110.729813,111.276253,106.437729,107.207718,107.207718,66842100 -108.206223,111.643867,108.05719,111.04277,111.04277,39937900 -109.398468,110.282715,108.439705,108.668221,108.668221,34768600 -108.290672,109.711433,107.669716,109.179893,109.179893,20663100 -109.040794,110.322456,108.151581,109.015953,109.015953,17478500 -110.238007,110.406906,108.206223,109.289177,109.289177,18459600 -110.307556,111.127228,109.393501,110.426781,110.426781,19661700 -110.208199,113.337845,109.944916,112.364182,112.364182,35791600 -112.880821,114.197258,112.766563,113.511719,113.511719,24324100 -113.571327,113.571327,112.210182,112.75663,112.75663,15116800 -113.462036,113.884293,112.503273,113.27327,113.27327,13615700 -113.263329,113.511719,111.986633,112.279732,112.279732,11145500 -112.006508,113.163979,111.633926,113.163979,113.163979,12774000 -113.745193,115.240471,113.228554,114.897697,114.897697,23106800 -114.659248,115.364662,113.362686,113.621002,113.621002,18012600 -113.849518,114.798347,112.925529,113.879326,113.879326,14927400 -114.0979,115.061638,113.546486,114.778473,114.778473,11436600 -114.535057,115.970726,114.356224,115.811752,115.811752,15719300 -116.050209,119.209656,116.005493,118.807274,118.807274,24784100 -119.393463,119.805779,118.36515,118.817207,118.817207,19559400 -119.825653,120.054161,119.05069,120.024361,120.024361,16433100 -120.79435,128.21608,120.570801,126.899643,126.899643,43054700 -127.649765,131.862366,125.930939,127.172867,127.172867,58463900 -125.548431,129.646774,124.505211,129.562317,129.562317,36350600 -129.636841,131.027786,128.31543,128.762527,128.762527,27269300 -129.388458,132.16539,128.787369,132.140549,132.140549,24526600 -133.844467,138.300491,133.814667,137.739136,137.739136,44762800 -140.684982,145.498672,140.098785,143.069473,143.069473,70841100 -143.432114,143.95372,141.380463,143.019791,143.019791,36181900 -142.468384,143.715271,137.808685,139.224472,139.224472,37808800 -140.282593,145.925888,140.00441,144.529968,144.529968,45344800 -147.590073,148.827026,144.212036,145.61293,145.61293,48962300 -145.478806,145.647705,138.101776,138.87674,138.87674,51736100 -141.440063,143.317856,139.373505,142.229935,142.229935,33095900 -142.567734,142.711792,139.105255,140.337234,140.337234,25558200 -139.005905,141.176788,137.366562,140.461441,140.461441,25772900 -138.394882,139.711319,137.977585,138.27565,138.27565,20314900 -136.611481,137.754044,132.850937,136.512115,136.512115,42037700 -136.243866,138.250809,135.65271,137.823593,137.823593,25086800 -138.598557,139.244354,137.058563,139.244354,139.244354,21004400 -137.152954,142.905533,134.987045,142.423676,142.423676,42322800 -143.104248,144.212036,141.564255,142.98999,142.98999,30461300 -143.899078,145.215515,143.402313,143.715271,143.715271,21084100 -143.069473,146.452469,142.32431,143.918945,143.918945,28295600 -144.510101,148.037155,143.85437,147.664581,147.664581,35773400 -148.484253,151.251251,145.98053,151.067459,151.067459,35837300 -152.150406,153.625809,150.024231,150.024231,150.024231,38320500 -150.272629,151.206543,145.131058,145.414215,145.414215,36835300 -146.218979,148.499161,144.579651,146.124603,146.124603,30385000 -146.566727,147.162842,143.675522,144.683975,144.683975,18575200 -145.106216,147.033691,144.177261,146.899567,146.899567,15085300 -147.689423,147.838455,144.74855,144.8181,144.8181,16104600 -143.759979,146.944275,143.32283,146.815109,146.815109,21482900 -147.167816,147.788773,146.074921,147.157883,147.157883,15012100 -147.242325,147.34169,144.569717,145.727188,145.727188,16889600 -145.747055,146.248795,144.525009,144.94725,144.94725,11806000 -145.309906,148.653152,145.106216,148.464386,148.464386,23024400 -151.683441,152.383896,149.065475,149.472824,149.472824,21474100 -149.646698,150.719711,148.921417,149.621857,149.621857,16986400 -149.030701,149.974564,147.912964,148.802185,148.802185,12496300 -150.073914,154.172256,149.924881,153.948715,153.948715,25406900 -151.797699,155.294952,149.924881,154.991928,154.991928,28806900 -156.0103,157.873184,154.599472,155.955658,155.955658,39836100 -152.195114,153.625809,147.20755,150.222946,150.222946,47077700 -150.217972,150.66507,146.526978,146.969101,146.969101,19443100 -146.551819,148.037155,145.101257,147.088333,147.088333,19761400 -147.908005,148.151413,145.255249,147.505615,147.505615,14529600 -147.744064,147.744064,145.692413,145.801697,145.801697,11928200 -145.126099,145.473831,142.567734,142.950241,142.950241,16835300 -143.129089,145.304932,143.119141,144.862808,144.862808,11398400 -144.857834,148.792252,144.619385,148.628311,148.628311,14675100 -148.037155,148.891602,146.84491,147.689423,147.689423,11938200 -146.820084,148.533936,146.671051,147.90303,147.90303,10541000 -147.788773,148.290512,144.713776,145.230423,145.230423,11956500 -145.851379,146.869751,144.306427,144.683975,144.683975,9021800 -145.036682,145.394348,143.32283,144.842941,144.842941,11633700 -144.708801,145.220474,141.519547,141.916962,141.916962,13847400 -142.021286,142.364059,139.40332,141.107239,141.107239,15127500 -140.764465,144.162369,139.910019,143.92392,143.92392,13257300 -143.963654,145.439056,140.96814,141.082397,141.082397,16455700 -141.519547,142.965149,140.754532,141.902069,141.902069,14310800 -141.83252,142.359085,141.082397,141.628845,141.628845,7817000 -137.063538,139.343704,136.611481,139.090347,139.090347,23899900 -139.587128,139.815628,138.90654,139.095322,139.095322,11157700 -139.711319,139.825577,135.791809,136.119675,136.119675,13714600 -137.187729,138.966156,136.174316,138.886673,138.886673,11719000 -137.888168,141.454971,137.331787,140.372009,140.372009,17297900 -140.362076,141.082397,139.080414,140.381958,140.381958,8810000 -140.824081,141.589096,140.416718,140.873749,140.873749,7559400 -140.208084,143.625854,140.208084,143.293015,143.293015,11882700 -142.766449,143.819595,142.016327,142.706833,142.706833,9646200 -143.183731,143.317856,141.26123,142.075928,142.075928,10133300 -142.031219,142.821091,141.579163,142.200119,142.200119,5519700 -142.329285,144.058044,142.29451,143.293015,143.293015,6913500 -143.566238,143.759979,142.473343,142.62735,142.62735,8479300 -142.021286,146.795242,141.718262,146.482269,146.482269,15096400 -146.462402,148.673019,145.732147,146.740601,146.740601,13312500 -147.679489,148.583603,147.321808,148.578644,148.578644,8838000 -149.90004,154.703796,149.527466,153.869232,153.869232,20907900 -153.501617,156.745514,152.095764,154.832962,154.832962,20733700 -153.367493,155.627792,149.179733,150.521011,150.521011,22698100 -148.792252,152.383896,147.992447,150.33223,150.33223,31133500 -151.02771,151.266159,148.966125,149.130051,149.130051,15258100 -149.527466,152.011307,149.383408,150.913452,150.913452,11598700 -152.085831,154.644196,151.628799,152.960144,152.960144,18823500 -153.208527,155.866241,151.99144,154.942245,154.942245,20371000 -154.743546,158.578598,154.08284,154.678955,154.678955,26181900 -155.488693,157.580093,155.285019,156.661072,156.661072,17077900 -158.717697,159.438004,155.270111,156.124557,156.124557,19917300 -156.457397,158.176224,155.677475,155.955658,155.955658,13835500 -156.094757,156.531906,151.812607,152.011307,152.011307,16098700 -152.349121,154.356064,152.051056,153.809616,153.809616,11300500 -156.094757,157.724152,155.135986,157.20752,157.20752,18421600 -155.801666,159.020721,155.384369,158.310349,158.310349,18439700 -158.941238,159.601944,154.365997,154.495163,154.495163,18407400 -155.334702,156.432556,153.004852,154.351089,154.351089,16765000 -156.055008,156.223907,154.043091,155.364502,155.364502,16091500 -156.377914,157.311844,154.266647,155.483734,155.483734,13628600 -155.6427,156.392822,153.576141,154.321289,154.321289,11216800 -154.301422,155.314819,151.444992,152.060989,152.060989,17196200 -151.613892,152.602463,148.533936,149.512558,149.512558,18733400 -150.024231,150.024231,144.400818,147.758972,147.758972,21272700 -148.981018,149.144958,145.324799,147.113174,147.113174,17149000 -147.788773,151.613892,146.328278,151.514542,151.514542,15231700 -151.494675,152.984985,150.391846,150.660095,150.660095,14247600 -151.017776,153.933807,150.99791,153.352585,153.352585,14112500 -153.993423,154.559738,149.63179,150.620361,150.620361,28004300 -171.782715,172.095688,165.424072,168.851776,168.851776,46082500 -170.575577,173.521408,169.98938,173.198517,173.198517,18986000 -171.772781,172.577545,170.32222,172.334137,172.334137,13846000 -172.021164,176.849762,171.976456,176.571579,176.571579,17930800 -177.147827,177.391235,174.70372,175.389267,175.389267,10335500 -176.487122,178.315231,176.36293,177.92775,177.92775,11883700 -178.95607,186.164185,178.593414,184.867615,184.867615,28872300 -184.728516,190.709625,183.312729,188.464218,188.464218,32924900 -189.61673,191.256058,187.366364,188.613251,188.613251,21268100 -189.969437,192.040955,189.457764,191.727997,191.727997,14993600 -193.72998,194.62912,191.479614,193.953522,193.953522,17764500 -196.273438,197.450775,194.807968,196.238663,196.238663,19307700 -195.851181,196.516846,193.0345,193.690231,193.690231,15897600 -192.085663,192.890427,187.793579,188.34996,188.34996,21069900 -187.95752,194.410553,187.495529,194.286362,194.286362,18376000 -196.283371,197.167618,193.168625,193.938614,193.938614,14219600 -194.79306,197.823349,194.499969,197.202393,197.202393,15717300 -195.915756,197.217285,194.211838,195.130859,195.130859,17361900 -196.81987,198.136307,195.781631,197.788574,197.788574,17503300 -199.601776,200.600296,198.474121,200.421448,200.421448,18544200 -200.44133,200.943054,198.633087,198.81192,198.81192,14142500 -198.295273,203.665359,195.473633,203.357361,203.357361,20804600 -203.004654,207.306671,201.802475,206.889389,206.889389,19316700 -207.172546,210.987732,206.546616,210.063736,210.063736,20301100 -211.514297,212.9897,211.275848,212.925125,212.925125,9743100 -213.521255,214.226669,209.855087,210.371735,210.371735,22160000 -210.858566,211.822296,199.770691,200.466156,200.466156,43271100 -200.823837,202.905304,196.501938,201.146729,201.146729,31396000 -203.277878,206.377716,202.825821,205.707077,205.707077,19616400 -207.122864,208.4095,205.592819,207.500412,207.500412,15185000 -207.152664,207.401062,200.833771,201.613693,201.613693,20712500 -203.029495,206.859573,199.552109,200.962936,200.962936,30447300 -201.7677,202.03595,198.21579,200.80397,200.80397,23483500 -201.340469,203.998184,200.019073,203.998184,203.998184,17935800 -206.159134,206.546616,202.959946,203.277878,203.277878,15386100 -205.975327,206.263458,203.650452,204.971863,204.971863,13990600 -204.917206,207.649445,204.48999,207.396088,207.396088,16433700 -207.172546,208.50885,206.402557,208.126343,208.126343,13346900 -208.200851,210.202835,206.904282,209.909744,209.909744,12170100 -211.295731,214.852585,210.009094,213.685181,213.685181,32873300 -214.703568,221.6633,208.697617,210.928116,210.928116,44158800 -212.547577,214.703568,210.962891,213.481506,213.481506,20300500 -215.374191,217.018509,208.995682,211.787521,211.787521,22589700 -214.489944,215.031433,211.588821,214.624084,214.624084,15191200 -214.678726,214.852585,213.004608,214.072662,214.072662,9249800 -214.534653,214.534653,210.014053,210.947983,210.947983,13492700 -210.79895,212.507843,209.268906,211.96637,211.96637,14328300 -212.607193,212.979767,208.230667,208.717499,208.717499,13981800 -207.286804,207.753769,205.533203,206.089584,206.089584,15272800 -209.894836,216.427353,207.758728,216.208771,216.208771,26413000 -220.515762,223.029404,218.454163,221.181427,221.181427,30771600 -221.558975,224.31604,219.323517,224.162048,224.162048,21757200 -226.958847,233.729813,225.155579,231.325455,231.325455,35744800 -231.698029,235.170441,228.980698,231.941452,231.941452,25750100 -230.709457,233.605621,229.527145,233.362198,233.362198,18312400 -234.11232,236.019913,233.074081,234.291168,234.291168,18131900 -235.329407,235.960312,229.258896,230.317017,230.317017,20382200 -230.654816,231.936478,229.313538,231.618546,231.618546,15412700 -230.033844,233.431747,229.770569,232.045761,232.045761,16648100 -222.204773,227.202271,220.192856,221.017487,221.017487,41237700 -224.127274,225.27977,215.100983,216.814835,216.814835,29263600 -217.932556,218.593262,196.094589,198.439346,198.439346,82768100 -202.373749,212.810867,201.554092,212.368744,212.368744,45778400 -216.606186,221.037369,215.836197,220.083572,220.083572,31130300 -224.171982,225.647385,213.22319,215.100983,215.100983,37723300 -218.349838,218.573395,210.411469,215.731873,215.731873,26020200 -216.094513,217.694107,213.103958,215.344391,215.344391,17014300 -213.228149,215.240067,211.126831,212.030945,212.030945,17289400 -213.893829,218.379654,210.615158,214.932068,214.932068,44418900 -193.258041,199.701141,192.507919,199.591843,199.591843,54597700 -200.605255,201.9366,196.710587,196.740387,196.740387,23769000 -195.538208,195.677307,185.081223,189.542206,189.542206,36801300 -191.410065,193.690231,188.553635,191.30574,191.30574,17997000 -190.257553,190.61026,180.501022,182.771255,182.771255,33476700 -183.049438,184.147293,176.189056,183.347504,183.347504,41878800 -184.40065,185.990311,176.904404,178.225815,178.225815,23979700 -179.805542,181.072296,175.429001,180.133408,180.133408,30644900 -172.200012,174.167206,169.840347,171.733047,171.733047,39692000 -171.54924,174.708694,170.093704,170.550735,170.550735,29498600 -169.532349,171.88208,167.823471,170.083771,170.083771,26062300 -171.71814,182.314224,171.131958,182.045959,182.045959,42908200 -183.734985,184.867615,180.635147,183.183563,183.183563,28826600 -182.036026,185.563095,181.375336,182.11055,182.11055,17484900 -182.388733,183.282928,180.754364,181.564102,181.564102,13036500 -181.623718,189.388214,181.51442,187.813461,187.813461,25266400 -187.430939,188.806992,185.538254,187.480621,187.480621,13052800 -189.403122,194.584412,188.911316,193.92868,193.92868,20557200 -195.329575,197.48555,168.16127,180.138367,180.138367,79388100 -183.089188,183.531311,179.482635,181.221329,181.221329,24279200 -180.963013,189.318665,179.929733,187.008682,187.008682,36898900 -190.908325,192.36882,186.665924,187.868103,187.868103,24079500 -189.224274,190.461227,182.383774,182.860672,182.860672,17995600 -181.330612,183.034531,177.917816,181.047455,181.047455,20892500 -175.821457,178.851746,174.137405,175.796616,175.796616,23643800 -176.546738,178.106583,169.646606,170.391769,170.391769,28001700 -170.640152,171.136917,164.703766,167.659531,167.659531,38902500 -169.363449,171.931747,166.641159,167.440964,167.440964,27462100 -167.480698,175.046494,165.235306,174.445404,174.445404,37141400 -174.251663,175.011719,169.164749,171.136917,171.136917,25703600 -173.178635,173.248184,167.858246,168.290436,168.290436,20163600 -168.305328,169.785706,166.382843,168.797134,168.797134,17214600 -170.063904,173.913864,169.666489,172.970001,172.970001,20950600 -173.874115,174.693787,168.444427,168.861725,168.861725,19790000 -168.777267,170.938217,167.659531,169.010742,169.010742,15290700 -170.068863,171.757874,169.000809,169.840347,169.840347,14966000 -183.118988,183.849243,180.083725,181.718094,181.718094,30558600 -182.358932,184.654007,181.320679,183.650528,183.650528,14138700 -184.654007,187.709137,184.385742,187.381271,187.381271,18007800 -188.742416,198.210831,188.528809,196.213821,196.213821,38302400 -193.337524,195.478607,190.565552,192.964951,192.964951,29614700 -193.113983,194.668869,190.7742,193.739914,193.739914,73517800 -193.506424,194.966934,192.711594,193.590881,193.590881,16351000 -193.690231,201.141769,192.815918,200.863571,200.863571,31635700 -202.781097,205.945526,200.10849,202.676788,202.676788,26995400 -201.931625,205.607727,201.40506,204.261475,204.261475,17308700 -204.872498,205.09108,200.704605,201.7677,201.7677,14143100 -202.224716,207.237122,201.315643,206.844681,206.844681,18761400 -206.864548,208.195892,201.797501,203.506393,203.506393,22358800 -203.178513,204.335999,201.285828,203.153687,203.153687,12112200 -202.99472,203.556061,198.955978,199.780624,199.780624,13191000 -200.421448,204.917206,199.124878,202.095566,202.095566,16626300 -202.646973,203.590836,199.452759,200.813904,200.813904,16381000 -204.951981,205.483521,202.050858,203.923676,203.923676,13651500 -204.177032,206.655899,202.781097,206.159134,206.159134,24702500 -222.999603,223.903717,216.675735,217.137726,217.137726,45395900 -218.280304,220.913177,216.849609,218.826736,218.826736,17787600 -218.394547,219.095001,211.623596,212.199844,212.199844,19262300 -212.487976,213.630539,210.396576,211.608688,211.608688,14650200 -210.088577,212.075653,208.339951,208.657883,208.657883,16784200 -207.962402,211.489471,206.804932,207.619629,207.619629,14939000 -207.882919,208.364792,197.987289,198.161148,198.161148,20857100 -199.24411,199.94455,192.945084,196.124405,196.124405,26379000 -196.894394,199.452759,194.177063,195.811432,195.811432,16249300 -196.238663,198.146255,194.837769,196.099564,196.099564,9364400 -197.51535,199.045395,194.624161,195.876022,195.876022,12208800 -196.278397,197.276901,193.76474,196.114471,196.114471,10303700 -196.571487,203.178513,195.602798,203.079163,203.079163,18400000 -202.835754,204.524765,199.631592,200.187973,200.187973,12454800 -200.406555,201.047379,191.246124,192.249603,192.249603,17901100 -190.530777,191.191483,185.568054,185.856186,185.856186,20306300 -186.750366,188.846741,182.935181,186.884491,186.884491,17291800 -186.780182,187.212357,183.749878,184.450333,184.450333,13066500 -184.107559,188.692734,183.913818,186.039993,186.039993,21426000 -188.166153,189.671371,184.157242,184.296326,184.296326,11745800 -185.433929,186.039993,179.119995,183.814468,183.814468,22944500 -182.736481,185.309738,181.44487,184.276459,184.276459,17320600 -185.89592,190.699677,185.573029,186.576492,186.576492,18082700 -187.45578,190.48111,184.604324,189.393173,189.393173,19231900 -188.315186,190.262527,184.952072,190.257553,190.257553,16495700 -191.032516,191.693222,188.787125,189.442856,189.442856,7381600 -187.91777,189.268982,184.524841,184.768265,184.768265,8688100 -185.692245,187.902878,182.204926,184.708649,184.708649,16066300 -185.563095,190.257553,184.599365,190.073761,190.073761,12637600 -192.17012,192.289337,187.505463,188.494034,188.494034,12855800 -186.874557,189.492538,185.866119,186.010178,186.010178,11189200 -187.073273,193.739914,186.934174,193.73494,193.73494,20652900 -195.349442,196.154205,192.001221,192.00618,192.00618,17938400 -192.622177,195.861115,188.071777,195.379242,195.379242,20853700 -194.827835,196.437363,191.429932,192.035995,192.035995,12395000 -192.915268,193.983322,189.268982,189.537247,189.537247,10103400 -189.219315,192.249603,187.838287,192.011154,192.011154,15417700 -193.655457,194.286362,188.037003,190.953033,190.953033,15645000 -192.060837,194.857635,190.262527,194.236679,194.236679,13659500 -193.292816,194.201904,192.746368,194.087646,194.087646,10678100 -194.162155,196.124405,192.23967,192.815918,192.815918,15365400 -192.761276,194.668869,192.00618,192.334045,192.334045,8132300 -194.266479,200.694672,193.615723,199.765717,199.765717,17602400 -199.492493,201.688217,192.746368,198.682755,198.682755,11900600 -200.078674,203.551102,199.075211,201.121902,201.121902,10698700 -202.060791,202.83078,200.322098,200.80397,200.80397,7148600 -201.544144,202.681747,199.209335,199.860107,199.860107,8267500 -200.699646,201.926666,199.268951,201.742859,201.742859,7469200 -202.676788,207.748795,201.598801,207.555054,207.555054,13402900 -206.457199,208.31015,204.832764,208.31015,208.31015,12597300 -208.662842,210.515793,208.369751,210.232635,210.232635,4341400 -209.398071,210.033936,206.477066,209.368256,209.368256,10036000 -210.322052,211.315598,209.626587,210.227676,210.227676,7422000 -211.648438,212.562485,206.596283,208.866531,208.866531,12162300 -210.351868,211.241074,206.844681,207.748795,207.748795,8930400 -207.902786,211.151657,205.180496,210.908249,210.908249,12020200 -209.681229,210.00412,207.018539,207.276871,207.276871,9877100 -205.662369,207.818344,202.100525,203.09407,203.09407,13939000 -203.839218,204.415482,198.01709,200.446289,200.446289,15202400 -201.007645,204.172058,200.555573,202.627106,202.627106,11699300 -203.551102,203.95845,197.5849,200.222748,200.222748,17184600 -196.228714,199.273911,196.054855,198.210831,198.210831,17147800 -200.833771,200.913254,191.583939,192.309219,192.309219,25240400 -191.822388,194.609253,187.62468,193.794556,193.794556,23662100 -195.140793,195.672333,189.373306,194.186996,194.186996,16277300 -191.266006,194.390671,190.659943,193.421982,193.421982,11597100 -192.845718,194.688736,190.262527,191.504456,191.504456,11135700 -192.433411,192.493011,187.753845,189.964462,189.964462,11355500 -189.765762,193.521332,189.631622,192.805984,192.805984,8220200 -192.746368,193.327591,190.416519,192.050888,192.050888,9250200 -191.310715,191.63858,186.541733,186.541733,186.541733,10997400 -186.586441,187.366364,181.420044,182.428482,182.428482,14287800 -181.310745,187.733978,180.505981,186.482117,186.482117,12736200 -188.553635,189.110016,184.673874,185.717087,185.717087,10256600 -184.549683,188.638092,184.375809,187.753845,187.753845,7945000 -190.173111,191.007675,188.32016,189.268982,189.268982,11561000 -190.163177,191.097092,186.963974,187.252106,187.252106,8678000 -185.731995,187.614746,185.026581,185.890961,185.890961,8579200 -185.990311,186.427475,182.810989,183.059372,183.059372,7582000 -184.549683,186.352951,183.143829,183.521378,183.521378,10001200 -185.846252,189.601822,185.09613,189.254089,189.254089,13483400 -190.500977,192.96991,189.825363,192.607269,192.607269,11782500 -191.946579,193.739914,190.719559,191.653473,191.653473,10226400 -191.90683,192.294312,189.144791,190.44136,190.44136,9968800 -187.828354,188.275452,186.397659,187.430939,187.430939,8098900 -187.644547,188.404602,186.208893,187.922745,187.922745,8382300 -187.599838,187.912811,185.125931,185.508453,185.508453,7331900 -186.010178,186.983856,184.927231,185.657471,185.657471,7010200 -185.334579,186.447342,185.046448,185.423996,185.423996,4965400 -186.5914,189.244156,186.288376,189.244156,189.244156,8382000 -189.159698,189.924728,187.381271,188.25061,188.25061,8978000 -188.379776,191.082199,188.032028,189.144791,189.144791,8141300 -189.512405,189.840271,187.878036,188.041962,188.041962,5958200 -189.264023,189.408081,187.376297,188.076736,188.076736,5380400 -188.707642,191.454773,187.500488,190.938126,190.938126,8201500 -189.81543,190.356918,188.603317,188.841766,188.841766,7496500 -188.469193,189.641571,187.480621,188.022095,188.022095,7733900 -187.142822,189.164673,187.142822,187.704163,187.704163,6206800 -187.907837,191.102066,187.664429,190.804001,190.804001,9117200 -191.256058,195.096085,191.196457,194.683777,194.683777,10955100 -196.298264,202.06575,196.273438,201.971375,201.971375,19663300 -200.843704,201.827301,199.666367,200.684738,200.684738,10801900 -202.423431,203.700134,202.055817,203.615677,203.615677,15778200 -203.675293,207.992218,203.412003,206.005142,206.005142,14305800 -206.38765,206.402557,195.101059,200.600296,200.600296,28771600 -202.234665,202.378723,196.034988,197.217285,197.217285,18414400 -198.856628,202.905304,198.638046,202.110474,202.110474,21523100 -201.181503,202.408524,199.383209,200.585388,200.585388,9359500 -201.479568,203.402069,199.949524,200.684738,200.684738,11549100 -201.439835,202.522781,199.586884,202.120407,202.120407,10647500 -201.83725,204.281342,199.884933,200.158157,200.158157,11829800 -200.734421,202.175049,198.975861,200.486038,200.486038,10281100 -201.256027,201.499435,199.408035,199.651459,199.651459,6664700 -199.651459,201.688217,199.105011,199.422943,199.422943,7351200 -199.348434,201.916733,197.808441,200.714539,200.714539,11000400 -201.176544,206.541641,200.222748,206.506866,206.506866,13410200 -206.010101,207.768661,204.102509,204.574448,204.574448,11654800 -203.784576,209.591812,203.551102,208.891357,208.891357,14768300 -211.027466,214.579361,210.341934,213.113907,213.113907,15265100 -214.385635,217.5103,209.830261,211.946487,211.946487,19704500 -211.136765,213.565964,210.510834,211.871979,211.871979,11344000 -212.895325,213.451706,210.630051,212.338943,212.338943,9750900 -212.49791,213.362289,211.405014,212.269394,212.269394,7292100 -212.468094,213.213257,209.308655,209.512329,209.512329,8694900 -208.792007,210.505859,207.003647,208.960907,208.960907,10489700 -210.128311,211.002625,207.401062,208.300201,208.300201,12112800 -208.757233,213.362289,208.429367,211.653397,211.653397,23156600 -228.012009,228.563416,225.329453,228.349808,228.349808,23447200 -229.646378,240.75412,228.69754,238.836594,238.836594,30405400 -236.601135,237.386032,234.18187,235.125732,235.125732,17433000 -237.202225,242.671661,236.019913,241.727798,241.727798,18494300 -242.264297,244.390472,240.535553,240.982635,240.982635,14154800 -240.38652,241.052185,234.718384,236.064621,236.064621,13293800 -235.875854,238.677628,233.486389,236.745193,236.745193,13211500 -237.485382,239.522141,235.389023,236.655777,236.655777,12652400 -237.83313,238.016922,231.12674,232.239502,232.239502,10923100 -232.239502,235.334381,231.683121,233.436722,233.436722,10541400 -234.589218,235.344315,231.02739,234.37561,234.37561,9879100 -235.354248,238.280212,234.638901,236.933975,236.933975,10047800 -236.933975,237.96228,234.360703,234.758118,234.758118,9857800 -233.655304,239.313492,232.78595,235.965271,235.965271,16033500 -236.710434,238.19577,234.405426,234.787933,234.787933,9821800 -235.359222,235.826172,233.625488,235.244965,235.244965,5629600 -235.915604,239.030334,235.538055,238.960785,238.960785,8740100 -238.79686,243.391968,238.69751,243.069077,243.069077,14540700 -245.120728,248.309982,244.37558,244.37558,244.37558,16850200 -245.90065,247.231995,244.688538,246.347748,246.347748,10251300 -245.031311,248.215591,244.90712,247.783401,247.783401,11093600 -247.589661,247.589661,244.733246,245.925491,245.925491,10315500 -246.66568,253.352188,246.312973,253.178314,253.178314,16964500 -253.834061,254.842499,251.255829,252.363617,252.363617,9059900 -250.619965,252.11026,250.371567,250.868347,250.868347,3487800 -249.065079,249.268753,240.808777,240.808777,240.808777,14744600 -239.010468,243.34726,236.973709,243.168427,243.168427,15696500 -245.523102,245.7715,239.566849,240.759094,240.759094,12712700 -240.530579,243.615509,239.219116,240.838577,240.838577,11227400 -241.4198,242.617004,237.703964,238.846527,238.846527,11335900 -239.939423,242.140106,238.126221,240.858444,240.858444,9863400 -242.125214,243.138611,240.878311,241.926498,241.926498,8259300 -241.906631,244.609055,240.694519,242.77597,242.77597,8958400 -243.531067,244.310989,239.651306,239.76059,239.76059,9389200 -239.412857,242.721329,238.449112,240.490845,240.490845,8001400 -240.893219,242.870361,240.336838,240.401413,240.401413,6569200 -240.361679,241.608566,238.588211,239.333374,239.333374,8416200 -240.778961,241.181351,236.96875,237.947388,237.947388,9384800 -238.573303,240.311996,237.087967,239.502274,239.502274,9559500 -239.76059,240.490845,238.369629,238.598145,238.598145,10449000 -239.696014,239.810272,228.871414,229.904694,229.904694,16137400 -229.368179,233.138657,227.768585,232.800858,232.800858,13259600 -233.48143,234.226578,229.671204,229.954361,229.954361,8792400 -230.590225,231.12178,224.708481,226.626022,226.626022,13997000 -227.27182,227.838135,224.902222,226.318024,226.318024,8028400 -226.784988,228.250458,225.826218,227.286713,227.286713,4175500 -228.513733,232.527634,228.06665,232.502792,232.502792,8517900 -232.050735,232.776016,229.63147,229.785461,229.785461,6272900 -229.556946,230.734299,228.444183,228.752182,228.752182,5151600 -231.494354,236.789917,229.065155,232.28421,232.28421,15513200 -232.984665,240.411362,232.661758,240.068588,240.068588,15877700 -239.69104,242.174881,237.510223,242.020889,242.020889,13833500 -242.269272,243.352234,239.542007,240.227554,240.227554,9570600 -241.156509,242.54747,239.045242,241.181351,241.181351,10832700 -240.649811,245.180344,239.462524,243.14856,243.14856,12014600 -246.993546,249.253845,246.486847,248.245407,248.245407,14510100 -249.373062,250.868347,248.384491,250.868347,250.868347,9005500 -252.135101,254.842499,250.023834,250.510666,250.510666,15236200 -250.068542,252.2444,245.592651,247.033279,247.033279,13485200 -245.662201,246.635864,242.140106,242.338821,242.338821,11941100 -242.41333,243.794357,241.797348,243.292618,243.292618,10021200 -244.658737,244.733246,237.703964,238.866409,238.866409,10878900 -238.841568,240.808777,237.102875,237.977188,237.977188,9391600 -240.659744,248.155991,240.083481,247.922501,247.922501,12197400 -248.881271,250.619965,241.260834,242.467987,242.467987,12819800 -243.878799,247.341278,241.941406,246.317932,246.317932,11064400 -247.390961,247.763535,243.665192,244.643829,244.643829,9613400 -245.403885,247.390961,244.022873,245.562851,245.562851,8415200 -246.640839,250.868347,246.154007,249.129654,249.129654,24570900 -251.365112,251.370087,239.209167,239.318466,239.318466,31521000 -239.745682,240.932968,237.361191,239.194275,239.194275,12654600 -237.207199,237.455582,231.588745,232.070602,232.070602,14507500 -232.537567,235.120773,232.120285,234.216644,234.216644,10712900 -235.379089,235.64238,232.875366,233.486389,233.486389,8293100 -232.512726,235.344315,231.072098,233.993103,233.993103,8206400 -234.301102,234.812775,229.258896,229.452637,229.452637,9780400 -228.851547,229.701019,226.039825,227.664261,227.664261,11583800 -228.091492,229.89476,227.152588,228.06665,228.06665,8178000 -228.513733,233.04924,228.126251,231.459579,231.459579,11471600 -231.494354,231.558929,228.871414,229.243988,229.243988,8137300 -229.904694,233.555939,229.537079,233.45163,233.45163,12434200 -232.721375,234.847549,230.853516,234.524643,234.524643,8188000 -233.401947,237.793381,232.358734,236.392502,236.392502,11354500 -237.798355,240.55542,235.662247,236.387527,236.387527,11562400 -236.337845,236.933975,232.388535,233.789429,233.789429,7815600 -234.887283,236.089462,230.376617,230.962814,230.962814,7991400 -226.029892,228.414383,222.140198,222.935028,222.935028,18746600 -223.749725,225.369186,220.088531,223.272827,223.272827,16169000 -219.904724,224.74823,218.578354,222.666763,222.666763,17483300 -221.116852,222.900253,217.922623,217.922623,217.922623,13252700 -217.097992,221.310593,217.088058,219.050293,219.050293,12792800 -222.28923,228.016968,222.244507,227.296661,227.296661,15165300 -229.850052,230.073593,225.677185,226.347824,226.347824,13153100 -228.126251,231.245972,225.582794,225.890793,225.890793,10795300 -227.520203,227.718903,223.595718,225.016479,225.016479,10020000 -224.822739,226.154083,224.097458,225.905701,225.905701,6975800 -223.600693,224.504807,219.984207,220.083572,220.083572,12837400 -220.182922,222.880371,218.081589,222.552505,222.552505,16138000 -222.482956,223.456635,220.535629,221.653366,221.653366,7939500 -221.385101,221.906708,218.523712,219.00061,219.00061,11391800 -220.192856,222.800888,218.891327,222.169998,222.169998,10462800 -221.454651,222.353806,220.36673,221.201294,221.201294,6887500 -221.211227,226.809814,221.166519,226.799881,226.799881,11671900 -226.332916,229.591721,224.802872,229.527145,229.527145,11435200 -229.234055,230.197784,227.063171,229.422821,229.422821,8276000 -228.786957,230.997589,226.337891,230.997589,230.997589,9481800 -230.277267,231.111847,228.682632,230.312042,230.312042,7530900 -229.442703,231.216156,228.588257,229.447662,229.447662,9242800 -230.774033,231.494354,226.029892,228.970764,228.970764,8028800 -229.556946,230.202759,226.596207,227.599686,227.599686,6804200 -227.40097,227.783493,224.599197,227.783493,227.783493,6941700 -230.52565,235.592697,230.500809,234.773026,234.773026,13088100 -234.54451,234.971741,233.272781,233.988129,233.988129,7606600 -234.127228,234.519669,233.292664,234.231552,234.231552,5466900 -234.961807,234.971741,231.29068,232.592209,232.592209,6164000 -232.035828,233.873871,231.077072,231.742737,231.742737,5997200 -231.524155,233.183365,229.810303,230.764099,230.764099,7673500 -230.500809,232.487885,229.626495,232.18486,232.18486,5450900 -232.711441,232.870407,230.182877,231.638412,231.638412,5625800 -232.7164,236.953842,232.562408,235.602631,235.602631,10221800 -235.369156,236.655777,234.27626,234.872375,234.872375,6461900 -234.107361,238.399445,233.24794,236.46701,236.46701,11414700 -235.716888,239.417816,233.277756,234.301102,234.301102,22162400 -243.675125,244.658737,239.452591,239.681107,239.681107,24481100 -238.498795,240.932968,237.584747,237.992096,237.992096,11422900 -237.758606,238.439178,236.238495,237.222092,237.222092,7437400 -238.449112,239.129684,236.516693,237.450607,237.450607,7985200 -237.505264,240.659744,237.013458,239.035309,239.035309,8303300 -238.483887,239.641357,237.619507,237.957321,237.957321,5889300 -238.026871,239.119751,234.166977,234.166977,234.166977,7329700 -234.569351,234.87735,230.585266,232.984665,232.984665,7364000 -232.810791,234.017944,231.360229,231.385056,231.385056,6165200 -231.603638,235.503281,231.141647,235.085999,235.085999,7235000 -233.541046,235.885788,231.434738,234.037811,234.037811,7951300 -234.54451,234.882324,231.727829,232.125244,232.125244,6079300 -231.558929,232.572342,230.863449,231.896729,231.896729,5847900 -231.568863,234.340836,230.441208,233.108856,233.108856,7830200 -232.010986,233.228073,229.020447,229.243988,229.243988,7420400 -229.422821,231.991119,229.010513,231.861969,231.861969,5926300 -231.236038,232.244476,228.513733,229.39798,229.39798,7795600 -229.487411,229.775528,227.227112,227.520203,227.520203,8291500 -229.507278,235.04129,228.026901,234.778,234.778,13193600 -234.703476,236.07457,233.883804,233.958328,233.958328,9381800 -234.489868,234.822708,233.357239,233.640396,233.640396,7439800 -233.24794,238.051697,231.85202,233.779495,233.779495,12398600 -234.971741,237.957321,234.971741,236.392502,236.392502,7727900 -238.856476,240.143097,235.344315,235.453598,235.453598,10186200 -236.039795,238.051697,234.226578,235.632431,235.632431,8401400 -238.300095,240.908127,237.092941,240.197739,240.197739,10766400 -240.932968,244.310989,240.436188,241.98114,241.98114,10503800 -240.684586,247.808243,239.939423,247.689026,247.689026,14585700 -248.662689,252.746124,246.923996,247.346252,247.346252,17964600 -248.881271,250.878281,247.356186,248.583206,248.583206,9660200 -247.346252,253.605545,247.187286,251.896652,251.896652,14294300 -253.227997,257.82312,251.668137,257.743622,257.743622,21030000 -256.705383,258.707367,255.965195,257.450531,257.450531,15875900 -258.195679,261.548889,254.599075,255.865845,255.865845,21399200 -256.432159,258.141052,253.083939,256.079437,256.079437,12799000 -255.349197,257.450531,253.352188,254.017853,254.017853,9355700 -252.711349,254.181793,249.959259,250.754089,250.754089,12922400 -251.906586,252.626907,247.733734,250.987564,250.987564,14159400 -251.057114,251.305496,249.229004,249.795319,249.795319,9302500 -252.453033,252.855423,248.995529,251.310471,251.310471,12428400 -251.454529,256.332794,250.490799,255.935394,255.935394,9734600 -255.344238,256.953766,254.117218,255.493256,255.493256,8767200 -256.809692,257.698914,252.885223,253.33728,253.33728,8732700 -253.83902,255.980103,251.504211,255.393906,255.393906,8876700 -256.541443,260.798767,256.382477,260.793793,260.793793,14501000 -262.780853,265.766449,259.998962,262.00589,262.00589,15953000 -264.643738,264.877228,261.419708,263.416718,263.416718,11452900 -260.803711,262.289063,258.101288,261.44455,261.44455,12325700 -260.74411,263.039185,260.207611,260.808685,260.808685,8391000 -261.310425,261.995972,258.051636,259.661163,259.661163,7811600 -261.04715,264.206604,260.406311,263.476349,263.476349,7020400 -263.814148,265.473358,262.045654,265.443542,265.443542,3767800 -266.049591,270.44104,264.355621,269.065002,269.065002,9949900 -268.876221,270.177765,267.624359,267.957184,267.957184,5529500 -269.745575,272.597015,268.38443,269.526978,269.526978,7508100 -270.138,271.732635,269.074921,269.914459,269.914459,7762100 -270.048584,271.484253,268.260223,270.47583,270.47583,6661500 -271.166321,271.891602,268.364532,270.903046,270.903046,6927900 -272.184692,274.549316,271.856842,274.295959,274.295959,10542200 -273.371979,277.485229,272.880188,274.708282,274.708282,13284700 -275.726654,277.062958,274.405273,275.706787,275.706787,8713400 -275.155365,275.458405,270.147949,272.974548,272.974548,12239000 -274.941772,274.971588,269.368011,272.522491,272.522491,22399000 -254.296051,259.899597,253.103806,258.379486,258.379486,35775700 -257.828064,258.319885,254.420242,254.599075,254.599075,12796000 -253.004456,257.669098,251.916519,255.339264,255.339264,11216600 -256.819641,256.839508,251.14653,253.232971,253.232971,11162000 -252.726257,254.638824,247.82811,252.358643,252.358643,13856200 -252.621933,256.640808,251.11673,254.291077,254.291077,11089800 -254.80275,257.992004,253.600571,256.387451,256.387451,7978000 -258.434143,258.538452,253.352188,253.352188,253.352188,8596400 -253.600571,256.586151,252.428192,254.812683,254.812683,8913900 -255.200165,255.83107,252.855423,253.853928,253.853928,6350800 -253.377029,254.941849,249.874802,249.874802,249.874802,6393600 -249.874802,253.426697,249.626419,253.352188,253.352188,7350400 -253.227997,258.260254,252.87529,256.342743,256.342743,8584000 -257.992004,261.191193,256.874268,261.191193,261.191193,8190400 -258.717285,261.707855,255.652222,255.701904,255.701904,9755900 -253.441605,257.684021,251.181305,256.208618,256.208618,11826700 -258.09137,258.195679,254.857391,256.084412,256.084412,6399800 -256.193695,257.02829,252.358643,252.656708,252.656708,7314500 -252.855423,254.191727,246.750122,247.167419,247.167419,10889300 -244.420288,246.611038,238.677628,244.17189,244.17189,17403600 -247.112762,248.881271,244.236481,248.404373,248.404373,11030000 -249.606552,249.656219,246.397415,247.351212,247.351212,5429600 -247.857925,252.438126,247.276703,251.668137,251.668137,7268100 -253.332321,256.457001,252.979614,254.718307,254.718307,6547600 -256.332794,256.397369,251.861877,254.440109,254.440109,6193400 -254.648758,256.109253,252.60704,255.836029,255.836029,4977400 -255.552872,257.053131,254.047668,254.971649,254.971649,4680300 -254.112244,255.826096,251.260788,251.563812,251.563812,6590200 -252.27916,254.991531,251.976135,254.782883,254.782883,5131700 -254.524567,256.034729,253.64032,254.047668,254.047668,5337800 -254.892166,256.581177,254.082443,255.96022,255.96022,5993800 -255.845963,262.294037,255.647263,260.878235,260.878235,7435400 -260.008881,263.029236,259.437622,262.194672,262.194672,6668900 -262.969635,263.203125,257.445557,260.068512,260.068512,7298900 -257.256805,258.935883,256.730225,257.996979,257.996979,7374800 -258.95575,259.348175,253.789352,255.577713,255.577713,6493500 -256.824615,259.139557,256.198669,258.980591,258.980591,5442300 -258.58316,262.284088,257.82312,259.636322,259.636322,6010800 -260.336761,261.901581,259.919464,260.694427,260.694427,3806600 -259.909546,263.421692,259.422699,262.666595,262.666595,5565600 -261.563782,262.929901,260.341736,260.952759,260.952759,4423400 -261.558807,266.88913,260.441071,265.905548,265.905548,8486100 -267.892609,272.949738,267.688934,271.658112,271.658112,11125600 -271.732635,276.600983,271.250763,274.628815,274.628815,11121800 -276.372467,278.583099,274.628815,278.240326,278.240326,16127600 -278.687408,283.883606,278.190643,282.174713,282.174713,10662800 -280.177704,282.939758,279.611389,282.66156,282.66156,5496600 -283.357025,284.047546,280.083313,282.244263,282.244263,6735500 -284.017731,284.022705,281.061951,281.916412,281.916412,4139300 -281.66803,282.934784,280.237335,281.802155,281.802155,5313200 -283.143433,290.286957,282.9646,289.392792,289.392792,9483800 -289.805084,296.476715,288.130981,290.306824,290.306824,14226900 -291.230835,292.59198,288.30484,290.123016,290.123016,7809400 -290.654572,290.654572,286.665527,287.644165,287.644165,6012200 -291.658051,296.07431,291.608368,295.105621,295.105621,10203200 -295.577545,303.158234,295.055939,302.840302,302.840302,10121300 -305.567566,309.874573,302.229279,305.602356,305.602356,17649500 -308.672394,310.81842,306.407104,310.674377,310.674377,10841200 -314.772705,318.632599,302.532318,308.990326,308.990326,23751300 -309.973907,317.137329,307.122467,316.63559,316.63559,13736100 -317.172089,317.86261,305.786163,308.051422,308.051422,13977800 -307.246643,310.937653,304.01767,306.009705,306.009705,12128900 -313.188019,314.951538,308.786652,314.693237,314.693237,12139300 -315.651978,318.612732,312.219299,317.743378,317.743378,24738100 -325.1651,327.117432,319.536713,320.271942,320.271942,31783200 -317.271454,325.383698,316.084167,323.27243,323.27243,13415400 -328.488495,336.610657,327.867523,335.701599,335.701599,13675600 -334.181458,336.546082,327.648956,335.72641,335.72641,14904600 -337.147186,337.29126,329.631073,332.095032,332.095032,11666200 -334.837219,336.084106,331.87149,335.120361,335.120361,6751400 -336.695129,337.802917,333.873474,337.42041,337.42041,6172400 -336.565948,347.693604,336.565948,345.140198,345.140198,13890900 -348.081055,351.215668,345.771088,351.215668,351.215668,13842900 -349.124298,354.553955,348.622559,349.332916,349.332916,13139200 -352.959351,354.484406,346.416901,353.326935,353.326935,11758900 -351.210724,362.755615,350.753693,360.480408,360.480408,17882900 -366.396942,368.49826,360.157532,368.49826,368.49826,16982200 -368.17041,371.205658,359.233521,364.101868,364.101868,16654500 -364.926514,365.070557,336.402039,344.678192,344.678192,33239100 -335.706543,338.736847,328.468628,329.839722,329.839722,22924200 -326.744843,332.800446,311.081726,313.992767,313.992767,20587600 -320.411041,328.324554,313.992767,328.140747,328.140747,17000500 -334.46463,335.5625,316.079224,318.766724,318.766724,16294500 -317.221771,321.657928,309.983856,312.790588,312.790588,14025900 -314.921722,315.691742,306.019623,314.767731,314.767731,18203100 -312.760803,316.327606,307.251617,310.902863,310.902863,11126600 -316.183533,327.420441,314.390198,322.174561,322.174561,19809000 -319.804962,332.820313,318.965424,328.125854,328.125854,14118200 -332.835236,336.948486,331.896332,336.163574,336.163574,5512900 -337.902283,344.459625,330.351379,330.848145,330.848145,13668400 -335.219727,336.029449,323.029022,334.608704,334.608704,17924800 -338.851105,344.906708,333.898315,343.893311,343.893311,15935900 -343.143188,349.124298,341.662811,346.247986,346.247986,12496700 -353.202759,353.232574,338.851105,344.260925,344.260925,15893500 -343.272339,345.254456,338.369232,338.562988,338.562988,8706300 -336.963379,343.76416,336.372223,339.869476,339.869476,8518500 -344.126801,347.206757,341.528687,346.998108,346.998108,8473900 -346.645416,355.964783,346.25296,355.319,355.319,9881800 -355.184875,356.680145,352.954376,355.125244,355.125244,7754200 -355.681641,360.058167,354.693054,356.888794,356.888794,7762500 -357.64386,358.165466,347.132233,347.340881,347.340881,12357900 -354.693054,354.85202,342.025452,347.415405,347.415405,12398200 -345.905212,346.556,338.404022,344.782532,344.782532,10147100 -341.533661,347.589264,341.409454,342.750732,342.750732,7394600 -341.777069,345.463104,329.690674,332.452728,332.452728,11043200 -334.901794,336.168549,324.141785,334.49939,334.49939,14426500 -334.926636,337.554535,332.33847,336.496429,336.496429,8899700 -340.699066,343.267365,338.105957,342.616608,342.616608,8901900 -346.68515,347.370697,344.380127,346.093994,346.093994,10833900 -345.249481,348.100952,344.29071,348.100952,348.100952,3277900 -347.236572,354.305573,346.849091,353.12326,353.12326,5092800 -351.250458,355.686615,348.105896,348.105896,348.105896,5923100 -350.187378,351.687622,346.01947,348.995117,348.995117,5158600 -347.027924,348.97525,343.058746,343.505829,343.505829,4783200 -344.19632,346.431793,336.675262,340.381134,340.381134,8669700 -340.415924,341.20578,336.074158,340.450684,340.450684,6547200 -337.648926,338.279816,325.383698,326.377228,326.377228,10789200 -324.857117,329.000183,316.615723,322.527283,322.527283,12890000 -324.390167,327.847656,313.461243,313.799042,313.799042,10747500 -312.984344,324.559052,309.243683,324.489502,324.489502,13566900 -320.420959,326.476593,317.986816,321.275421,321.275421,12750700 -319.273438,322.636566,313.019104,317.062805,317.062805,10018600 -323.466156,326.575928,320.540192,324.797516,324.797516,8952700 -320.863098,322.427917,315.637085,316.76474,316.76474,11208800 -312.452789,317.927185,299.020172,305.984863,305.984863,21257300 -308.374329,310.848236,297.072815,298.453857,298.453857,16540400 -302.214386,303.024109,297.291412,298.185577,298.185577,17190200 -279.199066,296.819489,278.786774,290.286957,290.286957,19126600 -278.543335,282.164795,257.82312,272.537415,272.537415,34152000 -277.594513,287.972015,275.279572,285.388824,285.388824,18924000 -293.992859,295.577545,281.260681,281.369965,281.369965,14022500 -283.640198,284.271088,272.527466,276.193634,276.193634,11709000 -278.424133,278.851349,268.588104,273.481262,273.481262,12647600 -272.820557,278.404236,269.998932,272.363525,272.363525,15982400 -267.763458,284.648621,265.418701,280.326752,280.326752,29936000 -262.626862,266.601013,253.352188,256.283112,256.283112,35429900 -252.890198,254.7332,244.683563,246.114258,246.114258,26485300 -243.133652,252.855423,242.681595,251.762527,251.762527,22552200 -253.918503,253.933411,247.356186,249.233978,249.233978,15372000 -246.824646,255.433655,245.781433,250.843506,250.843506,15960800 -253.059097,257.1922,252.70639,256.675568,256.675568,13746500 -258.578186,260.162903,255.041199,258.896118,258.896118,11727700 -260.003937,263.585632,254.857391,257.371063,257.371063,13411200 -259.561798,265.766449,257.669098,265.582642,265.582642,13335500 -267.435577,268.771912,263.784332,264.405304,264.405304,13037500 -262.448029,264.608978,260.470886,263.108734,263.108734,10548300 -265.741608,265.801208,251.613495,252.830582,252.830582,12783400 -250.128159,253.853928,247.798309,252.855423,252.855423,13411000 -254.767975,254.946823,248.136108,249.805252,249.805252,11429400 -249.407837,252.855423,247.167419,252.259293,252.259293,11103500 -251.340271,251.613495,241.300568,241.648315,241.648315,16854400 -229.109863,231.727829,221.981232,230.5952,230.5952,46877300 -228.578323,236.208694,228.3349,234.902191,234.902191,20375400 -233.729813,237.997055,232.169952,236.159012,236.159012,13259400 -234.410385,238.319962,230.823715,234.067612,234.067612,18973300 -234.231552,234.832642,223.600693,227.033371,227.033371,15207200 -224.017975,225.215195,216.481995,220.863495,220.863495,27420500 -221.186401,225.617569,220.56543,222.403473,222.403473,14969800 -222.398514,225.185379,214.196854,214.95195,214.95195,15037300 -213.054291,218.578354,211.742813,215.274841,215.274841,16248500 -213.029449,214.107437,205.185471,205.473587,205.473587,16079000 -211.255981,218.652878,210.952957,218.498871,218.498871,17768500 -218.583328,222.492905,217.619598,218.66777,218.66777,13390300 -214.937042,222.045807,213.004608,220.073639,220.073639,15553600 -220.058731,223.218185,213.918671,217.545074,217.545074,13234200 -212.612167,215.453674,204.723465,208.5784,208.5784,15878900 -213.103958,218.995651,211.390106,218.161072,218.161072,14568400 -219.129776,222.304123,214.440277,214.604202,214.604202,12438300 -212.279327,216.442245,207.401062,215.374191,215.374191,19955600 -217.798431,231.385056,217.445724,228.791931,228.791931,13614900 -227.251938,227.256912,221.558975,223.933533,223.933533,11738900 -224.832687,229.939468,223.193344,227.614594,227.614594,10519300 -221.558975,222.855545,218.821777,220.605179,220.605179,11740100 -222.284256,225.319519,215.75174,217.624557,217.624557,8809200 -216.412445,219.914673,214.609177,218.811844,218.811844,8950500 -222.423355,231.742737,221.991165,231.350296,231.350296,12265300 -233.431747,236.332886,228.707474,231.345322,231.345322,12075900 -229.373154,230.148102,222.617096,226.089508,226.089508,13644900 -227.028397,237.371124,226.626022,234.022903,234.022903,11871000 -236.973709,241.151535,235.235016,236.8694,236.8694,11964200 -234.991608,235.538055,229.512238,232.393509,232.393509,9153000 -233.04924,234.47496,227.291687,230.5952,230.5952,12174700 -230.977707,235.398956,229.432755,233.024399,233.024399,10210700 -230.535583,232.120285,226.034866,227.246979,227.246979,8393600 -227.102921,227.246979,223.62056,224.370682,224.370682,7735100 -227.584778,228.374649,220.426346,221.976257,221.976257,9214600 -220.764145,227.659302,219.075134,226.0448,226.0448,15360600 -226.342865,228.200775,221.817291,223.317535,223.317535,26879600 -265.875732,272.080383,260.689453,267.962158,267.962158,36708300 -267.95224,269.541901,263.431641,267.15741,267.15741,14976000 -267.048096,278.602966,267.043152,275.706787,275.706787,15980200 -277.167297,277.84787,268.727203,271.479279,271.479279,9906900 -273.86377,275.45343,268.265198,269.765442,269.765442,8323900 -272.736115,274.713257,269.61145,270.272125,270.272125,8382900 -271.17627,276.605957,267.758484,274.276093,274.276093,8069300 -273.635254,279.879639,273.227905,277.430573,277.430573,8748400 -279.288483,290.540314,277.430573,285.289459,285.289459,15908800 -287.286469,295.542786,286.620819,294.623749,294.623749,13291400 -297.311279,299.278473,287.77829,288.766846,288.766846,14088500 -297.495087,297.564636,291.667969,295.527863,295.527863,12643600 -293.590485,294.08725,289.616333,291.285461,291.285461,9318700 -293.227844,297.808044,286.352539,287.629242,287.629242,13311900 -291.205994,292.745972,287.584534,289.621307,289.621307,10312300 -287.629242,290.609863,283.804138,284.747986,284.747986,9028000 -285.517975,291.479218,282.616852,290.580048,290.580048,9791000 -291.220886,292.075317,287.405701,289.616333,289.616333,10394100 -291.350037,293.684875,285.766357,286.287964,286.287964,8808400 -287.629242,289.591492,285.94519,288.622772,288.622772,8741700 -288.836395,290.450897,287.291443,288.160797,288.160797,8603700 -287.405701,292.537323,284.906952,286.894043,286.894043,11281900 -285.458374,289.358002,284.603912,287.430542,287.430542,6670300 -287.390808,288.826477,272.174774,273.217987,273.217987,13020200 -274.19165,275.314331,268.379456,272.954681,272.954681,10218600 -271.712769,274.713257,267.167328,270.550323,270.550323,8920500 -270.719238,279.482239,270.167816,278.637726,278.637726,7781200 -282.134979,283.898499,278.737091,282.284027,282.284027,8153400 -285.537842,291.047028,284.747986,289.616333,289.616333,9752900 -289.849792,293.053955,288.77182,291.007263,291.007263,6492300 -289.36795,290.058441,283.789215,285.642181,285.642181,7396100 -286.387329,288.37439,278.493652,281.817047,281.817047,8666500 -280.838409,287.132477,280.450928,284.261169,284.261169,6770000 -286.675446,292.120026,286.243256,291.255676,291.255676,7884300 -288.001831,288.483704,281.66803,281.66803,281.66803,9530500 -282.194611,283.158325,270.937805,277.132507,277.132507,10645200 -273.004364,277.604462,271.623352,275.294464,275.294464,7362400 -276.322784,276.869232,270.470856,270.83847,270.83847,7675300 -272.606964,277.197113,271.673035,274.688416,274.688416,11054500 -278.930817,285.989899,278.856323,283.908447,283.908447,12449100 -281.419647,287.678925,281.419647,284.55426,284.55426,7131500 -286.312805,287.167267,282.353577,282.890076,282.890076,6970800 -280.431061,282.656586,277.773346,279.372955,279.372955,6806200 -275.880676,280.06842,273.625336,278.289978,278.289978,11440000 -276.690399,276.690399,270.495697,271.449493,271.449493,12043900 -270.917938,274.787781,269.258728,270.843414,270.843414,7318900 -270.808655,273.814117,265.821075,269.397827,269.397827,9405900 -270.724213,277.097748,270.0784,273.719727,273.719727,8297900 -270.292023,270.704315,262.423187,262.701385,262.701385,11392600 -262.135071,263.287567,255.880737,262.328796,262.328796,10965700 -264.514587,267.261719,259.839996,261.509125,261.509125,7579500 -258.111237,266.625854,256.829559,265.637299,265.637299,9984200 -266.521545,268.444031,261.330292,261.817139,261.817139,8500900 -263.724731,267.872742,262.045654,266.764954,266.764954,4832100 -269.397827,272.726166,266.069489,270.197632,270.197632,8565700 -271.230896,275.801178,268.255249,275.473297,275.473297,9928900 -273.600494,276.044586,268.617889,269.025238,269.025238,8362000 -270.739105,272.974548,263.645233,268.538422,268.538422,8719700 -266.516571,268.006866,258.036713,265.175293,265.175293,10027500 -267.758484,268.285065,256.05957,259.124634,259.124634,8907100 -256.471893,262.045654,248.930939,256.377502,256.377502,12220900 -255.359131,266.516571,253.650253,266.069489,266.069489,9545900 -265.354126,266.789795,260.555328,264.99646,264.99646,17688900 -247.564835,247.877792,237.549973,239.104858,239.104858,22731500 -238.886276,240.480896,231.345322,232.8853,232.8853,11879700 -231.85202,238.573303,231.295639,237.013458,237.013458,9443900 -239.248917,247.008453,237.505264,243.029327,243.029327,9851800 -246.745163,246.829605,236.27327,236.27327,236.27327,7127700 -241.673141,244.971695,239.194275,244.400406,244.400406,6408200 -244.455063,244.455063,236.029846,237.018417,237.018417,6361000 -238.101379,242.055664,237.455582,239.994064,239.994064,5642000 -241.181351,241.439667,234.87735,239.79039,239.79039,7026600 -235.746689,238.891235,234.196777,235.344315,235.344315,5767400 -234.728317,235.081024,229.755661,232.41835,232.41835,6054900 -232.547501,234.9767,229.457596,230.004044,230.004044,5006200 -232.28421,238.488861,231.658279,238.374603,238.374603,7215600 -237.639389,243.302551,234.728317,241.598633,241.598633,6795400 -239.442657,240.436188,236.66571,238.011963,238.011963,5583600 -238.523636,246.273224,236.308044,245.905624,245.905624,7527100 -244.643829,252.795807,244.301056,248.801788,248.801788,8533700 -249.378036,251.429688,247.390961,249.681061,249.681061,5547200 -249.179321,250.143066,245.344269,248.399399,248.399399,7298100 -247.241928,252.164917,246.541489,251.111755,251.111755,5875100 -251.856918,253.680054,251.11673,253.426697,253.426697,7137300 -253.272705,253.352188,246.154007,247.539993,247.539993,6711100 -243.630417,247.53006,241.742691,243.665192,243.665192,6132500 -245.761551,246.740189,239.725815,240.932968,240.932968,8015800 -239.899689,243.367126,238.086472,241.693024,241.693024,7073900 -244.161957,245.841034,243.158493,243.7099,243.7099,4624200 -241.484375,246.894196,239.194275,239.944397,239.944397,4054700 -240.167938,240.167938,233.774521,235.547989,235.547989,6659300 -235.334381,235.880829,230.918106,232.776016,232.776016,8831200 -234.718384,236.685593,233.645355,235.359222,235.359222,6098700 -233.357239,233.98317,229.671204,230.148102,230.148102,7746300 -236.844559,239.532074,229.219147,231.12178,231.12178,12302400 -232.850525,235.612564,228.305099,230.704483,230.704483,8685300 -228.513733,230.123276,223.247986,223.675201,223.675201,9759900 -221.305618,224.768097,218.618103,220.689621,220.689621,9127500 -224.549515,225.006546,207.425888,208.618134,208.618134,18153000 -210.217743,214.792984,206.159134,207.97731,207.97731,14553100 -210.863541,210.8685,203.516327,205.741852,205.741852,12534500 -202.855621,216.139221,201.876984,215.473557,215.473557,13026900 -213.714996,219.566925,213.113907,217.415924,217.415924,12134300 -210.630051,219.556992,210.485992,215.528198,215.528198,13220100 -211.603729,223.18837,211.370239,220.03389,220.03389,14072200 -217.823273,218.151138,205.384171,205.905777,205.905777,18372400 -209.954453,218.171005,203.923676,218.121338,218.121338,17290400 -229.010513,229.542053,220.207764,223.123795,223.123795,20142000 -225.597702,225.597702,213.113907,213.680222,213.680222,8871900 -215.225174,218.97081,211.484497,213.248032,213.248032,10476100 -213.779572,221.06221,213.665314,216.149155,216.149155,8539100 -218.002106,223.546051,216.581345,218.379654,218.379654,10105800 -212.617126,217.167542,209.154648,214.127304,214.127304,10653700 -208.399567,210.386642,189.124924,189.268982,189.268982,21665700 -196.710587,211.166565,194.89241,198.965912,198.965912,6212600 -204.246567,207.142731,200.247589,204.529724,204.529724,12550600 -203.570969,203.665359,191.752838,193.983322,193.983322,12047500 -197.391159,204.917206,190.297302,192.204895,192.204895,16089700 -185.781662,186.780182,177.42601,184.405624,184.405624,22587000 -185.458771,186.278442,171.569107,171.887039,171.887039,22252500 -164.013245,178.335098,162.001343,167.96257,167.96257,23806600 -171.146851,173.158768,159.795685,163.427063,163.427063,16254900 -155.568176,169.840347,154.147415,164.927307,164.927307,21333300 -176.745438,189.740921,171.757874,189.278915,189.278915,17926800 -195.4935,195.975372,177.346527,180.18309,180.18309,15670700 -176.179123,178.340073,168.320236,168.489136,168.489136,13530100 -165.304855,177.098145,153.7202,175.369385,175.369385,32690500 -188.255585,191.752838,180.600372,185.066315,185.066315,28683600 -188.648026,189.259048,178.633163,188.434418,188.434418,13594600 -184.991806,190.650009,179.830383,180.202957,180.202957,11639100 -177.341568,183.650528,170.888535,176.685822,176.685822,13205300 -175.682358,177.843307,167.902954,175.021652,175.021652,13042000 -162.180176,174.102631,161.32077,168.548752,168.548752,14813700 -166.323227,170.391769,161.747986,163.68042,163.68042,12482000 -168.429535,183.461761,163.193588,183.183563,183.183563,16316200 -181.713135,184.3013,175.046494,177.843307,177.843307,19640100 -183.039505,184.798065,178.0271,178.682846,178.682846,16081600 -176.929245,184.778198,175.990356,178.518906,178.518906,14943100 -177.634659,180.322174,169.611832,172.125488,172.125488,11986400 -175.578033,184.976898,171.633682,182.284409,182.284409,14795200 -179.904892,183.248154,169.552231,170.014221,170.014221,13983200 -168.886551,171.097183,161.85231,164.539825,164.539825,17261100 -165.483688,169.472748,161.613861,164.500092,164.500092,9423400 -162.940231,163.655579,153.735107,158.360016,158.360016,16265200 -153.347626,157.128036,149.289017,154.723679,154.723679,20425000 -150.049072,155.235336,142.950241,144.559784,144.559784,20232900 -144.942291,155.488693,139.095322,155.031662,155.031662,26641400 -150.645203,161.444962,150.302429,154.008331,154.008331,19158000 -150.521011,154.077866,148.012329,149.090317,149.090317,15185600 -149.810623,150.883652,141.753036,147.749039,147.749039,16800600 -146.740601,149.125092,138.389908,139.184738,139.184738,15771000 -136.556824,140.555817,128.683044,128.94136,128.94136,19685900 -130.40683,133.814667,122.850975,130.367081,130.367081,20622200 -133.760025,134.102783,123.700447,127.888214,127.888214,20240100 -133.471893,142.403793,132.796295,140.113693,140.113693,21682500 -139.234421,146.77536,137.207596,145.101257,145.101257,12795800 -144.351135,147.267166,143.208572,145.533447,145.533447,5164300 -142.413742,142.761475,132.130615,132.13559,132.13559,11496600 -133.9935,137.992493,130.441605,136.666122,136.666122,11755200 -134.053116,139.77092,131.812683,138.812164,138.812164,11886300 -137.371536,140.829041,133.516602,136.2836,136.2836,9836600 -134.634338,141.201614,131.156952,141.077423,141.077423,13127100 -144.058044,153.7202,140.088852,150.078888,150.078888,16394400 -147.883163,157.972534,147.545364,151.996414,151.996414,13869300 -153.62085,156.432556,151.271133,153.412201,153.412201,10542000 -151.102219,155.429077,147.937805,149.139984,149.139984,12438700 -146.899567,157.212479,146.050079,156.859772,156.859772,11518500 -155.990433,158.215958,151.569183,154.331223,154.331223,13563300 -156.24379,163.685379,154.629288,161.58902,161.58902,14211000 -158.290466,160.0242,155.200577,156.601456,156.601456,11654600 -157.326736,159.139954,153.556259,154.137482,154.137482,9588900 -154.490189,157.868225,153.501617,154.08284,154.08284,11298100 -153.283035,153.75,144.375977,147.595032,147.595032,7886100 -149.244308,150.675003,147.376465,148.047104,148.047104,7604400 -149.765915,152.180222,148.225937,150.49617,150.49617,3867900 -151.052551,151.643707,148.191162,149.209534,149.209534,3943600 -149.139984,149.716248,144.8479,147.749039,147.749039,7451900 -149.428116,152.413696,148.389862,150.575653,150.575653,7736900 -151.117126,154.495163,150.327271,152.830978,152.830978,5811000 -153.302917,159.870193,151.762924,159.621811,159.621811,7267900 -159.462845,164.549759,156.482239,162.965073,162.965073,9841400 -165.414139,169.298874,162.140427,165.950653,165.950653,12933900 -163.099197,164.385834,158.345123,159.964584,159.964584,9047400 -158.111633,161.544312,157.644669,161.544312,161.544312,7248100 -162.691849,162.691849,155.687408,156.517014,156.517014,8737300 -157.132996,158.444473,154.11264,155.334702,155.334702,6651500 -154.87767,159.264145,154.192123,156.144424,156.144424,8922500 -153.998383,155.886108,147.912964,149.512558,149.512558,11006800 -147.823547,150.809128,142.468384,148.528961,148.528961,11946100 -151.524475,153.129044,146.894592,148.86676,148.86676,10516700 -148.603485,148.782318,140.461441,140.461441,140.461441,10161900 -143.243347,150.769394,143.243347,150.560745,150.560745,9912900 -148.057037,153.675491,146.621368,152.259705,152.259705,16641500 -153.635742,164.90744,151.12706,161.300888,161.300888,21605100 -161.375412,162.940231,159.244263,160.88858,160.88858,9281300 -162.170242,165.856262,161.08728,164.668991,164.668991,9918600 -167.89798,175.026627,167.068375,173.20845,173.20845,15482700 -171.156784,171.410141,168.9561,170.550735,170.550735,14662200 -171.231308,173.273026,166.914383,168.171204,168.171204,9404600 -166.064911,171.3853,164.927307,169.184616,169.184616,10481500 -170.178162,170.391769,165.836395,169.125,169.125,13198200 -168.936234,176.074799,168.489136,170.391769,170.391769,13723400 -169.353516,176.541763,167.411148,175.717133,175.717133,14623200 -177.078278,185.69722,176.571579,184.440399,184.440399,14167600 -184.440399,189.268982,182.463257,188.161194,188.161194,10019200 -186.775208,187.530289,177.788651,178.096649,178.096649,14299800 -178.315231,181.320679,175.359451,177.863174,177.863174,10531100 -175.438934,180.635147,174.60437,180.35199,180.35199,11172800 -179.924759,180.322174,176.467255,177.684341,177.684341,8347200 -172.135422,172.423553,168.747467,170.22287,170.22287,11434600 -172.498062,175.548233,169.159775,175.414093,175.414093,12127300 -177.580017,178.737488,169.601898,170.212936,170.212936,10042200 -167.932755,173.332642,166.417618,172.105621,172.105621,12515000 -172.378845,173.769791,163.71022,163.963577,163.963577,10510000 -164.440475,173.680374,164.3759,171.608856,171.608856,12271000 -169.969513,175.011719,168.364944,169.716156,169.716156,12961800 -171.862198,175.10611,167.490631,167.500565,167.500565,11284100 -165.399231,170.799118,164.485184,167.902954,167.902954,10910400 -165.588013,169.249191,161.946686,162.522949,162.522949,11652200 -163.968536,165.766846,160.133484,161.68837,161.68837,13134400 -160.535873,163.436996,156.671005,158.429565,158.429565,15738400 -157.217453,158.509048,150.342163,151.832474,151.832474,13144600 -152.617371,154.092773,146.174271,153.28801,153.28801,14562400 -149.020767,152.294464,143.78978,144.505127,144.505127,13026700 -148.161346,154.24678,146.174271,153.089294,153.089294,13547800 -154.048065,158.96608,151.867249,157.927826,157.927826,11924100 -157.744034,161.449921,155.8116,160.719681,160.719681,10113500 -161.996368,162.671982,158.484207,161.161804,161.161804,7863500 -161.941727,163.799637,158.26564,158.812088,158.812088,9957800 -159.055496,166.586517,158.514023,166.586517,166.586517,9486300 -166.323227,168.901459,162.965073,165.473755,165.473755,10089500 -164.768341,166.914383,162.632233,163.903961,163.903961,8275800 -164.082794,165.419113,162.115601,164.013245,164.013245,9537300 -165.702271,173.595932,165.43898,173.173676,173.173676,8598400 -172.130463,175.776749,170.888535,172.463287,172.463287,7689600 -174.067856,174.534821,167.038574,170.923309,170.923309,8728900 -175.424042,178.419556,173.123993,175.503525,175.503525,12084600 -173.869156,174.862686,171.61879,172.726578,172.726578,6688700 -170.168213,170.794144,166.939224,170.237762,170.237762,6228400 -173.337601,175.612808,171.971497,172.905411,172.905411,7358000 -170.779251,176.472214,169.204483,175.90094,175.90094,6645300 -180.48114,183.685303,178.995804,180.078766,180.078766,9034200 -181.072296,184.658966,177.843307,183.695236,183.695236,7628800 -182.314224,183.715103,179.532318,182.930222,182.930222,6603200 -180.128433,180.699722,176.506989,178.166199,178.166199,7408000 -180.575531,181.320679,176.954086,179.830383,179.830383,5566200 -183.556137,185.965469,181.94165,185.046448,185.046448,6809000 -184.465225,188.325119,183.953552,187.833328,187.833328,6139800 -187.252106,187.276947,181.618744,183.263046,183.263046,6901700 -182.363892,189.298798,180.903397,188.523834,188.523834,9925500 -189.517365,195.180542,189.278915,193.113983,193.113983,20502500 -191.762772,198.618179,191.161682,194.852676,194.852676,21601000 -191.827347,194.062805,186.730499,188.424484,188.424484,8915300 -186.869598,190.908325,186.834824,189.502472,189.502472,7438800 -189.641571,193.739914,188.280411,190.689743,190.689743,7049100 -192.50296,193.615723,189.323639,191.102066,191.102066,5251900 -191.777664,195.319641,189.020599,193.486557,193.486557,6814800 -190.928192,193.486557,190.138336,191.727997,191.727997,4610800 -190.635101,193.267975,189.537247,190.615234,190.615234,5925300 -191.73793,196.208847,191.668381,194.470154,194.470154,7266900 -196.601303,200.57048,196.124405,196.705612,196.705612,8768000 -196.238663,197.510391,194.509903,195.572983,195.572983,4886900 -197.798508,199.899841,196.119431,199.691208,199.691208,6447700 -198.697662,201.191437,197.341476,200.192932,200.192932,4832700 -202.080658,202.820847,199.204361,200.431381,200.431381,5299900 -200.744354,201.186478,194.981827,197.023544,197.023544,6038400 -200.123398,203.739868,196.223755,202.348923,202.348923,7780400 -200.098557,204.668823,199.303726,202.671814,202.671814,5151800 -203.680252,204.167084,196.278397,198.21579,198.21579,7630800 -195.771698,196.914261,192.920242,193.511398,193.511398,5722500 -193.143784,194.837769,191.102066,192.497986,192.497986,5912100 -194.286362,195.781631,193.287842,193.739914,193.739914,6056500 -196.08963,197.371292,191.454773,197.137802,197.137802,6747000 -196.770203,199.522293,195.230209,198.151215,198.151215,5711700 -199.74585,201.524277,196.223755,197.306717,197.306717,4597600 -196.869553,200.118423,195.647507,196.968903,196.968903,5474900 -197.048386,198.036957,194.733444,195.478607,195.478607,3459500 -194.708603,201.191437,193.739914,200.873505,200.873505,6249300 -201.509369,204.599274,201.097061,201.469635,201.469635,6107900 -203.019547,204.480057,200.997711,203.873993,203.873993,5372200 -204.723465,207.266922,204.023026,207.266922,207.266922,5330700 -208.012085,213.411957,207.912735,211.901779,211.901779,6687900 -211.747787,213.590805,210.331985,212.815842,212.815842,5281300 -211.623596,214.832718,210.630051,214.430344,214.430344,7111500 -216.243546,219.194351,215.84613,218.717453,218.717453,7323400 -221.09697,222.22464,218.310104,220.724396,220.724396,7409400 -218.329971,219.035385,215.657364,217.967331,217.967331,6237600 -217.87294,218.826736,214.484985,216.402512,216.402512,6552000 -216.705536,217.530182,211.956421,214.902267,214.902267,6761400 -214.489944,215.463623,212.800934,213.113907,213.113907,5767600 -212.050812,212.468094,209.244064,211.047348,211.047348,5874700 -209.388138,209.388138,205.662369,207.038422,207.038422,7522300 -208.300201,209.184464,206.367783,206.655899,206.655899,6138900 -206.75029,208.503876,204.450241,206.238617,206.238617,7025400 -206.496933,207.992218,205.165588,205.692169,205.692169,6210400 -207.753769,208.87149,205.950485,208.687683,208.687683,8573600 -207.127838,207.396088,199.646484,202.358856,202.358856,8302300 -202.011108,203.173553,199.974365,201.529251,201.529251,5836800 -203.049362,204.783081,201.9664,203.322586,203.322586,4947500 -202.184982,206.606232,201.941559,206.541641,206.541641,6128500 -205.503403,212.731384,205.220245,211.285797,211.285797,6555700 -211.623596,212.517776,209.755737,210.6996,210.6996,4366800 -210.630051,212.224686,207.758728,209.432846,209.432846,5221400 -210.729416,211.822296,207.723953,208.141235,208.141235,4651600 -206.362808,206.362808,202.090591,202.925171,202.925171,5067900 -201.9366,203.993225,199.532242,203.481552,203.481552,4554600 -202.80098,203.272903,196.710587,197.033493,197.033493,6561000 -198.707596,201.688217,197.743866,199.94455,199.94455,6927100 -201.747818,205.88591,201.588852,203.869034,203.869034,6593800 -203.466644,207.336472,203.029495,205.861069,205.861069,5891100 -206.740356,210.888382,206.24855,210.779083,210.779083,8143900 -210.485992,211.986237,209.075165,210.972824,210.972824,5829200 -213.441772,217.922623,212.86055,217.669266,217.669266,7603000 -216.929092,221.434784,215.647415,219.869965,219.869965,13194200 -215.100983,216.332962,211.971329,213.734863,213.734863,13797300 -213.551056,215.026459,211.747787,213.695114,213.695114,6348000 -214.077637,214.554535,211.484497,212.567459,212.567459,5975000 -212.617126,213.710022,210.381668,212.463135,212.463135,5207000 -212.954941,219.179443,211.375214,217.256958,217.256958,7001600 -216.496902,223.789459,216.094513,221.916641,221.916641,7300900 -221.578842,221.931549,217.391083,220.962845,220.962845,5041300 -219.075134,219.974274,216.640961,218.503845,218.503845,5097900 -217.202301,217.485474,214.549561,216.71051,216.71051,3999800 -219.874924,224.276306,219.874924,221.380142,221.380142,6438600 -223.536118,224.887329,219.785507,220.093506,220.093506,5758000 -222.92012,225.483444,222.373672,224.643906,224.643906,5214200 -223.233078,225.533127,222.766129,225.399002,225.399002,4810600 -226.526657,226.978729,222.492905,224.112366,224.112366,4714300 -225.682159,225.970276,222.815796,223.724884,223.724884,4249200 -226.362732,228.225616,226.024933,227.073105,227.073105,5119100 -226.099442,227.723877,225.428802,226.829697,226.829697,3506500 -225.369186,227.137695,224.728363,225.503311,225.503311,3447200 -226.233566,229.383087,225.990158,227.808319,227.808319,4713100 -229.581787,230.85849,227.97226,229.646378,229.646378,4016200 -229.89476,230.09346,226.968781,228.513733,228.513733,3371900 -224.291199,224.534622,220.128281,221.007553,221.007553,5274400 -221.111877,222.403473,219.730865,221.201294,221.201294,4732800 -218.573395,221.06221,217.863007,220.550537,220.550537,4539200 -224.539581,229.596695,224.157074,228.717407,228.717407,8049600 -231.265839,231.539063,229.83017,231.116806,231.116806,7167200 -232.164993,233.526138,230.709457,232.850525,232.850525,4938600 -233.04924,235.64238,232.845566,234.162003,234.162003,4712300 -234.852509,234.971741,231.842087,232.487885,232.487885,4001400 -232.776016,232.776016,228.876373,231.524155,231.524155,4023600 -233.113815,234.658768,230.19281,230.873398,230.873398,3566200 -228.409424,229.437729,227.520203,229.343338,229.343338,3941200 -228.354767,231.901703,225.74176,226.40744,226.40744,5223400 -226.437241,227.684128,224.832687,225.041321,225.041321,3633000 -226.437241,227.644394,226.029892,227.281754,227.281754,3313700 -227.306595,229.805344,226.417374,229.159531,229.159531,3017800 -230.644882,231.98616,226.447174,227.828201,227.828201,5347900 -228.046768,231.628479,227.917618,230.485916,230.485916,4419200 -231.817245,233.948395,229.507278,233.948395,233.948395,5102100 -233.68013,235.120773,232.304092,234.54451,234.54451,3830500 -233.734787,236.859451,233.506271,236.024887,236.024887,3977000 -236.00502,237.907639,234.827667,237.227066,237.227066,4827200 -238.349762,243.103851,237.694031,242.567337,242.567337,5204100 -243.699966,247.078003,242.001022,244.271255,244.271255,9024400 -246.779938,246.884262,244.027832,244.14209,244.14209,6609600 -242.294113,247.838058,241.539017,246.894196,246.894196,4260300 -248.841522,249.373062,247.29657,247.917542,247.917542,6121900 -248.771973,251.861877,247.246902,247.619476,247.619476,5443500 -248.617981,249.084946,244.90712,246.779938,246.779938,5087900 -245.547943,248.349731,244.410339,244.648788,244.648788,4125700 -245.821167,249.129654,245.056152,247.654251,247.654251,3702400 -248.151016,248.2603,244.912079,247.654251,247.654251,4225600 -248.384491,248.454041,242.045731,246.322906,246.322906,6324100 -244.90712,246.630905,241.926498,242.025848,242.025848,5662900 -240.307037,244.281189,239.740723,240.724319,240.724319,5235300 -242.249405,244.623962,240.108322,242.681595,242.681595,4316900 -244.261322,248.071533,244.261322,247.758575,247.758575,5500100 -247.887726,257.818146,247.29657,257.097839,257.097839,9811700 -258.106262,259.934387,255.011398,255.42868,255.42868,8663500 -256.655701,259.070007,255.587646,256.457001,256.457001,5511700 -260.018829,261.181274,257.982086,260.326813,260.326813,6687500 -260.500702,262.025787,259.005432,261.355133,261.355133,6114100 -264.509613,266.05954,263.287567,265.930389,265.930389,6559200 -265.150452,266.715271,261.931396,263.242859,263.242859,12280100 -271.896576,275.582611,270.505615,273.148438,273.148438,17798600 -274.559265,275.011322,272.592041,274.2612,274.2612,6477500 -274.037659,274.688416,268.602997,274.077393,274.077393,8139900 -273.178253,277.867737,272.726166,273.769409,273.769409,7388800 -273.222961,275.706787,272.229401,275.25473,275.25473,4703300 -275.830994,277.142456,273.819061,275.05603,275.05603,4816400 -276.079376,279.005341,273.66507,275.314331,275.314331,5979400 -273.704803,275.48822,270.321808,272.373474,272.373474,6474700 -272.164825,273.222961,267.385925,268.404297,268.404297,5169000 -269.750519,274.13205,268.752014,273.744568,273.744568,5077900 -273.222961,273.307404,265.39386,266.327789,266.327789,6982000 -266.804688,267.987,262.413269,265.269684,265.269684,6445800 -263.292542,267.013336,262.443054,266.909027,266.909027,4791200 -268.652679,270.987488,266.476837,268.419189,268.419189,4695700 -269.988983,273.108704,269.57666,272.552307,272.552307,3719300 -272.090302,274.107208,270.987488,273.769409,273.769409,3677100 -275.930328,279.47229,275.32428,279.437531,279.437531,5334100 -279.546814,282.552277,279.184174,281.548798,281.548798,4490500 -283.39679,284.897034,281.101715,283.436523,283.436523,4669500 -282.939758,284.598969,280.922882,282.090271,282.090271,3797000 -282.805634,284.405212,281.474274,284.176697,284.176697,3355200 -285.642181,286.630737,284.539337,286.278046,286.278046,4426800 -285.577606,286.884094,285.006317,286.87912,286.87912,3858300 -286.461853,287.519958,284.186646,286.461853,286.461853,3119200 -285.031158,285.145416,283.158325,284.643677,284.643677,4364100 -282.909943,283.953156,282.86026,283.138458,283.138458,4038500 -286.382355,291.404694,286.069397,289.293427,289.293427,5128000 -289.377869,290.257172,286.407196,289.661041,289.661041,3231200 -291.310303,291.633209,289.462341,290.977478,290.977478,2941400 -284.151855,289.348083,283.640198,288.006805,288.006805,2787100 -288.438995,289.949158,286.690369,289.616333,289.616333,3472500 -292.164764,293.699768,289.616333,293.029114,293.029114,4670700 -293.590485,294.588989,291.215912,291.85675,291.85675,3348000 -292.616821,293.814026,290.609863,290.977478,290.977478,2875900 -294.593964,295.493103,287.718658,290.614838,290.614838,5059900 -290.217407,292.442932,288.622772,291.230835,291.230835,3293500 -289.864716,293.42157,289.119568,291.628235,291.628235,3067700 -291.851776,292.760864,289.904449,292.606873,292.606873,3585000 -293.312286,295.433502,293.297394,293.838867,293.838867,3358200 -295.418579,295.453369,291.966034,293.347046,293.347046,3462300 -295.751434,296.725098,294.390289,295.940186,295.940186,3851600 -294.733032,296.263092,293.58551,294.653564,294.653564,4590400 -297.365936,298.245209,296.392242,296.948639,296.948639,5655300 -296.292908,296.889038,294.961548,295.050964,295.050964,5311800 -296.089233,297.529846,295.577545,296.282959,296.282959,7108900 -296.874115,297.981903,295.9104,297.40567,297.40567,5175800 -298.727081,298.806549,297.490112,298.617767,298.617767,3786000 -299.800079,304.454803,299.477203,303.863647,303.863647,4172200 -304.484619,307.758331,304.156738,307.241699,307.241699,1728500 -308.821411,310.972412,307.241699,309.422516,309.422516,3417800 -310.351471,310.401154,307.147308,307.69873,307.69873,2868100 -307.251617,309.352966,307.008209,309.352966,309.352966,2950200 -310.356445,310.679321,307.986847,307.986847,307.986847,2455400 -311.44931,312.721039,310.103088,311.349976,311.349976,3937800 -311.563568,311.891449,308.76181,309.978882,309.978882,6048500 -310.907837,310.907837,301.220856,302.164703,302.164703,8009000 -302.731018,303.029083,294.410156,295.130463,295.130463,12912000 -294.08725,299.675903,292.651581,299.06488,299.06488,9509900 -300.276978,300.276978,295.100647,298.612823,298.612823,14519600 -296.893982,297.147339,292.100159,293.332153,293.332153,9769600 -286.382355,292.28894,285.095734,291.648102,291.648102,13077600 -290.063416,295.180145,289.521942,293.019196,293.019196,8535300 -294.75293,294.862213,287.152344,288.126007,288.126007,10939600 -288.722137,293.302338,286.28302,291.911407,291.911407,8689500 -291.09671,291.09671,285.786224,288.329681,288.329681,6543600 -289.8349,291.513977,284.276062,289.606384,289.606384,12697400 -280.426086,283.45639,265.701874,273.227905,273.227905,13689200 -271.528961,273.16333,266.02478,268.255249,268.255249,8897200 -267.246826,273.024231,266.412231,269.457428,269.457428,8767600 -268.886169,272.055542,265.925415,269.298462,269.298462,7980200 -270.485748,271.732635,263.585632,265.418701,265.418701,6500100 -267.505127,268.74707,261.10675,263.257751,263.257751,8334700 -265.572693,266.173798,263.436584,264.787811,264.787811,4530800 -265.751556,265.751556,262.100281,263.843964,263.843964,8245600 -262.626862,269.298462,262.408295,268.662598,268.662598,6037000 -266.764954,267.261719,261.081909,261.687958,261.687958,6799200 -262.492737,265.026245,259.541931,263.928406,263.928406,6353000 -264.52948,269.24881,264.047638,265.011353,265.011353,5423500 -268.026733,269.01532,265.806183,266.486755,266.486755,5675700 -265.309418,267.15741,262.140045,265.498199,265.498199,5383700 -264.936829,268.498688,263.039185,266.466888,266.466888,4851300 -264.76297,266.839478,263.53595,264.837494,264.837494,4589000 -266.700378,270.306915,265.423676,268.901062,268.901062,7356200 -269.24881,269.944275,267.067993,267.366028,267.366028,4085700 -267.033203,270.74408,266.337738,269.854858,269.854858,4704100 -268.518555,270.257233,268.106232,268.632813,268.632813,5139400 -271.906525,271.981018,268.752014,269.64621,269.64621,4316900 -269.745575,270.058533,264.425171,265.806183,265.806183,5782400 -265.264709,267.480286,263.540924,264.017822,264.017822,4683300 -261.856873,262.537445,258.319885,261.514099,261.514099,6661300 -262.00589,264.156921,260.048645,261.697906,261.697906,4125100 -262.890167,264.921936,262.164856,264.623871,264.623871,4504800 -266.009857,271.066956,265.776367,268.78183,268.78183,8770200 -269.427643,272.289032,267.88269,270.898071,270.898071,6218800 -271.484253,276.268127,271.335236,275.503113,275.503113,6408800 -278.861267,282.000854,278.140961,280.282043,280.282043,7875300 -280.565186,280.763916,278.692383,279.422638,279.422638,4803800 -278.116119,280.505585,276.451935,278.285034,278.285034,6394400 -280.058502,287.380859,279.288483,286.362488,286.362488,11383300 -285.274567,291.210968,285.244751,288.692322,288.692322,8521500 -292.169708,292.239258,287.70874,287.897491,287.897491,5542600 -281.509064,282.885101,276.203552,279.770355,279.770355,9368300 -279.099731,282.373444,278.568176,280.773834,280.773834,6907500 -282.313812,283.878632,280.30191,280.952667,280.952667,6686300 -280.5354,282.383362,279.661072,281.369965,281.369965,3577400 -278.190643,282.164795,276.839417,278.190643,278.190643,9650600 -276.258209,281.593506,275.349121,276.94873,276.94873,8061700 -276.720215,277.351105,269.24881,272.726166,272.726166,11074100 -270.992462,278.116119,268.106232,276.864258,276.864258,13215700 -277.703796,284.151855,277.524963,279.621338,279.621338,7912900 -280.808624,281.861755,278.200562,279.526947,279.526947,5427400 -279.680939,280.5354,278.473785,279.407715,279.407715,6249300 -279.596497,281.980988,278.329742,281.523956,281.523956,3981400 -280.69931,283.029175,279.586548,281.727631,281.727631,6100900 -283.828979,284.872192,280.947693,282.562195,282.562195,4232700 -283.605408,285.58255,282.66156,283.660065,283.660065,3827700 -282.890076,283.600464,280.873199,282.274078,282.274078,4147000 -281.817047,282.537354,279.114624,279.949188,279.949188,5195400 -279.839905,283.083801,278.215485,281.911438,281.911438,3920200 -281.911438,282.547302,280.177704,281.280548,281.280548,4139900 -281.841888,285.145416,281.280548,284.514496,284.514496,4735400 -284.415161,292.537323,283.719666,291.489136,291.489136,7875500 -293.123505,294.256134,290.118073,292.596924,292.596924,6849700 -294.171692,296.988373,292.244232,295.726593,295.726593,13611500 -279.680939,282.567169,273.039154,273.297455,273.297455,24630000 -272.60199,275.205048,270.739105,273.272614,273.272614,7838600 -275.294464,278.021729,273.749512,275.726654,275.726654,5993400 -276.432068,278.314819,274.295959,275.35907,275.35907,4814000 -274.216492,274.464874,269.919434,271.762451,271.762451,6604000 -271.856842,272.885132,269.382935,270.734131,270.734131,4205800 -270.724213,270.734131,262.895111,264.102264,264.102264,8794400 -262.765961,267.425659,261.91153,262.820618,262.820618,7739300 -264.33078,265.686951,258.831543,262.885193,262.885193,6856500 -264.96167,266.516571,261.633331,264.281097,264.281097,6157600 -263.848907,267.102753,261.022308,261.151459,261.151459,4902300 -261.548889,264.738129,260.843475,263.585632,263.585632,3739700 -261.558807,261.668091,250.475891,251.54892,251.54892,12231500 -248.871338,256.193695,248.617981,253.232971,253.232971,9223900 -252.731232,257.087891,228.513733,247.723801,247.723801,10065200 -248.369598,251.027313,239.109818,244.976669,244.976669,10244000 -255.324356,259.720764,254.643784,259.139557,259.139557,8309600 -256.168854,258.260254,252.467941,252.880264,252.880264,6688300 -254.365601,254.365601,249.378036,251.062088,251.062088,7753600 -256.581177,259.313416,253.535995,253.789352,253.789352,6694700 -253.23793,253.843994,246.521622,252.125168,252.125168,8285500 -251.752594,252.537491,247.564835,252.34375,252.34375,5623800 -253.352188,253.834061,246.92897,247.574768,247.574768,5687700 -246.526581,248.106308,242.294113,245.617493,245.617493,6936100 -240.967743,241.221085,235.369156,235.970245,235.970245,9890500 -233.014465,240.932968,230.699524,234.499802,234.499802,19507500 -238.811752,243.312485,236.859451,237.0383,237.0383,8747600 -232.562408,237.182358,230.505783,236.993591,236.993591,6073900 -239.477432,243.297577,235.965271,236.198761,236.198761,6996400 -240.908127,244.564346,238.970718,243.645325,243.645325,5654700 -244.777954,245.130661,239.939423,241.245926,241.245926,5827200 -238.662735,243.94339,238.508728,239.626465,239.626465,5368200 -241.767532,245.33931,239.174408,245.090927,245.090927,5114500 -245.955292,252.358643,245.751617,251.166397,251.166397,7348800 -248.245407,252.979614,246.745163,247.748627,247.748627,7891500 -247.917542,248.836563,240.013947,241.191284,241.191284,7312500 -242.348755,242.840561,237.227066,240.823669,240.823669,5405000 -242.035797,242.860428,234.47496,235.478439,235.478439,5493300 -238.632919,242.671661,236.382553,241.931473,241.931473,5189200 -239.69104,242.77597,239.253891,242.671661,242.671661,3586400 -245.642334,245.652267,240.033813,240.033813,240.033813,4107200 -239.979172,248.583206,239.532074,247.385986,247.385986,8574600 -246.481873,250.371567,246.452072,249.015396,249.015396,4608200 -250.098358,251.300537,246.740189,248.42424,248.42424,3980200 -249.631393,250.108292,247.455536,248.399399,248.399399,5783000 -248.334824,248.866364,240.878311,242.701462,242.701462,6005600 -243.367126,246.69548,241.295609,241.553925,241.553925,4468200 -241.871857,241.871857,237.535065,239.467499,239.467499,4084500 -238.280212,239.815231,235.100891,236.014954,236.014954,3811700 -236.988617,237.281708,233.759613,234.812775,234.812775,4519500 -234.768066,237.23204,232.989624,234.514709,234.514709,3547400 -230.222626,230.774033,224.102432,225.662277,225.662277,7049700 -226.010025,227.435745,220.923111,221.037369,221.037369,7253300 -221.206268,222.751221,215.41394,218.325012,218.325012,7072900 -219.383118,219.710999,216.591278,216.864502,216.864502,3897100 -220.56543,222.38858,215.41394,216.626053,216.626053,5153400 -217.738815,224.186874,216.283279,223.645401,223.645401,6300000 -225.309586,227.187363,223.377151,226.804855,226.804855,5372400 -234.455093,235.100891,229.89476,232.234543,232.234543,8719300 -234.658768,238.170929,234.017944,236.377594,236.377594,6712100 -239.566849,244.902145,238.588211,243.019394,243.019394,8004200 -243.357193,245.319427,241.658249,244.082474,244.082474,6276500 -244.276215,245.751617,239.780457,245.413818,245.413818,9779600 -233.044266,233.759613,228.275284,228.319992,228.319992,15751300 -229.015472,233.307556,227.281754,231.583771,231.583771,9159800 -229.025406,239.934464,228.811798,239.238983,239.238983,8161600 -240.436188,241.280701,236.178879,237.207199,237.207199,6601800 -240.05368,242.91011,239.681107,240.838577,240.838577,4323200 -238.831635,243.7099,238.454086,243.446609,243.446609,4558200 -242.964752,243.789383,240.873352,242.905136,242.905136,4016200 -243.704941,247.142578,243.501266,244.723312,244.723312,4934200 -245.87085,246.024841,239.775497,240.610062,240.610062,5024400 -241.404892,242.860428,238.116287,240.927994,240.927994,5385700 -238.275253,242.105331,238.021896,240.858444,240.858444,4315900 -242.91507,245.046204,241.896698,243.620483,243.620483,3741500 -243.665192,244.638855,241.807281,243.332352,243.332352,3628000 -244.499771,251.861877,243.938416,251.524078,251.524078,7674500 -251.310471,252.656708,250.153,252.408325,252.408325,4872200 -251.067047,251.235947,246.422256,248.49379,248.49379,6682100 -249.502228,251.11673,249.060104,251.042206,251.042206,3768600 -249.55191,251.365112,247.674118,250.227509,250.227509,4174800 -247.256836,247.390961,244.161957,244.281189,244.281189,4474900 -240.406387,245.776459,239.696014,244.415314,244.415314,4437900 -242.920044,244.007965,241.434692,241.603607,241.603607,3894500 -240.277222,243.352234,238.69751,241.226059,241.226059,2626900 -242.686554,245.751617,241.444641,243.675125,243.675125,3805800 -243.635391,243.848999,239.219116,239.517166,239.517166,5407600 -238.950851,239.696014,232.115311,232.472992,232.472992,7900900 -232.472992,234.271286,229.020447,229.517212,229.517212,7886100 -229.258896,232.612076,227.386078,230.535583,230.535583,6011200 -227.37117,227.70401,224.003082,224.236557,224.236557,5561200 -223.546051,227.425812,223.546051,225.841125,225.841125,5217800 -226.556473,227.152588,223.764633,224.032883,224.032883,3577000 -224.81778,228.508774,222.378647,227.932526,227.932526,4654800 -228.091492,228.394516,224.74823,224.882355,224.882355,2478700 -223.600693,225.965317,222.552505,223.555984,223.555984,3918800 -226.019958,230.967773,224.787964,228.677673,228.677673,6498500 -229.924561,230.714432,228.66774,230.09346,230.09346,3390200 -233.739746,234.415359,232.209702,233.630463,233.630463,5113700 -230.749191,232.28421,230.013977,230.699524,230.699524,3441900 -231.091965,234.723358,230.754166,233.769562,233.769562,4834800 -237.371124,238.647827,233.769562,236.551468,236.551468,4892700 -237.96228,238.344803,236.00502,236.531586,236.531586,3974200 -238.89621,240.610062,238.215637,239.576782,239.576782,4512100 -239.447617,240.808777,238.488861,238.662735,238.662735,4461700 -238.424286,239.388016,237.703964,238.767044,238.767044,4836800 -238.424286,239.666199,238.156021,238.975693,238.975693,3964600 -240.311996,244.012924,239.035309,243.491318,243.491318,11356500 -244.658737,253.555862,244.440155,252.497742,252.497742,8864300 -253.193222,258.309937,252.810715,255.071014,255.071014,8990600 -254.772949,257.217041,254.186768,256.332794,256.332794,5107100 -255.642288,258.165894,253.997986,255.080948,255.080948,4664900 -259.184265,262.209564,257.455505,261.941315,261.941315,6757400 -262.716278,266.69043,262.716278,263.491241,263.491241,6255100 -265.016327,265.070984,257.549896,261.881714,261.881714,7356800 -262.219513,264.748077,260.659668,262.140045,262.140045,4372600 -262.87027,264.216522,257.783356,261.196167,261.196167,6530300 -263.287567,263.595551,259.810181,261.111725,261.111725,4478900 -260.77887,262.418213,257.748596,259.487274,259.487274,3906100 -262.482788,268.255249,261.5737,267.375977,267.375977,7059700 -267.887634,268.230408,263.257751,265.448517,265.448517,5560400 -266.372498,266.864319,262.860352,263.292542,263.292542,4822600 -264.663605,267.063019,262.105255,266.442047,266.442047,5755600 -267.500183,270.540405,266.849396,267.679016,267.679016,5286700 -268.31488,271.230896,267.15741,268.94577,268.94577,7556000 -271.732635,271.976044,269.41272,269.894592,269.894592,6150800 -270.331757,270.863281,266.819611,268.717255,268.717255,13354400 -297.698761,298.876099,293.88855,298.781708,298.781708,29842300 -298.334625,307.842773,298.334625,306.859192,306.859192,14288600 -302.457794,305.423523,299.482147,301.951111,301.951111,9235400 -302.105103,306.695251,301.78717,302.025604,302.025604,7095900 -303.779205,306.009705,301.042023,304.01767,304.01767,5878900 -303.98288,305.423523,303.053925,304.285919,304.285919,4541500 -305.80603,310.351471,305.498016,306.258087,306.258087,6357800 -304.569061,308.607819,303.540771,307.3013,307.3013,5058400 -305.895447,307.996765,304.186554,306.243195,306.243195,4512900 -308.021606,308.493561,304.668427,307.291351,307.291351,4396900 -306.54126,307.5,304.514435,304.867126,304.867126,4586200 -305.87558,308.324646,303.630188,305.512939,305.512939,6214200 -307.33609,307.996765,305.304291,305.811005,305.811005,4021000 -306.754852,308.905853,304.767792,308.086182,308.086182,6804800 -310.301788,312.924713,309.039978,310.117981,310.117981,7188000 -309.576508,310.72403,308.548187,310.520355,310.520355,3554300 -309.993774,312.711121,309.551666,311.359894,311.359894,4229900 -312.964478,313.386719,308.250122,310.391205,310.391205,4503300 -309.03006,309.487091,306.759827,309.42746,309.42746,5026400 -307.847748,307.922272,305.120483,306.600861,306.600861,4552600 -305.0112,306.456787,298.662476,299.69577,299.69577,6830000 -299.591461,300.048462,295.105621,295.811035,295.811035,7003000 -294.464783,297.013214,289.839874,289.973999,289.973999,6657700 -290.609863,292.845337,288.80658,289.889557,289.889557,4916700 -292.596924,298.051453,292.378357,296.352509,296.352509,5213600 -296.571106,297.013214,293.262604,293.506012,293.506012,4624800 -291.836884,294.802582,289.492126,293.699768,293.699768,4401600 -291.608368,292.601898,287.231842,289.621307,289.621307,4353200 -291.757385,296.372375,291.628235,295.562653,295.562653,4823800 -293.322235,294.574066,291.603394,293.093719,293.093719,2639200 -292.681396,292.994354,288.101166,289.174194,289.174194,5756600 -285.304382,285.304382,274.867249,276.059509,276.059509,14327300 -279.680939,283.938263,279.382874,280.351593,280.351593,7557000 -282.492645,284.812561,280.848358,284.062439,284.062439,5128800 -282.885101,286.37738,282.164795,284.648621,284.648621,5296500 -288.40918,289.119568,286.441986,287.31131,287.31131,4214700 -293.724609,294.584015,291.106628,291.672943,291.672943,6123900 -294.072357,294.345551,289.959106,293.361969,293.361969,3536600 -295.021179,295.865692,292.596924,293.838867,293.838867,3762000 -294.653564,295.075806,293.237762,294.191559,294.191559,3431500 -296.630707,299.551697,295.125488,295.388794,295.388794,4828000 -296.615814,297.211914,294.325684,295.532837,295.532837,3307900 -295.180145,296.297882,292.671448,293.242737,293.242737,4363500 -294.509491,294.966522,292.134949,293.943176,293.943176,3214400 -293.590485,294.365448,291.936249,293.491119,293.491119,6214200 -295.403687,297.00824,292.42804,295.607361,295.607361,3972200 -297.351013,300.406158,296.874115,299.586487,299.586487,3783400 -300.048462,301.538788,299.690796,300.788666,300.788666,2430700 -300.714142,301.042023,299.069824,300.16272,300.16272,2236000 -299.422546,299.939178,297.813019,299.243713,299.243713,2431900 -299.079773,299.983887,297.072815,297.524902,297.524902,2143400 -299.054932,299.258606,297.524902,298.558167,298.558167,2051600 -297.067871,298.722107,296.764832,297.495087,297.495087,1991800 -296.441925,297.276489,294.102142,295.065887,295.065887,3098500 -296.312775,300.838348,296.312775,300.222351,300.222351,4761100 -300.853241,301.131439,298.121002,299.114563,299.114563,3672700 -298.096161,303.193024,298.086243,302.567078,302.567078,5097500 -303.366882,307.216858,303.053925,304.767792,304.767792,4142300 -305.964996,307.127441,303.093658,306.228271,306.228271,4229700 -305.413574,305.706665,302.313751,305.120483,305.120483,3178800 -306.859192,307.400665,305.264557,306.014679,306.014679,2897200 -307.673889,307.673889,305.398682,306.441895,306.441895,3286500 -306.491577,307.832855,305.095642,306.352478,306.352478,2685300 -306.70517,310.117981,306.546204,310.073273,310.073273,4761900 -311.007202,318.920715,310.614746,317.748352,317.748352,7280900 -318.985321,319.402588,312.795563,313.833801,313.833801,6856500 -314.062317,314.991272,309.631134,311.359894,311.359894,11042800 -317.723511,318.791565,303.704681,303.938171,303.938171,17924600 -301.82193,304.266052,298.672424,303.565613,303.565613,9258000 -302.134918,308.339539,301.300323,307.952057,307.952057,7340900 -308.160706,309.233734,305.652039,306.258087,306.258087,4102600 -306.948608,307.847748,304.643585,306.402161,306.402161,4064500 -307.53479,308.175629,297.942169,298.553192,298.553192,8517100 -299.849762,300.281952,295.850769,298.240234,298.240234,5646300 -300.291901,304.693268,299.606354,303.545715,303.545715,5526100 -303.525848,305.185059,301.802063,304.022614,304.022614,3544200 -302.770782,303.74939,301.106598,303.103607,303.103607,3009500 -303.103607,303.744446,301.345032,303.51593,303.51593,3121700 -303.108582,307.196991,302.636627,305.160217,305.160217,3622400 -305.478149,307.812988,305.269501,307.192017,307.192017,3411700 -306.441895,307.723541,304.191528,306.258087,306.258087,3708900 -304.966492,306.754852,303.804047,306.228271,306.228271,4699100 -304.911835,310.480621,304.519409,310.232239,310.232239,5213400 -309.655975,312.785645,308.016663,312.045441,312.045441,4283500 -311.633118,313.009186,309.536774,310.05838,310.05838,4211000 -310.793579,311.225769,309.039978,310.09314,310.09314,3389800 -308.617737,311.598358,308.135864,310.609772,310.609772,2976800 -310.977386,313.550659,310.073273,313.004211,313.004211,6477500 -308.011688,310.445862,301.921295,303.133423,303.133423,7327100 -303.193024,305.363892,300.048462,303.684814,303.684814,5816600 -303.719604,304.564117,298.732025,302.442902,302.442902,5458600 -303.953064,305.37384,302.780701,303.04895,303.04895,3889900 -303.029083,306.253113,302.040527,304.718109,304.718109,4592600 -306.893951,307.609283,297.713654,298.438934,298.438934,6689500 -297.962036,301.042023,295.671936,298.453857,298.453857,4079700 -301.230774,303.769287,300.545258,302.810516,302.810516,3915700 -302.199493,302.522369,298.160767,298.369385,298.369385,6061100 -298.334625,299.89447,291.603394,293.918335,293.918335,6970400 -294.549255,297.057922,293.193054,294.241241,294.241241,4599400 -293.590485,295.334137,290.982452,293.972992,293.972992,4330000 -290.82843,291.414642,287.852783,288.275055,288.275055,6296700 -287.24176,288.126007,284.812561,286.491638,286.491638,6103300 -284.549286,287.27655,282.174713,283.153351,283.153351,5668700 -276.94873,283.65509,275.95517,282.939758,282.939758,8063300 -282.169769,283.054016,273.858826,276.75,276.75,7646200 -280.416168,282.66156,278.458893,278.866241,278.866241,5836200 -280.495636,282.159821,278.061493,278.717224,278.717224,6640000 -283.267609,288.026672,282.671509,286.387329,286.387329,6081000 -286.769836,287.7435,284.405212,286.794678,286.794678,3798200 -285.736572,289.343109,284.151855,289.199036,289.199036,3655900 -290.823486,292.293915,287.529907,291.548767,291.548767,4224600 -291.543793,291.558685,287.748474,287.996857,287.996857,5754000 -289.154327,290.604889,285.498108,285.821014,285.821014,4465500 -286.138947,289.064911,284.653595,288.985443,288.985443,3230400 -290.30188,290.858246,288.414154,289.04007,289.04007,2863000 -289.616333,292.179657,288.990387,291.484161,291.484161,4085100 -292.477722,295.671936,292.477722,293.987885,293.987885,5260300 -294.584015,295.448395,289.666016,291.941193,291.941193,4135600 -288.662537,288.866211,281.012299,282.706268,282.706268,12173500 -284.241272,285.721649,282.164795,285.234833,285.234833,5371200 -286.004822,288.443939,285.239777,288.126007,288.126007,5095900 -290.555206,290.555206,287.162292,287.211975,287.211975,3828300 -286.238281,287.182159,284.648621,286.819519,286.819519,3740500 -285.642181,286.591003,282.189636,283.461365,283.461365,4198200 -285.895538,286.933777,284.027679,286.278046,286.278046,4165600 -285.736572,287.852783,284.201538,287.385834,287.385834,10983500 -270.883179,271.111694,263.317383,263.635315,263.635315,28269900 -261.509125,262.125122,257.82312,261.717773,261.717773,10145100 -263.262726,263.724731,258.766968,259.079926,259.079926,5403000 -261.250824,261.707855,259.010376,261.166351,261.166351,6159800 -262.04068,262.433136,259.507141,260.853394,260.853394,4972200 -260.927917,261.797272,259.31839,260.828552,260.828552,3282700 -261.558807,266.983521,260.908051,264.688446,264.688446,7045400 -267.261719,267.316376,265.448517,267.142487,267.142487,4626600 -267.291534,267.88269,265.314392,267.246826,267.246826,4025800 -268.255249,270.292023,267.515076,270.292023,270.292023,8511900 -271.086853,271.101746,266.824554,267.539917,267.539917,4295100 -266.829529,269.253754,263.10376,265.220001,265.220001,4190000 -265.855865,267.758484,264.787811,266.163849,266.163849,4261500 -265.205109,267.967133,264.032715,265.408783,265.408783,4021400 -267.336243,268.98053,265.86084,265.920441,265.920441,4138900 -265.771423,267.505127,263.834015,267.102753,267.102753,3922600 -268.255249,270.455933,267.033203,269.57666,269.57666,4112300 -268.324799,270.018799,265.120636,265.994965,265.994965,4707900 -265.890625,266.735138,263.739624,265.796265,265.796265,2915300 -265.577667,266.228455,262.815643,263.064026,263.064026,4244700 -261.454498,261.931396,256.531525,257.534973,257.534973,5954800 -256.049652,263.893616,255.850937,263.516083,263.516083,6650100 -263.059052,263.451508,261.151459,263.193176,263.193176,3931800 -264.643738,266.536438,263.148468,263.908539,263.908539,4969400 -264.181763,264.276154,259.874756,260.321869,260.321869,4665100 -256.630859,258.319885,255.041199,257.520081,257.520081,4629800 -258.503693,260.287079,257.400848,257.455505,257.455505,3824600 -256.9935,259.695923,256.953766,258.155945,258.155945,2620100 -257.177307,259.373016,255.836029,257.39093,257.39093,4264500 -257.564789,259.209106,256.481842,258.766968,258.766968,3514100 -260.803711,262.815643,260.058563,262.80072,262.80072,5409400 -262.313904,264.877228,260.957733,261.101776,261.101776,5950200 -262.080414,263.436584,259.55188,262.323822,262.323822,4437700 -259.313416,262.095337,259.065033,259.849915,259.849915,3519600 -260.07843,261.707855,257.947296,258.846466,258.846466,3909300 -259.755554,260.619904,257.818146,257.838013,257.838013,3839900 -256.5961,258.935883,256.223511,257.907562,257.907562,3328200 -258.319885,258.319885,256.153961,256.695435,256.695435,3400000 -255.379013,256.675568,252.999481,253.108765,253.108765,4911400 -253.352188,253.451538,249.462494,250.734222,250.734222,4886100 -252.433167,255.379013,251.856918,252.54245,252.54245,4713300 -250.88324,252.532516,248.687531,249.84996,249.84996,4173400 -249.780426,251.64827,246.730255,248.568298,248.568298,5549800 -251.454529,251.707886,240.833603,240.942902,240.942902,10558900 -240.932968,241.543991,238.066605,240.724319,240.724319,6096500 -242.020889,245.374084,240.798828,244.90712,244.90712,5566600 -244.137131,244.584213,241.792374,241.931473,241.931473,4845500 -239.507233,239.869873,235.334381,238.558411,238.558411,9665800 -238.786926,238.821701,234.981674,235.905655,235.905655,7660700 -235.468506,242.621979,235.269791,239.840073,239.840073,6934100 -240.446136,246.50174,240.446136,245.230011,245.230011,5465500 -246.66568,248.508698,244.599121,247.177353,247.177353,4716300 -249.373062,251.697952,249.129654,251.553879,251.553879,4888300 -251.732727,258.906067,251.553879,258.831543,258.831543,7320500 -260.952759,265.970123,260.952759,264.499695,264.499695,7748300 -265.026245,267.515076,264.79776,265.950256,265.950256,5426200 -268.752014,273.56076,266.208557,271.533936,271.533936,7922100 -264.753052,267.08786,261.931396,264.276154,264.276154,9602400 -262.383453,266.25824,261.052094,261.936371,261.936371,5715400 -262.373505,267.967133,261.300507,265.279602,265.279602,5719300 -266.764954,270.24234,266.506622,267.390869,267.390869,5616600 -267.818115,269.24881,261.663147,262.760986,262.760986,13385300 -296.819489,298.185577,292.179657,296.879089,296.879089,27642700 -294.330658,299.079773,294.08725,295.54776,295.54776,8994600 -296.14386,300.386292,295.840851,299.328156,299.328156,5973600 -299.144348,299.467255,295.751434,295.751434,295.751434,4484500 -295.095673,302.065369,295.085754,301.533813,301.533813,6984000 -300.738983,307.748383,300.182587,307.117493,307.117493,7102100 -304.698242,310.684296,304.519409,307.490082,307.490082,6303900 -307.028076,311.722534,306.615753,309.248627,309.248627,4716100 -306.595886,308.468719,300.421051,301.648071,301.648071,7919900 -300.639618,305.999756,299.551697,303.496063,303.496063,6257100 -300.16272,305.493073,299.89447,299.89447,299.89447,8328500 -303.635132,305.761322,297.654053,301.42453,301.42453,7983700 -301.042023,302.865143,293.873627,294.28595,294.28595,6442700 -295.214905,299.551697,289.929291,298.642609,298.642609,7701100 -295.329163,297.490112,286.869202,286.894043,286.894043,9893100 -289.387817,293.093719,279.184174,287.649109,287.649109,11935200 -279.671021,282.66156,270.416199,271.245819,271.245819,15090600 -278.687408,285.448425,268.756989,284.852325,284.852325,13023500 -278.87619,280.237335,272.095276,272.73114,272.73114,10809000 -275.120605,282.413177,272.433075,279.248749,279.248749,9723900 -282.909943,283.406708,278.389343,280.063446,280.063446,6349600 -274.92688,280.669525,271.260712,276.814575,276.814575,14382600 -274.430084,274.435059,263.436584,267.758484,267.758484,13968900 -268.270172,270.088348,263.670074,264.852386,264.852386,8211200 -260.043671,260.749084,248.627914,250.808731,250.808731,12663100 -248.056625,255.771454,243.844025,243.87384,243.87384,10890300 -250.371567,251.861877,245.667175,247.475418,247.475418,9875500 -250.123184,259.020325,247.917542,257.733704,257.733704,8750000 -257.98703,263.287567,256.943817,259.954254,259.954254,7235600 -263.476349,266.899078,257.475372,258.339752,258.339752,6628600 -258.314911,263.511108,254.912048,261.727722,261.727722,7239200 -265.552826,267.982025,265.056061,267.798218,267.798218,4701900 -267.35611,269.740601,263.689941,268.602997,268.602997,6016800 -270.609955,271.384888,266.268188,268.732147,268.732147,5421500 -268.627838,270.157898,263.893616,264.52948,264.52948,4862300 -260.540436,262.254303,258.682526,260.724243,260.724243,4833500 -253.749603,259.690948,253.600571,259.402832,259.402832,5466900 -263.511108,266.238373,261.995972,265.289551,265.289551,5547400 -265.175293,267.808167,264.231415,265.751556,265.751556,4791800 -263.983032,265.597534,258.911041,260.729218,260.729218,6580000 -257.306458,264.276154,257.077942,263.347168,263.347168,5375400 -264.281097,265.215027,260.008881,263.049133,263.049133,4739000 -264.574188,266.740112,261.21106,264.315887,264.315887,5423800 -266.019806,270.729156,265.552826,269.526978,269.526978,5960000 -270.63974,271.653168,269.815125,271.573669,271.573669,7114500 -268.429138,273.173279,265.960175,271.568695,271.568695,4968800 -272.924896,277.455414,269.581635,271.548828,271.548828,5594200 -272.075409,275.706787,267.688934,267.857849,267.857849,5061300 -261.424683,262.681519,255.339264,258.647736,258.647736,8857800 -256.610992,261.509125,255.587646,261.057068,261.057068,5590600 -261.921448,264.743103,254.96669,264.226471,264.226471,5302500 -267.361084,271.757477,266.29303,267.927399,267.927399,6060900 -269.000397,270.252258,262.144989,262.711304,262.711304,4556000 -266.288055,266.913971,258.026794,262.045654,262.045654,5850900 -258.424194,260.306946,255.52803,255.855911,255.855911,5482500 -253.277679,254.345734,245.90065,246.158966,246.158966,9006900 -243.431717,250.093384,238.747177,249.328354,249.328354,8371600 -246.571289,252.259293,238.831635,250.719315,250.719315,9127100 -252.11026,255.950287,249.676102,255.691971,255.691971,6893100 -256.745117,258.568268,253.501221,255.895645,255.895645,5748800 -260.893127,266.998444,259.909546,266.849396,266.849396,4674500 -265.006378,271.633301,265.006378,269.834991,269.834991,5743800 -272.293976,275.821045,270.555298,272.477783,272.477783,6396800 -273.237854,277.693878,272.239349,277.688904,277.688904,11449000 -297.798096,297.862701,291.886566,293.928284,293.928284,17170600 -289.973999,294.002808,287.132477,289.323242,289.323242,8068500 -288.220398,294.365448,286.834412,293.347046,293.347046,7650900 -291.772308,294.117065,287.738525,288.473755,288.473755,5901100 -289.069885,292.542297,287.882599,289.949158,289.949158,6801800 -292.850281,294.459808,291.454376,293.337128,293.337128,6826000 -291.464294,298.046509,291.355011,296.282959,296.282959,6898300 -294.633698,295.577545,289.541809,289.695801,289.695801,5113900 -292.870148,293.183136,284.579102,291.26062,291.26062,5783400 -297.276489,299.402679,294.733032,297.400696,297.400696,7609600 -295.339111,299.203979,295.204987,298.130951,298.130951,5048500 -295.622253,297.90741,293.923309,294.405182,294.405182,5148800 -288.17569,290.86322,286.511505,287.455383,287.455383,6290700 -290.560181,292.080292,288.364471,290.520447,290.520447,4269300 -291.603394,296.819489,289.973999,296.819489,296.819489,5374200 -294.832397,297.932251,294.300842,296.14386,296.14386,5706300 -294.742981,302.423035,294.201508,302.199493,302.199493,6758400 -302.532318,305.199982,299.849762,304.191528,304.191528,6098100 -300.177643,302.726044,297.395721,298.533325,298.533325,7470200 -301.007233,301.017181,293.868652,295.61731,295.61731,5774000 -298.707184,304.067322,297.365936,302.209412,302.209412,8005600 -302.035553,307.042969,301.92627,304.519409,304.519409,6418800 -304.420044,307.042969,303.277466,306.287903,306.287903,5386700 -304.062378,307.152283,303.332123,303.759338,303.759338,5250900 -303.053925,304.166687,296.461792,298.493591,298.493591,7032000 -299.054932,300.296844,294.956604,295.517944,295.517944,6618000 -291.980957,292.348541,284.196564,288.592987,288.592987,6041500 -288.126007,290.594971,285.761383,288.126007,288.126007,4841900 -285.81604,288.250214,283.212982,283.212982,283.212982,4681700 -280.76886,285.279541,278.851349,279.680939,279.680939,3145000 -287.813049,292.507507,286.387329,292.19455,292.19455,5694500 -292.040558,293.272552,288.786713,289.581543,289.581543,3687300 -297.04303,297.817993,294.131958,297.758362,297.758362,6838000 -298.061401,306.009705,297.564636,304.901917,304.901917,7288300 -306.531311,309.983856,306.138855,308.175629,308.175629,8224400 -311.792084,313.908325,309.189026,310.803528,310.803528,6436400 -309.482117,312.278931,308.115997,309.869598,309.869598,4683100 -308.83136,310.808502,307.052917,309.680817,309.680817,4543900 -308.513428,311.697693,305.661957,306.034546,306.034546,4857500 -307.003235,312.532288,306.511444,311.6828,311.6828,5568300 -308.930695,311.066803,308.140839,310.674377,310.674377,4396100 -312.34848,316.223267,309.412567,310.793579,310.793579,8108700 -308.915802,310.142822,304.266052,307.038025,307.038025,7858100 -309.248627,309.983856,307.346008,307.76825,307.76825,4848500 -310.142822,312.626678,308.72702,310.95752,310.95752,8976600 -311.975891,312.219299,307.996765,308.905853,308.905853,4314700 -311.970917,313.87851,311.965973,313.148285,313.148285,4807400 -312.969421,313.868591,307.480133,310.88797,310.88797,5028200 -311.946106,313.823883,311.479126,312.81543,312.81543,3668200 -313.958008,315.289337,313.242645,314.524323,314.524323,2926200 -313.982849,320.162659,313.958008,318.056335,318.056335,3233700 -319.298279,320.416016,316.988312,317.783142,317.783142,4281900 -318.672333,319.422455,315.547668,319.12439,319.12439,3171200 -318.935638,321.290314,318.935638,320.863098,320.863098,3587600 -324.360352,331.916199,324.077179,330.555054,330.555054,7400800 -330.366272,332.959412,328.175537,331.980774,331.980774,5765200 -328.925659,329.839722,325.99472,327.375732,327.375732,6608400 -327.445282,327.867523,322.795532,322.90979,322.90979,5420700 -321.161163,321.409546,308.607819,309.218842,309.218842,11720900 -312.840271,314.852203,306.461761,309.556641,309.556641,8848200 -309.735474,312.661438,308.553162,310.95752,310.95752,4831000 -313.570526,314.400116,311.225769,312.785645,312.785645,3774700 -311.106537,311.44931,308.523346,310.475647,310.475647,4644500 -313.948059,313.948059,310.81842,312.259064,312.259064,3843300 -311.290344,314.951538,309.049927,314.410065,314.410065,5559200 -318.42395,318.42395,313.689758,317.718536,317.718536,12692600 -293.356995,293.590485,288.97052,291.101654,291.101654,21290100 -291.106628,292.42804,289.695801,290.868195,290.868195,6870100 -291.265594,291.941193,287.132477,288.588013,288.588013,6151200 -286.889069,287.485199,281.360016,282.904968,282.904968,10040200 -284.141937,285.38385,280.450928,282.214478,282.214478,6494300 -283.545807,288.284973,282.8255,288.116089,288.116089,7281900 -287.157318,288.126007,284.847351,286.978485,286.978485,4691200 -289.616333,290.113098,285.716675,288.180664,288.180664,4312500 -290.580048,290.858246,287.698792,288.53833,288.53833,4671500 -290.545288,291.310303,289.159302,290.66452,290.66452,4860700 -293.42157,296.605865,292.125,296.238251,296.238251,6378200 -295.58252,303.441406,295.085754,302.577026,302.577026,7407000 -301.613281,302.726044,299.92926,301.42453,301.42453,4211200 -302.353485,303.699738,300.416077,302.954559,302.954559,3696500 -304.032562,305.264557,302.532318,303.754364,303.754364,4558800 -301.975952,302.100128,300.048462,300.997314,300.997314,4680500 -303.277466,304.936676,303.039032,304.121979,304.121979,3656100 -303.794098,304.022614,300.426025,302.909851,302.909851,3630800 -304.484619,304.484619,299.33313,300.823425,300.823425,4883300 -299.46228,302.437927,296.933746,301.300323,301.300323,5094600 -300.530334,301.851746,299.253632,300.366394,300.366394,4929900 -299.983887,306.943634,299.492096,305.016174,305.016174,4993800 -304.002747,306.397186,301.394714,302.005737,302.005737,3959500 -301.538788,302.005737,298.23526,301.096649,301.096649,4136600 -301.712646,303.848755,300.798584,302.979401,302.979401,3896300 -301.335114,304.201477,300.575043,302.68631,302.68631,3651300 -303.029083,307.882507,301.876587,307.196991,307.196991,5732100 -307.3013,310.778687,305.761322,307.127441,307.127441,6314500 -309.119476,310.828369,307.077759,309.189026,309.189026,4504300 -308.990326,309.983856,308.155731,308.617737,308.617737,3167000 -308.210388,309.233734,303.71463,305.14035,305.14035,3207200 -302.060394,302.437927,295.001312,300.52536,300.52536,6390000 -302.557159,303.620239,300.972473,301.439423,301.439423,2545400 -303.04895,303.774231,301.215881,301.608337,301.608337,2708300 -302.010712,303.972961,298.061401,298.185577,298.185577,5375800 -298.061401,301.538788,297.693787,300.619751,300.619751,3359600 -302.408112,306.928711,300.818451,306.893951,306.893951,4520700 -305.512939,309.377808,304.747894,306.00473,306.00473,5911900 -306.30777,309.735474,305.428497,308.558136,308.558136,4901700 -308.438904,310.932678,308.021606,310.500488,310.500488,6140600 -309.546692,316.575989,308.612762,314.94162,314.94162,4373800 -313.421509,315.974884,311.608276,314.698181,314.698181,3100900 -315.254578,321.603271,314.211365,317.922211,317.922211,4971200 -317.187012,322.303711,313.461243,320.937622,320.937622,4851700 -321.210846,322.154694,318.379242,319.218781,319.218781,3905500 -320.416016,322.646484,317.703644,322.567017,322.567017,3661900 -321.424438,324.63855,320.31665,321.419464,321.419464,4040500 -323.908295,327.167084,323.436371,325.76123,325.76123,5110700 -324.608734,326.173553,320.068268,322.109985,322.109985,3873500 -323.769196,324.633575,318.428925,318.548157,318.548157,4651400 -318.314667,321.657928,315.368835,321.369812,321.369812,4598000 -320.61969,321.88147,317.256561,319.233704,319.233704,4116300 -317.16217,317.435394,313.510925,315.522827,315.522827,3276300 -314.07724,316.158691,312.254089,314.116974,314.116974,4667500 -312.209381,315.612244,310.624695,313.381744,313.381744,4393600 -314.713104,315.199921,310.25708,311.404602,311.404602,4996200 -314.936646,315.945068,313.61026,315.925201,315.925201,4426400 -319.099579,324.459717,318.06131,323.401581,323.401581,11588000 -321.68277,322.398102,309.755341,310.281921,310.281921,16424700 -309.487091,309.889465,298.886047,301.076782,301.076782,11458100 -302.313751,306.849243,301.543762,302.815491,302.815491,6087100 -302.060394,304.420044,299.457306,301.762329,301.762329,5373600 -300.888,306.138855,297.564636,297.713654,297.713654,6632000 -300.172668,302.457794,295.989868,296.104126,296.104126,6156600 -294.534332,297.291412,293.193054,296.869141,296.869141,4424000 -297.187073,301.35498,296.730072,298.692291,298.692291,3883200 -300.048462,303.699738,299.492096,302.889984,302.889984,3665800 -303.48114,307.003235,302.880066,305.746429,305.746429,4212100 -305.522858,306.377319,303.327148,305.502991,305.502991,3293900 -304.514435,306.049438,298.364441,300.470734,300.470734,4845900 -299.944153,303.823914,298.155792,300.262085,300.262085,4030600 -298.657532,302.090179,298.364441,301.667938,301.667938,3243900 -302.840302,305.428497,302.507477,303.535797,303.535797,3760200 -301.002258,301.980896,296.476715,296.556183,296.556183,4443500 -295.577545,303.312256,295.577545,301.812012,301.812012,4014800 -300.808533,306.456787,298.409149,304.41507,304.41507,5389400 -301.449371,306.198486,298.960541,302.606842,302.606842,4687800 -304.499512,306.104095,303.143341,304.84726,304.84726,3091700 -303.202942,305.289398,300.431,300.659485,300.659485,4226000 -298.448883,302.283936,298.349518,300.048462,300.048462,3672500 -300.719116,305.512939,299.924286,303.580505,303.580505,4231500 -306.983368,313.01413,305.979889,312.432922,312.432922,9732900 -314.867096,316.864105,308.607819,309.511932,309.511932,6751200 -310.530304,314.166656,296.422058,298.260101,298.260101,12024600 -298.314758,305.855713,298.061401,305.070801,305.070801,6190800 -304.737976,304.921783,296.07431,298.458801,298.458801,6143400 -298.881073,302.830383,296.630707,302.760834,302.760834,6397400 -302.611816,303.98288,297.500061,299.879578,299.879578,3807000 -298.558167,298.920807,292.239258,293.85376,293.85376,7210200 -295.97995,297.629211,292.259125,295.249695,295.249695,5245300 -292.179657,294.037567,289.879608,292.214417,292.214417,3838100 -292.457855,293.093719,287.629242,288.553253,288.553253,5975200 -284.047546,284.474762,282.338654,283.645172,283.645172,6155600 -283.267609,288.369446,283.1633,287.425568,287.425568,4896900 -285.865723,287.197052,281.404724,283.362,283.362,4710100 -286.37738,289.104645,284.95166,288.40918,288.40918,4218800 -291.901459,292.045532,286.759918,287.246735,287.246735,3539800 -286.064423,288.622772,285.433533,288.349579,288.349579,2839100 -290.217407,290.768829,281.514008,282.413177,282.413177,5356800 -283.044067,283.307373,277.485229,280.724152,280.724152,6490300 -279.045074,281.66803,277.534912,278.732117,278.732117,3933800 -278.836426,280.709259,276.461884,277.718719,277.718719,4720100 -278.359528,280.436035,276.745026,280.431061,280.431061,6041300 -279.492188,285.249725,277.818054,283.580566,283.580566,5026200 -284.941742,290.252197,284.708252,288.886078,288.886078,4179300 -288.031647,288.126007,284.901978,286.889069,286.889069,4723700 -288.046539,288.046539,280.043579,280.778809,280.778809,4048700 -282.164795,283.893555,281.081848,283.893555,283.893555,4484700 -281.83194,282.209503,276.874207,278.538391,278.538391,3183600 -279.561707,281.469299,277.932312,280.515503,280.515503,2717900 -282.015747,285.140442,281.181183,282.810577,282.810577,3406500 -281.121582,281.285522,276.804657,280.331726,280.331726,3866700 -285.622314,288.190613,284.251221,288.160797,288.160797,5071700 -289.030151,289.616333,286.387329,288.359497,288.359497,3332400 -288.130981,292.303833,287.132477,292.015717,292.015717,2394400 -292.477722,298.091217,292.368439,296.034576,296.034576,4722100 -294.310791,294.842346,289.526917,291.09671,291.09671,4351600 -290.585022,292.398224,288.746979,291.111603,291.111603,3452500 -293.18808,294.300842,287.500092,288.97052,288.97052,3871100 -286.287964,287.057953,280.644684,283.749481,283.749481,7044000 -281.727631,284.117096,279.228882,283.39679,283.39679,4649500 -284.226379,287.703766,282.438019,286.397247,286.397247,3977600 -286.322754,287.723633,284.042572,285.602417,285.602417,2944200 -287.3461,288.458862,282.363495,286.501587,286.501587,3382000 -286.625763,289.959106,286.203522,288.503571,288.503571,3116400 -291.176178,297.306305,291.106628,294.613831,294.613831,9410100 -302.413086,304.489594,297.157288,303.436432,303.436432,13011400 -298.299835,307.177124,297.192047,305.766296,305.766296,7169600 -305.512939,306.968475,300.217377,301.82193,301.82193,4044900 -302.194519,304.70816,300.729034,302.030579,302.030579,3669600 -305.512939,306.441895,303.043976,304.698242,304.698242,3392200 -307.445374,315.448303,306.754852,315.428436,315.428436,7145500 -315.96991,319.223755,312.716095,314.107025,314.107025,4401800 -312.100098,316.193481,312.080231,314.43988,314.43988,3755400 -316.590881,317.688751,313.649994,314.295807,314.295807,3713100 -310.733978,316.953522,309.690765,312.343506,312.343506,3981000 -317.932159,319.780151,316.014618,318.592865,318.592865,3818800 -317.738403,322.591858,317.544678,319.333038,319.333038,3587800 -318.821381,320.048401,316.178558,318.200409,318.200409,3989200 -317.460236,320.848206,317.187012,319.039948,319.039948,2661500 -320.172577,321.096588,318.687256,319.099579,319.099579,2154400 -317.23172,319.044922,316.009674,318.92569,318.92569,2887700 -321.618195,327.942047,321.25058,327.872498,327.872498,6578200 -327.494965,334.251007,327.370758,332.169556,332.169556,7371000 -332.974335,334.946503,329.904297,331.61319,331.61319,4852700 -331.598267,335.140228,331.384674,334.260956,334.260956,3457700 -334.881927,336.436798,333.679749,336.382172,336.382172,4383600 -335.567444,337.241577,334.156647,335.587341,335.587341,3539000 -334.380188,336.809387,328.945526,332.591797,332.591797,4473200 -331.533691,338.100983,331.195892,336.402039,336.402039,3843100 -334.956421,338.041382,333.332001,336.213257,336.213257,3591500 -335.617126,338.026459,334.86203,337.122345,337.122345,2871700 -329.352875,333.828766,327.48999,332.447754,332.447754,5261300 -330.351379,336.620605,330.222229,336.436798,336.436798,4143900 -336.496429,342.26886,335.89035,341.782043,341.782043,6019400 -339.90921,341.47403,337.892334,338.637482,338.637482,3274900 -339.790009,342.065186,337.822784,340.331482,340.331482,4281700 -340.063202,340.286774,334.573914,338.31955,338.31955,3803600 -337.802917,341.031921,337.375702,338.160583,338.160583,3438500 -340.763672,347.683655,340.152649,347.440247,347.440247,6126500 -347.738312,353.82373,346.580811,350.793427,350.793427,6507900 -352.586761,354.101898,346.938507,348.120819,348.120819,5153200 -346.724884,348.061188,343.267365,343.858521,343.858521,3771800 -342.477509,345.209747,338.240082,343.207764,343.207764,5318900 -344.305634,352.209229,343.038849,350.73877,350.73877,5352600 -352.507294,354.196289,351.220642,352.547028,352.547028,5270900 -351.76709,354.136688,350.222137,352.696045,352.696045,3036100 -351.603149,357.007996,351.106384,356.819244,356.819244,4160400 -356.431763,361.926025,355.890289,361.399445,361.399445,6236800 -359.894226,363.326904,358.279724,361.707428,361.707428,5852500 -363.739227,365.08548,362.700989,364.623474,364.623474,12800800 -363.138123,372.596619,362.765564,372.268738,372.268738,7173800 -374.091888,379.973633,371.414307,372.159454,372.159454,12195800 -372.502228,378.160431,368.105835,374.295563,374.295563,11419500 -377.519592,378.955261,373.396423,375.805756,375.805756,7913300 -374.638336,377.196686,373.148041,374.812195,374.812195,5603000 -377.07251,380.02829,375.661682,378.42868,378.42868,6377200 -380.127625,380.520081,372.710876,376.049164,376.049164,5616600 -375.418274,379.49176,373.669647,378.786346,378.786346,4445300 -378.910553,382.457489,377.246368,381.543427,381.543427,4940200 -382.864838,384.687988,380.033264,381.344727,381.344727,5507300 -378.041199,379.322876,374.638336,376.471405,376.471405,3942600 -377.380493,378.200165,368.865875,369.640839,369.640839,6045500 -368.533051,371.349731,366.759583,369.874329,369.874329,4106200 -374.017365,376.799286,372.720825,373.311951,373.311951,4798700 -373.495758,374.996002,369.645813,369.968719,369.968719,4839700 -368.572784,369.511688,362.989105,368.095886,368.095886,6077300 -367.673645,371.081482,365.850494,369.943878,369.943878,4143100 -369.571289,375.726257,367.73822,375.304016,375.304016,4615500 -375.328857,377.256317,335.815826,345.254456,345.254456,25046500 -350.510254,351.06665,333.828766,338.692139,338.692139,23113700 -338.304657,340.102966,332.686188,337.142212,337.142212,8163900 -333.83374,341.444244,333.828766,337.976776,337.976776,5871100 -341.180939,341.280304,335.453186,336.461639,336.461639,5025400 -337.802917,338.796448,334.578888,336.690155,336.690155,4833300 -336.06424,339.308136,333.431335,335.393585,335.393585,3927000 -337.733368,338.299683,335.319061,337.951935,337.951935,3093900 -337.554535,343.217712,337.167053,341.573395,341.573395,4126800 -345.150116,345.527679,341.464111,341.737335,341.737335,4678900 -340.038391,341.210754,335.59726,339.273346,339.273346,3292900 -340.525208,341.031921,336.585846,338.657349,338.657349,3186000 -335.319061,336.923645,331.091583,331.404541,331.404541,4493500 -332.93457,333.575409,323.510864,324.037445,324.037445,5227600 -325.209808,332.01059,323.048889,329.372742,329.372742,6268700 -329.730408,332.73587,328.299713,330.798462,330.798462,2830000 -329.357849,331.642975,326.988251,327.395599,327.395599,3209000 -328.195404,328.9505,323.148224,324.166595,324.166595,3358400 -322.899841,327.867523,319.869568,321.538696,321.538696,3721700 -320.907806,324.400085,315.945068,321.498962,321.498962,6920900 -325.731445,332.298706,325.646973,331.946014,331.946014,4767200 -332.591797,336.809387,330.137787,332.820313,332.820313,4204400 -332.333496,332.73587,328.066254,330.783569,330.783569,4251800 -332.820313,332.835236,330.897827,331.826782,331.826782,1856900 -331.066742,331.34491,327.380707,328.438812,328.438812,4437900 -327.951996,335.319061,326.873993,333.187927,333.187927,5049900 -331.846649,340.242065,329.799957,339.626068,339.626068,6123500 -341.667786,344.708008,338.796448,343.709503,343.709503,5589000 -343.421387,347.35083,340.629547,346.928558,346.928558,6368200 -348.851074,350.664276,344.812317,345.378632,345.378632,4413400 -345.254456,345.507813,340.634491,343.282288,343.282288,4009200 -343.838654,345.006073,338.960388,341.687653,341.687653,3749000 -341.573395,345.557495,340.043335,343.33197,343.33197,2943600 -345.254456,346.188385,339.005096,339.894318,339.894318,3863500 -340.480499,343.590271,339.685669,340.495392,340.495392,2751100 -342.770599,348.692108,341.63797,346.188385,346.188385,5410000 -347.355774,349.481964,344.499359,346.526184,346.526184,4883500 -355.646851,355.920074,347.51474,349.079559,349.079559,6934500 -347.325989,351.623016,346.958374,348.711975,348.711975,4287800 -350.47052,358.627472,349.735321,358.061157,358.061157,6110100 -355.98465,362.194275,355.214661,358.205231,358.205231,6048900 -358.026398,359.163971,356.024414,357.728333,357.728333,3862100 -359.293152,359.983643,356.168457,358.846039,358.846039,3335500 -354.678162,357.087494,352.964294,355.502808,355.502808,7097700 -354.946411,355.279236,351.449158,352.457611,352.457611,1692600 -351.747223,354.136688,348.935516,352.144653,352.144653,2380000 -351.285217,352.12973,347.047791,350.862976,350.862976,3316100 -348.57785,351.170959,347.743256,347.743256,347.743256,2822200 -347.738312,352.989136,345.751221,351.404449,351.404449,4020600 -357.385559,361.151062,355.959839,359.288177,359.288177,5115500 -360.122742,363.600128,358.031342,359.496826,359.496826,4666500 -362.313507,368.339294,361.488861,366.600616,366.600616,5562800 -365.348755,367.301056,362.929504,365.001007,365.001007,3332900 -365.393463,365.771027,359.874359,364.280701,364.280701,3373900 -363.769043,366.789398,361.945892,366.67514,366.67514,4075700 -369.014923,370.092896,364.380066,368.344269,368.344269,3695100 -368.6026,368.816193,365.771027,367.604095,367.604095,2587000 -366.118744,368.701935,358.841095,359.288177,359.288177,5765000 -357.340851,365.125214,353.749207,360.122742,360.122742,7906300 -358.865936,359.829651,354.529144,355.28421,355.28421,4073100 -356.536072,357.494843,353.212677,353.361725,353.361725,4451700 -352.884827,354.082031,348.398987,349.978729,349.978729,6495500 -350.053253,350.391052,345.512787,349.164032,349.164032,7634000 -365.617004,372.079987,365.51767,368.354218,368.354218,11895000 -368.225037,375.969666,367.862396,374.668152,374.668152,6809200 -372.959259,376.789337,372.700928,374.399902,374.399902,4480700 -373.45105,375.358643,371.528564,372.939392,372.939392,3275300 -370.96225,376.029297,370.857941,374.404846,374.404846,3516800 -374.434662,378.016357,374.022339,374.47937,374.47937,3488500 -372.830109,376.362122,372.700928,375.403351,375.403351,3289500 -376.650238,385.790802,376.600586,385.294037,385.294037,7540700 -381.364594,382.745605,376.685028,377.057617,377.057617,6120500 -378.105774,383.063538,377.281158,380.395905,380.395905,3765600 -377.082428,383.982574,376.799286,382.596588,382.596588,4183200 -382.363098,386.888672,380.276672,384.474365,384.474365,5717300 -387.544403,390.793274,387.26123,390.147461,390.147461,6079300 -386.684998,388.970123,384.375,388.682007,388.682007,4363700 -388.349152,391.404297,387.16684,387.827545,387.827545,3742100 -387.544403,390.137543,387.464905,388.900574,388.900574,2411800 -387.345703,391.821564,386.372009,391.364563,391.364563,3493100 -391.155914,394.066986,390.991974,393.883179,393.883179,5495000 -395.423157,400.892578,395.070435,400.818054,400.818054,5901700 -400.048065,401.871216,393.336731,393.669556,393.669556,5564200 -396.421661,400.122589,393.053558,395.194641,395.194641,7058300 -397.047577,398.036163,394.335236,397.271149,397.271149,4134400 -398.55777,401.593018,392.690918,392.830017,392.830017,4637700 -394.931366,395.40329,389.665588,392.512085,392.512085,4433600 -394.832001,399.774841,392.998932,397.305908,397.305908,4078500 -397.961639,400.887604,397.92688,398.011322,398.011322,4561000 -396.322296,400.962128,395.502625,400.490204,400.490204,4379000 -400.048065,408.761414,399.899048,408.095734,408.095734,5587200 -411.786713,417.360474,411.77182,416.590485,416.590485,8140700 -417.797638,419.273041,411.727112,413.003815,413.003815,5783200 -414.335144,415.606873,412.109619,413.609863,413.609863,4132000 -414.553741,414.76236,409.859253,413.073364,413.073364,5861600 -413.157806,417.136932,413.063416,414.712708,414.712708,3210000 -412.670959,413.257172,409.173706,411.130981,411.130981,4042700 -411.275055,412.661041,408.498108,409.988434,409.988434,3303800 -410.822998,410.822998,406.054016,408.115601,408.115601,3323800 -406.605438,407.499603,404.042084,404.518982,404.518982,6239600 -399.899048,403.753967,398.145447,401.285034,401.285034,3700400 -402.998871,406.977997,400.619354,403.038635,403.038635,4223600 -405.775818,406.113617,403.098236,404.722656,404.722656,2946600 -403.023712,405.820526,402.30838,403.00882,403.00882,2974300 -404.737579,404.985962,402.204041,402.536896,402.536896,2995600 -403.580109,406.968079,400.803162,402.204041,402.204041,3446200 -404.121582,404.369965,401.285034,403.585083,403.585083,2399200 -400.733612,400.892578,398.075897,398.736603,398.736603,4354400 -399.397308,400.082855,394.086853,394.528961,394.528961,4605200 -394.93631,398.532928,394.062012,398.006348,398.006348,3638100 -399.670532,404.782288,399.402283,403.893066,403.893066,4109500 -404.101715,404.46933,397.748047,400.495178,400.495178,3499500 -399.526459,400.271606,393.093292,394.966125,394.966125,4926900 -390.490234,390.95224,385.691437,388.994965,388.994965,6912300 -386.858856,387.256256,381.717285,384.921448,384.921448,5700900 -385.244354,389.342712,384.057068,386.312408,386.312408,4342600 -388.930389,393.614929,385.492737,392.536926,392.536926,3982800 -393.878204,393.987488,389.496704,392.641235,392.641235,4083700 -393.436066,393.490723,388.935364,392.472351,392.472351,3294500 -390.435608,395.924896,385.999451,388.438568,388.438568,4938000 -390.75354,395.428131,389.427155,394.121613,394.121613,3506500 -390.833008,392.864807,386.53595,388.751556,388.751556,4100300 -390.137543,390.361084,378.17038,380.480347,380.480347,6688100 -382.094849,399.124084,380.654205,397.350616,397.350616,11681800 -397.713257,399.382416,384.995972,397.469849,397.469849,5804200 -397.911957,405.115112,397.594025,401.339661,401.339661,4614200 -401.444,406.357025,401.389343,404.096741,404.096741,3681900 -405.487701,405.596985,401.205536,401.935791,401.935791,4010200 -401.190643,401.260193,395.716248,398.120605,398.120605,5007600 -399.029694,408.691864,398.905518,406.883606,406.883606,4631500 -406.853821,411.145905,406.198059,409.620819,409.620819,4643300 -408.970032,409.695313,405.542328,407.564178,407.564178,2928800 -407.400269,414.578552,406.878632,412.124542,412.124542,4062700 -415.775787,420.663971,415.298889,420.127472,420.127472,5057800 -421.389282,428.14035,421.389282,427.991333,427.991333,4310300 -428.716614,429.143829,422.586487,425.845276,425.845276,3943400 -425.731018,434.116486,423.699249,433.99231,433.99231,4968600 -432.606323,436.987823,431.309753,432.924255,432.924255,4429700 -434.826874,437.424957,433.262054,437.270966,437.270966,3820000 -436.605316,438.383728,433.868103,435.929688,435.929688,2915700 -435.914795,441.473633,435.735962,440.683777,440.683777,3179000 -444.856628,455.229187,444.121429,454.985748,454.985748,8023600 -456.530701,457.017548,448.090607,449.014587,449.014587,6460900 -452.069733,453.793518,447.350403,451.652435,451.652435,5620200 -449.575928,457.325531,449.575928,451.329529,451.329529,4574800 -451.076172,452.88443,445.904816,450.554565,450.554565,3991600 -448.363831,451.71701,440.574493,441.836273,441.836273,5154400 -435.666412,442.104523,434.176117,438.542694,438.542694,4579700 -434.802032,436.570526,432.690765,433.838287,433.838287,4623400 -438.895416,443.1875,437.355438,437.787628,437.787628,4544300 -435.025574,436.158203,429.352478,431.349487,431.349487,4052900 -432.149292,436.61026,430.40564,432.566559,432.566559,4268900 -431.255096,435.666412,430.957031,432.795074,432.795074,3964400 -433.679321,434.161194,424.747437,431.011688,431.011688,4983500 -431.120972,432.482117,424.275482,426.774231,426.774231,3761400 -428.468231,431.915802,425.795624,427.072296,427.072296,4240900 -429.357452,430.365875,420.87262,429.526337,429.526337,5191600 -432.397675,437.156708,429.864136,437.022583,437.022583,5383900 -438.199921,442.621185,437.201416,442.233704,442.233704,4705900 -439.128876,440.634094,436.918274,437.062317,437.062317,3538000 -439.86908,440.137329,432.015167,433.172638,433.172638,4438300 -431.682312,436.987823,429.953552,435.666412,435.666412,4166600 -437.20639,439.491516,434.240692,434.692749,434.692749,4519100 -436.7742,441.841248,436.302277,440.261536,440.261536,4320300 -441.453766,447.588867,441.304749,447.400085,447.400085,4361900 -447.772675,452.477081,445.850189,447.429901,447.429901,5869700 -444.106506,447.588867,438.801025,439.511414,439.511414,6787800 -441.299774,442.064789,433.714111,437.618713,437.618713,8016200 -433.122955,435.328613,428.835846,432.084717,432.084717,6072900 -435.795563,436.997742,429.461761,430.3013,430.3013,5139600 -434.05191,436.163177,432.472198,434.002228,434.002228,3686500 -436.560608,439.486572,435.492554,435.701172,435.701172,3877900 -434.623199,438.07077,434.270477,437.340515,437.340515,4729000 -440.36087,443.157684,439.640564,441.071259,441.071259,3471900 -442.223755,442.621185,435.800537,438.30426,438.30426,3807400 -437.107025,441.712097,436.41156,440.350952,440.350952,2107500 -442.129364,444.81192,440.803009,443.858124,443.858124,3425900 -446.699646,450.206848,445.641541,449.620636,449.620636,3964600 -452.556549,453.525269,446.088623,449.69516,449.69516,3984400 -448.805939,452.626099,447.280884,450.067749,450.067749,3438900 -453.550079,457.429871,451.324554,457.146698,457.146698,5201900 -457.027466,458.517792,454.662842,458.517792,458.517792,5169800 -459.163574,461.001617,455.219238,459.35733,459.35733,3946400 -460.569427,460.986725,453.997192,456.83374,456.83374,3991600 -457.524231,460.435303,455.189423,456.307159,456.307159,3031700 -456.525726,457.027466,448.676788,452.397583,452.397583,7316100 -440.440369,448.557556,434.975891,445.403076,445.403076,14814300 -448.085632,453.386169,445.601776,452.407532,452.407532,5844100 -452.407532,453.550079,446.878479,448.979828,448.979828,4117900 -450.698639,452.208832,447.43985,448.532715,448.532715,4184000 -444.046906,445.527283,440.177063,440.981842,440.981842,6041100 -440.62912,442.119446,438.150269,439.814423,439.814423,3578400 -439.590881,444.518829,437.598846,438.284393,438.284393,3808200 -439.86908,444.911285,437.588898,442.581421,442.581421,3534000 -443.609741,445.358368,440.226746,441.006683,441.006683,4375200 -444.608246,449.352386,444.608246,449.188477,449.188477,4304500 -448.800995,450.569489,447.499451,450.355865,450.355865,3450000 -449.769684,449.834259,446.694672,449.575928,449.575928,2636300 -449.421936,451.91571,444.970886,445.388184,445.388184,3031700 -444.628113,446.322113,441.672333,442.447296,442.447296,2776200 -444.851654,445.025543,439.784637,443.445801,443.445801,2995200 -442.402588,444.866577,442.12442,442.328094,442.328094,2664500 -440.584412,440.634094,437.976379,439.893921,439.893921,2771800 -440.549652,441.379242,435.268982,437.777679,437.777679,2858000 -436.346985,437.270966,430.778198,432.094635,432.094635,4191400 -429.427002,429.665436,426.227814,427.052429,427.052429,3762600 -427.857208,428.433441,425.502502,425.68631,425.68631,3371900 -426.08374,433.182556,425.95459,430.028076,430.028076,3645300 -431.369354,433.237213,428.979889,429.913818,429.913818,2481900 -432.511932,435.621704,430.450348,431.856201,431.856201,3537400 -433.530304,434.548676,432.313232,434.032043,434.032043,1751000 -436.078735,436.163177,432.06485,432.293335,432.293335,2168100 -432.189026,434.623199,430.226776,430.395691,430.395691,2118600 -427.032562,429.07428,421.210419,422.328156,422.328156,3490700 -422.377838,424.941162,421.145844,421.533325,421.533325,2677000 -421.791656,427.410095,421.553192,424.951111,424.951111,2976100 -425.115051,426.247681,420.048004,420.713654,420.713654,3747400 -424.419556,430.296326,424.215881,427.410095,427.410095,4121700 -427.395203,433.927704,424.82193,432.998749,432.998749,4108800 -433.927704,437.097107,432.988831,436.938141,436.938141,2599200 -438.368835,439.034515,434.046936,436.948059,436.948059,3143400 -439.009674,442.000214,438.358887,441.155701,441.155701,2485100 -442.134338,443.11795,439.143799,441.463715,441.463715,2591800 -441.399109,445.586884,440.177063,445.199402,445.199402,3242100 -445.800507,446.048889,442.129364,443.644531,443.644531,2205100 -444.359863,444.946045,439.561066,441.662415,441.662415,2667900 -445.204376,445.601776,439.575989,441.011658,441.011658,2690300 -440.837769,441.324615,437.653473,440.191986,440.191986,2535100 -440.311188,449.06427,438.681793,448.741364,448.741364,3894500 -450.067749,450.067749,444.806946,446.292297,446.292297,3216400 -446.292297,449.143738,444.91626,448.637054,448.637054,8746900 -445.179535,447.881958,439.739929,440.385712,440.385712,3577800 -440.385712,442.174072,437.852203,440.554626,440.554626,2992800 -440.410553,440.410553,434.970947,435.78067,435.78067,3319300 -436.312195,438.522827,434.672882,436.24762,436.24762,2536100 -434.583466,435.924744,432.839783,435.363373,435.363373,2533900 -431.731995,437.574005,431.349487,435.124939,435.124939,3467100 -437.280914,440.966949,437.181549,440.634094,440.634094,3391400 -438.512909,441.806488,436.073761,441.125916,441.125916,3009900 -441.130859,444.161163,433.232239,435.214355,435.214355,4261500 -434.672882,435.919769,432.189026,433.356445,433.356445,2733600 -430.922272,434.171143,429.263062,430.072784,430.072784,2603900 -429.864136,430.192017,423.063385,424.076782,424.076782,3912500 -425.373352,428.537781,418.766327,425.164703,425.164703,5337000 -429.128937,431.607819,427.325653,431.314728,431.314728,4539800 -430.216858,433.917786,429.854218,433.177612,433.177612,2836100 -430.529816,435.293823,429.898926,435.224274,435.224274,2503300 -435.050415,439.953522,434.176117,438.155212,438.155212,3204400 -440.072754,446.262482,439.148773,446.113464,446.113464,4041300 -443.609741,445.552124,440.003204,441.523315,441.523315,8568500 -485.134674,504.449036,483.852997,502.437134,502.437134,23283100 -502.461975,506.207611,496.545441,498.408325,498.408325,7303700 -499.252838,503.22699,494.677612,500.246368,500.246368,4445900 -497.265778,514.031738,497.08197,512.372498,512.372498,5361000 -512.601013,516.922913,509.088867,509.461456,509.461456,4211200 -511.085876,511.085876,502.104309,504.319885,504.319885,4087300 -504.319885,508.408295,503.222015,504.22052,504.22052,2332400 -506.257294,515.119629,503.475372,514.771912,514.771912,3230800 -515.363037,515.402771,509.684998,511.880707,511.880707,2665300 -511.140533,517.394836,508.676544,511.960205,511.960205,3301200 -512.561279,514.65271,509.237885,510.20163,510.20163,2583200 -512.417236,512.849426,507.71283,509.739624,509.739624,2292300 -506.878235,512.49176,505.422699,507.459473,507.459473,2378000 -509.486298,510.181763,504.404327,508.070496,508.070496,1837600 -508.000946,508.656677,500.564301,500.718323,500.718323,3381000 -501.115723,505.959229,500.991547,504.732208,504.732208,2598200 -501.493256,504.682526,500.743134,502.029785,502.029785,2239600 -500.594116,505.492249,499.252838,502.620941,502.620941,2451900 -500.122192,513.08783,499.997986,512.899109,512.899109,3179200 -513.619385,516.515564,511.845947,514.270142,514.270142,2348500 -514.091309,515.64624,511.82605,513.440552,513.440552,2569100 -514.528503,520.981506,511.294525,512.442078,512.442078,3542200 -512.526489,514.031738,508.219513,509.287567,509.287567,2277800 -511.647217,513.341187,506.883209,507.851898,507.851898,1939800 -510.181763,515.800232,509.684998,513.693909,513.693909,2197700 -513.371033,514.737122,511.284576,512.610962,512.610962,2524600 -515.228943,523.192139,514.165833,519.585571,519.585571,3246900 -520.911987,527.320313,518.100281,525.785278,525.785278,4602200 -527.583557,530.549316,526.575134,528.120117,528.120117,2261700 -527.648132,529.86377,526.301941,526.37146,526.37146,2401000 -528.318787,529.729614,521.984985,523.832947,523.832947,2764200 -522.079407,528.283997,521.120605,523.226929,523.226929,3373900 -522.288025,528.552307,521.607422,525.671021,525.671021,2398600 -525.184204,526.40625,522.148926,525.253723,525.253723,2282000 -531.438477,531.542847,526.614868,531.478271,531.478271,2876100 -532.034607,537.658081,530.559204,535.586548,535.586548,2984400 -534.597961,542.625732,534.349548,538.825439,538.825439,3731800 -540.186584,542.133911,534.111145,535.164246,535.164246,3445800 -536.296875,537.971008,531.046082,531.522949,531.522949,3213600 -534.225403,534.66748,525.526978,526.96759,526.96759,4352800 -528.562195,533.872681,527.573669,533.023193,533.023193,3224800 -532.943726,536.888062,530.738037,531.473267,531.473267,3091300 -532.461853,538.969543,526.098267,538.870178,538.870178,4449300 -536.893005,542.466797,536.053467,539.600403,539.600403,3353000 -540.633728,547.0271,540.48468,546.753906,546.753906,6565600 -550.340576,554.294861,548.98938,553.947083,553.947083,3465500 -553.882507,554.016663,550.469727,552.327637,552.327637,1477800 -553.40564,555.884521,550.762817,555.119507,555.119507,2692900 -556.381287,556.520386,552.874084,555.586426,555.586426,3159800 -556.550171,556.629639,550.926758,551.145325,551.145325,2488100 -552.526367,556.878052,549.555664,556.734009,556.734009,2733400 -554.125916,555.26355,550.549194,552.963501,552.963501,3666400 -553.897461,554.856201,548.894958,548.929749,548.929749,3355000 -552.908875,555.814941,549.645081,555.049927,555.049927,3561600 -558.865112,566.162659,556.95752,565.750366,565.750366,5138400 -569.297241,569.953003,562.983337,566.927673,566.927673,4514100 -568.025513,568.413025,559.143311,561.468201,561.468201,4196000 -565.859619,565.859619,557.499023,561.438354,561.438354,4314700 -559.595398,569.749329,554.975403,557.861633,557.861633,4869100 -565.298279,571.781128,560.400146,570.986267,570.986267,4997400 -572.769714,573.768188,568.199402,570.598816,570.598816,3925700 -570.83728,575.223694,570.290833,574.374268,574.374268,3389600 -574.687195,576.565002,568.403076,571.547607,571.547607,5437700 -576.71405,578.239136,571.930176,578.090088,578.090088,3985400 -579.535706,580.17157,575.68573,578.745789,578.745789,3163200 -576.252014,577.489014,573.4552,576.301697,576.301697,3923400 -571.786072,573.047852,557.871582,558.283875,558.283875,7835500 -559.41156,559.610291,537.638184,547.056946,547.056946,8763800 -551.572571,559.237671,551.383789,557.876526,557.876526,4449100 -555.944092,557.25061,546.157776,549.883545,549.883545,4790600 -568.800476,572.521301,559.982849,564.02655,564.02655,10248900 -581.890381,589.436279,571.845703,586.669312,586.669312,11204900 -585.789978,587.04187,562.347473,563.052856,563.052856,9197600 -565.318176,573.768188,564.831299,565.402588,565.402588,5660300 -567.995728,571.66687,560.365356,567.906311,567.906311,4820000 -571.845703,576.331543,570.067261,576.232178,576.232178,3918300 -580.042358,585.144226,576.530212,584.91571,584.91571,5306500 -582.113892,587.379639,580.73291,582.675232,582.675232,3915500 -586.271851,592.084045,582.317566,591.244507,591.244507,4128200 -590.658325,591.15509,586.872986,589.510803,589.510803,3471300 -586.559998,596.07312,586.018494,596.07312,596.07312,3696500 -593.941956,598.303589,592.546082,597.513733,597.513733,4401800 -596.823242,602.516235,596.122803,601.527649,601.527649,4245100 -598.755676,600.703003,594.880859,597.285217,597.285217,4234500 -597.682678,599.545532,596.232056,598.16449,598.16449,3423700 -600.002563,601.025879,597.53363,598.005554,598.005554,3748800 -598.785461,606.137634,598.656311,602.337402,602.337402,3370300 -604.041321,608.29364,601.299133,606.058167,606.058167,2896000 -608.045227,610.469482,602.958313,606.142639,606.142639,3990000 -605.258362,608.159485,604.572815,605.66571,605.66571,2536300 -606.227051,608.139648,599.212708,603.897217,603.897217,4657300 -599.476013,600.017456,592.218201,597.459106,597.459106,4236900 -603.574341,604.071106,600.842102,603.529602,603.529602,2954400 -603.599182,607.588196,601.790955,605.193787,605.193787,2486500 -607.190796,609.113281,605.362671,605.864441,605.864441,2552600 -609.436218,609.530579,601.805847,603.470032,603.470032,3049900 -603.917114,604.885803,598.154602,601.870422,601.870422,2444900 -602.963318,603.236511,594.453674,596.117798,596.117798,3448200 -594.334412,600.022461,588.26886,599.749207,599.749207,3954000 -600.072083,601.338867,588.552063,590.688171,590.688171,4721500 -587.175964,591.58728,582.476563,582.610657,582.610657,4617500 -585.814819,594.667236,585.248535,592.198303,592.198303,4352200 -593.475037,601.850525,592.675232,601.716431,601.716431,3653500 -601.98468,602.079041,593.345886,595.750244,595.750244,3246700 -596.097961,600.896729,593.81781,594.711975,594.711975,3391200 -599.257385,600.906677,587.40448,587.697571,587.697571,6458700 -588.26886,588.621582,569.272461,575.223694,575.223694,6113500 -579.232666,581.140259,569.794067,575.61615,575.61615,4851700 -577.250549,581.999634,562.094116,562.327576,562.327576,5193400 -564.893921,564.893921,549.896362,555.406067,555.406067,13100 -558.131104,563.33252,555.614929,556.927734,556.927734,41300 -563.789978,563.899353,553.88446,553.924255,553.924255,10800 -555.654724,565.341431,555.654724,564.058533,564.058533,7900 -596.708984,601.522522,559.115662,563.899353,563.899353,147500 -566.733765,584.068481,561.045044,566.62439,566.62439,5113100 -571.507568,574.610474,540.03064,540.169861,540.169861,6386800 -537.782959,545.480652,524.267273,535.207153,535.207153,4413700 -539.632813,551.965027,538.648193,551.86554,551.86554,3159900 -556.559753,562.27832,549.926208,561.054993,561.054993,3339900 -561.910339,561.910339,536.947571,537.991821,537.991821,4047900 -529.637756,537.046997,523.650696,527.698425,527.698425,3935600 -535.30658,541.124634,526.664124,529.60791,529.60791,2582100 -533.884399,535.505493,515.624817,533.50647,533.50647,3865600 -540.03064,553.954041,537.046997,553.496582,553.496582,4906600 -545.808838,546.495056,528.245422,533.168335,533.168335,6828200 -533.168335,533.765076,522.725769,525.729248,525.729248,2573700 -525.749146,534.292175,524.625305,531.885437,531.885437,2371800 -530.870972,530.950562,523.372192,524.058472,524.058472,2057900 -527.171326,528.742676,519.264832,522.288208,522.288208,1888300 -519.652649,521.830688,512.60144,513.3573,513.3573,2106100 -514.351807,515.764038,500.050446,514.32196,514.32196,3344700 -514.073364,526.564636,513.496521,524.81427,524.81427,2706400 -524.714844,525.112671,519.662598,523.779968,523.779968,1755900 -524.227539,530.015686,521.015198,528.444336,528.444336,1910700 -530.841125,531.079834,522.735718,525.04303,525.04303,1693100 -521.950012,526.007751,518.469177,524.923706,524.923706,1026900 -522.357788,523.929138,512.243408,512.322998,512.322998,1693600 -512.969421,513.854553,500.547729,507.171295,507.171295,3233200 -505.679504,514.40155,503.680481,508.205627,508.205627,2026800 -507.95697,517.056946,501.44281,515.893311,515.893311,2446100 -520.647217,527.290649,516.171814,527.022156,527.022156,1917800 -527.986816,533.138489,526.61438,530.174805,530.174805,1657900 -530.085327,530.085327,522.41748,523.77002,523.77002,1195000 -522.825195,522.994324,514.590515,517.136536,517.136536,1709000 -518.538818,518.946533,512.621338,517.782959,517.782959,1489300 -516.858032,526.882935,514.752625,525.967957,525.967957,1281200 -526.84314,533.297668,523.421936,526.872986,526.872986,1789600 -529.98584,536.234497,529.001282,535.992798,535.992798,1199500 -538.170837,544.605469,537.822754,542.079346,542.079346,1620200 -544.267334,550.612427,540.726807,549.677551,549.677551,1937400 -552.959534,562.904846,551.318542,562.855103,562.855103,2109900 -561.482666,564.734802,557.93219,558.608459,558.608459,1656500 -560.269348,560.915771,555.654724,557.017212,557.017212,1357800 -557.733276,558.280273,552.869995,556.828247,556.828247,1776000 -557.63385,557.832764,542.745667,550.900879,550.900879,1438900 -547.976929,549.319519,539.583069,541.960022,541.960022,1871700 -538.538818,545.609924,535.803833,541.681519,541.681519,1821400 -543.412048,551.915283,541.472717,550.871033,550.871033,1693700 -555.00824,555.00824,545.928223,553.28772,553.28772,1741500 -554.103271,559.821777,552.999329,559.046082,559.046082,1471500 -557.444885,560.517944,554.849121,557.484619,557.484619,1355400 -554.948608,556.818298,551.984863,555.783997,555.783997,1103100 -554.252441,554.93866,545.460754,548.334961,548.334961,1462400 -549.23999,549.279785,542.576599,548.742737,548.742737,1223900 -546.256409,546.614441,538.558716,541.30365,541.30365,1707200 -541.22406,542.337952,536.380676,540.040588,540.040588,1448500 -541.880432,550.532898,541.025146,550.343933,550.343933,1746500 -551.209167,551.965027,545.510498,551.86554,551.86554,2463500 -553.804871,554.530884,547.382202,553.317566,553.317566,4520700 -552.114197,561.910339,551.219116,561.860596,561.860596,1541000 -562.099304,569.514526,557.942139,561.53241,561.53241,2213200 -562.168884,576.788513,562.129089,575.485657,575.485657,1974700 -577.822815,579.264893,568.722839,572.850159,572.850159,1746700 -574.023682,576.698975,570.66217,574.083374,574.083374,2243000 -575.495605,576.400635,571.606995,572.134094,572.134094,1317300 -575.157471,581.204224,573.496582,579.483704,579.483704,1451900 -580.159973,582.238525,577.216125,579.150513,579.150513,1059200 -580.159973,581.810913,577.743286,581.53241,581.53241,716100 -580.567749,583.223145,576.420532,579.065979,579.065979,1067500 -574.501099,576.358887,563.039124,567.967041,567.967041,1914700 -568.454346,573.566223,566.26239,572.929749,572.929749,1119800 -562.815369,573.436951,561.920288,567.976929,567.976929,1360400 -568.782532,577.673645,568.295227,576.012756,576.012756,1626200 -579.414063,582.009827,574.86908,581.671631,581.671631,1859100 -582.536926,582.601563,573.407104,581.582153,581.582153,1627500 -584.784546,585.182373,579.016235,579.473755,579.473755,1400900 -576.36084,577.812866,565.500549,570.59259,570.59259,3024800 -589.757202,593.536438,578.817322,591.825806,591.825806,4025100 -588.514038,591.149536,582.032654,586.246521,586.246521,2067800 -587.489685,596.37085,587.3703,591.487671,591.487671,1703800 -589.985962,594.580688,589.259949,592.720886,592.720886,1236500 -593.188354,596.22168,588.533936,590.105286,590.105286,1037900 -587.171387,588.623413,583.819824,585.79895,585.79895,935000 -584.854187,589.259949,581.555298,587.3703,587.3703,989500 -585.530457,586.47522,580.324097,582.407593,582.407593,1353500 -583.342468,586.276367,580.806396,584.207703,584.207703,1019200 -577.424988,580.458313,566.882996,568.474243,568.474243,2108500 -567.280762,572.810364,559.772095,562.974487,562.974487,1960600 -565.928223,572.203735,561.015259,570.015747,570.015747,1431200 -566.932678,568.852173,559.533386,561.979919,561.979919,1555500 -558.707947,567.579163,556.937683,563.276794,563.276794,1338000 -564.893921,566.77356,558.031616,560.279297,560.279297,1113900 -560.47821,567.131592,557.285767,565.659729,565.659729,1498800 -566.873047,567.3703,562.904846,564.774536,564.774536,1218000 -561.432922,562.80542,557.812866,559.65271,559.65271,1546200 -564.207703,571.855652,562.656189,571.636841,571.636841,1443200 -573.029175,574.739746,567.758179,571.507568,571.507568,988100 -574.700012,576.21167,567.400146,570.343933,570.343933,1523300 -572.959534,581.313599,572.850159,578.976501,578.976501,1287600 -581.800964,584.128174,580.806396,583.650757,583.650757,981300 -582.676147,583.491638,579.384216,581.293762,581.293762,1039500 -580.62738,581.30365,577.962036,580.179871,580.179871,917300 -580.398682,582.035645,577.464783,579.374268,579.374268,791200 -581.522461,581.800964,575.83374,577.027222,577.027222,1365100 -578.081421,578.618469,573.427002,574.700012,574.700012,1644100 -574.11322,575.326538,566.985413,567.877502,567.877502,1708000 -566.445374,570.115173,563.99884,566.087341,566.087341,1296400 -568.205688,568.911804,563.968018,568.474243,568.474243,1086700 -568.722839,574.670166,568.066467,574.172913,574.172913,1582700 -576.828308,579.801941,571.855652,574.779541,574.779541,1218400 -576.828308,582.795471,576.052551,578.797485,578.797485,1462100 -580.786499,583.342468,578.767639,582.875061,582.875061,1636800 -583.392212,588.533936,583.093811,586.495117,586.495117,1434900 -585.679626,585.779053,576.828308,577.832764,577.832764,1290700 -578.320068,580.309143,573.785034,579.911316,579.911316,980000 -577.18634,578.628418,573.108765,578.170898,578.170898,1224400 -577.822815,578.45929,571.318604,572.472229,572.472229,1606000 -569.806885,571.805908,565.102783,569.966003,569.966003,1601900 -569.627869,578.320068,569.528442,576.778564,576.778564,1484400 -576.838257,584.30719,575.609985,581.572205,581.572205,1697400 -583.790039,586.316101,581.800964,586.047607,586.047607,1448500 -588.265381,593.21814,586.276367,592.820374,592.820374,3746900 -590.572693,590.700989,580.269348,584.157959,584.157959,1694100 -583.640808,583.640808,577.822815,577.952087,577.952087,1475400 -578.280273,586.40564,577.345459,584.774597,584.774597,1732800 -584.336975,584.764648,571.0401,571.915283,571.915283,1931200 -572.909851,576.082397,571.517517,573.944153,573.944153,1447600 -568.623413,575.028198,568.04657,573.208191,573.208191,1285900 -573.775085,576.679138,569.717407,574.202698,574.202698,1626200 -572.860107,574.421509,563.909302,565.162415,565.162415,1449400 -564.207703,568.782532,560.239502,566.962524,566.962524,1181600 -569.916321,574.068481,569.369324,572.134094,572.134094,1144800 -575.634827,577.822815,571.298706,574.192749,574.192749,1217900 -571.258911,572.124146,560.657227,560.657227,560.657227,1916500 -562.477173,570.74176,554.441406,569.369324,569.369324,1996300 -568.056519,568.364807,556.002808,557.812866,557.812866,2531700 -554.670105,562.039612,541.07489,541.512451,541.512451,3090400 -542.009766,546.495056,530.184753,530.294128,530.294128,2588700 -535.953064,544.197693,530.254395,534.998291,534.998291,2228600 -528.106201,529.886414,515.465698,527.131531,527.131531,3729500 -516.161865,526.534851,512.183716,521.641724,521.641724,3718700 -524.36676,528.076355,505.749115,508.374695,508.374695,5554500 -506.664093,518.906799,505.321472,517.991821,517.991821,2614700 -522.317993,523.909241,516.27124,523.660645,523.660645,2342600 -526.99231,536.848145,525.908264,529.796875,529.796875,2927200 -536.370728,544.227539,532.919739,541.005249,541.005249,2355200 -541.383179,541.90033,532.860046,536.828247,536.828247,1978500 -534.093262,541.432922,534.093262,537.812805,537.812805,1188600 -540.03064,545.977905,538.658142,545.898376,545.898376,1274400 -546.992371,551.159424,543.988831,546.325989,546.325989,1775400 -545.948059,549.777039,540.537842,547.300659,547.300659,1459600 -556.291199,556.51001,551.71637,556.022705,556.022705,2040600 -552.46228,554.849121,550.204651,552.183777,552.183777,1386000 -549.975952,552.46228,546.296143,551.079895,551.079895,1247600 -553.755127,553.755127,541.07489,542.934631,542.934631,2037800 -542.516968,543.894348,538.011719,539.075867,539.075867,1336900 -543.223083,543.223083,535.724304,538.051514,538.051514,1638200 -538.499023,546.584595,538.061462,544.496094,544.496094,1137700 -545.490601,548.921753,543.312561,547.280762,547.280762,968200 -547.380188,547.449829,542.188782,544.317078,544.317078,1132700 -546.793457,546.793457,540.507996,542.397583,542.397583,1343000 -543.690491,543.690491,539.185242,541.422974,541.422974,1293000 -540.607422,540.816284,531.140503,533.576111,533.576111,1730700 -534.560669,538.97644,531.248901,532.104187,532.104187,1968000 -532.074341,535.296631,527.181274,534.053467,534.053467,1396000 -528.344849,532.183777,528.175781,531.905273,531.905273,1567600 -538.648193,539.175354,533.625854,534.560669,534.560669,2230300 -534.7099,539.732239,532.690979,536.321045,536.321045,1711000 -536.05249,541.005249,535.656677,538.121094,538.121094,1794800 -537.922241,538.588562,534.105225,537.414978,537.414978,1527100 -537.663635,539.036072,533.665649,538.867004,538.867004,1151500 -535.953064,538.449341,528.951538,530.88092,530.88092,2121100 -530.592529,532.571655,526.902832,530.831177,530.831177,1530800 -528.533813,533.064941,526.365784,528.41449,528.41449,1281400 -528.255371,534.40155,525.699402,534.371765,534.371765,1395900 -528.096252,529.975891,521.412964,522.387634,522.387634,2572600 -524.247375,528.096252,520.925659,524.098206,524.098206,2335700 -519.284668,531.268799,517.653687,530.453308,530.453308,1876400 -530.164856,533.397095,522.685974,523.183228,523.183228,1716900 -524.913757,531.000305,524.21759,525.450806,525.450806,1615200 -520.647217,525.609924,515.82373,515.82373,515.82373,2000000 -519.881409,520.239441,510.463196,510.990295,510.990295,2821100 -508.762543,510.244415,486.325928,492.680969,492.680969,3975100 -494.282166,504.227478,494.093201,502.129028,502.129028,2891000 -510.144958,511.059906,501.940063,508.305054,508.305054,2934700 -508.71283,514.888855,504.138977,513.526367,513.526367,3700300 -513.257813,523.581055,513.257813,521.999756,521.999756,2731200 -524.118103,531.63678,523.411987,527.688477,527.688477,2203600 -527.608948,528.851074,524.138,525.878418,525.878418,707800 -525.878418,531.328491,524.426392,531.10968,531.10968,1043400 -529.279724,532.551758,527.112671,527.429932,527.429932,2284800 -525.202148,528.245422,524.247375,527.519409,527.519409,878600 -528.344849,529.6875,522.924683,523.521423,523.521423,1372000 -526.114746,528.362366,521.231628,521.937744,521.937744,1447600 -520.39624,521.460388,510.252045,511.057617,511.057617,2059800 -512.181458,513.350037,498.3078,499.212799,499.212799,2899900 -504.22522,504.467896,496.915436,498.357513,498.357513,2065100 -495.264526,500.724487,488.312805,499.928864,499.928864,3353600 -501.997498,502.156616,492.082062,493.454498,493.454498,2069400 -492.231232,493.261566,484.891632,489.854309,489.854309,2322400 -496.109894,500.227234,489.69519,493.464447,493.464447,2370500 -491.94281,500.475861,490.301849,498.128784,498.128784,2235700 -502.80304,502.912445,495.035797,499.043732,499.043732,2715800 -497.273468,505.408722,497.263519,505.299316,505.299316,2298300 -508.203339,509.695129,503.246613,504.125763,504.125763,2227900 -504.473846,516.437988,503.429596,515.204773,515.204773,2268700 -518.625977,533.394714,516.855713,531.465332,531.465332,2676900 -532.658752,539.202759,530.082947,536.994873,536.994873,2273000 -535.582642,536.05011,526.771179,532.280823,532.280823,1543700 -527.069519,527.795532,515.354004,515.791565,515.791565,1904000 -519.918884,520.127686,507.208801,507.208801,507.208801,1683800 -508.203339,508.292847,498.45697,507.865204,507.865204,4186400 -513.036743,536.915344,512.698608,531.594604,531.594604,5606400 -528.819885,530.082947,515.712036,525.587646,525.587646,2849800 -525.110291,530.480713,520.39624,526.343506,526.343506,2034800 -526.343506,529.756714,518.417114,519.898987,519.898987,1663700 -520.92334,525.607544,519.232666,524.692566,524.692566,1849800 -524.752258,534.259949,523.528992,528.093872,528.093872,1749400 -525.110291,529.088379,523.141113,524.941223,524.941223,1267800 -526.403198,534.757202,524.036194,534.001343,534.001343,1749900 -532.370361,535.503113,530.458862,533.036682,533.036682,1377800 -534.309692,541.838257,531.746765,539.958557,539.958557,1620200 -540.376282,546.900391,540.157471,546.00531,546.00531,1900300 -543.837219,546.989868,538.128662,539.86908,539.86908,1616800 -538.436951,542.504578,534.568237,536.746277,536.746277,1451600 -535.097717,540.140015,535.067932,539.901306,539.901306,991800 -540.157471,540.774109,532.867615,536.000366,536.000366,1444400 -533.116211,533.503113,526.512573,528.998901,528.998901,1457900 -527.099365,533.852173,525.358948,533.156006,533.156006,1005100 -532.967041,543.230591,532.514526,540.893433,540.893433,1826000 -540.237061,553.096313,538.536377,552.43988,552.43988,2311500 -551.206665,561.619385,549.874023,555.343933,555.343933,2410200 -557.46228,569.018677,555.692017,568.213074,568.213074,2129600 -567.327942,572.240906,563.419495,570.500488,570.500488,1704800 -568.740173,573.951538,564.901306,570.231995,570.231995,1718500 -571.872925,574.747131,570.27179,572.181274,572.181274,1389600 -571.733704,573.523865,563.658142,564.578125,564.578125,1659100 -563.757629,567.148926,560.450806,565.736694,565.736694,1062100 -561.161926,561.758606,551.694031,551.972473,551.972473,1772400 -552.101746,555.085327,547.666138,548.163452,548.163452,1820800 -550.480652,553.325012,547.447388,552.469727,552.469727,1389600 -550.470703,555.343933,541.241516,544.324585,544.324585,1703600 -547.934692,553.802368,543.01178,551.47522,551.47522,1641000 -548.690552,550.769104,545.000854,547.825317,547.825317,1803200 -549.476196,556.71637,544.006287,556.437866,556.437866,2130200 -556.328491,557.730774,553.101257,554.936157,554.936157,1197300 -558.576111,558.645752,555.990356,557.293213,557.293213,2616900 -557.362793,559.282227,552.787964,555.751648,555.751648,1630100 -559.48114,571.445313,558.13855,567.069397,567.069397,2583300 -567.377686,569.128052,555.682068,555.726807,555.726807,2152300 -554.53833,555.841187,547.636353,552.131592,552.131592,1572600 -549.97345,552.240967,545.130127,545.338989,545.338989,1894400 -548.601013,550.440918,545.169922,549.008789,549.008789,1287500 -546.989868,551.674133,543.727844,545.000854,545.000854,1588000 -545.597534,548.123657,536.547363,539.590576,539.590576,1952900 -537.889954,537.889954,530.925293,532.59906,532.59906,1716400 -529.30719,535.463318,526.671692,533.827332,533.827332,1324400 -535.135132,539.71991,533.066528,534.080933,534.080933,1302900 -535.433472,540.873535,535.433472,538.645813,538.645813,1178500 -538.06897,538.983948,532.559326,537.820374,537.820374,1557900 -539.322083,539.322083,534.369324,537.054565,537.054565,1409500 -535.463318,541.082397,534.369324,536.219177,536.219177,1645300 -533.315125,534.62793,525.201782,527.487183,527.487183,2597300 -525.808838,531.805847,520.358765,529.617859,529.617859,2325200 -526.999878,532.658752,526.711487,530.87854,530.87854,1299900 -525.766663,526.940247,518.158569,521.181885,521.181885,2144100 -522.72345,533.156006,521.629456,532.44989,532.44989,1679300 -534.570618,536.440369,530.756592,531.049988,531.049988,1849800 -531.475281,538.118713,528.839783,536.413086,536.413086,1593600 -538.039124,547.944641,537.273376,544.006287,544.006287,4184900 -563.00177,568.01416,554.200195,561.967468,561.967468,4932500 -563.390015,565.950012,553.200012,555.369995,555.369995,2398000 -554.640015,556.02002,550.366028,553.679993,553.679993,1491000 -550.469971,553.679993,546.905029,549.080017,549.080017,1698800 -547.869995,548.590027,535.049988,537.340027,537.340027,2082200 -538.429993,539.539978,532.099976,537.900024,537.900024,1768200 -538.530029,544.070007,535.059998,540.780029,540.780029,1308000 -538.210022,539.73999,530.390991,530.799988,530.799988,1383100 -531.23999,532.380005,521.085022,524.219971,524.219971,1567000 -523.98999,533.460022,521.75,530.700012,530.700012,1546300 -536.650024,541.150024,525,538.219971,538.219971,1527600 -538.369995,541.97998,535.400024,535.700012,535.700012,905300 -531.599976,533.208984,525.26001,529.039978,529.039978,1634200 -530.559998,534.322021,528.655029,529.619995,529.619995,1252300 -533.77002,539,532.409973,538.400024,538.400024,1403900 -539.179993,539.273987,530.380005,533.849976,533.849976,1971300 -532.01001,534.820007,528.849976,532.299988,532.299988,1998600 -533.97998,540.659973,533.039978,537.359985,537.359985,1966900 -538.48999,542.919983,532.971985,539.27002,539.27002,1430800 -537.950012,543.840027,535.97998,542.51001,542.51001,1462700 -540.150024,544.190002,539.51001,540.109985,540.109985,1176200 -538.119995,539,529.880005,532.320007,532.320007,2406500 -532.799988,540.549988,531.710022,539.789978,539.789978,1525000 -538.01001,540.609985,536.25,539.780029,539.780029,1029800 -537.369995,538.630005,531.450012,532.109985,532.109985,2584900 -536.789978,536.789978,529.76001,533.98999,533.98999,1904300 -532.929993,543,531.330017,539.179993,539.179993,1934700 -539.909973,543.5,537.109985,540.309998,540.309998,1717000 -537.76001,540.590027,534.320007,536.700012,536.700012,1348300 -536.349976,537.200012,532.52002,533.330017,533.330017,1388200 -533.309998,534.119995,526.23999,526.830017,526.830017,1520600 -527.559998,529.200012,523.01001,526.690002,526.690002,1455300 -529.359985,538.359985,529.349976,536.690002,536.690002,1815000 -538.424988,538.97998,533.02002,534.609985,534.609985,1217500 -531.599976,533.119995,530.159973,532.330017,532.330017,955800 -528,528.299988,524,527.200012,527.200012,1632700 -528.400024,529.640015,525.559998,528.150024,528.150024,1071800 -529.369995,530.97998,525.099976,529.26001,529.26001,1294200 -531,538.150024,530.789978,536.72998,536.72998,1833100 -537.210022,538.25,533.01001,536.690002,536.690002,1893500 -539.590027,543.73999,537.530029,538.190002,538.190002,1250300 -539.640015,541.499023,535.25,540.47998,540.47998,1197500 -540,540,535.659973,537.840027,537.840027,1286600 -538.869995,540.900024,535.22998,535.22998,535.22998,1335700 -537.26001,537.76001,531.349976,531.690002,531.690002,2109100 -525.01001,528.609985,520.539978,521.52002,521.52002,1937800 -526.02002,526.25,520.5,520.51001,520.51001,2235600 -524.72998,525.690002,518.22998,521.840027,521.840027,1961000 -521.080017,524.650024,521.080017,523.400024,523.400024,1235900 -519.5,525.25,519,522.859985,522.859985,1280500 -523.130005,526.179993,515.179993,525.02002,525.02002,1597200 -521.049988,522.734009,516.109985,516.830017,516.830017,1296700 -523.119995,523.77002,520.349976,520.679993,520.679993,1842300 -526.289978,532.559998,525.549988,530.130005,530.130005,1956700 -532.880005,547.109985,532.400024,546.549988,546.549988,2206500 -546.76001,565.848999,546.710022,561.099976,561.099976,3244100 -560.130005,566.502991,556.789978,560.219971,560.219971,1784600 -565.119995,580.679993,565,579.849976,579.849976,4768300 -649,674.468018,645,672.929993,672.929993,11164900 -659.23999,668.880005,653.01001,663.02002,663.02002,5860900 -655.210022,673,654.299988,662.299988,662.299988,3377200 -660.890015,678.640015,659,662.099976,662.099976,3929300 -661.27002,663.630005,641,644.280029,644.280029,3029100 -647,648.169983,622.52002,623.559998,623.559998,3625700 -621,634.299988,620.5,627.26001,627.26001,2675400 -632.830017,632.830017,623.309998,628,628,1727300 -628.799988,633.359985,622.650024,631.929993,631.929993,1575100 -630,635.219971,622.049988,632.590027,632.590027,1474200 -631.380005,632.909973,625.5,625.609985,625.609985,1706100 -625.340027,633.05603,625.340027,631.210022,631.210022,1304500 -628.419983,634.809998,627.159973,629.25,629.25,1490900 -634.330017,647.859985,633.159973,643.780029,643.780029,2334300 -645,645.379028,632.25,642.679993,642.679993,1572600 -640.22998,642.679993,629.710022,635.299988,635.299988,1403900 -639.47998,643.440002,631.249023,633.72998,633.72998,1809200 -669.200012,674.900024,654.27002,660.780029,660.780029,5000900 -663.080017,665,652.289978,659.559998,659.559998,2936700 -659.322021,664.5,651.661011,656.450012,656.450012,1810700 -655.01001,659.85498,652.659973,657.119995,657.119995,1069900 -656.799988,661.380005,651.23999,660.869995,660.869995,1051700 -661.900024,664,653.460022,656.130005,656.130005,1456100 -656.599976,667,654.190002,660.900024,660.900024,2134100 -655.460022,662.98999,642.900024,646.830017,646.830017,2855300 -639.780029,640.049988,612.330017,612.47998,612.47998,4265200 -573,599.330017,565.049988,589.609985,589.609985,5770300 -614.909973,617.450012,581.109985,582.059998,582.059998,3538000 -610.349976,631.710022,599.049988,628.619995,628.619995,4235900 -639.400024,643.590027,622,637.609985,637.609985,3491300 -632.820007,636.880005,624.559998,630.380005,630.380005,1978700 -627.539978,635.799988,617.679993,618.25,618.25,2161200 -602.359985,612.859985,594.099976,597.789978,597.789978,3702100 -605.590027,614.340027,599.710022,614.340027,614.340027,2575600 -617,619.710022,602.820984,606.25,606.25,1759600 -600,603.469971,595.25,600.700012,600.700012,2089000 -612.48999,616.309998,604.119995,614.659973,614.659973,2279500 -621.219971,626.52002,609.599976,612.719971,612.719971,1693900 -613.099976,624.159973,611.429993,621.349976,621.349976,1905300 -619.75,625.780029,617.419983,625.77002,625.77002,1373500 -625.700012,625.859985,619.429993,623.23999,623.23999,1702300 -626.700012,638.700012,623.780029,635.140015,635.140015,2082100 -635.469971,637.950012,632.320007,635.97998,635.97998,1286500 -637.789978,650.900024,635.02002,642.900024,642.900024,2274700 -636.789978,640,627.02002,629.25,629.25,5087600 -634.400024,636.48999,625.940002,635.440002,635.440002,1788500 -627,627.549988,615.429993,622.690002,622.690002,2562900 -622.049988,628.929993,620,622.359985,622.359985,1470900 -616.640015,627.320007,612.400024,625.799988,625.799988,2240100 -629.77002,629.77002,611,611.969971,611.969971,2174000 -610.340027,614.60498,589.380005,594.890015,594.890015,3127700 -597.280029,605,590.219971,594.969971,594.969971,2309500 -603.280029,608.76001,600.72998,608.419983,608.419983,2403800 -608.369995,612.090027,599.849976,611.289978,611.289978,1867600 -607.200012,627.340027,603.130005,626.909973,626.909973,2684800 -632,643.01001,627,641.469971,641.469971,1803600 -638.840027,649.25,636.530029,645.440002,645.440002,2166300 -649.23999,650.609009,632.150024,642.359985,642.359985,2092700 -641.359985,644.450012,625.559998,639.159973,639.159973,2182100 -640,645.98999,635.317993,643.609985,643.609985,1648700 -642.090027,648.5,639.01001,646.669983,646.669983,1275200 -643.150024,657.812012,643.150024,652.299988,652.299988,1807700 -653.210022,659.390015,648.849976,651.159973,651.159973,1415500 -654.659973,663.130005,654.460022,661.73999,661.73999,1885700 -664.109985,664.969971,657.200012,662.200012,662.200012,1611100 -661.179993,666.820007,659.580017,666.099976,666.099976,1477300 -664.039978,664.719971,644.195007,650.280029,650.280029,2490000 -654.150024,655.869995,641.72998,642.609985,642.609985,1791100 -646.700012,657.799988,644.01001,651.789978,651.789978,4071000 -727.5,730,701.5,702,702,6653900 -701.549988,719.150024,701.26001,712.780029,712.780029,2716600 -707.380005,713.619995,704.549988,708.48999,708.48999,2245800 -707.330017,712.97998,703.080017,712.950012,712.950012,2178900 -710.5,718.26001,710.01001,716.919983,716.919983,1454100 -715.72998,718,710.049988,710.809998,710.809998,1908800 -711.059998,721.619995,705.849976,721.109985,721.109985,1886300 -718.859985,724.650024,714.719971,722.159973,722.159973,1565400 -722,733.099976,721.900024,728.109985,728.109985,1704600 -729.469971,739.47998,729.469971,731.25,731.25,1861600 -731.5,735.409973,727.01001,733.76001,733.76001,1511600 -730.200012,734.710022,719.429993,724.890015,724.890015,2069800 -724.400024,730.590027,718.5,728.320007,728.320007,1608000 -732.460022,741,730.22998,735.400024,735.400024,1366400 -731,737.799988,728.64502,731.22998,731.22998,1837200 -729.169983,731.150024,716.72998,717,717,2075500 -715.599976,729.48999,711.330017,728.960022,728.960022,1905900 -729.289978,731.844971,723.026978,725.299988,725.299988,1510900 -727.580017,741.409973,727,740,740,1684300 -738.73999,742,737.429993,738.409973,738.409973,1327100 -746.530029,757.919983,743,756.599976,756.599976,2212300 -757.450012,762.708008,751.820007,755.97998,755.97998,1414500 -752,755.278992,737.630005,748.280029,748.280029,2333100 -748.140015,752,746.059998,748.150024,748.150024,1122100 -748.460022,753.409973,747.48999,750.26001,750.26001,838500 -748.809998,754.929993,741.27002,742.599976,742.599976,2097600 -747.109985,768.950012,746.700012,767.039978,767.039978,2134600 -768.900024,775.955017,758.960022,762.380005,762.380005,2230400 -766.01001,768.994995,745.630005,752.539978,752.539978,2590600 -753.099976,768.48999,750,766.809998,766.809998,2757300 -767.77002,768.72998,755.090027,763.25,763.25,1812300 -757.890015,764.799988,754.200012,762.369995,762.369995,1829500 -759.169983,764.22998,737.000977,751.609985,751.609985,2700000 -752.849976,755.849976,743.830017,749.460022,749.460022,1984900 -741.159973,745.710022,736.75,738.869995,738.869995,2224400 -741.789978,748.72998,724.169983,747.77002,747.77002,2412500 -753,758.080017,743.01001,743.400024,743.400024,2666200 -750,760.590027,739.434998,758.090027,758.090027,1993300 -762.419983,762.679993,749,749.429993,749.429993,1553400 -746.51001,754.130005,738.150024,739.309998,739.309998,3148700 -746.130005,750,740,747.77002,747.77002,1525700 -751.650024,754.849976,745.530029,750,750,1365400 -753.469971,754.210022,744,750.309998,750.309998,1565900 -749.549988,751.349976,746.619995,748.400024,748.400024,527200 -752.919983,762.98999,749.52002,762.51001,762.51001,1515300 -766.690002,779.97998,766.429993,776.599976,776.599976,1765000 -776.599976,777.599976,766.900024,771,771,1293300 -769.5,769.5,758.340027,758.880005,758.880005,1500900 -743,744.059998,731.257996,741.840027,741.840027,3272800 -746.450012,752,738.640015,742.580017,742.580017,1950700 -730,747.179993,728.919983,743.619995,743.619995,1947000 -730.309998,738.5,719.059998,726.390015,726.390015,2963700 -731.450012,733.22998,713,714.469971,714.469971,2450900 -716.609985,718.85498,703.539978,716.030029,716.030029,2089300 -721.679993,728.75,717.317017,726.070007,726.070007,2024500 -730.849976,734.73999,698.609985,700.559998,700.559998,2501700 -705.380005,721.924988,689.099976,714.719971,714.719971,2225800 -692.289978,706.73999,685.369995,694.450012,694.450012,3608100 -703.299988,709.97998,693.409973,701.789978,701.789978,2268100 -688.609985,706.849976,673.26001,698.450012,698.450012,3445000 -702.179993,719.190002,694.460022,706.590027,706.590027,2412200 -723.599976,728.130005,720.120972,725.25,725.25,2011800 -723.580017,729.679993,710.01001,711.669983,711.669983,1711700 -713.849976,718.280029,706.47998,713.039978,713.039978,1324300 -713.669983,718.234985,694.390015,699.98999,699.98999,2194200 -722.219971,733.690002,712.349976,730.960022,730.960022,2676400 -731.530029,744.98999,726.799988,742.950012,742.950012,3474300 -750.460022,757.859985,743.27002,752,752,5139200 -784.5,789.869995,764.650024,764.650024,764.650024,6348100 -770.219971,774.5,720.5,726.950012,726.950012,6171000 -722.809998,727,701.859985,708.01001,708.01001,5145900 -703.869995,703.98999,680.150024,683.570007,683.570007,5105700 -667.849976,684.030029,663.059998,682.73999,682.73999,4247400 -672.320007,699.900024,668.77002,678.109985,678.109985,3604300 -686.859985,701.309998,682.130005,684.119995,684.119995,2638000 -675,689.349976,668.867981,683.109985,683.109985,3024000 -690.26001,693.75,678.599976,682.400024,682.400024,2141400 -692.97998,698,685.049988,691,691,2520000 -698.090027,709.75,691.380005,708.400024,708.400024,2492600 -710,712.349976,696.030029,697.349976,697.349976,1883200 -695.030029,703.080994,694.049988,700.909973,700.909973,1589300 -707.450012,713.23999,702.51001,706.460022,706.460022,1949800 -701.450012,708.400024,693.580017,695.849976,695.849976,2009300 -688.919983,700,680.780029,699.559998,699.559998,1963600 -700.01001,705.97998,690.585022,705.75,705.75,1631900 -708.580017,713.429993,700.859985,705.070007,705.070007,2243500 -700.320007,710.890015,697.679993,697.77002,697.77002,2481100 -703.619995,718.809998,699.77002,718.809998,718.809998,2151400 -719,720,712,718.849976,718.849976,1629000 -718.679993,719.450012,706.02002,712.419983,712.419983,1956800 -714.98999,716.48999,706.02002,710.890015,710.890015,1972100 -706.900024,708.091003,686.900024,695.159973,695.159973,2985100 -688.590027,703.789978,685.340027,693.969971,693.969971,2076300 -698.469971,705.679993,694,705.23999,705.23999,1421500 -708.119995,716.440002,703.359985,712.820007,712.820007,2829400 -720,726.919983,717.125,726.820007,726.820007,1970800 -726.809998,735.5,725.150024,730.48999,730.48999,1718300 -726.919983,732.289978,724.77002,728.330017,728.330017,1721000 -726.369995,737.469971,724.51001,736.090027,736.090027,1624400 -736.450012,743.070007,736,737.780029,737.780029,1860800 -741.859985,742,731.830017,737.599976,737.599976,2980700 -736.5,742.5,733.515991,742.090027,742.090027,1836500 -737.460022,745,737.460022,740.75,740.75,1269700 -742.359985,745.719971,736.150024,738.059998,738.059998,1432100 -732.01001,737.747009,731,735.299988,735.299988,1594900 -736.789978,738.98999,732.5,733.530029,733.530029,1301300 -734.590027,747.25,728.76001,744.77002,744.77002,1902100 -750.099976,757.880005,748.73999,750.530029,750.530029,1782400 -749.25,750.849976,740.940002,744.950012,744.950012,1718800 -738.599976,750.340027,737,749.909973,749.909973,1576700 -750.059998,752.799988,742.429993,745.289978,745.289978,1134200 -738,742.799988,735.369995,737.799988,737.799988,1132300 -735.77002,746.23999,735.559998,745.690002,745.690002,1050200 -745.369995,747,736.280029,740.280029,740.280029,1453200 -743.969971,745.450012,735.549988,739.150024,739.150024,1290800 -743.02002,745,736.049988,736.099976,736.099976,1220100 -738,743.830017,731.01001,743.090027,743.090027,1349700 -749.159973,754.380005,744.260986,751.719971,751.719971,1707100 -754.01001,757.309998,752.705017,753.200012,753.200012,1131000 -753.97998,761,752.69397,759,759,1809300 -760.460022,768.049988,757.299988,766.609985,766.609985,1556000 -769.51001,769.900024,749.330017,753.929993,753.929993,2030500 -758,758.132019,750.01001,752.669983,752.669983,1529200 -755.380005,760.450012,749.549988,759.140015,759.140015,3060500 -726.299988,736.119995,713.609985,718.77002,718.77002,5951900 -716.099976,723.929993,715.590027,723.150024,723.150024,1959200 -725.419983,725.765991,703.026001,708.140015,708.140015,2744600 -707.289978,708.97998,692.36499,705.840027,705.840027,3098600 -708.26001,714.169983,689.549988,691.02002,691.02002,2867300 -690.700012,697.619995,689,693.01001,693.01001,2487700 -697.630005,700.640015,691,698.210022,698.210022,1645300 -696.869995,697.840027,692,692.359985,692.359985,1543800 -690.48999,699.75,689.01001,695.700012,695.700012,1688600 -697.700012,702.320007,695.719971,701.429993,701.429993,1683500 -698.380005,711.859985,698.106995,711.119995,711.119995,1829300 -712,718.710022,710,712.900024,712.900024,1510300 -716.75,723.5,715.719971,723.179993,723.179993,1563100 -723.409973,724.47998,712.799988,715.289978,715.289978,1692100 -717.059998,719.25,709,713.309998,713.309998,1360700 -711.929993,716.661987,709.26001,710.830017,710.830017,1314500 -709.130005,718.47998,705.650024,716.48999,716.48999,1317100 -715.98999,721.52002,704.109985,706.22998,706.22998,2001200 -703.669983,711.599976,700.630005,706.630005,706.630005,1766800 -702.359985,706,696.799988,700.320007,700.320007,1670200 -701.619995,714.580017,700.52002,709.73999,709.73999,1828400 -706.530029,711.478027,704.179993,704.23999,704.23999,1320900 -706.859985,720.969971,706.859985,720.090027,720.090027,1929500 -720.76001,727.51001,719.705017,725.27002,725.27002,1629200 -722.869995,728.330017,720.280029,724.119995,724.119995,1542900 -724.01001,733.935974,724,732.659973,732.659973,1975000 -731.73999,739.72998,731.26001,735.719971,735.719971,2129500 -734.530029,737.210022,730.659973,734.150024,734.150024,1253600 -732.5,733.02002,724.169983,730.400024,730.400024,1337600 -729.27002,729.48999,720.559998,722.340027,722.340027,1226300 -724.909973,724.909973,714.609985,716.549988,716.549988,1565300 -719.840027,721.97998,716.549988,716.650024,716.650024,1336200 -723.960022,728.570007,720.580017,728.280029,728.280029,1583700 -722.869995,729.539978,722.335999,728.580017,728.580017,988900 -719.469971,725.890015,716.429993,719.409973,719.409973,1216400 -716.51001,725.440002,716.51001,718.359985,718.359985,1258900 -716.47998,722.469971,713.119995,718.27002,718.27002,1306100 -719,722.97998,717.309998,718.919983,718.919983,1214500 -714.909973,716.650024,703.26001,710.359985,710.359985,1982500 -708.650024,708.820007,688.452026,691.719971,691.719971,3402400 -698.77002,702.47998,693.409973,693.710022,693.710022,2082500 -698.400024,702.77002,692.01001,695.940002,695.940002,1465600 -699.059998,700.859985,693.08197,697.460022,697.460022,1184300 -697.450012,701.950012,687,701.869995,701.869995,2171400 -675.169983,689.400024,673.450012,675.219971,675.219971,4449000 -671,672.299988,663.283997,668.26001,668.26001,2629000 -678.969971,680.330017,673,680.039978,680.039978,2173800 -683,687.429016,681.409973,684.109985,684.109985,1932600 -685.469971,692.320007,683.650024,692.099976,692.099976,1597700 -692.200012,700.650024,692.130005,699.210022,699.210022,1344700 -696.059998,696.940002,688.880005,694.950012,694.950012,1462600 -689.97998,701.679993,689.090027,697.77002,697.77002,1411900 -698.080017,698.200012,688.215027,695.359985,695.359985,1303100 -699.5,705.710022,696.434998,705.630005,705.630005,1575200 -708.049988,716.51001,707.23999,715.090027,715.090027,1111800 -719.119995,722.940002,715.909973,720.640015,720.640015,1336900 -723.619995,724,716.849976,716.97998,716.97998,935900 -721.580017,722.210022,718.030029,720.950012,720.950012,950200 -725.72998,725.73999,719.054993,719.849976,719.849976,1279300 -722.710022,736.130005,721.190002,733.780029,733.780029,1295500 -729.890015,736.98999,729,736.960022,736.960022,1227500 -737.330017,742.130005,737.099976,741.190002,741.190002,1289700 -740.359985,741.690002,735.830994,738.630005,738.630005,1026300 -741.859985,743.23999,736.559998,742.73999,742.73999,1259800 -740.669983,742.609985,737.5,739.77002,739.77002,1032400 -739.039978,741.690002,734.27002,738.419983,738.419983,1186700 -738.280029,744.460022,737,741.77002,741.77002,1497100 -747.039978,748.650024,739.299988,745.909973,745.909973,3530200 -772.710022,778.549988,766.77002,768.789978,768.789978,3841500 -761.090027,780.429993,761.090027,772.880005,772.880005,2700500 -768.690002,775.840027,767.849976,771.070007,771.070007,1784500 -767.179993,773.210022,766.820007,773.179993,773.179993,1287400 -772.219971,774.070007,768.794983,771.609985,771.609985,1139400 -773.780029,783.039978,772.340027,782.219971,782.219971,1801200 -782,782.630005,778.091003,781.76001,781.76001,1107900 -781.099976,788.940002,780.570007,784.26001,784.26001,1318900 -783.75,786.812012,782.778015,784.679993,784.679993,786400 -785,789.75,782.969971,784.849976,784.849976,971100 -781.5,783.39502,780.400024,783.219971,783.219971,740500 -783.75,787.48999,780.109985,782.440002,782.440002,938200 -780.299988,780.97998,773.44397,777.140015,777.140015,1028000 -777.320007,780.809998,773.530029,779.909973,779.909973,924200 -780.01001,782.859985,777,777.5,777.5,719400 -775,777.099976,773.130005,775.419983,775.419983,861500 -773.27002,774.539978,770.049988,772.150024,772.150024,951400 -775.47998,776.440002,771.784973,772.080017,772.080017,928200 -770.580017,774.5,767.070007,769.640015,769.640015,1072000 -767,771.890015,763.184998,769.409973,769.409973,926900 -769,776.080017,765.849976,769.539978,769.539978,1166700 -768.73999,774.98999,766.61499,772.150024,772.150024,841000 -769.330017,774.466003,766.840027,769.090027,769.090027,1130000 -767.01001,769.090027,765.380005,767.049988,767.049988,1248600 -769.25,771.02002,764.299988,768.780029,768.780029,925100 -773.01001,773.919983,768.409973,771.460022,771.460022,1072700 -773.450012,782,771,780.080017,780.080017,1442800 -780,782.72998,776.200012,780.349976,780.349976,893700 -778.590027,780.349976,773.580017,775.320007,775.320007,1260600 -770.099976,773.244995,759.659973,759.659973,759.659973,1885500 -755.130005,770.289978,754,769.02002,769.02002,1311000 -764.47998,766.219971,755.799988,759.690002,759.690002,1395000 -759.609985,767.679993,759.109985,762.48999,762.48999,1087400 -762.890015,773.799988,759.960022,771.76001,771.76001,1305100 -769.75,769.75,764.659973,768.880005,768.880005,2049300 -772.419983,774,764.440979,765.700012,765.700012,1171100 -769,773.330017,768.530029,771.409973,771.409973,978600 -772.659973,777.159973,768.301025,776.219971,776.219971,1167800 -780,789.849976,778.440002,787.210022,787.210022,1486200 -786.590027,788.929993,784.150024,786.900024,786.900024,1411900 -782.73999,782.73999,773.070007,774.210022,774.210022,1533200 -775.5,785.98999,774.307983,783.01001,783.01001,1153200 -777.849976,781.809998,774.969971,781.559998,781.559998,1109800 -781.440002,785.799988,774.231995,775.01001,775.01001,1314700 -776.330017,780.940002,774.090027,777.289978,777.289978,1585300 -774.25,776.065002,769.5,772.559998,772.559998,1278800 -776.030029,778.710022,772.890015,776.429993,776.429993,1201400 -779.309998,782.070007,775.650024,776.469971,776.469971,1461200 -779,780.47998,775.539978,776.859985,776.859985,1070700 -779.659973,779.659973,770.75,775.080017,775.080017,933200 -777.710022,789.380005,775.869995,785.940002,785.940002,1161400 -786.659973,792.280029,780.580017,783.070007,783.070007,1372500 -783.76001,788.130005,782.059998,786.140015,786.140015,937400 -781.219971,781.219971,773,778.190002,778.190002,1365300 -781.650024,783.950012,776,778.530029,778.530029,852500 -779.799988,785.849976,777.5,779.960022,779.960022,1093000 -787.849976,801.609985,785.565002,795.26001,795.26001,1995600 -798.23999,804.599976,798.030029,801.5,801.5,1766800 -803.299988,803.969971,796.030029,796.969971,796.969971,1757500 -795,799.5,794,799.369995,799.369995,1266200 -804.900024,815.179993,804.820007,813.109985,813.109985,1697500 -816.679993,816.679993,805.140015,807.669983,807.669983,1576400 -806.340027,806.97998,796.320007,799.070007,799.070007,1647700 -801,803.48999,791.5,795.349976,795.349976,2749200 -808.349976,815.48999,793.590027,795.369995,795.369995,4269900 -795.469971,796.859985,784,784.539978,784.539978,2427300 -782.890015,789.48999,775.539978,783.609985,783.609985,2406400 -778.200012,781.650024,763.450012,768.700012,768.700012,1872400 -767.25,769.950012,759.030029,762.130005,762.130005,1943200 -750.659973,770.359985,750.560974,762.02002,762.02002,2134800 -774.5,785.190002,772.549988,782.52002,782.52002,1585100 -783.400024,795.632996,780.190002,790.51001,790.51001,1350800 -779.940002,791.22699,771.669983,785.309998,785.309998,2607100 -791.169983,791.169983,752.179993,762.559998,762.559998,4745200 -756.539978,760.780029,750.380005,754.02002,754.02002,2431800 -755.599976,757.849976,727.539978,736.080017,736.080017,3631700 -746.969971,764.416016,746.969971,758.48999,758.48999,2384000 -755.200012,766.359985,750.51001,764.47998,764.47998,1465200 -766.919983,772.700012,764.22998,771.22998,771.22998,1304000 -771.369995,775,760,760.539978,760.539978,1547100 -762.609985,769.700012,760.599976,769.200012,769.200012,1330600 -772.630005,776.960022,767,768.27002,768.27002,1593100 -767.72998,768.28302,755.25,760.98999,760.98999,1477400 -764.26001,765,760.52002,761.679993,761.679993,587400 -760,779.530029,759.799988,768.23999,768.23999,2188200 -771.530029,778.5,768.23999,770.840027,770.840027,1616600 -770.070007,772.98999,754.830017,758.039978,758.039978,2392900 -757.440002,759.849976,737.025024,747.919983,747.919983,3017900 -744.590027,754,743.099976,750.5,750.5,1452500 -757.710022,763.900024,752.900024,762.52002,762.52002,1394200 -764.72998,768.830017,757.340027,759.109985,759.109985,1690700 -761,771.359985,755.799988,771.190002,771.190002,1761000 -772.47998,778.179993,767.22998,776.419983,776.419983,1488100 -780,789.429993,779.020996,789.289978,789.289978,1821900 -785.039978,791.25,784.35498,789.27002,789.27002,2104100 -793.900024,804.380005,793.340027,796.099976,796.099976,2145200 -797.400024,804,794.01001,797.070007,797.070007,1704200 -797.340027,803,792.919983,797.849976,797.849976,1626500 -800.400024,800.856018,790.289978,790.799988,790.799988,2428300 -790.219971,797.659973,786.27002,794.200012,794.200012,1232100 -796.76001,798.650024,793.27002,796.419983,796.419983,951000 -795.840027,796.676025,787.099976,794.559998,794.559998,1211300 -792.359985,793.320007,788.580017,791.26001,791.26001,972200 -790.900024,792.73999,787.280029,789.909973,789.909973,623400 -790.679993,797.859985,787.656982,791.549988,791.549988,789100 -793.700012,794.22998,783.200012,785.049988,785.049988,1153800 -783.330017,785.929993,778.919983,782.789978,782.789978,742200 -782.75,782.780029,770.409973,771.820007,771.820007,1770000 -778.809998,789.630005,775.799988,786.140015,786.140015,1657300 -788.359985,791.340027,783.159973,786.900024,786.900024,1073000 -786.080017,794.47998,785.02002,794.02002,794.02002,1335200 -795.26001,807.900024,792.203979,806.150024,806.150024,1640200 -806.400024,809.966003,802.830017,806.650024,806.650024,1272400 -807.859985,809.130005,803.51001,804.789978,804.789978,1176800 -805,808.150024,801.369995,807.909973,807.909973,1065900 -807.140015,807.390015,799.169983,806.359985,806.359985,1353100 -807.47998,811.223999,806.690002,807.880005,807.880005,1099200 -807.080017,807.140015,800.369995,804.609985,804.609985,1355800 -805.809998,806.205017,800.98999,806.070007,806.070007,1294400 -805.119995,809.47998,801.799988,802.174988,802.174988,919300 -806.909973,806.909973,801.690002,805.02002,805.02002,1670000 -807.25,820.869995,803.73999,819.309998,819.309998,1963600 -822.299988,825.900024,817.820984,823.869995,823.869995,1474000 -829.619995,835.77002,825.059998,835.669983,835.669983,1494500 -837.809998,838,827.01001,832.150024,832.150024,2973900 -834.710022,841.950012,820.440002,823.309998,823.309998,2965800 -814.659973,815.840027,799.799988,802.320007,802.320007,3246600 -796.859985,801.25,790.52002,796.789978,796.789978,2160600 -799.679993,801.190002,791.190002,795.695007,795.695007,2029700 -793.799988,802.700012,792,798.530029,798.530029,1532100 -802.98999,806,800.369995,801.48999,801.48999,1463400 -799.700012,801.669983,795.25,801.340027,801.340027,1184500 -803.98999,810.5,801.780029,806.969971,806.969971,1241200 -807,811.840027,803.190002,808.380005,808.380005,1155300 -809.51001,810.659973,804.539978,809.559998,809.559998,989700 -811.700012,815.25,809.780029,813.669983,813.669983,1135000 -816,820.958984,815.48999,819.23999,819.23999,1213300 -819,823,816,820.450012,820.450012,1053600 -819.359985,823,818.469971,818.97998,818.97998,1313600 -819.929993,824.400024,818.97998,824.159973,824.159973,1287600 -823.02002,828.070007,821.655029,828.070007,828.070007,1611000 -828.659973,833.450012,828.349976,831.659973,831.659973,1262300 -828.659973,833.25,828.640015,830.76001,830.76001,982900 -830.119995,832.460022,822.880005,831.330017,831.330017,1472800 -827.72998,829,824.200012,828.640015,828.640015,1392200 -824.549988,830.5,824,829.280029,829.280029,1101500 -825.609985,828.539978,820.200012,823.210022,823.210022,2260800 -828.849976,836.255005,827.26001,835.23999,835.23999,1496500 -833.849976,834.51001,829.640015,830.630005,830.630005,942500 -830.559998,831.359985,825.750977,829.080017,829.080017,896400 -826.950012,828.880005,822.400024,827.780029,827.780029,1109000 -827.400024,833.409973,826.52002,831.909973,831.909973,1037600 -833.51001,838.150024,831.789978,835.369995,835.369995,989800 -836,842,834.210022,838.679993,838.679993,1261500 -843.280029,844.909973,839.5,843.25,843.25,1704000 -844,848.684998,843.25,845.539978,845.539978,1223600 -843.640015,847.23999,840.799988,845.619995,845.619995,779900 -847.590027,848.630005,840.77002,847.200012,847.200012,1381500 -849.030029,850.849976,846.130005,848.780029,848.780029,977600 -851.609985,853.400024,847.109985,852.119995,852.119995,1712300 -850.01001,850.219971,845.150024,848.400024,848.400024,1231500 -851.400024,853.5,829.02002,830.460022,830.460022,2463500 -831.909973,835.549988,827.179993,829.590027,829.590027,1401500 -821,822.570007,812.257019,817.580017,817.580017,3487100 -820.080017,821.929993,808.890015,814.429993,814.429993,1981000 -806.950012,821.630005,803.369995,819.51001,819.51001,1894300 -820.409973,825.98999,814.026978,820.919983,820.919983,1620500 -825,832.765015,822.380005,831.409973,831.409973,1786300 -833.5,833.679993,829,831.5,831.5,1055300 -828.969971,831.640015,827.390015,829.559998,829.559998,1401900 -829.219971,840.849976,829.219971,838.549988,838.549988,1671500 -831.359985,835.179993,829.036011,834.570007,834.570007,1045400 -835.51001,842.450012,830.719971,831.409973,831.409973,1555300 -832.400024,836.390015,826.460022,827.880005,827.880005,1254400 -827.960022,828.484985,820.513,824.669983,824.669983,1057300 -825.390015,829.349976,823.77002,824.72998,824.72998,978900 -824.710022,827.427002,817.02002,823.349976,823.349976,1079700 -821.929993,826.659973,821.02002,824.320007,824.320007,900500 -822.140015,826.380005,821.440002,823.559998,823.559998,1122400 -825.01001,837.75,824.469971,837.169983,837.169983,895000 -834.219971,838.929993,832.710022,836.820007,836.820007,836700 -839.789978,842.219971,836.289978,838.210022,838.210022,954200 -841.440002,845.200012,839.320007,841.650024,841.650024,959000 -842.880005,843.880005,840.599976,843.190002,843.190002,1323600 -851.200012,863.450012,849.859985,862.76001,862.76001,1372500 -865,875,862.809998,872.299988,872.299988,1672000 -874.22998,876.049988,867.747986,871.72998,871.72998,1237200 -873.599976,875.400024,870.380005,874.25,874.25,2026800 -910.659973,916.849976,905.77002,905.960022,905.960022,3219500 -901.940002,915.679993,901.450012,912.570007,912.570007,2116000 -909.619995,920.77002,909.453003,916.440002,916.440002,1587200 -914.859985,928.099976,912.54303,927.039978,927.039978,1499500 -926.070007,935.929993,924.590027,931.659973,931.659973,1422100 -933.539978,934.900024,925.200012,927.130005,927.130005,1911300 -926.119995,936.924988,925.26001,934.299988,934.299988,1329800 -936.950012,937.5,929.530029,932.169983,932.169983,1581800 -931.97998,932,925.159973,928.780029,928.780029,1173900 -925.320007,932.530029,923.030029,930.599976,930.599976,835000 -931.530029,933.440002,927.849976,932.219971,932.219971,1050600 -932.950012,938.25,929.340027,937.080017,937.080017,1108100 -940,943.109985,937.580017,943,943,969500 -935.669983,939.333008,918.140015,919.619995,919.619995,2362100 -921,933.169983,918.75,930.23999,930.23999,1596900 -931.469971,937.755005,931,934.01001,934.01001,1393000 -935,941.882996,935,941.859985,941.859985,1120400 -947.919983,951.46698,942.575012,948.820007,948.820007,1270800 -952.97998,955.090027,949.5,954.960022,954.960022,1024800 -957.330017,972.629028,955.469971,969.539978,969.539978,1660500 -969.700012,974.97998,965.030029,971.469971,971.469971,1252000 -970.309998,976.200012,969.48999,975.880005,975.880005,1466700 -975.02002,979.27002,960.179993,964.859985,964.859985,2448100 -968.950012,971.5,960.01001,966.950012,966.950012,1410500 -969.460022,975.880005,966,975.599976,975.599976,1751000 -976.549988,986.909973,975.099976,983.679993,983.679993,1252100 -983.159973,988.25,975.140015,976.570007,976.570007,1814600 -980,983.97998,975.940002,980.940002,980.940002,1453900 -982.349976,984.570007,977.200012,983.409973,983.409973,1471500 -984.5,984.5,935.630005,949.830017,949.830017,3309400 -939.559998,949.35498,915.232971,942.900024,942.900024,3763500 -951.909973,959.97998,944.090027,953.400024,953.400024,2013300 -959.919983,961.150024,942.25,950.76001,950.76001,1489700 -933.969971,943.338989,924.440002,942.309998,942.309998,2133100 -940,942.039978,931.594971,939.780029,939.780029,3094700 -949.960022,959.98999,949.049988,957.369995,957.369995,1533300 -957.52002,961.619995,950.01001,950.630005,950.630005,1126000 -953.640015,960.099976,950.76001,959.450012,959.450012,1202200 -958.700012,960.719971,954.549988,957.090027,957.090027,941400 -956.830017,966,954.200012,965.590027,965.590027,1527900 -969.900024,973.309998,950.789978,952.27002,952.27002,1598400 -942.460022,948.289978,926.849976,927.330017,927.330017,2579900 -929,942.75,916,940.48999,940.48999,2721400 -929.919983,931.26001,910.619995,917.789978,917.789978,3299200 -926.049988,926.049988,908.309998,908.72998,908.72998,2090200 -912.179993,913.940002,894.789978,898.700012,898.700012,1709800 -901.76001,914.51001,898.5,911.710022,911.710022,1813900 -904.119995,914.94397,899.700012,906.690002,906.690002,1424500 -908.849976,921.539978,908.849976,918.590027,918.590027,1637800 -921.77002,930.380005,919.590027,928.799988,928.799988,1192800 -929.539978,931.429993,922,930.090027,930.090027,1113200 -938.679993,946.299988,934.469971,943.830017,943.830017,1532100 -946.289978,954.450012,943.01001,947.159973,947.159973,1294700 -952,956.909973,948.005005,955.98999,955.98999,1053800 -957,960.73999,949.241028,953.419983,953.419983,1165500 -953,968.039978,950.599976,965.400024,965.400024,1154000 -967.840027,973.039978,964.030029,970.890015,970.890015,1224500 -975,975.900024,961.51001,968.150024,968.150024,1624500 -962.25,973.22998,960.150024,972.919983,972.919983,1711000 -972.219971,986.200012,970.77002,980.340027,980.340027,3248300 -953.809998,959.700012,945.400024,950.700012,950.700012,4661000 -954.679993,955,942.278992,947.799988,947.799988,2088300 -951.780029,951.780029,920,934.090027,934.090027,3213000 -929.400024,943.830017,927.5,941.530029,941.530029,1846400 -941.890015,943.590027,926.039978,930.5,930.5,1970100 -932.380005,937.447021,929.26001,930.830017,930.830017,1277700 -928.609985,932.599976,916.679993,930.390015,930.390015,1824400 -930.340027,932.23999,922.23999,923.650024,923.650024,1202500 -926.75,930.307007,923.030029,927.960022,927.960022,1082300 -929.059998,931.700012,926.5,929.359985,929.359985,1032200 -927.090027,935.814026,925.609985,926.789978,926.789978,1061600 -920.609985,925.97998,917.25,922.900024,922.900024,1192100 -917.549988,919.26001,906.130005,907.23999,907.23999,1824000 -907.969971,917.780029,905.580017,914.390015,914.390015,1206800 -922.530029,924.66803,918.190002,922.669983,922.669983,1064500 -924.22998,926.549988,919.820007,922.219971,922.219971,883400 -925.289978,932.700012,923.445007,926.960022,926.960022,1006700 -925.780029,926.859985,910.97998,910.97998,910.97998,1277200 -910.309998,915.275024,907.153992,910.669983,910.669983,1342700 -910,913,903.400024,906.659973,906.659973,943400 -912.719971,925.859985,911.474976,924.690002,924.690002,1166700 -921.929993,929.929993,919.359985,927,927,1090200 -928.659973,930.840027,915.5,921.280029,921.280029,1270300 -923.48999,925.554993,915.5,915.890015,915.890015,1053400 -916,919.244995,911.869995,913.809998,913.809998,1086500 -905.099976,923.330017,905,921.289978,921.289978,1185600 -920.049988,930.81897,919.650024,929.570007,929.570007,1301200 -931.76001,941.97998,931.76001,939.330017,939.330017,1582600 -941.130005,942.47998,935.150024,937.340027,937.340027,947400 -933.080017,937,921.960022,928.450012,928.450012,1326400 -930.150024,930.914978,919.27002,927.809998,927.809998,1527700 -931.72998,936.409973,923.619995,935.950012,935.950012,1212700 -936.48999,936.98999,924.880005,926.5,926.5,1011500 -934.25,938.380005,926.919983,929.080017,929.080017,1267000 -932.590027,933.47998,923.861023,932.070007,932.070007,1134400 -930.659973,937.25,929.859985,935.090027,935.090027,1102600 -931.25,932.77002,924,925.109985,925.109985,1397600 -924.659973,926.48999,916.359985,920.289978,920.289978,2505400 -920.01001,922.080017,910.599976,915,915,1306900 -917.419983,922.419983,912.549988,921.809998,921.809998,936700 -922.97998,933.880005,922,931.580017,931.580017,1669800 -933,936.530029,923.830017,932.450012,932.450012,1290600 -927.75,934.72998,926.47998,928.530029,928.530029,1052700 -925.450012,926.400024,909.700012,920.969971,920.969971,1856800 -923.719971,930.820007,921.140015,924.859985,924.859985,1666900 -927.73999,949.900024,927.73999,944.48999,944.48999,2239400 -941.359985,950.690002,940.549988,949.5,949.5,1020300 -952,959.786011,951.51001,959.109985,959.109985,1581000 -959.97998,962.539978,947.840027,953.27002,953.27002,1283400 -954,958,949.140015,957.789978,957.789978,888300 -957,960.390015,950.690002,951.679993,951.679993,952400 -955.48999,970.909973,955.179993,969.960022,969.960022,1213800 -966.700012,979.460022,963.359985,978.890015,978.890015,1173900 -980,985.424988,976.109985,977,977,891400 -980,981.570007,966.080017,972.599976,972.599976,968400 -973.719971,990.710022,972.25,989.25,989.25,1693300 -987.450012,994.119995,985,987.830017,987.830017,1262400 -992,997.210022,989,989.679993,989.679993,1169800 -992.099976,993.906982,984,992,992,910500 -990.289978,996.440002,988.590027,992.179993,992.179993,1290200 -991.77002,996.719971,986.974976,992.809998,992.809998,1057600 -986,988.880005,978.390015,984.450012,984.450012,1313600 -989.440002,991,984.580017,988.200012,988.200012,1183200 -989.52002,989.52002,966.119995,968.450012,968.450012,1478400 -970,972.22998,961,970.539978,970.539978,1212200 -968.369995,976.090027,960.52002,973.330017,973.330017,1211300 -980,987.599976,972.200012,972.559998,972.559998,2042100 -1009.190002,1048.390015,1008.200012,1019.27002,1019.27002,5167700 -1014,1024.969971,1007.5,1017.109985,1017.109985,2085100 -1015.219971,1024,1010.419983,1016.640015,1016.640015,1330700 -1017.210022,1029.670044,1016.950012,1025.5,1025.5,1373400 -1021.76001,1028.089966,1013.01001,1025.579956,1025.579956,1049000 -1022.109985,1032.650024,1020.309998,1032.47998,1032.47998,1076400 -1028.98999,1034.869995,1025,1025.900024,1025.900024,1123500 -1027.27002,1033.969971,1025.130005,1033.329956,1033.329956,1112300 -1030.52002,1043.521973,1028.449951,1039.849976,1039.849976,1088700 -1033.98999,1033.98999,1019.666016,1031.26001,1031.26001,1245200 -1026.459961,1030.76001,1025.280029,1028.069946,1028.069946,720000 -1023.419983,1031.579956,1022.570007,1025.75,1025.75,885800 -1022.590027,1026.810059,1014.150024,1026,1026,959200 -1019.210022,1024.089966,1015.419983,1020.909973,1020.909973,854000 -1022.52002,1035.920044,1022.52002,1032.5,1032.5,1129700 -1034.01001,1034.420044,1017.75,1019.090027,1019.090027,1397100 -1020.26001,1022.609985,1017.5,1018.380005,1018.380005,953500 -1023.309998,1035.109985,1022.655029,1034.48999,1034.48999,1097000 -1035,1039.706055,1031.430054,1035.959961,1035.959961,746300 -1035.869995,1043.177979,1035,1040.609985,1040.609985,537000 -1040,1055.459961,1038.439941,1054.209961,1054.209961,1307900 -1055.089966,1062.375,1040,1047.410034,1047.410034,1424400 -1042.680054,1044.079956,1015.650024,1021.659973,1021.659973,2459400 -1022.369995,1028.48999,1015,1021.409973,1021.409973,1724000 -1015.799988,1022.48999,1002.02002,1010.169983,1010.169983,1909600 -1012.659973,1016.099976,995.570007,998.679993,998.679993,1906400 -995.940002,1020.609985,988.280029,1005.150024,1005.150024,2067300 -1001.5,1024.969971,1001.140015,1018.380005,1018.380005,1272000 -1020.429993,1034.23999,1018.070984,1030.930054,1030.930054,1458200 -1037.48999,1042.050049,1032.521973,1037.050049,1037.050049,1290800 -1035.5,1043.800049,1032.050049,1041.099976,1041.099976,1192800 -1039.630005,1050.310059,1033.689941,1040.47998,1040.47998,1279500 -1046.119995,1046.665039,1038.380005,1040.609985,1040.609985,1282700 -1045,1058.5,1043.109985,1049.150024,1049.150024,1558700 -1054.609985,1067.619995,1049.5,1064.189941,1064.189941,3275900 -1066.079956,1078.48999,1062,1077.140015,1077.140015,1554600 -1075.199951,1076.839966,1063.550049,1070.680054,1070.680054,1338700 -1071.780029,1073.380005,1061.52002,1064.949951,1064.949951,1268600 -1064.949951,1069.329956,1061.793945,1063.630005,1063.630005,995700 -1061.109985,1064.199951,1059.439941,1060.119995,1060.119995,755100 -1058.069946,1060.119995,1050.199951,1056.73999,1056.73999,760600 -1057.390015,1058.369995,1048.050049,1049.369995,1049.369995,1271900 -1051.599976,1054.75,1044.77002,1048.140015,1048.140015,837100 -1046.719971,1049.699951,1044.900024,1046.400024,1046.400024,887500 -1048.339966,1066.939941,1045.22998,1065,1065,1237600 -1064.310059,1086.290039,1063.209961,1082.47998,1082.47998,1430200 -1088,1093.569946,1084.001953,1086.400024,1086.400024,1004600 -1094,1104.25,1092,1102.22998,1102.22998,1279100 -1102.22998,1111.27002,1101.619995,1106.939941,1106.939941,1047600 -1109.400024,1110.569946,1101.230957,1106.26001,1106.26001,902500 -1097.099976,1104.599976,1096.109985,1102.609985,1102.609985,1042800 -1106.300049,1106.525024,1099.589966,1105.52002,1105.52002,978300 -1102.410034,1124.290039,1101.150024,1122.26001,1122.26001,1720500 -1132.51001,1139.910034,1117.832031,1121.76001,1121.76001,1575300 -1126.219971,1132.599976,1117.01001,1131.97998,1131.97998,1198700 -1131.410034,1132.51001,1117.5,1129.790039,1129.790039,1198200 -1131.829956,1137.859985,1128.300049,1137.51001,1137.51001,1778200 -1137.48999,1159.880005,1135.109985,1155.810059,1155.810059,1618000 -1159.849976,1171.626953,1158.75,1169.969971,1169.969971,1333100 -1177.329956,1179.859985,1161.050049,1164.23999,1164.23999,1416600 -1172.530029,1175.939941,1162.76001,1170.369995,1170.369995,1480500 -1175.079956,1175.839966,1158.109985,1175.839966,1175.839966,2018800 -1176.47998,1186.890015,1171.97998,1175.579956,1175.579956,1378900 -1167.829956,1176.52002,1163.52002,1163.689941,1163.689941,1556300 -1170.569946,1173,1159.130005,1169.939941,1169.939941,1538700 -1162.609985,1174,1157.52002,1167.699951,1167.699951,2412100 -1122,1123.069946,1107.277954,1111.900024,1111.900024,4857900 -1090.599976,1110,1052.030029,1055.800049,1055.800049,3798300 -1027.180054,1081.709961,1023.137024,1080.599976,1080.599976,3448000 -1081.540039,1081.780029,1048.26001,1048.579956,1048.579956,2369200 -1055.410034,1058.619995,1000.659973,1001.52002,1001.52002,2859100 -1017.25,1043.969971,992.559998,1037.780029,1037.780029,3505900 -1048,1061.5,1040.927979,1051.939941,1051.939941,2057700 -1045,1058.369995,1044.087036,1052.099976,1052.099976,1265100 -1048.949951,1071.719971,1046.75,1069.699951,1069.699951,1555800 -1079.069946,1091.479004,1064.339966,1089.52002,1089.52002,1843400 -1088.410034,1104.670044,1088.312988,1094.800049,1094.800049,1681600 -1090.569946,1113.949951,1088.52002,1102.459961,1102.459961,1423100 -1106.469971,1133.969971,1106.329956,1111.339966,1111.339966,1512900 -1116.189941,1122.819946,1102.589966,1106.630005,1106.630005,1317200 -1112.640015,1127.280029,1104.713989,1126.790039,1126.790039,1261000 -1127.800049,1143.959961,1126.694946,1143.75,1143.75,1559100 -1141.23999,1144.040039,1118,1118.290039,1118.290039,1774100 -1123.030029,1127.530029,1103.23999,1104.72998,1104.72998,1882600 -1107.869995,1110.119995,1067.000977,1069.52002,1069.52002,2515900 -1053.079956,1081.999023,1048.11499,1078.920044,1078.920044,2271600 -1075.140015,1097.099976,1069,1090.930054,1090.930054,1202200 -1099.219971,1101.849976,1089.775024,1095.060059,1095.060059,1532800 -1089.189941,1112.219971,1085.482056,1109.640015,1109.640015,1292500 -1115.319946,1127.599976,1112.800049,1126,1126,1355100 -1136,1160.800049,1132.46106,1160.040039,1160.040039,2128000 -1163.849976,1177.050049,1157.420044,1164.5,1164.5,2172300 -1170,1176.76001,1133.329956,1138.170044,1138.170044,1907200 -1145.209961,1158.589966,1141.439941,1149.48999,1149.48999,1291400 -1149.959961,1161.079956,1134.540039,1149.579956,1149.579956,1395400 -1154.140015,1155.880005,1131.959961,1135.72998,1135.72998,3092000 -1120.01001,1121.98999,1089.01001,1099.819946,1099.819946,2805900 -1099,1105.199951,1083.459961,1097.709961,1097.709961,1831900 -1092.73999,1106.300049,1085.150024,1090.880005,1090.880005,1878900 -1081.880005,1082.900024,1045.910034,1049.079956,1049.079956,2667000 -1047.030029,1063.359985,1021.219971,1021.570007,1021.570007,2156700 -1046,1055.630005,1008.400024,1053.209961,1053.209961,2665100 -1063,1064.838989,996.919983,1005.099976,1005.099976,3095300 -998,1024.22998,980.640015,1004.559998,1004.559998,3369300 -1011.630005,1043,1002.900024,1031.790039,1031.790039,2726800 -1022.820007,1034.800049,990.369995,1006.469971,1006.469971,2680400 -1013.909973,1020.98999,994.070007,1013.409973,1013.409973,2275100 -993.409973,1028.718018,993,1025.140015,1025.140015,2484700 -1041.329956,1042.790039,1020.130981,1027.810059,1027.810059,1363000 -1020,1031.420044,1003.030029,1007.039978,1007.039978,1746400 -1016.799988,1039.599976,1014.080017,1015.450012,1015.450012,1751600 -1026.439941,1036.280029,1011.340027,1031.640015,1031.640015,1974500 -1027.98999,1031.364014,1015.869995,1019.969971,1019.969971,1483900 -1025.040039,1040.689941,1021.434998,1032.51001,1032.51001,1357000 -1040.880005,1046.420044,1022.97998,1029.27002,1029.27002,1223000 -1037,1043.23999,1026.73999,1037.97998,1037.97998,1211200 -1051.369995,1077.880005,1048.26001,1074.160034,1074.160034,2320300 -1077.430054,1077.430054,1066.224976,1072.079956,1072.079956,1344100 -1069.400024,1094.165039,1068.180054,1087.699951,1087.699951,1747700 -1082,1092.349976,1069.569946,1072.959961,1072.959961,1889700 -1077.859985,1082.719971,1060.699951,1067.449951,1067.449951,2341300 -1052,1057,1010.590027,1019.97998,1019.97998,4760300 -1025.52002,1032.48999,1015.309998,1021.179993,1021.179993,2391100 -1029.51001,1047.97998,1018.190002,1040.040039,1040.040039,2079500 -1046,1049.5,1025.589966,1030.050049,1030.050049,1619800 -1030.01001,1037,1016.849976,1017.330017,1017.330017,1671300 -1013.659973,1038.469971,1008.210022,1037.310059,1037.310059,1427900 -1028.099976,1040.389038,1022.869995,1024.380005,1024.380005,1603100 -1019,1029.675049,1006.289978,1023.719971,1023.719971,1815100 -1016.900024,1048.51001,1016.900024,1048.209961,1048.209961,1938700 -1049.22998,1061.680054,1047.099976,1054.790039,1054.790039,1466100 -1058.540039,1060.550049,1047.14502,1053.910034,1053.910034,1217700 -1058.099976,1085.439941,1056.36499,1082.76001,1082.76001,2032800 -1086.030029,1100.439941,1085.640015,1097.569946,1097.569946,1443000 -1093.599976,1101.329956,1090.910034,1098.26001,1098.26001,1253700 -1100,1110.75,1099.109985,1100.199951,1100.199951,1518100 -1090,1090.050049,1073.469971,1079.22998,1079.22998,1494900 -1077.310059,1089.27002,1076.26001,1081.77002,1081.77002,1097300 -1079.890015,1086.869995,1073.5,1078.589966,1078.589966,1043800 -1061.859985,1069.939941,1060.680054,1066.359985,1066.359985,1565200 -1074.060059,1088,1073.650024,1079.579956,1079.579956,1023200 -1083.560059,1086.589966,1066.689941,1069.72998,1069.72998,1090000 -1065.130005,1080.780029,1061.709961,1079.689941,1079.689941,1030000 -1079,1080.469971,1066.150024,1079.23999,1079.23999,766800 -1079.02002,1082.560059,1073.775024,1075.660034,1075.660034,899400 -1064.890015,1073.369995,1055.219971,1060.319946,1060.319946,1865100 -1063.030029,1069.209961,1056.829956,1067.800049,1067.800049,1138500 -1067.560059,1097.189941,1067.560059,1084.98999,1084.98999,3088300 -1099.349976,1120,1098.5,1119.5,1119.5,2421600 -1122.329956,1141.890015,1122.005005,1139.290039,1139.290039,1889600 -1140.98999,1145.738037,1133.189941,1139.660034,1139.660034,1678000 -1142.170044,1143,1125.743042,1136.880005,1136.880005,1698200 -1131.319946,1135.819946,1116.52002,1123.859985,1123.859985,1520000 -1118.180054,1126.670044,1112.150024,1120.869995,1120.869995,1290800 -1118.599976,1137.26001,1118.599976,1129.98999,1129.98999,1079300 -1131.069946,1139.790039,1130.734985,1139.319946,1139.319946,912000 -1141.119995,1146.5,1133.380005,1134.790039,1134.790039,1506400 -1143.849976,1155.469971,1140.640015,1152.119995,1152.119995,1343400 -1148.859985,1153.420044,1143.484985,1152.26001,1152.26001,2122500 -1143.650024,1174.310059,1143.589966,1173.459961,1173.459961,1413700 -1158.5,1171.27002,1154.01001,1168.060059,1168.060059,1621000 -1175.310059,1186.286011,1169.160034,1169.839966,1169.839966,1648500 -1174.849976,1177.295044,1152.232056,1157.660034,1157.660034,1238100 -1159.140015,1162.496948,1147.26001,1155.47998,1155.47998,1311000 -1143.599976,1143.910034,1112.780029,1124.810059,1124.810059,2157300 -1128,1133.209961,1116.659058,1118.459961,1118.459961,1563200 -1121.339966,1131.83606,1103.619995,1103.97998,1103.97998,1293900 -1102.089966,1122.310059,1096.01001,1114.219971,1114.219971,1072400 -1120,1128.227051,1115,1115.650024,1115.650024,1315100 -1099,1128,1093.800049,1127.459961,1127.459961,1217300 -1135.819946,1135.819946,1100.02002,1102.890015,1102.890015,679000 -1110.530029,1127.5,1108.47998,1124.27002,1124.27002,1066700 -1123.579956,1140.930054,1120.737061,1140.170044,1140.170044,996100 -1148.47998,1154.670044,1143.420044,1154.050049,1154.050049,909000 -1156.97998,1159.589966,1149.589966,1152.839966,1152.839966,798400 -1144.589966,1164.290039,1141,1153.900024,1153.900024,1120000 -1159.890015,1184.410034,1155.935059,1183.47998,1183.47998,1251900 -1185,1195.416992,1180,1188.819946,1188.819946,1221900 -1189.390015,1191,1179.280029,1183.859985,1183.859985,1055700 -1172.219971,1203.040039,1170.599976,1198.800049,1198.800049,1610400 -1196.560059,1204.5,1190.339966,1195.880005,1195.880005,1393600 -1191,1200,1183.319946,1186.959961,1186.959961,1276700 -1186.959961,1196.859985,1184.219971,1184.910034,1184.910034,1247400 -1181.01001,1206.48999,1181,1205.5,1205.5,2619200 -1262.589966,1266,1235.560059,1248.079956,1248.079956,3318200 -1239.130005,1265.859985,1239.130005,1263.699951,1263.699951,2127800 -1251,1269.770996,1249.02002,1268.329956,1268.329956,2405600 -1271,1273.890015,1231,1238.5,1238.5,2130600 -1228.01001,1234.916016,1211.469971,1219.73999,1219.73999,1849900 -1220.01001,1227.588013,1205.599976,1217.26001,1217.26001,1644700 -1228,1233.469971,1210.209961,1220.01001,1220.01001,1567200 -1205.900024,1229.880005,1204.790039,1226.150024,1226.150024,1531300 -1229.619995,1230,1215.060059,1223.709961,1223.709961,1089600 -1225,1226.088013,1215.796997,1224.77002,1224.77002,1081700 -1237,1251.170044,1236.170044,1242.219971,1242.219971,1494000 -1240.469971,1256.5,1238.008057,1245.609985,1245.609985,1370300 -1249.900024,1255.541992,1246.01001,1249.099976,1249.099976,841800 -1243,1245.694946,1232,1237.609985,1237.609985,1108700 -1236.97998,1249.272949,1233.640991,1235.01001,1235.01001,958100 -1235.189941,1245.869995,1225.109985,1242.099976,1242.099976,1348100 -1229.26001,1235.23999,1209.51001,1214.380005,1214.380005,1828800 -1224.72998,1226,1202.550049,1206.48999,1206.48999,1343200 -1202.030029,1209.02002,1188.23999,1200.959961,1200.959961,1389600 -1205.02002,1211,1194.625977,1207.77002,1207.77002,870800 -1208,1217.26001,1200.354004,1201.619995,1201.619995,1205600 -1200,1211.839966,1199,1207.329956,1207.329956,887400 -1207.140015,1221.280029,1204.23999,1205.380005,1205.380005,992600 -1208.819946,1221.650024,1206.359009,1220.650024,1220.650024,946600 -1227.599976,1243.089966,1225.715942,1241.819946,1241.819946,1156300 -1241.290039,1242.545044,1228.689941,1231.150024,1231.150024,1304000 -1237.449951,1250.660034,1236.359009,1249.300049,1249.300049,1298900 -1244.22998,1253.63501,1232.589966,1239.119995,1239.119995,1331400 -1234.97998,1238.660034,1211.285034,1218.189941,1218.189941,1816400 -1204.27002,1212.98999,1192.5,1197,1197,1831000 -1193.800049,1199.01001,1162,1186.47998,1186.47998,2061300 -1186.300049,1186.300049,1152,1171.439941,1171.439941,1888500 -1158.670044,1175.26001,1157.214966,1164.829956,1164.829956,1401300 -1172.189941,1174.540039,1160.109985,1164.640015,1164.640015,1115400 -1161.630005,1178.680054,1156.23999,1177.359985,1177.359985,1209300 -1172.719971,1178.609985,1158.359985,1162.819946,1162.819946,1295500 -1170.73999,1178.609985,1162.849976,1175.329956,1175.329956,1431200 -1179.099976,1180.425049,1168.329956,1172.530029,1172.530029,944000 -1170.140015,1177.23999,1154.030029,1156.050049,1156.050049,1306500 -1157.089966,1176.079956,1157.089966,1161.219971,1161.219971,1203600 -1164.97998,1173.209961,1154.579956,1171.089966,1171.089966,1191400 -1179.98999,1189.890015,1173.359985,1186.869995,1186.869995,1210000 -1192,1192.209961,1166.040039,1166.089966,1166.089966,4405600 -1157.170044,1178,1146.910034,1173.369995,1173.369995,1271000 -1176.150024,1186.880005,1168,1184.650024,1184.650024,977700 -1185.150024,1194.22998,1174.765015,1180.48999,1180.48999,1462300 -1186.72998,1202.099976,1183.630005,1194.640015,1194.640015,1260800 -1191.869995,1195.410034,1184.5,1193.469971,1193.469971,1380600 -1199.890015,1209.900024,1190.300049,1195.310059,1195.310059,1357600 -1190.959961,1209.959961,1186.630005,1200.109985,1200.109985,1687900 -1205,1206.410034,1193.829956,1202.949951,1202.949951,1256200 -1195.329956,1197.51001,1155.57605,1168.189941,1168.189941,2209500 -1167.5,1173.5,1145.119995,1157.349976,1157.349976,1184300 -1150.109985,1168,1127.364014,1148.969971,1148.969971,1932400 -1146.150024,1154.349976,1137.572021,1138.819946,1138.819946,1308700 -1131.079956,1132.170044,1081.130005,1081.219971,1081.219971,2675700 -1072.939941,1106.400024,1068.27002,1079.319946,1079.319946,2949000 -1108,1115,1086.401978,1110.079956,1110.079956,2101300 -1108.910034,1113.446045,1089,1092.25,1092.25,1372400 -1104.589966,1124.219971,1102.5,1121.280029,1121.280029,1928500 -1126.459961,1128.98999,1102.189941,1115.689941,1115.689941,1467200 -1121.839966,1121.839966,1077.089966,1087.969971,1087.969971,2094500 -1093.369995,1110.359985,1087.75,1096.459961,1096.459961,1267600 -1103.060059,1112.22998,1091,1101.160034,1101.160034,1514200 -1080.890015,1107.890015,1070,1103.689941,1103.689941,1848700 -1104.25,1106.119995,1048.73999,1050.709961,1050.709961,1982400 -1071.790039,1110.97998,1069.550049,1095.569946,1095.569946,2545800 -1037.030029,1106.530029,1034.089966,1071.469971,1071.469971,4187600 -1082.469971,1097.040039,995.830017,1020.080017,1020.080017,3880700 -1008.460022,1037.48999,1000.75,1036.209961,1036.209961,3212700 -1059.810059,1091.939941,1057,1076.77002,1076.77002,2529800 -1075.800049,1083.974976,1062.459961,1070,1070,1482000 -1073.72998,1082.974976,1054.609985,1057.790039,1057.790039,1839000 -1055,1058.469971,1021.23999,1040.089966,1040.089966,2441400 -1039.47998,1064.344971,1038.069946,1055.810059,1055.810059,1233300 -1069,1095.459961,1065.900024,1093.390015,1093.390015,2058400 -1091.380005,1093.27002,1072.204956,1082.400024,1082.400024,1488200 -1073.98999,1075.560059,1053.109985,1066.150024,1066.150024,1343200 -1061.390015,1062.119995,1031,1038.630005,1038.630005,1471800 -1043.290039,1056.60498,1031.150024,1036.050049,1036.050049,1513700 -1050,1054.563965,1031,1043.660034,1043.660034,1565900 -1044.709961,1071.849976,1031.780029,1064.709961,1064.709961,1836100 -1059.410034,1067,1048.97998,1061.48999,1061.48999,1658100 -1057.199951,1060.790039,1016.26001,1020,1020,1858600 -1000,1031.73999,996.02002,1025.76001,1025.76001,2449100 -1036.76001,1048.560059,1033.469971,1037.609985,1037.609985,1534300 -1030,1037.589966,1022.398987,1023.880005,1023.880005,691500 -1038.349976,1049.310059,1033.910034,1048.619995,1048.619995,1942800 -1041,1057.579956,1038.48999,1044.410034,1044.410034,1803200 -1048.76001,1086.839966,1035.76001,1086.22998,1086.22998,2475400 -1076.079956,1094.244995,1076,1088.300049,1088.300049,1468900 -1089.069946,1095.569946,1077.880005,1094.430054,1094.430054,2580200 -1123.140015,1124.650024,1103.665039,1106.430054,1106.430054,1991200 -1103.119995,1104.420044,1049.97998,1050.819946,1050.819946,2345200 -1034.26001,1071.199951,1030.77002,1068.72998,1068.72998,2769200 -1060.01001,1075.26001,1028.5,1036.579956,1036.579956,2101200 -1035.050049,1048.449951,1023.289978,1039.550049,1039.550049,1807700 -1056.48999,1060.599976,1039.839966,1051.75,1051.75,1394700 -1068,1081.650024,1062.790039,1063.680054,1063.680054,1523800 -1068.069946,1079.76001,1053.930054,1061.900024,1061.900024,1329800 -1049.97998,1062.599976,1040.790039,1042.099976,1042.099976,1686600 -1037.51001,1053.150024,1007.900024,1016.530029,1016.530029,2385400 -1026.089966,1049.47998,1021.440002,1028.709961,1028.709961,2192500 -1033.98999,1062,1008.049988,1023.01001,1023.01001,2479300 -1018.130005,1034.219971,996.359985,1009.409973,1009.409973,2673500 -1015.299988,1024.02002,973.690002,979.539978,979.539978,4596000 -973.900024,1003.539978,970.109985,976.219971,976.219971,1590300 -989.01001,1040,983,1039.459961,1039.459961,2373300 -1017.150024,1043.890015,997,1043.880005,1043.880005,2109800 -1049.619995,1055.560059,1033.099976,1037.079956,1037.079956,1414800 -1050.959961,1052.699951,1023.590027,1035.609985,1035.609985,1493300 -1016.570007,1052.319946,1015.710022,1045.849976,1045.849976,1532600 -1041,1056.97998,1014.070007,1016.059998,1016.059998,1830600 -1032.589966,1070.839966,1027.417969,1070.709961,1070.709961,2093900 -1071.5,1074,1054.76001,1068.390015,1068.390015,1981900 -1076.109985,1084.560059,1060.530029,1076.280029,1076.280029,1764900 -1081.650024,1082.630005,1066.400024,1074.660034,1074.660034,1199300 -1067.660034,1071.150024,1057.709961,1070.329956,1070.329956,1456400 -1063.180054,1063.775024,1048.47998,1057.189941,1057.189941,1520800 -1046.920044,1051.530029,1041.255005,1044.689941,1044.689941,1144300 -1050.170044,1080.050049,1047.339966,1077.150024,1077.150024,1463600 -1080,1092.375,1079.339966,1080.969971,1080.969971,1331800 -1079.469971,1091.800049,1073.5,1089.900024,1089.900024,1242700 -1100,1108.352051,1090.900024,1098.26001,1098.26001,1955600 -1088,1091.51001,1063.469971,1070.52002,1070.52002,1613500 -1077.349976,1084.930054,1059.75,1075.569946,1075.569946,967000 -1076.47998,1079.474976,1060.699951,1073.900024,1073.900024,1361300 -1085,1094,1081.819946,1090.98999,1090.98999,1119100 -1080.109985,1083,1063.800049,1070.079956,1070.079956,1284300 -1072.680054,1075.150024,1055.86499,1060.619995,1060.619995,1021800 -1068.430054,1091,1066.849976,1089.060059,1089.060059,1279800 -1103,1117.329956,1095.410034,1116.369995,1116.369995,1538300 -1112.400024,1125,1104.890015,1110.75,1110.75,1462200 -1112.660034,1132.800049,1109.02002,1132.800049,1132.800049,2576500 -1124.839966,1146.849976,1117.248047,1145.98999,1145.98999,3552200 -1139.569946,1147,1112.77002,1115.22998,1115.22998,2105600 -1104.160034,1104.839966,1086,1098.709961,1098.709961,2044800 -1087,1098.910034,1086.550049,1095.060059,1095.060059,1075800 -1096.949951,1105.944946,1092.859985,1095.01001,1095.01001,1065200 -1106.800049,1125.295044,1105.849976,1121.369995,1121.369995,1609100 -1124.98999,1134.72998,1118.5,1120.160034,1120.160034,1049800 -1118.050049,1128.22998,1110.444946,1121.670044,1121.670044,947600 -1130.079956,1131.670044,1110.650024,1113.650024,1113.650024,1449800 -1110,1121.890015,1110,1118.560059,1118.560059,1046400 -1119.98999,1123.410034,1105.280029,1113.800049,1113.800049,1087800 -1110.839966,1111.939941,1092.52002,1096.969971,1096.969971,1415100 -1100.900024,1111.23999,1095.599976,1110.369995,1110.369995,1049500 -1116,1118.540039,1107.27002,1109.400024,1109.400024,1413100 -1105.75,1119.51001,1099.920044,1115.130005,1115.130005,1471300 -1106.949951,1117.97998,1101,1116.050049,1116.050049,968400 -1111.300049,1127.650024,1111.01001,1119.920044,1119.920044,1542500 -1124.900024,1142.969971,1124.75,1140.98999,1140.98999,1450300 -1146.98999,1158.280029,1130.689941,1147.800049,1147.800049,1446000 -1150.060059,1169.609985,1146.194946,1162.030029,1162.030029,1443200 -1162.48999,1167.56604,1155.48999,1157.859985,1157.859985,1099300 -1155.719971,1156.755005,1134.910034,1143.300049,1143.300049,1166100 -1126.72998,1147.079956,1123.300049,1142.319946,1142.319946,1212400 -1144.449951,1176.189941,1144.449951,1175.76001,1175.76001,1719200 -1178.26001,1200,1178.26001,1193.199951,1193.199951,2013100 -1200.64502,1200.930054,1191.939941,1193.319946,1193.319946,1435900 -1194.51001,1197.880005,1184.47998,1185.550049,1185.550049,1172800 -1193.380005,1196.569946,1182.609985,1184.459961,1184.459961,2461800 -1183.300049,1190,1177.421021,1184.26001,1184.26001,1292600 -1188.810059,1200,1185.869995,1198.849976,1198.849976,1520700 -1197.349976,1227.140015,1196.170044,1223.969971,1223.969971,2227400 -1216,1231.790039,1213.150024,1231.540039,1231.540039,1204000 -1226.319946,1230,1202.824951,1205.5,1205.5,1714200 -1196.930054,1206.397949,1187.040039,1193,1193,1496800 -1198.530029,1202.829956,1176.719971,1184.619995,1184.619995,1901200 -1185.5,1187.55896,1159.369995,1173.02002,1173.02002,1400200 -1171.540039,1171.564941,1159.43103,1168.48999,1168.48999,1012400 -1174.900024,1178.98999,1162.880005,1173.310059,1173.310059,1269900 -1184.099976,1196.660034,1182,1194.430054,1194.430054,1252500 -1195.319946,1201.349976,1185.709961,1200.48999,1200.48999,827900 -1207.47998,1216.300049,1200.5,1205.920044,1205.920044,1017800 -1205.939941,1215.670044,1204.130005,1215,1215,950000 -1214.98999,1216.219971,1205.030029,1207.150024,1207.150024,907200 -1207.890015,1208.689941,1199.859985,1203.839966,1203.839966,860200 -1196,1202.290039,1193.079956,1197.25,1197.25,865500 diff --git a/data/transaction_data.csv b/data/transaction_data.csv new file mode 100644 index 00000000..d8a978ac --- /dev/null +++ b/data/transaction_data.csv @@ -0,0 +1,361 @@ +id,date,transaction_number,city,transaction_value +1,11-Jan,469,Beirut,179.672 +2,11-Feb,422,Beirut,502.338 +3,11-Mar,523,Beirut,220.017 +4,11-Apr,540,Beirut,244.857 +5,11-May,592,Beirut,400.56 +6,11-Jun,611,Beirut,340.065 +7,11-Jul,516,Beirut,312.436 +8,11-Aug,559,Beirut,280.342 +9,11-Sep,533,Beirut,373.544 +10,11-Oct,717,Beirut,304.316 +11,11-Nov,925,Beirut,23.992 +12,11-Dec,1117,Beirut,599.198 +13,12-Jan,409,Beirut,208.727 +14,12-Feb,431,Beirut,284.376 +15,12-Mar,542,Beirut,371.756 +16,12-Apr,501,Beirut,239.474 +17,12-May,557,Beirut,394.861 +18,12-Jun,533,Beirut,447.222 +19,12-Jul,469,Beirut,247.481 +20,12-Aug,513,Beirut,286.88 +21,12-Sep,553,Beirut,415.255 +22,12-Oct,507,Beirut,444.624 +23,12-Nov,570,Beirut,307.115 +24,12-Dec,916,Beirut,492.86 +25,13-Jan,364,Beirut,176.052 +26,13-Feb,333,Beirut,174.326 +27,13-Mar,299,Beirut,176.2 +28,13-Apr,560,Beirut,296.167 +29,13-May,515,Beirut,297.959 +30,13-Jun,553,Beirut,324.049 +31,13-Jul,533,Beirut,318.328 +32,13-Aug,400,Beirut,245.108 +33,13-Sep,471,Beirut,319.075 +34,13-Oct,558,Beirut,492.046 +35,13-Nov,547,Beirut,300.705 +36,13-Dec,921,Beirut,582.023 +37,14-Jan,395,Beirut,433.823 +38,14-Feb,452,Beirut,226.236 +39,14-Mar,529,Beirut,260.777 +40,14-Apr,538,Beirut,340.665 +41,14-May,521,Beirut,515.116 +42,14-Jun,490,Beirut,238.155 +43,14-Jul,441,Beirut,237.252 +44,14-Aug,447,Beirut,243.356 +45,14-Sep,530,Beirut,341.588 +46,14-Oct,458,Beirut,284.168 +47,14-Nov,449,Beirut,210.212 +48,14-Dec,673,Beirut,348.164 +49,15-Jan,254,Beirut,266.641 +50,15-Feb,305,Beirut,164.716 +51,15-Mar,416,Beirut,211.102 +52,15-Apr,375,Beirut,233.454 +53,15-May,414,Beirut,218.756 +54,15-Jun,500,Beirut,235.809 +55,15-Jul,395,Beirut,394.021 +56,15-Aug,392,Beirut,20.98 +57,15-Sep,418,Beirut,232.992 +58,15-Oct,404,Beirut,222.747 +59,15-Nov,446,Beirut,244.619 +60,15-Dec,741,Beirut,371.27 +61,16-Jan,303,Beirut,141.757 +62,16-Feb,442,Beirut,500.932 +63,16-Mar,405,Beirut,217.064 +64,16-Apr,470,Beirut,297.91 +65,16-May,400,Beirut,201.682 +66,16-Jun,474,Beirut,270.022 +67,16-Jul,378,Beirut,201.686 +68,16-Aug,476,Beirut,282.233 +69,16-Sep,417,Beirut,286.562 +70,16-Oct,408,Beirut,168.748 +71,16-Nov,507,Beirut,269.303 +72,16-Dec,700,Beirut,515.327 +73,11-Jan,1523,Baabda,168.093 +74,11-Feb,1446,Baabda,228.751 +75,11-Mar,1865,Baabda,214.211 +76,11-Apr,1694,Baabda,229.316 +77,11-May,1759,Baabda,218.475 +78,11-Jun,1770,Baabda,202.401 +79,11-Jul,1845,Baabda,228.702 +80,11-Aug,1656,Baabda,218.573 +81,11-Sep,1769,Baabda,237.509 +82,11-Oct,2131,Baabda,286.039 +83,11-Nov,1863,Baabda,232.493 +84,11-Dec,2457,Baabda,439.213 +85,12-Jan,1415,Baabda,214.832 +86,12-Feb,1490,Baabda,206.183 +87,12-Mar,1721,Baabda,239.016 +88,12-Apr,1416,Baabda,239.95 +89,12-May,1731,Baabda,221.967 +90,12-Jun,1599,Baabda,237.799 +91,12-Jul,1587,Baabda,240.391 +92,12-Aug,1574,Baabda,213.099 +93,12-Sep,1633,Baabda,231.778 +94,12-Oct,1712,Baabda,250.794 +95,12-Nov,1865,Baabda,273.368 +96,12-Dec,2506,Baabda,349.004 +97,13-Jan,1073,Baabda,159.996 +98,13-Feb,908,Baabda,129.8 +99,13-Mar,1292,Baabda,203.646 +100,13-Apr,1714,Baabda,269.798 +101,13-May,204,Baabda,240.185 +102,13-Jun,1517,Baabda,280.453 +103,13-Jul,1600,Baabda,277.169 +104,13-Aug,1384,Baabda,213.521 +105,13-Sep,1494,Baabda,226.951 +106,13-Oct,1456,Baabda,220.468 +107,13-Nov,1632,Baabda,253.519 +108,13-Dec,2039,Baabda,339.551 +109,14-Jan,1232,Baabda,204.443 +110,14-Feb,1358,Baabda,220.955 +111,14-Mar,1390,Baabda,239.542 +112,14-Apr,1667,Baabda,257.938 +113,14-May,1732,Baabda,309.496 +114,14-Jun,1356,Baabda,214.841 +115,14-Jul,129,Baabda,241.81 +116,14-Aug,1492,Baabda,257.405 +117,14-Sep,1574,Baabda,252.685 +118,14-Oct,1611,Baabda,207.616 +119,14-Nov,1330,Baabda,279.407 +120,14-Dec,1795,Baabda,283.836 +121,15-Jan,894,Baabda,152.301 +122,15-Feb,882,Baabda,160.49 +123,15-Mar,1385,Baabda,205.81 +124,15-Apr,1161,Baabda,200.686 +125,15-May,1256,Baabda,226.018 +126,15-Jun,1318,Baabda,233.177 +127,15-Jul,1330,Baabda,225.512 +128,15-Aug,1401,Baabda,247.245 +129,15-Sep,1336,Baabda,269.964 +130,15-Oct,1371,Baabda,210.77 +131,15-Nov,1258,Baabda,205.539 +132,15-Dec,1646,Baabda,321.302 +133,16-Jan,1041,Baabda,226.395 +134,16-Feb,1213,Baabda,201.465 +135,16-Mar,1440,Baabda,301.443 +136,16-Apr,1358,Baabda,220.442 +137,16-May,1166,Baabda,272.838 +138,16-Jun,1276,Baabda,215.574 +139,16-Jul,1140,Baabda,200.455 +140,16-Aug,1340,Baabda,251 +141,16-Sep,1259,Baabda,311.641 +142,16-Oct,1415,Baabda,253.662 +143,16-Nov,1506,Baabda,276.353 +144,16-Dec,1539,Baabda,255.869 +145,11-Jan,731,Kesrouan,80.659 +146,11-Feb,704,Kesrouan,111.395 +147,11-Mar,964,Kesrouan,119.069 +148,11-Apr,886,Kesrouan,109.788 +149,11-May,921,Kesrouan,122.125 +150,11-Jun,913,Kesrouan,120.925 +151,11-Jul,779,Kesrouan,113.032 +152,11-Aug,993,Kesrouan,136.946 +153,11-Sep,1024,Kesrouan,133.319 +154,11-Oct,1111,Kesrouan,143.112 +155,11-Nov,950,Kesrouan,114.677 +156,11-Dec,1272,Kesrouan,182.054 +157,12-Jan,689,Kesrouan,109.852 +158,12-Feb,654,Kesrouan,95.146 +159,12-Mar,823,Kesrouan,131.82 +160,12-Apr,618,Kesrouan,101.247 +161,12-May,793,Kesrouan,126.152 +162,12-Jun,785,Kesrouan,142.168 +163,12-Jul,818,Kesrouan,124.262 +164,12-Aug,807,Kesrouan,116.81 +165,12-Sep,792,Kesrouan,125.813 +166,12-Oct,840,Kesrouan,165.411 +167,12-Nov,777,Kesrouan,104.1 +168,12-Dec,1036,Kesrouan,143.382 +169,13-Jan,654,Kesrouan,106.447 +170,13-Feb,542,Kesrouan,90.707 +171,13-Mar,692,Kesrouan,115.106 +172,13-Apr,825,Kesrouan,125.542 +173,13-May,766,Kesrouan,133.566 +174,13-Jun,820,Kesrouan,153.359 +175,13-Jul,861,Kesrouan,166.566 +176,13-Aug,772,Kesrouan,108.859 +177,13-Sep,736,Kesrouan,115.545 +178,13-Oct,790,Kesrouan,135.102 +179,13-Nov,810,Kesrouan,133.925 +180,13-Dec,849,Kesrouan,146.164 +181,14-Jan,718,Kesrouan,105.085 +182,14-Feb,703,Kesrouan,107.202 +183,14-Mar,738,Kesrouan,127.795 +184,14-Apr,824,Kesrouan,140.109 +185,14-May,741,Kesrouan,162.739 +186,14-Jun,663,Kesrouan,113.379 +187,14-Jul,1141,Kesrouan,105.27 +188,14-Aug,809,Kesrouan,117.323 +189,14-Sep,783,Kesrouan,130.766 +190,14-Oct,849,Kesrouan,126.206 +191,14-Nov,713,Kesrouan,145.347 +192,14-Dec,884,Kesrouan,174.539 +193,15-Jan,481,Kesrouan,82.792 +194,15-Feb,512,Kesrouan,79.493 +195,15-Mar,623,Kesrouan,107.413 +196,15-Apr,625,Kesrouan,125.46 +197,15-May,692,Kesrouan,147.168 +198,15-Jun,753,Kesrouan,157.722 +199,15-Jul,665,Kesrouan,120.439 +200,15-Aug,797,Kesrouan,128.261 +201,15-Sep,683,Kesrouan,141.926 +202,15-Oct,773,Kesrouan,171.997 +203,15-Nov,170,Kesrouan,106.886 +204,15-Dec,826,Kesrouan,145.92 +205,16-Jan,579,Kesrouan,90.79 +206,16-Feb,624,Kesrouan,106.494 +207,16-Mar,692,Kesrouan,115.288 +208,16-Apr,593,Kesrouan,106.945 +209,16-May,543,Kesrouan,101.911 +210,16-Jun,619,Kesrouan,103.639 +211,16-Jul,606,Kesrouan,103.101 +212,16-Aug,91,Kesrouan,107.929 +213,16-Sep,639,Kesrouan,89.194 +214,16-Oct,748,Kesrouan,116.232 +215,16-Nov,662,Kesrouan,114.592 +216,16-Dec,815,Kesrouan,166.404 +217,11-Jan,621,Tripoli,34.869 +218,11-Feb,595,Tripoli,30.049 +219,11-Mar,739,Tripoli,32.345 +220,11-Apr,633,Tripoli,34.863 +221,11-May,721,Tripoli,38.696 +222,11-Jun,666,Tripoli,32.268 +223,11-Jul,686,Tripoli,34.383 +224,11-Aug,573,Tripoli,37.597 +225,11-Sep,683,Tripoli,35.774 +226,11-Oct,755,Tripoli,40.423 +227,11-Nov,603,Tripoli,33.097 +228,11-Dec,968,Tripoli,42.233 +229,12-Jan,633,Tripoli,34.57 +230,12-Feb,627,Tripoli,26.729 +231,12-Mar,630,Tripoli,43.045 +232,12-Apr,546,Tripoli,34.217 +233,12-May,561,Tripoli,37.216 +234,12-Jun,556,Tripoli,37.2 +235,12-Jul,543,Tripoli,33.045 +236,12-Aug,391,Tripoli,23.344 +237,12-Sep,653,Tripoli,50.2 +238,12-Oct,629,Tripoli,35.759 +239,12-Nov,550,Tripoli,29.975 +240,12-Dec,674,Tripoli,52.28 +241,13-Jan,460,Tripoli,23.928 +242,13-Feb,422,Tripoli,32.194 +243,13-Mar,492,Tripoli,37.806 +244,13-Apr,603,Tripoli,26.529 +245,13-May,521,Tripoli,53.196 +246,13-Jun,490,Tripoli,28.844 +247,13-Jul,515,Tripoli,36.804 +248,13-Aug,454,Tripoli,29.439 +249,13-Sep,550,Tripoli,28.541 +250,13-Oct,466,Tripoli,41.914 +251,13-Nov,499,Tripoli,33.148 +252,13-Dec,561,Tripoli,29.285 +253,14-Jan,453,Tripoli,29.553 +254,14-Feb,537,Tripoli,35.601 +255,14-Mar,497,Tripoli,24.077 +256,14-Apr,597,Tripoli,38.162 +257,14-May,590,Tripoli,41.57 +258,14-Jun,548,Tripoli,36.204 +259,14-Jul,607,Tripoli,33.634 +260,14-Aug,545,Tripoli,44.526 +261,14-Sep,590,Tripoli,39.738 +262,14-Oct,445,Tripoli,40.437 +263,14-Nov,468,Tripoli,28.159 +264,14-Dec,556,Tripoli,32.312 +265,15-Jan,400,Tripoli,33.171 +266,15-Feb,415,Tripoli,25.535 +267,15-Mar,509,Tripoli,26.992 +268,15-Apr,471,Tripoli,23.727 +269,15-May,543,Tripoli,36.065 +270,15-Jun,519,Tripoli,27.172 +271,15-Jul,447,Tripoli,33.856 +272,15-Aug,611,Tripoli,32.35 +273,15-Sep,384,Tripoli,34.319 +274,15-Oct,514,Tripoli,36.33 +275,15-Nov,527,Tripoli,36.712 +276,15-Dec,555,Tripoli,32.538 +277,16-Jan,429,Tripoli,28.713 +278,16-Feb,507,Tripoli,34.828 +279,16-Mar,520,Tripoli,39.424 +280,16-Apr,489,Tripoli,39.705 +281,16-May,458,Tripoli,29.661 +282,16-Jun,475,Tripoli,30.813 +283,16-Jul,429,Tripoli,37.235 +284,16-Aug,530,Tripoli,33.724 +285,16-Sep,461,Tripoli,25.447 +286,16-Oct,548,Tripoli,32.385 +287,16-Nov,581,Tripoli,39.532 +288,16-Dec,586,Tripoli,42.618 +289,11-Jan,539,Bekaa,18.988 +290,11-Feb,608,Bekaa,15.206 +291,11-Mar,915,Bekaa,38.896 +292,11-Apr,704,Bekaa,32.465 +293,11-May,799,Bekaa,37.688 +294,11-Jun,924,Bekaa,35.716 +295,11-Jul,762,Bekaa,36.784 +296,11-Aug,731,Bekaa,35.262 +297,11-Sep,753,Bekaa,33.596 +298,11-Oct,839,Bekaa,43.517 +299,11-Nov,752,Bekaa,37.012 +300,11-Dec,1066,Bekaa,42.374 +301,12-Jan,666,Bekaa,33.419 +302,12-Feb,396,Bekaa,22.855 +303,12-Mar,591,Bekaa,32.547 +304,12-Apr,712,Bekaa,36.864 +305,12-May,749,Bekaa,39.682 +306,12-Jun,674,Bekaa,40.714 +307,12-Jul,661,Bekaa,36.105 +308,12-Aug,713,Bekaa,38.884 +309,12-Sep,825,Bekaa,62.986 +310,12-Oct,774,Bekaa,33.443 +311,12-Nov,724,Bekaa,33.998 +312,12-Dec,948,Bekaa,44.042 +313,13-Jan,586,Bekaa,29.673 +314,13-Feb,663,Bekaa,30.755 +315,13-Mar,670,Bekaa,32.377 +316,13-Apr,863,Bekaa,41.144 +317,13-May,775,Bekaa,34.696 +318,13-Jun,722,Bekaa,34.974 +319,13-Jul,746,Bekaa,31.842 +320,13-Aug,709,Bekaa,35.375 +321,13-Sep,892,Bekaa,38.111 +322,13-Oct,757,Bekaa,34.088 +323,13-Nov,842,Bekaa,41.95 +324,13-Dec,742,Bekaa,48.607 +325,14-Jan,593,Bekaa,37.079 +326,14-Feb,634,Bekaa,31.415 +327,14-Mar,691,Bekaa,33.419 +328,14-Apr,727,Bekaa,40.11 +329,14-May,716,Bekaa,55.859 +330,14-Jun,663,Bekaa,42.07 +331,14-Jul,508,Bekaa,37.027 +332,14-Aug,893,Bekaa,48.445 +333,14-Sep,936,Bekaa,42.879 +334,14-Oct,784,Bekaa,38.564 +335,14-Nov,810,Bekaa,40.973 +336,14-Dec,145,Bekaa,47.744 +337,15-Jan,357,Bekaa,22.714 +338,15-Feb,477,Bekaa,21.658 +339,15-Mar,762,Bekaa,38.1 +340,15-Apr,698,Bekaa,28.487 +341,15-May,759,Bekaa,33.424 +342,15-Jun,756,Bekaa,38.146 +343,15-Jul,704,Bekaa,46.859 +344,15-Aug,965,Bekaa,45.48 +345,15-Sep,803,Bekaa,42.696 +346,15-Oct,762,Bekaa,33.738 +347,15-Nov,710,Bekaa,32.772 +348,15-Dec,962,Bekaa,51.427 +349,16-Jan,536,Bekaa,19.919 +350,16-Feb,729,Bekaa,41.907 +351,16-Mar,784,Bekaa,45.019 +352,16-Apr,807,Bekaa,46.032 +353,16-May,602,Bekaa,26.837 +354,16-Jun,636,Bekaa,31.268 +355,16-Jul,689,Bekaa,37.114 +356,16-Aug,911,Bekaa,37.075 +357,16-Sep,800,Bekaa,35.583 +358,16-Oct,903,Bekaa,39.955 +359,16-Nov,1030,Bekaa,64.784 +360,16-Dec,837,Bekaa,38.119 \ No newline at end of file diff --git a/data_loading.py b/data_loading.py index c85a974b..18497e0f 100755 --- a/data_loading.py +++ b/data_loading.py @@ -22,22 +22,115 @@ ## Necessary Packages import numpy as np +import pandas as pd +def transaction_data_loading(seq_len): + """Load and preprocess transaction datasets. -def MinMaxScaler(data): - """Min Max normalizer. - Args: - - data: original data - + - seq_len: sequence length + Returns: - - norm_data: normalized data + - data: preprocessed data. """ - numerator = data - np.min(data, 0) - denominator = np.max(data, 0) - np.min(data, 0) - norm_data = numerator / (denominator + 1e-7) - return norm_data + # # Load the data + # try: + # ori_data = np.loadtxt('data/transaction_data.csv', delimiter=",", skiprows=1) + # except FileNotFoundError: + # print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + # return None + + try: + # Assuming the first column is the date and has a header like 'date' + df = pd.read_csv('data/transaction_data.csv') + except FileNotFoundError: + print("Error: 'data/transaction_data.csv' not found. Make sure the file exists in the 'data' directory.") + return None + + if 'date' in df.columns: + df = df.drop(columns=['date']) + if 'id' in df.columns: + df = df.drop(columns=['id']) + +# --- Step 2: One-Hot Encode the City Column --- + if 'city' in df.columns: + df = pd.get_dummies(df, columns=['city'], prefix='city') + +# ... (rest of the function) + + numeric_df = df.select_dtypes(include=np.number) + + if numeric_df.shape[1] == 0: + print("Error: No numeric columns found in the data after cleaning. Please check your CSV file.") + return None + + # Convert the numeric data to a NumPy array + ori_data = numeric_df.values + + # Convert all data to a NumPy array for processing + # ori_data = df.values + ori_data = df.select_dtypes(include=np.number).values + + + # Flip the data to make it chronological if it's not already + ori_data = ori_data[::-1] + # Normalize the data + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Sauvegarder les valeurs min et max dans un fichier .npz (format compressé de NumPy) + # Nous les chargerons plus tard dans notre autre script. + np.savez('min_max_values.npz', min_val=min_val, max_val=max_val) + print("-> Valeurs min/max sauvegardées dans min_max_values.npz") + # Preprocess the dataset + temp_data = [] + # Cut data by sequence length + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + # Mix the datasets (to make it similar to i.i.d) + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + return data + +# def MinMaxScaler(data): +# """Min Max normalizer. + +# Args: +# - data: original data + +# Returns: +# - norm_data: normalized data +# """ +# numerator = data - np.min(data, 0) +# denominator = np.max(data, 0) - np.min(data, 0) +# norm_data = numerator / (denominator + 1e-7) +# return norm_data +# REMPLACEZ l'ancienne fonction MinMaxScaler par celle-ci : +def MinMaxScaler(data): + """Min Max normalizer. + + MODIFIÉ pour retourner les données normalisées AINSI QUE les valeurs min et max. + + Args: + - data: original data + + Returns: + - norm_data: normalized data + - min_val: minimum values + - max_val: maximum values + """ + min_val = np.min(data, 0) + max_val = np.max(data, 0) + + numerator = data - min_val + denominator = max_val - min_val + norm_data = numerator / (denominator + 1e-7) + + return norm_data, min_val, max_val def sine_data_generation (no, seq_len, dim): """Sine data generation. @@ -77,39 +170,80 @@ def sine_data_generation (no, seq_len, dim): return data -def real_data_loading (data_name, seq_len): - """Load and preprocess real-world datasets. +# def real_data_loading (data_name, seq_len): +# """Load and preprocess real-world datasets. - Args: - - data_name: stock or energy - - seq_len: sequence length +# Args: +# - data_name: stock, energy, or transaction +# - seq_len: sequence length - Returns: - - data: preprocessed data. - """ - assert data_name in ['stock','energy'] +# Returns: +# - data: preprocessed data. +# """ +# # Allow all valid dataset names +# assert data_name in ['stock', 'energy', 'transaction'] - if data_name == 'stock': - ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) - elif data_name == 'energy': - ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) +# # Call the correct function for your special case +# if data_name == 'transaction': +# return transaction_data_loading(seq_len) + +# # Original logic for the other datasets +# if data_name == 'stock': +# ori_data = np.loadtxt('data/stock_data.csv', delimiter = ",",skiprows = 1) +# elif data_name == 'energy': +# ori_data = np.loadtxt('data/energy_data.csv', delimiter = ",",skiprows = 1) - # Flip the data to make chronological data - ori_data = ori_data[::-1] - # Normalize the data - ori_data = MinMaxScaler(ori_data) +# # Flip the data to make chronological data +# ori_data = ori_data[::-1] +# # Normalize the data +# ori_data = MinMaxScaler(ori_data) - # Preprocess the dataset - temp_data = [] - # Cut data by sequence length - for i in range(0, len(ori_data) - seq_len): - _x = ori_data[i:i + seq_len] - temp_data.append(_x) +# # Preprocess the dataset +# temp_data = [] +# # Cut data by sequence length +# for i in range(0, len(ori_data) - seq_len): +# _x = ori_data[i:i + seq_len] +# temp_data.append(_x) - # Mix the datasets (to make it similar to i.i.d) - idx = np.random.permutation(len(temp_data)) - data = [] - for i in range(len(temp_data)): - data.append(temp_data[idx[i]]) +# # Mix the datasets (to make it similar to i.i.d) +# idx = np.random.permutation(len(temp_data)) +# data = [] +# for i in range(len(temp_data)): +# data.append(temp_data[idx[i]]) + +# return data + +def real_data_loading(data_name, seq_len): + """ + Loads data for a SINGLE city, scales it, and saves the scaler. + """ + # The data_name will now be something like "Beirut" or "Tripoli" + file_name = f'data/{data_name}_data.csv' - return data \ No newline at end of file + try: + df = pd.read_csv(file_name) + except FileNotFoundError: + print(f"Error: {file_name} not found.") + return None + + ori_data = df.values + + # Normalize and get min/max values + ori_data, min_val, max_val = MinMaxScaler(ori_data) + + # Save the city-specific scaler values + np.savez(f'min_max_{data_name}.npz', min_val=min_val, max_val=max_val) + print(f"-> Min/max values saved to min_max_{data_name}.npz") + + # Prepare sequences (this part is the same as before) + temp_data = [] + for i in range(0, len(ori_data) - seq_len + 1): + _x = ori_data[i:i + seq_len] + temp_data.append(_x) + + idx = np.random.permutation(len(temp_data)) + data = [] + for i in range(len(temp_data)): + data.append(temp_data[idx[i]]) + + return data \ No newline at end of file diff --git a/data_prep.py b/data_prep.py new file mode 100644 index 00000000..7c3c1b90 --- /dev/null +++ b/data_prep.py @@ -0,0 +1,14 @@ +import pandas as pd + +# Load your cleaned, original data file +df = pd.read_csv('data/transaction_data.csv') + +# Get a list of unique cities +cities = df['city'].unique() + +# Create a separate CSV file for each city +for city in cities: + city_df = df[df['city'] == city] + # We only need the numeric columns for training + city_df[['transaction_number', 'transaction_value']].to_csv(f'data/{city}_data.csv', index=False) + print(f'Created data/{city}_data.csv') \ No newline at end of file diff --git a/final_usable_synthetic_data.csv b/final_usable_synthetic_data.csv new file mode 100644 index 00000000..ebe8ab6c --- /dev/null +++ b/final_usable_synthetic_data.csv @@ -0,0 +1,4189 @@ +date,city,transaction_number,transaction_value +2017-01-01,Baabda,1935.3499147128293,294.9723686897918 +2017-02-01,Baabda,1787.87602453358,273.90202272872955 +2017-03-01,Baabda,1760.243005147002,270.4634690548589 +2017-04-01,Baabda,1708.6481451914435,264.0422678132731 +2017-05-01,Baabda,1613.74060123814,251.40800356730384 +2017-06-01,Baabda,1514.1497996456221,238.47073014751632 +2017-07-01,Baabda,1511.2844261535,240.52757243136668 +2017-08-01,Baabda,1538.8090547915815,252.85085632594118 +2017-09-01,Baabda,1506.2677913914206,270.40958528678647 +2017-10-01,Baabda,1775.4411730068807,270.87219205531534 +2017-11-01,Baabda,1117.9663556984995,258.12224130857817 +2017-12-01,Baabda,1510.282855332733,265.6754019789957 +2018-01-01,Baabda,1783.1593716039922,287.997849375028 +2018-02-01,Baabda,1749.88427548692,271.87354948297934 +2018-03-01,Baabda,1435.8683601060934,222.6022911322225 +2018-04-01,Baabda,516.775125903142,219.20178329717817 +2018-05-01,Baabda,530.9499152418591,218.40398677112117 +2018-06-01,Baabda,741.9772741525031,217.7759867700366 +2018-07-01,Baabda,607.4127509082105,234.77887403161523 +2018-08-01,Baabda,1120.0063473156176,236.10398657997803 +2018-09-01,Baabda,2075.493826545558,326.76532343250136 +2018-10-01,Baabda,1401.424428825953,252.40337390962642 +2018-11-01,Baabda,741.0626462428806,226.12938057101064 +2018-12-01,Baabda,1197.5380481917427,301.8296351151808 +2019-01-01,Baabda,1451.8261268767492,311.80464142345886 +2019-02-01,Baabda,2001.7072203560244,309.002929144142 +2019-03-01,Baabda,2006.599342505289,308.7651165450006 +2019-04-01,Baabda,2007.9925882618577,308.51160525115597 +2019-05-01,Baabda,638.931571431121,225.05619552356788 +2019-06-01,Baabda,738.9062029451068,212.69982602075515 +2019-07-01,Baabda,707.8465676648302,198.21852854265163 +2019-08-01,Baabda,839.1798806476733,229.33525591950644 +2019-09-01,Baabda,2013.1076815524516,309.55770918001963 +2019-10-01,Baabda,2027.2153204473793,312.76170486218734 +2019-11-01,Baabda,2022.0222088491028,305.105493225763 +2019-12-01,Baabda,2013.5518964925045,303.7089011439785 +2020-01-01,Baabda,2004.1813507479965,303.2012171922107 +2020-02-01,Baabda,1991.3440283942114,304.2521595214375 +2020-03-01,Baabda,1952.816083413755,303.7605571593658 +2020-04-01,Baabda,1828.644764709046,294.36161636769936 +2020-05-01,Baabda,1368.107732541131,255.233629270222 +2020-06-01,Baabda,2020.2430459654177,311.1651719769093 +2020-07-01,Baabda,1919.2893710571452,292.68049849765646 +2020-08-01,Baabda,2071.0489421859056,332.85679987236483 +2020-09-01,Baabda,2038.9357718614792,354.8405418386627 +2020-10-01,Baabda,1810.1901242021124,318.17155859766154 +2020-11-01,Baabda,817.8035840687206,229.75884220740926 +2020-12-01,Baabda,642.448656893784,203.0557454121313 +2021-01-01,Baabda,1924.8789077833885,325.0343247874922 +2021-02-01,Baabda,1964.0528788983092,322.678685174744 +2021-03-01,Baabda,1960.7949667990827,315.4444412246621 +2021-04-01,Baabda,1967.114593666592,313.3659827780385 +2021-05-01,Baabda,1954.6499454799477,308.5296361244515 +2021-06-01,Baabda,1487.1649655717656,283.0227380952002 +2021-07-01,Baabda,1921.0662308173562,300.43967407849823 +2021-08-01,Baabda,1806.281147885822,278.9549661179953 +2021-09-01,Baabda,1877.239230558818,297.23313736592405 +2021-10-01,Baabda,795.2696800536356,259.7056165295594 +2021-11-01,Baabda,763.9469129164517,233.11213212811876 +2021-12-01,Baabda,1086.7653662150046,233.2660907238451 +2022-01-01,Baabda,1318.76028926057,236.68556926534902 +2022-02-01,Baabda,901.0577550791053,195.07322022028376 +2022-03-01,Baabda,456.6510799971806,269.3376533502291 +2022-04-01,Baabda,1863.324334309623,288.81632223069425 +2022-05-01,Baabda,2066.7647006885663,343.95041649768154 +2022-06-01,Baabda,938.9280143625102,265.2184690180869 +2022-07-01,Baabda,967.1621489758088,213.34448195402487 +2022-08-01,Baabda,1917.3130032259971,355.111248598546 +2022-09-01,Baabda,1290.6913317839244,310.8497709287799 +2022-10-01,Baabda,772.4965390876865,274.7212439700634 +2022-11-01,Baabda,879.343043294688,243.99980346028266 +2022-12-01,Baabda,512.2456737284276,270.03723731064247 +2023-01-01,Baabda,878.0826589735274,245.3806446344103 +2023-02-01,Baabda,1039.392995258638,270.1768547484581 +2023-03-01,Baabda,1180.205388679702,275.2114017737534 +2023-04-01,Baabda,1129.6790340708744,249.53872761695365 +2023-05-01,Baabda,1625.7381471952085,297.4498559318278 +2023-06-01,Baabda,1926.331171078979,321.30196882394745 +2023-07-01,Baabda,1991.6168045806662,319.79186578112666 +2023-08-01,Baabda,1976.6748592072731,307.86924668784275 +2023-09-01,Baabda,1773.7288007039426,264.1166538677762 +2023-10-01,Baabda,875.2190128240106,184.05099610679943 +2023-11-01,Baabda,1201.1826691167798,243.73736375137946 +2023-12-01,Baabda,567.8615713518095,292.2957064342476 +2024-01-01,Baabda,1407.6240053823788,246.81103590146498 +2024-02-01,Baabda,1465.66358059913,327.5001337322489 +2024-03-01,Baabda,1001.6544458489038,261.8269592153725 +2024-04-01,Baabda,843.0471848236052,249.02406453372691 +2024-05-01,Baabda,1064.2120295956076,241.76729939634342 +2024-06-01,Baabda,1517.0035135751573,308.53555359252147 +2024-07-01,Baabda,1960.1649185837198,300.5992890775268 +2024-08-01,Baabda,1944.6028572149448,296.6435312900229 +2024-09-01,Baabda,973.2122384242487,260.81846601738886 +2024-10-01,Baabda,835.057001738733,239.16201224831389 +2024-11-01,Baabda,1617.7202546560393,299.06908404758593 +2024-12-01,Baabda,1240.259549182749,245.82435031375095 +2025-01-01,Baabda,1710.8798718377745,279.0812866569713 +2025-02-01,Baabda,1389.9030536471394,285.1370320322829 +2025-03-01,Baabda,1803.289678383497,279.0447375894803 +2025-04-01,Baabda,1765.476277460857,263.20398884389033 +2025-05-01,Baabda,1614.4927149976265,239.06232031565276 +2025-06-01,Baabda,1369.3838068909586,211.0817465899752 +2025-07-01,Baabda,1014.3008968447789,188.60097211443556 +2025-08-01,Baabda,1927.5912675097052,293.84171458479886 +2025-09-01,Baabda,1894.2666542379413,305.2725398685147 +2025-10-01,Baabda,1318.4752777306594,263.41952391618014 +2025-11-01,Baabda,1646.6695091080226,278.7901298236109 +2025-12-01,Baabda,1787.9894533646755,269.2845701807779 +2026-01-01,Baabda,1166.336554899988,240.9199179687236 +2026-02-01,Baabda,1956.3970085802137,301.3113519338407 +2026-03-01,Baabda,1947.4502375549262,310.1939762320843 +2026-04-01,Baabda,564.7011821371862,218.21267850928257 +2026-05-01,Baabda,1628.1870871741835,329.37990448626437 +2026-06-01,Baabda,1260.4403087608566,249.9720777271719 +2026-07-01,Baabda,1745.5847757965653,285.6264066416694 +2026-08-01,Baabda,1097.1984435797324,222.1152835100639 +2026-09-01,Baabda,1646.5657246064743,293.63054799629026 +2026-10-01,Baabda,1586.1509093619172,301.05811910908164 +2026-11-01,Baabda,501.84440825668463,268.7516325638057 +2026-12-01,Baabda,1959.5491209448521,305.5447085910976 +2027-01-01,Baabda,816.4113459286721,230.56608927806036 +2027-02-01,Baabda,1250.5742316063902,288.88903747068343 +2027-03-01,Baabda,1447.637752894016,289.70885045882426 +2027-04-01,Baabda,1302.788127968202,250.23390828495022 +2027-05-01,Baabda,1742.9548966796622,339.8233654138698 +2027-06-01,Baabda,1455.6991168887575,238.4094843529921 +2027-07-01,Baabda,1022.9993623705227,242.2773329310213 +2027-08-01,Baabda,1468.5187339808363,271.0738384819585 +2027-09-01,Baabda,1876.1766269659893,309.7933288351116 +2027-10-01,Baabda,963.1479487057991,246.0243955431517 +2027-11-01,Baabda,651.7355704671412,222.2943739407698 +2027-12-01,Baabda,649.4460498161341,224.15237189315127 +2028-01-01,Baabda,654.8681782548592,222.46827788475548 +2028-02-01,Baabda,1318.2966417162054,229.918544228027 +2028-03-01,Baabda,1347.9464775399442,227.36973409143002 +2028-04-01,Baabda,1223.5202318557042,213.15933482070622 +2028-05-01,Baabda,1107.8364989336487,204.99667493908163 +2028-06-01,Baabda,786.2250262807024,197.13061944230543 +2028-07-01,Baabda,494.52270676014837,252.73985158667566 +2028-08-01,Baabda,1916.8731066424582,311.4828007777239 +2028-09-01,Baabda,1979.0593117289754,312.8947434678546 +2028-10-01,Baabda,1406.0561540774358,259.05285018417027 +2028-11-01,Baabda,1997.6324191496044,311.07261581456777 +2028-12-01,Baabda,1115.7577322595175,268.4236481938686 +2029-01-01,Baabda,1138.8677050335432,259.42072525062605 +2029-02-01,Baabda,1160.5090767298343,247.73551845717296 +2029-03-01,Baabda,1149.6058742859707,235.9665272775762 +2029-04-01,Baabda,870.074842599557,215.00436655628735 +2029-05-01,Baabda,660.3909963729643,222.8835101000889 +2029-06-01,Baabda,497.73570795163135,265.9677249016523 +2029-07-01,Baabda,1043.80534799922,223.74638137059776 +2029-08-01,Baabda,1266.0226482262433,260.35119489167533 +2029-09-01,Baabda,1063.3850643232151,251.8013411507783 +2029-10-01,Baabda,884.1934933035947,260.0839689953626 +2029-11-01,Baabda,1584.4398325659333,276.665341082863 +2029-12-01,Baabda,925.5840048444395,246.35446843123106 +2030-01-01,Baabda,1340.308600373989,263.8407258125371 +2030-02-01,Baabda,1858.9792039854392,311.6028557622729 +2030-03-01,Baabda,1969.046050589997,316.8197304213947 +2030-04-01,Baabda,2001.4581951303953,314.827388539507 +2030-05-01,Baabda,2013.7655111947204,312.6030471006407 +2030-06-01,Baabda,2021.1182328855475,311.7354418556759 +2030-07-01,Baabda,692.7911934603411,212.2644222010303 +2030-08-01,Baabda,2026.2035295161963,311.69078237606544 +2030-09-01,Baabda,2029.8741325529247,312.0489284288416 +2030-10-01,Baabda,2033.1644323260048,312.7126943031137 +2030-11-01,Baabda,2036.1155971675346,313.4938000883499 +2030-12-01,Baabda,701.8201572046077,251.48115391523936 +2031-01-01,Baabda,1040.9973366761224,228.17296076465712 +2031-02-01,Baabda,762.471762331338,238.9197267394843 +2031-03-01,Baabda,1074.9860412071,231.55227014055666 +2031-04-01,Baabda,1599.7425046534458,265.90238909243266 +2031-05-01,Baabda,1850.3685450421424,289.34026181533653 +2031-06-01,Baabda,1939.1299161145741,297.0816501833328 +2031-07-01,Baabda,1636.9199556068204,287.5248348244231 +2031-08-01,Baabda,454.9380599407653,291.43327027168516 +2031-09-01,Baabda,775.7574740364727,248.67044360359262 +2031-10-01,Baabda,1132.7524084017448,230.36952491223022 +2031-11-01,Baabda,1393.081651931729,242.74023557295368 +2031-12-01,Baabda,2047.5010880613809,348.8573550644797 +2032-01-01,Baabda,2038.0548271326643,357.3078127461191 +2032-02-01,Baabda,2015.519339720191,368.0396284119107 +2032-03-01,Baabda,1897.3670902696313,359.757748952994 +2032-04-01,Baabda,1627.826216514847,285.05182049207525 +2032-05-01,Baabda,553.4734552013108,234.56163333617593 +2032-06-01,Baabda,1034.0440629628217,237.56212032969023 +2032-07-01,Baabda,1249.203009468042,264.8209543983277 +2032-08-01,Baabda,1545.214185118064,277.4039803325382 +2032-09-01,Baabda,1970.0335147794856,313.2676135735341 +2032-10-01,Baabda,1987.8936615396865,310.28580141307594 +2032-11-01,Baabda,1978.117478173316,304.7402288069851 +2032-12-01,Baabda,1949.8152574723165,297.5296895378188 +2033-01-01,Baabda,1908.5278826795427,289.228317242907 +2033-02-01,Baabda,1861.516670272947,280.98453583577026 +2033-03-01,Baabda,1728.7652090109727,258.5776949024695 +2033-04-01,Baabda,1438.623759452331,220.5893077293613 +2033-05-01,Baabda,1898.8906064476994,311.4241482265598 +2033-06-01,Baabda,1724.04179065618,325.82949326155335 +2033-07-01,Baabda,1504.5033109198826,280.2649717184619 +2033-08-01,Baabda,1581.834855971593,264.79202842205626 +2033-09-01,Baabda,1988.8601097274745,304.6660864129319 +2033-10-01,Baabda,1975.666235070867,301.8888272001984 +2033-11-01,Baabda,1929.049720449632,292.4751275469927 +2033-12-01,Baabda,1904.262066169996,288.8441691392588 +2034-01-01,Baabda,886.5482931105688,270.0848207156522 +2034-02-01,Baabda,873.698375550285,267.9863124948621 +2034-03-01,Baabda,879.9995774300023,249.27773246643227 +2034-04-01,Baabda,673.1431751308191,227.4036899155609 +2034-05-01,Baabda,1598.893227872399,278.23186892416277 +2034-06-01,Baabda,799.0679624979555,212.90338692236216 +2034-07-01,Baabda,1213.663871003394,216.0432999061956 +2034-08-01,Baabda,1261.9210012368292,214.4370902201914 +2034-09-01,Baabda,800.9519174997087,188.42158581032615 +2034-10-01,Baabda,455.3298068491753,272.84070742606247 +2034-11-01,Baabda,772.7455643133154,234.0891061064709 +2034-12-01,Baabda,712.8464328091143,205.4238117078264 +2035-01-01,Baabda,1255.0006190056417,218.69453445335668 +2035-02-01,Baabda,1579.0325304845721,258.79690228582615 +2035-03-01,Baabda,1076.2314552256794,217.60055124607985 +2035-04-01,Baabda,2001.260990182932,308.1301722210928 +2035-05-01,Baabda,1189.285237058223,270.16394074461124 +2035-06-01,Baabda,1003.5689892092961,239.5426098711201 +2035-07-01,Baabda,727.2430417274236,201.33083827837052 +2035-08-01,Baabda,844.0148565457388,193.20893930915736 +2035-09-01,Baabda,1137.2957512899118,209.27253294053529 +2035-10-01,Baabda,1137.443367110075,217.11008016466855 +2035-11-01,Baabda,1000.8746226351202,221.10872219136186 +2035-12-01,Baabda,788.6099106380561,229.55321019197777 +2036-01-01,Baabda,746.5747404423098,253.93178629482844 +2036-02-01,Baabda,2043.4629928853278,316.54637820519775 +2036-03-01,Baabda,640.2450715374013,213.3634874691202 +2036-04-01,Baabda,2039.4228824762354,315.85403444101115 +2036-05-01,Baabda,2024.7711306605695,314.4393766772954 +2036-06-01,Baabda,2009.262904803,313.40569943137865 +2036-07-01,Baabda,1981.7509433440257,311.578594143186 +2036-08-01,Baabda,1932.5621276927384,307.86503484292234 +2036-09-01,Baabda,1861.7383459073221,304.86258116149065 +2036-10-01,Baabda,1687.0749315554615,293.6740761952402 +2036-11-01,Baabda,1243.0285513520048,267.1402886040348 +2036-12-01,Baabda,861.2525841870844,259.58815478837056 +2037-01-01,Baabda,2033.5029914766867,315.1139680372721 +2037-02-01,Baabda,858.8363197723972,253.3584880647554 +2037-03-01,Baabda,517.445910614952,243.31412554983373 +2037-04-01,Baabda,1853.3794471487797,279.13315152417283 +2037-05-01,Baabda,1681.979846650048,292.5262962414801 +2037-06-01,Baabda,1876.4184549307618,304.06154743231303 +2037-07-01,Baabda,1949.0808489745366,307.9268549799357 +2037-08-01,Baabda,1984.87872896697,309.3119254033016 +2037-09-01,Baabda,2001.9838830633416,309.4931739694212 +2037-10-01,Baabda,2013.4327098527235,310.2137127285294 +2037-11-01,Baabda,2016.4774390853856,310.0130061350503 +2037-12-01,Baabda,2017.859025279367,310.11228036408295 +2038-01-01,Baabda,1799.588702905955,270.6262342354188 +2038-02-01,Baabda,2020.0254007971223,310.7072991828364 +2038-03-01,Baabda,1301.7235091423333,267.0760666711578 +2038-04-01,Baabda,1823.3478686092212,309.5654018885106 +2038-05-01,Baabda,1943.5884752698537,314.4505154407213 +2038-06-01,Baabda,1968.9136209902406,309.90485570391263 +2038-07-01,Baabda,1967.2657361445752,304.24225646457927 +2038-08-01,Baabda,1967.4079540190962,301.8644437508865 +2038-09-01,Baabda,1943.0083760448333,295.6610575472292 +2038-10-01,Baabda,1897.228039189887,286.51021530655527 +2038-11-01,Baabda,810.8156195580923,250.95834561125744 +2038-12-01,Baabda,2010.6675222317215,312.60203765020526 +2039-01-01,Baabda,2005.4149612587714,316.300559619844 +2039-02-01,Baabda,1987.9744148064947,321.42710586930946 +2039-03-01,Baabda,1811.150526690781,307.5335173964612 +2039-04-01,Baabda,1874.845133707568,308.8204622757727 +2039-05-01,Baabda,1936.6664376686695,314.6034993946479 +2039-06-01,Baabda,1971.8417545970299,317.2070113022564 +2039-07-01,Baabda,1993.077272753633,318.61575159790215 +2039-08-01,Baabda,1972.8821906264213,313.68061803618235 +2039-09-01,Baabda,2015.67868707555,318.40039056879095 +2039-10-01,Baabda,467.93199469078417,242.9538561702796 +2039-11-01,Baabda,1720.3480124394944,308.7862801955097 +2039-12-01,Baabda,799.8549109999867,196.56779861157978 +2040-01-01,Baabda,1733.5929876481819,296.8970251795497 +2040-02-01,Baabda,716.6940164903001,275.1708671174741 +2040-03-01,Baabda,1572.7922174316996,285.0655176902255 +2040-04-01,Baabda,1386.2752023398973,274.761273901125 +2040-05-01,Baabda,1349.3161162809038,286.1639738071906 +2040-06-01,Baabda,1446.642947498454,280.94652480557966 +2040-07-01,Baabda,905.838319685097,221.4129148587941 +2040-08-01,Baabda,899.5689296983646,242.62139889065443 +2040-09-01,Baabda,1862.9624560337666,310.08547771458956 +2040-10-01,Baabda,611.0841456436333,219.9310068108949 +2040-11-01,Baabda,1368.45895887092,277.37634227578786 +2040-12-01,Baabda,1019.0322321865135,276.9127086525056 +2041-01-01,Baabda,1227.7699984735416,229.59325752735717 +2041-02-01,Baabda,1259.4488141052884,227.376713222889 +2041-03-01,Baabda,1567.400317488571,258.57508425479153 +2041-04-01,Baabda,1874.4580650187145,301.6517107737711 +2041-05-01,Baabda,1992.4267843174378,305.9317284071916 +2041-06-01,Baabda,1984.8964342286763,304.542724607991 +2041-07-01,Baabda,1973.459410947099,302.7893266059051 +2041-08-01,Baabda,1948.282240909918,298.4032644638072 +2041-09-01,Baabda,1189.6252356610762,278.4072348308481 +2041-10-01,Baabda,1917.064265890802,292.9787214840651 +2041-11-01,Baabda,1873.3616342998612,293.50659444454215 +2041-12-01,Baabda,1739.7228947195183,280.47384093701396 +2042-01-01,Baabda,1399.4971463138447,252.76707193979752 +2042-02-01,Baabda,834.4211237420761,215.94889888616174 +2042-03-01,Baabda,758.7212696991043,230.0097080449403 +2042-04-01,Baabda,1423.1516638442602,292.7458343068761 +2042-05-01,Baabda,1628.8598871190331,327.7814223173867 +2042-06-01,Baabda,1131.9438681171446,276.187018215313 +2042-07-01,Baabda,1916.584352536902,296.02860193164577 +2042-08-01,Baabda,648.0882865555873,202.24710599605194 +2042-09-01,Baabda,762.1162176450354,197.09354824527887 +2042-10-01,Baabda,1404.9195626430042,231.99091116340216 +2042-11-01,Baabda,778.2169939889064,183.1973491247526 +2042-12-01,Baabda,461.39594618932483,271.33222298480194 +2043-01-01,Baabda,1996.3688680336668,307.7938163742685 +2043-02-01,Baabda,907.5046295185546,260.04983912805324 +2043-03-01,Baabda,995.7623362762602,244.27628845369307 +2043-04-01,Baabda,938.4034060186924,213.12656249018931 +2043-05-01,Baabda,702.6926091656121,204.61701714943948 +2043-06-01,Baabda,1982.4634721688024,307.1997373886791 +2043-07-01,Baabda,1440.904715362919,216.25963557710665 +2043-08-01,Baabda,1955.5261400165975,305.72895069988795 +2043-09-01,Baabda,1821.367038476342,300.8286779868274 +2043-10-01,Baabda,1407.2111704996598,264.2048763549723 +2043-11-01,Baabda,1014.5028519844077,242.08141252495176 +2043-12-01,Baabda,972.0588773720218,254.60364517690218 +2044-01-01,Baabda,1491.3782420770613,283.1774450765942 +2044-02-01,Baabda,1912.675520165829,321.57023897933135 +2044-03-01,Baabda,1183.1710919881616,255.31419385756283 +2044-04-01,Baabda,495.0273067187857,303.0889245334241 +2044-05-01,Baabda,1911.3335189065576,304.00296449842034 +2044-06-01,Baabda,1756.3380592967912,262.11466999379803 +2044-07-01,Baabda,1823.0378106115304,279.94864824148624 +2044-08-01,Baabda,1776.5920150178079,284.12147268125096 +2044-09-01,Baabda,1108.3509591396594,265.6943552811375 +2044-10-01,Baabda,1475.4345819376842,291.4550256690012 +2044-11-01,Baabda,1629.011173542233,295.0740099060524 +2044-12-01,Baabda,1850.0397741662252,318.53858085254257 +2045-01-01,Baabda,1912.257359310076,319.11476819937917 +2045-02-01,Baabda,1935.628016872318,316.4659702567175 +2045-03-01,Baabda,1957.8416427792963,316.7059409912727 +2045-04-01,Baabda,545.9099977126102,283.11879252543014 +2045-05-01,Baabda,860.5179597714788,278.74641017716453 +2045-06-01,Baabda,1191.5941903135424,263.3262889854423 +2045-07-01,Baabda,1931.234808845614,307.91843129009493 +2045-08-01,Baabda,1954.9481999698341,311.89260284588715 +2045-09-01,Baabda,1499.5369130385802,299.0720253773031 +2045-10-01,Baabda,1983.5581755450503,303.85852606455956 +2045-11-01,Baabda,1995.0843009160292,305.9805127101331 +2045-12-01,Baabda,2001.2414136334028,307.3011001358542 +2046-01-01,Baabda,2000.044365207778,307.40653549340675 +2046-02-01,Baabda,1044.9348141454036,251.93547622847032 +2046-03-01,Baabda,1497.4415025128683,268.0460441137331 +2046-04-01,Baabda,1325.960429021243,203.91461368953395 +2046-05-01,Baabda,1901.6739311660594,351.18897671859094 +2046-06-01,Baabda,543.3443901351543,227.91314910774972 +2046-07-01,Baabda,1027.6365575402565,248.89128699282747 +2046-08-01,Baabda,2019.5523968136442,310.3537826786092 +2046-09-01,Baabda,2012.2512075105485,310.2965920901447 +2046-10-01,Baabda,1999.389702360286,310.5597801847156 +2046-11-01,Baabda,1979.4538655691194,312.04774493522757 +2046-12-01,Baabda,1935.508542342103,313.1575486674327 +2047-01-01,Baabda,566.5642650824559,234.87273551779566 +2047-02-01,Baabda,715.0729054550201,220.19690997905087 +2047-03-01,Baabda,1780.444132973333,303.9597321728738 +2047-04-01,Baabda,2024.9267354402832,310.89498734656155 +2047-05-01,Baabda,1190.6919416925928,256.51448263828496 +2047-06-01,Baabda,1745.9941559940735,261.50125481107415 +2047-07-01,Baabda,2022.0299818908272,310.2184118943497 +2047-08-01,Baabda,2007.5180008809914,307.3559933543621 +2047-09-01,Baabda,1992.096286098915,304.76181016112264 +2047-10-01,Baabda,1967.5484445510117,300.68876467560835 +2047-11-01,Baabda,1943.439923805779,298.0827117375933 +2047-12-01,Baabda,1891.759272500813,291.3872532552822 +2048-01-01,Baabda,1832.824933814403,287.3053489719808 +2048-02-01,Baabda,781.3426924062021,249.34381666131955 +2048-03-01,Baabda,2028.4424534233835,311.4976988738059 +2048-04-01,Baabda,2032.1881958634522,312.4269154039698 +2048-05-01,Baabda,1803.6587539202096,272.4202713196911 +2048-06-01,Baabda,1619.7655722461911,278.6230831808592 +2048-07-01,Baabda,1623.745657499742,259.69881144127896 +2048-08-01,Baabda,1553.6177068939155,242.1355747621098 +2048-09-01,Baabda,1483.5664790888177,231.93981208618618 +2048-10-01,Baabda,1632.044243212308,253.75791715947838 +2048-11-01,Baabda,1842.3941239585456,287.27330762281366 +2048-12-01,Baabda,1963.113492411341,307.2778479672028 +2049-01-01,Baabda,2010.2582859794304,313.98401010499333 +2049-02-01,Baabda,2029.37190769037,316.096998718237 +2049-03-01,Baabda,1237.828386438089,248.67395927579886 +2049-04-01,Baabda,962.1930161353811,271.25334661629284 +2049-05-01,Baabda,2000.274389664746,312.79533000427904 +2049-06-01,Baabda,2003.9850094718358,312.46722380411705 +2049-07-01,Baabda,481.7798844414067,265.4627560234695 +2049-08-01,Baabda,833.7863253345479,245.68713467179904 +2049-09-01,Baabda,1402.0831221395244,267.35484903452476 +2049-10-01,Baabda,1713.2553997560149,281.48447486609354 +2049-11-01,Baabda,1844.420584725254,290.55835521322217 +2049-12-01,Baabda,1807.9586854462157,275.83315362472877 +2050-01-01,Baabda,1682.8831028875177,275.1510435994397 +2050-02-01,Baabda,1297.0839388765169,249.61403610030294 +2050-03-01,Baabda,853.5035813135078,235.47717007250748 +2050-04-01,Baabda,1705.7398760246176,255.7120217550434 +2050-05-01,Baabda,714.5904010872118,204.12207315834 +2050-06-01,Baabda,692.9962434221379,217.2196925585058 +2050-07-01,Baabda,812.5305109023301,249.90030232034675 +2050-08-01,Baabda,1502.3989757907086,232.31717250587175 +2050-09-01,Baabda,1709.3508857414556,308.1691927017189 +2050-10-01,Baabda,594.2268652111533,252.86615472133383 +2050-11-01,Baabda,1053.200724293682,246.06508683829168 +2050-12-01,Baabda,1465.0390023020175,303.49897026203735 +2051-01-01,Baabda,1347.856799669674,248.8442083130355 +2051-02-01,Baabda,1785.1098292960578,310.2509231600988 +2051-03-01,Baabda,1440.8503040708454,247.12452247463062 +2051-04-01,Baabda,817.3431033191324,209.17781864278004 +2051-05-01,Baabda,487.1797733440859,277.07860661027905 +2051-06-01,Baabda,617.3824686190079,202.2398135868716 +2051-07-01,Baabda,1089.7928220216113,205.8378256209101 +2051-08-01,Baabda,1222.4242329725023,236.89137532395904 +2051-09-01,Baabda,961.5659907695776,240.55352226928534 +2051-10-01,Baabda,708.0330486936177,236.93528641790178 +2051-11-01,Baabda,730.5765250656414,248.65418797071806 +2051-12-01,Baabda,447.4249832780592,257.4617648503801 +2052-01-01,Baabda,1092.0945780160744,243.10363772972127 +2052-02-01,Baabda,2021.6037601029154,315.44646012553306 +2052-03-01,Baabda,1269.0634189654345,291.6913414968073 +2052-04-01,Baabda,1599.9362549156983,241.00826228614469 +2052-05-01,Baabda,1634.9836045460333,248.98913406779624 +2052-06-01,Baabda,528.8722819504621,248.40123361504465 +2052-07-01,Baabda,676.6076486166223,250.72672894927166 +2052-08-01,Baabda,1949.0009593790314,307.3198967991353 +2052-09-01,Baabda,920.5269214763474,266.4255454827716 +2052-10-01,Baabda,1102.6659147618525,211.5664046292237 +2052-11-01,Baabda,1669.6509388031543,283.26375308882655 +2052-12-01,Baabda,1814.7678699971727,325.920622269831 +2053-01-01,Baabda,1969.0627482351838,312.39315102733525 +2053-02-01,Baabda,1991.2527671265532,319.2342314371212 +2053-03-01,Baabda,2006.5941604774728,326.81203662161846 +2053-04-01,Baabda,1987.796498518126,329.38477769526315 +2053-05-01,Baabda,1937.837288064777,329.3279700017914 +2053-06-01,Baabda,1817.133177804997,321.62544547556064 +2053-07-01,Baabda,1522.5395026806295,293.3789685817272 +2053-08-01,Baabda,1185.1992800974756,272.15257550679627 +2053-09-01,Baabda,1593.2367566201915,314.5120223000132 +2053-10-01,Baabda,1280.159939835899,258.31678677353733 +2053-11-01,Baabda,2011.330821792241,313.51050823348857 +2053-12-01,Baabda,863.4755301751707,247.63986432625367 +2054-01-01,Baabda,1552.1730726948329,235.10567490793827 +2054-02-01,Baabda,1596.413771507393,296.0100837374504 +2054-03-01,Baabda,1943.3328285642367,308.53217715485795 +2054-04-01,Baabda,2007.3003557126958,307.99528875773314 +2054-05-01,Baabda,2025.2485969457782,304.79917723155273 +2054-06-01,Baabda,951.5767684818595,261.3863863132453 +2054-07-01,Baabda,1162.9829912039806,265.33151006254116 +2054-08-01,Baabda,1643.837530906274,297.60388414482554 +2054-09-01,Baabda,1902.8623428786566,321.5224815311431 +2054-10-01,Baabda,913.187586690713,191.199053874874 +2054-11-01,Baabda,597.03890700033,228.98605568610677 +2054-12-01,Baabda,861.2763351479102,220.0282099261031 +2055-01-01,Baabda,1140.2356884045057,251.7258934328862 +2055-02-01,Baabda,1256.3737844044213,235.18677902913257 +2055-03-01,Baabda,1670.7987579645219,268.08400293097014 +2055-04-01,Baabda,1370.3614828056823,241.51086417709942 +2055-05-01,Baabda,1858.220612691182,288.1760521855234 +2055-06-01,Baabda,1926.265244169535,294.63500339253204 +2055-07-01,Baabda,928.1006710480726,252.2059219235858 +2055-08-01,Baabda,1387.4967214524338,272.17043233691334 +2055-09-01,Baabda,1889.310620412272,318.5159204306982 +2055-10-01,Baabda,1539.290695488087,270.2801145662791 +2055-11-01,Baabda,1983.8771581462029,320.8428081103535 +2055-12-01,Baabda,953.817131841218,243.59530970906442 +2056-01-01,Baabda,1563.4058377133076,271.58420269867565 +2056-02-01,Baabda,854.9941340368538,237.84034575488593 +2056-03-01,Baabda,1474.8541948222296,270.7348893917742 +2056-04-01,Baabda,1761.8967917465698,285.2379596715116 +2056-05-01,Baabda,1734.3779209171732,267.8687289234482 +2056-06-01,Baabda,1450.707240704024,222.29590552074086 +2056-07-01,Baabda,1026.4060418516497,187.55427643876484 +2056-08-01,Baabda,713.8012934069237,192.61653113808188 +2056-09-01,Baabda,536.2306175047572,229.44608661559343 +2056-10-01,Baabda,1971.675785761683,336.0261609620054 +2056-11-01,Baabda,1817.1579363823428,289.29689025524726 +2056-12-01,Baabda,1287.8133630853035,241.90475869874527 +2057-01-01,Baabda,716.0022877493982,217.1842225587217 +2057-02-01,Baabda,1533.8597863911173,261.95253136868087 +2057-03-01,Baabda,1613.3617374266626,315.2966437574556 +2057-04-01,Baabda,1936.7810180615022,343.5663032026691 +2057-05-01,Baabda,1776.604538251698,327.92678318009376 +2057-06-01,Baabda,1577.3047560434015,257.8763357016351 +2057-07-01,Baabda,1551.9682386508616,291.96095178466584 +2057-08-01,Baabda,1455.5440878899121,264.6295069019463 +2057-09-01,Baabda,1745.1859035999075,292.5845310890158 +2057-10-01,Baabda,821.5100294645137,280.87610693554694 +2057-11-01,Baabda,2007.7978303830853,316.74214197240667 +2057-12-01,Baabda,2023.581423441018,312.53534430419313 +2058-01-01,Baabda,1454.245414140996,245.1471483060964 +2058-02-01,Baabda,2002.5285717649488,313.972105551582 +2058-03-01,Baabda,1971.4202830012832,309.99476640994055 +2058-04-01,Baabda,1924.473414106743,303.752603386107 +2058-05-01,Baabda,1897.0316979137265,304.47592683607166 +2058-06-01,Baabda,1878.4728410695927,312.5186013504187 +2058-07-01,Baabda,1725.2637416043676,304.3829877787374 +2058-08-01,Baabda,1255.378187310165,269.010504387549 +2058-09-01,Baabda,987.922935806328,258.9177056560428 +2058-10-01,Baabda,907.6126604040081,236.1991707943153 +2058-11-01,Baabda,1959.4152518929243,319.40280965984397 +2058-12-01,Baabda,1991.9785389113053,318.3747366042758 +2059-01-01,Baabda,2001.5232583685365,315.6543024893318 +2059-02-01,Baabda,2032.9251953751404,323.30224707477606 +2059-03-01,Baabda,483.2083967761712,262.2533824070853 +2059-04-01,Baabda,1053.2608214218326,205.6890535119039 +2059-05-01,Baabda,1658.8121518439548,271.04043959599886 +2059-06-01,Baabda,1850.207614289395,313.60550100032947 +2059-07-01,Baabda,1794.8066988477917,317.30099461866183 +2059-08-01,Baabda,2020.749445239269,316.14169300648314 +2059-09-01,Baabda,2017.3232611812216,313.75249786891465 +2059-10-01,Baabda,2029.7575369270523,317.01890543490276 +2059-11-01,Baabda,2008.7354895274482,321.12200817734896 +2059-12-01,Baabda,2027.9056817087185,312.2503311950348 +2060-01-01,Baabda,2031.3734659345155,312.5261548243668 +2060-02-01,Baabda,2034.5170855313436,313.1292144379682 +2060-03-01,Baabda,2037.4410447268363,313.8868940113744 +2060-04-01,Baabda,1150.8838918962294,261.9092120215451 +2060-05-01,Baabda,1187.4590040885378,271.2610393247838 +2060-06-01,Baabda,1360.6208539079419,269.149599695829 +2060-07-01,Baabda,1438.0079618134632,260.9094557911235 +2060-08-01,Baabda,1521.9756692651447,260.2888700294443 +2060-09-01,Baabda,1418.908302788585,239.66926109213532 +2060-10-01,Baabda,1579.3240195492535,258.24683882008674 +2060-11-01,Baabda,1478.2910308263442,194.41700781995968 +2060-12-01,Baabda,612.3806602142926,200.91527538099794 +2061-01-01,Baabda,1113.633244799946,222.5826068487309 +2061-02-01,Baabda,884.5044149725882,224.6607346133153 +2061-03-01,Baabda,671.8278757093246,242.0167032711748 +2061-04-01,Baabda,1813.5558512689668,292.1152584667493 +2061-05-01,Baabda,1945.177342576497,311.95703363057845 +2061-06-01,Baabda,2034.6698114067149,317.5358136751325 +2061-07-01,Baabda,1044.8910547993974,229.30450248986045 +2061-08-01,Baabda,2023.4386297856283,312.6287358737915 +2061-09-01,Baabda,1471.7101433897503,207.31367696619645 +2061-10-01,Baabda,1180.8510549511238,250.9520974611483 +2061-11-01,Baabda,1796.2694701442322,292.16306812789105 +2061-12-01,Baabda,1651.1760020206054,263.5337832628841 +2062-01-01,Baabda,1436.9597527423473,231.92992643364576 +2062-02-01,Baabda,888.6314682928253,200.6295138861719 +2062-03-01,Baabda,703.820060078756,213.94280759317027 +2062-04-01,Baabda,732.894834760074,217.76114088690815 +2062-05-01,Baabda,612.9624148093095,225.26341133192395 +2062-06-01,Baabda,2002.0234679980515,306.2391234691087 +2062-07-01,Baabda,2005.348314623242,306.4657624961886 +2062-08-01,Baabda,1691.6187062792799,194.8039058058287 +2062-09-01,Baabda,2012.9332199492942,308.02136042587676 +2062-10-01,Baabda,2016.1735707320313,310.38041128492404 +2062-11-01,Baabda,2012.2516393462,312.4371491428673 +2062-12-01,Baabda,2001.346205751471,315.8138652754068 +2063-01-01,Baabda,1969.3238648590514,319.2918397292142 +2063-02-01,Baabda,1834.8413184159124,312.0281824819609 +2063-03-01,Baabda,1288.951969752775,266.88481062227277 +2063-04-01,Baabda,802.0616631511461,259.75027600916985 +2063-05-01,Baabda,1332.3798099242215,276.8516020925243 +2063-06-01,Baabda,1818.1410822153177,314.2465020268501 +2063-07-01,Baabda,2015.0821780957774,308.84458466031674 +2063-08-01,Baabda,2013.857060352813,322.2690571497592 +2063-09-01,Baabda,2020.433053652025,318.82223642490845 +2063-10-01,Baabda,2025.5464196000132,317.30499761176793 +2063-11-01,Baabda,964.6464184160869,239.34428766918685 +2063-12-01,Baabda,1579.8043647388051,282.8895080420366 +2064-01-01,Baabda,1932.4345922303642,318.53642271712886 +2064-02-01,Baabda,2033.6460730225103,340.25328687347104 +2064-03-01,Baabda,2017.9402103818263,344.95401908234857 +2064-04-01,Baabda,1989.791723172718,351.48161291896884 +2064-05-01,Baabda,1026.1924991220421,230.8796454684974 +2064-06-01,Baabda,908.578316893102,250.38078332331045 +2064-07-01,Baabda,1782.8025314107354,291.5277409089905 +2064-08-01,Baabda,1895.2807482925982,299.50252117939345 +2064-09-01,Baabda,1929.2195758058415,299.77641292944384 +2064-10-01,Baabda,1963.0844154774816,303.50922140525273 +2064-11-01,Baabda,1980.5045217089266,305.11706709713513 +2064-12-01,Baabda,1982.2512969187578,304.4057004135354 +2065-01-01,Baabda,1985.4935189893176,304.86265077876214 +2065-02-01,Baabda,1989.3670847821945,305.7291247430665 +2065-03-01,Baabda,2005.2928957146482,309.37096084945847 +2065-04-01,Baabda,1436.2174272576253,277.80065954504045 +2065-05-01,Baabda,2009.253548363887,311.71037963796783 +2065-06-01,Baabda,2012.9371064701568,312.5081239510713 +2065-07-01,Baabda,2020.4575243389363,314.6997452723742 +2065-08-01,Baabda,1953.0583432141789,321.0817345858374 +2065-09-01,Baabda,604.7604163374355,244.66062800483766 +2065-10-01,Baabda,1963.745699804961,312.1195551506884 +2065-11-01,Baabda,1734.902745178817,260.33899446486055 +2065-12-01,Baabda,1681.4472493466797,256.5456537715594 +2066-01-01,Baabda,1607.9885503617606,245.49680105176023 +2066-02-01,Baabda,1503.9240753661652,232.82148001997606 +2066-03-01,Baabda,1546.3447308533764,241.3417290162054 +2066-04-01,Baabda,1737.0725753817835,315.2137295872046 +2066-05-01,Baabda,1233.0412003521094,277.76162166009647 +2066-06-01,Baabda,1001.7762235025929,274.27576305030175 +2066-07-01,Baabda,1522.3107737306152,300.7930687525005 +2066-08-01,Baabda,1791.3003373038048,326.24267176738016 +2066-09-01,Baabda,1682.2141894635304,256.2135445782913 +2066-10-01,Baabda,1805.0550225263378,311.1528845285052 +2066-11-01,Baabda,1192.7677756687756,216.41020033085164 +2066-12-01,Baabda,481.00294013196594,264.0835682595379 +2067-01-01,Baabda,627.6959994809122,221.30612196444898 +2067-02-01,Baabda,844.849450914639,214.04490132169514 +2067-03-01,Baabda,899.1176614426728,218.78460179824526 +2067-04-01,Baabda,855.1287228148672,220.57985718476718 +2067-05-01,Baabda,989.9734354242966,235.5770186440293 +2067-06-01,Baabda,805.4134995045479,232.8017609278488 +2067-07-01,Baabda,720.4040605165212,233.92000575421258 +2067-08-01,Baabda,1718.0908074897318,284.2474103252342 +2067-09-01,Baabda,1698.9394721319052,258.7229687435873 +2067-10-01,Baabda,1807.2608390335859,281.287005475735 +2067-11-01,Baabda,1856.80548726161,300.163989683709 +2067-12-01,Baabda,1296.9487743176353,205.5055771930991 +2068-01-01,Baabda,741.183200362224,250.05988251073956 +2068-02-01,Baabda,835.8034296621429,187.48838369137394 +2068-03-01,Baabda,663.8314310075074,205.10428583636585 +2068-04-01,Baabda,526.7282179413613,239.57807987090422 +2068-05-01,Baabda,2000.3454986020065,328.0139788125366 +2068-06-01,Baabda,825.7499358349778,249.96034721693906 +2068-07-01,Baabda,1273.6281377183448,263.2572460565201 +2068-08-01,Baabda,1835.3825524323086,311.46299466400734 +2068-09-01,Baabda,1963.2899692475382,317.85055335918355 +2068-10-01,Baabda,1992.3481902288866,314.09477118380886 +2068-11-01,Baabda,2006.79568378145,311.8107329347074 +2068-12-01,Baabda,2014.8661163248705,310.7292634319667 +2069-01-01,Baabda,2016.6033911503712,309.7470681582587 +2069-02-01,Baabda,2019.6066641605012,309.9694953404181 +2069-03-01,Baabda,2021.6620579158518,310.36600050974187 +2069-04-01,Baabda,2019.8798721826072,310.1247418556656 +2069-05-01,Baabda,1955.4397728863214,332.76013629101004 +2069-06-01,Baabda,868.3361283218846,257.13670440584235 +2069-07-01,Baabda,1274.8131667183397,266.9058698468747 +2069-08-01,Baabda,1791.9847968112417,307.1694538756152 +2069-09-01,Baabda,1917.7972349364109,296.4977179150517 +2069-10-01,Baabda,589.2061280103856,206.60022176445443 +2069-11-01,Baabda,1349.4561749771678,249.6452942551667 +2069-12-01,Baabda,1549.4749635450116,246.21328460480873 +2070-01-01,Baabda,1973.2590392048585,310.2822509322339 +2070-02-01,Baabda,1758.279160549744,267.21742454075866 +2070-03-01,Baabda,1989.7252204824053,304.8941003811222 +2070-04-01,Baabda,2001.5660100980233,307.55690879965545 +2070-05-01,Baabda,1725.0984924951065,258.65902527979586 +2070-06-01,Baabda,1827.7607971306718,274.95952648578685 +2070-07-01,Baabda,2014.563111642819,310.3653739542992 +2070-08-01,Baabda,1143.5110898476132,256.6496793793659 +2070-09-01,Baabda,2009.5258927146906,309.8933340454941 +2070-10-01,Baabda,1908.9292019448917,290.4418855181508 +2070-11-01,Baabda,1937.59718744261,297.16802781283644 +2070-12-01,Baabda,1992.6629984187425,306.6230453166248 +2071-01-01,Baabda,1974.9187275583283,303.2101978202228 +2071-02-01,Baabda,1205.6653390959282,213.186450747921 +2071-03-01,Baabda,1946.376694125596,301.49665570601996 +2071-04-01,Baabda,1543.855342268389,246.44430951998754 +2071-05-01,Baabda,1754.3136137631227,278.1304191553985 +2071-06-01,Baabda,1932.0588952136636,303.1795662208018 +2071-07-01,Baabda,1910.217367692958,307.36608785871675 +2071-08-01,Baabda,1837.6545837394349,309.24568456955365 +2071-09-01,Baabda,1421.674498026107,275.78306399794826 +2071-10-01,Baabda,981.3075015176233,256.0963090932344 +2071-11-01,Baabda,1962.9254999577736,303.62179253312496 +2071-12-01,Baabda,1968.9228334841366,302.95811368044207 +2072-01-01,Baabda,1844.2167582978027,295.6559058691448 +2072-02-01,Baabda,1914.8859429200254,313.1418847813651 +2072-03-01,Baabda,1906.0464110814974,321.27488770536837 +2072-04-01,Baabda,1973.366422336835,319.12127741425616 +2072-05-01,Baabda,980.4524669278914,256.4371378497469 +2072-06-01,Baabda,1281.0381496055886,266.27813091055793 +2072-07-01,Baabda,1758.3892786408458,308.88019389464364 +2072-08-01,Baabda,1870.1781418778892,311.062416884306 +2072-09-01,Baabda,1794.9713721761846,304.84879694175123 +2072-10-01,Baabda,1923.602833433561,310.02550243526866 +2072-11-01,Baabda,1952.3823764745525,306.49061586208245 +2072-12-01,Baabda,1814.0539017202248,289.38935939599946 +2073-01-01,Baabda,1568.3700764163532,244.8954818699441 +2073-02-01,Baabda,1071.98679866305,197.27128113919218 +2073-03-01,Baabda,524.5216817080277,233.5989657070988 +2073-04-01,Baabda,1848.5984507071366,348.3419435955853 +2073-05-01,Baabda,1354.5174327565567,247.5232379923217 +2073-06-01,Baabda,1942.938562614527,351.49988745271435 +2073-07-01,Baabda,1471.1366656447176,281.6125010282191 +2073-08-01,Baabda,1957.591322046713,328.6031149718557 +2073-09-01,Baabda,1097.9396175027173,250.7859036299714 +2073-10-01,Baabda,746.5359472062942,251.4665865011965 +2073-11-01,Baabda,561.5271181269359,255.50445786033023 +2073-12-01,Baabda,602.1436362352911,240.39166211325377 +2074-01-01,Baabda,1974.1892131979307,306.15532167864717 +2074-02-01,Baabda,1984.9876954963347,305.72989053305196 +2074-03-01,Baabda,1991.1325728702523,305.73540770181137 +2074-04-01,Baabda,905.29514240827,258.7033018644135 +2074-05-01,Baabda,929.7957699249555,292.19636258794355 +2074-06-01,Baabda,1969.5380553421357,341.6461196225993 +2074-07-01,Baabda,656.8331744138544,37.200288982916696 +2074-08-01,Baabda,671.0813758133061,42.252501390832606 +2074-09-01,Baabda,668.0688183366718,38.934020105828814 +2074-10-01,Baabda,731.3027286860452,42.88441736343408 +2074-11-01,Baabda,737.9891999394018,41.560644947545924 +2074-12-01,Baabda,597.6242602257754,34.4261973560323 +2075-01-01,Baabda,853.5350333434499,44.20201124648443 +2075-02-01,Baabda,692.199866508385,35.3983851469749 +2075-03-01,Baabda,546.8557177891321,34.91379672499787 +2075-04-01,Baabda,601.943048575225,37.75954192848246 +2075-05-01,Baabda,759.3799630126757,41.826356668205435 +2075-06-01,Baabda,906.9816765447337,45.116642958287656 +2075-07-01,Baabda,715.9488121012355,40.588335326378335 +2075-08-01,Baabda,596.7213638513487,36.188367134316 +2075-09-01,Baabda,509.48070202525133,33.26435471344713 +2075-10-01,Baabda,702.2446516499139,39.46636597599405 +2075-11-01,Baabda,1008.5636003531552,72.50049224206217 +2075-12-01,Baabda,628.3865046874685,37.94336633364429 +2076-01-01,Baabda,665.589361971666,41.660371688842744 +2076-02-01,Baabda,672.0988525805654,38.93744875644579 +2076-03-01,Baabda,745.8388924923585,58.331167161471086 +2076-04-01,Baabda,885.7918609945687,46.25525083653923 +2076-05-01,Baabda,610.4872768008175,33.441495860553474 +2076-06-01,Baabda,812.2822054027868,39.528273134596674 +2076-07-01,Baabda,835.756431548751,48.08289565858537 +2076-08-01,Baabda,676.09628323278,45.982124876474394 +2076-09-01,Baabda,615.7190376898927,37.67908176704873 +2076-10-01,Baabda,739.1592586368154,37.466348789933235 +2076-11-01,Baabda,726.3794423972722,37.04793158443276 +2076-12-01,Baabda,708.169436786845,36.4339594635376 +2077-01-01,Baabda,695.8589539277434,35.98048996188149 +2077-02-01,Baabda,689.5301145663377,35.67436541516764 +2077-03-01,Baabda,692.8771287549656,35.64117538102225 +2077-04-01,Baabda,635.4239863527883,34.107576509100085 +2077-05-01,Baabda,680.043692922043,35.25199742951453 +2077-06-01,Baabda,738.7190021902336,36.90927138409907 +2077-07-01,Baabda,806.6023430527963,38.78939022447156 +2077-08-01,Baabda,707.8656404060995,41.5335116160133 +2077-09-01,Baabda,778.6093166781849,43.19193425557616 +2077-10-01,Baabda,814.0968507824933,40.94025063336305 +2077-11-01,Baabda,770.8384341316051,38.236228790154286 +2077-12-01,Baabda,732.5539005133096,36.77243863713994 +2078-01-01,Baabda,707.9208433968676,35.99469188524942 +2078-02-01,Baabda,846.0154791459731,40.019370771450674 +2078-03-01,Baabda,791.112110347368,40.43331506726299 +2078-04-01,Baabda,670.3059429286451,35.64413411505721 +2078-05-01,Baabda,668.7099503337538,34.55575509812894 +2078-06-01,Baabda,1068.012543190793,58.54550133582903 +2078-07-01,Baabda,851.3323836309785,40.82177944173867 +2078-08-01,Baabda,705.9371343596458,40.747584834731946 +2078-09-01,Baabda,487.63348866846883,31.2442007316306 +2078-10-01,Baabda,776.5002313568458,38.35959059509531 +2078-11-01,Baabda,753.9054385149165,37.530901404849516 +2078-12-01,Baabda,754.7515485011868,37.38733318688132 +2079-01-01,Baabda,931.9952528426502,48.5098931927873 +2079-02-01,Baabda,795.581465393932,44.766659530584576 +2079-03-01,Baabda,694.0522975075874,40.37481915495954 +2079-04-01,Baabda,677.6412472481998,38.006282942682375 +2079-05-01,Baabda,725.9247914289781,59.516923336786064 +2079-06-01,Baabda,811.665903955659,39.647370881663775 +2079-07-01,Baabda,675.5590077098549,36.58229646459752 +2079-08-01,Baabda,456.08760644473847,30.53488775753747 +2079-09-01,Baabda,521.2969489813488,31.502707064699027 +2079-10-01,Baabda,449.869820818346,30.21174178796351 +2079-11-01,Baabda,763.2938334663481,37.47846219515884 +2079-12-01,Baabda,761.7205122431542,37.29157463005487 +2080-01-01,Baabda,746.165792080453,36.82160583507425 +2080-02-01,Baabda,714.0234728495585,36.14301148199142 +2080-03-01,Baabda,670.3965564428262,35.50328097067406 +2080-04-01,Baabda,667.2900027394084,34.51991960766994 +2080-05-01,Baabda,968.0304265255165,45.12003680026896 +2080-06-01,Baabda,744.7479316917561,38.649859808245246 +2080-07-01,Baabda,602.7640401211067,38.17893377578269 +2080-08-01,Baabda,620.8790418882304,32.840716212590785 +2080-09-01,Baabda,577.2501822210669,32.859060363607725 +2080-10-01,Baabda,621.9553202766859,32.86071377380371 +2080-11-01,Baabda,725.8818957542742,37.06606688363546 +2080-12-01,Baabda,611.8623854600282,32.69963681207554 +2081-01-01,Baabda,692.0696680594939,37.035644136028644 +2081-02-01,Baabda,710.0343910199375,42.53363333710976 +2081-03-01,Baabda,1039.433371892042,61.01256339147116 +2081-04-01,Baabda,867.4748321152076,54.308559389094356 +2081-05-01,Baabda,696.9799273061169,48.02215458927894 +2081-06-01,Baabda,721.7323869801656,51.9363334614324 +2081-07-01,Baabda,532.6553781743752,29.602799514927845 +2081-08-01,Baabda,678.4466927106317,35.287084534305876 +2081-09-01,Baabda,463.17402948388144,29.93222844324668 +2081-10-01,Baabda,538.4737158232413,31.47825399811579 +2081-11-01,Baabda,601.1309096601967,32.86301114376029 +2081-12-01,Baabda,633.9106183125278,33.64613582986733 +2082-01-01,Baabda,652.454864717123,34.63440521050603 +2082-02-01,Baabda,700.1666584954742,37.888873414447 +2082-03-01,Baabda,655.3318977718327,34.41652055530612 +2082-04-01,Baabda,620.2916734297453,36.336686731058 +2082-05-01,Baabda,626.9333057479669,37.287362785134526 +2082-06-01,Baabda,680.3852749222845,40.902552880893765 +2082-07-01,Baabda,858.3815968314942,44.73270370645368 +2082-08-01,Baabda,979.0893057217024,70.08968094172043 +2082-09-01,Baabda,683.1192264311701,35.75966397696449 +2082-10-01,Baabda,906.9300002117853,40.44226088663932 +2082-11-01,Baabda,692.0851421703351,36.8133213797763 +2082-12-01,Baabda,561.8566087289387,32.50759756888715 +2083-01-01,Baabda,919.9116996183484,49.418189732892074 +2083-02-01,Baabda,822.3439760799366,46.74432957252229 +2083-03-01,Baabda,664.338118171793,37.21013982682139 +2083-04-01,Baabda,658.0737662676603,37.137215735017904 +2083-05-01,Baabda,675.2632722612684,35.0163081571512 +2083-06-01,Baabda,657.0298035804495,38.00408999863292 +2083-07-01,Baabda,698.4919998394232,36.0474443726614 +2083-08-01,Baabda,649.0933120615654,34.00941615641 +2083-09-01,Baabda,775.2839662447345,42.129835758605694 +2083-10-01,Baabda,913.5700491326185,47.34319474552123 +2083-11-01,Baabda,981.7052221525443,61.14913507366252 +2083-12-01,Baabda,722.6579547262897,53.265657854715585 +2084-01-01,Baabda,702.435019199564,39.52611499918288 +2084-02-01,Baabda,914.3430349485885,52.79217338752868 +2084-03-01,Baabda,1161.380017266059,59.86962183807421 +2084-04-01,Baabda,1151.2389327742721,63.42415788611628 +2084-05-01,Baabda,1165.5734293313913,55.91809329980849 +2084-06-01,Baabda,1080.8998865075293,50.90765125473942 +2084-07-01,Baabda,800.0588813726552,46.21046952670385 +2084-08-01,Baabda,648.9344685144663,33.613711585707506 +2084-09-01,Baabda,685.6633141986656,36.064953116421385 +2084-10-01,Baabda,672.398402577406,34.567816290401 +2084-11-01,Baabda,719.4645300843358,49.252831308972105 +2084-12-01,Baabda,880.4284622044311,44.68096066947711 +2085-01-01,Baabda,946.2975776437412,44.852863116909774 +2085-02-01,Baabda,1032.7932509986,47.8776987511002 +2085-03-01,Baabda,1142.142170832739,54.05363834550356 +2085-04-01,Baabda,1175.453109308876,65.50198977729717 +2085-05-01,Baabda,608.0800809348095,36.34450126977394 +2085-06-01,Baabda,460.8854444767855,29.787424518710907 +2085-07-01,Baabda,464.4023859942313,30.31011099246784 +2085-08-01,Baabda,479.2541496890946,30.93276786797162 +2085-09-01,Baabda,508.61767847596866,31.521991048879983 +2085-10-01,Baabda,548.9787657965326,32.146283930261895 +2085-11-01,Baabda,590.2135286124462,32.8470687886071 +2085-12-01,Baabda,623.2608314234158,33.47552130195582 +2086-01-01,Baabda,821.4828957910852,43.52895146647883 +2086-02-01,Baabda,780.9898107064163,44.322048826715545 +2086-03-01,Baabda,697.0064851986767,41.367996553232686 +2086-04-01,Baabda,556.2034482167253,35.102912042787025 +2086-05-01,Baabda,1183.4763278210787,61.94235426412422 +2086-06-01,Baabda,622.8672851997917,40.0454598439121 +2086-07-01,Baabda,687.2701746574502,42.32237972701181 +2086-08-01,Baabda,758.8079247198144,41.70628427933859 +2086-09-01,Baabda,907.8629811365912,46.52092774856308 +2017-01-01,Beirut,1115.4696978800473,65.23535562779144 +2017-02-01,Beirut,715.3443861345208,45.69215153672796 +2017-03-01,Beirut,627.4700774626319,32.97866283589249 +2017-04-01,Beirut,582.3042427395992,37.345528015398756 +2017-05-01,Beirut,452.45558072619986,30.177002769529246 +2017-06-01,Beirut,508.8672794824661,31.37633431276945 +2017-07-01,Beirut,585.897979030382,32.82280716952019 +2017-08-01,Beirut,655.3406784300772,35.394103684783104 +2017-09-01,Beirut,850.2947545333215,48.80498340198248 +2017-10-01,Beirut,758.6551988444431,37.07812807590746 +2017-11-01,Beirut,672.8980364260525,34.836660788274045 +2017-12-01,Beirut,720.4755293168245,50.36505424135882 +2018-01-01,Beirut,566.6638032000991,29.90258888994324 +2018-02-01,Beirut,701.1474292323663,39.133908696368806 +2018-03-01,Beirut,686.5664264909179,36.182919582828035 +2018-04-01,Beirut,700.7286206231365,38.09051984109017 +2018-05-01,Beirut,861.1698876598452,42.12115100399713 +2018-06-01,Beirut,997.7967140299106,45.61877493266034 +2018-07-01,Beirut,1117.873511033453,51.30896001579055 +2018-08-01,Beirut,1192.8496804973206,58.3214903607449 +2018-09-01,Beirut,453.9963703303232,31.537759360854654 +2018-10-01,Beirut,562.7227990729982,33.689350751095986 +2018-11-01,Beirut,627.658789642285,36.22514245793907 +2018-12-01,Beirut,725.5036077236656,58.54028004047315 +2019-01-01,Beirut,857.8285593072937,45.300641406628 +2019-02-01,Beirut,696.190099899743,37.86083505838609 +2019-03-01,Beirut,602.9360546555729,33.67415678161045 +2019-04-01,Beirut,930.8528316269246,49.05732860653103 +2019-05-01,Beirut,853.7011461240139,47.149502092136785 +2019-06-01,Beirut,753.5735008442226,43.784481661194434 +2019-07-01,Beirut,689.7602109959146,36.64745823063859 +2019-08-01,Beirut,672.3067814467049,35.44769157945204 +2019-09-01,Beirut,707.2920906884584,36.656873966597004 +2019-10-01,Beirut,737.0436957807057,36.48291780965772 +2019-11-01,Beirut,750.0271225298744,36.756739942436674 +2019-12-01,Beirut,763.6595262904583,37.28668401673822 +2020-01-01,Beirut,772.9796192363633,37.718746207435366 +2020-02-01,Beirut,788.0705479094828,38.35208933410074 +2020-03-01,Beirut,807.3145120145305,39.09349587031453 +2020-04-01,Beirut,841.5663484024153,40.30610690807645 +2020-05-01,Beirut,570.9069483379486,33.13965277603141 +2020-06-01,Beirut,913.1246106582203,42.74662737899302 +2020-07-01,Beirut,580.6957269108177,35.77647654801035 +2020-08-01,Beirut,631.7930402233783,38.9538784324989 +2020-09-01,Beirut,819.5366844829248,43.22629037901767 +2020-10-01,Beirut,702.0259268924902,39.39862837091077 +2020-11-01,Beirut,684.1114408128236,36.09774285125616 +2020-12-01,Beirut,715.3367570380133,37.066902290892415 +2021-01-01,Beirut,747.0287436571272,36.87122554527275 +2021-02-01,Beirut,750.2588023568396,36.83394549643195 +2021-03-01,Beirut,729.5698441896666,36.33842716284331 +2021-04-01,Beirut,698.2185039268828,35.590302559938365 +2021-05-01,Beirut,672.705437725537,35.01860552710778 +2021-06-01,Beirut,650.0093794233592,34.52733384707527 +2021-07-01,Beirut,627.1802437679476,34.07945113144986 +2021-08-01,Beirut,1071.9646310996122,49.533232273899486 +2021-09-01,Beirut,733.49868494592,47.34744139907728 +2021-10-01,Beirut,634.5492312683101,42.56595315536252 +2021-11-01,Beirut,575.8138248719688,35.31338245858154 +2021-12-01,Beirut,860.893009034702,42.00607365435405 +2022-01-01,Beirut,823.3461946541806,40.389369164684496 +2022-02-01,Beirut,772.9442806855589,38.79198346783163 +2022-03-01,Beirut,730.5287352535554,37.40177877069915 +2022-04-01,Beirut,702.9698476537978,36.5735420927175 +2022-05-01,Beirut,680.9660938733902,35.98344869591645 +2022-06-01,Beirut,662.4235028387922,35.54726168188822 +2022-07-01,Beirut,643.215021229766,35.11573902504453 +2022-08-01,Beirut,661.4180454971627,34.630959155571134 +2022-09-01,Beirut,697.8882216261857,35.63969601400477 +2022-10-01,Beirut,738.8566857904152,37.192735508968525 +2022-11-01,Beirut,772.9783237294091,39.9137787750374 +2022-12-01,Beirut,770.8402334468193,42.011782270609785 +2023-01-01,Beirut,790.0364077397807,43.67408607305376 +2023-02-01,Beirut,713.0717070739175,44.19212559394401 +2023-03-01,Beirut,638.2684877884273,36.944010402533394 +2023-04-01,Beirut,633.4563272072761,37.950536912599645 +2023-05-01,Beirut,724.1774404382782,41.78068773815956 +2023-06-01,Beirut,897.4962625169588,45.37161621483194 +2023-07-01,Beirut,601.4175765601042,35.40056068670649 +2023-08-01,Beirut,706.0756816311301,40.80056357827603 +2023-09-01,Beirut,627.2485457734741,32.15063500972508 +2023-10-01,Beirut,615.3514735779601,35.590581029023994 +2023-11-01,Beirut,634.0387295557706,36.34347441502061 +2023-12-01,Beirut,665.942891424929,39.18530364698829 +2024-01-01,Beirut,802.3925212327117,44.292478890683554 +2024-02-01,Beirut,934.991544509749,47.828026827948165 +2024-03-01,Beirut,699.1896303342273,38.589884528924316 +2024-04-01,Beirut,675.3367562946115,37.9713872853874 +2024-05-01,Beirut,640.2342756461167,33.12828775647352 +2024-06-01,Beirut,668.4955439328436,37.78766730613263 +2024-07-01,Beirut,617.1757632872141,32.774632017703496 +2024-08-01,Beirut,806.2357145847749,51.37948231173027 +2024-09-01,Beirut,857.8787242154623,39.133647631601036 +2024-10-01,Beirut,737.4178094000176,40.35885939548844 +2024-11-01,Beirut,686.8443127325811,36.812764441605026 +2024-12-01,Beirut,672.0461686310971,35.437510053508134 +2025-01-01,Beirut,660.6268506112262,35.03996062511321 +2025-02-01,Beirut,653.2667877143257,34.94047754426629 +2025-03-01,Beirut,643.4654859075663,34.77193413017926 +2025-04-01,Beirut,631.8368715419933,34.571732261917845 +2025-05-01,Beirut,626.6511011497902,34.595106260794275 +2025-06-01,Beirut,635.9636369717961,35.01789195007581 +2025-07-01,Beirut,654.6207364266185,35.60965616139072 +2025-08-01,Beirut,637.3443594944746,33.23428005219741 +2025-09-01,Beirut,551.10195774915,29.634022861155884 +2025-10-01,Beirut,590.3312038274473,31.404964415637416 +2025-11-01,Beirut,840.4343632149315,42.0362005285573 +2025-12-01,Beirut,975.5049258700326,45.37539295180605 +2026-01-01,Beirut,1051.3256219227821,48.31379874353922 +2026-02-01,Beirut,1108.6094847496188,51.229752965242184 +2026-03-01,Beirut,1153.2874891318097,55.91976411432235 +2026-04-01,Beirut,1135.3845186695132,63.62409868960985 +2026-05-01,Beirut,639.5544223856278,43.5917636496098 +2026-06-01,Beirut,873.8233919713596,40.681065531898376 +2026-07-01,Beirut,638.1064054739427,35.869467818298105 +2026-08-01,Beirut,518.8557820440986,32.00384699295415 +2026-09-01,Beirut,500.5727242359796,31.47813216789081 +2026-10-01,Beirut,574.0082480409412,32.77339631113592 +2026-11-01,Beirut,624.4633497672913,33.77155134431503 +2026-12-01,Beirut,680.9717077368583,38.22909301983459 +2027-01-01,Beirut,558.0594058737474,31.84527625299679 +2027-02-01,Beirut,507.4183269268697,30.845467809621688 +2027-03-01,Beirut,493.33184797885986,30.44038231159645 +2027-04-01,Beirut,907.8369990248998,43.72859639656892 +2027-05-01,Beirut,708.5716916961055,39.854186390709216 +2027-06-01,Beirut,643.9361147949618,36.117026835437116 +2027-07-01,Beirut,623.8109180706649,34.918130400143255 +2027-08-01,Beirut,602.9672187950807,34.48632927421393 +2027-09-01,Beirut,581.6208628212905,34.16962290224549 +2027-10-01,Beirut,558.3133252367588,33.83580808582775 +2027-11-01,Beirut,533.8480362708776,33.487112577645824 +2027-12-01,Beirut,518.3840015949663,33.351167450897194 +2028-01-01,Beirut,710.2052539926667,36.93349819455027 +2028-02-01,Beirut,686.9378771237134,38.64094879750458 +2028-03-01,Beirut,628.7065668777495,35.31611493648447 +2028-04-01,Beirut,549.1895735670143,30.108847460817422 +2028-05-01,Beirut,704.4696848436486,36.193466599446886 +2028-06-01,Beirut,526.5759958742501,29.41509394688478 +2028-07-01,Beirut,707.9368213159686,41.56353406430949 +2028-08-01,Beirut,759.3058312258555,41.87167751189429 +2028-09-01,Beirut,876.4430509778466,42.99582240201016 +2028-10-01,Beirut,973.4973219267679,44.93924074641349 +2028-11-01,Beirut,1033.6564904657084,47.177923343190514 +2028-12-01,Beirut,1054.976864327807,48.109976777164405 +2029-01-01,Beirut,1033.8353423979884,47.74521708360432 +2029-02-01,Beirut,979.8019784916961,46.43787434376928 +2029-03-01,Beirut,907.3114550371707,44.515619649875 +2029-04-01,Beirut,841.604637830171,42.40102983938884 +2029-05-01,Beirut,793.4826001830089,40.442765611857055 +2029-06-01,Beirut,762.7453302164873,39.059244172780076 +2029-07-01,Beirut,654.7386275594451,33.842108448890485 +2029-08-01,Beirut,648.2689378030814,33.58972843570622 +2029-09-01,Beirut,702.4143630609062,36.14755400895105 +2029-10-01,Beirut,709.030948911348,36.44793513077349 +2029-11-01,Beirut,684.4030738227223,35.98163864685975 +2029-12-01,Beirut,496.7890522311983,30.459440039645365 +2030-01-01,Beirut,498.1619297395432,30.636563782433846 +2030-02-01,Beirut,490.3495909704309,30.535392482755206 +2030-03-01,Beirut,480.4121169882697,30.24677667980133 +2030-04-01,Beirut,474.40988932452444,29.921176701410147 +2030-05-01,Beirut,480.383255972236,30.015351465311937 +2030-06-01,Beirut,499.7646157870308,31.109560928720875 +2030-07-01,Beirut,702.0544280454811,39.407434955744264 +2030-08-01,Beirut,703.364689384376,37.8070383119029 +2030-09-01,Beirut,709.4992027026608,36.67702816667058 +2030-10-01,Beirut,680.827186738863,34.85919937989346 +2030-11-01,Beirut,648.0579141147736,34.01176573932011 +2030-12-01,Beirut,614.7798671207504,33.30060790753461 +2031-01-01,Beirut,566.797816197244,32.364673310679535 +2031-02-01,Beirut,495.6852083336628,31.037124157817324 +2031-03-01,Beirut,765.5586675126183,38.47026465232162 +2031-04-01,Beirut,744.4660149840136,37.71959901901013 +2031-05-01,Beirut,657.534331566478,36.603251263292336 +2031-06-01,Beirut,711.6048333387888,43.348660137841094 +2031-07-01,Beirut,767.9454231577946,42.03844568556035 +2031-08-01,Beirut,795.2008022672406,40.57575200457073 +2031-09-01,Beirut,770.0065747218305,38.18690495335928 +2031-10-01,Beirut,739.2922640174404,36.95032816991399 +2031-11-01,Beirut,711.3095297258534,36.092678194761 +2031-12-01,Beirut,693.1903535474331,35.663296269013244 +2032-01-01,Beirut,683.2695772104588,35.500270023685516 +2032-02-01,Beirut,674.0548521634905,35.34805185974447 +2032-03-01,Beirut,670.1732254384542,35.36207973993384 +2032-04-01,Beirut,674.5408831891183,35.6091862448087 +2032-05-01,Beirut,635.3823142124304,33.17910836460388 +2032-06-01,Beirut,640.449329800504,35.711749889915566 +2032-07-01,Beirut,640.3325902294141,34.27907865722214 +2032-08-01,Beirut,607.9082103455603,34.98969695515418 +2032-09-01,Beirut,686.9196680537468,35.88734205273303 +2032-10-01,Beirut,726.0028097366607,37.36968520857849 +2032-11-01,Beirut,754.3291412615285,40.040360378781216 +2032-12-01,Beirut,701.5862462267768,42.21093987980001 +2033-01-01,Beirut,636.9028795135471,33.25499119044232 +2033-02-01,Beirut,612.3973578594794,32.70578053627762 +2033-03-01,Beirut,778.5649815513101,40.539133319808315 +2033-04-01,Beirut,770.1161170320636,40.949179048421584 +2033-05-01,Beirut,771.0565831081606,42.49372523627315 +2033-06-01,Beirut,822.5652918512689,45.43287941367403 +2033-07-01,Beirut,652.898072040656,33.76634745327702 +2033-08-01,Beirut,925.8674329769617,48.45646193697907 +2033-09-01,Beirut,958.6938518522505,50.26315196033035 +2033-10-01,Beirut,626.0179581122588,37.9130306076268 +2033-11-01,Beirut,694.4667157876947,45.382598339397134 +2033-12-01,Beirut,799.9884921614802,45.2128366230604 +2034-01-01,Beirut,958.1435492871755,49.04027237503519 +2034-02-01,Beirut,709.6311284941575,42.33691233241896 +2034-03-01,Beirut,741.0791279702416,40.359033438667005 +2034-04-01,Beirut,858.9862387160343,42.57113964208267 +2034-05-01,Beirut,941.0520699864305,43.62798203506155 +2034-06-01,Beirut,987.8692442403399,45.32384136232586 +2034-07-01,Beirut,1049.5186776121918,47.88972513473654 +2034-08-01,Beirut,653.7896687155379,34.98820018381883 +2034-09-01,Beirut,1127.3615880477448,52.12581426989644 +2034-10-01,Beirut,937.34749587846,50.277754183008895 +2034-11-01,Beirut,863.8506514110026,47.29839603136797 +2034-12-01,Beirut,728.245980027753,42.93762236311021 +2035-01-01,Beirut,686.897212599875,36.228066383338366 +2035-02-01,Beirut,541.808566641022,29.712185652633046 +2035-03-01,Beirut,1145.2095714370987,67.77823089200062 +2035-04-01,Beirut,1181.1340512479946,62.9739952048522 +2035-05-01,Beirut,625.0254558401708,34.33586894637601 +2035-06-01,Beirut,592.7801438064222,33.70202109449285 +2035-07-01,Beirut,552.1057597207824,33.00553510265735 +2035-08-01,Beirut,622.8682208437029,34.98592021818013 +2035-09-01,Beirut,688.1322625628213,36.401500410742045 +2035-10-01,Beirut,662.8944915892304,34.74443530797174 +2035-11-01,Beirut,669.7834217904756,35.21854633060136 +2035-12-01,Beirut,676.0544671472046,34.780549267516434 +2036-01-01,Beirut,673.9031339046389,34.66695128489084 +2036-02-01,Beirut,635.4709844661803,35.139548131867244 +2036-03-01,Beirut,670.3527970968198,34.64517848325693 +2036-04-01,Beirut,649.4709523386969,34.30107771498815 +2036-05-01,Beirut,475.21943722564447,32.168439626888556 +2036-06-01,Beirut,618.6792710801016,37.15743955236294 +2036-07-01,Beirut,862.5490987577436,42.03545214288965 +2036-08-01,Beirut,644.0224099526292,34.30269631654842 +2036-09-01,Beirut,645.8890915283271,34.49252521136955 +2036-10-01,Beirut,661.2642400326628,34.50030494144976 +2036-11-01,Beirut,756.0247439466717,37.18906319790159 +2036-12-01,Beirut,654.0339437490019,35.673530007910685 +2037-01-01,Beirut,755.8174628340093,41.69772135495501 +2037-02-01,Beirut,514.6620101157234,32.48897494878458 +2037-03-01,Beirut,1079.106473047349,60.76852004653844 +2037-04-01,Beirut,1133.9781019255777,57.30053567117861 +2037-05-01,Beirut,1160.529588923275,54.64146918098375 +2037-06-01,Beirut,1138.3924698991993,52.01905618418698 +2037-07-01,Beirut,1050.5709171493875,48.354246378229234 +2037-08-01,Beirut,678.4221500511119,37.32647028734984 +2037-09-01,Beirut,854.447574047424,42.887619757919005 +2037-10-01,Beirut,677.8933672959971,35.237395206835984 +2037-11-01,Beirut,719.6510111131233,49.44850805459177 +2037-12-01,Beirut,977.443580054294,56.61189902669466 +2038-01-01,Beirut,1068.2731560064008,62.08494784029267 +2038-02-01,Beirut,994.3934172613862,50.312092902132605 +2038-03-01,Beirut,921.7572212471285,46.53822764050882 +2038-04-01,Beirut,664.2051127911681,35.0124618029057 +2038-05-01,Beirut,582.1120039021265,33.94900576914273 +2038-06-01,Beirut,963.9492197569344,74.21821139254963 +2038-07-01,Beirut,662.6796533526689,34.31435720950987 +2038-08-01,Beirut,532.1952572878299,31.48498946912481 +2038-09-01,Beirut,618.0307259043377,33.382965139614356 +2038-10-01,Beirut,662.2413401665183,34.604017271534886 +2038-11-01,Beirut,703.5387911244908,37.144682187376816 +2038-12-01,Beirut,751.5704311752974,40.30917006801853 +2039-01-01,Beirut,715.2338362077676,45.61445866183281 +2039-02-01,Beirut,1149.659565851959,64.40349885169643 +2039-03-01,Beirut,722.5871336794632,53.15219910663285 +2039-04-01,Beirut,618.0547647555976,33.39941221998528 +2039-05-01,Beirut,682.8391810112503,35.266390800378836 +2039-06-01,Beirut,712.8188673000345,44.04244846040946 +2039-07-01,Beirut,683.7813744299524,43.71959836423899 +2039-08-01,Beirut,771.2309727387093,44.315696250699276 +2039-09-01,Beirut,762.2158997078955,40.599352259579206 +2039-10-01,Beirut,511.6204476778382,30.788381647064327 +2039-11-01,Beirut,735.6993194253519,38.40666927488728 +2039-12-01,Beirut,873.5423389349199,47.19832120371406 +2040-01-01,Beirut,539.4903289191977,29.91565953265078 +2040-02-01,Beirut,522.1352859258941,32.2117241653886 +2040-03-01,Beirut,447.63960559679487,30.728684836829032 +2040-04-01,Beirut,697.0263496386401,38.05221293749602 +2040-05-01,Beirut,669.9393144606237,35.0744907917333 +2040-06-01,Beirut,665.5784221351645,35.01787454575794 +2040-07-01,Beirut,657.0778093103611,34.2641979654579 +2040-08-01,Beirut,717.1038285234594,47.05287331941771 +2040-09-01,Beirut,642.8881216416714,33.91290921391591 +2040-10-01,Beirut,587.8345460089947,32.781367488712576 +2040-11-01,Beirut,530.5191591796076,31.655969487711264 +2040-12-01,Beirut,462.46193249475596,30.314218411481114 +2041-01-01,Beirut,635.4172209275835,33.17869066097539 +2041-02-01,Beirut,608.495650776654,32.663662087073696 +2041-03-01,Beirut,669.8844713328984,34.62998451377139 +2041-04-01,Beirut,621.4651148397612,33.45830843159935 +2041-05-01,Beirut,651.712899095444,34.749586986056215 +2041-06-01,Beirut,722.4714017248937,37.57213223384289 +2041-07-01,Beirut,729.1602480743326,37.82804532355131 +2041-08-01,Beirut,864.8443052448275,43.807716425528014 +2041-09-01,Beirut,622.7140555161603,35.26310138430465 +2041-10-01,Beirut,727.4210299884005,63.51511285121528 +2041-11-01,Beirut,961.5262618896508,47.431921957935046 +2041-12-01,Beirut,801.3651842180791,42.883930042534146 +2042-01-01,Beirut,658.2909076276956,37.44445415807435 +2042-02-01,Beirut,654.4855718677366,39.51332282556103 +2042-03-01,Beirut,620.3080831844977,34.956454708055205 +2042-04-01,Beirut,523.1090753197557,33.09908331111642 +2042-05-01,Beirut,477.8417592186484,32.39577482668253 +2042-06-01,Beirut,872.7869864080482,45.25389340887526 +2042-07-01,Beirut,683.7610781543375,40.75801002112583 +2042-08-01,Beirut,625.5299838261997,36.962528596728845 +2042-09-01,Beirut,614.138303288017,35.98882663013303 +2042-10-01,Beirut,575.7784863211643,33.9040852247645 +2042-11-01,Beirut,717.636569772045,37.38275585128597 +2042-12-01,Beirut,569.2368959288456,35.830725806757684 +2043-01-01,Beirut,676.6308237965795,36.33317105885172 +2043-02-01,Beirut,748.4152959610992,38.50770134002313 +2043-03-01,Beirut,767.1183139401851,39.17066661567408 +2043-04-01,Beirut,1190.3077519080819,66.80097844456286 +2043-05-01,Beirut,882.1740858525255,52.253544558618515 +2043-06-01,Beirut,688.6894025257099,36.483283300332616 +2043-07-01,Beirut,611.9327026985947,32.69975864230052 +2043-08-01,Beirut,509.5790166085488,33.98534598481952 +2043-09-01,Beirut,671.0984333215356,34.710131397483764 +2043-10-01,Beirut,704.6675375445891,42.60441669781732 +2043-11-01,Beirut,705.251955126123,38.877421264171325 +2043-12-01,Beirut,685.2162203542705,36.68362440313681 +2044-01-01,Beirut,676.9166270251847,36.116678749080094 +2044-02-01,Beirut,673.1257577595466,36.035452797660795 +2044-03-01,Beirut,671.0854062793858,36.06524898982488 +2044-04-01,Beirut,643.4045970807218,38.057764914891116 +2044-05-01,Beirut,584.7179161403781,33.363698559751214 +2044-06-01,Beirut,668.1940506755722,35.30382748808035 +2044-07-01,Beirut,703.9485311850416,46.68710417542215 +2044-08-01,Beirut,486.58895020038966,29.806029734495617 +2044-09-01,Beirut,1034.001815041595,52.213967139821136 +2044-10-01,Beirut,739.3914422720405,46.854498904530914 +2044-11-01,Beirut,620.4597294707405,32.467863511229055 +2044-12-01,Beirut,620.6467862803964,32.836208494266884 +2045-01-01,Beirut,680.3576374405961,40.10115366104124 +2045-02-01,Beirut,742.2442205576642,42.342812396171084 +2045-03-01,Beirut,748.6869205858171,38.955775503144864 +2045-04-01,Beirut,743.3169003156918,37.91108132402725 +2045-05-01,Beirut,768.98463565284,38.5778929539237 +2045-06-01,Beirut,827.8788136236719,40.54329295177518 +2045-07-01,Beirut,938.1646728760878,44.697164089398115 +2045-08-01,Beirut,1129.886315183537,56.31832299315275 +2045-09-01,Beirut,1164.4015713187634,80.81269002267847 +2045-10-01,Beirut,693.8378191340687,52.50040740304341 +2045-11-01,Beirut,980.9051746357545,64.71388745628421 +2045-12-01,Beirut,553.9997908877342,34.07449090086182 +2046-01-01,Beirut,563.4148876769428,32.378335700194 +2046-02-01,Beirut,579.3011136746868,32.77290899023605 +2046-03-01,Beirut,577.880374381647,32.645526787871 +2046-04-01,Beirut,581.050048062775,32.55290100825814 +2046-05-01,Beirut,620.3139849383997,32.62848796069309 +2046-06-01,Beirut,683.9880077891376,35.860121699611156 +2046-07-01,Beirut,545.1192346623254,31.35155056414699 +2046-08-01,Beirut,673.4246600029101,34.875141735046704 +2046-09-01,Beirut,729.1542023752135,40.182901741996076 +2046-10-01,Beirut,722.7212906218253,37.05113397891768 +2046-11-01,Beirut,674.7131136414105,34.700332766532604 +2046-12-01,Beirut,634.662300236363,33.66280916637041 +2047-01-01,Beirut,583.7131785248343,32.559044732460166 +2047-02-01,Beirut,503.9798355527579,31.026820801648427 +2047-03-01,Beirut,698.77470824586,38.48168188483311 +2047-04-01,Beirut,603.9870706584229,32.11956830235775 +2047-05-01,Beirut,662.2414841117354,34.189690080729875 +2047-06-01,Beirut,547.7257226814454,32.9242221296488 +2047-07-01,Beirut,1168.03870709251,64.68619718658033 +2047-08-01,Beirut,624.6784039216786,32.91623354775434 +2047-09-01,Beirut,767.955067487342,40.320987599840635 +2047-10-01,Beirut,720.0203745402704,38.980332995635216 +2047-11-01,Beirut,699.0145929502014,39.71449933562219 +2047-12-01,Beirut,678.7599175030992,42.25500761260342 +2048-01-01,Beirut,624.6067192035493,38.32737520274967 +2048-02-01,Beirut,616.7420563480117,39.75484254440514 +2048-03-01,Beirut,660.5001788201547,36.22603007814956 +2048-04-01,Beirut,658.3264620963258,36.13852116798539 +2048-05-01,Beirut,653.9219543700775,36.13182050561204 +2048-06-01,Beirut,647.871936894246,36.691908858434765 +2048-07-01,Beirut,641.9537732373027,37.983048178348795 +2048-08-01,Beirut,605.9722911204246,36.64845027675621 +2048-09-01,Beirut,665.078932231735,36.429329914988784 +2048-10-01,Beirut,524.4738199233329,31.525263060636302 +2048-11-01,Beirut,664.4976094723694,39.187531399673475 +2048-12-01,Beirut,668.8293528913604,36.412378109400066 +2049-01-01,Beirut,564.3630548221558,32.97784483295346 +2049-02-01,Beirut,594.8110668748616,33.386515620456315 +2049-03-01,Beirut,626.0805742817089,33.95387897814152 +2049-04-01,Beirut,652.250822371846,34.49628454402574 +2049-05-01,Beirut,676.3913709278896,35.0242097174564 +2049-06-01,Beirut,706.5412724359262,35.75444268160862 +2049-07-01,Beirut,663.4739430607735,36.98484093221616 +2049-08-01,Beirut,741.1889581709091,36.673947602410635 +2049-09-01,Beirut,783.34914478773,39.24108448570669 +2049-10-01,Beirut,716.3017657736299,39.6014234825322 +2049-11-01,Beirut,683.8359296672435,35.84207342199771 +2049-12-01,Beirut,760.9115401229028,39.326365643185675 +2050-01-01,Beirut,708.9736587149315,37.580434093458706 +2050-02-01,Beirut,682.854871039917,36.739927371390806 +2050-03-01,Beirut,773.0517357901437,37.64646607539247 +2050-04-01,Beirut,475.7239652116732,30.447291825784045 +2050-05-01,Beirut,614.4608125469891,35.91104673364863 +2050-06-01,Beirut,594.7482347875857,35.16800419155665 +2050-07-01,Beirut,928.6154911171259,43.260750928366306 +2050-08-01,Beirut,898.4045568370277,42.452198533876285 +2050-09-01,Beirut,833.0251430263824,40.60767152351288 +2050-10-01,Beirut,763.3207512219508,38.38421770485712 +2050-11-01,Beirut,707.8977401895186,36.49715454166132 +2050-12-01,Beirut,670.0926161168634,35.34385741914194 +2051-01-01,Beirut,726.6032052372956,61.2287598278393 +2051-02-01,Beirut,642.3742372165295,34.67474841928892 +2051-03-01,Beirut,598.8929213969209,34.02083338892149 +2051-04-01,Beirut,505.70106048654924,30.96465257827804 +2051-05-01,Beirut,681.8805778377956,35.856623431722724 +2051-06-01,Beirut,926.2760934483842,40.96935065281303 +2051-07-01,Beirut,698.9516169177086,38.52682868534338 +2051-08-01,Beirut,670.1951051114575,35.035557332696435 +2051-09-01,Beirut,618.3083242555662,34.24601045330168 +2051-10-01,Beirut,666.6259834528033,35.091808087996895 +2051-11-01,Beirut,820.3687598105251,39.59712461602255 +2051-12-01,Beirut,695.9254566180558,36.606418849141534 +2052-01-01,Beirut,557.5681208476942,32.98552013712656 +2052-02-01,Beirut,576.8760686017547,35.62117781980932 +2052-03-01,Beirut,593.3346207827939,36.18706181047703 +2052-04-01,Beirut,693.4138284970223,37.284734733138734 +2052-05-01,Beirut,772.3637496248872,43.74121452701225 +2052-06-01,Beirut,907.5712761540842,43.48152470032978 +2052-07-01,Beirut,718.5143477060831,39.36329760566946 +2052-08-01,Beirut,577.4311213589949,33.72080035345607 +2052-09-01,Beirut,606.1389796818571,33.97514705455768 +2052-10-01,Beirut,624.001645483358,34.252223794775155 +2052-11-01,Beirut,641.0662790011085,34.55519815995767 +2052-12-01,Beirut,657.3833330337122,34.871834914654656 +2053-01-01,Beirut,674.1113506612128,35.251144617939765 +2053-02-01,Beirut,686.6691314033378,35.6478760433956 +2053-03-01,Beirut,587.6785813662382,33.723967939305325 +2053-04-01,Beirut,603.448139765501,38.3095009683148 +2053-05-01,Beirut,678.859023785091,34.93210606737908 +2053-06-01,Beirut,716.634351197801,35.95443569805579 +2053-07-01,Beirut,493.11952878359807,30.34415383818805 +2053-08-01,Beirut,520.740024936286,30.95318313281297 +2053-09-01,Beirut,539.1905630045317,31.009538314020553 +2053-10-01,Beirut,599.2475304393123,37.26922748593183 +2053-11-01,Beirut,663.5069784881039,43.01164292693842 +2053-12-01,Beirut,627.6841240004993,32.98329238444137 +2054-01-01,Beirut,672.3280133662311,34.79525591610209 +2054-02-01,Beirut,524.2029150247008,30.910159659080755 +2054-03-01,Beirut,648.1626342602332,33.92711113728384 +2054-04-01,Beirut,680.0322492772815,35.436430985801266 +2054-05-01,Beirut,911.450671728255,44.519692260252555 +2054-06-01,Beirut,716.158540282589,40.59900417322211 +2054-07-01,Beirut,625.0368994849323,36.6198375782061 +2054-08-01,Beirut,600.5619661895039,35.12167389743238 +2054-09-01,Beirut,602.5950484362002,32.90434639866085 +2054-10-01,Beirut,698.7885269867043,35.43357667767337 +2054-11-01,Beirut,700.2651170239889,37.983326647434424 +2054-12-01,Beirut,696.8821165310792,39.242407213863515 +2055-01-01,Beirut,741.6202900140291,36.775171115042866 +2055-02-01,Beirut,777.4088135673491,37.95575820795552 +2055-03-01,Beirut,833.9086067964969,39.81803762252886 +2055-04-01,Beirut,926.8514424812391,43.03026554704099 +2055-05-01,Beirut,1045.8719694815068,47.85865842736921 +2055-06-01,Beirut,655.8108035092129,33.88810806097558 +2055-07-01,Beirut,693.5195562590018,37.970795538580404 +2055-08-01,Beirut,1164.0417802485556,54.835770985492985 +2055-09-01,Beirut,886.4555204181307,48.178915280179595 +2055-10-01,Beirut,1139.9277895850719,60.94675766566951 +2055-11-01,Beirut,657.7207406226572,33.97264083278693 +2055-12-01,Beirut,647.6737963028713,43.387123680295886 +2056-01-01,Beirut,701.7358772799798,42.39278019272662 +2056-02-01,Beirut,566.1671202284035,34.88657637187599 +2056-03-01,Beirut,716.4009440282302,46.48510966242189 +2056-04-01,Beirut,624.2184269803505,34.1718854635664 +2056-05-01,Beirut,937.7113893873562,45.89538175629579 +2056-06-01,Beirut,697.2115351604735,38.22395874606805 +2056-07-01,Beirut,784.7847824107421,39.137685433342924 +2056-08-01,Beirut,774.3417728260325,38.85862460089024 +2056-09-01,Beirut,762.3722961863035,38.59684625606543 +2056-10-01,Beirut,753.302955808633,38.41693782242045 +2056-11-01,Beirut,755.1773384534472,38.57634396963477 +2056-12-01,Beirut,980.0596404303529,52.94207677719528 +2057-01-01,Beirut,945.3980639819172,51.76096755474704 +2057-02-01,Beirut,946.3908541444393,51.494194170698464 +2057-03-01,Beirut,699.4332576142141,37.563551905141445 +2057-04-01,Beirut,682.6095883899334,37.01186983784166 +2057-05-01,Beirut,675.3612269815229,36.877421482428375 +2057-06-01,Beirut,681.3901564830451,37.953217177549035 +2057-07-01,Beirut,730.1933428976504,41.551020359773275 +2057-08-01,Beirut,883.1974643736872,46.080633315521574 +2057-09-01,Beirut,960.6281876799978,49.046381290601545 +2057-10-01,Beirut,716.7009258607221,46.7251326099306 +2057-11-01,Beirut,663.3875759304975,34.249195443468736 +2057-12-01,Beirut,1044.0586196087543,51.80945598428508 +2058-01-01,Beirut,1037.023800929951,51.14454142503459 +2058-02-01,Beirut,783.9475250553252,39.19376214546482 +2058-03-01,Beirut,784.8530124436602,39.86454195983164 +2058-04-01,Beirut,757.7684963069433,42.013435680805785 +2058-05-01,Beirut,675.9018132444421,40.626729251561734 +2058-06-01,Beirut,628.2575297729231,33.91494551910471 +2058-07-01,Beirut,620.1151965935479,33.6676127580978 +2058-08-01,Beirut,613.9811151109146,33.54668755765614 +2058-09-01,Beirut,604.5596847321526,33.298119090081656 +2058-10-01,Beirut,600.2971069899909,33.101641745840766 +2058-11-01,Beirut,629.1589866951784,32.96604470544922 +2058-12-01,Beirut,685.161593144371,36.0019668901119 +2059-01-01,Beirut,725.4712200498121,58.467617013437504 +2059-02-01,Beirut,819.6616289313909,40.38181569073639 +2059-03-01,Beirut,1052.2887593705764,51.6360915741528 +2059-04-01,Beirut,701.047603224289,38.144194757348366 +2059-05-01,Beirut,571.6605735222149,32.50740612139077 +2059-06-01,Beirut,472.3585260352532,30.59728223703996 +2059-07-01,Beirut,687.851641362033,36.360391411973595 +2059-08-01,Beirut,624.9501724916134,32.922011781281476 +2059-09-01,Beirut,691.7270784427327,37.22216621045773 +2059-10-01,Beirut,847.4429838642175,41.734635913120925 +2059-11-01,Beirut,1034.188871851251,47.489129950717384 +2059-12-01,Beirut,1175.394595578114,55.727968531583926 +2060-01-01,Beirut,1191.2625405332828,66.46457038478503 +2060-02-01,Beirut,639.4034958254705,34.31202503091757 +2060-03-01,Beirut,1064.1989305808493,51.709241922088324 +2060-04-01,Beirut,1075.0803972969265,51.50268747781065 +2060-05-01,Beirut,1081.8032147176077,51.03329302531917 +2060-06-01,Beirut,685.1722450904383,36.00297634054738 +2060-07-01,Beirut,652.0072670644678,35.18772328368394 +2060-08-01,Beirut,1156.635582909566,58.81747861091554 +2060-09-01,Beirut,736.1764258475177,41.34721579771639 +2060-10-01,Beirut,683.9421612374829,35.85444789199114 +2060-11-01,Beirut,470.8451579949927,30.68026602456237 +2060-12-01,Beirut,550.7440379667646,32.157666354137646 +2061-01-01,Beirut,911.1930097895982,47.691994679610275 +2061-02-01,Beirut,958.0938881872667,49.54736457999597 +2061-03-01,Beirut,587.0461580547923,31.37960632452577 +2061-04-01,Beirut,985.153789691855,51.45731442116826 +2061-05-01,Beirut,640.5346893142602,34.010825906156086 +2061-06-01,Beirut,661.4199167849852,34.44779611448769 +2061-07-01,Beirut,675.3132212516114,34.727344267840245 +2061-08-01,Beirut,684.3417531602263,34.946429820972 +2061-09-01,Beirut,697.6761183487497,36.124667330974546 +2061-10-01,Beirut,695.8370742547401,37.295525410207496 +2061-11-01,Beirut,698.24268672336,38.34648514375211 +2061-12-01,Beirut,1095.9315817238014,59.18190762243648 +2062-01-01,Beirut,1054.4255541462123,59.55662258580843 +2062-02-01,Beirut,608.7957765543629,33.337574678654114 +2062-03-01,Beirut,747.9707211580036,41.247819738458716 +2062-04-01,Beirut,715.8808699587516,46.086150484280935 +2062-05-01,Beirut,832.5048530390781,42.42363804827971 +2062-06-01,Beirut,1075.6056533942215,50.21111304995034 +2062-07-01,Beirut,659.7811724606074,47.373582684492305 +2062-08-01,Beirut,846.9696200176968,51.57663842436742 +2062-09-01,Beirut,1064.399374295698,62.389505998399784 +2062-10-01,Beirut,1044.6215173803278,48.77649253365736 +2062-11-01,Beirut,967.3094049329293,46.71042596134498 +2062-12-01,Beirut,717.3067912796081,47.22528049206811 +2063-01-01,Beirut,966.3459076220922,55.11973983558019 +2063-02-01,Beirut,757.5573286734186,45.32573843297182 +2063-03-01,Beirut,786.0545951436245,42.45287730227253 +2063-04-01,Beirut,616.2987050792615,31.937327690120522 +2063-05-01,Beirut,620.1151246209395,36.01338412262339 +2063-06-01,Beirut,490.8344704343219,31.7164146836142 +2063-07-01,Beirut,610.9820884846905,32.688550261603275 +2063-08-01,Beirut,1192.2359700641011,63.65650552945188 +2063-09-01,Beirut,1135.1570852264533,52.86288713096479 +2063-10-01,Beirut,1014.258504978335,46.56015708100344 +2063-11-01,Beirut,930.7775482783675,43.45494830696848 +2063-12-01,Beirut,885.041258659862,41.94641165275442 +2064-01-01,Beirut,866.1621237076217,41.64623938274627 +2064-02-01,Beirut,838.1634834695423,40.602241376342775 +2064-03-01,Beirut,658.5645474854534,34.80916196606654 +2064-04-01,Beirut,611.9159330807993,31.301530554637868 +2064-05-01,Beirut,708.2203933937078,36.22923247263449 +2064-06-01,Beirut,583.2116014157568,33.25121445346821 +2064-07-01,Beirut,593.7000976890785,33.29453380060397 +2064-08-01,Beirut,609.442306497087,33.47479032060599 +2064-09-01,Beirut,724.7378191685518,42.13897302547841 +2064-10-01,Beirut,719.3229599632917,38.573437448553335 +2064-11-01,Beirut,695.991671417934,36.70753793586664 +2064-12-01,Beirut,673.4805827197638,35.863933245220935 +2065-01-01,Beirut,652.5990978246839,35.34547602070221 +2065-02-01,Beirut,634.9211857093652,34.982039055298955 +2065-03-01,Beirut,623.5690181332836,34.83246634767151 +2065-04-01,Beirut,624.3649632113853,35.036601591767635 +2065-05-01,Beirut,683.551206027767,35.52460126004382 +2065-06-01,Beirut,615.8702521404844,36.75874143898975 +2065-07-01,Beirut,649.9925378329552,39.76074260815726 +2065-08-01,Beirut,574.7795784869143,33.21330784918468 +2065-09-01,Beirut,816.5768829283677,43.94606334814034 +2065-10-01,Beirut,520.5433237970825,33.27665956616911 +2065-11-01,Beirut,575.280795732949,34.12886198983413 +2065-12-01,Beirut,620.7178952176571,35.40771386134405 +2066-01-01,Beirut,669.5636174439231,38.73830855157343 +2066-02-01,Beirut,852.3630313856049,44.480706588262166 +2066-03-01,Beirut,958.6878061531311,48.956331350030894 +2066-04-01,Beirut,603.5969071474012,35.061002445397335 +2066-05-01,Beirut,627.4034308271025,33.75606150142599 +2066-06-01,Beirut,644.5896260807167,34.059523187508375 +2066-07-01,Beirut,659.7690810623689,34.32500865203579 +2066-08-01,Beirut,682.066411113106,34.90843619509921 +2066-09-01,Beirut,703.8726720556159,36.388220916220334 +2066-10-01,Beirut,708.1415114147227,38.286718716245424 +2066-11-01,Beirut,700.8541408524709,39.049097455471895 +2066-12-01,Beirut,466.9171089374332,32.33329332559079 +2067-01-01,Beirut,664.117738044372,40.647388176853056 +2067-02-01,Beirut,721.4717021919491,51.60013425346877 +2067-03-01,Beirut,560.269252847075,32.99006266408611 +2067-04-01,Beirut,709.6210523289585,42.33217835796297 +2067-05-01,Beirut,985.9629057573236,60.69980779965536 +2067-06-01,Beirut,740.9344630270293,37.241833089631434 +2067-07-01,Beirut,930.111297840897,42.866003595145756 +2067-08-01,Beirut,851.8474915904661,43.76187345230357 +2067-09-01,Beirut,638.3112395179139,33.262039939172695 +2067-10-01,Beirut,492.3094051016095,298.693063760375 +2067-11-01,Beirut,480.1779900926134,293.19497013338685 +2067-12-01,Beirut,713.095673952569,333.277148957147 +2068-01-01,Beirut,452.7243264465754,288.7237486640349 +2068-02-01,Beirut,540.0018382482572,244.36567703018534 +2068-03-01,Beirut,551.9584317910533,232.82576148216785 +2068-04-01,Beirut,477.53616352268864,319.5280163224774 +2068-05-01,Beirut,496.4635201226664,218.1574720130533 +2068-06-01,Beirut,495.530755115686,302.03016766548143 +2068-07-01,Beirut,496.4651035200547,303.2394022655799 +2068-08-01,Beirut,568.6074954669594,331.81577800431415 +2068-09-01,Beirut,466.5242824398947,296.0068813429654 +2068-10-01,Beirut,464.80521668436,297.50490578919636 +2068-11-01,Beirut,448.2069656700994,303.5437863805085 +2068-12-01,Beirut,423.55159704500267,271.57755424925585 +2069-01-01,Beirut,472.1390095791352,299.36814244125156 +2069-02-01,Beirut,444.415736541419,260.99764346968396 +2069-03-01,Beirut,553.9263068543912,270.76023007856793 +2069-04-01,Beirut,531.8266135867688,318.72122176409044 +2069-05-01,Beirut,474.64300860366114,306.7794231125327 +2069-06-01,Beirut,569.5821485321238,217.71524570073012 +2069-07-01,Beirut,531.1653292592891,306.2793622519844 +2069-08-01,Beirut,456.7956009951757,304.17646814309546 +2069-09-01,Beirut,549.4193101335484,176.3460871890228 +2069-10-01,Beirut,603.9595051493432,145.9522133455506 +2069-11-01,Beirut,673.4011249599098,249.67335001554545 +2069-12-01,Beirut,530.4289055284694,315.3057636200105 +2070-01-01,Beirut,673.8434686121399,297.9062667632011 +2070-02-01,Beirut,1014.2446142648826,297.5266263778767 +2070-03-01,Beirut,477.56394494959414,268.52741273690737 +2070-04-01,Beirut,645.6605784961386,316.3011861752867 +2070-05-01,Beirut,653.1868981188203,209.87792473272896 +2070-06-01,Beirut,488.10174245978163,303.459862759822 +2070-07-01,Beirut,494.82088927742603,303.04438688403866 +2070-08-01,Beirut,453.1640071122884,320.592464402358 +2070-09-01,Beirut,459.0119974758827,304.89504021428627 +2070-10-01,Beirut,610.5813450002098,249.78257951439 +2070-11-01,Beirut,496.0571627747178,303.14651542119924 +2070-12-01,Beirut,774.260083915313,134.5095879343306 +2071-01-01,Beirut,449.4465499073854,268.7629105617743 +2071-02-01,Beirut,453.1594008653404,294.90678922012216 +2071-03-01,Beirut,453.76145173597257,302.85659429440636 +2071-04-01,Beirut,462.2690459038064,318.72160465908325 +2071-05-01,Beirut,580.0972026980053,335.7372144770123 +2071-06-01,Beirut,1009.6114495612285,283.9031007051512 +2071-07-01,Beirut,562.5182529194612,252.22922630519076 +2071-08-01,Beirut,624.1435754674447,171.2522610571207 +2071-09-01,Beirut,468.31827168094355,339.8632909190243 +2071-10-01,Beirut,558.7694156572245,240.93429393527006 +2071-11-01,Beirut,533.5030715580338,311.7114935143104 +2071-12-01,Beirut,489.83088438051516,304.3209065769563 +2072-01-01,Beirut,484.16520063441175,283.65352278714124 +2072-02-01,Beirut,555.9794694588766,254.90386965986391 +2072-03-01,Beirut,534.6861572975974,310.49576710365284 +2072-04-01,Beirut,535.3783178741508,316.75707487712435 +2072-05-01,Beirut,580.7904428636871,269.75253747920544 +2072-06-01,Beirut,489.08776719709886,301.90610968782624 +2072-07-01,Beirut,498.43161110382994,296.8850684131848 +2072-08-01,Beirut,499.25159503319173,293.5961396598951 +2072-09-01,Beirut,500.241722209197,292.4175192548998 +2072-10-01,Beirut,478.4895126957183,298.299552133722 +2072-11-01,Beirut,453.60836599755845,291.6020921548578 +2072-12-01,Beirut,485.8379880026402,363.7281611761301 +2073-01-01,Beirut,500.9518039652825,287.3101525637082 +2073-02-01,Beirut,502.33871613229735,293.55485661794813 +2073-03-01,Beirut,503.77975170095175,293.69792011069865 +2073-04-01,Beirut,545.1800515165614,309.77940538082925 +2073-05-01,Beirut,544.4236913731695,284.73366956172515 +2073-06-01,Beirut,432.22264100688386,281.4332365543347 +2073-07-01,Beirut,448.7527339608349,301.5750969665828 +2073-08-01,Beirut,463.23448647507456,291.04668556353755 +2073-09-01,Beirut,592.2010521979221,267.4785589258229 +2073-10-01,Beirut,481.6335641281977,303.19815403226863 +2073-11-01,Beirut,474.8369028111306,300.02338019977583 +2073-12-01,Beirut,503.40578202685697,279.7665468637918 +2074-01-01,Beirut,499.56323642827067,303.6370387155641 +2074-02-01,Beirut,495.64058531635357,257.2867644343697 +2074-03-01,Beirut,646.6798545786121,215.80983838651747 +2074-04-01,Beirut,626.6777310149587,304.4944450302671 +2074-05-01,Beirut,503.4619206615363,313.4774748382039 +2074-06-01,Beirut,444.74551503385607,289.3671862950549 +2074-07-01,Beirut,449.5735815614994,301.54326446922994 +2074-08-01,Beirut,608.2460497701562,252.02657042811217 +2074-09-01,Beirut,480.9978300767578,289.84570061010135 +2074-10-01,Beirut,462.9351523960598,286.3677087519761 +2074-11-01,Beirut,615.5437843880412,245.03205355213544 +2074-12-01,Beirut,466.848087205821,344.1703722667059 +2075-01-01,Beirut,530.877078961993,239.75208824079704 +2075-02-01,Beirut,454.07150973366333,296.9262122205889 +2075-03-01,Beirut,510.8690536444374,266.6802228659124 +2075-04-01,Beirut,495.40746603721686,305.05432453127554 +2075-05-01,Beirut,493.62463255049533,302.17723415133804 +2075-06-01,Beirut,493.5196964872102,298.96737321405385 +2075-07-01,Beirut,494.72012762543756,295.98898970421266 +2075-08-01,Beirut,497.04930518376307,296.24706092933485 +2075-09-01,Beirut,498.1516376565185,296.17187427621053 +2075-10-01,Beirut,529.2897230801294,317.08378873185814 +2075-11-01,Beirut,493.60196117879804,298.92835273342774 +2075-12-01,Beirut,472.2598515889128,266.94638709883617 +2076-01-01,Beirut,467.8787349604475,301.18612786688936 +2076-02-01,Beirut,462.02110026730594,303.85246936194676 +2076-03-01,Beirut,503.21958888850367,294.3589883157036 +2076-04-01,Beirut,502.8458351322344,289.65374838850215 +2076-05-01,Beirut,493.04122258548136,280.5436670602396 +2076-06-01,Beirut,462.164469703564,271.30944073273264 +2076-07-01,Beirut,482.12931145598156,321.36657365181725 +2076-08-01,Beirut,823.1736043388457,308.8742764265737 +2076-09-01,Beirut,493.34401134970705,300.02378049908646 +2076-10-01,Beirut,493.41584001305324,301.44155363569786 +2076-11-01,Beirut,494.0492709410188,301.833516278062 +2076-12-01,Beirut,494.8194498252549,302.25121990653054 +2077-01-01,Beirut,495.3433384429871,302.0698321058681 +2077-02-01,Beirut,496.01628233305394,303.34967602349553 +2077-03-01,Beirut,482.220716668857,291.0692589637927 +2077-04-01,Beirut,515.0795232179993,261.82669815060467 +2077-05-01,Beirut,483.5145682529995,302.6958654190353 +2077-06-01,Beirut,653.6823575561701,326.1570077149084 +2077-07-01,Beirut,484.6256094113912,302.1007421743747 +2077-08-01,Beirut,612.8386938951893,247.6318757443592 +2077-09-01,Beirut,484.87218756832925,249.08640680027585 +2077-10-01,Beirut,495.1463494133494,303.0085165849439 +2077-11-01,Beirut,465.8559447967758,262.20282286372276 +2077-12-01,Beirut,501.23098571389966,292.7035766231293 +2078-01-01,Beirut,458.4416865256271,307.2473904109603 +2078-02-01,Beirut,487.6280907228266,264.82493998711595 +2078-03-01,Beirut,546.5035558154318,300.83553528806146 +2078-04-01,Beirut,495.81699017994214,301.1054588536414 +2078-05-01,Beirut,495.8598138820375,300.494828361774 +2078-06-01,Beirut,661.7450890304744,329.0500230456813 +2078-07-01,Beirut,462.7876085485051,305.8925686920226 +2078-08-01,Beirut,466.3969628953461,299.89662455285355 +2078-09-01,Beirut,480.02382476507086,298.13981530446847 +2078-10-01,Beirut,487.0985882416263,298.91669184046634 +2078-11-01,Beirut,505.31240840030756,276.1355884560578 +2078-12-01,Beirut,501.7648785242223,284.9114720729099 +2079-01-01,Beirut,500.6562844345216,289.45838492060386 +2079-02-01,Beirut,481.60578270129224,286.5836615278943 +2079-03-01,Beirut,489.19399876733854,299.6631456288574 +2079-04-01,Beirut,481.23368431501996,297.79477470303567 +2079-05-01,Beirut,460.2315733279879,281.00978950097476 +2079-06-01,Beirut,531.1325097497842,319.015911673975 +2079-07-01,Beirut,474.4407655735981,299.84267116750965 +2079-08-01,Beirut,566.5553404789941,267.78118520464835 +2079-09-01,Beirut,530.5932189938194,315.08720019641436 +2079-10-01,Beirut,478.30583859866454,292.7070922953356 +2079-11-01,Beirut,450.5362871736424,289.7303796000083 +2079-12-01,Beirut,453.6488865761796,337.32532367244954 +2080-01-01,Beirut,472.48764489501576,314.6314855377552 +2080-02-01,Beirut,487.63154540803765,299.7786754907647 +2080-03-01,Beirut,468.1455374203917,292.5899960448216 +2080-04-01,Beirut,463.3009171927785,303.369029624948 +2080-05-01,Beirut,539.6886854283982,331.9775337344386 +2080-06-01,Beirut,963.6121720310325,313.8160236290776 +2080-07-01,Beirut,550.0037277150825,305.93143253378804 +2080-08-01,Beirut,501.70521323172323,320.0453770749714 +2080-09-01,Beirut,462.62178365837525,262.707495868502 +2080-10-01,Beirut,632.5249296798586,141.9269775211781 +2080-11-01,Beirut,1011.8373464262656,294.34478639233566 +2080-12-01,Beirut,539.1706265919597,294.16265020600554 +2081-01-01,Beirut,477.39991937467846,260.41950683924784 +2081-02-01,Beirut,509.20245592054556,238.94402316720686 +2081-03-01,Beirut,508.1005552834414,277.9928902357252 +2081-04-01,Beirut,661.3584521772723,157.00585225275933 +2081-05-01,Beirut,514.7126068595435,262.3869257379703 +2081-06-01,Beirut,638.1458464634354,161.31152385069495 +2081-07-01,Beirut,500.9264696070683,290.19107189357334 +2081-08-01,Beirut,547.0534265448557,222.3331159523102 +2081-09-01,Beirut,574.889048824539,209.5425783363402 +2081-10-01,Beirut,582.3138870691465,214.50914409610223 +2081-11-01,Beirut,550.8717893469645,305.2186561004422 +2081-12-01,Beirut,686.7452064505893,154.4143667287871 +2082-01-01,Beirut,506.12569887707286,246.95521327055806 +2082-02-01,Beirut,456.15439702548514,289.16834196358604 +2082-03-01,Beirut,492.00611252912387,300.1095489774653 +2082-04-01,Beirut,544.6667428722877,220.36827289263007 +2082-05-01,Beirut,459.530272230147,326.3185894018543 +2082-06-01,Beirut,567.7480705481053,202.5935041342773 +2082-07-01,Beirut,525.6556101559424,247.15316998181643 +2082-08-01,Beirut,586.6641994211469,272.7812368719593 +2082-09-01,Beirut,484.22054757039695,224.01169279194664 +2082-10-01,Beirut,535.8857967371305,257.0245509815986 +2082-11-01,Beirut,530.8503051516075,279.5559372134544 +2082-12-01,Beirut,470.4296601257565,272.226648283578 +2083-01-01,Beirut,516.0225083353957,282.4295641341392 +2083-02-01,Beirut,547.8898922015783,307.64222476577015 +2083-03-01,Beirut,501.00945402474184,318.9490442847843 +2083-04-01,Beirut,478.86650521937287,303.1715950432252 +2083-05-01,Beirut,536.2285302991089,290.79108575155055 +2083-06-01,Beirut,510.6945200686713,285.9209921256469 +2083-07-01,Beirut,660.5531506600576,334.5798621484331 +2083-08-01,Beirut,529.0502702114392,317.5141975123593 +2083-09-01,Beirut,458.7557749893973,301.63176542551173 +2083-10-01,Beirut,464.2977378213802,335.15385655122026 +2083-11-01,Beirut,529.6767197963743,316.3957960471348 +2083-12-01,Beirut,478.99267320218416,269.180596785925 +2084-01-01,Beirut,505.90596650312904,259.69943799672166 +2084-02-01,Beirut,519.3549840570936,280.90830492357475 +2084-03-01,Beirut,513.9871229652255,281.17178889154917 +2084-04-01,Beirut,510.5195546572538,279.8477206022575 +2084-05-01,Beirut,512.076682043521,270.95827381141555 +2084-06-01,Beirut,651.1289133495613,211.73439110513942 +2084-07-01,Beirut,494.400785161242,296.56479415605656 +2084-08-01,Beirut,479.6406425970796,294.7054560712004 +2084-09-01,Beirut,498.4252055416678,300.2381320777622 +2084-10-01,Beirut,526.0292199669946,343.76819328976217 +2084-11-01,Beirut,631.875664778009,249.83982231580805 +2084-12-01,Beirut,636.0564816368427,187.91997596548902 +2085-01-01,Beirut,714.6115610341294,251.87061033583265 +2085-02-01,Beirut,491.53116528521457,299.8271639203028 +2085-03-01,Beirut,495.0374548565932,301.48050449905253 +2085-04-01,Beirut,494.1185085904567,300.1867545314606 +2085-05-01,Beirut,492.3864157927724,299.78182567229607 +2085-06-01,Beirut,492.60693986541037,300.3039378035639 +2085-07-01,Beirut,492.19194580443417,300.3402954235585 +2085-08-01,Beirut,491.95774693616937,300.9731860379597 +2085-09-01,Beirut,486.39800686987115,300.9102172159681 +2085-10-01,Beirut,455.6218716947253,342.78547588651855 +2085-11-01,Beirut,469.33582042081156,292.48985159989627 +2085-12-01,Beirut,448.90531589098936,301.26437767995577 +2086-01-01,Beirut,466.34111215110096,341.217033570255 +2086-02-01,Beirut,442.70379607413213,275.80927490063465 +2086-03-01,Beirut,481.6099571125888,287.17814081279425 +2086-04-01,Beirut,495.56494210475347,293.0069512876225 +2086-05-01,Beirut,499.19279341199547,295.3241621665515 +2086-06-01,Beirut,499.6531302163663,294.71429746466964 +2086-07-01,Beirut,500.08143920992643,295.458941204004 +2086-08-01,Beirut,499.46348239280206,293.0550394178499 +2086-09-01,Beirut,437.3826452052215,333.5159710067238 +2017-01-01,Bekaa,700.5475375399911,287.5948001821916 +2017-02-01,Bekaa,601.9567233708519,258.08844212330786 +2017-03-01,Bekaa,467.0984079384042,287.4454189220605 +2017-04-01,Bekaa,461.09905917900136,328.69285163470505 +2017-05-01,Bekaa,461.64295618191426,301.34870159995285 +2017-06-01,Bekaa,546.6560657729775,306.3843625015907 +2017-07-01,Bekaa,479.0699717837813,299.11986984708057 +2017-08-01,Bekaa,776.8790951683231,301.6273969417307 +2017-09-01,Bekaa,506.7987147397481,321.50678283643987 +2017-10-01,Bekaa,530.5496755656386,319.2243457845808 +2017-11-01,Bekaa,453.72013945865706,295.7039243821008 +2017-12-01,Bekaa,475.74476529554806,297.2160289214747 +2018-01-01,Bekaa,486.9915649726928,299.1871375355819 +2018-02-01,Bekaa,490.598256333017,301.1281366798036 +2018-03-01,Bekaa,496.83266763198765,298.2226424531302 +2018-04-01,Bekaa,498.0704525540592,299.8327333020157 +2018-05-01,Bekaa,499.33083687521975,299.4554076909658 +2018-06-01,Bekaa,500.21761138532827,298.2604968444602 +2018-07-01,Bekaa,501.179021490517,297.21298316585046 +2018-08-01,Bekaa,504.26038478093756,298.5144780548869 +2018-09-01,Bekaa,502.145109815262,290.5805283141667 +2018-10-01,Bekaa,480.2955933350059,269.4628252042269 +2018-11-01,Bekaa,468.58989630566145,295.52114423601006 +2018-12-01,Bekaa,459.09361441399335,302.9529271937219 +2019-01-01,Bekaa,532.1504183526949,322.4117377475169 +2019-02-01,Bekaa,574.5114805200158,284.260324329081 +2019-03-01,Bekaa,721.7562818862085,258.6325359080238 +2019-04-01,Bekaa,534.9198523576024,317.04076525812593 +2019-05-01,Bekaa,490.2034146024388,303.91343668738523 +2019-06-01,Bekaa,493.01200170640465,304.10211689722803 +2019-07-01,Bekaa,493.3938883674414,303.514390487655 +2019-08-01,Bekaa,491.7475869191644,303.47665792655 +2019-09-01,Bekaa,485.3351873592167,299.0272788761034 +2019-10-01,Bekaa,475.76606918768283,299.5303854922759 +2019-11-01,Bekaa,463.3649008417913,297.5398710637627 +2019-12-01,Bekaa,457.87454237014805,294.2032544795562 +2020-01-01,Bekaa,456.92515169058976,291.9866405578167 +2020-02-01,Bekaa,472.74062861411574,302.3452380315716 +2020-03-01,Bekaa,555.6762488589993,301.18092397585133 +2020-04-01,Bekaa,479.8944899874825,308.2905704144247 +2020-05-01,Bekaa,494.82304845568297,304.91649973819887 +2020-06-01,Bekaa,491.2156373692731,298.4169094490038 +2020-07-01,Bekaa,553.7049191104504,302.8544709676283 +2020-08-01,Bekaa,430.1052068629514,289.05467436368906 +2020-09-01,Bekaa,536.3980257922755,270.7474205006282 +2020-10-01,Bekaa,500.7355262765499,300.96660720581133 +2020-11-01,Bekaa,803.860618502186,327.23047123143675 +2020-12-01,Bekaa,499.40079425074344,295.3322551743531 +2021-01-01,Bekaa,499.44613699413816,296.34436847045015 +2021-02-01,Bekaa,493.9578657281434,302.50145918861887 +2021-03-01,Bekaa,493.4720506203412,303.39649363851976 +2021-04-01,Bekaa,490.26408751145766,301.68763328581935 +2021-05-01,Bekaa,480.1922406691089,296.89819126884584 +2021-06-01,Bekaa,465.9697334909144,300.25282132203006 +2021-07-01,Bekaa,451.0993288904329,313.3990857905946 +2021-08-01,Bekaa,450.9531525224408,342.1640025046288 +2021-09-01,Bekaa,685.5200167350163,158.6201375422473 +2021-10-01,Bekaa,623.9405407386877,174.6680846918755 +2021-11-01,Bekaa,568.7181173663213,208.3191244085559 +2021-12-01,Bekaa,531.6070251580421,240.05222570216955 +2022-01-01,Bekaa,506.56552348800307,261.87353316994677 +2022-02-01,Bekaa,483.8764465288559,274.09185162355067 +2022-03-01,Bekaa,457.5698103454912,285.25484185982884 +2022-04-01,Bekaa,471.6357051274518,312.58073476515335 +2022-05-01,Bekaa,817.1824604568192,328.4293502624128 +2022-06-01,Bekaa,499.12866581776564,296.69062737413265 +2022-07-01,Bekaa,497.49596719250695,296.4559475522048 +2022-08-01,Bekaa,490.14734794036787,293.573914345997 +2022-09-01,Bekaa,464.68142379763117,279.72688242340513 +2022-10-01,Bekaa,449.6418115944175,307.3204537373066 +2022-11-01,Bekaa,449.90012128655115,328.7871134201961 +2022-12-01,Bekaa,514.990061265555,306.5133284968804 +2023-01-01,Bekaa,496.1380599867431,302.774672170273 +2023-02-01,Bekaa,464.7834809565739,301.04689332406656 +2023-03-01,Bekaa,463.13804317959966,300.47235938742597 +2023-04-01,Bekaa,469.97817595223887,282.71250612947307 +2023-05-01,Bekaa,455.32188986223343,301.3325677973033 +2023-06-01,Bekaa,472.60006610959175,321.19555882459514 +2023-07-01,Bekaa,848.4839237018687,312.15826235359316 +2023-08-01,Bekaa,759.510953160261,141.2433533202358 +2023-09-01,Bekaa,600.098318645139,145.55419400057366 +2023-10-01,Bekaa,456.03449065961877,281.74136259760166 +2023-11-01,Bekaa,498.3840372095695,296.2999352469718 +2023-12-01,Bekaa,469.44960911495014,296.78422779554535 +2024-01-01,Bekaa,529.3319710013559,316.9848973978182 +2024-02-01,Bekaa,535.5390327090724,254.52772754242804 +2024-03-01,Bekaa,530.076743554769,315.78984731676985 +2024-04-01,Bekaa,468.0513972483908,294.9170229590197 +2024-05-01,Bekaa,459.6978244628824,293.2803731210908 +2024-06-01,Bekaa,531.315464120752,177.8293353693966 +2024-07-01,Bekaa,635.5790873242422,168.3376469678924 +2024-08-01,Bekaa,691.3035916139461,159.68147024923223 +2024-09-01,Bekaa,528.430945914752,257.68173802372235 +2024-10-01,Bekaa,521.0113616705695,264.58133175012955 +2024-11-01,Bekaa,514.1697894457591,269.58724867255694 +2024-12-01,Bekaa,510.07397223763843,275.97017781918424 +2025-01-01,Bekaa,516.4138953807629,284.9398585153279 +2025-02-01,Bekaa,530.3295113560434,278.0077187145359 +2025-03-01,Bekaa,537.5335376375787,260.09695261648085 +2025-04-01,Bekaa,491.9198173714564,223.87043934825292 +2025-05-01,Bekaa,498.74368433456044,298.6540432797489 +2025-06-01,Bekaa,498.4330505560011,299.4500123524314 +2025-07-01,Bekaa,492.4158525896747,294.5159578584185 +2025-08-01,Bekaa,475.55288632111825,286.41113252501896 +2025-09-01,Bekaa,446.05879922231054,306.7903530241443 +2025-10-01,Bekaa,498.4950189719743,300.46755579569856 +2025-11-01,Bekaa,459.5643872466061,281.85337678730264 +2025-12-01,Bekaa,533.5678469057407,317.8285194927818 +2026-01-01,Bekaa,530.1038772281973,315.76882290080357 +2026-02-01,Bekaa,467.14504618875316,288.758505086787 +2026-03-01,Bekaa,461.8412407185061,288.1945181667653 +2026-04-01,Bekaa,453.7783652989849,313.7020253471414 +2026-05-01,Bekaa,544.9526180735012,309.9584261942638 +2026-06-01,Bekaa,460.76596994657024,334.2696475870239 +2026-07-01,Bekaa,457.7203050699971,293.7857422985841 +2026-08-01,Bekaa,479.21384502829926,300.890358889298 +2026-09-01,Bekaa,483.8790375427642,304.4453822582399 +2026-10-01,Bekaa,475.17207924920984,299.29234663700237 +2026-11-01,Bekaa,529.314841520518,317.0241615388943 +2026-12-01,Bekaa,497.2678140233613,298.57948318206735 +2027-01-01,Bekaa,496.75270606387375,298.8449512422769 +2027-02-01,Bekaa,496.13654856196325,299.70287968651553 +2027-03-01,Bekaa,495.4223643671897,301.6263700869773 +2027-04-01,Bekaa,489.77258656757874,298.5033566957789 +2027-05-01,Bekaa,470.30126099207973,286.75885339140115 +2027-06-01,Bekaa,453.89791180180856,301.6508057492427 +2027-07-01,Bekaa,445.202541098233,317.95014086593756 +2027-08-01,Bekaa,455.084164336149,271.1158699095731 +2027-09-01,Bekaa,982.719028316767,259.5506310790798 +2027-10-01,Bekaa,622.9392578083549,333.2331856502507 +2027-11-01,Bekaa,460.12116734645184,320.4602960125834 +2027-12-01,Bekaa,463.4895573998229,301.94631366206636 +2028-01-01,Bekaa,476.2238149781454,301.89780782821043 +2028-02-01,Bekaa,483.18565343186526,302.3648526977918 +2028-03-01,Bekaa,479.1179055410845,301.73821023349973 +2028-04-01,Bekaa,459.67997525595854,285.6433932558938 +2028-05-01,Bekaa,509.1424307650037,244.66765934925024 +2028-06-01,Bekaa,710.8507043462624,225.86633171098256 +2028-07-01,Bekaa,467.74904031981646,220.4044390651283 +2028-08-01,Bekaa,654.5769051080035,208.62451797391992 +2028-09-01,Bekaa,490.543053342249,303.9044386550553 +2028-10-01,Bekaa,497.9242761860672,299.34201856015443 +2028-11-01,Bekaa,497.77219806417287,299.1830475208864 +2028-12-01,Bekaa,497.4998537133695,298.451544041531 +2029-01-01,Bekaa,500.9276211688054,288.896782392128 +2029-02-01,Bekaa,480.604931606611,272.63643294742354 +2029-03-01,Bekaa,467.5223985754505,293.92708276386713 +2029-04-01,Bekaa,463.74678750282806,307.77143442150975 +2029-05-01,Bekaa,566.9206734400614,333.6891787779955 +2029-06-01,Bekaa,603.4207182016381,256.681250811951 +2029-07-01,Bekaa,443.1667238924112,282.2921396403731 +2029-08-01,Bekaa,452.40627948933405,283.96549518465366 +2029-09-01,Bekaa,466.7023426734803,295.55631836239075 +2029-10-01,Bekaa,750.8821571196063,246.66823347348233 +2029-11-01,Bekaa,475.5716711719534,302.9835761974608 +2029-12-01,Bekaa,657.937162256607,259.72805069527175 +2030-01-01,Bekaa,473.2752411505241,301.9140112481315 +2030-02-01,Bekaa,454.4433922021098,299.31063857506575 +2030-03-01,Bekaa,456.16828773893786,329.9669173188054 +2030-04-01,Bekaa,694.6583068716903,261.71052432893686 +2030-05-01,Bekaa,539.6904127710038,313.8731446002707 +2030-06-01,Bekaa,593.1063236684312,266.6103619340511 +2030-07-01,Bekaa,604.0078707422977,306.08843688513866 +2030-08-01,Bekaa,619.4155508657042,265.56634652332974 +2030-09-01,Bekaa,488.2562676503672,249.05445247269796 +2030-10-01,Bekaa,548.4956136752471,239.16794712070168 +2030-11-01,Bekaa,490.5524817539707,241.214033536119 +2030-12-01,Bekaa,430.74892987394156,281.04988904930775 +2031-01-01,Bekaa,446.1510681064889,303.69696178193146 +2031-02-01,Bekaa,461.82886142983324,294.6721093981943 +2031-03-01,Bekaa,487.8448002472108,305.1864581124144 +2031-04-01,Bekaa,509.2638485556501,212.04862606397273 +2031-05-01,Bekaa,470.01409028391214,299.8567860692883 +2031-06-01,Bekaa,529.1872340855352,319.3708553322661 +2031-07-01,Bekaa,536.0848009998081,324.2997233395589 +2031-08-01,Bekaa,490.74493650926894,298.0330920273948 +2031-09-01,Bekaa,487.0575638547452,298.1385447892652 +2031-10-01,Bekaa,528.718044650311,318.6839417152496 +2031-11-01,Bekaa,483.25071667000657,299.0541511428682 +2031-12-01,Bekaa,540.0612156503221,305.6973966716207 +2032-01-01,Bekaa,481.33602936439684,300.4817229104308 +2032-02-01,Bekaa,479.4615027743655,299.3514691047485 +2032-03-01,Bekaa,470.04251946429474,300.2658919647375 +2032-04-01,Bekaa,501.9777015277438,320.7542201324824 +2032-05-01,Bekaa,865.0179751492908,312.78725440079535 +2032-06-01,Bekaa,900.3720000647141,311.2603387869287 +2032-07-01,Bekaa,503.9047681220263,330.3890416440085 +2032-08-01,Bekaa,603.266480901487,274.3146965093386 +2032-09-01,Bekaa,514.194188160062,277.2719511773064 +2032-10-01,Bekaa,511.5781277840031,275.13177701957653 +2032-11-01,Bekaa,508.15842126072624,278.44119065497904 +2032-12-01,Bekaa,504.8072326608017,281.0677110707891 +2033-01-01,Bekaa,504.4074248202325,286.6269286620765 +2033-02-01,Bekaa,506.4804518646813,287.54834805784236 +2033-03-01,Bekaa,521.1575380385616,291.05895560762383 +2033-04-01,Bekaa,547.3794624616472,283.57262751776113 +2033-05-01,Bekaa,632.9099111630635,161.5064522106469 +2033-06-01,Bekaa,466.6379991614248,285.4131341307006 +2033-07-01,Bekaa,541.0243530981162,229.14074526318294 +2033-08-01,Bekaa,526.2875296591283,264.5981791298112 +2033-09-01,Bekaa,535.6020087415654,267.531415839142 +2033-10-01,Bekaa,549.3587091971381,261.55978553201334 +2033-11-01,Bekaa,488.88883490703006,316.32489085620233 +2033-12-01,Bekaa,621.4255299050513,299.2934083003914 +2034-01-01,Bekaa,474.40701042018185,302.1236114480334 +2034-02-01,Bekaa,456.60588119900285,308.94612145067026 +2034-03-01,Bekaa,558.1074116036591,299.08721934678863 +2034-04-01,Bekaa,481.9400954680687,312.8145443711887 +2034-05-01,Bekaa,454.99772523326436,298.32713797751876 +2034-06-01,Bekaa,466.0723664307257,343.99531963774194 +2034-07-01,Bekaa,996.4154157263638,304.18673669062866 +2034-08-01,Bekaa,529.1832755920643,319.37353559721544 +2034-09-01,Bekaa,723.5256564951288,141.70289692882258 +2034-10-01,Bekaa,588.4839548560616,183.65943376374594 +2034-11-01,Bekaa,469.98026315788746,295.3902985743923 +2034-12-01,Bekaa,479.3444753128418,285.4851357936578 +2035-01-01,Bekaa,493.70157126904945,277.39667051903996 +2035-02-01,Bekaa,505.14456827713775,289.37956076504827 +2035-03-01,Bekaa,505.1482388801745,292.31558216523564 +2035-04-01,Bekaa,503.2491696306233,291.3655500709197 +2035-05-01,Bekaa,502.39183191741705,287.3366245311624 +2035-06-01,Bekaa,503.80904455263703,286.9360641557789 +2035-07-01,Bekaa,504.58418954686385,287.2262115387038 +2035-08-01,Bekaa,504.65918500498685,284.1671068026611 +2035-09-01,Bekaa,531.0956597741999,243.150037641117 +2035-10-01,Bekaa,517.476427000983,266.931140916397 +2035-11-01,Bekaa,517.149599385497,274.42009705825546 +2035-12-01,Bekaa,526.6183877406938,282.7681825422844 +2036-01-01,Bekaa,498.03072367413233,238.72373671614326 +2036-02-01,Bekaa,455.25884185713204,278.37675987028774 +2036-03-01,Bekaa,453.0375512390427,316.90386289389534 +2036-04-01,Bekaa,635.1419256998289,258.70878422453717 +2036-05-01,Bekaa,538.5025048666666,314.7031565186733 +2036-06-01,Bekaa,538.8656786494771,280.61445042094715 +2036-07-01,Bekaa,445.2545053216157,266.55136129652993 +2036-08-01,Bekaa,529.7417110619069,319.4002686294374 +2036-09-01,Bekaa,449.04127214856544,309.24707691498185 +2036-10-01,Bekaa,515.5119346502474,206.46881916466538 +2036-11-01,Bekaa,501.8963005074587,286.23400878223043 +2036-12-01,Bekaa,546.0353739967277,309.11344656250765 +2037-01-01,Bekaa,471.6405992648341,287.96678266766065 +2037-02-01,Bekaa,461.3689564611136,307.50518316699674 +2037-03-01,Bekaa,468.85230843648316,260.0308510172757 +2037-04-01,Bekaa,503.4789061971572,272.70114220120047 +2037-05-01,Bekaa,511.4757827346261,288.399767287204 +2037-06-01,Bekaa,460.4991674866261,274.34095962497855 +2037-07-01,Bekaa,477.5872640747686,299.00804710487597 +2037-08-01,Bekaa,483.2337311343856,301.88447612073514 +2037-09-01,Bekaa,487.11982016115246,302.8665495642182 +2037-10-01,Bekaa,486.800693614783,301.5809622216992 +2037-11-01,Bekaa,485.18202964819426,303.7597391564267 +2037-12-01,Bekaa,487.1246423259262,303.97760640730877 +2038-01-01,Bekaa,480.69770429904895,294.5320046394788 +2038-02-01,Bekaa,482.4544837014705,306.83304581583735 +2038-03-01,Bekaa,505.74424405168725,314.7610084712162 +2038-04-01,Bekaa,506.94841776555995,285.16037122252357 +2038-05-01,Bekaa,506.4389236695402,284.045293982009 +2038-06-01,Bekaa,507.8325292891516,276.0416051396524 +2038-07-01,Bekaa,556.587206165585,300.4004795546936 +2038-08-01,Bekaa,516.6026795330242,259.88916246563565 +2038-09-01,Bekaa,539.5001171939624,233.5115786271596 +2038-10-01,Bekaa,502.1434544452651,294.51804637656085 +2038-11-01,Bekaa,500.6012973615794,290.22828232514274 +2038-12-01,Bekaa,560.7780991896177,331.20405104042203 +2039-01-01,Bekaa,597.5306958346431,262.35343983042134 +2039-02-01,Bekaa,504.84120373204354,294.5072556994921 +2039-03-01,Bekaa,507.3861551708418,293.25614631063956 +2039-04-01,Bekaa,458.4857337620678,309.0699357678755 +2039-05-01,Bekaa,456.47705022967443,315.026563553015 +2039-06-01,Bekaa,554.0354173289732,302.5764543942468 +2039-07-01,Bekaa,458.3466826823236,268.73297513506736 +2039-08-01,Bekaa,443.0566777739179,302.9714627922352 +2039-09-01,Bekaa,453.9291479139249,326.2428806191944 +2039-10-01,Bekaa,1065.0931902422483,289.8471799771188 +2039-11-01,Bekaa,463.0862948740428,295.34301104278615 +2039-12-01,Bekaa,437.8001583074971,299.462003927432 +2040-01-01,Bekaa,432.9045814730213,283.75467668250207 +2040-02-01,Bekaa,427.375861601014,278.75091789548844 +2040-03-01,Bekaa,693.7801690746095,147.103265311067 +2040-04-01,Bekaa,665.9138144910695,318.57276293280563 +2040-05-01,Bekaa,458.07901655107656,241.04538569612487 +2040-06-01,Bekaa,631.154787130639,230.21908198871014 +2040-07-01,Bekaa,657.9869673017328,164.60325469915887 +2040-08-01,Bekaa,558.4091207787565,293.41132320861567 +2040-09-01,Bekaa,497.7418975959677,257.9606770259501 +2040-10-01,Bekaa,424.7097082893949,287.59034467682125 +2040-11-01,Bekaa,632.6834853365234,148.21665433274984 +2040-12-01,Bekaa,529.2053711828933,280.15974521272346 +2041-01-01,Bekaa,579.6216077006192,279.4677321305761 +2041-02-01,Bekaa,451.3279138952302,291.055979469271 +2041-03-01,Bekaa,478.7150748509557,256.982867640341 +2041-04-01,Bekaa,445.67828004083646,257.0405281453875 +2041-05-01,Bekaa,570.152531454988,198.0669021255176 +2041-06-01,Bekaa,477.54271303006794,297.89330054640067 +2041-07-01,Bekaa,485.2753061488922,301.46891322336256 +2041-08-01,Bekaa,456.13338102378475,244.11066896500535 +2041-09-01,Bekaa,503.820272279573,282.53806265163394 +2041-10-01,Bekaa,496.7989124785713,294.47869521389555 +2041-11-01,Bekaa,497.3021449576461,298.1025178513098 +2041-12-01,Bekaa,496.9742377530315,298.06020795460955 +2042-01-01,Bekaa,495.48937086576217,297.3500769775774 +2042-02-01,Bekaa,493.6249204409297,298.703001625869 +2042-03-01,Bekaa,489.315848393636,299.15130204512286 +2042-04-01,Bekaa,475.55857215719476,294.7923210216039 +2042-05-01,Bekaa,439.87750370845987,284.2467141525201 +2042-06-01,Bekaa,513.9559588257174,348.17670700189024 +2042-07-01,Bekaa,462.7421218598929,267.50161964697793 +2042-08-01,Bekaa,453.7831874637586,330.7556461952611 +2042-09-01,Bekaa,532.0128067251219,318.6354880943473 +2042-10-01,Bekaa,529.8156989035101,316.1883365783288 +2042-11-01,Bekaa,480.12753729401055,299.4197114350496 +2042-12-01,Bekaa,489.29504830976134,301.5082121730743 +2043-01-01,Bekaa,499.0157407949297,292.3793863944842 +2043-02-01,Bekaa,614.0386212251567,246.47990134999662 +2043-03-01,Bekaa,458.2616110590015,292.8438728293412 +2043-04-01,Bekaa,442.4028066251203,303.3037634329998 +2043-05-01,Bekaa,546.5985596587354,267.62877559321083 +2043-06-01,Bekaa,529.1833475646729,319.36497267283187 +2043-07-01,Bekaa,417.2831427021818,253.86375281634162 +2043-08-01,Bekaa,454.8087971357856,289.40375276686376 +2043-09-01,Bekaa,540.4829031638942,305.34546396031817 +2043-10-01,Bekaa,475.39101992445956,298.44277226533313 +2043-11-01,Bekaa,489.9100542499348,304.8684986295607 +2043-12-01,Bekaa,491.7634208930483,303.59420668932825 +2044-01-01,Bekaa,495.3644264172963,303.5557431468734 +2044-02-01,Bekaa,497.04469893681505,303.3873737759648 +2044-03-01,Bekaa,496.6747597287997,302.61058426155626 +2044-04-01,Bekaa,483.47649474306957,287.33504073823775 +2044-05-01,Bekaa,457.7724132385969,283.4464288090101 +2044-06-01,Bekaa,449.5947415084172,312.29868039003003 +2044-07-01,Bekaa,421.089270160835,261.71064615916185 +2044-08-01,Bekaa,655.9698629741375,247.5858761322741 +2044-09-01,Bekaa,533.4487322385684,311.76224450516935 +2044-10-01,Bekaa,524.0945962488129,248.0195569245315 +2044-11-01,Bekaa,487.9393722548629,305.5892462404831 +2044-12-01,Bekaa,510.65126453092466,272.1217524598789 +2045-01-01,Bekaa,508.58536277472376,281.41069796271523 +2045-02-01,Bekaa,511.44404281424954,284.48195091261925 +2045-03-01,Bekaa,513.6377679232592,282.968471432135 +2045-04-01,Bekaa,483.9127207235717,251.99358924578098 +2045-05-01,Bekaa,501.62194092361534,286.698077513459 +2045-06-01,Bekaa,563.2765563232841,294.5296028436151 +2045-07-01,Bekaa,744.2900419560763,265.4760529223091 +2045-08-01,Bekaa,482.6495294706773,254.8831237129833 +2045-09-01,Bekaa,442.2182688567642,312.83292333084125 +2045-10-01,Bekaa,454.38329507395946,296.2159594133318 +2045-11-01,Bekaa,474.1664779623634,288.0231030402325 +2045-12-01,Bekaa,961.7485133048943,251.32267019687126 +2046-01-01,Bekaa,830.5881505004289,273.4525910288153 +2046-02-01,Bekaa,579.4554949200549,222.77502898691205 +2046-03-01,Bekaa,457.7729170468569,262.25214670051776 +2046-04-01,Bekaa,452.7765065877838,282.94689007799747 +2046-05-01,Bekaa,513.7906377438476,273.4927775987375 +2046-06-01,Bekaa,515.550080132786,279.15810931597383 +2046-07-01,Bekaa,546.9587105919863,300.5198905794821 +2046-08-01,Bekaa,497.1597111652991,300.4074760904705 +2046-09-01,Bekaa,497.87317563398716,300.25210774499806 +2046-10-01,Bekaa,498.3906586895574,300.14439242180674 +2046-11-01,Bekaa,516.3004665496671,248.5497620636009 +2046-12-01,Bekaa,469.5541853151926,292.56611732072747 +2047-01-01,Bekaa,486.85740803033076,303.06347942072324 +2047-02-01,Bekaa,482.17947636415033,301.4946019965134 +2047-03-01,Bekaa,482.12967131902434,302.75631061493823 +2047-04-01,Bekaa,475.9267120499961,301.95118687106515 +2047-05-01,Bekaa,455.26524741929416,295.4264473425727 +2047-06-01,Bekaa,478.4724551874887,355.97328446179785 +2047-07-01,Bekaa,454.3008864371545,311.58287560537775 +2047-08-01,Bekaa,456.28682662524164,316.2939807876956 +2047-09-01,Bekaa,463.53900258190583,290.9391616878426 +2047-10-01,Bekaa,676.6945195551581,255.91760155752132 +2047-11-01,Bekaa,690.2574697484786,297.4370637582059 +2047-12-01,Bekaa,492.1894267631346,271.2644853797187 +2048-01-01,Bekaa,570.648638645815,166.0927858382776 +2048-02-01,Bekaa,494.060930503606,306.3871123838115 +2048-03-01,Bekaa,539.7210731022517,313.8513892029546 +2048-04-01,Bekaa,494.04092211842556,318.8697850212824 +2048-05-01,Bekaa,465.89956019756517,285.1959804568505 +2048-06-01,Bekaa,496.5785323511506,238.4849146665664 +2048-07-01,Bekaa,498.0744830201389,295.0436393713992 +2048-08-01,Bekaa,494.46815152285745,294.33359541595627 +2048-09-01,Bekaa,487.7822560503691,297.3843808880654 +2048-10-01,Bekaa,458.7670746889418,276.82495608189157 +2048-11-01,Bekaa,458.82897113230615,325.14397198996517 +2048-12-01,Bekaa,439.55153976427664,251.9577711596398 +2049-01-01,Bekaa,590.6325531395019,278.7626310014034 +2049-02-01,Bekaa,501.1902492174529,290.843664195784 +2049-03-01,Bekaa,544.1246451845891,310.596050783121 +2049-04-01,Bekaa,466.8383709036649,335.85347532026935 +2049-05-01,Bekaa,457.71512304218055,293.6653044190424 +2049-06-01,Bekaa,438.2150803958646,262.1766119610363 +2049-07-01,Bekaa,479.03952737035894,297.13328879440223 +2049-08-01,Bekaa,491.2903449369617,303.1095486500797 +2049-09-01,Bekaa,509.7599557464768,275.954131038124 +2049-10-01,Bekaa,830.5127232066545,334.2943269097392 +2049-11-01,Bekaa,458.6840182986597,329.48185898024633 +2049-12-01,Bekaa,459.53782935404615,305.4200066536819 +2050-01-01,Bekaa,466.28814031119845,301.38516364585456 +2050-02-01,Bekaa,507.05882374709597,280.6413400920298 +2050-03-01,Bekaa,506.2347373790463,283.69235182027097 +2050-04-01,Bekaa,509.6352991884453,287.44199027144356 +2050-05-01,Bekaa,516.8826529803357,284.41616259113545 +2050-06-01,Bekaa,526.103135835989,279.6916908927067 +2050-07-01,Bekaa,489.2159504129501,302.9166217866809 +2050-08-01,Bekaa,504.32854284124704,303.1166496117637 +2050-09-01,Bekaa,544.7867212107627,237.1930791739383 +2050-10-01,Bekaa,554.7359267281197,227.41402808036554 +2050-11-01,Bekaa,459.65291355513875,312.8446886497098 +2050-12-01,Bekaa,554.3958561526582,329.6932518248871 +2051-01-01,Bekaa,883.1399582594452,284.226142248818 +2051-02-01,Bekaa,569.5401885013314,287.65919615824714 +2051-03-01,Bekaa,484.4616558090841,300.7450328352266 +2051-04-01,Bekaa,492.32905362374726,303.66897563882407 +2051-05-01,Bekaa,496.88470382797885,303.96390920915854 +2051-06-01,Bekaa,496.0752278994672,298.74786995729363 +2051-07-01,Bekaa,490.40450607076474,296.3230655853983 +2051-08-01,Bekaa,473.8807467063672,289.643479840969 +2051-09-01,Bekaa,448.4544074983402,292.5291679539258 +2051-10-01,Bekaa,465.52537460564463,288.5863241702687 +2051-11-01,Bekaa,440.6838848148031,329.4585720029593 +2051-12-01,Bekaa,616.066593416645,244.5371269653538 +2052-01-01,Bekaa,557.0344439551973,300.01516536174927 +2052-02-01,Bekaa,589.8209900053421,269.7556528521011 +2052-03-01,Bekaa,554.768026511539,325.9613831822423 +2052-04-01,Bekaa,452.710507705731,297.19618799912246 +2052-05-01,Bekaa,581.7644481753744,253.41687955115174 +2052-06-01,Bekaa,686.0248326114792,268.28477914172066 +2052-07-01,Bekaa,450.6855583638026,316.93588683874464 +2052-08-01,Bekaa,467.2487587176929,301.6262134481167 +2052-09-01,Bekaa,459.64060623907443,304.45934052115786 +2052-10-01,Bekaa,458.1309807744592,329.99559963462696 +2052-11-01,Bekaa,635.403474159348,265.0066062568641 +2052-12-01,Bekaa,537.7641378754156,191.9827354991523 +2053-01-01,Bekaa,485.9237073794389,297.24528557978533 +2053-02-01,Bekaa,484.10200868409316,302.8517558940432 +2053-03-01,Bekaa,569.6525377432986,240.95782457300712 +2053-04-01,Bekaa,425.0867727856579,279.22750033125317 +2053-05-01,Bekaa,437.05653731582106,289.01232965835305 +2053-06-01,Bekaa,497.75801946028594,303.58696649310144 +2053-07-01,Bekaa,492.89943654661164,296.69146278138965 +2053-08-01,Bekaa,478.2133537966608,288.49998134940074 +2053-09-01,Bekaa,685.7406847528714,234.82703177911407 +2053-10-01,Bekaa,467.3476490818589,299.02600836090016 +2053-11-01,Bekaa,449.85708166663034,297.2487664433559 +2053-12-01,Bekaa,456.411555155882,302.99555036814354 +2054-01-01,Bekaa,596.9728361456689,332.8852733363721 +2054-02-01,Bekaa,491.25198353659744,305.24749505512443 +2054-03-01,Bekaa,497.3720303605609,298.54559697520784 +2054-04-01,Bekaa,477.51378004142543,286.773177144994 +2054-05-01,Bekaa,453.7571333794587,289.14063428956433 +2054-06-01,Bekaa,640.9215420852879,221.10905287340114 +2054-07-01,Bekaa,620.7548891384586,281.04438928486627 +2054-08-01,Bekaa,654.0205568438091,160.76875279413576 +2054-09-01,Bekaa,433.5885371721983,300.77305378696974 +2054-10-01,Bekaa,460.68089832324864,237.73339622168015 +2054-11-01,Bekaa,489.67542354601835,249.00787851812373 +2054-12-01,Bekaa,463.9170027220804,282.7953332781348 +2055-01-01,Bekaa,478.07732556647613,252.37761551920417 +2055-02-01,Bekaa,464.76023380400807,289.2094683666723 +2055-03-01,Bekaa,493.9297244381952,298.2233908387979 +2055-04-01,Bekaa,508.1045857495208,272.93517806336774 +2055-05-01,Bekaa,492.1194693876109,302.1469158296383 +2055-06-01,Bekaa,572.9464361468068,324.71836680119145 +2055-07-01,Bekaa,459.3130588975031,283.1315498904163 +2055-08-01,Bekaa,461.2206209148647,324.89919766368257 +2055-09-01,Bekaa,458.2557093050996,283.9749805378835 +2055-10-01,Bekaa,437.41229791994954,265.8783015165243 +2055-11-01,Bekaa,746.5479666319243,261.0903214622504 +2055-12-01,Bekaa,544.9249805918129,309.97468182713834 +2056-01-01,Bekaa,470.1780438862194,317.96270678342734 +2056-02-01,Bekaa,751.6298805499706,331.7348479262984 +2056-03-01,Bekaa,453.089443489817,291.17577338905215 +2056-04-01,Bekaa,715.6807861069459,145.68181986338863 +2056-05-01,Bekaa,597.898763754836,188.12647819681317 +2056-06-01,Bekaa,567.0306475859462,221.14781228925943 +2056-07-01,Bekaa,565.9321296614444,240.67437785245556 +2056-08-01,Bekaa,524.0886225223021,199.71655298888257 +2056-09-01,Bekaa,518.2980663003416,332.71516353367826 +2056-10-01,Bekaa,449.89681054655745,308.6548775957206 +2056-11-01,Bekaa,463.91721863990614,292.1814470875437 +2056-12-01,Bekaa,483.0981347398521,296.8305058767161 +2057-01-01,Bekaa,491.08083267343386,298.4918176330425 +2057-02-01,Bekaa,494.09231056093984,298.87473003012315 +2057-03-01,Bekaa,495.1848547589306,297.42888372881504 +2057-04-01,Bekaa,485.0937912300957,296.7538572608921 +2057-05-01,Bekaa,496.3728346358767,298.960742168952 +2057-06-01,Bekaa,493.8202541005704,298.2282466434789 +2057-07-01,Bekaa,497.31207717762777,295.77328058874446 +2057-08-01,Bekaa,762.6301740427859,139.0334922738231 +2057-09-01,Bekaa,584.5712359641261,281.10455601168354 +2057-10-01,Bekaa,454.62569881960064,284.9897044816584 +2057-11-01,Bekaa,469.0476420961241,295.1250741746327 +2057-12-01,Bekaa,477.7235801953876,299.99805691729995 +2058-01-01,Bekaa,965.6101316447498,287.20189770666343 +2058-02-01,Bekaa,492.8964856696604,305.0726338736568 +2058-03-01,Bekaa,570.9417830804931,286.9919494204044 +2058-04-01,Bekaa,476.82061184835226,300.8974946596176 +2058-05-01,Bekaa,452.65328948192325,291.8493378942755 +2058-06-01,Bekaa,466.79345999592135,345.00835536268517 +2058-07-01,Bekaa,963.9855659242589,309.18828512927496 +2058-08-01,Bekaa,468.6237234316861,344.12682666343807 +2058-09-01,Bekaa,531.810563695059,234.8468378928306 +2058-10-01,Bekaa,508.7951629286858,267.9230652037848 +2058-11-01,Bekaa,500.8944417962576,280.8995505516948 +2058-12-01,Bekaa,498.3329366574895,289.59868112681573 +2059-01-01,Bekaa,496.67677496183944,293.6143097677335 +2059-02-01,Bekaa,493.98938973069426,295.9284748910384 +2059-03-01,Bekaa,484.2934558228716,292.9071201204184 +2059-04-01,Bekaa,498.3413574526916,293.8056180295721 +2059-05-01,Bekaa,496.79812077987725,298.5965220092453 +2059-06-01,Bekaa,622.2352937239972,175.9061582466562 +2059-07-01,Bekaa,454.3901324717729,270.71059296405156 +2059-08-01,Bekaa,594.9545802563368,267.3126435637316 +2059-09-01,Bekaa,602.5169581559087,245.0527124774268 +2059-10-01,Bekaa,736.2502697439039,147.82681501716374 +2059-11-01,Bekaa,589.4483158382013,147.848901096519 +2059-12-01,Bekaa,461.55630116120403,297.41066140802315 +2060-01-01,Bekaa,532.5738332088729,287.58033719405586 +2060-02-01,Bekaa,544.1800640931829,310.5505210876179 +2060-03-01,Bekaa,522.7273326039358,247.22828701766937 +2060-04-01,Bekaa,613.9179231605962,161.16802524999815 +2060-05-01,Bekaa,766.3876480180503,281.7838465374805 +2060-06-01,Bekaa,551.9568483936649,231.27106857700807 +2060-07-01,Bekaa,614.5343685529407,173.69027530626644 +2060-08-01,Bekaa,587.3890355619878,302.8748862324697 +2060-09-01,Bekaa,1108.7717110093204,289.6710482804479 +2060-10-01,Bekaa,490.79466958178637,301.98599550677085 +2060-11-01,Bekaa,484.08185635369546,300.114195930332 +2060-12-01,Bekaa,474.4198935171147,300.727593708738 +2061-01-01,Bekaa,464.1219087386602,301.97419537926663 +2061-02-01,Bekaa,456.4509241727661,307.6002455511091 +2061-03-01,Bekaa,602.300392576742,325.8373600132229 +2061-04-01,Bekaa,611.0552846275992,249.3248807634956 +2061-05-01,Bekaa,529.0632972535893,317.51280516693106 +2061-06-01,Bekaa,616.8054642161558,243.82386321110815 +2061-07-01,Bekaa,433.03485189452067,297.26705838141925 +2061-08-01,Bekaa,499.71984882450437,291.50088604654354 +2061-09-01,Bekaa,502.1576330491522,286.56489967324893 +2061-10-01,Bekaa,534.7127871627656,317.1662155812093 +2061-11-01,Bekaa,478.1418130237489,298.14026781673266 +2061-12-01,Bekaa,531.7988321598632,313.57758447449345 +2062-01-01,Bekaa,488.6986832752059,301.8250925882212 +2062-02-01,Bekaa,572.3287672201166,286.35180120545857 +2062-03-01,Bekaa,445.2579600068266,346.7559229182903 +2062-04-01,Bekaa,446.4935137780328,291.99193147044394 +2062-05-01,Bekaa,473.2044920763061,289.84154097813445 +2062-06-01,Bekaa,489.5701995922988,293.1332544222806 +2062-07-01,Bekaa,496.29985441079344,293.93352236147274 +2062-08-01,Bekaa,530.2941008326302,319.2946592287063 +2062-09-01,Bekaa,481.1566016512486,311.0781851962807 +2062-10-01,Bekaa,468.20462693202217,298.05049634524767 +2062-11-01,Bekaa,475.9574443538527,286.70122769499034 +2062-12-01,Bekaa,491.156475885034,274.9697428203665 +2063-01-01,Bekaa,505.06446276380694,293.1828393238433 +2063-02-01,Bekaa,503.84891737778133,293.83811189100334 +2063-03-01,Bekaa,502.4761118420448,294.86152058938694 +2063-04-01,Bekaa,501.58343557803414,296.2543185298795 +2063-05-01,Bekaa,499.7816013226517,292.1491794822445 +2063-06-01,Bekaa,500.3108159134178,288.64219203057644 +2063-07-01,Bekaa,498.9128199646843,293.81068268606725 +2063-08-01,Bekaa,584.4939373825289,206.85987678250112 +2063-09-01,Bekaa,484.2755346433394,303.9689564613359 +2063-10-01,Bekaa,457.3799466041012,278.1312545626554 +2063-11-01,Bekaa,547.2184597362912,216.10223092644543 +2063-12-01,Bekaa,507.0042685098051,252.4809449542966 +2064-01-01,Bekaa,474.42363609276,266.29339449731486 +2064-02-01,Bekaa,464.5595021987251,284.83273493894353 +2064-03-01,Bekaa,638.3187966418132,304.4220082593635 +2064-04-01,Bekaa,480.1301283079188,299.83868557872137 +2064-05-01,Bekaa,450.0574534088706,285.59869896764775 +2064-06-01,Bekaa,458.86603702571637,336.11840384662554 +2064-07-01,Bekaa,493.7800933849922,303.59834891697716 +2064-08-01,Bekaa,465.8270118081333,348.31782121104123 +2064-09-01,Bekaa,452.1380375772185,316.01686923884245 +2064-10-01,Bekaa,544.6763872018353,223.09203123228394 +2064-11-01,Bekaa,499.1915698776497,301.83826765683585 +2064-12-01,Bekaa,532.911528688252,318.18527320012964 +2065-01-01,Bekaa,596.825148352897,265.60933518842626 +2065-02-01,Bekaa,464.63658486249636,300.9953069259507 +2065-03-01,Bekaa,471.41813193176506,301.8325242319444 +2065-04-01,Bekaa,475.26585955816785,245.18477644129428 +2065-05-01,Bekaa,621.8708964068413,238.9996821757003 +2065-06-01,Bekaa,463.5518137062302,276.0131316756451 +2065-07-01,Bekaa,443.1820540580354,309.9873521705352 +2065-08-01,Bekaa,457.62004722626824,304.1645983983198 +2065-09-01,Bekaa,470.61786849714963,299.94130143678177 +2065-10-01,Bekaa,482.1089432077581,300.9634918329156 +2065-11-01,Bekaa,488.62843800924804,303.06238294869854 +2065-12-01,Bekaa,627.7777603642401,167.37092413275556 +2066-01-01,Bekaa,488.79908506415165,304.763306932458 +2066-02-01,Bekaa,774.1350674942387,134.57085113317265 +2066-03-01,Bekaa,487.215831620976,250.9915530497207 +2066-04-01,Bekaa,449.86600627009216,278.362418712377 +2066-05-01,Bekaa,608.0271810675154,252.23665794891392 +2066-06-01,Bekaa,559.1842657729833,290.37701962551324 +2066-07-01,Bekaa,504.2377134092402,315.0762702848028 +2066-08-01,Bekaa,567.1489705544243,267.26361560034013 +2066-09-01,Bekaa,622.1191299337761,238.7523842233291 +2066-10-01,Bekaa,547.5339876522328,307.925880338136 +2066-11-01,Bekaa,460.2094777371588,274.2490126137619 +2066-12-01,Bekaa,459.65190593861894,327.625270777611 +2067-01-01,Bekaa,599.5174277214246,189.32408671258594 +2067-02-01,Bekaa,570.4952650169664,212.65365236549152 +2067-03-01,Bekaa,537.2116761320838,217.39034189505304 +2067-04-01,Bekaa,494.7827437948876,240.94428401371758 +2067-05-01,Bekaa,563.0258757276582,291.47698991813155 +2067-06-01,Bekaa,611.1077526592419,249.28081303069223 +2067-07-01,Bekaa,500.65405328365614,221.62825848358744 +2067-08-01,Bekaa,548.1191969324609,240.12053764974198 +2067-09-01,Bekaa,564.3529786569568,217.06141769195193 +2067-10-01,Bekaa,627.7532896773286,168.9194385050776 +2067-11-01,Bekaa,461.0728611494842,302.35404461640513 +2067-12-01,Bekaa,472.58351240962213,302.2556231989473 +2068-01-01,Bekaa,460.5378167774248,291.15972660799184 +2068-02-01,Bekaa,492.3531644476161,301.0674652277686 +2068-03-01,Bekaa,491.8633908463427,302.10300473569555 +2068-04-01,Bekaa,491.06794957650123,302.2703994648043 +2068-05-01,Bekaa,488.88674770138175,303.72531341571374 +2068-06-01,Bekaa,485.62408540999,303.1558267312505 +2068-07-01,Bekaa,500.412297291492,291.67407641349723 +2068-08-01,Bekaa,502.9519227572568,294.8360058594146 +2068-09-01,Bekaa,598.133610376578,261.77558166907085 +2068-10-01,Bekaa,547.9587699879735,333.4943896525863 +2068-11-01,Bekaa,565.4652433496942,161.2756361472823 +2068-12-01,Bekaa,519.113156092321,261.9409574973087 +2069-01-01,Bekaa,521.6922945201869,292.18543267633197 +2069-02-01,Bekaa,508.98855332789526,295.30774989481625 +2069-03-01,Bekaa,501.5203156003242,298.62609194527727 +2069-04-01,Bekaa,556.4910507605446,317.9228160869086 +2069-05-01,Bekaa,533.3818696852131,181.27218790977693 +2069-06-01,Bekaa,530.3336137947315,319.2816407989524 +2069-07-01,Bekaa,499.17314488985767,298.7061518074004 +2069-08-01,Bekaa,497.1750413309231,300.8342995814939 +2069-09-01,Bekaa,493.6821386647375,300.7315444888906 +2069-10-01,Bekaa,489.07574777146885,356.82233670393157 +2069-11-01,Bekaa,456.08040918388224,272.1481896186974 +2069-12-01,Bekaa,528.7983660814676,318.24176761588 +2070-01-01,Bekaa,722.0666277743335,146.4229653348346 +2070-02-01,Bekaa,507.4787119454543,280.08318361848876 +2070-03-01,Bekaa,536.1961426252553,309.05834449218554 +2070-04-01,Bekaa,579.1537137723491,251.15879113996877 +2070-05-01,Bekaa,529.8154110130758,316.2017379030755 +2070-06-01,Bekaa,472.6341091534422,250.62367798326494 +2070-07-01,Bekaa,465.4980250143904,332.0473598576643 +2070-08-01,Bekaa,489.3141210510306,292.55114960737404 +2070-09-01,Bekaa,461.77574564471354,299.6441053051264 +2070-10-01,Bekaa,609.7481900834812,250.58314332698563 +2070-11-01,Bekaa,461.41717810885126,307.8586648625882 +2070-12-01,Bekaa,474.99423493344995,243.21600000577936 +2071-01-01,Bekaa,499.4335417876396,297.5628795719642 +2071-02-01,Bekaa,496.50382478346177,293.1168421505454 +2071-03-01,Bekaa,757.4358389101636,86.00175258187141 +2071-04-01,Bekaa,718.4515875914158,89.62225099457578 +2071-05-01,Bekaa,1111.1324845428053,260.6678838593259 +2071-06-01,Bekaa,774.1840088680618,64.35648978917587 +2071-07-01,Bekaa,712.7793543379332,83.0550101218867 +2071-08-01,Bekaa,730.3973132703187,74.66026366169432 +2071-09-01,Bekaa,682.7369799070904,101.51404704094229 +2071-10-01,Bekaa,735.5017546148456,92.77739275653055 +2071-11-01,Bekaa,687.938656245786,99.0061196469816 +2071-12-01,Bekaa,700.240358446643,93.93162971221406 +2072-01-01,Bekaa,1050.352840145441,79.22061264277072 +2072-02-01,Bekaa,752.1231088364548,67.8197401900797 +2072-03-01,Bekaa,814.3641570506975,93.53954523962491 +2072-04-01,Bekaa,711.2459779124922,100.81373209917915 +2072-05-01,Bekaa,695.9283355223985,97.50243879744853 +2072-06-01,Bekaa,705.998383049533,99.22344736401026 +2072-07-01,Bekaa,758.9821704051462,100.59257543222292 +2072-08-01,Bekaa,740.2893725364763,119.8168279943149 +2072-09-01,Bekaa,739.3686989277345,123.85320258211333 +2072-10-01,Bekaa,834.8392126252203,55.482062924640914 +2072-11-01,Bekaa,734.950876268902,90.78197031038295 +2072-12-01,Bekaa,902.0388137064315,57.91499511297364 +2073-01-01,Bekaa,700.7919565186724,91.3643361900573 +2073-02-01,Bekaa,778.5194228900893,62.71014574620287 +2073-03-01,Bekaa,707.8113730592428,99.48247582661428 +2073-04-01,Bekaa,683.9409377031373,103.16030406232596 +2073-05-01,Bekaa,858.7183566669618,72.40983315036665 +2073-06-01,Bekaa,675.6453748401309,104.19920260359858 +2073-07-01,Bekaa,676.7231646533662,103.09463757106715 +2073-08-01,Bekaa,677.7055907602554,102.50866899759725 +2073-09-01,Bekaa,680.1374012583924,102.35453635869233 +2073-10-01,Bekaa,675.2573705073662,105.51676167801325 +2073-11-01,Bekaa,679.1171175593989,102.03448835769618 +2073-12-01,Bekaa,740.4970135121816,117.14164510578836 +2074-01-01,Bekaa,1042.3461753332076,93.32844826838766 +2074-02-01,Bekaa,895.7964854205193,53.918076113747674 +2074-03-01,Bekaa,810.5019629299734,59.06543792736518 +2074-04-01,Bekaa,850.1192133410354,56.200687208785325 +2074-05-01,Bekaa,955.5336785554529,47.641922457147615 +2074-06-01,Bekaa,722.3252253569016,147.30715689471322 +2074-07-01,Bekaa,785.3912236104966,102.64169019894659 +2074-08-01,Bekaa,930.8540551612704,51.24745315649854 +2074-09-01,Bekaa,1101.3953823028846,253.30115824174806 +2074-10-01,Bekaa,687.1594807854798,102.90841137004158 +2074-11-01,Bekaa,871.9851395760443,132.97926107416478 +2074-12-01,Bekaa,733.5940486522666,85.97289622287134 +2075-01-01,Bekaa,688.9706714799753,115.31856021501963 +2075-02-01,Bekaa,679.0451449508358,104.40918569849329 +2075-03-01,Bekaa,911.790670331108,52.85623868154504 +2075-04-01,Bekaa,681.4015281551982,103.00979152153445 +2075-05-01,Bekaa,895.3264323139922,55.437542679573355 +2075-06-01,Bekaa,741.2615785329497,70.07351233043514 +2075-07-01,Bekaa,698.8022017823312,88.57912320406497 +2075-08-01,Bekaa,689.9872845759319,95.0691411184409 +2075-09-01,Bekaa,686.7072049132678,99.67160854872124 +2075-10-01,Bekaa,693.4705429125701,103.96121596127863 +2075-11-01,Bekaa,772.195693583892,107.13095994591194 +2075-12-01,Bekaa,917.5183944657929,144.14242535362155 +2076-01-01,Bekaa,706.4075473292154,162.6229914138611 +2076-02-01,Bekaa,713.2658171992126,80.63829875779284 +2076-03-01,Bekaa,673.7185961362826,105.48047367529 +2076-04-01,Bekaa,687.9292998066729,93.40638480373272 +2076-05-01,Bekaa,698.1516413735274,88.12401769653067 +2076-06-01,Bekaa,698.1142156170746,88.84605322697418 +2076-07-01,Bekaa,695.3121060478794,91.45456017380651 +2076-08-01,Bekaa,693.2002857674148,94.18265218860577 +2076-09-01,Bekaa,693.5605086732743,96.07518030760734 +2076-10-01,Bekaa,696.6261819350282,97.12077951125332 +2076-11-01,Bekaa,677.2992334123071,100.47629718464793 +2076-12-01,Bekaa,710.826377604568,95.55077080638297 +2077-01-01,Bekaa,730.67627910111,73.5492242229216 +2077-02-01,Bekaa,768.8548690396003,64.69780586658818 +2077-03-01,Bekaa,682.515376245324,99.70944553573335 +2077-04-01,Bekaa,684.5196694485949,99.6059072488267 +2077-05-01,Bekaa,686.3771385303965,100.16124422287561 +2077-06-01,Bekaa,690.2183166494202,100.16319350647511 +2077-07-01,Bekaa,697.3757766532151,99.52468129740745 +2077-08-01,Bekaa,717.4995339253404,97.48762772295575 +2077-09-01,Bekaa,794.0385166115517,95.50941814716455 +2077-10-01,Bekaa,749.5352617229528,68.24048957417247 +2077-11-01,Bekaa,733.7279177041943,86.45633595987012 +2077-12-01,Bekaa,863.3416611232427,106.8131222932831 +2078-01-01,Bekaa,707.6978722555383,104.89220773186351 +2078-02-01,Bekaa,674.9434259888129,106.35187306154677 +2078-03-01,Bekaa,1103.4315593717488,268.1658902464678 +2078-04-01,Bekaa,844.5011034891925,126.6304966034826 +2078-05-01,Bekaa,725.5295898353568,143.96336973155132 +2078-06-01,Bekaa,789.2208861121499,62.214540391025025 +2078-07-01,Bekaa,780.2046615195992,133.79740324779178 +2078-08-01,Bekaa,767.12507936539,91.78452863597876 +2078-09-01,Bekaa,740.4942785530561,114.90438966307528 +2078-10-01,Bekaa,933.813640798002,107.3325367552837 +2078-11-01,Bekaa,697.2206756817611,87.94007146114386 +2078-12-01,Bekaa,925.0191638124347,52.80390389776147 +2079-01-01,Bekaa,895.664487656414,55.364479353227026 +2079-02-01,Bekaa,893.623128559733,58.618321001725334 +2079-03-01,Bekaa,909.2937246222212,54.813180180919986 +2079-04-01,Bekaa,736.9045727283527,97.77941111175888 +2079-05-01,Bekaa,681.8361707383119,97.9234318419912 +2079-06-01,Bekaa,687.9843588522237,93.72763370266073 +2079-07-01,Bekaa,684.5755921654485,96.46347063890452 +2079-08-01,Bekaa,685.0649339310705,97.9684394079587 +2079-09-01,Bekaa,684.4638187043496,100.082541897545 +2079-10-01,Bekaa,688.5387638559868,101.62821936605702 +2079-11-01,Bekaa,699.1159303830584,108.35197726919684 +2079-12-01,Bekaa,797.1245581215292,116.50019156700355 +2080-01-01,Bekaa,1031.4495223967233,125.40164733716395 +2080-02-01,Bekaa,1032.6557833162442,131.77333329445835 +2080-03-01,Bekaa,685.7213241211678,96.44361231223444 +2080-04-01,Bekaa,682.492273037975,97.89648995795503 +2080-05-01,Bekaa,678.808930849531,101.41040432812851 +2080-06-01,Bekaa,678.043862020503,104.49157773920865 +2080-07-01,Bekaa,905.3843164702798,48.49083546473845 +2080-08-01,Bekaa,846.6741004869357,54.38101356431578 +2080-09-01,Bekaa,791.6861638732688,60.205490363998564 +2080-10-01,Bekaa,755.0196464680849,67.46968714510521 +2080-11-01,Bekaa,726.7382978235692,78.13794224209819 +2080-12-01,Bekaa,705.654785816252,90.8190415074095 +2081-01-01,Bekaa,713.8105059008199,94.18726433283678 +2081-02-01,Bekaa,761.3678464611942,101.97393873588611 +2081-03-01,Bekaa,737.82747748796,127.60365903622495 +2081-04-01,Bekaa,697.034626488625,171.01345641186165 +2081-05-01,Bekaa,678.922143762801,100.87087047469005 +2081-06-01,Bekaa,676.4151218887155,104.01697939567916 +2081-07-01,Bekaa,709.5146048408934,103.01814559410386 +2081-08-01,Bekaa,866.5360933817165,105.84067343757273 +2081-09-01,Bekaa,824.9638510042495,137.20395038113105 +2081-10-01,Bekaa,814.4128825066947,112.94001651997714 +2081-11-01,Bekaa,695.2949045944329,108.2519372501786 +2081-12-01,Bekaa,680.7788211459084,100.15233321213495 +2082-01-01,Bekaa,680.0056913847216,100.25474021838116 +2082-02-01,Bekaa,680.1889336461237,99.79176795917734 +2082-03-01,Bekaa,679.9211235696597,99.665482228837 +2082-04-01,Bekaa,962.09088700383,229.59854843998443 +2082-05-01,Bekaa,609.5350072169166,215.34388998896085 +2082-06-01,Bekaa,661.9419341148948,203.64561255280023 +2082-07-01,Bekaa,738.5902431935141,197.4310875857171 +2082-08-01,Bekaa,834.0943680991986,182.80040884748254 +2082-09-01,Bekaa,671.4621828852146,193.53902960155457 +2082-10-01,Bekaa,867.9915234720837,159.63310364991915 +2082-11-01,Bekaa,715.7652819493992,153.84555881272007 +2082-12-01,Bekaa,815.4375565348104,136.97299508322368 +2083-01-01,Bekaa,976.4253115883402,53.60843589482754 +2083-02-01,Bekaa,962.5186202165215,55.73686213800673 +2083-03-01,Bekaa,961.0048923132181,57.658420659186845 +2083-04-01,Bekaa,976.2230685582775,59.269155467832874 +2083-05-01,Bekaa,1008.3697061456857,59.8566556212738 +2083-06-01,Bekaa,862.5410378255846,155.92833353017122 +2083-07-01,Bekaa,990.5144535228669,249.94057591185825 +2083-08-01,Bekaa,782.4068793964191,132.20085295819587 +2083-09-01,Bekaa,989.9403280243574,142.01217165706782 +2083-10-01,Bekaa,740.0882810681506,121.1055829226831 +2083-11-01,Bekaa,760.4506275376634,95.75093786600866 +2083-12-01,Bekaa,722.324649576033,76.29567779305565 +2084-01-01,Bekaa,701.5298197016633,86.3187026142897 +2084-02-01,Bekaa,686.4427775494063,96.140394286602 +2084-03-01,Bekaa,681.7419585937027,102.0153958210116 +2084-04-01,Bekaa,694.2808825123844,107.25985632393018 +2084-05-01,Bekaa,782.0239851188625,119.02696783719884 +2084-06-01,Bekaa,854.923241017419,145.13300950853463 +2084-07-01,Bekaa,676.4347704108532,102.93152430415019 +2084-08-01,Bekaa,677.4005708451641,102.39489697179314 +2084-09-01,Bekaa,677.6130339856429,102.69801057151845 +2084-10-01,Bekaa,677.7555397505984,103.17083367462696 +2084-11-01,Bekaa,678.3693221564263,103.28620689767354 +2084-12-01,Bekaa,679.9689133817457,102.74580282834238 +2085-01-01,Bekaa,682.72848713928,101.8695476374047 +2085-02-01,Bekaa,686.7935720435439,101.0317907975575 +2085-03-01,Bekaa,691.2973299970012,100.98821038565397 +2085-04-01,Bekaa,703.7647851153796,99.9569871485545 +2085-05-01,Bekaa,726.9889784191951,142.312100266626 +2085-06-01,Bekaa,758.1686640105553,66.56541100242445 +2085-07-01,Bekaa,817.463657438476,119.81068427011287 +2085-08-01,Bekaa,691.8312947799324,103.32308664720374 +2085-09-01,Bekaa,680.9825036281427,104.86328175559211 +2085-10-01,Bekaa,684.6848465852477,102.72657105711497 +2085-11-01,Bekaa,689.5528579106439,102.04202442732648 +2085-12-01,Bekaa,888.1889087227693,58.49113024685667 +2086-01-01,Bekaa,707.9708643598188,99.64212563427849 +2086-02-01,Bekaa,768.27476981458,106.32030162896164 +2086-03-01,Bekaa,736.5578806729035,129.8844078692523 +2086-04-01,Bekaa,682.2107161932755,109.71142853668329 +2086-05-01,Bekaa,682.7239528649403,102.30025229130929 +2086-06-01,Bekaa,695.0458073961952,99.01381235547258 +2086-07-01,Bekaa,708.8197812778232,98.65094973255843 +2086-08-01,Bekaa,781.1688065839131,93.69204187265164 +2086-09-01,Bekaa,996.2821224553045,81.94884389211282 +2017-01-01,Kesrouan,740.1678827732215,120.72449797897703 +2017-02-01,Kesrouan,715.1003989914913,154.45267363238125 +2017-03-01,Kesrouan,928.1979060422417,50.50486312667077 +2017-04-01,Kesrouan,688.1288798502187,100.24929266689318 +2017-05-01,Kesrouan,729.558544490122,127.94363498116265 +2017-06-01,Kesrouan,965.4647469754518,181.69518245087272 +2017-07-01,Kesrouan,681.8543798082785,96.82031136784161 +2017-08-01,Kesrouan,687.0830458751853,100.22647560618807 +2017-09-01,Kesrouan,1041.6861865126818,175.47460078117683 +2017-10-01,Kesrouan,985.1080870854173,78.77046736582447 +2017-11-01,Kesrouan,688.2805261364617,96.81764850721014 +2017-12-01,Kesrouan,845.3523955032792,54.43153829904263 +2018-01-01,Kesrouan,787.7088855514521,60.39758182014053 +2018-02-01,Kesrouan,748.5164174761306,67.62026930316812 +2018-03-01,Kesrouan,716.3862616160832,79.00626106409497 +2018-04-01,Kesrouan,688.9422422995927,94.72993096348878 +2018-05-01,Kesrouan,700.0251603470388,102.13322305287545 +2018-06-01,Kesrouan,838.350900142241,103.9292616337008 +2018-07-01,Kesrouan,813.775852948301,129.90195142164794 +2018-08-01,Kesrouan,692.6987806309459,92.55755881773115 +2018-09-01,Kesrouan,698.2578009711583,88.38241960369197 +2018-10-01,Kesrouan,700.6356320128727,86.48038872714274 +2018-11-01,Kesrouan,698.7528285728569,87.1292216966972 +2018-12-01,Kesrouan,690.7230605532744,91.31784925707233 +2019-01-01,Kesrouan,724.5637894010459,107.18813313005856 +2019-02-01,Kesrouan,895.4879388476082,54.63147910253622 +2019-03-01,Kesrouan,707.7352980119913,86.87311715949241 +2019-04-01,Kesrouan,781.8036769640502,61.18610184478197 +2019-05-01,Kesrouan,684.2335783295558,104.05753145627635 +2019-06-01,Kesrouan,680.5892452949528,102.74092961934355 +2019-07-01,Kesrouan,680.822580491915,100.8762832175423 +2019-08-01,Kesrouan,682.9007175915718,98.39341804128975 +2019-09-01,Kesrouan,684.484690760833,96.55428636946074 +2019-10-01,Kesrouan,684.7429284803583,95.86651994086947 +2019-11-01,Kesrouan,995.1926011068732,54.06235790874784 +2019-12-01,Kesrouan,1016.8308779809963,58.8431325754307 +2020-01-01,Kesrouan,700.0799315021554,106.29396889605033 +2020-02-01,Kesrouan,683.5969086342046,96.33540966814321 +2020-03-01,Kesrouan,762.0645413120868,99.73901547176534 +2020-04-01,Kesrouan,945.5146596077896,56.963466247322344 +2020-05-01,Kesrouan,924.4949873042682,55.96668615525367 +2020-06-01,Kesrouan,897.7831453346921,55.7486448611931 +2020-07-01,Kesrouan,867.8252667463023,56.52252785452026 +2020-08-01,Kesrouan,839.1390002060093,57.49165248552079 +2020-09-01,Kesrouan,811.0342723429077,59.53307454375354 +2020-10-01,Kesrouan,786.8711963603838,62.48978967786793 +2020-11-01,Kesrouan,736.4497778148412,130.06717061102515 +2020-12-01,Kesrouan,730.6418042216085,116.96956861517717 +2021-01-01,Kesrouan,761.3433038016741,128.6945094662883 +2021-02-01,Kesrouan,761.3638879677233,103.39188591567606 +2021-03-01,Kesrouan,704.2598846896866,84.23820786247735 +2021-04-01,Kesrouan,721.5063210166682,76.43759260082784 +2021-05-01,Kesrouan,676.7202137764153,102.160478214633 +2021-06-01,Kesrouan,677.456781452452,101.8881528531894 +2021-07-01,Kesrouan,677.753308599733,102.73041741136046 +2021-08-01,Kesrouan,681.6536482029956,104.84961936607758 +2021-09-01,Kesrouan,711.5154433589531,110.06261286231823 +2021-10-01,Kesrouan,801.4680330757159,131.84930314188605 +2021-11-01,Kesrouan,866.945905414876,168.31951166868967 +2021-12-01,Kesrouan,768.8000259118751,192.9757736628827 +2022-01-01,Kesrouan,678.4215742702434,201.00386335886898 +2022-02-01,Kesrouan,1071.5177531730428,236.97246204083552 +2022-03-01,Kesrouan,736.2076619596345,130.524573488516 +2022-04-01,Kesrouan,740.1552155941145,120.91239499451646 +2022-05-01,Kesrouan,804.1356978121147,77.97702191923067 +2022-06-01,Kesrouan,794.2293159968531,65.63904878038839 +2022-07-01,Kesrouan,821.8124583656966,57.76453478513571 +2022-08-01,Kesrouan,887.4678151575737,50.14114769218182 +2022-09-01,Kesrouan,739.8120501964845,122.3996635723143 +2022-10-01,Kesrouan,765.4317078311125,67.69256683952888 +2022-11-01,Kesrouan,691.2318349232085,91.88288043616522 +2022-12-01,Kesrouan,748.4884921040081,75.8458631981486 +2023-01-01,Kesrouan,832.7401314964716,77.34538441571488 +2023-02-01,Kesrouan,699.7207881854247,168.62589728017136 +2023-03-01,Kesrouan,880.4376027257188,113.93559571411399 +2023-04-01,Kesrouan,907.8508177657441,52.84342910360533 +2023-05-01,Kesrouan,860.4153268316674,55.41528255703952 +2023-06-01,Kesrouan,820.9401503499095,58.47426546285726 +2023-07-01,Kesrouan,792.3812753267732,61.69159285250028 +2023-08-01,Kesrouan,771.280633838618,65.47494346735385 +2023-09-01,Kesrouan,753.8016540133681,71.40542996707839 +2023-10-01,Kesrouan,732.1557480427374,80.62794318867041 +2023-11-01,Kesrouan,750.1983453656464,77.62609865836356 +2023-12-01,Kesrouan,740.2027894883747,120.43433319173421 +2024-01-01,Kesrouan,1098.0582283616297,227.73426752885808 +2024-02-01,Kesrouan,814.7562638221502,100.15111490988524 +2024-03-01,Kesrouan,1043.6223936282518,81.83498484471946 +2024-04-01,Kesrouan,640.035343356048,258.25035449229296 +2024-05-01,Kesrouan,705.88682550626,229.60272547626911 +2024-06-01,Kesrouan,742.2409817902789,223.06136482422724 +2024-07-01,Kesrouan,779.0766348255866,218.05074873597962 +2024-08-01,Kesrouan,779.1767487240982,86.92005660474159 +2024-09-01,Kesrouan,862.5729216911781,71.77450593146601 +2024-10-01,Kesrouan,834.8225869526422,63.59733084875218 +2024-11-01,Kesrouan,846.5816876575406,57.04486624192016 +2024-12-01,Kesrouan,733.4595318468618,85.49027448881172 +2025-01-01,Kesrouan,708.5435504061574,96.75100737415153 +2025-02-01,Kesrouan,691.2231262375725,99.7557410212219 +2025-03-01,Kesrouan,689.139951055316,98.49747845773196 +2025-04-01,Kesrouan,686.5649150661383,98.1827561779988 +2025-05-01,Kesrouan,685.9658150724573,97.27691364671125 +2025-06-01,Kesrouan,685.0963859610127,96.90517482169213 +2025-07-01,Kesrouan,682.6930766158666,97.8843939570473 +2025-08-01,Kesrouan,681.8000404888131,98.26339038261105 +2025-09-01,Kesrouan,681.6096729391633,98.22720680579496 +2025-10-01,Kesrouan,682.543373590055,97.44147147200998 +2025-11-01,Kesrouan,990.5772136375341,68.68257665195283 +2025-12-01,Kesrouan,837.7827483702423,86.89607345474036 +2026-01-01,Kesrouan,723.075683746391,99.46811726438563 +2026-02-01,Kesrouan,695.2447396862642,104.35925271057343 +2026-03-01,Kesrouan,740.5126315682397,116.76285753203878 +2026-04-01,Kesrouan,1044.1576539181372,188.40611337175497 +2026-05-01,Kesrouan,926.6293350112128,51.84379470340873 +2026-06-01,Kesrouan,883.147371438127,53.29139884081992 +2026-07-01,Kesrouan,754.759753378563,82.91854286560248 +2026-08-01,Kesrouan,830.7174852780171,211.2863517506534 +2026-09-01,Kesrouan,682.3406987243407,98.22235100111403 +2026-10-01,Kesrouan,679.0159240717591,105.8672150222983 +2026-11-01,Kesrouan,676.9046075995544,104.35679870175619 +2026-12-01,Kesrouan,677.2741149719184,102.55665270191757 +2027-01-01,Kesrouan,882.9313096672199,132.66018771496843 +2027-02-01,Kesrouan,813.5425177513387,116.74219860674748 +2027-03-01,Kesrouan,695.3380161869622,109.65326330641906 +2027-04-01,Kesrouan,724.0939522123446,145.45617288242636 +2027-05-01,Kesrouan,708.676267896348,81.85421661594688 +2027-06-01,Kesrouan,700.9209314332176,85.79352732307981 +2027-07-01,Kesrouan,680.3526713306053,106.41150025451061 +2027-08-01,Kesrouan,692.3303528477103,90.81597834746742 +2027-09-01,Kesrouan,681.9085751825266,98.94508270427168 +2027-10-01,Kesrouan,678.3186534399977,103.59534239137594 +2027-11-01,Kesrouan,693.2949297476755,107.28329994007801 +2027-12-01,Kesrouan,816.9791378376278,107.13424936198612 +2028-01-01,Kesrouan,826.6285774403186,127.02994310252349 +2028-02-01,Kesrouan,680.208006387393,103.1815199257886 +2028-03-01,Kesrouan,681.836818491789,98.88763105103936 +2028-04-01,Kesrouan,687.8735930076447,93.96252237640287 +2028-05-01,Kesrouan,686.2925707153348,95.04179893509409 +2028-06-01,Kesrouan,699.5583460078973,110.45749943008164 +2028-07-01,Kesrouan,762.4654287417845,123.72789149357276 +2028-08-01,Kesrouan,862.8227386155013,149.56813442265968 +2028-09-01,Kesrouan,1059.3777734236278,181.89574980980905 +2028-10-01,Kesrouan,1056.1119443374591,84.73846017052192 +2028-11-01,Kesrouan,711.4475012164695,80.69488019513247 +2028-12-01,Kesrouan,700.0290468679012,86.40683807989659 +2029-01-01,Kesrouan,691.7872475434914,91.41139746553141 +2029-02-01,Kesrouan,685.2674648515675,95.95449876761565 +2029-03-01,Kesrouan,681.9377240889947,98.95952828808952 +2029-04-01,Kesrouan,679.9503444487364,101.72900777074291 +2029-05-01,Kesrouan,681.9260645264076,104.39917821572789 +2029-06-01,Kesrouan,700.9531751618541,108.45132111550093 +2029-07-01,Kesrouan,766.5028041917515,124.76863489253773 +2029-08-01,Kesrouan,907.9579130072864,150.22304149914478 +2029-09-01,Kesrouan,917.2753429666745,180.693442128216 +2029-10-01,Kesrouan,693.5443148363474,174.13927189823437 +2029-11-01,Kesrouan,930.2302685628522,98.21479752716587 +2029-12-01,Kesrouan,935.8558635659856,156.81391743547806 +2030-01-01,Kesrouan,715.1238620618828,154.46738028096692 +2030-02-01,Kesrouan,724.0309042072431,180.88828346657866 +2030-03-01,Kesrouan,840.8411523985314,169.56994228914587 +2030-04-01,Kesrouan,696.8058255660021,88.18569859900119 +2030-05-01,Kesrouan,678.953451847526,101.967568755552 +2030-06-01,Kesrouan,880.449910041783,114.79084389340328 +2030-07-01,Kesrouan,678.6772929484687,105.2135262480629 +2030-08-01,Kesrouan,690.1628977408263,106.95141700294191 +2030-09-01,Kesrouan,717.6023827829774,113.31528842152036 +2030-10-01,Kesrouan,760.9089491089945,122.25546879890338 +2030-11-01,Kesrouan,775.1950081005502,129.0320836153623 +2030-12-01,Kesrouan,730.0692621204873,116.99722407624535 +2031-01-01,Kesrouan,791.0755482622177,92.60693486747968 +2031-02-01,Kesrouan,734.2076151402687,88.1221380302025 +2031-03-01,Kesrouan,793.3390148289251,63.00091968457053 +2031-04-01,Kesrouan,681.0441841536814,104.29555290723196 +2031-05-01,Kesrouan,1074.8043103704777,218.73950721068852 +2031-06-01,Kesrouan,946.3217604402186,166.78577356222473 +2031-07-01,Kesrouan,734.0916672678733,109.67919574001984 +2031-08-01,Kesrouan,852.0055434388712,94.17441994626134 +2031-09-01,Kesrouan,1077.5904420205716,78.10969503422298 +2031-10-01,Kesrouan,734.4244686098699,88.94134186721857 +2031-11-01,Kesrouan,800.8212152425575,133.5760899419749 +2031-12-01,Kesrouan,842.9895347641459,112.94370623536194 +2032-01-01,Kesrouan,704.746995304443,110.13323958416507 +2032-02-01,Kesrouan,739.7161107092697,122.74425166148293 +2032-03-01,Kesrouan,679.4199782962332,102.36981734976713 +2032-04-01,Kesrouan,680.1707965487658,100.52739626186398 +2032-05-01,Kesrouan,681.662140970806,98.72545761728652 +2032-06-01,Kesrouan,660.7659016909706,203.05988763978024 +2032-07-01,Kesrouan,734.1245587499867,133.6199488229641 +2032-08-01,Kesrouan,767.9778108316481,104.26506054235375 +2032-09-01,Kesrouan,708.6284780842618,98.12211953459942 +2032-10-01,Kesrouan,695.2462511110441,97.0687580051911 +2032-11-01,Kesrouan,697.0149059938786,92.99331072381308 +2032-12-01,Kesrouan,702.4772671207905,88.00436301129224 +2033-01-01,Kesrouan,713.5165697674471,81.43371089230399 +2033-02-01,Kesrouan,730.130294892549,74.23805231490192 +2033-03-01,Kesrouan,749.665100308801,68.35300848909115 +2033-04-01,Kesrouan,767.0782971698238,65.15237184026903 +2033-05-01,Kesrouan,782.1725365829369,63.518785162282214 +2033-06-01,Kesrouan,902.5164959094664,50.22197334429049 +2033-07-01,Kesrouan,842.3149355040822,56.47583206972105 +2033-08-01,Kesrouan,813.8063693343317,63.53401394040348 +2033-09-01,Kesrouan,828.9750284246994,71.59941849386634 +2033-10-01,Kesrouan,901.9826030991437,63.09213571443736 +2033-11-01,Kesrouan,731.5942897233352,78.46657057179578 +2033-12-01,Kesrouan,682.137304132541,97.86394388357022 +2034-01-01,Kesrouan,747.1210125413053,102.50370876700914 +2034-02-01,Kesrouan,875.9217533740227,195.90761802678531 +2034-03-01,Kesrouan,881.7428979546228,184.0557126769376 +2034-04-01,Kesrouan,905.2733347078752,167.6960715988826 +2034-05-01,Kesrouan,723.8292369580487,77.26332305703868 +2034-06-01,Kesrouan,730.5750136408616,74.58121325000663 +2034-07-01,Kesrouan,734.9253979654707,73.28838571126086 +2034-08-01,Kesrouan,738.6129145652113,72.344027424565 +2034-09-01,Kesrouan,787.1751366863466,65.88664260616312 +2034-10-01,Kesrouan,793.4769863195411,64.28612413209677 +2034-11-01,Kesrouan,793.8486528701618,63.21372227895742 +2034-12-01,Kesrouan,787.2997212717698,63.64834290437891 +2035-01-01,Kesrouan,714.805599186816,81.8851266844535 +2035-02-01,Kesrouan,778.0735525800397,65.82938240042725 +2035-03-01,Kesrouan,788.9854637095394,74.85225069192919 +2035-04-01,Kesrouan,880.9540061921605,77.76839636112851 +2035-05-01,Kesrouan,1067.9056638670763,74.22915870847912 +2035-06-01,Kesrouan,700.8509740576941,167.61474122155616 +2035-07-01,Kesrouan,1072.5083841573082,221.27190507555022 +2035-08-01,Kesrouan,736.0050590665285,126.77618814822887 +2035-09-01,Kesrouan,691.3577150155859,105.98091743083101 +2035-10-01,Kesrouan,703.4963992580468,100.84495544540714 +2035-11-01,Kesrouan,772.4183048621782,69.99498404828303 +2035-12-01,Kesrouan,736.2423527569617,95.44389089044859 +2036-01-01,Kesrouan,704.2090720280409,91.32374932082445 +2036-02-01,Kesrouan,706.4203584535396,94.44364733912714 +2036-03-01,Kesrouan,824.7077724629811,87.10163585290043 +2036-04-01,Kesrouan,733.4391635986383,89.83286064491321 +2036-05-01,Kesrouan,715.3915281931297,88.71656510214895 +2036-06-01,Kesrouan,713.8973048667472,85.74434272082766 +2036-07-01,Kesrouan,714.6597107092581,83.26990123441591 +2036-08-01,Kesrouan,717.1000859478143,80.92745409460018 +2036-09-01,Kesrouan,722.9133135414721,77.80607670927994 +2036-10-01,Kesrouan,725.4388323759587,76.57902008770012 +2036-11-01,Kesrouan,670.4654342292214,194.4133877218463 +2036-12-01,Kesrouan,728.6024603579673,73.92294714017595 +2037-01-01,Kesrouan,714.0511823038555,79.53350746912933 +2037-02-01,Kesrouan,698.0108629511776,87.95331614702985 +2037-03-01,Kesrouan,685.2933749906502,96.95453346712279 +2037-04-01,Kesrouan,679.9905051643146,105.27049058039535 +2037-05-01,Kesrouan,742.1027943818374,106.26283257141154 +2037-06-01,Kesrouan,891.2731509175328,117.48889605558851 +2037-07-01,Kesrouan,947.8769445660542,80.12991863331096 +2037-08-01,Kesrouan,804.6917581858751,96.15296020409176 +2037-09-01,Kesrouan,723.463328216113,96.16966834923049 +2037-10-01,Kesrouan,781.564368040577,85.76820404060396 +2037-11-01,Kesrouan,1049.2785050174164,78.39697070470221 +2037-12-01,Kesrouan,740.4877290456768,117.86643051845265 +2038-01-01,Kesrouan,732.1099734636911,136.31859273195633 +2038-02-01,Kesrouan,1039.2359510267527,186.36573557259342 +2038-03-01,Kesrouan,740.0144371717647,110.77408397182509 +2038-04-01,Kesrouan,1032.193503251442,197.50164469029258 +2038-05-01,Kesrouan,922.2898185504971,52.40242109353184 +2038-06-01,Kesrouan,876.3491986962803,54.16935965490721 +2038-07-01,Kesrouan,831.4269192806255,57.16591327258675 +2038-08-01,Kesrouan,797.0474754577579,60.9370982692612 +2038-09-01,Kesrouan,773.2874460831886,65.23318008805984 +2038-10-01,Kesrouan,730.9224254223966,137.74271844458403 +2038-11-01,Kesrouan,756.1956069194008,71.02672941491815 +2038-12-01,Kesrouan,784.314297468564,84.73325627948392 +2039-01-01,Kesrouan,740.4165481358077,113.90197057202225 +2039-02-01,Kesrouan,695.013563667559,176.7791240215197 +2039-03-01,Kesrouan,836.3405612398509,133.51501819062918 +2039-04-01,Kesrouan,721.4421934224383,106.10313055079378 +2039-05-01,Kesrouan,689.9349604895065,96.9158262642181 +2039-06-01,Kesrouan,711.096994612766,81.70781149416864 +2039-07-01,Kesrouan,743.7967416969835,68.90449910889457 +2039-08-01,Kesrouan,751.7984403992259,77.63847312835698 +2039-09-01,Kesrouan,674.7163524087956,106.60373094519544 +2039-10-01,Kesrouan,676.253831272925,102.06313586488201 +2039-11-01,Kesrouan,684.142389034506,96.3401088339635 +2039-12-01,Kesrouan,1094.5745381893403,224.36498304004178 +2040-01-01,Kesrouan,807.5482070745354,96.45967649761259 +2040-02-01,Kesrouan,732.2551422151635,80.96884156245427 +2040-03-01,Kesrouan,730.5742219421675,74.5431674111803 +2040-04-01,Kesrouan,702.009301219912,166.58518879897056 +2040-05-01,Kesrouan,722.1318349576917,147.50469590234312 +2040-06-01,Kesrouan,789.4440731713048,99.18493160860187 +2040-07-01,Kesrouan,969.2250278824503,176.23671845563547 +2040-08-01,Kesrouan,702.3478603705938,108.65493423006144 +2040-09-01,Kesrouan,725.1583551203875,101.9508954190489 +2040-10-01,Kesrouan,841.6315555857735,95.23493465030722 +2040-11-01,Kesrouan,1065.108376462655,84.33292216023254 +2040-12-01,Kesrouan,763.3747306783732,73.72709635137777 +2041-01-01,Kesrouan,752.5459479117643,71.31793846123209 +2041-02-01,Kesrouan,752.9492104375445,70.23460669648118 +2041-03-01,Kesrouan,737.6981427103718,75.2275922107438 +2041-04-01,Kesrouan,715.1995772460916,82.83860483370434 +2041-05-01,Kesrouan,702.0200971111964,87.44723339250454 +2041-06-01,Kesrouan,692.9755153108716,91.40466199452239 +2041-07-01,Kesrouan,960.548873865361,158.01356225643963 +2041-08-01,Kesrouan,927.6113292824506,208.41122805863324 +2041-09-01,Kesrouan,883.1580233841945,159.1402133683263 +2041-10-01,Kesrouan,737.160003516144,128.8702756722843 +2041-11-01,Kesrouan,788.8775047966943,62.55522991299463 +2041-12-01,Kesrouan,769.8014527874249,67.6961347246887 +2042-01-01,Kesrouan,766.6276046950005,73.51166570499515 +2042-02-01,Kesrouan,812.1841067373148,75.74453525960932 +2042-03-01,Kesrouan,739.4789609640536,123.47930562168041 +2042-04-01,Kesrouan,736.1624631614567,130.5524203970806 +2042-05-01,Kesrouan,949.8727450015148,51.28911909343826 +2042-06-01,Kesrouan,923.3987005306318,55.819671882350576 +2042-07-01,Kesrouan,815.8311747310431,58.86612367931431 +2042-08-01,Kesrouan,938.8828875369411,60.31090831723333 +2042-09-01,Kesrouan,737.9440011412239,101.71847815844191 +2042-10-01,Kesrouan,774.5985710933865,104.17675103356837 +2042-11-01,Kesrouan,710.8510642093054,101.07371779926505 +2042-12-01,Kesrouan,702.4748200520993,95.14577232994706 +2043-01-01,Kesrouan,718.0001753905069,82.95089749249095 +2043-02-01,Kesrouan,752.6129544103369,68.24941798923095 +2043-03-01,Kesrouan,796.6779680853938,59.11495321165657 +2043-04-01,Kesrouan,866.0646008230183,51.42095680117367 +2043-05-01,Kesrouan,949.8007723929516,62.279823987291095 +2043-06-01,Kesrouan,858.4566642622258,54.92265334021444 +2043-07-01,Kesrouan,916.1047084883924,49.982089631324584 +2043-08-01,Kesrouan,1062.004629690971,258.64266522101417 +2043-09-01,Kesrouan,893.89280992402,167.1945487756347 +2043-10-01,Kesrouan,674.317984020398,191.02375758546003 +2043-11-01,Kesrouan,738.0033785432888,101.74554187270313 +2043-12-01,Kesrouan,948.293809914853,44.103363572894466 +2044-01-01,Kesrouan,1000.7354995827674,203.78726629580464 +2044-02-01,Kesrouan,753.6043770932961,68.22181474111638 +2044-03-01,Kesrouan,743.8166061369467,69.96929527513221 +2044-04-01,Kesrouan,730.3023094270152,73.78735009978439 +2044-05-01,Kesrouan,715.8234358171183,79.52731153197371 +2044-06-01,Kesrouan,702.0265026733584,86.83287837661663 +2044-07-01,Kesrouan,692.1789944519015,93.68220843306476 +2044-08-01,Kesrouan,686.9503283849947,98.81571640967142 +2044-09-01,Kesrouan,687.7599482587233,101.26897684125625 +2044-10-01,Kesrouan,694.335509722284,102.59015601378431 +2044-11-01,Kesrouan,709.7931388360334,106.10889138000304 +2044-12-01,Kesrouan,766.3120048064502,104.78837357155342 +2045-01-01,Kesrouan,740.1696820884357,111.75427774898002 +2045-02-01,Kesrouan,736.3761498362811,95.93987914061923 +2045-03-01,Kesrouan,939.1679710394604,153.08039538263716 +2045-04-01,Kesrouan,703.7098700150457,165.0402597161262 +2045-05-01,Kesrouan,736.2874076099224,95.60333184629857 +2045-06-01,Kesrouan,795.3389177030735,111.7452275036965 +2045-07-01,Kesrouan,850.82584041191,140.8873654028735 +2045-08-01,Kesrouan,901.8345554433291,149.10462262960246 +2045-09-01,Kesrouan,809.2189792097238,136.94379063786658 +2045-10-01,Kesrouan,745.1819265213927,122.00458555705451 +2045-11-01,Kesrouan,727.4958815013064,121.5584780818501 +2045-12-01,Kesrouan,672.6508824882461,195.00746670743567 +2046-01-01,Kesrouan,743.6244392720829,127.16214630093373 +2046-02-01,Kesrouan,809.3118238747707,141.63287935810052 +2046-03-01,Kesrouan,666.6441925227698,197.81191146465542 +2046-04-01,Kesrouan,697.8617357062345,87.86114287968114 +2046-05-01,Kesrouan,711.719197813796,81.84173772004634 +2046-06-01,Kesrouan,722.5821675694723,77.71381642034197 +2046-07-01,Kesrouan,728.2125127647712,75.63269511308683 +2046-08-01,Kesrouan,728.929791781713,75.24978271600618 +2046-09-01,Kesrouan,724.4518000221215,77.07855881871278 +2046-10-01,Kesrouan,716.7730424145025,81.05363539903338 +2046-11-01,Kesrouan,708.7549339575077,86.45983422775853 +2046-12-01,Kesrouan,704.6531430228764,91.25862236341904 +2047-01-01,Kesrouan,715.4605499247422,92.48432144820637 +2047-02-01,Kesrouan,763.373291226202,96.97688061124589 +2047-03-01,Kesrouan,858.9416876713337,172.69041464993776 +2047-04-01,Kesrouan,930.874567354711,51.71508977288691 +2047-05-01,Kesrouan,663.4808524311957,200.6105083710766 +2047-06-01,Kesrouan,687.3679854324874,93.83599298561259 +2047-07-01,Kesrouan,810.0961813628935,130.36551542765878 +2047-08-01,Kesrouan,729.1105869744241,112.49549283769736 +2047-09-01,Kesrouan,691.2344259371167,104.77979324285197 +2047-10-01,Kesrouan,682.4191488676748,102.12050049652501 +2047-11-01,Kesrouan,684.4700083486862,98.26915121182037 +2047-12-01,Kesrouan,693.4816266942888,91.42464215141744 +2048-01-01,Kesrouan,711.4214471321696,81.31671906769716 +2048-02-01,Kesrouan,735.5500482351915,71.67711136876143 +2048-03-01,Kesrouan,762.8221249898241,64.90606593401544 +2048-04-01,Kesrouan,739.1061428516957,106.17286965243014 +2048-05-01,Kesrouan,773.0986619309269,106.47352924333823 +2048-06-01,Kesrouan,715.7297994533774,108.44731812239476 +2048-07-01,Kesrouan,697.8058129893808,105.47563527492693 +2048-08-01,Kesrouan,688.6592460027219,102.78461445715426 +2048-09-01,Kesrouan,684.589194988467,101.28605047706986 +2048-10-01,Kesrouan,684.2386883847637,99.3590444044018 +2048-11-01,Kesrouan,686.8301341286939,96.30014852017335 +2048-12-01,Kesrouan,689.4650513281966,93.6346946453265 +2049-01-01,Kesrouan,689.4762790551325,92.92094357018088 +2049-02-01,Kesrouan,680.2314694577847,98.28845260031913 +2049-03-01,Kesrouan,808.1940172911739,80.38753734616891 +2049-04-01,Kesrouan,778.308543146999,62.24818293743458 +2049-05-01,Kesrouan,876.1667481335722,51.55081041667381 +2049-06-01,Kesrouan,716.1829389968921,91.07431063735733 +2049-07-01,Kesrouan,753.5480225407913,79.99747177445076 +2049-08-01,Kesrouan,848.8571736498778,90.41360792302724 +2049-09-01,Kesrouan,729.1451338265344,69.24555412153912 +2049-10-01,Kesrouan,809.806707531252,139.9678082691179 +2049-11-01,Kesrouan,785.2513088594495,98.33551387579328 +2049-12-01,Kesrouan,1005.190604052836,84.35250201781705 +2050-01-01,Kesrouan,702.5900481984091,88.23007960952596 +2050-02-01,Kesrouan,716.7020774224592,83.2103262544056 +2050-03-01,Kesrouan,737.2233394116797,76.76181763810867 +2050-04-01,Kesrouan,754.0417546355354,72.92950867713503 +2050-05-01,Kesrouan,1004.2900108018833,76.47113072133025 +2050-06-01,Kesrouan,805.2972637417181,91.3025334573618 +2050-07-01,Kesrouan,713.7507686357122,99.96509756067395 +2050-08-01,Kesrouan,713.2224177162491,117.17826379055077 +2050-09-01,Kesrouan,1112.7826005393363,253.78301418582225 +2050-10-01,Kesrouan,767.9612571316784,72.13119002154245 +2050-11-01,Kesrouan,684.1276346497506,110.77773887857417 +2050-12-01,Kesrouan,899.9913369380229,51.61665095111114 +2051-01-01,Kesrouan,843.1665873812118,56.00464497249072 +2051-02-01,Kesrouan,803.081874877531,59.96562405535052 +2051-03-01,Kesrouan,775.9325114204986,64.27592520183501 +2051-04-01,Kesrouan,756.9539103232239,69.42323480249892 +2051-05-01,Kesrouan,725.9291817581002,81.23796452941295 +2051-06-01,Kesrouan,744.9042561975556,75.49133724348596 +2051-07-01,Kesrouan,789.288108528548,85.58102060209649 +2051-08-01,Kesrouan,929.7086110959854,84.65721681478482 +2051-09-01,Kesrouan,1105.6908515271593,65.3975464658622 +2051-10-01,Kesrouan,974.8623544207795,69.1546687737115 +2051-11-01,Kesrouan,858.6553806344691,71.38033294073458 +2051-12-01,Kesrouan,794.416372806509,72.31816460823568 +2052-01-01,Kesrouan,745.7264712777828,81.48804717264063 +2052-02-01,Kesrouan,686.8196981004523,112.886446029626 +2052-03-01,Kesrouan,748.9021186854213,70.43439086111405 +2052-04-01,Kesrouan,806.3615227045436,59.22571429047211 +2052-05-01,Kesrouan,692.3867074002153,92.11900481647494 +2052-06-01,Kesrouan,694.1206714857224,90.52642271134947 +2052-07-01,Kesrouan,697.8718838440419,88.01565841357875 +2052-08-01,Kesrouan,706.1739962144276,83.49788039397048 +2052-09-01,Kesrouan,690.5417615523035,92.77474730021694 +2052-10-01,Kesrouan,681.9180035942484,99.81181773334386 +2052-11-01,Kesrouan,1014.6876056705895,76.81813801068053 +2052-12-01,Kesrouan,858.5703090111473,87.08524098548304 +2053-01-01,Kesrouan,742.2069387464287,88.5680540579105 +2053-02-01,Kesrouan,713.0775368552111,86.19335671711346 +2053-03-01,Kesrouan,707.3377213222876,85.2444384991401 +2053-04-01,Kesrouan,701.4715938613355,86.97548935710289 +2053-05-01,Kesrouan,681.1201152557156,105.50684121683712 +2053-06-01,Kesrouan,946.9967195633251,96.55915957845951 +2053-07-01,Kesrouan,739.8739466398491,106.9227346871204 +2053-08-01,Kesrouan,854.4808253925802,129.77500432722925 +2053-09-01,Kesrouan,675.2872391399197,104.03147719245064 +2053-10-01,Kesrouan,838.516868977588,57.20084373851745 +2053-11-01,Kesrouan,864.901883331678,57.17332751199207 +2053-12-01,Kesrouan,874.8788702759404,59.6940470795746 +2054-01-01,Kesrouan,719.4682006873726,150.22855866790414 +2054-02-01,Kesrouan,860.3478884974437,64.54015755547704 +2054-03-01,Kesrouan,732.0577213498742,136.39917472361503 +2054-04-01,Kesrouan,775.6233890667193,63.357534157375525 +2054-05-01,Kesrouan,666.556170022497,197.8750891384613 +2054-06-01,Kesrouan,870.9991148387271,120.52624539431515 +2054-07-01,Kesrouan,723.787996653342,109.54272848373562 +2054-08-01,Kesrouan,679.076740925995,107.12276251220324 +2054-09-01,Kesrouan,677.1758003886209,104.01259350758025 +2054-10-01,Kesrouan,676.2058255430135,103.48130930080401 +2054-11-01,Kesrouan,675.9162077661545,103.40521762315132 +2054-12-01,Kesrouan,755.3916728817486,147.65355503293856 +2055-01-01,Kesrouan,725.9467430745897,115.25364210942853 +2055-02-01,Kesrouan,869.1011971509126,120.70973911743782 +2055-03-01,Kesrouan,801.7914060059909,139.4495076834599 +2055-04-01,Kesrouan,677.9484983141565,101.24088627224172 +2055-05-01,Kesrouan,735.2561840744276,132.01859494164077 +2055-06-01,Kesrouan,763.779360683716,99.88627340511835 +2055-07-01,Kesrouan,707.1670022947756,108.74564553471055 +2055-08-01,Kesrouan,696.2892061817348,109.8383582267842 +2055-09-01,Kesrouan,705.7603696330143,115.6658633777734 +2055-10-01,Kesrouan,711.5815142136144,117.39181477060531 +2055-11-01,Kesrouan,712.075966034444,117.50036550105354 +2055-12-01,Kesrouan,730.934084984984,124.3526891001724 +2056-01-01,Kesrouan,844.6037364290038,151.03343875132722 +2056-02-01,Kesrouan,1014.8248574351198,244.9686148135618 +2056-03-01,Kesrouan,736.2665355534392,95.56968929988903 +2056-04-01,Kesrouan,906.8842976053477,144.68051464867824 +2056-05-01,Kesrouan,738.0878743857421,127.15377482404652 +2056-06-01,Kesrouan,839.619777231212,68.59224824229649 +2056-07-01,Kesrouan,813.8488331733842,63.2064820827306 +2056-08-01,Kesrouan,824.5259696537502,58.72567083424178 +2056-09-01,Kesrouan,1074.1243131647716,216.12165414516923 +2056-10-01,Kesrouan,740.0151568978503,121.24725407000535 +2056-11-01,Kesrouan,874.4349432263222,111.20656386615066 +2056-12-01,Kesrouan,716.406270001264,105.41404139404568 +2057-01-01,Kesrouan,883.5001811653044,50.701305662275985 +2057-02-01,Kesrouan,817.1921047863667,57.09967243883881 +2057-03-01,Kesrouan,678.1621130163726,101.99792188588735 +2057-04-01,Kesrouan,774.176883579814,64.36338189904559 +2057-05-01,Kesrouan,728.5327189002693,90.29313523484977 +2057-06-01,Kesrouan,792.3177235134118,89.5834219614461 +2057-07-01,Kesrouan,734.4709629150017,89.21726992245773 +2057-08-01,Kesrouan,676.1486073192054,106.0280309192587 +2057-09-01,Kesrouan,912.4908918398204,51.19746795562514 +2057-10-01,Kesrouan,859.4160591343747,54.95257136260351 +2057-11-01,Kesrouan,741.7020508973569,76.68076572986794 +2057-12-01,Kesrouan,679.1119355315824,104.7242908732192 +2058-01-01,Kesrouan,706.440078948286,109.25517434417073 +2058-02-01,Kesrouan,847.3310664579017,118.45675017138575 +2058-03-01,Kesrouan,887.6515612272358,58.60424090858238 +2058-04-01,Kesrouan,737.8595772713793,101.23418560986838 +2058-05-01,Kesrouan,676.695383226461,106.96387849452452 +2058-06-01,Kesrouan,676.8381768818506,106.05742681211218 +2058-07-01,Kesrouan,677.6915561015857,105.8282293503079 +2058-08-01,Kesrouan,678.7500572557262,106.23336706128667 +2058-09-01,Kesrouan,797.7951988881222,75.2657424754773 +2058-10-01,Kesrouan,679.94213957136,106.41743512689847 +2058-11-01,Kesrouan,685.4680525116333,105.90198884936828 +2058-12-01,Kesrouan,689.8809090604752,105.3904933519908 +2059-01-01,Kesrouan,695.9179714667652,103.74517616377115 +2059-02-01,Kesrouan,709.8666948419851,103.5435645457637 +2059-03-01,Kesrouan,786.1106618056953,90.1518469825203 +2059-04-01,Kesrouan,735.430789622802,92.55989099632345 +2059-05-01,Kesrouan,682.2066857271958,105.60320892478838 +2059-06-01,Kesrouan,692.6263761867311,92.86645065098364 +2059-07-01,Kesrouan,748.0671644534785,79.57280641884107 +2059-08-01,Kesrouan,738.6378890603829,75.26962363835845 +2059-09-01,Kesrouan,831.4868724635587,139.54373466031527 +2059-10-01,Kesrouan,979.0789416660695,170.0085310990378 +2059-11-01,Kesrouan,731.3648410472355,77.5847459991452 +2059-12-01,Kesrouan,716.2820452788835,153.3432701994867 +2060-01-01,Kesrouan,685.3148948006109,181.34002994076735 +2060-02-01,Kesrouan,739.7502257257289,109.22111409413272 +2060-03-01,Kesrouan,738.186764749908,77.87315295028483 +2060-04-01,Kesrouan,922.2617492331574,51.17914120892607 +2060-05-01,Kesrouan,712.2515072267299,84.88815470837434 +2060-06-01,Kesrouan,750.028490009437,72.83119168558423 +2060-07-01,Kesrouan,769.1133226769513,67.21951748028833 +2060-08-01,Kesrouan,770.007150502699,65.83201045242305 +2060-09-01,Kesrouan,760.3184858283412,67.4274294613585 +2060-10-01,Kesrouan,747.4266802098734,71.21887308401365 +2060-11-01,Kesrouan,963.1229022380189,48.37520117692405 +2060-12-01,Kesrouan,693.8211934614905,93.5325835124838 +2061-01-01,Kesrouan,694.9438941824695,94.85155233664454 +2061-02-01,Kesrouan,697.8927559005251,95.98528700589735 +2061-03-01,Kesrouan,946.535950923303,155.14849826013835 +2061-04-01,Kesrouan,763.1329746862091,114.84728609620005 +2061-05-01,Kesrouan,892.3728204037715,127.40446661839901 +2061-06-01,Kesrouan,878.5293929548799,162.51451030068424 +2061-07-01,Kesrouan,680.7123184555959,108.13464955216821 +2061-08-01,Kesrouan,681.7197910302651,103.09204432770709 +2061-09-01,Kesrouan,686.8297742656513,100.40379079647299 +2061-10-01,Kesrouan,731.3585794302903,77.51843554812581 +2061-11-01,Kesrouan,848.3363798543139,119.19100353296199 +2061-12-01,Kesrouan,1145.7700221399812,270.3579292713992 +2062-01-01,Kesrouan,695.4756278145352,97.19093631651816 +2062-02-01,Kesrouan,709.0261987191826,94.22346531397072 +2062-03-01,Kesrouan,744.527263673901,92.15303025787723 +2062-04-01,Kesrouan,885.7694775133054,85.69599352583245 +2062-05-01,Kesrouan,1118.697597401503,73.99329539293723 +2062-06-01,Kesrouan,695.9733184027504,171.94618861423186 +2062-07-01,Kesrouan,856.3282183091831,120.81940372422865 +2062-08-01,Kesrouan,870.7543359970031,53.059521114066385 +2062-09-01,Kesrouan,818.0177745518049,57.92669081457075 +2062-10-01,Kesrouan,785.1627105783082,63.78235615184586 +2062-11-01,Kesrouan,773.8491203204165,70.69688278297083 +2062-12-01,Kesrouan,805.0448558034865,79.60206307715175 +2063-01-01,Kesrouan,736.6054545671636,129.88637455716966 +2063-02-01,Kesrouan,737.0819852084614,98.478786220358 +2063-03-01,Kesrouan,907.4666279812332,51.320081374898535 +2063-04-01,Kesrouan,989.7224669382364,166.68239191417877 +2063-05-01,Kesrouan,895.2844722832,48.99524740474989 +2063-06-01,Kesrouan,829.062619089321,55.79133765288617 +2063-07-01,Kesrouan,744.4634239701054,70.91622940087035 +2063-08-01,Kesrouan,716.5654734114061,84.70097126986687 +2063-09-01,Kesrouan,749.5780134524393,88.75443689779674 +2063-10-01,Kesrouan,738.5949933856791,125.9609002827297 +2063-11-01,Kesrouan,687.807306235158,111.0047259920111 +2063-12-01,Kesrouan,679.3706770593675,107.17563682984022 +2064-01-01,Kesrouan,677.0612919683967,107.09260082936426 +2064-02-01,Kesrouan,721.3676297999667,148.29654015169444 +2064-03-01,Kesrouan,913.576742585215,163.52575338088866 +2064-04-01,Kesrouan,705.2949947460438,104.64202066272875 +2064-05-01,Kesrouan,743.7626986531329,99.22973032275512 +2064-06-01,Kesrouan,884.3203810124917,92.34943798484673 +2064-07-01,Kesrouan,982.9444465267871,68.63725580826397 +2064-08-01,Kesrouan,1045.3215229712146,173.6363045166047 +2064-09-01,Kesrouan,1128.9220981466142,69.95803468148145 +2064-10-01,Kesrouan,746.3999909487181,96.32686414807745 +2064-11-01,Kesrouan,699.5859834895854,102.04292945185485 +2064-12-01,Kesrouan,705.2821116491111,115.74141552157263 +2065-01-01,Kesrouan,954.221761846561,173.63278884439848 +2065-02-01,Kesrouan,740.4648417561539,114.92677161583404 +2065-03-01,Kesrouan,895.6558509433864,55.765387814967525 +2065-04-01,Kesrouan,913.1218037264862,84.92872417328932 +2065-05-01,Kesrouan,924.4230866683132,48.558955964814544 +2065-06-01,Kesrouan,988.64021482327,79.61184430378505 +2065-07-01,Kesrouan,726.8021375273646,75.25918104764672 +2065-08-01,Kesrouan,677.1367912347796,107.9007877331794 +2065-09-01,Kesrouan,678.0232058818453,108.4878701829919 +2065-10-01,Kesrouan,681.895836030811,111.60091090006065 +2065-11-01,Kesrouan,679.6771364266301,186.30405467012292 +2065-12-01,Kesrouan,682.7563405387938,183.59434161497626 +2066-01-01,Kesrouan,908.1499359269333,139.74804394758996 +2066-02-01,Kesrouan,718.974684510454,78.58545946704865 +2066-03-01,Kesrouan,772.8191203192672,108.54707967232731 +2066-04-01,Kesrouan,685.1751959673893,100.81334920418634 +2066-05-01,Kesrouan,685.4279637686637,98.04731577646784 +2066-06-01,Kesrouan,690.3180706848888,93.65803383556715 +2066-07-01,Kesrouan,700.3568101272984,87.08078548011268 +2066-08-01,Kesrouan,714.243421141328,79.86606917466169 +2066-09-01,Kesrouan,723.7766969537975,75.96828516992561 +2066-10-01,Kesrouan,691.8063202847607,105.19521690568176 +2066-11-01,Kesrouan,947.2917352858261,46.16715017956807 +2066-12-01,Kesrouan,851.390321580872,54.82158646644292 +2067-01-01,Kesrouan,772.2378695325099,64.71407890378059 +2067-02-01,Kesrouan,676.7425252850699,104.25654983092372 +2067-03-01,Kesrouan,675.9285870548274,104.1598688452511 +2067-04-01,Kesrouan,675.2251987513382,104.97846353114231 +2067-05-01,Kesrouan,675.2513248082467,106.00035805387267 +2067-06-01,Kesrouan,739.345091912126,107.16106941579739 +2067-07-01,Kesrouan,764.4957040567468,95.51733711178761 +2067-08-01,Kesrouan,722.3221305347333,90.19779438165186 +2067-09-01,Kesrouan,723.7915233111618,82.72981044280613 +2067-10-01,Kesrouan,752.4146698737449,69.53871245145261 +2067-11-01,Kesrouan,786.1485193977996,61.28560232994674 +2067-12-01,Kesrouan,837.3940962840005,55.09077905067305 +2068-01-01,Kesrouan,901.9407870135685,49.2034378549057 +2068-02-01,Kesrouan,676.9731255229067,101.80040028257532 +2068-03-01,Kesrouan,680.6997232490975,98.55536521891055 +2068-04-01,Kesrouan,689.7915910532481,92.92099578313446 +2068-05-01,Kesrouan,703.5371357544939,86.23201170706469 +2068-06-01,Kesrouan,720.1963475682074,79.29574708294146 +2068-07-01,Kesrouan,705.4333260997026,96.45894551626276 +2068-08-01,Kesrouan,732.4629991086941,95.56472906930095 +2068-09-01,Kesrouan,839.453808395865,91.68861344029165 +2068-10-01,Kesrouan,965.6543228264075,74.65664356358091 +2068-11-01,Kesrouan,720.3502250053158,76.94994090978015 +2068-12-01,Kesrouan,732.9896226855519,72.70407054798702 +2069-01-01,Kesrouan,679.4780601913438,105.25124140485006 +2069-02-01,Kesrouan,737.3957857817975,72.101672298464 +2069-03-01,Kesrouan,831.4293663493166,72.87719129766933 +2069-04-01,Kesrouan,726.4677527879794,93.6279765786353 +2069-05-01,Kesrouan,711.2669939141925,91.21702604375072 +2069-06-01,Kesrouan,714.7478051821396,85.58063770710375 +2069-07-01,Kesrouan,722.8057144916701,79.67721492164037 +2069-08-01,Kesrouan,727.2613227699985,76.83181780451287 +2069-09-01,Kesrouan,736.6638963253171,96.8974647088833 +2069-10-01,Kesrouan,692.1032792676931,108.39755917765348 +2069-11-01,Kesrouan,732.3659080597422,118.37641184017698 +2069-12-01,Kesrouan,811.6824576556287,134.0945819751293 +2070-01-01,Kesrouan,722.9786646700478,78.49236377085371 +2070-02-01,Kesrouan,746.6077038970318,69.30892324284135 +2070-03-01,Kesrouan,774.1440640703091,63.190696366438075 +2070-04-01,Kesrouan,810.3296605050729,58.60060340615111 +2070-05-01,Kesrouan,857.3764993529078,55.00269579801976 +2070-06-01,Kesrouan,910.0303642708666,51.76989596980556 +2070-07-01,Kesrouan,709.4933009487586,89.63018736351671 +2070-08-01,Kesrouan,736.8322402567468,97.57703370376586 +2070-09-01,Kesrouan,728.2938418124476,66.33243680364613 +2070-10-01,Kesrouan,870.5094132100622,84.06287676442764 +2070-11-01,Kesrouan,747.2147928502632,95.10506363048921 +2070-12-01,Kesrouan,661.1502354206984,202.69648548301265 +2071-01-01,Kesrouan,730.4347390267718,85.2395130771878 +2071-02-01,Kesrouan,747.1486500229935,73.41555906181168 +2071-03-01,Kesrouan,935.3881135829328,152.166825334223 +2071-04-01,Kesrouan,805.1576368811052,59.07666371238028 +2071-05-01,Kesrouan,801.0035218600484,87.25703900700853 +2071-06-01,Kesrouan,731.7655125591073,79.10905096533394 +2071-07-01,Kesrouan,854.4143227022676,159.38754612933323 +2071-08-01,Kesrouan,869.1220692073961,192.2335839323655 +2071-09-01,Kesrouan,1032.2944808212565,219.7938085732609 +2071-10-01,Kesrouan,729.0294018719648,140.02747027071754 +2071-11-01,Kesrouan,675.8565424736555,104.83425135341353 +2071-12-01,Kesrouan,678.7084570879766,101.86455259818092 +2072-01-01,Kesrouan,887.0467034248697,128.19370022007246 +2072-02-01,Kesrouan,682.137304132541,99.93883444503395 +2072-03-01,Kesrouan,688.6859478404988,98.1657347551387 +2072-04-01,Kesrouan,693.5919607032165,97.52955472466329 +2072-05-01,Kesrouan,700.0847536669291,97.51794604465542 +2072-06-01,Kesrouan,718.5647285320773,97.18139875033476 +2072-07-01,Kesrouan,813.2387213705931,91.57344906905932 +2072-08-01,Kesrouan,1042.1758881413466,83.14512967972881 +2072-09-01,Kesrouan,684.9619411282165,99.02136582942074 +2072-10-01,Kesrouan,737.6493452817657,100.5139427241637 +2072-11-01,Kesrouan,735.697951945789,96.68776008307428 +2072-12-01,Kesrouan,773.1659563199337,108.51420291590328 +2073-01-01,Kesrouan,811.2851688563593,58.643296197844165 +2073-02-01,Kesrouan,778.6737321628492,64.2747243039031 +2073-03-01,Kesrouan,757.1890448354002,71.86283284456927 +2073-04-01,Kesrouan,735.3794011802879,92.40213825930519 +2073-05-01,Kesrouan,790.6488946386544,88.12145926180627 +2073-06-01,Kesrouan,685.8712430648052,105.42979230170249 +2073-07-01,Kesrouan,684.3886793010097,98.6945649530977 +2073-08-01,Kesrouan,699.8128411517771,109.23496793114356 +2073-09-01,Kesrouan,763.5520711858733,114.05716487431616 +2073-10-01,Kesrouan,892.8584915663565,47.61205664771208 +2073-11-01,Kesrouan,856.1907506268273,57.125221977446785 +2073-12-01,Kesrouan,1106.9713162061093,249.21850557277898 +2074-01-01,Kesrouan,682.4576542132561,98.1543175226272 +2074-02-01,Kesrouan,678.8023813421516,102.20505067265417 +2074-03-01,Kesrouan,735.9810202152686,94.49049976278707 +2074-04-01,Kesrouan,690.5411857714349,93.51277739876724 +2074-05-01,Kesrouan,944.6600568537091,42.96494714213921 +2074-06-01,Kesrouan,678.9490615184036,103.36363870780086 +2074-07-01,Kesrouan,915.0991072015458,135.10805280801887 +2074-08-01,Kesrouan,675.9778882916933,108.76487730593797 +2074-09-01,Kesrouan,686.061610614455,111.20755591226826 +2074-10-01,Kesrouan,700.6986800179743,222.4133498576119 +2074-11-01,Kesrouan,725.6564775442539,220.15068411083365 +2074-12-01,Kesrouan,738.6689092546735,71.47969419135651 +2075-01-01,Kesrouan,679.6160316819598,100.76214570106329 +2075-02-01,Kesrouan,861.5652331986834,53.83946081000637 +2075-03-01,Kesrouan,1004.4648322680836,74.86488622669032 +2075-04-01,Kesrouan,683.0673341803958,101.6131298224786 +2075-05-01,Kesrouan,729.5928034517983,70.77161692383096 +2075-06-01,Kesrouan,775.4708791091736,62.325579938926225 +2075-07-01,Kesrouan,832.3157090237738,55.15888214643128 +2075-08-01,Kesrouan,736.8827650279582,129.37023210692544 +2075-09-01,Kesrouan,1015.7453870986444,176.36813845974234 +2075-10-01,Kesrouan,711.2628195028959,83.85428601496122 +2075-11-01,Kesrouan,919.1513809814855,49.33374398267004 +2075-12-01,Kesrouan,733.003297481179,83.7790993618369 +2076-01-01,Kesrouan,739.2218748062656,124.39407656802649 +2076-02-01,Kesrouan,878.394876149475,139.1958919637081 +2076-03-01,Kesrouan,760.1620173773244,113.01511615151222 +2076-04-01,Kesrouan,615.8498838922609,242.77319935096702 +2076-05-01,Kesrouan,669.4051337598667,234.09432740182675 +2076-06-01,Kesrouan,697.0870945202677,96.9570222845758 +2076-07-01,Kesrouan,791.1187318273558,95.08309938135893 +2076-08-01,Kesrouan,735.9455377192469,94.40396549442265 +2076-09-01,Kesrouan,878.7419280679673,126.97047254842023 +2076-10-01,Kesrouan,687.1990657201894,94.4836946745066 +2076-11-01,Kesrouan,934.330116237052,51.57940571090606 +2076-12-01,Kesrouan,890.6934115555553,54.49339324469166 +2077-01-01,Kesrouan,680.9057088548057,104.13602492979273 +2077-02-01,Kesrouan,698.3818817483213,221.70200057833003 +2077-03-01,Kesrouan,931.6317191967968,50.7735335813653 +2077-04-01,Kesrouan,701.0466675803779,105.88830905553594 +2077-05-01,Kesrouan,685.9350827686008,103.73489021192012 +2077-06-01,Kesrouan,761.7336112579129,104.20374513055813 +2077-07-01,Kesrouan,843.5391176031355,100.9173225990393 +2077-08-01,Kesrouan,797.1496045893092,126.5095888073588 +2077-09-01,Kesrouan,873.6505137655905,109.23173072802291 +2077-10-01,Kesrouan,928.6383784066489,148.89930389189234 +2077-11-01,Kesrouan,1091.8041685405215,235.19050355315312 +2077-12-01,Kesrouan,814.7346000669727,89.4948861965286 +2078-01-01,Kesrouan,714.713474247855,97.99123906434595 +2078-02-01,Kesrouan,740.3201768129414,119.82147494718164 +2078-03-01,Kesrouan,910.1057915646411,206.7895633383756 +2078-04-01,Kesrouan,758.7702110729274,219.74739125754732 +2078-05-01,Kesrouan,709.5639060777592,229.6611343669833 +2078-06-01,Kesrouan,725.8182719683042,209.16305978124083 +2078-07-01,Kesrouan,846.5998247548983,173.42915832552004 +2078-08-01,Kesrouan,814.2846992908435,57.92312292941094 +2078-09-01,Kesrouan,803.6117372217741,132.09512172723976 +2078-10-01,Kesrouan,714.6140081028205,112.06546695218903 +2078-11-01,Kesrouan,856.4870618562823,91.88427278159345 +2078-12-01,Kesrouan,844.7800693199838,140.4303454203754 +2079-01-01,Kesrouan,740.5201167195305,116.64633562401396 +2079-02-01,Kesrouan,683.4931241326564,108.74162513728653 +2079-03-01,Kesrouan,679.8704548532311,109.71041908624782 +2079-04-01,Kesrouan,697.4538669335061,118.9889568070082 +2079-05-01,Kesrouan,858.2795396725516,124.69421402939896 +2079-06-01,Kesrouan,767.8871253448583,135.3872702793322 +2079-07-01,Kesrouan,697.838056718017,118.3898131649237 +2079-08-01,Kesrouan,681.086288129691,110.96391286664617 +2079-09-01,Kesrouan,678.4888686592499,108.20592023377564 +2079-10-01,Kesrouan,679.5285129899468,107.98197887596298 +2079-11-01,Kesrouan,715.7927035132617,107.0836202013522 +2079-12-01,Kesrouan,680.0757207328536,185.94326316103317 +2080-01-01,Kesrouan,739.3970561355086,107.50711946766572 +2080-02-01,Kesrouan,870.8913718437078,122.64402019496838 +2080-03-01,Kesrouan,760.586511822631,76.58594700620557 +2080-04-01,Kesrouan,776.8615338518338,65.96024546636285 +2080-05-01,Kesrouan,900.4459879063171,226.69486426236773 +2080-06-01,Kesrouan,699.1837285803252,102.29511801754272 +2080-07-01,Kesrouan,752.1747851694034,67.34032085050495 +2080-08-01,Kesrouan,683.4065410845546,103.56135175860932 +2080-09-01,Kesrouan,689.2613688459625,94.13285843522874 +2080-10-01,Kesrouan,708.4061546964099,82.48084167592103 +2080-11-01,Kesrouan,752.5546565974006,67.0503997237121 +2080-12-01,Kesrouan,729.4243875477601,139.55697934620127 +2081-01-01,Kesrouan,731.7429131600184,72.69507251565709 +2081-02-01,Kesrouan,783.5315233778293,61.61696313754726 +2081-03-01,Kesrouan,722.5787128842614,147.04715379030938 +2081-04-01,Kesrouan,999.7315536659179,234.28882065383243 +2081-05-01,Kesrouan,835.013170420118,59.56455895474936 +2081-06-01,Kesrouan,704.1152197464742,85.09458732242705 +2081-07-01,Kesrouan,827.8928482823417,61.01174538853206 +2081-08-01,Kesrouan,840.4228475975615,62.27361064581761 +2081-09-01,Kesrouan,726.19670394413,74.99409588242993 +2081-10-01,Kesrouan,879.766961959126,58.8184532527153 +2081-11-01,Kesrouan,950.7415263594825,181.43248167720176 +2081-12-01,Kesrouan,987.6124459729859,167.75916225109918 +2082-01-01,Kesrouan,593.8826921970035,30.688045754642587 +2082-02-01,Kesrouan,593.4022750348436,32.662043485513365 +2082-03-01,Kesrouan,588.019947448654,32.52543699468635 +2082-04-01,Kesrouan,588.9453712495608,34.47369373945274 +2082-05-01,Kesrouan,585.3840226326315,32.414936980638565 +2082-06-01,Kesrouan,594.124232271342,30.119377073118418 +2082-07-01,Kesrouan,590.591168889578,30.059210346301114 +2082-08-01,Kesrouan,588.8887288066214,30.311538146531788 +2082-09-01,Kesrouan,595.9914176552995,31.399325416653067 +2082-10-01,Kesrouan,487.8948212101621,29.840942796108454 +2082-11-01,Kesrouan,565.6998020810021,31.422368733490277 +2082-12-01,Kesrouan,489.34096683402464,29.09535922360999 +2083-01-01,Kesrouan,532.5815342779892,32.15587370939881 +2083-02-01,Kesrouan,533.7513050849686,32.11781046625464 +2083-03-01,Kesrouan,535.6164752358867,32.02407081029912 +2083-04-01,Kesrouan,543.835891079033,32.3537085904322 +2083-05-01,Kesrouan,526.7996867416648,32.85368242939114 +2083-06-01,Kesrouan,471.2943390450362,29.650174068123306 +2083-07-01,Kesrouan,532.0067610260027,32.19108264441515 +2083-08-01,Kesrouan,563.7625873489121,35.62027279528097 +2083-09-01,Kesrouan,519.2457296372945,33.767635372798125 +2083-10-01,Kesrouan,571.3618152240686,36.13954802273872 +2083-11-01,Kesrouan,550.0664878297498,35.00229768127965 +2083-12-01,Kesrouan,546.8468651582789,34.958578034833266 +2084-01-01,Kesrouan,544.9829185417063,34.87844855543875 +2084-02-01,Kesrouan,544.2505252769663,34.811772613744466 +2084-03-01,Kesrouan,543.96479402097,34.7421205336973 +2084-04-01,Kesrouan,543.887495439373,34.66691647625511 +2084-05-01,Kesrouan,543.8866317680702,34.587135083217625 +2084-06-01,Kesrouan,543.9370125940645,34.50359435752395 +2084-07-01,Kesrouan,543.8677749446265,34.423081983136626 +2084-08-01,Kesrouan,541.9768385998428,33.58631718940711 +2084-09-01,Kesrouan,542.2332770041539,33.63604132551268 +2084-10-01,Kesrouan,531.9740854617148,32.17367832656229 +2084-11-01,Kesrouan,603.6592354264171,32.63149890768164 +2084-12-01,Kesrouan,531.6573340114278,32.174914033129866 +2085-01-01,Kesrouan,535.5786896163909,32.27410124057323 +2085-02-01,Kesrouan,590.0134447606404,33.54496453018869 +2085-03-01,Kesrouan,603.3633560326132,31.76740933492307 +2085-04-01,Kesrouan,602.02495340377,30.64328184912506 +2085-05-01,Kesrouan,589.6050721796521,30.1416371956522 +2085-06-01,Kesrouan,587.9163068923228,32.75635748395801 +2085-07-01,Kesrouan,481.90670017769537,30.973528780382985 +2085-08-01,Kesrouan,571.0448478559557,36.00229757215112 +2085-09-01,Kesrouan,559.290425370614,34.276694265676255 +2085-10-01,Kesrouan,576.1817488469444,33.18718396808758 +2085-11-01,Kesrouan,596.4561447887929,31.68849815777827 +2085-12-01,Kesrouan,606.7615427459297,30.514350662471138 +2086-01-01,Kesrouan,595.0233860701233,30.42353493191492 +2086-02-01,Kesrouan,569.5437871317596,31.42839062746732 +2086-03-01,Kesrouan,576.698872039472,30.09816120965578 +2086-04-01,Kesrouan,570.6392822067015,30.670693649743313 +2086-05-01,Kesrouan,564.2099690837415,31.829333897843547 +2086-06-01,Kesrouan,563.3421233696854,31.90805362749203 +2086-07-01,Kesrouan,562.4497349961091,31.878118200785096 +2086-08-01,Kesrouan,488.19271583700566,30.220513564161394 +2086-09-01,Kesrouan,471.71523485991435,29.97565221628957 +2017-01-01,Tripoli,540.5409130863964,33.524914756022234 +2017-02-01,Tripoli,532.7003610547272,32.18694041676614 +2017-03-01,Tripoli,432.84815494790746,29.63377920070592 +2017-04-01,Tripoli,488.25612370515,29.521295094422918 +2017-05-01,Tripoli,557.2585666582636,30.45465385223584 +2017-06-01,Tripoli,544.4103044679769,34.62439772774063 +2017-07-01,Tripoli,492.7984589767971,29.464069697322767 +2017-08-01,Tripoli,591.3439304025414,32.03371280238963 +2017-09-01,Tripoli,603.1363544252046,30.752198070248248 +2017-10-01,Tripoli,593.0904896945472,30.016430533018802 +2017-11-01,Tripoli,585.3468127940042,29.71406531896114 +2017-12-01,Tripoli,578.0238877631223,29.53809026115092 +2018-01-01,Tripoli,571.9006021717736,29.408932818364896 +2018-02-01,Tripoli,571.6453873018081,29.3910237752943 +2018-03-01,Tripoli,570.3008670012371,29.466541110457854 +2018-04-01,Tripoli,564.1123742265298,30.224708004763926 +2018-05-01,Tripoli,544.6441434731989,34.525488989382836 +2018-06-01,Tripoli,594.8890851825442,32.646797303074294 +2018-07-01,Tripoli,565.5721226734107,36.23337470028349 +2018-08-01,Tripoli,548.5164857317302,34.87040776059071 +2018-09-01,Tripoli,546.7933175375078,34.684251176836575 +2018-10-01,Tripoli,545.6747912278255,34.54002159478999 +2018-11-01,Tripoli,545.6824203243332,34.41587659554554 +2018-12-01,Tripoli,545.8820003678792,34.29122687108341 +2019-01-01,Tripoli,546.5921540965733,34.1523926275712 +2019-02-01,Tripoli,547.5696140934716,33.99150711333941 +2019-03-01,Tripoli,548.9423476565994,33.80583785048515 +2019-04-01,Tripoli,552.1984604406118,33.53619275399087 +2019-05-01,Tripoli,544.3909438362732,34.713177153108035 +2019-06-01,Tripoli,478.0293198365646,30.813287225911765 +2019-07-01,Tripoli,545.1738618722247,34.407748779108296 +2019-08-01,Tripoli,546.3341322948739,34.25314622362137 +2019-09-01,Tripoli,542.6487748733898,34.69187426805614 +2019-10-01,Tripoli,560.3060308500509,32.33458124511195 +2019-11-01,Tripoli,550.8524287152609,32.44078239265002 +2019-12-01,Tripoli,472.25675676674456,29.37873632689019 +2020-01-01,Tripoli,562.4105818970504,36.3789966277583 +2020-02-01,Tripoli,526.7656436978143,34.16361841258626 +2020-03-01,Tripoli,571.5827711323581,36.09067669820792 +2020-04-01,Tripoli,568.8142007987533,34.207738358343256 +2020-05-01,Tripoli,503.4764591284661,32.757993489836196 +2020-06-01,Tripoli,571.1498558918497,36.15618655060608 +2020-07-01,Tripoli,549.258667271235,34.90145706364024 +2020-08-01,Tripoli,546.5833734383286,34.85850320717935 +2020-09-01,Tripoli,544.7867212107627,34.77799083279203 +2020-10-01,Tripoli,544.0333119443222,34.71674503826786 +2020-11-01,Tripoli,543.6735208741143,34.655098944433064 +2020-12-01,Tripoli,543.5414511374006,34.5875527868461 +2021-01-01,Tripoli,543.6629409006553,34.50620500520188 +2021-02-01,Tripoli,544.2162663152902,34.39760206180006 +2021-03-01,Tripoli,545.7416537811807,34.232765767415685 +2021-04-01,Tripoli,550.6195973265586,35.00684020823921 +2021-05-01,Tripoli,547.0173682679651,34.96324239201786 +2021-06-01,Tripoli,544.9418941548251,34.897889178480355 +2021-07-01,Tripoli,543.987537365276,34.85328191182348 +2021-08-01,Tripoli,543.4660958162349,34.813112746219105 +2021-09-01,Tripoli,543.1296958438099,34.77336128424321 +2021-10-01,Tripoli,542.8771439603613,34.7326873934211 +2021-11-01,Tripoli,544.555977027709,34.79435089157375 +2021-12-01,Tripoli,545.2714567294367,34.867153153152245 +2022-01-01,Tripoli,547.1894547750403,34.95196439404917 +2022-02-01,Tripoli,550.6361510265283,35.00814553207818 +2022-03-01,Tripoli,451.4889885931946,30.013228138533876 +2022-04-01,Tripoli,481.6002408104327,29.684669426107668 +2022-05-01,Tripoli,556.3318473504024,32.23020755094832 +2022-06-01,Tripoli,546.821962635716,31.555912064375214 +2022-07-01,Tripoli,541.5499690584538,31.664010282559303 +2022-08-01,Tripoli,539.2673577778687,31.77337901594664 +2022-09-01,Tripoli,538.2817648762029,31.810310978430362 +2022-10-01,Tripoli,538.4888300710394,31.785266165040134 +2022-11-01,Tripoli,515.0666401210664,28.029797267386822 +2022-12-01,Tripoli,655.5018970732592,31.61148405127937 +2023-01-01,Tripoli,577.2257115341554,33.233618688118966 +2023-02-01,Tripoli,494.37192414520825,31.34916617260116 +2023-03-01,Tripoli,578.0711737669483,35.544442182396054 +2023-04-01,Tripoli,558.4291291639372,34.10660186730034 +2023-05-01,Tripoli,555.1340791986919,33.96472186816386 +2023-06-01,Tripoli,551.6524762320505,33.918635234489514 +2023-07-01,Tripoli,549.342443387603,33.92171579874945 +2023-08-01,Tripoli,547.5627766956579,33.8428046216046 +2023-09-01,Tripoli,547.212054174129,33.77021121184033 +2023-10-01,Tripoli,547.8573605825076,33.654194029033235 +2023-11-01,Tripoli,549.4709144938884,33.47475551197026 +2023-12-01,Tripoli,581.3948688304017,32.98663401346914 +2024-01-01,Tripoli,511.92129318163296,29.23763952205708 +2024-02-01,Tripoli,706.072874699396,31.904416125060763 +2024-03-01,Tripoli,550.3230701792779,29.926867913348023 +2024-04-01,Tripoli,583.1571181510742,32.90880190403115 +2024-05-01,Tripoli,501.30518947332826,29.681971756840476 +2024-06-01,Tripoli,485.64423774038767,31.17273860252673 +2024-07-01,Tripoli,557.809445004207,34.29382011444348 +2024-08-01,Tripoli,571.611776093609,36.11194477462409 +2024-09-01,Tripoli,525.4524314819682,34.122474605182134 +2024-10-01,Tripoli,562.5774144037003,36.26245731541561 +2024-11-01,Tripoli,617.7793255826258,31.486468836142286 +2024-12-01,Tripoli,633.2863279058497,31.05642554631614 +2025-01-01,Tripoli,542.5331868640374,34.51120004442565 +2025-02-01,Tripoli,542.4535851589661,34.64999947930218 +2025-03-01,Tripoli,542.6514378599067,34.568529867432915 +2025-04-01,Tripoli,525.5465716539691,30.395618406078928 +2025-05-01,Tripoli,504.88460321500713,28.90177099613273 +2025-06-01,Tripoli,542.7966066113788,34.62276172186244 +2025-07-01,Tripoli,542.9951070657967,34.67347790408567 +2025-08-01,Tripoli,543.2758722118022,34.721339778181004 +2025-09-01,Tripoli,543.7265646866255,34.76744381617323 +2025-10-01,Tripoli,544.5744739881097,34.815967054347 +2025-11-01,Tripoli,523.1972417652456,28.57631025228433 +2025-12-01,Tripoli,546.4345340838197,34.889395871368166 +2026-01-01,Tripoli,549.0974486280534,34.9285903951728 +2026-02-01,Tripoli,571.0585946241915,36.191517315847335 +2026-03-01,Tripoli,502.7355730959155,32.770298342558114 +2026-04-01,Tripoli,568.954187522409,34.182519501774465 +2026-05-01,Tripoli,611.7528431497949,31.564300945580282 +2026-06-01,Tripoli,609.2537382626513,30.800616882514845 +2026-07-01,Tripoli,586.8934321794211,32.27888742798281 +2026-08-01,Tripoli,567.7906783323747,33.544529422242405 +2026-09-01,Tripoli,572.9412541189903,35.91877425077526 +2026-10-01,Tripoli,548.2522023130857,33.89752379693399 +2026-11-01,Tripoli,566.9236243170126,31.933742400642842 +2026-12-01,Tripoli,543.6573990097961,33.67443525069608 +2027-01-01,Tripoli,554.6111981974796,33.112815317902346 +2027-02-01,Tripoli,555.7359141514983,32.97157927852639 +2027-03-01,Tripoli,448.2084051222709,28.51048712216481 +2027-04-01,Tripoli,548.0365723778302,35.69370161230212 +2027-05-01,Tripoli,550.7097070324801,34.985032597969635 +2027-06-01,Tripoli,545.8034782519367,34.54002159478999 +2027-07-01,Tripoli,544.2523245921805,34.4456205747561 +2027-08-01,Tripoli,543.5166205874464,34.377012753780136 +2027-09-01,Tripoli,543.1874178758776,34.310458642310834 +2027-10-01,Tripoli,543.2376547566547,34.231721508344485 +2027-11-01,Tripoli,543.6083136907558,34.13258651385465 +2027-12-01,Tripoli,545.1181550731969,33.97727038133575 +2028-01-01,Tripoli,555.1924489842368,33.17045841863097 +2028-02-01,Tripoli,548.5346228290882,33.71343832700433 +2028-03-01,Tripoli,502.6093331404954,31.599544689232285 +2028-04-01,Tripoli,540.5892786793509,30.848182883206743 +2028-05-01,Tripoli,554.7932888971446,29.816472325207354 +2028-06-01,Tripoli,558.9446689590761,29.38280893726774 +2028-07-01,Tripoli,568.2996686201342,29.46333871597293 +2028-08-01,Tripoli,585.0641043875676,29.70820006384475 +2028-09-01,Tripoli,597.3014630763689,30.189620899972574 +2028-10-01,Tripoli,587.651735583244,31.192910206918235 +2028-11-01,Tripoli,574.4544062414253,32.60826414334805 +2028-12-01,Tripoli,558.3850099548879,34.49983502486776 +2029-01-01,Tripoli,481.69128616026535,30.52787381744276 +2029-02-01,Tripoli,595.016188809267,33.52416637035453 +2029-03-01,Tripoli,511.72344048069243,29.18523512100213 +2029-04-01,Tripoli,556.7079762027544,33.196791151542364 +2029-05-01,Tripoli,558.393214832264,33.227109473241995 +2029-06-01,Tripoli,560.5782312556373,33.3401157090606 +2029-07-01,Tripoli,526.7301612017927,29.47806276887646 +2029-08-01,Tripoli,498.5212889740998,29.501401959117104 +2029-09-01,Tripoli,597.1283689527743,32.059854087804595 +2029-10-01,Tripoli,600.5816866842501,30.85408294695886 +2029-11-01,Tripoli,584.7694485281094,30.391215113662152 +2029-12-01,Tripoli,574.1533448198049,30.642846741178715 +2030-01-01,Tripoli,567.1878357630485,31.215849097848267 +2030-02-01,Tripoli,562.2345368965048,31.69747878579033 +2030-03-01,Tripoli,559.4869825646006,31.943454010004743 +2030-04-01,Tripoli,560.7456395431554,31.921942273138605 +2030-05-01,Tripoli,560.4388203128501,31.806969349402646 +2030-06-01,Tripoli,586.6790977511196,32.78975636991764 +2030-07-01,Tripoli,482.7573444383051,29.957899812079624 +2030-08-01,Tripoli,543.6155109516124,33.07422994522257 +2030-09-01,Tripoli,549.0242524851444,30.362637223747775 +2030-10-01,Tripoli,567.2571453850946,29.041318816676903 +2030-11-01,Tripoli,447.67069776369436,29.899978242265362 +2030-12-01,Tripoli,455.3571564404295,28.31341803111693 +2031-01-01,Tripoli,517.3935865285264,28.653637636504588 +2031-02-01,Tripoli,533.879776191254,30.60943045090128 +2031-03-01,Tripoli,514.1302045110492,28.253477560431726 +2031-04-01,Tripoli,570.4803666869939,33.934229503285664 +2031-05-01,Tripoli,500.38537953588946,32.478445336483645 +2031-06-01,Tripoli,573.2163334289194,36.02876953960531 +2031-07-01,Tripoli,554.6644579278162,34.541901261118085 +2031-08-01,Tripoli,557.9756297573797,34.12398878083534 +2031-09-01,Tripoli,560.4920080705784,33.648903116405975 +2031-10-01,Tripoli,598.8828452317218,31.272639387002133 +2031-11-01,Tripoli,497.7413218150992,29.585430005710712 +2031-12-01,Tripoli,602.4498796847279,30.250501203821855 +2032-01-01,Tripoli,564.621292541681,29.521068838290816 +2032-02-01,Tripoli,579.8298244571927,33.067912177841976 +2032-03-01,Tripoli,566.1570440632048,31.69746138147247 +2032-04-01,Tripoli,560.9866038366256,32.03907333228829 +2032-05-01,Tripoli,559.4773382350531,32.217606824822916 +2032-06-01,Tripoli,559.8530352517535,32.30548122566198 +2032-07-01,Tripoli,562.0797957880934,32.284265362199335 +2032-08-01,Tripoli,520.5341113031864,28.713177807879177 +2032-09-01,Tripoli,571.7207426229738,32.449484551576454 +2032-10-01,Tripoli,548.6846857179428,31.471831804828074 +2032-11-01,Tripoli,480.9911366241616,28.939607983144803 +2032-12-01,Tripoli,612.4832931541039,33.72523845450857 +2033-01-01,Tripoli,548.7157778848423,33.32633148932115 +2033-02-01,Tripoli,608.281388320961,30.14553576285124 +2033-03-01,Tripoli,625.034308471024,30.133927082843435 +2033-04-01,Tripoli,500.0288272330667,28.327411102670624 +2033-05-01,Tripoli,608.9824735009761,34.34136871081751 +2033-06-01,Tripoli,619.2636886616355,30.782638222172857 +2033-07-01,Tripoli,606.3186952854397,31.791148824474387 +2033-08-01,Tripoli,571.3585764566833,33.6671602458336 +2033-09-01,Tripoli,578.7818313039025,35.65974578817122 +2033-10-01,Tripoli,499.17983834245393,32.05529415652717 +2033-11-01,Tripoli,572.33761985097,33.68865457838187 +2033-12-01,Tripoli,601.6637948539994,33.513393097603625 +2034-01-01,Tripoli,632.1681614592103,30.572724744549603 +2034-02-01,Tripoli,595.7300851136064,30.665716014837415 +2034-03-01,Tripoli,494.1376533043346,28.450738098975982 +2034-04-01,Tripoli,570.340739826381,29.4648877002618 +2034-05-01,Tripoli,571.6194771627252,33.777346982160026 +2034-06-01,Tripoli,499.1219723651691,32.255043512524374 +2034-07-01,Tripoli,575.1922694244163,35.88922171906113 +2034-08-01,Tripoli,554.7960958288786,29.19322370289664 +2034-09-01,Tripoli,650.806907898849,38.00882397308886 +2034-10-01,Tripoli,561.4572327240211,37.31606250527383 +2034-11-01,Tripoli,535.0045641178815,34.5796512265409 +2034-12-01,Tripoli,572.1300508478732,36.01787443662942 +2035-01-01,Tripoli,552.2330072927223,34.93553471799611 +2035-02-01,Tripoli,549.4804868508272,34.786971460804146 +2035-03-01,Tripoli,549.1585533727236,34.57754530408071 +2035-04-01,Tripoli,550.4460713673127,34.34290029078852 +2035-05-01,Tripoli,553.9218445526601,34.02407059204208 +2035-06-01,Tripoli,560.7988273008839,33.52742097779305 +2035-07-01,Tripoli,575.821885804128,32.633900703545336 +2035-08-01,Tripoli,606.1538060392211,31.06270850506101 +2035-09-01,Tripoli,618.6965445061567,31.818038495557047 +2035-10-01,Tripoli,557.2813819751782,29.123658644438734 +2035-11-01,Tripoli,565.7521981400361,29.315262779680836 +2035-12-01,Tripoli,572.2575863102475,29.507824152404822 +2036-01-01,Tripoli,548.5868029702967,33.523104706965526 +2036-02-01,Tripoli,548.6363201249883,33.43319400093766 +2036-03-01,Tripoli,435.498906121294,28.459388044948824 +2036-04-01,Tripoli,569.6576477985068,29.716258263010594 +2036-05-01,Tripoli,502.2689027019911,28.8964626791876 +2036-06-01,Tripoli,426.48433689874037,29.37629972239077 +2036-07-01,Tripoli,418.9190081222172,31.2609958983586 +2036-08-01,Tripoli,627.0689741151087,30.84148222083339 +2036-09-01,Tripoli,592.3432700724429,32.55330130756876 +2036-10-01,Tripoli,563.2058072490663,34.11441640601629 +2036-11-01,Tripoli,588.3053188416075,29.88163409124843 +2036-12-01,Tripoli,642.5963446865559,31.818821689860414 +2037-01-01,Tripoli,628.3975164965786,31.869102764137306 +2037-02-01,Tripoli,549.1800012100755,33.58325402946497 +2037-03-01,Tripoli,594.9311171859451,34.04718352615068 +2037-04-01,Tripoli,564.7543698949144,35.22559507933174 +2037-05-01,Tripoli,516.3900724473283,33.429834967592086 +2037-06-01,Tripoli,574.655857572794,35.89524361303823 +2037-07-01,Tripoli,564.6299292547087,34.17889940366111 +2037-08-01,Tripoli,602.2811039176468,32.25041396397549 +2037-09-01,Tripoli,628.0522638933005,31.12868827404118 +2037-10-01,Tripoli,631.4582236483418,37.219120454833444 +2037-11-01,Tripoli,490.63971255554947,29.69586040248705 +2037-12-01,Tripoli,591.8506175668272,32.682685006486885 +2038-01-01,Tripoli,527.8820828018484,31.151313887249913 +2038-02-01,Tripoli,510.4459986513023,29.45663805359958 +2038-03-01,Tripoli,595.5472027152471,32.052335422492206 +2038-04-01,Tripoli,487.1980543866608,29.030562948243862 +2038-05-01,Tripoli,509.53885589297033,29.202743864762105 +2038-06-01,Tripoli,505.6891130335278,31.98553765057294 +2038-07-01,Tripoli,582.4925230836006,34.03268572937925 +2038-08-01,Tripoli,570.8327445785196,32.55084729875147 +2038-09-01,Tripoli,563.5399040980174,32.4383283838328 +2038-10-01,Tripoli,557.245323698288,32.62763514911827 +2038-11-01,Tripoli,552.8279328751065,32.825400412880256 +2038-12-01,Tripoli,550.1416272330896,32.94167866045518 +2039-01-01,Tripoli,548.4568204392315,32.98245697718441 +2039-02-01,Tripoli,546.9645403732799,32.99148981815007 +2039-03-01,Tripoli,546.3322610070512,32.96708896452036 +2039-04-01,Tripoli,573.574037293479,33.55135191484068 +2039-05-01,Tripoli,476.78980757188725,29.524862979582736 +2039-06-01,Tripoli,595.8777009337698,31.076336085939815 +2039-07-01,Tripoli,586.7376834544901,30.6942416917982 +2039-08-01,Tripoli,578.3168882525835,30.79207136244913 +2039-09-01,Tripoli,545.3365199675778,33.64117559927929 +2039-10-01,Tripoli,547.9681983996952,33.58261006970445 +2039-11-01,Tripoli,551.5570405530957,33.514472165310494 +2039-12-01,Tripoli,556.8959686563217,33.49553626748662 +2040-01-01,Tripoli,571.2611975172972,34.36183618861246 +2040-02-01,Tripoli,502.7373724111295,30.97982914344572 +2040-03-01,Tripoli,508.2778238183327,28.979463871027875 +2040-04-01,Tripoli,581.9200529550881,30.841325581972683 +2040-05-01,Tripoli,574.1252755024652,31.387455671877436 +2040-06-01,Tripoli,569.1405246059795,31.748560458688456 +2040-07-01,Tripoli,551.1621988225176,32.18930740399417 +2040-08-01,Tripoli,531.4790578600164,32.186748969269765 +2040-09-01,Tripoli,531.198148768794,32.18208461208522 +2040-10-01,Tripoli,531.0058379587128,32.17352168770158 +2040-11-01,Tripoli,543.6349435559243,34.30130397112019 +2040-12-01,Tripoli,567.7166185181629,32.02340944622074 +2041-01-01,Tripoli,569.1467142503158,32.15190552492838 +2041-02-01,Tripoli,570.28568078083,32.42087185302635 +2041-03-01,Tripoli,569.2360322575429,32.93731017667413 +2041-04-01,Tripoli,572.3662649491782,34.34112505036755 +2041-05-01,Tripoli,523.3957422196632,33.54604359789556 +2041-06-01,Tripoli,498.25131971937884,29.336583069050597 +2041-07-01,Tripoli,587.5036159548208,30.64107150075774 +2041-08-01,Tripoli,576.340880284478,31.232365795490637 +2041-09-01,Tripoli,572.7999718883806,31.525576338357663 +2041-10-01,Tripoli,569.8427613477317,31.549750935855265 +2041-11-01,Tripoli,571.9321981469327,31.2031787544514 +2041-12-01,Tripoli,494.62519575474244,32.13135102554412 +2042-01-01,Tripoli,571.6089691618749,36.126390358441995 +2042-02-01,Tripoli,550.972550998953,34.7247858331159 +2042-03-01,Tripoli,552.2439471292239,34.46191101626636 +2042-04-01,Tripoli,587.6772138866754,32.660129010549554 +2042-05-01,Tripoli,615.8942190191358,30.936614222217067 +2042-06-01,Tripoli,608.117866554305,30.977671008031933 +2042-07-01,Tripoli,597.2552566616714,34.42163742475487 +2042-08-01,Tripoli,561.2018019362298,37.77670258588535 +2042-09-01,Tripoli,538.1381075495106,34.80188696120399 +2042-10-01,Tripoli,571.9753097394622,36.06202919102209 +2042-11-01,Tripoli,551.6318920660015,35.04117892736292 +2042-12-01,Tripoli,547.7590459992101,34.96364269132848 +2043-01-01,Tripoli,545.8108194580101,34.86659621498092 +2043-02-01,Tripoli,545.053667615924,34.78437821744407 +2043-03-01,Tripoli,544.7702394834017,34.70263013648918 +2043-04-01,Tripoli,544.8576142301977,34.61026542164409 +2043-05-01,Tripoli,545.1203862240623,34.504847468409324 +2043-06-01,Tripoli,545.5694953014973,34.386271850877826 +2043-07-01,Tripoli,545.9679356625036,34.26224868185841 +2043-08-01,Tripoli,480.9584610598737,30.02760410508032 +2043-09-01,Tripoli,567.6995610099334,35.52872608337496 +2043-10-01,Tripoli,559.4600648089979,34.20434451636196 +2043-11-01,Tripoli,557.2602940008692,33.78975626078912 +2043-12-01,Tripoli,554.431482593897,33.64566591328532 +2044-01-01,Tripoli,552.1737738358747,33.61083987326174 +2044-02-01,Tripoli,578.4618410862299,30.116139869997824 +2044-03-01,Tripoli,572.9370797076937,29.93228065620021 +2044-04-01,Tripoli,500.5304043421445,28.504064928877153 +2044-05-01,Tripoli,453.01092137387445,29.06867840434157 +2044-06-01,Tripoli,550.0703743506119,33.609882635779854 +2044-07-01,Tripoli,587.1450484189583,34.78484813402609 +2044-08-01,Tripoli,542.800205241807,33.66837854808331 +2044-09-01,Tripoli,494.59359977958326,30.509790731193654 +2044-10-01,Tripoli,604.9928158904864,32.637625227565806 +2044-11-01,Tripoli,558.2630883559815,33.93731006754561 +2044-12-01,Tripoli,573.8562418916556,32.98924466114708 +2045-01-01,Tripoli,599.7483878223042,31.466157997208057 +2045-02-01,Tripoli,611.5004352115634,30.470770250567536 +2045-03-01,Tripoli,595.8324301629835,32.4354044584335 +2045-04-01,Tripoli,552.884215455003,30.098439678741467 +2045-05-01,Tripoli,547.0460133661734,29.021582320231744 +2045-06-01,Tripoli,543.8557555189966,34.36904157620354 +2045-07-01,Tripoli,544.0438199451725,34.43836297421142 +2045-08-01,Tripoli,515.5908886018415,28.723028651783864 +2045-09-01,Tripoli,576.8603785730879,30.521817114829993 +2045-10-01,Tripoli,574.3792668380852,30.785144443943672 +2045-11-01,Tripoli,572.9616223672137,30.936718648124188 +2045-12-01,Tripoli,573.9998272457394,30.947056812928807 +2046-01-01,Tripoli,581.8122379874603,31.0767711938861 +2046-02-01,Tripoli,576.2663886346149,31.282629465449666 +2046-03-01,Tripoli,487.24965874700075,29.09694301653465 +2046-04-01,Tripoli,467.192188247362,29.70339647211736 +2046-05-01,Tripoli,544.2703177443211,34.50813688448356 +2046-06-01,Tripoli,544.530930559929,34.580538846751395 +2046-07-01,Tripoli,544.8810053279808,34.65288859606575 +2046-08-01,Tripoli,545.7108495047157,34.7221577811201 +2046-09-01,Tripoli,547.6803799380505,34.805541867953124 +2046-10-01,Tripoli,551.1566569316581,34.86864992448759 +2046-11-01,Tripoli,571.923921296948,35.98980127193278 +2046-12-01,Tripoli,523.6563550352711,33.825487325340994 +2047-01-01,Tripoli,563.1601046426287,35.9154674303832 +2047-02-01,Tripoli,581.9132155572747,32.96223315983944 +2047-03-01,Tripoli,548.5389411856021,32.279879474100426 +2047-04-01,Tripoli,564.0843768817988,35.48121229563667 +2047-05-01,Tripoli,487.26865951566134,30.133352740354248 +2047-06-01,Tripoli,564.732202331477,31.724838373454997 +2047-07-01,Tripoli,559.6659064694888,33.065788851063914 +2047-08-01,Tripoli,567.5199173789595,31.540056730811227 +2047-09-01,Tripoli,571.166121701385,31.18191067803523 +2047-10-01,Tripoli,572.6237109700089,30.508485407354684 +2047-11-01,Tripoli,575.6179154314596,29.827384832501103 +2047-12-01,Tripoli,593.7129807860113,29.91059487615556 +2048-01-01,Tripoli,617.121208049923,30.509164175750932 +2048-02-01,Tripoli,547.3552796651701,29.702108552596254 +2048-03-01,Tripoli,501.56537045328474,28.608421218722857 +2048-04-01,Tripoli,589.9440631659852,31.330787212948554 +2048-05-01,Tripoli,592.6197168619346,30.68543510696465 +2048-06-01,Tripoli,590.1144223304548,30.236682175446678 +2048-07-01,Tripoli,585.5416426453852,29.94933688769604 +2048-08-01,Tripoli,579.0936886168072,29.773257403978704 +2048-09-01,Tripoli,577.8751923538305,29.743130529775392 +2048-10-01,Tripoli,557.8311807319933,33.322432922122104 +2048-11-01,Tripoli,556.3424992964698,33.57709290094508 +2048-12-01,Tripoli,554.642434309596,33.85188967552378 +2049-01-01,Tripoli,552.8141861068709,34.12619912920266 +2049-02-01,Tripoli,552.4657667088159,34.38239068799665 +2049-03-01,Tripoli,553.5652922498375,34.58569052483587 +2049-04-01,Tripoli,435.9784596121513,28.749518023555964 +2049-05-01,Tripoli,512.4789369527812,28.456655567045964 +2049-06-01,Tripoli,576.0050560929217,29.175767172090193 +2049-07-01,Tripoli,561.7539757891276,31.836974393380974 +2049-08-01,Tripoli,560.7171383901646,31.87239218021149 +2049-09-01,Tripoli,561.7582941456412,32.792175570099204 +2049-10-01,Tripoli,583.4725021217987,32.14879015203271 +2049-11-01,Tripoli,569.3251343469444,36.12183042716451 +2049-12-01,Tripoli,550.9820513832833,34.67417407679979 +2050-01-01,Tripoli,543.4090935102527,32.99960023026951 +2050-02-01,Tripoli,542.7614120057914,32.95687262994072 +2050-03-01,Tripoli,543.2848687878725,32.87190475018309 +2050-04-01,Tripoli,544.2942126503642,32.745810467339155 +2050-05-01,Tripoli,546.529393981906,32.56278666079855 +2050-06-01,Tripoli,550.0310773063364,34.455071119350166 +2050-07-01,Tripoli,549.2162754047913,34.260856336430194 +2050-08-01,Tripoli,548.8202821124761,34.12203949723579 +2050-09-01,Tripoli,548.5999019850553,34.006718487142805 +2050-10-01,Tripoli,548.6132169176393,33.893921103138446 +2050-11-01,Tripoli,573.1492549577383,35.881581223523696 +2050-12-01,Tripoli,548.6910193074964,33.77853047577401 +2051-01-01,Tripoli,549.6517096865994,33.50956414767598 +2051-02-01,Tripoli,511.29412387061217,28.537550836426043 +2051-03-01,Tripoli,567.0277686816037,32.39864653912829 +2051-04-01,Tripoli,443.6503078493482,29.739214558258546 +2051-05-01,Tripoli,465.586767240749,28.172547482415926 +2051-06-01,Tripoli,553.4495602952678,28.704858543945498 +2051-07-01,Tripoli,566.1897196274924,29.96500077376359 +2051-08-01,Tripoli,569.3730681042473,34.109525792699586 +2051-09-01,Tripoli,505.9495099313099,32.372522658031144 +2051-10-01,Tripoli,581.887305418192,35.462119758952085 +2051-11-01,Tripoli,567.3335083227805,33.732722311185285 +2051-12-01,Tripoli,574.166011998912,33.0180488071935 +2052-01-01,Tripoli,549.1318515349467,33.65010401433783 +2052-02-01,Tripoli,440.1724474583522,29.153942157502698 +2052-03-01,Tripoli,501.9329345652174,28.5549551542789 +2052-04-01,Tripoli,487.7976581886017,29.0721070549586 +2052-05-01,Tripoli,543.8800102880823,34.29827561981384 +2052-06-01,Tripoli,541.7314839772507,33.793828871166674 +2052-07-01,Tripoli,543.3188398591144,34.240301837045934 +2052-08-01,Tripoli,543.0672236195769,34.17914306411102 +2052-09-01,Tripoli,541.9845396689593,33.84611144199664 +2052-10-01,Tripoli,542.366426329996,33.88541039170839 +2052-11-01,Tripoli,543.0986036769106,33.898968355315745 +2052-12-01,Tripoli,544.4632043352708,33.873488433979176 +2053-01-01,Tripoli,546.7365311493513,33.772264921347 +2053-02-01,Tripoli,551.1449973690708,33.50533489843778 +2053-03-01,Tripoli,560.2318270906223,33.07005290893784 +2053-04-01,Tripoli,575.730264673427,32.95046784097087 +2053-05-01,Tripoli,544.7751336207841,34.37327082544174 +2053-06-01,Tripoli,573.2179168263078,32.65480328928662 +2053-07-01,Tripoli,542.939472239377,34.11062226472437 +2053-08-01,Tripoli,542.8747688642786,34.037680768603025 +2053-09-01,Tripoli,493.91900051951944,28.933934175524787 +2053-10-01,Tripoli,570.3303037981395,30.880293849645213 +2053-11-01,Tripoli,597.649522611381,31.06100288191143 +2053-12-01,Tripoli,584.2406657729948,30.72922437068243 +2054-01-01,Tripoli,580.1654327309235,30.78721555776815 +2054-02-01,Tripoli,577.6220646895133,30.84357073897573 +2054-03-01,Tripoli,575.5894142784687,30.867327632844855 +2054-04-01,Tripoli,575.9638877608234,30.81360050363307 +2054-05-01,Tripoli,576.5452824927979,30.673008424017755 +2054-06-01,Tripoli,575.1268463232323,30.55055164360502 +2054-07-01,Tripoli,494.2870684397121,28.467602882975378 +2054-08-01,Tripoli,481.744905753645,31.065719452049564 +2054-09-01,Tripoli,546.1331127991566,34.490401884591485 +2054-10-01,Tripoli,542.6065989247719,35.59303503784122 +2054-11-01,Tripoli,571.6560392478755,34.07610950242214 +2054-12-01,Tripoli,585.9262642655474,32.88572377855827 +2055-01-01,Tripoli,594.6802926451021,31.57815478259113 +2055-02-01,Tripoli,599.9383955089113,30.63590241835546 +2055-03-01,Tripoli,592.7410626799724,30.077902583675076 +2055-04-01,Tripoli,448.4924810082701,28.78326499587262 +2055-05-01,Tripoli,518.9294819952676,28.613242214768107 +2055-06-01,Tripoli,582.2429940497118,29.389057087376948 +2055-07-01,Tripoli,580.5414896106665,29.74607185949255 +2055-08-01,Tripoli,485.5613252953227,29.8821214121483 +2055-09-01,Tripoli,543.49488485966,35.439250485293385 +2055-10-01,Tripoli,553.7504057990625,34.90667835899605 +2055-11-01,Tripoli,551.4486498045994,35.050385811507084 +2055-12-01,Tripoli,548.627971302395,34.29533429009669 +2056-01-01,Tripoli,546.7525090684525,34.034165096396734 +2056-02-01,Tripoli,546.4952789654471,33.93720564163849 +2056-03-01,Tripoli,546.5110409667225,33.83603434195985 +2056-04-01,Tripoli,546.1807586660254,33.74666316978545 +2056-05-01,Tripoli,545.9798111429167,33.66510653632699 +2056-06-01,Tripoli,546.2381928076591,33.56600635047282 +2056-07-01,Tripoli,576.2750973202511,29.620360471641355 +2056-08-01,Tripoli,576.5906972088012,29.597734858432688 +2056-09-01,Tripoli,575.5047025181896,29.555233514236008 +2056-10-01,Tripoli,571.1402115623023,29.50333383839879 +2056-11-01,Tripoli,509.9537060087293,32.78857287630366 +2056-12-01,Tripoli,484.9476148621036,29.970726794337196 +2057-01-01,Tripoli,547.427971999819,34.14276803979856 +2057-02-01,Tripoli,542.6132204047597,33.97142253053722 +2057-03-01,Tripoli,587.2115511092709,32.774388357253585 +2057-04-01,Tripoli,547.7740882743999,32.99869520574116 +2057-05-01,Tripoli,437.9213601803179,30.076875728921742 +2057-06-01,Tripoli,550.7140253889938,30.544930048938596 +2057-07-01,Tripoli,548.0020255257198,30.6718771433573 +2057-08-01,Tripoli,576.1833322443329,31.34119499502451 +2057-09-01,Tripoli,595.4326942950229,30.17674170476141 +2057-10-01,Tripoli,602.5638123240835,30.52977088808872 +2057-11-01,Tripoli,589.4331296177943,31.65717038564311 +2057-12-01,Tripoli,571.2711297372789,32.809475462044944 +2058-01-01,Tripoli,559.4450945064168,33.60568819517732 +2058-02-01,Tripoli,552.341182123393,34.122230944732166 +2058-03-01,Tripoli,549.9586728621217,34.46201544217348 +2058-04-01,Tripoli,550.2405895698643,34.74295594095426 +2058-05-01,Tripoli,566.3610864084817,36.122631025785736 +2058-06-01,Tripoli,479.10610203328,30.720435190166747 +2058-07-01,Tripoli,594.4631512850665,32.650661061637614 +2058-08-01,Tripoli,551.3597636330237,33.89637511195568 +2058-09-01,Tripoli,547.3363508691177,34.205493201340275 +2058-10-01,Tripoli,545.5302702298304,34.401256968549184 +2058-11-01,Tripoli,544.5305706968859,34.53936023071155 +2058-12-01,Tripoli,544.3289034476918,34.63807752157297 +2059-01-01,Tripoli,544.4146228244904,34.721339778181004 +2059-02-01,Tripoli,545.0985785236677,34.79468157361297 +2059-03-01,Tripoli,546.8397398700312,34.88372206374815 +2059-04-01,Tripoli,549.7136781025724,34.932471558053976 +2059-05-01,Tripoli,571.3350414136833,36.13841674207828 +2059-06-01,Tripoli,448.6266379506322,28.20497172657581 +2059-07-01,Tripoli,530.724640977056,28.37760515535826 +2059-08-01,Tripoli,540.8395274393257,34.94745667572528 +2059-09-01,Tripoli,561.0790886386294,38.150216651325465 +2059-10-01,Tripoli,521.6193862677123,29.529614358356596 +2059-11-01,Tripoli,611.7608321093454,30.38601122262415 +2059-12-01,Tripoli,595.107665994751,29.73420211471692 +2060-01-01,Tripoli,572.6690537134039,29.410708058785872 +2060-02-01,Tripoli,563.7203394276856,29.250988633850252 +2060-03-01,Tripoli,560.9208928450071,29.19158769701845 +2060-04-01,Tripoli,561.1741644545415,29.20269165180858 +2060-05-01,Tripoli,560.3690788551525,29.19083931135075 +2060-06-01,Tripoli,560.2387364610443,29.181493192663797 +2060-07-01,Tripoli,611.4519976460002,30.697548512190245 +2060-08-01,Tripoli,578.343806008186,32.32189349739717 +2060-09-01,Tripoli,559.8821841582215,33.32326832937906 +2060-10-01,Tripoli,577.8715217507938,33.189533550997695 +2060-11-01,Tripoli,552.4305721032285,33.77926145712385 +2060-12-01,Tripoli,550.0288461554712,34.13521456585045 +2061-01-01,Tripoli,550.5139415371877,34.266634569957326 +2061-02-01,Tripoli,551.9275555419797,34.435682709262096 +2061-03-01,Tripoli,553.9763997899513,34.610509082094055 +2061-04-01,Tripoli,573.6427711346566,35.87237433937953 +2061-05-01,Tripoli,517.7119933488107,33.357607048502715 +2061-06-01,Tripoli,564.6991669041464,35.24432212534143 +2061-07-01,Tripoli,434.8672745085424,30.067338162738416 +2061-08-01,Tripoli,478.27863295262785,28.687924142674706 +2061-09-01,Tripoli,561.3615091546319,30.557182688706977 +2061-10-01,Tripoli,558.6713169917525,30.319335280929867 +2061-11-01,Tripoli,553.353116999793,30.3997954423636 +2061-12-01,Tripoli,550.4051189530401,33.99237732923203 +2062-01-01,Tripoli,489.58869655269956,31.659955076499557 +2062-02-01,Tripoli,571.3836948970718,36.083227650166876 +2062-03-01,Tripoli,550.9957981515192,34.67361713862846 +2062-04-01,Tripoli,544.6238471975842,34.47534714964879 +2062-05-01,Tripoli,544.1386078706504,34.58522060825386 +2062-06-01,Tripoli,504.2885260708858,29.135284728764457 +2062-07-01,Tripoli,506.6949302382,32.55290100825814 +2062-08-01,Tripoli,569.8219612638568,34.68355500412247 +2062-09-01,Tripoli,556.722874532727,33.488087219445575 +2062-10-01,Tripoli,555.7372096584522,33.311955522774696 +2062-11-01,Tripoli,556.210141669322,33.11459055832332 +2062-12-01,Tripoli,557.4284939870815,32.89315542228147 +2063-01-01,Tripoli,558.885003666577,32.66279187118107 +2063-02-01,Tripoli,560.4152132972415,32.430513845116856 +2063-03-01,Tripoli,560.7731330796269,32.23951886099961 +2063-04-01,Tripoli,590.5568379552933,32.70275218497121 +2063-05-01,Tripoli,561.1653837962969,32.08387204644154 +2063-06-01,Tripoli,543.9239855519145,34.75493011163701 +2063-07-01,Tripoli,544.0312967112825,34.82700139186568 +2063-08-01,Tripoli,544.3672648480558,34.89207613631749 +2063-09-01,Tripoli,545.2217956295281,34.95189477677778 +2063-10-01,Tripoli,547.3311688413014,35.02248668998895 +2063-11-01,Tripoli,551.3352209735035,35.074177514011936 +2063-12-01,Tripoli,571.8394974271034,36.08623859715542 +2064-01-01,Tripoli,536.8131637984687,34.745966887942814 +2064-02-01,Tripoli,561.2775171204385,37.61694835231401 +2064-03-01,Tripoli,492.21037079222657,30.087718618944095 +2064-04-01,Tripoli,493.89553744912774,32.143812517126804 +2064-05-01,Tripoli,563.0931701166649,34.17480938896564 +2064-06-01,Tripoli,543.9539981296855,34.6754097833673 +2064-07-01,Tripoli,544.8222037067846,33.017770338107866 +2064-08-01,Tripoli,480.69698457296323,30.848043648663896 +2064-09-01,Tripoli,579.5486994481445,33.40195325039182 +2064-10-01,Tripoli,549.8693548548947,34.50618760088402 +2064-11-01,Tripoli,548.8900955427825,34.325983293835534 +2064-12-01,Tripoli,548.6306342889118,34.187236071912594 +2065-01-01,Tripoli,548.4270237792862,34.068347176659735 +2065-02-01,Tripoli,549.0302262116552,33.932506475818215 +2065-03-01,Tripoli,550.8310528505176,33.73463678614911 +2065-04-01,Tripoli,554.2005224930173,33.44306224916022 +2065-05-01,Tripoli,560.8021380408778,32.984162600334 +2065-06-01,Tripoli,510.8951797013459,33.236472996246874 +2065-07-01,Tripoli,566.0482934516655,34.824373339869936 +2065-08-01,Tripoli,572.2002241412226,36.04556470633331 +2065-09-01,Tripoli,552.3536333846743,35.008772087520896 +2065-10-01,Tripoli,574.3489663698799,35.83836630229511 +2065-11-01,Tripoli,550.154798220457,34.820701028802944 +2065-12-01,Tripoli,569.2820947270234,33.50834584542627 +2066-01-01,Tripoli,542.8877239338201,30.804236980628254 +2066-02-01,Tripoli,542.0700431279324,30.820666656681368 +2066-03-01,Tripoli,543.8800822606909,30.73595984169151 +2066-04-01,Tripoli,553.6302835153703,31.286145137655954 +2066-05-01,Tripoli,495.04976217265727,29.946708835700246 +2066-06-01,Tripoli,438.0414104914014,29.83885427796612 +2066-07-01,Tripoli,599.3089950470253,31.835669069542007 +2066-08-01,Tripoli,616.738385744975,30.626469278079192 +2066-09-01,Tripoli,615.106550791019,34.15495106229555 +2066-10-01,Tripoli,644.7504848608556,36.053031158692164 +2066-11-01,Tripoli,629.9390977993962,30.97692262236429 +2066-12-01,Tripoli,554.4493318008206,34.39711474090018 +2067-01-01,Tripoli,567.3100452523888,34.509825103315286 +2067-02-01,Tripoli,505.44087950659303,28.93560499003864 +2067-03-01,Tripoli,517.1971732797572,30.800547265243452 +2067-04-01,Tripoli,504.64946870283075,32.92848618752272 +2067-05-01,Tripoli,568.0561852853646,34.35243785697191 +2067-06-01,Tripoli,572.8910172382132,32.30149563687362 +2067-07-01,Tripoli,566.2525517147683,32.853804259616126 +2067-08-01,Tripoli,561.5611611707864,33.312860547303046 +2067-09-01,Tripoli,557.8005204007452,33.72175759093801 +2067-10-01,Tripoli,555.7534034953792,34.11845420775811 +2067-11-01,Tripoli,554.1420087622553,34.50241086390996 +2067-12-01,Tripoli,570.7640827099506,36.06079348445458 +2068-01-01,Tripoli,430.8541538276611,29.70959240927297 +2068-02-01,Tripoli,476.92835484337166,28.217659474290535 +2068-03-01,Tripoli,482.31528867650917,31.09427993764608 +2068-04-01,Tripoli,486.3892981842351,29.27735617539731 +2068-05-01,Tripoli,560.2124664589186,34.54959396960905 +2068-06-01,Tripoli,577.7328305340923,30.075030871229373 +2068-07-01,Tripoli,577.516624817968,30.132639163322274 +2068-08-01,Tripoli,574.3247835734028,30.005048109143043 +2068-09-01,Tripoli,570.4736732343974,29.661660917906186 +2068-10-01,Tripoli,573.6397482850971,29.534365737130393 +2068-11-01,Tripoli,585.6665870938511,29.75954280151064 +2068-12-01,Tripoli,598.0023323385585,30.17950899130006 +2069-01-01,Tripoli,601.8761140492611,31.09417551173896 +2069-02-01,Tripoli,590.666812101178,32.741616026736615 +2069-03-01,Tripoli,492.4932951164889,29.76631308115539 +2069-04-01,Tripoli,574.4283521571253,33.635658430519925 +2069-05-01,Tripoli,571.0346277455399,36.20951338050719 +2069-06-01,Tripoli,549.0349044312118,34.96731500239542 +2069-07-01,Tripoli,546.2877099623506,34.93912000747379 +2069-08-01,Tripoli,544.4290893188117,34.87392343279699 +2069-09-01,Tripoli,600.3955655185055,30.509860348465047 +2069-10-01,Tripoli,585.1462971065469,31.503612089227378 +2069-11-01,Tripoli,524.7250762998274,29.434082057662245 +2069-12-01,Tripoli,511.1937220816664,28.666917131026302 +2070-01-01,Tripoli,623.1072418767417,30.416747247952312 +2070-02-01,Tripoli,690.9381147076617,32.25018770784345 +2070-03-01,Tripoli,550.5168924141387,29.85557982742273 +2070-04-01,Tripoli,568.4090669851504,34.280749471736 +2070-05-01,Tripoli,546.69802580377,33.87945811500275 +2070-06-01,Tripoli,547.0803443004581,33.95642000854806 +2070-07-01,Tripoli,547.4906601418776,34.04062209832018 +2070-08-01,Tripoli,547.7189572562405,34.13848657760677 +2070-09-01,Tripoli,586.2659749779662,32.26183119648698 +2070-10-01,Tripoli,547.8998963941685,34.260281993941064 +2070-11-01,Tripoli,547.2038492967529,34.57759751703429 +2070-12-01,Tripoli,547.9055102576365,34.75092711853085 +2071-01-01,Tripoli,549.5285645533477,34.86026104328252 +2071-02-01,Tripoli,571.2380223373398,36.1994362804704 +2071-03-01,Tripoli,497.7303819785976,32.4687511314396 +2071-04-01,Tripoli,571.2718494633643,33.8225459956239 +2071-05-01,Tripoli,542.5298041514347,34.59674226667241 +2071-06-01,Tripoli,542.569317113536,34.65459421921533 +2071-07-01,Tripoli,542.7084401658889,34.703935460328154 +2071-08-01,Tripoli,542.8970803729333,34.749082260838485 +2071-09-01,Tripoli,543.167913298957,34.790765602096066 +2071-10-01,Tripoli,543.6082417181473,34.831039193607566 +2071-11-01,Tripoli,547.5162823905262,34.414519058753044 +2071-12-01,Tripoli,608.7672754013719,30.81572383041113 +2072-01-01,Tripoli,605.4838849987138,30.678525592777063 +2072-02-01,Tripoli,588.6455333622862,33.52085954996248 +2072-03-01,Tripoli,547.895218174612,31.124685280935022 +2072-04-01,Tripoli,517.7127850475047,33.69309267943437 +2072-05-01,Tripoli,571.527208278547,36.1398090875065 +2072-06-01,Tripoli,550.2722575176322,34.96818521828804 +2072-07-01,Tripoli,547.5239834596423,34.88784688707929 +2072-08-01,Tripoli,546.1393744161015,34.75811510180408 +2072-09-01,Tripoli,546.066754054061,34.630941751253275 +2072-10-01,Tripoli,546.3876079430364,34.49621492675435 +2072-11-01,Tripoli,546.7254473676327,34.36359402471557 +2072-12-01,Tripoli,547.472307126694,34.21845941814063 +2073-01-01,Tripoli,549.2845774103181,34.02081598460362 +2073-02-01,Tripoli,551.6024552690992,33.7700023600261 +2073-03-01,Tripoli,546.2804407288857,29.795935230140962 +2073-04-01,Tripoli,543.3013505152335,34.82841114161177 +2073-05-01,Tripoli,543.0405217818,34.724211490626715 +2073-06-01,Tripoli,543.0442643574452,34.65791844392518 +2073-07-01,Tripoli,546.4353977551225,33.60762007445901 +2073-08-01,Tripoli,545.3331372549756,33.75540013734755 +2073-09-01,Tripoli,544.7888803890196,33.85709356656179 +2073-10-01,Tripoli,545.0918130984628,33.909497967616744 +2073-11-01,Tripoli,546.0825880279451,33.9208803914925 +2073-12-01,Tripoli,547.8644138981467,33.879649562499125 +2074-01-01,Tripoli,551.0866995561346,33.763284293334934 +2074-02-01,Tripoli,556.9281404123493,33.635484387341414 +2074-03-01,Tripoli,564.0295337540736,33.760865093153384 +2074-04-01,Tripoli,578.3285478151707,35.12264853923213 +2074-05-01,Tripoli,543.1173885277456,34.78065369342355 +2074-06-01,Tripoli,600.8736795571913,30.530066761492215 +2074-07-01,Tripoli,553.1452601062621,29.56665074674749 +2074-08-01,Tripoli,572.4506888190228,29.830256544946806 +2074-09-01,Tripoli,597.3763865618832,32.63035022270333 +2074-10-01,Tripoli,586.4320877585303,32.79694435319087 +2074-11-01,Tripoli,594.450556078568,32.65144425594099 +2074-12-01,Tripoli,555.2013016150901,30.53956951903988 +2075-01-01,Tripoli,551.0783507335411,30.771551671700596 +2075-02-01,Tripoli,548.6839659918571,30.87190496844014 +2075-03-01,Tripoli,549.0536892820469,30.767966382222916 +2075-04-01,Tripoli,557.4283500418643,30.743843997678844 +2075-05-01,Tripoli,549.5644788850207,30.788973393871316 +2075-06-01,Tripoli,467.2268790446896,28.613364044993034 +2075-07-01,Tripoli,445.52440260372794,30.11342479641277 +2075-08-01,Tripoli,561.6755976184021,37.03385149128981 +2075-09-01,Tripoli,557.1655060753912,29.5542414681184 +2075-10-01,Tripoli,532.1419255848846,34.49898221329293 +2075-11-01,Tripoli,550.9548457372466,35.06255142968621 +2075-12-01,Tripoli,547.11532298822,35.021042131607146 +2076-01-01,Tripoli,545.0073892286179,34.95937863345449 +2076-02-01,Tripoli,544.0762076190259,34.914649536572696 +2076-03-01,Tripoli,543.5937032512177,34.87202636215103 +2076-04-01,Tripoli,572.8841798403996,33.62582499093304 +2076-05-01,Tripoli,500.68579320403273,31.786884766600462 +2076-06-01,Tripoli,583.2737137769468,35.32894191874203 +2076-07-01,Tripoli,578.8527962959458,33.214073639170245 +2076-08-01,Tripoli,596.5189768760688,31.82376451613065 +2076-09-01,Tripoli,606.7823428298045,30.632299724559914 +2076-10-01,Tripoli,593.9155836791168,30.107977244924797 +2076-11-01,Tripoli,571.6928172508514,36.10400840568323 +2076-12-01,Tripoli,586.8289447221483,32.78653657111485 +2077-01-01,Tripoli,483.7347324625947,30.901979629689862 +2077-02-01,Tripoli,533.3634446974211,31.65147917370523 +2077-03-01,Tripoli,498.1920862625311,28.93856372407366 +2077-04-01,Tripoli,605.7463691021442,30.221540418914664 +2077-05-01,Tripoli,597.688603737831,32.63012396657122 +2077-06-01,Tripoli,511.95202548548946,28.027778366515882 +2077-07-01,Tripoli,675.7683760281654,32.30943200581454 +2077-08-01,Tripoli,592.1681607158084,30.933864339996347 +2077-09-01,Tripoli,577.6497021712016,31.818943520085398 +2077-10-01,Tripoli,569.1125992338568,32.36281104866924 +2077-11-01,Tripoli,566.4363697570388,32.70381384836021 +2077-12-01,Tripoli,564.3385121626359,33.07334232501202 +2078-01-01,Tripoli,560.8902325137592,33.50375110551312 +2078-02-01,Tripoli,558.0153586373067,33.94834440506435 +2078-03-01,Tripoli,455.83210368433885,29.70879181065174 +2078-04-01,Tripoli,556.0165353522866,34.36013056546287 +2078-05-01,Tripoli,484.19427756827145,30.96726322595598 +2078-06-01,Tripoli,585.8601214382776,32.81346105083323 +2078-07-01,Tripoli,518.7178825260912,32.79922431882957 +2078-08-01,Tripoli,571.3572809497292,34.42202031974762 +2078-09-01,Tripoli,562.3332113428451,33.28167200971073 +2078-10-01,Tripoli,563.3753027422331,32.943436496558355 +2078-11-01,Tripoli,564.2179580432921,32.649077268713015 +2078-12-01,Tripoli,561.5370503469178,32.52406205357593 +2079-01-01,Tripoli,558.8015874132523,32.53812474240108 +2079-02-01,Tripoli,557.2261070118016,32.5513520239692 +2079-03-01,Tripoli,558.0601255998331,32.4590395220777 +2079-04-01,Tripoli,558.2084611460821,32.32071000378318 +2079-05-01,Tripoli,572.2109480598986,35.893503181252925 +2079-06-01,Tripoli,480.1397726374663,30.038655846916857 +2079-07-01,Tripoli,477.4703085858532,28.289382668162176 +2079-08-01,Tripoli,576.888375917819,29.151261892553364 +2079-09-01,Tripoli,592.6837724835561,33.012757894566235 +2079-10-01,Tripoli,583.7208076213421,31.830691434636044 +2079-11-01,Tripoli,582.8892361020016,31.39206781610845 +2079-12-01,Tripoli,584.0449002777026,31.040552808434292 +2080-01-01,Tripoli,586.06841016746,30.668013384793987 +2080-02-01,Tripoli,591.5026300044235,30.21539669471264 +2080-03-01,Tripoli,595.3572670012484,30.016012829390323 +2080-04-01,Tripoli,555.2188629315797,31.149103538882592 +2080-05-01,Tripoli,553.6239499258168,31.312895574195764 +2080-06-01,Tripoli,555.515102188426,31.50932070548312 +2080-07-01,Tripoli,577.6480468012046,31.57425621539209 +2080-08-01,Tripoli,590.2819025905815,32.707503563745064 +2080-09-01,Tripoli,561.8086749716357,28.945664685757627 +2080-10-01,Tripoli,480.14049236355174,30.932646037746636 +2080-11-01,Tripoli,554.2419787155497,34.53426076558066 +2080-12-01,Tripoli,562.4205860896409,33.862367074871244 +2081-01-01,Tripoli,586.6171293351464,32.474424939059624 +2081-02-01,Tripoli,617.6545250793771,30.73797874256245 +2081-03-01,Tripoli,618.9706161995658,33.39718446730009 +2081-04-01,Tripoli,559.1211457952733,32.33590397326873 +2081-05-01,Tripoli,478.0565974552099,29.615139176285545 +2081-06-01,Tripoli,450.0581731349563,29.969926195715967 +2081-07-01,Tripoli,566.6207635801782,29.526916689089404 +2081-08-01,Tripoli,572.5741938153174,29.249213393429272 +2081-09-01,Tripoli,571.4034873644268,29.19238829563968 +2081-10-01,Tripoli,570.0825021068559,29.12602563166676 +2081-11-01,Tripoli,568.9641917149993,36.110273960110234 +2081-12-01,Tripoli,590.7549065740595,32.69977604661838 +2082-01-01,Tripoli,558.5470202967638,35.800163824608084 +2082-02-01,Tripoli,548.5445550490701,34.392345957808516 +2082-03-01,Tripoli,460.4151754524327,29.321963442054187 +2082-04-01,Tripoli,523.698243093455,32.106010338750394 +2082-05-01,Tripoli,541.86125059049,31.867414545305586 +2082-06-01,Tripoli,534.8497510368618,31.582627692279356 +2082-07-01,Tripoli,533.7413008923783,31.64968652896639 +2082-08-01,Tripoli,542.1443908325782,34.211027774417445 +2082-09-01,Tripoli,542.26803977409,34.26929743058879 +2082-10-01,Tripoli,562.6642133696275,36.20596289966524 +2082-11-01,Tripoli,525.3126606761383,34.06472707854638 +2082-12-01,Tripoli,571.8902381161404,36.06340413213251 +2083-01-01,Tripoli,551.5627263891722,34.912247740709 +2083-02-01,Tripoli,549.2071348835038,34.77052438043317 +2083-03-01,Tripoli,449.3467238993079,29.283778368685027 +2083-04-01,Tripoli,547.9638080705727,34.602015774981865 +2083-05-01,Tripoli,546.7411373962993,34.384601036363975 +2083-06-01,Tripoli,545.8915007522095,34.325217503850034 +2083-07-01,Tripoli,545.3491151740766,34.27105526669196 +2083-08-01,Tripoli,544.7680803051451,34.216649369083925 +2083-09-01,Tripoli,544.2816174438656,34.16314849600425 +2083-10-01,Tripoli,542.5113791636427,34.31905637533014 +2083-11-01,Tripoli,542.8904588929456,34.35910371070953 +2083-12-01,Tripoli,543.5060406139874,34.385871551567206 +2084-01-01,Tripoli,544.5589998772687,34.40393723349851 +2084-02-01,Tripoli,546.0869063844591,34.437423141047404 +2084-03-01,Tripoli,548.2046284188256,34.529022065906986 +2084-04-01,Tripoli,550.5738227475123,34.67718502378833 +2084-05-01,Tripoli,547.40638021725,34.47555600146297 +2084-06-01,Tripoli,551.9581439006189,34.73477591156343 +2084-07-01,Tripoli,513.738961410899,30.170110659659514 +2084-08-01,Tripoli,551.0920975017766,31.149660477053857 +2084-09-01,Tripoli,547.2366688062577,34.257166621045386 +2084-10-01,Tripoli,546.7292619158864,34.14978197989328 +2084-11-01,Tripoli,547.0490362157332,34.02843907582319 +2084-12-01,Tripoli,547.7951762487089,33.88144220723796 +2085-01-01,Tripoli,548.9108236540487,33.71065363614788 +2085-02-01,Tripoli,550.3365290570792,33.51682174822066 +2085-03-01,Tripoli,552.7120569753196,33.27699024820833 +2085-04-01,Tripoli,598.931138852068,30.749918104609478 +2085-05-01,Tripoli,598.2289021103159,30.27324864725551 +2085-06-01,Tripoli,589.4029011221977,30.951512318299113 +2085-07-01,Tripoli,582.962504217519,31.620360253384312 +2085-08-01,Tripoli,576.5835719205536,32.30936238854315 +2085-09-01,Tripoli,565.1089069646972,31.481038688972237 +2085-10-01,Tripoli,569.0238570074982,33.01197470026287 +2085-11-01,Tripoli,559.4361699029547,34.19534648403203 +2085-12-01,Tripoli,571.6712974408908,35.75465153342286 +2086-01-01,Tripoli,483.1792478697031,30.59702117227219 +2086-02-01,Tripoli,590.3726600499797,32.70607640968112 +2086-03-01,Tripoli,451.1944766789536,28.43827660739336 +2086-04-01,Tripoli,533.9523965532944,28.64448296531395 +2086-05-01,Tripoli,577.7396679319058,29.12106540107866 +2086-06-01,Tripoli,570.5050532917311,29.135110685585943 +2086-07-01,Tripoli,557.3367289111634,29.658093032746372 +2086-08-01,Tripoli,539.0639631860687,31.320988581997394 +2086-09-01,Tripoli,543.1738870254678,31.538664385383004 +,,546.0752468218718,31.385019067378018 +,,562.5992940767035,33.640409809293786 +,,568.7384856145447,36.014062891019634 diff --git a/final_usable_synthetic_data_COMBINED.csv b/final_usable_synthetic_data_COMBINED.csv new file mode 100644 index 00000000..85bd7bd1 --- /dev/null +++ b/final_usable_synthetic_data_COMBINED.csv @@ -0,0 +1,5881 @@ +date,city,transaction_number,transaction_value +2017-01-01,Baabda,1562.0364115827408,241.93073488676526 +2017-02-01,Baabda,1543.6815947295129,240.36779241153425 +2017-03-01,Baabda,1624.2310619321254,246.3427411087199 +2017-04-01,Baabda,1550.0879501698598,237.65433601398377 +2017-05-01,Baabda,1618.6308670609355,240.8356405325493 +2017-06-01,Baabda,1815.780055332747,255.33362085785402 +2017-07-01,Baabda,1991.269451778268,255.4923458205439 +2017-08-01,Baabda,2064.4671312948417,257.90767076113013 +2017-09-01,Baabda,1929.2208737569679,285.828270481108 +2017-10-01,Baabda,1709.1876346996237,274.29788354119614 +2017-11-01,Baabda,1493.2170765422054,249.50117698687004 +2017-12-01,Baabda,1493.480318429287,209.9369721144721 +2018-01-01,Baabda,1413.6075160559,206.4886577766045 +2018-02-01,Baabda,1161.8292606038458,209.24097242040932 +2018-03-01,Baabda,791.8696367163739,195.07332407316983 +2018-04-01,Baabda,887.0434800365543,203.41644036131095 +2018-05-01,Baabda,1251.5185201291865,207.4955511043795 +2018-06-01,Baabda,1386.613888210795,284.3537042356114 +2018-07-01,Baabda,1257.8395840646772,300.4042992630564 +2018-08-01,Baabda,1295.9748751924237,303.0306888449607 +2018-09-01,Baabda,1341.6860921468776,309.323087467526 +2018-10-01,Baabda,1450.314882878506,271.04742904905186 +2018-11-01,Baabda,1454.7588253059541,294.243653517207 +2018-12-01,Baabda,1402.9041405976332,270.665605745148 +2019-01-01,Baabda,1560.2433064573888,244.25225229551845 +2019-02-01,Baabda,1266.7605512557598,210.78763021057028 +2019-03-01,Baabda,774.293565305742,198.990731397559 +2019-04-01,Baabda,974.9898600818448,191.77952981894794 +2019-05-01,Baabda,1198.1620957103592,191.94425779974682 +2019-06-01,Baabda,1270.4721485194166,208.6530086098574 +2019-07-01,Baabda,1184.297550723264,208.66575234415342 +2019-08-01,Baabda,1137.4063498847634,199.50277685466722 +2019-09-01,Baabda,1209.2076997898562,200.43199057483756 +2019-10-01,Baabda,1262.7829493403292,206.43369004857368 +2019-11-01,Baabda,1276.6535865777712,213.7242402766907 +2019-12-01,Baabda,1280.9615159742195,220.2421163167714 +2020-01-01,Baabda,1317.3151780761045,228.99880458984475 +2020-02-01,Baabda,1419.4001126938592,254.05702511279253 +2020-03-01,Baabda,1391.0425291722556,329.46967730279783 +2020-04-01,Baabda,1604.3261215662178,332.141103352359 +2020-05-01,Baabda,1706.319601588649,289.3329449521285 +2020-06-01,Baabda,1606.3600831006324,297.34930709788216 +2020-07-01,Baabda,1425.818227594178,280.18437301761355 +2020-08-01,Baabda,515.1424118117959,208.65429958149377 +2020-09-01,Baabda,688.4951993885695,144.59809434585335 +2020-10-01,Baabda,1282.8379999211788,162.7995218892734 +2020-11-01,Baabda,1325.4199254009457,184.34641943727343 +2020-12-01,Baabda,1266.6709385035642,210.30348818325928 +2021-01-01,Baabda,1497.7171243449413,232.5197176398054 +2021-02-01,Baabda,1493.2029085181432,232.24114440313198 +2021-03-01,Baabda,1648.306076820353,253.59726400695666 +2021-04-01,Baabda,1547.6544503568823,249.47670385313512 +2021-05-01,Baabda,1440.734748367915,233.06450767034718 +2021-06-01,Baabda,1675.7954438274057,232.53795722478193 +2021-07-01,Baabda,1735.3357148686782,272.80386050889456 +2021-08-01,Baabda,1730.0615262311667,254.67391590922472 +2021-09-01,Baabda,1542.6231016518022,244.92646223260476 +2021-10-01,Baabda,1093.630059976527,220.82045316740647 +2021-11-01,Baabda,973.4851450862855,186.35444282658972 +2021-12-01,Baabda,1105.4221772438782,179.59014796480682 +2022-01-01,Baabda,924.6223928593657,208.81018440658363 +2022-02-01,Baabda,1187.6613938363066,212.24486055123575 +2022-03-01,Baabda,1343.729971298136,286.5203419329059 +2022-04-01,Baabda,1458.722188357202,323.2391162216139 +2022-05-01,Baabda,1437.950023238428,342.4684338243517 +2022-06-01,Baabda,1630.8139509522914,298.7524088420805 +2022-07-01,Baabda,1595.3715053179867,290.5016246896167 +2022-08-01,Baabda,1390.0310739344327,276.1961835626483 +2022-09-01,Baabda,784.2344885490851,231.88548171731617 +2022-10-01,Baabda,893.5761434114189,181.98158070889454 +2022-11-01,Baabda,1232.1255413127778,200.89177012312538 +2022-12-01,Baabda,1074.3910167415575,279.55946897581003 +2023-01-01,Baabda,1609.5405211421858,251.05110831225176 +2023-02-01,Baabda,1502.0114524382893,233.61134481305518 +2023-03-01,Baabda,1613.5172021360522,244.59649910357842 +2023-04-01,Baabda,1663.098202342821,251.43128101670635 +2023-05-01,Baabda,1550.5460023878009,233.1571994338375 +2023-06-01,Baabda,1344.5607842291618,232.51613058290155 +2023-07-01,Baabda,1002.033501051891,218.5822034291982 +2023-08-01,Baabda,1049.1199372619728,183.5606326659021 +2023-09-01,Baabda,838.3776633441037,200.72005245303825 +2023-10-01,Baabda,1054.094897231284,182.73474278276998 +2023-11-01,Baabda,1344.7272585118963,205.6217426591142 +2023-12-01,Baabda,1345.466262646997,238.34249766596872 +2024-01-01,Baabda,1273.4492045755524,240.7344099138071 +2024-02-01,Baabda,1277.7052790039315,240.23923930023125 +2024-03-01,Baabda,1252.228054774237,242.98269234587508 +2024-04-01,Baabda,1253.2507027510694,226.6966056495071 +2024-05-01,Baabda,1152.8838535712557,221.793163410496 +2024-06-01,Baabda,1165.186869786301,231.36409515829632 +2024-07-01,Baabda,1142.1651766470009,254.8992826720284 +2024-08-01,Baabda,1245.4224444158085,263.86132764754194 +2024-09-01,Baabda,1178.8814693247662,297.87995176777986 +2024-10-01,Baabda,1214.531051470865,325.7857421988435 +2024-11-01,Baabda,1313.1484330394392,277.4804237040422 +2024-12-01,Baabda,1177.1776227510081,254.62374321870038 +2025-01-01,Baabda,1671.1160288400386,257.0498016663204 +2025-02-01,Baabda,1791.569877494963,274.2039100272955 +2025-03-01,Baabda,2148.6385121687954,257.5900179687791 +2025-04-01,Baabda,2225.1761616778667,256.35452122788354 +2025-05-01,Baabda,1964.664169472716,316.57145058681215 +2025-06-01,Baabda,2008.2705139323225,298.1532873481001 +2025-07-01,Baabda,2150.33244112571,284.1652869252854 +2025-08-01,Baabda,2188.5179578987577,295.67100708571684 +2025-09-01,Baabda,2203.0952961764383,311.66391412346866 +2025-10-01,Baabda,2172.2845192884097,307.32147283026165 +2025-11-01,Baabda,2080.1536841763764,306.8518173489557 +2025-12-01,Baabda,1968.973232311089,290.6544019615533 +2026-01-01,Baabda,1915.2173404538191,282.6376156394048 +2026-02-01,Baabda,1827.4122864485525,257.5991838673972 +2026-03-01,Baabda,1636.0911148748562,235.68314220120743 +2026-04-01,Baabda,872.9337573930575,186.02088341943352 +2026-05-01,Baabda,669.4888659488269,143.58730043949134 +2026-06-01,Baabda,1192.255658999058,187.4403251760577 +2026-07-01,Baabda,1607.2607443902864,248.1503411514921 +2026-08-01,Baabda,1084.8766296699837,297.01992490609217 +2026-09-01,Baabda,1257.5798841836113,277.0442781579257 +2026-10-01,Baabda,1422.8246657900095,227.1221467857535 +2026-11-01,Baabda,1312.4479659297886,214.90269451371134 +2026-12-01,Baabda,1269.497742664517,199.9524683817395 +2027-01-01,Baabda,1599.2467432595658,248.67631065982107 +2027-02-01,Baabda,1495.2487711927702,234.7644498998734 +2027-03-01,Baabda,840.1497289537227,230.21509351703654 +2027-04-01,Baabda,806.9614159477643,174.30115704659835 +2027-05-01,Baabda,1125.7237514434155,190.42546655447913 +2027-06-01,Baabda,1243.1216281481763,182.55131415569593 +2027-07-01,Baabda,1195.809070274057,190.22365080281295 +2027-08-01,Baabda,1175.4071156240361,181.65128561573317 +2027-09-01,Baabda,1230.5999284817262,182.178693635314 +2027-10-01,Baabda,1274.8436923439053,185.75309901714962 +2027-11-01,Baabda,1301.501963059451,191.02548250737897 +2027-12-01,Baabda,1281.2980773858242,194.61546253988462 +2028-01-01,Baabda,1269.926042031927,193.5011603719649 +2028-02-01,Baabda,1281.9201953224094,193.8858791408246 +2028-03-01,Baabda,1279.7867034189555,194.4048036325094 +2028-04-01,Baabda,1305.9714787703322,198.11343317962206 +2028-05-01,Baabda,1320.4538912867938,206.42236638307764 +2028-06-01,Baabda,1306.9450345437876,213.5719978358606 +2028-07-01,Baabda,1246.3994713551594,215.81185206738832 +2028-08-01,Baabda,1198.3855962899454,210.34064972393432 +2028-09-01,Baabda,1201.142764612631,203.78755782185908 +2028-10-01,Baabda,1199.655122086067,199.4992727887971 +2028-11-01,Baabda,1224.0496967570243,197.42779814355396 +2028-12-01,Baabda,1220.3857040542175,196.85954009290842 +2029-01-01,Baabda,1566.0096922508321,241.04549719326477 +2029-02-01,Baabda,1686.020223432841,261.9574118994717 +2029-03-01,Baabda,1988.8965911082778,281.5039396757138 +2029-04-01,Baabda,2261.2113974389467,239.84315998097156 +2029-05-01,Baabda,2127.1008487099234,313.1189866972562 +2029-06-01,Baabda,2151.705747698089,311.63158450520393 +2029-07-01,Baabda,2218.9282047465385,304.68042149905864 +2029-08-01,Baabda,2261.5029753741533,325.7940413022201 +2029-09-01,Baabda,2223.878087313259,318.9328774615807 +2029-10-01,Baabda,2057.3281473302222,316.12316990731387 +2029-11-01,Baabda,1919.01366250137,301.4694984026647 +2029-12-01,Baabda,1868.4431674940752,279.1170437748052 +2030-01-01,Baabda,1784.5198687214559,262.2315773901296 +2030-02-01,Baabda,1800.4029320967377,254.59662359311096 +2030-03-01,Baabda,1976.9977177796159,255.46302232194665 +2030-04-01,Baabda,2174.8408558700094,256.22712076982725 +2030-05-01,Baabda,2266.00557342122,288.8930740307185 +2030-06-01,Baabda,2294.0664785189547,322.86925284779824 +2030-07-01,Baabda,2280.2005167294533,333.3550408669274 +2030-08-01,Baabda,2249.788286358304,335.50395536789995 +2030-09-01,Baabda,2227.1616685699873,327.2462184110518 +2030-10-01,Baabda,2210.8631987291924,319.6571309920277 +2030-11-01,Baabda,2195.0672687018955,313.80327543433214 +2030-12-01,Baabda,2199.949428113597,311.90438525441766 +2031-01-01,Baabda,1499.8987166900872,231.9077233143654 +2031-02-01,Baabda,1537.386174917575,236.25763380061136 +2031-03-01,Baabda,1664.9780157754353,254.8158121345121 +2031-04-01,Baabda,1751.8897758635605,276.16426889955244 +2031-05-01,Baabda,1836.6302862641055,249.83249563611454 +2031-06-01,Baabda,1816.825797188801,271.3368003413408 +2031-07-01,Baabda,1968.60854737172,266.0918038922541 +2031-08-01,Baabda,2171.260312828931,268.0069418723347 +2031-09-01,Baabda,2252.94662228232,291.5380536041863 +2031-10-01,Baabda,2167.3590057230767,316.1236678535165 +2031-11-01,Baabda,1825.724874782707,302.5178411411928 +2031-12-01,Baabda,1318.7746970749045,270.46142935963246 +2032-01-01,Baabda,399.489327270334,169.28339926918807 +2032-02-01,Baabda,760.5077945324346,142.16995190116327 +2032-03-01,Baabda,1450.6340884606345,178.96837913983438 +2032-04-01,Baabda,1371.6321945263703,221.2769684016995 +2032-05-01,Baabda,1175.7083278156053,250.93610118190452 +2032-06-01,Baabda,1377.225305385529,289.6484030926978 +2032-07-01,Baabda,1275.6448941046406,257.12124772516665 +2032-08-01,Baabda,1248.9197503155199,235.37600160646667 +2032-09-01,Baabda,1243.6399653085036,213.99903281071482 +2032-10-01,Baabda,1225.413935794004,221.79553326557132 +2032-11-01,Baabda,1130.465505736658,245.71741289052153 +2032-12-01,Baabda,1073.9585378070497,231.1330112353888 +2033-01-01,Baabda,1580.117077170359,244.20704984579407 +2033-02-01,Baabda,1664.607663626441,259.787989391933 +2033-03-01,Baabda,1980.712290328326,285.20511847223946 +2033-04-01,Baabda,2320.3753657611187,239.615995079103 +2033-05-01,Baabda,2307.4746714509965,328.82887586741515 +2033-06-01,Baabda,2357.5746463791747,354.58859193510625 +2033-07-01,Baabda,2340.622322227896,344.4885093560159 +2033-08-01,Baabda,2247.887362569836,354.14689521095335 +2033-09-01,Baabda,2167.4352296925335,333.4147575263348 +2033-10-01,Baabda,2159.2996669153563,318.58774541582716 +2033-11-01,Baabda,2149.25368777359,304.3800308417308 +2033-12-01,Baabda,2112.7762679815187,299.53066187183106 +2034-01-01,Baabda,2087.9248453746654,292.6163837695816 +2034-02-01,Baabda,2084.559656299337,286.28964530148926 +2034-03-01,Baabda,2086.029447115582,282.63375194572177 +2034-04-01,Baabda,2099.91269389444,282.7181814907393 +2034-05-01,Baabda,2121.7410852070743,282.6414793330879 +2034-06-01,Baabda,2139.0221075166046,286.8586133865348 +2034-07-01,Baabda,2150.424533282116,289.5543650302153 +2034-08-01,Baabda,2157.3053758483165,293.8589255271213 +2034-09-01,Baabda,2171.8240585063786,296.40276669410673 +2034-10-01,Baabda,2189.115565153714,299.62693147099924 +2034-11-01,Baabda,2201.736866029324,303.23252303907884 +2034-12-01,Baabda,2209.3229928333567,306.7193267741618 +2035-01-01,Baabda,1517.059735835808,234.0709122731456 +2035-02-01,Baabda,1396.476249760711,221.7160186339978 +2035-03-01,Baabda,894.9120464002732,228.68923881267284 +2035-04-01,Baabda,1056.0704156664408,205.05934930818816 +2035-05-01,Baabda,1109.9327093844201,228.75920025413728 +2035-06-01,Baabda,1355.0721829613817,230.97575244762882 +2035-07-01,Baabda,1325.7612331006117,286.17135541469526 +2035-08-01,Baabda,1313.0700838663736,289.3269142703415 +2035-09-01,Baabda,1483.5439997937644,256.8677838868203 +2035-10-01,Baabda,1585.5814006907895,275.77016292265114 +2035-11-01,Baabda,1915.6426645361757,285.280363676187 +2035-12-01,Baabda,2288.6746952817243,256.9370168514329 +2036-01-01,Baabda,2336.25602057231,340.64637489925224 +2036-02-01,Baabda,2319.0248697074803,350.580899587206 +2036-03-01,Baabda,2258.026708990175,352.54170107830964 +2036-04-01,Baabda,2170.94294908993,343.2264185994115 +2036-05-01,Baabda,2088.589467383438,321.9262533947968 +2036-06-01,Baabda,2025.150722841124,309.09528630106524 +2036-07-01,Baabda,2030.501843849295,297.510862976946 +2036-08-01,Baabda,2062.613245346262,288.94744237906093 +2036-09-01,Baabda,2082.83781633502,289.62341357030834 +2036-10-01,Baabda,2122.227898513863,293.8212107128878 +2036-11-01,Baabda,2158.523542557212,296.0384913832313 +2036-12-01,Baabda,2110.8475748658884,298.05644603292154 +2037-01-01,Baabda,1490.6764664673153,233.89245388687146 +2037-02-01,Baabda,1282.7284810951758,216.0926752831994 +2037-03-01,Baabda,1170.8950958409675,230.85388472515695 +2037-04-01,Baabda,1328.5886039825268,217.44614838920586 +2037-05-01,Baabda,1167.9009673158364,219.58018905268239 +2037-06-01,Baabda,886.8243007043073,198.6001110440759 +2037-07-01,Baabda,1068.5546409092456,192.3287460379572 +2037-08-01,Baabda,1185.0505103620662,193.73928931151653 +2037-09-01,Baabda,1171.3416011192976,193.65087619687816 +2037-10-01,Baabda,1173.2122761763917,188.60815656075633 +2037-11-01,Baabda,1237.5804430972069,188.63641039714057 +2037-12-01,Baabda,1291.772426735121,194.4758162937349 +2038-01-01,Baabda,1290.6841099667588,198.3140132870077 +2038-02-01,Baabda,1248.729190391879,195.40113865654422 +2038-03-01,Baabda,1264.4950133680434,191.1821972428065 +2038-04-01,Baabda,1302.3966029388785,193.28449844648063 +2038-05-01,Baabda,1269.3449405250028,193.62611720513806 +2038-06-01,Baabda,1234.4972685408427,189.54196245146173 +2038-07-01,Baabda,1254.919058424551,188.11542035083758 +2038-08-01,Baabda,1286.6465064694237,191.26845259056694 +2038-09-01,Baabda,1305.1461205285705,197.46545763043162 +2038-10-01,Baabda,1295.7011489675358,203.87310313521954 +2038-11-01,Baabda,1282.8798664322837,208.58029002182673 +2038-12-01,Baabda,1282.718563478332,213.79151834139674 +2039-01-01,Baabda,1527.596778691581,236.7723073071222 +2039-02-01,Baabda,1468.6986025008214,228.37583700549573 +2039-03-01,Baabda,1475.0440354377,240.05668668962468 +2039-04-01,Baabda,1530.8830518728812,242.40487188389454 +2039-05-01,Baabda,1261.0245558739305,223.40560542675524 +2039-06-01,Baabda,804.0529331280909,204.10595753351407 +2039-07-01,Baabda,969.1381827835451,189.60209406603792 +2039-08-01,Baabda,1038.0051932250508,195.2787914303217 +2039-09-01,Baabda,1175.0750879801312,194.70315639889702 +2039-10-01,Baabda,1241.2777306565606,203.85053879526126 +2039-11-01,Baabda,1314.267706940378,219.5581042164747 +2039-12-01,Baabda,1308.3305256168612,237.913848976569 +2040-01-01,Baabda,1251.6368939702288,232.1535427563793 +2040-02-01,Baabda,1106.025664228821,224.83998556945724 +2040-03-01,Baabda,1169.9750951984684,202.14876154176625 +2040-04-01,Baabda,1277.7244766765364,220.0679089156713 +2040-05-01,Baabda,1341.8576669182748,246.85300686921516 +2040-06-01,Baabda,1276.4018207901804,258.3186423603378 +2040-07-01,Baabda,1158.1149714156172,268.2343373048527 +2040-08-01,Baabda,1096.4830749819957,229.07431720934557 +2040-09-01,Baabda,1034.269226960006,208.92423252942962 +2040-10-01,Baabda,1047.5148418159306,223.35973904876073 +2040-11-01,Baabda,1042.0849465939718,227.75004772599866 +2040-12-01,Baabda,1058.5918989088464,220.26320526057384 +2041-01-01,Baabda,1568.7074257125755,245.14081885159555 +2041-02-01,Baabda,1571.2617787708064,246.43924123853745 +2041-03-01,Baabda,1656.0419596387264,245.7274916905111 +2041-04-01,Baabda,1303.245267580223,222.73708498609483 +2041-05-01,Baabda,867.193440763889,215.35160223657584 +2041-06-01,Baabda,1189.4958695919208,202.12357837363135 +2041-07-01,Baabda,1122.5919805645174,224.3868821887746 +2041-08-01,Baabda,1198.7365382459739,220.9423762172342 +2041-09-01,Baabda,1231.9407902790026,237.81887957026314 +2041-10-01,Baabda,1340.4636750307639,235.27551790702836 +2041-11-01,Baabda,1226.1562694147592,243.3649029412699 +2041-12-01,Baabda,1046.9577551097925,210.7026105070903 +2042-01-01,Baabda,1027.1840106467039,195.40881993778058 +2042-02-01,Baabda,1159.3717459900824,201.4809880204097 +2042-03-01,Baabda,1246.9902779585664,210.63263984439988 +2042-04-01,Baabda,1293.5117642091554,232.11464762522115 +2042-05-01,Baabda,1296.2406673238363,261.2359892853986 +2042-06-01,Baabda,1319.801453778715,249.69206558575706 +2042-07-01,Baabda,1304.1851742965302,262.90445947067565 +2042-08-01,Baabda,1274.3339976782565,258.17006996744533 +2042-09-01,Baabda,1245.122082305683,216.9408713119625 +2042-10-01,Baabda,1039.3118392442161,241.58451473634682 +2042-11-01,Baabda,1154.711741195681,229.2548780351417 +2042-12-01,Baabda,1021.128597162385,267.97565425260507 +2043-01-01,Baabda,1553.0214395520036,240.38759038370037 +2043-02-01,Baabda,1351.7628159008596,217.159912313748 +2043-03-01,Baabda,577.0655319800226,201.00232340132723 +2043-04-01,Baabda,930.5225247999593,178.9784026124681 +2043-05-01,Baabda,1179.8137961482,176.77452038346476 +2043-06-01,Baabda,1287.3771514703274,188.10317456274413 +2043-07-01,Baabda,1348.3361376011,202.96684104649836 +2043-08-01,Baabda,1197.3266073313928,196.38437953969606 +2043-09-01,Baabda,1267.0642428515396,201.10657858218883 +2043-10-01,Baabda,1346.1823145831165,217.02537462678794 +2043-11-01,Baabda,1380.2333185742416,235.66363930827254 +2043-12-01,Baabda,1475.3069939643,269.2658513059782 +2044-01-01,Baabda,1434.743799393081,346.91184754197366 +2044-02-01,Baabda,1752.7672015937521,317.3058290233786 +2044-03-01,Baabda,2002.4106191800665,276.9444952716615 +2044-04-01,Baabda,2211.3317352849404,305.08268826094684 +2044-05-01,Baabda,2173.169595751595,316.4659044343142 +2044-06-01,Baabda,1999.5006487178669,322.85746812100354 +2044-07-01,Baabda,1646.064270372941,300.7680950701812 +2044-08-01,Baabda,999.2838417819582,245.30165547503344 +2044-09-01,Baabda,243.79719420784545,153.40857925125886 +2044-10-01,Baabda,803.9593533291579,142.44833149209126 +2044-11-01,Baabda,1429.4564344931912,159.2802502175361 +2044-12-01,Baabda,1613.191054222133,177.64090066984855 +2045-01-01,Baabda,1494.7326300761729,230.0596974169233 +2045-02-01,Baabda,1228.3511088624036,208.57521834754107 +2045-03-01,Baabda,1001.1280226340556,219.9334542197449 +2045-04-01,Baabda,1056.5279720035396,215.14646684355904 +2045-05-01,Baabda,1188.8390399963826,220.07416090688162 +2045-06-01,Baabda,1232.6847532225252,226.72380826613028 +2045-07-01,Baabda,1091.402421553178,214.88356969104134 +2045-08-01,Baabda,999.6576650968478,195.4760242326788 +2045-09-01,Baabda,1155.0336387023813,186.21109886882445 +2045-10-01,Baabda,1267.6051780102464,191.47740557113696 +2045-11-01,Baabda,1260.1336705208794,195.61261825303112 +2045-12-01,Baabda,1267.2611783860089,199.71816625096707 +2046-01-01,Baabda,1252.9058530453879,200.63050512760506 +2046-02-01,Baabda,1258.2698669554557,198.3646654812827 +2046-03-01,Baabda,1277.9685917311335,198.43561359392638 +2046-04-01,Baabda,1303.6968733472156,201.59566318662195 +2046-05-01,Baabda,1313.2991808154645,208.06439931348737 +2046-06-01,Baabda,1349.7744754039263,219.48819810236608 +2046-07-01,Baabda,1403.5099653065463,242.83557690668644 +2046-08-01,Baabda,1421.0787401847858,296.39365612284445 +2046-09-01,Baabda,1482.0121530321255,343.77404876755327 +2046-10-01,Baabda,1751.9978778871575,305.83281655147687 +2046-11-01,Baabda,1780.7797937294333,283.75592904062324 +2046-12-01,Baabda,1711.0956425001225,305.6112673762264 +2047-01-01,Baabda,1495.7846058628145,233.50791032130525 +2047-02-01,Baabda,1497.1353852769346,234.51485897643613 +2047-03-01,Baabda,1634.7999828420393,248.9017143075286 +2047-04-01,Baabda,1581.2012143716224,250.05295670670006 +2047-05-01,Baabda,1589.7484999280562,235.87089558326332 +2047-06-01,Baabda,1804.3617613802853,247.84488804110458 +2047-07-01,Baabda,2051.4855375673224,263.0388219543423 +2047-08-01,Baabda,2253.1031789482104,254.72979653862694 +2047-09-01,Baabda,2110.715245521145,314.31083015439106 +2047-10-01,Baabda,2003.4573527978052,306.8954706327164 +2047-11-01,Baabda,1851.0777037611326,289.45566102738997 +2047-12-01,Baabda,1651.7204289391782,280.6262633875119 +2048-01-01,Baabda,1565.1118645659906,239.93543678929302 +2048-02-01,Baabda,1575.2996656286227,210.36555625529002 +2048-03-01,Baabda,1505.059136094377,208.16902334338795 +2048-04-01,Baabda,1331.8541918486958,222.26488444642007 +2048-05-01,Baabda,966.7486038451616,226.05025303608804 +2048-06-01,Baabda,792.2883726675415,202.33313073388967 +2048-07-01,Baabda,937.2009063023065,202.18789642479976 +2048-08-01,Baabda,1433.31807113167,223.36139886943607 +2048-09-01,Baabda,1359.1657501537638,258.3614749549869 +2048-10-01,Baabda,1169.0796760777173,254.37388487970986 +2048-11-01,Baabda,1301.7785937292715,215.62189481232468 +2048-12-01,Baabda,1437.3816021130397,196.34995670313526 +2049-01-01,Baabda,1441.7819070263756,224.0727611259715 +2049-02-01,Baabda,1128.730843710564,206.96863180977527 +2049-03-01,Baabda,768.8154988019709,199.38592547912515 +2049-04-01,Baabda,962.8824334389826,191.45332895011896 +2049-05-01,Baabda,1177.3253952419802,177.33730102588174 +2049-06-01,Baabda,1345.2605429376092,197.36709481296737 +2049-07-01,Baabda,1318.6963479018389,209.5784139637005 +2049-08-01,Baabda,1276.359175037752,215.74083018493684 +2049-09-01,Baabda,1323.2247317526997,223.96712276121377 +2049-10-01,Baabda,1384.3508297272892,239.66841774876497 +2049-11-01,Baabda,1422.5726166419374,283.804884529319 +2049-12-01,Baabda,1542.5267590881774,347.6648712974594 +2050-01-01,Baabda,1986.6321158223661,314.6286673712616 +2050-02-01,Baabda,2241.3328095977954,276.71717360895127 +2050-03-01,Baabda,2293.79799446297,349.5434563377792 +2050-04-01,Baabda,2203.3119252643537,341.754674049063 +2050-05-01,Baabda,2162.472595904156,341.1342884079866 +2050-06-01,Baabda,2132.023386990204,327.92844159350955 +2050-07-01,Baabda,2072.032289423262,319.3044006560716 +2050-08-01,Baabda,1973.1690926372028,307.2779117587606 +2050-09-01,Baabda,1823.8031239988675,294.1718570517737 +2050-10-01,Baabda,1570.6403692354245,273.15387980441426 +2050-11-01,Baabda,1218.9728686947037,218.02972289619413 +2050-12-01,Baabda,987.1605469521461,181.62304100057491 +2051-01-01,Baabda,1469.377959254619,227.4190149347593 +2051-02-01,Baabda,1190.0994274169836,208.26739538207818 +2051-03-01,Baabda,837.3287336826354,206.83802236508006 +2051-04-01,Baabda,996.0682670407301,202.09861651491983 +2051-05-01,Baabda,1169.989546583012,192.206278935797 +2051-06-01,Baabda,1302.3995782239317,215.50655571784233 +2051-07-01,Baabda,1206.044475897539,213.75904118351647 +2051-08-01,Baabda,1099.612578977044,202.47388352715623 +2051-09-01,Baabda,1129.206110077741,191.80140256695813 +2051-10-01,Baabda,1195.2308023719452,187.7013873046066 +2051-11-01,Baabda,1252.5871433441016,188.80715061727446 +2051-12-01,Baabda,1262.6222131073398,190.84529975184773 +2052-01-01,Baabda,1251.8251870100196,190.1160483169228 +2052-02-01,Baabda,1262.8650530397713,189.19188782858618 +2052-03-01,Baabda,1268.3319976446535,188.07953133934691 +2052-04-01,Baabda,1280.7368819527082,187.50503051871704 +2052-05-01,Baabda,1276.1470797175364,187.35871732618813 +2052-06-01,Baabda,1286.0521578600012,187.86521160526004 +2052-07-01,Baabda,1256.0963503840253,187.37878271390747 +2052-08-01,Baabda,1286.4103255083014,188.24732076716916 +2052-09-01,Baabda,1292.1501462566273,193.5879597720578 +2052-10-01,Baabda,1260.2374512971376,194.37801597105505 +2052-11-01,Baabda,1228.2883445158066,192.69922723391312 +2052-12-01,Baabda,1232.781237466391,190.57323670071187 +2053-01-01,Baabda,1521.7297999272937,234.39241031672782 +2053-02-01,Baabda,1529.9384697086332,235.88772432066582 +2053-03-01,Baabda,1623.9804295864596,247.38437079473886 +2053-04-01,Baabda,1612.0202087136067,252.2686882110799 +2053-05-01,Baabda,1482.311381700326,230.3297225771189 +2053-06-01,Baabda,1159.5602515502344,238.486192030321 +2053-07-01,Baabda,1323.098352978062,220.78288589278856 +2053-08-01,Baabda,1428.5863761355124,219.31066183868938 +2053-09-01,Baabda,1078.5843976634603,228.15333804396994 +2053-10-01,Baabda,999.0832934013533,209.22957498510547 +2053-11-01,Baabda,1092.9667130899202,221.90263780525888 +2053-12-01,Baabda,1216.1851682801632,236.82520025930882 +2054-01-01,Baabda,1207.2712142609917,251.83713483549843 +2054-02-01,Baabda,1213.4318253239744,247.21412852080755 +2054-03-01,Baabda,1117.6180123568906,241.48753510277865 +2054-04-01,Baabda,1225.568508936526,225.07267398568425 +2054-05-01,Baabda,1235.3465707432701,245.64414102893244 +2054-06-01,Baabda,1181.052789852467,236.1962480993027 +2054-07-01,Baabda,1165.1367149811197,235.03008575650534 +2054-08-01,Baabda,1154.168964193846,239.27433943554166 +2054-09-01,Baabda,1236.5036024283354,243.2708003302056 +2054-10-01,Baabda,1177.0405471182034,242.17026545266495 +2054-11-01,Baabda,1115.2218452873176,226.15218446800424 +2054-12-01,Baabda,1047.9207557053214,212.43030862679817 +2055-01-01,Baabda,1622.1734397975265,250.4039350097211 +2055-02-01,Baabda,1679.2085208240653,264.8606042426625 +2055-03-01,Baabda,1766.6086527016255,256.7156613219278 +2055-04-01,Baabda,1690.306192391992,255.24723641292996 +2055-05-01,Baabda,1633.5084257685005,242.0220434663595 +2055-06-01,Baabda,1769.4001784826628,229.47521922978962 +2055-07-01,Baabda,1834.6648979661534,235.33978063084092 +2055-08-01,Baabda,1829.1305844068543,247.622674937584 +2055-09-01,Baabda,1785.9730829495481,244.0770305595612 +2055-10-01,Baabda,1649.1691928462412,232.76813746754402 +2055-11-01,Baabda,1727.5209161562766,229.40272195118231 +2055-12-01,Baabda,1927.7258638578912,253.0778692327472 +2056-01-01,Baabda,2125.729525660913,252.64596545057867 +2056-02-01,Baabda,2126.5094753855547,272.6604888874514 +2056-03-01,Baabda,2118.4881068823215,306.3631845845954 +2056-04-01,Baabda,2177.228592965265,291.8003052708858 +2056-05-01,Baabda,2081.614974178184,301.27173999042714 +2056-06-01,Baabda,1947.1394571493108,297.8691813758423 +2056-07-01,Baabda,1924.4048790176378,286.63156836060386 +2056-08-01,Baabda,1841.8415688747793,266.9932617222429 +2056-09-01,Baabda,1564.3415490977118,249.77787831467074 +2056-10-01,Baabda,512.4641593831386,186.13293053624318 +2056-11-01,Baabda,624.2762926012531,139.34211541663169 +2056-12-01,Baabda,1386.632731682798,197.70011938901706 +2057-01-01,Baabda,1568.3338149180472,244.38261276711236 +2057-02-01,Baabda,1532.6030499940705,241.11638997855258 +2057-03-01,Baabda,1607.8266152713431,242.3640034103779 +2057-04-01,Baabda,1577.4614227400814,239.00590954743956 +2057-05-01,Baabda,1529.625639737333,234.33017626262955 +2057-06-01,Baabda,1519.9562466751483,227.94965038343105 +2057-07-01,Baabda,1393.8551653091458,228.72233379269338 +2057-08-01,Baabda,1082.1920724706188,227.81464241394627 +2057-09-01,Baabda,1196.6724696604265,205.90421647437466 +2057-10-01,Baabda,1045.7578651519382,233.79129703793708 +2057-11-01,Baabda,1133.6337592775176,222.59063347517633 +2057-12-01,Baabda,1238.2523616383714,251.70335328906816 +2058-01-01,Baabda,1405.519274479092,290.7836097799005 +2058-02-01,Baabda,1288.4437203217533,340.51467734989217 +2058-03-01,Baabda,1368.2963332608515,227.20539601384647 +2058-04-01,Baabda,622.7509631306827,246.3353088005849 +2058-05-01,Baabda,989.8812326128708,185.82342930765304 +2058-06-01,Baabda,1156.928966121344,211.0453819189945 +2058-07-01,Baabda,1225.4365337923837,243.47530867985614 +2058-08-01,Baabda,1136.8183060460487,270.0629156367157 +2058-09-01,Baabda,1249.5832388823674,261.1437124770772 +2058-10-01,Baabda,1170.8266642847457,293.5134799596847 +2058-11-01,Baabda,1174.4186125851948,274.59732441224867 +2058-12-01,Baabda,1197.1915152219567,232.3582539730013 +2059-01-01,Baabda,1504.1586164849634,234.66475922586886 +2059-02-01,Baabda,1491.9814831637136,235.06086620880643 +2059-03-01,Baabda,1240.238506091575,232.8030951352113 +2059-04-01,Baabda,714.9388953796883,198.55228054494893 +2059-05-01,Baabda,931.1462720593115,188.16784302049956 +2059-06-01,Baabda,1138.7486993245666,176.66144971057201 +2059-07-01,Baabda,1214.0470717688893,180.91360598026802 +2059-08-01,Baabda,1276.737815480823,183.79664994470568 +2059-09-01,Baabda,1233.8637453448875,182.54241567263105 +2059-10-01,Baabda,1261.3910118163074,183.91920925912564 +2059-11-01,Baabda,1299.7492368026774,188.04465666271335 +2059-12-01,Baabda,1289.092899184298,191.5485104446222 +2060-01-01,Baabda,1245.2316011316864,188.80131358123293 +2060-02-01,Baabda,1245.5011477894757,185.37752770445604 +2060-03-01,Baabda,1285.718075852607,186.96958159008688 +2060-04-01,Baabda,1300.8515799148613,191.60585724895427 +2060-05-01,Baabda,1271.108221959703,193.53115702005817 +2060-06-01,Baabda,1267.2538110134963,194.40195427368343 +2060-07-01,Baabda,1210.864579363847,191.8610638990097 +2060-08-01,Baabda,1220.9439242022806,186.8566861204876 +2060-09-01,Baabda,1223.2298640446468,184.81765174822087 +2060-10-01,Baabda,1234.0353201162843,181.71557600322365 +2060-11-01,Baabda,1241.8589738437252,180.35652405550292 +2060-12-01,Baabda,1252.314621401259,179.18936582030042 +2061-01-01,Baabda,1581.812989650642,246.7658755049872 +2061-02-01,Baabda,1355.8708344777858,217.88328060650161 +2061-03-01,Baabda,762.0644353361828,212.0660609796006 +2061-04-01,Baabda,1009.3513563202998,193.33395188137897 +2061-05-01,Baabda,992.2634441787419,194.78427552378997 +2061-06-01,Baabda,1116.4876165570627,185.40706329125067 +2061-07-01,Baabda,1291.197913359386,193.8557349531157 +2061-08-01,Baabda,1291.4046956705783,202.4241534554787 +2061-09-01,Baabda,1313.586650023693,217.91761123080266 +2061-10-01,Baabda,1203.8838522280055,214.18972776385638 +2061-11-01,Baabda,1131.172206776896,203.73297738531917 +2061-12-01,Baabda,1241.9442653485814,199.56987049485377 +2062-01-01,Baabda,1266.2063689945544,206.43254661655294 +2062-02-01,Baabda,1178.8484578287005,200.99327737864678 +2062-03-01,Baabda,1183.7942316684432,193.177762755832 +2062-04-01,Baabda,1247.3247850066823,191.62719516585804 +2062-05-01,Baabda,1274.0402236993202,192.66896317026658 +2062-06-01,Baabda,1276.8981975132106,192.82694121365256 +2062-07-01,Baabda,1295.9813924834923,194.42271125335088 +2062-08-01,Baabda,1278.963612061044,194.19929939045363 +2062-09-01,Baabda,1289.4441953409278,193.24053164103677 +2062-10-01,Baabda,1278.9796927683549,194.09121740081287 +2062-11-01,Baabda,1261.2506066978478,192.62656397323832 +2062-12-01,Baabda,1220.7863049345851,188.98203116787067 +2063-01-01,Baabda,1526.135205329292,237.2282600466308 +2063-02-01,Baabda,1428.9291006375845,227.25661992413183 +2063-03-01,Baabda,1348.4795180046126,238.7166212461844 +2063-04-01,Baabda,1243.7791661449178,221.15876150593925 +2063-05-01,Baabda,1132.426643627391,208.0150104271708 +2063-06-01,Baabda,1024.6280282657058,215.38565622409766 +2063-07-01,Baabda,1122.241747009692,217.1443007781741 +2063-08-01,Baabda,1203.9505127812197,230.20740301457428 +2063-09-01,Baabda,1260.5807425201724,239.35648211651772 +2063-10-01,Baabda,1343.2659685100887,254.30503920658828 +2063-11-01,Baabda,1345.629903324919,311.32623282830207 +2063-12-01,Baabda,1534.4702538852691,327.54773405794845 +2064-01-01,Baabda,1756.5670656473183,294.0725075631302 +2064-02-01,Baabda,1598.2966355659335,277.86318757299546 +2064-03-01,Baabda,1127.351728248319,266.57482092999635 +2064-04-01,Baabda,369.06023695055023,178.20675198051487 +2064-05-01,Baabda,837.4755852520435,145.4480885136814 +2064-06-01,Baabda,1352.6094970188353,162.48332605062618 +2064-07-01,Baabda,1548.2009110449735,188.9941386375745 +2064-08-01,Baabda,1452.9376674929588,226.2086552558688 +2064-09-01,Baabda,1245.2061695284942,236.28105571458525 +2064-10-01,Baabda,1265.8614484487525,209.66527791237525 +2064-11-01,Baabda,1393.2078282897296,193.23256450179525 +2064-12-01,Baabda,1412.1295077856987,192.88272963079498 +2065-01-01,Baabda,1472.0810765655062,229.94255096215008 +2065-02-01,Baabda,1047.9700604290592,202.8804104954444 +2065-03-01,Baabda,1141.3097113541066,230.97748603811192 +2065-04-01,Baabda,1373.7062515688817,241.3330703464888 +2065-05-01,Baabda,1576.6535620080367,247.57901243259727 +2065-06-01,Baabda,1443.1237605853362,316.35757347157204 +2065-07-01,Baabda,1770.7234719301016,275.00710647330567 +2065-08-01,Baabda,1861.0498674975331,272.65346231325924 +2065-09-01,Baabda,1858.0276862847584,270.79750616147953 +2065-10-01,Baabda,1702.529371791445,283.90873397623784 +2065-11-01,Baabda,1712.2492030192923,257.02444329489197 +2065-12-01,Baabda,1695.7084599670288,237.44009927093066 +2066-01-01,Baabda,1696.4580901201766,232.49536438200818 +2066-02-01,Baabda,1535.2823650245325,214.82442474764434 +2066-03-01,Baabda,922.9178378844047,219.1771384865864 +2066-04-01,Baabda,924.6826069616314,183.18999470910458 +2066-05-01,Baabda,1032.067870221293,199.28459342689726 +2066-06-01,Baabda,1096.585651476208,219.40228393996668 +2066-07-01,Baabda,1308.3197579185735,288.64164808331236 +2066-08-01,Baabda,1293.7130918310838,319.0843822043329 +2066-09-01,Baabda,1173.3571442224309,328.2828317501409 +2066-10-01,Baabda,1311.243896404836,261.6563112077438 +2066-11-01,Baabda,1310.7853483060526,266.9321618789394 +2066-12-01,Baabda,1350.8409025751116,274.12620275601296 +2067-01-01,Baabda,1639.8445078094974,251.05503655451668 +2067-02-01,Baabda,1851.760885881427,286.6863424428892 +2067-03-01,Baabda,2327.4766627817326,251.40094318325202 +2067-04-01,Baabda,2382.3947576528503,285.7729800101681 +2067-05-01,Baabda,2354.2413353579873,381.1316142643816 +2067-06-01,Baabda,2338.929810073388,355.4487110090537 +2067-07-01,Baabda,2315.3131307635826,357.1025932148399 +2067-08-01,Baabda,2209.141925485838,339.73773373422983 +2067-09-01,Baabda,2134.7352884760094,323.8472929595007 +2067-10-01,Baabda,2087.8262359271903,301.06431773336874 +2067-11-01,Baabda,2041.670497217775,290.09415715627915 +2067-12-01,Baabda,2006.1869643136893,279.13661121632197 +2068-01-01,Baabda,1980.7777465994948,271.41247894290916 +2068-02-01,Baabda,1967.3852801741625,265.32570443833725 +2068-03-01,Baabda,1917.3877400599558,257.84775123475134 +2068-04-01,Baabda,1723.9587915464792,242.14809762542356 +2068-05-01,Baabda,1462.7544080053938,211.8616079573059 +2068-06-01,Baabda,788.9731258770335,196.4387663304905 +2068-07-01,Baabda,1151.6705039905419,199.00854680614069 +2068-08-01,Baabda,1315.251109490557,315.2237315258135 +2068-09-01,Baabda,1479.6877470044294,342.5608858359666 +2068-10-01,Baabda,1542.67013949169,351.6014679931004 +2068-11-01,Baabda,1988.4561072401746,312.77433415525337 +2068-12-01,Baabda,1976.1708718953275,293.4548882898461 +2069-01-01,Baabda,1404.801522380085,217.7779188785231 +2069-02-01,Baabda,1112.6638085428308,202.79901473377225 +2069-03-01,Baabda,1069.6381405494262,228.39318213155275 +2069-04-01,Baabda,986.2107226189952,221.04240807659977 +2069-05-01,Baabda,1113.153030413709,208.18706006139303 +2069-06-01,Baabda,1275.0072621817071,218.72952173535825 +2069-07-01,Baabda,1259.149913770099,219.45592381145724 +2069-08-01,Baabda,1172.516342834441,221.17923262760144 +2069-09-01,Baabda,1225.2097745672631,214.99570902011072 +2069-10-01,Baabda,1262.4092677056803,221.84322544630865 +2069-11-01,Baabda,1284.1668897381228,226.3106512363668 +2069-12-01,Baabda,1276.3006610983741,232.709711779773 +2070-01-01,Baabda,1243.5291005202143,233.95679038049184 +2070-02-01,Baabda,1138.7426070742194,223.9336128260244 +2070-03-01,Baabda,1097.8885429689972,208.32998906398944 +2070-04-01,Baabda,1117.6006565274138,202.26399920276285 +2070-05-01,Baabda,1203.4199202800785,201.91151783990813 +2070-06-01,Baabda,1223.8518403009914,203.93705233734897 +2070-07-01,Baabda,1227.4505184128702,202.11470755424438 +2070-08-01,Baabda,1248.554002774346,199.98075910302765 +2070-09-01,Baabda,1274.942868512343,197.7286406409545 +2070-10-01,Baabda,1316.538628677238,199.24137354075728 +2070-11-01,Baabda,1294.3743135140812,199.8514590724207 +2070-12-01,Baabda,1330.0226913781346,202.80335793120597 +2071-01-01,Baabda,1644.6133230286991,252.84092061012024 +2071-02-01,Baabda,1683.2087207378756,261.51701536818115 +2071-03-01,Baabda,1958.9757078116165,277.5490111828366 +2071-04-01,Baabda,2178.5727134080757,241.8136806442518 +2071-05-01,Baabda,2037.4450257213707,299.0073941827125 +2071-06-01,Baabda,2229.765184671715,310.2366343247666 +2071-07-01,Baabda,2354.1808378952405,303.1766792945805 +2071-08-01,Baabda,2270.151137261912,340.83244079695487 +2071-09-01,Baabda,2122.245183503219,332.9493622514289 +2071-10-01,Baabda,1973.7931940971564,305.34693171245675 +2071-11-01,Baabda,1709.2478488018894,280.7366137987423 +2071-12-01,Baabda,1330.5014289112069,218.4132890118071 +2072-01-01,Baabda,507.40312866764765,154.79876205786763 +2072-02-01,Baabda,813.8810080597758,144.00474533933271 +2072-03-01,Baabda,1266.0447118400011,169.90144271886703 +2072-04-01,Baabda,1592.5312415341746,208.8864900515182 +2072-05-01,Baabda,1450.8208230177784,271.38433576123657 +2072-06-01,Baabda,1176.5932625985497,308.3946022242076 +2072-07-01,Baabda,1440.2293749496052,250.41620846149243 +2072-08-01,Baabda,1404.1751540362814,290.19470540429927 +2072-09-01,Baabda,1460.4096000230475,260.70270734487235 +2072-10-01,Baabda,1425.2632660916495,256.5115587062201 +2072-11-01,Baabda,1294.7052077160613,269.59143435266685 +2072-12-01,Baabda,1183.7732629928305,266.6062745317936 +2073-01-01,Baabda,1587.589718101651,245.5181421972242 +2073-02-01,Baabda,1429.1641481567815,224.3285210495854 +2073-03-01,Baabda,498.64495207304356,209.30188783919328 +2073-04-01,Baabda,850.9802624279508,165.99147692383883 +2073-05-01,Baabda,1255.697591346786,175.85207504315932 +2073-06-01,Baabda,1304.3121197921305,184.11158247539447 +2073-07-01,Baabda,1263.4275235950533,188.1568144342347 +2073-08-01,Baabda,1240.8436932394052,183.87484594096492 +2073-09-01,Baabda,1234.0669856500642,186.09974334396287 +2073-10-01,Baabda,1272.2247330959494,187.37713211445813 +2073-11-01,Baabda,1255.5447892072718,190.20021044638713 +2073-12-01,Baabda,1272.3974413092717,191.1283268406666 +2074-01-01,Baabda,1304.2647277516414,197.95127792086993 +2074-02-01,Baabda,1297.6896311447097,203.00255485469555 +2074-03-01,Baabda,1321.0520652627129,209.89485877544905 +2074-04-01,Baabda,1339.7265127387911,221.64544859161907 +2074-05-01,Baabda,1337.7734506217737,232.22947033104893 +2074-06-01,Baabda,1390.8926314776743,254.24174471150297 +2074-07-01,Baabda,1388.5695005721436,334.62627907969807 +2074-08-01,Baabda,1669.877176816012,333.41451777445957 +2074-09-01,Baabda,1802.7417895089775,284.4774991943119 +2074-10-01,Baabda,1675.224614137927,301.23173831215206 +2074-11-01,Baabda,1630.4284390175505,297.32570075938884 +2074-12-01,Baabda,1790.0337803261052,279.2114967924565 +2075-01-01,Baabda,1662.85097032293,255.14602423663973 +2075-02-01,Baabda,1683.640562111301,261.5942984630689 +2075-03-01,Baabda,1909.9447102989545,274.1044959900702 +2075-04-01,Baabda,2181.5650000900787,245.439936979739 +2075-05-01,Baabda,2121.308110391724,278.3239261287846 +2075-06-01,Baabda,2115.6553521512624,315.762232680241 +2075-07-01,Baabda,2212.8331207948445,288.9450817452116 +2075-08-01,Baabda,2228.368925900354,322.4089845745338 +2075-09-01,Baabda,2217.774219186647,314.9996741770981 +2075-10-01,Baabda,2119.9944512006477,314.2774493163653 +2075-11-01,Baabda,1964.9568808498477,299.84399913042637 +2075-12-01,Baabda,1706.7233902744306,275.4790857035571 +2076-01-01,Baabda,1331.5213849634672,212.40401891154642 +2076-02-01,Baabda,686.4866694573473,158.47052514353635 +2076-03-01,Baabda,908.6047332554903,150.00723783850256 +2076-04-01,Baabda,1274.4497504348471,195.86823063702943 +2076-05-01,Baabda,1527.125833571743,297.03110103197264 +2076-06-01,Baabda,1046.4229122014326,331.60689928923534 +2076-07-01,Baabda,1102.1232945211623,252.99194584912178 +2076-08-01,Baabda,1196.1670254019964,241.3369985887537 +2076-09-01,Baabda,1289.7786315489236,207.81990772801367 +2076-10-01,Baabda,1175.9057592309166,237.35986538373118 +2076-11-01,Baabda,1216.4021515686807,236.4927197355916 +2076-12-01,Baabda,1162.2937592727355,232.0601225160371 +2077-01-01,Baabda,1461.46171748993,228.30941651480526 +2077-02-01,Baabda,788.2573573013952,189.59223657547176 +2077-03-01,Baabda,653.9522107618737,165.66248202353978 +2077-04-01,Baabda,1101.8531811424104,168.26973756154814 +2077-05-01,Baabda,1460.0334389841876,181.41949165842564 +2077-06-01,Baabda,1418.1776955777455,204.40340661975625 +2077-07-01,Baabda,1343.3831380690856,207.96462564844907 +2077-08-01,Baabda,1331.3621363730047,218.47750562948983 +2077-09-01,Baabda,1346.1952074850135,222.47195629689142 +2077-10-01,Baabda,1215.3282861848625,226.72551419293544 +2077-11-01,Baabda,1179.7669708286735,210.42811305229736 +2077-12-01,Baabda,1113.0515873614218,202.43455499837728 +2078-01-01,Baabda,1189.1491780431109,197.86794570174317 +2078-02-01,Baabda,1268.5719331321523,208.2298096650083 +2078-03-01,Baabda,1279.2024849467377,222.09404279280045 +2078-04-01,Baabda,1310.85958875214,238.26198714199006 +2078-05-01,Baabda,1281.1935882083635,248.21177295893068 +2078-06-01,Baabda,1201.1375932838482,245.6620947559037 +2078-07-01,Baabda,1173.4326597906843,222.2586140127578 +2078-08-01,Baabda,1201.2187052216061,224.8357253630573 +2078-09-01,Baabda,1194.4378180651663,249.13902255796856 +2078-10-01,Baabda,1254.2111531022672,276.69033984136706 +2078-11-01,Baabda,1133.7007740313334,311.52710801491895 +2078-12-01,Baabda,1211.6110217115806,263.4541367509836 +2079-01-01,Baabda,1492.1539080165546,231.48078055177086 +2079-02-01,Baabda,1566.4562683692827,242.0234819776114 +2079-03-01,Baabda,1718.637281708599,267.79951039405046 +2079-04-01,Baabda,1754.719838670048,262.2465803247892 +2079-05-01,Baabda,1720.821140937595,257.02899858052314 +2079-06-01,Baabda,1668.109574133973,248.96864196564763 +2079-07-01,Baabda,1698.366948002119,227.92468852471956 +2079-08-01,Baabda,1684.0620608271608,218.62314567252258 +2079-09-01,Baabda,1545.9265181422184,219.02629767210425 +2079-10-01,Baabda,1229.7854796184927,223.96103675207098 +2079-11-01,Baabda,1231.6072749925709,218.65914533872495 +2079-12-01,Baabda,1119.4430663765033,210.64767044273745 +2080-01-01,Baabda,842.4509702620766,212.34155432679876 +2080-02-01,Baabda,964.5842964893718,198.20020491603705 +2080-03-01,Baabda,1286.0046241392713,215.74459244513423 +2080-04-01,Baabda,1360.6213729459466,272.9099138288211 +2080-05-01,Baabda,1262.7551091730463,282.3621038497547 +2080-06-01,Baabda,1215.4349714060534,278.0348130308229 +2080-07-01,Baabda,1183.908425942387,253.02244044341768 +2080-08-01,Baabda,1184.4164204451483,211.75161717388846 +2080-09-01,Baabda,1149.2362957763614,239.2963966080714 +2080-10-01,Baabda,1102.6826481111502,252.31496032301726 +2080-11-01,Baabda,1142.89695508983,257.8898737950004 +2080-12-01,Baabda,1197.054935469994,283.53160427635464 +2081-01-01,Baabda,1581.9463107570703,246.23899309528684 +2081-02-01,Baabda,1428.9435520221282,225.15951949190705 +2081-03-01,Baabda,700.9930967745947,222.93541511434285 +2081-04-01,Baabda,863.8657969523263,176.6816810803589 +2081-05-01,Baabda,1116.0982792558248,188.62824961215358 +2081-06-01,Baabda,1306.5346577268172,194.77368033514588 +2081-07-01,Baabda,1295.1310276792603,219.14813773089827 +2081-08-01,Baabda,1293.461609403974,214.2792658680636 +2081-09-01,Baabda,1284.977867435461,230.9369864136343 +2081-10-01,Baabda,1310.106699953458,232.5322216222261 +2081-11-01,Baabda,1256.3886367204352,230.06771988352068 +2081-12-01,Baabda,1316.4194047547521,230.91772327257468 +2082-01-01,Baabda,1327.5580219122196,277.5927105727272 +2082-02-01,Baabda,1388.7740868396063,337.9984260910208 +2082-03-01,Baabda,1677.8364893738512,319.9189584823324 +2082-04-01,Baabda,1924.9557317931885,284.06862081340034 +2082-05-01,Baabda,2037.5240832956395,287.9468102637222 +2082-06-01,Baabda,1736.2766133466698,300.43528258232885 +2082-07-01,Baabda,1484.8046705748473,297.64058718394773 +2082-08-01,Baabda,1520.9973130832618,249.17465337513198 +2082-09-01,Baabda,1506.3389337079439,231.13760340592387 +2082-10-01,Baabda,1485.9706989551921,238.10823242010017 +2082-11-01,Baabda,1417.5647868568012,246.7761756144001 +2082-12-01,Baabda,1494.1415401122847,272.5184635650004 +2083-01-01,Baabda,1573.1617107975894,244.70604726814912 +2083-02-01,Baabda,1678.816633278496,265.10395239611535 +2083-03-01,Baabda,1980.6466923769167,277.08668657617994 +2083-04-01,Baabda,2092.361420429601,239.7586935510501 +2083-05-01,Baabda,1548.3903375266893,298.54240464174944 +2083-06-01,Baabda,1199.028257861421,229.4602808437118 +2083-07-01,Baabda,708.5027870888101,162.86630200777682 +2083-08-01,Baabda,1161.5068672163034,166.2721341575824 +2083-09-01,Baabda,1138.6408098213305,203.44950767765357 +2083-10-01,Baabda,1084.9975537553573,200.59017148519496 +2083-11-01,Baabda,1072.0914755960912,200.2044383814781 +2083-12-01,Baabda,1199.4575489905153,195.65723976551914 +2084-01-01,Baabda,1345.1335974420092,213.7330557687218 +2084-02-01,Baabda,1376.0366081666841,239.7811748999746 +2084-03-01,Baabda,1259.64876989734,239.46049754550404 +2084-04-01,Baabda,1249.291235906439,218.15297380256214 +2084-05-01,Baabda,1292.0325516569087,210.98094399188844 +2084-06-01,Baabda,1313.615694473021,209.23223069818596 +2084-07-01,Baabda,1256.8469722988575,209.18986838606156 +2084-08-01,Baabda,1209.079124971489,204.06177863987278 +2084-09-01,Baabda,1205.3827583336993,201.05531778699958 +2084-10-01,Baabda,1220.1304671007313,198.95489771342415 +2084-11-01,Baabda,1210.0200234494805,195.2720507141347 +2084-12-01,Baabda,1217.753001822921,190.74714902258086 +2085-01-01,Baabda,1575.1652110802697,243.7353472523219 +2085-02-01,Baabda,1656.7667957497645,261.1815932733782 +2085-03-01,Baabda,1739.904619268358,256.4188946064078 +2085-04-01,Baabda,1472.1931456358407,236.0489482355946 +2085-05-01,Baabda,463.8108813919834,225.16341084926805 +2085-06-01,Baabda,930.8337962886127,162.3121063267416 +2085-07-01,Baabda,1352.1075239263007,188.1991398614552 +2085-08-01,Baabda,1421.5066145114738,232.78425617054648 +2085-09-01,Baabda,1371.6280857993922,277.96360672385197 +2085-10-01,Baabda,1367.224947281244,326.87688986834263 +2085-11-01,Baabda,1572.6988414514672,291.08580779751924 +2085-12-01,Baabda,1718.538247220402,278.10540151565357 +2086-01-01,Baabda,1818.5449452285466,267.06665345976967 +2086-02-01,Baabda,1594.8579144457206,269.5119197210934 +2086-03-01,Baabda,1556.769023596779,246.35716310614316 +2086-04-01,Baabda,1763.2716579941816,227.24169075928 +2086-05-01,Baabda,1750.93555944295,242.17498672036362 +2086-06-01,Baabda,1580.4464837298126,234.89943942690627 +2086-07-01,Baabda,936.1550227660118,232.31131793279383 +2086-08-01,Baabda,788.2132239064406,184.01001989251722 +2086-09-01,Baabda,1003.2649148632843,182.3208664973806 +2086-10-01,Baabda,1116.8454300047615,209.46986169153502 +2086-11-01,Baabda,1324.7302259895823,246.85344948806193 +2086-12-01,Baabda,1209.0310245297967,263.8628122649237 +2087-01-01,Baabda,1430.2482853580452,223.17118342004514 +2087-02-01,Baabda,1000.2160269251514,199.4081117488185 +2087-03-01,Baabda,977.6960943580256,213.82491762187445 +2087-04-01,Baabda,1173.7325260199673,220.85270901586335 +2087-05-01,Baabda,1477.7733635931024,245.91974503084225 +2087-06-01,Baabda,1369.453010745315,316.79945462024443 +2087-07-01,Baabda,1508.9727693811653,263.1049012596717 +2087-08-01,Baabda,1365.8264216260334,221.33591969935102 +2087-09-01,Baabda,549.9983012499126,225.55120950760312 +2087-10-01,Baabda,1000.3533859184374,173.58353357762655 +2087-11-01,Baabda,1051.123437544653,190.52647586379794 +2087-12-01,Baabda,1133.1360365922014,181.6725220991512 +2088-01-01,Baabda,1248.964875472159,183.35603210399177 +2088-02-01,Baabda,1329.5500460954092,191.3356292217873 +2088-03-01,Baabda,1383.8944776722358,212.77260975617767 +2088-04-01,Baabda,1297.67610068173,221.20259921421945 +2088-05-01,Baabda,1274.3657340521565,209.99630148238862 +2088-06-01,Baabda,1349.16794229381,203.40074583470323 +2088-07-01,Baabda,1393.287452584961,210.56805437767824 +2088-08-01,Baabda,1370.1448353602875,221.41763820393228 +2088-09-01,Baabda,1353.1490153751358,232.79817100054123 +2088-10-01,Baabda,1294.7091039226784,249.05626205485225 +2088-11-01,Baabda,1240.5626704821254,263.2331777341955 +2088-12-01,Baabda,1166.8591925065198,249.53339595042303 +2089-01-01,Baabda,1691.7786751328092,258.7934156220593 +2089-02-01,Baabda,1828.5396361232067,276.48268705365933 +2089-03-01,Baabda,1922.1654811343167,248.10034366426132 +2089-04-01,Baabda,1675.4742547219084,278.3214456189976 +2089-05-01,Baabda,1568.6741308560286,249.04184927865498 +2089-06-01,Baabda,1502.2850369829366,210.6610043354958 +2089-07-01,Baabda,1279.4305901341445,207.73093211859089 +2089-08-01,Baabda,1092.9373852801107,192.10307497469637 +2089-09-01,Baabda,968.6772261206712,198.0957007620741 +2089-10-01,Baabda,951.369638766024,207.45644388502393 +2089-11-01,Baabda,1171.4586998381744,206.32251894823156 +2089-12-01,Baabda,1328.9130517335584,244.63373441406134 +2090-01-01,Baabda,1457.3453397788069,279.74419779574646 +2090-02-01,Baabda,1319.1634676551798,331.69936974330227 +2090-03-01,Baabda,1478.5739986328751,278.5319662079832 +2090-04-01,Baabda,1382.1900643775155,251.81395267339988 +2090-05-01,Baabda,1192.5504955797987,256.57537881118594 +2090-06-01,Baabda,1381.0397625038797,252.23099183929838 +2090-07-01,Baabda,1527.5318891413747,307.4592748312165 +2090-08-01,Baabda,1799.9047843706996,298.8726905136849 +2090-09-01,Baabda,2131.78451410451,257.3752095097156 +2090-10-01,Baabda,2195.9707635963623,305.385457994576 +2090-11-01,Baabda,2250.4740187229295,333.90119563891335 +2090-12-01,Baabda,2167.879822287615,317.75101137094964 +2091-01-01,Baabda,1623.4139919844401,250.6016196521509 +2091-02-01,Baabda,1646.5955712752857,257.4426074503593 +2091-03-01,Baabda,1789.2075011627794,264.8763172117221 +2091-04-01,Baabda,1942.5201145839687,257.9921925184075 +2091-05-01,Baabda,2011.7294953269447,256.0229536055377 +2091-06-01,Baabda,2135.8038408508046,289.885609909652 +2091-07-01,Baabda,2352.1107478994663,293.23171617882423 +2091-08-01,Baabda,2341.912462499028,332.55054422805495 +2091-09-01,Baabda,2232.573287040905,351.350521549445 +2091-10-01,Baabda,2058.6647587202797,320.686607102213 +2091-11-01,Baabda,1883.7801952219875,303.29764333690696 +2091-12-01,Baabda,1762.1872374324364,276.3558583116135 +2092-01-01,Baabda,1487.3916100884217,223.293419991556 +2092-02-01,Baabda,318.4281110385833,163.5751745332993 +2092-03-01,Baabda,671.6973066995714,139.68794827555922 +2092-04-01,Baabda,1389.9192882245795,168.10621756135183 +2092-05-01,Baabda,1793.5796117082307,208.8733313620533 +2092-06-01,Baabda,1421.7701397590365,242.68794507884326 +2092-07-01,Baabda,1230.207332534954,271.66871837027367 +2092-08-01,Baabda,1383.4202739068635,215.58855085920283 +2092-09-01,Baabda,1542.6637638808618,189.73716658410456 +2092-10-01,Baabda,1502.8578501957843,196.42170706243866 +2092-11-01,Baabda,1419.7621057086562,218.95394793311257 +2092-12-01,Baabda,1331.169167885273,233.4820355612223 +2093-01-01,Baabda,1553.5377223488415,240.48113049998028 +2093-02-01,Baabda,1604.223970112727,249.5222290457686 +2093-03-01,Baabda,1539.792047083631,230.72445559738634 +2093-04-01,Baabda,1320.5223228430157,245.1306478393463 +2093-05-01,Baabda,1094.1066014658697,228.4459367653498 +2093-06-01,Baabda,1270.7877412554092,204.7537209945071 +2093-07-01,Baabda,1169.038376287575,236.01006232566237 +2093-08-01,Baabda,1252.8001595858814,225.37004008089264 +2093-09-01,Baabda,1202.39358861699,242.86082462340318 +2093-10-01,Baabda,1124.304611313194,215.89996088156954 +2093-11-01,Baabda,1009.8327149378238,209.28029172796226 +2093-12-01,Baabda,1092.1844964814286,203.92898376462176 +2094-01-01,Baabda,1258.9844312490486,218.38252700195795 +2094-02-01,Baabda,1318.3570237255415,254.11721205472458 +2094-03-01,Baabda,1254.7382035973928,259.76003063478004 +2094-04-01,Baabda,1150.4155712592049,249.42195743452768 +2094-05-01,Baabda,1121.7941082894367,226.0417326232881 +2094-06-01,Baabda,1211.8676046273526,215.00099278259376 +2094-07-01,Baabda,1155.9928139314134,240.68373927708018 +2094-08-01,Baabda,1117.4778197587918,225.43297494816494 +2094-09-01,Baabda,1103.4202354438446,222.84189344051487 +2094-10-01,Baabda,1128.2411967989635,213.89000103479867 +2094-11-01,Baabda,1191.3848214000554,211.75022476876637 +2094-12-01,Baabda,1177.1405025279644,206.46577069373708 +2095-01-01,Baabda,1557.7481757397395,241.09097627976834 +2095-02-01,Baabda,1548.5535531638895,238.95724913797494 +2095-03-01,Baabda,1759.8231609373654,273.4976378874977 +2095-04-01,Baabda,1973.2929211675091,268.0003394745373 +2095-05-01,Baabda,2001.5516118811563,246.67749927525273 +2095-06-01,Baabda,1711.1068352391317,293.23601327012807 +2095-07-01,Baabda,1772.6062606477687,268.30715732636907 +2095-08-01,Baabda,1940.754495425298,262.29978679865894 +2095-09-01,Baabda,2182.833746644877,267.06360123397224 +2095-10-01,Baabda,2341.805635597597,296.6144860424689 +2095-11-01,Baabda,2332.9171840217377,338.8644467495916 +2095-12-01,Baabda,2220.9472898556874,344.74865858319345 +2096-01-01,Baabda,2080.4537629260203,324.45545125493555 +2096-02-01,Baabda,1999.0970017123257,303.83334123863835 +2096-03-01,Baabda,2001.267117957981,286.5991649725313 +2096-04-01,Baabda,2004.2473618195309,275.51964987661654 +2096-05-01,Baabda,1951.620094759081,271.0675497641271 +2096-06-01,Baabda,1893.7809783669943,269.6767952415079 +2096-07-01,Baabda,1861.7575602994557,262.7550479462195 +2096-08-01,Baabda,1824.0068601848864,261.1574336613264 +2096-09-01,Baabda,1801.6195403229856,263.00509070972953 +2096-10-01,Baabda,1972.1273178278861,288.9041026169833 +2096-11-01,Baabda,2180.4613110156088,259.1441080670751 +2096-12-01,Baabda,1845.0509096854203,295.09731773297267 +2097-01-01,Baabda,1529.224542976123,237.48774534553814 +2097-02-01,Baabda,1437.763713722006,224.7180348559516 +2097-03-01,Baabda,1612.7675719829044,249.20842150464864 +2097-04-01,Baabda,1611.5037842365282,282.12730377277967 +2097-05-01,Baabda,1498.4231169839766,219.95138950426426 +2097-06-01,Baabda,1282.003290783536,242.50524492862115 +2097-07-01,Baabda,1622.338355597614,231.15528971734187 +2097-08-01,Baabda,1626.5427167381652,297.9112486087355 +2097-09-01,Baabda,1753.2637908371432,262.8635356698032 +2097-10-01,Baabda,1756.108305028174,259.3428070443621 +2097-11-01,Baabda,1773.4839697384418,262.3707533537546 +2097-12-01,Baabda,1587.9719713908576,230.00692434067435 +2098-01-01,Baabda,1151.0326595472475,219.04180777419248 +2098-02-01,Baabda,1114.6242380323606,198.20362599087338 +2098-03-01,Baabda,1149.6667203473805,185.86550576177225 +2098-04-01,Baabda,862.7738673378283,224.06903575067804 +2098-05-01,Baabda,1078.5161786275994,214.96365603862523 +2098-06-01,Baabda,1264.689823698903,263.94472441525045 +2098-07-01,Baabda,1188.5059497506727,269.38827230200855 +2098-08-01,Baabda,1233.2443901729946,250.90034126757746 +2098-09-01,Baabda,1234.619538588502,252.6731496247499 +2098-10-01,Baabda,1235.2153040003311,228.65508339166527 +2098-11-01,Baabda,1218.0773787338326,218.20192007003192 +2098-12-01,Baabda,1144.8237355222116,228.57498782285543 +2099-01-01,Baabda,1447.7744144838566,225.7867103977522 +2099-02-01,Baabda,1015.7667084559265,199.32646701404502 +2099-03-01,Baabda,954.3602961252599,210.28237157577888 +2099-04-01,Baabda,1099.59578986853,212.4877660858419 +2099-05-01,Baabda,1192.57344777878,203.6587004100989 +2099-06-01,Baabda,1233.8394471836202,214.09370713778952 +2099-07-01,Baabda,1187.0554274471529,207.57696530850365 +2099-08-01,Baabda,1127.6617246148066,204.16170906575263 +2099-09-01,Baabda,1144.1236226131623,194.86776450375822 +2099-10-01,Baabda,1240.605387074674,196.28340711528114 +2099-11-01,Baabda,1258.6210922719656,201.09503360726944 +2099-12-01,Baabda,1257.9337305845727,203.83303690836266 +2100-01-01,Baabda,1327.6906346174446,215.43203899074672 +2100-02-01,Baabda,1366.29254961769,232.89503997939772 +2100-03-01,Baabda,1349.9928046547298,238.3276514921506 +2100-04-01,Baabda,1297.1317651972483,248.91133204621946 +2100-05-01,Baabda,1293.2291121291082,271.77329629404437 +2100-06-01,Baabda,1382.2563707301279,313.17448003516756 +2100-07-01,Baabda,1633.5140929781255,316.4605930081532 +2100-08-01,Baabda,1975.1405731855016,281.49629527938134 +2100-09-01,Baabda,2161.100281093461,293.43574502472416 +2100-10-01,Baabda,2187.624097260654,329.5517093290622 +2100-11-01,Baabda,2153.4100193125687,319.1897439323114 +2100-12-01,Baabda,2054.657049753716,328.17687986370004 +2101-01-01,Baabda,1527.3831248887182,235.2326945336053 +2101-02-01,Baabda,1461.1629138624512,227.40559805096723 +2101-03-01,Baabda,1307.0487444799255,237.45347926981884 +2101-04-01,Baabda,1444.8219399494692,235.1139067006087 +2101-05-01,Baabda,1506.5432366149253,247.42361633248402 +2101-06-01,Baabda,1543.2976412774187,228.16200599638546 +2101-07-01,Baabda,1372.5875443889058,219.08696411778698 +2101-08-01,Baabda,1083.0900418357007,222.9040813884833 +2101-09-01,Baabda,1248.1989520913394,208.83579175111333 +2101-10-01,Baabda,1168.113912717496,262.760211832765 +2101-11-01,Baabda,1353.7660328230586,272.1423297575224 +2101-12-01,Baabda,1362.301983960242,353.37725480626244 +2102-01-01,Baabda,1831.0133731245216,319.3236914608092 +2102-02-01,Baabda,2122.0737504120625,275.1636736691176 +2102-03-01,Baabda,2276.3521980335927,311.79749280292754 +2102-04-01,Baabda,2267.190161913087,342.60380142164945 +2102-05-01,Baabda,2158.4779215197304,328.2945242646759 +2102-06-01,Baabda,1953.2062050528793,323.38881360407527 +2102-07-01,Baabda,1806.0936606416872,303.4850370911498 +2102-08-01,Baabda,1594.8549391606678,275.0823885621571 +2102-09-01,Baabda,850.5556467467973,199.54098039387736 +2102-10-01,Baabda,310.02923553420453,140.42691888266074 +2102-11-01,Baabda,1011.2274152265377,159.29804718366586 +2102-12-01,Baabda,1750.391365638709,198.60858535074598 +2103-01-01,Baabda,1554.5199914570958,242.1138684346082 +2103-02-01,Baabda,1588.7214598637647,250.3716238339083 +2103-03-01,Baabda,1543.7617857457067,230.0466401609442 +2103-04-01,Baabda,1426.447571223035,242.81358428273853 +2103-05-01,Baabda,1410.1153814849717,230.13794874053838 +2103-06-01,Baabda,1283.2251411786872,226.02170412047263 +2103-07-01,Baabda,940.1595439271613,209.15984407429036 +2103-08-01,Baabda,1018.0878558380883,205.64422400803875 +2103-09-01,Baabda,1074.7665402193345,219.43898441934306 +2103-10-01,Baabda,1140.0092284254083,213.02938401464866 +2103-11-01,Baabda,1169.3902391651677,217.9325127319766 +2103-12-01,Baabda,1217.0351788837938,219.06941612475856 +2104-01-01,Baabda,1342.599079617466,241.7353555508289 +2104-02-01,Baabda,1420.6236632518978,276.66207678375685 +2104-03-01,Baabda,1374.0365082097792,340.24390527039264 +2104-04-01,Baabda,1721.179450266136,331.9065153635814 +2104-05-01,Baabda,2008.6791197462856,282.87164113339804 +2104-06-01,Baabda,1995.5416777540784,295.8397555210404 +2104-07-01,Baabda,1705.4610193304604,313.7938144564829 +2104-08-01,Baabda,1467.7830647859018,286.4952233133528 +2104-09-01,Baabda,1176.0458101487743,233.70558574250913 +2104-10-01,Baabda,871.9878292665236,198.286275839278 +2104-11-01,Baabda,1168.967394487022,187.30739198241704 +2104-12-01,Baabda,1020.9186978858988,230.6642686554543 +2105-01-01,Baabda,1587.8457342964605,244.8633060559091 +2105-02-01,Baabda,1705.4220572642887,267.05634412913076 +2105-03-01,Baabda,2153.803890381507,283.9845140112918 +2105-04-01,Baabda,2356.054417397268,243.0921114132821 +2105-05-01,Baabda,2274.3264539531347,373.3530859789484 +2105-06-01,Baabda,2271.344509928698,325.8520796985001 +2105-07-01,Baabda,2308.937944976173,345.01721756845916 +2105-08-01,Baabda,2253.534595280914,334.1833467112647 +2105-09-01,Baabda,2218.5683369353505,335.5894914600344 +2105-10-01,Baabda,2159.751060161988,315.2875424095533 +2105-11-01,Baabda,2104.8423161867513,308.4501140045709 +2105-12-01,Baabda,2072.5035179035813,293.0501502393969 +2106-01-01,Baabda,2075.0750142709276,288.272725274546 +2106-02-01,Baabda,2089.293193138623,279.6697825021365 +2106-03-01,Baabda,2083.2176610601355,281.62944056121944 +2106-04-01,Baabda,2099.0730967884956,281.3977388161717 +2106-05-01,Baabda,2119.2069924232533,281.70628103726045 +2106-06-01,Baabda,2132.878568922617,285.97215849120573 +2106-07-01,Baabda,2139.5545418608735,287.74855390528205 +2106-08-01,Baabda,2146.7365966186435,292.1685457089301 +2106-09-01,Baabda,2151.263280306617,291.6113807931313 +2106-10-01,Baabda,2146.3291242466057,294.9863310571501 +2106-11-01,Baabda,2151.661968503736,295.0050132609733 +2106-12-01,Baabda,2156.1260295253533,295.800583753103 +2107-01-01,Baabda,1401.5282837809223,217.30806053024574 +2107-02-01,Baabda,419.6380284902371,167.17737269022047 +2107-03-01,Baabda,871.0442388639602,168.17450073968905 +2107-04-01,Baabda,1352.163770981829,172.59358886319168 +2107-05-01,Baabda,1570.1089266528395,217.31505944075997 +2107-06-01,Baabda,1485.923802795545,270.15283181118775 +2107-07-01,Baabda,1546.252807736378,220.9864352349378 +2107-08-01,Baabda,1331.5645974368579,279.081698815647 +2107-09-01,Baabda,1534.7241448764696,227.39970568756985 +2107-10-01,Baabda,1518.4443768274373,256.31769165134347 +2107-11-01,Baabda,1452.7446990052272,258.88674365014174 +2107-12-01,Baabda,1491.6071639679822,252.9067417211224 +2108-01-01,Baabda,1704.782370977866,266.1959484184041 +2108-02-01,Baabda,1884.4163395023943,275.11124177822967 +2108-03-01,Baabda,2048.1676696923632,256.94737228820156 +2108-04-01,Baabda,1862.5869564280754,287.03379823758814 +2108-05-01,Baabda,1729.2786012214722,290.4552234805157 +2108-06-01,Baabda,1645.3404260235875,263.77278543573993 +2108-07-01,Baabda,1400.416802293218,231.32800327983423 +2108-08-01,Baabda,1263.5867721855157,217.03648620408654 +2108-09-01,Baabda,1413.3947123344813,219.57629769532133 +2108-10-01,Baabda,1465.987267735978,258.8891780537989 +2108-11-01,Baabda,1501.080329896901,314.91223851241296 +2108-12-01,Baabda,1629.3588948810711,274.3202173505051 +2109-01-01,Baabda,1604.5230571006869,248.65252911803418 +2109-02-01,Baabda,1543.2092328072686,240.47518280922705 +2109-03-01,Baabda,1455.8544386067085,233.9990143742266 +2109-04-01,Baabda,1095.2163119505663,240.60236195785996 +2109-05-01,Baabda,1205.374540879743,209.77067652525764 +2109-06-01,Baabda,1322.5262481664176,226.1180659319006 +2109-07-01,Baabda,1288.3523365665503,230.6878565514957 +2109-08-01,Baabda,1146.9850675929479,219.78817380452512 +2109-09-01,Baabda,1235.9295140933223,216.66166181069684 +2109-10-01,Baabda,1239.244265002988,244.76812456140584 +2109-11-01,Baabda,1228.1773380472769,234.53376248968272 +2109-12-01,Baabda,1011.9724407718649,222.53834912390394 +2110-01-01,Baabda,1041.9074920925889,205.17421812014584 +2110-02-01,Baabda,1246.1425342387859,221.5025656951525 +2110-03-01,Baabda,1302.508246968491,255.22392515366778 +2110-04-01,Baabda,1258.3395027937229,261.6382468260608 +2110-05-01,Baabda,1243.9214839466258,281.2727819829985 +2110-06-01,Baabda,1209.9746857724806,303.3168234869328 +2110-07-01,Baabda,1305.086260626906,241.8375451770724 +2110-08-01,Baabda,1015.348468385601,246.26407482993602 +2110-09-01,Baabda,777.0755985106575,211.64009566695933 +2110-10-01,Baabda,906.241294321502,194.62728415158324 +2110-11-01,Baabda,1026.6169354836015,194.17214287996035 +2110-12-01,Baabda,1221.3835579889403,196.57934392046357 +2111-01-01,Baabda,1544.8328883648328,238.04221766335255 +2111-02-01,Baabda,1621.6259873477509,250.8378582403779 +2111-03-01,Baabda,1853.7897469271793,287.29529376375785 +2111-04-01,Baabda,1965.7882605018358,243.89196055426373 +2111-05-01,Baabda,1759.0665884524271,291.37990957873285 +2111-06-01,Baabda,1945.6205032895687,272.74857003795466 +2111-07-01,Baabda,2076.350844837757,254.7858892562266 +2111-08-01,Baabda,2038.836892405272,283.41701210117617 +2111-09-01,Baabda,2055.2071941280637,287.05000915285035 +2111-10-01,Baabda,2013.2545414370338,282.8131416758192 +2111-11-01,Baabda,1839.3657066698552,284.19292293952935 +2111-12-01,Baabda,1602.7934247231349,263.7072594039689 +2112-01-01,Baabda,1255.9098991873627,206.52560722908214 +2112-02-01,Baabda,705.4001314993601,161.23831300452548 +2112-03-01,Baabda,891.0713784374069,147.8007183388707 +2112-04-01,Baabda,1047.6621892661808,168.67581268976357 +2112-05-01,Baabda,1392.235476798319,184.3520904912474 +2112-06-01,Baabda,1587.5146275741197,247.6024620102491 +2112-07-01,Baabda,1195.5254972724454,293.48570562705106 +2112-08-01,Baabda,1147.2893259096907,246.87502715684099 +2112-09-01,Baabda,1433.7099586772392,202.96320788346463 +2112-10-01,Baabda,1465.1122505698772,192.38369532353605 +2112-11-01,Baabda,1350.520421870818,207.08554773389915 +2112-12-01,Baabda,1219.5430608230997,223.1373415207207 +2113-01-01,Baabda,1576.0144424425766,243.70574711694547 +2113-02-01,Baabda,1637.0742340645538,256.99665051980645 +2113-03-01,Baabda,1778.0253881714402,265.0101725279602 +2113-04-01,Baabda,1973.4959489523249,260.30210040365944 +2113-05-01,Baabda,2174.7001673910686,253.393133727571 +2113-06-01,Baabda,2332.370581653406,311.77215287395103 +2113-07-01,Baabda,2376.9278838880887,328.2391231390243 +2113-08-01,Baabda,2341.835246767887,364.71709433264823 +2113-09-01,Baabda,2287.0357382581724,356.75082188638515 +2113-10-01,Baabda,2238.0444112128857,342.1510023414239 +2113-11-01,Baabda,2155.203691158883,323.0427594357243 +2113-12-01,Baabda,2083.2831173313043,307.65767872927233 +2114-01-01,Baabda,2056.0193052673267,292.5330607716809 +2114-02-01,Baabda,2058.1719948433856,283.4093861472957 +2114-03-01,Baabda,2070.622571029042,279.0521540076264 +2114-04-01,Baabda,2089.2855424056297,279.01173737418253 +2114-05-01,Baabda,2103.9041096333312,279.97696920300723 +2114-06-01,Baabda,2101.3915522460857,282.576626450813 +2114-07-01,Baabda,2064.4858330866045,281.0902478148438 +2114-08-01,Baabda,1937.7896947099764,275.65925001663635 +2114-09-01,Baabda,1796.3144653930178,272.12506762249916 +2114-10-01,Baabda,1418.5250955277584,220.12273832531247 +2114-11-01,Baabda,245.15831627953122,172.98566617037864 +2114-12-01,Baabda,923.8054645919212,164.12849419786698 +2017-01-01,Beirut,288.9748918969635,484.20768100261256 +2017-02-01,Beirut,736.6858323253173,302.34490056297835 +2017-03-01,Beirut,390.85251261198226,261.0728259631015 +2017-04-01,Beirut,493.48005971517784,148.99236021659178 +2017-05-01,Beirut,697.7284964404921,100.72465130899056 +2017-06-01,Beirut,288.0179500242392,262.5707728238114 +2017-07-01,Beirut,402.0753289587577,473.8670967353541 +2017-08-01,Beirut,625.0673473345412,507.8368720979313 +2017-09-01,Beirut,785.9787165502192,511.75114077758843 +2017-10-01,Beirut,629.3185076576685,475.1078179608781 +2017-11-01,Beirut,686.0400559997612,340.69352577521437 +2017-12-01,Beirut,452.6847637661543,225.0908764885523 +2018-01-01,Beirut,436.1137001899457,301.074557118195 +2018-02-01,Beirut,623.449339615212,213.33814467977675 +2018-03-01,Beirut,319.6146496160293,97.76840897006957 +2018-04-01,Beirut,299.75970678991314,113.58160777624326 +2018-05-01,Beirut,302.45872678791244,156.4811984437011 +2018-06-01,Beirut,395.9784670307628,287.56953059747696 +2018-07-01,Beirut,539.6827060845266,334.36884593467056 +2018-08-01,Beirut,709.0737371513433,259.2202396187625 +2018-09-01,Beirut,478.65853289146725,342.01827139928906 +2018-10-01,Beirut,471.320941184611,367.42624315826737 +2018-11-01,Beirut,525.8963852805743,382.6904228221466 +2018-12-01,Beirut,538.5035742787663,449.85631493422983 +2019-01-01,Beirut,317.0946623907888,448.6855910645125 +2019-02-01,Beirut,624.440642611971,328.0976549647383 +2019-03-01,Beirut,790.3905202720896,150.76331744363475 +2019-04-01,Beirut,354.2635737839389,113.61536573292105 +2019-05-01,Beirut,327.9112407479472,157.10519505894342 +2019-06-01,Beirut,768.2732729315891,265.7853608934693 +2019-07-01,Beirut,893.6170465801089,225.374415753063 +2019-08-01,Beirut,392.9823107558376,350.35278176726774 +2019-09-01,Beirut,613.7582166672116,356.28859889704523 +2019-10-01,Beirut,858.5736896291181,247.73334956479468 +2019-11-01,Beirut,386.3234026874754,350.62153577050765 +2019-12-01,Beirut,391.0234437724124,448.8706653139865 +2020-01-01,Beirut,686.3025996780144,461.0910800958277 +2020-02-01,Beirut,739.2970205579135,324.41812384805456 +2020-03-01,Beirut,335.0898865367387,233.03788549266488 +2020-04-01,Beirut,343.0476245180896,135.14337820057574 +2020-05-01,Beirut,308.6660278376177,183.78747367773101 +2020-06-01,Beirut,535.7402300508189,234.5440004347763 +2020-07-01,Beirut,523.8788008973205,186.63055190154063 +2020-08-01,Beirut,556.0800093658411,190.3321402844559 +2020-09-01,Beirut,385.120609029835,379.33954497231286 +2020-10-01,Beirut,474.1595661087034,516.7509371361435 +2020-11-01,Beirut,808.4580416632951,506.1622430882588 +2020-12-01,Beirut,692.840523668937,382.3497069878263 +2021-01-01,Beirut,663.8515916289821,241.86942533714063 +2021-02-01,Beirut,302.5740783158284,395.2680274590248 +2021-03-01,Beirut,522.3054677831171,456.9545499944093 +2021-04-01,Beirut,543.3798190019983,420.67792922879823 +2021-05-01,Beirut,554.0252861628969,470.025892750089 +2021-06-01,Beirut,615.147527444238,414.4426847099276 +2021-07-01,Beirut,598.2884322601964,348.9058595669574 +2021-08-01,Beirut,495.93883475838044,325.2465120529627 +2021-09-01,Beirut,481.67768231376294,384.53378991849036 +2021-10-01,Beirut,647.3609526297619,386.1817089573356 +2021-11-01,Beirut,542.3763507270444,284.92546750468927 +2021-12-01,Beirut,414.61482448504887,189.72205008628296 +2022-01-01,Beirut,326.8283509527693,232.81312539621337 +2022-02-01,Beirut,518.8393922737323,247.16416870258556 +2022-03-01,Beirut,398.68528000823994,290.1125438393415 +2022-04-01,Beirut,487.4156813947097,328.8061412489909 +2022-05-01,Beirut,558.8882082347441,378.72356134831864 +2022-06-01,Beirut,594.3933570884619,227.0284005401219 +2022-07-01,Beirut,351.3135324007759,83.45269175414637 +2022-08-01,Beirut,271.1140001992422,111.09816638544312 +2022-09-01,Beirut,372.9321576517098,188.17185507618703 +2022-10-01,Beirut,355.6631723226524,273.07890615323333 +2022-11-01,Beirut,501.6201482724316,308.8951159507396 +2022-12-01,Beirut,545.648321892799,412.11526401323715 +2023-01-01,Beirut,427.55597994700645,358.1297258022873 +2023-02-01,Beirut,541.8076946997932,302.968569765675 +2023-03-01,Beirut,786.622267482552,152.16512564160593 +2023-04-01,Beirut,363.3514738254198,121.53952478779686 +2023-05-01,Beirut,694.3832764115257,159.78043127252246 +2023-06-01,Beirut,582.043747923509,238.88342292104628 +2023-07-01,Beirut,649.574055923878,263.8282093214015 +2023-08-01,Beirut,379.5264585766773,377.677564426245 +2023-09-01,Beirut,550.0794408872368,369.9370148805075 +2023-10-01,Beirut,444.52857486186036,393.0350738978665 +2023-11-01,Beirut,681.1339767676368,422.32981168266946 +2023-12-01,Beirut,501.5837810348679,259.60538016585224 +2024-01-01,Beirut,322.29816081328534,141.00230507884922 +2024-02-01,Beirut,305.06075891260707,184.57071341582144 +2024-03-01,Beirut,436.7410478976214,280.5726038718094 +2024-04-01,Beirut,522.8451380418151,458.417429248259 +2024-05-01,Beirut,698.0651634417004,474.28980356399444 +2024-06-01,Beirut,564.3856280086393,427.93383927805473 +2024-07-01,Beirut,595.6655674180854,397.41557804249277 +2024-08-01,Beirut,588.6064911395016,275.4211638079124 +2024-09-01,Beirut,426.47558493403767,311.1825233879069 +2024-10-01,Beirut,589.9511015919978,347.16078516325797 +2024-11-01,Beirut,536.2538979918529,200.95347219346758 +2024-12-01,Beirut,300.2544195300387,124.55427057894914 +2025-01-01,Beirut,590.9813694861465,277.52985569188655 +2025-02-01,Beirut,611.9571639480657,237.00541902382335 +2025-03-01,Beirut,290.38405805404585,417.65918555814153 +2025-04-01,Beirut,637.20916943282,488.6733468735796 +2025-05-01,Beirut,827.468333535501,289.03280619282924 +2025-06-01,Beirut,408.1061177373175,178.01057225825605 +2025-07-01,Beirut,261.8128091385848,108.00360086211549 +2025-08-01,Beirut,530.8331992007386,301.63141692934505 +2025-09-01,Beirut,633.3433115042767,275.6903658493726 +2025-10-01,Beirut,467.65572032836917,270.22671207486394 +2025-11-01,Beirut,368.1466767059619,326.65131866056225 +2025-12-01,Beirut,599.8236749367534,406.6886595531018 +2026-01-01,Beirut,560.6737521531468,443.194262313779 +2026-02-01,Beirut,485.6282856792034,469.1377431394847 +2026-03-01,Beirut,566.9172404045862,375.91012257600767 +2026-04-01,Beirut,674.0635839511974,326.3998313610442 +2026-05-01,Beirut,564.666895413163,162.51196521170968 +2026-06-01,Beirut,264.1612993765023,97.46818889797129 +2026-07-01,Beirut,357.39614577883435,256.80608906196005 +2026-08-01,Beirut,469.1437164593784,353.5137603406394 +2026-09-01,Beirut,677.729010562673,415.0905135120436 +2026-10-01,Beirut,460.5179683922837,291.9732638006033 +2026-11-01,Beirut,483.6536012621844,205.8225620173616 +2026-12-01,Beirut,324.61342158095374,232.52789737225683 +2027-01-01,Beirut,560.3874951842049,292.0869104184134 +2027-02-01,Beirut,484.66617420623135,297.0492438888535 +2027-03-01,Beirut,350.2134106047722,455.3156951134061 +2027-04-01,Beirut,630.663992569908,492.01116268606694 +2027-05-01,Beirut,720.929405158297,401.7200190830987 +2027-06-01,Beirut,588.7046106665919,360.4434296365401 +2027-07-01,Beirut,505.1066192693611,189.67845252099718 +2027-08-01,Beirut,314.13741957444483,119.06276950582321 +2027-09-01,Beirut,324.30098225851833,141.1141423115388 +2027-10-01,Beirut,309.4805870885933,179.00597532591112 +2027-11-01,Beirut,603.3700464261058,268.54463873783834 +2027-12-01,Beirut,386.62277655256827,429.56714537802156 +2028-01-01,Beirut,663.1909372928446,499.95429443634976 +2028-02-01,Beirut,555.2761236676157,456.05468246111957 +2028-03-01,Beirut,591.0457708743073,520.4241267887857 +2028-04-01,Beirut,613.4332005561137,412.22930697254986 +2028-05-01,Beirut,589.207682213088,394.58032325529956 +2028-06-01,Beirut,647.7765267631098,367.5743025578465 +2028-07-01,Beirut,550.94569614069,230.99519308499293 +2028-08-01,Beirut,299.7141320056396,145.8996557751024 +2028-09-01,Beirut,329.4358613105623,155.94500008740386 +2028-10-01,Beirut,306.01085942380945,144.50089768347735 +2028-11-01,Beirut,338.15718268372973,195.87582057801083 +2028-12-01,Beirut,412.59883470485653,287.6231573260024 +2029-01-01,Beirut,366.9577972460033,399.68099714238554 +2029-02-01,Beirut,434.94498474289367,422.60738859240195 +2029-03-01,Beirut,657.8945661017183,353.1208997503686 +2029-04-01,Beirut,760.465170443976,211.8813311741407 +2029-05-01,Beirut,269.11910033050816,179.62805916259742 +2029-06-01,Beirut,377.3797627842511,311.72726893486896 +2029-07-01,Beirut,577.3937825185837,323.63960574351677 +2029-08-01,Beirut,721.8496968800112,276.0971673211913 +2029-09-01,Beirut,540.9068468476676,114.11904685376604 +2029-10-01,Beirut,263.2674729217281,106.41870012218334 +2029-11-01,Beirut,451.2022715876476,230.24929560934285 +2029-12-01,Beirut,347.7041998098989,335.19099606897265 +2030-01-01,Beirut,507.7863754336014,435.86670061374843 +2030-02-01,Beirut,714.9920292558554,448.69055394941455 +2030-03-01,Beirut,748.5929905795147,456.3028611707028 +2030-04-01,Beirut,442.35886020265923,341.5156759095164 +2030-05-01,Beirut,501.4193568837047,355.4607965882713 +2030-06-01,Beirut,554.3602042446186,379.6605126604602 +2030-07-01,Beirut,684.5094942547717,341.4829691194325 +2030-08-01,Beirut,352.9415706877501,262.04910124519637 +2030-09-01,Beirut,386.6204875255929,294.4984072103725 +2030-10-01,Beirut,519.2287326147782,324.66650934450877 +2030-11-01,Beirut,543.0890096985097,416.9637613112353 +2030-12-01,Beirut,525.9866089505697,431.1041232606178 +2031-01-01,Beirut,738.2409303819303,207.32915946217182 +2031-02-01,Beirut,287.47401034444124,387.0649301475162 +2031-03-01,Beirut,547.5747052686974,443.2653625328972 +2031-04-01,Beirut,810.3398275922801,181.6325476958668 +2031-05-01,Beirut,307.39417757965316,174.86589538320862 +2031-06-01,Beirut,301.8851326350515,243.45534277918804 +2031-07-01,Beirut,800.0187849961823,249.20463815139516 +2031-08-01,Beirut,650.1081450718607,263.1554971658181 +2031-09-01,Beirut,724.3442218950763,261.7506043970224 +2031-10-01,Beirut,319.2557867689811,410.3918333020274 +2031-11-01,Beirut,487.9547858265148,533.6408407147226 +2031-12-01,Beirut,923.3900346576373,452.31152991714924 +2032-01-01,Beirut,890.0043447472793,171.69147566322712 +2032-02-01,Beirut,263.9768655288579,103.81887218753334 +2032-03-01,Beirut,319.2132468744052,157.01138274850246 +2032-04-01,Beirut,362.1688699000902,248.06991242945728 +2032-05-01,Beirut,621.3563973776005,304.90692096472833 +2032-06-01,Beirut,571.611340307149,297.35608114082123 +2032-07-01,Beirut,450.8894979129574,501.85628561059946 +2032-08-01,Beirut,645.8394183956528,517.6944022347191 +2032-09-01,Beirut,682.298679987631,368.02713134068426 +2032-10-01,Beirut,560.0690632405867,209.10380438841287 +2032-11-01,Beirut,291.56756215852295,194.94391831196762 +2032-12-01,Beirut,517.8784638933543,233.11448279610178 +2033-01-01,Beirut,646.6742702565562,250.93244585137268 +2033-02-01,Beirut,330.9681976944428,367.6765586655168 +2033-03-01,Beirut,468.86579257740306,437.1776604464285 +2033-04-01,Beirut,583.359244010431,414.287939201522 +2033-05-01,Beirut,754.5427117959807,326.2157565814463 +2033-06-01,Beirut,602.1280563964378,105.74676341736591 +2033-07-01,Beirut,270.2884330432614,95.1323933330085 +2033-08-01,Beirut,418.9278656947238,216.01246758467587 +2033-09-01,Beirut,679.3216589494436,214.48059044489565 +2033-10-01,Beirut,395.6509304180516,393.7333931609656 +2033-11-01,Beirut,463.0470345672131,455.4804353205729 +2033-12-01,Beirut,754.0602157728586,421.32089853944757 +2034-01-01,Beirut,467.0413352004191,412.6822736133016 +2034-02-01,Beirut,536.5618878573587,348.7320207374701 +2034-03-01,Beirut,523.6076154992501,165.86215377197374 +2034-04-01,Beirut,294.3472382081486,174.92741447730748 +2034-05-01,Beirut,425.0967933933364,226.84251637540348 +2034-06-01,Beirut,374.52141107712384,291.393588504695 +2034-07-01,Beirut,503.5727397212276,397.46734368917987 +2034-08-01,Beirut,597.6285752255897,446.4556703774611 +2034-09-01,Beirut,656.3365360330245,328.1555552885961 +2034-10-01,Beirut,478.8431210555369,176.52573913161024 +2034-11-01,Beirut,303.24797814513795,89.46607119275839 +2034-12-01,Beirut,280.4882858066859,116.25189833715943 +2035-01-01,Beirut,704.1970294788355,220.93707968341207 +2035-02-01,Beirut,870.1126488925362,119.854883847124 +2035-03-01,Beirut,268.42228451204073,263.8432358340217 +2035-04-01,Beirut,424.74225140619683,436.3953512492571 +2035-05-01,Beirut,901.0305105294069,181.84350476868437 +2035-06-01,Beirut,351.4323046094528,361.10256278759965 +2035-07-01,Beirut,418.4462184119408,426.4035130398064 +2035-08-01,Beirut,594.6287153564572,498.5598961012533 +2035-09-01,Beirut,899.365950688444,395.4087803891647 +2035-10-01,Beirut,364.7897543480765,358.78265534721925 +2035-11-01,Beirut,476.54632682009674,338.80445878039717 +2035-12-01,Beirut,466.31494206710147,327.8788399908258 +2036-01-01,Beirut,579.2368864636254,380.9570318766542 +2036-02-01,Beirut,600.0501085714851,279.4376713630006 +2036-03-01,Beirut,375.5255223371832,229.7939164550971 +2036-04-01,Beirut,470.2227740633279,176.89795549926743 +2036-05-01,Beirut,305.83051496143565,96.71589826156193 +2036-06-01,Beirut,294.13680204284015,120.31522588627188 +2036-07-01,Beirut,365.58780174154435,269.19069261931224 +2036-08-01,Beirut,494.5452545602539,429.7312307600971 +2036-09-01,Beirut,591.533642252911,486.3159420806056 +2036-10-01,Beirut,741.3239668043026,461.1602847686291 +2036-11-01,Beirut,670.8272855990924,413.1427190458849 +2036-12-01,Beirut,536.7268778354146,261.78636129345244 +2037-01-01,Beirut,768.1654057503005,191.44179309829462 +2037-02-01,Beirut,623.2047738005068,179.85678267407488 +2037-03-01,Beirut,277.21258532731963,397.50394496533283 +2037-04-01,Beirut,513.0492342410321,517.7865257857142 +2037-05-01,Beirut,914.1603178213006,315.49837217089197 +2037-06-01,Beirut,363.20927123950065,390.78547399359917 +2037-07-01,Beirut,573.963894210933,218.99829767837772 +2037-08-01,Beirut,332.9125074950807,92.31283711576606 +2037-09-01,Beirut,315.88163241026984,147.59727259192553 +2037-10-01,Beirut,375.65507097622725,245.18721728762708 +2037-11-01,Beirut,706.2873997760253,260.2202092298171 +2037-12-01,Beirut,410.0368991313371,378.3101943933483 +2038-01-01,Beirut,489.49285763753585,558.1904746369876 +2038-02-01,Beirut,883.725878106104,484.722511382248 +2038-03-01,Beirut,779.3466595398602,248.05271465469235 +2038-04-01,Beirut,276.91146254273997,110.03826304630002 +2038-05-01,Beirut,297.67157408089037,195.26745360376225 +2038-06-01,Beirut,499.212323368984,299.4382698408391 +2038-07-01,Beirut,600.2761564151538,404.1658941923482 +2038-08-01,Beirut,600.4703893558051,225.16373439607338 +2038-09-01,Beirut,345.26579453483663,293.6405863408366 +2038-10-01,Beirut,490.9875922524501,367.44888632063316 +2038-11-01,Beirut,636.4509099576767,332.81966762669003 +2038-12-01,Beirut,563.2323442041179,149.99339822647943 +2039-01-01,Beirut,749.9310168645311,198.32011032124996 +2039-02-01,Beirut,748.6646448396649,144.2216147820597 +2039-03-01,Beirut,290.18619867739983,276.56186911686774 +2039-04-01,Beirut,550.844541723902,314.47712074437186 +2039-05-01,Beirut,368.7405377493463,417.5875683718459 +2039-06-01,Beirut,642.1991196420979,462.144349022862 +2039-07-01,Beirut,595.3308036527892,419.87838779238353 +2039-08-01,Beirut,508.6032237115524,452.53124096750247 +2039-09-01,Beirut,714.0048670831754,284.32178769951486 +2039-10-01,Beirut,334.6954537536575,144.74578503536515 +2039-11-01,Beirut,279.3960084289687,117.21878204886671 +2039-12-01,Beirut,324.10672359846285,164.74629735200742 +2040-01-01,Beirut,415.932120930266,200.59717841487128 +2040-02-01,Beirut,357.25841836924906,321.6574157278284 +2040-03-01,Beirut,586.9880976291091,402.4700005994494 +2040-04-01,Beirut,654.1278821958381,453.5550772299091 +2040-05-01,Beirut,829.3329389024686,441.4307149496106 +2040-06-01,Beirut,385.25031198530445,265.74410691272067 +2040-07-01,Beirut,373.6679640869712,284.17035078104396 +2040-08-01,Beirut,531.5940048968995,342.25531808232114 +2040-09-01,Beirut,765.2831349972508,364.22015058255647 +2040-10-01,Beirut,366.3546514976964,339.3601984959964 +2040-11-01,Beirut,395.2431235447773,276.1164674291439 +2040-12-01,Beirut,496.00555089292084,313.86385981417817 +2041-01-01,Beirut,401.94004489257304,375.35210820482826 +2041-02-01,Beirut,411.4013135250808,423.61554351709714 +2041-03-01,Beirut,568.3971606426712,423.29354189459514 +2041-04-01,Beirut,628.2331230802815,396.01728522132726 +2041-05-01,Beirut,591.8262004758863,378.90505129203 +2041-06-01,Beirut,674.1025745679913,192.90101911742474 +2041-07-01,Beirut,265.06453913322025,148.4946931472427 +2041-08-01,Beirut,483.8660949798302,282.4662891067438 +2041-09-01,Beirut,402.6570504433514,106.4828385166472 +2041-10-01,Beirut,285.58327406278846,183.34457066469741 +2041-11-01,Beirut,506.48919156248246,303.8097098276233 +2041-12-01,Beirut,512.511544376459,477.4894512822283 +2042-01-01,Beirut,749.9650179169068,441.550961515051 +2042-02-01,Beirut,590.1438170878004,323.8804435191824 +2042-03-01,Beirut,490.68513205885114,301.8816807398768 +2042-04-01,Beirut,598.1487244564864,176.0944851123052 +2042-05-01,Beirut,301.2070148234502,82.71582397185986 +2042-06-01,Beirut,281.7207596567934,127.94199095628534 +2042-07-01,Beirut,344.08496524839813,260.36023840590883 +2042-08-01,Beirut,505.15386581490884,428.2480519284187 +2042-09-01,Beirut,632.0611220458165,484.40516246434174 +2042-10-01,Beirut,653.3795246913185,459.6365757102502 +2042-11-01,Beirut,602.4673982156849,438.8418122546409 +2042-12-01,Beirut,613.2158201516665,394.57735931014975 +2043-01-01,Beirut,609.3204363470815,266.45057702498184 +2043-02-01,Beirut,615.9314806041946,223.947689737146 +2043-03-01,Beirut,373.3059891920127,249.3581601708145 +2043-04-01,Beirut,616.5194519040132,203.32535206740604 +2043-05-01,Beirut,792.2284288974794,152.43499974039662 +2043-06-01,Beirut,688.1601579282265,219.7568780821109 +2043-07-01,Beirut,579.1823098878756,337.39741198169605 +2043-08-01,Beirut,706.7051343393275,322.45047784228757 +2043-09-01,Beirut,759.2155160318513,278.8031286173413 +2043-10-01,Beirut,899.5983512249541,223.54412792630507 +2043-11-01,Beirut,936.724568407103,150.60715889161116 +2043-12-01,Beirut,487.1179021326783,307.5040779022956 +2044-01-01,Beirut,396.3177831306055,453.9955332649701 +2044-02-01,Beirut,544.3471000752179,370.59459713003514 +2044-03-01,Beirut,655.5297440421225,352.7980365159045 +2044-04-01,Beirut,428.26634989149665,472.7938039463189 +2044-05-01,Beirut,566.8146714205665,505.0279826367805 +2044-06-01,Beirut,624.0178927648462,403.65089149032036 +2044-07-01,Beirut,530.7616735376096,377.8922091982607 +2044-08-01,Beirut,537.8441801934355,377.72822720962057 +2044-09-01,Beirut,580.0523458937487,346.88589648284744 +2044-10-01,Beirut,540.6506558622559,244.82540919247288 +2044-11-01,Beirut,362.9325304501193,131.76311938283195 +2044-12-01,Beirut,285.3825855516786,125.16563596282606 +2045-01-01,Beirut,388.5076230906552,385.6084268221865 +2045-02-01,Beirut,441.61747265668276,405.21451041478684 +2045-03-01,Beirut,736.3400606550158,266.62458817686155 +2045-04-01,Beirut,336.0990130806204,333.04623710826206 +2045-05-01,Beirut,461.0447275100644,383.20004906553055 +2045-06-01,Beirut,550.1358435406861,424.6157026827833 +2045-07-01,Beirut,590.0785412398959,445.36659285727893 +2045-08-01,Beirut,541.0438026751261,395.4166382902597 +2045-09-01,Beirut,678.2218457862907,295.5803161190293 +2045-10-01,Beirut,341.7843388217295,244.81234715512642 +2045-11-01,Beirut,402.832533938328,304.45886551216097 +2045-12-01,Beirut,656.268765402911,207.94055931052725 +2046-01-01,Beirut,295.06421803952264,147.7156753077669 +2046-02-01,Beirut,348.67937674021346,166.89277953664234 +2046-03-01,Beirut,336.87195833557195,189.63928364119695 +2046-04-01,Beirut,363.1235741846476,197.56023749957356 +2046-05-01,Beirut,404.12465108681613,188.05658862788798 +2046-06-01,Beirut,431.17747781607846,264.19797871108614 +2046-07-01,Beirut,423.1452050013048,418.33686059862697 +2046-08-01,Beirut,579.622626088081,490.2942457612912 +2046-09-01,Beirut,715.216559654675,400.7430889759125 +2046-10-01,Beirut,515.1538530881585,331.09141188849213 +2046-11-01,Beirut,574.233253531304,264.7324883079375 +2046-12-01,Beirut,368.6690635250256,171.54083142776142 +2047-01-01,Beirut,296.1214141498872,473.7225871770591 +2047-02-01,Beirut,640.4912997632407,349.4483304583392 +2047-03-01,Beirut,760.9839822658535,170.08536203678636 +2047-04-01,Beirut,276.9572173628431,141.4925622853236 +2047-05-01,Beirut,304.06431203500455,203.33610498469392 +2047-06-01,Beirut,464.9760156029373,342.81743372644047 +2047-07-01,Beirut,786.8272511341663,439.8079549800608 +2047-08-01,Beirut,989.6546393376497,88.34097829255752 +2047-09-01,Beirut,289.19270953128233,174.23441997613466 +2047-10-01,Beirut,394.2328139083015,179.77127630294925 +2047-11-01,Beirut,482.93631279795966,290.1856946949297 +2047-12-01,Beirut,487.9770331111631,404.0966550550683 +2048-01-01,Beirut,567.3656324977159,478.80606328938006 +2048-02-01,Beirut,667.7065702495414,528.2778921463523 +2048-03-01,Beirut,615.9988654432448,487.52040667476155 +2048-04-01,Beirut,694.5188691105608,381.9620160693286 +2048-05-01,Beirut,522.8779045627883,245.51947209247888 +2048-06-01,Beirut,465.47710675530885,235.2120081890462 +2048-07-01,Beirut,385.06196878821896,230.85070075893714 +2048-08-01,Beirut,433.0866034717467,260.82590520698295 +2048-09-01,Beirut,517.4917469315384,242.3745884305605 +2048-10-01,Beirut,398.47654132360987,298.4913065976972 +2048-11-01,Beirut,486.57769176649185,376.3658463750383 +2048-12-01,Beirut,575.8924894555939,417.2152141462749 +2049-01-01,Beirut,346.8639211547056,419.3565611236152 +2049-02-01,Beirut,395.8954962327568,479.04304104345516 +2049-03-01,Beirut,772.4417710895609,365.18794760294367 +2049-04-01,Beirut,677.7730679020978,299.0928840696838 +2049-05-01,Beirut,504.0980071135637,154.48925498060092 +2049-06-01,Beirut,273.8703744686467,89.68311124602886 +2049-07-01,Beirut,315.2909091342,188.7700894937605 +2049-08-01,Beirut,584.3121993755015,257.15306019912566 +2049-09-01,Beirut,825.2194802695225,239.75854495878252 +2049-10-01,Beirut,885.7389358742156,200.2925641217659 +2049-11-01,Beirut,372.8095018129961,414.82355166168503 +2049-12-01,Beirut,471.34938684567567,486.6763715966203 +2050-01-01,Beirut,650.2054158586117,478.7896581976204 +2050-02-01,Beirut,587.319029203177,473.62405323306535 +2050-03-01,Beirut,675.2150159586151,420.33397373350016 +2050-04-01,Beirut,616.2777923819847,182.1178764819176 +2050-05-01,Beirut,276.9007632705855,99.80874056096526 +2050-06-01,Beirut,299.3862096018652,199.39574669482224 +2050-07-01,Beirut,457.6494318010862,288.5068782511211 +2050-08-01,Beirut,468.8613174010692,392.2332233413931 +2050-09-01,Beirut,597.2277640302625,423.8886400446263 +2050-10-01,Beirut,569.7447802654608,390.3562878430033 +2050-11-01,Beirut,542.5927023553228,385.363349915667 +2050-12-01,Beirut,524.4973011299453,355.2474614664382 +2051-01-01,Beirut,567.5581165188804,288.617112885561 +2051-02-01,Beirut,427.14925328870936,324.4135400724158 +2051-03-01,Beirut,405.2585167411533,420.3232208162123 +2051-04-01,Beirut,581.3701824464544,452.721450424271 +2051-05-01,Beirut,589.0855407624587,440.3329523808498 +2051-06-01,Beirut,637.5461707862833,430.6138315896649 +2051-07-01,Beirut,561.574908638123,316.20737542232195 +2051-08-01,Beirut,640.8838293104097,191.41908100697182 +2051-09-01,Beirut,264.83687096708604,126.21321825091016 +2051-10-01,Beirut,363.076224761483,247.84959825073054 +2051-11-01,Beirut,368.7568438516203,214.391551464725 +2051-12-01,Beirut,347.91746510967124,253.08680316934183 +2052-01-01,Beirut,472.9953258379853,347.80644270322927 +2052-02-01,Beirut,666.7999098120625,433.8157884279574 +2052-03-01,Beirut,482.48501441215353,366.43387296471906 +2052-04-01,Beirut,605.2102440784709,307.3416295829481 +2052-05-01,Beirut,385.62558381224346,189.33918419477337 +2052-06-01,Beirut,334.18206872607,165.8440254562897 +2052-07-01,Beirut,323.8087128617934,171.56876488757496 +2052-08-01,Beirut,355.61394538297986,184.09163993261603 +2052-09-01,Beirut,323.8682018437488,253.5197114836143 +2052-10-01,Beirut,476.2959484200384,406.0802236498962 +2052-11-01,Beirut,682.8988165656444,461.52026624642343 +2052-12-01,Beirut,595.4885150394515,397.4923993650398 +2053-01-01,Beirut,778.9366922366316,185.75870398926062 +2053-02-01,Beirut,426.0106295445919,249.37165301414208 +2053-03-01,Beirut,528.783491281617,256.40685254316924 +2053-04-01,Beirut,869.5896705271756,125.29019058807727 +2053-05-01,Beirut,811.0571932147175,103.91516594042537 +2053-06-01,Beirut,611.3267299118838,207.0916992053979 +2053-07-01,Beirut,358.57885258178067,412.02121045144673 +2053-08-01,Beirut,520.3124197114869,360.61347737339383 +2053-09-01,Beirut,567.1415136093636,311.11414586258917 +2053-10-01,Beirut,619.1912607723502,334.630982758041 +2053-11-01,Beirut,371.8074223858699,379.0852315855589 +2053-12-01,Beirut,519.7241912176262,409.0486491819623 +2054-01-01,Beirut,675.8411034154842,292.59241815661824 +2054-02-01,Beirut,398.5977568756874,190.531172647717 +2054-03-01,Beirut,296.0178163896986,106.33426214989075 +2054-04-01,Beirut,295.51062973852754,140.7914858639456 +2054-05-01,Beirut,377.1399550593262,264.7520468994788 +2054-06-01,Beirut,501.7934456180499,431.66775534179055 +2054-07-01,Beirut,636.8748943362039,486.8486939890542 +2054-08-01,Beirut,668.9018795605543,450.3885498755011 +2054-09-01,Beirut,649.3344025153784,428.20011183884355 +2054-10-01,Beirut,605.7647287139981,273.7660933897812 +2054-11-01,Beirut,452.11412734477847,242.44966929694394 +2054-12-01,Beirut,547.6660863118825,187.416617726867 +2055-01-01,Beirut,394.22532956167424,381.9255871155681 +2055-02-01,Beirut,378.66593875036483,468.28412693632424 +2055-03-01,Beirut,682.915765653024,418.13059069488367 +2055-04-01,Beirut,675.3506600964588,336.7496176440586 +2055-05-01,Beirut,453.0983060665692,366.4266354242369 +2055-06-01,Beirut,643.7390946890309,253.7042170691932 +2055-07-01,Beirut,457.79173726462227,79.5647884005316 +2055-08-01,Beirut,262.2700744261695,104.43347723238803 +2055-09-01,Beirut,504.2985155888441,267.90590855804294 +2055-10-01,Beirut,429.0222431814519,299.8144151590438 +2055-11-01,Beirut,544.3110157511007,328.4916184183206 +2055-12-01,Beirut,686.0332660770478,293.9866786338008 +2056-01-01,Beirut,771.5059962865078,315.9236293709404 +2056-02-01,Beirut,298.8561069615362,400.3019091868033 +2056-03-01,Beirut,519.666271119328,504.00228529253553 +2056-04-01,Beirut,805.4853414850163,458.0780919930782 +2056-05-01,Beirut,607.8608344383283,326.12935413388 +2056-06-01,Beirut,301.1748141293698,107.47155547547587 +2056-07-01,Beirut,277.3129938813852,119.32557838652411 +2056-08-01,Beirut,372.79941980654274,178.413289689374 +2056-09-01,Beirut,452.7624363668915,211.34123833177443 +2056-10-01,Beirut,357.9333469747273,348.2732295998541 +2056-11-01,Beirut,551.5829972577978,482.1213048684586 +2056-12-01,Beirut,775.1990969769215,498.9457259379127 +2057-01-01,Beirut,690.7080764264472,228.44120290673033 +2057-02-01,Beirut,873.9053351160806,124.09237763826937 +2057-03-01,Beirut,363.35036789103845,165.2825474050224 +2057-04-01,Beirut,454.23417783443523,283.2263170185734 +2057-05-01,Beirut,776.8689550151535,222.8977466322856 +2057-06-01,Beirut,322.1213913480978,408.1141793122718 +2057-07-01,Beirut,747.5433816933944,337.54354137048 +2057-08-01,Beirut,637.2834470722005,298.15403721122556 +2057-09-01,Beirut,639.6487063616679,314.76352056059693 +2057-10-01,Beirut,368.5408008561924,332.9153754834478 +2057-11-01,Beirut,464.63996586743013,423.3934888822068 +2057-12-01,Beirut,573.4819640147035,497.6318021600829 +2058-01-01,Beirut,577.9974940937835,512.9435428042739 +2058-02-01,Beirut,617.4665689643264,435.26722547494944 +2058-03-01,Beirut,605.7610765585991,336.59387266577687 +2058-04-01,Beirut,551.5070992959517,284.3038834029409 +2058-05-01,Beirut,522.9230163977861,155.95309923984826 +2058-06-01,Beirut,275.67646819101924,90.82672880341629 +2058-07-01,Beirut,303.0638272109399,166.17135184071788 +2058-08-01,Beirut,427.9875001109694,340.6101906662334 +2058-09-01,Beirut,582.9722698545729,458.094359226924 +2058-10-01,Beirut,640.9687547831363,443.6748005373201 +2058-11-01,Beirut,519.5689746131729,403.67997951016315 +2058-12-01,Beirut,579.7461306671339,414.016841613745 +2059-01-01,Beirut,322.17661090895297,442.821425585509 +2059-02-01,Beirut,433.19467640826906,466.28691040801556 +2059-03-01,Beirut,792.4798617931106,314.1505698107096 +2059-04-01,Beirut,530.6779311574769,332.23066968935103 +2059-05-01,Beirut,427.5124369956661,349.00198099745705 +2059-06-01,Beirut,579.0544844489143,317.94593603958737 +2059-07-01,Beirut,473.4211362942119,308.10005489652815 +2059-08-01,Beirut,475.594168756557,371.1316226338161 +2059-09-01,Beirut,519.9880208660902,412.84063789194835 +2059-10-01,Beirut,578.5470920425095,424.7787196660258 +2059-11-01,Beirut,587.7984388977932,377.15363542428906 +2059-12-01,Beirut,489.9822978997967,337.88897883835295 +2060-01-01,Beirut,557.9901123588696,343.54229063797436 +2060-02-01,Beirut,603.3421923113381,228.9140038548512 +2060-03-01,Beirut,311.1552289360098,115.86794681457751 +2060-04-01,Beirut,282.6569974091225,121.72346170948082 +2060-05-01,Beirut,305.045147234247,184.7379006009608 +2060-06-01,Beirut,470.165574108348,347.5488551910191 +2060-07-01,Beirut,539.8029185798396,380.2866977700864 +2060-08-01,Beirut,492.9536349496519,368.4205778270893 +2060-09-01,Beirut,604.2153660845256,304.1391557774784 +2060-10-01,Beirut,523.5387389347553,184.83677918973942 +2060-11-01,Beirut,281.59900399722727,127.0171883728104 +2060-12-01,Beirut,348.2743732819989,216.25601082190263 +2061-01-01,Beirut,723.36153489873,214.11247535017839 +2061-02-01,Beirut,563.826179528098,214.76152764128057 +2061-03-01,Beirut,294.28098502288407,394.39600722435233 +2061-04-01,Beirut,791.8002008172563,283.2519241260891 +2061-05-01,Beirut,273.7376109040754,398.4289715679179 +2061-06-01,Beirut,436.18738628302907,475.8102729613955 +2061-07-01,Beirut,773.4166908258334,451.97415713724223 +2061-08-01,Beirut,803.0495081503758,322.8759762936853 +2061-09-01,Beirut,326.116900793302,138.9274228482706 +2061-10-01,Beirut,271.854590443688,96.00172533835892 +2061-11-01,Beirut,354.3343021455373,177.72251814706357 +2061-12-01,Beirut,368.3589903877782,278.92694225630504 +2062-01-01,Beirut,517.8129822902163,415.1943549857242 +2062-02-01,Beirut,725.0603015473027,467.1986337219048 +2062-03-01,Beirut,679.2931361301663,462.9876948114334 +2062-04-01,Beirut,675.0434418130795,321.1959363608904 +2062-05-01,Beirut,441.3949998102005,90.09989018436943 +2062-06-01,Beirut,267.4813401087398,91.50990092822045 +2062-07-01,Beirut,334.2804711666065,199.00016341075107 +2062-08-01,Beirut,513.0369403658162,256.64205537660223 +2062-09-01,Beirut,490.3466646993475,295.12683251110036 +2062-10-01,Beirut,583.8087163185378,327.359529228987 +2062-11-01,Beirut,502.8004374513815,464.53449507039846 +2062-12-01,Beirut,630.2224675577046,537.9513130390637 +2063-01-01,Beirut,687.6144436095374,228.4951742800406 +2063-02-01,Beirut,771.7163810130077,152.83397777559875 +2063-03-01,Beirut,278.60076445056046,273.76412891450747 +2063-04-01,Beirut,407.54808382400836,424.5367790270486 +2063-05-01,Beirut,931.0531311442714,168.55636268095978 +2063-06-01,Beirut,296.8212134192438,376.3976226242031 +2063-07-01,Beirut,420.6868414685697,422.7697852150316 +2063-08-01,Beirut,714.632780617744,396.57316279484047 +2063-09-01,Beirut,576.4982843025352,380.0323843833325 +2063-10-01,Beirut,442.4822876234996,325.05364883135076 +2063-11-01,Beirut,433.1099052519679,343.13540300495947 +2063-12-01,Beirut,608.5502687877854,406.844438995862 +2064-01-01,Beirut,606.4684630522001,383.5711625698762 +2064-02-01,Beirut,463.5768028552872,329.5068040966271 +2064-03-01,Beirut,545.8575749655134,269.7662838745199 +2064-04-01,Beirut,442.88320169644356,193.46906265184379 +2064-05-01,Beirut,346.4656561803962,246.96231025208854 +2064-06-01,Beirut,504.5989182301057,260.7563731216359 +2064-07-01,Beirut,529.3201523700214,197.8115869411776 +2064-08-01,Beirut,324.58479588405953,86.73932781608086 +2064-09-01,Beirut,295.07406857133805,135.17960036746535 +2064-10-01,Beirut,515.2313970918746,217.45506449293615 +2064-11-01,Beirut,358.8261446533329,247.56123395923166 +2064-12-01,Beirut,386.15488915104174,410.24143031791107 +2065-01-01,Beirut,586.0616846891911,280.1509137452844 +2065-02-01,Beirut,311.86099510714496,434.47109602190494 +2065-03-01,Beirut,516.9837886982407,497.79033876112203 +2065-04-01,Beirut,684.6151495672976,413.302875477413 +2065-05-01,Beirut,681.628380874912,390.36449038888315 +2065-06-01,Beirut,458.56223917617314,292.3442739115135 +2065-07-01,Beirut,600.3173074619018,183.51292964210538 +2065-08-01,Beirut,302.33319037592634,90.68516595803185 +2065-09-01,Beirut,329.7533930750329,146.03213723040557 +2065-10-01,Beirut,307.38839071370415,208.82169539975936 +2065-11-01,Beirut,663.072679472252,279.2443601031683 +2065-12-01,Beirut,756.1002789153986,241.6933463165516 +2066-01-01,Beirut,807.5964416220055,267.87933644512964 +2066-02-01,Beirut,824.6702681118597,257.0094122527928 +2066-03-01,Beirut,315.3584997284838,412.9287980279175 +2066-04-01,Beirut,546.5199267823293,471.3379554460805 +2066-05-01,Beirut,803.0984778960062,336.21786520548613 +2066-06-01,Beirut,359.84406723345705,385.8562608869849 +2066-07-01,Beirut,426.4477822580785,397.95112157369874 +2066-08-01,Beirut,663.4955064775894,395.9079638955672 +2066-09-01,Beirut,554.3803168187167,385.8712873996052 +2066-10-01,Beirut,580.8785560348349,229.758297416581 +2066-11-01,Beirut,272.8458677210428,107.12734149658917 +2066-12-01,Beirut,306.3355411826525,166.22942448696807 +2067-01-01,Beirut,530.4583903230755,305.5357081424803 +2067-02-01,Beirut,525.0507312698996,284.48564906248026 +2067-03-01,Beirut,409.1140611886053,305.8447166565927 +2067-04-01,Beirut,739.4940826330287,167.13637447058682 +2067-05-01,Beirut,275.38653334727417,210.9469991623642 +2067-06-01,Beirut,600.357172538439,254.51490776439837 +2067-07-01,Beirut,351.54865919413317,450.7317126877939 +2067-08-01,Beirut,662.1880091253793,465.20224434107973 +2067-09-01,Beirut,895.9624504895204,240.96321633980926 +2067-10-01,Beirut,285.13601362344434,365.7711555078969 +2067-11-01,Beirut,461.70540756560615,466.2842911076506 +2067-12-01,Beirut,603.2898790431595,472.85863163035253 +2068-01-01,Beirut,575.689074687637,480.3158831629288 +2068-02-01,Beirut,569.3300291530478,392.3646019333848 +2068-03-01,Beirut,597.3422668178393,337.0773403699894 +2068-04-01,Beirut,631.9272782662681,217.95717748000993 +2068-05-01,Beirut,275.6890449796816,118.7696318840539 +2068-06-01,Beirut,311.83206077740016,220.29490305576797 +2068-07-01,Beirut,441.107971259132,266.88341641029723 +2068-08-01,Beirut,459.1011635721487,340.1970994270909 +2068-09-01,Beirut,531.5480700409669,386.6858208841616 +2068-10-01,Beirut,682.368173817827,277.46242593972727 +2068-11-01,Beirut,484.37667659235797,100.60213008797004 +2068-12-01,Beirut,264.01621621731084,86.3018357261697 +2069-01-01,Beirut,471.58204457622816,334.0624222564447 +2069-02-01,Beirut,565.0885650453106,279.5854722789911 +2069-03-01,Beirut,546.421318586559,213.21484800799033 +2069-04-01,Beirut,506.8979757731171,154.36807787424144 +2069-05-01,Beirut,501.33355695123487,184.96698598946244 +2069-06-01,Beirut,406.75559182185134,354.2255552148268 +2069-07-01,Beirut,601.368433792871,412.36968079342654 +2069-08-01,Beirut,657.6615740189111,394.539000345594 +2069-09-01,Beirut,612.6924302758384,433.8772041286208 +2069-10-01,Beirut,469.08728808652506,324.3190729368836 +2069-11-01,Beirut,443.73399958796176,306.6637305233525 +2069-12-01,Beirut,547.5952036338588,367.8771763947883 +2070-01-01,Beirut,577.3037131650137,364.4835625916309 +2070-02-01,Beirut,437.2587537851175,368.07896591632834 +2070-03-01,Beirut,556.2364347822925,389.32466260845865 +2070-04-01,Beirut,529.9907601155911,378.87134503206994 +2070-05-01,Beirut,491.03116092319476,398.8257611087362 +2070-06-01,Beirut,615.040920513756,376.0159285249621 +2070-07-01,Beirut,568.5454330079857,268.731315585562 +2070-08-01,Beirut,394.7158243195081,130.2630184922165 +2070-09-01,Beirut,275.22789606206004,96.08924788147613 +2070-10-01,Beirut,302.33519648945526,151.00141529326066 +2070-11-01,Beirut,401.50484685380707,272.96076192098064 +2070-12-01,Beirut,463.1197176035321,341.26873792115873 +2071-01-01,Beirut,725.4956281830898,210.93638410299025 +2071-02-01,Beirut,698.1072918258089,165.91516013988638 +2071-03-01,Beirut,304.92259427315014,273.3208467922105 +2071-04-01,Beirut,390.3151570996639,409.5374244158617 +2071-05-01,Beirut,583.8647846197321,455.1253477987237 +2071-06-01,Beirut,652.8670655622827,490.37389317107414 +2071-07-01,Beirut,848.911218097416,334.53610204876696 +2071-08-01,Beirut,334.2626476194837,193.94653353679956 +2071-09-01,Beirut,326.63095452539926,144.19659357067835 +2071-10-01,Beirut,313.9610359003205,161.66601735501254 +2071-11-01,Beirut,433.7998282701051,202.84310785217983 +2071-12-01,Beirut,510.970514833953,218.83002486216606 +2072-01-01,Beirut,463.1683272775033,338.2597132334352 +2072-02-01,Beirut,548.8788590983593,449.4550794756868 +2072-03-01,Beirut,686.6412213539434,482.1216495132434 +2072-04-01,Beirut,537.9691764979331,478.3477546544629 +2072-05-01,Beirut,588.2894480437113,435.3129943023799 +2072-06-01,Beirut,650.297285570477,353.9249904979436 +2072-07-01,Beirut,645.2666987025353,236.68586437929395 +2072-08-01,Beirut,300.98289593509804,88.37580464806847 +2072-09-01,Beirut,269.8349485080966,110.87071805966961 +2072-10-01,Beirut,347.0604174029281,238.98445553973025 +2072-11-01,Beirut,516.1141642028352,356.7937447582259 +2072-12-01,Beirut,578.2982053678957,352.0438158686999 +2073-01-01,Beirut,287.3522804042792,486.71655717853594 +2073-02-01,Beirut,499.3775705410821,463.077371384456 +2073-03-01,Beirut,759.7522285590642,304.8320813496943 +2073-04-01,Beirut,639.1051524729331,331.2228938739192 +2073-05-01,Beirut,448.6124561799563,233.40980891225496 +2073-06-01,Beirut,307.3552384016677,193.60750646192514 +2073-07-01,Beirut,516.1625681215728,248.1738572965734 +2073-08-01,Beirut,413.9407446199098,306.84937343672146 +2073-09-01,Beirut,454.2892430788651,377.3447754219767 +2073-10-01,Beirut,564.6788549361243,431.9161063737663 +2073-11-01,Beirut,567.2743543321476,443.0133238017234 +2073-12-01,Beirut,588.9561464398399,378.760541733735 +2074-01-01,Beirut,554.1118576774934,278.9108818093302 +2074-02-01,Beirut,479.4068646765826,223.5950147287908 +2074-03-01,Beirut,383.3199163823482,235.41798514472242 +2074-04-01,Beirut,454.9911770587719,257.47016786568247 +2074-05-01,Beirut,508.3819339576641,176.6574451361475 +2074-06-01,Beirut,328.1410179052273,106.93937223092232 +2074-07-01,Beirut,286.54083320121396,136.4153242436087 +2074-08-01,Beirut,489.52950778854597,261.2460271997368 +2074-09-01,Beirut,390.59984518494855,364.26137009882666 +2074-10-01,Beirut,563.9683049558046,335.11272723832917 +2074-11-01,Beirut,550.964034075897,293.23783444524014 +2074-12-01,Beirut,528.3306240121535,318.66321076585416 +2075-01-01,Beirut,599.5404014187008,270.15092468667154 +2075-02-01,Beirut,357.45794950716925,355.43860146412584 +2075-03-01,Beirut,461.19140527231735,415.95136725568625 +2075-04-01,Beirut,551.7881609452415,429.52223816255326 +2075-05-01,Beirut,782.2497115715177,341.0477516851015 +2075-06-01,Beirut,716.106811112263,90.37307287309484 +2075-07-01,Beirut,259.23369300304796,96.86521561460587 +2075-08-01,Beirut,416.64856065415154,355.0763108662729 +2075-09-01,Beirut,630.2516076426831,426.885429842487 +2075-10-01,Beirut,612.0860696020043,333.08538875582303 +2075-11-01,Beirut,409.3441212593318,423.39135208454064 +2075-12-01,Beirut,676.8343610869638,451.933075478886 +2076-01-01,Beirut,628.6782488090755,257.7956504005116 +2076-02-01,Beirut,341.13723861161463,112.49023836824173 +2076-03-01,Beirut,272.77555086991185,94.88767830351318 +2076-04-01,Beirut,331.7273059099253,148.5000006769297 +2076-05-01,Beirut,303.1249622347652,269.9489283782606 +2076-06-01,Beirut,514.5861229594591,381.7623978099332 +2076-07-01,Beirut,691.5768264621095,402.6653452635125 +2076-08-01,Beirut,719.8682739790872,439.7298929362882 +2076-09-01,Beirut,510.17586240184175,321.09137113316154 +2076-10-01,Beirut,426.0476912060695,288.5243517417139 +2076-11-01,Beirut,538.8914743331762,366.8546153180857 +2076-12-01,Beirut,750.8397348543474,295.6225695696541 +2077-01-01,Beirut,522.7055331157219,309.9258795733221 +2077-02-01,Beirut,430.35317091090434,340.51096743266993 +2077-03-01,Beirut,462.0153263864282,384.49960115583144 +2077-04-01,Beirut,537.1048244803922,406.76268925289133 +2077-05-01,Beirut,609.9241222028769,408.04735268848594 +2077-06-01,Beirut,631.6625741580606,316.02598887204607 +2077-07-01,Beirut,410.9383385297598,250.9833154216192 +2077-08-01,Beirut,533.9937539074228,182.62834710502452 +2077-09-01,Beirut,278.1735908659103,133.46023646471698 +2077-10-01,Beirut,356.41952856188357,182.8554507860131 +2077-11-01,Beirut,361.09667937706695,194.0272665776548 +2077-12-01,Beirut,439.08066494108385,204.60732727367866 +2078-01-01,Beirut,380.89102728684645,393.3775129561111 +2078-02-01,Beirut,628.8980725569234,536.3632243348715 +2078-03-01,Beirut,872.7360281227316,425.8342632486403 +2078-04-01,Beirut,564.8128273126938,382.82207712996615 +2078-05-01,Beirut,449.936799741929,266.9544304682193 +2078-06-01,Beirut,531.0023042834694,329.3559530742905 +2078-07-01,Beirut,606.5482189246788,288.04891426098874 +2078-08-01,Beirut,408.0360066414204,265.5866042460361 +2078-09-01,Beirut,427.8415424920346,305.7155782557027 +2078-10-01,Beirut,511.8264051675064,338.5984645924817 +2078-11-01,Beirut,550.2643376841572,408.7502212627453 +2078-12-01,Beirut,558.0799502378017,375.12195441749355 +2079-01-01,Beirut,309.7635262543912,457.9278268668759 +2079-02-01,Beirut,436.3970765856152,474.95724265436934 +2079-03-01,Beirut,756.3724930896376,345.2745787201552 +2079-04-01,Beirut,533.4388063226195,398.42893710343947 +2079-05-01,Beirut,580.8174467304138,438.0841451595877 +2079-06-01,Beirut,550.8762794687066,280.3085887343614 +2079-07-01,Beirut,460.58517319550435,270.31357979288987 +2079-08-01,Beirut,627.1493588253602,214.3934470110418 +2079-09-01,Beirut,303.47698372029146,97.18787206219908 +2079-10-01,Beirut,279.69281035363974,138.44571283246088 +2079-11-01,Beirut,372.7184036832574,270.77378397412383 +2079-12-01,Beirut,508.7339811625947,426.2898836542355 +2080-01-01,Beirut,603.2519172025343,473.5686688161371 +2080-02-01,Beirut,658.033656639727,450.07750795715793 +2080-03-01,Beirut,605.2982301602992,430.2367557305411 +2080-04-01,Beirut,611.3366833213161,367.1081360218344 +2080-05-01,Beirut,721.4752223546029,228.37847755588442 +2080-06-01,Beirut,273.0929797567655,130.54243925154805 +2080-07-01,Beirut,305.290638947504,167.80326212930598 +2080-08-01,Beirut,301.0705476646716,160.86575216454955 +2080-09-01,Beirut,360.6443779344962,274.74857227800373 +2080-10-01,Beirut,495.68205222667194,426.75574000994123 +2080-11-01,Beirut,725.6448007275519,468.84700079897027 +2080-12-01,Beirut,619.5793665819938,309.0369545119519 +2081-01-01,Beirut,580.6642362394896,281.7346943896658 +2081-02-01,Beirut,645.4777264141408,225.11522564260326 +2081-03-01,Beirut,407.2034438074924,225.94699136640307 +2081-04-01,Beirut,438.2508026445988,239.6114677968402 +2081-05-01,Beirut,432.4376771839324,350.94015987411785 +2081-06-01,Beirut,805.9244231538192,282.7017676560047 +2081-07-01,Beirut,836.1487353365582,214.1159390302663 +2081-08-01,Beirut,649.08567015719,187.20052544675497 +2081-09-01,Beirut,381.12435372190845,287.45857220898876 +2081-10-01,Beirut,472.8597845777585,417.82082396224445 +2081-11-01,Beirut,563.5723290084703,446.13380661287306 +2081-12-01,Beirut,636.7508239302581,483.7196984517183 +2082-01-01,Beirut,556.7738931722276,448.36503695010697 +2082-02-01,Beirut,646.0431160770563,354.7770902640506 +2082-03-01,Beirut,512.4403530655848,157.402813062916 +2082-04-01,Beirut,271.3130169490779,109.42088361092715 +2082-05-01,Beirut,338.1693994007331,218.7823777206581 +2082-06-01,Beirut,454.49054885567637,284.3228044016302 +2082-07-01,Beirut,642.2424825576087,182.50234497167682 +2082-08-01,Beirut,280.5700992315021,281.32127573797766 +2082-09-01,Beirut,434.02654481828324,395.16608153166084 +2082-10-01,Beirut,731.7350013298545,377.20281623508964 +2082-11-01,Beirut,438.7965941215005,305.04477887867546 +2082-12-01,Beirut,401.3760955162938,188.37309316607133 +2083-01-01,Beirut,350.1480318792511,415.0023533760744 +2083-02-01,Beirut,484.9202819199012,394.08775692876657 +2083-03-01,Beirut,752.8033599275528,234.93475869185934 +2083-04-01,Beirut,339.6558780868935,241.2297990809045 +2083-05-01,Beirut,370.6063004895037,182.13011137178046 +2083-06-01,Beirut,448.78019813426346,190.16667632324086 +2083-07-01,Beirut,448.9429505241525,206.1533176173992 +2083-08-01,Beirut,416.8106957783392,358.0656908012589 +2083-09-01,Beirut,583.9054212783959,505.9671741400237 +2083-10-01,Beirut,846.1389749556093,442.32630888756796 +2083-11-01,Beirut,539.5915307965752,414.3459429188153 +2083-12-01,Beirut,529.395510224379,334.26145461970583 +2084-01-01,Beirut,520.4894463707167,301.0792959839869 +2084-02-01,Beirut,519.2351110270242,360.4935065237813 +2084-03-01,Beirut,532.8021996294256,377.11434591881414 +2084-04-01,Beirut,573.4110556172757,312.52305374312857 +2084-05-01,Beirut,522.6141520725369,192.0601203068259 +2084-06-01,Beirut,303.24805530335055,111.7815280648789 +2084-07-01,Beirut,297.7555479356609,128.52066678231756 +2084-08-01,Beirut,306.37458323825484,170.5405688686397 +2084-09-01,Beirut,428.0650955534939,244.95685671342147 +2084-10-01,Beirut,433.64571760003315,306.3528436951625 +2084-11-01,Beirut,527.1632202547165,399.9175268582403 +2084-12-01,Beirut,654.7811036241566,463.7456031578361 +2085-01-01,Beirut,655.5089627635148,247.2363028560584 +2085-02-01,Beirut,362.9270264976167,335.415532146314 +2085-03-01,Beirut,397.289513660755,458.1218618807564 +2085-04-01,Beirut,715.6798175634425,411.22597707484283 +2085-05-01,Beirut,553.23657491316,381.3044682842794 +2085-06-01,Beirut,539.5656056371238,388.8368868444353 +2085-07-01,Beirut,622.8509776760895,216.19807603356642 +2085-08-01,Beirut,307.2409670887289,213.05607015560173 +2085-09-01,Beirut,535.60821234897,213.32752962040277 +2085-10-01,Beirut,320.2752525133584,84.29610647167476 +2085-11-01,Beirut,293.4256090774151,136.8457683476693 +2085-12-01,Beirut,493.98192244967584,240.02971147551645 +2086-01-01,Beirut,375.24839575673855,446.5787085656589 +2086-02-01,Beirut,679.6149630351413,513.6383466905672 +2086-03-01,Beirut,772.0775843258397,418.3068765023435 +2086-04-01,Beirut,590.4576452580635,478.8379084675019 +2086-05-01,Beirut,661.7035584275366,308.99180604513424 +2086-06-01,Beirut,453.8692452079917,204.29983519661965 +2086-07-01,Beirut,419.23842750065126,178.61423483119114 +2086-08-01,Beirut,301.34697982120235,129.5761586682143 +2086-09-01,Beirut,324.7156304933145,133.6288194612351 +2086-10-01,Beirut,299.65330561466493,174.99718781400404 +2086-11-01,Beirut,422.10958747107895,278.7155371452672 +2086-12-01,Beirut,475.0434905928539,368.31291079629665 +2087-01-01,Beirut,285.7005545460207,490.02049440867074 +2087-02-01,Beirut,564.2708937464247,433.1700619590291 +2087-03-01,Beirut,890.0399918415249,174.34379299861246 +2087-04-01,Beirut,281.46708917299514,213.73045383839167 +2087-05-01,Beirut,309.0970078940921,148.6563660158242 +2087-06-01,Beirut,355.1626212777694,252.67383255587401 +2087-07-01,Beirut,595.3583748541105,345.51286612441277 +2087-08-01,Beirut,606.0122008213798,401.2044994138935 +2087-09-01,Beirut,720.6891859229045,279.3008473834081 +2087-10-01,Beirut,307.1641946671394,265.2934493920275 +2087-11-01,Beirut,408.926438134838,371.57569743911824 +2087-12-01,Beirut,705.6775927020259,355.28309773719354 +2088-01-01,Beirut,430.70488376358,388.4854525573056 +2088-02-01,Beirut,540.6300803388818,323.9770129879023 +2088-03-01,Beirut,504.65380343870606,210.42823983218125 +2088-04-01,Beirut,356.36855270272423,237.45404314028573 +2088-05-01,Beirut,441.3532572171554,304.62422607994057 +2088-06-01,Beirut,526.7230069321281,374.12486259039264 +2088-07-01,Beirut,565.3218657609684,463.2784371519479 +2088-08-01,Beirut,682.8023687998285,351.875387962335 +2088-09-01,Beirut,428.8103152906989,241.9526053559684 +2088-10-01,Beirut,402.0797269768789,190.2189934015838 +2088-11-01,Beirut,331.38112272915635,218.22617273459926 +2088-12-01,Beirut,477.2431426385643,259.2962510260651 +2089-01-01,Beirut,454.8098038202294,344.30860831712783 +2089-02-01,Beirut,603.5503394496711,270.4398059453477 +2089-03-01,Beirut,363.5959367625081,314.4915613608578 +2089-04-01,Beirut,547.150798048383,266.70737185418676 +2089-05-01,Beirut,510.4341623783992,228.21404752902401 +2089-06-01,Beirut,640.9073111264604,156.2903858585591 +2089-07-01,Beirut,310.9465931289966,218.9627475688186 +2089-08-01,Beirut,383.4883527605692,355.4658284021304 +2089-09-01,Beirut,612.3760044457492,513.117795207503 +2089-10-01,Beirut,795.9167457787087,478.8099577754491 +2089-11-01,Beirut,548.4909847633536,474.2153258259845 +2089-12-01,Beirut,701.3287500816803,369.43407474595 +2090-01-01,Beirut,542.9007179402328,112.99607351899213 +2090-02-01,Beirut,268.10038044885323,94.01198760188191 +2090-03-01,Beirut,325.82650300028115,227.35608880157417 +2090-04-01,Beirut,506.72246655873613,318.2104853764519 +2090-05-01,Beirut,500.22811123855814,332.7175493769337 +2090-06-01,Beirut,453.84861824580923,369.3260286058939 +2090-07-01,Beirut,536.6525230378214,415.54072299451633 +2090-08-01,Beirut,559.987764203855,410.94764194658364 +2090-09-01,Beirut,551.7595095289432,394.3598195219412 +2090-10-01,Beirut,540.2889638807437,391.1829183595087 +2090-11-01,Beirut,572.861714862592,402.63181132594485 +2090-12-01,Beirut,558.6911461596287,371.5566730469935 +2091-01-01,Beirut,560.405601644774,287.4066687043877 +2091-02-01,Beirut,452.08750776141324,302.18810441810274 +2091-03-01,Beirut,405.388271135431,361.8027775970155 +2091-04-01,Beirut,466.590525483293,456.8705945248155 +2091-05-01,Beirut,809.7675708484385,409.30489257951143 +2091-06-01,Beirut,598.0568033058128,310.0454196169535 +2091-07-01,Beirut,352.14900152738045,264.834968434718 +2091-08-01,Beirut,553.7800002048737,270.1155985962226 +2091-09-01,Beirut,369.3868920967389,173.2351741191283 +2091-10-01,Beirut,341.06946798150125,240.17794319748805 +2091-11-01,Beirut,522.8045013831513,244.21581872923807 +2091-12-01,Beirut,423.32668111746426,219.17651349663282 +2092-01-01,Beirut,349.9302914031449,305.5859918165925 +2092-02-01,Beirut,514.2913271483169,408.4571008732152 +2092-03-01,Beirut,806.5444665506972,288.65741909315136 +2092-04-01,Beirut,299.04828234985007,312.07725571390216 +2092-05-01,Beirut,462.2910126802367,268.7416204646295 +2092-06-01,Beirut,379.5658349845345,224.60951111752752 +2092-07-01,Beirut,414.17448256543935,259.63348594805825 +2092-08-01,Beirut,531.5117542422115,230.51520629310755 +2092-09-01,Beirut,399.13030285941704,150.83284952898185 +2092-10-01,Beirut,300.8696019595195,118.33575856438387 +2092-11-01,Beirut,371.04805697634526,204.02139667492497 +2092-12-01,Beirut,429.1475223993959,416.61339542293877 +2093-01-01,Beirut,681.3712382715444,233.10607346335098 +2093-02-01,Beirut,398.2574377190801,297.39700770902425 +2093-03-01,Beirut,510.8193618953662,273.59608011740596 +2093-04-01,Beirut,580.226260505068,191.6633996949646 +2093-05-01,Beirut,331.5222193806942,335.4072262069987 +2093-06-01,Beirut,646.5385232410957,394.10099128850555 +2093-07-01,Beirut,738.4640719329223,334.4152351227138 +2093-08-01,Beirut,353.52149181404855,460.57014950350003 +2093-09-01,Beirut,696.7629385673549,428.07790079812946 +2093-10-01,Beirut,442.82867655950224,262.7767842439662 +2093-11-01,Beirut,296.8635218391818,178.33839837762224 +2093-12-01,Beirut,416.3432713260886,232.10777537950298 +2094-01-01,Beirut,437.67432791846545,249.8843982928291 +2094-02-01,Beirut,428.5698388612643,322.39040625628513 +2094-03-01,Beirut,575.957739584094,403.2305627106956 +2094-04-01,Beirut,679.862795214182,302.27893555115463 +2094-05-01,Beirut,342.3861471610171,331.0191743415838 +2094-06-01,Beirut,479.26473924887614,383.4822786798588 +2094-07-01,Beirut,575.5936556979897,384.4870560856623 +2094-08-01,Beirut,526.889308599799,416.5374357123539 +2094-09-01,Beirut,523.0295461700553,354.5439725315661 +2094-10-01,Beirut,698.0564188442664,234.1235337972376 +2094-11-01,Beirut,281.74295550263315,92.40325467507611 +2094-12-01,Beirut,272.73059335133945,134.26882482673452 +2095-01-01,Beirut,291.8919610039195,479.9440803690135 +2095-02-01,Beirut,684.4177017011191,330.8817644658571 +2095-03-01,Beirut,600.6658053890503,209.3631840535044 +2095-04-01,Beirut,404.2733092431938,136.10945199703855 +2095-05-01,Beirut,271.6728314140822,192.5528072590336 +2095-06-01,Beirut,546.8286367911531,378.68082539499505 +2095-07-01,Beirut,555.053239310666,508.30131541001913 +2095-08-01,Beirut,814.3439273184931,461.14108805411195 +2095-09-01,Beirut,534.5252711149838,398.246240902981 +2095-10-01,Beirut,679.7499384684752,391.5979051449679 +2095-11-01,Beirut,428.47452274923387,191.17083336843157 +2095-12-01,Beirut,323.04867874775914,119.0945629872272 +2096-01-01,Beirut,286.5311884246324,164.56697867044068 +2096-02-01,Beirut,449.38234082580595,259.09525418753026 +2096-03-01,Beirut,432.723779836449,315.9143239617489 +2096-04-01,Beirut,585.6936400148372,250.6155105072083 +2096-05-01,Beirut,474.01386568381076,124.26442431487536 +2096-06-01,Beirut,317.639090739267,166.78282061803023 +2096-07-01,Beirut,363.5713232926718,306.41289804892574 +2096-08-01,Beirut,538.1660328178145,460.9779332129555 +2096-09-01,Beirut,693.4015667525398,496.86951682491235 +2096-10-01,Beirut,645.5078695558839,450.4883934696773 +2096-11-01,Beirut,667.8684224602828,342.26576081930267 +2096-12-01,Beirut,569.8699308863837,119.79028018220055 +2097-01-01,Beirut,611.2514492157388,267.0455717815775 +2097-02-01,Beirut,773.6429187053313,174.37605175047608 +2097-03-01,Beirut,299.83956554000883,242.76943072834428 +2097-04-01,Beirut,430.81447414495125,312.9484488010909 +2097-05-01,Beirut,655.3396519255502,277.36282359690045 +2097-06-01,Beirut,437.97933433308197,403.3736592253727 +2097-07-01,Beirut,655.5014526974832,425.3324949063513 +2097-08-01,Beirut,816.6874794308009,221.74599545797525 +2097-09-01,Beirut,290.00690871059896,229.60906622473325 +2097-10-01,Beirut,365.1289418508982,349.81930610477093 +2097-11-01,Beirut,584.6071752224732,436.1808443351554 +2097-12-01,Beirut,826.5612615875547,414.77526692732505 +2098-01-01,Beirut,565.4090031024576,260.94637579153346 +2098-02-01,Beirut,282.1769704488052,96.84562255858617 +2098-03-01,Beirut,289.57453980629685,170.53803572947095 +2098-04-01,Beirut,472.41599625798386,288.6733072177337 +2098-05-01,Beirut,531.5734808123339,447.46292922571564 +2098-06-01,Beirut,795.3456206886525,317.61742063065145 +2098-07-01,Beirut,380.7735924871888,262.07248539384966 +2098-08-01,Beirut,336.14427923204346,267.9216760569506 +2098-09-01,Beirut,539.937945451982,305.37934280358576 +2098-10-01,Beirut,648.692780538362,314.72915947554566 +2098-11-01,Beirut,353.92029689584666,309.4014163719496 +2098-12-01,Beirut,436.9794410553143,285.62297685254384 +2099-01-01,Beirut,687.2253604625334,231.49320479912683 +2099-02-01,Beirut,826.3100858859656,142.09279564264932 +2099-03-01,Beirut,312.9082378080773,219.08080563987505 +2099-04-01,Beirut,383.7837658374126,361.26471815887993 +2099-05-01,Beirut,471.31157932147585,431.36536400754756 +2099-06-01,Beirut,785.3372231702238,387.1660489273964 +2099-07-01,Beirut,556.7407665795955,350.1405495087461 +2099-08-01,Beirut,427.19732285519206,277.084471236402 +2099-09-01,Beirut,415.43733103192784,315.63764312845706 +2099-10-01,Beirut,557.5389940088928,400.68398239530774 +2099-11-01,Beirut,628.7443219585107,404.0924503886929 +2099-12-01,Beirut,542.7758245133521,307.85206574157655 +2100-01-01,Beirut,431.1882799658498,205.0725805010109 +2100-02-01,Beirut,366.553179578852,251.6356246059384 +2100-03-01,Beirut,508.09554839170113,266.8353212305689 +2100-04-01,Beirut,534.6118683489843,215.43937500415853 +2100-05-01,Beirut,336.2416786158155,222.01150980023735 +2100-06-01,Beirut,470.81061676612546,252.40452712097837 +2100-07-01,Beirut,434.6860675006351,362.39249928840275 +2100-08-01,Beirut,584.1738804196193,354.68048633085226 +2100-09-01,Beirut,421.4248083337853,203.65571132594104 +2100-10-01,Beirut,371.1913140578373,233.84444045045166 +2100-11-01,Beirut,440.39680401311125,250.30824244925944 +2100-12-01,Beirut,442.8368553300435,299.80021579390717 +2101-01-01,Beirut,563.3180155395668,287.54418197354994 +2101-02-01,Beirut,803.2522799332274,169.5876949674373 +2101-03-01,Beirut,603.2256062520198,113.38684900831447 +2101-04-01,Beirut,265.4085104452265,323.16951025695715 +2101-05-01,Beirut,630.21341432742,437.95221513594026 +2101-06-01,Beirut,874.8012448425965,228.15573363142434 +2101-07-01,Beirut,354.0540120783739,370.5830515297421 +2101-08-01,Beirut,641.0973775236284,293.9365155853633 +2101-09-01,Beirut,398.4776986967997,329.5099748286479 +2101-10-01,Beirut,548.8034755245974,411.1144500224596 +2101-11-01,Beirut,765.4322561029044,294.76369753352435 +2101-12-01,Beirut,334.62156190534034,346.9021981811717 +2102-01-01,Beirut,549.1744007722236,279.9543111277566 +2102-02-01,Beirut,353.32723315399295,278.0150121555449 +2102-03-01,Beirut,515.1708793337505,291.4906921728315 +2102-04-01,Beirut,416.42907125855857,358.66113359607493 +2102-05-01,Beirut,480.3330718612668,431.4383597729826 +2102-06-01,Beirut,579.8514516274051,451.7979747232178 +2102-07-01,Beirut,641.6164465395482,412.0645667653831 +2102-08-01,Beirut,580.4556775906891,261.8166555700423 +2102-09-01,Beirut,335.7282164300153,206.15760844497083 +2102-10-01,Beirut,415.28669248142535,275.28868235260927 +2102-11-01,Beirut,506.2400734132308,250.78812584770935 +2102-12-01,Beirut,437.6263097907912,272.7022094033729 +2103-01-01,Beirut,417.5710642446285,363.2442199452464 +2103-02-01,Beirut,472.63304231017617,350.4632059563394 +2103-03-01,Beirut,766.730108678533,189.2177486048252 +2103-04-01,Beirut,263.2888971854413,226.63388565488378 +2103-05-01,Beirut,444.9138772564442,420.04302460611484 +2103-06-01,Beirut,799.10960405709,376.24187764592136 +2103-07-01,Beirut,368.0893481539609,415.12070439519795 +2103-08-01,Beirut,580.3412005225166,313.98834551047236 +2103-09-01,Beirut,354.361204642349,254.14550025173787 +2103-10-01,Beirut,470.74459505549885,237.440326277848 +2103-11-01,Beirut,389.99659655902474,138.82010046226276 +2103-12-01,Beirut,308.9525162811976,159.89254422103994 +2104-01-01,Beirut,386.6280747498371,188.03801227398358 +2104-02-01,Beirut,365.55925320286286,286.2900368336554 +2104-03-01,Beirut,478.3240263202131,403.708998601049 +2104-04-01,Beirut,758.243322552426,347.4381552861196 +2104-05-01,Beirut,515.9076373869678,257.3612428814251 +2104-06-01,Beirut,377.4014699614108,133.369818905407 +2104-07-01,Beirut,282.4602954056663,176.8466723552791 +2104-08-01,Beirut,560.575555467844,256.11779896210066 +2104-09-01,Beirut,346.34454350593546,397.08013527338096 +2104-10-01,Beirut,477.20083421862626,497.45065686115635 +2104-11-01,Beirut,796.8056598272773,441.0697340019401 +2104-12-01,Beirut,590.4826959577714,400.8064346873712 +2105-01-01,Beirut,352.7572911565309,414.52491695559706 +2105-02-01,Beirut,453.6588347620875,424.92605531155675 +2105-03-01,Beirut,719.4701376017988,303.6927718521177 +2105-04-01,Beirut,664.839216750938,188.87708446722266 +2105-05-01,Beirut,263.80866062527485,147.3044279182234 +2105-06-01,Beirut,502.5835971544229,248.86474946455854 +2105-07-01,Beirut,365.70942880408944,226.33197682333966 +2105-08-01,Beirut,567.9319994979917,184.86485050746685 +2105-09-01,Beirut,330.488119295317,419.4768421535341 +2105-10-01,Beirut,594.3520260058841,525.1096071035414 +2105-11-01,Beirut,936.4335276289767,274.52279547943687 +2105-12-01,Beirut,345.80464177259955,298.5450884163758 +2106-01-01,Beirut,312.3327146999,260.2802463513411 +2106-02-01,Beirut,615.095882880569,317.98980932070106 +2106-03-01,Beirut,517.4135599427169,396.5893955642078 +2106-04-01,Beirut,460.81844819175797,392.07117136354833 +2106-05-01,Beirut,520.7582398641948,307.1714267559412 +2106-06-01,Beirut,558.065804565482,295.9673349801966 +2106-07-01,Beirut,568.4478021495756,185.96781721247922 +2106-08-01,Beirut,279.67797025740623,124.27045559861057 +2106-09-01,Beirut,333.73912914663447,178.78326586592956 +2106-10-01,Beirut,340.73416410871647,258.4962443191908 +2106-11-01,Beirut,523.5448344335549,377.1507404080961 +2106-12-01,Beirut,621.7365044525325,322.0807429170814 +2107-01-01,Beirut,531.1037416137035,303.80378193732355 +2107-02-01,Beirut,328.3806713137268,440.6011204879554 +2107-03-01,Beirut,546.629465724892,483.83815286427733 +2107-04-01,Beirut,742.4877698451489,372.28480408398366 +2107-05-01,Beirut,551.3663112772645,358.9837555791896 +2107-06-01,Beirut,514.4790787991055,243.9451347152029 +2107-07-01,Beirut,377.57649050711154,204.21012415911858 +2107-08-01,Beirut,419.6051862047943,285.49618203619104 +2107-09-01,Beirut,691.9911146252466,182.19648995734596 +2107-10-01,Beirut,292.8296904816933,111.38001689050795 +2107-11-01,Beirut,316.1111009346993,168.77054218251584 +2107-12-01,Beirut,510.6015185416431,254.97926491528997 +2108-01-01,Beirut,476.99896261492233,228.5623627808506 +2108-02-01,Beirut,341.35986577452223,323.66786661587594 +2108-03-01,Beirut,496.4966114776476,401.1619357829623 +2108-04-01,Beirut,634.3727049386819,462.8286067787385 +2108-05-01,Beirut,805.1194572406168,320.4375799762674 +2108-06-01,Beirut,406.94195462481207,95.59006437507364 +2108-07-01,Beirut,263.9833468187208,88.65710372147753 +2108-08-01,Beirut,362.7044764929218,239.30195954778966 +2108-09-01,Beirut,501.2068888854632,351.480666290226 +2108-10-01,Beirut,700.796615608418,309.01827476461204 +2108-11-01,Beirut,397.84945080997636,338.83847522066367 +2108-12-01,Beirut,609.0190563684596,262.3051550881139 +2109-01-01,Beirut,521.3600482034824,310.1894294403105 +2109-02-01,Beirut,367.54034175153197,395.9087221140939 +2109-03-01,Beirut,579.2728164713175,393.3708613117632 +2109-04-01,Beirut,531.0730840838762,347.89387908515016 +2109-05-01,Beirut,558.0885919576187,353.8690891138381 +2109-06-01,Beirut,550.143044973867,255.04164562135105 +2109-07-01,Beirut,546.3521076698095,128.69605651333674 +2109-08-01,Beirut,280.3290055363663,106.8134217942924 +2109-09-01,Beirut,361.86851869763717,185.06803584038565 +2109-10-01,Beirut,431.4363179001244,255.27441870905074 +2109-11-01,Beirut,426.8317472436431,421.74522519857675 +2109-12-01,Beirut,620.0386894219159,507.01096533547417 +2110-01-01,Beirut,722.5102226191276,518.221019465997 +2110-02-01,Beirut,688.0632472131344,500.6486847489013 +2110-03-01,Beirut,601.7559223368133,365.3267015933314 +2110-04-01,Beirut,650.4413399534998,308.1074647594028 +2110-05-01,Beirut,479.03203007951527,257.75455150991615 +2110-06-01,Beirut,404.805443716456,292.80714908983015 +2110-07-01,Beirut,571.2915709545116,289.52099553059446 +2110-08-01,Beirut,423.6677461367939,250.09206400795117 +2110-09-01,Beirut,434.83840353181597,261.3051337803416 +2110-10-01,Beirut,534.4000690552525,217.19763207087917 +2110-11-01,Beirut,338.67812921615723,135.71738408977296 +2110-12-01,Beirut,310.7633423739462,151.5938424462091 +2111-01-01,Beirut,341.7147163945125,424.2668187670617 +2111-02-01,Beirut,423.8844321173271,460.2497677114869 +2111-03-01,Beirut,708.7069270083919,367.83071827778815 +2111-04-01,Beirut,622.669372962909,344.2729031174155 +2111-05-01,Beirut,455.50206730415033,368.7115614189532 +2111-06-01,Beirut,581.0321523168225,320.22210805676804 +2111-07-01,Beirut,525.0456388278645,235.59282344408587 +2111-08-01,Beirut,384.91323347362857,260.8057607193074 +2111-09-01,Beirut,452.51612163269954,340.54060688416854 +2111-10-01,Beirut,626.5854608878894,361.92233487288615 +2111-11-01,Beirut,709.8444448181278,219.71707160945869 +2111-12-01,Beirut,285.02580597637194,115.02654826904062 +2112-01-01,Beirut,287.6034561058683,168.9154997790312 +2112-02-01,Beirut,399.20722959743193,238.512119862069 +2112-03-01,Beirut,426.16553751619455,372.4595734543901 +2112-04-01,Beirut,558.3815102522531,440.7662398043856 +2112-05-01,Beirut,694.544074126694,416.0690289852401 +2112-06-01,Beirut,703.3656240180974,282.8898747795855 +2112-07-01,Beirut,308.0273121532779,187.3370047815626 +2112-08-01,Beirut,361.76826445999694,222.03954665348635 +2112-09-01,Beirut,383.00827436144357,163.7158439097313 +2112-10-01,Beirut,332.0918527453055,143.9255821440976 +2112-11-01,Beirut,309.65385871480737,146.79528417753824 +2112-12-01,Beirut,393.9765972034858,229.69159141846984 +2113-01-01,Beirut,679.0477472945263,232.7706306942392 +2113-02-01,Beirut,655.3197193872816,191.81421625282272 +2113-03-01,Beirut,272.0632776895096,385.35521629874415 +2113-04-01,Beirut,570.9937145342675,503.9532768041274 +2113-05-01,Beirut,833.0903381034263,342.8613414720326 +2113-06-01,Beirut,540.0329529311618,247.84987396655842 +2113-07-01,Beirut,266.75885632486313,114.24622077938221 +2113-08-01,Beirut,426.90095816039263,242.59285197281727 +2113-09-01,Beirut,448.26110339893967,270.68458990380003 +2113-10-01,Beirut,501.7582871924843,344.94478812551523 +2113-11-01,Beirut,703.4080610350563,261.4495054807227 +2113-12-01,Beirut,330.10137661409703,438.6191717236164 +2114-01-01,Beirut,586.1268319400742,446.0352037399224 +2114-02-01,Beirut,721.8649742061164,238.5312993443469 +2114-03-01,Beirut,296.28056582318567,137.00651067533158 +2114-04-01,Beirut,277.2374817106023,147.32689875819676 +2114-05-01,Beirut,411.62622971496376,261.9260113602809 +2114-06-01,Beirut,487.7394372550009,409.0563692251433 +2114-07-01,Beirut,636.7892487201592,437.7937474638581 +2114-08-01,Beirut,530.6623451985212,398.2701247865724 +2114-09-01,Beirut,581.3681506135212,395.8083960172189 +2114-10-01,Beirut,634.1001306927838,259.28670436552426 +2114-11-01,Beirut,403.6070223575327,123.72095395361738 +2114-12-01,Beirut,272.78069475075534,93.68531604254497 +2017-01-01,Bekaa,701.2118961803191,34.81829981811756 +2017-02-01,Bekaa,785.5704465408992,40.08047561217825 +2017-03-01,Bekaa,612.6104434220903,31.541242717338484 +2017-04-01,Bekaa,639.5353344141924,32.549815637474325 +2017-05-01,Bekaa,766.4208429973125,36.66749521683109 +2017-06-01,Bekaa,866.9958003571505,43.126840032527305 +2017-07-01,Bekaa,923.9753061283228,49.03394853635197 +2017-08-01,Bekaa,936.6169484590273,52.45491946551175 +2017-09-01,Bekaa,639.1951995551442,37.24131247117067 +2017-10-01,Bekaa,473.66754933603335,45.13667205209403 +2017-11-01,Bekaa,460.3249964371678,31.472980390758792 +2017-12-01,Bekaa,761.2252775357642,30.55333171007905 +2018-01-01,Bekaa,707.7628957614215,38.01758662540048 +2018-02-01,Bekaa,483.97694029703797,27.418111017092563 +2018-03-01,Bekaa,567.6312588888479,22.502532014851866 +2018-04-01,Bekaa,806.0978268263176,35.47016218830704 +2018-05-01,Bekaa,815.0233476030508,37.46756514529393 +2018-06-01,Bekaa,873.9021958513384,44.750608701718406 +2018-07-01,Bekaa,819.8259134751985,47.16218963137872 +2018-08-01,Bekaa,911.7392894389203,51.89954781474404 +2018-09-01,Bekaa,541.9586801097922,35.104630727328626 +2018-10-01,Bekaa,506.3274401332018,36.50992449051584 +2018-11-01,Bekaa,401.2686698158486,20.109135164265492 +2018-12-01,Bekaa,767.3989228526485,35.26571356512179 +2019-01-01,Bekaa,905.2387391695455,46.17977950381315 +2019-02-01,Bekaa,667.725685182082,35.70136166479803 +2019-03-01,Bekaa,573.2141422164411,29.753229275746413 +2019-04-01,Bekaa,901.0427178515655,44.19284934705996 +2019-05-01,Bekaa,929.2445967537997,50.77783525969075 +2019-06-01,Bekaa,548.6965452590355,29.62389580751048 +2019-07-01,Bekaa,557.2129819541633,33.03741993740702 +2019-08-01,Bekaa,670.6120555426198,34.00050828045565 +2019-09-01,Bekaa,825.1698075986494,41.874099271389866 +2019-10-01,Bekaa,919.7522211425714,52.56087678074297 +2019-11-01,Bekaa,708.0127817973137,33.423746289820116 +2019-12-01,Bekaa,543.3182314201839,28.746405762421613 +2020-01-01,Bekaa,792.2109264028682,40.255472439785294 +2020-02-01,Bekaa,821.0044730763775,40.007975702208284 +2020-03-01,Bekaa,758.6424264837606,43.13353919678515 +2020-04-01,Bekaa,1000.6762658024594,49.81687900619306 +2020-05-01,Bekaa,721.8217300742415,38.76121602111402 +2020-06-01,Bekaa,534.8307248526735,41.62602038323554 +2020-07-01,Bekaa,486.70724167689895,41.23799486035563 +2020-08-01,Bekaa,534.9471590095557,24.134291217855584 +2020-09-01,Bekaa,563.0387795411639,28.58329278530549 +2020-10-01,Bekaa,633.4446367687126,31.602188268134135 +2020-11-01,Bekaa,610.5276389212597,24.095142330300277 +2020-12-01,Bekaa,853.657474440878,37.13670562707567 +2021-01-01,Bekaa,911.0786175492101,46.37704580731216 +2021-02-01,Bekaa,733.7772837237994,40.09915762207595 +2021-03-01,Bekaa,800.2873177412934,42.05021016380732 +2021-04-01,Bekaa,605.6071567035284,35.76311099710146 +2021-05-01,Bekaa,714.1163250782062,37.92793691403202 +2021-06-01,Bekaa,857.9385843694979,43.758600477324656 +2021-07-01,Bekaa,687.2163019187619,38.94640491644285 +2021-08-01,Bekaa,600.0871291560532,35.51836839322022 +2021-09-01,Bekaa,360.7347887818223,24.389036764397957 +2021-10-01,Bekaa,551.3083264386569,32.12289979645797 +2021-11-01,Bekaa,496.46037270782995,24.22684577195252 +2021-12-01,Bekaa,801.6044894339984,35.72184036277193 +2022-01-01,Bekaa,774.6916206391415,34.2334941022461 +2022-02-01,Bekaa,908.7822680836124,47.40442928328537 +2022-03-01,Bekaa,882.8290890250175,51.56855236288844 +2022-04-01,Bekaa,822.8503469684844,53.47986500124996 +2022-05-01,Bekaa,489.5452487690667,33.8077839334914 +2022-06-01,Bekaa,617.4108134591247,40.265682237981515 +2022-07-01,Bekaa,675.8010883947061,30.898897179302676 +2022-08-01,Bekaa,527.9451074482449,25.725709158898148 +2022-09-01,Bekaa,701.200752317119,34.844371003236574 +2022-10-01,Bekaa,549.3846376397228,25.590375402605073 +2022-11-01,Bekaa,727.4258306586167,28.340369032593514 +2022-12-01,Bekaa,855.103541654733,38.152998691288985 +2023-01-01,Bekaa,668.3611049679894,32.15762197556236 +2023-02-01,Bekaa,716.8681456421774,35.30339525591751 +2023-03-01,Bekaa,737.7123300385653,35.48257352041244 +2023-04-01,Bekaa,421.559888034833,26.061131319204684 +2023-05-01,Bekaa,853.399024648044,37.44346352037688 +2023-06-01,Bekaa,682.5022830975574,30.970860742420935 +2023-07-01,Bekaa,974.2205698781888,53.731466343658965 +2023-08-01,Bekaa,874.2599522871708,41.234425124835795 +2023-09-01,Bekaa,799.2907928710058,43.43557487372816 +2023-10-01,Bekaa,724.5282066431233,36.97476138373281 +2023-11-01,Bekaa,601.5854846935433,36.292019914773 +2023-12-01,Bekaa,689.9259075526802,35.84499032804821 +2024-01-01,Bekaa,721.4812658399262,34.07936456551102 +2024-02-01,Bekaa,565.241421743302,33.136137308910094 +2024-03-01,Bekaa,755.3330284886479,38.47275302235199 +2024-04-01,Bekaa,780.589743545186,38.48511116303408 +2024-05-01,Bekaa,789.0834533468914,40.763465307780166 +2024-06-01,Bekaa,823.5136538603305,38.21898265190361 +2024-07-01,Bekaa,893.3034969947855,46.784704875551185 +2024-08-01,Bekaa,822.6004609325923,40.4425584958788 +2024-09-01,Bekaa,696.8174262639757,34.68338420551326 +2024-10-01,Bekaa,719.5898832650965,39.37998298322865 +2024-11-01,Bekaa,593.7145960737829,34.782900925905516 +2024-12-01,Bekaa,820.7757768493287,37.27715314770408 +2025-01-01,Bekaa,622.2558687407145,28.912170923005498 +2025-02-01,Bekaa,606.1338277554503,27.210138462113107 +2025-03-01,Bekaa,991.259811190273,52.156740166758624 +2025-04-01,Bekaa,644.318357353832,28.01477546528283 +2025-05-01,Bekaa,652.548182670798,32.36571716632333 +2025-06-01,Bekaa,831.9946827142567,36.85455763229203 +2025-07-01,Bekaa,588.4611703569994,30.97539826633709 +2025-08-01,Bekaa,1012.7384821426452,52.99601512927916 +2025-09-01,Bekaa,946.1270554387953,47.06724294077243 +2025-10-01,Bekaa,749.7851412831726,38.05332978432449 +2025-11-01,Bekaa,552.2028273199932,39.484594259942256 +2025-12-01,Bekaa,629.1647894452828,44.866040000456756 +2026-01-01,Bekaa,583.6159503877761,30.423800251545252 +2026-02-01,Bekaa,700.1945108764554,32.10602925003185 +2026-03-01,Bekaa,657.441930596025,36.913889709913974 +2026-04-01,Bekaa,774.1453517588335,41.08173914422774 +2026-05-01,Bekaa,464.98815422756076,23.78890157583679 +2026-06-01,Bekaa,845.6066645815226,34.94823612248432 +2026-07-01,Bekaa,658.5356211700754,34.83442272953828 +2026-08-01,Bekaa,787.7426764267183,43.87393721353267 +2026-09-01,Bekaa,776.7458792834993,39.376034997587496 +2026-10-01,Bekaa,849.7441668937336,41.11444891448361 +2026-11-01,Bekaa,748.2291176260197,34.73745771992532 +2026-12-01,Bekaa,990.8597300326322,55.1927056638508 +2027-01-01,Bekaa,578.6326947337438,28.724127421292422 +2027-02-01,Bekaa,785.0584326883585,39.398667948205414 +2027-03-01,Bekaa,740.0332728574317,36.23141715314978 +2027-04-01,Bekaa,619.6217449388156,32.284350541595686 +2027-05-01,Bekaa,1024.9932183263886,54.68999943231701 +2027-06-01,Bekaa,680.6814966216199,30.860816552832148 +2027-07-01,Bekaa,872.1792338296979,43.22220338928285 +2027-08-01,Bekaa,462.26364436281096,25.228821478058535 +2027-09-01,Bekaa,743.1083203500788,41.418978678163995 +2027-10-01,Bekaa,622.9886189180183,32.950581983776246 +2027-11-01,Bekaa,897.0657310861358,45.334780553128766 +2027-12-01,Bekaa,854.4417169515884,49.53136813142467 +2028-01-01,Bekaa,832.6728663889954,45.66862470121047 +2028-02-01,Bekaa,651.9203385160315,36.00944195598427 +2028-03-01,Bekaa,598.2284096285334,36.54497172831823 +2028-04-01,Bekaa,450.27822735571243,25.45605819351301 +2028-05-01,Bekaa,646.2740230016032,35.44614626068309 +2028-06-01,Bekaa,565.655556245668,30.44634159471191 +2028-07-01,Bekaa,669.8614642050205,26.994286188786262 +2028-08-01,Bekaa,889.9666510607568,42.56099558152591 +2028-09-01,Bekaa,943.0374056426449,50.88516964176985 +2028-10-01,Bekaa,791.7284465326011,52.70196998614877 +2028-11-01,Bekaa,726.8652339541945,42.499331946515596 +2028-12-01,Bekaa,395.205420109285,32.33186378046632 +2029-01-01,Bekaa,914.7119012235325,45.78224749155632 +2029-02-01,Bekaa,779.7969372775337,40.91787114440854 +2029-03-01,Bekaa,572.7650939357738,31.219993116264693 +2029-04-01,Bekaa,536.5860754422351,28.856071701889096 +2029-05-01,Bekaa,561.8430649781624,32.41382142100851 +2029-06-01,Bekaa,533.0887139614251,29.50669737148665 +2029-07-01,Bekaa,751.1113158998423,31.42877536291007 +2029-08-01,Bekaa,846.6675823165072,42.685614221101325 +2029-09-01,Bekaa,843.48922078178,47.98008755188725 +2029-10-01,Bekaa,795.4105875381942,41.40953129036853 +2029-11-01,Bekaa,925.6157596455816,49.25712792823961 +2029-12-01,Bekaa,526.2777823987873,31.881523027640558 +2030-01-01,Bekaa,640.895215099851,42.723448098469284 +2030-02-01,Bekaa,677.6677678245113,34.02290630228728 +2030-03-01,Bekaa,830.8981924504368,37.46820048729457 +2030-04-01,Bekaa,674.1285756847933,37.17312549910733 +2030-05-01,Bekaa,845.6011749937394,44.96309661752096 +2030-06-01,Bekaa,363.03102845566434,22.928550989369665 +2030-07-01,Bekaa,825.1277024603521,37.9650763478179 +2030-08-01,Bekaa,714.1770399190884,34.01030732266077 +2030-09-01,Bekaa,652.3839891002019,30.477124653412375 +2030-10-01,Bekaa,891.3706131363147,40.53415117173757 +2030-11-01,Bekaa,846.7026058865641,49.38061477253018 +2030-12-01,Bekaa,688.1568329936605,30.222359898856027 +2031-01-01,Bekaa,938.4228032561945,47.37946773035816 +2031-02-01,Bekaa,776.366548767679,40.34379088803149 +2031-03-01,Bekaa,529.2028818011358,29.191815965814556 +2031-04-01,Bekaa,793.5099275600109,39.72106411995942 +2031-05-01,Bekaa,408.9551082860929,25.932854291737243 +2031-06-01,Bekaa,940.1551524729445,47.14377948875572 +2031-07-01,Bekaa,681.040625454398,28.270954225175466 +2031-08-01,Bekaa,919.3888104313226,53.386384029863734 +2031-09-01,Bekaa,786.6701207656332,39.750907463514764 +2031-10-01,Bekaa,764.8726145548118,40.681252052898195 +2031-11-01,Bekaa,687.653602481573,35.11724891496911 +2031-12-01,Bekaa,784.3282626173127,41.1012810821356 +2032-01-01,Bekaa,542.506321387046,30.325759593149826 +2032-02-01,Bekaa,486.436714790942,28.934607360865073 +2032-03-01,Bekaa,848.2017025184051,44.51229930497847 +2032-04-01,Bekaa,517.1856251848944,24.096927198060193 +2032-05-01,Bekaa,808.7072474831922,33.203521977005195 +2032-06-01,Bekaa,936.795963916638,50.22407708209674 +2032-07-01,Bekaa,853.9513320749136,50.44462645360967 +2032-08-01,Bekaa,821.1686666469735,40.061979772262134 +2032-09-01,Bekaa,867.2792826702758,39.83688992175398 +2032-10-01,Bekaa,498.63743343089834,35.69843909159512 +2032-11-01,Bekaa,797.5954434759147,46.73814760476057 +2032-12-01,Bekaa,581.6015187027856,31.27708967656813 +2033-01-01,Bekaa,941.3186157077195,47.38729573482178 +2033-02-01,Bekaa,819.270696566804,42.53091287656568 +2033-03-01,Bekaa,522.3676039166794,29.287690551249682 +2033-04-01,Bekaa,860.5846754727644,44.08966094091986 +2033-05-01,Bekaa,538.5958684255489,28.8177605792509 +2033-06-01,Bekaa,868.0807075907477,43.0478034876485 +2033-07-01,Bekaa,449.51824882300383,27.129621422618875 +2033-08-01,Bekaa,616.5558650577664,30.571450777413396 +2033-09-01,Bekaa,785.3466909428553,37.105974282258984 +2033-10-01,Bekaa,747.1626005114962,38.35587521240754 +2033-11-01,Bekaa,885.5106977612414,49.08497093162144 +2033-12-01,Bekaa,738.6965033363405,36.23744846953719 +2034-01-01,Bekaa,972.6271072323543,52.427596804405425 +2034-02-01,Bekaa,702.3899068227197,31.900967447939017 +2034-03-01,Bekaa,543.5308980509056,43.71929497057849 +2034-04-01,Bekaa,564.7434886834253,44.39292297567805 +2034-05-01,Bekaa,636.7291669311674,35.16162533740406 +2034-06-01,Bekaa,497.45656820285046,22.452133141266735 +2034-07-01,Bekaa,632.1004014082362,29.886797372293543 +2034-08-01,Bekaa,671.4418616319309,34.0898403208238 +2034-09-01,Bekaa,566.5190135080902,23.427158526229597 +2034-10-01,Bekaa,855.9088092866532,36.40282946984162 +2034-11-01,Bekaa,819.1559641821348,36.868275109347564 +2034-12-01,Bekaa,842.5502816873385,43.33868374109201 +2035-01-01,Bekaa,908.2344072228473,44.31750049250517 +2035-02-01,Bekaa,642.221609300032,32.417355695579474 +2035-03-01,Bekaa,428.9109950353395,23.09656939774649 +2035-04-01,Bekaa,934.6645216680481,45.43462085467948 +2035-05-01,Bekaa,965.2251117530974,50.42482742382249 +2035-06-01,Bekaa,848.9397226999808,44.85408079544948 +2035-07-01,Bekaa,523.8514669424219,25.504375213891418 +2035-08-01,Bekaa,764.3738306088287,43.400805413358604 +2035-09-01,Bekaa,743.1711761301966,36.51066178274449 +2035-10-01,Bekaa,831.5933938473034,43.38015532079848 +2035-11-01,Bekaa,797.9696686750967,43.386346211455816 +2035-12-01,Bekaa,721.5976999968084,40.03284269260517 +2036-01-01,Bekaa,368.3785182591132,24.811087067721093 +2036-02-01,Bekaa,656.9141067306687,35.56674894779869 +2036-03-01,Bekaa,700.9282491795602,36.141539900692734 +2036-04-01,Bekaa,577.5402942128223,26.803528446944902 +2036-05-01,Bekaa,794.7254869828487,33.3392265957219 +2036-06-01,Bekaa,906.4175183542358,47.57338297418872 +2036-07-01,Bekaa,874.8901020688063,51.13834308624554 +2036-08-01,Bekaa,860.9611514029374,46.177300192471144 +2036-09-01,Bekaa,770.7074974095937,38.51823907697874 +2036-10-01,Bekaa,437.38005658789825,37.31352130585197 +2036-11-01,Bekaa,808.445943104711,45.36501101204263 +2036-12-01,Bekaa,619.2410420260494,31.106458978291023 +2037-01-01,Bekaa,341.2464502240724,19.594175697356693 +2037-02-01,Bekaa,398.14882728689054,20.7700164357849 +2037-03-01,Bekaa,551.2375382041923,27.887494299462894 +2037-04-01,Bekaa,856.0183814588063,40.62370779811524 +2037-05-01,Bekaa,808.951973306568,38.34628745835613 +2037-06-01,Bekaa,801.4509456637019,48.94860289765292 +2037-07-01,Bekaa,789.5380461112195,37.6451151612198 +2037-08-01,Bekaa,880.0898396170699,42.23377081056709 +2037-09-01,Bekaa,581.9402811648879,32.58956145100233 +2037-10-01,Bekaa,724.3049451079798,47.76691701281888 +2037-11-01,Bekaa,583.9170817256245,36.59659843725808 +2037-12-01,Bekaa,723.130941864661,34.58997120094571 +2038-01-01,Bekaa,593.3675992300057,29.833468537807818 +2038-02-01,Bekaa,761.2889567540497,37.56465131314887 +2038-03-01,Bekaa,772.7080129895537,39.086920403889934 +2038-04-01,Bekaa,342.7417315924041,20.966945860269625 +2038-05-01,Bekaa,666.5439965158665,23.27898938398419 +2038-06-01,Bekaa,781.4491934085264,36.45460245519557 +2038-07-01,Bekaa,754.8302920394608,33.761468979184755 +2038-08-01,Bekaa,810.2411481015788,36.94470822956331 +2038-09-01,Bekaa,924.7415427911043,49.36785178601512 +2038-10-01,Bekaa,803.1705590367948,50.86472049458668 +2038-11-01,Bekaa,855.2733346048681,47.09682919244844 +2038-12-01,Bekaa,517.1922950340511,33.49553698081263 +2039-01-01,Bekaa,953.8626531676383,47.89888493404814 +2039-02-01,Bekaa,798.4054321533285,41.5062569385766 +2039-03-01,Bekaa,671.367916884491,37.115697969947746 +2039-04-01,Bekaa,525.710680532842,31.427684938732234 +2039-05-01,Bekaa,591.2948955706963,29.892899610578695 +2039-06-01,Bekaa,692.3158544899817,36.80760438090567 +2039-07-01,Bekaa,745.3998389784273,38.23840934172763 +2039-08-01,Bekaa,680.8706678166295,31.99438636266472 +2039-09-01,Bekaa,843.9675834612095,43.252998268299606 +2039-10-01,Bekaa,883.2858776244591,47.33092760150976 +2039-11-01,Bekaa,886.679870167311,51.946341491860466 +2039-12-01,Bekaa,696.6617415544436,32.60948607165011 +2040-01-01,Bekaa,547.1662677685857,33.59049253665614 +2040-02-01,Bekaa,714.067961809836,36.13723582802332 +2040-03-01,Bekaa,860.0375831542889,41.40786167069244 +2040-04-01,Bekaa,447.3874653249479,28.345756141743067 +2040-05-01,Bekaa,920.7568706027781,47.399393828545456 +2040-06-01,Bekaa,568.6317637102782,26.141549363549977 +2040-07-01,Bekaa,837.335447772671,44.42088688894314 +2040-08-01,Bekaa,676.2531010527763,34.05154101850188 +2040-09-01,Bekaa,524.908322382447,30.833347615311737 +2040-10-01,Bekaa,870.6982528375415,36.00932079774229 +2040-11-01,Bekaa,651.6639747665552,33.00007955824421 +2040-12-01,Bekaa,752.2934437330804,35.679505899976235 +2041-01-01,Bekaa,452.8083509170584,22.72569663134415 +2041-02-01,Bekaa,420.0620540081822,22.90763346215346 +2041-03-01,Bekaa,759.9173832464128,38.07726444727394 +2041-04-01,Bekaa,936.740354392394,50.120823664217056 +2041-05-01,Bekaa,833.9859208908631,46.75279297664495 +2041-06-01,Bekaa,690.1676689986531,28.41333288997789 +2041-07-01,Bekaa,753.3933375413259,30.0188465581973 +2041-08-01,Bekaa,795.5511209854446,37.058249755234655 +2041-09-01,Bekaa,1041.0709583382422,54.99036548958394 +2041-10-01,Bekaa,544.5244859917292,26.570087542977262 +2041-11-01,Bekaa,630.0427941153307,38.9516575694946 +2041-12-01,Bekaa,533.9919432873369,27.15069261394686 +2042-01-01,Bekaa,969.3930263816275,52.87627828033186 +2042-02-01,Bekaa,427.0451390437018,22.882441413058572 +2042-03-01,Bekaa,935.1930042839385,52.5932555821427 +2042-04-01,Bekaa,760.836779408346,33.55460753393664 +2042-05-01,Bekaa,726.5847160184721,45.92158242491385 +2042-06-01,Bekaa,465.59876107668805,25.961506738426277 +2042-07-01,Bekaa,915.014597093899,49.64672259810713 +2042-08-01,Bekaa,763.4583869500993,39.48516459020328 +2042-09-01,Bekaa,625.6726430728669,38.47422169665113 +2042-10-01,Bekaa,535.0427876287392,32.77310879990627 +2042-11-01,Bekaa,529.076868313572,30.65397727067708 +2042-12-01,Bekaa,836.5290822231942,40.29235773677091 +2043-01-01,Bekaa,740.2769556591288,37.43085124289453 +2043-02-01,Bekaa,869.3951344895613,45.12887064334207 +2043-03-01,Bekaa,811.7287714949529,41.49531132569126 +2043-04-01,Bekaa,565.1418680688535,31.769977657882826 +2043-05-01,Bekaa,592.4319264402952,31.5054153386609 +2043-06-01,Bekaa,892.0052094840546,44.859139890821965 +2043-07-01,Bekaa,662.4568886195054,36.684243127475696 +2043-08-01,Bekaa,995.9786608487267,55.51774958645396 +2043-09-01,Bekaa,644.1690954620062,30.32454801073001 +2043-10-01,Bekaa,854.6918225709917,45.82168893193983 +2043-11-01,Bekaa,574.3102756570552,31.32821106698654 +2043-12-01,Bekaa,782.201376726583,44.4675682730548 +2044-01-01,Bekaa,358.27358699509466,23.498211924993463 +2044-02-01,Bekaa,684.4402722726667,34.89495604680329 +2044-03-01,Bekaa,533.5510195965888,29.173990928847942 +2044-04-01,Bekaa,683.534709871947,28.329798714750414 +2044-05-01,Bekaa,805.6568482396917,35.83507603775925 +2044-06-01,Bekaa,817.3398987516907,39.1310013184176 +2044-07-01,Bekaa,852.8885478800827,46.27918245366109 +2044-08-01,Bekaa,880.2062188780741,40.29567038041142 +2044-09-01,Bekaa,833.6023084965719,37.20473893502722 +2044-10-01,Bekaa,875.739011923603,47.67347150238153 +2044-11-01,Bekaa,600.2755043608341,31.868070030162023 +2044-12-01,Bekaa,712.2252718786434,48.080855748266785 +2045-01-01,Bekaa,690.8516167405642,35.79746231378222 +2045-02-01,Bekaa,872.2451088830965,46.577134211325614 +2045-03-01,Bekaa,937.6119911406132,48.280781622931244 +2045-04-01,Bekaa,429.5291500676687,26.205132322418024 +2045-05-01,Bekaa,877.6984653869447,46.64366781664776 +2045-06-01,Bekaa,616.0554891313261,31.302952528612522 +2045-07-01,Bekaa,716.0307090258475,38.747544347784114 +2045-08-01,Bekaa,506.93335338477436,30.538774990566864 +2045-09-01,Bekaa,925.9787311898081,46.521770804898324 +2045-10-01,Bekaa,762.2226258442192,37.194892611556945 +2045-11-01,Bekaa,565.5919044753216,34.64546758593127 +2045-12-01,Bekaa,783.1549730204057,38.22562271458 +2046-01-01,Bekaa,676.3740366716405,35.70848192782373 +2046-02-01,Bekaa,904.2524798284127,48.076429039815864 +2046-03-01,Bekaa,656.2834079902548,37.35820062389187 +2046-04-01,Bekaa,545.7170989376331,32.2973351590412 +2046-05-01,Bekaa,741.5065135308138,36.09801010841212 +2046-06-01,Bekaa,832.7866106478637,40.0519443237312 +2046-07-01,Bekaa,836.4141302550137,46.67430016631552 +2046-08-01,Bekaa,757.1965788534167,39.86500897667039 +2046-09-01,Bekaa,924.0389304507303,48.97163182886658 +2046-10-01,Bekaa,771.7858720337288,40.50984860144357 +2046-11-01,Bekaa,594.7810308444896,37.529757739458276 +2046-12-01,Bekaa,544.3693227930364,35.20661198366752 +2047-01-01,Bekaa,708.8258446438861,34.38612098127269 +2047-02-01,Bekaa,756.6119377545041,38.18328234162615 +2047-03-01,Bekaa,900.0212153568643,43.85217010108307 +2047-04-01,Bekaa,673.8454776428126,35.10482576254742 +2047-05-01,Bekaa,646.0596545986684,33.59009212344179 +2047-06-01,Bekaa,774.8254018934185,38.88670493147635 +2047-07-01,Bekaa,643.4491360242373,35.6147409094791 +2047-08-01,Bekaa,957.7611388277679,50.25740741895788 +2047-09-01,Bekaa,435.1609181744715,24.973018013208133 +2047-10-01,Bekaa,847.4174600076947,42.60246125107423 +2047-11-01,Bekaa,670.1796407129358,33.00916938147187 +2047-12-01,Bekaa,849.0366688202324,47.057408437618435 +2048-01-01,Bekaa,751.6422688302351,39.609477379094685 +2048-02-01,Bekaa,868.8078034926349,46.04227376440163 +2048-03-01,Bekaa,770.203937522239,39.88696078156204 +2048-04-01,Bekaa,730.6018865664751,40.80024126684009 +2048-05-01,Bekaa,590.4622897916158,37.26962065114773 +2048-06-01,Bekaa,704.9410280573366,37.60946804236565 +2048-07-01,Bekaa,795.7565962561705,38.70600332371943 +2048-08-01,Bekaa,465.5639296422035,28.881166233374586 +2048-09-01,Bekaa,878.059460679569,43.990748534197984 +2048-10-01,Bekaa,672.5036577009608,32.91468072812185 +2048-11-01,Bekaa,877.0469062129546,52.48446434608073 +2048-12-01,Bekaa,576.8770971127319,28.827354243460462 +2049-01-01,Bekaa,857.496013802415,43.59480044432412 +2049-02-01,Bekaa,832.4408215133988,43.50957891894613 +2049-03-01,Bekaa,634.5503495400083,34.05981228482641 +2049-04-01,Bekaa,602.8227279881248,32.382996991201026 +2049-05-01,Bekaa,833.8981972780873,41.15157357287411 +2049-06-01,Bekaa,592.5911244860085,33.74712354782626 +2049-07-01,Bekaa,791.8746891511461,39.062784795563545 +2049-08-01,Bekaa,715.3631751514083,36.17199346807658 +2049-09-01,Bekaa,774.1880058559092,40.045366317715335 +2049-10-01,Bekaa,694.4942876099959,35.06921114956308 +2049-11-01,Bekaa,940.9311606019801,48.96697757932705 +2049-12-01,Bekaa,802.9694205404177,41.550331942946116 +2050-01-01,Bekaa,674.4654716870493,35.54677113572761 +2050-02-01,Bekaa,590.7458544485578,32.772613824161596 +2050-03-01,Bekaa,690.5238883499061,36.62439243347649 +2050-04-01,Bekaa,601.0057567756967,34.087755512537996 +2050-05-01,Bekaa,901.4143629444893,47.23150987626644 +2050-06-01,Bekaa,735.3094276740953,38.435369794542616 +2050-07-01,Bekaa,833.6996388879683,48.59775226950775 +2050-08-01,Bekaa,700.5204825990229,36.24734502935171 +2050-09-01,Bekaa,833.4392128435325,40.017174863361646 +2050-10-01,Bekaa,368.4685749466969,21.38146514457595 +2050-11-01,Bekaa,945.5598163331555,51.84714835262669 +2050-12-01,Bekaa,572.7191460860284,28.09877654300379 +2051-01-01,Bekaa,915.0322186706833,46.558153738441575 +2051-02-01,Bekaa,861.9181512411857,46.36066284893304 +2051-03-01,Bekaa,700.5041236274288,40.32467448151011 +2051-04-01,Bekaa,626.7848884536246,45.40816698682055 +2051-05-01,Bekaa,401.35688749152496,34.23014895273578 +2051-06-01,Bekaa,510.7884713014166,22.07633721312925 +2051-07-01,Bekaa,759.9090939688601,37.60508270502174 +2051-08-01,Bekaa,671.5834381008601,33.510658120427706 +2051-09-01,Bekaa,618.2040588937996,25.907898648968178 +2051-10-01,Bekaa,910.9325396182986,42.878956179591775 +2051-11-01,Bekaa,932.1971166471254,52.9542391764282 +2051-12-01,Bekaa,798.5471733098911,43.26154435697789 +2052-01-01,Bekaa,919.1700503581612,45.54829092629049 +2052-02-01,Bekaa,527.6621191980202,32.00041472397305 +2052-03-01,Bekaa,590.2028518729809,41.05538870413635 +2052-04-01,Bekaa,424.5469648832541,22.241953142219963 +2052-05-01,Bekaa,710.0090703946806,33.790350444501925 +2052-06-01,Bekaa,589.2496672982419,28.437551240518317 +2052-07-01,Bekaa,728.7842840514517,29.874248629011262 +2052-08-01,Bekaa,898.363908805111,43.33557499790753 +2052-09-01,Bekaa,874.6006910008751,49.0068593264924 +2052-10-01,Bekaa,794.8631109485739,39.069222435323454 +2052-11-01,Bekaa,943.6018999543932,46.99721052182818 +2052-12-01,Bekaa,543.5784378811084,30.882059138746353 +2053-01-01,Bekaa,704.7324237215742,33.37804008180245 +2053-02-01,Bekaa,600.3100338679906,27.847594821823108 +2053-03-01,Bekaa,433.1213716253727,24.670168211980588 +2053-04-01,Bekaa,839.1352091273989,39.77213231895453 +2053-05-01,Bekaa,775.0226976783473,37.11921008142566 +2053-06-01,Bekaa,949.8820432742717,54.71697339409275 +2053-07-01,Bekaa,767.7699640909161,29.24899674587157 +2053-08-01,Bekaa,859.4264273463833,42.724059799837335 +2053-09-01,Bekaa,560.7041950966561,26.466715921934657 +2053-10-01,Bekaa,833.9040162411375,41.82986764782949 +2053-11-01,Bekaa,845.1196283533956,41.054611518340224 +2053-12-01,Bekaa,705.6418288337421,37.32988505621712 +2054-01-01,Bekaa,530.7657948909567,32.414883771935145 +2054-02-01,Bekaa,613.8630026665869,33.2824284984048 +2054-03-01,Bekaa,869.5189246940729,43.584419251541675 +2054-04-01,Bekaa,620.7792245229068,30.145526365425933 +2054-05-01,Bekaa,888.4704639104409,41.59600269001491 +2054-06-01,Bekaa,890.8845650339886,50.20001091812857 +2054-07-01,Bekaa,974.4938964539151,59.52556080342676 +2054-08-01,Bekaa,597.0122189031006,29.90971105542337 +2054-09-01,Bekaa,630.523517317507,42.695614208683395 +2054-10-01,Bekaa,386.93705788608077,23.842525918229793 +2054-11-01,Bekaa,761.6682323739922,35.27692661266321 +2054-12-01,Bekaa,825.8546885704836,45.51354806163259 +2055-01-01,Bekaa,827.818808183441,40.63457953402376 +2055-02-01,Bekaa,633.4323400920783,31.181996709547732 +2055-03-01,Bekaa,443.94198044868926,23.471492100017986 +2055-04-01,Bekaa,706.7685118303696,34.821893194269975 +2055-05-01,Bekaa,732.874905283994,36.98270315874072 +2055-06-01,Bekaa,823.7974655487229,43.83935687822378 +2055-07-01,Bekaa,881.3286748921086,48.06529430186988 +2055-08-01,Bekaa,843.8587798313462,50.785075203418884 +2055-09-01,Bekaa,741.0259550162709,39.038647709697614 +2055-10-01,Bekaa,477.68919389807957,42.90612813166538 +2055-11-01,Bekaa,453.8619400523524,43.978428809543836 +2055-12-01,Bekaa,418.4251687229824,20.099426251972094 +2056-01-01,Bekaa,770.642281106729,32.330990554600334 +2056-02-01,Bekaa,607.9221158717112,29.0238817771913 +2056-03-01,Bekaa,693.5994299054536,27.994016034797014 +2056-04-01,Bekaa,842.0301981407564,37.24666116429228 +2056-05-01,Bekaa,837.4163094007179,42.94898859853602 +2056-06-01,Bekaa,905.381248868398,47.50033637459029 +2056-07-01,Bekaa,814.93397711394,37.42128417439662 +2056-08-01,Bekaa,949.4726847132772,50.392011270720005 +2056-09-01,Bekaa,563.4004610322612,33.0273283423737 +2056-10-01,Bekaa,627.932596571462,46.06549773083408 +2056-11-01,Bekaa,646.366302972239,41.121470182360376 +2056-12-01,Bekaa,492.5954009811169,23.928295610775777 +2057-01-01,Bekaa,715.4422252154866,34.55313614030433 +2057-02-01,Bekaa,742.4513264841834,34.97172752357286 +2057-03-01,Bekaa,905.1849961051479,42.91275341894641 +2057-04-01,Bekaa,832.7816151229808,41.88609393734601 +2057-05-01,Bekaa,779.8270202185857,38.114708254204295 +2057-06-01,Bekaa,657.7296398917434,36.16454075865519 +2057-07-01,Bekaa,552.5592937026964,31.372680574412275 +2057-08-01,Bekaa,605.8366214728669,31.8798179470156 +2057-09-01,Bekaa,826.6272931550936,42.59293112106474 +2057-10-01,Bekaa,595.8536139535136,30.30631812793044 +2057-11-01,Bekaa,620.6561479648071,27.962319856663086 +2057-12-01,Bekaa,966.9789252580797,53.86810919998125 +2058-01-01,Bekaa,937.8432674739202,53.954214294001986 +2058-02-01,Bekaa,827.6834898445848,48.38777912599606 +2058-03-01,Bekaa,574.880753619487,32.24236773320965 +2058-04-01,Bekaa,324.3618231519025,27.665990437409484 +2058-05-01,Bekaa,840.533187552273,39.580960866042986 +2058-06-01,Bekaa,788.0834700363005,38.5320511165646 +2058-07-01,Bekaa,485.0966515171808,30.282859232711697 +2058-08-01,Bekaa,734.2002015666184,31.721573462671778 +2058-09-01,Bekaa,601.4072652261611,28.906692206404685 +2058-10-01,Bekaa,939.5383423896221,52.18817629793415 +2058-11-01,Bekaa,864.8049058728685,45.631367064261696 +2058-12-01,Bekaa,772.9998394761095,43.76448108467935 +2059-01-01,Bekaa,475.8927262960217,23.689894606584584 +2059-02-01,Bekaa,743.0004499501387,37.314350205531866 +2059-03-01,Bekaa,985.9318368713936,55.5614227000696 +2059-04-01,Bekaa,696.9946850534958,31.918576764133313 +2059-05-01,Bekaa,895.2870497484955,45.05921647451913 +2059-06-01,Bekaa,598.8677819176447,31.11193473981276 +2059-07-01,Bekaa,543.4045826360139,32.08494180576896 +2059-08-01,Bekaa,744.1875733082594,36.09410644895706 +2059-09-01,Bekaa,755.8834694556712,39.62040821658465 +2059-10-01,Bekaa,443.5762915585103,26.341386585842255 +2059-11-01,Bekaa,729.0309861264295,27.51334139528984 +2059-12-01,Bekaa,930.6028305631233,52.53624028651376 +2060-01-01,Bekaa,902.298296369343,48.59024341358399 +2060-02-01,Bekaa,780.610329499373,47.277948943894145 +2060-03-01,Bekaa,753.9790216619173,38.28061821366274 +2060-04-01,Bekaa,464.4646396886142,36.87918526128402 +2060-05-01,Bekaa,834.5426199879591,46.31400806053303 +2060-06-01,Bekaa,435.4560109657583,23.78801505211498 +2060-07-01,Bekaa,794.657965053115,35.263652397468576 +2060-08-01,Bekaa,911.5022490384409,50.80087305614161 +2060-09-01,Bekaa,665.2347847254471,34.70585167170311 +2060-10-01,Bekaa,578.9899845546145,33.711380388902256 +2060-11-01,Bekaa,526.0637982669975,30.483271217883612 +2060-12-01,Bekaa,731.6161977011801,34.51703393927299 +2061-01-01,Bekaa,651.6193444178775,31.703461783035113 +2061-02-01,Bekaa,831.9345168321527,41.68831345008835 +2061-03-01,Bekaa,1002.7193256877393,52.546609658979904 +2061-04-01,Bekaa,712.2444854358846,37.000376009135096 +2061-05-01,Bekaa,706.0955981599028,42.62243758560578 +2061-06-01,Bekaa,373.0915215065778,41.16379873499793 +2061-07-01,Bekaa,553.1565334055716,30.149731442946404 +2061-08-01,Bekaa,522.4612013883832,24.190591384348934 +2061-09-01,Bekaa,777.2829805522092,38.41700693318477 +2061-10-01,Bekaa,568.061066164335,25.273041281302625 +2061-11-01,Bekaa,719.7345339031843,27.721155853538903 +2061-12-01,Bekaa,866.63875756773,39.209098148151284 +2062-01-01,Bekaa,837.0732101642668,42.7211076758437 +2062-02-01,Bekaa,855.3923488680081,44.97388856629452 +2062-03-01,Bekaa,786.5930469531569,31.542551817367695 +2062-04-01,Bekaa,808.5543075675517,28.520692390229122 +2062-05-01,Bekaa,998.4334947136259,58.210630403204064 +2062-06-01,Bekaa,655.2813935321842,32.6653045602546 +2062-07-01,Bekaa,558.3695283083316,40.76260242469093 +2062-08-01,Bekaa,687.754995167929,41.070081357285886 +2062-09-01,Bekaa,608.9050814601741,30.444379422207632 +2062-10-01,Bekaa,589.8798719757552,26.391126476794177 +2062-11-01,Bekaa,757.7648609807354,38.81625880146193 +2062-12-01,Bekaa,770.148327997995,39.354315166403055 +2063-01-01,Bekaa,902.8087731373043,45.55011716515743 +2063-02-01,Bekaa,638.244732326358,34.089442862688514 +2063-03-01,Bekaa,576.3601975270641,29.50838472163717 +2063-04-01,Bekaa,495.2839265979476,28.54876268634083 +2063-05-01,Bekaa,937.5253654453941,48.19023504506423 +2063-06-01,Bekaa,825.8276797985902,37.29848290845093 +2063-07-01,Bekaa,939.5461925001521,57.31166579849378 +2063-08-01,Bekaa,614.748143800753,29.9086679125107 +2063-09-01,Bekaa,594.1259583343183,33.93036652358572 +2063-10-01,Bekaa,355.9558006892035,22.727521392671544 +2063-11-01,Bekaa,774.3927125843453,39.86544189575454 +2063-12-01,Bekaa,659.2526162304415,30.712221879200268 +2064-01-01,Bekaa,752.6090401347376,36.069664989946645 +2064-02-01,Bekaa,923.3915982593333,49.06643963075646 +2064-03-01,Bekaa,782.1204602026583,44.170780816544934 +2064-04-01,Bekaa,906.3604815371682,48.78396066711666 +2064-05-01,Bekaa,714.0799291112033,32.778680601497875 +2064-06-01,Bekaa,506.1942901815199,42.91903000689685 +2064-07-01,Bekaa,585.6495681820691,40.016442003751614 +2064-08-01,Bekaa,556.4926656931884,24.469373544068755 +2064-09-01,Bekaa,742.8857724613472,33.7222329167968 +2064-10-01,Bekaa,768.1199253120963,41.26245995999862 +2064-11-01,Bekaa,629.7590373228161,29.873981194355185 +2064-12-01,Bekaa,907.2267933852378,43.2275373070091 +2065-01-01,Bekaa,562.8996459387984,26.080460491419302 +2065-02-01,Bekaa,539.6517906356507,24.93243591230255 +2065-03-01,Bekaa,976.9395627072163,52.42247565237241 +2065-04-01,Bekaa,456.944343592629,20.51850670082715 +2065-05-01,Bekaa,994.4195081265374,48.50889304179124 +2065-06-01,Bekaa,794.9668641576767,30.98574104309159 +2065-07-01,Bekaa,763.8695570750624,42.91045732250691 +2065-08-01,Bekaa,775.2209266931993,36.21871474575572 +2065-09-01,Bekaa,778.5548082498251,38.4795201534285 +2065-10-01,Bekaa,776.5752079993191,38.38889083334744 +2065-11-01,Bekaa,775.0532746822998,39.503410725937755 +2065-12-01,Bekaa,697.6325751539056,38.646290040897114 +2066-01-01,Bekaa,460.73781343846576,28.41925930105822 +2066-02-01,Bekaa,897.4518686908074,45.615001836357 +2066-03-01,Bekaa,722.2339432208832,37.47756808795507 +2066-04-01,Bekaa,600.2656505507632,38.699836073694684 +2066-05-01,Bekaa,751.3569749531413,38.68508579650323 +2066-06-01,Bekaa,744.5221636836465,40.47300763064405 +2066-07-01,Bekaa,489.7179512007267,27.545494133140505 +2066-08-01,Bekaa,857.5938382567118,38.601798370378326 +2066-09-01,Bekaa,663.081164542213,34.569117207929565 +2066-10-01,Bekaa,975.0185363583572,51.19613556767061 +2066-11-01,Bekaa,941.723088535587,55.58214075944839 +2066-12-01,Bekaa,784.7548584839466,42.14088381007447 +2067-01-01,Bekaa,962.6125071353085,48.57261636691524 +2067-02-01,Bekaa,819.933728979261,43.12674251491791 +2067-03-01,Bekaa,519.0808779191113,30.062776763692263 +2067-04-01,Bekaa,840.6019720871967,44.58323302303989 +2067-05-01,Bekaa,741.7908192821067,38.438253951717584 +2067-06-01,Bekaa,469.9147573356703,28.353882609193032 +2067-07-01,Bekaa,724.7373599376639,36.822797919958035 +2067-08-01,Bekaa,803.3017052889358,41.17767283124432 +2067-09-01,Bekaa,735.0993411496316,39.81151465775659 +2067-10-01,Bekaa,824.2567244626669,40.97764648389139 +2067-11-01,Bekaa,876.2436148326364,48.73009253070016 +2067-12-01,Bekaa,769.952075234745,39.126050083431274 +2068-01-01,Bekaa,593.4628984739225,30.761980978166157 +2068-02-01,Bekaa,497.0327445780472,26.45574519087721 +2068-03-01,Bekaa,829.3252059670336,42.42156017547991 +2068-04-01,Bekaa,739.1737680982134,40.23566749983996 +2068-05-01,Bekaa,677.2387016433751,38.07386610634032 +2068-06-01,Bekaa,592.9388349761975,32.01423858387521 +2068-07-01,Bekaa,952.6851365881381,46.99106691243601 +2068-08-01,Bekaa,986.3523941914659,59.511500537198785 +2068-09-01,Bekaa,713.8279570319537,34.4312923199782 +2068-10-01,Bekaa,465.6068033227904,28.19255006721822 +2068-11-01,Bekaa,572.0412917865567,32.21277557137549 +2068-12-01,Bekaa,775.7567104608413,37.991516917821 +2069-01-01,Bekaa,521.7885073014278,25.411251807072986 +2069-02-01,Bekaa,573.4330944251748,29.541543663912094 +2069-03-01,Bekaa,817.8952803477188,40.538468542262805 +2069-04-01,Bekaa,809.3714327090837,40.013147090585534 +2069-05-01,Bekaa,749.6219358383777,35.64961823023481 +2069-06-01,Bekaa,872.9280684992066,39.56243843041522 +2069-07-01,Bekaa,753.0976683433217,36.6600011363027 +2069-08-01,Bekaa,988.2660095968175,50.259759661899764 +2069-09-01,Bekaa,483.5437020291864,22.808625015361713 +2069-10-01,Bekaa,692.9384835363543,37.35714566066291 +2069-11-01,Bekaa,624.8979524448994,33.77733923134476 +2069-12-01,Bekaa,876.5087070266881,44.64703909037793 +2070-01-01,Bekaa,696.6535071727689,38.27305616631567 +2070-02-01,Bekaa,782.6255571745921,43.86533793343108 +2070-03-01,Bekaa,589.9960316532481,31.719494564544117 +2070-04-01,Bekaa,564.572213544589,29.504924324043024 +2070-05-01,Bekaa,830.3234875054118,38.688665874799824 +2070-06-01,Bekaa,630.458410806398,34.09490975897303 +2070-07-01,Bekaa,956.874350817267,45.4210481764985 +2070-08-01,Bekaa,784.9876719018328,35.079908535806304 +2070-09-01,Bekaa,956.0485521270376,56.7449968804311 +2070-10-01,Bekaa,852.104030889983,42.072482594778364 +2070-11-01,Bekaa,552.935934320503,37.28341496025916 +2070-12-01,Bekaa,539.6882963944092,47.39795174995798 +2071-01-01,Bekaa,585.6589553771782,29.461019236720176 +2071-02-01,Bekaa,649.623275404022,33.685297383466946 +2071-03-01,Bekaa,999.0538181331295,55.720991059838 +2071-04-01,Bekaa,623.7208750324219,28.243545866776042 +2071-05-01,Bekaa,831.3625017851414,42.19877380910894 +2071-06-01,Bekaa,820.9953054647796,37.61428777633324 +2071-07-01,Bekaa,748.7880674541069,42.188431032354444 +2071-08-01,Bekaa,676.0931893606511,37.684940761882764 +2071-09-01,Bekaa,602.6954793433099,36.061166182533526 +2071-10-01,Bekaa,834.7473816122732,40.38649769079035 +2071-11-01,Bekaa,739.6099158475901,40.78271469285983 +2071-12-01,Bekaa,504.5362425354157,32.00849686523692 +2072-01-01,Bekaa,643.3878173286987,33.892005164603276 +2072-02-01,Bekaa,888.8673611071675,46.28928882408978 +2072-03-01,Bekaa,370.39904338654316,21.45347007880123 +2072-04-01,Bekaa,827.8141969297031,29.406274919358616 +2072-05-01,Bekaa,780.7515765930352,37.91883379294853 +2072-06-01,Bekaa,816.8212424979323,47.06917556248598 +2072-07-01,Bekaa,833.35368506587,43.497005057491734 +2072-08-01,Bekaa,842.478477879134,45.232842145436436 +2072-09-01,Bekaa,812.951412486031,48.75844060424471 +2072-10-01,Bekaa,445.9993681580836,32.525026956672875 +2072-11-01,Bekaa,710.1225401741598,46.65454841779351 +2072-12-01,Bekaa,442.0892994677313,22.614337431567996 +2073-01-01,Bekaa,866.9407397916849,43.033435893196966 +2073-02-01,Bekaa,746.4667403640956,38.66918008339435 +2073-03-01,Bekaa,716.902565357578,36.67126737526741 +2073-04-01,Bekaa,423.03927704653233,24.974562042023628 +2073-05-01,Bekaa,768.8725477971753,37.46175841491605 +2073-06-01,Bekaa,734.2965438322138,37.39510512889145 +2073-07-01,Bekaa,692.5685951115211,33.76704816847404 +2073-08-01,Bekaa,787.3373252648055,36.780098504896856 +2073-09-01,Bekaa,898.2133843080952,46.35126274240273 +2073-10-01,Bekaa,935.3571429586566,57.57649111975317 +2073-11-01,Bekaa,789.460368444087,39.23993735335413 +2073-12-01,Bekaa,476.45656185723595,35.782311623376415 +2074-01-01,Bekaa,486.8849396334417,35.8197524752277 +2074-02-01,Bekaa,734.1472819403882,30.461645949229496 +2074-03-01,Bekaa,956.6361576033532,52.28403019781578 +2074-04-01,Bekaa,505.28856309316683,27.81550414063298 +2074-05-01,Bekaa,686.1856318124628,38.261853461551006 +2074-06-01,Bekaa,828.9165061565731,43.50391107728466 +2074-07-01,Bekaa,623.4542457537909,31.729289174130628 +2074-08-01,Bekaa,506.60718952663456,28.888929226098604 +2074-09-01,Bekaa,529.2244284331849,25.535418319550274 +2074-10-01,Bekaa,814.6162397730474,38.982422897720625 +2074-11-01,Bekaa,840.4938821037452,44.17615315029912 +2074-12-01,Bekaa,767.9451368370786,45.17044860589515 +2075-01-01,Bekaa,569.2031749026332,26.815656091459317 +2075-02-01,Bekaa,899.105112947601,43.07433418756332 +2075-03-01,Bekaa,630.4463886091528,30.53721470881647 +2075-04-01,Bekaa,1017.5346251970867,54.74674877082941 +2075-05-01,Bekaa,353.82545635817036,18.92613131416503 +2075-06-01,Bekaa,744.6594033782269,34.78563289650824 +2075-07-01,Bekaa,493.59214543491566,29.460768054998994 +2075-08-01,Bekaa,791.9700981868183,37.09274439325044 +2075-09-01,Bekaa,988.6272244729533,52.51266171059257 +2075-10-01,Bekaa,866.1403029970139,48.80992990200768 +2075-11-01,Bekaa,820.1485365492183,47.103853415404274 +2075-12-01,Bekaa,570.4697051480383,34.60117981586852 +2076-01-01,Bekaa,585.9663722930385,45.08377318161338 +2076-02-01,Bekaa,387.64098772752266,22.466908536630303 +2076-03-01,Bekaa,902.4045747888262,41.529138115836616 +2076-04-01,Bekaa,736.5164233399913,37.154775935605315 +2076-05-01,Bekaa,482.2157707444261,29.971352527340642 +2076-06-01,Bekaa,570.9115346207707,28.33426531676882 +2076-07-01,Bekaa,554.0737886282693,31.599779878689876 +2076-08-01,Bekaa,894.5978868981904,46.89502979765188 +2076-09-01,Bekaa,808.2361859555143,45.296512279137126 +2076-10-01,Bekaa,722.2528822987354,41.4667268458209 +2076-11-01,Bekaa,878.9666699566236,42.43345141366851 +2076-12-01,Bekaa,709.4272838814153,36.781907013289356 +2077-01-01,Bekaa,693.7705952525343,32.39887167597964 +2077-02-01,Bekaa,499.43273746099203,23.161600345360167 +2077-03-01,Bekaa,721.5790902942232,33.203263407586334 +2077-04-01,Bekaa,657.340208534402,33.788252338360294 +2077-05-01,Bekaa,883.8867130073322,44.91834785512286 +2077-06-01,Bekaa,959.4017570326603,52.55460905802974 +2077-07-01,Bekaa,796.8108166940594,34.40249655195414 +2077-08-01,Bekaa,757.965505414212,40.330141377794625 +2077-09-01,Bekaa,532.3601633187754,29.477072703782696 +2077-10-01,Bekaa,749.6878657876541,36.98172502756766 +2077-11-01,Bekaa,933.6568529345608,47.395847733658215 +2077-12-01,Bekaa,780.2967093493178,41.27853263507512 +2078-01-01,Bekaa,326.78783668093973,22.54460199807056 +2078-02-01,Bekaa,788.2537570493358,39.2560499219981 +2078-03-01,Bekaa,457.35611757224814,27.13505729057313 +2078-04-01,Bekaa,719.9644927354233,32.235136654718715 +2078-05-01,Bekaa,710.4830962997615,31.539162341671293 +2078-06-01,Bekaa,789.6533274546672,38.08763677481916 +2078-07-01,Bekaa,848.261319441731,45.136793210336016 +2078-08-01,Bekaa,906.0925896533472,45.07341267438444 +2078-09-01,Bekaa,819.073126302486,40.3574788142963 +2078-10-01,Bekaa,905.0570338139211,48.8711384548408 +2078-11-01,Bekaa,512.625012894292,31.843189741909313 +2078-12-01,Bekaa,723.5304740635235,49.56893014151794 +2079-01-01,Bekaa,731.2178732116298,37.404189041960976 +2079-02-01,Bekaa,702.7775266160927,37.90008233869263 +2079-03-01,Bekaa,769.1857836760857,38.928557716383196 +2079-04-01,Bekaa,533.8089478785832,29.560673368289308 +2079-05-01,Bekaa,527.0771761717795,30.169953049040984 +2079-06-01,Bekaa,846.2130444480568,40.1115305381534 +2079-07-01,Bekaa,882.615324476739,46.05120992351752 +2079-08-01,Bekaa,910.5354228380608,54.281223344188504 +2079-09-01,Bekaa,787.7387239235144,38.007088706994665 +2079-10-01,Bekaa,677.17754763547,38.70142738377534 +2079-11-01,Bekaa,359.12288112103624,26.729010217968273 +2079-12-01,Bekaa,691.6744510533906,32.82189124523863 +2080-01-01,Bekaa,597.2127260968825,34.01324762633812 +2080-02-01,Bekaa,527.9770842970822,26.54329088594589 +2080-03-01,Bekaa,724.0177298751619,27.318097843416098 +2080-04-01,Bekaa,823.6067023732561,36.99872116485437 +2080-05-01,Bekaa,833.2980206457481,39.46096840275591 +2080-06-01,Bekaa,905.5726158985209,47.970386027291525 +2080-07-01,Bekaa,860.3772788463144,41.869539584380675 +2080-08-01,Bekaa,871.4309481189675,43.689008365162245 +2080-09-01,Bekaa,702.4043993344674,37.361708302751175 +2080-10-01,Bekaa,584.0008253872575,35.1747414558683 +2080-11-01,Bekaa,879.1620992817061,47.57754963568124 +2080-12-01,Bekaa,555.1031961293783,31.646201215843135 +2081-01-01,Bekaa,798.5777503138437,39.32281550102746 +2081-02-01,Bekaa,833.1133509127208,41.342962224097505 +2081-03-01,Bekaa,698.495648145183,35.657165502186515 +2081-04-01,Bekaa,905.1438241967737,44.1381744740566 +2081-05-01,Bekaa,593.175847928738,31.78966734974432 +2081-06-01,Bekaa,654.5150470776471,35.40313508477975 +2081-07-01,Bekaa,494.17170866512885,29.66943948617915 +2081-08-01,Bekaa,826.4006829714025,40.241223048496664 +2081-09-01,Bekaa,636.8002021970822,30.906231685561153 +2081-10-01,Bekaa,881.6107848082881,44.330866315151056 +2081-11-01,Bekaa,838.7357318244142,41.51474392567343 +2081-12-01,Bekaa,931.1779197792932,55.401765687929014 +2082-01-01,Bekaa,730.3268582185358,34.66173529622657 +2082-02-01,Bekaa,586.883709859553,35.54693809769522 +2082-03-01,Bekaa,457.16678168960493,25.749080879284243 +2082-04-01,Bekaa,917.7440201397148,45.034219460643044 +2082-05-01,Bekaa,957.3593010020364,53.17132519526791 +2082-06-01,Bekaa,413.2786252803382,25.832938635670182 +2082-07-01,Bekaa,800.8255718234377,43.5423862068114 +2082-08-01,Bekaa,793.5492330085387,40.749121353961215 +2082-09-01,Bekaa,694.4845710396196,42.2179256765792 +2082-10-01,Bekaa,799.2599413876642,41.77127138489665 +2082-11-01,Bekaa,378.52453908768916,25.116651109076926 +2082-12-01,Bekaa,808.9824405187649,41.570597875226795 +2083-01-01,Bekaa,844.4742724136005,42.00964874845525 +2083-02-01,Bekaa,665.313285830747,34.034900968243434 +2083-03-01,Bekaa,901.9467431677058,43.324738722947885 +2083-04-01,Bekaa,637.9789813817724,33.41387928079632 +2083-05-01,Bekaa,471.78352280883314,27.21109886281174 +2083-06-01,Bekaa,864.7388112359586,41.44747746074124 +2083-07-01,Bekaa,526.2694382253569,28.284402790035383 +2083-08-01,Bekaa,843.6733415560291,37.38102860972859 +2083-09-01,Bekaa,774.982239416385,37.865722156774645 +2083-10-01,Bekaa,753.8469970757309,41.90674107482707 +2083-11-01,Bekaa,850.3475823828647,35.57578705714259 +2083-12-01,Bekaa,968.5536135136956,53.961767476111845 +2084-01-01,Bekaa,775.7440844089399,39.41314192550357 +2084-02-01,Bekaa,570.5593226685994,32.645369596830065 +2084-03-01,Bekaa,631.6205016442273,36.65102212854025 +2084-04-01,Bekaa,628.7165646027831,29.119992768952244 +2084-05-01,Bekaa,918.1402036900297,48.1358172639402 +2084-06-01,Bekaa,602.3477963010598,33.52400621259915 +2084-07-01,Bekaa,890.8926896239078,51.257089983703466 +2084-08-01,Bekaa,728.9527046046409,38.6476715403636 +2084-09-01,Bekaa,936.2340497111478,48.545137086618084 +2084-10-01,Bekaa,551.1797877407128,29.854208760279654 +2084-11-01,Bekaa,563.3290963910794,33.480767495607196 +2084-12-01,Bekaa,734.2695899561983,36.57634728037277 +2085-01-01,Bekaa,565.9848766167833,27.273957827306972 +2085-02-01,Bekaa,891.4354451680344,44.07692159503739 +2085-03-01,Bekaa,780.3269020821256,37.98151840777847 +2085-04-01,Bekaa,458.5302306073227,25.817111232156726 +2085-05-01,Bekaa,944.6605669583865,44.243059095584435 +2085-06-01,Bekaa,723.0073163477829,33.58513793337639 +2085-07-01,Bekaa,854.5078115884984,44.405254520648484 +2085-08-01,Bekaa,681.1300508393865,34.60438903174148 +2085-09-01,Bekaa,814.102139877149,42.1414009489122 +2085-10-01,Bekaa,480.43269773655925,26.57536974681974 +2085-11-01,Bekaa,663.303547743311,35.98246060651086 +2085-12-01,Bekaa,852.0243769712487,42.09530467045694 +2086-01-01,Bekaa,641.3998729047622,32.76871016470654 +2086-02-01,Bekaa,826.6891059135327,37.43621471141151 +2086-03-01,Bekaa,966.0185767712836,55.55795343723824 +2086-04-01,Bekaa,984.1742904467187,60.16201982394972 +2086-05-01,Bekaa,548.2265816489141,32.846075612369724 +2086-06-01,Bekaa,515.5229113891746,50.71931878389286 +2086-07-01,Bekaa,276.9178960478123,20.619221705783385 +2086-08-01,Bekaa,762.6844099685435,31.581945976486043 +2086-09-01,Bekaa,587.8397490199393,29.83980865995832 +2086-10-01,Bekaa,586.3380448339012,24.107649702475534 +2086-11-01,Bekaa,860.9988648710081,35.73743727011772 +2086-12-01,Bekaa,870.6553242610767,41.816448633760295 +2087-01-01,Bekaa,845.9390042259187,42.87384389279598 +2087-02-01,Bekaa,766.592447511416,40.16664867301766 +2087-03-01,Bekaa,784.1948656341806,39.62158286051606 +2087-04-01,Bekaa,716.2142259454405,37.94009263179763 +2087-05-01,Bekaa,696.3795767423862,36.85298848530441 +2087-06-01,Bekaa,709.9229936582399,37.60147455347396 +2087-07-01,Bekaa,520.8572536298827,31.137769518605964 +2087-08-01,Bekaa,744.8923814837467,37.273061840727905 +2087-09-01,Bekaa,499.19646560280233,28.29934071474795 +2087-10-01,Bekaa,597.0769960389425,24.08149577514248 +2087-11-01,Bekaa,851.1642134614963,38.012803829921296 +2087-12-01,Bekaa,850.3809590765868,42.175724192341775 +2088-01-01,Bekaa,834.1122363057549,48.286910456928055 +2088-02-01,Bekaa,812.7588377465959,38.97583602646755 +2088-03-01,Bekaa,918.6134610528209,49.08640414497171 +2088-04-01,Bekaa,522.0270573385474,31.74277763255803 +2088-05-01,Bekaa,783.6224114201467,49.071826739906015 +2088-06-01,Bekaa,541.9218449757668,39.28425024158901 +2088-07-01,Bekaa,608.9530055615216,31.383404556367157 +2088-08-01,Bekaa,621.971453197666,27.664202614570492 +2088-09-01,Bekaa,698.0424826736785,36.07053673827309 +2088-10-01,Bekaa,574.911852134279,28.984721069319697 +2088-11-01,Bekaa,608.440332958447,23.708920883194253 +2088-12-01,Bekaa,813.5238667000649,33.76633747195705 +2089-01-01,Bekaa,884.4039968641448,44.95141518994653 +2089-02-01,Bekaa,827.6943592283955,44.52718994842587 +2089-03-01,Bekaa,557.6614538281133,31.688101282015143 +2089-04-01,Bekaa,644.9659091287402,34.36662041447185 +2089-05-01,Bekaa,606.9872939681072,32.19957375561815 +2089-06-01,Bekaa,968.5189742147835,52.90603001643595 +2089-07-01,Bekaa,807.604663776933,39.80469729033584 +2089-08-01,Bekaa,782.6916518115021,42.7121183253045 +2089-09-01,Bekaa,630.4275593230564,34.84346379396125 +2089-10-01,Bekaa,367.06845558258726,23.981877104522226 +2089-11-01,Bekaa,697.3014981146998,36.1670850817368 +2089-12-01,Bekaa,542.9950593873858,30.761568744635518 +2090-01-01,Bekaa,651.8618195102624,27.215936327253775 +2090-02-01,Bekaa,864.9092629366274,41.077362672121055 +2090-03-01,Bekaa,918.5510993356035,49.09275165481991 +2090-04-01,Bekaa,772.8631487403075,47.70531247939002 +2090-05-01,Bekaa,882.197621742314,46.47248008596546 +2090-06-01,Bekaa,534.7282342487608,32.33490898945075 +2090-07-01,Bekaa,713.0621595361948,48.459702795546846 +2090-08-01,Bekaa,475.55964555727496,33.950750659029296 +2090-09-01,Bekaa,409.1408210407992,19.238313255104206 +2090-10-01,Bekaa,792.7687783133987,36.30738780349064 +2090-11-01,Bekaa,572.2704546285672,24.66079913378055 +2090-12-01,Bekaa,783.886570384275,33.64479359215679 +2091-01-01,Bekaa,971.2012965974193,49.097642310685245 +2091-02-01,Bekaa,678.0627436655138,35.686447380718036 +2091-03-01,Bekaa,470.4538348559823,25.615763964458296 +2091-04-01,Bekaa,819.688069925962,39.0305108994709 +2091-05-01,Bekaa,639.0406127631688,34.2720859573962 +2091-06-01,Bekaa,834.7009396996272,41.37537648644609 +2091-07-01,Bekaa,723.9455966916904,34.05640655619511 +2091-08-01,Bekaa,730.9243998487391,36.09593416536354 +2091-09-01,Bekaa,857.8320863665035,39.8962737132597 +2091-10-01,Bekaa,987.5697102823945,55.23584390815428 +2091-11-01,Bekaa,670.1697045590481,33.67676016002588 +2091-12-01,Bekaa,718.2671121928524,37.678215001913266 +2092-01-01,Bekaa,585.2463030635139,32.263591111109875 +2092-02-01,Bekaa,561.5341658736008,29.31311309651224 +2092-03-01,Bekaa,721.4809364646593,38.20114283954164 +2092-04-01,Bekaa,670.5562813307423,36.73213018384902 +2092-05-01,Bekaa,775.9317185193703,37.42338671315686 +2092-06-01,Bekaa,942.4012173144479,50.36186059894111 +2092-07-01,Bekaa,834.2424493279728,49.64676692429322 +2092-08-01,Bekaa,851.3168240018697,44.52242340588158 +2092-09-01,Bekaa,457.8397502559496,35.34491559442868 +2092-10-01,Bekaa,451.14876618637504,37.72757959782295 +2092-11-01,Bekaa,709.4578608853678,29.247321216037335 +2092-12-01,Bekaa,943.6951131549522,48.68656717103816 +2093-01-01,Bekaa,998.6099300649786,51.54087804737247 +2093-02-01,Bekaa,618.3859838329355,32.38910366210479 +2093-03-01,Bekaa,544.3021851344477,28.782723684225267 +2093-04-01,Bekaa,945.9973913753557,49.02850232562096 +2093-05-01,Bekaa,839.0708711585796,43.74629848314495 +2093-06-01,Bekaa,901.2652108444194,42.73358106460962 +2093-07-01,Bekaa,517.7668901873205,31.787310674183832 +2093-08-01,Bekaa,617.7652212464093,41.00767895250738 +2093-09-01,Bekaa,416.4064002636431,23.756580398478985 +2093-10-01,Bekaa,714.1080906965313,36.01228178697315 +2093-11-01,Bekaa,527.8417934061649,26.044189850880812 +2093-12-01,Bekaa,768.2733043947593,31.43789178184939 +2094-01-01,Bekaa,813.7481712568872,37.55619387684277 +2094-02-01,Bekaa,814.7128016221542,41.953280615143235 +2094-03-01,Bekaa,883.4074170979795,45.692238738080526 +2094-04-01,Bekaa,844.4486909345306,39.83420523241642 +2094-05-01,Bekaa,874.0403138799643,46.00280572830647 +2094-06-01,Bekaa,667.7383112339833,34.89043477582204 +2094-07-01,Bekaa,634.6245138709596,36.185987245025416 +2094-08-01,Bekaa,697.2501155730489,32.45815351725736 +2094-09-01,Bekaa,745.6941906753634,33.82721505593403 +2094-10-01,Bekaa,859.1157715737311,44.97991101744471 +2094-11-01,Bekaa,647.6724405934999,35.914829189313195 +2094-12-01,Bekaa,631.8935537405646,34.50153602707614 +2095-01-01,Bekaa,651.1892901109404,33.65761420271376 +2095-02-01,Bekaa,964.3727434579972,52.713577536746385 +2095-03-01,Bekaa,652.4430570647494,34.359904997279116 +2095-04-01,Bekaa,766.165577165393,40.80881099615096 +2095-05-01,Bekaa,766.0983297150486,39.05926086376933 +2095-06-01,Bekaa,544.6077355904615,31.81362417578681 +2095-07-01,Bekaa,453.28064760198754,27.493413819562996 +2095-08-01,Bekaa,603.0743157962297,33.82027062011315 +2095-09-01,Bekaa,528.73733730918,25.29138345710696 +2095-10-01,Bekaa,815.7581838237123,35.11566499258615 +2095-11-01,Bekaa,829.1402068587392,39.05418699300148 +2095-12-01,Bekaa,921.2464869371632,51.30685942544612 +2096-01-01,Bekaa,828.0705057833015,49.6988826988196 +2096-02-01,Bekaa,760.6861451195746,44.95926092488458 +2096-03-01,Bekaa,430.3377389001977,32.69559116567084 +2096-04-01,Bekaa,780.8119071627727,43.659132515737106 +2096-05-01,Bekaa,297.1742828323122,19.301987821423506 +2096-06-01,Bekaa,765.992545358466,35.304754592290955 +2096-07-01,Bekaa,625.5779476836065,24.974216297772116 +2096-08-01,Bekaa,880.4288765585613,44.93284251797452 +2096-09-01,Bekaa,911.2425915362949,47.044704552684834 +2096-10-01,Bekaa,788.0515206354021,49.95723935198883 +2096-11-01,Bekaa,816.7517443165968,45.482611338820355 +2096-12-01,Bekaa,508.81405871136576,32.147285108966 +2097-01-01,Bekaa,642.7628277595795,31.604986728015998 +2097-02-01,Bekaa,541.0626970397544,27.43390148211761 +2097-03-01,Bekaa,943.4758041230125,47.23057902635854 +2097-04-01,Bekaa,609.3131225201007,27.71311508338205 +2097-05-01,Bekaa,1021.0052523853923,55.66016371220526 +2097-06-01,Bekaa,717.4343417261384,30.68719974715206 +2097-07-01,Bekaa,897.7300809996607,45.63634341742015 +2097-08-01,Bekaa,479.7702691787584,26.83288863507185 +2097-09-01,Bekaa,509.9227633080033,29.04653245828365 +2097-10-01,Bekaa,687.6410313255494,35.8719421267309 +2097-11-01,Bekaa,434.0012153073279,26.089810361605373 +2097-12-01,Bekaa,735.9293119265762,27.743061854704933 +2098-01-01,Bekaa,811.8654073348771,36.451190816406125 +2098-02-01,Bekaa,832.7202964274423,39.48666724791177 +2098-03-01,Bekaa,967.8911849558948,52.09845714220748 +2098-04-01,Bekaa,819.743020699672,52.91016712713774 +2098-05-01,Bekaa,721.1265835732526,43.949770452696654 +2098-06-01,Bekaa,397.8247220241693,33.692906712079186 +2098-07-01,Bekaa,810.0595525377099,42.11756232603261 +2098-08-01,Bekaa,426.6512885681948,22.375117870473666 +2098-09-01,Bekaa,760.914621763112,34.219126507794556 +2098-10-01,Bekaa,762.9699234291487,36.461369586272085 +2098-11-01,Bekaa,770.7034351146341,37.10688444661338 +2098-12-01,Bekaa,888.4275353339762,46.13163240048142 +2099-01-01,Bekaa,708.8267229779314,36.66817045239921 +2099-02-01,Bekaa,974.8334274583073,52.19729271687348 +2099-03-01,Bekaa,649.5774373460322,34.44982805346179 +2099-04-01,Bekaa,789.7245823040932,42.175422774276356 +2099-05-01,Bekaa,513.1460571187362,29.322655046838033 +2099-06-01,Bekaa,471.56388440162664,27.07491699882479 +2099-07-01,Bekaa,515.3573454216329,32.001769627727896 +2099-08-01,Bekaa,505.38402702471694,24.84181545745871 +2099-09-01,Bekaa,830.1902003140352,36.11350654306943 +2099-10-01,Bekaa,791.1066958202739,36.08322732535087 +2099-11-01,Bekaa,886.2324687629788,47.92638489989882 +2099-12-01,Bekaa,861.0414091763281,45.70275881957939 +2100-01-01,Bekaa,892.1500248097759,53.84404008093399 +2100-02-01,Bekaa,548.279995338045,34.43225863083497 +2100-03-01,Bekaa,563.2376398586109,43.15070229603947 +2100-04-01,Bekaa,714.6608921863013,42.97553111876714 +2100-05-01,Bekaa,564.9256881019503,30.421202737040332 +2100-06-01,Bekaa,473.6601932884039,21.29493895178735 +2100-07-01,Bekaa,724.5086637106151,35.27016539174484 +2100-08-01,Bekaa,561.951154961614,25.485047519216334 +2100-09-01,Bekaa,776.945810070564,32.54309135504437 +2100-10-01,Bekaa,812.3998736014512,35.58550187959413 +2100-11-01,Bekaa,838.151914163669,40.89494268588335 +2100-12-01,Bekaa,884.2890448959643,46.99091915848237 +2101-01-01,Bekaa,772.2596234594205,38.41057372604348 +2101-02-01,Bekaa,824.3696452833676,41.00642008882241 +2101-03-01,Bekaa,546.6887285273237,28.577914541393152 +2101-04-01,Bekaa,771.3260641610066,36.857237889010975 +2101-05-01,Bekaa,704.6437668788752,36.16107149582383 +2101-06-01,Bekaa,800.0117953304535,40.05648037010781 +2101-07-01,Bekaa,674.0595166704803,34.5276943870278 +2101-08-01,Bekaa,746.7611469569096,36.046067206011486 +2101-09-01,Bekaa,991.345887926714,52.78011409714762 +2101-10-01,Bekaa,879.5437354243954,46.28944839835971 +2101-11-01,Bekaa,693.4088314176203,36.987805102759765 +2101-12-01,Bekaa,359.2094244724387,31.494901167320187 +2102-01-01,Bekaa,614.1300162163627,29.945028682960906 +2102-02-01,Bekaa,828.6361529084842,40.0715896894066 +2102-03-01,Bekaa,589.2543059999188,33.94216024416492 +2102-04-01,Bekaa,600.4465050202814,26.81625597251108 +2102-05-01,Bekaa,876.8833713928926,41.662805207532685 +2102-06-01,Bekaa,971.3686192330517,57.22318777597765 +2102-07-01,Bekaa,865.4214414768015,49.49944145712307 +2102-08-01,Bekaa,790.1178014770051,40.847034943956515 +2102-09-01,Bekaa,440.6250891662526,39.91852989129585 +2102-10-01,Bekaa,416.0793031755801,41.81529910800101 +2102-11-01,Bekaa,399.3045502028913,20.503392948909756 +2102-12-01,Bekaa,787.6923369067462,34.41988571475752 +2103-01-01,Bekaa,910.1445092920178,45.59824949309379 +2103-02-01,Bekaa,822.6408094027989,43.111018539171994 +2103-03-01,Bekaa,639.181859856831,35.21839240639089 +2103-04-01,Bekaa,580.925256383771,32.77253255948709 +2103-05-01,Bekaa,636.2889568868311,32.44738520911639 +2103-06-01,Bekaa,640.414052730652,35.02146889206432 +2103-07-01,Bekaa,666.7902594238217,33.71194924162375 +2103-08-01,Bekaa,850.7005628773256,41.20760778225092 +2103-09-01,Bekaa,967.7512553633005,55.20006676582092 +2103-10-01,Bekaa,823.891008124549,44.48041991194203 +2103-11-01,Bekaa,717.8989804361099,38.73627810881939 +2103-12-01,Bekaa,423.1263419087742,32.08374204366544 +2104-01-01,Bekaa,630.8495439359523,31.044940142155266 +2104-02-01,Bekaa,582.700753760497,32.854985175773955 +2104-03-01,Bekaa,685.7073789247888,35.74836515252861 +2104-04-01,Bekaa,577.8741160459199,24.411097907215304 +2104-05-01,Bekaa,908.0945325261309,43.09513203407708 +2104-06-01,Bekaa,930.416843329028,49.610525834545456 +2104-07-01,Bekaa,810.0536786787819,52.76122523171483 +2104-08-01,Bekaa,818.1910593374786,43.1140829561704 +2104-09-01,Bekaa,439.0007201411986,35.0456000677721 +2104-10-01,Bekaa,627.7987055254292,40.648400438846835 +2104-11-01,Bekaa,384.0381163695193,21.24827973076874 +2104-12-01,Bekaa,801.9099849941346,35.93846391173676 +2105-01-01,Bekaa,568.0704259115053,27.988439800586804 +2105-02-01,Bekaa,717.901560542368,36.29873680950528 +2105-03-01,Bekaa,544.0723909898422,29.14627228714589 +2105-04-01,Bekaa,319.2676778246491,23.025625336908313 +2105-05-01,Bekaa,709.326275466204,30.015854540636177 +2105-06-01,Bekaa,811.2143971196655,36.54726043706005 +2105-07-01,Bekaa,855.6127009216265,43.68862420488279 +2105-08-01,Bekaa,768.9417714991217,48.333618436751365 +2105-09-01,Bekaa,878.9917024769151,46.31719363577342 +2105-10-01,Bekaa,650.7760339426197,36.703353623838936 +2105-11-01,Bekaa,574.3987952600595,38.656563373293395 +2105-12-01,Bekaa,739.8932334730819,47.464154386423985 +2106-01-01,Bekaa,510.90078826746134,31.768931559891087 +2106-02-01,Bekaa,536.3505172304573,22.801640685973354 +2106-03-01,Bekaa,763.1388929411161,36.65406438244561 +2106-04-01,Bekaa,746.4228785577077,37.091906628333334 +2106-05-01,Bekaa,551.7543279981044,23.69059348278528 +2106-06-01,Bekaa,826.9627069686483,32.20803562454286 +2106-07-01,Bekaa,853.5989554351089,43.12848601157081 +2106-08-01,Bekaa,854.3145232026512,46.0572116891142 +2106-09-01,Bekaa,844.8829173281832,39.36582372185174 +2106-10-01,Bekaa,797.3812946564914,28.759561774453335 +2106-11-01,Bekaa,849.9257624576023,34.12155570697169 +2106-12-01,Bekaa,886.7582614808554,44.7916872559082 +2107-01-01,Bekaa,579.0224829142911,28.44757043611435 +2107-02-01,Bekaa,752.216699295871,38.649682471672584 +2107-03-01,Bekaa,638.0785076082822,33.04413387706022 +2107-04-01,Bekaa,887.409985342479,42.295257140833044 +2107-05-01,Bekaa,833.5121145692935,40.356991226249306 +2107-06-01,Bekaa,985.8141401093214,51.287689827501424 +2107-07-01,Bekaa,695.2875879405486,36.053292374344274 +2107-08-01,Bekaa,447.84881028224953,32.3093239148392 +2107-09-01,Bekaa,705.1115346538833,35.76721412439392 +2107-10-01,Bekaa,554.9733399303664,29.447198331897095 +2107-11-01,Bekaa,837.3026749336052,42.49913100113864 +2107-12-01,Bekaa,440.22885072006,23.127444063898206 +2108-01-01,Bekaa,721.8699286549781,26.251216780557 +2108-02-01,Bekaa,848.4982500504545,40.75769403835116 +2108-03-01,Bekaa,806.6546357151693,40.720826471839985 +2108-04-01,Bekaa,850.2385591694901,45.7158616401878 +2108-05-01,Bekaa,801.5754495146252,38.81027328880015 +2108-06-01,Bekaa,921.9478366723471,51.21560067352257 +2108-07-01,Bekaa,590.9385938756266,33.05929638778231 +2108-08-01,Bekaa,652.4706147954212,42.778167297658726 +2108-09-01,Bekaa,671.2862867141546,40.81817268665331 +2108-10-01,Bekaa,520.3627241144316,25.136113259849814 +2108-11-01,Bekaa,584.1311207532922,27.147012062961792 +2108-12-01,Bekaa,703.3499259342487,35.90921897169365 +2109-01-01,Bekaa,456.0301076432119,22.419975970797463 +2109-02-01,Bekaa,721.5731615394174,34.58661718619818 +2109-03-01,Bekaa,614.5195024695819,31.968100934312925 +2109-04-01,Bekaa,677.050957741189,32.58579520272416 +2109-05-01,Bekaa,984.1238411349908,53.29461995941875 +2109-06-01,Bekaa,857.3764505804965,36.27106544906839 +2109-07-01,Bekaa,769.221026829654,37.09812115962325 +2109-08-01,Bekaa,846.8694344592961,41.25515204945181 +2109-09-01,Bekaa,622.9047380166908,31.11571428594676 +2109-10-01,Bekaa,682.6458907139663,33.54255081131997 +2109-11-01,Bekaa,930.0550794941139,45.984445822027695 +2109-12-01,Bekaa,745.3380262199883,40.00536932246615 +2110-01-01,Bekaa,503.21791802927606,31.213917473691186 +2110-02-01,Bekaa,414.3615562623335,26.108588411572928 +2110-03-01,Bekaa,562.4267728471519,32.391229841497605 +2110-04-01,Bekaa,552.9583318386585,25.163734383942476 +2110-05-01,Bekaa,800.2476829174984,35.975790993043745 +2110-06-01,Bekaa,792.8843890321133,35.4351858724024 +2110-07-01,Bekaa,917.7517604584892,49.18971370935378 +2110-08-01,Bekaa,821.1310629706585,46.58110288252027 +2110-09-01,Bekaa,874.0872498555108,47.54711232123228 +2110-10-01,Bekaa,620.5718827923349,33.6195971104433 +2110-11-01,Bekaa,654.8073676271033,37.684716175873234 +2110-12-01,Bekaa,744.6742801611194,36.781578999512284 +2111-01-01,Bekaa,848.3958692382976,42.38789295960448 +2111-02-01,Bekaa,550.7895329452039,28.441073694772992 +2111-03-01,Bekaa,620.8040923555649,29.604203160569917 +2111-04-01,Bekaa,741.5126069732532,36.11295394328283 +2111-05-01,Bekaa,983.2618111653923,53.74762767110764 +2111-06-01,Bekaa,933.951479110886,50.46448458497831 +2111-07-01,Bekaa,806.2233736989198,39.9394370757353 +2111-08-01,Bekaa,499.47404660906074,33.829664816485305 +2111-09-01,Bekaa,661.7482926284478,39.836712617009624 +2111-10-01,Bekaa,490.43516584460406,25.980555178128988 +2111-11-01,Bekaa,764.9996985119933,37.76833604839382 +2111-12-01,Bekaa,597.9654583737174,30.91079432764942 +2112-01-01,Bekaa,843.3326577382026,40.100330788467815 +2112-02-01,Bekaa,905.6875678667014,48.702028144746606 +2112-03-01,Bekaa,759.0416293073561,38.53477422193011 +2112-04-01,Bekaa,723.9821573463266,32.17006876861663 +2112-05-01,Bekaa,553.6036877784536,26.477469454680264 +2112-06-01,Bekaa,766.2039493839977,35.326091740735485 +2112-07-01,Bekaa,767.5182664910557,38.284805560708776 +2112-08-01,Bekaa,669.4941009905676,37.421765852285475 +2112-09-01,Bekaa,888.8975538399752,43.50271427026021 +2112-10-01,Bekaa,1004.0250241419777,58.33216394022756 +2112-11-01,Bekaa,799.6519528512637,38.833275624302146 +2112-12-01,Bekaa,498.0214193378046,32.86084657511468 +2113-01-01,Bekaa,848.3730874489972,40.48960926487456 +2113-02-01,Bekaa,511.20589955645255,24.52418582824899 +2113-03-01,Bekaa,763.7486763520759,33.88647325657916 +2113-04-01,Bekaa,775.4294761330838,37.65917542744778 +2113-05-01,Bekaa,783.7952236435623,38.17837691036545 +2113-06-01,Bekaa,946.8499243580894,45.48730991454597 +2113-07-01,Bekaa,847.3974779081638,43.69160292458808 +2113-08-01,Bekaa,929.7888344866278,46.6101128937771 +2113-09-01,Bekaa,526.719474631825,35.49018728164329 +2113-10-01,Bekaa,565.7521729906525,48.72148438536135 +2113-11-01,Bekaa,615.770634421255,33.47546608375076 +2113-12-01,Bekaa,664.6592563422545,29.556836198113388 +2114-01-01,Bekaa,507.827771922294,28.227807115634768 +2114-02-01,Bekaa,659.5673891939311,34.027486674849996 +2114-03-01,Bekaa,548.2863083639957,24.087290685204074 +2114-04-01,Bekaa,834.8820960964734,36.75351018094011 +2114-05-01,Bekaa,831.8630972950929,38.242691251303995 +2114-06-01,Bekaa,876.5688180129142,48.11747213305678 +2114-07-01,Bekaa,794.8407134304184,37.65228122797113 +2114-08-01,Bekaa,926.2182419047898,45.54512603660361 +2114-09-01,Bekaa,717.7170006010962,36.600032239140575 +2114-10-01,Bekaa,593.4429438223303,35.41265634955203 +2114-11-01,Bekaa,703.0891705145459,38.64051729392856 +2114-12-01,Bekaa,612.1626577466131,27.628595389283827 +2017-01-01,Kesrouan,789.5888642673247,121.7145710230069 +2017-02-01,Kesrouan,594.2434765270409,97.94459097559235 +2017-03-01,Kesrouan,626.8328001641511,96.63788578367466 +2017-04-01,Kesrouan,1007.1489723145082,166.52728236295397 +2017-05-01,Kesrouan,825.2830157254268,167.3793095695574 +2017-06-01,Kesrouan,908.5511373185271,149.0053367766081 +2017-07-01,Kesrouan,953.4588989481208,135.70600494202685 +2017-08-01,Kesrouan,687.3067959638172,139.50315832712275 +2017-09-01,Kesrouan,802.6468520157956,131.92777775158032 +2017-10-01,Kesrouan,795.8595507144141,88.0700567630943 +2017-11-01,Kesrouan,771.4050632139098,99.55774035729618 +2017-12-01,Kesrouan,794.1108456850745,131.45702533834924 +2018-01-01,Kesrouan,684.0328135584318,136.0653336634382 +2018-02-01,Kesrouan,817.3716776352001,132.7133921097759 +2018-03-01,Kesrouan,876.8039965560253,125.48971109191018 +2018-04-01,Kesrouan,826.2847093317187,127.13086158297816 +2018-05-01,Kesrouan,602.7321787043236,126.3341610962307 +2018-06-01,Kesrouan,795.2015161514053,120.4507951598764 +2018-07-01,Kesrouan,744.3207604331908,97.67598389232501 +2018-08-01,Kesrouan,854.4469414302976,93.53005913018451 +2018-09-01,Kesrouan,638.7955418957355,106.29964090794262 +2018-10-01,Kesrouan,756.8993008764999,144.38179457649773 +2018-11-01,Kesrouan,757.1789726050871,161.4827362547987 +2018-12-01,Kesrouan,719.0306366150273,123.46655223403384 +2019-01-01,Kesrouan,860.0961273257391,131.980943486356 +2019-02-01,Kesrouan,833.873295125048,129.84310570453755 +2019-03-01,Kesrouan,813.5062525256641,125.60858055410554 +2019-04-01,Kesrouan,587.1632344004603,90.74592481189498 +2019-05-01,Kesrouan,830.8430135815729,110.32889387163983 +2019-06-01,Kesrouan,869.5112729009421,142.98452668734717 +2019-07-01,Kesrouan,758.453157845248,162.97068604686552 +2019-08-01,Kesrouan,909.202484538416,144.1402043915679 +2019-09-01,Kesrouan,795.240865886185,159.75926048487318 +2019-10-01,Kesrouan,925.1382824072258,173.79263035198574 +2019-11-01,Kesrouan,613.4162300382768,85.82610147064335 +2019-12-01,Kesrouan,595.7943065931136,82.70648873728112 +2020-01-01,Kesrouan,522.5292536250931,107.23592208022913 +2020-02-01,Kesrouan,656.361643624118,136.66057960187416 +2020-03-01,Kesrouan,790.025582969604,134.80079366131184 +2020-04-01,Kesrouan,809.4191595899712,129.8305615987816 +2020-05-01,Kesrouan,913.5787522692351,171.2464336342258 +2020-06-01,Kesrouan,809.6557507502486,130.1133144231402 +2020-07-01,Kesrouan,897.6780101569914,139.20181858582893 +2020-08-01,Kesrouan,607.6504028002053,89.60110705108337 +2020-09-01,Kesrouan,709.7967532349193,86.72835400516641 +2020-10-01,Kesrouan,685.6543182823203,111.2340929261309 +2020-11-01,Kesrouan,665.9212006141704,137.41370276996594 +2020-12-01,Kesrouan,841.8101859053018,176.02028503137706 +2021-01-01,Kesrouan,895.6651902709542,137.42393611939843 +2021-02-01,Kesrouan,944.5163725487887,146.81810199354155 +2021-03-01,Kesrouan,994.6052060554232,146.08836147872296 +2021-04-01,Kesrouan,857.4499808496944,113.28403944064597 +2021-05-01,Kesrouan,868.0469559369166,136.81390867622665 +2021-06-01,Kesrouan,730.4703577215417,111.39051523513862 +2021-07-01,Kesrouan,828.5241245598959,104.74213612791702 +2021-08-01,Kesrouan,720.5424689117476,105.46583994466835 +2021-09-01,Kesrouan,615.2312101575898,121.99760199396002 +2021-10-01,Kesrouan,741.4611117289041,131.86673221547937 +2021-11-01,Kesrouan,796.831538438636,122.01186999729063 +2021-12-01,Kesrouan,836.5657602513345,130.41357825672787 +2022-01-01,Kesrouan,827.6773661347318,163.68445300011473 +2022-02-01,Kesrouan,774.0610647219208,129.0961537229763 +2022-03-01,Kesrouan,968.0805283042207,154.86104393786837 +2022-04-01,Kesrouan,657.4365460393025,89.89803312553713 +2022-05-01,Kesrouan,541.9842482125362,85.12173342704317 +2022-06-01,Kesrouan,678.3604331413268,122.9983000835972 +2022-07-01,Kesrouan,757.7830156715376,138.19440218614017 +2022-08-01,Kesrouan,747.9636026064587,132.90178599437024 +2022-09-01,Kesrouan,790.6262471679518,138.2215749688328 +2022-10-01,Kesrouan,816.390609202952,142.00260807767216 +2022-11-01,Kesrouan,774.8831855671691,111.91385569406452 +2022-12-01,Kesrouan,782.3150059591485,126.24268448875877 +2023-01-01,Kesrouan,876.3702343633358,134.45576350879094 +2023-02-01,Kesrouan,912.6002883811497,142.24889313259254 +2023-03-01,Kesrouan,869.6339680489227,130.65916947344002 +2023-04-01,Kesrouan,907.8075751566677,118.83580573147054 +2023-05-01,Kesrouan,659.6491766984569,107.46481838815981 +2023-06-01,Kesrouan,508.10050132319145,97.40309151756892 +2023-07-01,Kesrouan,768.7851733587469,103.01129711462742 +2023-08-01,Kesrouan,801.7351207727393,123.20218459391552 +2023-09-01,Kesrouan,790.565216362846,121.7897317346393 +2023-10-01,Kesrouan,822.4657436585953,134.37949632389257 +2023-11-01,Kesrouan,864.8088036120373,148.41132568678944 +2023-12-01,Kesrouan,834.3471813764575,133.07727509960256 +2024-01-01,Kesrouan,836.2506104076684,117.34109483756842 +2024-02-01,Kesrouan,857.8169400042692,145.41261196879557 +2024-03-01,Kesrouan,634.5167333917548,120.17296644720707 +2024-04-01,Kesrouan,585.0041376828086,88.13613950345594 +2024-05-01,Kesrouan,775.3341236727141,102.231554400476 +2024-06-01,Kesrouan,669.7117274807623,118.90491446225576 +2024-07-01,Kesrouan,761.8637028364524,146.41056527115964 +2024-08-01,Kesrouan,867.6793632445725,170.82082043975794 +2024-09-01,Kesrouan,692.3487711039619,121.44333835814982 +2024-10-01,Kesrouan,743.2458580180062,117.17524610990782 +2024-11-01,Kesrouan,633.5843065815692,131.23934964743367 +2024-12-01,Kesrouan,601.9674986168219,152.9645181943853 +2025-01-01,Kesrouan,815.7506656629099,125.42148264924819 +2025-02-01,Kesrouan,821.7290800191123,127.92664815948658 +2025-03-01,Kesrouan,773.024596931405,122.12842564660656 +2025-04-01,Kesrouan,764.8038108374355,111.9841534251273 +2025-05-01,Kesrouan,849.631702418464,121.94680509007148 +2025-06-01,Kesrouan,908.2431675695794,149.0905780098738 +2025-07-01,Kesrouan,781.6775965701834,120.83433180467645 +2025-08-01,Kesrouan,712.0071665118815,121.35431922168856 +2025-09-01,Kesrouan,786.9725644595209,149.17252427578944 +2025-10-01,Kesrouan,739.7125474857355,88.91863311799244 +2025-11-01,Kesrouan,734.7840459993746,101.43559360027652 +2025-12-01,Kesrouan,953.6362895235147,148.00489543767353 +2026-01-01,Kesrouan,1003.2238538684903,145.9745597863481 +2026-02-01,Kesrouan,791.0390322211699,100.3996289677026 +2026-03-01,Kesrouan,627.4698223911461,97.74997088645978 +2026-04-01,Kesrouan,597.438020335469,150.14524265195433 +2026-05-01,Kesrouan,531.9518960638991,146.35389672322697 +2026-06-01,Kesrouan,789.0842162375632,109.87998666402227 +2026-07-01,Kesrouan,669.3543417858119,114.28950575761729 +2026-08-01,Kesrouan,597.21529661303,126.37300686622403 +2026-09-01,Kesrouan,711.8152045677945,148.39416618149852 +2026-10-01,Kesrouan,774.1015407460683,155.41432336265194 +2026-11-01,Kesrouan,736.0875147630925,154.25846837818418 +2026-12-01,Kesrouan,809.2771767365706,129.00060272637847 +2027-01-01,Kesrouan,819.6649435737647,125.98734591501548 +2027-02-01,Kesrouan,857.5811935610175,133.8010858958133 +2027-03-01,Kesrouan,869.7399800356463,138.97156211048562 +2027-04-01,Kesrouan,1004.9793166340355,148.15094990878546 +2027-05-01,Kesrouan,911.3762230178463,124.52762036089963 +2027-06-01,Kesrouan,824.3317939614196,111.95705705633424 +2027-07-01,Kesrouan,792.3350393178276,100.02231547088478 +2027-08-01,Kesrouan,917.9508668080115,118.62310305714004 +2027-09-01,Kesrouan,1033.627190629298,157.32259850733527 +2027-10-01,Kesrouan,993.5810570548653,163.9574645805542 +2027-11-01,Kesrouan,757.0608530076622,120.36233231660414 +2027-12-01,Kesrouan,653.7165530443554,98.47073123979908 +2028-01-01,Kesrouan,494.61054640571075,106.26232952905296 +2028-02-01,Kesrouan,566.30048369317,121.96808788938407 +2028-03-01,Kesrouan,673.769290517099,125.91252753765323 +2028-04-01,Kesrouan,727.3665154037465,132.50925696186692 +2028-05-01,Kesrouan,938.7635680315299,174.92826316206714 +2028-06-01,Kesrouan,800.5386494989415,144.67876955584723 +2028-07-01,Kesrouan,849.3082461907119,147.13057982483897 +2028-08-01,Kesrouan,509.15914293563156,112.72082926547228 +2028-09-01,Kesrouan,505.8204692846959,88.18847996811608 +2028-10-01,Kesrouan,852.2437786411393,103.20091056505915 +2028-11-01,Kesrouan,632.6515630024988,119.34527553934367 +2028-12-01,Kesrouan,685.7023967596989,147.06689342436835 +2029-01-01,Kesrouan,858.0526160544352,131.67220076647033 +2029-02-01,Kesrouan,899.1136067421436,140.3689950536593 +2029-03-01,Kesrouan,1033.5506029523026,157.95496937474593 +2029-04-01,Kesrouan,821.6316559888165,105.72043577530766 +2029-05-01,Kesrouan,467.9715502836988,86.24042069075249 +2029-06-01,Kesrouan,454.1603213241157,83.77587680953378 +2029-07-01,Kesrouan,836.2004905308111,112.4233713502774 +2029-08-01,Kesrouan,827.9458453627287,134.5380337696408 +2029-09-01,Kesrouan,775.71832913323,120.90673550281181 +2029-10-01,Kesrouan,859.0534649437014,131.72039654121693 +2029-11-01,Kesrouan,836.5906794035922,149.5815281450434 +2029-12-01,Kesrouan,791.6481435897746,114.34646773492437 +2030-01-01,Kesrouan,861.15786623394,124.78331960824897 +2030-02-01,Kesrouan,873.4644781880638,132.81776127038592 +2030-03-01,Kesrouan,830.3168252676564,132.98139093840254 +2030-04-01,Kesrouan,688.5447287649591,94.8440694909026 +2030-05-01,Kesrouan,628.8714895090999,103.32273877344646 +2030-06-01,Kesrouan,733.5514630727288,117.42226168170825 +2030-07-01,Kesrouan,734.5765975764834,118.98059173184936 +2030-08-01,Kesrouan,752.4466566479415,140.46357712201038 +2030-09-01,Kesrouan,749.4010998049187,149.23555046016764 +2030-10-01,Kesrouan,740.1298376964241,142.62310116853118 +2030-11-01,Kesrouan,793.6025372148684,130.31729368669403 +2030-12-01,Kesrouan,853.4811482975974,135.9494963047784 +2031-01-01,Kesrouan,762.3511749533583,118.00924269276501 +2031-02-01,Kesrouan,584.5330671548181,96.7483344341357 +2031-03-01,Kesrouan,506.65420498904723,88.4181312453747 +2031-04-01,Kesrouan,643.0326073000302,103.03235067224125 +2031-05-01,Kesrouan,862.1165496650074,168.80456328529218 +2031-06-01,Kesrouan,771.7245774288754,177.22048453005232 +2031-07-01,Kesrouan,841.3042708000016,172.43462086788625 +2031-08-01,Kesrouan,1013.8680627160657,153.078167058961 +2031-09-01,Kesrouan,735.8522610714392,158.50719734427116 +2031-10-01,Kesrouan,845.3613762812828,167.19963909573974 +2031-11-01,Kesrouan,689.5186874955742,89.79573019677191 +2031-12-01,Kesrouan,798.6558456417744,85.3327916742546 +2032-01-01,Kesrouan,834.4246841635642,130.19998918116218 +2032-02-01,Kesrouan,683.455027112863,143.68678876387477 +2032-03-01,Kesrouan,702.8658500391714,133.0467462184401 +2032-04-01,Kesrouan,778.0812842264137,126.43225209085074 +2032-05-01,Kesrouan,791.7079777124272,126.38687446072083 +2032-06-01,Kesrouan,806.9882047762197,146.32912639353728 +2032-07-01,Kesrouan,748.9959875980171,118.51675019169679 +2032-08-01,Kesrouan,710.5747376155755,114.23715306673321 +2032-09-01,Kesrouan,558.4052656195167,133.73055892305177 +2032-10-01,Kesrouan,977.8900863373333,112.3741210637165 +2032-11-01,Kesrouan,740.8306008623156,105.58131051661015 +2032-12-01,Kesrouan,739.410701935224,128.70511323323694 +2033-01-01,Kesrouan,751.1212252415559,116.5312389338683 +2033-02-01,Kesrouan,775.743881823257,120.02178918826692 +2033-03-01,Kesrouan,860.1637046877938,139.97391074035386 +2033-04-01,Kesrouan,761.851172867238,121.90528177703666 +2033-05-01,Kesrouan,879.8882695960586,132.98968031822957 +2033-06-01,Kesrouan,649.2031243864905,101.67843697315958 +2033-07-01,Kesrouan,816.8800523262512,108.36905768407209 +2033-08-01,Kesrouan,780.7474927318184,127.37396781967578 +2033-09-01,Kesrouan,848.6564062192248,158.64122121103236 +2033-10-01,Kesrouan,680.1462705232537,167.01707711996178 +2033-11-01,Kesrouan,909.0574043892545,123.33219520267046 +2033-12-01,Kesrouan,850.5304813337931,139.52491489261277 +2034-01-01,Kesrouan,803.3570478551405,166.41174454678054 +2034-02-01,Kesrouan,444.9322453735592,85.17746666884491 +2034-03-01,Kesrouan,611.8543482577846,82.80126948177113 +2034-04-01,Kesrouan,700.2929827651049,122.28090194183966 +2034-05-01,Kesrouan,735.3942132642613,131.9501823069388 +2034-06-01,Kesrouan,736.89316362634,137.60167484983455 +2034-07-01,Kesrouan,833.4940875736008,151.53173312470736 +2034-08-01,Kesrouan,859.0581108873428,140.2100785949691 +2034-09-01,Kesrouan,800.0846140976356,119.00492191747742 +2034-10-01,Kesrouan,777.7048220053,132.6381030227922 +2034-11-01,Kesrouan,690.5770475356724,161.67589225361522 +2034-12-01,Kesrouan,731.4431901627892,170.60478917596149 +2035-01-01,Kesrouan,811.0698774443312,124.74860630194522 +2035-02-01,Kesrouan,821.3543072320499,127.8549688651193 +2035-03-01,Kesrouan,803.312981783634,127.82506352137747 +2035-04-01,Kesrouan,856.7434454507941,130.97756785367733 +2035-05-01,Kesrouan,919.011057068332,145.54449013325637 +2035-06-01,Kesrouan,894.5868385945814,133.84658578818255 +2035-07-01,Kesrouan,882.3265452906994,125.91857034883246 +2035-08-01,Kesrouan,794.8296294808473,88.25561722029201 +2035-09-01,Kesrouan,839.9359700045625,94.85970683131379 +2035-10-01,Kesrouan,817.1087594609554,118.58709377109932 +2035-11-01,Kesrouan,602.7252801819471,120.18629303129481 +2035-12-01,Kesrouan,747.2496055404982,129.42179308433836 +2036-01-01,Kesrouan,813.0761507734194,123.04416676268445 +2036-02-01,Kesrouan,824.6408899997349,138.6571525358067 +2036-03-01,Kesrouan,765.0976315762032,144.81518976249941 +2036-04-01,Kesrouan,743.7327669902284,147.1835499400317 +2036-05-01,Kesrouan,707.5836650207092,154.27623308155984 +2036-06-01,Kesrouan,668.7385078775446,86.17882803113051 +2036-07-01,Kesrouan,631.7409580488102,95.88299286966847 +2036-08-01,Kesrouan,721.2297869983136,117.00855682935179 +2036-09-01,Kesrouan,685.7637795302321,129.52135122583044 +2036-10-01,Kesrouan,778.4614772810576,145.2145043492859 +2036-11-01,Kesrouan,916.7498903767432,170.92114272024588 +2036-12-01,Kesrouan,771.1516481062043,138.4989146325448 +2037-01-01,Kesrouan,728.019763236943,113.58737816955295 +2037-02-01,Kesrouan,663.3161285034997,104.33325146434642 +2037-03-01,Kesrouan,696.5549691402765,106.73354959534952 +2037-04-01,Kesrouan,911.5951455136696,152.11598768782693 +2037-05-01,Kesrouan,754.8017981086377,137.23789578291135 +2037-06-01,Kesrouan,823.9028888916279,126.35000628244876 +2037-07-01,Kesrouan,888.7670902530369,138.79488094841977 +2037-08-01,Kesrouan,815.0036542398623,141.55275028114374 +2037-09-01,Kesrouan,857.5956241435397,127.5074506760279 +2037-10-01,Kesrouan,937.8512032507042,147.5228093148559 +2037-11-01,Kesrouan,768.172894301296,124.0292886430301 +2037-12-01,Kesrouan,734.1302350214942,108.1442541046032 +2038-01-01,Kesrouan,792.71649944801,103.9119969187109 +2038-02-01,Kesrouan,669.8400188790383,106.14802044838487 +2038-03-01,Kesrouan,599.9520389900795,120.8614679086973 +2038-04-01,Kesrouan,652.1957808257799,127.06486136962809 +2038-05-01,Kesrouan,773.3136309403603,123.2480848951186 +2038-06-01,Kesrouan,807.5020039070928,134.45062238162683 +2038-07-01,Kesrouan,794.1434376836489,159.33424637537803 +2038-08-01,Kesrouan,746.0508112948798,127.15625850664443 +2038-09-01,Kesrouan,935.1298065662882,143.66951310945646 +2038-10-01,Kesrouan,659.0407692607072,85.50290735406804 +2038-11-01,Kesrouan,660.0659741575472,83.9096744911522 +2038-12-01,Kesrouan,618.4063958675127,108.40474297517858 +2039-01-01,Kesrouan,863.1858910264394,132.44819308643008 +2039-02-01,Kesrouan,1029.9226841131551,160.0388253213411 +2039-03-01,Kesrouan,933.2669943453956,134.15967493067666 +2039-04-01,Kesrouan,836.600604828644,109.9896986844913 +2039-05-01,Kesrouan,562.6447947818031,97.74162648862503 +2039-06-01,Kesrouan,564.4635409311891,85.87333443025521 +2039-07-01,Kesrouan,736.2645533730591,105.30172734080634 +2039-08-01,Kesrouan,773.8433389085505,139.3003864031824 +2039-09-01,Kesrouan,914.0618600148417,133.92171593425513 +2039-10-01,Kesrouan,980.392419739755,133.03079099620663 +2039-11-01,Kesrouan,651.729848993029,127.26530419790907 +2039-12-01,Kesrouan,711.0645327043021,156.70376206981928 +2040-01-01,Kesrouan,543.0357097302578,85.99601847431789 +2040-02-01,Kesrouan,648.13959045461,84.21734130333172 +2040-03-01,Kesrouan,717.5145807331786,110.34857809217308 +2040-04-01,Kesrouan,706.8139870241391,126.86376138181066 +2040-05-01,Kesrouan,820.4355366804461,164.5676142859653 +2040-06-01,Kesrouan,881.4195303843698,168.67889604258968 +2040-07-01,Kesrouan,872.9068945580261,121.03488466897286 +2040-08-01,Kesrouan,844.9249391513454,135.07825558726316 +2040-09-01,Kesrouan,495.8309161320268,88.87844551992238 +2040-10-01,Kesrouan,867.0012666522035,87.94814297113945 +2040-11-01,Kesrouan,682.887870023201,112.60616868086609 +2040-12-01,Kesrouan,665.9337657799275,145.28451170753027 +2041-01-01,Kesrouan,749.9971884527106,116.38492465549777 +2041-02-01,Kesrouan,607.4026543358804,98.71259345821144 +2041-03-01,Kesrouan,818.1321341375733,123.97856815304115 +2041-04-01,Kesrouan,870.0673078830994,151.42310312505646 +2041-05-01,Kesrouan,797.4904881117561,147.9971012199158 +2041-06-01,Kesrouan,755.170165124922,109.6800176019187 +2041-07-01,Kesrouan,812.9057995065727,97.6856670616805 +2041-08-01,Kesrouan,928.2757726198774,118.43331538301727 +2041-09-01,Kesrouan,775.6151328699256,139.9990906485453 +2041-10-01,Kesrouan,712.5176571677372,163.30603914314287 +2041-11-01,Kesrouan,834.7334986295376,130.02556681396808 +2041-12-01,Kesrouan,976.5167172397399,122.1707925690928 +2042-01-01,Kesrouan,695.2101092423,162.2999187231911 +2042-02-01,Kesrouan,788.1205348974272,174.9007052533206 +2042-03-01,Kesrouan,563.752711554075,83.55480528492068 +2042-04-01,Kesrouan,526.442722015465,81.18132843267213 +2042-05-01,Kesrouan,590.1723276252078,111.52439544376858 +2042-06-01,Kesrouan,780.677310825601,131.09879086397993 +2042-07-01,Kesrouan,784.1918264040503,138.03383518721895 +2042-08-01,Kesrouan,907.1177229190247,174.27662376573699 +2042-09-01,Kesrouan,824.5487454508499,130.64806500555224 +2042-10-01,Kesrouan,889.5576046029075,138.88676713439347 +2042-11-01,Kesrouan,548.4641077131109,86.61006528860788 +2042-12-01,Kesrouan,848.8373164488925,86.15763081538546 +2043-01-01,Kesrouan,855.0279659577982,131.2164621562298 +2043-02-01,Kesrouan,894.1501902853876,139.6048499446913 +2043-03-01,Kesrouan,754.4917165671258,115.75374890147665 +2043-04-01,Kesrouan,886.9305346530261,122.15551895884363 +2043-05-01,Kesrouan,969.4746633620288,155.6203780277185 +2043-06-01,Kesrouan,858.1003425663866,128.34219305854506 +2043-07-01,Kesrouan,798.1274751422083,92.91729912596354 +2043-08-01,Kesrouan,670.2933503494894,83.57394849504486 +2043-09-01,Kesrouan,553.1998729314447,91.15186906860953 +2043-10-01,Kesrouan,688.8058167189813,122.24854829675513 +2043-11-01,Kesrouan,823.0124163603847,126.77552778023716 +2043-12-01,Kesrouan,825.4799051854968,135.02667314848688 +2044-01-01,Kesrouan,821.3275578595698,163.36896751772963 +2044-02-01,Kesrouan,814.0751694424632,127.64991369385932 +2044-03-01,Kesrouan,885.5044411344129,156.3841930286403 +2044-04-01,Kesrouan,561.5563065011221,87.57565271966348 +2044-05-01,Kesrouan,560.0136068364216,83.10705039890887 +2044-06-01,Kesrouan,647.9400964503773,108.39353152783137 +2044-07-01,Kesrouan,714.6197354861552,128.3737581121859 +2044-08-01,Kesrouan,808.2105807054719,148.28587851611775 +2044-09-01,Kesrouan,867.2884704409366,169.56548678425366 +2044-10-01,Kesrouan,769.8311442158017,108.87944140218427 +2044-11-01,Kesrouan,683.0026107525232,105.72851425277184 +2044-12-01,Kesrouan,535.4330101232911,150.24992358127466 +2045-01-01,Kesrouan,785.218298376429,121.10901226468286 +2045-02-01,Kesrouan,815.0422296507019,126.6642355203247 +2045-03-01,Kesrouan,814.7400321347629,131.33146201855016 +2045-04-01,Kesrouan,818.1904196123455,125.94017714307928 +2045-05-01,Kesrouan,685.1374218556864,98.43673316759545 +2045-06-01,Kesrouan,801.9199730151934,103.23984803173198 +2045-07-01,Kesrouan,809.6885539280793,125.17828777242704 +2045-08-01,Kesrouan,790.6104791168057,149.35027523244946 +2045-09-01,Kesrouan,760.7804940371819,170.0752347387213 +2045-10-01,Kesrouan,802.0165523284635,137.09104660724373 +2045-11-01,Kesrouan,956.1705813867416,125.7935602656664 +2045-12-01,Kesrouan,706.5989361480166,151.06963687802133 +2046-01-01,Kesrouan,496.31141933347084,101.48366405622784 +2046-02-01,Kesrouan,682.0501219129776,84.5136377272529 +2046-03-01,Kesrouan,766.5923583531533,111.62501421018692 +2046-04-01,Kesrouan,691.784922489317,127.69125055697916 +2046-05-01,Kesrouan,870.986641579387,173.9331524567677 +2046-06-01,Kesrouan,846.9110800579879,154.32677629130174 +2046-07-01,Kesrouan,844.0797997671473,130.21379870109527 +2046-08-01,Kesrouan,650.661422741708,119.12127889065442 +2046-09-01,Kesrouan,632.6778196233806,94.80915750845992 +2046-10-01,Kesrouan,956.6307409864837,90.93906858448756 +2046-11-01,Kesrouan,669.1941623198164,109.73686343009842 +2046-12-01,Kesrouan,738.1589720893293,148.88015858286295 +2047-01-01,Kesrouan,808.6833406675137,124.40705451013346 +2047-02-01,Kesrouan,693.2635292496935,109.07442827803484 +2047-03-01,Kesrouan,664.8870557954751,102.48395256736323 +2047-04-01,Kesrouan,813.2169369443669,126.43120063559245 +2047-05-01,Kesrouan,659.651182901393,109.04062276885817 +2047-06-01,Kesrouan,719.8327658240011,105.09522336201022 +2047-07-01,Kesrouan,732.1627482825022,115.55274978000668 +2047-08-01,Kesrouan,809.8427851783524,148.2424815342651 +2047-09-01,Kesrouan,862.4245898070405,173.61248305543467 +2047-10-01,Kesrouan,715.2108262248784,159.8867677742777 +2047-11-01,Kesrouan,1001.0504673544876,134.28766515592656 +2047-12-01,Kesrouan,649.3272625927235,161.6945372451141 +2048-01-01,Kesrouan,756.4500522050062,175.80606936183477 +2048-02-01,Kesrouan,532.667195401941,90.5982901013396 +2048-03-01,Kesrouan,634.3008729951495,94.71704208078746 +2048-04-01,Kesrouan,934.1942120672561,143.7650060314906 +2048-05-01,Kesrouan,734.1183385900491,135.1297524424719 +2048-06-01,Kesrouan,432.82664087500586,85.93889755609966 +2048-07-01,Kesrouan,444.50795105086615,113.62179498992631 +2048-08-01,Kesrouan,683.6946451758159,127.71094394718035 +2048-09-01,Kesrouan,664.4046519807234,125.2446242069353 +2048-10-01,Kesrouan,827.2676783772744,148.1081092201218 +2048-11-01,Kesrouan,740.0262894676921,135.9392629553459 +2048-12-01,Kesrouan,681.8231042123246,121.9798097815805 +2049-01-01,Kesrouan,813.5845296367108,125.1097536741667 +2049-02-01,Kesrouan,668.2166839349275,106.04898192140995 +2049-03-01,Kesrouan,511.504886919417,88.89694379673406 +2049-04-01,Kesrouan,974.4943942871638,155.30071728986002 +2049-05-01,Kesrouan,825.030022976234,159.1154519849726 +2049-06-01,Kesrouan,744.2951373500784,143.8388952158339 +2049-07-01,Kesrouan,909.8725563190409,146.6560984133081 +2049-08-01,Kesrouan,844.5432678419066,130.3269768560495 +2049-09-01,Kesrouan,791.0173511508441,107.30548929441187 +2049-10-01,Kesrouan,680.8187356687848,124.35374817378255 +2049-11-01,Kesrouan,815.756930647517,105.01854659861003 +2049-12-01,Kesrouan,1011.4221141751083,99.95048029216234 +2050-01-01,Kesrouan,742.328354541941,121.40238050797191 +2050-02-01,Kesrouan,807.1157570470983,151.74841237837228 +2050-03-01,Kesrouan,826.4235244962729,126.19591306910041 +2050-04-01,Kesrouan,832.9006034699714,128.69612390208968 +2050-05-01,Kesrouan,824.9529425476403,143.79512533415127 +2050-06-01,Kesrouan,625.216856494015,94.1969782498758 +2050-07-01,Kesrouan,835.1414265598581,88.62679009613912 +2050-08-01,Kesrouan,765.6719687605837,114.89978383837973 +2050-09-01,Kesrouan,730.39433318923,137.08569763427272 +2050-10-01,Kesrouan,826.6316064569334,157.528439213483 +2050-11-01,Kesrouan,838.3816906773015,140.27927290932186 +2050-12-01,Kesrouan,776.2543724791128,133.88658999289362 +2051-01-01,Kesrouan,709.7757760954482,111.35798736636302 +2051-02-01,Kesrouan,622.5283685770579,99.66510188621396 +2051-03-01,Kesrouan,744.97661281055,112.48089879044143 +2051-04-01,Kesrouan,1005.7327338278612,170.03053566401968 +2051-05-01,Kesrouan,784.4976843604338,151.7556747553889 +2051-06-01,Kesrouan,776.708759845846,92.27839028530435 +2051-07-01,Kesrouan,907.5677459144586,97.72612058012113 +2051-08-01,Kesrouan,804.7182389489469,101.92058956439037 +2051-09-01,Kesrouan,892.88466339474,134.782509343419 +2051-10-01,Kesrouan,713.6929401228074,159.76901701157226 +2051-11-01,Kesrouan,869.18112933007,131.56398645843316 +2051-12-01,Kesrouan,849.9533284259936,142.24808008870093 +2052-01-01,Kesrouan,814.4243895394985,168.549022978854 +2052-02-01,Kesrouan,437.81293508454075,92.99532994366437 +2052-03-01,Kesrouan,630.0409650346184,82.20197055010114 +2052-04-01,Kesrouan,605.3953603070529,112.48916371782062 +2052-05-01,Kesrouan,729.4031985457592,138.56831679270442 +2052-06-01,Kesrouan,756.0957638058167,135.07982054392667 +2052-07-01,Kesrouan,789.7810373906681,136.8237079947095 +2052-08-01,Kesrouan,917.9429827824383,158.48776987444052 +2052-09-01,Kesrouan,806.0081922402538,142.49963464613677 +2052-10-01,Kesrouan,762.4303671745163,106.22477056912864 +2052-11-01,Kesrouan,533.8337144178696,119.70208871518065 +2052-12-01,Kesrouan,627.7883511029149,123.79791041164087 +2053-01-01,Kesrouan,752.322201672824,116.68782018378715 +2053-02-01,Kesrouan,529.3050808535424,92.23752718836197 +2053-03-01,Kesrouan,638.9231645596994,97.27446858523045 +2053-04-01,Kesrouan,1045.7259318020178,171.69948247520094 +2053-05-01,Kesrouan,837.6051845514403,169.62226536820174 +2053-06-01,Kesrouan,972.7606125919447,147.4919747780951 +2053-07-01,Kesrouan,887.1943679373819,137.74554082686237 +2053-08-01,Kesrouan,709.7745090199097,134.8561906819554 +2053-09-01,Kesrouan,735.4780514290607,93.84902297327876 +2053-10-01,Kesrouan,698.4637480459834,82.38327016825795 +2053-11-01,Kesrouan,673.8982506496868,103.8335901446241 +2053-12-01,Kesrouan,544.8300646755273,129.55218270603524 +2054-01-01,Kesrouan,656.1954455493144,139.55439843162887 +2054-02-01,Kesrouan,750.0008488931553,133.71744629788287 +2054-03-01,Kesrouan,808.7604914891931,130.4281610853248 +2054-04-01,Kesrouan,954.992553101338,164.69105024279992 +2054-05-01,Kesrouan,812.0732604846744,148.86032764764246 +2054-06-01,Kesrouan,812.2643777117357,136.32405890121112 +2054-07-01,Kesrouan,720.6734000507288,126.22571143338283 +2054-08-01,Kesrouan,574.1838757284636,91.50345553371486 +2054-09-01,Kesrouan,984.6554249960469,89.57075239361197 +2054-10-01,Kesrouan,628.3744791291123,107.08503825066337 +2054-11-01,Kesrouan,831.2172232239515,163.86243014191757 +2054-12-01,Kesrouan,678.9038677611844,171.32598967336241 +2055-01-01,Kesrouan,738.2461891222314,114.87417295579462 +2055-02-01,Kesrouan,751.4595344103428,116.14895547702142 +2055-03-01,Kesrouan,1025.5188926859157,166.91824032568178 +2055-04-01,Kesrouan,927.7763336784411,142.4409854499268 +2055-05-01,Kesrouan,755.2054320607443,96.73485196569281 +2055-06-01,Kesrouan,835.9827647174407,136.15176084042548 +2055-07-01,Kesrouan,788.4514527922395,97.23313172211061 +2055-08-01,Kesrouan,831.8623054592332,88.75484450906468 +2055-09-01,Kesrouan,851.2344825816162,140.4594385452088 +2055-10-01,Kesrouan,762.3244255808784,134.98518957067986 +2055-11-01,Kesrouan,813.6826575978613,126.95918400305717 +2055-12-01,Kesrouan,781.5848888766144,122.26102515827947 +2056-01-01,Kesrouan,864.8847577512636,138.09653126355096 +2056-02-01,Kesrouan,849.4563532425487,127.67841913496073 +2056-03-01,Kesrouan,811.290630160377,133.53399792086972 +2056-04-01,Kesrouan,842.6555364687564,130.3749403325414 +2056-05-01,Kesrouan,893.8469368731666,150.4647261095658 +2056-06-01,Kesrouan,639.628855241574,139.97114150063285 +2056-07-01,Kesrouan,560.2285521229157,86.44357468419076 +2056-08-01,Kesrouan,619.5903371720962,87.47064779540892 +2056-09-01,Kesrouan,654.7352817773318,111.59023671620753 +2056-10-01,Kesrouan,613.4917618189902,132.69150716893458 +2056-11-01,Kesrouan,719.1388307874005,156.22023936568942 +2056-12-01,Kesrouan,850.0036594821073,171.1796295466521 +2057-01-01,Kesrouan,902.1652173905172,138.4297692230878 +2057-02-01,Kesrouan,1103.149935994276,167.90717067478278 +2057-03-01,Kesrouan,1091.5146628963157,152.3190285886938 +2057-04-01,Kesrouan,814.4966832382801,109.14348199081238 +2057-05-01,Kesrouan,423.67202010914133,85.9418746416275 +2057-06-01,Kesrouan,637.7425317301334,90.68755987539149 +2057-07-01,Kesrouan,886.8939302485799,133.23065307885076 +2057-08-01,Kesrouan,831.9759902922733,146.8181081066535 +2057-09-01,Kesrouan,890.2080367126852,131.8474208947761 +2057-10-01,Kesrouan,858.7057231014611,113.24146772890884 +2057-11-01,Kesrouan,882.8902531191734,125.1219432194286 +2057-12-01,Kesrouan,697.9152451239717,131.960843574209 +2058-01-01,Kesrouan,625.448696121023,132.63011318545153 +2058-02-01,Kesrouan,694.0081473078352,127.53448591370129 +2058-03-01,Kesrouan,915.5161107676445,158.82567825152003 +2058-04-01,Kesrouan,821.041409967119,135.1979808851339 +2058-05-01,Kesrouan,844.8263184385967,143.30665100932828 +2058-06-01,Kesrouan,826.8619326326036,131.26652243012632 +2058-07-01,Kesrouan,807.0151653279563,134.90801764521038 +2058-08-01,Kesrouan,706.6603189185498,137.9050808229732 +2058-09-01,Kesrouan,677.2448787192811,100.14142640100283 +2058-10-01,Kesrouan,1085.3095124118024,89.54129330704373 +2058-11-01,Kesrouan,675.8727063041408,106.46014983230017 +2058-12-01,Kesrouan,768.9994499109291,147.75799907155647 +2059-01-01,Kesrouan,706.4834914878396,110.96485924888697 +2059-02-01,Kesrouan,710.6799048852733,109.89529695294324 +2059-03-01,Kesrouan,903.9665764477911,145.85838009341816 +2059-04-01,Kesrouan,912.5761435528323,161.9135089157666 +2059-05-01,Kesrouan,950.078763769841,135.2395989514042 +2059-06-01,Kesrouan,850.7728447270794,123.87781795471554 +2059-07-01,Kesrouan,855.5658395239032,109.3084779393536 +2059-08-01,Kesrouan,604.015902207566,84.40366589952528 +2059-09-01,Kesrouan,601.2181994184963,84.7399115101498 +2059-10-01,Kesrouan,493.59227522778986,110.69046610514302 +2059-11-01,Kesrouan,676.4614740710435,140.0461860631379 +2059-12-01,Kesrouan,756.2682972583129,132.8791124620852 +2060-01-01,Kesrouan,808.2010776389329,128.83333575674158 +2060-02-01,Kesrouan,955.0908922417448,160.62678443031257 +2060-03-01,Kesrouan,824.2408460949875,153.12430271497482 +2060-04-01,Kesrouan,866.7308164178133,129.74305240097615 +2060-05-01,Kesrouan,911.2913289567648,149.93619867513598 +2060-06-01,Kesrouan,572.3517900893803,94.98188043052724 +2060-07-01,Kesrouan,530.3302857503825,85.02505761784344 +2060-08-01,Kesrouan,746.1111381691309,107.48344809687879 +2060-09-01,Kesrouan,651.1864495697141,125.26712351552928 +2060-10-01,Kesrouan,713.8152129122752,147.99187450918413 +2060-11-01,Kesrouan,710.398895688062,148.76063501768712 +2060-12-01,Kesrouan,638.9637109769324,111.42854490468439 +2061-01-01,Kesrouan,751.7640548981024,116.61502524648591 +2061-02-01,Kesrouan,576.0279281920773,95.8843316411892 +2061-03-01,Kesrouan,789.7092364434849,117.7198326894745 +2061-04-01,Kesrouan,886.5651945394172,152.60851500588393 +2061-05-01,Kesrouan,781.2266584646385,147.73965362254395 +2061-06-01,Kesrouan,827.7618378373003,135.83734515263458 +2061-07-01,Kesrouan,754.3882387314793,102.95204577688875 +2061-08-01,Kesrouan,981.2072900971995,141.92494099013334 +2061-09-01,Kesrouan,771.6812152882235,131.0873837970498 +2061-10-01,Kesrouan,935.213151979489,127.21949559338549 +2061-11-01,Kesrouan,809.308431266521,103.14994249403554 +2061-12-01,Kesrouan,519.5287483567733,95.05372783547361 +2062-01-01,Kesrouan,865.3525901973222,97.28778294309424 +2062-02-01,Kesrouan,671.0807322070563,111.3316398537859 +2062-03-01,Kesrouan,812.301122902353,152.9733577542894 +2062-04-01,Kesrouan,828.2613471718222,161.83869665151633 +2062-05-01,Kesrouan,849.4724732591222,129.68054277455914 +2062-06-01,Kesrouan,896.1648403916471,156.70958786552364 +2062-07-01,Kesrouan,509.1445363703957,91.66265319555552 +2062-08-01,Kesrouan,565.3936095730112,82.5666299051476 +2062-09-01,Kesrouan,669.4673578845401,103.7288144620683 +2062-10-01,Kesrouan,658.248600673328,124.52910890366357 +2062-11-01,Kesrouan,769.3674649617859,154.36467147238423 +2062-12-01,Kesrouan,889.4044996420021,178.19320290621727 +2063-01-01,Kesrouan,812.7717710718307,124.9928251250208 +2063-02-01,Kesrouan,719.2658903066807,112.53634471598076 +2063-03-01,Kesrouan,715.6716897554752,109.9782457692214 +2063-04-01,Kesrouan,751.8266343510886,115.73172030250412 +2063-05-01,Kesrouan,907.5219904089006,148.4800554046327 +2063-06-01,Kesrouan,849.2187061859893,158.8455091867405 +2063-07-01,Kesrouan,920.491071690418,148.1776030769609 +2063-08-01,Kesrouan,682.2884025073063,150.0085901470474 +2063-09-01,Kesrouan,801.021616458377,164.20864012504805 +2063-10-01,Kesrouan,712.4661998222558,87.27344797302635 +2063-11-01,Kesrouan,651.3214635076529,86.31699353124922 +2063-12-01,Kesrouan,635.4472243920899,111.69349940355153 +2064-01-01,Kesrouan,648.106681687151,137.5706324672669 +2064-02-01,Kesrouan,758.4210585982719,135.23325965429456 +2064-03-01,Kesrouan,738.1754440713303,125.47621639724335 +2064-04-01,Kesrouan,893.3981809532713,147.82146539999627 +2064-05-01,Kesrouan,863.2746567072219,164.5528450074534 +2064-06-01,Kesrouan,788.8536788826366,108.75888166453007 +2064-07-01,Kesrouan,873.9079546265485,117.20660637429775 +2064-08-01,Kesrouan,709.0954269243441,114.20142804039894 +2064-09-01,Kesrouan,722.4230201901795,101.8359260202055 +2064-10-01,Kesrouan,827.167790588987,110.10052023478232 +2064-11-01,Kesrouan,639.2919187379539,120.200270661807 +2064-12-01,Kesrouan,804.5110017053122,155.89694743932264 +2065-01-01,Kesrouan,774.8795251267245,119.69297100868211 +2065-02-01,Kesrouan,860.1810213868205,134.12596723129144 +2065-03-01,Kesrouan,979.3098444782538,159.3436238891352 +2065-04-01,Kesrouan,885.991490892806,117.64828177045852 +2065-05-01,Kesrouan,867.4021552739769,110.24047382015134 +2065-06-01,Kesrouan,776.9942038074422,120.07890399337317 +2065-07-01,Kesrouan,687.8222141356562,85.81631132182845 +2065-08-01,Kesrouan,698.6287494383338,96.59999671570414 +2065-09-01,Kesrouan,660.0517195577387,127.1887558098602 +2065-10-01,Kesrouan,765.625650110342,133.07583851829034 +2065-11-01,Kesrouan,771.3044011016823,131.80920783187133 +2065-12-01,Kesrouan,965.426357016432,165.36115735038192 +2066-01-01,Kesrouan,852.8357844899738,162.026473111802 +2066-02-01,Kesrouan,837.2863742673295,140.79461436123913 +2066-03-01,Kesrouan,887.3562720339715,165.42713005472814 +2066-04-01,Kesrouan,517.2050374087414,85.7180002551776 +2066-05-01,Kesrouan,502.8406595835054,81.58354980419887 +2066-06-01,Kesrouan,609.498890028204,103.98530230086135 +2066-07-01,Kesrouan,651.1549134674219,127.10377438385305 +2066-08-01,Kesrouan,724.1703173578096,147.72168107336142 +2066-09-01,Kesrouan,922.317983437719,177.77260857667414 +2066-10-01,Kesrouan,811.2880960092998,146.49181464231103 +2066-11-01,Kesrouan,774.844539763244,162.22406111679447 +2066-12-01,Kesrouan,693.3658807959724,173.0119492751474 +2067-01-01,Kesrouan,714.657466179969,111.94605956790588 +2067-02-01,Kesrouan,646.2120165950815,102.21195270695429 +2067-03-01,Kesrouan,868.1274152336131,135.5753310606235 +2067-04-01,Kesrouan,921.2479381454322,163.75337833754094 +2067-05-01,Kesrouan,900.7100515276034,147.83902225756506 +2067-06-01,Kesrouan,853.4458813617749,120.7706729132097 +2067-07-01,Kesrouan,668.2092222678673,102.92081083129413 +2067-08-01,Kesrouan,744.0798049016141,94.62849671050364 +2067-09-01,Kesrouan,910.7007309696398,93.34481044169712 +2067-10-01,Kesrouan,1068.3499879009473,165.88554009489815 +2067-11-01,Kesrouan,988.2254807189348,167.79888912251397 +2067-12-01,Kesrouan,802.9564408057092,112.79454422612451 +2068-01-01,Kesrouan,836.5716028774289,129.22683677404763 +2068-02-01,Kesrouan,695.3302702392037,157.27099161611116 +2068-03-01,Kesrouan,658.7722548361675,159.74280398745844 +2068-04-01,Kesrouan,784.881326676266,131.4573798988433 +2068-05-01,Kesrouan,842.8226496536711,119.57690135176756 +2068-06-01,Kesrouan,705.481516309206,130.22105190844394 +2068-07-01,Kesrouan,681.3991970516015,129.287796726581 +2068-08-01,Kesrouan,790.4159830216415,130.06391742189209 +2068-09-01,Kesrouan,683.1824650859086,133.43464151207255 +2068-10-01,Kesrouan,699.8774523815532,127.76667107587015 +2068-11-01,Kesrouan,747.3016964237488,125.17091535939502 +2068-12-01,Kesrouan,711.1598449420335,136.75274087788637 +2069-01-01,Kesrouan,771.5682343860381,119.24445809678642 +2069-02-01,Kesrouan,559.8937978049453,94.75908500833945 +2069-03-01,Kesrouan,516.2391034898702,88.72103594333203 +2069-04-01,Kesrouan,714.4761335917885,113.32032687328119 +2069-05-01,Kesrouan,758.3056139380949,154.54589467664147 +2069-06-01,Kesrouan,757.2687941821516,170.29974488881575 +2069-07-01,Kesrouan,819.9855840780978,174.99306214891573 +2069-08-01,Kesrouan,911.9770983954504,158.02649889787 +2069-09-01,Kesrouan,920.1869031680859,133.07432857963454 +2069-10-01,Kesrouan,775.1811594979797,149.94653594747194 +2069-11-01,Kesrouan,750.821421090523,157.1363319857054 +2069-12-01,Kesrouan,593.8214699796256,85.95092816045042 +2070-01-01,Kesrouan,622.4537519064556,84.26181113633456 +2070-02-01,Kesrouan,726.1456177292893,125.23406074945657 +2070-03-01,Kesrouan,821.3616985060246,149.57896063801732 +2070-04-01,Kesrouan,925.0783074984022,155.52325290478922 +2070-05-01,Kesrouan,950.18188964006,147.23724751554852 +2070-06-01,Kesrouan,570.6767514239891,102.08179232695616 +2070-07-01,Kesrouan,575.6093357093075,109.79403936632437 +2070-08-01,Kesrouan,613.2126884316293,115.3098544456719 +2070-09-01,Kesrouan,906.0009366179833,106.94423494273096 +2070-10-01,Kesrouan,663.022448550903,122.61556731302076 +2070-11-01,Kesrouan,803.0846970074425,155.12940955321304 +2070-12-01,Kesrouan,681.6390966868961,136.21979977661653 +2071-01-01,Kesrouan,942.2986383909374,144.67063300381935 +2071-02-01,Kesrouan,1076.9465322851759,163.62195865647763 +2071-03-01,Kesrouan,845.5676984148064,117.24525958126414 +2071-04-01,Kesrouan,498.60595234757403,88.54559574299545 +2071-05-01,Kesrouan,590.4987051660069,94.27037227214977 +2071-06-01,Kesrouan,798.6347277161323,109.83680058453247 +2071-07-01,Kesrouan,1036.9083531294016,163.73120608043718 +2071-08-01,Kesrouan,1055.7648305076038,150.809322231137 +2071-09-01,Kesrouan,993.2209964226669,102.23974902706756 +2071-10-01,Kesrouan,797.0354672072536,106.00965321557123 +2071-11-01,Kesrouan,672.6785848542255,149.12002487021815 +2071-12-01,Kesrouan,461.705052225195,117.13892505515679 +2072-01-01,Kesrouan,763.2401692298066,110.71298680962889 +2072-02-01,Kesrouan,781.3603349339531,120.60502897479998 +2072-03-01,Kesrouan,776.6938365117256,124.95614950977571 +2072-04-01,Kesrouan,835.4099761809406,167.73996483626553 +2072-05-01,Kesrouan,744.7759221238642,136.4287459436434 +2072-06-01,Kesrouan,957.0633768898055,154.9321638824907 +2072-07-01,Kesrouan,628.7434092900803,86.87415478213173 +2072-08-01,Kesrouan,523.9525314202874,83.89353587555972 +2072-09-01,Kesrouan,616.734384104797,105.67156144513271 +2072-10-01,Kesrouan,637.763438476519,127.56904944876186 +2072-11-01,Kesrouan,714.0310381123379,142.37473765554208 +2072-12-01,Kesrouan,794.4805501699828,156.22887719289858 +2073-01-01,Kesrouan,714.1461308070876,111.88418570513343 +2073-02-01,Kesrouan,658.1218227263897,103.53009553136195 +2073-03-01,Kesrouan,938.6453780410195,150.12442139259525 +2073-04-01,Kesrouan,901.8686513214161,161.8430675265726 +2073-05-01,Kesrouan,915.3504758375246,129.429238854714 +2073-06-01,Kesrouan,839.6777681670447,117.22596965645275 +2073-07-01,Kesrouan,695.4461372578935,97.76319660420006 +2073-08-01,Kesrouan,750.878017131244,88.84059313062366 +2073-09-01,Kesrouan,926.7354311235404,106.82613573264342 +2073-10-01,Kesrouan,955.6241902572941,149.35996451491695 +2073-11-01,Kesrouan,688.6156146020312,125.89743732076306 +2073-12-01,Kesrouan,763.1337348845702,125.3386499820974 +2074-01-01,Kesrouan,789.6060401801802,123.08496261539523 +2074-02-01,Kesrouan,836.2159770096152,142.69977181881939 +2074-03-01,Kesrouan,760.9552096753279,145.06445190294767 +2074-04-01,Kesrouan,710.8748233389503,116.61668495638492 +2074-05-01,Kesrouan,763.5160397317784,122.69859865631048 +2074-06-01,Kesrouan,717.2780599659868,102.07012850932341 +2074-07-01,Kesrouan,844.8827736931465,105.80686600885096 +2074-08-01,Kesrouan,726.215095704652,125.54688702813611 +2074-09-01,Kesrouan,805.6753033390484,154.02824858151268 +2074-10-01,Kesrouan,715.6510645814315,97.69425292743794 +2074-11-01,Kesrouan,476.1587588758972,122.53653394495737 +2074-12-01,Kesrouan,751.8472595251325,122.21094654504704 +2075-01-01,Kesrouan,908.0866837405712,139.3482887485546 +2075-02-01,Kesrouan,994.1746819446655,153.83909667103444 +2075-03-01,Kesrouan,817.9581224302821,116.42433588834804 +2075-04-01,Kesrouan,859.7483854834985,115.5847396949292 +2075-05-01,Kesrouan,676.3796773057229,121.13745657466461 +2075-06-01,Kesrouan,698.906309374357,105.99280242243461 +2075-07-01,Kesrouan,1019.4643834043163,142.96767283765456 +2075-08-01,Kesrouan,1062.0176371109828,150.83076702791672 +2075-09-01,Kesrouan,990.6764271689608,124.00438688143313 +2075-10-01,Kesrouan,764.7357407237824,102.1926077641352 +2075-11-01,Kesrouan,679.5762273170872,143.90437887122278 +2075-12-01,Kesrouan,678.2842326263013,159.0034597737399 +2076-01-01,Kesrouan,802.9122339480317,114.66851258644994 +2076-02-01,Kesrouan,979.1299197517828,136.6562943103854 +2076-03-01,Kesrouan,881.3378744052202,151.06041830517532 +2076-04-01,Kesrouan,728.4184696730666,148.8843154990004 +2076-05-01,Kesrouan,636.8033823802849,150.04891834669272 +2076-06-01,Kesrouan,639.854007525462,139.95109660649356 +2076-07-01,Kesrouan,715.8720284767336,116.2602844156057 +2076-08-01,Kesrouan,676.4066378574594,114.65083957975376 +2076-09-01,Kesrouan,652.9151981593219,119.03726639289403 +2076-10-01,Kesrouan,739.7655534790973,137.21661604015475 +2076-11-01,Kesrouan,852.405682737729,165.94888416109865 +2076-12-01,Kesrouan,569.2382687223326,100.64622884788926 +2077-01-01,Kesrouan,917.738631655308,140.84834250231577 +2077-02-01,Kesrouan,903.1211554912511,139.84730207840846 +2077-03-01,Kesrouan,774.0821826475631,112.33376229851135 +2077-04-01,Kesrouan,780.8072564613858,106.09256229662161 +2077-05-01,Kesrouan,695.8940484607631,115.78652129473093 +2077-06-01,Kesrouan,751.1927446163972,132.29211922480448 +2077-07-01,Kesrouan,825.9779362652239,142.5656562553787 +2077-08-01,Kesrouan,759.3632700473385,139.19903100677203 +2077-09-01,Kesrouan,823.5275529598817,137.10172010073785 +2077-10-01,Kesrouan,891.474197141102,117.91287559571963 +2077-11-01,Kesrouan,725.3523580490853,141.5721349591906 +2077-12-01,Kesrouan,896.5947309646353,165.61810367257246 +2078-01-01,Kesrouan,599.7711639569546,83.34321214041215 +2078-02-01,Kesrouan,553.4048575963443,84.73843825016579 +2078-03-01,Kesrouan,713.1675261328311,120.09957242493309 +2078-04-01,Kesrouan,781.8172564517633,134.66802298250389 +2078-05-01,Kesrouan,829.4752759308175,152.14238410529975 +2078-06-01,Kesrouan,808.6065418112619,153.01786732252 +2078-07-01,Kesrouan,824.8857875440982,108.91287706808694 +2078-08-01,Kesrouan,749.8686506786355,114.3898158118813 +2078-09-01,Kesrouan,624.0994718517471,113.47433450306198 +2078-10-01,Kesrouan,530.8233893141262,117.34150747262618 +2078-11-01,Kesrouan,1076.5716891050279,99.60530953806621 +2078-12-01,Kesrouan,701.8207238991422,109.92676114023662 +2079-01-01,Kesrouan,765.958468618462,118.49032320866411 +2079-02-01,Kesrouan,943.078593777987,148.21052829801437 +2079-03-01,Kesrouan,942.4211223596618,151.54084166153797 +2079-04-01,Kesrouan,860.8252589050765,105.86567414597204 +2079-05-01,Kesrouan,852.6892964791028,119.19917827644795 +2079-06-01,Kesrouan,1005.1668438137376,156.47303488485448 +2079-07-01,Kesrouan,965.174208984265,115.89367803439781 +2079-08-01,Kesrouan,1000.5965023462672,121.31338582395854 +2079-09-01,Kesrouan,879.2192537117159,127.57341726726216 +2079-10-01,Kesrouan,730.8213376457139,111.18043202928591 +2079-11-01,Kesrouan,681.7073779798058,107.9985083456456 +2079-12-01,Kesrouan,746.5067473094934,120.36199609544596 +2080-01-01,Kesrouan,753.1084220444806,120.16219514392148 +2080-02-01,Kesrouan,813.4831635936287,144.60535719423734 +2080-03-01,Kesrouan,787.0158562070873,153.9796187758164 +2080-04-01,Kesrouan,818.5100042203966,102.36997665129732 +2080-05-01,Kesrouan,682.7626407241431,111.6525323837057 +2080-06-01,Kesrouan,630.2496805330481,141.27549008788733 +2080-07-01,Kesrouan,1008.5354345259997,108.89060700119171 +2080-08-01,Kesrouan,804.7318248144434,102.04716460421994 +2080-09-01,Kesrouan,792.6191458107999,123.78937956389113 +2080-10-01,Kesrouan,698.6302276931287,130.4312940552078 +2080-11-01,Kesrouan,848.5349781467826,118.51796975753419 +2080-12-01,Kesrouan,518.6495739157488,110.42803020840621 +2081-01-01,Kesrouan,709.4455621314906,111.31837745737383 +2081-02-01,Kesrouan,667.1051419187538,104.493570882233 +2081-03-01,Kesrouan,675.6325954895898,104.2194619981955 +2081-04-01,Kesrouan,910.2488777539837,150.67214399860094 +2081-05-01,Kesrouan,854.0651997277732,164.33497369695493 +2081-06-01,Kesrouan,931.5791089419054,151.83178911248814 +2081-07-01,Kesrouan,885.8159305376344,138.09580991633885 +2081-08-01,Kesrouan,718.6651557152475,147.90330774300844 +2081-09-01,Kesrouan,620.7569969741958,88.69917851149455 +2081-10-01,Kesrouan,732.1612700277072,81.5410208842455 +2081-11-01,Kesrouan,519.1347582573767,100.98225132992701 +2081-12-01,Kesrouan,628.9338225862869,135.53102322508778 +2082-01-01,Kesrouan,821.4820706821847,139.0893006469671 +2082-02-01,Kesrouan,860.7493751589357,139.24289869824617 +2082-03-01,Kesrouan,894.296889475515,169.6634677428583 +2082-04-01,Kesrouan,713.7148323723897,145.5856313767933 +2082-05-01,Kesrouan,898.9324149401341,161.73399126974815 +2082-06-01,Kesrouan,558.9190647503899,82.20551309848594 +2082-07-01,Kesrouan,596.3652649093915,83.25619810467603 +2082-08-01,Kesrouan,717.3616165584441,113.08039334169435 +2082-09-01,Kesrouan,696.8320363247012,131.90833194241378 +2082-10-01,Kesrouan,878.3910086680314,175.35685344206286 +2082-11-01,Kesrouan,839.6187787614176,154.5054870065406 +2082-12-01,Kesrouan,795.2744433879561,138.64334301587354 +2083-01-01,Kesrouan,740.9214079425767,115.21512871918961 +2083-02-01,Kesrouan,569.9680338394392,95.24780080108513 +2083-03-01,Kesrouan,553.9486793781718,91.19096241963751 +2083-04-01,Kesrouan,987.3499315218121,162.79166967602833 +2083-05-01,Kesrouan,786.5630174882346,162.06315789671507 +2083-06-01,Kesrouan,811.3498307452603,165.0164022878995 +2083-07-01,Kesrouan,923.9338567147695,134.1049870310212 +2083-08-01,Kesrouan,944.4169071190142,133.39176414473707 +2083-09-01,Kesrouan,825.8945204589374,128.72412195489784 +2083-10-01,Kesrouan,835.4548869694729,144.29718299376458 +2083-11-01,Kesrouan,697.2338400565854,92.23134683216347 +2083-12-01,Kesrouan,671.3149300024276,85.87706037199901 +2084-01-01,Kesrouan,689.0793642491324,114.40921882926409 +2084-02-01,Kesrouan,678.4392030039719,135.61541473579013 +2084-03-01,Kesrouan,770.2846868655092,138.2896016787999 +2084-04-01,Kesrouan,832.252001580416,139.7739019430225 +2084-05-01,Kesrouan,917.095450033334,168.07723744970048 +2084-06-01,Kesrouan,825.8224379394122,124.01560749844829 +2084-07-01,Kesrouan,842.3261672218244,141.0808791684227 +2084-08-01,Kesrouan,649.4526326779524,137.97885997130106 +2084-09-01,Kesrouan,569.310034472973,88.7691125123953 +2084-10-01,Kesrouan,874.618220858979,95.54756947260348 +2084-11-01,Kesrouan,645.3234798736889,113.87547691032658 +2084-12-01,Kesrouan,746.6377488415602,151.77968094608275 +2085-01-01,Kesrouan,783.5924292812412,120.88484750541451 +2085-02-01,Kesrouan,765.3410508657714,118.83285615494654 +2085-03-01,Kesrouan,872.8177769118162,141.08529283526278 +2085-04-01,Kesrouan,891.0103067078298,149.2167832064294 +2085-05-01,Kesrouan,895.3418044362876,127.95600637970738 +2085-06-01,Kesrouan,905.3053825404169,127.79773791088567 +2085-07-01,Kesrouan,967.0938988182203,146.13700962375515 +2085-08-01,Kesrouan,839.7492875418859,91.5411764911063 +2085-09-01,Kesrouan,845.3721464233603,103.56635545499333 +2085-10-01,Kesrouan,900.6690123587721,138.81343424323916 +2085-11-01,Kesrouan,800.5961606497735,141.1695437443899 +2085-12-01,Kesrouan,771.56851595838,118.7779115045885 +2086-01-01,Kesrouan,828.9255059332672,125.22148302158479 +2086-02-01,Kesrouan,723.4510408104387,118.5710560218543 +2086-03-01,Kesrouan,718.8212171857429,120.0228223041893 +2086-04-01,Kesrouan,751.5670950449468,138.84212307769957 +2086-05-01,Kesrouan,853.882107312456,169.1101822049628 +2086-06-01,Kesrouan,846.5684769109871,121.35769671605024 +2086-07-01,Kesrouan,847.5277938798237,122.01763466187538 +2086-08-01,Kesrouan,919.0081005587421,141.39230554446183 +2086-09-01,Kesrouan,676.4351470570764,91.82074132757421 +2086-10-01,Kesrouan,557.1594135962591,86.86857045435 +2086-11-01,Kesrouan,694.4809072698771,110.38534234754171 +2086-12-01,Kesrouan,683.3987830375696,127.94766198187261 +2087-01-01,Kesrouan,711.1192281317151,111.51916261992497 +2087-02-01,Kesrouan,662.9208361320217,104.03351641494389 +2087-03-01,Kesrouan,846.5610856370123,132.12620325291223 +2087-04-01,Kesrouan,861.8566583934382,151.613300377681 +2087-05-01,Kesrouan,747.4650787751335,123.75729795228912 +2087-06-01,Kesrouan,676.2981621127444,88.01797304913676 +2087-07-01,Kesrouan,839.3273513875562,97.67148158536143 +2087-08-01,Kesrouan,667.9468672383065,107.97919702494232 +2087-09-01,Kesrouan,801.371822058609,142.60371037737235 +2087-10-01,Kesrouan,876.0681072404823,174.22370255544 +2087-11-01,Kesrouan,647.0341374403298,164.16331751292583 +2087-12-01,Kesrouan,998.6516117877122,135.12434233838124 +2088-01-01,Kesrouan,627.1707573675106,162.19812318271914 +2088-02-01,Kesrouan,824.3981042479359,176.32652137535632 +2088-03-01,Kesrouan,549.3106549590186,113.18769068293648 +2088-04-01,Kesrouan,724.6840460955972,91.59978289553247 +2088-05-01,Kesrouan,659.671772878894,91.34542547625986 +2088-06-01,Kesrouan,553.6572872008533,111.42134060223145 +2088-07-01,Kesrouan,550.0391530005867,131.45799732315197 +2088-08-01,Kesrouan,666.0165128519019,134.50131841916792 +2088-09-01,Kesrouan,675.5324261289607,134.92600242061684 +2088-10-01,Kesrouan,869.4621385272814,155.7348705017456 +2088-11-01,Kesrouan,799.7113195653683,160.2651571788017 +2088-12-01,Kesrouan,758.544387284022,114.37109746303881 +2089-01-01,Kesrouan,865.3273894727226,132.7733556250587 +2089-02-01,Kesrouan,774.5445948260403,120.69446991598694 +2089-03-01,Kesrouan,837.8052417003568,129.430709058142 +2089-04-01,Kesrouan,932.85385732675,148.6903281169564 +2089-05-01,Kesrouan,927.0989410169269,138.18164412146538 +2089-06-01,Kesrouan,896.1571675453304,123.46200102217452 +2089-07-01,Kesrouan,635.4288166002384,89.26853847730689 +2089-08-01,Kesrouan,680.1475024022496,84.04716143584261 +2089-09-01,Kesrouan,669.985732565969,92.44091348005499 +2089-10-01,Kesrouan,588.9750116343844,120.38928502726597 +2089-11-01,Kesrouan,781.5523672711256,132.97986266041082 +2089-12-01,Kesrouan,802.5250015848404,129.92051298481778 +2090-01-01,Kesrouan,918.4736762538251,169.3389287416503 +2090-02-01,Kesrouan,843.8301154929717,134.60717306598585 +2090-03-01,Kesrouan,874.3384083442207,148.31237274338207 +2090-04-01,Kesrouan,600.4513723418877,129.4455364112176 +2090-05-01,Kesrouan,494.8072598830672,85.34266435008105 +2090-06-01,Kesrouan,819.0101470926877,96.43250050436848 +2090-07-01,Kesrouan,665.0897526850969,116.16691579998003 +2090-08-01,Kesrouan,877.2078416873883,170.2554126008322 +2090-09-01,Kesrouan,797.7634724972233,171.82750937912266 +2090-10-01,Kesrouan,775.3847363011697,149.8967996685097 +2090-11-01,Kesrouan,549.8906939833225,133.36831424723223 +2090-12-01,Kesrouan,519.7918777102744,84.21828272257461 +2091-01-01,Kesrouan,772.5207936186692,119.37325830937192 +2091-02-01,Kesrouan,840.8187696894892,130.8344599025334 +2091-03-01,Kesrouan,922.1119428765373,151.4771063561716 +2091-04-01,Kesrouan,971.486004993271,143.62658683722526 +2091-05-01,Kesrouan,838.8940115533796,110.86948858909217 +2091-06-01,Kesrouan,832.7212418881842,123.46232196055277 +2091-07-01,Kesrouan,842.8788233358791,106.8985149783309 +2091-08-01,Kesrouan,936.4733289956406,111.56603490593078 +2091-09-01,Kesrouan,1015.4156547002065,152.14517779746862 +2091-10-01,Kesrouan,885.8699220341928,149.18369904446484 +2091-11-01,Kesrouan,899.9207338601858,141.1277728503204 +2091-12-01,Kesrouan,847.6844184950029,128.78193059821234 +2092-01-01,Kesrouan,665.4049377253057,116.63173849460328 +2092-02-01,Kesrouan,665.4571693947273,146.5086501526677 +2092-03-01,Kesrouan,703.79574269828,136.13699767502555 +2092-04-01,Kesrouan,846.5277897075832,114.43917613445763 +2092-05-01,Kesrouan,757.175241771557,113.79725964271077 +2092-06-01,Kesrouan,718.714712447421,135.99676899961804 +2092-07-01,Kesrouan,772.0090358872749,157.48369123388568 +2092-08-01,Kesrouan,783.3996930132139,137.10724635395587 +2092-09-01,Kesrouan,884.3894850535937,138.6038584256797 +2092-10-01,Kesrouan,747.4553645293381,128.43264571976255 +2092-11-01,Kesrouan,670.9619790718621,137.15389551137488 +2092-12-01,Kesrouan,571.928868431854,149.30835151058085 +2093-01-01,Kesrouan,727.7143980321578,113.5493668393431 +2093-02-01,Kesrouan,696.3501252615478,108.36202760531022 +2093-03-01,Kesrouan,971.8048856704671,157.79875491154507 +2093-04-01,Kesrouan,888.0411967556314,155.3755478934462 +2093-05-01,Kesrouan,859.8686872665733,108.91471100167699 +2093-06-01,Kesrouan,777.5486901417191,102.53014018482875 +2093-07-01,Kesrouan,649.9288067046398,102.99495676634004 +2093-08-01,Kesrouan,945.9570374360951,93.47318579300094 +2093-09-01,Kesrouan,808.4681490052204,120.34311269258036 +2093-10-01,Kesrouan,742.5745191618429,127.2183341021118 +2093-11-01,Kesrouan,767.340707244825,134.13662849856163 +2093-12-01,Kesrouan,923.4689807783006,160.4747268832492 +2094-01-01,Kesrouan,890.2422477522255,168.65584961047466 +2094-02-01,Kesrouan,922.742312956955,128.6377559090302 +2094-03-01,Kesrouan,773.1705921906777,162.28371897647895 +2094-04-01,Kesrouan,570.14718424197,143.32239838575487 +2094-05-01,Kesrouan,526.2640995610753,81.46511131639716 +2094-06-01,Kesrouan,653.6501723647536,86.66965284750474 +2094-07-01,Kesrouan,649.7474037233737,114.75753783602315 +2094-08-01,Kesrouan,692.1791941610556,144.92609995291394 +2094-09-01,Kesrouan,884.947279862888,179.90423849329028 +2094-10-01,Kesrouan,789.1881164317225,141.56326483372672 +2094-11-01,Kesrouan,865.314507538081,153.40963221602743 +2094-12-01,Kesrouan,508.840051079179,129.4709639004437 +2095-01-01,Kesrouan,790.8332028392447,121.88783495548327 +2095-02-01,Kesrouan,820.2746884801386,127.56169843162172 +2095-03-01,Kesrouan,868.0369601187793,141.02215661486917 +2095-04-01,Kesrouan,769.0962404034555,113.73625078528161 +2095-05-01,Kesrouan,811.917058228008,108.47074013197266 +2095-06-01,Kesrouan,900.4534687310513,136.60548212371697 +2095-07-01,Kesrouan,751.9719256795065,129.11270497362656 +2095-08-01,Kesrouan,884.7415208740482,115.71601266130529 +2095-09-01,Kesrouan,714.8780077167584,116.36496840148199 +2095-10-01,Kesrouan,662.7202862315069,106.2346249056192 +2095-11-01,Kesrouan,661.2938055509236,95.00835631845565 +2095-12-01,Kesrouan,812.687721727775,121.4621300643359 +2096-01-01,Kesrouan,818.8111458400533,133.5910699341922 +2096-02-01,Kesrouan,757.0418468745843,129.5366217795236 +2096-03-01,Kesrouan,763.7510118510897,140.23976997979207 +2096-04-01,Kesrouan,854.4030865380474,157.34054660406997 +2096-05-01,Kesrouan,841.3924029430149,128.83038618021757 +2096-06-01,Kesrouan,822.8671250319668,115.15282999513545 +2096-07-01,Kesrouan,743.0256684466442,121.77173778956488 +2096-08-01,Kesrouan,706.942806370556,127.66755307843965 +2096-09-01,Kesrouan,593.3467390111905,104.16146384841002 +2096-10-01,Kesrouan,965.1151491855525,106.39426271152148 +2096-11-01,Kesrouan,647.8245110040293,117.69130585248121 +2096-12-01,Kesrouan,819.3849198797501,150.83804774426926 +2097-01-01,Kesrouan,871.7858142787708,133.75580607547485 +2097-02-01,Kesrouan,801.2594746941929,124.69499430999595 +2097-03-01,Kesrouan,645.9539555437347,100.2914574514492 +2097-04-01,Kesrouan,751.9547497666508,105.93092550310618 +2097-05-01,Kesrouan,856.6132182426676,137.78478089257757 +2097-06-01,Kesrouan,843.3463038165105,159.45975467716943 +2097-07-01,Kesrouan,816.953261135144,155.49436233763387 +2097-08-01,Kesrouan,894.8206140314398,153.3470400625989 +2097-09-01,Kesrouan,797.546943366306,166.6293346541285 +2097-10-01,Kesrouan,510.2652646842237,87.39815240059406 +2097-11-01,Kesrouan,681.0024264253286,81.91974956648365 +2097-12-01,Kesrouan,602.1621354981569,113.22171015103198 +2098-01-01,Kesrouan,700.5364020546732,132.84153516282498 +2098-02-01,Kesrouan,775.9458395854813,136.58884834605516 +2098-03-01,Kesrouan,858.3463664001174,148.47459639564633 +2098-04-01,Kesrouan,919.50627242464,168.46809760263685 +2098-05-01,Kesrouan,792.0594503881978,110.50585623685616 +2098-06-01,Kesrouan,814.6910385472733,121.97621221518801 +2098-07-01,Kesrouan,569.5502508771524,106.84261362595007 +2098-08-01,Kesrouan,713.3211942384203,118.05713892502527 +2098-09-01,Kesrouan,1039.7915131242366,112.2674075246672 +2098-10-01,Kesrouan,767.6998527669122,128.0105292253397 +2098-11-01,Kesrouan,739.1548230695269,150.66327387313703 +2098-12-01,Kesrouan,798.756085395489,104.74293694558467 +2099-01-01,Kesrouan,930.6025456671276,142.85071677950484 +2099-02-01,Kesrouan,1065.2950687775565,162.60586775090792 +2099-03-01,Kesrouan,974.9545538869057,135.4455680329032 +2099-04-01,Kesrouan,574.2722894438186,91.95399494222757 +2099-05-01,Kesrouan,662.2051848285525,100.13413957153834 +2099-06-01,Kesrouan,599.1965100036894,89.9691958619432 +2099-07-01,Kesrouan,649.8879083219795,113.35437690693652 +2099-08-01,Kesrouan,708.624286003268,140.65599343427888 +2099-09-01,Kesrouan,859.3291946595023,131.8149297046723 +2099-10-01,Kesrouan,887.6708587329539,126.25483429879289 +2099-11-01,Kesrouan,740.7435246155844,138.58297603520094 +2099-12-01,Kesrouan,674.5579746467471,139.07491038139716 +2100-01-01,Kesrouan,892.356152109003,152.4074914319661 +2100-02-01,Kesrouan,739.5067181038103,87.4604175025324 +2100-03-01,Kesrouan,579.771256494859,92.97427638605055 +2100-04-01,Kesrouan,807.5819000591056,132.3871903421129 +2100-05-01,Kesrouan,758.3406696946608,131.25301245267957 +2100-06-01,Kesrouan,729.8387909586709,132.57958831504553 +2100-07-01,Kesrouan,750.9536193050428,140.25993713617072 +2100-08-01,Kesrouan,877.6743366648229,163.81309732834507 +2100-09-01,Kesrouan,745.4067849558803,129.96168479391451 +2100-10-01,Kesrouan,739.7551353024472,111.79472642461056 +2100-11-01,Kesrouan,725.2749960481497,134.51256043207496 +2100-12-01,Kesrouan,633.7231921392089,150.66393408922949 +2101-01-01,Kesrouan,880.133167140422,135.03230332460836 +2101-02-01,Kesrouan,956.7931378346717,149.07219588218953 +2101-03-01,Kesrouan,909.744652082735,133.93596559824985 +2101-04-01,Kesrouan,852.7614493917134,109.72162344196508 +2101-05-01,Kesrouan,876.717201881636,145.59297322426548 +2101-06-01,Kesrouan,998.0479910797746,157.14515320627356 +2101-07-01,Kesrouan,960.5310810664147,128.4455627253485 +2101-08-01,Kesrouan,890.8255248584611,107.6532947997657 +2101-09-01,Kesrouan,909.0343154572191,137.37299555737872 +2101-10-01,Kesrouan,769.6649461409982,131.59394682018268 +2101-11-01,Kesrouan,785.3021365412282,121.81195595319478 +2101-12-01,Kesrouan,844.0659323293089,133.5903547000921 +2102-01-01,Kesrouan,791.7488057020021,138.37187193964976 +2102-02-01,Kesrouan,708.9091668201804,124.23138201154214 +2102-03-01,Kesrouan,724.6339966118254,114.24293301409786 +2102-04-01,Kesrouan,748.7677028218257,122.5473174744669 +2102-05-01,Kesrouan,760.560163679649,146.38567267923065 +2102-06-01,Kesrouan,778.3177346005201,158.39316335364157 +2102-07-01,Kesrouan,866.2926898538245,112.92759610808298 +2102-08-01,Kesrouan,738.7826548266271,105.66491037931277 +2102-09-01,Kesrouan,603.7737851900789,129.9870205864611 +2102-10-01,Kesrouan,677.367820243061,119.23478104054288 +2102-11-01,Kesrouan,1066.6380280622252,102.05041066667434 +2102-12-01,Kesrouan,691.8845287052624,106.48690997993506 +2103-01-01,Kesrouan,827.1549086543455,127.07803206936066 +2103-02-01,Kesrouan,706.4401293471878,110.95673492308303 +2103-03-01,Kesrouan,606.4581199149932,96.1619647342756 +2103-04-01,Kesrouan,822.903870222584,124.38136721364877 +2103-05-01,Kesrouan,752.4636213815409,130.4420806412733 +2103-06-01,Kesrouan,806.3361536254762,138.61183603679643 +2103-07-01,Kesrouan,847.4235417202372,153.9090856899429 +2103-08-01,Kesrouan,753.774270239977,114.3455599377973 +2103-09-01,Kesrouan,890.9085886993201,132.46461290517303 +2103-10-01,Kesrouan,792.9445026518596,132.75809729758947 +2103-11-01,Kesrouan,849.7380663706149,159.1538545543483 +2103-12-01,Kesrouan,629.6957925399978,89.16564257668091 +2104-01-01,Kesrouan,520.3571693831716,92.7616745780675 +2104-02-01,Kesrouan,870.28285151082,148.43160287918346 +2104-03-01,Kesrouan,880.9283978270191,149.34034142550337 +2104-04-01,Kesrouan,598.1305827069028,101.48467271970236 +2104-05-01,Kesrouan,537.0683822850178,118.78418661402247 +2104-06-01,Kesrouan,438.55927777327656,123.92517317656673 +2104-07-01,Kesrouan,717.3133269018091,127.29633129769681 +2104-08-01,Kesrouan,687.2191565724024,120.65303524307564 +2104-09-01,Kesrouan,840.796173509052,143.60324086262386 +2104-10-01,Kesrouan,821.4331474877805,168.127854016786 +2104-11-01,Kesrouan,730.2315139825291,107.14777100566718 +2104-12-01,Kesrouan,741.1979823754032,104.92757737943137 +2105-01-01,Kesrouan,942.1151940101928,144.6421336758299 +2105-02-01,Kesrouan,1034.0908698833136,158.15199497343744 +2105-03-01,Kesrouan,1063.5536142360206,149.91496172416316 +2105-04-01,Kesrouan,693.2065108504598,99.68985387656772 +2105-05-01,Kesrouan,535.6618932407091,90.88723245156466 +2105-06-01,Kesrouan,611.1147985017972,89.82277154755727 +2105-07-01,Kesrouan,848.0857998683744,127.0628868344628 +2105-08-01,Kesrouan,858.2921637243027,149.27851341107066 +2105-09-01,Kesrouan,997.4430329032131,137.16582830593418 +2105-10-01,Kesrouan,1060.648491598518,118.07423729919657 +2105-11-01,Kesrouan,825.6530721757624,94.88271964131299 +2105-12-01,Kesrouan,637.6825216247669,97.25932640688856 +2106-01-01,Kesrouan,620.3069739787619,128.059149861368 +2106-02-01,Kesrouan,567.5058596922802,149.91463772922893 +2106-03-01,Kesrouan,708.964354999192,118.30837560063881 +2106-04-01,Kesrouan,822.1907882667348,120.32774432909571 +2106-05-01,Kesrouan,809.9515424954093,132.9909151668469 +2106-06-01,Kesrouan,723.777383154695,146.38146074508546 +2106-07-01,Kesrouan,664.5280862561017,112.26573558854427 +2106-08-01,Kesrouan,625.826179041876,106.79988908641376 +2106-09-01,Kesrouan,763.7859972145703,111.79637085172965 +2106-10-01,Kesrouan,833.9146862593066,110.30173331517113 +2106-11-01,Kesrouan,753.250827256394,133.10925278830115 +2106-12-01,Kesrouan,811.9954057321405,159.32751583910255 +2107-01-01,Kesrouan,933.3938426854194,143.2852551174443 +2107-02-01,Kesrouan,909.3034282229854,140.3457040970656 +2107-03-01,Kesrouan,976.8861401523062,141.8378902757254 +2107-04-01,Kesrouan,880.6302127169523,120.55969719300981 +2107-05-01,Kesrouan,919.5901105894392,145.98926793374034 +2107-06-01,Kesrouan,817.3159263115049,128.44385411055376 +2107-07-01,Kesrouan,753.3325536286291,99.3443316185335 +2107-08-01,Kesrouan,846.3745439605069,116.18135497044572 +2107-09-01,Kesrouan,870.9510226781372,144.82083216484483 +2107-10-01,Kesrouan,913.5963505406037,147.9809687174353 +2107-11-01,Kesrouan,979.1798284493838,137.91640230633578 +2107-12-01,Kesrouan,911.0580462715047,136.09702403587434 +2108-01-01,Kesrouan,750.7657401599133,149.45008401153223 +2108-02-01,Kesrouan,572.6877762863467,139.19945281149776 +2108-03-01,Kesrouan,621.5466666070406,114.69671848506496 +2108-04-01,Kesrouan,765.4555100227519,122.10040925446248 +2108-05-01,Kesrouan,763.5230790403257,120.00555276288297 +2108-06-01,Kesrouan,766.5708884620838,130.23851095622126 +2108-07-01,Kesrouan,817.8125495295224,157.43325806015918 +2108-08-01,Kesrouan,819.1022916415728,116.37954817352292 +2108-09-01,Kesrouan,850.0568766547256,117.62720681695282 +2108-10-01,Kesrouan,775.5307315604424,115.25116857079016 +2108-11-01,Kesrouan,636.6995877757538,112.86906306100042 +2108-12-01,Kesrouan,957.1171572071075,98.46305317116871 +2109-01-01,Kesrouan,846.7507246092787,129.97541178683605 +2109-02-01,Kesrouan,899.1556314141715,140.50461444264383 +2109-03-01,Kesrouan,705.0492323713114,109.37076443718381 +2109-04-01,Kesrouan,767.7279396080162,102.33658989029038 +2109-05-01,Kesrouan,881.8689902351198,129.00412999198335 +2109-06-01,Kesrouan,664.2889257482045,114.65233423562967 +2109-07-01,Kesrouan,911.9309205313796,149.00232912552042 +2109-08-01,Kesrouan,720.6217315259912,147.4612563904617 +2109-09-01,Kesrouan,955.7197840673675,131.14300700283616 +2109-10-01,Kesrouan,685.5375361535193,162.2565523068983 +2109-11-01,Kesrouan,751.3928721583992,168.603234055776 +2109-12-01,Kesrouan,708.6685632540311,87.08689719169001 +2110-01-01,Kesrouan,638.4042619301296,92.61035366099611 +2110-02-01,Kesrouan,746.1158545058576,115.2124206105883 +2110-03-01,Kesrouan,498.497335816688,112.01866194218016 +2110-04-01,Kesrouan,597.041918443508,128.69358390406745 +2110-05-01,Kesrouan,743.0857137485534,129.59213494929458 +2110-06-01,Kesrouan,759.7702828675477,127.47489529824844 +2110-07-01,Kesrouan,913.1833543081291,167.00576786282312 +2110-08-01,Kesrouan,805.8253110041929,139.9470130476997 +2110-09-01,Kesrouan,845.266767974406,147.29146470558248 +2110-10-01,Kesrouan,539.5672312297086,113.34666827274634 +2110-11-01,Kesrouan,457.20105624078366,89.3501546351763 +2110-12-01,Kesrouan,849.5696861101616,101.66699934066959 +2111-01-01,Kesrouan,831.9653609363668,127.78361662224225 +2111-02-01,Kesrouan,741.6487796947773,115.80324065596025 +2111-03-01,Kesrouan,759.0667039782373,116.84156494975338 +2111-04-01,Kesrouan,816.2239887696356,128.06498788329634 +2111-05-01,Kesrouan,891.6188549317507,148.33584709333476 +2111-06-01,Kesrouan,861.5332725587717,149.595062574938 +2111-07-01,Kesrouan,793.6877832413771,136.56166333713858 +2111-08-01,Kesrouan,856.1315887518559,159.44245457030323 +2111-09-01,Kesrouan,739.9588528918083,91.56195190212563 +2111-10-01,Kesrouan,750.878017131244,83.93935059319527 +2111-11-01,Kesrouan,558.6481921574868,108.46140540999929 +2111-12-01,Kesrouan,628.2059932790307,134.51685183667567 +2112-01-01,Kesrouan,769.1470642111676,137.68181774771995 +2112-02-01,Kesrouan,826.4047999355369,135.93736789063615 +2112-03-01,Kesrouan,942.4209111804054,171.45528199146125 +2112-04-01,Kesrouan,835.4545350040455,133.30338688503232 +2112-05-01,Kesrouan,871.1641729409517,146.67727423316126 +2112-06-01,Kesrouan,595.7051537503611,129.7840713822737 +2112-07-01,Kesrouan,531.0564608201299,87.04827760683945 +2112-08-01,Kesrouan,845.2726106005005,97.2604634457144 +2112-09-01,Kesrouan,682.1222044325027,116.5838667147909 +2112-10-01,Kesrouan,836.9624956810646,160.28399778988353 +2112-11-01,Kesrouan,795.2098929285766,171.4031249201601 +2112-12-01,Kesrouan,772.8127841372144,102.93179915005453 +2113-01-01,Kesrouan,676.9699233274206,107.56859763346502 +2113-02-01,Kesrouan,700.1210124572924,108.02259400679498 +2113-03-01,Kesrouan,843.1418822962947,133.12331905893683 +2113-04-01,Kesrouan,900.9380547314528,159.23856394687294 +2113-05-01,Kesrouan,872.6681916051845,145.90930842921398 +2113-06-01,Kesrouan,905.7050744797369,123.9541095920618 +2113-07-01,Kesrouan,625.7763407373607,98.8806245668442 +2113-08-01,Kesrouan,510.20743676450695,83.63721309078977 +2113-09-01,Kesrouan,892.7856907165639,91.05404399436003 +2113-10-01,Kesrouan,912.5613610048827,141.86587610230964 +2113-11-01,Kesrouan,851.3766766142734,142.99912479872398 +2113-12-01,Kesrouan,934.5472333909071,149.3144646225477 +2114-01-01,Kesrouan,862.2481847348433,132.51503996578757 +2114-02-01,Kesrouan,606.0994671445043,130.84169782710217 +2114-03-01,Kesrouan,796.1133177875471,155.13329137931197 +2114-04-01,Kesrouan,680.8127170599768,85.15804836868223 +2114-05-01,Kesrouan,656.555611771141,91.01204385859181 +2114-06-01,Kesrouan,745.4110789340941,119.48212977694551 +2114-07-01,Kesrouan,721.9515273036762,130.45453916346173 +2114-08-01,Kesrouan,788.7499194746482,147.38516648581032 +2114-09-01,Kesrouan,863.6748413981404,150.99514860870528 +2114-10-01,Kesrouan,787.5217009193018,115.58522263077458 +2114-11-01,Kesrouan,790.0730279092134,124.1098533456412 +2114-12-01,Kesrouan,641.8639764915374,152.26226223096967 +2017-01-01,Tripoli,566.4444446251316,34.660191068888615 +2017-02-01,Tripoli,498.3968763155555,30.5238651324798 +2017-03-01,Tripoli,455.97997115810006,26.089468759518923 +2017-04-01,Tripoli,442.9927608865812,25.26707071828371 +2017-05-01,Tripoli,450.4112441426047,24.941077446713575 +2017-06-01,Tripoli,442.40185879660976,24.885415936074878 +2017-07-01,Tripoli,427.28105878088843,24.953072717998506 +2017-08-01,Tripoli,426.33654832115025,25.140683992089272 +2017-09-01,Tripoli,427.46103929729134,25.203422739475847 +2017-10-01,Tripoli,427.8573410435919,25.217600344103644 +2017-11-01,Tripoli,428.27593802647607,25.254947336113588 +2017-12-01,Tripoli,427.9373323842154,25.25169919137864 +2018-01-01,Tripoli,428.288051597641,25.261127796665125 +2018-02-01,Tripoli,428.5234830303247,25.27113823888852 +2018-03-01,Tripoli,428.8556837958776,25.276368543708223 +2018-04-01,Tripoli,428.9045209807752,25.286100522688113 +2018-05-01,Tripoli,429.02821516219626,25.307741476037215 +2018-06-01,Tripoli,429.2716178816523,25.338391115660226 +2018-07-01,Tripoli,429.57952188665024,25.37655481456326 +2018-08-01,Tripoli,429.80722569634935,25.400306928541234 +2018-09-01,Tripoli,429.9401791017069,25.42674225383682 +2018-10-01,Tripoli,430.2418522755596,25.46805534533413 +2018-11-01,Tripoli,430.52333616413756,25.49976901703137 +2018-12-01,Tripoli,430.73776029740156,25.527993446425 +2019-01-01,Tripoli,582.4298333781927,35.6270252365874 +2019-02-01,Tripoli,656.9588236341382,39.794595994440016 +2019-03-01,Tripoli,711.2209391033623,44.079228963294796 +2019-04-01,Tripoli,694.8982152406483,41.62251947001953 +2019-05-01,Tripoli,677.6355757210517,40.225991607142085 +2019-06-01,Tripoli,652.0781335371651,40.33884840040608 +2019-07-01,Tripoli,662.279170227084,40.93635756893673 +2019-08-01,Tripoli,637.1962284608253,40.154310008242035 +2019-09-01,Tripoli,593.06102367636,38.87994121234773 +2019-10-01,Tripoli,563.8760194470435,38.27264223700706 +2019-11-01,Tripoli,538.023047897668,37.37328158149337 +2019-12-01,Tripoli,490.7201964672454,34.336913926016315 +2020-01-01,Tripoli,444.6676187411376,30.883085385578482 +2020-02-01,Tripoli,431.6103029169574,29.545808807101857 +2020-03-01,Tripoli,439.4356698894944,29.634971314217992 +2020-04-01,Tripoli,456.28742264463494,29.392146917586693 +2020-05-01,Tripoli,462.73495791994384,29.06472574344204 +2020-06-01,Tripoli,464.5333185058023,29.731668342769424 +2020-07-01,Tripoli,473.4043860282396,31.033322088232637 +2020-08-01,Tripoli,497.47246811831087,32.83689737835447 +2020-09-01,Tripoli,527.5711593382089,35.46673182944575 +2020-10-01,Tripoli,542.1015794006469,38.185731456629945 +2020-11-01,Tripoli,544.2636952125783,39.489781053578014 +2020-12-01,Tripoli,548.7473525718875,39.79855319733814 +2021-01-01,Tripoli,573.9277424487099,35.08066967692278 +2021-02-01,Tripoli,547.9643912034608,33.60177630111572 +2021-03-01,Tripoli,536.4712924696195,31.446091801682222 +2021-04-01,Tripoli,537.9417338107678,34.28728875118332 +2021-05-01,Tripoli,605.1911291697359,39.81116500225804 +2021-06-01,Tripoli,620.2649890971932,40.88652955186885 +2021-07-01,Tripoli,580.0375945232404,39.0058190536371 +2021-08-01,Tripoli,590.7135319355816,39.71884687493515 +2021-09-01,Tripoli,626.6335773052549,40.66722150960041 +2021-10-01,Tripoli,622.7176913806325,40.078217480392155 +2021-11-01,Tripoli,601.1967661008856,39.50708136103234 +2021-12-01,Tripoli,602.9934906584544,39.99185650923065 +2022-01-01,Tripoli,606.6262044525407,40.183254171705954 +2022-02-01,Tripoli,589.256283248087,39.51645480746548 +2022-03-01,Tripoli,578.6300358439007,39.499656267644816 +2022-04-01,Tripoli,582.9563734190724,40.02333797994848 +2022-05-01,Tripoli,580.4306416175182,39.86670107098833 +2022-06-01,Tripoli,571.5499319709065,39.54722988899691 +2022-07-01,Tripoli,574.5395822198758,39.86183107803322 +2022-08-01,Tripoli,581.5951108594147,40.13109880689043 +2022-09-01,Tripoli,578.9080910348931,39.8479274883543 +2022-10-01,Tripoli,577.4262323048307,39.78974913261696 +2022-11-01,Tripoli,584.3034338608126,40.10919896279417 +2022-12-01,Tripoli,587.7637381204739,40.098419855259635 +2023-01-01,Tripoli,573.2272786770097,35.04829943693894 +2023-02-01,Tripoli,570.4920134225036,34.94046565796515 +2023-03-01,Tripoli,604.3296906570813,36.86300613952959 +2023-04-01,Tripoli,635.2445511387718,42.398962179487114 +2023-05-01,Tripoli,642.4248530422208,40.438395896153004 +2023-06-01,Tripoli,615.8990387519477,39.498522842174445 +2023-07-01,Tripoli,611.5681759921455,39.734535120417505 +2023-08-01,Tripoli,643.3394624742846,40.50059195159537 +2023-09-01,Tripoli,616.5885202486406,39.662132897788254 +2023-10-01,Tripoli,578.1596603061089,38.55181898697022 +2023-11-01,Tripoli,552.4621114442373,38.08163691411766 +2023-12-01,Tripoli,525.6328835244843,36.97217618620864 +2024-01-01,Tripoli,464.81147812413235,32.5366712982273 +2024-02-01,Tripoli,410.38186120535187,26.75051292017397 +2024-03-01,Tripoli,412.9945113609257,25.1211346268727 +2024-04-01,Tripoli,436.2545869260956,25.133401244129733 +2024-05-01,Tripoli,456.4359705324116,24.737728995899595 +2024-06-01,Tripoli,424.40051769518476,24.82327148085016 +2024-07-01,Tripoli,427.49551772326504,25.238623874158836 +2024-08-01,Tripoli,428.0542910023594,25.216221372769994 +2024-09-01,Tripoli,427.1365139410541,25.21067079073731 +2024-10-01,Tripoli,429.25489210307546,25.288232145472264 +2024-11-01,Tripoli,427.717565052176,25.26382435286661 +2024-12-01,Tripoli,429.00987075988616,25.29422043969602 +2025-01-01,Tripoli,589.295652354373,36.0295104928647 +2025-02-01,Tripoli,677.9925779792914,40.786499860984605 +2025-03-01,Tripoli,713.5136761101109,43.67816894061524 +2025-04-01,Tripoli,681.4852547136177,41.21796664640067 +2025-05-01,Tripoli,674.4881531694818,40.55977206328219 +2025-06-01,Tripoli,657.6656574734336,40.58786927144956 +2025-07-01,Tripoli,659.5160576825436,40.795083290292396 +2025-08-01,Tripoli,639.389394001145,40.30210904544187 +2025-09-01,Tripoli,617.3107571202363,39.76584399730389 +2025-10-01,Tripoli,598.9500293363624,39.38990794266456 +2025-11-01,Tripoli,576.4851331381217,38.88220450465277 +2025-12-01,Tripoli,546.3552007397166,37.93603889309813 +2026-01-01,Tripoli,520.6668588881124,37.04938879464502 +2026-02-01,Tripoli,504.26304719772975,36.41636711080764 +2026-03-01,Tripoli,486.3705541912263,35.308452610110166 +2026-04-01,Tripoli,466.46085570830735,33.831546732341415 +2026-05-01,Tripoli,454.8751995442145,32.93869037322794 +2026-06-01,Tripoli,450.31069802102456,32.337083435689024 +2026-07-01,Tripoli,446.2131085289284,31.25615495916167 +2026-08-01,Tripoli,443.5850553410544,30.098544110917196 +2026-09-01,Tripoli,443.77004836966347,29.08485872491337 +2026-10-01,Tripoli,445.0365431204232,27.887521047034745 +2026-11-01,Tripoli,445.91333245170915,26.770837178314164 +2026-12-01,Tripoli,443.9474182026256,25.97329175914707 +2027-01-01,Tripoli,572.1204881345967,34.97801193357427 +2027-02-01,Tripoli,527.4330019705262,32.36836384348982 +2027-03-01,Tripoli,485.3375589674041,28.069065736916368 +2027-04-01,Tripoli,451.506321418647,26.623472294669707 +2027-05-01,Tripoli,454.96662567830833,26.05300964711607 +2027-06-01,Tripoli,452.9185445190674,25.722541391153506 +2027-07-01,Tripoli,441.649929752015,25.485186617592724 +2027-08-01,Tripoli,435.27039407805853,25.81504278821493 +2027-09-01,Tripoli,435.6514842421779,26.55353798589824 +2027-10-01,Tripoli,436.9852127938141,27.774053947748254 +2027-11-01,Tripoli,445.9429376019269,28.973263468004944 +2027-12-01,Tripoli,469.0723919722797,31.07032567189755 +2028-01-01,Tripoli,516.3300959837342,35.200639293291644 +2028-02-01,Tripoli,561.3397926980576,38.97686599358394 +2028-03-01,Tripoli,554.4386772817589,39.43501720879458 +2028-04-01,Tripoli,555.7807774249617,39.89606337414696 +2028-05-01,Tripoli,588.2696711667282,40.46166759431151 +2028-06-01,Tripoli,601.3290581331047,40.21402035664813 +2028-07-01,Tripoli,595.8126492137612,39.835829906293 +2028-08-01,Tripoli,597.3932613961077,40.031239930519774 +2028-09-01,Tripoli,600.7544293032471,40.21455415200309 +2028-10-01,Tripoli,594.1092130778072,39.92218376018312 +2028-11-01,Tripoli,587.1580073485593,39.80176664537501 +2028-12-01,Tripoli,588.5321840889703,40.0478979042303 +2029-01-01,Tripoli,569.0037150066208,34.798183395758855 +2029-02-01,Tripoli,524.5582217929484,32.20552957045855 +2029-03-01,Tripoli,494.93314335830866,28.62146830829378 +2029-04-01,Tripoli,463.3947298390814,27.837346952645063 +2029-05-01,Tripoli,465.1702208379992,27.377167315085572 +2029-06-01,Tripoli,461.1942891942403,27.1871690860992 +2029-07-01,Tripoli,454.61830829364817,27.120619039878193 +2029-08-01,Tripoli,454.3674738286643,28.834001597848815 +2029-09-01,Tripoli,481.4879147839507,32.35073347257434 +2029-10-01,Tripoli,550.664081544948,36.898382537020794 +2029-11-01,Tripoli,578.3336710597107,39.233861767230565 +2029-12-01,Tripoli,561.588468998064,40.06890986871946 +2030-01-01,Tripoli,587.7314700731467,40.53984548268144 +2030-02-01,Tripoli,609.4233777137042,40.348317930003105 +2030-03-01,Tripoli,616.6379665930077,40.22751648253943 +2030-04-01,Tripoli,624.8308829848849,40.43793861146558 +2030-05-01,Tripoli,627.8422019064121,40.467345397570455 +2030-06-01,Tripoli,621.3043891977231,40.1761564728028 +2030-07-01,Tripoli,613.4721474254591,40.04475384958957 +2030-08-01,Tripoli,607.65286441788,40.03057802427962 +2030-09-01,Tripoli,597.1609801881092,39.80170792788596 +2030-10-01,Tripoli,583.7418062344897,39.548003892261605 +2030-11-01,Tripoli,575.6882655292342,39.556555293848106 +2030-12-01,Tripoli,570.859771696519,39.60845799552894 +2031-01-01,Tripoli,577.0061559346634,35.253326674144276 +2031-02-01,Tripoli,604.2794785122383,36.87727182039096 +2031-03-01,Tripoli,632.3474931291667,39.030914552591724 +2031-04-01,Tripoli,629.1580385742013,41.29187950988445 +2031-05-01,Tripoli,636.1894619033043,40.597379725357136 +2031-06-01,Tripoli,637.0808710618583,40.254012304641904 +2031-07-01,Tripoli,633.7653204967064,40.06536190892682 +2031-08-01,Tripoli,644.615494921881,40.40268854554172 +2031-09-01,Tripoli,639.5768584767446,40.380528921039385 +2031-10-01,Tripoli,626.0683817448964,39.97067906818144 +2031-11-01,Tripoli,612.1338588800796,39.77269081239021 +2031-12-01,Tripoli,604.84731956515,39.88588745536352 +2032-01-01,Tripoli,594.4254364607028,39.75982100638207 +2032-02-01,Tripoli,582.0852927822434,39.57311896371259 +2032-03-01,Tripoli,577.5377258923055,39.71640387152728 +2032-04-01,Tripoli,578.6216816568905,39.92051120140423 +2032-05-01,Tripoli,577.1154043343791,39.83513597233156 +2032-06-01,Tripoli,574.2041964205252,39.69436879927443 +2032-07-01,Tripoli,573.5804171237571,39.693059221336924 +2032-08-01,Tripoli,573.2658471737072,39.71102855230281 +2032-09-01,Tripoli,570.9910368599183,39.65928420991061 +2032-10-01,Tripoli,569.3129939715642,39.66665948239834 +2032-11-01,Tripoli,567.835503785126,39.64786098931441 +2032-12-01,Tripoli,563.9271366288128,39.512518956381555 +2033-01-01,Tripoli,579.6824893616343,35.429315444039666 +2033-02-01,Tripoli,605.1091537096975,36.854236771506486 +2033-03-01,Tripoli,613.8227099978783,37.41388739414536 +2033-04-01,Tripoli,600.0033356773533,39.78014793349904 +2033-05-01,Tripoli,623.8766259736346,40.82565019163539 +2033-06-01,Tripoli,629.7424487646836,40.440495491215856 +2033-07-01,Tripoli,618.0317234592242,39.74997248208301 +2033-08-01,Tripoli,632.8434011510086,40.32820274171028 +2033-09-01,Tripoli,648.3425762200709,40.82015032016143 +2033-10-01,Tripoli,636.3280021712249,40.134440365812495 +2033-11-01,Tripoli,616.2791542609159,39.69801818018452 +2033-12-01,Tripoli,610.8865265457748,39.949651089831626 +2034-01-01,Tripoli,600.3516530620136,39.72753528399609 +2034-02-01,Tripoli,574.2118892343973,38.98576970010471 +2034-03-01,Tripoli,557.2216484250049,38.821864277727826 +2034-04-01,Tripoli,548.2173316197535,38.8605537650555 +2034-05-01,Tripoli,531.796219800437,38.260099825483294 +2034-06-01,Tripoli,512.3117842454543,37.37045958338347 +2034-07-01,Tripoli,491.7020745092983,36.11015985372812 +2034-08-01,Tripoli,452.33441280148554,32.71004802951907 +2034-09-01,Tripoli,410.6526761009354,27.556147118286596 +2034-10-01,Tripoli,412.51115202415536,25.362966164143767 +2034-11-01,Tripoli,435.49933361125306,25.209706400462675 +2034-12-01,Tripoli,455.5539598342442,24.822219014341957 +2035-01-01,Tripoli,578.4462785387869,35.36596994926629 +2035-02-01,Tripoli,626.9026517452113,38.1501966998501 +2035-03-01,Tripoli,688.27964539086,43.54132160478139 +2035-04-01,Tripoli,708.743992273037,43.30829502189042 +2035-05-01,Tripoli,702.578010504531,40.718156262370925 +2035-06-01,Tripoli,681.4626984086899,40.587184234077355 +2035-07-01,Tripoli,685.1182817897168,41.491910422567344 +2035-08-01,Tripoli,695.9276947441036,41.843524981516744 +2035-09-01,Tripoli,678.4929241629825,40.96608819089028 +2035-10-01,Tripoli,666.1968140118897,40.615831251460335 +2035-11-01,Tripoli,666.4654359333831,40.901146648005565 +2035-12-01,Tripoli,655.6476513874297,40.61718353302624 +2036-01-01,Tripoli,623.5740825719683,39.844500522175444 +2036-02-01,Tripoli,600.0284852611655,39.6544462446768 +2036-03-01,Tripoli,590.0296024923393,39.752566727508125 +2036-04-01,Tripoli,575.8812472491718,39.41232556825513 +2036-05-01,Tripoli,558.5304362475042,38.96369548285917 +2036-06-01,Tripoli,549.6376826479527,38.97926629336342 +2036-07-01,Tripoli,544.3972925865179,39.02662817589138 +2036-08-01,Tripoli,534.604392741164,38.7172652986051 +2036-09-01,Tripoli,525.1220597979177,38.4109984343776 +2036-10-01,Tripoli,521.9573719265267,38.4968131549592 +2036-11-01,Tripoli,520.221197820226,38.5697491729434 +2036-12-01,Tripoli,517.1525134812282,38.4727603362646 +2037-01-01,Tripoli,579.9145617149576,35.52646708830174 +2037-02-01,Tripoli,642.4337119613629,38.9668359788642 +2037-03-01,Tripoli,684.1342281781299,42.299576601664526 +2037-04-01,Tripoli,652.7176813619152,40.34942644502358 +2037-05-01,Tripoli,626.661859709196,39.45057912270958 +2037-06-01,Tripoli,625.4544708315341,40.10156924785391 +2037-07-01,Tripoli,642.9516367468882,40.63125081994735 +2037-08-01,Tripoli,620.2451653076,39.77408223894881 +2037-09-01,Tripoli,598.8571760286543,39.408729566880524 +2037-10-01,Tripoli,595.3175940151766,39.76365543634854 +2037-11-01,Tripoli,586.8281213889904,39.564540872358336 +2037-12-01,Tripoli,565.0418810534418,38.8832080399201 +2038-01-01,Tripoli,555.3903410141247,38.991395903146014 +2038-02-01,Tripoli,557.7616421878824,39.513840989544015 +2038-03-01,Tripoli,553.8985094733187,39.402188794464394 +2038-04-01,Tripoli,548.9412741378637,39.26544821770154 +2038-05-01,Tripoli,555.4637012188088,39.72356384655517 +2038-06-01,Tripoli,563.9679851223818,40.02422052160202 +2038-07-01,Tripoli,564.4028205562673,39.796243642769 +2038-08-01,Tripoli,567.3159603758673,39.802442786157954 +2038-09-01,Tripoli,576.1642453341453,40.070352895495716 +2038-10-01,Tripoli,580.6995420119118,40.03991944299146 +2038-11-01,Tripoli,579.9392587803068,39.855071449521546 +2038-12-01,Tripoli,583.068371738679,39.96321482980122 +2039-01-01,Tripoli,568.1761631650268,34.72401520016361 +2039-02-01,Tripoli,498.2752358717745,30.535634430397792 +2039-03-01,Tripoli,452.6455540539499,25.831233690989862 +2039-04-01,Tripoli,441.0089025399818,25.141301415383175 +2039-05-01,Tripoli,448.52857588616735,24.84612059101932 +2039-06-01,Tripoli,440.5341584585659,24.817668408940904 +2039-07-01,Tripoli,426.13956355327014,24.942437735209804 +2039-08-01,Tripoli,425.68659257174977,25.05898928198906 +2039-09-01,Tripoli,425.80988644837663,25.07760361567552 +2039-10-01,Tripoli,426.5855379031693,25.12548950731027 +2039-11-01,Tripoli,427.84266900265504,25.204005466071678 +2039-12-01,Tripoli,428.1461870594726,25.251742784665964 +2040-01-01,Tripoli,428.78336786456975,25.2983867124415 +2040-02-01,Tripoli,428.85075830645275,25.32848120489535 +2040-03-01,Tripoli,429.18353342236253,25.346026168554037 +2040-04-01,Tripoli,429.32343124567234,25.358176240491908 +2040-05-01,Tripoli,429.5638055723371,25.375118015399487 +2040-06-01,Tripoli,429.62348579579185,25.372400997042728 +2040-07-01,Tripoli,429.48506735976514,25.363243737728347 +2040-08-01,Tripoli,429.5481588762491,25.37507264279431 +2040-09-01,Tripoli,429.6761171739567,25.386321490241222 +2040-10-01,Tripoli,429.6929125707586,25.386122206642035 +2040-11-01,Tripoli,429.64891385250445,25.38773248929617 +2040-12-01,Tripoli,429.68302678279645,25.39611663500478 +2041-01-01,Tripoli,572.7039932881528,35.008165143517175 +2041-02-01,Tripoli,533.1896285755281,32.72003445095149 +2041-03-01,Tripoli,485.33517454319497,28.102750892791267 +2041-04-01,Tripoli,439.9244246387088,25.670559509828347 +2041-05-01,Tripoli,438.3793003465997,24.90616723049904 +2041-06-01,Tripoli,435.69590066978253,24.581704172279796 +2041-07-01,Tripoli,427.2339968607305,24.610560259510137 +2041-08-01,Tripoli,423.4406390122589,24.757427823815554 +2041-09-01,Tripoli,424.98475384010425,24.83307730152082 +2041-10-01,Tripoli,425.20199751148425,24.86686743714886 +2041-11-01,Tripoli,425.2266423631646,24.92963643293888 +2041-12-01,Tripoli,426.10600756877886,25.02995704229158 +2042-01-01,Tripoli,427.1986482069432,25.135251734693604 +2042-02-01,Tripoli,428.35852264598407,25.239070482939155 +2042-03-01,Tripoli,428.6583161277595,25.29047853425773 +2042-04-01,Tripoli,428.65943001936085,25.311262746062113 +2042-05-01,Tripoli,428.79166983791123,25.336166968347882 +2042-06-01,Tripoli,429.16628550709754,25.357244767597496 +2042-07-01,Tripoli,429.53557538206485,25.375975646603123 +2042-08-01,Tripoli,429.80780004670635,25.39907564058912 +2042-09-01,Tripoli,429.9790260713047,25.421620487405956 +2042-10-01,Tripoli,430.1397049348026,25.45117317757452 +2042-11-01,Tripoli,430.3318164269267,25.475740219127736 +2042-12-01,Tripoli,430.3813846031877,25.477893193726086 +2043-01-01,Tripoli,578.565099444452,35.35943718378047 +2043-02-01,Tripoli,635.9517156646366,38.6882214933416 +2043-03-01,Tripoli,699.2825273927601,44.13566892549282 +2043-04-01,Tripoli,706.1082810804036,42.68283632857394 +2043-05-01,Tripoli,694.381961292525,40.48617413905783 +2043-06-01,Tripoli,668.6197022904361,40.502180882435304 +2043-07-01,Tripoli,683.7410940610707,41.55193037227931 +2043-08-01,Tripoli,688.1033024267178,41.59029068580476 +2043-09-01,Tripoli,664.9010796065941,40.55824007061345 +2043-10-01,Tripoli,650.7468938370756,40.345606249599896 +2043-11-01,Tripoli,651.2801868457886,40.705542678133156 +2043-12-01,Tripoli,635.0305273103021,40.227614345021166 +2044-01-01,Tripoli,603.4850301366723,39.51973586958065 +2044-02-01,Tripoli,588.5800118096042,39.625715599354876 +2044-03-01,Tripoli,585.4213981283518,39.86261753652286 +2044-04-01,Tripoli,573.6951653632547,39.480548173255016 +2044-05-01,Tripoli,562.8497423819422,39.27218293576331 +2044-06-01,Tripoli,561.5292586976285,39.488419875422856 +2044-07-01,Tripoli,555.546755761336,39.260368265240146 +2044-08-01,Tripoli,539.5485572548591,38.622726582605566 +2044-09-01,Tripoli,528.0649091950731,38.34779706435006 +2044-10-01,Tripoli,517.9948940047657,38.03581236221199 +2044-11-01,Tripoli,497.70582840879825,36.723496944192334 +2044-12-01,Tripoli,472.1276922075048,34.61393147376866 +2045-01-01,Tripoli,573.5876922282786,35.02500816628408 +2045-02-01,Tripoli,539.5236687393909,33.12590041114356 +2045-03-01,Tripoli,505.21946237395764,29.350778667236035 +2045-04-01,Tripoli,459.708914743811,27.80452743490413 +2045-05-01,Tripoli,453.10954211959006,26.46426871971111 +2045-06-01,Tripoli,447.19721435418404,25.41404948995474 +2045-07-01,Tripoli,437.0231547264858,24.936590896755117 +2045-08-01,Tripoli,430.2751297871506,25.004486996929554 +2045-09-01,Tripoli,429.4169111174062,25.13122157976364 +2045-10-01,Tripoli,428.63363646696655,25.182610948244786 +2045-11-01,Tripoli,428.4707994384911,25.21994904366548 +2045-12-01,Tripoli,428.43682574464924,25.283347917974357 +2046-01-01,Tripoli,428.69060157964304,25.325317577758273 +2046-02-01,Tripoli,429.14148401441076,25.339956025709192 +2046-03-01,Tripoli,429.4543483179461,25.35314610893031 +2046-04-01,Tripoli,429.80816554238805,25.382832247937618 +2046-05-01,Tripoli,430.10372971698956,25.420765525179092 +2046-06-01,Tripoli,430.325167886431,25.4511189083801 +2046-07-01,Tripoli,430.4369051376936,25.47123231735508 +2046-08-01,Tripoli,430.5445175091199,25.492353709892015 +2046-09-01,Tripoli,430.7077722469459,25.514472410083805 +2046-10-01,Tripoli,430.8781280437307,25.53678594558016 +2046-11-01,Tripoli,431.0035278716664,25.553091614356408 +2046-12-01,Tripoli,431.0444633880168,25.56068396362182 +2047-01-01,Tripoli,579.4124750756393,35.42755214005044 +2047-02-01,Tripoli,616.3995415766453,37.50078216066183 +2047-03-01,Tripoli,634.8844682740722,39.07405233454409 +2047-04-01,Tripoli,615.0272793374243,40.29174096033064 +2047-05-01,Tripoli,620.0693096710335,40.193293083014936 +2047-06-01,Tripoli,621.658450085953,40.043753872957936 +2047-07-01,Tripoli,617.2094277936241,39.856873898503466 +2047-08-01,Tripoli,627.068447548253,40.250715228666095 +2047-09-01,Tripoli,629.460094648292,40.411803990886625 +2047-10-01,Tripoli,619.839987237601,40.009984199485174 +2047-11-01,Tripoli,609.7661778540264,39.87635209100605 +2047-12-01,Tripoli,609.7332136244482,40.19336959368249 +2048-01-01,Tripoli,608.1469449613135,40.20949021340235 +2048-02-01,Tripoli,598.9540323843048,39.90162196310996 +2048-03-01,Tripoli,595.2303623791441,39.95733774294308 +2048-04-01,Tripoli,598.4758596053035,40.17210852469434 +2048-05-01,Tripoli,596.1873693102852,40.00262316154024 +2048-06-01,Tripoli,589.981809580818,39.80147661656548 +2048-07-01,Tripoli,588.7290296204002,39.874350358424934 +2048-08-01,Tripoli,586.7306210647579,39.84130842595277 +2048-09-01,Tripoli,579.8860878608975,39.65334840556342 +2048-10-01,Tripoli,575.2427611023543,39.638588963998714 +2048-11-01,Tripoli,573.5517344150218,39.72585738726366 +2048-12-01,Tripoli,570.5316261925775,39.68745437010982 +2049-01-01,Tripoli,574.7229914338642,35.220269617470386 +2049-02-01,Tripoli,579.7785799168089,35.38832885736781 +2049-03-01,Tripoli,600.0779142009765,36.25711015631355 +2049-04-01,Tripoli,602.1978587730622,39.269289764939415 +2049-05-01,Tripoli,604.7252440074622,39.19521142489559 +2049-06-01,Tripoli,592.5849568486676,39.52857374134098 +2049-07-01,Tripoli,595.0045382615223,39.76438673598484 +2049-08-01,Tripoli,606.3398124790942,39.95482178750336 +2049-09-01,Tripoli,600.608231030567,39.82686748228319 +2049-10-01,Tripoli,599.0333275426775,39.87475782221256 +2049-11-01,Tripoli,596.013393365796,39.88019541756178 +2049-12-01,Tripoli,591.6458592059298,39.807851912421576 +2050-01-01,Tripoli,587.7047366747138,39.7933148855881 +2050-02-01,Tripoli,585.6143102300643,39.82702940020752 +2050-03-01,Tripoli,583.421475376314,39.82538708983209 +2050-04-01,Tripoli,581.1534702440272,39.793273961277556 +2050-05-01,Tripoli,578.8133406305515,39.746655833610845 +2050-06-01,Tripoli,576.943743195874,39.74443346561635 +2050-07-01,Tripoli,574.9675602585903,39.71437189054272 +2050-08-01,Tripoli,570.6568345703942,39.579218465301956 +2050-09-01,Tripoli,566.5673207924079,39.52703641071869 +2050-10-01,Tripoli,564.720331876327,39.57807258460663 +2050-11-01,Tripoli,560.8225292856707,39.48183995801402 +2050-12-01,Tripoli,553.8892502493823,39.252537487382845 +2051-01-01,Tripoli,578.770281758336,35.444858675117246 +2051-02-01,Tripoli,628.1797980844092,38.16781461554063 +2051-03-01,Tripoli,679.410527178725,42.481374844339754 +2051-04-01,Tripoli,680.6784491030991,42.01653695264929 +2051-05-01,Tripoli,662.1366095066646,40.08149676318948 +2051-06-01,Tripoli,647.7964908624984,40.18623808774019 +2051-07-01,Tripoli,664.178564262098,41.033156018605595 +2051-08-01,Tripoli,666.1862842553456,40.935950105149104 +2051-09-01,Tripoli,639.4565581837965,40.05379100494908 +2051-10-01,Tripoli,625.1151516024662,39.97256158646661 +2051-11-01,Tripoli,619.4744393422321,40.08391129751176 +2051-12-01,Tripoli,596.8148035638703,39.43313646982726 +2052-01-01,Tripoli,570.0729117074875,38.886099431426146 +2052-02-01,Tripoli,559.8747119602409,39.08055574128538 +2052-03-01,Tripoli,554.9287199681374,39.22594736143432 +2052-04-01,Tripoli,544.3936376297008,38.9086451679019 +2052-05-01,Tripoli,538.128467295004,38.86203593682444 +2052-06-01,Tripoli,537.7668876384649,39.07342601466093 +2052-07-01,Tripoli,534.949159596345,39.01753942031422 +2052-08-01,Tripoli,531.7202663168684,38.95876677241502 +2052-09-01,Tripoli,535.060862038495,39.269140302240025 +2052-10-01,Tripoli,541.309115144496,39.62043102534075 +2052-11-01,Tripoli,546.2662982662821,39.737029724043026 +2052-12-01,Tripoli,553.4219031043817,39.901326596346884 +2053-01-01,Tripoli,582.2919544834103,35.653943646679224 +2053-02-01,Tripoli,619.967841107971,37.58986993642827 +2053-03-01,Tripoli,636.1839446589663,39.08684029193113 +2053-04-01,Tripoli,616.9977709848072,39.87240200537933 +2053-05-01,Tripoli,605.5177778818381,39.188078139635444 +2053-06-01,Tripoli,595.0885848637571,39.3105557045137 +2053-07-01,Tripoli,597.9820227256578,39.702333025970475 +2053-08-01,Tripoli,599.7290572750718,39.750839009875904 +2053-09-01,Tripoli,583.6640948907377,39.2963958930644 +2053-10-01,Tripoli,575.7101430564674,39.3064312457377 +2053-11-01,Tripoli,575.9742746024426,39.671428054236 +2053-12-01,Tripoli,574.2942824037862,39.71580957936542 +2054-01-01,Tripoli,569.5866806189325,39.58376284309054 +2054-02-01,Tripoli,570.1694025674564,39.705692378071035 +2054-03-01,Tripoli,573.3723978672009,39.83075707110301 +2054-04-01,Tripoli,571.5518116629839,39.66577516142695 +2054-05-01,Tripoli,569.1856274287699,39.596506317531336 +2054-06-01,Tripoli,572.0890032923016,39.80533595698185 +2054-07-01,Tripoli,573.5326242122358,39.836995359484675 +2054-08-01,Tripoli,569.3800015132092,39.612555764537206 +2054-09-01,Tripoli,568.5708636921503,39.66705093232531 +2054-10-01,Tripoli,571.6342744505979,39.8529754130944 +2054-11-01,Tripoli,570.4507298150278,39.757187615964256 +2054-12-01,Tripoli,566.9856567069481,39.60478370416895 +2055-01-01,Tripoli,574.709189620741,35.17823056429033 +2055-02-01,Tripoli,597.5059733025215,36.47116654194808 +2055-03-01,Tripoli,633.9393138457519,39.18718136343911 +2055-04-01,Tripoli,642.339135602584,41.79695845406768 +2055-05-01,Tripoli,639.5958294430806,40.29302384850041 +2055-06-01,Tripoli,631.776205974113,39.980241122306666 +2055-07-01,Tripoli,636.2411534354305,40.331179540473116 +2055-08-01,Tripoli,658.6482142931811,40.888257269501075 +2055-09-01,Tripoli,647.165767147778,40.42064186264696 +2055-10-01,Tripoli,632.8537916711027,40.06873905420588 +2055-11-01,Tripoli,628.4977271138193,40.25078818069794 +2055-12-01,Tripoli,624.8415867869918,40.26175233728886 +2056-01-01,Tripoli,606.48458357816,39.74468257011533 +2056-02-01,Tripoli,592.2168504835267,39.64445181631405 +2056-03-01,Tripoli,589.5929221754891,39.90735314590441 +2056-04-01,Tripoli,583.4756731645432,39.7522019673489 +2056-05-01,Tripoli,572.7999794159897,39.46441331899236 +2056-06-01,Tripoli,571.8469233191222,39.70000389890498 +2056-07-01,Tripoli,576.4402990011665,40.004471872786254 +2056-08-01,Tripoli,574.1933707865244,39.81020950857266 +2056-09-01,Tripoli,572.1086878454446,39.72683779139894 +2056-10-01,Tripoli,578.2532620097368,40.03335731876112 +2056-11-01,Tripoli,583.8134085789903,40.13729617096154 +2056-12-01,Tripoli,582.0829257625905,39.89240687596546 +2057-01-01,Tripoli,580.6063928267472,35.53297227436088 +2057-02-01,Tripoli,620.2915310455071,37.67222210447402 +2057-03-01,Tripoli,632.1781990103144,38.68004374850358 +2057-04-01,Tripoli,589.1042022353872,38.10350028219799 +2057-05-01,Tripoli,570.3746370950091,37.86039920164104 +2057-06-01,Tripoli,557.0853185357307,37.92730867006772 +2057-07-01,Tripoli,512.3238978166193,35.43078782956044 +2057-08-01,Tripoli,440.9074687860319,29.797092970450382 +2057-09-01,Tripoli,409.75583672082473,25.307048431734685 +2057-10-01,Tripoli,431.8124394334938,25.58182048036048 +2057-11-01,Tripoli,456.80597399418605,25.048436147821455 +2057-12-01,Tripoli,441.7530517479233,25.030699907493904 +2058-01-01,Tripoli,428.35606860354983,25.45846749110008 +2058-02-01,Tripoli,432.41432379847254,25.515273992775175 +2058-03-01,Tripoli,430.12059473201657,25.491686465698315 +2058-04-01,Tripoli,430.0989956776837,25.532859880744407 +2058-05-01,Tripoli,431.1961963095912,25.512398615129776 +2058-06-01,Tripoli,430.0169854085327,25.426706667479824 +2058-07-01,Tripoli,430.35191868942013,25.410922338833586 +2058-08-01,Tripoli,429.87251018692353,25.410514875045966 +2058-09-01,Tripoli,430.0421698014575,25.40680410767005 +2058-10-01,Tripoli,429.6322925012652,25.3681831240796 +2058-11-01,Tripoli,429.17422198475737,25.331873474376135 +2058-12-01,Tripoli,428.9899947566242,25.31638095385728 +2059-01-01,Tripoli,569.5148520152003,34.82105919569577 +2059-02-01,Tripoli,524.4999165294391,32.20292109049064 +2059-03-01,Tripoli,481.0019621682961,27.766416225877666 +2059-04-01,Tripoli,439.4716102981949,25.508931614299296 +2059-05-01,Tripoli,439.0717058087462,24.85420581132915 +2059-06-01,Tripoli,436.74198411992086,24.627857897987692 +2059-07-01,Tripoli,428.49044918252156,24.694742455964477 +2059-08-01,Tripoli,424.98155140175027,24.917658065173526 +2059-09-01,Tripoli,427.8506228848711,25.120338382134882 +2059-10-01,Tripoli,428.4814858360417,25.22113940730705 +2059-11-01,Tripoli,427.8376216813363,25.277503748496443 +2059-12-01,Tripoli,427.87580727779584,25.330343261025245 +2060-01-01,Tripoli,428.2195646687129,25.350925520253668 +2060-02-01,Tripoli,429.2063682001907,25.370108345993167 +2060-03-01,Tripoli,429.70086645297465,25.388380160993528 +2060-04-01,Tripoli,430.0662751118934,25.41644267246282 +2060-05-01,Tripoli,430.20316194696824,25.44628450178199 +2060-06-01,Tripoli,430.33797763984677,25.471833726788336 +2060-07-01,Tripoli,430.5401141563832,25.496105401578475 +2060-08-01,Tripoli,430.6821179310018,25.509819493906384 +2060-09-01,Tripoli,430.7897303024281,25.52229873964648 +2060-10-01,Tripoli,430.9076461711671,25.542654135849045 +2060-11-01,Tripoli,431.007095805702,25.553588044036523 +2060-12-01,Tripoli,431.0791158595532,25.566365325516472 +2061-01-01,Tripoli,577.8079838420883,35.357276202251796 +2061-02-01,Tripoli,631.0829650932656,38.39069463839269 +2061-03-01,Tripoli,685.9627160508942,43.01322718421004 +2061-04-01,Tripoli,680.8229765383771,41.89469638356128 +2061-05-01,Tripoli,660.7316789153219,40.0563888090099 +2061-06-01,Tripoli,643.4911779913027,40.10486988246543 +2061-07-01,Tripoli,658.6429929262997,40.8744373077611 +2061-08-01,Tripoli,660.5017299178637,40.956253901134026 +2061-09-01,Tripoli,642.4607586418088,40.283630829570924 +2061-10-01,Tripoli,632.4551055005929,40.168557006265985 +2061-11-01,Tripoli,630.846837478331,40.39647872624566 +2061-12-01,Tripoli,619.5401067330442,40.109818165405926 +2062-01-01,Tripoli,600.956792079015,39.73725925604566 +2062-02-01,Tripoli,593.6195184825541,39.87174721641057 +2062-03-01,Tripoli,591.7217082621607,39.957681151288114 +2062-04-01,Tripoli,582.8843011515523,39.65690348262747 +2062-05-01,Tripoli,574.4571194322617,39.49538412548726 +2062-06-01,Tripoli,569.9736361185153,39.49588055516739 +2062-07-01,Tripoli,558.4251212775057,39.09967984953583 +2062-08-01,Tripoli,538.107564422922,38.3792500659823 +2062-09-01,Tripoli,514.1496531740489,37.375079582180675 +2062-10-01,Tripoli,476.2421293100718,34.62094376541501 +2062-11-01,Tripoli,415.83345555714055,28.321875665321162 +2062-12-01,Tripoli,402.6046700445743,24.589239583374017 +2063-01-01,Tripoli,582.116620983532,35.60556399434113 +2063-02-01,Tripoli,667.4613246432345,40.42318094921873 +2063-03-01,Tripoli,736.4459542624646,45.44505291735481 +2063-04-01,Tripoli,717.6488246346408,41.72508468883984 +2063-05-01,Tripoli,704.7185620712421,40.57437492487611 +2063-06-01,Tripoli,668.7268273342868,40.845453999304496 +2063-07-01,Tripoli,685.6526364763623,41.69117800789264 +2063-08-01,Tripoli,662.6619312286053,40.85940918920106 +2063-09-01,Tripoli,630.0983023222093,39.829006222338734 +2063-10-01,Tripoli,607.7996196363608,39.465609020587465 +2063-11-01,Tripoli,583.7799396172803,38.96926296841143 +2063-12-01,Tripoli,539.5895797939909,37.32525156511279 +2064-01-01,Tripoli,494.1429068853605,34.873719886780655 +2064-02-01,Tripoli,443.65524791649705,30.99523134136145 +2064-03-01,Tripoli,414.9841828293197,27.215252059723767 +2064-04-01,Tripoli,423.20621704383893,26.15752499829985 +2064-05-01,Tripoli,443.74792717864244,25.53645499246008 +2064-06-01,Tripoli,447.12571643702097,25.079166746406635 +2064-07-01,Tripoli,431.1986329474692,25.179276506594125 +2064-08-01,Tripoli,431.2508466162834,25.384772594052905 +2064-09-01,Tripoli,430.27739237946594,25.461803712068598 +2064-10-01,Tripoli,430.44099520841735,25.558618175598117 +2064-11-01,Tripoli,431.8258757509354,25.65483478833008 +2064-12-01,Tripoli,431.38966535710443,25.724106301202468 +2065-01-01,Tripoli,579.1983990335007,35.41936905725887 +2065-02-01,Tripoli,603.0401696783745,36.7267175095006 +2065-03-01,Tripoli,611.6898164359266,37.21655303766396 +2065-04-01,Tripoli,587.9640645631581,38.55204318101931 +2065-05-01,Tripoli,596.7534350984573,39.428798492909266 +2065-06-01,Tripoli,599.8752555477519,39.847906136540104 +2065-07-01,Tripoli,585.3473939550856,39.17061591425677 +2065-08-01,Tripoli,578.6823539400526,39.041199009764 +2065-09-01,Tripoli,576.141845670224,39.27455654577504 +2065-10-01,Tripoli,565.844683616018,39.02605345622587 +2065-11-01,Tripoli,545.439581843389,38.29935157725153 +2065-12-01,Tripoli,534.911844227699,38.210343870788336 +2066-01-01,Tripoli,532.9450945599144,38.534221533434966 +2066-02-01,Tripoli,526.0323354954701,38.30866986483132 +2066-03-01,Tripoli,519.6342465645282,38.154766877747505 +2066-04-01,Tripoli,525.0187811610031,38.82010809101 +2066-05-01,Tripoli,532.780656312262,39.368680680715556 +2066-06-01,Tripoli,531.9761481031711,39.15736889286446 +2066-07-01,Tripoli,533.945804331853,39.21687995767137 +2066-08-01,Tripoli,542.5453433718997,39.62133847744418 +2066-09-01,Tripoli,547.5363087374086,39.7027440483938 +2066-10-01,Tripoli,548.5731155590541,39.57061724281566 +2066-11-01,Tripoli,554.3425171083593,39.7302113780423 +2066-12-01,Tripoli,560.9161832029672,39.874809422430204 +2067-01-01,Tripoli,572.7172207509191,34.993728648142216 +2067-02-01,Tripoli,548.9915384963757,33.686644424601184 +2067-03-01,Tripoli,533.3736991626547,31.1766950722809 +2067-04-01,Tripoli,503.19287584171184,31.50466516598224 +2067-05-01,Tripoli,531.1066860900754,32.83327646652998 +2067-06-01,Tripoli,518.9724035031944,33.22979922869236 +2067-07-01,Tripoli,481.13756106620684,30.81212796904334 +2067-08-01,Tripoli,466.9906329966535,30.26907482330809 +2067-09-01,Tripoli,469.1235961768303,30.036957471838413 +2067-10-01,Tripoli,469.1837637278606,29.608685451621795 +2067-11-01,Tripoli,470.3817019314671,29.526806582124124 +2067-12-01,Tripoli,475.59563706736935,30.351551543603325 +2068-01-01,Tripoli,489.0650405703883,31.6767714643292 +2068-02-01,Tripoli,508.6301288391328,33.07311427815026 +2068-03-01,Tripoli,527.2998397104934,35.190338822258724 +2068-04-01,Tripoli,546.3046927174169,38.092813699191645 +2068-05-01,Tripoli,558.1563601195622,39.74977497780168 +2068-06-01,Tripoli,559.4744245705542,39.76639558583735 +2068-07-01,Tripoli,567.8999180478866,39.887864277494735 +2068-08-01,Tripoli,583.2537824766387,40.13686557604187 +2068-09-01,Tripoli,588.3282200940254,39.99153623201767 +2068-10-01,Tripoli,583.4311871187133,39.7260798019949 +2068-11-01,Tripoli,581.7821924347763,39.768370628650715 +2068-12-01,Tripoli,581.7476791996901,39.871768568224766 +2069-01-01,Tripoli,566.96487566676,34.65274640300474 +2069-02-01,Tripoli,487.78953025948005,29.821327279565672 +2069-03-01,Tripoli,438.14426921871024,24.993441881376455 +2069-04-01,Tripoli,433.6276998434918,24.67282126005402 +2069-05-01,Tripoli,440.3255822562091,24.507142747439733 +2069-06-01,Tripoli,432.9475123798479,24.588882830145117 +2069-07-01,Tripoli,422.24818324387786,24.747245677419645 +2069-08-01,Tripoli,424.82772993342337,24.888607142638627 +2069-09-01,Tripoli,424.83665847079055,24.9141536986682 +2069-10-01,Tripoli,424.8945982386182,24.957319949706154 +2069-11-01,Tripoli,425.81108736275934,25.037172176172824 +2069-12-01,Tripoli,426.3464689182249,25.1108528386772 +2070-01-01,Tripoli,427.7106728478925,25.203619354098258 +2070-02-01,Tripoli,428.076899520956,25.26774507974881 +2070-03-01,Tripoli,428.5805003566699,25.31725459892157 +2070-04-01,Tripoli,428.7918612880302,25.355267945466284 +2070-05-01,Tripoli,429.2163758200468,25.390538473545423 +2070-06-01,Tripoli,429.6382970731789,25.419059159361062 +2070-07-01,Tripoli,429.94496535468153,25.44106398321046 +2070-08-01,Tripoli,430.14703225299286,25.452481865853105 +2070-09-01,Tripoli,430.220201007558,25.462421135362504 +2070-10-01,Tripoli,430.3638408104661,25.47809425664312 +2070-11-01,Tripoli,430.4442150513276,25.48366174219538 +2070-12-01,Tripoli,430.40583800474906,25.47651511205136 +2071-01-01,Tripoli,573.5679902705792,35.07922665014654 +2071-02-01,Tripoli,568.7023377102247,34.81977452820816 +2071-03-01,Tripoli,581.4078900476029,34.770079959979014 +2071-04-01,Tripoli,588.2606556065797,38.89558141624813 +2071-05-01,Tripoli,623.5060481615034,40.94625235549988 +2071-06-01,Tripoli,617.8447637157565,40.3591272859411 +2071-07-01,Tripoli,604.766336164819,39.6111963656999 +2071-08-01,Tripoli,628.7010993538511,40.40101064880929 +2071-09-01,Tripoli,653.4283093944778,41.031223679420634 +2071-10-01,Tripoli,644.959948495049,40.343851842199925 +2071-11-01,Tripoli,630.3315407808027,40.05599913840078 +2071-12-01,Tripoli,636.9207491441612,40.63418135644609 +2072-01-01,Tripoli,639.7768194237472,40.59946686519504 +2072-02-01,Tripoli,620.3629071307763,39.920393766426145 +2072-03-01,Tripoli,608.9008581253231,39.954426778940686 +2072-04-01,Tripoli,611.0161208717718,40.30862312809026 +2072-05-01,Tripoli,603.158694706583,39.99170348789556 +2072-06-01,Tripoli,588.4864101059765,39.5955454858924 +2072-07-01,Tripoli,583.9904651299396,39.73759910575498 +2072-08-01,Tripoli,580.9950713774008,39.7550880209014 +2072-09-01,Tripoli,567.3268556280933,39.26636812502992 +2072-10-01,Tripoli,556.2403969469777,39.0965429121665 +2072-11-01,Tripoli,553.8037938780896,39.31829573716066 +2072-12-01,Tripoli,549.6611962034754,39.31158237091309 +2073-01-01,Tripoli,578.6886195803104,35.47221924569477 +2073-02-01,Tripoli,607.252107105174,36.90205949735756 +2073-03-01,Tripoli,629.9205495890092,38.60022888771176 +2073-04-01,Tripoli,621.4834994863126,40.175581753137294 +2073-05-01,Tripoli,616.7117445070423,39.65500139184596 +2073-06-01,Tripoli,606.8575980281694,39.56429354717721 +2073-07-01,Tripoli,600.8400075064337,39.53266439307784 +2073-08-01,Tripoli,599.5512871373154,39.52455070368241 +2073-09-01,Tripoli,574.9648973614808,38.78877608299156 +2073-10-01,Tripoli,546.5802416523062,37.916110533179534 +2073-11-01,Tripoli,528.0314054242506,37.38157854062734 +2073-12-01,Tripoli,510.11169169173866,36.505144395609285 +2074-01-01,Tripoli,485.0640289610423,34.73927907833876 +2074-02-01,Tripoli,464.51156281046303,33.35056508979904 +2074-03-01,Tripoli,454.2791108964742,32.694408715277596 +2074-04-01,Tripoli,448.45154332011,31.792875512669212 +2074-05-01,Tripoli,441.6653675934278,30.26372441453352 +2074-06-01,Tripoli,434.85933326803985,28.296917173840974 +2074-07-01,Tripoli,436.2231717020257,26.69757554516343 +2074-08-01,Tripoli,442.60519622752895,25.74650435429669 +2074-09-01,Tripoli,442.3376707930807,25.24077773841611 +2074-10-01,Tripoli,435.3097805889008,25.190899010789504 +2074-11-01,Tripoli,431.80060433522925,25.343041362860873 +2074-12-01,Tripoli,430.97253035694695,25.433734972986827 +2075-01-01,Tripoli,581.1629209180825,35.56301338727924 +2075-02-01,Tripoli,626.8223471225749,38.03915925908761 +2075-03-01,Tripoli,663.4958357332386,41.38091657509217 +2075-04-01,Tripoli,659.1823253160389,41.723122101251434 +2075-05-01,Tripoli,647.4041399504715,40.118035055236646 +2075-06-01,Tripoli,638.3942710917695,40.094370127833315 +2075-07-01,Tripoli,648.3814057851125,40.596716039799134 +2075-08-01,Tripoli,649.2724668525411,40.501476272566755 +2075-09-01,Tripoli,619.2895507409606,39.601837153809555 +2075-10-01,Tripoli,593.7396273253833,39.12248892505337 +2075-11-01,Tripoli,575.4834661155883,38.9257195019893 +2075-12-01,Tripoli,547.8618957715782,38.01565180131399 +2076-01-01,Tripoli,513.845473744093,36.44237984811389 +2076-02-01,Tripoli,483.8577887840943,34.61913064052599 +2076-03-01,Tripoli,451.0506005172358,32.13401344811855 +2076-04-01,Tripoli,431.77615093366785,30.1523542413331 +2076-05-01,Tripoli,435.5805954844843,29.68257251499676 +2076-06-01,Tripoli,450.7989480381071,29.76464444048115 +2076-07-01,Tripoli,465.5976071218005,29.883102526336543 +2076-08-01,Tripoli,476.76064585051034,30.813764941465223 +2076-09-01,Tripoli,497.5986337467225,32.98211462535413 +2076-10-01,Tripoli,535.0417170265964,36.61143906464294 +2076-11-01,Tripoli,558.6289460360005,39.65184666129813 +2076-12-01,Tripoli,554.7282542890031,40.17278822411299 +2077-01-01,Tripoli,588.8496083862487,36.00573791673146 +2077-02-01,Tripoli,729.4423608188397,43.8276102881905 +2077-03-01,Tripoli,824.1877874574318,47.8524735268707 +2077-04-01,Tripoli,791.7176384227696,42.055112563634566 +2077-05-01,Tripoli,796.8013352640927,41.995953803761935 +2077-06-01,Tripoli,710.3870171941728,42.41438708592768 +2077-07-01,Tripoli,711.4949216281873,43.37276326622708 +2077-08-01,Tripoli,693.1517028279225,42.24187510311094 +2077-09-01,Tripoli,685.1229462107975,41.46754088529546 +2077-10-01,Tripoli,688.8163322880459,41.53565139327081 +2077-11-01,Tripoli,689.1905650569943,41.50610582037364 +2077-12-01,Tripoli,662.1114599228524,40.76059121377258 +2078-01-01,Tripoli,638.067222074873,40.50342284629451 +2078-02-01,Tripoli,631.3163950019781,40.675525586005776 +2078-03-01,Tripoli,622.7433805056892,40.401652982553095 +2078-04-01,Tripoli,605.9934966184053,39.95171865717318 +2078-05-01,Tripoli,598.4219925036434,40.01327059955389 +2078-06-01,Tripoli,596.6833817594647,40.086190603677444 +2078-07-01,Tripoli,588.5784453995398,39.79927382106733 +2078-08-01,Tripoli,581.5152935643539,39.688763948047324 +2078-09-01,Tripoli,581.606667484779,39.868373629767206 +2078-10-01,Tripoli,579.9212798736785,39.83685123473883 +2078-11-01,Tripoli,574.7970652253554,39.67577670706109 +2078-12-01,Tripoli,574.3750221403294,39.7854947836379 +2079-01-01,Tripoli,569.4379760901494,34.888175064993035 +2079-02-01,Tripoli,516.4687406789924,31.64458894237852 +2079-03-01,Tripoli,480.34410475034844,27.746591956053287 +2079-04-01,Tripoli,457.05717395485163,26.884483988703497 +2079-05-01,Tripoli,457.59283398321753,26.076492194439787 +2079-06-01,Tripoli,449.6051173097806,25.393674521255825 +2079-07-01,Tripoli,436.54983781868424,25.18273372117643 +2079-08-01,Tripoli,433.05904077643527,25.429983281300366 +2079-09-01,Tripoli,433.0375983631089,25.606759399344323 +2079-10-01,Tripoli,432.3212094224204,25.6711858297115 +2079-11-01,Tripoli,432.8522920524869,25.758246962446936 +2079-12-01,Tripoli,432.8428413784315,25.972606721774866 +2080-01-01,Tripoli,433.9087138090504,26.348410217234385 +2080-02-01,Tripoli,435.3356089504076,26.873807191945325 +2080-03-01,Tripoli,437.8107979205496,27.9353571177697 +2080-04-01,Tripoli,448.4552330860395,30.25989532252059 +2080-05-01,Tripoli,492.8987073711845,33.823330732169616 +2080-06-01,Tripoli,555.4291357700537,37.93179522002618 +2080-07-01,Tripoli,556.2609865370468,39.7437252971121 +2080-08-01,Tripoli,551.654748887918,40.152046715937004 +2080-09-01,Tripoli,577.1527371075814,40.31967625057368 +2080-10-01,Tripoli,594.9815120335752,40.193536849560374 +2080-11-01,Tripoli,602.3287062271108,40.17046799363675 +2080-12-01,Tripoli,604.5194351295524,40.20016302923331 +2081-01-01,Tripoli,572.2815847074451,34.983571412196206 +2081-02-01,Tripoli,512.8700353878605,31.45560759354335 +2081-03-01,Tripoli,453.5764889597964,26.02142497596295 +2081-04-01,Tripoli,430.03057836698065,24.73863466868518 +2081-05-01,Tripoli,439.9887344741317,24.626706679338824 +2081-06-01,Tripoli,436.4087738901042,24.54085281376453 +2081-07-01,Tripoli,424.18912195471194,24.71601509051865 +2081-08-01,Tripoli,425.7163195538614,24.98414494561086 +2081-09-01,Tripoli,427.36822079869575,25.109673150942733 +2081-10-01,Tripoli,427.71793054785763,25.23510527311071 +2081-11-01,Tripoli,427.98333262644076,25.33809219026145 +2081-12-01,Tripoli,428.0118238850571,25.385403362230686 +2082-01-01,Tripoli,428.9595193785929,25.43153662578331 +2082-02-01,Tripoli,429.722691766539,25.46755980531294 +2082-03-01,Tripoli,430.45535396734135,25.501275209591288 +2082-04-01,Tripoli,430.8176994243563,25.5293991075264 +2082-05-01,Tripoli,431.06132840304383,25.562356522400705 +2082-06-01,Tripoli,431.37650751256325,25.60784567289167 +2082-07-01,Tripoli,431.7190987982101,25.659162089340974 +2082-08-01,Tripoli,432.07389067780326,25.712374368959324 +2082-09-01,Tripoli,432.31087111599516,25.75506287315459 +2082-10-01,Tripoli,432.51855968598215,25.80181978761359 +2082-11-01,Tripoli,432.71383880734766,25.838775329696556 +2082-12-01,Tripoli,432.80138372539295,25.838549356329622 +2083-01-01,Tripoli,578.0881275798333,35.44256869304446 +2083-02-01,Tripoli,606.6354462719208,36.87089652453486 +2083-03-01,Tripoli,619.7089135243209,37.70666169111726 +2083-04-01,Tripoli,585.8825144422073,37.86724067877381 +2083-05-01,Tripoli,577.3852793839241,38.100954078354825 +2083-06-01,Tripoli,583.6679412976737,39.39680457865067 +2083-07-01,Tripoli,589.5378019457775,39.79630591889374 +2083-08-01,Tripoli,589.6933116560627,39.79509776207368 +2083-09-01,Tripoli,595.3152966137487,40.13954878735948 +2083-10-01,Tripoli,606.7080058670165,40.40638774735161 +2083-11-01,Tripoli,606.2362379647229,40.09878817405456 +2083-12-01,Tripoli,603.4228262525583,39.97603303559171 +2084-01-01,Tripoli,607.5730123137067,40.197851695346316 +2084-02-01,Tripoli,610.5819816201372,40.24214781321894 +2084-03-01,Tripoli,606.2408675766911,40.03043567885163 +2084-04-01,Tripoli,604.4591631511845,40.066360106240595 +2084-05-01,Tripoli,606.5842594719265,40.22355572100561 +2084-06-01,Tripoli,604.4318379978383,40.128520575325965 +2084-07-01,Tripoli,599.0524551500198,39.98635841707454 +2084-08-01,Tripoli,596.6604599588553,40.01011586900606 +2084-09-01,Tripoli,594.3453755018543,39.97729279262943 +2084-10-01,Tripoli,588.8463363296697,39.82543869004974 +2084-11-01,Tripoli,584.4455246582125,39.78743424009427 +2084-12-01,Tripoli,583.3595499651001,39.88441951813738 +2085-01-01,Tripoli,571.6432203925215,34.994085401371116 +2085-02-01,Tripoli,540.2478723258453,33.11847264877926 +2085-03-01,Tripoli,528.3195726624367,30.854877859704423 +2085-04-01,Tripoli,540.6069979399501,34.481056465034655 +2085-05-01,Tripoli,618.8249013021822,40.806819670830166 +2085-06-01,Tripoli,624.1279477661942,40.58740131085504 +2085-07-01,Tripoli,579.8437251709329,39.08562145920397 +2085-08-01,Tripoli,604.4956082920169,40.21931916520505 +2085-09-01,Tripoli,642.7205564532724,40.82591886863072 +2085-10-01,Tripoli,627.4079408228836,39.97528572209477 +2085-11-01,Tripoli,613.8359374606446,39.841858235168374 +2085-12-01,Tripoli,624.0037662571975,40.5079138445476 +2086-01-01,Tripoli,624.580309588245,40.34934637572033 +2086-02-01,Tripoli,604.7364525417009,39.68242779718392 +2086-03-01,Tripoli,596.9295343988117,39.860060656772596 +2086-04-01,Tripoli,598.7240137686216,40.14850587341575 +2086-05-01,Tripoli,588.0660204537962,39.71689140461814 +2086-06-01,Tripoli,577.3456144001815,39.524675255931896 +2086-07-01,Tripoli,579.5142221116021,39.88358145943009 +2086-08-01,Tripoli,578.9472512865038,39.854987821582604 +2086-09-01,Tripoli,569.0209629218858,39.442787489844974 +2086-10-01,Tripoli,565.8661782430132,39.51848678845003 +2086-11-01,Tripoli,570.1146652379828,39.86342000887316 +2086-12-01,Tripoli,566.845167128725,39.65631096978347 +2087-01-01,Tripoli,579.4133975171217,35.40633199537284 +2087-02-01,Tripoli,647.6608049418064,39.35653149843661 +2087-03-01,Tripoli,713.7030724914566,44.785160865007555 +2087-04-01,Tripoli,712.7594670686445,42.490041901586494 +2087-05-01,Tripoli,705.1016711638889,40.671548810611306 +2087-06-01,Tripoli,675.3583287693848,40.7410916694558 +2087-07-01,Tripoli,689.2993435336907,41.74151668918344 +2087-08-01,Tripoli,687.4502138571886,41.603763680564 +2087-09-01,Tripoli,668.805321883071,40.74869469462831 +2087-10-01,Tripoli,661.2921404363747,40.657588282761196 +2087-11-01,Tripoli,665.172555875316,40.99053068019401 +2087-12-01,Tripoli,650.7878293534261,40.54156608304228 +2088-01-01,Tripoli,625.158924061489,40.05737988905228 +2088-02-01,Tripoli,615.0272445283117,40.2527205198829 +2088-03-01,Tripoli,612.6356148328288,40.32965288575792 +2088-04-01,Tripoli,600.3725907432081,39.89818965897756 +2088-05-01,Tripoli,591.7847475649758,39.833216088371536 +2088-06-01,Tripoli,594.849411451475,40.17074378790348 +2088-07-01,Tripoli,595.3661179180614,40.1371413703086 +2088-08-01,Tripoli,589.3434800750069,39.862094417075 +2088-09-01,Tripoli,588.7224681026859,39.940742045357304 +2088-10-01,Tripoli,591.9835075975957,40.09488613000978 +2088-11-01,Tripoli,589.3446635848334,39.928680049653 +2088-12-01,Tripoli,585.5498959673038,39.83862699395301 +2089-01-01,Tripoli,571.8881373083731,34.94882133458816 +2089-02-01,Tripoli,530.4369761693068,32.565227570399934 +2089-03-01,Tripoli,491.2563960368557,28.444297181687155 +2089-04-01,Tripoli,456.9197127694199,27.268151179400537 +2089-05-01,Tripoli,462.3616475924779,27.039293538231828 +2089-06-01,Tripoli,458.79858683258993,26.663656408991272 +2089-07-01,Tripoli,448.16821454856733,25.96333825509487 +2089-08-01,Tripoli,440.47444342599863,26.280695607480638 +2089-09-01,Tripoli,438.8189046289036,26.95403396481939 +2089-10-01,Tripoli,440.233372917083,27.428943685199073 +2089-11-01,Tripoli,443.9786419765766,27.339419086900485 +2089-12-01,Tripoli,444.38491653362064,27.779665026587832 +2090-01-01,Tripoli,444.3574521438244,28.365278565633147 +2090-02-01,Tripoli,447.0645742308394,28.03787429500807 +2090-03-01,Tripoli,445.4077997102491,27.644411959547472 +2090-04-01,Tripoli,443.57569168978034,27.968940852527155 +2090-05-01,Tripoli,447.23447750916114,28.499407993451314 +2090-06-01,Tripoli,453.649048554892,28.794231174927344 +2090-07-01,Tripoli,461.3456914292455,29.68796028944618 +2090-08-01,Tripoli,478.30862448984794,31.56449472868427 +2090-09-01,Tripoli,508.7547628665926,33.93323296814389 +2090-10-01,Tripoli,534.3834418992982,36.44655501744862 +2090-11-01,Tripoli,544.5122322761345,38.96596589243561 +2090-12-01,Tripoli,555.7008905116758,40.12274135094957 +2091-01-01,Tripoli,566.4594473526375,34.68762815013368 +2091-02-01,Tripoli,494.8090662766496,30.267009924943313 +2091-03-01,Tripoli,452.70523427740466,25.89298135833406 +2091-04-01,Tripoli,443.302005042412,25.214257895522657 +2091-05-01,Tripoli,449.28151439502585,24.840918755285216 +2091-06-01,Tripoli,439.4887537861223,24.802223930003994 +2091-07-01,Tripoli,426.32843779792773,24.954278205841792 +2091-08-01,Tripoli,426.688746921859,25.140400190892215 +2091-09-01,Tripoli,427.0118276999256,25.14742315844567 +2091-10-01,Tripoli,426.6091558860297,25.121427324659006 +2091-11-01,Tripoli,426.83557175856475,25.144136758376952 +2091-12-01,Tripoli,427.2044787332941,25.185206972987757 +2092-01-01,Tripoli,428.51963662338875,25.252105765507338 +2092-02-01,Tripoli,429.0450975817796,25.301123303294606 +2092-03-01,Tripoli,429.30559157549413,25.33103630532777 +2092-04-01,Tripoli,429.3053653162626,25.360745575467124 +2092-05-01,Tripoli,429.6346073072493,25.40447053230994 +2092-06-01,Tripoli,430.0501933018986,25.43771263804022 +2092-07-01,Tripoli,430.23790144128606,25.451800387116602 +2092-08-01,Tripoli,430.33818649452206,25.464707558799592 +2092-09-01,Tripoli,430.4212410370493,25.481088848584463 +2092-10-01,Tripoli,430.61695527232155,25.506340037850958 +2092-11-01,Tripoli,430.8935658851435,25.54286231603748 +2092-12-01,Tripoli,431.15759300378113,25.580992207901364 +2093-01-01,Tripoli,562.3285803489504,34.394844956572534 +2093-02-01,Tripoli,465.40023945368245,28.159682836374778 +2093-03-01,Tripoli,420.8965976175071,24.271918707004176 +2093-04-01,Tripoli,437.5564825443114,24.639118311000622 +2093-05-01,Tripoli,445.32333539866386,24.433209421800672 +2093-06-01,Tripoli,429.08991431417854,24.643660909471354 +2093-07-01,Tripoli,422.4922473364722,24.88849059731946 +2093-08-01,Tripoli,425.052387945775,24.94578107344972 +2093-09-01,Tripoli,424.5115065505277,24.936044646175205 +2093-10-01,Tripoli,424.0233609607828,24.92790782564773 +2093-11-01,Tripoli,424.56123136779513,24.9389449342705 +2093-12-01,Tripoli,424.5313825537897,24.92790782564773 +2094-01-01,Tripoli,425.398059837882,24.96179849273429 +2094-02-01,Tripoli,425.89962434051216,25.004147147220227 +2094-03-01,Tripoli,426.6614217685128,25.06690190846745 +2094-04-01,Tripoli,427.1750128195265,25.127524157271598 +2094-05-01,Tripoli,427.5974910184593,25.182249746721265 +2094-06-01,Tripoli,428.0422296448633,25.239603388635192 +2094-07-01,Tripoli,428.31562041477497,25.267476402753477 +2094-08-01,Tripoli,428.5091590805133,25.291676015170697 +2094-09-01,Tripoli,428.86386393732516,25.325754400290418 +2094-10-01,Tripoli,429.14656614484204,25.34506088862048 +2094-11-01,Tripoli,429.2662050646519,25.355560643252588 +2094-12-01,Tripoli,429.38379024682166,25.368683112395413 +2095-01-01,Tripoli,578.0735425616779,35.41034524678323 +2095-02-01,Tripoli,648.6289159798486,39.38848448838466 +2095-03-01,Tripoli,708.1648034494362,44.02752198657744 +2095-04-01,Tripoli,690.6431145142956,41.487463907260505 +2095-05-01,Tripoli,669.2593371379676,40.06811629295842 +2095-06-01,Tripoli,648.2550835156944,40.32911731108511 +2095-07-01,Tripoli,665.3576881403751,41.05906822445333 +2095-08-01,Tripoli,648.5540067696563,40.523436613469904 +2095-09-01,Tripoli,622.8597299643636,39.81510797061337 +2095-10-01,Tripoli,614.7840680680872,39.94692517488562 +2095-11-01,Tripoli,607.5437030409456,39.89933376035502 +2095-12-01,Tripoli,581.0335180422044,39.075890369883005 +2096-01-01,Tripoli,561.6793729954695,38.88775063839083 +2096-02-01,Tripoli,560.8902504141228,39.43503500197308 +2096-03-01,Tripoli,558.7404222189191,39.50467928193501 +2096-04-01,Tripoli,551.1286091518325,39.23451655619932 +2096-05-01,Tripoli,553.4288823314466,39.52007216065428 +2096-06-01,Tripoli,562.1593732528795,39.95452464142243 +2096-07-01,Tripoli,564.7733113456172,39.87227745312983 +2096-08-01,Tripoli,565.7030627416373,39.75895981654273 +2096-09-01,Tripoli,572.5111508046652,39.96049959076231 +2096-10-01,Tripoli,578.916549649241,40.056689513726525 +2096-11-01,Tripoli,578.820946421642,39.86640214558955 +2096-12-01,Tripoli,578.9882216119669,39.82415224324428 +2097-01-01,Tripoli,574.6341933877673,35.23198197721718 +2097-02-01,Tripoli,563.1401199987748,34.39292863124822 +2097-03-01,Tripoli,557.6735577285926,32.9204941792362 +2097-04-01,Tripoli,535.7885291316474,33.83943266905206 +2097-05-01,Tripoli,549.7657627775542,34.434747049014895 +2097-06-01,Tripoli,508.8027646327892,33.43955233410696 +2097-07-01,Tripoli,446.2146923435491,29.287156488537 +2097-08-01,Tripoli,425.2072188783657,26.183893599176063 +2097-09-01,Tripoli,435.8099701315856,25.41421318719693 +2097-10-01,Tripoli,445.5492117299545,24.952044272281277 +2097-11-01,Tripoli,437.94397758513855,24.900126446398716 +2097-12-01,Tripoli,428.8501143378707,25.14483336131518 +2098-01-01,Tripoli,429.90427350211894,25.268532427897377 +2098-02-01,Tripoli,428.84717296786084,25.292706240205774 +2098-03-01,Tripoli,429.1565737646981,25.387158659289586 +2098-04-01,Tripoli,430.2350644986138,25.474081894891654 +2098-05-01,Tripoli,430.42613171736156,25.511956454644082 +2098-06-01,Tripoli,431.12991975930953,25.55171353268168 +2098-07-01,Tripoli,431.12151335863047,25.581889873756626 +2098-08-01,Tripoli,431.54158972879776,25.627670832374974 +2098-09-01,Tripoli,431.76412438528433,25.66363529441556 +2098-10-01,Tripoli,432.0078751958658,25.70822944802804 +2098-11-01,Tripoli,432.3037352479239,25.778155749869182 +2098-12-01,Tripoli,432.55350803497515,25.84466843041534 +2099-01-01,Tripoli,578.4871444369123,35.453133392778085 +2099-02-01,Tripoli,601.980545483457,36.60743382016287 +2099-03-01,Tripoli,603.1296116930533,36.328264187471106 +2099-04-01,Tripoli,537.5150959228862,34.456612196413076 +2099-05-01,Tripoli,497.86991856532535,32.30337692799993 +2099-06-01,Tripoli,448.5597822555621,29.100255162268333 +2099-07-01,Tripoli,422.84143494894596,25.436417294645512 +2099-08-01,Tripoli,434.97662257275306,25.21890369442868 +2099-09-01,Tripoli,445.67974590199026,24.890115114516398 +2099-10-01,Tripoli,435.98526882235143,24.867086293244395 +2099-11-01,Tripoli,425.678847544209,25.018108564729268 +2099-12-01,Tripoli,427.11634206033557,25.084327657830197 +2100-01-01,Tripoli,426.64586209520616,25.11444439175717 +2100-02-01,Tripoli,427.4711687490412,25.162827602730957 +2100-03-01,Tripoli,428.1915085240033,25.175503463093467 +2100-04-01,Tripoli,427.6675617620081,25.170458207330146 +2100-05-01,Tripoli,428.33071016506227,25.21634147672486 +2100-06-01,Tripoli,428.4011115951802,25.230298445939276 +2100-07-01,Tripoli,428.60885237883605,25.239100731342603 +2100-08-01,Tripoli,428.6392581386423,25.25629605904379 +2100-09-01,Tripoli,428.87524651712664,25.28541103702129 +2100-10-01,Tripoli,429.1271948737119,25.312316991888167 +2100-11-01,Tripoli,429.19169615925387,25.32388967518375 +2100-12-01,Tripoli,429.2541263025995,25.338371543163877 +2101-01-01,Tripoli,586.3451449524582,35.84886079986157 +2101-02-01,Tripoli,693.5248217052695,41.81203995216322 +2101-03-01,Tripoli,769.0769910152999,46.481873883701624 +2101-04-01,Tripoli,744.5943149902869,41.76510154728352 +2101-05-01,Tripoli,735.5962986344058,40.91469081547881 +2101-06-01,Tripoli,673.5747794609133,41.055208884036944 +2101-07-01,Tripoli,683.6580395185434,41.940826978137125 +2101-08-01,Tripoli,658.1319951541705,40.972189471797506 +2101-09-01,Tripoli,627.155592161504,39.84712857463971 +2101-10-01,Tripoli,615.5572306713331,39.87483967083365 +2101-11-01,Tripoli,607.4533037756718,39.9195574870367 +2101-12-01,Tripoli,575.4217495590497,38.88188600675764 +2102-01-01,Tripoli,555.4539198581842,38.73324535221482 +2102-02-01,Tripoli,560.2678112681875,39.65699956579137 +2102-03-01,Tripoli,563.0747484854193,39.81344786705944 +2102-04-01,Tripoli,554.6950463956371,39.34991599467078 +2102-05-01,Tripoli,558.5445513426403,39.63578475906732 +2102-06-01,Tripoli,568.6840803306959,39.99219813825783 +2102-07-01,Tripoli,565.4735836671985,39.6006681419822 +2102-08-01,Tripoli,558.2161795794672,39.26158176001376 +2102-09-01,Tripoli,557.4836044014462,39.3594887247031 +2102-10-01,Tripoli,550.3771152211445,39.123488901685 +2102-11-01,Tripoli,530.9027220951305,38.30338173218149 +2102-12-01,Tripoli,506.76606605334973,37.07550829102225 +2103-01-01,Tripoli,577.9830388690664,35.321134698085146 +2103-02-01,Tripoli,609.0663580509083,37.129794388963 +2103-03-01,Tripoli,659.2261151796179,41.583027510341566 +2103-04-01,Tripoli,682.4192876304804,43.30308339990815 +2103-05-01,Tripoli,677.1255177949611,40.64146054576993 +2103-06-01,Tripoli,666.5381695740415,40.324923458912956 +2103-07-01,Tripoli,669.4453396308404,40.97762706714671 +2103-08-01,Tripoli,688.4220494702729,41.52026207318724 +2103-09-01,Tripoli,672.1971044046918,40.85226522803381 +2103-10-01,Tripoli,661.4773075105466,40.572006652817926 +2103-11-01,Tripoli,662.0031165600628,40.80672358766627 +2103-12-01,Tripoli,654.1647831931035,40.59023576418989 +2104-01-01,Tripoli,626.3727700295275,39.92286879755531 +2104-02-01,Tripoli,606.0115799523712,39.818010038026515 +2104-03-01,Tripoli,597.9822489848893,39.937880902254705 +2104-04-01,Tripoli,585.2497892035155,39.6210786970381 +2104-05-01,Tripoli,572.9266497765332,39.430901646607815 +2104-06-01,Tripoli,572.8194551144575,39.779251157302696 +2104-07-01,Tripoli,573.4381696853507,39.857443280215435 +2104-08-01,Tripoli,566.7823366805852,39.53096158589551 +2104-09-01,Tripoli,563.6465925862735,39.4936226008159 +2104-10-01,Tripoli,565.8520109342082,39.685536265467654 +2104-11-01,Tripoli,562.5883607558578,39.52799190440407 +2104-12-01,Tripoli,554.4818231767557,39.21916638110845 +2105-01-01,Tripoli,570.7375220932686,34.95642969771422 +2105-02-01,Tripoli,566.8026826068665,34.7089523849055 +2105-03-01,Tripoli,590.7028455380309,35.43072466377677 +2105-04-01,Tripoli,590.6793493870646,38.38373572628183 +2105-05-01,Tripoli,589.4480988627545,38.26485149380139 +2105-06-01,Tripoli,572.3902935659164,38.82828761516587 +2105-07-01,Tripoli,564.3495278049642,38.705272696296944 +2105-08-01,Tripoli,552.8012566277424,38.15707999095234 +2105-09-01,Tripoli,525.8216359372481,37.04427414548555 +2105-10-01,Tripoli,496.70229909874365,35.1325145507735 +2105-11-01,Tripoli,447.7820248494605,31.24309298682574 +2105-12-01,Tripoli,416.8522660676015,27.456201055341296 +2106-01-01,Tripoli,422.4770183497347,26.056139467214 +2106-02-01,Tripoli,442.1555669208127,25.442967853309824 +2106-03-01,Tripoli,448.97420214494116,25.044760966802535 +2106-04-01,Tripoli,432.34578465587566,25.15983123147177 +2106-05-01,Tripoli,431.62292122025417,25.417362579791206 +2106-06-01,Tripoli,430.79963349494653,25.500071501065847 +2106-07-01,Tripoli,430.7241151252848,25.586896874186174 +2106-08-01,Tripoli,431.8863739885349,25.634942904427408 +2106-09-01,Tripoli,431.1235148826017,25.62666195915409 +2106-10-01,Tripoli,431.79590510503596,25.673297879999303 +2106-11-01,Tripoli,431.7267393984133,25.68975034249817 +2106-12-01,Tripoli,432.0247228063365,25.693574096557548 +2107-01-01,Tripoli,572.8009714756972,35.039450889271514 +2107-02-01,Tripoli,522.4946505786259,32.03846941753384 +2107-03-01,Tripoli,471.94468329831074,27.255649692187315 +2107-04-01,Tripoli,440.9106538198296,25.512108586320245 +2107-05-01,Tripoli,444.1114387409276,24.924879426667243 +2107-06-01,Tripoli,437.3894510177745,24.610682142782856 +2107-07-01,Tripoli,425.436471693573,24.66015340662184 +2107-08-01,Tripoli,423.5221271447217,24.83289759041798 +2107-09-01,Tripoli,425.27116321810695,24.883901736584633 +2107-10-01,Tripoli,425.5300559926445,24.912360146275528 +2107-11-01,Tripoli,425.58921407941114,24.958424016432 +2107-12-01,Tripoli,425.69270157100107,24.99526034421903 +2108-01-01,Tripoli,426.0242931770845,25.019408356418598 +2108-02-01,Tripoli,426.65623521074394,25.063039009415373 +2108-03-01,Tripoli,427.5292825624316,25.138781901307755 +2108-04-01,Tripoli,428.1764013691598,25.1944772189856 +2108-05-01,Tripoli,428.11050771911613,25.206062357506134 +2108-06-01,Tripoli,428.057406417932,25.22548272217859 +2108-07-01,Tripoli,428.38584779933024,25.262556588898576 +2108-08-01,Tripoli,428.8121898097553,25.293057655481125 +2108-09-01,Tripoli,429.05754183951365,25.312978898128318 +2108-10-01,Tripoli,429.16198658169856,25.32968669273864 +2108-11-01,Tripoli,429.3167304915078,25.35532844227318 +2108-12-01,Tripoli,429.51213144476725,25.376705166921575 +2109-01-01,Tripoli,580.643638577168,35.50364822653602 +2109-02-01,Tripoli,622.2487430164549,37.81019396918898 +2109-03-01,Tripoli,663.875846814869,41.6499138476362 +2109-04-01,Tripoli,668.542426060591,42.43125146050879 +2109-05-01,Tripoli,662.4090952396502,40.47056418356088 +2109-06-01,Tripoli,649.5348753474454,40.10206567753403 +2109-07-01,Tripoli,653.5719666019422,40.62228661661968 +2109-08-01,Tripoli,671.0595948204596,41.24199811328107 +2109-09-01,Tripoli,660.8063618662827,40.713683057296336 +2109-10-01,Tripoli,645.7844719438519,40.203168297081746 +2109-11-01,Tripoli,639.3393210927521,40.35892800234191 +2109-12-01,Tripoli,633.9828600455431,40.40293587072286 +2110-01-01,Tripoli,614.5928268037767,39.92422463775692 +2110-02-01,Tripoli,598.9370977510528,39.78703389357805 +2110-03-01,Tripoli,596.8040475480947,40.066669707546474 +2110-04-01,Tripoli,594.2140755293426,40.03609746824993 +2110-05-01,Tripoli,586.5438527714091,39.7968539487915 +2110-06-01,Tripoli,585.9756114137031,39.95250155702713 +2110-07-01,Tripoli,591.2914676311309,40.2037447960651 +2110-08-01,Tripoli,590.9855303409915,40.05063983303695 +2110-09-01,Tripoli,588.1743812211422,39.897965464928475 +2110-10-01,Tripoli,589.7538969164436,39.98367164712123 +2110-11-01,Tripoli,589.2819375640311,39.91377114538891 +2110-12-01,Tripoli,581.7594794888421,39.622226357051275 +2111-01-01,Tripoli,563.7559628178832,34.49695022172865 +2111-02-01,Tripoli,488.78568003767555,29.87829303018833 +2111-03-01,Tripoli,451.4067325476618,25.765274378295015 +2111-04-01,Tripoli,446.39860628966926,25.314832947327886 +2111-05-01,Tripoli,452.6095440270243,24.96693360404903 +2111-06-01,Tripoli,443.22867964684053,25.09073765038437 +2111-07-01,Tripoli,430.8782672801809,25.408460652588285 +2111-08-01,Tripoli,432.1186029828646,25.723042269128243 +2111-09-01,Tripoli,432.818057290301,26.05024013888274 +2111-10-01,Tripoli,434.0670778665642,26.364566423311246 +2111-11-01,Tripoli,436.27743910848,26.660465202427524 +2111-12-01,Tripoli,436.8891744523084,27.3069118394422 +2112-01-01,Tripoli,442.0383298297683,28.912594956936694 +2112-02-01,Tripoli,462.0768742427647,31.092650772959924 +2112-03-01,Tripoli,508.12367365619036,33.59463056063063 +2112-04-01,Tripoli,539.0992760392683,36.898249088182055 +2112-05-01,Tripoli,543.6800160134595,39.47386683472874 +2112-06-01,Tripoli,553.4489497848275,40.00587041661626 +2112-07-01,Tripoli,564.3464646030604,39.88095340696582 +2112-08-01,Tripoli,579.810900177805,40.016815000710835 +2112-09-01,Tripoli,589.6639327650765,40.04375743159363 +2112-10-01,Tripoli,584.5682267799261,39.7551058140799 +2112-11-01,Tripoli,577.4264063503934,39.596956484947356 +2112-12-01,Tripoli,573.3149628315052,39.59963969626496 +2113-01-01,Tripoli,569.0304484050538,34.79654909231375 +2113-02-01,Tripoli,517.7594451675257,31.782745856149877 +2113-03-01,Tripoli,487.8479573548832,28.165215625228964 +2113-04-01,Tripoli,466.92329476843935,28.07650595450562 +2113-05-01,Tripoli,476.5149631341828,28.517013453916896 +2113-06-01,Tripoli,483.67937467775585,29.58554898161988 +2113-07-01,Tripoli,487.01668093824696,29.737478705208186 +2113-08-01,Tripoli,490.85683963853245,31.30203200094391 +2113-09-01,Tripoli,512.5026078004144,33.800876630563124 +2113-10-01,Tripoli,534.179269049678,35.5883811218649 +2113-11-01,Tripoli,531.6300236926011,36.15358677483108 +2113-12-01,Tripoli,532.4904875501045,37.47740459309125 +2114-01-01,Tripoli,543.2140960420733,38.58807080884357 +2114-02-01,Tripoli,534.2440662126766,38.16611714631185 +2114-03-01,Tripoli,517.7046208152706,37.408080590342294 +2114-04-01,Tripoli,508.4769339348317,36.94159149168715 +2114-05-01,Tripoli,483.8357198067421,35.07095104282676 +2114-06-01,Tripoli,433.5259354029727,30.453023371604893 +2114-07-01,Tripoli,408.78090309672405,26.073461126482528 +2114-08-01,Tripoli,420.3350396094093,25.25303812806067 +2114-09-01,Tripoli,443.34629963812284,24.78237830836542 +2114-10-01,Tripoli,439.22566651352327,24.62997617588797 +2114-11-01,Tripoli,424.1649818351634,24.84495424816873 +2114-12-01,Tripoli,427.8429474755554,25.103352124281052 diff --git a/main_timegan.py b/main_timegan.py index eb7c46b5..0a05b02e 100644 --- a/main_timegan.py +++ b/main_timegan.py @@ -25,7 +25,7 @@ from __future__ import absolute_import from __future__ import division from __future__ import print_function - +import pandas as pd import argparse import numpy as np import warnings @@ -40,38 +40,24 @@ from metrics.predictive_metrics import predictive_score_metrics from metrics.visualization_metrics import visualization - def main (args): - """Main function for timeGAN experiments. - - Args: - - data_name: sine, stock, or energy - - seq_len: sequence length - - Network parameters (should be optimized for different datasets) - - module: gru, lstm, or lstmLN - - hidden_dim: hidden dimensions - - num_layer: number of layers - - iteration: number of training iterations - - batch_size: the number of samples in each batch - - metric_iteration: number of iterations for metric computation + """Main function for timeGAN experiments.""" - Returns: - - ori_data: original data - - generated_data: generated synthetic data - - metric_results: discriminative and predictive scores - """ ## Data loading - if args.data_name in ['stock', 'energy']: - ori_data = real_data_loading(args.data_name, args.seq_len) - elif args.data_name == 'sine': + + # We simplify the logic to handle 'sine' or any other real data name. + if args.data_name == 'sine': # Set number of samples and its dimensions no, dim = 10000, 5 ori_data = sine_data_generation(no, args.seq_len, dim) - + else: # This will now correctly handle 'Beirut', 'Tripoli', etc. + ori_data = real_data_loading(args.data_name, args.seq_len) + + print(args.data_name + ' dataset is ready.') ## Synthetic data generation by TimeGAN - # Set newtork parameters + # Set network parameters parameters = dict() parameters['module'] = args.module parameters['hidden_dim'] = args.hidden_dim @@ -109,22 +95,32 @@ def main (args): ## Print discriminative and predictive scores print(metric_results) - return ori_data, generated_data, metric_results + # Reshape and save the data + stacked_data = np.asarray(generated_data) + num_samples, seq_len, num_features = stacked_data.shape + reshaped_data = stacked_data.reshape(num_samples * seq_len, num_features) + + pd.DataFrame(reshaped_data).to_csv('{city}_synthetic_data.csv', index=False) + print("Synthetic data saved to {city}_synthetic_data.csv") + return ori_data, generated_data, metric_results if __name__ == '__main__': # Inputs for the main function parser = argparse.ArgumentParser() + + parser.add_argument( '--data_name', - choices=['sine','stock','energy'], - default='stock', + default='Tripoli', # Set a default city for easy testing type=str) + + parser.add_argument( '--seq_len', help='sequence length', - default=24, + default=24, # A good starting point for optimization type=int) parser.add_argument( '--module', @@ -144,12 +140,12 @@ def main (args): parser.add_argument( '--iteration', help='Training iterations (should be optimized)', - default=50000, + default=5000, # A good number for initial quality tests type=int) parser.add_argument( '--batch_size', help='the number of samples in mini-batch (should be optimized)', - default=128, + default=128, # Try a different batch size type=int) parser.add_argument( '--metric_iteration', @@ -158,6 +154,4 @@ def main (args): type=int) args = parser.parse_args() - - # Calls main function - ori_data, generated_data, metrics = main(args) \ No newline at end of file + ori_data, generated_data, metrics = main(args) diff --git a/metrics/__pycache__/discriminative_metrics.cpython-312.pyc b/metrics/__pycache__/discriminative_metrics.cpython-312.pyc new file mode 100644 index 00000000..cd394e14 Binary files /dev/null and b/metrics/__pycache__/discriminative_metrics.cpython-312.pyc differ diff --git a/metrics/__pycache__/discriminative_metrics.cpython-37.pyc b/metrics/__pycache__/discriminative_metrics.cpython-37.pyc new file mode 100644 index 00000000..7ccaa1e4 Binary files /dev/null and b/metrics/__pycache__/discriminative_metrics.cpython-37.pyc differ diff --git a/metrics/__pycache__/predictive_metrics.cpython-312.pyc b/metrics/__pycache__/predictive_metrics.cpython-312.pyc new file mode 100644 index 00000000..ee514871 Binary files /dev/null and b/metrics/__pycache__/predictive_metrics.cpython-312.pyc differ diff --git a/metrics/__pycache__/predictive_metrics.cpython-37.pyc b/metrics/__pycache__/predictive_metrics.cpython-37.pyc new file mode 100644 index 00000000..2a4e3a41 Binary files /dev/null and b/metrics/__pycache__/predictive_metrics.cpython-37.pyc differ diff --git a/metrics/__pycache__/visualization_metrics.cpython-312.pyc b/metrics/__pycache__/visualization_metrics.cpython-312.pyc new file mode 100644 index 00000000..3e00de6f Binary files /dev/null and b/metrics/__pycache__/visualization_metrics.cpython-312.pyc differ diff --git a/metrics/__pycache__/visualization_metrics.cpython-37.pyc b/metrics/__pycache__/visualization_metrics.cpython-37.pyc new file mode 100644 index 00000000..0784bb77 Binary files /dev/null and b/metrics/__pycache__/visualization_metrics.cpython-37.pyc differ diff --git a/metrics/discriminative_metrics.py b/metrics/discriminative_metrics.py index e0f8047e..12da5b33 100644 --- a/metrics/discriminative_metrics.py +++ b/metrics/discriminative_metrics.py @@ -17,7 +17,9 @@ Output: discriminative score (np.abs(classification accuracy - 0.5)) """ - +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this # Necessary Packages import tensorflow as tf import numpy as np diff --git a/metrics/predictive_metrics.py b/metrics/predictive_metrics.py index 4f343068..16ad5b58 100644 --- a/metrics/predictive_metrics.py +++ b/metrics/predictive_metrics.py @@ -15,8 +15,10 @@ Note: Use Post-hoc RNN to predict one-step ahead (last feature) """ - -# Necessary Packages +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this +# # Necessary Packages import tensorflow as tf import numpy as np from sklearn.metrics import mean_absolute_error diff --git a/min_max_Baabda.npz b/min_max_Baabda.npz new file mode 100644 index 00000000..b99267e1 Binary files /dev/null and b/min_max_Baabda.npz differ diff --git a/min_max_Beirut.npz b/min_max_Beirut.npz new file mode 100644 index 00000000..882ddb6d Binary files /dev/null and b/min_max_Beirut.npz differ diff --git a/min_max_Bekaa.npz b/min_max_Bekaa.npz new file mode 100644 index 00000000..9298b869 Binary files /dev/null and b/min_max_Bekaa.npz differ diff --git a/min_max_Kesrouan.npz b/min_max_Kesrouan.npz new file mode 100644 index 00000000..e9d15dd8 Binary files /dev/null and b/min_max_Kesrouan.npz differ diff --git a/min_max_Tripoli.npz b/min_max_Tripoli.npz new file mode 100644 index 00000000..fd4751dc Binary files /dev/null and b/min_max_Tripoli.npz differ diff --git a/min_max_values.npz b/min_max_values.npz new file mode 100644 index 00000000..1ad57d35 Binary files /dev/null and b/min_max_values.npz differ diff --git a/normalize_synthetic_data.py b/normalize_synthetic_data.py new file mode 100644 index 00000000..d1637780 --- /dev/null +++ b/normalize_synthetic_data.py @@ -0,0 +1,43 @@ +import pandas as pd +import numpy as np + +cities = ['Baabda', 'Beirut', 'Bekaa', 'Kesrouan', 'Tripoli'] +all_cities_df = [] + +print("Processing and combining synthetic data for all cities...") + +for city in cities: + print(f"...Processing {city}") + + # 1. Load the specific files for this city + df_synthetic_scaled = pd.read_csv(f'synthetic_data_{city}.csv') + df_synthetic_scaled.columns = ['transaction_number', 'transaction_value'] + + min_max_data = np.load(f'min_max_{city}.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + # 2. Un-scale the data + df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val + + # 3. Create the date range and add the city column + date_range = pd.date_range(start='2017-01-01', periods=len(df_synthetic_denormalized), freq='MS') + df_synthetic_denormalized['date'] = date_range + df_synthetic_denormalized['city'] = city + + # 4. Append to our master list + all_cities_df.append(df_synthetic_denormalized) + +# 5. Concatenate all city dataframes into one final dataframe +final_df = pd.concat(all_cities_df, ignore_index=True) + +# Reorder columns for clarity +final_df = final_df[['date', 'city', 'transaction_number', 'transaction_value']] + +# 6. Save the final, correct file +output_file = 'final_usable_synthetic_data_COMBINED.csv' +final_df.to_csv(output_file, index=False) + +print(f"\nSuccess! All cities combined into '{output_file}'") +print("\nHere is a preview:") +print(final_df.head()) \ No newline at end of file diff --git a/process_synthetic_data.py b/process_synthetic_data.py new file mode 100644 index 00000000..41844e29 --- /dev/null +++ b/process_synthetic_data.py @@ -0,0 +1,172 @@ +# import pandas as pd +# import numpy as np + +# # --- IMPORTANT: YOU MUST CUSTOMIZE THIS SECTION --- + +# # TODO: Define the column names in the exact order they went into the model. +# # To find this order, you can add `print(df.columns)` to your `transaction_data_loading` +# # function right before the `ori_data = df.values` line and run the main script again. +# # The console output will give you the exact list you need here. +# # +# # EXAMPLE: +# # column_names = ['transaction_value', 'feature_2', 'city_1', 'city_2', 'city_3', 'city_4', 'city_5'] +# # +# column_names = [ +# 'transaction_number', +# 'transaction_value', +# 'city_Baabda', # Alphabetical order is crucial +# 'city_Bekaa', +# 'city_Beirut', +# 'city_Kesrouan', +# 'city_Tripoli' +# ] + + +# original_city_column_name = 'city' + +# # TODO: Define the name of your original date and id columns from the CSV. +# original_date_column_name = 'date' +# original_id_column_name = 'id' + + + +# print("Starting the reverse transformation process...") + +# # --- Step 1: Load Raw Synthetic Data --- +# try: +# df_synthetic = pd.read_csv('synthetic_data.csv', nrows=360) +# df_synthetic.columns = column_names +# print("-> Successfully loaded and renamed raw synthetic data.") +# except FileNotFoundError: +# print("Error: 'synthetic_data.csv' not found. Please run main_timegan.py first to generate the data.") +# exit() + + +# # --- Step 2: Calculate Min/Max for Denormalization --- +# df_original = pd.read_csv('data/transaction_data.csv') +# if original_date_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_date_column_name]) +# if original_id_column_name in df_original.columns: +# df_original = df_original.drop(columns=[original_id_column_name]) +# if original_city_column_name in df_original.columns: +# df_original = pd.get_dummies(df_original, columns=[original_city_column_name], prefix='city') + +# df_original = df_original[column_names] +# min_vals = df_original.min(axis=0) +# max_vals = df_original.max(axis=0) +# print("-> Calculated min/max values from original data.") + + +# # --- Step 3: Denormalize Synthetic Data --- +# df_synthetic_denormalized = df_synthetic.copy() +# for col in column_names: +# df_synthetic_denormalized[col] = df_synthetic[col] * (max_vals[col] - min_vals[col]) + min_vals[col] +# print("-> Synthetic data has been denormalized.") + + +# # --- Step 4: Reconstruct 'city' Column --- +# city_cols = [col for col in column_names if col.startswith('city_')] +# df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +# df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +# print("-> Reconstructed 'city' column with text names.") + + +# # --- Step 5: Create a Structured DataFrame with Correct Dates --- +# # THIS IS THE FIX: Use 'MS' for Month Start frequency to match your original data. +# date_range_single_city = pd.date_range(start='2017-01-01', periods=72, freq='MS') + +# cities = sorted(df_final_data_only['city'].unique()) # Using the correct df + +# structured_dfs = [] +# for city_name in cities: +# temp_df = pd.DataFrame({ +# 'date': date_range_single_city, +# 'city': city_name +# }) +# structured_dfs.append(temp_df) + +# final_index_df = pd.concat(structured_dfs, ignore_index=True) + +# df_final_data_only.reset_index(drop=True, inplace=True) +# final_index_df.reset_index(drop=True, inplace=True) + +# # Drop the flawed city column from the data part before combining +# df_final_data_only = df_final_data_only.drop(columns=['city']) +# df_final_structured = pd.concat([final_index_df, df_final_data_only], axis=1) + +# print("-> Created a structured final DataFrame.") + + +# # --- Step 6: Save the Final Data --- +# df_final_structured.to_csv('final_usable_synthetic_data.csv', index=False) +# print("\nSuccess! Your final, usable synthetic data has been saved to 'final_usable_synthetic_data.csv'") +# print("\nHere is a preview:") +# print(df_final_structured.head()) + +import pandas as pd +import numpy as np + +# --- Customize this section with your column names --- +column_names = [ + 'transaction_number', + 'transaction_value', + 'city_Baabda', + 'city_Bekaa', + 'city_Beirut', + 'city_Kesrouan', + 'city_Tripoli' +] +# ------------------------------------ + +print("Starting the un-scaling process...") + +# --- Step 1: Load the raw synthetic data and our saved min/max values --- +try: + df_synthetic_scaled = pd.read_csv('synthetic_data.csv') + df_synthetic_scaled.columns = column_names + + # Load the min and max values we saved from training + min_max_data = np.load('min_max_values.npz') + min_val = min_max_data['min_val'] + max_val = min_max_data['max_val'] + + print("-> Loaded synthetic data and min/max values successfully.") + +except FileNotFoundError as e: + print(f"Error: {e}. Did you run main_timegan.py after modifying data_loading.py?") + exit() + +# --- Step 2: Un-scale the data using the correct formula --- +# This is the inverse of the formula: (data - min) / (max - min) +df_synthetic_denormalized = df_synthetic_scaled * (max_val - min_val) + min_val +print("-> Un-scaling complete.") + +# --- Step 3: Reconstruct the 'city' column --- +city_cols = [col for col in column_names if col.startswith('city_')] +df_synthetic_denormalized['city'] = df_synthetic_denormalized[city_cols].idxmax(axis=1).str.replace('city_', '') +df_final_data_only = df_synthetic_denormalized.drop(columns=city_cols) +print("-> Reconstructed the 'city' column.") + +# --- Step 4: Create the final, structured DataFrame with dates --- +# Get the number of cities and the number of time steps per city +num_cities = len(df_final_data_only['city'].unique()) +timesteps_per_city = len(df_final_data_only) // num_cities + +date_range = pd.date_range(start='2017-01-01', periods=timesteps_per_city, freq='MS') +cities = sorted(df_final_data_only['city'].unique()) +full_date_range = np.tile(date_range, num_cities) +full_city_list = np.repeat(cities, len(date_range)) + +df_final_structured = pd.DataFrame({'date': full_date_range, 'city': full_city_list}) + +# Sort the data by city to ensure it aligns correctly before concatenating +df_final_data_only = df_final_data_only.sort_values(by=['city']).reset_index(drop=True) +df_final_structured = pd.concat([df_final_structured, df_final_data_only.drop('city', axis=1)], axis=1) +print("-> Created the final structured DataFrame.") + +# --- Step 5: Save the final, usable data --- +output_file = 'final_usable_synthetic_data.csv' +df_final_structured.to_csv(output_file, index=False) +print(f"\nSuccess! Your final data is saved in '{output_file}'") +print("\nHere is a preview:") +print(df_final_structured.head()) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 34db7e4c..082e6774 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1 @@ -numpy>=1.17.2 -tensorflow==1.15.0 -tqdm>=4.36.1 -argparse>=1.1 -pandas>=0.25.1 -scikit-learn>=0.21.3 -matplotlib>=3.1.1 -protobuf==3.20.3 + numpy>=1.17.2 tensorflow==1.15.0 tqdm>=4.36.1 argparse>=1.1 pandas>=0.25.1 scikit-learn>=0.21.3 matplotlib>=3.1.1 protobuf==3.20.3 diff --git a/synthetic_data_Baabda.csv b/synthetic_data_Baabda.csv new file mode 100644 index 00000000..9a77d35d --- /dev/null +++ b/synthetic_data_Baabda.csv @@ -0,0 +1,1177 @@ +0,1 +0.6028760671361972,0.3623982666751729 +0.5951542258012255,0.3573469518460254 +0.6290412544939527,0.3766575454448259 +0.5978493690239208,0.34857726085841173 +0.6266852617000149,0.35885900247419883 +0.7096256017386399,0.40571540580988524 +0.783453702893676,0.4062283931849789 +0.8142478465691383,0.4140345452877874 +0.7573499679246815,0.5042718647280753 +0.6647823452669851,0.46700650438474195 +0.5739238857981512,0.3868653773011154 +0.5740346312281392,0.25899678460333636 +0.5404322743188473,0.24785208694077004 +0.43450957534869417,0.2567473649148849 +0.27886816858072105,0.21095857017374783 +0.31890764831155005,0.23792290679871542 +0.47224169967572005,0.25110629192819794 +0.5290760993734939,0.49950617535659914 +0.47490096090226225,0.5513805149203697 +0.4909444153102329,0.5598688123800897 +0.5101750492834992,0.5802053807290773 +0.5558750033144746,0.45650127515344174 +0.5577445626024208,0.5314697621535197 +0.5359293818248352,0.4552672503907333 +0.6021217107519515,0.3699012397524294 +0.4786539971627092,0.26174604884271274 +0.27147394417574344,0.22361934177800863 +0.35590654610090233,0.2003132700272707 +0.44979473946586424,0.20084565871423243 +0.4802154600418244,0.2548471092354148 +0.4439619481376794,0.2548882960449413 +0.42423489688042215,0.2252742349373401 +0.45444160697932534,0.22827738516105517 +0.4769806265630329,0.2476744352970744 +0.4828159808909429,0.27123695603187553 +0.4846283197199072,0.29230225076765165 +0.4999222457198589,0.32060322155127535 +0.5428692102203867,0.4015895424975438 +0.5309392213598046,0.6453176734746046 +0.6206672787405207,0.653951525476819 +0.6635757684428477,0.5155987141850163 +0.6215229630208803,0.5415070055165172 +0.5455693006285983,0.48603120430496966 +0.16244947909625415,0.25485128156054776 +0.23537871240579286,0.04782634971980288 +0.48541775343760163,0.1066520213736119 +0.5033318996217693,0.1762900053885047 +0.47861629722489035,0.2601813375108973 +0.5758170485254276,0.33198255289792417 +0.573917925333674,0.3310822247388829 +0.6391695737569848,0.40010362850609593 +0.5968255996453018,0.386786281937524 +0.5518446564442218,0.33374327410402016 +0.6507343053543987,0.332041501891588 +0.6757827996923341,0.46217793211304814 +0.6735639571860188,0.40358328806231386 +0.5947089195001272,0.37208023655310146 +0.40581828354081917,0.294171392822559 +0.35527351497109194,0.18277978891187419 +0.4107792079275886,0.16091808671518912 +0.33471703527949764,0.25535508982034893 +0.4453771114161996,0.26645570984811806 +0.5110349058889928,0.5065085886271937 +0.5594119429352974,0.6251809594994842 +0.5506731271512108,0.6873286960287759 +0.631810665104035,0.5460417268895633 +0.6169000863769402,0.5193758009185673 +0.530513703800771,0.4731416700741348 +0.2756560742739104,0.32993274916476095 +0.3216559290750605,0.16864702100071607 +0.46408310530617497,0.2297633587571478 +0.39772444961781983,0.4840115605220531 +0.622860968086742,0.39187464105338743 +0.5776236653084936,0.33551061142568406 +0.6245339512562272,0.37101382005144723 +0.6453925966944977,0.3931033312003902 +0.5980420708404716,0.33404284704856446 +0.511384427525941,0.3319709597945191 +0.3672837614858607,0.28693753471637645 +0.387092947943615,0.17375040048705803 +0.29843401907619005,0.2292083799098235 +0.38918590544017,0.17108118528558916 +0.5114544629835491,0.24505028120704117 +0.5117653608106845,0.35080134857284184 +0.48146790264011463,0.35853183257913246 +0.48325842616909204,0.3569314776697528 +0.47254019973674266,0.3657981156120624 +0.47297042606271333,0.3131626843394009 +0.43074625728702387,0.2973151206009314 +0.4359221160228443,0.3282476662528605 +0.42623692749137615,0.4043116568212337 +0.46967709062507723,0.4332763253242169 +0.44168341157962404,0.5432220099600853 +0.4566811322973769,0.633411466870634 +0.49816930291941075,0.4772922395117277 +0.44096660612158534,0.4034211336262548 +0.6487656831468399,0.4112619756323114 +0.6994404196444943,0.4667027889173871 +0.8496586084008395,0.4130079148865079 +0.8818578719721778,0.4090148805250054 +0.7722609042796449,0.6036315558389989 +0.7906060218478429,0.5441054104000158 +0.8503712415337441,0.49889722450344814 +0.8664358257882868,0.5360828636344201 +0.872568488084324,0.5877707598693934 +0.8596064447994993,0.5737363098197606 +0.8208471536291024,0.572218417936401 +0.7740737199457673,0.5198695657957271 +0.7514587044399744,0.4939599035573968 +0.7145192622837832,0.41303753839495166 +0.6340307593078907,0.34220650781062023 +0.3129717111455858,0.18170174950449247 +0.22738277911183297,0.04455953835000908 +0.4473099112322499,0.18628928059279254 +0.6219018697477015,0.38249957549130814 +0.40213572977281614,0.5404424665611728 +0.4747917055883935,0.4758826492678901 +0.544309914089192,0.31453800191250375 +0.49787461755565365,0.2750456332271473 +0.47980552909739893,0.22672760479275111 +0.6185303926207681,0.3841994701574305 +0.5747786164041945,0.33923736203673854 +0.2991795241706869,0.32453417767526427 +0.2852172553419286,0.1438244580757704 +0.41932004688406216,0.19593703740463111 +0.46870914099628797,0.17048835748884472 +0.4488048255254762,0.19528478377706482 +0.44022175667818103,0.16757953161545622 +0.46344128249126054,0.16928407544386956 +0.4820545613562917,0.18083629006263352 +0.49326965210746787,0.19787624471944934 +0.48476991055356516,0.20947879546070985 +0.47998571393854733,0.2058774530222223 +0.4850316345487629,0.20712083571415746 +0.48413407800545044,0.208797961405983 +0.49514997003379563,0.22078397862928203 +0.501242697217835,0.24763783804519415 +0.49555954335035246,0.2707449196894137 +0.470088124255431,0.27798396339969006 +0.4498887657929934,0.26030144087008084 +0.4510487019825961,0.23912233106514294 +0.4504228532124809,0.22526291005483645 +0.46068561075179826,0.21856805675118351 +0.4591441750333267,0.21673148863463537 +0.6045476197942079,0.3595372437268788 +0.6550358533583681,0.4271230100204958 +0.7824554443030197,0.4902959464395929 +0.8970178365330024,0.35565137851664785 +0.8405977487210449,0.5924734471313624 +0.8509489893555277,0.587666272927136 +0.8792293667423384,0.5652006266674594 +0.897140502891945,0.6334382889607743 +0.8813117742167687,0.6112635133675076 +0.8112444877283222,0.6021827457389116 +0.7530558108966638,0.554823159992194 +0.7317808866192996,0.48258167489667597 +0.6964744925205957,0.42800909266944037 +0.7031564712228597,0.4033334849961409 +0.7774496078164139,0.40613362179981666 +0.8606818914051365,0.4086031316390301 +0.8990347385028272,0.5141770838029379 +0.9108399152372549,0.6239855883489 +0.9050065278626224,0.6578748820086016 +0.8922121524435439,0.6648200152155854 +0.8826931714640249,0.6381316182935164 +0.8758364319432868,0.6136042473717255 +0.8691911100975581,0.5946850178703937 +0.8712450265517868,0.5885479448323686 +0.5767348408456404,0.33000463236633687 +0.5925057530153871,0.34406322229709596 +0.6461834311213442,0.4040418861990675 +0.6827470659922426,0.4730385242363844 +0.7183972596819964,0.3879361747441592 +0.7100655436217085,0.45743650183198775 +0.773920297590122,0.44048506007263477 +0.8591755628224362,0.44667464480269004 +0.8935408591848211,0.5227254627445721 +0.8575342893239701,0.6021843550643201 +0.7138093709645381,0.5582113264187113 +0.5005362629679867,0.45460736736863816 +0.11379441618440642,0.12760743494678006 +0.2656742930300524,0.03997877238888885 +0.5560092925791479,0.15890857572188105 +0.5227733254212749,0.2956468163965298 +0.4403484761529682,0.3915029464886882 +0.5251263379829739,0.5166182516335699 +0.4823916256224824,0.41149288402609663 +0.47114840147897347,0.3412138520568517 +0.4689272045891896,0.27212506523874186 +0.46125954387631635,0.2973227797977826 +0.421314895135321,0.37463653075507986 +0.3975425064396506,0.3275008200540662 +0.6104825734835334,0.3697551487681321 +0.6460276245799079,0.42011159644854307 +0.7790123223930694,0.5022578833864105 +0.921908020934421,0.3549171983048643 +0.9164807200046262,0.6432466504879082 +0.9375576972566997,0.7265001533067654 +0.9304258823003347,0.6938574311874935 +0.8914124369246261,0.7250726220648561 +0.857566356622858,0.6580678818483219 +0.8541437387107094,0.6101480720455414 +0.8499174117684434,0.5642297862136717 +0.8345714211112826,0.5485569832936271 +0.824116468394895,0.5262105463234629 +0.8227007388722495,0.5057629941259393 +0.8233190774571234,0.4939474163843204 +0.8291597365984182,0.4942202864480139 +0.8383429050092868,0.49397239073047317 +0.8456130027415248,0.5076018570213106 +0.8504099845528464,0.5163143275499583 +0.8533047437308863,0.5302263496592622 +0.8594127297039875,0.5384478567290537 +0.8666872381799388,0.5488681195392541 +0.8719969987502415,0.5605211256123007 +0.8751884698499608,0.5717902181684731 +0.583954453443756,0.336995899568362 +0.5332251786961342,0.29706579437191655 +0.32221794127062403,0.3196027277867214 +0.3900170028045607,0.24323266736752544 +0.4126767813985781,0.3198288380066037 +0.515806555726286,0.3269925712482307 +0.5034754872110272,0.5053806899344735 +0.49813634155085135,0.515579223466181 +0.5698544382809274,0.41067370759089084 +0.612781405423134,0.47176480278026833 +0.7516376375835826,0.5025010703370155 +0.908571600875778,0.4108974634273053 +0.928588986357724,0.6814399359408049 +0.921339869460446,0.7135475871641009 +0.8956780433277975,0.7198847529945724 +0.8590420484181449,0.6897784469282527 +0.8243960737835246,0.6209378836532298 +0.7977074980400185,0.5794691441570496 +0.7999587058684455,0.5420291422045809 +0.8134679197922852,0.514352798295679 +0.8219763636243247,0.5165374873399253 +0.8385477065687263,0.5301044581607359 +0.8538172244666435,0.5372705457858308 +0.8337600230819893,0.5437924264104014 +0.5728550553080839,0.33641913522337935 +0.4853716790471922,0.2788915633253916 +0.4383235573584214,0.3265987037556823 +0.5046649575021148,0.283265888599399 +0.43706393240043606,0.2901629506603871 +0.3188154399260864,0.22235688559975147 +0.3952690958810457,0.20208829634810818 +0.4442787170223249,0.2066470681953134 +0.43851140139642314,0.2063613235283525 +0.43929839132368187,0.19006362551268477 +0.46637797353689814,0.19015493982845114 +0.48917645213930205,0.20902746909061645 +0.48871859906047915,0.22143223874564968 +0.4710682332317539,0.21201804273428798 +0.47770088909046843,0.19838273518826452 +0.4936460256368862,0.2051772176556273 +0.47974124548801134,0.20628130429276742 +0.46508088705967304,0.19308161729294412 +0.4736723005572364,0.18847113841641294 +0.4870199858937415,0.19866150611178893 +0.4948027431756712,0.21868976943577553 +0.4908292591365317,0.23939880720984424 +0.48543536661013204,0.2546120881211414 +0.4853675067220581,0.2714543937759459 +0.5883873700848048,0.3457266091183052 +0.56360900399698,0.31858983625605813 +0.5662785172224232,0.3563414810936343 +0.5897698998203118,0.36393064248720813 +0.47624087331675663,0.3025264142966043 +0.28399366139170845,0.2401513754545351 +0.35344475506249273,0.19327595823717147 +0.3824169933635047,0.21162262552097585 +0.4400820731931558,0.20976221554652524 +0.4679334163468913,0.23932588092698512 +0.4986401796131166,0.2900915740982916 +0.4961424171715865,0.3494159876170975 +0.4722914993564278,0.33079910267629126 +0.4110330939119987,0.30716222514715685 +0.4379365145975887,0.23382586233211353 +0.48326650259845877,0.2917392252932853 +0.5102472305083192,0.37830668675593837 +0.4827100634371815,0.4153627751915329 +0.43294697998132825,0.44740957007253307 +0.4070185422726107,0.3208472727692293 +0.38084527848548855,0.2557236849435208 +0.386417686922983,0.3023781775450958 +0.38413333891206225,0.3165673314501932 +0.3910777866675837,0.29237040867893027 +0.6056825518353284,0.37277302133910195 +0.6067571639759387,0.3769694267485123 +0.642424046966229,0.3746691046934391 +0.4940030574590758,0.3003658055288395 +0.31055676935796767,0.2764964698851562 +0.4461488723567189,0.23374447218969902 +0.41800251601368,0.30569782843246596 +0.4500364064980959,0.29456543912904176 +0.46400538084939114,0.34910905349892585 +0.5096607804083988,0.34088909614989793 +0.46157184241260385,0.3670333920723107 +0.386183321459736,0.26147127143038695 +0.3778645396073638,0.2120428680688289 +0.4334757029827861,0.2316676675524613 +0.47033667562413395,0.26124513140818223 +0.48990818856085633,0.3306733964805006 +0.49105623362382683,0.42479142532924796 +0.5009682178286559,0.3874823151766637 +0.4943984746724991,0.43018379793569 +0.4818401336467213,0.4148826001733776 +0.4695507287781587,0.28163287034469303 +0.3829666971999226,0.36127930867916613 +0.4315152466115612,0.32143083204371414 +0.37531703708977077,0.4465735255228612 +0.5990834831939434,0.3574109374321711 +0.5144143104336809,0.28234079471046153 +0.18850043415230236,0.2301206588001384 +0.3371992111064196,0.158940970846306 +0.442075639944552,0.15181818599562646 +0.48732736704683527,0.18843156093229488 +0.512972712495204,0.23646983496652818 +0.4494432508756385,0.21519580476481615 +0.47878175971877984,0.23045760385694478 +0.5120666026853666,0.2819059788269656 +0.5263918041961471,0.3421434758987906 +0.5663891434431216,0.45074334726071036 +0.5493242740400004,0.7016894815084486 +0.683116197557321,0.6060050127931877 +0.7881407737400364,0.4755601583374371 +0.8760335445035508,0.5665007231788801 +0.8599787950153955,0.6032904384570595 +0.7869165539410462,0.6239475009809009 +0.6382264494627434,0.552556276142829 +0.36612698434243096,0.37329283344602016 +0.048294991252774755,0.07630118725218023 +0.28395429252383597,0.0408784746991602 +0.5470998883017212,0.09527799484034638 +0.6243967413639601,0.1546182631946574 +0.5745614766832868,0.32403194893854914 +0.46249520776710296,0.2545956968438335 +0.3669028282011172,0.29130467763069073 +0.3902094960048547,0.2758334874215338 +0.4458725452235518,0.2917594312678576 +0.46431836483909356,0.3132506011904162 +0.4048811197110551,0.2749838232105352 +0.3662842511976642,0.21226006739432024 +0.4316506683644852,0.18231651181050718 +0.47900933025252274,0.19933682673687583 +0.47586607931042474,0.21270152919570648 +0.4788646101750142,0.2259703575834469 +0.47282534835733614,0.22891896955721014 +0.47508198020843745,0.2215959429024724 +0.48336920140140244,0.2218252419708492 +0.49419304726428936,0.2320382892335549 +0.4982327222614491,0.2529447673933783 +0.5135778188489383,0.28986564269234355 +0.536184251285884,0.36532264936084274 +0.5435754060516558,0.5384184120345442 +0.5692099928616431,0.6915483472496412 +0.6827925443362043,0.5689250824996908 +0.6949010491078811,0.4975742100061188 +0.6655850410181415,0.5682090519022355 +0.5750040411707255,0.33517631877556936 +0.5755723118539902,0.3384307025769315 +0.6334875821800754,0.38492795812563985 +0.6109386682253355,0.38864868866757396 +0.614534497235194,0.34281331289656 +0.7048219442071036,0.38151237356253476 +0.8087865113871782,0.4306180475750608 +0.8936067223172951,0.4037638901359249 +0.8337043523437715,0.596325397298727 +0.7885811328556185,0.5723595021305389 +0.7244752645187769,0.5159953234912236 +0.6406059860913665,0.4874593613956488 +0.6041699051602821,0.35594961035668515 +0.6084558963519658,0.260381936942824 +0.5789058208222032,0.2532829045430798 +0.506038784959485,0.29883968820450363 +0.3524394631237533,0.31107372035463293 +0.27904433010834734,0.2344217299657405 +0.34000879524707894,0.23395234338828602 +0.5487244724996508,0.3023835419631239 +0.5175287127277088,0.415501206978979 +0.43755981324262405,0.4026136098990988 +0.4933860301763869,0.277370035558702 +0.5504339933163819,0.21508455269537882 +0.5522851943737381,0.30468261232065724 +0.42058512566704426,0.24940332762287062 +0.26916933058559994,0.22489657990816528 +0.3508129715771908,0.1992590128731467 +0.44102877376608346,0.15363705153268206 +0.5116788148664743,0.21837186806296874 +0.5005033015994274,0.25783795109998775 +0.48269212243910486,0.27775442591273425 +0.5024083852556582,0.3043411969154941 +0.5281240343825365,0.35508662450758355 +0.5442038774261411,0.49773243053562394 +0.5946683883416817,0.704123198758486 +0.7815027832656147,0.5973526237464541 +0.8886549472434982,0.47482547148617305 +0.9107269644354102,0.7101946470826346 +0.8726596235861817,0.6850218770674243 +0.8554785847303982,0.6830168364224729 +0.842668652499034,0.640336513312335 +0.8174304961814312,0.6124642489361197 +0.7758389115007164,0.5735955236488466 +0.7130008935628387,0.5312377212714842 +0.6064957380039648,0.4633091686658746 +0.45854979751565156,0.28515195837341717 +0.36102673409850494,0.1674882471020122 +0.563894808268666,0.31549745787914313 +0.44640278814345136,0.25360083571820896 +0.29799273608861404,0.24898120752870773 +0.3647741973246656,0.23366379730302161 +0.4379425942713555,0.2016924917046051 +0.4936472773344264,0.27699726811039715 +0.4531108438778036,0.2713494299965304 +0.4083351194686765,0.23487663261451927 +0.42078506944793487,0.20038396113595147 +0.44856154916783564,0.1871330141416379 +0.4726912677089195,0.19070675962960337 +0.47691300509353807,0.19729390734018198 +0.47237071392933094,0.1949370204772352 +0.47701516745467876,0.1919502019261833 +0.4793151020802076,0.18835514777771753 +0.4845338165556198,0.1864984034889194 +0.4826028942858799,0.18602553003974667 +0.4867699444089193,0.18766248220100656 +0.47416758535297665,0.18609037989324134 +0.4869206249509051,0.18889743083570876 +0.48933535812226653,0.206157982282767 +0.4759097397127209,0.20871138565947472 +0.46246880290946857,0.20328566425429162 +0.4643589556021839,0.19641461962073958 +0.5859191417447597,0.33803495753807317 +0.5893725156536109,0.3428677021348999 +0.6289358138773494,0.3800240157806519 +0.6239041685795569,0.3958097695025093 +0.5693358778714034,0.32490465034474597 +0.4335550069626564,0.3512657581624592 +0.5023552179125208,0.2940499781611908 +0.5467338561781709,0.2892918585795987 +0.39948859809148524,0.31787073601939786 +0.36604261396775495,0.2567105292444256 +0.4055392145939925,0.29766893377220377 +0.45737701652510027,0.34589755523946575 +0.45362693069456955,0.39441502081521596 +0.45621868966090645,0.3794738053049081 +0.4159099757496384,0.36096587765471605 +0.4613245725437636,0.30791425695004493 +0.4654381871027641,0.3743997215014638 +0.4425968825630909,0.3438648282370252 +0.4359010159785947,0.3400958775374834 +0.4312869012174363,0.35381299245843467 +0.4659249484343018,0.3667292593724426 +0.4409089386277676,0.36317241180126547 +0.414901912194917,0.31140315522620005 +0.3865884542302573,0.2670550643534633 +0.6281756162379161,0.3897830246619278 +0.6521701812469775,0.4365059135933605 +0.6889392733284079,0.4101820586786199 +0.6568389534673925,0.4054362176538476 +0.6329442262383258,0.3626933692713605 +0.690113663644368,0.322142958536938 +0.717570424049707,0.34109678853455067 +0.7152421474155887,0.3807941971978682 +0.6970858573620312,0.3693349360226014 +0.6395326852529412,0.3327854274627892 +0.6724951266959515,0.3219086526784017 +0.756721019713038,0.3984249828958291 +0.8400208353642882,0.3970291017202854 +0.8403489589337629,0.46171456560471397 +0.8369743823653013,0.5706391928735876 +0.8616864084834939,0.5235730407930043 +0.8214619159352899,0.5541840193864741 +0.7648882865583975,0.5431872008475477 +0.7553238868395615,0.5068680642397179 +0.7205896377260326,0.4433985053059919 +0.603845834706652,0.38775965558871395 +0.16132274269378996,0.18206387752370834 +0.20836192368584486,0.03083941339449765 +0.5290840267912487,0.2194481789356525 +0.6055253743870623,0.37032255518388807 +0.5904935002078546,0.35976636398132134 +0.6221399306989244,0.36379855859442856 +0.6093653440219106,0.35294544685400925 +0.5892409085979524,0.3378338216643436 +0.5851730108014928,0.31721243252038883 +0.5321224927678359,0.31970968832173624 +0.40100634096365956,0.3167760967184516 +0.44916805623072215,0.24596321574844837 +0.3856785297231545,0.33609220374689197 +0.4226477742017322,0.29989248504483107 +0.46666064856473355,0.393982648722155 +0.537029564358053,0.5202871559368885 +0.48777607081268554,0.6810142991726014 +0.5213699340600974,0.31480705727893293 +0.20772022008021998,0.37663352477298917 +0.3621713220920786,0.181063592375411 +0.43244802949993444,0.26257908335782437 +0.46126905081715763,0.36739021527814325 +0.42398750780229233,0.4533194004024254 +0.47142753003044485,0.4244931934892107 +0.4382947683149961,0.5291098950583352 +0.4398058950716006,0.46797427519932483 +0.4493864178468476,0.33146071423308426 +0.5785269737000267,0.3389151691295093 +0.5734040736910869,0.34019535768958137 +0.46749621627748217,0.33289840806692444 +0.24650353192246047,0.22220230095357646 +0.3374616205550322,0.18864056461913223 +0.4247996210873229,0.15145274991862664 +0.4564775228308327,0.1651954054298559 +0.4828514158522604,0.17451319092832457 +0.4648143648905711,0.1704595982477499 +0.4763950407304617,0.17490929359505142 +0.4925322830469825,0.18824243539448368 +0.4880491792950349,0.19956663244473308 +0.4695968031685681,0.19068789475953807 +0.4697102010052485,0.17962247127449738 +0.4866293966565448,0.1847678720353924 +0.49299603698563793,0.19975197308760226 +0.48048305509453226,0.20597439997691813 +0.478861510733486,0.20878875248836817 +0.45513865349762184,0.20057678216173755 +0.4593790173337319,0.18440300220251776 +0.46034070847481995,0.17781299346899088 +0.46488654611539104,0.1677873134070761 +0.46817794440207205,0.16339495772802995 +0.47257661817469887,0.15962278837767133 +0.6111960410814649,0.3780250846117881 +0.5161425471088708,0.2846786676917311 +0.26632916926217204,0.26587784281720744 +0.3703623711907025,0.20533704751054085 +0.36317351458928987,0.21002438657648506 +0.4154344200913179,0.17971792811307433 +0.488934755304748,0.20702341192230359 +0.489021748283794,0.2347159086899344 +0.4983536600856933,0.28478962173794464 +0.4522018730450171,0.27274137726552017 +0.42161220310344816,0.23894593111898718 +0.46821382639822534,0.2254910766349629 +0.47842085359468006,0.2476707398090995 +0.44166952369739193,0.2300914227218855 +0.4437502026371238,0.20483225577410122 +0.4704774021904427,0.1998209356615851 +0.4817165434157847,0.20318785303224682 +0.4829188883101433,0.2036984264192278 +0.4909471571238925,0.2088558375160412 +0.4837878048216424,0.20813378684946546 +0.48819696901174925,0.2050351201825287 +0.4837945699488241,0.2077844738288722 +0.47633597252749177,0.2030508219539525 +0.45931270716642203,0.19127196067350336 +0.5877724885693277,0.3472002147506109 +0.5468780398138765,0.31497260917974307 +0.5130330323957142,0.3520104883963646 +0.46898576615267895,0.2952647804259654 +0.42213994262826726,0.25278514615472136 +0.37678924201333863,0.27660652986169837 +0.4178551733318014,0.2822903393786755 +0.45222991703038273,0.324509322538401 +0.4760541617670056,0.35407847154617844 +0.5108397006773616,0.4023911057602242 +0.5118342041753972,0.5866793988239087 +0.5912790298213164,0.6391060946306343 +0.6847147941301297,0.5309166310501828 +0.6181306838729211,0.4785293041113188 +0.420004934054825,0.4420461355211201 +0.1009929478126,0.1564470529050649 +0.2980545163029211,0.050573468191968014 +0.5147705077908437,0.10563009973926811 +0.5970554947601908,0.19131109112278574 +0.5569784044985102,0.3115856646484433 +0.46958610413483143,0.3441389201959362 +0.4782757460869805,0.25811868897678913 +0.5318501591458685,0.20500937097599406 +0.5398104786645767,0.20387873046961508 +0.5650320052862878,0.32365334023505826 +0.3866091966466383,0.23619049779887857 +0.4258770346462375,0.32699817408483783 +0.523645877816105,0.3604666589525611 +0.6090254783374155,0.38065308320140806 +0.5528497099643821,0.602940320773762 +0.6906703710265467,0.4692986606034836 +0.7286705374411162,0.4616918562350619 +0.7273991107634659,0.4556935428100291 +0.6619812249858835,0.4980680642902457 +0.6660703420358823,0.41118001924577174 +0.6591116785725826,0.34788486350260217 +0.659427046748076,0.3319038449645237 +0.5916206836451546,0.2747926711148023 +0.33399993179823506,0.28886032095156433 +0.3347423672535261,0.17255252594139414 +0.3799191713173299,0.22456908218755275 +0.40706169603542625,0.2895879744547471 +0.49613788721858376,0.5133644936809777 +0.4899928867610786,0.6117531655241791 +0.43935933707296215,0.6414818761659687 +0.4973680674820513,0.42614987478788485 +0.49717515704924387,0.44320103511791487 +0.5140264630101438,0.4664516447467072 +0.6356098055572139,0.3918873368427205 +0.7247626781158717,0.5070450900346436 +0.9248955249397275,0.3930052815597664 +0.9479994773465925,0.5040931700030964 +0.9361553787791281,0.8122852442023496 +0.9297138452138779,0.7292799947289016 +0.9197783469766859,0.7346252200613416 +0.8751122951139411,0.6785032746983153 +0.8438095450046317,0.6271465418696069 +0.824074983562133,0.5535136459469019 +0.8046573400158918,0.5180588958973255 +0.7897294759418129,0.4826449154247622 +0.7790398597389545,0.4576810894917445 +0.773405671087153,0.4380090831294653 +0.7523717879932502,0.41384088979697475 +0.6709965467170717,0.3631007670182686 +0.5611082911255337,0.265217065725441 +0.27764961122298426,0.21537157886220196 +0.4302358031091889,0.22367691986484303 +0.49905389545248513,0.5992758272141554 +0.5682321190594991,0.6876274941129383 +0.5947287082421918,0.7168459889956156 +0.7822701334624209,0.5913595555301598 +0.7771017551095194,0.5289205311019449 +0.5367276072276336,0.2843381463562394 +0.4138257503335426,0.2359274326992474 +0.3957249224019463,0.3186458944244513 +0.3606271445599475,0.294888734722199 +0.41403156517194334,0.2533411978856513 +0.482123374918682,0.2874136566186884 +0.47545221445944424,0.2897613345640203 +0.4390056133085575,0.2953309415816447 +0.4611736535831986,0.27534624925297485 +0.47682341931244443,0.2974769174091219 +0.4859768152032489,0.31191530813626706 +0.4826675057208137,0.3325965999482018 +0.46888056395465477,0.3366270660266111 +0.4247970580875976,0.30423289527597225 +0.4076098203487577,0.25380313388251124 +0.4159026741806537,0.23419830195487218 +0.4520066976357083,0.2330591081819707 +0.4606023728653729,0.2396054863155361 +0.4621163308426042,0.23371580235557132 +0.47099453208849223,0.22681903831780703 +0.48209628460763276,0.21954035751876785 +0.49959555266185873,0.22442939870256676 +0.49027106163823364,0.22640115015342183 +0.5052682757165059,0.23594146959308748 +0.6376160382956244,0.3976591824200024 +0.653853058787495,0.4256996809060419 +0.7698677777920137,0.4775139091855758 +0.8622518777484542,0.3620199559949058 +0.8028796910901854,0.5468658207079615 +0.8837884664163714,0.5831578968070721 +0.93612992759581,0.5603406427479791 +0.9007787704088818,0.6820412872017494 +0.8385549783353887,0.6565637586379011 +0.7761014699609409,0.5673547385289459 +0.6648076772410136,0.48781600578754714 +0.5054696798111935,0.28639161577505506 +0.1591935753755354,0.08079415557157468 +0.2881283163903138,0.045908689484064014 +0.47835284469499423,0.1296049058018474 +0.6157051920631782,0.2556017040380274 +0.5560878515009585,0.45759013280384664 +0.44072076676421956,0.5772045848888301 +0.5516320466763169,0.389822691553013 +0.5364640950930927,0.5183838604205359 +0.5601218342545424,0.4230678974214798 +0.5453358292350229,0.40952241407510387 +0.49041026828610074,0.45179560765923504 +0.44374138114969736,0.4421477912427517 +0.6136263012627896,0.3739925025684899 +0.5469769239195547,0.3055092095341352 +0.1555090248519325,0.25694423905651437 +0.3037359118333828,0.11696818467174569 +0.4739998280802634,0.1488369106765369 +0.4944518804342156,0.17553102964450257 +0.4772517978944271,0.18860492104156806 +0.46775081751762954,0.17476591462209054 +0.4648998677534978,0.1819566189654697 +0.48095276949766497,0.18608504527753567 +0.4739355444708758,0.19520902627357978 +0.4810254275596431,0.19820863002093186 +0.4944319426805391,0.2202599047902638 +0.4916658103259191,0.23658525936109842 +0.501494348028066,0.2588606773970358 +0.5093506574416454,0.29683771719875723 +0.5085290074134513,0.33104449499875227 +0.530876159645635,0.40218654261942116 +0.529898822285294,0.6619834301716414 +0.6482445001329458,0.6580671069879401 +0.7041404246987705,0.49990627153452466 +0.6504941582406087,0.554054736911998 +0.6316484808656081,0.5414307115712294 +0.6987941860858667,0.48288694008479444 +0.6452885865893689,0.4051091073634259 +0.6540347337447627,0.4259494541698924 +0.7492405175847516,0.4663814900798292 +0.8635107278460575,0.3737397490724016 +0.8381607532148608,0.4800183771489387 +0.8357826470977123,0.6010162232363895 +0.8766651749242089,0.5143451689011502 +0.8832010626421347,0.6224980352297214 +0.8787438869106633,0.5985516903850132 +0.8376080989485266,0.5962175128917184 +0.7723840474757457,0.5495696662080337 +0.6637456416804504,0.4708240626720824 +0.5058987736489134,0.2669700979323635 +0.2345337271591701,0.09266102311000625 +0.32797843216469935,0.06530830261980775 +0.48188883064150073,0.2135276495720264 +0.5881892442455797,0.540478586975895 +0.3859583139257184,0.652225017336813 +0.4093913733786968,0.39814728485591033 +0.4489554166604949,0.36047935474189413 +0.4883376657757356,0.2521545886178463 +0.4404315352254592,0.34762555349559066 +0.45746830103856995,0.3448230027038023 +0.43470498917658207,0.3304971753482791 +0.5605644583466259,0.31837517012796895 +0.27734848855759164,0.19324409955454933 +0.22084653376603863,0.11590489741394114 +0.4092777371234373,0.12433135505472669 +0.5599635839226704,0.16683039063783883 +0.5423549413452863,0.2411127089674843 +0.5108889937185888,0.2526223062652476 +0.5058317780281888,0.2865991591480959 +0.512072026708041,0.2995089291558254 +0.4570165276335139,0.31325611462005615 +0.4420559406094546,0.26058411589783675 +0.413988888246286,0.23474952570957683 +0.44600301979095963,0.21999058120293324 +0.4794160425461305,0.25347936145219596 +0.48388829825272944,0.29828754057780527 +0.49720638988310484,0.350541144496159 +0.4847259521280452,0.3826981185629908 +0.4510465264130619,0.37445774662313386 +0.4393911063486261,0.29881942262528655 +0.4510806500721944,0.3071484564742182 +0.4482279419710418,0.38569492089203933 +0.47337448594962866,0.4747387467280529 +0.4226759671987098,0.5873286126145926 +0.45545268056860777,0.43196031437264637 +0.5734766125437756,0.3286247848402325 +0.604735493634532,0.36269801843365146 +0.6687577962594021,0.4460042415607955 +0.6839376687715809,0.4280575810479495 +0.6696765422539314,0.4111947415930265 +0.6475008725847593,0.38514426338145985 +0.6602301001271009,0.3171317576337114 +0.6542120575629621,0.287069857027735 +0.5960986613976518,0.28837281456210395 +0.46309864519078364,0.3043215273827246 +0.46386507151559575,0.287186205294299 +0.4166777729812803,0.26129370919365846 +0.3001476526134104,0.26676821700057446 +0.35152894257020273,0.22106441848285963 +0.486749947050598,0.2777665852602645 +0.5181410908481054,0.4625206886227182 +0.476968914250335,0.493069469769385 +0.4570614099310279,0.4790839849354193 +0.4437982439808107,0.3982458411360146 +0.44401195643464386,0.2648615836241155 +0.429211735707346,0.353884279613563 +0.4096266925162601,0.39595931755620245 +0.4265447854816281,0.4139770268055977 +0.44932895896928654,0.49684920890962764 +0.6112521290521962,0.3763222395157503 +0.5468841194876434,0.3081949352222015 +0.2406365573304984,0.3010067938785469 +0.30915683506618696,0.15151813621392413 +0.41527062652748203,0.19012856477314657 +0.4953868984967678,0.20999014370807267 +0.4905894100459656,0.28876659264768534 +0.48988708851660673,0.2730307578158112 +0.4863179921899289,0.3268672822849534 +0.49688965080078173,0.33202296484706884 +0.4742905497351431,0.3240578769590181 +0.49954539535328235,0.3268050252335056 +0.5042313933160368,0.4776551423913254 +0.529984891392346,0.672881960651365 +0.6515929698669968,0.6144504545133281 +0.7555556296984386,0.4985848067579589 +0.8029129504819686,0.5111188290851458 +0.6761786341382708,0.5514806507235599 +0.5703848004101166,0.5424484012757955 +0.5856109857312839,0.3858100770657082 +0.5794442295784367,0.3275156616106105 +0.5708753466365974,0.35004422057282714 +0.5420970916519988,0.37805837380588436 +0.5743128061052943,0.46125555023544706 +0.6075564622623431,0.37136787164129864 +0.6520053147995356,0.4372923968809176 +0.7789847254425396,0.4760197101485068 +0.825982928241313,0.3553783892436648 +0.5971351861702522,0.5453630087997253 +0.4501591324616832,0.3220946787746855 +0.2437958717243627,0.10686784979227383 +0.4343739449795134,0.11787524815564443 +0.4247542321503283,0.23802977792676314 +0.4021866023371298,0.2287886141991285 +0.39675703643083354,0.2275419532517317 +0.4503397345353451,0.21284574263369394 +0.5116254091047577,0.27126544705206895 +0.5246262550133295,0.35545104730562255 +0.47566208241368957,0.354414641742603 +0.47130468485756793,0.2855502962143223 +0.48928588626710506,0.26237082472904644 +0.4983658790378717,0.2567191123132705 +0.4744833707609834,0.25658220044426566 +0.45438751576419395,0.24000859252802179 +0.4528324603843918,0.23029193274684515 +0.45903679726576835,0.22350352995324746 +0.45478335021013067,0.21160084002331747 +0.458036601524157,0.19697669142078986 +0.6083993315440764,0.36823064076920464 +0.642728984328887,0.4246156214295398 +0.6777049302769701,0.4092229305375267 +0.5650791525603032,0.343388765939358 +0.1408543884694924,0.30820751180224504 +0.3373301625109856,0.10507673021735223 +0.5145593285344134,0.18874171370128337 +0.5437554120788699,0.33283752192230603 +0.5227715968865765,0.47885385140201586 +0.5209192037363248,0.6369379756776302 +0.6073617338878701,0.5212638376458624 +0.6687161326127059,0.47931212171322335 +0.7107887863813827,0.4436357019897989 +0.6166840195396385,0.451538622233369 +0.6006600856528309,0.37670415627702514 +0.6875354051300722,0.314924359219813 +0.6823456287096972,0.36318767059032303 +0.6106211542826304,0.339673638234031 +0.33956879375936555,0.3313090204121799 +0.2773299217107449,0.17520278686583057 +0.3678018152559042,0.16974356765029452 +0.41558495162169184,0.2574871181609532 +0.5030417442110149,0.37830811726741254 +0.45436727998729354,0.43328112349811976 +0.5474330186613569,0.3017687796571092 +0.36651915310271416,0.2249682842958069 +0.35704505442070916,0.27156233778759925 +0.43951725957928794,0.29427564134623746 +0.5674267410993279,0.37529045331269933 +0.5218565463800231,0.6043684480621189 +0.5805522799247645,0.430831611017222 +0.5203308462877717,0.29583734264349276 +0.1771132945939893,0.3094608484698545 +0.36657693980582146,0.14150515194134236 +0.3879358172253483,0.19626349204396043 +0.4224383830846451,0.1676481663638929 +0.4711673855583336,0.17308914655813357 +0.5050694346215436,0.19887861603031312 +0.5279320478217231,0.2681613563624594 +0.4916601180823433,0.29540646066655074 +0.4818534850871504,0.25918853274551684 +0.5133226513646656,0.23787218324602794 +0.531883656956231,0.26103639594224626 +0.5221475958604491,0.29610145082440714 +0.5149974822781388,0.3328824936267746 +0.49041190741383195,0.3854274450486962 +0.46763259170472254,0.43124619112382323 +0.43662565944742104,0.38696950661550433 +0.6574584245405172,0.4168972073638123 +0.714993536442241,0.47406762823042126 +0.7543817758242813,0.3823379872993743 +0.6505991816246985,0.480010360324219 +0.6056685447438067,0.3853808640188193 +0.5777387618775501,0.26133680335181714 +0.4839842617308138,0.25186702600922034 +0.40552687643252455,0.20135894411254981 +0.35325083135072416,0.22072666876334904 +0.34596955774759114,0.25097990027899253 +0.43856066463532795,0.24731513849848447 +0.5048014521386447,0.3711341618292099 +0.5588327049973946,0.4846085904462528 +0.5006998181132435,0.6525238750256203 +0.5677635669469395,0.4806907473441102 +0.5272150039451053,0.3943400977767575 +0.44743394849802226,0.40972867594828244 +0.5267310738341943,0.3956879376086278 +0.5883600711574988,0.5741816757253784 +0.7029469012918383,0.5464304683826628 +0.8425681590679469,0.4123136697867109 +0.8695712089172748,0.5674792526318414 +0.8925006389242447,0.6596400139584095 +0.8577533959981553,0.6074438093129559 +0.6286975145075474,0.39042192684906873 +0.6384499668806418,0.41253149496097213 +0.6984465717975513,0.43655669675069275 +0.7629449367202225,0.41430771337470473 +0.792061209645328,0.40794327841925737 +0.8442590832355088,0.5173848865744232 +0.9352590441310334,0.5281992552957511 +0.9309686421956366,0.6552748081950498 +0.8849698304757699,0.716034948594419 +0.8118067979471096,0.6169314382466572 +0.738233149020609,0.5607315896129346 +0.6870791911789804,0.4736577270884334 +0.5714731216190246,0.3021638392425528 +0.07969209551475956,0.10915887352276508 +0.2283118665122303,0.03195711969296454 +0.5304666757360452,0.12380287047199648 +0.7002859115305977,0.25555917612399387 +0.5438662767181475,0.36484551417956995 +0.46327611802059493,0.4585092364259861 +0.5277325510756683,0.2772622703609829 +0.594726026033177,0.19371250265536533 +0.5779797434563669,0.21531644456580254 +0.5430215000877814,0.2881389855407257 +0.505750596502008,0.33509269345897646 +0.5993006825194958,0.3577132521903742 +0.6206243037916395,0.3869334160031045 +0.5935178994882755,0.32618039835878376 +0.5012714862612603,0.3727401493775189 +0.40601876376351276,0.3188163935107762 +0.480348229388056,0.2422448991946269 +0.43754243848867275,0.3432630895458897 +0.47278088329233553,0.3088753222420927 +0.45157492158897355,0.3654042481195139 +0.4187230169596946,0.2782687245900125 +0.3705648779713184,0.256874442017505 +0.40521013735020145,0.2395794092834553 +0.47538259623434953,0.28629219522760185 +0.5003605484751963,0.4017840622557054 +0.4735962152281838,0.4200212358070928 +0.4297078549681131,0.38660934554956544 +0.4176668524566415,0.3110461830087556 +0.45556062458029145,0.27536332598369745 +0.43205419180959764,0.358368068817665 +0.4158509969536356,0.309078723092323 +0.40993699429694774,0.30070453872498853 +0.42037913201470917,0.2717726825789436 +0.44694355128315333,0.2648570834734364 +0.44095098970465485,0.24777811757662768 +0.6010720133528563,0.35968422878084744 +0.5972038507210305,0.3527881799988202 +0.6860846280763001,0.4644201694418065 +0.7758910059602478,0.44665330633986733 +0.7877793907787785,0.3777394591541167 +0.6655897497850786,0.5282131431779792 +0.6914624571509335,0.44764491901235265 +0.7622021436370627,0.4282295404480709 +0.8640444874399987,0.44362583742109174 +0.9309237002934778,0.5391321180508541 +0.9271843432990062,0.6756808755598231 +0.8800787925349968,0.6946982143064234 +0.8209733962667314,0.629112064635085 +0.7867467403080882,0.5624629257291658 +0.7876597046520745,0.5067633388788814 +0.7889134883548721,0.4709551630882235 +0.7667732834493399,0.45656630382087066 +0.7424404620811924,0.4520714877574888 +0.7289682626417567,0.4297009109061983 +0.713086605042022,0.4245375393449093 +0.7036682963075245,0.43050903067980184 +0.7754006385477014,0.514212727380502 +0.8630464076632768,0.41803061948617243 +0.721939802139428,0.5342287419499914 +0.5890721678486004,0.3480388521023296 +0.5505947470433344,0.306768089433707 +0.6242185830807339,0.3859192131702566 +0.6236869096493598,0.4923106132346724 +0.5761140584703309,0.29136264314771604 +0.4850665926729222,0.3642550407662934 +0.6282449960444316,0.32757282246493163 +0.630013763878067,0.5433231590422364 +0.68332511183725,0.43005153522897616 +0.6845217942903551,0.41867279992877493 +0.6918317079253016,0.4284588991210925 +0.6137871145943868,0.3238613902475795 +0.42996746299842137,0.28842294206834385 +0.41465049980326496,0.22107547514446188 +0.42939281461816603,0.18119958037242212 +0.30869746206892235,0.3046705721824165 +0.3994598984550271,0.2752426563803887 +0.47778284547703115,0.4335458575278041 +0.44573241470369074,0.45113900289260156 +0.4645538031859464,0.3913873730825061 +0.46513232586811204,0.39711695896665594 +0.465382963399382,0.31949233998463306 +0.4581730663583645,0.2857084869415051 +0.42735537884821695,0.3192334770124572 +0.554806232429052,0.3102219699810679 +0.37306129930834103,0.22470441453347154 +0.3472277223917795,0.2601130901926515 +0.40832805631827096,0.26724076262420104 +0.44744360445047543,0.2387058734122319 +0.46480414269399256,0.2724310456825974 +0.445122182350506,0.25136941663247386 +0.42013534901758803,0.24033156029563288 +0.42706084249607174,0.21029421680329605 +0.46765056250512155,0.21486946933477633 +0.4752297401228294,0.23042029134932746 +0.47494056818871383,0.23926931611911156 +0.5042871832635443,0.27675643554326 +0.5205269455690744,0.3331955670233561 +0.5136696696065334,0.35075336683381314 +0.4914311170371259,0.38495904194788017 +0.4897892772945344,0.45884722456407573 +0.527242898918859,0.5926527975074336 +0.6329466104241167,0.6032732723193698 +0.776668310132731,0.4902712403143415 +0.8549012541411279,0.528858661480688 +0.8660597800844146,0.6455827949344798 +0.8516659736275006,0.6120936868596709 +0.8101207613604191,0.6411394474818448 +0.5882974862804873,0.3407506941647742 +0.5604387521507999,0.3154540955000831 +0.4956031739503262,0.34792810667237273 +0.5535641312366298,0.3403667806479 +0.5795301794761991,0.38015085446469293 +0.5949926972138909,0.31789875020243324 +0.5231752395409784,0.28856888404102926 +0.40138411520223005,0.3009055255871062 +0.4708451628486914,0.2554378508695928 +0.4371535181815297,0.42971760020673 +0.5152570605061247,0.4600399135056458 +0.5188481211444014,0.7225852010298934 +0.7160342335399754,0.6125265953945347 +0.8384828567152135,0.4698046742351407 +0.9033875465013013,0.5882024763113621 +0.8995330929377733,0.6877661941212859 +0.8537980317710266,0.6415196655107441 +0.7674405574475723,0.6256647704009697 +0.7055505513848074,0.5613372324083016 +0.6166827678420983,0.46954196676337806 +0.3035572767129984,0.22539770595895242 +0.07615870237030066,0.03434541820369778 +0.3711516260944626,0.09533551332253604 +0.6821166872691246,0.2223842739340169 +0.5997139215217062,0.3629901407976012 +0.6141024231652354,0.3896785973243151 +0.5951879620301669,0.3239897488500618 +0.5458340644606795,0.36525157082197107 +0.5389631390344853,0.3242848514462494 +0.48558062312944356,0.31098145236455044 +0.3412534892415487,0.2564851640826027 +0.3740378022036552,0.2451229392689989 +0.39788243172879034,0.2897065876978118 +0.4253299236118672,0.26899123183139895 +0.4376904666239662,0.2848377822909076 +0.4577346145914152,0.2885121702215438 +0.5105591416144156,0.36176681506862646 +0.5433839559326453,0.47464740260996413 +0.5237848162430707,0.6801391837782919 +0.669827282400562,0.6531933543955211 +0.7907779216433679,0.4947162566970297 +0.7852510213521575,0.5366282461339387 +0.663214564295524,0.5946544406876338 +0.5632238387824576,0.5064274071010358 +0.44049045441681717,0.3358151911603879 +0.3125737607347596,0.22134259335993647 +0.43751257656164155,0.18585965031339038 +0.37522873280853974,0.3259858786006221 +0.6137340068558942,0.37187612044713414 +0.6631981730182115,0.44360238299338023 +0.8518316745399693,0.4983129797755486 +0.9369181394182867,0.3661517499694005 +0.9025353192903386,0.7871456143696237 +0.9012808203318038,0.6336258647778217 +0.9170963167758406,0.6955661771433621 +0.8937882184606285,0.6605519054185335 +0.8790779709446153,0.6650964615579644 +0.8543336391089558,0.5994820592850115 +0.8312336206086459,0.5773839948695461 +0.8176287412299458,0.527612447568127 +0.8187105655325736,0.5121721623672761 +0.8246921300541116,0.48436808570466183 +0.8221361636769607,0.49070155604715837 +0.8288065194734942,0.4899527130927648 +0.837276816332879,0.49094989879953477 +0.843028426134883,0.5047369001664626 +0.8458369969965813,0.5104780791540174 +0.8488584756494083,0.5247631667348498 +0.850762844049902,0.5229624508121224 +0.8486870526910415,0.533870041197849 +0.8509305715202928,0.5339304207029869 +0.8528085946677968,0.5365016458684767 +0.5353505611194457,0.28281959882178753 +0.12227094172917005,0.12080091234117653 +0.3121767938005722,0.12402355666920604 +0.5145829915783883,0.13830572362244536 +0.6062721609814218,0.28284221878447247 +0.5708556174991776,0.4536100028479339 +0.5962359308945637,0.29470783462536415 +0.5059169530655692,0.48246744259500085 +0.5913858413447495,0.3154350518160835 +0.5845369696371213,0.4088958500494274 +0.5568972229723295,0.41719883666860064 +0.573246598219597,0.397871911397137 +0.6629290580470619,0.44082164750157266 +0.7385007738756392,0.469635218230099 +0.8073906898158868,0.4109309314353359 +0.7293171882322572,0.508168041541849 +0.6732345819190039,0.5192258356323609 +0.6379219293325988,0.4329901634247427 +0.5348829626812024,0.32813101996307276 +0.47731879351515183,0.2819418906254312 +0.5403427481423985,0.29015037408034355 +0.5624683499099613,0.4172067044817085 +0.5772319435830463,0.5982691047642243 +0.6311985254022175,0.46707868560954163 +0.6207501291967551,0.38412260996801745 +0.5949555039155526,0.35769402969244035 +0.5582054853204496,0.33676353086078026 +0.40648561714369635,0.3581050633226786 +0.452829003314995,0.25845932952157036 +0.5021145343569279,0.3112928866334012 +0.487737625816807,0.32606211294126525 +0.42826464770422723,0.2908351420416243 +0.4656834304136821,0.28073048582540766 +0.46707794068278846,0.37156850087554777 +0.46242210267028905,0.3384917973378065 +0.37146505711900085,0.29972350587694746 +0.38405868409448424,0.243603914897389 +0.4699800312321354,0.2963759302135091 +0.49369299409696726,0.40536087738287585 +0.47511127589134333,0.42609149203834623 +0.4690456390183533,0.4895488618222196 +0.4547642767238033,0.560793578443481 +0.49477756021325464,0.3620970844052202 +0.37288534639697146,0.3764033018326186 +0.2726443409805038,0.26450115433727517 +0.3269841372829205,0.20951700203799853 +0.37762597201666037,0.20804601901006206 +0.45956397054646214,0.21582591526685552 +0.5956385731446499,0.34983086574692257 +0.6279453038905136,0.39118543254607235 +0.7256162166290194,0.5090131757998462 +0.772733807531273,0.36873680341247367 +0.685766339273213,0.5222143529157883 +0.7642492651617874,0.46199923738806925 +0.8192473053587535,0.4039451776629507 +0.8034652471204342,0.4964788554494355 +0.8103522061960722,0.5082204340245896 +0.7927027940416633,0.4945271907638632 +0.7195480465586265,0.4989865420636152 +0.6200224756933677,0.4327783881219242 +0.47408914564045557,0.24797150484653893 +0.24249058960848133,0.1016063093810715 +0.32060217856012074,0.05817699430492809 +0.3864796757535468,0.12564375992528945 +0.5314410924687922,0.17630833381676722 +0.61359471080106,0.3807288705072155 +0.44868552682896323,0.5290201304633324 +0.428392648678877,0.3783778547017772 +0.5488893389470927,0.2364580928515112 +0.562100231623844,0.20226588838715906 +0.5138916373036676,0.2497811912683021 +0.45878967640854,0.3016594051339817 +0.608756601784845,0.36813497531437106 +0.6344443559379697,0.41109019504612426 +0.6937422752088516,0.4369893072623327 +0.7759764194162073,0.42177316532808723 +0.860622703992877,0.39944389449561274 +0.9269543885794724,0.5881205795294672 +0.945699572523386,0.6413406131578967 +0.9309361576642353,0.7592347261836064 +0.9078820943450453,0.7334883210672632 +0.8872715234383196,0.6863027808832335 +0.8524205684303253,0.6245463488467656 +0.8221637010228459,0.5748229024936647 +0.8106938600199104,0.5259412525384547 +0.8115994929925896,0.4964542089288288 +0.816837429965941,0.48237195595410154 +0.8246889114032938,0.48224133237511846 +0.8308389186509598,0.48536089047004227 +0.8297818898805576,0.4937627909971883 +0.8142557143822483,0.4889589248507458 +0.7609548568405454,0.471406340446705 +0.7014364599886487,0.4599841235581541 +0.5425010919342694,0.2919164299021452 +0.04886761307510785,0.13957288856763825 +0.3343733548977372,0.11094716187706077 diff --git a/synthetic_data_Beirut.csv b/synthetic_data_Beirut.csv new file mode 100644 index 00000000..30f4f511 --- /dev/null +++ b/synthetic_data_Beirut.csv @@ -0,0 +1,1177 @@ +0,1 +0.04052710532672483,0.801129817824095 +0.5593115090675751,0.486606955444103 +0.158577650767071,0.41522890322179784 +0.2774971723234969,0.2213911711786762 +0.5141697525382295,0.13791450855730986 +0.039418250317774337,0.41781952969954494 +0.1715820729533693,0.7832462786273587 +0.42997375125671067,0.8419953583214831 +0.6164295672656075,0.8487648962460326 +0.434899777123602,0.7853920458389018 +0.5006257891074869,0.55292904367421 +0.23022568223192857,0.35299986594770894 +0.2110239863151167,0.48440995804038445 +0.428098887155518,0.3326740860363682 +0.07603088020397375,0.13280183074561777 +0.053023993962819475,0.16014999148460143 +0.05615147947614421,0.23434275384664807 +0.1645173430252176,0.46105366937293024 +0.3310344218824178,0.5419908164994355 +0.5273160337790768,0.41202494494941794 +0.2603227495845507,0.5552201270096903 +0.25182032582226077,0.5991619824326938 +0.31505954261943736,0.6255606411805696 +0.32966810461038987,0.7417207955031317 +0.07311084865676572,0.7396960853251067 +0.42924755806717385,0.5311450957333363 +0.6215417384381108,0.22445395584992997 +0.11618027089680069,0.16020837423414883 +0.08564454316100491,0.23542192574244228 +0.5959134101177161,0.4233790039283961 +0.7411553262805433,0.35349023336019125 +0.1610455512813877,0.5696342586485854 +0.41686931247649084,0.5798999666164755 +0.7005488871716317,0.3921589254654727 +0.15332955120217315,0.5700990556684635 +0.15877571700163667,0.7400161622674951 +0.5009300112143852,0.761150777208298 +0.5623372196499576,0.5247815250442819 +0.09396278857096022,0.36674383276318784 +0.10318380593057899,0.1974400281564665 +0.06334418057661385,0.2815676331033123 +0.3264660834887821,0.3693485855417443 +0.3127216696376831,0.28648459906391827 +0.35003477330920174,0.2928863167256224 +0.15193581579355167,0.619765460383995 +0.2551095783414872,0.8574118016667478 +0.6424774526805274,0.8390991686323477 +0.5085058211691043,0.624971389662422 +0.47491493815641034,0.3820175527865626 +0.05628514289203754,0.6473129986597179 +0.31089857217047184,0.7539968489296586 +0.3353184461205078,0.6912581919428282 +0.34765386577392465,0.7766031025497113 +0.41847917432704285,0.6804746388212191 +0.3989437222018498,0.567131876847413 +0.28034627434343046,0.5262141822858554 +0.2638211846045921,0.6287486552104748 +0.45580643410169397,0.6315986512999173 +0.3341556787103642,0.4564808904335203 +0.18611219523180647,0.2918311953039909 +0.08438974617933878,0.36635512107235235 +0.3068822621943595,0.3911745547571774 +0.16765385864222473,0.465451687493889 +0.27047008272851647,0.5323703884157721 +0.35328876968104755,0.6187001465681087 +0.3944303094883683,0.35635071986711236 +0.11276191471700575,0.10804349182167695 +0.01983082294234322,0.15585499999211913 +0.13781246541333703,0.2891502081847799 +0.11780205367630636,0.4359928368768066 +0.28692948814881997,0.49793523541422025 +0.33794707055944273,0.6764494775555883 +0.20110774037891835,0.5830841063444709 +0.33349674936244866,0.48768556109577194 +0.6171752809763059,0.2268783151711049 +0.1267108619066278,0.17391282317014847 +0.5102934836750007,0.24004861708304226 +0.380120217756094,0.3768534063641158 +0.4583708643382132,0.419994205163799 +0.14545360205872238,0.6168911455994884 +0.3430816232760566,0.6035042404084748 +0.220774710152793,0.6434512137253882 +0.49494087690340316,0.6941150425664186 +0.28688734766496865,0.41269102685466774 +0.07914039491690078,0.20757275816188572 +0.05916658043175797,0.28292220826024356 +0.21175092456271313,0.4489528237996904 +0.3115239143010604,0.7565268276813573 +0.5145598649382392,0.7839773295954026 +0.35965889688138974,0.7038069366191553 +0.39590448136510487,0.6510270832843197 +0.38772478695191387,0.4400436579420088 +0.19985583422252348,0.5018911956872787 +0.38928285236616206,0.5641138552643777 +0.3270612954714402,0.31125539535861496 +0.05359724163388037,0.17912667986632927 +0.39047667379623,0.44369053832963795 +0.41478234524688956,0.3736054896662217 +0.042159974570157445,0.6860374211078547 +0.44404307002644267,0.808852970460241 +0.6645056008522607,0.46358433357804374 +0.17857024071531588,0.271576762152434 +0.009053081272983569,0.1505030989386624 +0.32078006859877023,0.48537302008817623 +0.43956351275118966,0.44050922982226887 +0.24757325646392722,0.4310601054876603 +0.13226729629891304,0.528643727211125 +0.40072268242961,0.6670644282141023 +0.3553577661102512,0.7301990984607518 +0.2683989405321012,0.7750670908541151 +0.3625923990783155,0.6138344406020008 +0.48674806946836313,0.5282087921182741 +0.35998481507898383,0.244772672610866 +0.01177439093453347,0.13228261468506913 +0.1198101341585566,0.40784978859523585 +0.24929746982546755,0.5751010178525044 +0.49099537724527575,0.6815950273288683 +0.23930239674656287,0.46866971246243344 +0.2661107778240839,0.31967625016405865 +0.08182319997793025,0.36586183303227654 +0.3550260662621146,0.46886625877854626 +0.2672840952563515,0.4774483739504019 +0.11148715017934219,0.7511625288617894 +0.43645885581681126,0.8146255610964497 +0.5410537719099617,0.6584714053922547 +0.38783848281180977,0.5870855449614852 +0.29096943136658304,0.29175579542836305 +0.0696841478267032,0.1696293949787506 +0.08146116136560648,0.20776617523414842 +0.06428804992884518,0.2732982635025391 +0.404832035256206,0.42815104119525577 +0.15367645023472573,0.7066316603392173 +0.4741494059013263,0.8283628223893925 +0.34910327192075985,0.7524405716548422 +0.39055129881148015,0.8637644051011655 +0.41649270052852116,0.676646709325116 +0.38842141623764553,0.6461236475780754 +0.45628798002677856,0.5994180439866046 +0.3440853952962803,0.3632110952702838 +0.0529711842475546,0.21604248877603677 +0.08741119502962039,0.23341542478339294 +0.060267508022954254,0.21362340446592354 +0.09751701353850492,0.3024738430453754 +0.18377616999404003,0.4611464142001847 +0.13088968394670147,0.6549450157940181 +0.20966973898365437,0.6945950983753566 +0.46801224345506176,0.5744215845068272 +0.5868657826697289,0.3301545977021482 +0.017519235608931875,0.27437412734054883 +0.1429661214185992,0.5028333067024356 +0.3747320770783126,0.5234351157236834 +0.5421201586095147,0.4412127732467535 +0.3324528932186182,0.16107946631506811 +0.01073867082471391,0.14776208994217294 +0.2285078465673785,0.3619211017459555 +0.10857960580521316,0.5434126853003065 +0.29407459494044197,0.717526435727958 +0.5341738461829146,0.7397046683939528 +0.5731089114478733,0.7528697847017956 +0.21826055643413597,0.5543509124750811 +0.28669682141796615,0.5784683226538629 +0.34804195161601226,0.6203205584406922 +0.49885225290240065,0.554294347667199 +0.11464840172392826,0.4169173239940583 +0.15367379782803353,0.4730368255750815 +0.30733340975061213,0.5252110957191038 +0.33498147126130917,0.6848347185857848 +0.31516408916636124,0.7092897890771609 +0.5611134766882159,0.3222818374076418 +0.03878796100167,0.633126139531312 +0.3401792645060224,0.7303220628429021 +0.6446579694000928,0.27784079308473075 +0.061870425932390706,0.2661381959454888 +0.055486828082330845,0.38476032012007255 +0.6326984762412309,0.3947034477504941 +0.4589897393648444,0.41883078210262936 +0.5450106858575623,0.41640108816574795 +0.07561504839974642,0.6734688876894656 +0.27109476920801256,0.8866220711128374 +0.7756547330911209,0.7459669707915514 +0.7369691132645183,0.2606481909301114 +0.011560678480716072,0.14326581356431894 +0.07556575535852288,0.23525968189939173 +0.12534052132107798,0.39274099462392614 +0.42567369336917793,0.4910378455266497 +0.36803168054130825,0.4779790341027454 +0.22814542052486372,0.8316522239200431 +0.45404335851176464,0.8590434788171919 +0.49629047507257357,0.600201189414173 +0.35465708370867527,0.32535099977588544 +0.043531358236990725,0.30086216325324994 +0.3057687878254394,0.3668763040861782 +0.4550107418963571,0.39769160740650195 +0.08918678759495113,0.5995948909676225 +0.24897542592978342,0.7197936772055323 +0.3816445469414032,0.6802070139662239 +0.5800031422896648,0.5278904437105838 +0.40339288110827093,0.1466000079855105 +0.018874198196131436,0.12824296949076047 +0.1911099254863543,0.33729919785388196 +0.49284085625659757,0.3346498906033636 +0.16413781044965425,0.6446589230376183 +0.24223294851357252,0.7514474390637664 +0.5794440507217364,0.6923701761955656 +0.24686133858681245,0.6774300931712635 +0.3274181782819915,0.5668312310192178 +0.31240743395046366,0.25056666131454536 +0.04675230383331244,0.26624459023639446 +0.19825816152182665,0.35602924221557186 +0.1396540105181041,0.4676671921398071 +0.28919205066190923,0.6511166094607568 +0.39817911381875976,0.7358395455995163 +0.4662068783696691,0.5312452315365417 +0.26053664085230244,0.2690088152420199 +0.05706602334314945,0.1184433400426109 +0.030693262811918885,0.16476812955867762 +0.5216651558271559,0.34581607574204215 +0.713919639504677,0.17099931833170887 +0.016711801288575606,0.42002019278891656 +0.1978473365077599,0.7184407113740097 +0.7497456668938667,0.27820563311533786 +0.11289954184177618,0.5882254837926174 +0.1905518173950646,0.7011603115776514 +0.39470303054050654,0.8259512780668421 +0.7478168605891586,0.6475564240289384 +0.1283774673789994,0.5842133163395454 +0.25787523385874483,0.5496619938853463 +0.2460196315957143,0.5307666658437229 +0.37686777110501213,0.6225628255721098 +0.40098506207588086,0.4469900130452539 +0.1408175229863073,0.3611335455746745 +0.2505478262610984,0.26965254540548284 +0.06005853413839595,0.13098156449913692 +0.046508461231564574,0.17179545757183606 +0.12930220364026004,0.4292683600636996 +0.27873146530736265,0.7069154380529439 +0.39111661906478684,0.8047759531536646 +0.5646859406770598,0.7612704633349863 +0.4829980134404316,0.6782264112253249 +0.3276093601800864,0.4164629279846917 +0.5957884191776367,0.2948054074731237 +0.42781549687196624,0.27476969356553227 +0.026897549626094676,0.6511799095934974 +0.30017292496063985,0.859202802032649 +0.764959812075667,0.5093552469326309 +0.12654608486616534,0.639560639747637 +0.3707576989697948,0.34246304625310486 +0.09143975376023268,0.12336668370020669 +0.07170525192383533,0.21897843476323042 +0.14096763728415673,0.38775551312416273 +0.5240873693812576,0.41375434391495447 +0.18080753085902332,0.6179852484587963 +0.272877007691235,0.9290794728579665 +0.7296939491380116,0.8020201920075958 +0.608744680810962,0.39271125190618833 +0.026548624035619972,0.15402194854933618 +0.050604373210765254,0.30142170185598216 +0.2841394245295296,0.4815800785185502 +0.401246994687316,0.662701427821943 +0.4014720618259618,0.35312587016674235 +0.10575410722460794,0.4715532659668786 +0.27460902926124003,0.5992011426843045 +0.44316443795791044,0.5393115877172451 +0.358322530943358,0.2231224178882004 +0.5746593474675911,0.30670112366140456 +0.5731919407180358,0.21314039822706968 +0.04193070530405547,0.4420164524744435 +0.34396818276234303,0.5075890420989521 +0.13295543192276518,0.6859135626560328 +0.4498251676038214,0.7629723547569637 +0.39551657433695153,0.6898754237889231 +0.2950211166993655,0.7463469504019288 +0.5330299734451627,0.45543685547581514 +0.09350574015487548,0.21404692526930183 +0.029427587982582513,0.16644030806523963 +0.0812360644246383,0.2486368417309863 +0.18763861057968256,0.31063920254103355 +0.11965054272218897,0.5200070141846646 +0.38584947581588547,0.6597684620669876 +0.4636476039349224,0.7481176255839651 +0.6666662096204735,0.7271491287881225 +0.15208610890533542,0.4233076571686123 +0.13866508005442782,0.45517495266671737 +0.32166165109721845,0.5556300877563846 +0.5924485921173243,0.5936172007487772 +0.1301907896844686,0.5506231187821833 +0.16366526482592972,0.44124615184782195 +0.28042358156769515,0.5065284370500022 +0.17142531273762818,0.6128693817986093 +0.18238854406150734,0.6963386534440248 +0.3643072545106271,0.6957817672479846 +0.43364208931666465,0.6486088036369108 +0.3914556204819076,0.6190140246274416 +0.48679324978909766,0.29732906813247734 +0.012821018694345664,0.22053048010826842 +0.2663570046116225,0.4522278606109526 +0.1722561418810561,0.14787301418608076 +0.03659707307391483,0.28080165381343625 +0.29257148500867036,0.48914027205590854 +0.2995498776088749,0.789510965210748 +0.574698746137783,0.7273570893937079 +0.3895061611677872,0.5238516329813019 +0.2742585539500013,0.4858058392161379 +0.3987818359866586,0.26826298232207446 +0.05470106005034792,0.10676911471427711 +0.03212139010057176,0.1849855780281578 +0.10438582299930262,0.41399651758663497 +0.29102417823280285,0.7043503521654786 +0.438077777573368,0.8014713524385989 +0.4627804457605081,0.7586352823852772 +0.4037860929498086,0.722671747082659 +0.41624081129972956,0.6461185215786256 +0.4117270409583794,0.42452946297932936 +0.41938757891563694,0.3510227798808512 +0.138245642169192,0.3949689566406001 +0.42006888980766305,0.3153574466159927 +0.6236714123956887,0.2273450493419379 +0.5030824541462647,0.34377497428670667 +0.37680453057691277,0.5472285746581671 +0.5245714187014224,0.5213785766653538 +0.5854177474297234,0.44589260212816156 +0.7480861543742225,0.3503248392929744 +0.7911061047590997,0.22418388720449936 +0.27012503143995176,0.4955295025445344 +0.16491052506443288,0.7488793729440628 +0.33643928166305676,0.6046414970305926 +0.46527200931879786,0.573863208194668 +0.2019308805231711,0.7813900707800846 +0.3624735474166471,0.8371375201684841 +0.42875769729414404,0.6618107556152184 +0.32069718834021965,0.6172623633270854 +0.3289040326691026,0.6169787644272932 +0.37781268353852693,0.5636384486177315 +0.33215603228534873,0.38712978356341887 +0.1262254118773109,0.19159403440022962 +0.0363645255523506,0.18018400665981707 +0.1558605134306549,0.6306071876388949 +0.2174014746890878,0.6645149587435654 +0.5589108466454413,0.42483040683074824 +0.09513211249202834,0.5397034286519307 +0.2399127781113145,0.6264420150627109 +0.3431469797690453,0.6980683802351074 +0.38943052287357593,0.7339560388249396 +0.33261159058531425,0.6475700138879449 +0.4915664493468026,0.4749079345835469 +0.10171997545970979,0.38710719340305294 +0.17245948312668377,0.49026295534238123 +0.46612834925018665,0.3233392238057744 +0.047583103174417954,0.2191832065203209 +0.10970959066073407,0.2523490786116004 +0.09602776168664195,0.29168805474958753 +0.12644678352798105,0.305386960453624 +0.1739567220009457,0.28895086045036306 +0.2053041457891987,0.42063370339748357 +0.19599676129931037,0.6872094272378705 +0.377314746336131,0.8116562365081876 +0.5344340204573291,0.6567818521317436 +0.3026116490013424,0.5363226532008553 +0.371069818692125,0.42155811183314523 +0.13287261126885938,0.2603876590278432 +0.04880812763602222,0.7829963563518588 +0.447846233792863,0.5680700539560153 +0.5874669551168639,0.257870495274769 +0.026601642367141538,0.20842063423366902 +0.05801194905562528,0.3153760432651594 +0.24446815249471307,0.556602239512503 +0.6174128054857083,0.7243426440893587 +0.8524387477840668,0.11649754641425479 +0.04077950119499697,0.2650460898417806 +0.1624945699980319,0.2746218144418701 +0.26527962085510975,0.4655781983524029 +0.271120548216875,0.66258168209061 +0.3631119727667623,0.7917879818500636 +0.47938188904929485,0.8773471115502325 +0.41946566100028365,0.8068590162789148 +0.5104506015186104,0.6243008970134597 +0.31156188245977795,0.3883301317020205 +0.24504879114172523,0.3705038725689035 +0.1518678664985156,0.3629612027971062 +0.20751634237745858,0.4148018657443784 +0.30532068010607,0.38289120786720676 +0.16741198299375423,0.4799423514966625 +0.2694990634605931,0.6146225928197294 +0.37299245591609964,0.6852695940739909 +0.10760593413059759,0.688972949862535 +0.164421200733206,0.7921978233874684 +0.6007436513204646,0.5952909587784255 +0.49104642862352,0.48098275057103695 +0.2898007034919626,0.23089778419316062 +0.023024767634584817,0.118818700293019 +0.07102075218331406,0.2901848256086122 +0.38274878259038414,0.40844985835640835 +0.6618997453876274,0.3783668875039908 +0.7320265769110261,0.31011238688827736 +0.13767033813788657,0.681133329750518 +0.25185328719081773,0.8053992985286178 +0.4591024517481016,0.7917596100391555 +0.3862329422980035,0.7828259466724754 +0.48808228963918326,0.6906633375880726 +0.41978886718654074,0.27868014569231264 +0.026536226269508127,0.1363304853203554 +0.05259120463715551,0.30856138462452276 +0.23597848412640357,0.4626747666989286 +0.24897024032568857,0.6420644520602837 +0.3977146744267237,0.6968109606491433 +0.3658688067965943,0.6388183831063774 +0.3344063758462605,0.6301833390099704 +0.31343835588637936,0.5780993699027671 +0.363335013347486,0.4628654121552097 +0.20063644645273396,0.5247735976265281 +0.1752705871855774,0.6906447409389059 +0.3793397247351731,0.7466759084363873 +0.38827988500864274,0.7252506016430651 +0.4444335698566434,0.7084418534007328 +0.35640197988195027,0.5105814336847382 +0.44830107683709125,0.29476612801222357 +0.012557208536600355,0.1819957494420965 +0.12639191745247166,0.39235997193226535 +0.13297432659515682,0.33449590200361295 +0.10882672666242328,0.40141746394844485 +0.2537605166141197,0.5652304886794068 +0.47833129758060555,0.7139794825272776 +0.2647566795042335,0.597445726291328 +0.4069643616204761,0.49524855605143414 +0.1525209545912439,0.2911690473052956 +0.09291085599776364,0.25053530927139894 +0.08089074491517208,0.2604359685924253 +0.11774501203126293,0.28209367389568657 +0.08095967768684684,0.4021661578913391 +0.25758510825033426,0.6660121678154195 +0.4969858824630875,0.7618930338495575 +0.39569932217781173,0.651159942037501 +0.6082696317921572,0.28497678036529595 +0.19931706783846118,0.3949922918590257 +0.318404972516358,0.40715932839027713 +0.7133136390813158,0.18039941784599808 +0.6454892157760341,0.14343234894179258 +0.41405183072060703,0.32187116140521044 +0.12118059395339596,0.6762868164800244 +0.3085891306042722,0.5873796342787562 +0.36285227532950604,0.5017729400720649 +0.4231648444639053,0.5424441694275187 +0.13650918005315174,0.6193256377102735 +0.3079075216890222,0.671145915869036 +0.4888077675729829,0.46974050990563815 +0.16755244133915118,0.29323053354914075 +0.048688083881458497,0.1476160585624985 +0.04810038208404124,0.20720815654985772 +0.14268824456468857,0.4215919374690494 +0.287130296197045,0.7102645634376491 +0.4436557292424147,0.8056973217524432 +0.48076695198210245,0.7426412700322389 +0.4580931662982369,0.7042674421046103 +0.407606869888758,0.43718129388877763 +0.2295644581051894,0.38302105658582747 +0.34028515215745364,0.28784406180172023 +0.16248589752221812,0.624237894903943 +0.14445647595639038,0.7735908030125735 +0.4970055221935387,0.6868526934389515 +0.48823946708743776,0.5461082457551626 +0.23070487377354482,0.5974332093159274 +0.4516096114589003,0.4024852513570889 +0.2361433803761556,0.10131955145037279 +0.009582936762653007,0.14432874319441466 +0.2900330423972701,0.42704638831382447 +0.202806770778044,0.4822306036115164 +0.3363974690047517,0.531826436427646 +0.5006179212943774,0.4721518158096095 +0.5996593236228364,0.5100907086443873 +0.0519769489704939,0.6560188530741058 +0.30784040685901287,0.8353636263356304 +0.6390328406547119,0.7559399603490002 +0.41003572936075133,0.5277410148661578 +0.05466374754272285,0.14958295223510143 +0.027013897892682756,0.1700839101974067 +0.13765865562751195,0.27227324242651396 +0.230315685245529,0.3292205333140346 +0.12043261526619625,0.5660377739881051 +0.3448238670426394,0.7975215314439512 +0.6039386986986344,0.8266185520649871 +0.506034851015582,0.35879409306996735 +0.7183144091727469,0.17832785841718762 +0.1267095804067653,0.2495642602012086 +0.23202106353932248,0.4535422920396346 +0.6058736442817537,0.3492069541804053 +0.0789355635551539,0.6695297955308755 +0.5718926786713724,0.547481298351971 +0.4441291391334884,0.47935906044299137 +0.4468698799092328,0.5080843566969498 +0.13272398708712918,0.5394771098157577 +0.24407875535044055,0.6959546207178033 +0.3701992630529589,0.8243461845879632 +0.3754316269916379,0.8508270977456148 +0.4211663603294628,0.7164896725369142 +0.40760263795897944,0.5458388923654692 +0.3447359203892835,0.45540589086285965 +0.3116141557332399,0.23342943187491272 +0.02511757611937344,0.12079653141793635 +0.05685263871487827,0.2511014043850553 +0.20160776374388115,0.5527849196431681 +0.3811961411988099,0.7559680937413293 +0.44839948410560404,0.7310301660227113 +0.30772766467343327,0.6618610619354001 +0.3774578570882201,0.6797381638305017 +0.07899954914131285,0.7295542954136831 +0.20764157173611716,0.7701367138484371 +0.623962759899317,0.5070242880898028 +0.32060015197853653,0.5382929443382098 +0.20105728504712184,0.5672981142016628 +0.3766564130346631,0.5135881899899127 +0.2542539238635132,0.49656021586413457 +0.2567719220817578,0.605570256605322 +0.30821323391203975,0.677703976513959 +0.3760684728186668,0.6983503102048463 +0.3867884575872458,0.6159850357897697 +0.27344414588620714,0.5480787157064515 +0.35224810238571225,0.5578558444012023 +0.4047997593410639,0.35961177938917716 +0.06622853874392795,0.16410410401367223 +0.03320625424000294,0.1742309331592597 +0.05914849042207074,0.28321135039199896 +0.2504815458961159,0.5647850035644326 +0.33117371793724176,0.621403515231429 +0.27688717838893623,0.6008816360388112 +0.40581154818600884,0.4897100328552179 +0.31232762333111863,0.28338235611783 +0.03198030590640476,0.18338617679285396 +0.10924029349014941,0.33772039407611437 +0.5438719987239051,0.3340132533926277 +0.3590106367648877,0.33513575786516614 +0.046675533050850634,0.6458048819378718 +0.6231752037279911,0.45358657829069504 +0.02287092804643736,0.6527796982589922 +0.21110936996874757,0.7866069077085036 +0.6018733381527617,0.745383500923946 +0.6362103223063451,0.5221144556096236 +0.08356535433754587,0.2039843499307711 +0.020688980815397467,0.12974643705031488 +0.11626222728335735,0.2710785865314874 +0.13251331447019496,0.44610673181448013 +0.3056929111126492,0.6817746161235455 +0.5458404421173844,0.7717134951210526 +0.49280780548107345,0.7644308804143652 +0.487883478346558,0.5192089079912601 +0.21714368460046413,0.11953949926216315 +0.015621483324148115,0.1219780444887922 +0.09302487968320575,0.3078772425119092 +0.3001586794505402,0.40756610028847645 +0.2738663553874247,0.474123656667728 +0.38216537232739023,0.5298685430564026 +0.2882971465253552,0.7671059964760669 +0.435947239348441,0.8940768240336062 +0.5024501084699159,0.35888743394366945 +0.5999031066199394,0.22803506251206088 +0.028506100174461754,0.437177896424026 +0.177923619726545,0.6979318855985954 +0.7845343350455057,0.2552261650120885 +0.04961901902577506,0.6146775483022028 +0.193148136116535,0.6948759554614896 +0.5337575673438516,0.6495701669523267 +0.37369441981753804,0.6209636925577074 +0.21840357777925795,0.52588063469375 +0.2075433432815387,0.5571521519651057 +0.4108346104145833,0.6673338412084404 +0.40842232103383563,0.6270838378775414 +0.24284681675004313,0.5335821508438463 +0.33818954225436093,0.4302638172359212 +0.2188681363805835,0.2983114718874954 +0.1071444451684776,0.3908254503527883 +0.2903811335227181,0.41468161337356485 +0.3190268277752276,0.3058216571278958 +0.08179002999311659,0.1137275695604095 +0.04759451746389112,0.1975026726381146 +0.3027015030033309,0.3397940992721364 +0.12146714328312044,0.39186125986951587 +0.1531342863859116,0.6732087730197107 +0.384775996163605,0.44822353116866726 +0.06704634427247394,0.7151128052428408 +0.3047320842389812,0.8246203659538826 +0.4989746808427551,0.6785033940095483 +0.4955137669465955,0.6388325690118315 +0.23703619835014272,0.46931135646332955 +0.40129467840313077,0.2810928225031137 +0.056006014340586725,0.12055170533956377 +0.08777913450177624,0.21627160903051376 +0.06186372040985425,0.32486310595616086 +0.47401237482300357,0.4466556905927665 +0.5818079709332544,0.38171303265645773 +0.6414790748806553,0.4270004331327106 +0.6612633465954343,0.4082014261970275 +0.07109907268653985,0.677856445195268 +0.3389570414627223,0.778872251375918 +0.6362670659281647,0.5451886056910822 +0.12264665959844398,0.6310358046394006 +0.19982361791202613,0.6519532798593243 +0.4745023250030005,0.648419737703716 +0.3480652570321167,0.6310617922645182 +0.3787700533427983,0.36107194417430977 +0.021837621924730922,0.14898765084551016 +0.06064373254073292,0.25120183821148445 +0.32034575935466464,0.49212530246806624 +0.31407964225944346,0.4557202457593507 +0.17973819372955432,0.49265971771302997 +0.5625655650440657,0.25277036424079996 +0.02478161453913588,0.3285387157825668 +0.40134087200282637,0.40388730161357556 +0.11303436754824249,0.7432347534801648 +0.4729872643399528,0.7682608364683904 +0.7438730596634071,0.38045030825710946 +0.03607881068765287,0.5962995885771403 +0.24067834016872092,0.7701321838954349 +0.4047391414173343,0.7815021871168877 +0.37275674934836267,0.7943991421279324 +0.365388214545826,0.6422916649661283 +0.39784735436597835,0.5466750263222337 +0.43792268628768044,0.34066247934171884 +0.025132149455019334,0.16912242767270116 +0.06701281665979165,0.34470546239613437 +0.21681109068265597,0.425278037712934 +0.23766067621338213,0.5520704983710139 +0.3216084241494402,0.6324704884388961 +0.4963710009476558,0.4435739218421551 +0.26694864031559445,0.13770261404516998 +0.011606276033963962,0.11297094819976154 +0.2521228789991056,0.5414608716028292 +0.3604734241544735,0.4472456275643289 +0.3388427793587011,0.3324608504197212 +0.2930451631206455,0.2306882142621666 +0.28659740087049235,0.2836075424657525 +0.17700532076691936,0.5763320325808376 +0.4025126695166524,0.6768894790432441 +0.4677422642165829,0.6460521816090021 +0.41563433403921024,0.7140856980042489 +0.24923208353015652,0.524610221295227 +0.21985399720505422,0.4940761624912274 +0.3402030169569627,0.5999418496048001 +0.37462770934532297,0.5940727590487168 +0.21235081550998555,0.6002908347998996 +0.35021603103394267,0.6370342372746242 +0.31980389352907435,0.6189557312848614 +0.2746595143953589,0.6534659265341726 +0.41835564370076017,0.6140174268614296 +0.3644790648991723,0.4284738897536258 +0.163054257612408,0.18899968263218464 +0.024597793814669876,0.12989780304569581 +0.056008338921732695,0.22486573453828954 +0.1709210276405644,0.43578851215455194 +0.2423171698766304,0.5539238451953393 +0.54634487622606,0.32852035755197917 +0.5146086811423046,0.25065833325819403 +0.05900648235590982,0.43641126148305753 +0.15795499084549702,0.6719912289410944 +0.38223034139018786,0.7508333324087518 +0.46218663448700203,0.8117939828422397 +0.6893525122797405,0.5422800778404805 +0.09300422667379346,0.29913723463607084 +0.08416101335503973,0.21309712525497024 +0.06947976349979205,0.2433096468027847 +0.208342790579496,0.3145234286241173 +0.29776421185857826,0.3421720265750393 +0.2423734962659366,0.5487198828701895 +0.3416904508671602,0.7410268782287767 +0.5013223885908962,0.7975221274903989 +0.32904887195589005,0.7909953592839776 +0.3873574137238833,0.7165688275051623 +0.4592089056436581,0.5758122204738414 +0.4533797203969123,0.37305283539995987 +0.05444136261309164,0.1165577769077899 +0.01834872364785248,0.15546163913899197 +0.10783362387361319,0.37702813738024465 +0.3037244081145252,0.5807735918947973 +0.3757800757449545,0.5725588201486289 +0.038646906609825386,0.8054687975444139 +0.28433090445084835,0.7645859717000439 +0.5860396622932378,0.4909084140405423 +0.4462400376279642,0.5365500449206341 +0.22550690171489726,0.3673870562871702 +0.06182530521630097,0.29855090374551674 +0.30378049608525237,0.39292076223253763 +0.18533110616443788,0.49439722291025445 +0.23208487031154715,0.6163156031496368 +0.3599986731588925,0.7106940745078263 +0.36300620432462066,0.7298861740757351 +0.3881299495247276,0.6187641023519417 +0.34775418039107,0.44607895605001957 +0.2611898779566426,0.3504128455509701 +0.14984926579646374,0.37086009972834205 +0.23289823529405787,0.40899828069289185 +0.29476469751757145,0.2692365943919897 +0.08591079710918573,0.1486625671129614 +0.03770664333860255,0.19963979717616664 +0.2729194760006326,0.4155284463640647 +0.1582848727519682,0.5936884879039163 +0.35917532439838307,0.543277323152045 +0.3441066443521402,0.4708567260881538 +0.3178802132238163,0.5148286818567637 +0.40039443965086996,0.43092903487382195 +0.11988174913924593,0.5784299372626343 +0.24008274075587185,0.6830838321458105 +0.3450616001682985,0.7065539954870884 +0.6121085881477609,0.5535416602131056 +0.5354655980443372,0.12001195547889357 +0.006064534186614168,0.13123980162258164 +0.188468784072018,0.5778033732368637 +0.4359810053797023,0.7019937633254015 +0.41493171448667937,0.5397711395283838 +0.18000477550328137,0.6959509252298279 +0.4899587034611399,0.7453124521873861 +0.4341578781101687,0.40956118695805327 +0.10097014902852226,0.15826252100114796 +0.021756142375332403,0.127819746710606 +0.09006640314012204,0.22053965922356225 +0.056923478835185615,0.4305796920508538 +0.30195379253703264,0.6239556669109803 +0.507041513861077,0.6601063011935161 +0.5398241876930326,0.7242076395689657 +0.29684340950387234,0.5190280674990428 +0.19936001298501685,0.4627049862538245 +0.33011758323658896,0.5981733797946202 +0.5757123231220711,0.47498100987802894 +0.31136214729515876,0.4997178911298543 +0.20434898135678373,0.5526133178708894 +0.24103745815345104,0.6286895274028679 +0.32804730530752285,0.6671924589910576 +0.41242656106938236,0.669414222124676 +0.4376159607857018,0.5102677344393396 +0.1818520724562686,0.3977795838621752 +0.3244423567872802,0.2795629798882507 +0.028011113401981876,0.19452911612007417 +0.11867848037298216,0.2799557446949302 +0.1240981221055237,0.29927685851643304 +0.21446195242304048,0.3175745605873195 +0.1470347940751407,0.6440434454757741 +0.4344125985595868,0.891330301607476 +0.7169594763878697,0.7001758216600664 +0.360153913456192,0.6257883309235723 +0.22704148289910664,0.4254008530834725 +0.3209760188684466,0.5333212613137095 +0.40851473803554916,0.46188274017929015 +0.17848899958449643,0.4230352639420359 +0.2014386355643506,0.49243637910909516 +0.2987559735428811,0.5493057369235854 +0.34329587217167695,0.6706297992500152 +0.35235220189780037,0.6124713419808681 +0.06461590527739423,0.7556800840978245 +0.21135234830314628,0.785131633145923 +0.5821233987133693,0.5608517526610296 +0.32379931207719537,0.6527796386543474 +0.37869924302481334,0.7213613985721435 +0.34400495882816523,0.4484962224184675 +0.2393802702149529,0.4312103389947907 +0.43238627905603744,0.33449918025907505 +0.05733138322165873,0.13179782030687234 +0.029771506782896667,0.20315125581088955 +0.1375647783120016,0.4320062398163389 +0.295172631706367,0.7009637950638609 +0.40469515318949517,0.7827301620083379 +0.4681734144145157,0.742103338113234 +0.4070663153653526,0.7077897189823581 +0.41406336421936973,0.5986118315615121 +0.5416862367956001,0.3586856126164949 +0.022123962638198717,0.18948292728961755 +0.05943295358922833,0.2539237141170043 +0.05454292892777714,0.24192562695133946 +0.12357401846407443,0.4388804434970958 +0.2800487279567462,0.7017694710471505 +0.5465177296958886,0.7745642660708769 +0.4236145615086835,0.49818053832975095 +0.37852171059037043,0.4509626030142018 +0.453624248452075,0.3530419766292355 +0.17752426860659615,0.35448047512599595 +0.21350035068899054,0.3781125246824558 +0.20676439998138177,0.5706501006093166 +0.6395416259024557,0.45263510934631 +0.6745640038662319,0.3340192436594266 +0.4578049480384589,0.2874703406790432 +0.14730516074381056,0.46086177221910907 +0.25360345837515474,0.6863169668918029 +0.35871648784295523,0.7352828978220551 +0.4435119628392331,0.8002858756588662 +0.35083881016480617,0.7391417025241466 +0.4542793929050478,0.5772858857110132 +0.2994673847805153,0.23593664165231115 +0.020061433312952483,0.15295422074533688 +0.09753116964163744,0.3420896231536516 +0.2323181330888486,0.4554386138128357 +0.44987541431936123,0.27934506530698955 +0.03078806399942316,0.4502476154979223 +0.2086054980513131,0.6471366881205027 +0.5535747408225429,0.6160700916178494 +0.21413278577230654,0.49127626410571 +0.1707718372147089,0.2894982397055632 +0.11141139267584144,0.6814425586475592 +0.2675785422015078,0.6452717779950928 +0.5779876708314633,0.3700243830040908 +0.09925362466615709,0.3809113501843674 +0.13511738179548527,0.2787013053412043 +0.22570127246148727,0.29260015482610524 +0.22588986155753477,0.32024827593986915 +0.18865665791232827,0.5829733609144975 +0.382277429059555,0.8387618063429774 +0.6861401795545878,0.728698015086988 +0.33092877264956566,0.6803073285833635 +0.31911414857981346,0.5418050884263476 +0.3087942599892429,0.4844181536790396 +0.30734080072656345,0.5871721505103289 +0.3230616449935406,0.6159170864947375 +0.3701170980501456,0.5042095779500614 +0.31125625964372755,0.2958747744048541 +0.057066112750116596,0.15703684088852118 +0.0507016777933498,0.1859863698160859 +0.060688972466112205,0.2586577534228262 +0.20169767735051441,0.3873571156785529 +0.20816421506376961,0.49353849879312395 +0.31652748581079554,0.6553540824710409 +0.46440452331883736,0.7657416461573942 +0.4652479290423114,0.3912993072786707 +0.12621903418032068,0.543801009560951 +0.1660365164087543,0.7560156582478519 +0.5349708198881141,0.6749114989067149 +0.34673994775568945,0.6231636999959866 +0.33089873190860236,0.6361906527372639 +0.4274055361252486,0.3376201986682643 +0.06169289349794778,0.3321862518212884 +0.3263131081679838,0.33265572780578057 +0.076796352854413,0.10950213668836804 +0.045684367412995516,0.20038422938696013 +0.2780787050401806,0.37883585684900245 +0.1404964029626171,0.7360523341813276 +0.4931807219410675,0.8520287273840789 +0.6003216504355037,0.6871575711969249 +0.3898698091055197,0.7918430565418266 +0.47242590779552324,0.4981024562451087 +0.23159819838701245,0.3170427679467254 +0.19146978852914404,0.27262076730781676 +0.05486324428876297,0.18781179186433894 +0.08194163440708523,0.1948206722399426 +0.05290070175511587,0.2663652598397214 +0.1947967409861865,0.4457411169234911 +0.2561338245571888,0.600695431128565 +0.03673297166398698,0.8111827968148185 +0.35952594872123367,0.712862729902959 +0.7370104192833429,0.2652352451819426 +0.03182744979489598,0.33335256570772914 +0.06384357809280661,0.2208100854968614 +0.11722204087806425,0.40070325129254725 +0.3955485224265475,0.5612638591749354 +0.40789362783473915,0.6575798391158585 +0.5407754182188929,0.4467533826055365 +0.06160393356563082,0.42252826683366407 +0.1795207857877613,0.6063382624531202 +0.5233807563175271,0.5781610011054542 +0.20475652811538825,0.6355828641745944 +0.33213219042744135,0.5240186451959336 +0.29044473167868606,0.3276415466695628 +0.11861941217001659,0.3743813633271288 +0.2170953154312345,0.4905489384279641 +0.31601738926086687,0.6107469200031694 +0.36074376102082095,0.7649337051976035 +0.4968741237541466,0.572267532249662 +0.20256119964159783,0.38216140859670306 +0.171587169150497,0.29269063467685863 +0.08966526388083014,0.3411276935941103 +0.2586826681791011,0.41215640299344736 +0.23268806931660418,0.5591811536775538 +0.4050409495361195,0.43142864100624284 +0.12699413298089005,0.5076140164451086 +0.3396880626284854,0.42497357718747397 +0.2971427142275773,0.3584012388563207 +0.44832828635742805,0.23401275273090621 +0.06598678230474699,0.34240156406202965 +0.15004444120575816,0.5784770249319987 +0.41526767606691695,0.8511284588295471 +0.6279452442395234,0.7917947171749221 +0.34124100204328345,0.7838485239580651 +0.5183415412302205,0.602634429827418 +0.33476328845913417,0.15913733837236507 +0.016338795421614434,0.1263052820940924 +0.0832288563155054,0.35691744082953875 +0.2928417920726954,0.5140457152431296 +0.28531646725209525,0.5391349791548061 +0.2315742969244603,0.6024475692660795 +0.32752320166607357,0.6823736428034346 +0.3545628785676187,0.6744301317955921 +0.34502840038116245,0.6457422970608684 +0.33173692222565915,0.6402480005110679 +0.3694805502463405,0.6600483058741596 +0.3530604242869395,0.6063053606892098 +0.3550470470970731,0.46077200762409287 +0.22953361270152173,0.48633578411274425 +0.17542093990200588,0.5894364713603096 +0.24633896348006146,0.7538516520150108 +0.6439948677270434,0.6715890764028644 +0.3986753224864574,0.499924629840222 +0.11373001335733547,0.4217353462443542 +0.3473696410253461,0.4308679401129377 +0.1337043940866036,0.26331794257378416 +0.10089161990903979,0.37909221642613705 +0.3114768266316933,0.3860755264091365 +0.1962070464860536,0.34277126187118506 +0.11115908621453645,0.4922122656447785 +0.30161219831786445,0.6701228617462881 +0.640260100290495,0.4629351197872625 +0.052199631923348956,0.503438591870025 +0.24135690924708772,0.42849171154241056 +0.14549922941429264,0.35216736787427505 +0.18560194967026586,0.4127396344424737 +0.32156634327023365,0.36238098138264047 +0.16816952822643927,0.2245742082207435 +0.05431008338298905,0.16837206479975356 +0.135629266484757,0.3165612220216683 +0.20295193789037763,0.684228777767103 +0.49521580332739784,0.3668617605528555 +0.16715809700936288,0.47804981461840396 +0.2975890636099261,0.4368872641761515 +0.37801420684248915,0.2951886653389632 +0.0898287594214301,0.5437866448415627 +0.4548534452388131,0.6452946661786827 +0.5613720416372217,0.5420710443512893 +0.11532038448904816,0.7602498530026738 +0.5130509137512803,0.7040560840342733 +0.2188049554571289,0.4181758164636282 +0.04966804384609714,0.27214372153343946 +0.18811503050531705,0.36513525241259015 +0.21283236143507014,0.3958790599615182 +0.20228254792730516,0.5212746857695283 +0.37306806440798845,0.6610838173676634 +0.493467897119562,0.4864928721540226 +0.10241732000117867,0.5361977218654276 +0.2610251903231473,0.6269301174986922 +0.3726461827323171,0.6286678313121734 +0.3162100910774034,0.6840974091300408 +0.31173759695255543,0.5768827198938222 +0.5145497321486285,0.3686214088756103 +0.03214710950478936,0.12352305648574789 +0.02170404791580475,0.19592753049323017 +0.04390725492922316,0.7937561272202067 +0.4987458884138113,0.5359600781467493 +0.40169849987143724,0.3257995843323875 +0.17412897942432662,0.19911080595387654 +0.02047836780310803,0.2967268526040933 +0.33931475873830036,0.6186262368086 +0.348845004994978,0.8427985905143374 +0.6492977141581612,0.7612372635478521 +0.3250582515816729,0.6524636744324477 +0.49333712452893996,0.6409657000386842 +0.20217210052054915,0.29433679575598065 +0.08001005648639535,0.16968438026354637 +0.03769546746770846,0.24832671876427356 +0.22639900443314714,0.4118087887051774 +0.20709592101558408,0.5100746153903007 +0.38434952493028657,0.39714348309324227 +0.2549407481851805,0.17862540480385491 +0.07374170421699536,0.25215890999247736 +0.12696561215836832,0.4936423598866271 +0.32927697893141905,0.7609550951595342 +0.5091559290295942,0.8230278490550491 +0.4536591767739094,0.7428139446881233 +0.47956943506405886,0.5556481479637484 +0.366013824897316,0.17088758942509671 +0.41396459932298835,0.42555847756655374 +0.6021354793804534,0.2652910351294427 +0.05311653017382255,0.3835740684799579 +0.2048835158110675,0.5049452780803968 +0.46505174035405594,0.443401664418784 +0.21318578717622486,0.6613312958527281 +0.4652392267641752,0.6993080376369316 +0.6520133017738133,0.3472150563593234 +0.04172295331471492,0.36081385606247696 +0.1287705004066028,0.5687116383522667 +0.38309058542580904,0.7180697320649918 +0.6634545325464133,0.6810498236432021 +0.36084473128905875,0.41501021378015474 +0.03265002369502345,0.1312059163820327 +0.041221946473113426,0.258653372481436 +0.2530892193024147,0.46296259752849916 +0.32163786884395584,0.7375815509474206 +0.6272834538686588,0.5130200385160121 +0.14689871667113427,0.4169577657455314 +0.0951845645794246,0.4270736574388045 +0.331330180129759,0.49185487619476703 +0.4573496877617172,0.5080249308661191 +0.11578249929993821,0.4988108574481417 +0.21202716228889268,0.45768719903659844 +0.501999258936887,0.36407238238713924 +0.6631634830660088,0.2094587087268977 +0.0682598352353155,0.34260573977267245 +0.15038675068066357,0.5885059236462371 +0.2518094777769129,0.7097415922844802 +0.6156862377406996,0.6333010195590528 +0.3508004247735753,0.569267213246122 +0.2006921469932701,0.4429202675053388 +0.18706527350165453,0.5095961093021266 +0.35172536965109263,0.6566796301659715 +0.4342344402763738,0.6625744103239486 +0.3346185683816363,0.4961313306427274 +0.20531666276460006,0.3183791934893257 +0.13042083381095257,0.3989077209736439 +0.29443284865782293,0.42519485943116436 +0.32515859600114067,0.3363080620184058 +0.09529742597429373,0.3476742505425936 +0.2512289881415127,0.4002375005983529 +0.20936971900421222,0.5904563664368849 +0.3825885057006017,0.5771188138917368 +0.19400325415270606,0.3159287869383884 +0.13579526542043724,0.36813873046230267 +0.2159870266664093,0.39661207788283914 +0.21881443259564712,0.48220604649787313 +0.3584218024792199,0.46100983015670555 +0.6364452838160225,0.2570098042043612 +0.4046646654136961,0.15981316563703396 +0.013219594953912518,0.5226221083690877 +0.43593674893096174,0.7211332319919828 +0.7193525432706795,0.35830038779737816 +0.11593744157401388,0.6046215294745962 +0.44854852551984764,0.4720650612491539 +0.1674133240982615,0.5335876344711646 +0.341603100260252,0.674718618276255 +0.592621385982508,0.47349563232816066 +0.09342011808266555,0.5636666416147054 +0.34203290935367753,0.4478835164726048 +0.11509528754807997,0.444529592913996 +0.30263137813876073,0.46783512822643275 +0.1882144510527909,0.5840031503621038 +0.26226311919034395,0.7098678349220927 +0.3775798975983836,0.745078801979907 +0.4491499959902064,0.6763617991231389 +0.3782800435581566,0.4165153204674402 +0.09470245241021472,0.3202556967181424 +0.18689072129945003,0.4398145376875318 +0.29228281971405656,0.3974420129565482 +0.21277672049917876,0.4353413581095243 +0.189537733771296,0.5919293760229644 +0.2533407211010153,0.5698252319304127 +0.5941252707746617,0.29095903033946585 +0.010763496159259983,0.35566842549848643 +0.22122117874443134,0.6901601551769658 +0.6316449641449479,0.6144081949125094 +0.13220086692231858,0.6816472409976825 +0.37814739342122433,0.5067437290268936 +0.11629340051257127,0.40324842922866105 +0.2511524855799523,0.3743576406785123 +0.15758585928044583,0.20379874106697263 +0.06367614864565194,0.24024251099246308 +0.15368258951313687,0.28891873354683467 +0.12926912306241353,0.45884084693602656 +0.25993514057962125,0.6619112490462923 +0.5842912196435991,0.5645935534454471 +0.30348509546577973,0.4088099002131118 +0.1429912745786915,0.194372743334533 +0.032978326078408254,0.2695638536940724 +0.35524398084338815,0.4066594242346324 +0.1070041060323702,0.6504469512768212 +0.25863364335877903,0.8240329025750779 +0.6289752721057674,0.726524829738853 +0.38989883656752194,0.6568914054688219 +0.11443486808404517,0.6806168555036285 +0.23135438558758697,0.698605120061217 +0.5393628477425246,0.4889380334962206 +0.4760593473359652,0.29036986822828537 +0.01136577129232313,0.21847197409666153 +0.28804588314533364,0.39411562674382083 +0.12944313882281513,0.3551462888103443 +0.3637682497079857,0.28343090410099114 +0.08863049744532688,0.6891809700727651 +0.39438241715629685,0.8718677161616232 +0.7907688616789996,0.4384899734692398 +0.10637849568088019,0.4800353645448184 +0.06759294866732332,0.4138581752061352 +0.4184193312636953,0.5136640667026987 +0.3052300810460219,0.6495982407400112 +0.23965057727897796,0.6417841910205984 +0.30910572406048065,0.4949541985132618 +0.3523358106204891,0.4755772649419364 +0.3643659352834017,0.2853384315474081 +0.02975431084288096,0.1786358356166888 +0.09239760040166221,0.27291309828806715 +0.10050308703211643,0.41077283017683786 +0.31233468648152374,0.6159800289996094 +0.42611414189169466,0.520739138036314 +0.32109355922793004,0.4891300200570089 +0.08618849514916209,0.7257143853839823 +0.3390839695537568,0.8004907368229238 +0.5660344957649467,0.6075646280191618 +0.34457278247655215,0.5845611094417497 +0.30182975527126943,0.3856073915291515 +0.1431940793825163,0.3168876170564019 +0.19189476964634333,0.4574679135485077 +0.5075215696700424,0.2788161038870218 +0.04499384760335263,0.15634244677700798 +0.07197114824414753,0.2555965780769811 +0.29733663793933157,0.4046903847948179 +0.2583997249303851,0.359003633198639 +0.10122811793108026,0.5234839915323908 +0.2809925973089775,0.6575062273795736 +0.44075632090229655,0.7641557453741297 +0.6386088728164737,0.5178973673878492 +0.17722126839491556,0.12903448937091838 +0.0115681886659569,0.1170442700183625 +0.12596115468472982,0.37757724517014296 +0.28645062443274993,0.5715848802531674 +0.5177249311800904,0.49814823261228824 +0.16668534276938166,0.5497208236697295 +0.4113778173446809,0.4173601567023405 +0.3098030686019495,0.5001736878483729 +0.13156470654870453,0.6484210490059007 +0.3769094049493829,0.6440319417793344 +0.321058034859648,0.5653817056631758 +0.35236221547812147,0.5757155417400325 +0.34315532441931285,0.4047982692018427 +0.33876258130916514,0.1862896978532954 +0.030508697029393277,0.1484447419386674 +0.12499248980027482,0.28378230328420373 +0.20560407636167372,0.4052008389725861 +0.2002685367829005,0.6931040285819133 +0.42414680118414366,0.8405669926143327 +0.5428855418529868,0.8599542377892023 +0.5029701589955209,0.8295637367721194 +0.4029616713056933,0.5955309270782497 +0.4593758284513323,0.49657303086275906 +0.2607555389102147,0.40949010841917094 +0.1747455894744566,0.470111876644847 +0.36766114826710494,0.46442863337114115 +0.19660225508319104,0.3962382077485502 +0.2095462381596941,0.41563066832983686 +0.3249131738763064,0.3393488823780636 +0.09812065957839773,0.19843274351502896 +0.06577444075775926,0.22589030857947892 +0.10163930057301565,0.6974650024161505 +0.19685333964927826,0.7596957682249376 +0.5268909930572327,0.5998615025436568 +0.4271951019268935,0.5591194032655772 +0.23349022862589847,0.6013848780545628 +0.378948032812077,0.5175247191487778 +0.31407374139961136,0.3711624740912353 +0.15169551966816755,0.41476702682951316 +0.2300302684040551,0.5526645778653874 +0.43173286313776293,0.5896432398729997 +0.528209090171643,0.34370613092200303 +0.035951107736236394,0.1626489460186999 +0.03893795609022989,0.25584727521286305 +0.16825866697269054,0.3762112557237392 +0.19949656722618145,0.6078668831727655 +0.3527016341277556,0.7259999512370517 +0.5104798077945469,0.6832873224030385 +0.5207017659537628,0.45296043149743787 +0.0626040697025236,0.2877063750723129 +0.12487632034762104,0.34772273892111 +0.1494881510561339,0.2468547224571551 +0.09048882125759629,0.21262842413086 +0.06448882817474783,0.21759143467954697 +0.1621976792624401,0.3609565793843669 +0.4925234615232054,0.366281628545357 +0.46502864355420814,0.29544949526445524 +0.020930796859223208,0.6301692723138058 +0.36731600757157307,0.8352788685307746 +0.6710200905022322,0.5566781758299337 +0.3314402699086464,0.39236044876942344 +0.014784306286052373,0.16129940745425128 +0.20034873483243648,0.38326868408250403 +0.2250997721888061,0.43185198299568683 +0.28708955642234574,0.5602813958152725 +0.5207509397856969,0.4158803521867578 +0.08818235992363503,0.7222867010774766 +0.38485148544620434,0.7351123689333823 +0.5421378611890109,0.376244425708551 +0.04899254440693591,0.20066222545014448 +0.02692639827416262,0.21851083632504836 +0.18264916537075754,0.4167044460052798 +0.2708452343626893,0.6711592673094634 +0.44355648750887516,0.7208591698353529 +0.3205820917711717,0.6525049804512699 +0.37933737035170473,0.6482475398849896 +0.4404404758896684,0.4121398925068474 +0.17335692046064044,0.17768549916055434 +0.021762102839809252,0.12574031946868658 diff --git a/synthetic_data_Bekaa.csv b/synthetic_data_Bekaa.csv new file mode 100644 index 00000000..3a24ea9a --- /dev/null +++ b/synthetic_data_Bekaa.csv @@ -0,0 +1,1177 @@ +0,1 +0.6039217113792824,0.3955847314961789 +0.6955162286003248,0.5017240633381389 +0.5077203511640502,0.3294857137709969 +0.5369547604931514,0.34982886839877225 +0.6747240423423589,0.43288344057507555 +0.7839259504420744,0.5631699550713483 +0.8457929491078423,0.6823177323883974 +0.8595189451238081,0.7513195261106084 +0.5365854501141631,0.4444574704742158 +0.35685944553315246,0.6037087428313774 +0.3423724174127772,0.32810884647946253 +0.6690828203428494,0.30955931481865046 +0.6110346316627813,0.4601151039856485 +0.3680531382161107,0.24632117102530487 +0.458883017251735,0.14717277854798239 +0.717804372232701,0.4087329498629844 +0.7274954914256795,0.44902104048759395 +0.7914247511958072,0.5959217536350478 +0.7327100037732883,0.6445639120452362 +0.8325073718120741,0.7401175484034056 +0.4310083388814248,0.4013600937377189 +0.392320781903585,0.4297052017127727 +0.27825045582611146,0.09889739731867957 +0.6757860182982068,0.40460917272019437 +0.8254492281971179,0.6247484671389154 +0.5675631760934657,0.41339629805151534 +0.4649447798224117,0.2934210592550408 +0.8208932875695608,0.5846716153749638 +0.8515142201452766,0.7174923405480402 +0.4383241533757171,0.29081237257474046 +0.4475710987558777,0.3596639625924204 +0.5706971287107707,0.3790896825296634 +0.7385122775229636,0.5379018772719728 +0.8412076233904142,0.753456710249364 +0.6113059520057694,0.3674562566021243 +0.4324845075137719,0.2731131905769013 +0.7027263044547971,0.5052537907899732 +0.7339896558918323,0.500261722986169 +0.6662784218064718,0.5633050788007815 +0.929073035616134,0.6981096253619159 +0.6262993811881015,0.4751142849875756 +0.42326897378140454,0.5328980673531716 +0.3710176348283376,0.525071500672791 +0.42339539523295944,0.18008574807082955 +0.4538966118796568,0.26982316320354777 +0.5303416251560398,0.3307149999623651 +0.5054588913368726,0.1792961057384379 +0.7694435118793463,0.44234752565806756 +0.8317900299122802,0.628727375192871 +0.6392804383537453,0.5021008839016489 +0.71149545900249,0.541454075674842 +0.5001163482123001,0.4146417967062297 +0.6179330348297569,0.45830684807842237 +0.7740918397062952,0.575912712842887 +0.588725626404736,0.47884958885882556 +0.4941228329598839,0.40970528043124416 +0.23423972723324907,0.18522402606797286 +0.441159963559888,0.34121787479240734 +0.38160735364585235,0.18195259534375172 +0.7129256128490754,0.41380935823897563 +0.6837042569371786,0.3837890617258884 +0.8292967080169515,0.6494499431861989 +0.801117360504905,0.7334412917602251 +0.7359938620721872,0.7719929202720957 +0.3740990757536012,0.37520238681454277 +0.5129324793258683,0.5054597248372568 +0.5763312577575528,0.3165294521623033 +0.41579273338571665,0.21218502478716672 +0.6039096116363942,0.3961105934736491 +0.43907126779557315,0.20945531087589403 +0.6323841809539813,0.2649233335873475 +0.7710136174318492,0.46284639742000455 +0.5682530998566659,0.34191822936710553 +0.6209208964627333,0.40536922134651476 +0.6435530185000709,0.40898328937053613 +0.30028218027669173,0.2189505691880407 +0.7691628932117742,0.4485349050057864 +0.5836072563491395,0.31798097427126826 +0.9003480671858728,0.7770677789273258 +0.7918131946657664,0.5249994982620475 +0.7104134558859998,0.5693972099263415 +0.6292380093844987,0.4390810719216751 +0.4957497119365291,0.4253100148205454 +0.5916676520658851,0.41629332220033505 +0.6259297131812446,0.38068023247228655 +0.45628818864636495,0.36165511535177086 +0.6626851557965775,0.4692959179949168 +0.6901082991804408,0.46954518461886474 +0.699330568237667,0.5155001272294196 +0.73671406499493,0.46417730953050973 +0.8124902247500386,0.6369499551323407 +0.735722541729199,0.5090273608430917 +0.5991502999608856,0.39286345164212494 +0.6238760947503763,0.4875949611365656 +0.4872036873765287,0.3948707274578546 +0.733741342941725,0.44518038540691596 +0.5181931256685283,0.2764567131188329 +0.5006881951742131,0.24212631534376355 +0.918848872084987,0.7453051790463234 +0.5421480535872225,0.2583560342345966 +0.5510838031170445,0.34611555864140003 +0.7459225653792146,0.43665653379103686 +0.4814996420814327,0.3180724972031363 +0.9421699046065638,0.762233553779482 +0.8698447941789308,0.6426488148124657 +0.656661391186941,0.46083605196507504 +0.44213119144407514,0.4897049953596808 +0.5256946682359206,0.598250030264568 +0.4762388169248384,0.3069466346271582 +0.60281705849778,0.340877591876071 +0.5563973187796146,0.4378532758464233 +0.6831111311170831,0.5219197858773597 +0.3474355637649954,0.17311915720353369 +0.7607021330961158,0.3982055775239889 +0.5575848221173457,0.39590993443741745 +0.6978747843938309,0.5782390821237782 +0.6859347223490764,0.48751532933130626 +0.7651945351723491,0.5225795496890477 +0.6549718975309661,0.39395412723234746 +0.9184144734339111,0.8065413220349913 +0.4708281158889726,0.272663831160846 +0.6949602960785651,0.4879718413047202 +0.6460730432762559,0.42408764276795724 +0.5153330563939366,0.34447437455314234 +0.9554758070861982,0.7964016183048329 +0.5816302894914439,0.3157613569089545 +0.78955399981509,0.5650934565590151 +0.34447735544279157,0.20216268260233441 +0.6494118570576317,0.5287219871346966 +0.5189887284669038,0.35791242050458366 +0.8165751694746317,0.6077046382090598 +0.7702950238345151,0.6923508034092677 +0.7466589211606899,0.6144383537296879 +0.5504021047948224,0.41961035047771744 +0.49210467929265306,0.430412112798383 +0.3314638733503935,0.20674610096238275 +0.5442714690571152,0.40824854291587187 +0.45673784608650164,0.30740129885658785 +0.5698821544028453,0.23777252387724923 +0.8088671564177599,0.5517567385034876 +0.8664901255620465,0.7196573004512052 +0.702202439231923,0.7563025936130696 +0.6317754983216011,0.5505129683834683 +0.2716671228113844,0.34543272783223045 +0.8357349633263111,0.6167301523166792 +0.6892474889006881,0.5186145295172967 +0.46445721382820193,0.3230060332458891 +0.4251748919025355,0.27532517854469923 +0.4525983333096226,0.3470858328494192 +0.4213775395889524,0.28844845236771655 +0.6581013201952686,0.3272172206000659 +0.7618540524609199,0.5542703259732407 +0.758403062738089,0.6610611067789594 +0.7062004207797983,0.5285314310857341 +0.8475741147074719,0.6868193135713342 +0.41398239131247266,0.336349248207684 +0.538431286753367,0.5550334442387608 +0.578358054098275,0.37954145593382727 +0.7447320222046002,0.44903385548619484 +0.5745152830453781,0.44308212310112016 +0.7606961726316388,0.6002076852136222 +0.23673292991928818,0.1557656821446945 +0.7384665607604257,0.4590559592524485 +0.6179989575668713,0.3792873315313399 +0.5509055256245406,0.3080222004399607 +0.8103915452077249,0.5108748068041786 +0.7618920802242825,0.6893100724621843 +0.5897468327835619,0.30288353501262716 +0.8614796995181264,0.6489464627527967 +0.6855228542537231,0.5070351948047821 +0.41715839500666213,0.2820972198518406 +0.704136729163964,0.4944746484319542 +0.28659620877968833,0.21636319116820457 +0.8633606432930993,0.6441925751090346 +0.5820202230775222,0.2635232204843976 +0.840813040642044,0.7701073869430741 +0.6967102288443358,0.49507659573832674 +0.6730430125459411,0.5138418664104683 +0.5892004370049653,0.40161460557039647 +0.6941674946984937,0.5223139513924643 +0.43160295481763955,0.3049691313314338 +0.3707239031389164,0.27690926138337724 +0.7635197638636321,0.5911149966714766 +0.40411034222029807,0.17933210694380963 +0.7206376194171468,0.3630142800638426 +0.8597133158703996,0.7063229069768192 +0.7697625755427944,0.710771440026013 +0.7341679333843361,0.5013509978672421 +0.7842337488276611,0.4968108822815358 +0.38397115464809817,0.4133373490579514 +0.7085726856416013,0.6360108839557984 +0.4740515946827205,0.3241576843875939 +0.8646239041343317,0.6491043554564883 +0.7321071623960955,0.551149963220898 +0.40973681207022733,0.28403103294303284 +0.7769649027934467,0.58259028078825 +0.4273570775521704,0.2745524341290673 +0.7851039170366425,0.5615757692454012 +0.3306387066482126,0.24050226759084423 +0.5120041965882371,0.30992478069735363 +0.6952732800682467,0.4417276671559761 +0.6538138984923955,0.466938464891838 +0.804028987797222,0.6833468661830135 +0.644621610571488,0.42420929584769845 +0.8986179231621654,0.7507684215661267 +0.6052007674513786,0.336741446769515 +0.43271541590760665,0.5751199114643286 +0.45574754471598844,0.5887071478413418 +0.5339078902618538,0.4025096885191831 +0.38268899913447396,0.14615622133338854 +0.5288820862195833,0.29611515939113203 +0.5715981125210976,0.3808915309375891 +0.45767536754407195,0.1658227142327161 +0.7718879579659644,0.42754506978582485 +0.7319825886885285,0.43693321855152617 +0.7573835848939614,0.5674428928373878 +0.8287018536621578,0.587185858495808 +0.5398714541802737,0.3471571200044268 +0.30826383825769765,0.15915465322817562 +0.8573990463279567,0.6097184407333793 +0.8905810116754587,0.7103720889068234 +0.7643210887079054,0.5980088102676485 +0.4113479554206536,0.20772066670481706 +0.6725014447435708,0.5686959016773288 +0.6494801043758921,0.4297200730716142 +0.7454868554259538,0.5682793844204784 +0.708979010504991,0.5684042561510311 +0.6260561346327995,0.5007632960709423 +0.2425391077731957,0.19373688062691308 +0.5558242201201614,0.41068112767353854 +0.6036137341797614,0.4222747973030927 +0.4696420132603935,0.2339248950531466 +0.7054565548130822,0.3657514743580195 +0.8267291187342408,0.6528577791397134 +0.7924973963830687,0.724763868777392 +0.7773736714472719,0.6246984588420498 +0.6793783902384296,0.4702133824877715 +0.3174593448294226,0.4459139397686871 +0.7203539013080467,0.6083143937238822 +0.5149196981824641,0.3207160227982376 +0.21307975051473663,0.08851054292945859 +0.2748630046546043,0.11222752906097268 +0.4410831033704585,0.2557887429800092 +0.7720069288369232,0.5126811851650982 +0.7209033369235266,0.4667450776222543 +0.7127588986576567,0.6805962906461116 +0.6998241543009984,0.45260226635241035 +0.7981431483355808,0.5451565373868871 +0.47441941494558953,0.35063055086938427 +0.6289955972942235,0.6567614065274695 +0.47656577820371826,0.43145343574283107 +0.6277208923611954,0.39097928921993047 +0.48682692641694436,0.2950395041713626 +0.6691519617307814,0.4509792914830948 +0.6815505027030985,0.48168381951450107 +0.21470329163127483,0.11619964218543763 +0.5662801265101699,0.16283410754738373 +0.691041469498943,0.4285893431601834 +0.6621392964597838,0.37426820321886234 +0.7223030924012799,0.4384748926855321 +0.846624910739527,0.6890526400019187 +0.7146260141550431,0.7192448363101914 +0.7711979745981195,0.6432455765147532 +0.4041175841846375,0.3689042918393769 +0.8782439230918982,0.65942323074848 +0.7094521521751667,0.530482410314587 +0.5715178250645939,0.44192379623921396 +0.4133666455296873,0.32719522648618815 +0.4845764338444043,0.29623824298234497 +0.5942625998805448,0.43570947559211093 +0.6518999337442207,0.4645691504644728 +0.5818356870973176,0.3386257284009988 +0.7589224576126054,0.5657145965609667 +0.8016133307540272,0.647967396859691 +0.8052984475215104,0.7410613879515202 +0.598981261188321,0.3510324351859717 +0.43666261429813874,0.37081956788608134 +0.6178805231377155,0.4221879831381524 +0.7763708829036796,0.5284977544615038 +0.328325152361507,0.2650319928545538 +0.8422984479943302,0.6493483768717064 +0.45996934170497095,0.22057262018536408 +0.7517214416641379,0.5892711865937137 +0.5768220424025801,0.3801190249405358 +0.4124954640417448,0.3152073019345624 +0.7879459857085142,0.41960790668728654 +0.5501237511037516,0.3589107983025577 +0.6593848466157225,0.41295546209964573 +0.3342110216254706,0.15167406170769593 +0.2986558675441718,0.1553437706675029 +0.6676627396812299,0.4613188197844596 +0.8596529363652486,0.704240261087923 +0.7480846046589176,0.6363062845747095 +0.5919301509214474,0.2663950318685282 +0.6605790852783125,0.2987786227398705 +0.7063530086704067,0.4407650521447952 +0.9729326366321848,0.8024600728061627 +0.4337942301756017,0.2292163367416447 +0.5266479849243547,0.4789555361147001 +0.42235824461165783,0.2409272785095579 +0.895106434724894,0.7598184331826993 +0.3062379359866469,0.1548356410718176 +0.8579728602431471,0.7541097983408507 +0.6686609982718198,0.3700957588837113 +0.6314709185868319,0.6195405709168149 +0.3480985462287601,0.21694111780278108 +0.8360636233375669,0.6946775303180267 +0.6715074776874043,0.48971649905609926 +0.5219029783635906,0.46932554150331046 +0.42349922652414684,0.3543327443605283 +0.41702157254459504,0.3115893596086385 +0.7508459090371273,0.505997775964559 +0.6463376282943852,0.4482805123823982 +0.7865310906509895,0.6035513865694878 +0.7239183186698728,0.5302616347107842 +0.4561800956230765,0.33409935168588545 +0.4858109950491805,0.32876306705919767 +0.8110805749012536,0.5981108534192981 +0.5618424414978344,0.4332212498986587 +0.9239724873493232,0.8130975349238363 +0.5419859885580959,0.30494469342712516 +0.7705665825960822,0.6175256955088916 +0.4661349355668351,0.32518881493780594 +0.6918581723415668,0.5902127611653314 +0.23156741258967936,0.16725587811112727 +0.5857114791234166,0.39713090578085625 +0.4218795001048739,0.28173768463528065 +0.5847282409033084,0.26471012777341596 +0.7173255681212722,0.41609334861751696 +0.7300107478302831,0.48257294199882217 +0.768608629620068,0.6267534481758259 +0.7982695101824908,0.5060645927712174 +0.7476680874012724,0.4437197735896411 +0.7934191226097753,0.6548765884541838 +0.4943273662984084,0.33607789806289134 +0.6158797740267572,0.6630936251617005 +0.5926727651906234,0.4153346708980237 +0.7896255253888127,0.6327632056824724 +0.8605993389148895,0.6671261773958458 +0.30893501636011805,0.22185510352208698 +0.7955466508001571,0.6341052042568834 +0.5114609002511684,0.3246793442376159 +0.6200116276067834,0.47483852409907845 +0.3929786681702219,0.30926570233907913 +0.847968220618684,0.6316465126648578 +0.6701657175290111,0.4435211709136501 +0.45666873450089207,0.39209866444655445 +0.6928935646258476,0.4643112411670499 +0.5769533514350059,0.413539915442812 +0.8243783711491994,0.6630043374040071 +0.5551394223564113,0.4468151321935509 +0.43508914108320645,0.34473627736175716 +0.6476726531279194,0.4213967910849997 +0.7467824219846511,0.5011485804939932 +0.7507210969109812,0.6347230660033789 +0.664708554672548,0.49737805027775206 +0.8458620308911295,0.6810607896419093 +0.6805492638802701,0.5103846182065346 +0.4883615970081321,0.4502754798390066 +0.4336257576471623,0.4034170798270911 +0.6121887563994419,0.38686758201768306 +0.664073765205759,0.4634572258184307 +0.8197841643397007,0.5778000343112483 +0.5742079018923048,0.40136402764426615 +0.5440387129192926,0.3708114914567306 +0.6838495134564805,0.47764542602517956 +0.5412042736419514,0.4116491369050608 +0.8824768065448078,0.7069951877638848 +0.31504985686696146,0.19700306614240456 +0.7626682519084633,0.5525931108772889 +0.5702276229239259,0.35909414218951696 +0.7644263505105673,0.6424504505550533 +0.6586778163194735,0.4922239174451305 +0.7858933805566068,0.6219749438138212 +0.6788316368319642,0.49782082338057293 +0.6358326672817318,0.5162419070321531 +0.4836724101971941,0.44502845316768996 +0.6079707145030798,0.45188325552393505 +0.7065761088557768,0.47400063180683844 +0.3480607270816542,0.2758313411871109 +0.7959386109441575,0.5805951941223523 +0.5727509855602181,0.35718828367666805 +0.7948392032713948,0.7519154533478707 +0.4689219295469402,0.27474594060794033 +0.7736113070601682,0.5726088273896511 +0.7464069723272516,0.5708898890424408 +0.5315421819109754,0.3802858583409256 +0.49709308142033104,0.34646409680102114 +0.7479893564365768,0.5233283628398505 +0.4859838485190104,0.3739788524713838 +0.7023612260055875,0.48119699857928 +0.6192868351263934,0.4228890529685865 +0.6831574439260686,0.5010159005549908 +0.5966278909989098,0.4006456724668821 +0.8642032145515527,0.6809669123265774 +0.7144076227366098,0.5313714135896187 +0.574881076750325,0.4102781704733473 +0.48398029798974795,0.3543227605825486 +0.592316925461353,0.43201404722813525 +0.495120257085447,0.3808494798607849 +0.8212968110146464,0.6459621177995571 +0.6409440039892458,0.46854188943770664 +0.7477737664364477,0.6735195503954929 +0.6031709908784179,0.4244089118026486 +0.747491002001664,0.5004472722449805 +0.24263688919293913,0.12456059430747415 +0.8692288993845336,0.7390606388443802 +0.46440732474053037,0.26005035586356434 +0.8360827564285378,0.6323803650498523 +0.7784127592195285,0.6283969270429028 +0.6031532286942767,0.5066496123585079 +0.5231106280712536,0.6091848599544262 +0.27834624049025514,0.3837215892681387 +0.39716446395376404,0.1385763284749133 +0.6676537393798698,0.4517948022312668 +0.5717518328999567,0.3692092888060774 +0.5137937664427792,0.2158598299440917 +0.8316314219525501,0.5581700790590942 +0.8547199963595281,0.7613909229179918 +0.70960605136796,0.5658869731933094 +0.8405755161326398,0.6120111929946849 +0.4154854714419329,0.33874732187609535 +0.4833907186460162,0.5213882912609695 +0.3035254776148253,0.1419168409822898 +0.6134734749127911,0.3748507492133996 +0.48235577339657104,0.2668835217337996 +0.6338591574934329,0.29586204826760387 +0.817984700114127,0.5673801887512107 +0.792183160695847,0.6817713366108435 +0.7056059836575178,0.4813268472976613 +0.8671030401242054,0.6412362443387829 +0.43276703352997653,0.3161898248970582 +0.6077442168529579,0.3665343515632428 +0.49436485761996807,0.25498396106787513 +0.31283536549986185,0.19089451393724213 +0.7536755799428869,0.4955047060985625 +0.6840637325497799,0.44199463635938663 +0.8739218710904144,0.7969456895012453 +0.6761888860922,0.2832505697259181 +0.7757073043934672,0.5550457824002044 +0.4513617753492466,0.22713130666696232 +0.7479956745289223,0.5370097149507742 +0.7601733206877259,0.5213726152394252 +0.6087316273981999,0.4462440004884651 +0.41885536904555565,0.3471072607191727 +0.5090803503437427,0.3646058432854249 +0.7866654991249434,0.5723994362729775 +0.5165898203288891,0.3013337844492705 +0.807242631824583,0.5322926033727644 +0.8098638056829409,0.7058374867507475 +0.9006448387121772,0.8939360362141828 +0.49078416819012005,0.2965773338057882 +0.5271699427985961,0.5544720280907538 +0.2626895308209346,0.17420077288776867 +0.6695637702214898,0.4048353425443384 +0.7392559050711006,0.6113104211874741 +0.7413884996562877,0.5129004706527845 +0.5303282737156116,0.32223963672491296 +0.32458412643723056,0.16671693291415524 +0.6099549531274371,0.39565721074407956 +0.6383006572030337,0.43924125940418585 +0.7370222210083853,0.5775415885720234 +0.7994882463540809,0.6627797471029464 +0.7588043212066734,0.7176383719274454 +0.6471508740676123,0.4807101478417366 +0.3612260520066011,0.5587181437666985 +0.33535498377019807,0.5803467023587848 +0.29687857624645214,0.09870156625866502 +0.6793075799204441,0.34541511465973485 +0.5026298760822054,0.2787099475007322 +0.5956562756845316,0.257937311605894 +0.7568188904894206,0.44456535488104165 +0.7518092393058826,0.559582649532777 +0.825603961854938,0.6513844119284823 +0.7273984550639957,0.44808754234532705 +0.8734773992543726,0.7097101793279277 +0.4542893170817168,0.359460412730923 +0.5243567823794375,0.6224433767161661 +0.5443716644649718,0.5227211703247484 +0.3774108588285742,0.17593076789656253 +0.6193726658148606,0.3902363173243038 +0.6486985086690373,0.3986794046466751 +0.8253908752498891,0.5588517773800155 +0.746776997961977,0.5381438125246281 +0.6892801522460215,0.4620740702368852 +0.5567097067228485,0.42273873005476614 +0.4425182342048821,0.32608577543289924 +0.5003654956274343,0.33631485632771796 +0.7400947808415783,0.5524008858982761 +0.4895261823599496,0.3045769923742474 +0.5164561867153172,0.2572979921873227 +0.892485260866536,0.7798238976961808 +0.8608504532833009,0.781560657832143 +0.7412415742069324,0.6692843423695201 +0.4667543470352737,0.3436275713665264 +0.19474682209761401,0.25132095763059187 +0.7551934718265723,0.4916487326242081 +0.6982448100285564,0.47049197459688974 +0.3692688941554623,0.30410382090265237 +0.6397396325370449,0.3331230276064338 +0.49555620545728685,0.2763462061076422 +0.8626909255044757,0.7459392532561651 +0.7815471290693469,0.6136868583698756 +0.68186736099469,0.5760313260857508 +0.35927549000653825,0.17112216318900697 +0.6492947339306608,0.4459306588715129 +0.9130638836822949,0.813978431967195 +0.5993427633588445,0.33709663084701513 +0.814643919379474,0.6021464454903209 +0.49279889459027665,0.3208264702047836 +0.43257826561999335,0.3404522531318117 +0.6505836843737887,0.42131805334941025 +0.6632828115696755,0.4924443950257099 +0.3241870700961024,0.22460338428016974 +0.6341270207670244,0.24824199030396227 +0.8529889582661492,0.7529597863268739 +0.8222565650047156,0.6733680949934242 +0.6901306509222291,0.6468988047903131 +0.6612150072333521,0.4654205134064049 +0.3468671440701566,0.43715327889959305 +0.7486890553615192,0.627455888913087 +0.31537026163491677,0.17310127581013712 +0.7053832411000164,0.4045675984805474 +0.832249998955962,0.7179570183577719 +0.564858615337076,0.39331662575543813 +0.4712160527194511,0.3732579044919572 +0.4137500524071634,0.30814617810084344 +0.6369339823031271,0.3895081273805516 +0.5500752925275544,0.3327577107393423 +0.7458572386885479,0.5341545332625025 +0.9312913416804989,0.7531689390249688 +0.6159006356524263,0.4395977249815461 +0.6092243193918597,0.5529960382751579 +0.2476563751428641,0.523574947254789 +0.4431667029376456,0.3014186018586148 +0.4098384379895583,0.1812213357607998 +0.6865178941934954,0.46817150617581943 +0.45934969181795327,0.20305460650495433 +0.6240331529893424,0.25243365713701454 +0.7835382818324973,0.4841481735477689 +0.7514367102760768,0.5549862373601939 +0.7713271974679784,0.600425361375903 +0.6966265439230802,0.32951211862857915 +0.7204715608768205,0.26856049841117274 +0.9266378878540998,0.8674135786680394 +0.5540514587754443,0.35215830731886316 +0.4488268494118693,0.5154827226731803 +0.5893105267838534,0.521684645554195 +0.5036971568514377,0.3073617213725368 +0.48304003471851825,0.2256066496590055 +0.6653255819551959,0.476224510901245 +0.6787712573268133,0.4870772351930908 +0.8228108285964216,0.6120480286650818 +0.535553455294634,0.38088351411288296 +0.46836069221179605,0.2884824866198147 +0.38032999630613207,0.26912668293075215 +0.8605052827854441,0.6652998314789669 +0.7392265795858742,0.445610611732037 +0.8626994489686776,0.8492812497174911 +0.5100414156359967,0.2965562933662249 +0.48765033478210457,0.37767490668412834 +0.22905081508056846,0.15171086757577049 +0.6833797096464118,0.497386782358194 +0.5583633183826726,0.31276416715479183 +0.659727513718499,0.42082506333346736 +0.8451591729200144,0.682973085456381 +0.6917703150951773,0.584226487888679 +0.826667189508326,0.6772754178691489 +0.6178935169502751,0.3544451289180256 +0.392176210837698,0.558978377645263 +0.478446870990303,0.5004324902931061 +0.44678899640954234,0.18684443793756822 +0.6491702198277386,0.37347680254945337 +0.6765688657026018,0.525564967525891 +0.5263398885155441,0.2958566540472626 +0.8276078104074243,0.5652010429426177 +0.45374554390749,0.21934044316873016 +0.4285035728943005,0.19618451555735517 +0.9033002852412773,0.7506651267169393 +0.3387017845739729,0.10715451814972679 +0.9222795962285965,0.671727238730712 +0.7057186364361311,0.3182811134594294 +0.6719539164767235,0.5588054645711183 +0.6842789649220405,0.42383143220290703 +0.6878988146035018,0.4694324126311772 +0.6857494115084898,0.46760439778424784 +0.6840969323369163,0.49008452793452256 +0.6000353693310593,0.4727962007522915 +0.3428206443414395,0.2665145689833841 +0.8169944285459363,0.6133567678477753 +0.6267469524656712,0.4492228022097517 +0.4943166672646724,0.4738762369134431 +0.6583680509806095,0.4735787203296469 +0.6509469746836553,0.5096415271016186 +0.3742865919660442,0.2488905186401328 +0.7737175225371464,0.4718987932223633 +0.5625202655181465,0.3905586592425989 +0.9012144803022337,0.725929556812913 +0.8650630711569891,0.8143963201308724 +0.694630682392993,0.5432829845914412 +0.8877443074216163,0.6730125532880561 +0.7328270672956145,0.5631679881180747 +0.4061681627786226,0.2996647053873142 +0.7552681564464677,0.5925457465617792 +0.6479813455831777,0.46860006357089007 +0.35278475280745963,0.26519590562735557 +0.6294651030810683,0.4360159328726055 +0.7147684096513961,0.523854791061445 +0.6407158970137151,0.49629905719788187 +0.7375208734665221,0.5198202122693815 +0.7939670085044912,0.6761888848017299 +0.6785581707217645,0.48247307441670245 +0.4869304000802632,0.3137678199638178 +0.3822288214745355,0.22691002442368002 +0.7430241107133916,0.5489442933454336 +0.645139813353109,0.5048543204614943 +0.5778921841947612,0.4612502744431061 +0.48636138433897674,0.3390261524037922 +0.8769654034616049,0.6411123262825449 +0.9135205148658695,0.8936524373149135 +0.6176199316307858,0.38777869861588193 +0.3481072783092187,0.2619417900524067 +0.4636713265869237,0.34303069045494955 +0.6848607062549852,0.45958927181050063 +0.40910804267256,0.2058423455377988 +0.46518251294807256,0.2891513103374903 +0.7306137680214102,0.5109618891900198 +0.721358776014206,0.5003660311143155 +0.6564841865780431,0.4123526207236034 +0.7903670667743828,0.4912751307115095 +0.6602580546615872,0.43273228319623 +0.9155982731778692,0.7070426330610303 +0.3675827383595944,0.15334674685065386 +0.5949386357615138,0.446793853335409 +0.5210618376166116,0.37458830996298287 +0.7942548393340804,0.5938327300491736 +0.5989723204916056,0.4652679851207323 +0.6923187374316961,0.5780656326078316 +0.48316615814684927,0.33308109573891886 +0.4555615782243094,0.2884126895809235 +0.7441080211785144,0.4736509313566466 +0.5270992516899001,0.38099378270549505 +0.8815139531132107,0.6094446766004781 +0.694883465691458,0.4008614412805338 +0.8806173204419518,0.8378514034537717 +0.7677568196416754,0.5419033158816081 +0.44292718167264167,0.44530668764894027 +0.4285432099830719,0.6493192898051148 +0.47845706338455846,0.28752711357295935 +0.5479080080391118,0.3727318040959084 +0.9273114203399886,0.8171969635692847 +0.5197837948234765,0.26297038740522094 +0.7452361582900557,0.544450639580236 +0.7339797019161559,0.45198047069936764 +0.6555787920240032,0.5442420233239429 +0.5766484140723681,0.45340555814842803 +0.4969549178537567,0.4206536403754391 +0.7489113806865073,0.5078966011293387 +0.6456133722557981,0.5158883918847034 +0.39037594194941994,0.3389103405792272 +0.5411376952537446,0.3769011489895373 +0.8076735734062622,0.6269572960605466 +0.24473294613088292,0.12601295088146428 +0.7413834928661271,0.28642290772840007 +0.6902840136732196,0.45812323597056215 +0.7294476031465064,0.6426877962500702 +0.747398137965114,0.5706362712794331 +0.7573056220186036,0.6056485163870352 +0.7252458333181662,0.6767606721579069 +0.3268179893138801,0.3493288748370824 +0.6135966777135285,0.6343246685585038 +0.32257252928092434,0.14942792027851062 +0.7838661669833712,0.5612859714630878 +0.6530583500153047,0.4732578983297904 +0.6209582685750034,0.43295952590397785 +0.3018884658485693,0.1970342095692369 +0.6773860453823837,0.44890391736084656 +0.6398442386886144,0.44755950479832696 +0.5945370196650609,0.3743807367879713 +0.6974346636968572,0.43515467555966064 +0.8178212641781707,0.6282073246682547 +0.8581510781310061,0.8546228391575532 +0.6997398137286504,0.48477020761939027 +0.3598876893129598,0.41502907788487664 +0.3712105750634546,0.4157842687326576 +0.6396821736594878,0.3077099913112569 +0.8812553285595583,0.7478726491148447 +0.3911927938036556,0.2543366844292424 +0.5876065491991996,0.46504202391284455 +0.742580354133087,0.5707755673339922 +0.5194942950638338,0.33327865533362844 +0.3926245271733274,0.27598792258862004 +0.4171817898297339,0.20834681349691958 +0.7270534633800732,0.4795760800702051 +0.7551507949009177,0.5843348491326621 +0.6763790845136576,0.604390023919786 +0.46058976645237065,0.23416951251481138 +0.818789482027797,0.5621108997451153 +0.5270861982726958,0.3092342310867012 +0.9473774432107347,0.7975462659007908 +0.226737737631021,0.07503592952852137 +0.6510959862955775,0.39492583195183834 +0.37849310036364353,0.28752204717816365 +0.7024648188781958,0.441460817161855 +0.9159904717404488,0.7524842008671703 +0.7829970716579956,0.6777992234863786 +0.7330603002705953,0.6433872567550986 +0.46196493501415675,0.3912053696371075 +0.4787908493952644,0.6026417600874053 +0.26345384118080645,0.14645424455666436 +0.8223719595969882,0.5309439290781519 +0.64225453131378,0.4427120080601339 +0.3661409020026342,0.29782065689097265 +0.4624446629975794,0.2648002201938122 +0.44416263694708946,0.3306664221769711 +0.8138956426690449,0.6391752349358966 +0.7201261519603847,0.6069327580607754 +0.6267675160681165,0.5296850789830347 +0.7969236373036087,0.549184142435526 +0.6128417848875302,0.43519115360218963 +0.5958421229669211,0.34678429295210866 +0.3848346769391879,0.16046634284077957 +0.6260359286582228,0.3630090646574353 +0.5562868713728578,0.3748084299156944 +0.802265703591023,0.599305092079609 +0.8842581509583717,0.7533302887980504 +0.7077207564539191,0.3871978811560397 +0.6655434369318263,0.5067598809511199 +0.42058649654590174,0.2878509158050485 +0.6565557717564106,0.439221530266805 +0.8563049434685784,0.6492768512981203 +0.6897901295866643,0.5258891571881705 +0.19738093016388686,0.1480213400716157 +0.6984297036366296,0.48509520194437256 +0.3391488790143845,0.2406119103346874 +0.6242828368462794,0.3434817188010552 +0.6139881610203708,0.32944375210115967 +0.6999493240550132,0.4615280320871992 +0.7635844945078512,0.6037111866218083 +0.8263763188418536,0.6024327862032443 +0.7318926452795722,0.5073112835188249 +0.8252519368229327,0.679033814491121 +0.39915853734450824,0.3355760567572172 +0.6281546949658235,0.6931084380474795 +0.6365014910006839,0.4477427294759969 +0.6056216358480919,0.4577450146979028 +0.6777261494854351,0.4784896066074307 +0.42215955252832066,0.28953716100466553 +0.41485035414959764,0.3018264764419901 +0.7613605260022333,0.50235044854882 +0.8008852600181748,0.6221551882592584 +0.8312002419522918,0.7881565078096837 +0.6978704928594076,0.459903358485511 +0.5778257846204886,0.4739083340145899 +0.2324895560488993,0.23242184472887725 +0.5935661792110647,0.35531669783449576 +0.4910018741551385,0.3793466381527718 +0.41582745309129454,0.22867584182391168 +0.6286837457927925,0.24430388162927308 +0.7368150948678134,0.4395643463805392 +0.7473376988553183,0.48922845622566274 +0.8258117436466025,0.6608654247305564 +0.7767397164455097,0.5378099073052699 +0.7887415289022449,0.5745090234612579 +0.6052165030775976,0.44688588290675657 +0.4766567050893133,0.40277424373448506 +0.797135829838986,0.6529418216886772 +0.4452803432457962,0.33160275153985913 +0.7096392511550963,0.4864418794833891 +0.7471371888303157,0.5271887172555871 +0.6009724735561163,0.41250485098605266 +0.8253461717663124,0.5835688102395539 +0.4866187273927665,0.3344964974332228 +0.5532193779344702,0.40738099731291594 +0.3791223764007914,0.29173099935816593 +0.7398487328679723,0.504966377193446 +0.5339850186721847,0.3166773908903375 +0.7997945546235484,0.5874554503035834 +0.7532418369429036,0.5306535948540366 +0.8536133765247483,0.8107581122257657 +0.6355340480114395,0.39242678801538117 +0.4797868728116754,0.4102815381357703 +0.3389433025945765,0.21265643792174443 +0.8390271662754776,0.6016422498011829 +0.8820405005450993,0.7657695993236497 +0.29129058119472123,0.21434786872544642 +0.7120798825444492,0.5715516198074024 +0.7041794060896186,0.5152108062842634 +0.5966173409767856,0.544836937282246 +0.7103799580756397,0.535827814451907 +0.25355541703332163,0.19990017969819127 +0.7209364175013734,0.5317801822426639 +0.7594726084838225,0.5406359423223053 +0.5649438499790955,0.3797833911864826 +0.8218748568596154,0.5671616185192602 +0.5352649092093078,0.36725723669362065 +0.35481381412468316,0.24214568685327648 +0.7814753650770451,0.529296814327751 +0.4139733314064678,0.26379448122222326 +0.7586029767166439,0.4472755780735121 +0.6840198039265852,0.4570519616921748 +0.6610716580626829,0.5385602701768337 +0.7658497094276491,0.41086342847921636 +0.8941950201017325,0.7817130073038816 +0.6848469971866883,0.4882637848542412 +0.46206223959674203,0.3517562143860194 +0.5283610224150134,0.4325511744834453 +0.5252079963113824,0.2806485289634968 +0.8394573329967749,0.664202211947642 +0.4965774118361127,0.36947852298598477 +0.8098726271703668,0.7271590218182151 +0.634042024543584,0.47282406592366777 +0.8591032027265448,0.6724582896974077 +0.4410203992841616,0.29545783936987485 +0.45421183104351726,0.36860638782539035 +0.6398149728080329,0.4310449651130092 +0.4570954143504704,0.24341356705205885 +0.810461938293197,0.5823333251651416 +0.6898229121412872,0.4593875994953099 +0.3404237031567022,0.21402862624867333 +0.8682525156985739,0.5856843578922997 +0.6275866627011758,0.3707115642699662 +0.7703667878268169,0.5889558780234878 +0.5821173190438508,0.391270100281203 +0.7264952658818122,0.5432934154042559 +0.364204883535895,0.22932288004396584 +0.5627617239341054,0.4190661302696934 +0.7676703333021158,0.54236364255228 +0.5389792322527277,0.3542440228469591 +0.7401618956715881,0.4483886948124473 +0.8914425372109486,0.8139084561143699 +0.9111555813753731,0.9067735653707233 +0.43781387801185045,0.3558045022463537 +0.40230500693721466,0.7163120493745786 +0.14323332904214156,0.10918596364886418 +0.6706671118008073,0.33030670814647717 +0.48082491750264855,0.29516738593647024 +0.4791944026426724,0.1795483823969409 +0.7774146198382281,0.4141239515534656 +0.7878993748763048,0.5367390502593952 +0.7610629796155468,0.5580669630238408 +0.6749103664619066,0.5034621943809282 +0.6940226554117053,0.4924680878719604 +0.6202108859342459,0.4585520317842114 +0.5986748933142088,0.43662488372472497 +0.6133800148297935,0.45172202496014285 +0.4080969094787001,0.3213475638106814 +0.6513489484079769,0.4450978627763909 +0.38457813854810247,0.26409578270095513 +0.49085450167094735,0.17902085148942035 +0.7667363881232315,0.46001863386827413 +0.7658859490516686,0.5439857233519256 +0.7482217549465309,0.6672497974288606 +0.7250367402243169,0.4794432213172687 +0.8399711846393277,0.6833757744356713 +0.40936705465640333,0.3335507207341569 +0.693401098176055,0.6830817447235874 +0.43096834416478486,0.4856640090683168 +0.5037491917063209,0.3263020806883528 +0.5178843140039805,0.25128489682057553 +0.6004804372135488,0.42084264670364063 +0.4667881130665353,0.2779200667497619 +0.5031925439288241,0.17150592769361928 +0.7258673905538164,0.37436640187093173 +0.8028273581586806,0.5999720680533004 +0.7412533759265966,0.591415344475894 +0.44805803890131735,0.3324478857964247 +0.5428511499769166,0.3864742509676036 +0.5016148685864356,0.3427644067049526 +0.8941574095708833,0.7604185327450874 +0.719440460126963,0.49616154928266243 +0.6923905014239979,0.5548049200311529 +0.52706575387954,0.39609229484773995 +0.24111667272810786,0.17701151931345002 +0.599675893718458,0.4227900496538143 +0.43213361497001723,0.31375950511588846 +0.5503385662434988,0.242243259656577 +0.7816604374990526,0.5218315113986254 +0.8399034737628702,0.6835038052123906 +0.6817189454292155,0.6555188285003433 +0.8004317282761282,0.6306523071920097 +0.42315769190962094,0.3454941504185476 +0.6167884468362593,0.6707350598157822 +0.3589138388244028,0.3780860595229597 +0.2867978512929416,0.0813327132015048 +0.7033320068549388,0.42561998877507456 +0.4639201461765116,0.19070553741136292 +0.693687915726683,0.37191483303394235 +0.8970698117235822,0.6836024508992948 +0.5787869095173874,0.41309547340994074 +0.3533700704190904,0.2099674041804489 +0.7325603365102736,0.4805460264526786 +0.5364176034344939,0.38456746858276253 +0.7488609551570328,0.5278425206028096 +0.6286054252895661,0.3802171639879605 +0.6361828445697493,0.4213549188221295 +0.7739762066954435,0.4980086674182037 +0.9148422478636203,0.8074114306376674 +0.5702168344832227,0.3725596062774996 +0.6224398612300244,0.45326989797719286 +0.4780090152698305,0.3440556519244398 +0.4522629379735079,0.28454381170100124 +0.625929355553376,0.4638174762907265 +0.5706365703916855,0.43418714316529566 +0.6850507258625085,0.4481299510499992 +0.8657993673338196,0.7091020331385111 +0.7483631371639228,0.6946784243876966 +0.7669020890356891,0.5913192021840652 +0.3396739959347987,0.4062066964062422 +0.332409083807139,0.4542655935661574 +0.6128749846746665,0.28321677389239863 +0.867204248811023,0.675310967990604 +0.9268294571823871,0.7328830942630294 +0.5139912962355434,0.346587269799201 +0.43355286116660996,0.2738457316597133 +0.8697040080079866,0.682207881028298 +0.7536057232992178,0.5756645787071876 +0.8211348651948093,0.5552378285652834 +0.4047414660014338,0.3344489627291103 +0.5133172869124965,0.5204259742730118 +0.29468664523739757,0.1724672314026178 +0.6179240941330416,0.419667630541231 +0.4156805574442615,0.21860885576023265 +0.6767354010800861,0.3274011009288271 +0.7261109351323423,0.45080870299009174 +0.7271583079502217,0.539498983725508 +0.8017452954375456,0.6149146544451274 +0.7594448327193601,0.4967567314618666 +0.7915747164820459,0.6211788641798068 +0.5675768851617625,0.3970397106745338 +0.5316227077860582,0.423171310763351 +0.5996201037709543,0.347980021728536 +0.6522195338494716,0.3755943171554728 +0.77537000170872,0.6005468356417102 +0.5457898377779586,0.41770198856979296 +0.5286574959180941,0.3891955308216576 +0.5496083497404347,0.3721734277847788 +0.8896555303561317,0.7565367206572751 +0.5509696602223121,0.3863387994126248 +0.6744468807441835,0.5164147605016531 +0.6743738650543416,0.4811259200405287 +0.43388462061939376,0.3349797122874422 +0.33472383018674,0.24784004638273016 +0.497366249507307,0.37545424624053314 +0.41665291781669933,0.20342457253432894 +0.7282933592005563,0.4015826574808613 +0.7428232430605204,0.4810235788656558 +0.8428300618210242,0.7281628832434974 +0.7416617869525532,0.695729611900835 +0.6684974431265739,0.6001303183848599 +0.30981296297524186,0.35276919532193396 +0.6903495191778206,0.5739064205037941 +0.16522723434561593,0.082617044282212 +0.6742590069038719,0.4053966394830561 +0.5218001603513642,0.19702723582581222 +0.7985112666216736,0.5995974528616427 +0.831968068986205,0.6421942101876807 +0.6982101201253008,0.700940726773747 +0.7293721436662289,0.6106864201625792 +0.3950206934976827,0.34170973232010177 +0.5404590963730505,0.3307714455608535 +0.4300355016718289,0.24663966844401974 +0.866966128255171,0.6459433423364908 +0.5041401981760051,0.25227147289890783 +0.9511457680623152,0.8159700615637028 +0.62153565876888,0.31225946482617417 +0.8172965048856251,0.6137872325914749 +0.36348563428746844,0.234517097000118 +0.3962244987057582,0.279166817102014 +0.5891867875413132,0.4168369463619125 +0.3137906789438957,0.2195290322644191 +0.6416170596379763,0.2528755063678433 +0.7240666746307026,0.42852052959792897 +0.7467104195737702,0.4897468080179064 +0.893475770853306,0.7441295966397895 +0.7326200007596873,0.7605019792476047 +0.6255446075713926,0.579768656514919 +0.27451109883188857,0.3728852860558955 +0.7221059202363843,0.5428125847358226 +0.30581030246275226,0.14460280508438558 +0.6687455176581021,0.383499263943575 +0.6709771155582505,0.4287258377964437 +0.6793739794947167,0.4417460253865299 +0.8071960209923736,0.6237773286635487 +0.6121897100737582,0.43289706023637925 +0.901013493440073,0.7461231335849262 +0.5478582381607298,0.3881525687494815 +0.7000266908839232,0.5439796436781709 +0.3997242748303324,0.2847362750985928 +0.35457533594096274,0.23939886640898778 +0.4021252393285916,0.3387746506056697 +0.39129644628090876,0.1943566795243598 +0.7439633011010155,0.42170935784157143 +0.7015273570252702,0.4210986188501123 +0.8048126696666437,0.659977911571641 +0.7774608134379241,0.6151268469800998 +0.8112378119541541,0.7793384178654644 +0.4378718733312106,0.3877981893346842 +0.4541125297053322,0.5636512625769388 +0.6185243129058646,0.5601180184510698 +0.4559453725319765,0.30689424214450634 +0.35685145851075345,0.12281534050964854 +0.629216790130961,0.4046989671173674 +0.4527156948551726,0.20733082252644994 +0.6861518024653247,0.34969323802985947 +0.7246469854521729,0.4110593787485202 +0.752607941545786,0.5181520570794172 +0.8027025460325344,0.6411093460503121 +0.6810636519646259,0.46804174686440514 +0.7376434802208117,0.5204005826943888 +0.43614411349329396,0.2697146827502754 +0.6800500153756858,0.4367105952037391 +0.607647955351656,0.422668754201941 +0.7111963032903947,0.501240073623539 +0.5744403004022588,0.38972315113614514 +0.6533780097252003,0.42034909044357355 +0.9189423321679847,0.7578787788363308 +0.7975502013294196,0.6269605147113579 +0.5954493283578939,0.439344166823183 +0.2325835227713775,0.3285509937335146 +0.5093702673358986,0.29728969871638444 +0.7422759532122521,0.5015448321716608 +0.48236080998905406,0.37791278882094714 +0.4945130347668636,0.2341816122576764 +0.7946616410346282,0.5336400259698391 +0.8972514866808379,0.8474966270518708 +0.7822165488347466,0.6917068348284132 +0.7004536389544029,0.5171857465802677 +0.32098272439332537,0.4984575797994241 +0.29433149096154193,0.5367158640526243 +0.27611786124092436,0.10684967019463794 +0.6978201269345778,0.387548624687513 +0.8307757972768923,0.6130188691172251 +0.7357663511431042,0.5628508318038645 +0.5365709661854843,0.4036546937430089 +0.4733173250638122,0.35432112145482053 +0.5334299206154518,0.34776282240341255 +0.5379088520419675,0.3996826998278332 +0.5665475129466033,0.37326937838605334 +0.7662329672935132,0.5244585861118018 +0.89332383861379,0.8066897972048273 +0.7371237873230716,0.5904719817649366 +0.622040152482204,0.47461128139133063 +0.3019829988151728,0.3404280536460817 +0.5275239347838787,0.3194751733058063 +0.47524511808957337,0.355984210249989 +0.5870872735339727,0.4143443695294004 +0.4700044691052333,0.185669004542646 +0.8285499810272866,0.5625303972341983 +0.852787017729672,0.6939474330256457 +0.722099542539394,0.757497785947695 +0.7309349178474251,0.5629126418203719 +0.319219022954613,0.4001694313560873 +0.5242114066508461,0.5131792415758367 +0.2595419287399775,0.1218742129728658 +0.7132573126972145,0.41817870651774497 +0.45935985440988636,0.2578248376414297 +0.6220429539005081,0.4254454961778466 +0.43330335612360726,0.2811785930684152 +0.18921571967931503,0.1577236947216167 +0.6127321123411553,0.29871827303715714 +0.7233598231483881,0.43045827659566843 +0.7715664505120808,0.5745012748574527 +0.6774612068394372,0.6681919084422802 +0.7969508170216233,0.6275201427200253 +0.5491596459746143,0.43360671313564364 +0.466231048056525,0.47300341629943515 +0.6459209918274504,0.6506546126593244 +0.3972864150569613,0.3340782516416775 +0.42491912837183204,0.15320587127301138 +0.6711605786548491,0.4326125374651178 +0.6530107259041343,0.44144391924509524 +0.4416442214963131,0.17113625968746793 +0.7404589652211164,0.34293508460492267 +0.7693799733280227,0.5632031548584212 +0.7701569198725855,0.6222762452925531 +0.7599163054594823,0.48730936548170034 +0.7083401679223577,0.2733785504549061 +0.7653917073372447,0.3815312377863507 +0.8053835629542404,0.5967503178003993 +0.4712513386691543,0.26708561128150293 +0.6593015193223355,0.4728646268843556 +0.5353729724302738,0.3597993843450769 +0.806091189296937,0.5463967312282272 +0.747570156969917,0.5073014487524568 +0.9129360913239103,0.7277762279136194 +0.5974892377204654,0.42049482379975545 +0.328826069796145,0.3449780934051232 +0.6081558465297321,0.4147245577553334 +0.4451393484585953,0.2872483426499071 +0.7516858576912109,0.5505089152676317 +0.3205524980673833,0.15977740255553283 +0.6263517140662086,0.2227846379554843 +0.7638417481546738,0.5153837193584081 +0.718408942144592,0.5146400918116902 +0.765731334603138,0.6153911339745008 +0.7128940819919927,0.476103781693496 +0.8435915707625918,0.7263221726072566 +0.48418956989753165,0.36010521577680255 +0.550999581753986,0.5561371434438405 +0.5714291929578226,0.5166035880159207 +0.40755996103629927,0.20029273588789018 +0.4767981767136723,0.24085304092463988 +0.6062431334790974,0.4175888291519151 +0.33770912881999127,0.145507603590251 +0.6260294913565878,0.39091163794824685 +0.5097931622905341,0.33809554508679107 +0.5776883363096514,0.35055458474977125 +0.9111008047068305,0.7682564839125973 +0.7734814881438615,0.4248873582852956 +0.6777644156673768,0.44156926781280503 +0.7620732187397352,0.5254175652396588 +0.5188976525696969,0.32090270454529757 +0.5837631820998549,0.3698525719335183 +0.8523942231206448,0.6208085405225643 +0.651832818914211,0.5002091516895831 +0.38894453640529436,0.32288348609647805 +0.2924664020220777,0.21990778997888036 +0.4532321094974505,0.3466301553410304 +0.4429515003677074,0.20084986050148204 +0.7114524244489668,0.4189316025867067 +0.7034575342368222,0.40802746928884587 +0.83903557053039,0.6854595528128159 +0.7341271042026694,0.6328432547202443 +0.7916256784533233,0.6523278938487289 +0.516364693585597,0.3714066140312901 +0.5535367726678646,0.4534010281954342 +0.6511121391543099,0.4351845374866329 +0.7637305854921798,0.5482652176288773 +0.44059666986449936,0.2669545704702286 +0.5166168212329695,0.29041516722275845 +0.6476792692434888,0.4216982117730209 +0.9101648329700242,0.777393756728945 +0.8566248415970532,0.7111719832380957 +0.7179406880552874,0.4988792826603594 +0.3848795294343765,0.3756437294058919 +0.5610730647431572,0.4968073060028565 +0.3750653266499501,0.21732532934222829 +0.6731809972985812,0.4550876608252415 +0.4918191730442099,0.31676942046168505 +0.758233070291208,0.502124546945577 +0.8259365557727486,0.6756228194914398 +0.6667118667832314,0.47054690027693946 +0.6286451219829823,0.3421692841303931 +0.4436522125716108,0.2273482079688625 +0.674488544390877,0.4058270148197887 +0.6759155987959344,0.46550497318788125 +0.5694832801200517,0.44809725790240584 +0.8077063559608851,0.5707514274529069 +0.9327090381563276,0.8698649388887724 +0.7108055948439345,0.4765677442474918 +0.38330230112682373,0.3561024360626625 +0.7637058495646006,0.5099763859952914 +0.3976176976725869,0.18795001468895456 +0.6718226670489423,0.37678956909474287 +0.6845054029675176,0.4528858652516796 +0.6935887335977875,0.4633582821083031 +0.870629668141248,0.6107811915475809 +0.7626465558177674,0.5745613563392651 +0.8521051405935156,0.633428393516824 +0.4144619702842834,0.40913686073749017 +0.45684275026129495,0.6760152564718495 +0.5111516117494626,0.368499457092879 +0.5642337202413187,0.2894597643735808 +0.39394980664744195,0.26265293306778753 +0.5587050914157776,0.37963384313304277 +0.43787872786535903,0.17913773619758913 +0.7490576504847702,0.4346183827693758 +0.7457796930457035,0.4646555175945781 +0.7943201064201023,0.6638321863136226 +0.7055816649624521,0.45274680761569913 +0.8482282756838109,0.6119473564202592 +0.621842563084795,0.4315226963399204 +0.4869087337918897,0.4075730434779949 +0.6059600114164451,0.47267976307895765 +0.5072341560766701,0.2505666906548031 diff --git a/synthetic_data_Kesrouan.csv b/synthetic_data_Kesrouan.csv new file mode 100644 index 00000000..853a596f --- /dev/null +++ b/synthetic_data_Kesrouan.csv @@ -0,0 +1,1177 @@ +0,1 +0.5915231704211047,0.41167277057562723 +0.426116406881491,0.17990845424276633 +0.45371109243365887,0.1671676932135477 +0.7757400273619883,0.8486099234889867 +0.6217468380401582,0.8569174400557462 +0.6922532915482872,0.677765785986955 +0.7302784919120413,0.5480933780094466 +0.5049168467094134,0.5851167434709369 +0.6025798916306483,0.511254548528001 +0.5968328117818917,0.08362883321237423 +0.5761262177933191,0.1956371365070172 +0.5953521131965068,0.5066645736522579 +0.5021446346811447,0.551596939025928 +0.6150479912237088,0.5189145202345521 +0.6653717159661517,0.44848149971149054 +0.6225950121352402,0.4644832010508689 +0.4333041309943468,0.45671513632112304 +0.5962756275625786,0.3993505831639357 +0.5531928538807712,0.17728945595621168 +0.6464411019731563,0.13686546669966676 +0.4638404249752206,0.26137265537526566 +0.5638436078547839,0.6326848858386496 +0.5640804171084565,0.7994241110636471 +0.5317786931541298,0.42875510412372975 +0.6512244939252659,0.5117729301231072 +0.6290205716554175,0.49092838120277266 +0.6117749809700797,0.44964051202801797 +0.4201212823035227,0.10971933592588785 +0.6264547109073437,0.300659060185059 +0.6591966747679442,0.6190611118002668 +0.5651593207834446,0.8139320604017658 +0.6928048133263471,0.6303293102794228 +0.5963089465590051,0.7826197139738612 +0.7062982916233919,0.9194492092704412 +0.4423507451636552,0.06174960726439254 +0.42742955681042644,0.031332462995496684 +0.36539310213809756,0.27050167295784106 +0.47871434684514647,0.5574007624913384 +0.5918929576372599,0.5392673010336467 +0.6083142756900687,0.4908060724718128 +0.6965103744870746,0.8946230402806703 +0.6085146069011419,0.49356299590624325 +0.6830465793031256,0.5821785921142435 +0.4374685883151611,0.0985570250980721 +0.5239599942717352,0.0705468355921492 +0.5035176276734296,0.3094850179515694 +0.48680880661657105,0.5647439355112172 +0.6357410549579185,0.9411694994332842 +0.6813422440905624,0.5648437136864739 +0.7227064966543512,0.6564396017349826 +0.7651187180824921,0.6493244164811475 +0.648983895723704,0.32947260109248133 +0.6579567789474314,0.5588957661901371 +0.541465163185048,0.31101018160059507 +0.6244912146993191,0.2461865243895538 +0.5330588221098626,0.2532428500567307 +0.44388756152209136,0.4144324060213923 +0.5507714747916208,0.5106593365458544 +0.5976558327168806,0.4145715232621624 +0.6313003897132383,0.49649065684546634 +0.6237742304273766,0.8208914987189548 +0.5783751606451489,0.483645379071736 +0.7426592110958685,0.7348606579291191 +0.47962450977078963,0.10145214190127955 +0.3818664252434684,0.0548818110884564 +0.49734160299858327,0.424189507547676 +0.5645918845652308,0.5723559850834156 +0.5562773942476366,0.5207514161754491 +0.5924015640710854,0.5726209277291838 +0.6142172812895444,0.6094871157425547 +0.5790712832914218,0.3161129054325185 +0.5853641032676956,0.45582321241757373 +0.6650044321450769,0.5359031552811591 +0.6956818699247669,0.6118884676689242 +0.6593005656637788,0.49888524364466047 +0.691623687685578,0.3836039599016249 +0.48149803276753345,0.2727334794723123 +0.35317569968094115,0.1746286748137102 +0.5739078521242564,0.22931033350520597 +0.6018078922715828,0.42617744165828647 +0.5923498868440694,0.4124056096824261 +0.6193613409471594,0.5351595277336664 +0.6552149056833508,0.6719740026597775 +0.6294218301240114,0.5224624867113479 +0.6310335397186015,0.36903008782644886 +0.6492946147368918,0.6427356594494552 +0.4602173864451776,0.39664167127082495 +0.41829308863912673,0.08427315942176795 +0.5794531106458206,0.22170761205990583 +0.4900183975281645,0.3842777904101537 +0.5680471658225676,0.6524659984902608 +0.6576455234924408,0.8904731861015196 +0.509186088995734,0.4090281720941665 +0.552282690955128,0.3674130138152692 +0.4594278633205497,0.5045421714631652 +0.4326566457382065,0.7163689725566766 +0.6136754154639372,0.44781625227180105 +0.6187375783396378,0.4722423548862295 +0.5774975418555504,0.4157079752206643 +0.5705366730206906,0.3167983290444448 +0.642363846247641,0.4139371212261141 +0.691992521227417,0.6785969131528927 +0.5848243832093001,0.40309017857349744 +0.5258316397221688,0.4081602092577935 +0.5893078445889254,0.6793959134153278 +0.5492908954155254,0.09190270295719087 +0.5451177358165746,0.21394675949217076 +0.7304286956168626,0.6680111878557495 +0.7724164723695939,0.6482148164150906 +0.5927510857080186,0.20384579877051315 +0.4542504846665081,0.17801085097122485 +0.42882135506813635,0.6888802044827405 +0.37337163087544384,0.6519134634337317 +0.5910958647227461,0.29628208250721305 +0.4897157847466655,0.33927619424164446 +0.428632765972083,0.45709389403597894 +0.5256690978558801,0.6718066924220562 +0.5784094333158919,0.7402552955085455 +0.5462214350237871,0.7289853684946926 +0.6081940531215669,0.48271372867248263 +0.616989791341037,0.4533335860123779 +0.6490949987815559,0.5295198554598073 +0.659390330258803,0.5799335235663227 +0.7739028930008768,0.6694352620273346 +0.6946454047568554,0.43910083131891886 +0.6209414004753765,0.31653413145673553 +0.5938484668228854,0.20016688088927354 +0.7002124189737607,0.3815300460910097 +0.7981601952830635,0.7588615410081345 +0.7642515301057284,0.8235534421520283 +0.5639804005145319,0.398488044350232 +0.476474642713256,0.18503847700197035 +0.3417532145687644,0.2610088584262338 +0.4024559557097121,0.4141446347966973 +0.4934540986596943,0.4526040847656832 +0.5388370155831892,0.5169241423335081 +0.7178353666651396,0.9305219641195692 +0.6007947921244212,0.6355804794790147 +0.6420899629049212,0.6594863527543509 +0.3540720939336423,0.32398113576771176 +0.3512451052368297,0.08478349438983726 +0.6445755958011341,0.23115912057272403 +0.4586380719750202,0.38857144079468486 +0.5035583376458077,0.6588653915656862 +0.6494941710875828,0.5087625975416612 +0.684262156428572,0.5935589069301127 +0.7980953454295534,0.7650273434809131 +0.6186550855112757,0.2557252344975934 +0.3191969096390337,0.06578934186242817 +0.30750238892812515,0.041759312112145994 +0.630991101211525,0.32108083336041393 +0.6240015625425307,0.5367053145897641 +0.5797784327969772,0.4037961359855288 +0.6503416299269276,0.5092325205606122 +0.631321489757487,0.6833838217747817 +0.5932668446992164,0.33983159032112004 +0.652123510782337,0.441593974398153 +0.6625440120136019,0.5199321503338101 +0.6260091661876854,0.5215275878589575 +0.5059650539923447,0.14967745527932252 +0.4554373323531752,0.23234698153729458 +0.5440740584866459,0.36982148849668245 +0.5449420809284364,0.38501566610943116 +0.5600733756544806,0.5944811099931784 +0.5574945806984917,0.6800104373023629 +0.5496442317497241,0.6155371063906474 +0.5949217080566201,0.4955518538888469 +0.6456233262469072,0.5504674906131803 +0.5684599279876023,0.37554472648243514 +0.41789421435632357,0.1682446001319771 +0.35195106264948967,0.0870226620779311 +0.46742811795091477,0.22951561190161227 +0.6529352664394643,0.8708140841576445 +0.5763967632759317,0.9528717985399161 +0.635312676375954,0.9062082162604328 +0.7814293503099624,0.7174770825066155 +0.5460222363009646,0.770411729061448 +0.6387479900772928,0.8551655999428608 +0.5067897438573872,0.10045465817193595 +0.5992005466907488,0.05693969124964265 +0.6294874548379036,0.4944081003613671 +0.5016553997568697,0.6259083741760979 +0.5180913209476472,0.5221648211156298 +0.581779241512628,0.4576715524502564 +0.5933175086472712,0.4572291071725201 +0.6062558888875696,0.6516719454133373 +0.5571515559678384,0.38049307428454093 +0.5246187448057371,0.3387657400642857 +0.3957707583569151,0.5288321966737041 +0.750965356763195,0.3206006285402492 +0.5502375959884128,0.25436872219079526 +0.5490353106987502,0.4798326189607837 +0.5589510797980998,0.36113375390127145 +0.5798000692830287,0.3951676484069668 +0.6512817143842454,0.58970671834668 +0.5680365561957985,0.41353225667687205 +0.6679832934767643,0.5216084117571941 +0.47265294190219354,0.2163145540035645 +0.6146317123846327,0.2815500793096021 +0.5840368270379496,0.46685355856198546 +0.6415380238943478,0.7717185012922295 +0.4988537430340845,0.8533855668330241 +0.6926819681534755,0.42744508343981114 +0.6431248783520687,0.5853288764014857 +0.6031812428917362,0.8474833957038301 +0.29968860742892406,0.05542522663434379 +0.44102823730549084,0.032256603209515664 +0.5159127711812912,0.41719466407152495 +0.545634388877444,0.5114729995508899 +0.5469036101831837,0.5665767187316286 +0.6286994814340396,0.7023988955324866 +0.6503455638334824,0.5920094245860424 +0.6004103421656525,0.3852528925954059 +0.5814604758723962,0.5181804294302141 +0.5076858996915092,0.8013074390227788 +0.5422888993757741,0.8883668175618558 +0.6097120046099332,0.44125550942312597 +0.6184202432108805,0.4715434606245971 +0.6031439303841101,0.4712518747026402 +0.648385643904144,0.5019897217624374 +0.7011101245286468,0.6440215104499409 +0.6804291605373255,0.529963492830438 +0.6700478791623196,0.4526630039569862 +0.5959607362242568,0.08543810240044473 +0.6341540812909081,0.14982992396050931 +0.6148253678754915,0.38117894493130255 +0.4332982897391593,0.3967716093963086 +0.555672824335731,0.4868204588911805 +0.6114107965905329,0.42463672119698964 +0.621203124470563,0.5768679374792238 +0.570785462807962,0.6369106167305254 +0.5526949762830046,0.660002827000826 +0.5220860838448004,0.7291585795922411 +0.4891943335118921,0.06518879526457927 +0.4578670262902711,0.1598072646490233 +0.5336408018614002,0.3657877441654409 +0.5036103128960475,0.487791180135046 +0.5821011661990326,0.6408040517281025 +0.6991955041293338,0.8914513579259747 +0.5759116410721459,0.5753250712507172 +0.539390146686658,0.3324302431679972 +0.4846029877252326,0.24219977832067183 +0.5127476453346964,0.2656033930572978 +0.6948307752020911,0.7080955498466954 +0.562067568254562,0.5630297655337931 +0.6205782293747908,0.4568696315602302 +0.6755013465309373,0.578210830124704 +0.6130428909736344,0.6051008695424551 +0.6491072177337338,0.4681550557817095 +0.7170628308642711,0.6633107059687006 +0.573389410924044,0.4342419500885337 +0.5445641278759477,0.27935817810476904 +0.5941714643928959,0.23809242225320446 +0.4901270269932585,0.2598943111746655 +0.4309500753514644,0.40335476359139744 +0.47518694396763755,0.4638396795041788 +0.5777422785269775,0.4266249831331461 +0.6066909431897484,0.5358530277749519 +0.5953797101470355,0.7784757010498927 +0.554657757235292,0.4647308285473468 +0.7147585152974497,0.6257399314501269 +0.4809828698227834,0.05859836930283496 +0.48185095186921867,0.04306387897107298 +0.44657611843142486,0.2818980214231392 +0.6538407205981706,0.5163287515374273 +0.7950234412473794,0.7853455535860716 +0.7131811975828921,0.5330162043142779 +0.6313298940123997,0.297351807065954 +0.39936053749517625,0.17792949063118577 +0.4009005427021076,0.06221014255180056 +0.5463713407053845,0.25164270376465075 +0.5781908034788743,0.5831396574056649 +0.6969194411641335,0.5306960339140133 +0.7530841826754912,0.5220092529929177 +0.4747924208239026,0.46579405619981357 +0.5250334739240492,0.7528277032187601 +0.38275673982240305,0.06340634816663154 +0.4717524051266808,0.046063721135048676 +0.530494987919711,0.30085098714104863 +0.5214343666588815,0.46187889530923704 +0.617642283387338,0.8295025817412595 +0.6692798733144536,0.8695887914761915 +0.662071883622376,0.4050456281527371 +0.6383784412797167,0.5419726366480744 +0.34278655049282547,0.09151086202281951 +0.6570713519493679,0.08244013778277762 +0.5011751651339551,0.3228631612490722 +0.4868194460456626,0.6414866441194047 +0.5579993128304069,0.3597071465322858 +0.4372588097678919,0.18739670496788696 +0.6156919002011628,0.4337474103513145 +0.659667491856985,0.7013397209958606 +0.5982137917965759,0.667935191933735 +0.5623794793606453,0.29433232517154395 +0.6112665533501886,0.17738386971344383 +0.7089549302454509,0.3796795602911172 +0.5796910523877439,0.5899522298782705 +0.5262638926060433,0.8172018520016661 +0.6297489404145111,0.4927074308359715 +0.7498024701437256,0.4161210652108774 +0.5116088985963589,0.8073918811555182 +0.5902798771358402,0.9302532663811838 +0.4002986549992167,0.03960379954291284 +0.3687067925617824,0.016461700184983906 +0.4226692020535206,0.3123155531222257 +0.5839774012071135,0.5031716818671809 +0.5869532823065625,0.5707904094852717 +0.6910395621668287,0.924168287806642 +0.6211251019905587,0.49877697180753156 +0.6761707066917083,0.5791067475394494 +0.3873531818061905,0.06939348571686996 +0.6416912078314077,0.06498211615902212 +0.6469330787110907,0.5043190116733437 +0.680059432925815,0.5861082667358087 +0.5618050097943487,0.3535529967675496 +0.673946261348879,0.4159721430060513 +0.7438396810855451,0.7422643892680306 +0.6495345830367372,0.47629404021553096 +0.5987531542271026,0.13089087592714135 +0.4905108809055795,0.039790451487844984 +0.3913631438877601,0.11367741216066081 +0.5061861276197979,0.4168792064893588 +0.6198242306184459,0.46101859166971026 +0.6219135522315807,0.54146969265595 +0.6183975934458678,0.8178154222143857 +0.6122567057091136,0.46954411222452325 +0.6727387308504766,0.7497118108115199 +0.3984388708730924,0.07880824796621995 +0.39713260528062794,0.03523805734059608 +0.4715834855634016,0.2817887065047277 +0.5280438065081754,0.4766018087985286 +0.6072909235440067,0.6707508557455343 +0.657314538900031,0.8782333127041826 +0.574793517540899,0.2865264710970473 +0.5012723207049308,0.25580400203558723 +0.37631922957094927,0.6899008744188792 +0.5878224372366037,0.4057683940745787 +0.6130755543189685,0.4599334593103099 +0.6128196715789694,0.5054402942497651 +0.6157412528470326,0.45287367657373945 +0.503079950766881,0.18470698577037523 +0.6019644140687497,0.2315387723572507 +0.6085423826656048,0.44544503049333606 +0.5923882126306568,0.681129037669772 +0.5671299695488417,0.8832035056085772 +0.6020461916413746,0.5615979427583947 +0.7325745820378845,0.4514441187748403 +0.521252274469108,0.6978933208336632 +0.3431934117980278,0.21441546061590505 +0.5004658102565432,0.04895269865985025 +0.5720511078350154,0.31329661577194967 +0.5087086557911236,0.4699471588321014 +0.6604459285176858,0.9208193412385571 +0.6400601863319119,0.7296513907947635 +0.6376628279146039,0.49454274725378344 +0.47388774152557833,0.3863874074029545 +0.4586603045075196,0.14933705315334217 +0.7329642176007483,0.11160254467573014 +0.4895801543774906,0.29488658876276985 +0.5479754209054439,0.6765452616770794 +0.6076912283382843,0.4379252787134824 +0.5099606513545246,0.2884276506472719 +0.48593315478024995,0.22416856863099266 +0.6115300058800736,0.45766130045136505 +0.4814997314999094,0.2880980369619853 +0.5324578880812879,0.24962922906377885 +0.5428981780546166,0.3515931960492456 +0.6086729764422967,0.6703277223726865 +0.6531960963649793,0.9176927199952678 +0.5285443067103119,0.7838629476533742 +0.7705761789623096,0.5342641467607235 +0.47275805469324605,0.8014892331891665 +0.5634632110118596,0.9390808334731015 +0.3739773034732777,0.10827985395364333 +0.4600346088019894,0.14843890056441994 +0.713966309963807,0.6266710156052554 +0.5445540546909815,0.5424747461751728 +0.28943830726080094,0.06284940236639333 +0.2993293404325708,0.33276581731775545 +0.501858293967668,0.4701391751950581 +0.4855246841496388,0.4460918302954856 +0.6234273313948132,0.669017552677156 +0.5495565533172668,0.5503677124379236 +0.5002735852771588,0.4142589267029427 +0.6118412613350642,0.44477680282141074 +0.48875248428020956,0.2589286563256009 +0.3560583293136469,0.09169122567773398 +0.7480900883041184,0.7391476027911197 +0.6215326189468535,0.7763423912108168 +0.5531711577900749,0.6273914569459531 +0.6933721899399161,0.6548600190453301 +0.6380552648957719,0.49564626764607905 +0.5927327274774293,0.27117997381472364 +0.4994231462055756,0.43740552621154777 +0.6136807202773218,0.24888160800509007 +0.7793582677181272,0.19946646670920085 +0.5515058040151914,0.4086288209745607 +0.6063638925038936,0.7045115821644904 +0.6227125524947272,0.45536717728084186 +0.6281969546739808,0.479744970330727 +0.62146735186083,0.6269646876897774 +0.45234280820831085,0.1433681248220649 +0.6300943493309552,0.08905714741606584 +0.5712717771046433,0.3452265855284147 +0.541400790168696,0.5615457886942671 +0.6228887438246684,0.7608685486050546 +0.632838010734379,0.5926840895595973 +0.5802323221669033,0.5303535456254679 +0.5239422320875937,0.3106930252860544 +0.4500663578129195,0.19668394307986434 +0.5537481903560966,0.32164174286952585 +0.7745408415138537,0.8827676764464045 +0.5872122644880896,0.7045823924824145 +0.5806170701488959,0.12466132628683778 +0.6914206146608455,0.1777783034498604 +0.6043338179076604,0.21867561319010517 +0.6789878606221338,0.5390890235412974 +0.527259051755129,0.78271484298683 +0.6589171289839713,0.5077074761208761 +0.6426361798695966,0.6118805402511768 +0.6125524043518192,0.868322490799173 +0.29366040227310825,0.131651699414635 +0.45642757411906726,0.02641326186465767 +0.4355591535199432,0.3217223283491836 +0.5405615567703296,0.5760017627821924 +0.5631632208347305,0.541987895437122 +0.5916858911013277,0.558991312435619 +0.7002057432535465,0.7702223055005365 +0.6054260730230769,0.6143332713812927 +0.5685269832129689,0.26064264748909083 +0.3749650418440894,0.39205047449986513 +0.4545201956840939,0.43198594408830726 +0.5599679946425267,0.3626604672710597 +0.3711304664297565,0.12426289903922515 +0.4639484881961892,0.17337456328653636 +0.8084046839983215,0.8990404001053123 +0.6321805118979172,0.8787869206443166 +0.7466220259034247,0.6630100601407466 +0.6741696595574783,0.567979454440405 +0.5239411592039879,0.5398074383240747 +0.5457053780093655,0.13997545824708 +0.514363884882289,0.028180986615360233 +0.49356329436891355,0.2373279330800607 +0.3842760920199215,0.48809179616067755 +0.4785736202788437,0.585616349602957 +0.558002412271935,0.5287043447107855 +0.6077565550289526,0.4966328437254394 +0.7315770983076528,0.8307061187273906 +0.6105616092164897,0.6763519042096166 +0.6107234358270412,0.5541195864042971 +0.5331696867491353,0.45565772012151623 +0.40913113948218766,0.11710548389460777 +0.7566938399627832,0.09826105823472847 +0.4550164937587742,0.26903051111692927 +0.6267715691989428,0.8226268283452536 +0.4978017508562103,0.895398735127021 +0.5480492710603144,0.34497687186937165 +0.5592375397208661,0.35740637744387665 +0.7912945746705468,0.8524218789372352 +0.7085320352908053,0.6137614244198751 +0.5624093412876752,0.16811314208805314 +0.6308067440452504,0.5524396294929408 +0.5905600785709055,0.17297151667895816 +0.6273177861636183,0.09030571571128093 +0.6437209844044168,0.5944407576487047 +0.5684372782225896,0.5410652155368987 +0.6119243502098741,0.46280929401095133 +0.5847458838921376,0.4170008595692267 +0.655279219095058,0.571401714721492 +0.642215371077518,0.4698220486828399 +0.6098989247759331,0.5269156689274649 +0.6364568471369656,0.4961139256885308 +0.6798026561161444,0.6919952624249547 +0.46454602476001194,0.589679717442623 +0.39731460806343416,0.06777015321799498 +0.4475786089518173,0.07778441898391132 +0.47733724113237247,0.3129575249481531 +0.4424147009474938,0.5187011356064642 +0.5318703054931418,0.7481132142402026 +0.6426787971906074,0.8939716807232 +0.6868460773840112,0.5746508831143201 +0.8570278882254666,0.8620642415224381 +0.8471758364913765,0.7100752585163349 +0.6126136183219983,0.2891009447139982 +0.28168672320841776,0.06287842982837064 +0.462948799094101,0.10915026058044967 +0.6739152669335985,0.5239579672473043 +0.6274140476649224,0.6564396613396273 +0.6767214536093863,0.5104710454731924 +0.6500471829817621,0.32905751434667024 +0.6705251931576405,0.44489565448297697 +0.5138994454902385,0.5115769500512768 +0.452539116105862,0.5181025261595686 +0.5105911492869053,0.46841865732297167 +0.6981508135204441,0.7735170118419286 +0.6181553005648763,0.5431399936148622 +0.6382949351723934,0.6222019189489989 +0.623083770222357,0.5048071141089335 +0.6062787174665167,0.5403127665019878 +0.5213042497193479,0.5695350164582365 +0.49639701839058525,0.2013282475892673 +0.8419216870548708,0.09797382345183592 +0.49523514505007693,0.2629376647292848 +0.5740892886629374,0.6656038754649083 +0.5211545228516847,0.3068599101889312 +0.524707794145024,0.29643136233990747 +0.6883713602436843,0.6470820301422389 +0.6956614255316107,0.8036242715629393 +0.727416396079459,0.5435457820360975 +0.643330097144013,0.4327650662017291 +0.6473885178017809,0.2907097038772398 +0.43439111109870115,0.04788044090370884 +0.4320221840969486,0.051158934781737796 +0.340891003579839,0.30418449610615167 +0.4957336782989361,0.5904114240611723 +0.5633093118190626,0.5205303425481927 +0.6072828769169627,0.48108282638372857 +0.7316603659963969,0.791078328314979 +0.6208643912743332,0.7179269187602968 +0.6568423509041603,0.489952831982685 +0.6945735215552623,0.6868419640519886 +0.4075798391950723,0.1510211525875064 +0.3719985484761918,0.05393919343457506 +0.5547088384158602,0.2729151246270882 +0.47433230276859795,0.4463112051903675 +0.5273625850230951,0.6678842299625017 +0.5244698524031007,0.6753798716635673 +0.46398282047157696,0.31138098209538123 +0.5594953894141426,0.36195069516176637 +0.41069257255891395,0.15982031806621638 +0.5916250943636621,0.37272289358990757 +0.673636913242521,0.7128978364669215 +0.5844425558549013,0.6654250019261118 +0.623845756001101,0.5493739838011973 +0.5617173909665363,0.2287326154862838 +0.7537741660433527,0.6087298387314217 +0.5763600468147532,0.5030604596001385 +0.7148290871968578,0.46534740879462466 +0.608220517583845,0.23066216684739374 +0.36285245415476164,0.15172168597686853 +0.6556753515642018,0.1735043822027306 +0.49117758865965816,0.31043612926732295 +0.6107545494516113,0.7164551608729378 +0.6242687105603913,0.8028948299208893 +0.6422290205411704,0.48934334468812857 +0.6817653178591423,0.7528845064451757 +0.35405972596985247,0.11865770805233503 +0.40168806907113574,0.02996879813133252 +0.4898114800038443,0.23630633927192896 +0.4803121089528603,0.4391153450499075 +0.5744009017457967,0.7300208799873659 +0.6760410665893328,0.9623560896073289 +0.6111530661065459,0.44363671497958107 +0.5319778918769523,0.3221823569971115 +0.5289345383196233,0.29724013776407615 +0.5595483779433434,0.3533382114303109 +0.6913818716417448,0.6726441376803338 +0.6420141457967733,0.7737103693093914 +0.7023633121849433,0.669695138278302 +0.5006675719790908,0.6875478022547306 +0.6012037395921905,0.8260024777941717 +0.5262203216107162,0.07586166255229913 +0.4744466244772675,0.06653594964215674 +0.46100527044207446,0.31396436660671734 +0.47172453995525065,0.5662740463457543 +0.5651321410654292,0.5434839720195256 +0.5479893683923203,0.44834992245827715 +0.6794226765057335,0.666222690886363 +0.653915882055226,0.8293585769196224 +0.5909006595111232,0.2853509780962556 +0.662919521275655,0.3677187856426688 +0.5233661531958883,0.33841741052055796 +0.5346511601949022,0.21785011866309328 +0.623342752403884,0.2984323498677111 +0.4642607271278187,0.39690789541645466 +0.6041583418334565,0.7449610226043296 +0.5790681838498938,0.3919615741722693 +0.651296377126859,0.5326875443033069 +0.752167522843568,0.778567134574889 +0.6731511353876427,0.37202525102581424 +0.6574108004013351,0.29979693860386836 +0.5808587669834396,0.39572453460256024 +0.5053532719184218,0.061654150425877824 +0.5145035981696306,0.16679826362559005 +0.48183888192865265,0.4650476868386638 +0.5712325572483844,0.5224484796198393 +0.5760409831512975,0.5100984568390647 +0.7404118179648027,0.8372398606720088 +0.6450768708636526,0.8047257057926698 +0.6319105624617524,0.5977088207139082 +0.6743067502404501,0.8378831139977977 +0.36088487502857025,0.06069558852953462 +0.34872198101905627,0.020383477191124044 +0.439033776484508,0.23880717135033164 +0.47430559988774085,0.46421909287012664 +0.5361306666873917,0.665249764270643 +0.7039102315306681,0.9582551708414909 +0.6098967790087213,0.6532582038231981 +0.5790385603414429,0.8066522471192216 +0.5100473165080207,0.911837338512177 +0.5280757545977722,0.31642690270088913 +0.47012025113893446,0.2215164897666199 +0.6580249070564039,0.5468192691239702 +0.7030041813255141,0.8215635410881421 +0.6856139301673186,0.666393875425991 +0.6455934643198772,0.4024694856057341 +0.48874616618786393,0.22842806555410086 +0.5529888271817224,0.14757555708801257 +0.6940734385856392,0.13505923734847686 +0.827561378408931,0.8423527470958566 +0.7597167491269559,0.861008464450561 +0.6028420328583483,0.32469987837603503 +0.6313053368987543,0.4849195773641795 +0.511710643724982,0.7583583585974314 +0.4807555079053069,0.7824592582702824 +0.5875371098020881,0.5066680307216515 +0.6365983485636504,0.3908298607830224 +0.5203061103380237,0.4946134681647405 +0.49991464610635183,0.48551395488130017 +0.5922235249971562,0.49308136057460533 +0.5014246105723189,0.525946914636875 +0.5155609249632118,0.4706825311363008 +0.555716931772861,0.44537314729180705 +0.5251141786130682,0.558299362115096 +0.5762643813598968,0.3875884409940076 +0.3970311581752288,0.14884883150846298 +0.36006698009303156,0.08997607222367206 +0.5279222130328438,0.3298264142635231 +0.5650343894480059,0.7317878596800095 +0.5641564726351834,0.8853925457904638 +0.617261290497966,0.9311537733535723 +0.6951541900046151,0.7657247774287499 +0.7021057605148907,0.5224337572725941 +0.5793235897527347,0.6869427555062055 +0.5586972236160229,0.7570453874835992 +0.42575907703609284,0.06296670430719692 +0.45000317688946295,0.04649731512304449 +0.5378032326242923,0.44598883346941415 +0.6184265016985814,0.6833587878240005 +0.7062475084660476,0.7413173906727626 +0.7275037168840475,0.6605263942000226 +0.4061615168704396,0.2202473876712997 +0.4103381335387871,0.29544407100481057 +0.44217839833330175,0.34922489489837183 +0.6900939344775472,0.2676576373351563 +0.4843543171472507,0.42045775014889447 +0.6029506325211198,0.7374773018322075 +0.5001177787357292,0.5531030291886441 +0.7208286523208615,0.635501145696896 +0.8348404168375748,0.8202821604360101 +0.6389226912911147,0.36809566581121617 +0.34513628479896197,0.088265478524931 +0.42294555898899827,0.1440837381865405 +0.5991826652973178,0.29586100549460786 +0.8009384869850987,0.8213473550417525 +0.8169050215983098,0.6953551762476674 +0.7639466523477281,0.22178751208614933 +0.5978285073727804,0.2585451898438123 +0.49253055449130023,0.6788840287264959 +0.31389081475461056,0.3670588728186815 +0.5692126750464069,0.3044040796172901 +0.5845557450753202,0.40085440835015246 +0.5806044339642046,0.4432791169135998 +0.6303217410507541,0.8604339352801312 +0.5535782575138563,0.5551403159450805 +0.7333305477475067,0.7355540983657599 +0.4553288817020155,0.07196843617097856 +0.36659824845070915,0.042906522709019373 +0.4451603591065173,0.25524869536307876 +0.4629665016735978,0.4687556619842031 +0.527545332863961,0.6131154888850741 +0.5956651567908406,0.7481974356031882 +0.5276427864581605,0.31582361428938327 +0.48020476098762893,0.23436877108610454 +0.7177352904665703,0.6886771910628334 +0.6865949630155936,0.8029374472418621 +0.6980105637912994,0.4868930573484461 +0.6339354514538905,0.3679075833548108 +0.511808752970274,0.17813980562007067 +0.5587451457504182,0.09114179006273014 +0.7076506614085862,0.2665061352038633 +0.7321119307851771,0.6812235110316489 +0.5060250758696284,0.4524569507001986 +0.5691225528235142,0.447008609335882 +0.5915377139544287,0.4250344927935104 +0.6310042142333745,0.6162846678446915 +0.5672779082771616,0.6393409961188723 +0.5248728394063931,0.3619668778228071 +0.5694462656492619,0.42126733023576685 +0.5302947163132826,0.22013366200917914 +0.6383427380974992,0.25656795476692856 +0.5378620624086807,0.4490389819535312 +0.605144202657958,0.7267406575746401 +0.5289170741587057,0.17746758443694924 +0.32612934705833807,0.4196871514996672 +0.5595658421042612,0.4165125783197028 +0.6918600201020925,0.5836067194016694 +0.7647541760750767,0.7248963706577982 +0.6155445575192905,0.3600914176767781 +0.6509300469801004,0.35190510715505113 +0.49566441770171293,0.4060457344864482 +0.5147386192839601,0.25838088964064915 +0.7861679791738495,0.6188967817947814 +0.8221995233793251,0.6955642693413356 +0.7617920636485697,0.43399915056827787 +0.5704790353291976,0.22132787086841207 +0.49837106462073427,0.6280299419001646 +0.49727708097061935,0.7752504341195964 +0.6028046011414324,0.3429716226094708 +0.752015173371535,0.5573589796353916 +0.66921073192652,0.6978034370294295 +0.5397277473946372,0.6765857928354871 +0.4621535837258975,0.6879410140959304 +0.4647366702163099,0.5894842738125952 +0.5291041731386398,0.3584918674311453 +0.49568724628065997,0.3427993055815931 +0.4757961034371904,0.385568260770605 +0.5493357777130375,0.5628222817655323 +0.6447126864841058,0.842970370424417 +0.40494349595455764,0.20625022033608564 +0.7000327109697781,0.5982326859363284 +0.6876555084599925,0.5884722465499406 +0.5783930420385801,0.32020711867582574 +0.5840874313813597,0.25935357783779034 +0.5121880173249476,0.35387253726787893 +0.5590116381171865,0.5148069853531506 +0.622335255093331,0.6149770015442392 +0.5659299492356803,0.5821514123962525 +0.6202604174088753,0.561702012468071 +0.6777935623548704,0.37460511886311204 +0.5371315478823754,0.6052898758708536 +0.6821293234247547,0.8397451630987652 +0.430796921216727,0.037540703975313824 +0.3915367126133314,0.051144570062360936 +0.5268141626865631,0.3959260579063494 +0.5849426388245245,0.5379727477550323 +0.6252965926594559,0.7083529227025845 +0.6076261996708399,0.7168891422911243 +0.6214104890297191,0.28685247870132846 +0.5578904747490563,0.3402542468568102 +0.4513966738795488,0.33132803407788536 +0.37241607901280804,0.36903411113996726 +0.8345230221041727,0.19610095004988468 +0.5172063707867419,0.2967381474462673 +0.5715143680088586,0.3802354034054281 +0.721489071784917,0.6700161688947492 +0.7209323644027619,0.7024877064531153 +0.6518418788357971,0.2571413514491087 +0.6449528335978856,0.38714694939058675 +0.774061679774545,0.750578045113196 +0.7401983141272354,0.354917347085128 +0.7701917886081856,0.4077610965567666 +0.667416810932867,0.4687982495028536 +0.5417623519438729,0.3089618083802412 +0.5001755952411564,0.2779371139677422 +0.5550438165194694,0.3984847660947725 +0.5606337189199666,0.3965366478868331 +0.611755430646595,0.634864687300605 +0.5893445014454591,0.7262665026259142 +0.61601185793429,0.22305726983256144 +0.5010691284709087,0.3135649260801445 +0.45660430189081136,0.6023975008813032 +0.776914000445385,0.28663533898062343 +0.604345321604101,0.21990975716129868 +0.5940890311691785,0.43190276580660425 +0.5145048498671708,0.496663391105857 +0.641435205882119,0.380504965411162 +0.36210802194390246,0.30162566870843904 +0.523662626698976,0.31030681699060886 +0.4878112971369635,0.24376293993070472 +0.4950318336067653,0.24109029746390448 +0.6936908363708584,0.6940176480202118 +0.6461178659845667,0.8272342673818989 +0.7117519974105888,0.7053245299137894 +0.6730024814035854,0.5713946813734154 +0.5314692258384822,0.6670206778698379 +0.44856646653191856,0.08976295581648544 +0.5428969263570764,0.019968807677825967 +0.36251884695798203,0.20952653864458243 +0.4554901122661193,0.5463872546590594 +0.6185284256411386,0.5810815090235774 +0.6517776250287347,0.5825791353267437 +0.6801836490055164,0.8791886559497111 +0.5272775887996526,0.6444226497088882 +0.6841087340729332,0.8018739215661718 +0.3962058126590939,0.02644780275627133 +0.4279130100841587,0.03669229146240814 +0.530365467026625,0.32748699156301475 +0.5129822492165125,0.5110649461531553 +0.6667155026824991,0.9347008457606973 +0.633885502761573,0.7313938729784283 +0.5963373779745607,0.5767332905868074 +0.5503144859801665,0.34830129112615527 +0.40556141730689177,0.15361395463270783 +0.39199718829650465,0.11405858386362779 +0.7589753865553024,0.8121865979858652 +0.5889610647656516,0.8050833932656182 +0.6099490522821849,0.8338783971285334 +0.7052784561513713,0.5324829811626371 +0.7226222752912906,0.525528847658828 +0.6222646235892781,0.4800179596035321 +0.6303597688141176,0.6318598979511177 +0.5133224725288615,0.12420263874341599 +0.4913758933128091,0.06224647158275574 +0.5064177512693754,0.34044343199914284 +0.49740830059608127,0.5472100967793814 +0.5751775502671543,0.5732842082155977 +0.6276477574770669,0.5877565735808202 +0.6994881033305115,0.8637224427384727 +0.6222035884330333,0.43410855489365646 +0.6361779570040851,0.6004999870167288 +0.47286421056558203,0.5702543849153292 +0.405004262889901,0.09044483295205105 +0.6635209321413879,0.15653678759570883 +0.4693678915103208,0.33523929086423293 +0.5551547407633871,0.7048164599222193 +0.586445748756343,0.40358272155511865 +0.5709915756695778,0.3835752006605488 +0.6619964241420967,0.6005430215702147 +0.6774007677458339,0.6798274510430808 +0.6810684203524874,0.4725286061924842 +0.6895049809825714,0.470985441940754 +0.7418237923947674,0.6497987502438075 +0.6339960097729771,0.11747327435483572 +0.6387571095879426,0.23472231603624505 +0.6855791806594175,0.578391730221421 +0.6008434891191986,0.6013644927837081 +0.5762646197784759,0.38303947411382994 +0.6248310803837995,0.44586619691290835 +0.5355216264271284,0.3810225721458868 +0.531601369335938,0.395177721591924 +0.5593286156180751,0.5786714548190791 +0.6459628343035191,0.8737939587656399 +0.6397700905258147,0.4081931408239998 +0.6405823826247449,0.4146277304421308 +0.7011076211335665,0.6035364860372056 +0.495711386161792,0.1201991139670461 +0.3947158455514472,0.07191398732802934 +0.510991454081183,0.30120944947437833 +0.5016077756456983,0.47244724585244513 +0.5250797867330357,0.3122645315463477 +0.4842682778425247,0.2392772731832168 +0.6397638320381137,0.513189255690879 +0.6527152060909722,0.7031942003069492 +0.555855274153373,0.43158996063112803 +0.4955953955230689,0.08312100163938305 +0.6336387395322237,0.1772455571353774 +0.48852401967680487,0.2777488228950803 +0.601500272699923,0.6153480404576043 +0.6647486090097225,0.9236522903973244 +0.4708163737852073,0.8255605689582378 +0.7685449718778258,0.542421996064598 +0.45399725433320126,0.8063993446116862 +0.6209975480507501,0.9441553941103961 +0.38806998726419867,0.3285331722870924 +0.5365656613849257,0.11804470408374022 +0.48151716585850474,0.11556464422402152 +0.39175045486947785,0.3113107380215819 +0.38868683573292695,0.506674050790768 +0.4868895113055901,0.5363473290935922 +0.4949470161972571,0.540488123366746 +0.6591550707258944,0.7433807246589405 +0.6000942587344354,0.7875523559520841 +0.5652365684030669,0.34007173743468594 +0.655654013101374,0.5194991821945839 +0.5787845849500765,0.40172648390701093 +0.6323499082983546,0.4869073922655006 +0.712831377922735,0.674694358644674 +0.7079584597941803,0.5722315901898907 +0.6817588209528623,0.4287107284657377 +0.46098968382746697,0.09531438341384058 +0.498854786115368,0.044404417233086836 +0.4902504086079331,0.12624597537129123 +0.4216553866506218,0.39875084122879045 +0.5847183465462537,0.5215126866977781 +0.6024767159905507,0.49168312501650513 +0.70065510267047,0.8760243049663157 +0.6374514102396035,0.5373794431215165 +0.6632840036784257,0.671009182275739 +0.4313728808991429,0.4870519633312624 +0.3419197797485751,0.05703595275086105 +0.6164353489353833,0.1651651261626591 +0.48610478635486615,0.357581495890056 +0.6657136678131992,0.8849602929069741 +0.5984449386089952,0.9002887001796261 +0.5794959663854105,0.6864578121167858 +0.3885611295371063,0.5253002042416925 +0.3630752563169132,0.046072900250335135 +0.5770709514129291,0.3888442810558782 +0.634901583140973,0.500594377029606 +0.7037357687354253,0.701866268427293 +0.7455427646005681,0.6253213876349222 +0.6332718133390175,0.305930018126697 +0.628045082039106,0.42871385770958537 +0.636645913070177,0.2672118541973158 +0.7158961295475365,0.3127215501597174 +0.7827397584252384,0.7083801620252204 +0.6730481981661243,0.679504870705871 +0.6849455832855087,0.600957214246355 +0.6407150029593589,0.48058161092630103 +0.48637166615182537,0.3621136542604234 +0.486415892798245,0.6534223550147494 +0.5188786983050635,0.5522956842759486 +0.6397356390411374,0.34073552456057987 +0.5640772580622837,0.3344766494350754 +0.5315111875084005,0.550928413330779 +0.5766376256454486,0.7604322426057242 +0.5862825512389618,0.5617558950668955 +0.6717946528819592,0.5763483041865787 +0.5558470487123947,0.4771759803410901 +0.4910770356239306,0.5622107381107331 +0.4072217344892921,0.6807202690163009 +0.5391315817376442,0.3320596214871452 +0.5125741958184147,0.2814815339681772 +0.7458127736413778,0.7635042063898078 +0.6748867034340655,0.7398772232471038 +0.651031911318013,0.28687036009474365 +0.5813282727702956,0.22461891152415403 +0.473267406185131,0.2291510102898767 +0.723926365314221,0.13631093488753962 +0.6075090169392213,0.39830064734724085 +0.5517142414579533,0.4653360839121284 +0.572684764813569,0.5327914948036938 +0.7048848270773079,0.7895957223822816 +0.6767504214667447,0.8693640819656074 +0.7042695283293438,0.47917586518296645 +0.5776211618888041,0.8072339288470174 +0.4057131111278323,0.6223554605137906 +0.3685555457756777,0.019228667002049213 +0.4764184355332376,0.06997448199125159 +0.47311380501555783,0.3438396450504884 +0.5090425014064823,0.6379920237996309 +0.6722669600871194,0.9790391912451151 +0.5911838411784271,0.6052033895313689 +0.655643105451381,0.7207089655524755 +0.3538019060788984,0.48729988885096387 +0.5925768017267101,0.4133621450208489 +0.6175060867740377,0.4686839873989306 +0.6579483150878741,0.5999274247995746 +0.5741712450494966,0.333881795080797 +0.6104293465097443,0.28254151316750686 +0.6853966712371307,0.5568635458285016 +0.5596714019301494,0.483806758647308 +0.6720927357104557,0.35318505729570987 +0.5282624959498378,0.3595125671696063 +0.484098464209574,0.2607387301763751 +0.4828906058856254,0.15127930030377693 +0.6110818981606901,0.4092113967720274 +0.6162668466046175,0.5274721378905454 +0.5639643072604439,0.48794007253754973 +0.5696452259535053,0.5922989243454343 +0.6464039682794643,0.7590365402450245 +0.6353873013912065,0.4810540671426525 +0.61970120663164,0.34769386019184156 +0.5520962476262864,0.4122301634107008 +0.5215434431588112,0.46971610142685494 +0.42535710331176163,0.24052479839714935 +0.740148305830273,0.262295245868522 +0.4714856147366887,0.37244474851533443 +0.6167526840641406,0.695635258473194 +0.6611226200497635,0.5290783638563865 +0.6014051436868696,0.44073277668895544 +0.46990174051120637,0.20279109458224098 +0.5596568583968254,0.2577775714268209 +0.6482753753113188,0.5683620566548452 +0.637041747516097,0.7796994440105831 +0.6146937012151938,0.7410356991218288 +0.6806271075626078,0.7200986735952154 +0.5982615947216816,0.8496049634278968 +0.35500869151924114,0.07707756750220916 +0.4995786845261038,0.023661524034317625 +0.4328214525809965,0.32886487213494403 +0.5161188840429071,0.5201639527971156 +0.5799710750088749,0.556701361590226 +0.6497429012702095,0.6725909107326014 +0.7015294432046062,0.8675334445124058 +0.5936151146386095,0.3023844954403347 +0.6127781867462093,0.41422384936952655 +0.4052076637401798,0.2666667995236987 +0.5269442796260968,0.37601172887379497 +0.8033797740256026,0.3195601400597421 +0.5729888677111873,0.4730602200187176 +0.54881864781501,0.693931161680727 +0.5992854237049018,0.24619433259801177 +0.7109251021736898,0.6177564257320505 +0.8249746560351876,0.8103749744143284 +0.748479723866982,0.5455540413305565 +0.4092060029160192,0.12149837601259325 +0.483662307221467,0.20125719885276427 +0.4303103386991443,0.10214599957043334 +0.4732327758865194,0.3301584121345983 +0.5229672193084404,0.5963572257902993 +0.650575101320493,0.5101542467865202 +0.6745731233979287,0.4559416766489493 +0.5501638650428319,0.5761446947202244 +0.4941219090997012,0.5809411996899129 +0.6785403489491981,0.7109377973300386 +0.549116611434217,0.07768467061097696 +0.4138621985561889,0.1314464210182287 +0.6067585944615628,0.5157339567877937 +0.5650640725611015,0.5046753878441083 +0.5409303903121684,0.5176098937709804 +0.5588091611389017,0.5924955600683566 +0.6661086677940923,0.8221458188623851 +0.5541124343402881,0.492084562298676 +0.5493269562256116,0.31495135991859063 +0.5370660423777728,0.5364569420352273 +0.45954546328468154,0.6939375989823565 +0.6681906580359204,0.5415245885337346 +0.7331017255162334,0.6784176819862279 +0.6932638883003683,0.5308349723408493 +0.6450139283587751,0.2947379943834897 +0.6652982234391499,0.6444942348871937 +0.7680338620489201,0.7571313969859262 +0.7362667917581834,0.4773019249553777 +0.6772443055533117,0.27457118007591297 +0.6926624178299908,0.5643470281820449 +0.5746527909745962,0.5079995984846354 +0.5878934263685252,0.4126223023682958 +0.6376510857995842,0.5274651641471134 +0.593352079341238,0.5740863675242027 +0.523208439305826,0.43621242003824207 +0.536523282482494,0.3388220962558659 +0.5569582581048481,0.4197922940929485 +0.5669434070107104,0.6522232883769721 +0.5819794535144116,0.7692998640188919 +0.6564713715951097,0.3259971734683065 +0.5485035180581093,0.25518384550962636 +0.4341861009230135,0.4923315937487067 +0.49650111790267665,0.38749408684142017 +0.8261117934481161,0.21994140722764355 +0.5087929963634736,0.2631985840615347 +0.6233318447538911,0.4639680977112222 +0.5211178063905062,0.306780695616102 +0.4364590346443634,0.16252732261069613 +0.6197323202562101,0.4376748199963804 +0.5600877403738703,0.49676856350146065 +0.605703771063062,0.5764260882479346 +0.6404941081458401,0.7255787842351663 +0.5611975192548493,0.3398227390313795 +0.6773146390341407,0.5164888496131379 +0.594364523837307,0.5193504090013695 +0.6424539088658889,0.7767168275889307 +0.4561353027434359,0.09431111803395942 +0.3635539114167414,0.12937349068425133 +0.6598500012792718,0.6721717112663047 +0.6688640117078909,0.6810321801221064 +0.4294077753657094,0.21442529538228342 +0.3777039646782539,0.3831006582816322 +0.2942923605192858,0.4332267935820315 +0.5303245782403125,0.4660965795740761 +0.5048426389266744,0.40132248362511724 +0.6348824500500017,0.6250937574967469 +0.6184870004130233,0.8642159691967317 +0.5412629246253422,0.269642173981018 +0.5505486726294693,0.24799463128705232 +0.72067332261659,0.6352232688432241 +0.7985528110781658,0.7669484011801507 +0.823500096728214,0.6866348975162407 +0.5099123715922607,0.19692528228632458 +0.37651303407342,0.11109712709085001 +0.4404020309075336,0.10071831931784282 +0.6410548686438394,0.4638204272039352 +0.6496970056937363,0.6804293387454359 +0.7675216197317638,0.5623270863772212 +0.8210402130385419,0.3761784430650692 +0.6220601796577159,0.1500543056455475 +0.46289798613443434,0.17322692258157169 +0.44818541403790174,0.47353428556047644 +0.40347659584443707,0.6866317384700708 +0.523255169347326,0.37846136056238555 +0.6191285252046865,0.39815080127042163 +0.6087650656184668,0.5216204518954269 +0.5357979535602837,0.6521822207767619 +0.4856292008942436,0.31954383818941196 +0.45285874601344295,0.2662502226617697 +0.5696748494619562,0.3149673935680196 +0.6290556191865424,0.3003942367485802 +0.560754299116337,0.522774278607864 +0.6104956864793738,0.7784100763360591 +0.7132886051527683,0.6219933026924884 +0.6928902863869478,0.59333181323374 +0.7501152753194803,0.6078810685906477 +0.6686115264326438,0.40041241010725154 +0.7016004323365277,0.6483582251902804 +0.6150007843450507,0.4772852654571792 +0.5608235001089154,0.19355633835993716 +0.6396058797294724,0.35772228206087825 +0.660415768567432,0.6369656318175995 +0.6965252756482673,0.6677778952763261 +0.7520574330646772,0.5696454042602528 +0.6943759917624934,0.5519059295041423 +0.5586500763420096,0.682102202704071 +0.40786433216456114,0.582155525116738 +0.4492351114369523,0.34324663844019626 +0.5710884928219745,0.41543480713392505 +0.5694522261137389,0.3950093384705977 +0.5720329284183605,0.49478369903005304 +0.6154212951139054,0.7599405042868067 +0.6165133714153876,0.359654724247257 +0.6427238583020538,0.3718197640131514 +0.5796195864186642,0.34865269030908597 +0.4620656966771836,0.3254264589951386 +0.7333760856961113,0.18496361356820545 +0.6399244069511251,0.4922184045283886 +0.6842977404014999,0.5948812359731654 +0.519940078214489,0.2913170156022641 +0.5730126499644507,0.22273173906543803 +0.6696604489713123,0.4827481205524845 +0.4854266941136363,0.3428138789172265 +0.6951150893576457,0.6777364605017542 +0.533125936939874,0.6627105468010424 +0.7321928738927752,0.5036028022624209 +0.5034187435677556,0.8069690458058939 +0.5591810941222686,0.8688510647885258 +0.523004710630001,0.07404273741178442 +0.4635091125572646,0.12789806711124227 +0.5547128319270598,0.3482748862685455 +0.3450443148320813,0.31713479726387384 +0.42848595973201364,0.47972020460084697 +0.5521470903882756,0.4884813423162273 +0.5662745832917424,0.46783763124626765 +0.6961755751973997,0.8532752982402971 +0.6052712201559636,0.589444457909924 +0.6386678814347214,0.66105502779402 +0.3798198401606339,0.3300832506776098 +0.31007710096594726,0.09611016502546091 +0.6423113345555983,0.21620303371329846 +0.6274050473635621,0.4708477552114571 +0.5509303807745786,0.35403555597118064 +0.5656788348672628,0.3641595240856991 +0.6140761970953731,0.47359120799618143 +0.6779160498998735,0.6712380641114534 +0.6524413823528973,0.6835157864581858 +0.594993889281437,0.5564362997351682 +0.6478675603318002,0.7795307628660332 +0.5494994520675769,0.11767584073990738 +0.5587451457504182,0.043353229718852984 +0.3959764539860176,0.2824504968750236 +0.4548738300415163,0.5364987844958188 +0.5742142796030208,0.5673581356238722 +0.6226966976592183,0.5503492349980613 +0.7209321855888275,0.8966593733627913 +0.6303594707908937,0.5246671433101504 +0.6605962514317966,0.6550664895346308 +0.42735406752782484,0.4903527791487379 +0.37261342999164265,0.07366618506878304 +0.6386728286202374,0.17323800904548908 +0.500526845412788,0.36164689028764246 +0.631636321491164,0.7877360574671026 +0.5962827205153062,0.8961508265340635 +0.5773181914794364,0.22853520490298018 +0.4961642026481123,0.2737453577233551 +0.5157671570341172,0.27817195626792823 +0.6368686556276839,0.5229114288953584 +0.6858069896117297,0.777542769150778 +0.6618697642719598,0.6475785964373785 +0.6898434161555774,0.4335089321678007 +0.4528165459249455,0.18903505783723068 +0.35495972630356226,0.04040729995602406 +0.6789040564915867,0.11272358883357263 +0.6956489085562089,0.6081539386541633 +0.643841385786853,0.6192034476918516 +0.7142652272573303,0.6807798736610182 +0.6530467271251849,0.5169805283274107 +0.43615534897925856,0.5006649489289512 +0.5970476865262888,0.7375151507816029 +0.49941805000844774,0.05523589248039936 +0.4788785874438112,0.1123140751220426 +0.5541160702236191,0.3899058099759705 +0.5342519282842305,0.49689003776739443 +0.5908128022647318,0.6619686477882464 +0.6542547344607454,0.6971670382377831 +0.5897728204227788,0.3519098159219838 +0.5919331311678352,0.43502747970126265 +0.4664385914407599,0.7095217697854903 diff --git a/synthetic_data_Tripoli.csv b/synthetic_data_Tripoli.csv new file mode 100644 index 00000000..817a803c --- /dev/null +++ b/synthetic_data_Tripoli.csv @@ -0,0 +1,1177 @@ +0,1 +0.3124048709334445,0.3790764795956256 +0.19588506218417046,0.2405153802921009 +0.12325337527071932,0.09196934073157324 +0.10101500151811857,0.06442016341564073 +0.1137178838058299,0.05349984747131099 +0.10000318287090718,0.05163526517737092 +0.07411140202206921,0.053901672182718234 +0.07249408959101071,0.06018638590678251 +0.07441958783782761,0.06228804567452252 +0.07509818671847923,0.06276297548250188 +0.07581496237410296,0.06401404716982403 +0.07523515819214963,0.06390523889115104 +0.07583570479048124,0.06422108390275781 +0.07623884080535057,0.06455641963314084 +0.0768076777326671,0.06473162748587116 +0.07689130304927265,0.06505763508937809 +0.07710310815444574,0.06578257657903032 +0.07751989363296628,0.06680929638416945 +0.07804712651823673,0.06808772660335186 +0.07843703030196818,0.06888338900379319 +0.0786646902426488,0.06976893520825471 +0.07918125389650627,0.07115286564833614 +0.07966324685639993,0.07221522903093155 +0.08003041146815347,0.07316070770551396 +0.3397771119489601,0.4114640639349925 +0.4673952459488667,0.551071820797267 +0.5603098272317848,0.6946009970285005 +0.5323599576038498,0.6123046854488655 +0.5028006433579653,0.5655229668746511 +0.45903789989240595,0.5693035106661556 +0.4765054284710342,0.58931922715184 +0.43355518572059143,0.5631217341632735 +0.35798120492527413,0.5204321724624055 +0.30800688261480064,0.5000885112222653 +0.26373809571518486,0.46996119460985447 +0.1827400624439134,0.36824715014124076 +0.1038829088033178,0.2525487533692377 +0.08152449129615996,0.20775186945939494 +0.09492409227653152,0.21073868800140674 +0.12377983329560781,0.20260441235383547 +0.13482013342456148,0.19163626368223372 +0.13789951798938757,0.21397790241087442 +0.15308970210315004,0.2575814715339889 +0.19430217143546383,0.31799870622921317 +0.2458410262640563,0.4060944603190993 +0.27072188253535434,0.4971771223579641 +0.27442413563797663,0.5408609491349998 +0.28210163111624575,0.5512043815268034 +0.3252187370697086,0.3931619213762155 +0.28076094384154243,0.3436210740022686 +0.2610809802561977,0.27140867619195436 +0.26359885926501336,0.36658477660402383 +0.3787519335098218,0.5516268592475561 +0.40456333749519385,0.5876500586851415 +0.3356808125397952,0.524648903042915 +0.35396152728695485,0.5485343318683893 +0.4154684542898201,0.5803035478226053 +0.4087631701723159,0.5605727415379927 +0.3719122707206945,0.5414404850942095 +0.3749888538672166,0.5576797705088654 +0.38120925419955604,0.5640913229165868 +0.3514662384385052,0.5417544823618344 +0.33327060932174785,0.541191754912395 +0.34067872160800067,0.5587343554853437 +0.3363538383861613,0.5534872394140535 +0.3211471437857989,0.5427854042944161 +0.32626640791074624,0.5533241015018499 +0.338347792567491,0.5623441915747832 +0.3337467312241321,0.5528583508091351 +0.33120930189183345,0.5509094577454428 +0.34298533195344616,0.5616105776093452 +0.3489105104802636,0.5612494926725055 +0.3240193128030988,0.3920775638797716 +0.31933563942209536,0.38846528399990443 +0.3772768675634954,0.4528676852314616 +0.4302132724978971,0.6383144238070185 +0.44250831000380264,0.5726382117162335 +0.39708739512319824,0.5411537867538003 +0.3896715342331259,0.5490598660196134 +0.44407442204500785,0.574721692067378 +0.3982680141243846,0.5466344934271826 +0.3324651717570359,0.5094405395608409 +0.28846251959629665,0.49369010163867283 +0.24252206082959654,0.45652472819940515 +0.13837581870570614,0.3079415549453068 +0.04517441987217799,0.11411339006344542 +0.04964813589199605,0.05953150967682904 +0.08947703240769801,0.05994242409653408 +0.12403419611714324,0.04668796046829673 +0.0691789686561383,0.049553513360919205 +0.07447862623846752,0.06346723416048634 +0.07543542979856065,0.06271678188295571 +0.07386389373468179,0.06253084519420173 +0.07749125360115662,0.06512904145357981 +0.07485884426742463,0.06431141474161232 +0.07707169650665448,0.0653296408848994 +0.35153365129173464,0.42494675374731034 +0.5034119485946771,0.5842992047763835 +0.5642357467638884,0.6811660505364879 +0.5093925594411262,0.5987527350395506 +0.4974112211806197,0.5767041425459665 +0.4686055778654686,0.5776453594884617 +0.4717740713742186,0.5845867375818168 +0.43731060616634426,0.568072793964956 +0.39950472109629503,0.5501086693455679 +0.36806511872664804,0.5375153404349644 +0.32959783071596194,0.5205079895703058 +0.27800548071869274,0.48881277278233054 +0.23401859398649388,0.4591112419484464 +0.20592987533857837,0.4379059061639972 +0.17529204484799024,0.4007923291608658 +0.14120009539093728,0.3513180601749101 +0.1213616430551619,0.32140862834074574 +0.11354571578942566,0.3012556423586033 +0.10652929542624721,0.26504605919742963 +0.10202920435112056,0.22626772447129825 +0.10234597323572514,0.192310690235608 +0.1045146286308616,0.15220156261003448 +0.10601598022552945,0.11479422411611163 +0.10264968870312613,0.08807757467329053 +0.322124123518145,0.3897230314074191 +0.24560445542898326,0.30230349201024453 +0.17352321740993862,0.15828305429841785 +0.1155930161278202,0.10985770784770564 +0.12151819465463766,0.09074801176189438 +0.11801120636826612,0.0796777901364567 +0.09871563313701205,0.07172673916631121 +0.08779177068160718,0.08277645679401484 +0.08844432233249643,0.10751500689730141 +0.09072810409899684,0.1484005744254406 +0.10606667397590223,0.1885724061371078 +0.14567190406212285,0.2588210395249079 +0.22659263010913386,0.3971807347344113 +0.3036640285925645,0.5236790162663789 +0.2918470501399981,0.5390264373842482 +0.29414516682356456,0.5544708352588422 +0.3497768341896032,0.5734177808626394 +0.37213879817312456,0.5651219468259456 +0.3626928924893172,0.5524530988306647 +0.36539942019881466,0.5589990597119044 +0.3711548446973409,0.5651398282193184 +0.3597760497907658,0.5553458314412137 +0.3478733002543823,0.5513120275149072 +0.3502263426180998,0.5595570783944224 +0.3167871832305152,0.383699028398729 +0.240681886631761,0.2968487729618972 +0.18995401259984362,0.1767877632417855 +0.13594987986144078,0.15052080103996596 +0.13899010417465615,0.1351054306272803 +0.13218200204493202,0.12874075727251771 +0.12092176077679484,0.1265114243560965 +0.12049224970661691,0.18390732942009966 +0.16693136093142258,0.301712899389466 +0.2853837012755958,0.45405274477491614 +0.33276313537621705,0.5322880131056735 +0.304089844174767,0.5602609496422171 +0.3488552569745663,0.576036630131363 +0.3859989344412743,0.5696207265845875 +0.39835268252227357,0.5655740480550525 +0.4123816489467207,0.5726228933225775 +0.41753801696303444,0.5736079792834805 +0.40634313218788226,0.5638535599893743 +0.3929317592901696,0.5594517569874571 +0.38296723359226037,0.5589768867841223 +0.3650016784042966,0.5513100605616361 +0.3420236408124823,0.5428113323148066 +0.32823333138567495,0.5430977922366376 +0.31996536249403956,0.5448364597189114 +0.3304899930388072,0.39894568786494305 +0.3771908878634216,0.45334556546934746 +0.4252525567280251,0.525489566950011 +0.41979116194212557,0.6012287119752262 +0.4318312703823704,0.577963946313719 +0.43335765592783965,0.5664616208174296 +0.4276803433162782,0.5601420979809331 +0.44625940911281,0.5714420657088879 +0.4376316069807272,0.5706997494653419 +0.4145006536727678,0.5569703560291251 +0.3906401693152049,0.5503380280178952 +0.37816321843347606,0.5541299562965136 +0.36031752818613505,0.549906907623679 +0.3391871451750743,0.5436526518729929 +0.33140021556901633,0.5484524946913868 +0.3332563042070042,0.5552898030753126 +0.33067706221640275,0.5524298530192803 +0.3256921171584337,0.547714350772961 +0.3246240019242416,0.5476704817545534 +0.3240853547494986,0.5482724290601235 +0.3201901316094491,0.546539066391217 +0.31731677049925383,0.5467861276429833 +0.3147868215498732,0.5461564045730408 +0.3080944120356383,0.5416226368880329 +0.3350727557562232,0.40484106405063874 +0.3786115645713998,0.4525739237406702 +0.39353203766759975,0.47132143220371703 +0.3698687254749201,0.5505878310833121 +0.41074764721512796,0.5856106857709832 +0.42079186432308824,0.5727085451968329 +0.40073925249867154,0.5495769959159524 +0.4261017142996723,0.568946896077659 +0.4526413976371078,0.5854264478145996 +0.4320684968685358,0.5624561290972965 +0.39773827784403404,0.5478365998989858 +0.3885043262770117,0.5562659483395292 +0.3704651593527629,0.5488253813478525 +0.3257052897849268,0.5239772779078358 +0.29661241168665226,0.5184866768634538 +0.28119406099272864,0.5197827202551084 +0.2530757188363648,0.49966835808265103 +0.21971195932440812,0.46986666164355734 +0.1844213604611273,0.42764839386734954 +0.11701098082446157,0.3137494315127653 +0.04563814400845112,0.14110100222050775 +0.048820465794786695,0.06763252593272705 +0.0881837904302278,0.06249853947684169 +0.12252390382576062,0.04951825721365267 +0.3329559564020324,0.4027190790990984 +0.415929198193855,0.49598675800114234 +0.5210267900528425,0.676581857322169 +0.5560684799195839,0.668775794649954 +0.5455102919598134,0.58200979037823 +0.5093539356313183,0.5776224117003002 +0.5156134962152684,0.607929466118429 +0.5341227649727802,0.619708059142327 +0.5042687057585318,0.5903151611580558 +0.48321372262309903,0.5785820464779693 +0.48367369166675195,0.5881397108403311 +0.46515008799217417,0.5786273460078468 +0.41022959344515136,0.5527435522636823 +0.36991178983076295,0.5463770013626156 +0.35279041522660853,0.5496638994877439 +0.32856377953625315,0.538266299351974 +0.2988534867251784,0.5232378226872294 +0.28362616891772724,0.5237594229319115 +0.2746528982645854,0.5253459793612282 +0.25788423414582895,0.5149827582274253 +0.24164736266766745,0.5047232491751844 +0.23622837658651832,0.507597921578427 +0.23325547571956523,0.5100411755642305 +0.22800087924867848,0.5067921859930523 +0.33547013992287267,0.4080955074467955 +0.44252347938589537,0.5233430248849055 +0.5139284729077567,0.6349851467795968 +0.4601330160306767,0.5696578602781582 +0.4155168830636918,0.5395477396057075 +0.41344943635536663,0.5613549928934045 +0.4434103368953566,0.5790985803278624 +0.4045293926500001,0.5503846388499535 +0.3679061233367369,0.5381458383652864 +0.36184519523146674,0.5500353556327398 +0.3473084270359426,0.5433652978814933 +0.31000322098192096,0.5205416065898465 +0.2934766113255559,0.5241657477939842 +0.2975370585408946,0.5416669231389527 +0.290922105262532,0.537926731691826 +0.28243368859223256,0.5333461147561818 +0.2936022281143985,0.5486923437811595 +0.30816435808627024,0.5587639193890532 +0.3089089393086769,0.5511270146981441 +0.3138971924244304,0.5513346772798459 +0.3290483652981941,0.560309289008968 +0.33681428426697235,0.5592898111681448 +0.3355124294183336,0.5530976634571066 +0.3408704995525327,0.5567203145451299 +0.3153701424058677,0.38121449819655684 +0.19567677375303852,0.24090963521364703 +0.11754375694169517,0.08331882925733164 +0.09761798380133879,0.06020706871845029 +0.11049413679138251,0.05031892640423836 +0.09680506585370884,0.049365818335150254 +0.07215678690628453,0.05354541522208913 +0.07138115166395519,0.05744972805805503 +0.07159227131571347,0.058073282047283965 +0.07292044161501607,0.059677392044428124 +0.0750730633607107,0.06230756619562107 +0.07559278606074073,0.06390669920494316 +0.07668384908316743,0.06546920516017346 +0.07679924367543282,0.06647732831620495 +0.07736906407938798,0.06706505991404388 +0.07760861514669926,0.06747207022952921 +0.07802021502112524,0.06803959585285696 +0.07812240718457515,0.06794857956058983 +0.07788538931466639,0.06764182425728087 +0.07799342273330329,0.06803807593442028 +0.07821252940746011,0.068414896497428 +0.07824128864855931,0.06840822077723552 +0.07816594837757612,0.06846216298057654 +0.078224360929446,0.06874302006581735 +0.3231232761783438,0.39073312151672157 +0.2554616927663152,0.3140839625804465 +0.1735191344917722,0.15941145962720316 +0.09576100109367948,0.07793647024749924 +0.09311524031952009,0.0523304043447353 +0.08852037785921679,0.04146134839474069 +0.0740308165423467,0.04242798671814748 +0.06753534077441596,0.04734784348839456 +0.07017937301387715,0.04988199455717602 +0.07055136560185667,0.051013916559991296 +0.07059356569035043,0.053116589606689094 +0.0720993280287309,0.056477188874835244 +0.07397028802558764,0.060004412926892826 +0.07595637439380835,0.06348219492627485 +0.0764697193968485,0.06520429231735665 +0.07647162674548098,0.06590053417064567 +0.07669806479094392,0.06673479057844979 +0.07733952997790684,0.06744086719809382 +0.07797187565422067,0.06806832529154246 +0.0784380137786068,0.06884214258974679 +0.07873120902620674,0.0695973632388435 +0.07900634406644283,0.07058733678060168 +0.0793353021009019,0.07141029810825869 +0.0794201791150475,0.07148241972819531 +0.3331594168569384,0.4025002406465386 +0.4314241706586242,0.5140098316140158 +0.539867341425959,0.6964916563544425 +0.5515552758226089,0.6478238084072739 +0.5314759611173374,0.5742387156323808 +0.48736250392197966,0.5747749190149841 +0.5132552980497787,0.6099400499892573 +0.5207248329224621,0.6112250665216654 +0.4809949993263598,0.5766528229469868 +0.45675837985800627,0.5695298891062541 +0.45767155281813127,0.5815872530528327 +0.4298467933395584,0.5655773263105042 +0.37583053105594577,0.5418643933264321 +0.3503082394000072,0.5454145651666513 +0.3448996543293696,0.5533504467547523 +0.32482048863571006,0.5405516606342964 +0.30624955887318867,0.5335717183359009 +0.3039884566740214,0.5408153515818993 +0.2937444447968082,0.533175943495918 +0.26635026927201905,0.511815844251828 +0.24668648834772805,0.5026060921998547 +0.22944331165199597,0.49215504362226964 +0.19470176097396963,0.44819432346885746 +0.15090358254709738,0.3775268482436237 +0.3246364592949975,0.3912973390822754 +0.26630765195101197,0.3276799012174582 +0.2075675725581466,0.20121863416977218 +0.12963855264351207,0.14942139337076674 +0.11833825705409269,0.10452461207661506 +0.10821440814072612,0.06934374547617378 +0.09079307316179089,0.053349554360013304 +0.07923823593690178,0.05562397819005605 +0.07776868342021616,0.059869408406928816 +0.07642745970370998,0.061590879949242575 +0.07614862917549846,0.06284165361334185 +0.07609045504220763,0.06496542670421944 +0.07652500270486821,0.06637135125814932 +0.07729706166851165,0.0668617186690738 +0.07783278821566111,0.06730356789931363 +0.07843863962737684,0.06829801178941501 +0.07894474266607802,0.06956872320712486 +0.07932391761375174,0.07058551883894212 +0.07951524852344798,0.0712592897412261 +0.07969951628273955,0.07196682667466223 +0.07997906206668826,0.07270777201138304 +0.08027076719816907,0.0734552440566849 +0.08048549293093565,0.07400146101957683 +0.08055558799317951,0.07425579403798144 +0.33461040252677965,0.4047819958478642 +0.3979444205079544,0.4742322846262171 +0.42959669225012365,0.5269346219531049 +0.395594656399699,0.5677254777010132 +0.4042282699846464,0.564427612321283 +0.40694940083211134,0.5594182591772056 +0.3993312119753836,0.5531580429620618 +0.41621309511687155,0.5663511734110308 +0.4203083812470754,0.5717474203030494 +0.40383559458493334,0.5582870226278028 +0.3865859209829218,0.5538105350062323 +0.38652947538432925,0.5644301753209998 +0.3838132619200574,0.5649701934008559 +0.36807197326079605,0.5546570401684967 +0.3616958259916852,0.5565234404040964 +0.3672531842556567,0.5637179594229645 +0.3633345364902144,0.5580404382131932 +0.3527085780493459,0.5513023119578413 +0.3505634068842469,0.5537434797810846 +0.34714147442595533,0.5526366215313134 +0.3354213833234547,0.5463402252969123 +0.32747048133964773,0.5458458047701567 +0.3245748876969551,0.5487691741680176 +0.31940346950783816,0.5474827271241398 +0.32658046478401404,0.397838322975693 +0.33523729437809746,0.40346807106283694 +0.3699964284263295,0.4325710222535694 +0.3736264705018188,0.5334748011838207 +0.3779541849442845,0.5309932810161996 +0.3571660220011431,0.5421604495960397 +0.3613091408587711,0.5500598531416604 +0.38071885698475044,0.5564391594366663 +0.3709045051893271,0.5521528702359368 +0.36820775264157113,0.5537571292446924 +0.363036632475678,0.5539392810385159 +0.3555579780923456,0.5515158753993561 +0.34880948060738665,0.5510289054531724 +0.34522998327065824,0.5521582942585933 +0.3414751290690307,0.5521032791716499 +0.3375915586370327,0.5510275345463472 +0.3335844873810813,0.5494658928584633 +0.33038312191074326,0.5493914466573881 +0.3269992470181342,0.5483844261872813 +0.31961786741505854,0.5438569765945985 +0.3126152753294656,0.5421089511831263 +0.30945262307590254,0.5438185912034917 +0.3027783035713539,0.5405949336062583 +0.29090625042702445,0.5329136234551403 +0.33351075643550676,0.40536174042332995 +0.4181160926102896,0.49657693338940884 +0.5058399437991868,0.6410751321298322 +0.5080110429847586,0.6255037167576474 +0.4762613176483984,0.5606825928979458 +0.4517063199700316,0.5641912799055403 +0.47975781551729124,0.5925618390260485 +0.4831956922180576,0.5893055776882322 +0.43742561332841867,0.5597544889772572 +0.4128684102781956,0.5570334177430862 +0.40320965640793177,0.5607634764006351 +0.36440891021210686,0.5389634352749316 +0.31861799949912256,0.5206384641372821 +0.30115532869904266,0.5271524769290291 +0.2926861643290024,0.5320228916466007 +0.2746466397768851,0.5213937145887011 +0.2639186083818562,0.51983237092404 +0.26329946513435787,0.5269136411182143 +0.2584745883499057,0.5250415188367353 +0.25294566150148723,0.5230727178217546 +0.2586658596549572,0.5334697943936764 +0.26936492319263017,0.5452375393722614 +0.27785325045596243,0.5491434317313086 +0.2901059984664071,0.5546471457974972 +0.33954101795104524,0.4123657928004563 +0.4040545224451559,0.47721659977315667 +0.4318218230461751,0.5273630005336706 +0.3989687859328889,0.5536782126952742 +0.37931126349629823,0.5307543259960955 +0.3614530562735566,0.5348571521008209 +0.36640757316037303,0.547981141162082 +0.36939907067649286,0.5496060233778608 +0.341890573443044,0.5343828183392872 +0.3282707929049099,0.5347189885346944 +0.3287230729493881,0.5469458680904462 +0.325846373979086,0.5484325867400985 +0.31778541201872007,0.544009206856845 +0.31878322357441163,0.548093674731041 +0.32426780456712484,0.5522831659889794 +0.3211503624366162,0.5467565041346292 +0.31709867710405804,0.5444360953212962 +0.3220702111169549,0.551431594431926 +0.324542164746979,0.5524921398728618 +0.3174315094404268,0.5449737292153692 +0.3160459994728601,0.5467992406647899 +0.3212915658400649,0.5530274491857965 +0.31926494831340385,0.549818692749707 +0.3133316039502536,0.5447133761278625 +0.32655683154236465,0.3964300738406247 +0.36559242003856435,0.4397416100076404 +0.42797827713313696,0.5307242852552294 +0.4423615335660684,0.6181481459891357 +0.4376640915121242,0.5677684526497524 +0.4242743252981389,0.5572906713890751 +0.4319197832798467,0.5690466146480342 +0.47028803817325543,0.5877079347950246 +0.45062631360920885,0.572043476572657 +0.4261195062861347,0.5602552275963378 +0.41866049163325236,0.5663536172014584 +0.412399977374986,0.566720901021334 +0.3809667527023289,0.5493997913076287 +0.35653570288275127,0.5460422020740336 +0.35204267495802927,0.5548490267286751 +0.34156793350093007,0.5496516805356058 +0.3232876359862838,0.5400111657172837 +0.32165569061493543,0.5479031186823323 +0.3295210599335044,0.5581023674389073 +0.32567358011391173,0.5515948515534189 +0.3221039175435696,0.5488020163271788 +0.3326254486468095,0.5590699892389496 +0.3421462475667643,0.5625517945518405 +0.3391830920592303,0.554348347714239 +0.3366547822375807,0.40831342202736437 +0.4046087860368273,0.4799752815380549 +0.4249626695382096,0.5137358886675458 +0.3512058257455261,0.494422493708897 +0.31913465255994716,0.48627894953909423 +0.2963789700954294,0.48852032259371975 +0.2197327017407864,0.4048903868940251 +0.09744429586649304,0.21616953538960149 +0.04410246013839853,0.06575936056996808 +0.08187061546831138,0.07496383761089646 +0.12466776368867476,0.057096212911076416 +0.0988922118971289,0.056502073813945605 +0.07595217226635241,0.07083168602103986 +0.08290123938094619,0.07273462390376441 +0.07897362111646675,0.07194447493294633 +0.07893663643438996,0.07332372640842857 +0.08081540463971094,0.07263830279813004 +0.07879620789132318,0.0697677431153632 +0.07936972378325378,0.06923899031333196 +0.07854881881322529,0.0692253408497241 +0.07883933185181079,0.06910103536346145 +0.07813748715970074,0.06780728675062307 +0.0773531198369133,0.06659096457108857 +0.07703766225449356,0.06607198693076775 +0.31766241783424715,0.3844653355117168 +0.2405820488517793,0.2967613925529492 +0.16609925028817824,0.1481447214885993 +0.09498563407225158,0.07252216314817424 +0.09430086611086676,0.050589769909190445 +0.09031161664370012,0.04300743327039038 +0.07618227599746841,0.045247971859991826 +0.07017388938655876,0.05271533113940532 +0.07508668302203955,0.059504836598381405 +0.07616692780144137,0.062881529120563 +0.07506442068721975,0.06476965524911048 +0.07512980698252716,0.06653970457675346 +0.07571843265190574,0.06722918130288313 +0.07740816472635395,0.06787177897605401 +0.07825490830988815,0.06848385907120211 +0.07888060806831068,0.06942391372312813 +0.07911500333384977,0.07042357301962988 +0.07934585212302532,0.07127943611109269 +0.07969197629517676,0.07209250306775014 +0.07993513344349631,0.07255190586581753 +0.08011940120278789,0.07296994304054936 +0.08032131193692996,0.07365182017449563 +0.08049160240702408,0.07401809071541346 +0.08061492441704325,0.07444611166811173 +0.33186298603097325,0.4024278508057014 +0.42308726899531784,0.5040431005759308 +0.517059445292627,0.6588914372306726 +0.5082585214698238,0.6214222291156801 +0.47385561458103076,0.5598415117583377 +0.44433420888921693,0.5614655595090925 +0.4702790974765407,0.5872449855206049 +0.473461866297712,0.5899857262874858 +0.4425697921948779,0.5674537997310372 +0.4254368244873167,0.5635989885523913 +0.42268294088755326,0.5712340454993187 +0.4033221005702813,0.5616313200256575 +0.3715013562996833,0.5491511207304589 +0.35893753164820913,0.5536562781860703 +0.3556878566132889,0.5565349441004995 +0.34055531019101437,0.5464593153767746 +0.32612520450729754,0.5410486441607687 +0.31844800705225224,0.5410652738566054 +0.29867315287244134,0.5277931076489291 +0.2638828157926747,0.5036597235020198 +0.2228589951610427,0.4700214251031982 +0.15794885155834215,0.37776175014789665 +0.05450934170743257,0.16675183121134807 +0.03185731172016144,0.04171377406451888 +0.339240789355363,0.41074514251444244 +0.4853789805534839,0.5721285324004666 +0.6035033463398367,0.7403541778559162 +0.5713164805387686,0.6157404759761439 +0.5491756199850036,0.5771933178639995 +0.4875459372162445,0.586274085465111 +0.5165284871170588,0.6146046498691089 +0.47716084114487217,0.5867415646925184 +0.4214012026065227,0.5522245150187168 +0.3832185267745904,0.5400512200384385 +0.34208893770082255,0.5234243256201068 +0.2664205133458748,0.46835225663649965 +0.1886008679543844,0.38622939457257993 +0.10214939711728956,0.2563054851052341 +0.0530551075844516,0.12968149737785634 +0.06713393329424483,0.0942491289796278 +0.10230809448397686,0.07344415759279382 +0.10809198020037844,0.05812564472754374 +0.08081957696484451,0.061479180845307665 +0.08090898393199228,0.06836301065432483 +0.07924211023881152,0.07094344472961935 +0.07952225206920789,0.07418659304562902 +0.08189362286119074,0.07740971420106127 +0.08114668725531585,0.07973021242136105 +0.3342438339614738,0.4045078740874604 +0.37506878369584673,0.4483022078755395 +0.38987982266425786,0.4647110088993687 +0.34925353521088726,0.5094480497460574 +0.36430382722338583,0.538818119151456 +0.36964941018450664,0.5528576355534002 +0.3447729348545988,0.5301693660142294 +0.3333601951028299,0.5258340817956587 +0.3290100097092877,0.5336512309317648 +0.31137788290414037,0.5253267270610301 +0.2764376401427893,0.5009832365419915 +0.25841069217071744,0.4980016036040578 +0.25504297013683974,0.508851049625987 +0.2432060539305994,0.5012953860656345 +0.2322504221995347,0.49613985253073506 +0.24147051568664915,0.5184278470792576 +0.25476139779496904,0.5368042570251761 +0.2533838152451561,0.5297256094353632 +0.2567565142668716,0.5317191463778428 +0.2714817523491433,0.545267937740995 +0.2800279259202202,0.547994909834979 +0.2818032800668736,0.5435688477427195 +0.2916823923088343,0.5489150267332944 +0.3029386698680946,0.5537588577793852 +0.32314592594335456,0.3902495192329565 +0.2825197576992735,0.34646403673459686 +0.25577688212783345,0.26238426478228927 +0.20409739013991757,0.27337080148674264 +0.25189501042821133,0.3178774107775016 +0.23111712928629186,0.33116036542584615 +0.166331440181861,0.2501717797482024 +0.142107248281941,0.2319802634097579 +0.14575958249457244,0.22420465871092105 +0.14586260912304905,0.20985814858708957 +0.14791387317032048,0.2071153216576485 +0.15684184429344078,0.2347431174997764 +0.17990589138765123,0.279136120337974 +0.21340775486152888,0.3259116400291525 +0.24537643786043406,0.39683568344696246 +0.2779189943791385,0.4940645082135752 +0.2982129454102094,0.5495703798004045 +0.30046990508656546,0.5501271467853863 +0.3148971199450112,0.5541961770566373 +0.3411879836928744,0.5625373702278531 +0.34987708920209826,0.5576690416728418 +0.34149175876492016,0.5487766247485896 +0.33866813773078147,0.5501933079408654 +0.33860903972549683,0.5536569934418053 +0.3132960199773288,0.37882709376272083 +0.1777217983895206,0.21698135064872284 +0.09271278975806557,0.05525398235885225 +0.08497893808817099,0.044513642638818914 +0.09644791482227584,0.03896364556611728 +0.0838142335271369,0.04170182333328144 +0.06549346445869504,0.04700675590980998 +0.06991049646134141,0.051742166107417484 +0.06992578505272368,0.052597939791913434 +0.07002499698393533,0.05404394846932049 +0.07159432767595787,0.0567188857085898 +0.07251107691476878,0.059187084238148224 +0.07484704254776112,0.06229463198774814 +0.07547414301533563,0.06444275357593493 +0.07633647321347593,0.06610125281125442 +0.07669839261649013,0.06737464643797018 +0.07742530106172393,0.06855615950507246 +0.07814776896092274,0.06951156235297673 +0.07867288588130401,0.07024869299244471 +0.07901889084416591,0.07063117599668713 +0.07914417980746233,0.07096412754128711 +0.07939013837408586,0.07148915505303238 +0.07952776549884867,0.07167565798590982 +0.07946205137799506,0.07143625593097142 +0.3246027230660604,0.39311358200946456 +0.3162711262161382,0.38442230095833313 +0.33802720898562144,0.38275760283997773 +0.349761396586609,0.5209560972882261 +0.4101130961669578,0.5896506885803257 +0.40041911595163776,0.5699828248003851 +0.3780245482274298,0.5449281912669134 +0.41900873177029296,0.571385858529053 +0.4613498448535579,0.5924971083820394 +0.4468492268750839,0.5694711189267024 +0.4218005835287718,0.5598284583411757 +0.43308347456191976,0.5791967491774787 +0.4379740058625808,0.5780338625618063 +0.40473100536091833,0.5552858691687707 +0.38510420911870413,0.5564259272055705 +0.38872623436947246,0.5682910065687478 +0.3752717375112722,0.5576746445094319 +0.3501479625102336,0.5444039088132253 +0.3424494265923624,0.5491625052175728 +0.33732032770102877,0.5497483592691076 +0.31391584867824196,0.5333769303574274 +0.2949321865530441,0.527688024660542 +0.29075992102412596,0.5351164323047253 +0.28366643185526613,0.5348915439807411 +0.3333709239388876,0.40627828104297087 +0.3822810053170788,0.45417591777293187 +0.4210968314880293,0.5110622031258126 +0.4066498278875215,0.5638343076891763 +0.39847901456685336,0.5463955980117232 +0.38160547607563255,0.5433570128358973 +0.3713013827164961,0.5422974806739193 +0.36909466975567706,0.542025683494654 +0.32699468726280967,0.5173782688929237 +0.27839082474709964,0.48814520076308243 +0.24662911887714156,0.47023913106751103 +0.21594467755434704,0.4408798203004584 +0.1730548441113738,0.3817258166400497 +0.13786226508640934,0.33520585186248963 +0.1203409433158805,0.313225536489267 +0.11036223171251716,0.2830254426058291 +0.09874206779696541,0.2318010322435187 +0.08708789943157512,0.1659157568618844 +0.08942323921579742,0.11234006248035079 +0.100351363403303,0.08048051568728026 +0.09989327190596017,0.06353938558274526 +0.08785921333715899,0.061868518383676296 +0.08185034988909122,0.0669650731227681 +0.08043241499477226,0.0700031814614373 +0.33760774129808646,0.4093197570440586 +0.4157916902783817,0.4922671599587166 +0.4785887598171893,0.6042113283897954 +0.4712026118425324,0.6156747320531769 +0.45103448621656084,0.5619065742743082 +0.43560662858179716,0.5611138325014511 +0.4527078866183434,0.5779417137812922 +0.4542336761173649,0.5747513155757321 +0.40289306633726146,0.5446146708364451 +0.3591431974749714,0.5285571795877452 +0.327882647458199,0.5219656807580497 +0.2805854379650313,0.49147969319690443 +0.22233813997276217,0.43877729626537204 +0.17098936435632586,0.37770101301507397 +0.11481267211855442,0.2944530834824652 +0.08180847762614368,0.2280702881325573 +0.08832293747343212,0.21233326125541876 +0.11438176033922451,0.2150825552887963 +0.13972193000308308,0.2190507345014251 +0.15883672234676435,0.2502266160212121 +0.19451820847041523,0.32286327969161627 +0.25863307710033634,0.4444405421627675 +0.29902216786986385,0.5462899189768904 +0.2923429011797997,0.5637407283971925 +0.35076987737371357,0.4241504058934564 +0.5915108918130816,0.6861721254251137 +0.753746211399712,0.8209993811761592 +0.6981466411348795,0.6267959454520491 +0.7068516014796108,0.6248142102291954 +0.5588818787571453,0.6388311364708454 +0.5607789753907316,0.6709353901322216 +0.5293693541574015,0.6330522277606507 +0.515621483237667,0.60711312090632 +0.521945774465832,0.609394727096034 +0.5225865840017025,0.6084049919728541 +0.47621825329255557,0.5834313015467164 +0.4350466131419059,0.5748165230568979 +0.42348697774311317,0.5805817226988402 +0.40880715840015264,0.5714073758057449 +0.38012585037398167,0.5563352089365262 +0.3671609460678826,0.5583971124063343 +0.3641838728757959,0.5608398299503365 +0.35030555719099277,0.5512285214078565 +0.33821111911704443,0.5475265961425475 +0.338367581309553,0.5535432677799548 +0.3354816436193124,0.5524873118966512 +0.3267073034680743,0.5470915418417893 +0.32598462695261887,0.5507669430402622 +0.31753078097628323,0.3867136227051131 +0.2268300354092336,0.2780580511315329 +0.164972782106761,0.14748063634105887 +0.12509790060762271,0.11860123236980766 +0.12601512668359174,0.09153464405868249 +0.11233752964003536,0.06866121269113717 +0.0899825990045963,0.061594992669718296 +0.08400520680896455,0.06987750506834939 +0.0839684903477892,0.0757992563092698 +0.08274179695619932,0.07795745108238988 +0.08365118502138173,0.08087387653915774 +0.08363500236032799,0.08805462688512888 +0.08546012638536032,0.10064351524971141 +0.08790343998357476,0.11824357470003104 +0.0921417772612151,0.1538040036771305 +0.11036854980486227,0.23167276304839174 +0.18647038933422005,0.35104283572858164 +0.2935430407021467,0.48867061570501746 +0.2949674427004227,0.549367724008847 +0.287080049465613,0.5630459170553732 +0.3307409881979134,0.5686612706208521 +0.3612697123862589,0.5644357781575899 +0.37385052436149113,0.5636630039406657 +0.37760177248211035,0.5646577458539899 +0.3223999738141183,0.3899092661193959 +0.22066786881482978,0.27172744183114533 +0.11913782356129525,0.08968996971603072 +0.07881948350510398,0.04671829923238577 +0.09587112067488315,0.042968869065349885 +0.08974105118168539,0.04009288535992665 +0.06881698964847933,0.04596057518821688 +0.07143205403058465,0.05494254809094409 +0.07426065205256124,0.05914756635879452 +0.07485947011619466,0.06334936597583786 +0.07531392573020682,0.06679928280388073 +0.07536271213194712,0.06838414050082693 +0.07698547838800164,0.069929539923064 +0.07829228042215593,0.0711362657548218 +0.07954683898517352,0.0722656843625649 +0.08016729353485672,0.07320779537472878 +0.08058446644356825,0.07431182240388262 +0.08112415669959461,0.07583564494478329 +0.08171078561337354,0.07755467269666944 +0.08231830595514268,0.07933720919735102 +0.08272409437670407,0.0807672140276895 +0.08307972548969554,0.08233350487785035 +0.08341410754682822,0.08357146354336584 +0.08356401322841266,0.08356389375350472 +0.33234268421204344,0.405285029245761 +0.3812250792327412,0.45313200202783266 +0.40361115329507,0.4811289592361403 +0.345689237058574,0.4865081293974879 +0.33113917702726725,0.4943371994625092 +0.3418971597562906,0.5377463680373399 +0.35194829100304365,0.5511291008607042 +0.3522145747535321,0.5510886293070373 +0.36184126132491223,0.5626272540318733 +0.3813493251147542,0.5715659837649608 +0.38054150336425163,0.5612618308339327 +0.3757240175557504,0.5571497064046534 +0.38283050053716905,0.5645803194206861 +0.38798284523996107,0.5660641770473986 +0.3805494307820054,0.5589721184125562 +0.3774985670396995,0.5601755361865401 +0.38113743060261396,0.5654413681162269 +0.3774517773935588,0.562257824444793 +0.3682405053938696,0.5574955921571264 +0.364144623217218,0.5582914333715014 +0.36018043750317513,0.5571919064930131 +0.3507642745371056,0.5521050077063425 +0.34322863811337767,0.5508319121028497 +0.34136909240599345,0.5540807824647387 +0.3213068842337696,0.39026146996419386 +0.2675477265853516,0.32743108162867685 +0.24712255592883015,0.25160384093877874 +0.268162667705394,0.3730757223983201 +0.40209743373661344,0.5849798898174382 +0.41117799275033257,0.5776296834669383 +0.3353488444707755,0.5273221713521362 +0.3775609731027686,0.5652994494574921 +0.4430146514610829,0.5856196860723141 +0.4167944192172664,0.5571246724539317 +0.3935546874326105,0.5526550393664873 +0.4109653531801328,0.574966965179807 +0.41195258491137854,0.5696551780691523 +0.3779733776398989,0.5473143440032133 +0.3646053671212529,0.553264794880497 +0.3676781057681877,0.5629273038126675 +0.34942811721540445,0.5484688263640005 +0.3310712575345573,0.5420298558197743 +0.3347846269034283,0.5540527086771435 +0.33381378644949294,0.5530948620388116 +0.3168167173319963,0.5392867308671103 +0.3114146887722829,0.5418225508659399 +0.31868949527051843,0.553377328449456 +0.3130910396039813,0.5464394670301309 +0.3346119820498659,0.40407115085665407 +0.4514739810647369,0.536397276512013 +0.5645600556360558,0.7182487225314068 +0.5629442929257612,0.6413654663535606 +0.5498316287052892,0.5804485063182134 +0.4989012478927822,0.582778094246811 +0.5227728485165938,0.6162909248688007 +0.5196065305773776,0.6116763928903928 +0.48768034569019003,0.5830327848930831 +0.474815308966395,0.5799808482768724 +0.4814598559508835,0.5911339501605926 +0.4568284749202501,0.5760942678226677 +0.4129433631189878,0.5598747115453664 +0.3955945967950542,0.5664183478454676 +0.39149934046717266,0.5689954738629882 +0.3705010115465892,0.5545420628091101 +0.35579580062495864,0.552365539607783 +0.361043512759375,0.5636722426605749 +0.3619282841062694,0.5625466089477623 +0.351615548073642,0.5533329229892471 +0.3505521714087087,0.5559675078841386 +0.3561361431465679,0.5611311178483781 +0.351617574631564,0.5555634479985597 +0.34511968487552025,0.5525467973319378 +0.3217262625143374,0.388745187410832 +0.25074824686525155,0.3088981498861026 +0.18365821239187627,0.1708527797697693 +0.124862521865445,0.13145354346109261 +0.13418090341177724,0.12378713447111848 +0.12807977197361298,0.11120381914080378 +0.10987707970645094,0.08774414629153393 +0.09670281408561415,0.0983751710934154 +0.0938679873782596,0.12093105871698354 +0.09629002211829288,0.1368398661797893 +0.1027031540694805,0.13384091809260634 +0.10339882968085735,0.14858853767211014 +0.10335180161613762,0.16820576730648368 +0.10798728464184838,0.1572381848790054 +0.10515034196960467,0.1440577502193311 +0.10201317070167873,0.15492901154117503 +0.10827821491294726,0.17269891442621316 +0.11926206944330828,0.18257507620686536 +0.1324412524473382,0.21251374411919408 +0.16148737070179447,0.2753750076606013 +0.2136211692921106,0.35472440600776806 +0.25750589366318194,0.438917158563869 +0.27484971280160003,0.523313878213708 +0.29400837416382847,0.562064228559211 +0.3124305605353383,0.3799955832149833 +0.18974155184357813,0.23191109221972778 +0.11764594910514507,0.08538728923804297 +0.10154452918221246,0.06265100815766639 +0.11178341505997583,0.05014467222582123 +0.09501498935979844,0.04884845002023298 +0.07248020170878042,0.05394205432941829 +0.07309716938674485,0.06017687896597269 +0.0736503898971329,0.06041213849811307 +0.07296088336648925,0.059541314640861744 +0.07334858177836438,0.060302048719581704 +0.07398027180358581,0.061677843125678554 +0.07623225449210401,0.0639188585524366 +0.07713201640715685,0.06556087710353092 +0.0775780677662571,0.0665629205858157 +0.07757768033606613,0.06755813933629655 +0.07814145086857763,0.06902286387210038 +0.07885307072242917,0.07013642764438634 +0.07917448876932542,0.07060834741781462 +0.07934620975089392,0.07104071950956692 +0.07948842643330364,0.07158946966985331 +0.07982355354849589,0.0724353489833497 +0.08029720185812243,0.073658793917911 +0.08074930308866636,0.07493609164884646 +0.30535715813176434,0.3701877581593372 +0.1393839716672645,0.16131859963737027 +0.06317910550943008,0.03108397115785122 +0.09170630572656066,0.04338464126358785 +0.10500571129908196,0.036486983177029114 +0.07720875738729202,0.04353681192118967 +0.06591138242546613,0.051738262003197776 +0.0702951848386559,0.05365741234924692 +0.0693690180659721,0.05333125573412856 +0.06853315233010752,0.05305868369448378 +0.06945416330101915,0.05342841130478699 +0.06940305231813301,0.05305868369448378 +0.07088708876349657,0.05419397335971758 +0.07174593208991811,0.05561259370294209 +0.07305037974060417,0.05771478991248328 +0.07392981647179209,0.059745549955500465 +0.07465323804530713,0.0615787802063937 +0.0754147767891495,0.06350004651732528 +0.07588291166913526,0.06443375327460399 +0.07621431349402968,0.06524440624315611 +0.07682168482418691,0.06638598419839266 +0.07730576394664736,0.06703272439436155 +0.0775106251107053,0.06738445140200289 +0.07771196960072209,0.06782403565574885 +0.3323177098658868,0.40420558913249466 +0.45313170544494624,0.5374676567193039 +0.555076718235336,0.69286888605713 +0.5250738262231089,0.6077805141116344 +0.48845776907186234,0.5602343659707363 +0.4524915813624905,0.5689775328649709 +0.4817768632540671,0.5934298614650049 +0.45300343624941153,0.5754869560990856 +0.40900638692528024,0.5517589431399359 +0.3951781987467246,0.5561746340240392 +0.3827803134262767,0.5545803885955723 +0.3373861610311719,0.5269961935509516 +0.30424550170457126,0.5206937772474484 +0.30289426440774453,0.5390270334306939 +0.2992130517447244,0.5413600188240323 +0.28617912525998723,0.5323099476148774 +0.2901179491976825,0.5418756586042569 +0.3050674199535608,0.5564292054610221 +0.30954334134523515,0.5536740403701539 +0.3111353814069132,0.5498780589757044 +0.32279306644634465,0.5566293578575074 +0.33376121515281004,0.559851584943271 +0.33359751099596247,0.5534772258337649 +0.3338839411163816,0.5520619135483144 +0.32642841333521805,0.39823067054861266 +0.3067467808198199,0.3701235639571291 +0.29738622898731626,0.32079908144299213 +0.25991186495145097,0.35158222795966965 +0.2838454842081407,0.37152442211627007 +0.2137033640972418,0.33818679934701074 +0.10653200743758404,0.19908738069600032 +0.07056030629857145,0.09513244000991773 +0.0887157022801123,0.06934922910347475 +0.10539248583896324,0.053867220698153466 +0.09236982463208669,0.052128046576400716 +0.07679814098950467,0.0603253839379331 +0.07860320805157352,0.06446912863115968 +0.07679310439702201,0.06527891733236546 +0.07732290028201735,0.06844294048270087 +0.07916963099077706,0.07135474657951411 +0.07949680088589316,0.07262349104395296 +0.08070191739607803,0.07395529722235293 +0.08068752287436724,0.07496616219203492 +0.08140683172739349,0.076499759894646 +0.08178788422137731,0.07770451877313281 +0.08220526574634551,0.07919836017781187 +0.0827118754245272,0.08154079290731552 +0.08313956855303978,0.08376887412620064 +0.3330259322549868,0.40563893182292937 +0.37325435870454976,0.4443063721078276 +0.37522193783057084,0.4349545821878303 +0.2628683149364489,0.3722568737911388 +0.19498273726939272,0.3001265217740831 +0.1105475723554145,0.19282644922512177 +0.06650930641942808,0.07009303546313521 +0.08728873728211141,0.0628066358846536 +0.10561600325683268,0.05179268104369541 +0.08901587127114978,0.05102124793127411 +0.07136788963049492,0.0560802815466055 +0.07382935284304036,0.058298527999135624 +0.07302373646439414,0.05930739621322432 +0.07443693278945428,0.06092816570852739 +0.07567039130822499,0.06135278919648485 +0.07477322219521944,0.061183780226790385 +0.07590875028264096,0.06272080519646456 +0.07602930067667855,0.06318834402851654 +0.07638502119663718,0.06348320820523264 +0.07643708585383957,0.06405922749041243 +0.07684117554302514,0.065034538289605 +0.07727259396183554,0.0659358499225568 +0.07738304136858543,0.0663235185308773 +0.07748994229897178,0.06680864073307911 +0.3464814125898257,0.41889524319514854 +0.5300082563446394,0.6186533549565595 +0.6593784092727739,0.7750862214827023 +0.6174560188189844,0.6170809844326519 +0.6020484565657633,0.5885934213948415 +0.4958472251043037,0.5933005789909201 +0.5131130813673689,0.6229675391309504 +0.46940410129138777,0.590519545484306 +0.41636231534504115,0.5528315883237206 +0.3965021073139265,0.5537598710583429 +0.38262552016382156,0.55525785498582 +0.32777696842303033,0.5204973203389267 +0.2935854792092195,0.51551806754036 +0.3018284439523759,0.5464625340275817 +0.30663484329695084,0.5517033320065468 +0.2922860383486937,0.5361756664434805 +0.2988776564086307,0.5457518678503054 +0.31623986357995887,0.557691214600624 +0.31074243778629873,0.5445755105849589 +0.29831537599223834,0.5332165938635187 +0.29706096644083263,0.5364963394312978 +0.28489232058415165,0.5285906773979968 +0.2515457570122097,0.5011182410619555 +0.2102158665297085,0.4599862083284957 +0.33216273778949734,0.4012171612650793 +0.3853875994022402,0.4618047162321787 +0.47127759448564704,0.6109817603625073 +0.5109919308741103,0.6686012126459917 +0.5019272564982211,0.579440591778438 +0.4837982355719888,0.5688370447177059 +0.48877626649116507,0.5907016972781294 +0.5212706326545768,0.6088792065250986 +0.4934881924737872,0.5865022520445468 +0.4751323758742234,0.5771139840820692 +0.4760327338357239,0.5849766711666312 +0.4626109301251773,0.5777246336657474 +0.4150218664889169,0.5553687792293754 +0.38015681498693715,0.5518561583152389 +0.36640796059056396,0.5558716636156609 +0.34460580343067726,0.545259235462887 +0.3235045372885843,0.5388885718413445 +0.3233209847850299,0.5505577903424459 +0.3243804275434087,0.5531771164483261 +0.3129834532201802,0.5422404390290604 +0.3076140284011533,0.5409896355626388 +0.3113904296818635,0.5474184733172871 +0.3058019875956469,0.5421409588772634 +0.29192093009718456,0.5317957383461226 +0.31975603098162425,0.38900005687103784 +0.3130182921350454,0.3807099150779011 +0.35394322866101197,0.4048882709291427 +0.35390299552579546,0.5038099868109952 +0.3517946898334837,0.49982753228599053 +0.32258611911971996,0.5187018496303722 +0.30881768459754144,0.514581022922985 +0.28904324765024386,0.4962173385686835 +0.24284526701583575,0.45893990839761345 +0.19298338886771174,0.39489865170754057 +0.1092157959751036,0.26460850150159926 +0.05625388025274237,0.13775294973004482 +0.06588530539338136,0.09085285633170308 +0.09958145020687112,0.07031246996214073 +0.1112571954536664,0.05697309951770526 +0.08278387783540354,0.060827791487061876 +0.08154609797988734,0.06945472932437378 +0.08013635872422359,0.07222536182050943 +0.08000704644740551,0.075133889661871 +0.08199721573379264,0.07674336407702698 +0.08069095014144125,0.07646596406117155 +0.08184230326204793,0.07802820179550127 +0.0817238688328995,0.0785793361415707 +0.08223411439441186,0.07870742652276393 +0.3232893347186596,0.3917811499822965 +0.23714837427846897,0.2912524928826825 +0.1505902111272444,0.13103476122830357 +0.09744974969148906,0.07262858724106419 +0.10293054578925968,0.052957236589415896 +0.09142029283865492,0.04243206963630092 +0.07095286248899495,0.04408928737176205 +0.06767487524781125,0.04987597448807387 +0.07066980003100509,0.051584541624836985 +0.07111310957644615,0.0525378583101811 +0.07121440767022458,0.05408093315127972 +0.07139161227911148,0.05531489830560864 +0.07195940612514462,0.05612382273946807 +0.07304149864853415,0.05758538822910938 +0.07453644274388975,0.06012266854173107 +0.07564452289239691,0.061988383323918074 +0.07553169129985642,0.062376469164750606 +0.07544076441426713,0.06302702405797234 +0.07600316403994903,0.06426894643235212 +0.076733201729033,0.06529068924966917 +0.0771533250676604,0.06595802285033897 +0.07733216880427833,0.06651771046290501 +0.07759714125258196,0.06737667299588576 +0.07793173192597133,0.0680927631958185 +0.33671855920747945,0.40733110768243413 +0.40796017639803933,0.48459714488774563 +0.4792394637240908,0.6132223585567533 +0.48723018161060094,0.6393960692921341 +0.47672790280762023,0.573715804085518 +0.45468300573192727,0.5613716225892411 +0.46159583322250386,0.57879829212849 +0.49154040208982813,0.5995577553691904 +0.4739834963463745,0.5818599443017666 +0.4482610820956368,0.5647584180986783 +0.4372248648848496,0.5699761490801926 +0.4280528425437382,0.5714503507544839 +0.3948507308283847,0.5554141979685422 +0.36804297560111776,0.5508185010578202 +0.36439049237687443,0.5601859073946963 +0.3599556087831209,0.5591617803915961 +0.3468216657044677,0.5511474590912335 +0.3458486496809985,0.5563614349801396 +0.35495114320399124,0.5647777300035208 +0.35442727798115004,0.5596489291517136 +0.3496136664745585,0.5545345526238936 +0.3523183166377459,0.5574055891438171 +0.35151016706169713,0.5550640206816598 +0.3386292457000722,0.5452976804586384 +0.3078013061950055,0.37360814088599276 +0.17942753431108827,0.21888962314713692 +0.11542248723914701,0.08110928508290957 +0.10684692857820088,0.06602013088998687 +0.11748209593668558,0.05436599236396312 +0.1014189719980146,0.05851325373121967 +0.08027100561674813,0.06915652728756144 +0.08239486812134357,0.07969456884390477 +0.08359256385325518,0.09065523713261227 +0.08573129771671953,0.10118472542245899 +0.08951616285698635,0.11109691821075722 +0.0905636548840897,0.13275197103853018 +0.09938070176330198,0.18654009637333166 +0.13369327781295326,0.25956889900039953 +0.21254053708251783,0.3433817017496525 +0.2655809521220348,0.454048274426573 +0.273424684954554,0.5403278451939145 +0.29015231127538965,0.5581492166895438 +0.3088124393888021,0.5539646726171051 +0.335292637290762,0.5585158448583291 +0.35216426843335025,0.5594183783864947 +0.34343874448617495,0.5497489553155533 +0.3312095999150573,0.5444511752963739 +0.3241694569032623,0.5445410591003941 +0.3168329595976948,0.3836442815326862 +0.22904014583480425,0.2826861133642596 +0.17782184478575896,0.1615039402796785 +0.14199194309664273,0.15853229111971123 +0.15841603276401167,0.17328867258196765 +0.17068386074958192,0.20908310939367145 +0.17639842626412158,0.21417254137773645 +0.1829740404769391,0.2665828755508478 +0.2200387119870109,0.3502906549163583 +0.2571562826193117,0.4101695404617747 +0.25279113645993345,0.42910313462518695 +0.2542645334762064,0.4734491690034589 +0.27262687678437203,0.5106549245894267 +0.25726723666554213,0.49652007055848363 +0.22894626851929908,0.4711269124461442 +0.2131454348199173,0.455500183963793 +0.17095157501154473,0.39283636080754286 +0.08480468390919997,0.23814228097296306 +0.042433053247815246,0.09143310754664774 +0.06221753357775574,0.06395009138619429 +0.10162037609267616,0.04818364961695764 +0.09456449745466317,0.04307839259975778 +0.06877565382733468,0.05027985555971897 +0.07507354019786883,0.05893582085893926 diff --git a/timegan.py b/timegan.py index 05a2c658..ea27d23f 100644 --- a/timegan.py +++ b/timegan.py @@ -15,7 +15,8 @@ Note: Use original data as training set to generater synthetic data (time-series) """ - +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior()# This line is crucial # Necessary Packages import tensorflow as tf import numpy as np @@ -42,6 +43,7 @@ def timegan (ori_data, parameters): # Maximum sequence length and each sequence length ori_time, max_seq_len = extract_time(ori_data) + ori_seq_len = len(ori_data[0]) def MinMaxScaler(data): """Min-Max Normalizer. @@ -80,7 +82,7 @@ def MinMaxScaler(data): X = tf.placeholder(tf.float32, [None, max_seq_len, dim], name = "myinput_x") Z = tf.placeholder(tf.float32, [None, max_seq_len, z_dim], name = "myinput_z") T = tf.placeholder(tf.int32, [None], name = "myinput_t") - + def embedder (X, T): """Embedding network between original feature space to latent space. @@ -214,12 +216,13 @@ def discriminator (H, T): E_loss = E_loss0 + 0.1*G_loss_S # optimizer - E0_solver = tf.train.AdamOptimizer().minimize(E_loss0, var_list = e_vars + r_vars) - E_solver = tf.train.AdamOptimizer().minimize(E_loss, var_list = e_vars + r_vars) - D_solver = tf.train.AdamOptimizer().minimize(D_loss, var_list = d_vars) - G_solver = tf.train.AdamOptimizer().minimize(G_loss, var_list = g_vars + s_vars) - GS_solver = tf.train.AdamOptimizer().minimize(G_loss_S, var_list = g_vars + s_vars) - + # Adding a lower learning rate to stabilize training and improve diversity + learning_rate = 0.0001 + E0_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss0, var_list = e_vars + r_vars) + E_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(E_loss, var_list = e_vars + r_vars) + D_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(D_loss, var_list = d_vars) + G_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss, var_list = g_vars + s_vars) + GS_solver = tf.train.AdamOptimizer(learning_rate=learning_rate).minimize(G_loss_S, var_list = g_vars + s_vars) ## TimeGAN training sess = tf.Session() sess.run(tf.global_variables_initializer()) @@ -229,7 +232,8 @@ def discriminator (H, T): for itt in range(iterations): # Set mini-batch - X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + actual_batch_size = len(X_mb) # Train embedder _, step_e_loss = sess.run([E0_solver, E_loss_T0], feed_dict={X: X_mb, T: T_mb}) # Checkpoint @@ -245,7 +249,10 @@ def discriminator (H, T): # Set mini-batch X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) # Random vector generation - Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + # Use the new simplified random_generator + actual_batch_size = len(X_mb) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # Train generator _, step_g_loss_s = sess.run([GS_solver, G_loss_S], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) # Checkpoint @@ -261,19 +268,23 @@ def discriminator (H, T): # Generator training (twice more than discriminator training) for kk in range(2): # Set mini-batch - X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) # Random vector generation - Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE # Train generator _, step_g_loss_u, step_g_loss_s, step_g_loss_v = sess.run([G_solver, G_loss_U, G_loss_S, G_loss_V], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) - # Train embedder - _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) - + # Train embedder + _, step_e_loss_t0 = sess.run([E_solver, E_loss_T0], feed_dict={Z: Z_mb, X: X_mb, T: T_mb}) + # Discriminator training # Set mini-batch - X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + X_mb, T_mb = batch_generator(ori_data, ori_time, batch_size) + # ADD THIS LINE: Get the actual size of the mini-batch + actual_batch_size = len(X_mb) # Random vector generation - Z_mb = random_generator(batch_size, z_dim, T_mb, max_seq_len) + Z_mb = random_generator(actual_batch_size, z_dim, ori_seq_len) # USE THE ACTUAL BATCH SIZE # Check discriminator loss before updating check_d_loss = sess.run(D_loss, feed_dict={X: X_mb, T: T_mb, Z: Z_mb}) # Train discriminator (only when the discriminator does not work well) @@ -291,9 +302,9 @@ def discriminator (H, T): print('Finish Joint Training') ## Synthetic data generation - Z_mb = random_generator(no, z_dim, ori_time, max_seq_len) - generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) - + Z_mb = random_generator(no, z_dim, ori_seq_len) + generated_data_curr = sess.run(X_hat, feed_dict={Z: Z_mb, X: ori_data, T: ori_time}) + generated_data = list() for i in range(no): diff --git a/timegan_arch.py b/timegan_arch.py new file mode 100644 index 00000000..13d04b58 --- /dev/null +++ b/timegan_arch.py @@ -0,0 +1,119 @@ +from graphviz import Digraph +import matplotlib.pyplot as plt +import matplotlib.image as mpimg +import os + +def visualize_timegan_architecture(): + # Create a directed graph + dot = Digraph(comment='TimeGAN Architecture', format='png') + dot.attr(rankdir='TB', size='12,12') + + # Global attributes + dot.attr('node', shape='box', style='filled', color='lightgrey') + + # Define components + with dot.subgraph(name='cluster_real_data') as c: + c.attr(label='Real Time-series Data', color='blue') + c.node('X', 'Input Data\n(batch_size, seq_len, feature_dim)') + c.node('X_emb', 'Embedded Data\n(batch_size, seq_len, hidden_dim)') + c.attr(color='blue') + + with dot.subgraph(name='cluster_random_noise') as c: + c.attr(label='Random Noise', color='green') + c.node('Z', 'Random Noise\n(batch_size, seq_len, latent_dim)') + c.attr(color='green') + + with dot.subgraph(name='cluster_embedder') as c: + c.attr(label='Embedder (Autoencoder)', color='orange') + c.node('E', 'Embedder\n(LSTM/GRU based)') + c.node('H', 'Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='orange') + + with dot.subgraph(name='cluster_recovery') as c: + c.attr(label='Recovery', color='orange') + c.node('R', 'Recovery\n(LSTM/GRU based)') + c.node('X_tilde', 'Recovered Data\n(batch_size, seq_len, feature_dim)') + c.attr(color='orange') + + with dot.subgraph(name='cluster_generator') as c: + c.attr(label='Generator', color='red') + c.node('G', 'Generator\n(LSTM/GRU based)') + c.node('X_hat', 'Generated Data\n(batch_size, seq_len, feature_dim)') + c.node('H_hat', 'Generated Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='red') + + with dot.subgraph(name='cluster_supervisor') as c: + c.attr(label='Supervisor', color='purple') + c.node('S', 'Supervisor\n(LSTM/GRU based)') + c.node('H_super', 'Supervised Hidden States\n(batch_size, seq_len, hidden_dim)') + c.attr(color='purple') + + with dot.subgraph(name='cluster_discriminator') as c: + c.attr(label='Discriminator', color='darkgreen') + c.node('D', 'Discriminator\n(LSTM/GRU based)') + c.node('Y_real', 'Real/Fake Prediction\nfor real data') + c.node('Y_fake', 'Real/Fake Prediction\nfor generated data') + c.attr(color='darkgreen') + + # Define connections + # Embedder and Recovery + dot.edge('X', 'E', label='Input') + dot.edge('E', 'H', label='Encodes to') + dot.edge('H', 'R', label='Input') + dot.edge('R', 'X_tilde', label='Decodes to') + + # Generator + dot.edge('Z', 'G', label='Input') + dot.edge('G', 'H_hat', label='Generates') + dot.edge('H_hat', 'S', label='Input') + dot.edge('S', 'H_super', label='Predicts next step') + + # Discriminator + dot.edge('H', 'D', label='Input (real)', style='dashed') + dot.edge('H_super', 'D', label='Input (fake)', style='dashed') + dot.edge('D', 'Y_real', label='Output') + dot.edge('D', 'Y_fake', label='Output') + + # Additional connections + dot.edge('H', 'X_emb', label='Also used as') + + # Loss functions (simplified) + with dot.subgraph(name='cluster_losses') as c: + c.attr(label='Loss Functions', color='brown') + c.node('L_auto', 'Autoencoder Loss\n(MSE X vs X_tilde)') + c.node('L_adv', 'Adversarial Loss\n(Cross-entropy Y_real vs Y_fake)') + c.node('L_super', 'Supervisor Loss\n(MSE H vs H_super)') + c.node('L_emb', 'Embedding Loss\n(Combination of above)') + c.attr(color='brown') + + dot.edge('X_tilde', 'L_auto') + dot.edge('X', 'L_auto') + dot.edge('Y_real', 'L_adv') + dot.edge('Y_fake', 'L_adv') + dot.edge('H', 'L_super') + dot.edge('H_super', 'L_super') + dot.edge('L_auto', 'L_emb') + dot.edge('L_adv', 'L_emb') + dot.edge('L_super', 'L_emb') + + # Render the graph + dot.render('timegan_architecture', view=False, cleanup=True) + + # Display in matplotlib (for VSCode) + img = mpimg.imread('timegan_architecture.png') + plt.figure(figsize=(15, 15)) + plt.imshow(img) + plt.axis('off') + plt.title('TimeGAN Architecture') + plt.show() + +if __name__ == '__main__': + # Check if graphviz is installed + try: + visualize_timegan_architecture() + except Exception as e: + print(f"Error: {e}") + print("\nPlease install the required packages:") + print("pip install graphviz matplotlib") + print("Also make sure Graphviz is installed on your system:") + print("https://graphviz.org/download/") \ No newline at end of file diff --git a/utils.py b/utils.py index f968e2bb..8d10c903 100644 --- a/utils.py +++ b/utils.py @@ -18,8 +18,10 @@ (3) rnn_cell: Basic RNN Cell. (4) random_generator: random vector generator (5) batch_generator: mini-batch generator -""" - +# """ +# # Necessary Packages +# import tensorflow.compat.v1 as tf +# tf.disable_v2_behavior() # Add this ## Necessary Packages import numpy as np import tensorflow as tf @@ -102,27 +104,44 @@ def rnn_cell(module_name, hidden_dim): return rnn_cell -def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# def random_generator (batch_size, z_dim, T_mb, max_seq_len): +# """Random vector generation. + +# Args: +# - batch_size: size of the random vector +# - z_dim: dimension of random vector +# - T_mb: time information for the random vector +# - max_seq_len: maximum sequence length + +# Returns: +# - Z_mb: generated random vector +# """ +# Z_mb = list() +# for i in range(batch_size): +# temp = np.zeros([max_seq_len, z_dim]) +# temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) +# temp[:T_mb[i],:] = temp_Z +# Z_mb.append(temp_Z) +# return Z_mb + +# In utils.py + +def random_generator (batch_size, z_dim, seq_len): """Random vector generation. Args: - batch_size: size of the random vector - z_dim: dimension of random vector - - T_mb: time information for the random vector - - max_seq_len: maximum sequence length + - seq_len: sequence length of the vector Returns: - Z_mb: generated random vector """ - Z_mb = list() - for i in range(batch_size): - temp = np.zeros([max_seq_len, z_dim]) - temp_Z = np.random.uniform(0., 1, [T_mb[i], z_dim]) - temp[:T_mb[i],:] = temp_Z - Z_mb.append(temp_Z) + # All our sequences have the same length (seq_len), so we can generate + # the noise for the whole batch in one go. + Z_mb = np.random.uniform(0., 1, [batch_size, seq_len, z_dim]) return Z_mb - def batch_generator(data, time, batch_size): """Mini-batch generator.