├── .gitignore ├── LICENSE ├── README.md ├── calib_eq_odds.py ├── data ├── criminal_recidivism.csv ├── health.csv └── income.csv ├── eq_odds.py └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | 28 | # PyInstaller 29 | # Usually these files are written by a python script from a template 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 31 | *.manifest 32 | *.spec 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .coverage.* 43 | .cache 44 | nosetests.xml 45 | coverage.xml 46 | *.cover 47 | .hypothesis/ 48 | 49 | # Translations 50 | *.mo 51 | *.pot 52 | 53 | # Django stuff: 54 | *.log 55 | local_settings.py 56 | 57 | # Flask stuff: 58 | instance/ 59 | .webassets-cache 60 | 61 | # Scrapy stuff: 62 | .scrapy 63 | 64 | # Sphinx documentation 65 | docs/_build/ 66 | 67 | # PyBuilder 68 | target/ 69 | 70 | # Jupyter Notebook 71 | .ipynb_checkpoints 72 | 73 | # pyenv 74 | .python-version 75 | 76 | # celery beat schedule file 77 | celerybeat-schedule 78 | 79 | # SageMath parsed files 80 | *.sage.py 81 | 82 | # dotenv 83 | .env 84 | 85 | # virtualenv 86 | .venv 87 | venv/ 88 | ENV/ 89 | 90 | # Spyder project settings 91 | .spyderproject 92 | .spyproject 93 | 94 | # Rope project settings 95 | .ropeproject 96 | 97 | # mkdocs documentation 98 | /site 99 | 100 | # mypy 101 | .mypy_cache/ 102 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Geoff Pleiss 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Equalized Odds and Calibration 2 | 3 | We test two post-processing definitions of non-discrimination: 4 | - Equalized Odds - from ["Equality of Opportunity in Supervised Learning"](https://arxiv.org/abs/1610.02413) - [1] 5 | - A calibrated relaxation of Equalized Odds - from ["On Fairness and Calibration"](https://arxiv.org/abs/1610.02413) - [2] 6 | 7 | Given two demographic groups, equalized odds aims to ensure that no error rate disproportionately affects any group. 8 | In other words, both groups should have the same false-positive rate, and both groups should have the same false-negative rate. 9 | 10 | We would like to achieve this definition of non-discrimination while maintaining calibrated probability estimates. 11 | However, achieving both of these goals is impossible [3]. 12 | Therefore, we seek to maintain calibration while matching a single cost constraint. 13 | The equal cost constraint can be: 14 | - Equal false-negative rates between the two groups 15 | - Equal false-positive rates between the two groups 16 | - Equal weighted combination of the error rates between the two groups 17 | 18 | ## How to use 19 | The files `eq_odds.py` and `calib_eq_odds.py` contain post-processing methods for achieving these two notions of non-discrimination. 20 | Each file expects as input the predictions (and ground-truth labels) from an already-trained model. 21 | See the demos in each file for example usage. 22 | 23 | ## Metrics 24 | To measure false-negative or false-positive discrimination, it is enough to check the difference in error rates between groups. 25 | To measure calibration, we can compare the average model score with the population's base rate. 26 | A necessary (but not sufficient) condition for calibration is that the average model score should match the base rate. 27 | 28 | For example: 29 | 30 | ``` 31 | Calib. equalized odds group 0 model: 32 | Accuracy: 0.808 33 | F.P. cost: 0.427 34 | F.N. cost: 0.191 35 | Base rate: 0.701 36 | Avg. score: 0.695 37 | 38 | Calib. equalized odds group 1 model: 39 | Accuracy: 0.929 40 | F.P. cost: 0.432 41 | F.N. cost: 0.075 42 | Base rate: 0.888 43 | Avg. score: 0.870 44 | ``` 45 | 46 | These two models are (probably) calibrated, and have equal false-positive costs. 47 | However, they have different false-negative costs. 48 | 49 | ``` 50 | Equalized odds group 0 model: 51 | Accuracy: 0.825 52 | F.P. cost: 0.388 53 | F.N. cost: 0.180 54 | Base rate: 0.706 55 | Avg. score: 0.693 56 | 57 | Equalized odds group 1 model: 58 | Accuracy: 0.830 59 | F.P. cost: 0.432 60 | F.N. cost: 0.179 61 | Base rate: 0.895 62 | Avg. score: 0.781 63 | ``` 64 | 65 | These two models match both error rates. 66 | However, they are not calibrated. 67 | 68 | We can also visualize non-discrimination by plotting models on the false-positive/false-negative error plane: 69 | 70 | ![FP-FN Plane](https://user-images.githubusercontent.com/824157/32983255-8f799a38-cc46-11e7-86ed-f56e851dde88.png) 71 | 72 | Here, the red and blue lines represent the sets of possible calibrated classifiers for both groups. 73 | The black dots represent the original (discriminatory) classifiers for both groups. 74 | On the left, we apply Equalized Odds post processing (diamonds). 75 | This matches the error rates: however the classifiers no longer live on the calibrated classifier lines. 76 | On the right, we apply the calibrated relaxation (calibration and equal false negative rates). 77 | This matches the false-negative error rates, and the classifiers remain calibrated. 78 | However, they have different false-positive rates. 79 | 80 | ## Experiments in the paper 81 | 82 | ### Income prediction experiment 83 | 84 | We wish to ensure that income prediction doesn't discriminate across genders. 85 | In our relaxation, we aim to match the false-negative rate between the two groups. 86 | 87 | The model scores come from a MLP trained on the UCI heart dataset. 88 | 89 | ``` 90 | python eq_odds.py data/income.csv 91 | python calib_eq_odds.py data/income.csv fnr 92 | ``` 93 | 94 | ### Health prediction experiment 95 | 96 | We wish to ensure heart health predictions don't discriminate across age groups. 97 | In our relaxation, we aim to match a weighted error combination. 98 | 99 | The model scores come from a random forest trained on the UCI heart dataset. 100 | 101 | ``` 102 | python eq_odds.py data/health.csv 103 | python calib_eq_odds.py data/health.csv weighted 104 | ``` 105 | 106 | ### Criminal recidivism prediction experiment 107 | 108 | We wish to ensure that criminal recidivism predictions don't discriminate across race. 109 | In our relaxation, we aim to match the false-negative rates. 110 | 111 | The model scores are actual scores taken from the COMPAS risk assessment tool. 112 | 113 | ``` 114 | python eq_odds.py data/health.csv 115 | python calib_eq_odds.py data/health.csv weighted 116 | ``` 117 | 118 | ## References 119 | [1] Hardt, Moritz, Eric Price, and Nati Srebro. "Equality of opportunity in supervised learning." In NIPS (2016). 120 | 121 | [2] Pleiss, Geoff, Manish Raghavan, Felix Wu, Jon Kleinberg, and Kilian Q. Weinberger. "On Fairness and Calibration." In NIPS (2017). 122 | 123 | [3] Kleinberg, Jon, Sendhil Mullainathan, and Manish Raghavan. "Inherent trade-offs in the fair determination of risk scores." In ITCS (2017). 124 | -------------------------------------------------------------------------------- /calib_eq_odds.py: -------------------------------------------------------------------------------- 1 | import numpy as np 2 | from collections import namedtuple 3 | 4 | 5 | class Model(namedtuple('Model', 'pred label')): 6 | def logits(self): 7 | raw_logits = np.clip(np.log(self.pred / (1 - self.pred)), -100, 100) 8 | return raw_logits 9 | 10 | def num_samples(self): 11 | return len(self.pred) 12 | 13 | def base_rate(self): 14 | """ 15 | Percentage of samples belonging to the positive class 16 | """ 17 | return np.mean(self.label) 18 | 19 | def accuracy(self): 20 | return self.accuracies().mean() 21 | 22 | def precision(self): 23 | return (self.label[self.pred.round() == 1]).mean() 24 | 25 | def recall(self): 26 | return (self.label[self.label == 1].round()).mean() 27 | 28 | def tpr(self): 29 | """ 30 | True positive rate 31 | """ 32 | return np.mean(np.logical_and(self.pred.round() == 1, self.label == 1)) 33 | 34 | def fpr(self): 35 | """ 36 | False positive rate 37 | """ 38 | return np.mean(np.logical_and(self.pred.round() == 1, self.label == 0)) 39 | 40 | def tnr(self): 41 | """ 42 | True negative rate 43 | """ 44 | return np.mean(np.logical_and(self.pred.round() == 0, self.label == 0)) 45 | 46 | def fnr(self): 47 | """ 48 | False negative rate 49 | """ 50 | return np.mean(np.logical_and(self.pred.round() == 0, self.label == 1)) 51 | 52 | def fn_cost(self): 53 | """ 54 | Generalized false negative cost 55 | """ 56 | return 1 - self.pred[self.label == 1].mean() 57 | 58 | def fp_cost(self): 59 | """ 60 | Generalized false positive cost 61 | """ 62 | return self.pred[self.label == 0].mean() 63 | 64 | def accuracies(self): 65 | return self.pred.round() == self.label 66 | 67 | def calib_eq_odds(self, other, fp_rate, fn_rate, mix_rates=None): 68 | if fn_rate == 0: 69 | self_cost = self.fp_cost() 70 | other_cost = other.fp_cost() 71 | print(self_cost, other_cost) 72 | self_trivial_cost = self.trivial().fp_cost() 73 | other_trivial_cost = other.trivial().fp_cost() 74 | elif fp_rate == 0: 75 | self_cost = self.fn_cost() 76 | other_cost = other.fn_cost() 77 | self_trivial_cost = self.trivial().fn_cost() 78 | other_trivial_cost = other.trivial().fn_cost() 79 | else: 80 | self_cost = self.weighted_cost(fp_rate, fn_rate) 81 | other_cost = other.weighted_cost(fp_rate, fn_rate) 82 | self_trivial_cost = self.trivial().weighted_cost(fp_rate, fn_rate) 83 | other_trivial_cost = other.trivial().weighted_cost(fp_rate, fn_rate) 84 | 85 | other_costs_more = other_cost > self_cost 86 | self_mix_rate = (other_cost - self_cost) / (self_trivial_cost - self_cost) if other_costs_more else 0 87 | other_mix_rate = 0 if other_costs_more else (self_cost - other_cost) / (other_trivial_cost - other_cost) 88 | 89 | # New classifiers 90 | self_indices = np.random.permutation(len(self.pred))[:int(self_mix_rate * len(self.pred))] 91 | self_new_pred = self.pred.copy() 92 | self_new_pred[self_indices] = self.base_rate() 93 | calib_eq_odds_self = Model(self_new_pred, self.label) 94 | 95 | other_indices = np.random.permutation(len(other.pred))[:int(other_mix_rate * len(other.pred))] 96 | other_new_pred = other.pred.copy() 97 | other_new_pred[other_indices] = other.base_rate() 98 | calib_eq_odds_other = Model(other_new_pred, other.label) 99 | 100 | if mix_rates is None: 101 | return calib_eq_odds_self, calib_eq_odds_other, (self_mix_rate, other_mix_rate) 102 | else: 103 | return calib_eq_odds_self, calib_eq_odds_other 104 | 105 | def trivial(self): 106 | """ 107 | Given a classifier, produces the trivial classifier 108 | (i.e. a model that just returns the base rate for every prediction) 109 | """ 110 | base_rate = self.base_rate() 111 | pred = np.ones(len(self.pred)) * base_rate 112 | return Model(pred, self.label) 113 | 114 | def weighted_cost(self, fp_rate, fn_rate): 115 | """ 116 | Returns the weighted cost 117 | If fp_rate = 1 and fn_rate = 0, returns self.fp_cost 118 | If fp_rate = 0 and fn_rate = 1, returns self.fn_cost 119 | If fp_rate and fn_rate are nonzero, returns fp_rate * self.fp_cost * (1 - self.base_rate) + 120 | fn_rate * self.fn_cost * self.base_rate 121 | """ 122 | norm_const = float(fp_rate + fn_rate) if (fp_rate != 0 and fn_rate != 0) else 1 123 | res = fp_rate / norm_const * self.fp_cost() * (1 - self.base_rate()) + \ 124 | fn_rate / norm_const * self.fn_cost() * self.base_rate() 125 | return res 126 | 127 | def __repr__(self): 128 | return '\n'.join([ 129 | 'Accuracy:\t%.3f' % self.accuracy(), 130 | 'F.P. cost:\t%.3f' % self.fp_cost(), 131 | 'F.N. cost:\t%.3f' % self.fn_cost(), 132 | 'Base rate:\t%.3f' % self.base_rate(), 133 | 'Avg. score:\t%.3f' % self.pred.mean(), 134 | ]) 135 | 136 | 137 | """ 138 | Demo 139 | """ 140 | if __name__ == '__main__': 141 | """ 142 | To run the demo: 143 | 144 | ``` 145 | python calib_eq_odds.py 146 | ``` 147 | 148 | `` defines the cost constraint to match for the groups. It can be: 149 | - `fnr` - match false negatives across groups 150 | - `fpr` - match false positives across groups 151 | - `weighted` - match a weighted combination of false positives and false negatives 152 | 153 | `` should contain the following columns for the VALIDATION set: 154 | 155 | - `prediction` (a score between 0 and 1) 156 | - `label` (ground truth - either 0 or 1) 157 | - `group` (group assignment - either 0 or 1) 158 | 159 | Try the following experiments, which were performed in the paper: 160 | ``` 161 | python calib_eq_odds.py data/income.csv fnr 162 | python calib_eq_odds.py data/health.csv weighted 163 | python calib_eq_odds.py data/criminal_recidivism.csv fpr 164 | ``` 165 | """ 166 | import pandas as pd 167 | import sys 168 | 169 | if not len(sys.argv) == 3: 170 | raise RuntimeError('Invalid number of arguments') 171 | 172 | # Cost constraint 173 | cost_constraint = sys.argv[2] 174 | if cost_constraint not in ['fnr', 'fpr', 'weighted']: 175 | raise RuntimeError('cost_constraint (arg #2) should be one of fnr, fpr, weighted') 176 | 177 | if cost_constraint == 'fnr': 178 | fn_rate = 1 179 | fp_rate = 0 180 | elif cost_constraint == 'fpr': 181 | fn_rate = 0 182 | fp_rate = 1 183 | elif cost_constraint == 'weighted': 184 | fn_rate = 1 185 | fp_rate = 1 186 | 187 | # Load the validation set scores from csvs 188 | data_filename = sys.argv[1] 189 | test_and_val_data = pd.read_csv(sys.argv[1]) 190 | 191 | # Randomly split the data into two sets - one for computing the fairness constants 192 | order = np.random.permutation(len(test_and_val_data)) 193 | val_indices = order[0::2] 194 | test_indices = order[1::2] 195 | val_data = test_and_val_data.iloc[val_indices] 196 | test_data = test_and_val_data.iloc[test_indices] 197 | 198 | # Create model objects - one for each group, validation and test 199 | group_0_val_data = val_data[val_data['group'] == 0] 200 | group_1_val_data = val_data[val_data['group'] == 1] 201 | group_0_test_data = test_data[test_data['group'] == 0] 202 | group_1_test_data = test_data[test_data['group'] == 1] 203 | 204 | group_0_val_model = Model(group_0_val_data['prediction'].as_matrix(), group_0_val_data['label'].as_matrix()) 205 | group_1_val_model = Model(group_1_val_data['prediction'].as_matrix(), group_1_val_data['label'].as_matrix()) 206 | group_0_test_model = Model(group_0_test_data['prediction'].as_matrix(), group_0_test_data['label'].as_matrix()) 207 | group_1_test_model = Model(group_1_test_data['prediction'].as_matrix(), group_1_test_data['label'].as_matrix()) 208 | 209 | # Find mixing rates for equalized odds models 210 | _, _, mix_rates = Model.calib_eq_odds(group_0_val_model, group_1_val_model, fp_rate, fn_rate) 211 | 212 | # Apply the mixing rates to the test models 213 | calib_eq_odds_group_0_test_model, calib_eq_odds_group_1_test_model = Model.calib_eq_odds(group_0_test_model, 214 | group_1_test_model, 215 | fp_rate, fn_rate, 216 | mix_rates) 217 | 218 | # Print results on test model 219 | print('Original group 0 model:\n%s\n' % repr(group_0_test_model)) 220 | print('Original group 1 model:\n%s\n' % repr(group_1_test_model)) 221 | print('Equalized odds group 0 model:\n%s\n' % repr(calib_eq_odds_group_0_test_model)) 222 | print('Equalized odds group 1 model:\n%s\n' % repr(calib_eq_odds_group_1_test_model)) 223 | -------------------------------------------------------------------------------- /data/criminal_recidivism.csv: -------------------------------------------------------------------------------- 1 | ,label,group,prediction 2 | 0,1.0,1.0,0.384491114701 3 | 1,1.0,1.0,0.432835820896 4 | 2,0.0,1.0,0.69133192389 5 | 3,1.0,0.0,0.56401384083 6 | 4,0.0,0.0,0.21594068582 7 | 5,1.0,0.0,0.384491114701 8 | 6,0.0,0.0,0.432835820896 9 | 7,1.0,1.0,0.56401384083 10 | 8,0.0,0.0,0.21594068582 11 | 9,0.0,1.0,0.432835820896 12 | 10,1.0,0.0,0.21594068582 13 | 11,1.0,1.0,0.384491114701 14 | 12,0.0,1.0,0.777142857143 15 | 13,1.0,0.0,0.473597359736 16 | 14,1.0,0.0,0.384491114701 17 | 15,1.0,1.0,0.56401384083 18 | 16,1.0,1.0,0.705020920502 19 | 17,1.0,0.0,0.307692307692 20 | 18,0.0,0.0,0.432835820896 21 | 19,0.0,0.0,0.21594068582 22 | 20,1.0,1.0,0.384491114701 23 | 21,0.0,0.0,0.384491114701 24 | 22,1.0,1.0,0.598526703499 25 | 23,1.0,1.0,0.777142857143 26 | 24,1.0,0.0,0.705020920502 27 | 25,1.0,1.0,0.69133192389 28 | 26,0.0,0.0,0.21594068582 29 | 27,0.0,0.0,0.69133192389 30 | 28,1.0,0.0,0.473597359736 31 | 29,1.0,0.0,0.307692307692 32 | 30,1.0,1.0,0.705020920502 33 | 31,0.0,0.0,0.307692307692 34 | 32,0.0,1.0,0.69133192389 35 | 33,0.0,1.0,0.21594068582 36 | 34,1.0,0.0,0.307692307692 37 | 35,0.0,1.0,0.307692307692 38 | 36,1.0,1.0,0.598526703499 39 | 37,1.0,0.0,0.777142857143 40 | 38,1.0,1.0,0.69133192389 41 | 39,0.0,0.0,0.21594068582 42 | 40,1.0,1.0,0.384491114701 43 | 41,0.0,1.0,0.432835820896 44 | 42,1.0,0.0,0.307692307692 45 | 43,1.0,0.0,0.56401384083 46 | 44,0.0,1.0,0.473597359736 47 | 45,1.0,1.0,0.432835820896 48 | 46,0.0,1.0,0.21594068582 49 | 47,0.0,0.0,0.473597359736 50 | 48,0.0,1.0,0.384491114701 51 | 49,1.0,1.0,0.598526703499 52 | 50,1.0,1.0,0.777142857143 53 | 51,1.0,0.0,0.307692307692 54 | 52,1.0,1.0,0.432835820896 55 | 53,1.0,1.0,0.777142857143 56 | 54,1.0,1.0,0.705020920502 57 | 55,1.0,1.0,0.56401384083 58 | 56,0.0,1.0,0.21594068582 59 | 57,0.0,1.0,0.432835820896 60 | 58,1.0,1.0,0.56401384083 61 | 59,1.0,0.0,0.56401384083 62 | 60,0.0,1.0,0.307692307692 63 | 61,1.0,1.0,0.384491114701 64 | 62,0.0,0.0,0.69133192389 65 | 63,1.0,1.0,0.432835820896 66 | 64,1.0,0.0,0.598526703499 67 | 65,0.0,1.0,0.307692307692 68 | 66,0.0,1.0,0.307692307692 69 | 67,1.0,1.0,0.777142857143 70 | 68,1.0,1.0,0.777142857143 71 | 69,1.0,1.0,0.705020920502 72 | 70,1.0,1.0,0.598526703499 73 | 71,0.0,1.0,0.307692307692 74 | 72,1.0,1.0,0.598526703499 75 | 73,1.0,0.0,0.69133192389 76 | 74,1.0,0.0,0.69133192389 77 | 75,0.0,1.0,0.598526703499 78 | 76,0.0,0.0,0.598526703499 79 | 77,1.0,0.0,0.21594068582 80 | 78,0.0,0.0,0.21594068582 81 | 79,0.0,0.0,0.21594068582 82 | 80,1.0,1.0,0.432835820896 83 | 81,0.0,1.0,0.307692307692 84 | 82,0.0,1.0,0.307692307692 85 | 83,1.0,0.0,0.21594068582 86 | 84,1.0,0.0,0.56401384083 87 | 85,0.0,0.0,0.432835820896 88 | 86,0.0,0.0,0.473597359736 89 | 87,0.0,0.0,0.432835820896 90 | 88,1.0,1.0,0.705020920502 91 | 89,0.0,0.0,0.21594068582 92 | 90,1.0,1.0,0.705020920502 93 | 91,1.0,0.0,0.432835820896 94 | 92,0.0,0.0,0.473597359736 95 | 93,1.0,1.0,0.473597359736 96 | 94,0.0,1.0,0.307692307692 97 | 95,1.0,0.0,0.307692307692 98 | 96,1.0,1.0,0.705020920502 99 | 97,1.0,1.0,0.432835820896 100 | 98,1.0,1.0,0.69133192389 101 | 99,0.0,1.0,0.598526703499 102 | 100,1.0,0.0,0.777142857143 103 | 101,1.0,1.0,0.705020920502 104 | 102,0.0,1.0,0.705020920502 105 | 103,0.0,0.0,0.705020920502 106 | 104,1.0,1.0,0.777142857143 107 | 105,0.0,0.0,0.21594068582 108 | 106,1.0,0.0,0.56401384083 109 | 107,0.0,0.0,0.384491114701 110 | 108,0.0,0.0,0.432835820896 111 | 109,0.0,0.0,0.307692307692 112 | 110,0.0,0.0,0.21594068582 113 | 111,1.0,0.0,0.307692307692 114 | 112,0.0,1.0,0.307692307692 115 | 113,1.0,0.0,0.432835820896 116 | 114,1.0,0.0,0.307692307692 117 | 115,1.0,1.0,0.598526703499 118 | 116,1.0,0.0,0.384491114701 119 | 117,0.0,1.0,0.307692307692 120 | 118,1.0,0.0,0.307692307692 121 | 119,0.0,0.0,0.432835820896 122 | 120,0.0,1.0,0.777142857143 123 | 121,0.0,0.0,0.21594068582 124 | 122,1.0,1.0,0.69133192389 125 | 123,1.0,1.0,0.56401384083 126 | 124,1.0,1.0,0.473597359736 127 | 125,1.0,1.0,0.384491114701 128 | 126,1.0,1.0,0.705020920502 129 | 127,1.0,1.0,0.705020920502 130 | 128,0.0,1.0,0.56401384083 131 | 129,0.0,0.0,0.56401384083 132 | 130,1.0,1.0,0.21594068582 133 | 131,1.0,1.0,0.777142857143 134 | 132,1.0,1.0,0.432835820896 135 | 133,0.0,1.0,0.21594068582 136 | 134,0.0,0.0,0.432835820896 137 | 135,1.0,0.0,0.598526703499 138 | 136,0.0,1.0,0.598526703499 139 | 137,0.0,0.0,0.307692307692 140 | 138,0.0,1.0,0.307692307692 141 | 139,1.0,0.0,0.21594068582 142 | 140,0.0,0.0,0.56401384083 143 | 141,0.0,0.0,0.473597359736 144 | 142,1.0,1.0,0.307692307692 145 | 143,0.0,1.0,0.598526703499 146 | 144,0.0,1.0,0.432835820896 147 | 145,0.0,0.0,0.777142857143 148 | 146,0.0,0.0,0.21594068582 149 | 147,1.0,1.0,0.56401384083 150 | 148,1.0,0.0,0.21594068582 151 | 149,0.0,0.0,0.21594068582 152 | 150,1.0,1.0,0.69133192389 153 | 151,1.0,1.0,0.473597359736 154 | 152,1.0,1.0,0.69133192389 155 | 153,1.0,1.0,0.307692307692 156 | 154,1.0,0.0,0.473597359736 157 | 155,0.0,1.0,0.21594068582 158 | 156,1.0,0.0,0.432835820896 159 | 157,1.0,1.0,0.777142857143 160 | 158,1.0,1.0,0.705020920502 161 | 159,1.0,0.0,0.432835820896 162 | 160,1.0,1.0,0.705020920502 163 | 161,0.0,0.0,0.384491114701 164 | 162,1.0,1.0,0.384491114701 165 | 163,0.0,1.0,0.307692307692 166 | 164,0.0,1.0,0.432835820896 167 | 165,0.0,0.0,0.21594068582 168 | 166,0.0,0.0,0.384491114701 169 | 167,0.0,0.0,0.432835820896 170 | 168,1.0,1.0,0.705020920502 171 | 169,1.0,1.0,0.777142857143 172 | 170,0.0,1.0,0.307692307692 173 | 171,0.0,1.0,0.69133192389 174 | 172,1.0,0.0,0.473597359736 175 | 173,1.0,0.0,0.705020920502 176 | 174,0.0,1.0,0.21594068582 177 | 175,0.0,0.0,0.432835820896 178 | 176,0.0,1.0,0.705020920502 179 | 177,1.0,0.0,0.21594068582 180 | 178,0.0,1.0,0.705020920502 181 | 179,0.0,1.0,0.473597359736 182 | 180,0.0,1.0,0.56401384083 183 | 181,0.0,0.0,0.21594068582 184 | 182,1.0,0.0,0.21594068582 185 | 183,0.0,0.0,0.307692307692 186 | 184,0.0,1.0,0.21594068582 187 | 185,1.0,0.0,0.384491114701 188 | 186,0.0,1.0,0.598526703499 189 | 187,0.0,1.0,0.56401384083 190 | 188,1.0,1.0,0.777142857143 191 | 189,0.0,1.0,0.21594068582 192 | 190,0.0,1.0,0.705020920502 193 | 191,0.0,1.0,0.705020920502 194 | 192,1.0,1.0,0.432835820896 195 | 193,0.0,1.0,0.21594068582 196 | 194,0.0,0.0,0.21594068582 197 | 195,1.0,0.0,0.432835820896 198 | 196,0.0,1.0,0.432835820896 199 | 197,0.0,0.0,0.21594068582 200 | 198,1.0,1.0,0.705020920502 201 | 199,0.0,0.0,0.473597359736 202 | 200,0.0,1.0,0.432835820896 203 | 201,0.0,1.0,0.307692307692 204 | 202,1.0,0.0,0.69133192389 205 | 203,1.0,0.0,0.307692307692 206 | 204,0.0,1.0,0.705020920502 207 | 205,0.0,1.0,0.69133192389 208 | 206,0.0,0.0,0.21594068582 209 | 207,1.0,1.0,0.69133192389 210 | 208,1.0,0.0,0.473597359736 211 | 209,0.0,1.0,0.384491114701 212 | 210,1.0,0.0,0.69133192389 213 | 211,1.0,0.0,0.598526703499 214 | 212,0.0,0.0,0.307692307692 215 | 213,1.0,1.0,0.705020920502 216 | 214,1.0,0.0,0.598526703499 217 | 215,1.0,1.0,0.307692307692 218 | 216,1.0,0.0,0.473597359736 219 | 217,0.0,1.0,0.384491114701 220 | 218,1.0,1.0,0.69133192389 221 | 219,1.0,1.0,0.56401384083 222 | 220,0.0,1.0,0.432835820896 223 | 221,0.0,0.0,0.432835820896 224 | 222,0.0,1.0,0.21594068582 225 | 223,0.0,1.0,0.69133192389 226 | 224,0.0,1.0,0.21594068582 227 | 225,1.0,1.0,0.432835820896 228 | 226,0.0,1.0,0.307692307692 229 | 227,1.0,1.0,0.56401384083 230 | 228,0.0,0.0,0.473597359736 231 | 229,1.0,0.0,0.56401384083 232 | 230,1.0,1.0,0.598526703499 233 | 231,1.0,1.0,0.777142857143 234 | 232,0.0,0.0,0.384491114701 235 | 233,0.0,1.0,0.777142857143 236 | 234,0.0,0.0,0.432835820896 237 | 235,0.0,1.0,0.384491114701 238 | 236,0.0,1.0,0.598526703499 239 | 237,1.0,1.0,0.56401384083 240 | 238,0.0,1.0,0.21594068582 241 | 239,0.0,0.0,0.21594068582 242 | 240,1.0,1.0,0.432835820896 243 | 241,0.0,0.0,0.21594068582 244 | 242,1.0,0.0,0.307692307692 245 | 243,0.0,0.0,0.432835820896 246 | 244,1.0,1.0,0.705020920502 247 | 245,1.0,1.0,0.69133192389 248 | 246,0.0,0.0,0.432835820896 249 | 247,1.0,1.0,0.473597359736 250 | 248,0.0,1.0,0.432835820896 251 | 249,1.0,0.0,0.473597359736 252 | 250,1.0,1.0,0.432835820896 253 | 251,0.0,1.0,0.21594068582 254 | 252,1.0,1.0,0.384491114701 255 | 253,1.0,0.0,0.384491114701 256 | 254,0.0,0.0,0.384491114701 257 | 255,0.0,1.0,0.56401384083 258 | 256,0.0,1.0,0.473597359736 259 | 257,1.0,1.0,0.69133192389 260 | 258,0.0,0.0,0.21594068582 261 | 259,1.0,1.0,0.69133192389 262 | 260,0.0,0.0,0.384491114701 263 | 261,0.0,1.0,0.21594068582 264 | 262,0.0,1.0,0.21594068582 265 | 263,1.0,0.0,0.21594068582 266 | 264,1.0,0.0,0.384491114701 267 | 265,0.0,0.0,0.307692307692 268 | 266,0.0,1.0,0.307692307692 269 | 267,1.0,1.0,0.777142857143 270 | 268,0.0,0.0,0.21594068582 271 | 269,0.0,0.0,0.21594068582 272 | 270,0.0,1.0,0.705020920502 273 | 271,1.0,1.0,0.705020920502 274 | 272,0.0,0.0,0.21594068582 275 | 273,0.0,0.0,0.473597359736 276 | 274,1.0,1.0,0.705020920502 277 | 275,1.0,0.0,0.56401384083 278 | 276,1.0,0.0,0.384491114701 279 | 277,0.0,1.0,0.21594068582 280 | 278,0.0,1.0,0.598526703499 281 | 279,1.0,0.0,0.432835820896 282 | 280,0.0,0.0,0.473597359736 283 | 281,1.0,1.0,0.69133192389 284 | 282,0.0,0.0,0.384491114701 285 | 283,0.0,1.0,0.384491114701 286 | 284,1.0,1.0,0.56401384083 287 | 285,0.0,1.0,0.21594068582 288 | 286,0.0,0.0,0.56401384083 289 | 287,0.0,1.0,0.56401384083 290 | 288,1.0,1.0,0.705020920502 291 | 289,0.0,1.0,0.56401384083 292 | 290,0.0,1.0,0.384491114701 293 | 291,0.0,0.0,0.21594068582 294 | 292,1.0,1.0,0.777142857143 295 | 293,0.0,0.0,0.56401384083 296 | 294,0.0,0.0,0.21594068582 297 | 295,0.0,0.0,0.56401384083 298 | 296,1.0,1.0,0.777142857143 299 | 297,0.0,0.0,0.432835820896 300 | 298,1.0,1.0,0.473597359736 301 | 299,0.0,1.0,0.473597359736 302 | 300,0.0,1.0,0.432835820896 303 | 301,0.0,0.0,0.21594068582 304 | 302,0.0,1.0,0.777142857143 305 | 303,1.0,1.0,0.777142857143 306 | 304,0.0,0.0,0.432835820896 307 | 305,0.0,1.0,0.384491114701 308 | 306,1.0,0.0,0.56401384083 309 | 307,0.0,1.0,0.69133192389 310 | 308,1.0,1.0,0.705020920502 311 | 309,1.0,1.0,0.473597359736 312 | 310,0.0,0.0,0.21594068582 313 | 311,1.0,0.0,0.21594068582 314 | 312,1.0,0.0,0.598526703499 315 | 313,1.0,1.0,0.69133192389 316 | 314,0.0,0.0,0.21594068582 317 | 315,0.0,1.0,0.432835820896 318 | 316,0.0,1.0,0.21594068582 319 | 317,0.0,1.0,0.384491114701 320 | 318,0.0,0.0,0.432835820896 321 | 319,1.0,1.0,0.69133192389 322 | 320,1.0,1.0,0.705020920502 323 | 321,0.0,0.0,0.598526703499 324 | 322,1.0,1.0,0.705020920502 325 | 323,0.0,1.0,0.473597359736 326 | 324,0.0,1.0,0.21594068582 327 | 325,0.0,1.0,0.21594068582 328 | 326,0.0,1.0,0.432835820896 329 | 327,1.0,0.0,0.69133192389 330 | 328,0.0,0.0,0.21594068582 331 | 329,1.0,1.0,0.69133192389 332 | 330,0.0,1.0,0.705020920502 333 | 331,0.0,0.0,0.384491114701 334 | 332,1.0,0.0,0.777142857143 335 | 333,1.0,1.0,0.598526703499 336 | 334,0.0,1.0,0.473597359736 337 | 335,1.0,1.0,0.705020920502 338 | 336,0.0,1.0,0.598526703499 339 | 337,0.0,0.0,0.307692307692 340 | 338,0.0,0.0,0.21594068582 341 | 339,0.0,1.0,0.384491114701 342 | 340,1.0,1.0,0.69133192389 343 | 341,1.0,0.0,0.21594068582 344 | 342,0.0,1.0,0.307692307692 345 | 343,0.0,0.0,0.56401384083 346 | 344,0.0,0.0,0.21594068582 347 | 345,0.0,1.0,0.598526703499 348 | 346,1.0,1.0,0.307692307692 349 | 347,0.0,1.0,0.56401384083 350 | 348,1.0,0.0,0.307692307692 351 | 349,0.0,0.0,0.384491114701 352 | 350,0.0,0.0,0.21594068582 353 | 351,1.0,1.0,0.384491114701 354 | 352,1.0,0.0,0.473597359736 355 | 353,1.0,1.0,0.56401384083 356 | 354,1.0,1.0,0.598526703499 357 | 355,1.0,0.0,0.56401384083 358 | 356,0.0,1.0,0.777142857143 359 | 357,1.0,1.0,0.598526703499 360 | 358,0.0,1.0,0.598526703499 361 | 359,0.0,0.0,0.432835820896 362 | 360,1.0,1.0,0.473597359736 363 | 361,0.0,0.0,0.21594068582 364 | 362,0.0,1.0,0.432835820896 365 | 363,1.0,0.0,0.69133192389 366 | 364,0.0,0.0,0.21594068582 367 | 365,0.0,1.0,0.56401384083 368 | 366,1.0,1.0,0.777142857143 369 | 367,1.0,0.0,0.777142857143 370 | 368,0.0,0.0,0.21594068582 371 | 369,0.0,0.0,0.473597359736 372 | 370,0.0,0.0,0.21594068582 373 | 371,1.0,1.0,0.777142857143 374 | 372,1.0,1.0,0.307692307692 375 | 373,0.0,0.0,0.21594068582 376 | 374,0.0,1.0,0.307692307692 377 | 375,0.0,1.0,0.21594068582 378 | 376,0.0,1.0,0.384491114701 379 | 377,0.0,0.0,0.21594068582 380 | 378,0.0,1.0,0.307692307692 381 | 379,1.0,1.0,0.777142857143 382 | 380,1.0,0.0,0.21594068582 383 | 381,1.0,1.0,0.69133192389 384 | 382,0.0,1.0,0.69133192389 385 | 383,1.0,1.0,0.56401384083 386 | 384,1.0,1.0,0.473597359736 387 | 385,1.0,0.0,0.473597359736 388 | 386,1.0,0.0,0.432835820896 389 | 387,1.0,1.0,0.384491114701 390 | 388,1.0,1.0,0.705020920502 391 | 389,0.0,1.0,0.777142857143 392 | 390,0.0,0.0,0.21594068582 393 | 391,0.0,1.0,0.21594068582 394 | 392,0.0,1.0,0.56401384083 395 | 393,1.0,1.0,0.705020920502 396 | 394,1.0,1.0,0.598526703499 397 | 395,1.0,1.0,0.705020920502 398 | 396,0.0,1.0,0.21594068582 399 | 397,1.0,1.0,0.56401384083 400 | 398,1.0,0.0,0.473597359736 401 | 399,0.0,1.0,0.307692307692 402 | 400,1.0,1.0,0.777142857143 403 | 401,0.0,0.0,0.21594068582 404 | 402,0.0,0.0,0.307692307692 405 | 403,0.0,0.0,0.21594068582 406 | 404,1.0,0.0,0.56401384083 407 | 405,0.0,0.0,0.21594068582 408 | 406,1.0,0.0,0.21594068582 409 | 407,1.0,0.0,0.705020920502 410 | 408,1.0,0.0,0.705020920502 411 | 409,0.0,1.0,0.705020920502 412 | 410,0.0,1.0,0.307692307692 413 | 411,0.0,0.0,0.307692307692 414 | 412,1.0,0.0,0.705020920502 415 | 413,1.0,0.0,0.432835820896 416 | 414,0.0,1.0,0.21594068582 417 | 415,1.0,1.0,0.432835820896 418 | 416,0.0,0.0,0.21594068582 419 | 417,0.0,1.0,0.473597359736 420 | 418,1.0,1.0,0.598526703499 421 | 419,1.0,0.0,0.384491114701 422 | 420,1.0,1.0,0.56401384083 423 | 421,0.0,0.0,0.473597359736 424 | 422,0.0,0.0,0.21594068582 425 | 423,0.0,0.0,0.307692307692 426 | 424,0.0,1.0,0.598526703499 427 | 425,0.0,0.0,0.384491114701 428 | 426,0.0,1.0,0.307692307692 429 | 427,0.0,1.0,0.307692307692 430 | 428,0.0,0.0,0.21594068582 431 | 429,0.0,1.0,0.384491114701 432 | 430,0.0,1.0,0.432835820896 433 | 431,1.0,1.0,0.598526703499 434 | 432,1.0,1.0,0.473597359736 435 | 433,0.0,0.0,0.307692307692 436 | 434,1.0,0.0,0.598526703499 437 | 435,1.0,1.0,0.69133192389 438 | 436,0.0,1.0,0.473597359736 439 | 437,1.0,1.0,0.432835820896 440 | 438,1.0,0.0,0.432835820896 441 | 439,0.0,0.0,0.307692307692 442 | 440,0.0,0.0,0.705020920502 443 | 441,0.0,0.0,0.432835820896 444 | 442,1.0,1.0,0.384491114701 445 | 443,0.0,1.0,0.307692307692 446 | 444,1.0,1.0,0.432835820896 447 | 445,1.0,0.0,0.21594068582 448 | 446,1.0,0.0,0.384491114701 449 | 447,0.0,0.0,0.384491114701 450 | 448,0.0,1.0,0.598526703499 451 | 449,1.0,1.0,0.598526703499 452 | 450,1.0,0.0,0.777142857143 453 | 451,1.0,0.0,0.777142857143 454 | 452,0.0,0.0,0.21594068582 455 | 453,1.0,1.0,0.705020920502 456 | 454,1.0,0.0,0.56401384083 457 | 455,0.0,1.0,0.384491114701 458 | 456,0.0,1.0,0.473597359736 459 | 457,0.0,0.0,0.307692307692 460 | 458,0.0,1.0,0.473597359736 461 | 459,0.0,1.0,0.56401384083 462 | 460,0.0,1.0,0.56401384083 463 | 461,1.0,1.0,0.384491114701 464 | 462,1.0,1.0,0.473597359736 465 | 463,0.0,0.0,0.21594068582 466 | 464,1.0,1.0,0.598526703499 467 | 465,0.0,1.0,0.384491114701 468 | 466,0.0,1.0,0.21594068582 469 | 467,0.0,0.0,0.56401384083 470 | 468,1.0,1.0,0.69133192389 471 | 469,0.0,1.0,0.384491114701 472 | 470,0.0,1.0,0.473597359736 473 | 471,1.0,0.0,0.432835820896 474 | 472,0.0,0.0,0.432835820896 475 | 473,1.0,1.0,0.432835820896 476 | 474,0.0,0.0,0.384491114701 477 | 475,1.0,1.0,0.307692307692 478 | 476,0.0,0.0,0.21594068582 479 | 477,0.0,1.0,0.598526703499 480 | 478,0.0,1.0,0.384491114701 481 | 479,0.0,0.0,0.432835820896 482 | 480,1.0,0.0,0.21594068582 483 | 481,1.0,0.0,0.21594068582 484 | 482,1.0,0.0,0.56401384083 485 | 483,1.0,0.0,0.21594068582 486 | 484,0.0,0.0,0.21594068582 487 | 485,1.0,1.0,0.56401384083 488 | 486,0.0,0.0,0.384491114701 489 | 487,0.0,0.0,0.432835820896 490 | 488,1.0,1.0,0.777142857143 491 | 489,1.0,1.0,0.598526703499 492 | 490,0.0,1.0,0.69133192389 493 | 491,0.0,1.0,0.384491114701 494 | 492,0.0,0.0,0.598526703499 495 | 493,0.0,1.0,0.307692307692 496 | 494,0.0,0.0,0.473597359736 497 | 495,0.0,1.0,0.384491114701 498 | 496,1.0,1.0,0.69133192389 499 | 497,1.0,1.0,0.598526703499 500 | 498,1.0,1.0,0.473597359736 501 | 499,0.0,1.0,0.307692307692 502 | 500,1.0,1.0,0.777142857143 503 | 501,0.0,1.0,0.21594068582 504 | 502,0.0,1.0,0.598526703499 505 | 503,1.0,0.0,0.56401384083 506 | 504,0.0,1.0,0.21594068582 507 | 505,0.0,0.0,0.21594068582 508 | 506,0.0,0.0,0.21594068582 509 | 507,1.0,1.0,0.598526703499 510 | 508,0.0,0.0,0.21594068582 511 | 509,1.0,1.0,0.69133192389 512 | 510,1.0,1.0,0.473597359736 513 | 511,0.0,0.0,0.21594068582 514 | 512,1.0,0.0,0.307692307692 515 | 513,0.0,1.0,0.384491114701 516 | 514,0.0,1.0,0.69133192389 517 | 515,1.0,1.0,0.384491114701 518 | 516,0.0,0.0,0.777142857143 519 | 517,0.0,1.0,0.473597359736 520 | 518,1.0,0.0,0.777142857143 521 | 519,0.0,1.0,0.21594068582 522 | 520,0.0,1.0,0.21594068582 523 | 521,1.0,1.0,0.56401384083 524 | 522,1.0,1.0,0.777142857143 525 | 523,1.0,1.0,0.705020920502 526 | 524,1.0,0.0,0.598526703499 527 | 525,0.0,0.0,0.705020920502 528 | 526,0.0,0.0,0.473597359736 529 | 527,1.0,0.0,0.473597359736 530 | 528,0.0,1.0,0.21594068582 531 | 529,1.0,1.0,0.705020920502 532 | 530,1.0,0.0,0.384491114701 533 | 531,1.0,1.0,0.307692307692 534 | 532,1.0,0.0,0.432835820896 535 | 533,0.0,1.0,0.384491114701 536 | 534,0.0,1.0,0.69133192389 537 | 535,0.0,1.0,0.307692307692 538 | 536,1.0,0.0,0.777142857143 539 | 537,1.0,0.0,0.432835820896 540 | 538,1.0,0.0,0.432835820896 541 | 539,1.0,1.0,0.69133192389 542 | 540,0.0,1.0,0.56401384083 543 | 541,0.0,0.0,0.56401384083 544 | 542,0.0,1.0,0.598526703499 545 | 543,1.0,0.0,0.307692307692 546 | 544,1.0,1.0,0.69133192389 547 | 545,1.0,1.0,0.432835820896 548 | 546,1.0,1.0,0.307692307692 549 | 547,1.0,1.0,0.598526703499 550 | 548,1.0,0.0,0.21594068582 551 | 549,1.0,1.0,0.777142857143 552 | 550,0.0,1.0,0.705020920502 553 | 551,0.0,1.0,0.598526703499 554 | 552,1.0,1.0,0.705020920502 555 | 553,1.0,1.0,0.307692307692 556 | 554,0.0,1.0,0.432835820896 557 | 555,0.0,1.0,0.384491114701 558 | 556,0.0,0.0,0.21594068582 559 | 557,0.0,1.0,0.473597359736 560 | 558,0.0,1.0,0.432835820896 561 | 559,0.0,0.0,0.473597359736 562 | 560,0.0,1.0,0.598526703499 563 | 561,0.0,1.0,0.21594068582 564 | 562,0.0,0.0,0.384491114701 565 | 563,0.0,1.0,0.307692307692 566 | 564,1.0,1.0,0.598526703499 567 | 565,1.0,1.0,0.705020920502 568 | 566,0.0,1.0,0.705020920502 569 | 567,0.0,0.0,0.307692307692 570 | 568,1.0,0.0,0.705020920502 571 | 569,1.0,1.0,0.777142857143 572 | 570,0.0,1.0,0.432835820896 573 | 571,1.0,0.0,0.21594068582 574 | 572,1.0,1.0,0.705020920502 575 | 573,0.0,1.0,0.307692307692 576 | 574,0.0,1.0,0.598526703499 577 | 575,0.0,1.0,0.473597359736 578 | 576,0.0,1.0,0.473597359736 579 | 577,1.0,1.0,0.69133192389 580 | 578,0.0,0.0,0.21594068582 581 | 579,1.0,1.0,0.307692307692 582 | 580,0.0,1.0,0.777142857143 583 | 581,1.0,1.0,0.69133192389 584 | 582,1.0,0.0,0.473597359736 585 | 583,1.0,1.0,0.598526703499 586 | 584,0.0,1.0,0.432835820896 587 | 585,0.0,1.0,0.56401384083 588 | 586,0.0,1.0,0.21594068582 589 | 587,0.0,1.0,0.21594068582 590 | 588,0.0,1.0,0.384491114701 591 | 589,1.0,1.0,0.56401384083 592 | 590,1.0,1.0,0.69133192389 593 | 591,0.0,0.0,0.307692307692 594 | 592,1.0,0.0,0.384491114701 595 | 593,0.0,0.0,0.21594068582 596 | 594,0.0,1.0,0.56401384083 597 | 595,0.0,1.0,0.21594068582 598 | 596,0.0,0.0,0.69133192389 599 | 597,1.0,1.0,0.473597359736 600 | 598,1.0,1.0,0.21594068582 601 | 599,0.0,1.0,0.21594068582 602 | 600,1.0,1.0,0.69133192389 603 | 601,0.0,1.0,0.21594068582 604 | 602,0.0,1.0,0.473597359736 605 | 603,1.0,0.0,0.307692307692 606 | 604,0.0,0.0,0.21594068582 607 | 605,1.0,0.0,0.21594068582 608 | 606,0.0,0.0,0.307692307692 609 | 607,1.0,0.0,0.307692307692 610 | 608,0.0,0.0,0.21594068582 611 | 609,0.0,0.0,0.307692307692 612 | 610,0.0,0.0,0.384491114701 613 | 611,0.0,1.0,0.69133192389 614 | 612,1.0,0.0,0.432835820896 615 | 613,0.0,0.0,0.21594068582 616 | 614,1.0,0.0,0.432835820896 617 | 615,1.0,1.0,0.432835820896 618 | 616,1.0,1.0,0.777142857143 619 | 617,0.0,1.0,0.56401384083 620 | 618,0.0,0.0,0.21594068582 621 | 619,1.0,1.0,0.705020920502 622 | 620,0.0,1.0,0.69133192389 623 | 621,0.0,1.0,0.307692307692 624 | 622,0.0,1.0,0.384491114701 625 | 623,0.0,1.0,0.705020920502 626 | 624,1.0,1.0,0.598526703499 627 | 625,0.0,1.0,0.307692307692 628 | 626,0.0,0.0,0.473597359736 629 | 627,1.0,0.0,0.473597359736 630 | 628,1.0,1.0,0.777142857143 631 | 629,0.0,0.0,0.21594068582 632 | 630,0.0,0.0,0.384491114701 633 | 631,1.0,1.0,0.473597359736 634 | 632,0.0,1.0,0.705020920502 635 | 633,0.0,1.0,0.21594068582 636 | 634,0.0,1.0,0.705020920502 637 | 635,0.0,1.0,0.473597359736 638 | 636,1.0,1.0,0.473597359736 639 | 637,0.0,1.0,0.473597359736 640 | 638,1.0,1.0,0.473597359736 641 | 639,1.0,1.0,0.598526703499 642 | 640,1.0,1.0,0.777142857143 643 | 641,1.0,0.0,0.69133192389 644 | 642,0.0,1.0,0.307692307692 645 | 643,1.0,0.0,0.307692307692 646 | 644,0.0,1.0,0.21594068582 647 | 645,0.0,1.0,0.598526703499 648 | 646,1.0,1.0,0.598526703499 649 | 647,0.0,1.0,0.56401384083 650 | 648,1.0,1.0,0.705020920502 651 | 649,0.0,1.0,0.384491114701 652 | 650,0.0,1.0,0.432835820896 653 | 651,0.0,1.0,0.307692307692 654 | 652,1.0,1.0,0.56401384083 655 | 653,0.0,0.0,0.307692307692 656 | 654,0.0,0.0,0.21594068582 657 | 655,0.0,1.0,0.307692307692 658 | 656,0.0,1.0,0.473597359736 659 | 657,1.0,0.0,0.432835820896 660 | 658,1.0,0.0,0.705020920502 661 | 659,1.0,0.0,0.432835820896 662 | 660,0.0,1.0,0.56401384083 663 | 661,0.0,0.0,0.598526703499 664 | 662,0.0,1.0,0.598526703499 665 | 663,0.0,0.0,0.21594068582 666 | 664,1.0,1.0,0.705020920502 667 | 665,0.0,0.0,0.384491114701 668 | 666,1.0,1.0,0.473597359736 669 | 667,1.0,1.0,0.705020920502 670 | 668,0.0,1.0,0.21594068582 671 | 669,1.0,0.0,0.473597359736 672 | 670,0.0,0.0,0.384491114701 673 | 671,0.0,0.0,0.432835820896 674 | 672,1.0,1.0,0.473597359736 675 | 673,0.0,1.0,0.307692307692 676 | 674,0.0,0.0,0.56401384083 677 | 675,1.0,1.0,0.307692307692 678 | 676,0.0,1.0,0.307692307692 679 | 677,0.0,1.0,0.384491114701 680 | 678,1.0,1.0,0.777142857143 681 | 679,1.0,0.0,0.56401384083 682 | 680,1.0,1.0,0.21594068582 683 | 681,0.0,0.0,0.473597359736 684 | 682,0.0,1.0,0.56401384083 685 | 683,0.0,1.0,0.384491114701 686 | 684,0.0,0.0,0.307692307692 687 | 685,0.0,0.0,0.432835820896 688 | 686,0.0,1.0,0.56401384083 689 | 687,1.0,1.0,0.598526703499 690 | 688,0.0,1.0,0.473597359736 691 | 689,1.0,0.0,0.384491114701 692 | 690,1.0,1.0,0.69133192389 693 | 691,0.0,1.0,0.777142857143 694 | 692,1.0,0.0,0.384491114701 695 | 693,0.0,0.0,0.21594068582 696 | 694,0.0,0.0,0.432835820896 697 | 695,1.0,1.0,0.56401384083 698 | 696,0.0,1.0,0.384491114701 699 | 697,0.0,0.0,0.307692307692 700 | 698,1.0,1.0,0.69133192389 701 | 699,0.0,1.0,0.69133192389 702 | 700,1.0,1.0,0.69133192389 703 | 701,1.0,1.0,0.777142857143 704 | 702,1.0,1.0,0.598526703499 705 | 703,1.0,1.0,0.69133192389 706 | 704,1.0,0.0,0.432835820896 707 | 705,1.0,1.0,0.598526703499 708 | 706,0.0,1.0,0.307692307692 709 | 707,0.0,0.0,0.21594068582 710 | 708,1.0,1.0,0.432835820896 711 | 709,0.0,1.0,0.432835820896 712 | 710,1.0,1.0,0.473597359736 713 | 711,1.0,1.0,0.473597359736 714 | 712,0.0,0.0,0.21594068582 715 | 713,1.0,1.0,0.598526703499 716 | 714,1.0,0.0,0.598526703499 717 | 715,1.0,0.0,0.307692307692 718 | 716,0.0,1.0,0.69133192389 719 | 717,1.0,1.0,0.705020920502 720 | 718,1.0,0.0,0.432835820896 721 | 719,1.0,1.0,0.69133192389 722 | 720,0.0,0.0,0.307692307692 723 | 721,1.0,1.0,0.473597359736 724 | 722,0.0,0.0,0.432835820896 725 | 723,0.0,0.0,0.21594068582 726 | 724,0.0,1.0,0.705020920502 727 | 725,0.0,0.0,0.473597359736 728 | 726,1.0,1.0,0.384491114701 729 | 727,0.0,1.0,0.598526703499 730 | 728,0.0,1.0,0.69133192389 731 | 729,1.0,1.0,0.432835820896 732 | 730,0.0,0.0,0.56401384083 733 | 731,1.0,1.0,0.705020920502 734 | 732,1.0,1.0,0.69133192389 735 | 733,0.0,1.0,0.432835820896 736 | 734,1.0,1.0,0.69133192389 737 | 735,1.0,1.0,0.21594068582 738 | 736,0.0,1.0,0.384491114701 739 | 737,0.0,0.0,0.307692307692 740 | 738,0.0,1.0,0.21594068582 741 | 739,0.0,1.0,0.705020920502 742 | 740,0.0,1.0,0.307692307692 743 | 741,1.0,0.0,0.69133192389 744 | 742,0.0,0.0,0.432835820896 745 | 743,1.0,1.0,0.777142857143 746 | 744,0.0,1.0,0.384491114701 747 | 745,0.0,0.0,0.432835820896 748 | 746,0.0,0.0,0.21594068582 749 | 747,0.0,1.0,0.598526703499 750 | 748,0.0,1.0,0.307692307692 751 | 749,1.0,0.0,0.432835820896 752 | 750,0.0,1.0,0.473597359736 753 | 751,1.0,0.0,0.384491114701 754 | 752,0.0,1.0,0.473597359736 755 | 753,1.0,1.0,0.598526703499 756 | 754,1.0,0.0,0.777142857143 757 | 755,1.0,0.0,0.21594068582 758 | 756,1.0,1.0,0.56401384083 759 | 757,1.0,1.0,0.21594068582 760 | 758,1.0,1.0,0.384491114701 761 | 759,0.0,0.0,0.21594068582 762 | 760,1.0,1.0,0.307692307692 763 | 761,0.0,0.0,0.432835820896 764 | 762,0.0,0.0,0.432835820896 765 | 763,0.0,0.0,0.21594068582 766 | 764,0.0,0.0,0.307692307692 767 | 765,1.0,1.0,0.598526703499 768 | 766,1.0,1.0,0.598526703499 769 | 767,1.0,1.0,0.307692307692 770 | 768,0.0,1.0,0.307692307692 771 | 769,0.0,0.0,0.473597359736 772 | 770,1.0,1.0,0.307692307692 773 | 771,1.0,0.0,0.21594068582 774 | 772,1.0,1.0,0.21594068582 775 | 773,1.0,1.0,0.705020920502 776 | 774,1.0,1.0,0.777142857143 777 | 775,0.0,1.0,0.705020920502 778 | 776,0.0,0.0,0.384491114701 779 | 777,0.0,1.0,0.21594068582 780 | 778,1.0,1.0,0.777142857143 781 | 779,1.0,1.0,0.598526703499 782 | 780,0.0,1.0,0.307692307692 783 | 781,0.0,0.0,0.21594068582 784 | 782,1.0,0.0,0.473597359736 785 | 783,1.0,1.0,0.705020920502 786 | 784,0.0,1.0,0.598526703499 787 | 785,1.0,1.0,0.777142857143 788 | 786,0.0,0.0,0.473597359736 789 | 787,0.0,1.0,0.69133192389 790 | 788,1.0,1.0,0.307692307692 791 | 789,1.0,1.0,0.598526703499 792 | 790,0.0,0.0,0.56401384083 793 | 791,0.0,0.0,0.432835820896 794 | 792,1.0,1.0,0.473597359736 795 | 793,1.0,1.0,0.473597359736 796 | 794,1.0,1.0,0.598526703499 797 | 795,0.0,0.0,0.21594068582 798 | 796,0.0,0.0,0.21594068582 799 | 797,0.0,0.0,0.384491114701 800 | 798,1.0,0.0,0.473597359736 801 | 799,0.0,1.0,0.21594068582 802 | 800,1.0,1.0,0.56401384083 803 | 801,0.0,0.0,0.384491114701 804 | 802,1.0,1.0,0.56401384083 805 | 803,1.0,1.0,0.69133192389 806 | 804,1.0,1.0,0.598526703499 807 | 805,1.0,1.0,0.473597359736 808 | 806,1.0,0.0,0.473597359736 809 | 807,0.0,0.0,0.21594068582 810 | 808,1.0,1.0,0.432835820896 811 | 809,0.0,1.0,0.432835820896 812 | 810,1.0,1.0,0.21594068582 813 | 811,0.0,1.0,0.21594068582 814 | 812,0.0,1.0,0.598526703499 815 | 813,0.0,1.0,0.21594068582 816 | 814,1.0,0.0,0.705020920502 817 | 815,1.0,1.0,0.598526703499 818 | 816,1.0,1.0,0.307692307692 819 | 817,1.0,1.0,0.432835820896 820 | 818,0.0,1.0,0.432835820896 821 | 819,1.0,1.0,0.598526703499 822 | 820,0.0,0.0,0.432835820896 823 | 821,0.0,0.0,0.21594068582 824 | 822,1.0,1.0,0.777142857143 825 | 823,0.0,0.0,0.21594068582 826 | 824,1.0,1.0,0.69133192389 827 | 825,1.0,0.0,0.705020920502 828 | 826,0.0,1.0,0.384491114701 829 | 827,0.0,1.0,0.307692307692 830 | 828,0.0,1.0,0.307692307692 831 | 829,1.0,1.0,0.473597359736 832 | 830,0.0,1.0,0.432835820896 833 | 831,1.0,1.0,0.384491114701 834 | 832,0.0,0.0,0.56401384083 835 | 833,0.0,1.0,0.598526703499 836 | 834,0.0,1.0,0.432835820896 837 | 835,1.0,1.0,0.598526703499 838 | 836,0.0,1.0,0.56401384083 839 | 837,0.0,1.0,0.56401384083 840 | 838,0.0,1.0,0.432835820896 841 | 839,0.0,0.0,0.384491114701 842 | 840,0.0,1.0,0.473597359736 843 | 841,0.0,1.0,0.777142857143 844 | 842,1.0,1.0,0.598526703499 845 | 843,1.0,1.0,0.777142857143 846 | 844,0.0,1.0,0.473597359736 847 | 845,1.0,1.0,0.705020920502 848 | 846,1.0,1.0,0.777142857143 849 | 847,0.0,0.0,0.21594068582 850 | 848,1.0,1.0,0.598526703499 851 | 849,0.0,1.0,0.21594068582 852 | 850,0.0,1.0,0.473597359736 853 | 851,0.0,0.0,0.432835820896 854 | 852,0.0,1.0,0.21594068582 855 | 853,1.0,1.0,0.473597359736 856 | 854,0.0,1.0,0.384491114701 857 | 855,1.0,1.0,0.598526703499 858 | 856,0.0,0.0,0.21594068582 859 | 857,0.0,1.0,0.307692307692 860 | 858,0.0,1.0,0.56401384083 861 | 859,1.0,1.0,0.384491114701 862 | 860,1.0,1.0,0.69133192389 863 | 861,0.0,1.0,0.21594068582 864 | 862,0.0,0.0,0.21594068582 865 | 863,0.0,0.0,0.432835820896 866 | 864,0.0,0.0,0.21594068582 867 | 865,1.0,1.0,0.777142857143 868 | 866,1.0,1.0,0.21594068582 869 | 867,0.0,0.0,0.21594068582 870 | 868,0.0,1.0,0.473597359736 871 | 869,1.0,1.0,0.777142857143 872 | 870,1.0,1.0,0.384491114701 873 | 871,0.0,1.0,0.21594068582 874 | 872,0.0,0.0,0.21594068582 875 | 873,1.0,0.0,0.307692307692 876 | 874,0.0,1.0,0.307692307692 877 | 875,1.0,1.0,0.473597359736 878 | 876,0.0,1.0,0.69133192389 879 | 877,1.0,1.0,0.598526703499 880 | 878,1.0,0.0,0.56401384083 881 | 879,0.0,1.0,0.384491114701 882 | 880,0.0,1.0,0.384491114701 883 | 881,0.0,0.0,0.21594068582 884 | 882,0.0,0.0,0.21594068582 885 | 883,0.0,1.0,0.384491114701 886 | 884,0.0,1.0,0.598526703499 887 | 885,1.0,1.0,0.69133192389 888 | 886,1.0,1.0,0.777142857143 889 | 887,1.0,1.0,0.384491114701 890 | 888,0.0,1.0,0.384491114701 891 | 889,0.0,1.0,0.473597359736 892 | 890,0.0,0.0,0.473597359736 893 | 891,1.0,0.0,0.384491114701 894 | 892,1.0,1.0,0.777142857143 895 | 893,0.0,0.0,0.21594068582 896 | 894,0.0,1.0,0.21594068582 897 | 895,1.0,1.0,0.384491114701 898 | 896,0.0,0.0,0.21594068582 899 | 897,0.0,0.0,0.56401384083 900 | 898,0.0,0.0,0.432835820896 901 | 899,1.0,1.0,0.56401384083 902 | 900,0.0,0.0,0.21594068582 903 | 901,1.0,1.0,0.384491114701 904 | 902,0.0,0.0,0.21594068582 905 | 903,0.0,0.0,0.473597359736 906 | 904,1.0,1.0,0.307692307692 907 | 905,0.0,1.0,0.21594068582 908 | 906,1.0,1.0,0.777142857143 909 | 907,0.0,0.0,0.69133192389 910 | 908,0.0,1.0,0.56401384083 911 | 909,1.0,0.0,0.21594068582 912 | 910,1.0,0.0,0.473597359736 913 | 911,0.0,1.0,0.705020920502 914 | 912,1.0,0.0,0.777142857143 915 | 913,1.0,1.0,0.56401384083 916 | 914,0.0,1.0,0.69133192389 917 | 915,1.0,0.0,0.598526703499 918 | 916,0.0,1.0,0.307692307692 919 | 917,0.0,0.0,0.384491114701 920 | 918,0.0,1.0,0.21594068582 921 | 919,0.0,0.0,0.307692307692 922 | 920,0.0,1.0,0.307692307692 923 | 921,0.0,0.0,0.21594068582 924 | 922,1.0,1.0,0.598526703499 925 | 923,0.0,0.0,0.598526703499 926 | 924,1.0,1.0,0.473597359736 927 | 925,1.0,1.0,0.69133192389 928 | 926,1.0,0.0,0.21594068582 929 | 927,0.0,0.0,0.777142857143 930 | 928,0.0,0.0,0.21594068582 931 | 929,0.0,0.0,0.384491114701 932 | 930,0.0,0.0,0.307692307692 933 | 931,1.0,1.0,0.384491114701 934 | 932,1.0,1.0,0.69133192389 935 | 933,1.0,1.0,0.705020920502 936 | 934,1.0,0.0,0.21594068582 937 | 935,0.0,1.0,0.473597359736 938 | 936,1.0,1.0,0.473597359736 939 | 937,0.0,1.0,0.307692307692 940 | 938,1.0,1.0,0.705020920502 941 | 939,0.0,0.0,0.307692307692 942 | 940,0.0,0.0,0.21594068582 943 | 941,0.0,0.0,0.777142857143 944 | 942,1.0,1.0,0.56401384083 945 | 943,0.0,0.0,0.432835820896 946 | 944,1.0,1.0,0.56401384083 947 | 945,1.0,1.0,0.705020920502 948 | 946,1.0,1.0,0.21594068582 949 | 947,1.0,0.0,0.56401384083 950 | 948,0.0,1.0,0.21594068582 951 | 949,1.0,0.0,0.705020920502 952 | 950,1.0,1.0,0.307692307692 953 | 951,0.0,1.0,0.432835820896 954 | 952,0.0,0.0,0.21594068582 955 | 953,0.0,0.0,0.598526703499 956 | 954,0.0,0.0,0.21594068582 957 | 955,0.0,0.0,0.21594068582 958 | 956,0.0,1.0,0.598526703499 959 | 957,0.0,1.0,0.705020920502 960 | 958,1.0,1.0,0.56401384083 961 | 959,1.0,0.0,0.384491114701 962 | 960,0.0,0.0,0.473597359736 963 | 961,0.0,0.0,0.21594068582 964 | 962,1.0,0.0,0.384491114701 965 | 963,0.0,0.0,0.598526703499 966 | 964,0.0,0.0,0.21594068582 967 | 965,0.0,1.0,0.598526703499 968 | 966,1.0,0.0,0.307692307692 969 | 967,0.0,0.0,0.21594068582 970 | 968,1.0,0.0,0.705020920502 971 | 969,1.0,0.0,0.473597359736 972 | 970,0.0,0.0,0.432835820896 973 | 971,0.0,1.0,0.777142857143 974 | 972,0.0,1.0,0.21594068582 975 | 973,1.0,1.0,0.307692307692 976 | 974,0.0,0.0,0.307692307692 977 | 975,1.0,1.0,0.705020920502 978 | 976,0.0,1.0,0.598526703499 979 | 977,0.0,1.0,0.473597359736 980 | 978,0.0,0.0,0.384491114701 981 | 979,0.0,1.0,0.705020920502 982 | 980,0.0,1.0,0.473597359736 983 | 981,1.0,1.0,0.69133192389 984 | 982,0.0,1.0,0.307692307692 985 | 983,1.0,1.0,0.384491114701 986 | 984,1.0,1.0,0.705020920502 987 | 985,1.0,1.0,0.598526703499 988 | 986,0.0,1.0,0.473597359736 989 | 987,0.0,1.0,0.384491114701 990 | 988,0.0,0.0,0.432835820896 991 | 989,0.0,1.0,0.432835820896 992 | 990,1.0,1.0,0.473597359736 993 | 991,1.0,0.0,0.473597359736 994 | 992,1.0,0.0,0.777142857143 995 | 993,1.0,1.0,0.432835820896 996 | 994,0.0,1.0,0.21594068582 997 | 995,0.0,0.0,0.384491114701 998 | 996,1.0,0.0,0.384491114701 999 | 997,0.0,0.0,0.21594068582 1000 | 998,0.0,1.0,0.598526703499 1001 | 999,0.0,0.0,0.473597359736 1002 | 1000,1.0,1.0,0.777142857143 1003 | 1001,0.0,1.0,0.777142857143 1004 | 1002,0.0,0.0,0.432835820896 1005 | 1003,0.0,0.0,0.307692307692 1006 | 1004,0.0,0.0,0.384491114701 1007 | 1005,1.0,0.0,0.56401384083 1008 | 1006,0.0,1.0,0.307692307692 1009 | 1007,0.0,1.0,0.705020920502 1010 | 1008,0.0,1.0,0.21594068582 1011 | 1009,1.0,0.0,0.307692307692 1012 | 1010,1.0,1.0,0.56401384083 1013 | 1011,1.0,1.0,0.56401384083 1014 | 1012,1.0,1.0,0.598526703499 1015 | 1013,0.0,0.0,0.432835820896 1016 | 1014,0.0,1.0,0.432835820896 1017 | 1015,0.0,0.0,0.432835820896 1018 | 1016,0.0,1.0,0.384491114701 1019 | 1017,1.0,0.0,0.56401384083 1020 | 1018,1.0,1.0,0.69133192389 1021 | 1019,1.0,1.0,0.307692307692 1022 | 1020,1.0,1.0,0.56401384083 1023 | 1021,0.0,1.0,0.307692307692 1024 | 1022,0.0,0.0,0.21594068582 1025 | 1023,0.0,1.0,0.705020920502 1026 | 1024,0.0,0.0,0.21594068582 1027 | 1025,0.0,1.0,0.384491114701 1028 | 1026,1.0,1.0,0.69133192389 1029 | 1027,0.0,1.0,0.21594068582 1030 | 1028,0.0,0.0,0.384491114701 1031 | 1029,0.0,0.0,0.432835820896 1032 | 1030,1.0,0.0,0.69133192389 1033 | 1031,0.0,0.0,0.384491114701 1034 | 1032,1.0,1.0,0.473597359736 1035 | 1033,0.0,1.0,0.705020920502 1036 | 1034,1.0,1.0,0.21594068582 1037 | 1035,1.0,1.0,0.705020920502 1038 | 1036,0.0,1.0,0.384491114701 1039 | 1037,0.0,1.0,0.473597359736 1040 | 1038,1.0,1.0,0.432835820896 1041 | 1039,0.0,0.0,0.69133192389 1042 | 1040,1.0,1.0,0.307692307692 1043 | 1041,1.0,1.0,0.777142857143 1044 | 1042,1.0,0.0,0.598526703499 1045 | 1043,1.0,0.0,0.473597359736 1046 | 1044,1.0,0.0,0.21594068582 1047 | 1045,0.0,1.0,0.432835820896 1048 | 1046,0.0,0.0,0.432835820896 1049 | 1047,1.0,1.0,0.384491114701 1050 | 1048,1.0,0.0,0.777142857143 1051 | 1049,0.0,0.0,0.307692307692 1052 | 1050,1.0,0.0,0.21594068582 1053 | 1051,0.0,1.0,0.432835820896 1054 | 1052,0.0,1.0,0.473597359736 1055 | 1053,1.0,1.0,0.69133192389 1056 | 1054,0.0,0.0,0.307692307692 1057 | 1055,0.0,0.0,0.384491114701 1058 | 1056,1.0,0.0,0.21594068582 1059 | 1057,1.0,1.0,0.56401384083 1060 | 1058,1.0,0.0,0.56401384083 1061 | 1059,1.0,1.0,0.777142857143 1062 | 1060,0.0,0.0,0.307692307692 1063 | 1061,1.0,1.0,0.384491114701 1064 | 1062,0.0,0.0,0.384491114701 1065 | 1063,0.0,0.0,0.21594068582 1066 | 1064,0.0,0.0,0.473597359736 1067 | 1065,1.0,0.0,0.307692307692 1068 | 1066,0.0,1.0,0.21594068582 1069 | 1067,0.0,0.0,0.21594068582 1070 | 1068,1.0,1.0,0.384491114701 1071 | 1069,0.0,1.0,0.307692307692 1072 | 1070,0.0,0.0,0.21594068582 1073 | 1071,0.0,1.0,0.384491114701 1074 | 1072,0.0,1.0,0.56401384083 1075 | 1073,1.0,0.0,0.21594068582 1076 | 1074,0.0,0.0,0.21594068582 1077 | 1075,1.0,0.0,0.69133192389 1078 | 1076,1.0,1.0,0.705020920502 1079 | 1077,0.0,1.0,0.307692307692 1080 | 1078,0.0,1.0,0.473597359736 1081 | 1079,0.0,0.0,0.307692307692 1082 | 1080,0.0,1.0,0.21594068582 1083 | 1081,1.0,0.0,0.473597359736 1084 | 1082,0.0,1.0,0.432835820896 1085 | 1083,0.0,1.0,0.21594068582 1086 | 1084,1.0,1.0,0.69133192389 1087 | 1085,0.0,0.0,0.21594068582 1088 | 1086,0.0,0.0,0.307692307692 1089 | 1087,1.0,1.0,0.21594068582 1090 | 1088,1.0,1.0,0.705020920502 1091 | 1089,1.0,0.0,0.598526703499 1092 | 1090,1.0,0.0,0.777142857143 1093 | 1091,1.0,0.0,0.21594068582 1094 | 1092,0.0,1.0,0.21594068582 1095 | 1093,0.0,0.0,0.473597359736 1096 | 1094,1.0,1.0,0.69133192389 1097 | 1095,1.0,1.0,0.432835820896 1098 | 1096,0.0,1.0,0.384491114701 1099 | 1097,0.0,0.0,0.307692307692 1100 | 1098,1.0,1.0,0.777142857143 1101 | 1099,1.0,1.0,0.69133192389 1102 | 1100,0.0,0.0,0.473597359736 1103 | 1101,1.0,1.0,0.307692307692 1104 | 1102,1.0,1.0,0.598526703499 1105 | 1103,0.0,1.0,0.384491114701 1106 | 1104,0.0,1.0,0.432835820896 1107 | 1105,0.0,0.0,0.307692307692 1108 | 1106,1.0,1.0,0.432835820896 1109 | 1107,1.0,1.0,0.777142857143 1110 | 1108,0.0,1.0,0.307692307692 1111 | 1109,0.0,1.0,0.21594068582 1112 | 1110,0.0,0.0,0.384491114701 1113 | 1111,1.0,1.0,0.473597359736 1114 | 1112,1.0,1.0,0.777142857143 1115 | 1113,1.0,1.0,0.432835820896 1116 | 1114,1.0,0.0,0.598526703499 1117 | 1115,0.0,0.0,0.21594068582 1118 | 1116,0.0,1.0,0.598526703499 1119 | 1117,0.0,0.0,0.307692307692 1120 | 1118,0.0,1.0,0.705020920502 1121 | 1119,0.0,1.0,0.432835820896 1122 | 1120,1.0,1.0,0.705020920502 1123 | 1121,1.0,1.0,0.598526703499 1124 | 1122,1.0,1.0,0.473597359736 1125 | 1123,1.0,1.0,0.307692307692 1126 | 1124,0.0,1.0,0.432835820896 1127 | 1125,1.0,1.0,0.56401384083 1128 | 1126,0.0,0.0,0.307692307692 1129 | 1127,0.0,0.0,0.432835820896 1130 | 1128,0.0,1.0,0.384491114701 1131 | 1129,0.0,1.0,0.69133192389 1132 | 1130,1.0,1.0,0.705020920502 1133 | 1131,0.0,0.0,0.21594068582 1134 | 1132,0.0,0.0,0.56401384083 1135 | 1133,1.0,1.0,0.777142857143 1136 | 1134,0.0,1.0,0.598526703499 1137 | 1135,1.0,0.0,0.473597359736 1138 | 1136,0.0,1.0,0.307692307692 1139 | 1137,1.0,1.0,0.69133192389 1140 | 1138,1.0,0.0,0.307692307692 1141 | 1139,1.0,1.0,0.56401384083 1142 | 1140,0.0,1.0,0.21594068582 1143 | 1141,0.0,1.0,0.432835820896 1144 | 1142,0.0,1.0,0.705020920502 1145 | 1143,0.0,0.0,0.307692307692 1146 | 1144,0.0,1.0,0.432835820896 1147 | 1145,0.0,0.0,0.21594068582 1148 | 1146,1.0,0.0,0.56401384083 1149 | 1147,0.0,0.0,0.21594068582 1150 | 1148,0.0,1.0,0.307692307692 1151 | 1149,0.0,0.0,0.21594068582 1152 | 1150,1.0,0.0,0.307692307692 1153 | 1151,1.0,1.0,0.432835820896 1154 | 1152,1.0,1.0,0.598526703499 1155 | 1153,0.0,0.0,0.473597359736 1156 | 1154,0.0,1.0,0.705020920502 1157 | 1155,0.0,1.0,0.307692307692 1158 | 1156,1.0,1.0,0.705020920502 1159 | 1157,0.0,0.0,0.21594068582 1160 | 1158,0.0,1.0,0.473597359736 1161 | 1159,0.0,1.0,0.432835820896 1162 | 1160,1.0,0.0,0.56401384083 1163 | 1161,0.0,0.0,0.384491114701 1164 | 1162,1.0,0.0,0.69133192389 1165 | 1163,1.0,1.0,0.598526703499 1166 | 1164,1.0,1.0,0.384491114701 1167 | 1165,0.0,1.0,0.432835820896 1168 | 1166,1.0,0.0,0.21594068582 1169 | 1167,0.0,1.0,0.69133192389 1170 | 1168,0.0,1.0,0.705020920502 1171 | 1169,1.0,1.0,0.777142857143 1172 | 1170,0.0,0.0,0.21594068582 1173 | 1171,1.0,0.0,0.307692307692 1174 | 1172,1.0,0.0,0.432835820896 1175 | 1173,1.0,1.0,0.777142857143 1176 | 1174,0.0,1.0,0.307692307692 1177 | 1175,1.0,1.0,0.777142857143 1178 | 1176,1.0,1.0,0.21594068582 1179 | 1177,1.0,1.0,0.69133192389 1180 | 1178,1.0,0.0,0.432835820896 1181 | 1179,0.0,1.0,0.307692307692 1182 | 1180,1.0,1.0,0.69133192389 1183 | 1181,0.0,0.0,0.598526703499 1184 | 1182,1.0,0.0,0.473597359736 1185 | 1183,1.0,1.0,0.384491114701 1186 | 1184,0.0,0.0,0.21594068582 1187 | 1185,0.0,0.0,0.384491114701 1188 | 1186,0.0,1.0,0.432835820896 1189 | 1187,0.0,0.0,0.307692307692 1190 | 1188,1.0,1.0,0.21594068582 1191 | 1189,1.0,1.0,0.69133192389 1192 | 1190,0.0,0.0,0.432835820896 1193 | 1191,0.0,1.0,0.69133192389 1194 | 1192,0.0,1.0,0.598526703499 1195 | 1193,1.0,0.0,0.384491114701 1196 | 1194,1.0,1.0,0.432835820896 1197 | 1195,0.0,1.0,0.21594068582 1198 | 1196,1.0,1.0,0.705020920502 1199 | 1197,1.0,1.0,0.56401384083 1200 | 1198,0.0,1.0,0.21594068582 1201 | 1199,1.0,0.0,0.473597359736 1202 | 1200,1.0,0.0,0.307692307692 1203 | 1201,1.0,1.0,0.384491114701 1204 | 1202,1.0,0.0,0.384491114701 1205 | 1203,0.0,1.0,0.384491114701 1206 | 1204,1.0,1.0,0.56401384083 1207 | 1205,0.0,1.0,0.307692307692 1208 | 1206,1.0,1.0,0.705020920502 1209 | 1207,0.0,0.0,0.21594068582 1210 | 1208,0.0,0.0,0.21594068582 1211 | 1209,0.0,1.0,0.56401384083 1212 | 1210,0.0,1.0,0.598526703499 1213 | 1211,1.0,1.0,0.56401384083 1214 | 1212,1.0,1.0,0.598526703499 1215 | 1213,1.0,1.0,0.598526703499 1216 | 1214,1.0,1.0,0.473597359736 1217 | 1215,1.0,1.0,0.473597359736 1218 | 1216,0.0,1.0,0.307692307692 1219 | 1217,0.0,0.0,0.432835820896 1220 | 1218,0.0,1.0,0.307692307692 1221 | 1219,1.0,1.0,0.432835820896 1222 | 1220,1.0,0.0,0.307692307692 1223 | 1221,0.0,1.0,0.21594068582 1224 | 1222,0.0,0.0,0.56401384083 1225 | 1223,1.0,0.0,0.56401384083 1226 | 1224,1.0,1.0,0.432835820896 1227 | 1225,1.0,1.0,0.705020920502 1228 | 1226,1.0,0.0,0.69133192389 1229 | 1227,0.0,0.0,0.598526703499 1230 | 1228,1.0,1.0,0.21594068582 1231 | 1229,0.0,1.0,0.598526703499 1232 | 1230,0.0,0.0,0.598526703499 1233 | 1231,1.0,1.0,0.705020920502 1234 | 1232,1.0,0.0,0.307692307692 1235 | 1233,0.0,0.0,0.69133192389 1236 | 1234,0.0,1.0,0.69133192389 1237 | 1235,1.0,1.0,0.777142857143 1238 | 1236,0.0,1.0,0.705020920502 1239 | 1237,1.0,1.0,0.777142857143 1240 | 1238,0.0,0.0,0.384491114701 1241 | 1239,1.0,0.0,0.56401384083 1242 | 1240,0.0,1.0,0.384491114701 1243 | 1241,0.0,1.0,0.21594068582 1244 | 1242,1.0,1.0,0.384491114701 1245 | 1243,0.0,0.0,0.598526703499 1246 | 1244,0.0,1.0,0.56401384083 1247 | 1245,1.0,1.0,0.69133192389 1248 | 1246,1.0,0.0,0.432835820896 1249 | 1247,1.0,0.0,0.705020920502 1250 | 1248,1.0,0.0,0.21594068582 1251 | 1249,0.0,1.0,0.598526703499 1252 | 1250,1.0,1.0,0.432835820896 1253 | 1251,0.0,1.0,0.384491114701 1254 | 1252,1.0,1.0,0.777142857143 1255 | 1253,0.0,0.0,0.21594068582 1256 | 1254,0.0,1.0,0.384491114701 1257 | 1255,1.0,1.0,0.705020920502 1258 | 1256,1.0,0.0,0.777142857143 1259 | 1257,1.0,1.0,0.307692307692 1260 | 1258,0.0,0.0,0.21594068582 1261 | 1259,0.0,0.0,0.21594068582 1262 | 1260,0.0,0.0,0.307692307692 1263 | 1261,0.0,0.0,0.384491114701 1264 | 1262,1.0,0.0,0.69133192389 1265 | 1263,1.0,0.0,0.598526703499 1266 | 1264,1.0,0.0,0.56401384083 1267 | 1265,1.0,1.0,0.705020920502 1268 | 1266,0.0,0.0,0.21594068582 1269 | 1267,0.0,0.0,0.21594068582 1270 | 1268,0.0,0.0,0.598526703499 1271 | 1269,0.0,1.0,0.307692307692 1272 | 1270,0.0,1.0,0.307692307692 1273 | 1271,0.0,0.0,0.21594068582 1274 | 1272,1.0,1.0,0.473597359736 1275 | 1273,1.0,0.0,0.473597359736 1276 | 1274,1.0,1.0,0.432835820896 1277 | 1275,1.0,1.0,0.56401384083 1278 | 1276,0.0,1.0,0.598526703499 1279 | 1277,0.0,1.0,0.69133192389 1280 | 1278,1.0,1.0,0.705020920502 1281 | 1279,1.0,1.0,0.777142857143 1282 | 1280,0.0,0.0,0.21594068582 1283 | 1281,1.0,1.0,0.56401384083 1284 | 1282,1.0,1.0,0.705020920502 1285 | 1283,1.0,0.0,0.598526703499 1286 | 1284,0.0,1.0,0.69133192389 1287 | 1285,0.0,0.0,0.21594068582 1288 | 1286,1.0,1.0,0.598526703499 1289 | 1287,0.0,1.0,0.705020920502 1290 | 1288,1.0,1.0,0.777142857143 1291 | 1289,0.0,1.0,0.21594068582 1292 | 1290,0.0,0.0,0.21594068582 1293 | 1291,1.0,1.0,0.384491114701 1294 | 1292,1.0,1.0,0.384491114701 1295 | 1293,1.0,0.0,0.21594068582 1296 | 1294,0.0,1.0,0.384491114701 1297 | 1295,1.0,0.0,0.307692307692 1298 | 1296,0.0,0.0,0.21594068582 1299 | 1297,0.0,0.0,0.384491114701 1300 | 1298,1.0,0.0,0.384491114701 1301 | 1299,0.0,1.0,0.384491114701 1302 | 1300,0.0,0.0,0.307692307692 1303 | 1301,0.0,1.0,0.598526703499 1304 | 1302,0.0,1.0,0.432835820896 1305 | 1303,1.0,1.0,0.705020920502 1306 | 1304,1.0,1.0,0.56401384083 1307 | 1305,1.0,1.0,0.777142857143 1308 | 1306,1.0,1.0,0.432835820896 1309 | 1307,1.0,0.0,0.69133192389 1310 | 1308,0.0,1.0,0.21594068582 1311 | 1309,1.0,1.0,0.69133192389 1312 | 1310,1.0,1.0,0.432835820896 1313 | 1311,0.0,1.0,0.384491114701 1314 | 1312,1.0,0.0,0.473597359736 1315 | 1313,0.0,0.0,0.432835820896 1316 | 1314,0.0,0.0,0.21594068582 1317 | 1315,0.0,1.0,0.69133192389 1318 | 1316,0.0,1.0,0.21594068582 1319 | 1317,1.0,1.0,0.598526703499 1320 | 1318,0.0,1.0,0.777142857143 1321 | 1319,0.0,1.0,0.384491114701 1322 | 1320,0.0,1.0,0.21594068582 1323 | 1321,0.0,0.0,0.21594068582 1324 | 1322,0.0,1.0,0.473597359736 1325 | 1323,0.0,0.0,0.432835820896 1326 | 1324,1.0,0.0,0.307692307692 1327 | 1325,0.0,0.0,0.21594068582 1328 | 1326,1.0,0.0,0.307692307692 1329 | 1327,0.0,0.0,0.307692307692 1330 | 1328,0.0,1.0,0.307692307692 1331 | 1329,1.0,0.0,0.598526703499 1332 | 1330,1.0,0.0,0.473597359736 1333 | 1331,1.0,1.0,0.777142857143 1334 | 1332,0.0,1.0,0.705020920502 1335 | 1333,0.0,0.0,0.384491114701 1336 | 1334,1.0,1.0,0.21594068582 1337 | 1335,0.0,0.0,0.432835820896 1338 | 1336,0.0,1.0,0.21594068582 1339 | 1337,0.0,1.0,0.473597359736 1340 | 1338,1.0,1.0,0.705020920502 1341 | 1339,0.0,1.0,0.56401384083 1342 | 1340,1.0,1.0,0.473597359736 1343 | 1341,1.0,0.0,0.384491114701 1344 | 1342,1.0,1.0,0.69133192389 1345 | 1343,0.0,0.0,0.21594068582 1346 | 1344,1.0,0.0,0.598526703499 1347 | 1345,0.0,0.0,0.56401384083 1348 | 1346,0.0,1.0,0.473597359736 1349 | 1347,1.0,0.0,0.432835820896 1350 | 1348,0.0,1.0,0.307692307692 1351 | 1349,0.0,1.0,0.705020920502 1352 | 1350,0.0,1.0,0.598526703499 1353 | 1351,0.0,1.0,0.56401384083 1354 | 1352,0.0,1.0,0.307692307692 1355 | 1353,0.0,0.0,0.69133192389 1356 | 1354,1.0,1.0,0.598526703499 1357 | 1355,1.0,1.0,0.69133192389 1358 | 1356,1.0,0.0,0.56401384083 1359 | 1357,0.0,1.0,0.384491114701 1360 | 1358,1.0,1.0,0.598526703499 1361 | 1359,0.0,1.0,0.21594068582 1362 | 1360,0.0,1.0,0.21594068582 1363 | 1361,0.0,0.0,0.21594068582 1364 | 1362,0.0,1.0,0.307692307692 1365 | 1363,0.0,0.0,0.56401384083 1366 | 1364,1.0,1.0,0.473597359736 1367 | 1365,1.0,0.0,0.21594068582 1368 | 1366,1.0,1.0,0.473597359736 1369 | 1367,1.0,0.0,0.56401384083 1370 | 1368,1.0,1.0,0.598526703499 1371 | 1369,0.0,0.0,0.473597359736 1372 | 1370,0.0,0.0,0.307692307692 1373 | 1371,1.0,0.0,0.598526703499 1374 | 1372,0.0,1.0,0.307692307692 1375 | 1373,1.0,1.0,0.473597359736 1376 | 1374,1.0,0.0,0.307692307692 1377 | 1375,0.0,1.0,0.56401384083 1378 | 1376,1.0,1.0,0.473597359736 1379 | 1377,1.0,1.0,0.598526703499 1380 | 1378,1.0,1.0,0.777142857143 1381 | 1379,1.0,1.0,0.705020920502 1382 | 1380,0.0,1.0,0.777142857143 1383 | 1381,0.0,1.0,0.384491114701 1384 | 1382,0.0,1.0,0.384491114701 1385 | 1383,1.0,1.0,0.598526703499 1386 | 1384,1.0,1.0,0.384491114701 1387 | 1385,0.0,1.0,0.473597359736 1388 | 1386,0.0,1.0,0.384491114701 1389 | 1387,0.0,0.0,0.307692307692 1390 | 1388,0.0,0.0,0.21594068582 1391 | 1389,1.0,1.0,0.705020920502 1392 | 1390,1.0,1.0,0.307692307692 1393 | 1391,1.0,1.0,0.56401384083 1394 | 1392,0.0,1.0,0.598526703499 1395 | 1393,1.0,0.0,0.56401384083 1396 | 1394,1.0,0.0,0.21594068582 1397 | 1395,0.0,1.0,0.777142857143 1398 | 1396,0.0,1.0,0.307692307692 1399 | 1397,0.0,0.0,0.21594068582 1400 | 1398,1.0,1.0,0.598526703499 1401 | 1399,0.0,0.0,0.384491114701 1402 | 1400,0.0,0.0,0.307692307692 1403 | 1401,1.0,1.0,0.56401384083 1404 | 1402,0.0,1.0,0.69133192389 1405 | 1403,1.0,0.0,0.705020920502 1406 | 1404,0.0,1.0,0.432835820896 1407 | 1405,1.0,1.0,0.56401384083 1408 | 1406,0.0,1.0,0.21594068582 1409 | 1407,0.0,0.0,0.384491114701 1410 | 1408,0.0,0.0,0.307692307692 1411 | 1409,0.0,1.0,0.598526703499 1412 | 1410,0.0,1.0,0.69133192389 1413 | 1411,1.0,0.0,0.705020920502 1414 | 1412,1.0,0.0,0.777142857143 1415 | 1413,0.0,1.0,0.705020920502 1416 | 1414,0.0,0.0,0.56401384083 1417 | 1415,1.0,1.0,0.705020920502 1418 | 1416,0.0,0.0,0.307692307692 1419 | 1417,1.0,1.0,0.69133192389 1420 | 1418,1.0,1.0,0.473597359736 1421 | 1419,1.0,0.0,0.56401384083 1422 | 1420,0.0,0.0,0.598526703499 1423 | 1421,1.0,0.0,0.56401384083 1424 | 1422,1.0,0.0,0.473597359736 1425 | 1423,0.0,1.0,0.21594068582 1426 | 1424,0.0,0.0,0.21594068582 1427 | 1425,1.0,1.0,0.598526703499 1428 | 1426,0.0,0.0,0.384491114701 1429 | 1427,0.0,0.0,0.384491114701 1430 | 1428,0.0,1.0,0.598526703499 1431 | 1429,0.0,0.0,0.21594068582 1432 | 1430,1.0,1.0,0.56401384083 1433 | 1431,1.0,0.0,0.384491114701 1434 | 1432,0.0,1.0,0.473597359736 1435 | 1433,0.0,1.0,0.21594068582 1436 | 1434,0.0,1.0,0.307692307692 1437 | 1435,1.0,1.0,0.56401384083 1438 | 1436,0.0,1.0,0.705020920502 1439 | 1437,0.0,0.0,0.21594068582 1440 | 1438,1.0,1.0,0.384491114701 1441 | 1439,0.0,1.0,0.598526703499 1442 | 1440,0.0,1.0,0.307692307692 1443 | 1441,0.0,1.0,0.307692307692 1444 | 1442,0.0,1.0,0.384491114701 1445 | 1443,0.0,0.0,0.21594068582 1446 | 1444,0.0,0.0,0.432835820896 1447 | 1445,0.0,1.0,0.21594068582 1448 | 1446,1.0,1.0,0.705020920502 1449 | 1447,0.0,1.0,0.384491114701 1450 | 1448,1.0,1.0,0.705020920502 1451 | 1449,1.0,0.0,0.598526703499 1452 | 1450,0.0,1.0,0.307692307692 1453 | 1451,1.0,1.0,0.307692307692 1454 | 1452,0.0,1.0,0.56401384083 1455 | 1453,0.0,0.0,0.21594068582 1456 | 1454,1.0,1.0,0.705020920502 1457 | 1455,1.0,0.0,0.56401384083 1458 | 1456,1.0,0.0,0.69133192389 1459 | 1457,0.0,0.0,0.432835820896 1460 | 1458,0.0,1.0,0.307692307692 1461 | 1459,0.0,0.0,0.21594068582 1462 | 1460,1.0,0.0,0.384491114701 1463 | 1461,0.0,0.0,0.21594068582 1464 | 1462,0.0,1.0,0.21594068582 1465 | 1463,0.0,1.0,0.307692307692 1466 | 1464,0.0,1.0,0.598526703499 1467 | 1465,0.0,1.0,0.598526703499 1468 | 1466,0.0,1.0,0.384491114701 1469 | 1467,0.0,0.0,0.21594068582 1470 | 1468,0.0,1.0,0.21594068582 1471 | 1469,0.0,0.0,0.384491114701 1472 | 1470,1.0,0.0,0.598526703499 1473 | 1471,0.0,1.0,0.432835820896 1474 | 1472,1.0,1.0,0.69133192389 1475 | 1473,1.0,1.0,0.473597359736 1476 | 1474,0.0,0.0,0.473597359736 1477 | 1475,0.0,0.0,0.432835820896 1478 | 1476,0.0,0.0,0.384491114701 1479 | 1477,1.0,1.0,0.69133192389 1480 | 1478,1.0,1.0,0.705020920502 1481 | 1479,0.0,1.0,0.307692307692 1482 | 1480,1.0,0.0,0.432835820896 1483 | 1481,0.0,0.0,0.473597359736 1484 | 1482,0.0,1.0,0.384491114701 1485 | 1483,0.0,0.0,0.307692307692 1486 | 1484,0.0,1.0,0.69133192389 1487 | 1485,0.0,1.0,0.384491114701 1488 | 1486,0.0,1.0,0.307692307692 1489 | 1487,0.0,0.0,0.21594068582 1490 | 1488,0.0,1.0,0.473597359736 1491 | 1489,0.0,1.0,0.56401384083 1492 | 1490,0.0,0.0,0.21594068582 1493 | 1491,1.0,1.0,0.21594068582 1494 | 1492,0.0,1.0,0.307692307692 1495 | 1493,1.0,0.0,0.21594068582 1496 | 1494,0.0,1.0,0.21594068582 1497 | 1495,0.0,1.0,0.432835820896 1498 | 1496,1.0,0.0,0.21594068582 1499 | 1497,0.0,1.0,0.432835820896 1500 | 1498,0.0,1.0,0.598526703499 1501 | 1499,1.0,1.0,0.307692307692 1502 | 1500,0.0,1.0,0.473597359736 1503 | 1501,0.0,0.0,0.598526703499 1504 | 1502,0.0,1.0,0.56401384083 1505 | 1503,1.0,0.0,0.21594068582 1506 | 1504,0.0,0.0,0.307692307692 1507 | 1505,1.0,0.0,0.473597359736 1508 | 1506,1.0,1.0,0.384491114701 1509 | 1507,1.0,1.0,0.432835820896 1510 | 1508,1.0,1.0,0.56401384083 1511 | 1509,1.0,0.0,0.307692307692 1512 | 1510,1.0,1.0,0.56401384083 1513 | 1511,1.0,1.0,0.598526703499 1514 | 1512,1.0,1.0,0.777142857143 1515 | 1513,1.0,0.0,0.432835820896 1516 | 1514,1.0,1.0,0.69133192389 1517 | 1515,1.0,1.0,0.384491114701 1518 | 1516,1.0,0.0,0.598526703499 1519 | 1517,0.0,0.0,0.598526703499 1520 | 1518,1.0,0.0,0.21594068582 1521 | 1519,1.0,0.0,0.598526703499 1522 | 1520,0.0,0.0,0.21594068582 1523 | 1521,0.0,1.0,0.473597359736 1524 | 1522,0.0,1.0,0.598526703499 1525 | 1523,0.0,0.0,0.473597359736 1526 | 1524,1.0,1.0,0.705020920502 1527 | 1525,0.0,0.0,0.705020920502 1528 | 1526,0.0,1.0,0.307692307692 1529 | 1527,0.0,0.0,0.598526703499 1530 | 1528,0.0,1.0,0.473597359736 1531 | 1529,1.0,1.0,0.598526703499 1532 | 1530,0.0,0.0,0.432835820896 1533 | 1531,0.0,1.0,0.307692307692 1534 | 1532,1.0,1.0,0.69133192389 1535 | 1533,1.0,0.0,0.21594068582 1536 | 1534,0.0,0.0,0.21594068582 1537 | 1535,1.0,1.0,0.69133192389 1538 | 1536,1.0,1.0,0.598526703499 1539 | 1537,1.0,0.0,0.598526703499 1540 | 1538,0.0,0.0,0.56401384083 1541 | 1539,0.0,1.0,0.384491114701 1542 | 1540,0.0,0.0,0.21594068582 1543 | 1541,0.0,0.0,0.21594068582 1544 | 1542,1.0,1.0,0.705020920502 1545 | 1543,0.0,1.0,0.432835820896 1546 | 1544,1.0,1.0,0.473597359736 1547 | 1545,0.0,0.0,0.21594068582 1548 | 1546,0.0,0.0,0.432835820896 1549 | 1547,0.0,1.0,0.777142857143 1550 | 1548,0.0,1.0,0.777142857143 1551 | 1549,1.0,0.0,0.432835820896 1552 | 1550,1.0,1.0,0.307692307692 1553 | 1551,0.0,1.0,0.598526703499 1554 | 1552,0.0,0.0,0.21594068582 1555 | 1553,1.0,1.0,0.432835820896 1556 | 1554,0.0,1.0,0.598526703499 1557 | 1555,0.0,1.0,0.384491114701 1558 | 1556,0.0,1.0,0.384491114701 1559 | 1557,1.0,1.0,0.777142857143 1560 | 1558,1.0,0.0,0.384491114701 1561 | 1559,0.0,0.0,0.705020920502 1562 | 1560,1.0,1.0,0.777142857143 1563 | 1561,0.0,0.0,0.21594068582 1564 | 1562,0.0,0.0,0.432835820896 1565 | 1563,1.0,0.0,0.384491114701 1566 | 1564,1.0,1.0,0.598526703499 1567 | 1565,0.0,1.0,0.21594068582 1568 | 1566,1.0,0.0,0.56401384083 1569 | 1567,0.0,1.0,0.21594068582 1570 | 1568,0.0,0.0,0.473597359736 1571 | 1569,1.0,1.0,0.384491114701 1572 | 1570,0.0,0.0,0.21594068582 1573 | 1571,1.0,0.0,0.598526703499 1574 | 1572,1.0,0.0,0.21594068582 1575 | 1573,1.0,0.0,0.69133192389 1576 | 1574,0.0,1.0,0.69133192389 1577 | 1575,1.0,1.0,0.705020920502 1578 | 1576,1.0,1.0,0.384491114701 1579 | 1577,0.0,1.0,0.56401384083 1580 | 1578,0.0,1.0,0.705020920502 1581 | 1579,1.0,0.0,0.69133192389 1582 | 1580,0.0,1.0,0.21594068582 1583 | 1581,1.0,1.0,0.56401384083 1584 | 1582,1.0,1.0,0.432835820896 1585 | 1583,1.0,1.0,0.432835820896 1586 | 1584,0.0,0.0,0.307692307692 1587 | 1585,0.0,0.0,0.598526703499 1588 | 1586,1.0,1.0,0.598526703499 1589 | 1587,1.0,1.0,0.705020920502 1590 | 1588,1.0,0.0,0.705020920502 1591 | 1589,1.0,1.0,0.307692307692 1592 | 1590,1.0,1.0,0.705020920502 1593 | 1591,1.0,1.0,0.69133192389 1594 | 1592,0.0,0.0,0.384491114701 1595 | 1593,0.0,0.0,0.384491114701 1596 | 1594,1.0,0.0,0.473597359736 1597 | 1595,1.0,1.0,0.69133192389 1598 | 1596,1.0,1.0,0.69133192389 1599 | 1597,1.0,1.0,0.598526703499 1600 | 1598,0.0,1.0,0.21594068582 1601 | 1599,1.0,1.0,0.598526703499 1602 | 1600,0.0,1.0,0.21594068582 1603 | 1601,0.0,1.0,0.69133192389 1604 | 1602,1.0,1.0,0.432835820896 1605 | 1603,1.0,0.0,0.598526703499 1606 | 1604,0.0,0.0,0.384491114701 1607 | 1605,1.0,0.0,0.705020920502 1608 | 1606,0.0,1.0,0.598526703499 1609 | 1607,1.0,1.0,0.705020920502 1610 | 1608,0.0,0.0,0.21594068582 1611 | 1609,1.0,1.0,0.21594068582 1612 | 1610,1.0,1.0,0.56401384083 1613 | 1611,0.0,1.0,0.473597359736 1614 | 1612,0.0,0.0,0.432835820896 1615 | 1613,1.0,1.0,0.307692307692 1616 | 1614,0.0,1.0,0.777142857143 1617 | 1615,0.0,1.0,0.705020920502 1618 | 1616,1.0,0.0,0.432835820896 1619 | 1617,0.0,0.0,0.432835820896 1620 | 1618,0.0,1.0,0.598526703499 1621 | 1619,1.0,1.0,0.384491114701 1622 | 1620,1.0,1.0,0.473597359736 1623 | 1621,0.0,1.0,0.307692307692 1624 | 1622,0.0,0.0,0.384491114701 1625 | 1623,1.0,1.0,0.777142857143 1626 | 1624,0.0,1.0,0.307692307692 1627 | 1625,0.0,1.0,0.307692307692 1628 | 1626,1.0,1.0,0.69133192389 1629 | 1627,1.0,1.0,0.384491114701 1630 | 1628,0.0,0.0,0.21594068582 1631 | 1629,0.0,1.0,0.432835820896 1632 | 1630,1.0,0.0,0.473597359736 1633 | 1631,0.0,1.0,0.21594068582 1634 | 1632,0.0,1.0,0.56401384083 1635 | 1633,0.0,0.0,0.21594068582 1636 | 1634,0.0,0.0,0.384491114701 1637 | 1635,1.0,0.0,0.21594068582 1638 | 1636,0.0,1.0,0.432835820896 1639 | 1637,0.0,1.0,0.384491114701 1640 | 1638,0.0,0.0,0.432835820896 1641 | 1639,0.0,1.0,0.307692307692 1642 | 1640,0.0,0.0,0.473597359736 1643 | 1641,0.0,1.0,0.598526703499 1644 | 1642,1.0,1.0,0.473597359736 1645 | 1643,0.0,1.0,0.21594068582 1646 | 1644,0.0,0.0,0.432835820896 1647 | 1645,1.0,0.0,0.307692307692 1648 | 1646,1.0,1.0,0.384491114701 1649 | 1647,1.0,0.0,0.21594068582 1650 | 1648,0.0,1.0,0.21594068582 1651 | 1649,1.0,1.0,0.473597359736 1652 | 1650,0.0,1.0,0.473597359736 1653 | 1651,0.0,1.0,0.598526703499 1654 | 1652,0.0,1.0,0.69133192389 1655 | 1653,1.0,1.0,0.705020920502 1656 | 1654,0.0,0.0,0.432835820896 1657 | 1655,0.0,1.0,0.384491114701 1658 | 1656,1.0,0.0,0.21594068582 1659 | 1657,0.0,0.0,0.21594068582 1660 | 1658,0.0,0.0,0.21594068582 1661 | 1659,1.0,1.0,0.384491114701 1662 | 1660,0.0,1.0,0.21594068582 1663 | 1661,0.0,1.0,0.705020920502 1664 | 1662,1.0,1.0,0.705020920502 1665 | 1663,0.0,1.0,0.432835820896 1666 | 1664,1.0,1.0,0.69133192389 1667 | 1665,0.0,1.0,0.56401384083 1668 | 1666,1.0,0.0,0.307692307692 1669 | 1667,0.0,0.0,0.21594068582 1670 | 1668,1.0,1.0,0.598526703499 1671 | 1669,1.0,0.0,0.21594068582 1672 | 1670,1.0,0.0,0.307692307692 1673 | 1671,0.0,1.0,0.705020920502 1674 | 1672,1.0,1.0,0.69133192389 1675 | 1673,0.0,1.0,0.473597359736 1676 | 1674,1.0,1.0,0.705020920502 1677 | 1675,0.0,1.0,0.473597359736 1678 | 1676,1.0,1.0,0.21594068582 1679 | 1677,1.0,1.0,0.777142857143 1680 | 1678,0.0,1.0,0.384491114701 1681 | 1679,1.0,0.0,0.777142857143 1682 | 1680,0.0,1.0,0.432835820896 1683 | 1681,0.0,1.0,0.21594068582 1684 | 1682,0.0,0.0,0.432835820896 1685 | 1683,0.0,1.0,0.21594068582 1686 | 1684,0.0,0.0,0.384491114701 1687 | 1685,1.0,0.0,0.21594068582 1688 | 1686,0.0,1.0,0.21594068582 1689 | 1687,1.0,0.0,0.384491114701 1690 | 1688,0.0,1.0,0.21594068582 1691 | 1689,0.0,1.0,0.598526703499 1692 | 1690,0.0,1.0,0.432835820896 1693 | 1691,0.0,1.0,0.21594068582 1694 | 1692,0.0,1.0,0.307692307692 1695 | 1693,0.0,1.0,0.307692307692 1696 | 1694,0.0,1.0,0.384491114701 1697 | 1695,1.0,1.0,0.598526703499 1698 | 1696,0.0,1.0,0.473597359736 1699 | 1697,0.0,0.0,0.21594068582 1700 | 1698,0.0,1.0,0.432835820896 1701 | 1699,1.0,1.0,0.777142857143 1702 | 1700,0.0,1.0,0.598526703499 1703 | 1701,0.0,0.0,0.307692307692 1704 | 1702,1.0,1.0,0.307692307692 1705 | 1703,0.0,0.0,0.21594068582 1706 | 1704,0.0,0.0,0.21594068582 1707 | 1705,0.0,0.0,0.307692307692 1708 | 1706,0.0,1.0,0.307692307692 1709 | 1707,0.0,1.0,0.432835820896 1710 | 1708,0.0,1.0,0.473597359736 1711 | 1709,1.0,1.0,0.598526703499 1712 | 1710,0.0,1.0,0.432835820896 1713 | 1711,0.0,1.0,0.56401384083 1714 | 1712,0.0,0.0,0.473597359736 1715 | 1713,1.0,1.0,0.777142857143 1716 | 1714,0.0,1.0,0.21594068582 1717 | 1715,0.0,1.0,0.307692307692 1718 | 1716,0.0,0.0,0.21594068582 1719 | 1717,1.0,0.0,0.432835820896 1720 | 1718,0.0,1.0,0.705020920502 1721 | 1719,0.0,1.0,0.69133192389 1722 | 1720,0.0,1.0,0.432835820896 1723 | 1721,1.0,1.0,0.777142857143 1724 | 1722,1.0,1.0,0.56401384083 1725 | 1723,0.0,1.0,0.432835820896 1726 | 1724,0.0,0.0,0.432835820896 1727 | 1725,0.0,1.0,0.307692307692 1728 | 1726,0.0,1.0,0.56401384083 1729 | 1727,1.0,1.0,0.432835820896 1730 | 1728,0.0,1.0,0.69133192389 1731 | 1729,0.0,0.0,0.21594068582 1732 | 1730,0.0,0.0,0.69133192389 1733 | 1731,1.0,1.0,0.56401384083 1734 | 1732,1.0,0.0,0.69133192389 1735 | 1733,1.0,1.0,0.598526703499 1736 | 1734,1.0,1.0,0.473597359736 1737 | 1735,0.0,0.0,0.69133192389 1738 | 1736,0.0,0.0,0.384491114701 1739 | 1737,0.0,0.0,0.21594068582 1740 | 1738,0.0,0.0,0.432835820896 1741 | 1739,0.0,1.0,0.705020920502 1742 | 1740,0.0,0.0,0.307692307692 1743 | 1741,1.0,1.0,0.56401384083 1744 | 1742,1.0,0.0,0.598526703499 1745 | 1743,0.0,0.0,0.384491114701 1746 | 1744,1.0,1.0,0.56401384083 1747 | 1745,1.0,0.0,0.473597359736 1748 | 1746,1.0,0.0,0.307692307692 1749 | 1747,1.0,1.0,0.777142857143 1750 | 1748,0.0,0.0,0.21594068582 1751 | 1749,1.0,1.0,0.69133192389 1752 | 1750,1.0,0.0,0.21594068582 1753 | 1751,0.0,1.0,0.473597359736 1754 | 1752,1.0,1.0,0.307692307692 1755 | 1753,1.0,0.0,0.69133192389 1756 | 1754,1.0,0.0,0.598526703499 1757 | 1755,0.0,1.0,0.473597359736 1758 | 1756,1.0,1.0,0.432835820896 1759 | 1757,0.0,0.0,0.384491114701 1760 | 1758,1.0,1.0,0.705020920502 1761 | 1759,0.0,1.0,0.384491114701 1762 | 1760,0.0,1.0,0.432835820896 1763 | 1761,0.0,0.0,0.21594068582 1764 | 1762,1.0,1.0,0.21594068582 1765 | 1763,0.0,0.0,0.69133192389 1766 | 1764,0.0,0.0,0.21594068582 1767 | 1765,0.0,1.0,0.56401384083 1768 | 1766,0.0,1.0,0.307692307692 1769 | 1767,0.0,1.0,0.56401384083 1770 | 1768,1.0,1.0,0.598526703499 1771 | 1769,0.0,0.0,0.21594068582 1772 | 1770,0.0,0.0,0.307692307692 1773 | 1771,0.0,1.0,0.598526703499 1774 | 1772,1.0,0.0,0.705020920502 1775 | 1773,1.0,1.0,0.705020920502 1776 | 1774,0.0,1.0,0.69133192389 1777 | 1775,1.0,0.0,0.56401384083 1778 | 1776,0.0,0.0,0.473597359736 1779 | 1777,0.0,1.0,0.432835820896 1780 | 1778,0.0,1.0,0.21594068582 1781 | 1779,0.0,0.0,0.21594068582 1782 | 1780,1.0,1.0,0.777142857143 1783 | 1781,0.0,0.0,0.21594068582 1784 | 1782,1.0,1.0,0.777142857143 1785 | 1783,0.0,1.0,0.598526703499 1786 | 1784,0.0,1.0,0.598526703499 1787 | 1785,1.0,1.0,0.69133192389 1788 | 1786,0.0,0.0,0.384491114701 1789 | 1787,0.0,0.0,0.56401384083 1790 | 1788,1.0,0.0,0.21594068582 1791 | 1789,0.0,0.0,0.21594068582 1792 | 1790,0.0,1.0,0.307692307692 1793 | 1791,1.0,1.0,0.56401384083 1794 | 1792,0.0,0.0,0.21594068582 1795 | 1793,1.0,1.0,0.56401384083 1796 | 1794,0.0,0.0,0.21594068582 1797 | 1795,0.0,1.0,0.307692307692 1798 | 1796,1.0,0.0,0.598526703499 1799 | 1797,1.0,1.0,0.777142857143 1800 | 1798,1.0,1.0,0.777142857143 1801 | 1799,1.0,1.0,0.705020920502 1802 | 1800,0.0,1.0,0.56401384083 1803 | 1801,1.0,1.0,0.777142857143 1804 | 1802,1.0,1.0,0.473597359736 1805 | 1803,1.0,0.0,0.432835820896 1806 | 1804,0.0,0.0,0.21594068582 1807 | 1805,1.0,0.0,0.705020920502 1808 | 1806,1.0,1.0,0.473597359736 1809 | 1807,1.0,1.0,0.69133192389 1810 | 1808,1.0,1.0,0.432835820896 1811 | 1809,0.0,1.0,0.56401384083 1812 | 1810,0.0,1.0,0.432835820896 1813 | 1811,1.0,1.0,0.307692307692 1814 | 1812,0.0,0.0,0.384491114701 1815 | 1813,0.0,0.0,0.473597359736 1816 | 1814,1.0,1.0,0.307692307692 1817 | 1815,1.0,0.0,0.598526703499 1818 | 1816,0.0,1.0,0.307692307692 1819 | 1817,1.0,0.0,0.473597359736 1820 | 1818,0.0,1.0,0.307692307692 1821 | 1819,0.0,0.0,0.307692307692 1822 | 1820,0.0,0.0,0.384491114701 1823 | 1821,1.0,0.0,0.473597359736 1824 | 1822,0.0,0.0,0.21594068582 1825 | 1823,0.0,0.0,0.432835820896 1826 | 1824,0.0,0.0,0.21594068582 1827 | 1825,1.0,0.0,0.69133192389 1828 | 1826,0.0,0.0,0.56401384083 1829 | 1827,0.0,0.0,0.307692307692 1830 | 1828,0.0,0.0,0.432835820896 1831 | 1829,1.0,1.0,0.432835820896 1832 | 1830,1.0,1.0,0.69133192389 1833 | 1831,0.0,0.0,0.21594068582 1834 | 1832,0.0,1.0,0.777142857143 1835 | 1833,1.0,1.0,0.56401384083 1836 | 1834,1.0,0.0,0.432835820896 1837 | 1835,1.0,1.0,0.777142857143 1838 | 1836,0.0,1.0,0.21594068582 1839 | 1837,1.0,0.0,0.21594068582 1840 | 1838,1.0,1.0,0.69133192389 1841 | 1839,0.0,1.0,0.56401384083 1842 | 1840,0.0,0.0,0.21594068582 1843 | 1841,1.0,1.0,0.598526703499 1844 | 1842,0.0,1.0,0.56401384083 1845 | 1843,1.0,1.0,0.21594068582 1846 | 1844,1.0,1.0,0.384491114701 1847 | 1845,1.0,1.0,0.598526703499 1848 | 1846,0.0,0.0,0.384491114701 1849 | 1847,1.0,1.0,0.384491114701 1850 | 1848,1.0,0.0,0.432835820896 1851 | 1849,1.0,1.0,0.384491114701 1852 | 1850,0.0,1.0,0.21594068582 1853 | 1851,1.0,1.0,0.432835820896 1854 | 1852,1.0,1.0,0.307692307692 1855 | 1853,0.0,0.0,0.21594068582 1856 | 1854,0.0,1.0,0.432835820896 1857 | 1855,0.0,1.0,0.21594068582 1858 | 1856,1.0,1.0,0.705020920502 1859 | 1857,1.0,1.0,0.598526703499 1860 | 1858,0.0,1.0,0.56401384083 1861 | 1859,1.0,1.0,0.705020920502 1862 | 1860,1.0,1.0,0.705020920502 1863 | 1861,0.0,1.0,0.384491114701 1864 | 1862,0.0,0.0,0.21594068582 1865 | 1863,0.0,1.0,0.432835820896 1866 | 1864,1.0,1.0,0.307692307692 1867 | 1865,1.0,1.0,0.473597359736 1868 | 1866,0.0,0.0,0.69133192389 1869 | 1867,0.0,1.0,0.705020920502 1870 | 1868,1.0,0.0,0.473597359736 1871 | 1869,1.0,1.0,0.21594068582 1872 | 1870,0.0,0.0,0.21594068582 1873 | 1871,1.0,1.0,0.69133192389 1874 | 1872,0.0,0.0,0.21594068582 1875 | 1873,1.0,1.0,0.56401384083 1876 | 1874,1.0,0.0,0.69133192389 1877 | 1875,0.0,1.0,0.473597359736 1878 | 1876,0.0,1.0,0.598526703499 1879 | 1877,1.0,1.0,0.777142857143 1880 | 1878,0.0,1.0,0.777142857143 1881 | 1879,1.0,1.0,0.21594068582 1882 | 1880,1.0,1.0,0.432835820896 1883 | 1881,0.0,1.0,0.21594068582 1884 | 1882,0.0,1.0,0.307692307692 1885 | 1883,1.0,0.0,0.69133192389 1886 | 1884,0.0,0.0,0.21594068582 1887 | 1885,1.0,0.0,0.384491114701 1888 | 1886,0.0,1.0,0.56401384083 1889 | 1887,0.0,1.0,0.384491114701 1890 | 1888,0.0,0.0,0.307692307692 1891 | 1889,0.0,0.0,0.307692307692 1892 | 1890,1.0,0.0,0.432835820896 1893 | 1891,1.0,1.0,0.473597359736 1894 | 1892,0.0,0.0,0.384491114701 1895 | 1893,1.0,1.0,0.307692307692 1896 | 1894,1.0,1.0,0.473597359736 1897 | 1895,0.0,1.0,0.307692307692 1898 | 1896,1.0,0.0,0.473597359736 1899 | 1897,0.0,0.0,0.307692307692 1900 | 1898,1.0,1.0,0.777142857143 1901 | 1899,0.0,0.0,0.21594068582 1902 | 1900,1.0,1.0,0.56401384083 1903 | 1901,0.0,1.0,0.307692307692 1904 | 1902,1.0,1.0,0.777142857143 1905 | 1903,0.0,0.0,0.56401384083 1906 | 1904,1.0,0.0,0.56401384083 1907 | 1905,0.0,0.0,0.21594068582 1908 | 1906,1.0,1.0,0.69133192389 1909 | 1907,1.0,0.0,0.598526703499 1910 | 1908,1.0,1.0,0.69133192389 1911 | 1909,1.0,0.0,0.307692307692 1912 | 1910,0.0,0.0,0.384491114701 1913 | 1911,1.0,1.0,0.56401384083 1914 | 1912,1.0,1.0,0.598526703499 1915 | 1913,1.0,1.0,0.69133192389 1916 | 1914,0.0,0.0,0.307692307692 1917 | 1915,0.0,1.0,0.21594068582 1918 | 1916,1.0,1.0,0.384491114701 1919 | 1917,1.0,1.0,0.384491114701 1920 | 1918,0.0,1.0,0.384491114701 1921 | 1919,0.0,1.0,0.69133192389 1922 | 1920,0.0,1.0,0.21594068582 1923 | 1921,0.0,0.0,0.307692307692 1924 | 1922,1.0,1.0,0.56401384083 1925 | 1923,1.0,0.0,0.21594068582 1926 | 1924,0.0,0.0,0.384491114701 1927 | 1925,1.0,0.0,0.473597359736 1928 | 1926,1.0,1.0,0.777142857143 1929 | 1927,1.0,1.0,0.307692307692 1930 | 1928,1.0,0.0,0.384491114701 1931 | 1929,0.0,0.0,0.473597359736 1932 | 1930,1.0,1.0,0.69133192389 1933 | 1931,1.0,1.0,0.777142857143 1934 | 1932,0.0,1.0,0.307692307692 1935 | 1933,1.0,1.0,0.432835820896 1936 | 1934,0.0,0.0,0.21594068582 1937 | 1935,1.0,1.0,0.598526703499 1938 | 1936,1.0,1.0,0.307692307692 1939 | 1937,0.0,0.0,0.56401384083 1940 | 1938,0.0,0.0,0.21594068582 1941 | 1939,0.0,1.0,0.705020920502 1942 | 1940,0.0,1.0,0.598526703499 1943 | 1941,0.0,1.0,0.307692307692 1944 | 1942,1.0,1.0,0.432835820896 1945 | 1943,1.0,1.0,0.777142857143 1946 | 1944,0.0,0.0,0.56401384083 1947 | 1945,1.0,1.0,0.777142857143 1948 | 1946,0.0,1.0,0.432835820896 1949 | 1947,0.0,1.0,0.69133192389 1950 | 1948,0.0,1.0,0.473597359736 1951 | 1949,1.0,0.0,0.705020920502 1952 | 1950,0.0,0.0,0.384491114701 1953 | 1951,1.0,1.0,0.598526703499 1954 | 1952,0.0,0.0,0.21594068582 1955 | 1953,1.0,1.0,0.384491114701 1956 | 1954,1.0,1.0,0.777142857143 1957 | 1955,0.0,0.0,0.21594068582 1958 | 1956,0.0,0.0,0.307692307692 1959 | 1957,0.0,1.0,0.384491114701 1960 | 1958,0.0,0.0,0.384491114701 1961 | 1959,1.0,0.0,0.777142857143 1962 | 1960,0.0,0.0,0.21594068582 1963 | 1961,0.0,0.0,0.307692307692 1964 | 1962,1.0,0.0,0.307692307692 1965 | 1963,0.0,1.0,0.307692307692 1966 | 1964,0.0,1.0,0.473597359736 1967 | 1965,0.0,0.0,0.307692307692 1968 | 1966,0.0,1.0,0.21594068582 1969 | 1967,1.0,0.0,0.56401384083 1970 | 1968,1.0,0.0,0.21594068582 1971 | 1969,1.0,1.0,0.307692307692 1972 | 1970,0.0,1.0,0.432835820896 1973 | 1971,1.0,1.0,0.598526703499 1974 | 1972,1.0,1.0,0.56401384083 1975 | 1973,0.0,0.0,0.384491114701 1976 | 1974,0.0,0.0,0.21594068582 1977 | 1975,0.0,0.0,0.384491114701 1978 | 1976,0.0,1.0,0.21594068582 1979 | 1977,1.0,1.0,0.598526703499 1980 | 1978,1.0,1.0,0.598526703499 1981 | 1979,0.0,0.0,0.705020920502 1982 | 1980,0.0,0.0,0.598526703499 1983 | 1981,1.0,0.0,0.21594068582 1984 | 1982,1.0,0.0,0.69133192389 1985 | 1983,0.0,1.0,0.21594068582 1986 | 1984,1.0,1.0,0.384491114701 1987 | 1985,0.0,0.0,0.307692307692 1988 | 1986,0.0,1.0,0.384491114701 1989 | 1987,0.0,0.0,0.473597359736 1990 | 1988,1.0,0.0,0.21594068582 1991 | 1989,0.0,0.0,0.432835820896 1992 | 1990,1.0,1.0,0.432835820896 1993 | 1991,0.0,0.0,0.21594068582 1994 | 1992,1.0,0.0,0.473597359736 1995 | 1993,0.0,1.0,0.21594068582 1996 | 1994,1.0,1.0,0.598526703499 1997 | 1995,1.0,1.0,0.69133192389 1998 | 1996,1.0,1.0,0.56401384083 1999 | 1997,0.0,1.0,0.21594068582 2000 | 1998,1.0,0.0,0.384491114701 2001 | 1999,0.0,0.0,0.56401384083 2002 | 2000,1.0,1.0,0.705020920502 2003 | 2001,1.0,1.0,0.598526703499 2004 | 2002,0.0,1.0,0.21594068582 2005 | 2003,1.0,0.0,0.69133192389 2006 | 2004,0.0,1.0,0.307692307692 2007 | 2005,0.0,0.0,0.21594068582 2008 | 2006,0.0,1.0,0.777142857143 2009 | 2007,1.0,1.0,0.598526703499 2010 | 2008,0.0,0.0,0.598526703499 2011 | 2009,0.0,0.0,0.598526703499 2012 | 2010,1.0,1.0,0.56401384083 2013 | 2011,1.0,1.0,0.598526703499 2014 | 2012,0.0,0.0,0.21594068582 2015 | 2013,0.0,0.0,0.21594068582 2016 | 2014,0.0,0.0,0.384491114701 2017 | 2015,0.0,1.0,0.432835820896 2018 | 2016,0.0,1.0,0.56401384083 2019 | 2017,0.0,1.0,0.307692307692 2020 | 2018,0.0,0.0,0.56401384083 2021 | 2019,1.0,1.0,0.432835820896 2022 | 2020,1.0,1.0,0.56401384083 2023 | 2021,0.0,0.0,0.21594068582 2024 | 2022,1.0,0.0,0.598526703499 2025 | 2023,0.0,1.0,0.384491114701 2026 | 2024,1.0,1.0,0.56401384083 2027 | 2025,1.0,1.0,0.69133192389 2028 | 2026,1.0,1.0,0.432835820896 2029 | 2027,0.0,1.0,0.307692307692 2030 | 2028,0.0,1.0,0.432835820896 2031 | 2029,0.0,1.0,0.705020920502 2032 | 2030,0.0,1.0,0.432835820896 2033 | 2031,0.0,0.0,0.21594068582 2034 | 2032,1.0,1.0,0.56401384083 2035 | 2033,0.0,1.0,0.598526703499 2036 | 2034,0.0,1.0,0.56401384083 2037 | 2035,0.0,1.0,0.307692307692 2038 | 2036,0.0,1.0,0.473597359736 2039 | 2037,0.0,1.0,0.473597359736 2040 | 2038,1.0,0.0,0.598526703499 2041 | 2039,0.0,0.0,0.21594068582 2042 | 2040,0.0,1.0,0.307692307692 2043 | 2041,1.0,1.0,0.56401384083 2044 | 2042,0.0,1.0,0.473597359736 2045 | 2043,0.0,0.0,0.307692307692 2046 | 2044,1.0,0.0,0.384491114701 2047 | 2045,0.0,1.0,0.705020920502 2048 | 2046,1.0,1.0,0.598526703499 2049 | 2047,1.0,1.0,0.705020920502 2050 | 2048,1.0,1.0,0.21594068582 2051 | 2049,1.0,1.0,0.307692307692 2052 | 2050,0.0,1.0,0.307692307692 2053 | 2051,0.0,1.0,0.705020920502 2054 | 2052,0.0,0.0,0.21594068582 2055 | 2053,0.0,0.0,0.21594068582 2056 | 2054,0.0,0.0,0.307692307692 2057 | 2055,1.0,1.0,0.432835820896 2058 | 2056,0.0,1.0,0.432835820896 2059 | 2057,1.0,0.0,0.69133192389 2060 | 2058,0.0,0.0,0.21594068582 2061 | 2059,0.0,0.0,0.21594068582 2062 | 2060,0.0,1.0,0.21594068582 2063 | 2061,0.0,1.0,0.21594068582 2064 | 2062,1.0,1.0,0.598526703499 2065 | 2063,1.0,0.0,0.307692307692 2066 | 2064,0.0,1.0,0.21594068582 2067 | 2065,1.0,1.0,0.56401384083 2068 | 2066,0.0,0.0,0.21594068582 2069 | 2067,0.0,1.0,0.598526703499 2070 | 2068,0.0,1.0,0.705020920502 2071 | 2069,1.0,0.0,0.705020920502 2072 | 2070,0.0,0.0,0.21594068582 2073 | 2071,1.0,1.0,0.598526703499 2074 | 2072,1.0,1.0,0.69133192389 2075 | 2073,0.0,1.0,0.21594068582 2076 | 2074,0.0,1.0,0.21594068582 2077 | 2075,0.0,0.0,0.307692307692 2078 | 2076,0.0,0.0,0.307692307692 2079 | 2077,0.0,0.0,0.705020920502 2080 | 2078,0.0,0.0,0.21594068582 2081 | 2079,0.0,1.0,0.432835820896 2082 | 2080,0.0,1.0,0.473597359736 2083 | 2081,1.0,1.0,0.69133192389 2084 | 2082,0.0,1.0,0.432835820896 2085 | 2083,0.0,1.0,0.21594068582 2086 | 2084,1.0,0.0,0.56401384083 2087 | 2085,0.0,0.0,0.56401384083 2088 | 2086,1.0,1.0,0.69133192389 2089 | 2087,1.0,1.0,0.777142857143 2090 | 2088,1.0,1.0,0.56401384083 2091 | 2089,1.0,0.0,0.307692307692 2092 | 2090,0.0,1.0,0.307692307692 2093 | 2091,0.0,1.0,0.69133192389 2094 | 2092,1.0,1.0,0.473597359736 2095 | 2093,1.0,1.0,0.705020920502 2096 | 2094,1.0,0.0,0.705020920502 2097 | 2095,1.0,0.0,0.307692307692 2098 | 2096,1.0,0.0,0.473597359736 2099 | 2097,0.0,1.0,0.21594068582 2100 | 2098,0.0,0.0,0.21594068582 2101 | 2099,1.0,1.0,0.705020920502 2102 | 2100,1.0,0.0,0.473597359736 2103 | 2101,0.0,0.0,0.21594068582 2104 | 2102,0.0,0.0,0.21594068582 2105 | 2103,1.0,0.0,0.307692307692 2106 | 2104,0.0,1.0,0.473597359736 2107 | 2105,0.0,0.0,0.384491114701 2108 | 2106,0.0,1.0,0.473597359736 2109 | 2107,1.0,1.0,0.777142857143 2110 | 2108,0.0,0.0,0.21594068582 2111 | 2109,0.0,0.0,0.384491114701 2112 | 2110,1.0,1.0,0.598526703499 2113 | 2111,0.0,0.0,0.432835820896 2114 | 2112,0.0,0.0,0.21594068582 2115 | 2113,0.0,0.0,0.384491114701 2116 | 2114,0.0,0.0,0.432835820896 2117 | 2115,1.0,0.0,0.432835820896 2118 | 2116,1.0,1.0,0.598526703499 2119 | 2117,0.0,1.0,0.56401384083 2120 | 2118,0.0,1.0,0.307692307692 2121 | 2119,1.0,1.0,0.598526703499 2122 | 2120,0.0,0.0,0.21594068582 2123 | 2121,1.0,1.0,0.21594068582 2124 | 2122,0.0,1.0,0.21594068582 2125 | 2123,1.0,0.0,0.307692307692 2126 | 2124,1.0,0.0,0.473597359736 2127 | 2125,1.0,0.0,0.432835820896 2128 | 2126,1.0,1.0,0.307692307692 2129 | 2127,1.0,1.0,0.473597359736 2130 | 2128,0.0,1.0,0.432835820896 2131 | 2129,1.0,1.0,0.69133192389 2132 | 2130,0.0,1.0,0.432835820896 2133 | 2131,0.0,1.0,0.384491114701 2134 | 2132,1.0,1.0,0.473597359736 2135 | 2133,1.0,1.0,0.705020920502 2136 | 2134,1.0,0.0,0.56401384083 2137 | 2135,0.0,1.0,0.307692307692 2138 | 2136,1.0,0.0,0.69133192389 2139 | 2137,0.0,1.0,0.56401384083 2140 | 2138,0.0,0.0,0.21594068582 2141 | 2139,0.0,0.0,0.384491114701 2142 | 2140,0.0,1.0,0.21594068582 2143 | 2141,1.0,1.0,0.384491114701 2144 | 2142,0.0,1.0,0.777142857143 2145 | 2143,0.0,0.0,0.307692307692 2146 | 2144,1.0,1.0,0.598526703499 2147 | 2145,1.0,1.0,0.69133192389 2148 | 2146,0.0,1.0,0.473597359736 2149 | 2147,1.0,1.0,0.384491114701 2150 | 2148,0.0,0.0,0.21594068582 2151 | 2149,0.0,1.0,0.384491114701 2152 | 2150,0.0,1.0,0.307692307692 2153 | 2151,1.0,1.0,0.56401384083 2154 | 2152,0.0,0.0,0.21594068582 2155 | 2153,0.0,0.0,0.21594068582 2156 | 2154,0.0,0.0,0.307692307692 2157 | 2155,0.0,0.0,0.21594068582 2158 | 2156,0.0,1.0,0.777142857143 2159 | 2157,0.0,1.0,0.473597359736 2160 | 2158,0.0,1.0,0.432835820896 2161 | 2159,1.0,1.0,0.777142857143 2162 | 2160,0.0,0.0,0.432835820896 2163 | 2161,0.0,0.0,0.307692307692 2164 | 2162,1.0,1.0,0.56401384083 2165 | 2163,1.0,1.0,0.473597359736 2166 | 2164,0.0,0.0,0.384491114701 2167 | 2165,1.0,0.0,0.384491114701 2168 | 2166,1.0,0.0,0.21594068582 2169 | 2167,0.0,1.0,0.307692307692 2170 | 2168,1.0,1.0,0.69133192389 2171 | 2169,1.0,0.0,0.384491114701 2172 | 2170,0.0,0.0,0.21594068582 2173 | 2171,1.0,1.0,0.69133192389 2174 | 2172,0.0,0.0,0.432835820896 2175 | 2173,1.0,1.0,0.705020920502 2176 | 2174,0.0,1.0,0.307692307692 2177 | 2175,1.0,1.0,0.69133192389 2178 | 2176,1.0,0.0,0.69133192389 2179 | 2177,1.0,1.0,0.473597359736 2180 | 2178,0.0,0.0,0.307692307692 2181 | 2179,0.0,1.0,0.384491114701 2182 | 2180,1.0,1.0,0.21594068582 2183 | 2181,0.0,1.0,0.56401384083 2184 | 2182,1.0,1.0,0.384491114701 2185 | 2183,1.0,1.0,0.432835820896 2186 | 2184,0.0,0.0,0.307692307692 2187 | 2185,1.0,1.0,0.705020920502 2188 | 2186,0.0,1.0,0.473597359736 2189 | 2187,0.0,1.0,0.56401384083 2190 | 2188,1.0,1.0,0.777142857143 2191 | 2189,0.0,0.0,0.56401384083 2192 | 2190,1.0,1.0,0.777142857143 2193 | 2191,0.0,0.0,0.384491114701 2194 | 2192,1.0,1.0,0.21594068582 2195 | 2193,1.0,1.0,0.307692307692 2196 | 2194,0.0,1.0,0.473597359736 2197 | 2195,1.0,0.0,0.705020920502 2198 | 2196,0.0,0.0,0.432835820896 2199 | 2197,0.0,0.0,0.21594068582 2200 | 2198,0.0,1.0,0.307692307692 2201 | 2199,0.0,0.0,0.21594068582 2202 | 2200,0.0,0.0,0.21594068582 2203 | 2201,1.0,1.0,0.69133192389 2204 | 2202,1.0,1.0,0.777142857143 2205 | 2203,0.0,0.0,0.598526703499 2206 | 2204,1.0,0.0,0.21594068582 2207 | 2205,0.0,1.0,0.384491114701 2208 | 2206,0.0,0.0,0.307692307692 2209 | 2207,1.0,1.0,0.598526703499 2210 | 2208,0.0,0.0,0.21594068582 2211 | 2209,0.0,0.0,0.384491114701 2212 | 2210,0.0,0.0,0.384491114701 2213 | 2211,1.0,1.0,0.598526703499 2214 | 2212,1.0,1.0,0.473597359736 2215 | 2213,0.0,1.0,0.21594068582 2216 | 2214,0.0,0.0,0.598526703499 2217 | 2215,1.0,0.0,0.473597359736 2218 | 2216,1.0,1.0,0.384491114701 2219 | 2217,1.0,1.0,0.432835820896 2220 | 2218,1.0,1.0,0.384491114701 2221 | 2219,1.0,1.0,0.598526703499 2222 | 2220,1.0,1.0,0.21594068582 2223 | 2221,0.0,1.0,0.21594068582 2224 | 2222,1.0,1.0,0.705020920502 2225 | 2223,1.0,1.0,0.473597359736 2226 | 2224,0.0,1.0,0.473597359736 2227 | 2225,0.0,0.0,0.307692307692 2228 | 2226,0.0,1.0,0.384491114701 2229 | 2227,0.0,0.0,0.307692307692 2230 | 2228,0.0,0.0,0.21594068582 2231 | 2229,1.0,1.0,0.777142857143 2232 | 2230,0.0,1.0,0.56401384083 2233 | 2231,0.0,0.0,0.56401384083 2234 | 2232,0.0,1.0,0.598526703499 2235 | 2233,1.0,0.0,0.705020920502 2236 | 2234,1.0,1.0,0.69133192389 2237 | 2235,0.0,0.0,0.598526703499 2238 | 2236,0.0,1.0,0.21594068582 2239 | 2237,0.0,1.0,0.21594068582 2240 | 2238,0.0,0.0,0.598526703499 2241 | 2239,0.0,0.0,0.21594068582 2242 | 2240,1.0,1.0,0.69133192389 2243 | 2241,0.0,1.0,0.432835820896 2244 | 2242,0.0,1.0,0.21594068582 2245 | 2243,0.0,0.0,0.432835820896 2246 | 2244,0.0,1.0,0.69133192389 2247 | 2245,0.0,1.0,0.384491114701 2248 | 2246,0.0,1.0,0.473597359736 2249 | 2247,1.0,0.0,0.69133192389 2250 | 2248,1.0,0.0,0.56401384083 2251 | 2249,0.0,1.0,0.598526703499 2252 | 2250,1.0,0.0,0.384491114701 2253 | 2251,0.0,1.0,0.56401384083 2254 | 2252,1.0,0.0,0.69133192389 2255 | 2253,1.0,0.0,0.56401384083 2256 | 2254,0.0,1.0,0.473597359736 2257 | 2255,0.0,1.0,0.384491114701 2258 | 2256,0.0,0.0,0.21594068582 2259 | 2257,1.0,1.0,0.473597359736 2260 | 2258,0.0,1.0,0.307692307692 2261 | 2259,0.0,0.0,0.21594068582 2262 | 2260,0.0,0.0,0.307692307692 2263 | 2261,1.0,0.0,0.432835820896 2264 | 2262,0.0,0.0,0.432835820896 2265 | 2263,1.0,0.0,0.432835820896 2266 | 2264,1.0,0.0,0.432835820896 2267 | 2265,0.0,0.0,0.21594068582 2268 | 2266,1.0,0.0,0.432835820896 2269 | 2267,0.0,1.0,0.21594068582 2270 | 2268,0.0,1.0,0.21594068582 2271 | 2269,0.0,0.0,0.307692307692 2272 | 2270,0.0,1.0,0.473597359736 2273 | 2271,0.0,1.0,0.56401384083 2274 | 2272,0.0,1.0,0.473597359736 2275 | 2273,0.0,0.0,0.384491114701 2276 | 2274,1.0,0.0,0.473597359736 2277 | 2275,0.0,1.0,0.705020920502 2278 | 2276,0.0,0.0,0.384491114701 2279 | 2277,1.0,1.0,0.777142857143 2280 | 2278,0.0,1.0,0.56401384083 2281 | 2279,0.0,1.0,0.384491114701 2282 | 2280,1.0,1.0,0.432835820896 2283 | 2281,0.0,1.0,0.432835820896 2284 | 2282,1.0,0.0,0.69133192389 2285 | 2283,1.0,1.0,0.777142857143 2286 | 2284,0.0,1.0,0.705020920502 2287 | 2285,1.0,1.0,0.21594068582 2288 | 2286,1.0,0.0,0.705020920502 2289 | 2287,1.0,0.0,0.56401384083 2290 | 2288,1.0,1.0,0.705020920502 2291 | 2289,0.0,1.0,0.69133192389 2292 | 2290,0.0,1.0,0.384491114701 2293 | 2291,1.0,1.0,0.307692307692 2294 | 2292,0.0,0.0,0.21594068582 2295 | 2293,1.0,0.0,0.56401384083 2296 | 2294,1.0,0.0,0.56401384083 2297 | 2295,0.0,0.0,0.21594068582 2298 | 2296,0.0,0.0,0.56401384083 2299 | 2297,0.0,0.0,0.21594068582 2300 | 2298,0.0,1.0,0.473597359736 2301 | 2299,1.0,1.0,0.307692307692 2302 | 2300,1.0,1.0,0.69133192389 2303 | 2301,1.0,1.0,0.432835820896 2304 | 2302,0.0,0.0,0.21594068582 2305 | 2303,1.0,1.0,0.56401384083 2306 | 2304,1.0,1.0,0.384491114701 2307 | 2305,0.0,1.0,0.473597359736 2308 | 2306,1.0,0.0,0.69133192389 2309 | 2307,1.0,1.0,0.69133192389 2310 | 2308,0.0,0.0,0.21594068582 2311 | 2309,0.0,1.0,0.56401384083 2312 | 2310,0.0,1.0,0.21594068582 2313 | 2311,0.0,1.0,0.705020920502 2314 | 2312,1.0,1.0,0.777142857143 2315 | 2313,1.0,1.0,0.473597359736 2316 | 2314,0.0,1.0,0.21594068582 2317 | 2315,1.0,1.0,0.705020920502 2318 | 2316,1.0,1.0,0.432835820896 2319 | 2317,1.0,1.0,0.777142857143 2320 | 2318,1.0,0.0,0.307692307692 2321 | 2319,1.0,0.0,0.473597359736 2322 | 2320,1.0,1.0,0.21594068582 2323 | 2321,1.0,1.0,0.777142857143 2324 | 2322,1.0,0.0,0.432835820896 2325 | 2323,0.0,0.0,0.432835820896 2326 | 2324,0.0,1.0,0.598526703499 2327 | 2325,0.0,0.0,0.432835820896 2328 | 2326,0.0,0.0,0.384491114701 2329 | 2327,1.0,0.0,0.705020920502 2330 | 2328,0.0,1.0,0.598526703499 2331 | 2329,0.0,0.0,0.384491114701 2332 | 2330,1.0,1.0,0.384491114701 2333 | 2331,1.0,1.0,0.777142857143 2334 | 2332,0.0,0.0,0.473597359736 2335 | 2333,0.0,0.0,0.21594068582 2336 | 2334,1.0,0.0,0.777142857143 2337 | 2335,0.0,0.0,0.21594068582 2338 | 2336,1.0,0.0,0.21594068582 2339 | 2337,1.0,1.0,0.777142857143 2340 | 2338,1.0,1.0,0.56401384083 2341 | 2339,0.0,0.0,0.432835820896 2342 | 2340,1.0,1.0,0.69133192389 2343 | 2341,0.0,1.0,0.69133192389 2344 | 2342,1.0,1.0,0.56401384083 2345 | 2343,0.0,1.0,0.384491114701 2346 | 2344,1.0,1.0,0.705020920502 2347 | 2345,0.0,0.0,0.432835820896 2348 | 2346,1.0,1.0,0.56401384083 2349 | 2347,0.0,0.0,0.432835820896 2350 | 2348,0.0,1.0,0.384491114701 2351 | 2349,1.0,0.0,0.432835820896 2352 | 2350,1.0,1.0,0.777142857143 2353 | 2351,1.0,0.0,0.473597359736 2354 | 2352,0.0,1.0,0.21594068582 2355 | 2353,1.0,1.0,0.705020920502 2356 | 2354,1.0,1.0,0.705020920502 2357 | 2355,1.0,0.0,0.432835820896 2358 | 2356,1.0,0.0,0.69133192389 2359 | 2357,1.0,0.0,0.69133192389 2360 | 2358,1.0,1.0,0.473597359736 2361 | 2359,0.0,1.0,0.21594068582 2362 | 2360,1.0,1.0,0.705020920502 2363 | 2361,1.0,1.0,0.307692307692 2364 | 2362,1.0,1.0,0.598526703499 2365 | 2363,1.0,0.0,0.21594068582 2366 | 2364,0.0,1.0,0.384491114701 2367 | 2365,0.0,1.0,0.56401384083 2368 | 2366,0.0,1.0,0.384491114701 2369 | 2367,0.0,0.0,0.21594068582 2370 | 2368,0.0,1.0,0.56401384083 2371 | 2369,0.0,0.0,0.473597359736 2372 | 2370,1.0,1.0,0.705020920502 2373 | 2371,1.0,1.0,0.598526703499 2374 | 2372,0.0,0.0,0.307692307692 2375 | 2373,0.0,1.0,0.473597359736 2376 | 2374,1.0,1.0,0.432835820896 2377 | 2375,0.0,1.0,0.69133192389 2378 | 2376,1.0,1.0,0.705020920502 2379 | 2377,0.0,1.0,0.432835820896 2380 | 2378,1.0,1.0,0.69133192389 2381 | 2379,0.0,0.0,0.384491114701 2382 | 2380,1.0,1.0,0.432835820896 2383 | 2381,0.0,1.0,0.432835820896 2384 | 2382,1.0,1.0,0.598526703499 2385 | 2383,0.0,0.0,0.21594068582 2386 | 2384,0.0,1.0,0.21594068582 2387 | 2385,1.0,0.0,0.705020920502 2388 | 2386,0.0,0.0,0.705020920502 2389 | 2387,0.0,0.0,0.21594068582 2390 | 2388,0.0,1.0,0.384491114701 2391 | 2389,0.0,1.0,0.69133192389 2392 | 2390,1.0,1.0,0.777142857143 2393 | 2391,0.0,1.0,0.69133192389 2394 | 2392,1.0,0.0,0.473597359736 2395 | 2393,1.0,1.0,0.69133192389 2396 | 2394,1.0,1.0,0.598526703499 2397 | 2395,1.0,1.0,0.432835820896 2398 | 2396,1.0,1.0,0.705020920502 2399 | 2397,0.0,1.0,0.56401384083 2400 | 2398,0.0,0.0,0.432835820896 2401 | 2399,0.0,1.0,0.705020920502 2402 | 2400,1.0,1.0,0.384491114701 2403 | 2401,0.0,0.0,0.473597359736 2404 | 2402,1.0,1.0,0.69133192389 2405 | 2403,0.0,1.0,0.777142857143 2406 | 2404,1.0,1.0,0.56401384083 2407 | 2405,1.0,1.0,0.69133192389 2408 | 2406,1.0,0.0,0.598526703499 2409 | 2407,0.0,1.0,0.705020920502 2410 | 2408,0.0,1.0,0.432835820896 2411 | 2409,0.0,0.0,0.21594068582 2412 | 2410,0.0,1.0,0.307692307692 2413 | 2411,1.0,1.0,0.307692307692 2414 | 2412,1.0,1.0,0.69133192389 2415 | 2413,1.0,0.0,0.307692307692 2416 | 2414,1.0,1.0,0.56401384083 2417 | 2415,1.0,0.0,0.21594068582 2418 | 2416,0.0,0.0,0.307692307692 2419 | 2417,1.0,1.0,0.598526703499 2420 | 2418,0.0,0.0,0.21594068582 2421 | 2419,0.0,0.0,0.473597359736 2422 | 2420,1.0,1.0,0.56401384083 2423 | 2421,0.0,1.0,0.705020920502 2424 | 2422,0.0,0.0,0.21594068582 2425 | 2423,1.0,1.0,0.473597359736 2426 | 2424,1.0,0.0,0.473597359736 2427 | 2425,1.0,1.0,0.69133192389 2428 | 2426,1.0,0.0,0.432835820896 2429 | 2427,0.0,0.0,0.21594068582 2430 | 2428,1.0,1.0,0.598526703499 2431 | 2429,1.0,1.0,0.705020920502 2432 | 2430,1.0,1.0,0.384491114701 2433 | 2431,1.0,1.0,0.705020920502 2434 | 2432,1.0,0.0,0.384491114701 2435 | 2433,0.0,0.0,0.56401384083 2436 | 2434,0.0,0.0,0.21594068582 2437 | 2435,0.0,1.0,0.307692307692 2438 | 2436,1.0,1.0,0.432835820896 2439 | 2437,0.0,1.0,0.473597359736 2440 | 2438,1.0,0.0,0.307692307692 2441 | 2439,1.0,1.0,0.432835820896 2442 | 2440,1.0,1.0,0.705020920502 2443 | 2441,0.0,0.0,0.21594068582 2444 | 2442,0.0,1.0,0.307692307692 2445 | 2443,0.0,1.0,0.598526703499 2446 | 2444,1.0,1.0,0.777142857143 2447 | 2445,1.0,0.0,0.21594068582 2448 | 2446,0.0,1.0,0.21594068582 2449 | 2447,1.0,0.0,0.777142857143 2450 | 2448,0.0,0.0,0.384491114701 2451 | 2449,0.0,0.0,0.307692307692 2452 | 2450,1.0,1.0,0.21594068582 2453 | 2451,0.0,0.0,0.307692307692 2454 | 2452,0.0,0.0,0.432835820896 2455 | 2453,0.0,0.0,0.384491114701 2456 | 2454,1.0,1.0,0.307692307692 2457 | 2455,0.0,1.0,0.705020920502 2458 | 2456,0.0,0.0,0.307692307692 2459 | 2457,0.0,1.0,0.705020920502 2460 | 2458,1.0,0.0,0.21594068582 2461 | 2459,0.0,0.0,0.598526703499 2462 | 2460,1.0,0.0,0.598526703499 2463 | 2461,1.0,1.0,0.777142857143 2464 | 2462,0.0,0.0,0.21594068582 2465 | 2463,0.0,0.0,0.21594068582 2466 | 2464,0.0,0.0,0.473597359736 2467 | 2465,1.0,1.0,0.307692307692 2468 | 2466,0.0,0.0,0.307692307692 2469 | 2467,0.0,0.0,0.705020920502 2470 | 2468,0.0,0.0,0.473597359736 2471 | 2469,0.0,0.0,0.777142857143 2472 | 2470,0.0,1.0,0.473597359736 2473 | 2471,1.0,1.0,0.384491114701 2474 | 2472,0.0,1.0,0.432835820896 2475 | 2473,0.0,1.0,0.384491114701 2476 | 2474,0.0,0.0,0.21594068582 2477 | 2475,1.0,1.0,0.705020920502 2478 | 2476,1.0,1.0,0.705020920502 2479 | 2477,1.0,1.0,0.432835820896 2480 | 2478,0.0,1.0,0.432835820896 2481 | 2479,0.0,0.0,0.21594068582 2482 | 2480,0.0,1.0,0.384491114701 2483 | 2481,1.0,0.0,0.307692307692 2484 | 2482,0.0,1.0,0.307692307692 2485 | 2483,1.0,1.0,0.598526703499 2486 | 2484,0.0,0.0,0.21594068582 2487 | 2485,0.0,0.0,0.21594068582 2488 | 2486,1.0,1.0,0.21594068582 2489 | 2487,0.0,1.0,0.307692307692 2490 | 2488,1.0,1.0,0.69133192389 2491 | 2489,0.0,1.0,0.69133192389 2492 | 2490,0.0,1.0,0.21594068582 2493 | 2491,1.0,0.0,0.705020920502 2494 | 2492,0.0,1.0,0.598526703499 2495 | 2493,1.0,1.0,0.598526703499 2496 | 2494,1.0,1.0,0.384491114701 2497 | 2495,1.0,0.0,0.69133192389 2498 | 2496,1.0,1.0,0.432835820896 2499 | 2497,0.0,1.0,0.432835820896 2500 | 2498,0.0,1.0,0.705020920502 2501 | 2499,0.0,1.0,0.21594068582 2502 | 2500,0.0,1.0,0.384491114701 2503 | 2501,0.0,1.0,0.384491114701 2504 | 2502,1.0,0.0,0.598526703499 2505 | 2503,0.0,1.0,0.69133192389 2506 | 2504,1.0,1.0,0.777142857143 2507 | 2505,0.0,0.0,0.21594068582 2508 | 2506,1.0,1.0,0.307692307692 2509 | 2507,1.0,1.0,0.705020920502 2510 | 2508,0.0,0.0,0.56401384083 2511 | 2509,0.0,1.0,0.777142857143 2512 | 2510,0.0,1.0,0.473597359736 2513 | 2511,1.0,1.0,0.598526703499 2514 | 2512,0.0,0.0,0.21594068582 2515 | 2513,0.0,1.0,0.21594068582 2516 | 2514,1.0,1.0,0.69133192389 2517 | 2515,0.0,1.0,0.598526703499 2518 | 2516,1.0,0.0,0.21594068582 2519 | 2517,0.0,1.0,0.432835820896 2520 | 2518,1.0,1.0,0.384491114701 2521 | 2519,1.0,1.0,0.56401384083 2522 | 2520,0.0,0.0,0.473597359736 2523 | 2521,0.0,0.0,0.432835820896 2524 | 2522,1.0,0.0,0.473597359736 2525 | 2523,1.0,0.0,0.56401384083 2526 | 2524,0.0,1.0,0.307692307692 2527 | 2525,0.0,0.0,0.21594068582 2528 | 2526,0.0,1.0,0.432835820896 2529 | 2527,0.0,0.0,0.307692307692 2530 | 2528,1.0,1.0,0.473597359736 2531 | 2529,1.0,1.0,0.21594068582 2532 | 2530,1.0,1.0,0.69133192389 2533 | 2531,0.0,1.0,0.307692307692 2534 | 2532,0.0,1.0,0.777142857143 2535 | 2533,0.0,1.0,0.432835820896 2536 | 2534,0.0,0.0,0.473597359736 2537 | 2535,0.0,0.0,0.21594068582 2538 | 2536,1.0,1.0,0.56401384083 2539 | 2537,0.0,1.0,0.473597359736 2540 | 2538,1.0,1.0,0.473597359736 2541 | 2539,0.0,1.0,0.432835820896 2542 | 2540,0.0,1.0,0.307692307692 2543 | 2541,1.0,0.0,0.307692307692 2544 | 2542,0.0,0.0,0.473597359736 2545 | 2543,1.0,0.0,0.69133192389 2546 | 2544,0.0,0.0,0.384491114701 2547 | 2545,1.0,1.0,0.432835820896 2548 | 2546,1.0,1.0,0.777142857143 2549 | 2547,0.0,1.0,0.705020920502 2550 | 2548,0.0,1.0,0.69133192389 2551 | 2549,0.0,0.0,0.21594068582 2552 | 2550,1.0,0.0,0.598526703499 2553 | 2551,1.0,1.0,0.384491114701 2554 | 2552,0.0,0.0,0.705020920502 2555 | 2553,1.0,1.0,0.777142857143 2556 | 2554,1.0,1.0,0.598526703499 2557 | 2555,1.0,1.0,0.21594068582 2558 | 2556,0.0,1.0,0.777142857143 2559 | 2557,1.0,1.0,0.307692307692 2560 | 2558,0.0,1.0,0.384491114701 2561 | 2559,1.0,1.0,0.777142857143 2562 | 2560,0.0,0.0,0.21594068582 2563 | 2561,1.0,1.0,0.705020920502 2564 | 2562,0.0,1.0,0.21594068582 2565 | 2563,1.0,0.0,0.598526703499 2566 | 2564,0.0,1.0,0.384491114701 2567 | 2565,0.0,1.0,0.56401384083 2568 | 2566,1.0,1.0,0.705020920502 2569 | 2567,1.0,0.0,0.307692307692 2570 | 2568,0.0,1.0,0.56401384083 2571 | 2569,0.0,0.0,0.307692307692 2572 | 2570,1.0,1.0,0.69133192389 2573 | 2571,0.0,0.0,0.56401384083 2574 | 2572,0.0,0.0,0.473597359736 2575 | 2573,1.0,0.0,0.21594068582 2576 | 2574,0.0,0.0,0.705020920502 2577 | 2575,1.0,0.0,0.21594068582 2578 | 2576,1.0,1.0,0.777142857143 2579 | 2577,1.0,0.0,0.432835820896 2580 | 2578,1.0,1.0,0.56401384083 2581 | 2579,1.0,1.0,0.21594068582 2582 | 2580,1.0,1.0,0.777142857143 2583 | 2581,0.0,0.0,0.432835820896 2584 | 2582,1.0,1.0,0.777142857143 2585 | 2583,0.0,0.0,0.56401384083 2586 | 2584,0.0,0.0,0.21594068582 2587 | 2585,0.0,1.0,0.69133192389 2588 | 2586,1.0,1.0,0.705020920502 2589 | 2587,0.0,0.0,0.69133192389 2590 | 2588,1.0,0.0,0.307692307692 2591 | 2589,0.0,1.0,0.56401384083 2592 | 2590,0.0,0.0,0.21594068582 2593 | 2591,0.0,1.0,0.69133192389 2594 | 2592,0.0,1.0,0.307692307692 2595 | 2593,0.0,0.0,0.307692307692 2596 | 2594,1.0,0.0,0.56401384083 2597 | 2595,0.0,1.0,0.432835820896 2598 | 2596,1.0,1.0,0.473597359736 2599 | 2597,0.0,0.0,0.21594068582 2600 | 2598,0.0,0.0,0.384491114701 2601 | 2599,1.0,0.0,0.69133192389 2602 | 2600,0.0,1.0,0.69133192389 2603 | 2601,1.0,1.0,0.384491114701 2604 | 2602,0.0,1.0,0.384491114701 2605 | 2603,0.0,0.0,0.307692307692 2606 | 2604,1.0,1.0,0.777142857143 2607 | 2605,0.0,0.0,0.307692307692 2608 | 2606,1.0,0.0,0.777142857143 2609 | 2607,1.0,1.0,0.56401384083 2610 | 2608,0.0,1.0,0.21594068582 2611 | 2609,0.0,1.0,0.307692307692 2612 | 2610,0.0,0.0,0.21594068582 2613 | 2611,0.0,0.0,0.432835820896 2614 | 2612,0.0,1.0,0.384491114701 2615 | 2613,0.0,1.0,0.56401384083 2616 | 2614,1.0,1.0,0.432835820896 2617 | 2615,0.0,0.0,0.777142857143 2618 | 2616,1.0,0.0,0.384491114701 2619 | 2617,1.0,1.0,0.384491114701 2620 | 2618,1.0,0.0,0.307692307692 2621 | 2619,1.0,1.0,0.705020920502 2622 | 2620,0.0,1.0,0.307692307692 2623 | 2621,1.0,0.0,0.432835820896 2624 | 2622,0.0,1.0,0.21594068582 2625 | 2623,0.0,1.0,0.307692307692 2626 | 2624,1.0,1.0,0.69133192389 2627 | 2625,0.0,0.0,0.21594068582 2628 | 2626,0.0,0.0,0.21594068582 2629 | 2627,0.0,0.0,0.69133192389 2630 | 2628,1.0,1.0,0.473597359736 2631 | 2629,0.0,0.0,0.473597359736 2632 | 2630,1.0,1.0,0.21594068582 2633 | 2631,0.0,1.0,0.777142857143 2634 | 2632,1.0,0.0,0.307692307692 2635 | 2633,1.0,1.0,0.473597359736 2636 | 2634,0.0,1.0,0.473597359736 2637 | 2635,0.0,1.0,0.598526703499 2638 | 2636,0.0,1.0,0.432835820896 2639 | 2637,1.0,1.0,0.705020920502 2640 | 2638,0.0,1.0,0.598526703499 2641 | 2639,0.0,1.0,0.384491114701 2642 | 2640,0.0,0.0,0.21594068582 2643 | 2641,0.0,0.0,0.432835820896 2644 | 2642,0.0,1.0,0.21594068582 2645 | 2643,1.0,1.0,0.598526703499 2646 | 2644,1.0,1.0,0.307692307692 2647 | 2645,1.0,0.0,0.307692307692 2648 | 2646,0.0,0.0,0.384491114701 2649 | 2647,0.0,1.0,0.705020920502 2650 | 2648,0.0,0.0,0.21594068582 2651 | 2649,1.0,0.0,0.705020920502 2652 | 2650,0.0,0.0,0.307692307692 2653 | 2651,0.0,0.0,0.384491114701 2654 | 2652,0.0,1.0,0.777142857143 2655 | 2653,0.0,1.0,0.598526703499 2656 | 2654,0.0,0.0,0.21594068582 2657 | 2655,1.0,0.0,0.473597359736 2658 | 2656,1.0,1.0,0.307692307692 2659 | 2657,1.0,0.0,0.21594068582 2660 | 2658,0.0,0.0,0.56401384083 2661 | 2659,1.0,0.0,0.432835820896 2662 | 2660,0.0,1.0,0.69133192389 2663 | 2661,0.0,1.0,0.307692307692 2664 | 2662,1.0,1.0,0.598526703499 2665 | 2663,0.0,1.0,0.705020920502 2666 | 2664,1.0,0.0,0.384491114701 2667 | 2665,1.0,1.0,0.598526703499 2668 | 2666,0.0,1.0,0.69133192389 2669 | 2667,0.0,0.0,0.432835820896 2670 | 2668,1.0,1.0,0.777142857143 2671 | 2669,0.0,0.0,0.473597359736 2672 | 2670,1.0,1.0,0.598526703499 2673 | 2671,1.0,1.0,0.69133192389 2674 | 2672,1.0,0.0,0.598526703499 2675 | 2673,0.0,0.0,0.307692307692 2676 | 2674,0.0,0.0,0.705020920502 2677 | 2675,0.0,1.0,0.56401384083 2678 | 2676,1.0,1.0,0.384491114701 2679 | 2677,1.0,0.0,0.21594068582 2680 | 2678,1.0,1.0,0.69133192389 2681 | 2679,1.0,1.0,0.777142857143 2682 | 2680,0.0,1.0,0.69133192389 2683 | 2681,1.0,1.0,0.384491114701 2684 | 2682,0.0,1.0,0.21594068582 2685 | 2683,0.0,0.0,0.56401384083 2686 | 2684,0.0,0.0,0.432835820896 2687 | 2685,0.0,0.0,0.473597359736 2688 | 2686,0.0,1.0,0.473597359736 2689 | 2687,0.0,1.0,0.777142857143 2690 | 2688,0.0,0.0,0.21594068582 2691 | 2689,0.0,1.0,0.69133192389 2692 | 2690,0.0,0.0,0.21594068582 2693 | 2691,0.0,1.0,0.473597359736 2694 | 2692,1.0,1.0,0.307692307692 2695 | 2693,0.0,1.0,0.384491114701 2696 | 2694,1.0,0.0,0.432835820896 2697 | 2695,0.0,1.0,0.69133192389 2698 | 2696,1.0,1.0,0.56401384083 2699 | 2697,1.0,0.0,0.21594068582 2700 | 2698,1.0,1.0,0.473597359736 2701 | 2699,0.0,1.0,0.307692307692 2702 | 2700,1.0,1.0,0.69133192389 2703 | 2701,0.0,1.0,0.56401384083 2704 | 2702,1.0,1.0,0.56401384083 2705 | 2703,0.0,0.0,0.307692307692 2706 | 2704,1.0,0.0,0.384491114701 2707 | 2705,0.0,1.0,0.384491114701 2708 | 2706,1.0,1.0,0.56401384083 2709 | 2707,1.0,0.0,0.384491114701 2710 | 2708,1.0,1.0,0.432835820896 2711 | 2709,0.0,1.0,0.56401384083 2712 | 2710,0.0,0.0,0.21594068582 2713 | 2711,0.0,1.0,0.307692307692 2714 | 2712,1.0,1.0,0.307692307692 2715 | 2713,1.0,0.0,0.473597359736 2716 | 2714,0.0,1.0,0.384491114701 2717 | 2715,1.0,1.0,0.307692307692 2718 | 2716,0.0,0.0,0.432835820896 2719 | 2717,0.0,1.0,0.777142857143 2720 | 2718,1.0,0.0,0.69133192389 2721 | 2719,1.0,1.0,0.705020920502 2722 | 2720,1.0,1.0,0.705020920502 2723 | 2721,1.0,0.0,0.432835820896 2724 | 2722,0.0,1.0,0.705020920502 2725 | 2723,1.0,1.0,0.69133192389 2726 | 2724,0.0,0.0,0.21594068582 2727 | 2725,0.0,1.0,0.384491114701 2728 | 2726,1.0,1.0,0.598526703499 2729 | 2727,0.0,1.0,0.598526703499 2730 | 2728,1.0,0.0,0.21594068582 2731 | 2729,1.0,1.0,0.69133192389 2732 | 2730,0.0,1.0,0.69133192389 2733 | 2731,0.0,0.0,0.307692307692 2734 | 2732,0.0,1.0,0.777142857143 2735 | 2733,1.0,1.0,0.307692307692 2736 | 2734,0.0,1.0,0.432835820896 2737 | 2735,1.0,1.0,0.69133192389 2738 | 2736,1.0,1.0,0.777142857143 2739 | 2737,1.0,1.0,0.705020920502 2740 | 2738,1.0,1.0,0.69133192389 2741 | 2739,1.0,0.0,0.473597359736 2742 | 2740,1.0,1.0,0.69133192389 2743 | 2741,0.0,0.0,0.432835820896 2744 | 2742,0.0,0.0,0.432835820896 2745 | 2743,0.0,1.0,0.432835820896 2746 | 2744,1.0,1.0,0.432835820896 2747 | 2745,1.0,1.0,0.307692307692 2748 | 2746,1.0,1.0,0.705020920502 2749 | 2747,0.0,1.0,0.69133192389 2750 | 2748,1.0,0.0,0.432835820896 2751 | 2749,1.0,0.0,0.56401384083 2752 | 2750,1.0,1.0,0.69133192389 2753 | 2751,1.0,1.0,0.56401384083 2754 | 2752,0.0,1.0,0.307692307692 2755 | 2753,0.0,1.0,0.432835820896 2756 | 2754,0.0,1.0,0.307692307692 2757 | 2755,1.0,1.0,0.598526703499 2758 | 2756,1.0,1.0,0.705020920502 2759 | 2757,1.0,0.0,0.598526703499 2760 | 2758,0.0,1.0,0.384491114701 2761 | 2759,1.0,1.0,0.69133192389 2762 | 2760,0.0,0.0,0.384491114701 2763 | 2761,0.0,0.0,0.21594068582 2764 | 2762,1.0,0.0,0.473597359736 2765 | 2763,1.0,0.0,0.473597359736 2766 | 2764,1.0,1.0,0.384491114701 2767 | 2765,1.0,1.0,0.56401384083 2768 | 2766,1.0,0.0,0.432835820896 2769 | 2767,0.0,0.0,0.21594068582 2770 | 2768,0.0,0.0,0.307692307692 2771 | 2769,1.0,1.0,0.69133192389 2772 | 2770,1.0,1.0,0.307692307692 2773 | 2771,1.0,1.0,0.69133192389 2774 | 2772,1.0,1.0,0.307692307692 2775 | 2773,0.0,0.0,0.307692307692 2776 | 2774,1.0,1.0,0.705020920502 2777 | 2775,0.0,0.0,0.21594068582 2778 | 2776,1.0,1.0,0.69133192389 2779 | 2777,1.0,0.0,0.307692307692 2780 | 2778,1.0,0.0,0.473597359736 2781 | 2779,1.0,1.0,0.705020920502 2782 | 2780,0.0,1.0,0.598526703499 2783 | 2781,0.0,1.0,0.432835820896 2784 | 2782,1.0,0.0,0.432835820896 2785 | 2783,1.0,1.0,0.432835820896 2786 | 2784,1.0,1.0,0.432835820896 2787 | 2785,0.0,1.0,0.21594068582 2788 | 2786,0.0,0.0,0.473597359736 2789 | 2787,0.0,0.0,0.705020920502 2790 | 2788,1.0,1.0,0.598526703499 2791 | 2789,1.0,0.0,0.705020920502 2792 | 2790,0.0,0.0,0.777142857143 2793 | 2791,0.0,1.0,0.598526703499 2794 | 2792,0.0,1.0,0.307692307692 2795 | 2793,1.0,1.0,0.473597359736 2796 | 2794,0.0,0.0,0.307692307692 2797 | 2795,0.0,1.0,0.432835820896 2798 | 2796,0.0,0.0,0.384491114701 2799 | 2797,0.0,0.0,0.432835820896 2800 | 2798,1.0,1.0,0.598526703499 2801 | 2799,0.0,1.0,0.432835820896 2802 | 2800,0.0,1.0,0.21594068582 2803 | 2801,1.0,1.0,0.777142857143 2804 | 2802,1.0,1.0,0.473597359736 2805 | 2803,1.0,1.0,0.432835820896 2806 | 2804,1.0,0.0,0.56401384083 2807 | 2805,1.0,1.0,0.473597359736 2808 | 2806,1.0,0.0,0.307692307692 2809 | 2807,0.0,0.0,0.432835820896 2810 | 2808,1.0,1.0,0.56401384083 2811 | 2809,0.0,0.0,0.598526703499 2812 | 2810,1.0,1.0,0.777142857143 2813 | 2811,0.0,1.0,0.307692307692 2814 | 2812,0.0,1.0,0.307692307692 2815 | 2813,1.0,1.0,0.21594068582 2816 | 2814,1.0,1.0,0.777142857143 2817 | 2815,0.0,1.0,0.598526703499 2818 | 2816,0.0,0.0,0.307692307692 2819 | 2817,0.0,1.0,0.432835820896 2820 | 2818,0.0,0.0,0.21594068582 2821 | 2819,1.0,0.0,0.56401384083 2822 | 2820,0.0,1.0,0.473597359736 2823 | 2821,0.0,1.0,0.432835820896 2824 | 2822,1.0,1.0,0.705020920502 2825 | 2823,0.0,1.0,0.384491114701 2826 | 2824,1.0,0.0,0.432835820896 2827 | 2825,1.0,1.0,0.473597359736 2828 | 2826,1.0,0.0,0.473597359736 2829 | 2827,1.0,1.0,0.777142857143 2830 | 2828,0.0,0.0,0.21594068582 2831 | 2829,0.0,1.0,0.384491114701 2832 | 2830,1.0,1.0,0.598526703499 2833 | 2831,1.0,1.0,0.432835820896 2834 | 2832,1.0,0.0,0.598526703499 2835 | 2833,1.0,1.0,0.598526703499 2836 | 2834,1.0,1.0,0.705020920502 2837 | 2835,1.0,1.0,0.705020920502 2838 | 2836,0.0,1.0,0.21594068582 2839 | 2837,0.0,1.0,0.307692307692 2840 | 2838,1.0,1.0,0.69133192389 2841 | 2839,1.0,1.0,0.384491114701 2842 | 2840,0.0,1.0,0.432835820896 2843 | 2841,0.0,0.0,0.432835820896 2844 | 2842,0.0,1.0,0.21594068582 2845 | 2843,1.0,1.0,0.473597359736 2846 | 2844,0.0,1.0,0.598526703499 2847 | 2845,1.0,1.0,0.21594068582 2848 | 2846,1.0,0.0,0.705020920502 2849 | 2847,1.0,1.0,0.21594068582 2850 | 2848,1.0,0.0,0.598526703499 2851 | 2849,1.0,1.0,0.21594068582 2852 | 2850,1.0,1.0,0.56401384083 2853 | 2851,0.0,1.0,0.384491114701 2854 | 2852,0.0,0.0,0.56401384083 2855 | 2853,1.0,1.0,0.432835820896 2856 | 2854,1.0,0.0,0.384491114701 2857 | 2855,1.0,1.0,0.69133192389 2858 | 2856,0.0,1.0,0.21594068582 2859 | 2857,0.0,0.0,0.307692307692 2860 | 2858,1.0,1.0,0.777142857143 2861 | 2859,1.0,1.0,0.69133192389 2862 | 2860,1.0,1.0,0.777142857143 2863 | 2861,1.0,1.0,0.777142857143 2864 | 2862,0.0,1.0,0.21594068582 2865 | 2863,0.0,1.0,0.598526703499 2866 | 2864,0.0,1.0,0.705020920502 2867 | 2865,0.0,0.0,0.384491114701 2868 | 2866,0.0,0.0,0.705020920502 2869 | 2867,0.0,0.0,0.69133192389 2870 | 2868,1.0,1.0,0.777142857143 2871 | 2869,0.0,0.0,0.21594068582 2872 | 2870,0.0,1.0,0.598526703499 2873 | 2871,1.0,1.0,0.384491114701 2874 | 2872,0.0,1.0,0.307692307692 2875 | 2873,0.0,1.0,0.307692307692 2876 | 2874,0.0,1.0,0.473597359736 2877 | 2875,1.0,1.0,0.69133192389 2878 | 2876,0.0,0.0,0.21594068582 2879 | 2877,0.0,0.0,0.21594068582 2880 | 2878,0.0,1.0,0.432835820896 2881 | 2879,0.0,1.0,0.432835820896 2882 | 2880,0.0,1.0,0.69133192389 2883 | 2881,0.0,0.0,0.307692307692 2884 | 2882,1.0,1.0,0.598526703499 2885 | 2883,0.0,0.0,0.432835820896 2886 | 2884,1.0,1.0,0.432835820896 2887 | 2885,1.0,1.0,0.56401384083 2888 | 2886,0.0,1.0,0.21594068582 2889 | 2887,1.0,1.0,0.384491114701 2890 | 2888,0.0,0.0,0.432835820896 2891 | 2889,1.0,1.0,0.432835820896 2892 | 2890,1.0,1.0,0.598526703499 2893 | 2891,0.0,1.0,0.69133192389 2894 | 2892,0.0,0.0,0.705020920502 2895 | 2893,1.0,0.0,0.69133192389 2896 | 2894,1.0,1.0,0.56401384083 2897 | 2895,0.0,0.0,0.384491114701 2898 | 2896,0.0,0.0,0.307692307692 2899 | 2897,1.0,1.0,0.21594068582 2900 | 2898,1.0,1.0,0.21594068582 2901 | 2899,0.0,0.0,0.384491114701 2902 | 2900,1.0,0.0,0.473597359736 2903 | 2901,1.0,1.0,0.384491114701 2904 | 2902,1.0,1.0,0.473597359736 2905 | 2903,1.0,1.0,0.69133192389 2906 | 2904,1.0,1.0,0.598526703499 2907 | 2905,0.0,1.0,0.777142857143 2908 | 2906,0.0,1.0,0.69133192389 2909 | 2907,1.0,0.0,0.598526703499 2910 | 2908,0.0,1.0,0.777142857143 2911 | 2909,1.0,1.0,0.705020920502 2912 | 2910,0.0,0.0,0.21594068582 2913 | 2911,0.0,0.0,0.21594068582 2914 | 2912,1.0,1.0,0.56401384083 2915 | 2913,0.0,1.0,0.705020920502 2916 | 2914,0.0,1.0,0.432835820896 2917 | 2915,0.0,0.0,0.384491114701 2918 | 2916,1.0,0.0,0.598526703499 2919 | 2917,0.0,1.0,0.21594068582 2920 | 2918,0.0,0.0,0.384491114701 2921 | 2919,0.0,1.0,0.384491114701 2922 | 2920,1.0,0.0,0.21594068582 2923 | 2921,0.0,0.0,0.21594068582 2924 | 2922,1.0,1.0,0.777142857143 2925 | 2923,1.0,1.0,0.69133192389 2926 | 2924,0.0,0.0,0.384491114701 2927 | 2925,0.0,1.0,0.432835820896 2928 | 2926,1.0,0.0,0.432835820896 2929 | 2927,0.0,0.0,0.21594068582 2930 | 2928,1.0,1.0,0.705020920502 2931 | 2929,0.0,1.0,0.777142857143 2932 | 2930,0.0,0.0,0.21594068582 2933 | 2931,1.0,0.0,0.69133192389 2934 | 2932,1.0,0.0,0.473597359736 2935 | 2933,1.0,0.0,0.705020920502 2936 | 2934,1.0,0.0,0.432835820896 2937 | 2935,1.0,1.0,0.473597359736 2938 | 2936,0.0,0.0,0.21594068582 2939 | 2937,0.0,1.0,0.598526703499 2940 | 2938,0.0,1.0,0.432835820896 2941 | 2939,1.0,1.0,0.432835820896 2942 | 2940,1.0,1.0,0.69133192389 2943 | 2941,0.0,0.0,0.432835820896 2944 | 2942,1.0,1.0,0.56401384083 2945 | 2943,0.0,1.0,0.432835820896 2946 | 2944,0.0,0.0,0.432835820896 2947 | 2945,1.0,0.0,0.473597359736 2948 | 2946,1.0,0.0,0.21594068582 2949 | 2947,0.0,1.0,0.307692307692 2950 | 2948,1.0,1.0,0.384491114701 2951 | 2949,1.0,0.0,0.598526703499 2952 | 2950,0.0,0.0,0.21594068582 2953 | 2951,0.0,1.0,0.21594068582 2954 | 2952,1.0,0.0,0.21594068582 2955 | 2953,1.0,0.0,0.432835820896 2956 | 2954,1.0,0.0,0.21594068582 2957 | 2955,1.0,1.0,0.21594068582 2958 | 2956,0.0,1.0,0.21594068582 2959 | 2957,0.0,0.0,0.384491114701 2960 | 2958,0.0,1.0,0.384491114701 2961 | 2959,0.0,1.0,0.598526703499 2962 | 2960,0.0,0.0,0.307692307692 2963 | 2961,1.0,1.0,0.307692307692 2964 | 2962,1.0,0.0,0.56401384083 2965 | 2963,1.0,0.0,0.21594068582 2966 | 2964,0.0,0.0,0.473597359736 2967 | 2965,0.0,0.0,0.21594068582 2968 | 2966,0.0,1.0,0.598526703499 2969 | 2967,0.0,1.0,0.56401384083 2970 | 2968,1.0,1.0,0.21594068582 2971 | 2969,1.0,0.0,0.777142857143 2972 | 2970,1.0,0.0,0.777142857143 2973 | 2971,0.0,0.0,0.473597359736 2974 | 2972,1.0,1.0,0.307692307692 2975 | 2973,1.0,1.0,0.705020920502 2976 | 2974,1.0,1.0,0.384491114701 2977 | 2975,0.0,0.0,0.307692307692 2978 | 2976,0.0,1.0,0.307692307692 2979 | 2977,0.0,0.0,0.473597359736 2980 | 2978,0.0,0.0,0.21594068582 2981 | 2979,1.0,0.0,0.705020920502 2982 | 2980,1.0,1.0,0.21594068582 2983 | 2981,0.0,1.0,0.21594068582 2984 | 2982,0.0,1.0,0.307692307692 2985 | 2983,1.0,0.0,0.56401384083 2986 | 2984,0.0,1.0,0.307692307692 2987 | 2985,0.0,1.0,0.56401384083 2988 | 2986,0.0,1.0,0.69133192389 2989 | 2987,1.0,1.0,0.69133192389 2990 | 2988,0.0,1.0,0.21594068582 2991 | 2989,1.0,1.0,0.705020920502 2992 | 2990,0.0,0.0,0.21594068582 2993 | 2991,1.0,1.0,0.21594068582 2994 | 2992,1.0,0.0,0.69133192389 2995 | 2993,0.0,1.0,0.69133192389 2996 | 2994,1.0,1.0,0.705020920502 2997 | 2995,0.0,0.0,0.432835820896 2998 | 2996,0.0,1.0,0.432835820896 2999 | 2997,0.0,0.0,0.307692307692 3000 | 2998,1.0,1.0,0.598526703499 3001 | 2999,0.0,1.0,0.69133192389 3002 | 3000,0.0,0.0,0.21594068582 3003 | 3001,0.0,1.0,0.598526703499 3004 | 3002,1.0,1.0,0.777142857143 3005 | 3003,1.0,1.0,0.777142857143 3006 | 3004,0.0,1.0,0.473597359736 3007 | 3005,0.0,1.0,0.473597359736 3008 | 3006,1.0,1.0,0.56401384083 3009 | 3007,1.0,0.0,0.432835820896 3010 | 3008,0.0,1.0,0.432835820896 3011 | 3009,0.0,0.0,0.21594068582 3012 | 3010,0.0,1.0,0.307692307692 3013 | 3011,1.0,1.0,0.432835820896 3014 | 3012,0.0,0.0,0.21594068582 3015 | 3013,1.0,1.0,0.705020920502 3016 | 3014,0.0,0.0,0.777142857143 3017 | 3015,0.0,1.0,0.384491114701 3018 | 3016,1.0,0.0,0.432835820896 3019 | 3017,1.0,1.0,0.777142857143 3020 | 3018,1.0,1.0,0.473597359736 3021 | 3019,1.0,0.0,0.307692307692 3022 | 3020,1.0,0.0,0.21594068582 3023 | 3021,1.0,1.0,0.69133192389 3024 | 3022,1.0,1.0,0.473597359736 3025 | 3023,0.0,0.0,0.307692307692 3026 | 3024,1.0,1.0,0.777142857143 3027 | 3025,1.0,1.0,0.56401384083 3028 | 3026,0.0,1.0,0.432835820896 3029 | 3027,1.0,1.0,0.705020920502 3030 | 3028,0.0,1.0,0.705020920502 3031 | 3029,1.0,0.0,0.384491114701 3032 | 3030,1.0,1.0,0.777142857143 3033 | 3031,0.0,1.0,0.56401384083 3034 | 3032,1.0,1.0,0.777142857143 3035 | 3033,0.0,0.0,0.307692307692 3036 | 3034,0.0,0.0,0.384491114701 3037 | 3035,0.0,0.0,0.21594068582 3038 | 3036,1.0,1.0,0.705020920502 3039 | 3037,1.0,0.0,0.432835820896 3040 | 3038,0.0,0.0,0.307692307692 3041 | 3039,1.0,1.0,0.705020920502 3042 | 3040,1.0,1.0,0.384491114701 3043 | 3041,0.0,1.0,0.21594068582 3044 | 3042,1.0,1.0,0.705020920502 3045 | 3043,0.0,1.0,0.307692307692 3046 | 3044,1.0,1.0,0.432835820896 3047 | 3045,1.0,1.0,0.777142857143 3048 | 3046,1.0,0.0,0.307692307692 3049 | 3047,0.0,1.0,0.307692307692 3050 | 3048,0.0,1.0,0.473597359736 3051 | 3049,0.0,1.0,0.307692307692 3052 | 3050,0.0,0.0,0.307692307692 3053 | 3051,0.0,1.0,0.705020920502 3054 | 3052,0.0,0.0,0.307692307692 3055 | 3053,0.0,0.0,0.307692307692 3056 | 3054,1.0,1.0,0.69133192389 3057 | 3055,0.0,1.0,0.384491114701 3058 | 3056,1.0,1.0,0.69133192389 3059 | 3057,0.0,0.0,0.432835820896 3060 | 3058,0.0,0.0,0.705020920502 3061 | 3059,0.0,1.0,0.384491114701 3062 | 3060,0.0,1.0,0.473597359736 3063 | 3061,0.0,0.0,0.432835820896 3064 | 3062,1.0,1.0,0.473597359736 3065 | 3063,1.0,1.0,0.432835820896 3066 | 3064,0.0,1.0,0.21594068582 3067 | 3065,1.0,0.0,0.473597359736 3068 | 3066,0.0,1.0,0.432835820896 3069 | 3067,0.0,0.0,0.56401384083 3070 | 3068,0.0,1.0,0.21594068582 3071 | 3069,0.0,0.0,0.21594068582 3072 | 3070,0.0,1.0,0.21594068582 3073 | 3071,0.0,0.0,0.21594068582 3074 | 3072,0.0,1.0,0.432835820896 3075 | 3073,1.0,0.0,0.56401384083 3076 | 3074,0.0,0.0,0.56401384083 3077 | 3075,0.0,1.0,0.21594068582 3078 | 3076,1.0,0.0,0.705020920502 3079 | 3077,1.0,0.0,0.56401384083 3080 | 3078,0.0,1.0,0.705020920502 3081 | 3079,1.0,1.0,0.69133192389 3082 | 3080,1.0,1.0,0.69133192389 3083 | 3081,0.0,1.0,0.307692307692 3084 | 3082,1.0,0.0,0.384491114701 3085 | 3083,0.0,1.0,0.432835820896 3086 | 3084,1.0,0.0,0.69133192389 3087 | 3085,0.0,0.0,0.21594068582 3088 | 3086,1.0,1.0,0.777142857143 3089 | 3087,0.0,1.0,0.56401384083 3090 | 3088,1.0,1.0,0.705020920502 3091 | 3089,0.0,0.0,0.384491114701 3092 | 3090,0.0,1.0,0.69133192389 3093 | 3091,1.0,1.0,0.69133192389 3094 | 3092,1.0,1.0,0.432835820896 3095 | 3093,0.0,0.0,0.384491114701 3096 | 3094,0.0,1.0,0.21594068582 3097 | 3095,1.0,0.0,0.56401384083 3098 | 3096,1.0,1.0,0.432835820896 3099 | 3097,0.0,1.0,0.307692307692 3100 | 3098,0.0,1.0,0.777142857143 3101 | 3099,0.0,1.0,0.473597359736 3102 | 3100,0.0,0.0,0.598526703499 3103 | 3101,1.0,1.0,0.598526703499 3104 | 3102,1.0,1.0,0.598526703499 3105 | 3103,1.0,1.0,0.777142857143 3106 | 3104,0.0,1.0,0.705020920502 3107 | 3105,1.0,1.0,0.598526703499 3108 | 3106,0.0,1.0,0.598526703499 3109 | 3107,0.0,1.0,0.21594068582 3110 | 3108,1.0,1.0,0.69133192389 3111 | 3109,0.0,0.0,0.384491114701 3112 | 3110,1.0,1.0,0.598526703499 3113 | 3111,1.0,0.0,0.473597359736 3114 | 3112,1.0,0.0,0.432835820896 3115 | 3113,1.0,0.0,0.777142857143 3116 | 3114,0.0,0.0,0.56401384083 3117 | 3115,0.0,0.0,0.56401384083 3118 | 3116,1.0,1.0,0.473597359736 3119 | 3117,0.0,0.0,0.21594068582 3120 | 3118,1.0,0.0,0.473597359736 3121 | 3119,0.0,1.0,0.473597359736 3122 | 3120,0.0,1.0,0.21594068582 3123 | 3121,0.0,0.0,0.384491114701 3124 | 3122,1.0,1.0,0.56401384083 3125 | 3123,0.0,1.0,0.473597359736 3126 | 3124,1.0,0.0,0.307692307692 3127 | 3125,1.0,1.0,0.69133192389 3128 | 3126,0.0,0.0,0.21594068582 3129 | 3127,0.0,0.0,0.21594068582 3130 | 3128,1.0,1.0,0.705020920502 3131 | 3129,0.0,0.0,0.432835820896 3132 | 3130,1.0,0.0,0.56401384083 3133 | 3131,1.0,1.0,0.69133192389 3134 | 3132,0.0,0.0,0.21594068582 3135 | 3133,1.0,0.0,0.432835820896 3136 | 3134,0.0,1.0,0.307692307692 3137 | 3135,0.0,0.0,0.21594068582 3138 | 3136,0.0,0.0,0.21594068582 3139 | 3137,1.0,0.0,0.21594068582 3140 | 3138,1.0,1.0,0.56401384083 3141 | 3139,1.0,1.0,0.21594068582 3142 | 3140,0.0,0.0,0.384491114701 3143 | 3141,0.0,1.0,0.432835820896 3144 | 3142,0.0,0.0,0.473597359736 3145 | 3143,1.0,1.0,0.307692307692 3146 | 3144,0.0,1.0,0.473597359736 3147 | 3145,0.0,0.0,0.384491114701 3148 | 3146,1.0,1.0,0.705020920502 3149 | 3147,1.0,1.0,0.56401384083 3150 | 3148,0.0,0.0,0.473597359736 3151 | 3149,0.0,0.0,0.473597359736 3152 | 3150,0.0,1.0,0.307692307692 3153 | 3151,0.0,0.0,0.384491114701 3154 | 3152,0.0,0.0,0.432835820896 3155 | 3153,0.0,1.0,0.598526703499 3156 | 3154,1.0,1.0,0.69133192389 3157 | 3155,1.0,0.0,0.69133192389 3158 | 3156,1.0,0.0,0.56401384083 3159 | 3157,1.0,1.0,0.56401384083 3160 | 3158,1.0,0.0,0.384491114701 3161 | 3159,0.0,0.0,0.598526703499 3162 | 3160,1.0,0.0,0.432835820896 3163 | 3161,1.0,1.0,0.705020920502 3164 | 3162,1.0,1.0,0.473597359736 3165 | 3163,1.0,1.0,0.69133192389 3166 | 3164,0.0,1.0,0.384491114701 3167 | 3165,0.0,0.0,0.21594068582 3168 | 3166,1.0,0.0,0.69133192389 3169 | 3167,0.0,0.0,0.432835820896 3170 | 3168,0.0,0.0,0.384491114701 3171 | 3169,1.0,0.0,0.21594068582 3172 | 3170,1.0,1.0,0.598526703499 3173 | 3171,0.0,0.0,0.21594068582 3174 | 3172,1.0,0.0,0.473597359736 3175 | 3173,0.0,1.0,0.384491114701 3176 | 3174,1.0,0.0,0.384491114701 3177 | 3175,0.0,1.0,0.432835820896 3178 | 3176,1.0,0.0,0.705020920502 3179 | 3177,0.0,1.0,0.21594068582 3180 | 3178,1.0,1.0,0.21594068582 3181 | 3179,0.0,1.0,0.598526703499 3182 | 3180,0.0,1.0,0.432835820896 3183 | 3181,1.0,1.0,0.56401384083 3184 | 3182,0.0,0.0,0.432835820896 3185 | 3183,1.0,1.0,0.384491114701 3186 | 3184,1.0,0.0,0.21594068582 3187 | 3185,0.0,1.0,0.473597359736 3188 | 3186,0.0,1.0,0.307692307692 3189 | 3187,1.0,0.0,0.598526703499 3190 | 3188,1.0,1.0,0.777142857143 3191 | 3189,1.0,0.0,0.56401384083 3192 | 3190,1.0,0.0,0.56401384083 3193 | 3191,0.0,1.0,0.384491114701 3194 | 3192,1.0,1.0,0.21594068582 3195 | 3193,0.0,0.0,0.21594068582 3196 | 3194,0.0,1.0,0.384491114701 3197 | 3195,1.0,1.0,0.307692307692 3198 | 3196,1.0,1.0,0.598526703499 3199 | 3197,0.0,0.0,0.307692307692 3200 | 3198,0.0,1.0,0.307692307692 3201 | 3199,0.0,0.0,0.21594068582 3202 | 3200,0.0,1.0,0.384491114701 3203 | 3201,1.0,1.0,0.56401384083 3204 | 3202,1.0,1.0,0.56401384083 3205 | 3203,0.0,0.0,0.432835820896 3206 | 3204,1.0,1.0,0.432835820896 3207 | 3205,0.0,0.0,0.21594068582 3208 | 3206,0.0,1.0,0.56401384083 3209 | 3207,0.0,1.0,0.307692307692 3210 | 3208,0.0,1.0,0.69133192389 3211 | 3209,0.0,0.0,0.21594068582 3212 | 3210,0.0,0.0,0.384491114701 3213 | 3211,1.0,0.0,0.21594068582 3214 | 3212,0.0,1.0,0.705020920502 3215 | 3213,0.0,1.0,0.473597359736 3216 | 3214,0.0,1.0,0.21594068582 3217 | 3215,1.0,0.0,0.598526703499 3218 | 3216,0.0,1.0,0.432835820896 3219 | 3217,0.0,0.0,0.21594068582 3220 | 3218,0.0,0.0,0.384491114701 3221 | 3219,1.0,1.0,0.56401384083 3222 | 3220,1.0,0.0,0.473597359736 3223 | 3221,0.0,1.0,0.21594068582 3224 | 3222,0.0,0.0,0.21594068582 3225 | 3223,1.0,0.0,0.432835820896 3226 | 3224,1.0,1.0,0.384491114701 3227 | 3225,0.0,0.0,0.384491114701 3228 | 3226,0.0,1.0,0.384491114701 3229 | 3227,1.0,0.0,0.384491114701 3230 | 3228,1.0,1.0,0.69133192389 3231 | 3229,1.0,0.0,0.307692307692 3232 | 3230,1.0,1.0,0.598526703499 3233 | 3231,0.0,1.0,0.598526703499 3234 | 3232,1.0,1.0,0.473597359736 3235 | 3233,1.0,1.0,0.598526703499 3236 | 3234,0.0,1.0,0.432835820896 3237 | 3235,1.0,1.0,0.21594068582 3238 | 3236,1.0,0.0,0.69133192389 3239 | 3237,1.0,1.0,0.598526703499 3240 | 3238,1.0,0.0,0.473597359736 3241 | 3239,0.0,1.0,0.473597359736 3242 | 3240,1.0,0.0,0.598526703499 3243 | 3241,0.0,0.0,0.473597359736 3244 | 3242,0.0,1.0,0.307692307692 3245 | 3243,1.0,1.0,0.705020920502 3246 | 3244,0.0,0.0,0.21594068582 3247 | 3245,1.0,1.0,0.432835820896 3248 | 3246,1.0,1.0,0.69133192389 3249 | 3247,0.0,0.0,0.432835820896 3250 | 3248,0.0,1.0,0.307692307692 3251 | 3249,0.0,0.0,0.21594068582 3252 | 3250,0.0,0.0,0.21594068582 3253 | 3251,1.0,0.0,0.432835820896 3254 | 3252,1.0,1.0,0.432835820896 3255 | 3253,0.0,0.0,0.307692307692 3256 | 3254,1.0,0.0,0.21594068582 3257 | 3255,0.0,0.0,0.56401384083 3258 | 3256,1.0,1.0,0.777142857143 3259 | 3257,0.0,1.0,0.473597359736 3260 | 3258,0.0,1.0,0.56401384083 3261 | 3259,1.0,0.0,0.384491114701 3262 | 3260,1.0,0.0,0.56401384083 3263 | 3261,0.0,1.0,0.21594068582 3264 | 3262,1.0,1.0,0.432835820896 3265 | 3263,0.0,1.0,0.384491114701 3266 | 3264,1.0,1.0,0.705020920502 3267 | 3265,0.0,1.0,0.598526703499 3268 | 3266,0.0,0.0,0.307692307692 3269 | 3267,1.0,0.0,0.598526703499 3270 | 3268,1.0,1.0,0.21594068582 3271 | 3269,1.0,1.0,0.473597359736 3272 | 3270,0.0,0.0,0.56401384083 3273 | 3271,0.0,0.0,0.307692307692 3274 | 3272,1.0,1.0,0.69133192389 3275 | 3273,1.0,1.0,0.432835820896 3276 | 3274,0.0,1.0,0.705020920502 3277 | 3275,0.0,1.0,0.307692307692 3278 | 3276,0.0,1.0,0.473597359736 3279 | 3277,1.0,1.0,0.307692307692 3280 | 3278,1.0,0.0,0.598526703499 3281 | 3279,1.0,0.0,0.384491114701 3282 | 3280,0.0,0.0,0.21594068582 3283 | 3281,1.0,1.0,0.598526703499 3284 | 3282,1.0,1.0,0.21594068582 3285 | 3283,1.0,1.0,0.307692307692 3286 | 3284,0.0,0.0,0.21594068582 3287 | 3285,1.0,1.0,0.473597359736 3288 | 3286,0.0,0.0,0.432835820896 3289 | 3287,0.0,0.0,0.307692307692 3290 | 3288,0.0,0.0,0.307692307692 3291 | 3289,0.0,1.0,0.21594068582 3292 | 3290,0.0,0.0,0.473597359736 3293 | 3291,1.0,1.0,0.69133192389 3294 | 3292,1.0,1.0,0.69133192389 3295 | 3293,1.0,0.0,0.384491114701 3296 | 3294,0.0,1.0,0.56401384083 3297 | 3295,0.0,1.0,0.705020920502 3298 | 3296,1.0,0.0,0.307692307692 3299 | 3297,0.0,1.0,0.384491114701 3300 | 3298,1.0,0.0,0.705020920502 3301 | 3299,1.0,1.0,0.705020920502 3302 | 3300,1.0,1.0,0.432835820896 3303 | 3301,1.0,1.0,0.598526703499 3304 | 3302,1.0,0.0,0.384491114701 3305 | 3303,0.0,0.0,0.307692307692 3306 | 3304,1.0,1.0,0.384491114701 3307 | 3305,0.0,1.0,0.21594068582 3308 | 3306,0.0,0.0,0.21594068582 3309 | 3307,1.0,0.0,0.307692307692 3310 | 3308,1.0,0.0,0.69133192389 3311 | 3309,0.0,0.0,0.598526703499 3312 | 3310,1.0,0.0,0.69133192389 3313 | 3311,1.0,1.0,0.307692307692 3314 | 3312,1.0,1.0,0.384491114701 3315 | 3313,1.0,1.0,0.432835820896 3316 | 3314,1.0,1.0,0.307692307692 3317 | 3315,1.0,1.0,0.384491114701 3318 | 3316,0.0,0.0,0.21594068582 3319 | 3317,1.0,0.0,0.598526703499 3320 | 3318,0.0,0.0,0.21594068582 3321 | 3319,0.0,0.0,0.21594068582 3322 | 3320,0.0,1.0,0.705020920502 3323 | 3321,0.0,0.0,0.56401384083 3324 | 3322,1.0,1.0,0.598526703499 3325 | 3323,0.0,0.0,0.21594068582 3326 | 3324,1.0,0.0,0.384491114701 3327 | 3325,0.0,1.0,0.384491114701 3328 | 3326,1.0,0.0,0.69133192389 3329 | 3327,1.0,1.0,0.777142857143 3330 | 3328,1.0,0.0,0.432835820896 3331 | 3329,1.0,0.0,0.384491114701 3332 | 3330,0.0,0.0,0.21594068582 3333 | 3331,0.0,0.0,0.307692307692 3334 | 3332,1.0,0.0,0.21594068582 3335 | 3333,0.0,1.0,0.56401384083 3336 | 3334,0.0,0.0,0.21594068582 3337 | 3335,1.0,0.0,0.21594068582 3338 | 3336,1.0,1.0,0.777142857143 3339 | 3337,0.0,1.0,0.69133192389 3340 | 3338,1.0,0.0,0.21594068582 3341 | 3339,1.0,1.0,0.432835820896 3342 | 3340,0.0,1.0,0.307692307692 3343 | 3341,0.0,0.0,0.21594068582 3344 | 3342,1.0,0.0,0.56401384083 3345 | 3343,0.0,0.0,0.384491114701 3346 | 3344,0.0,0.0,0.21594068582 3347 | 3345,0.0,1.0,0.384491114701 3348 | 3346,0.0,0.0,0.307692307692 3349 | 3347,1.0,1.0,0.69133192389 3350 | 3348,0.0,0.0,0.56401384083 3351 | 3349,1.0,1.0,0.69133192389 3352 | 3350,0.0,0.0,0.56401384083 3353 | 3351,1.0,1.0,0.473597359736 3354 | 3352,1.0,1.0,0.777142857143 3355 | 3353,0.0,1.0,0.307692307692 3356 | 3354,0.0,0.0,0.598526703499 3357 | 3355,0.0,1.0,0.56401384083 3358 | 3356,0.0,1.0,0.307692307692 3359 | 3357,0.0,0.0,0.21594068582 3360 | 3358,0.0,0.0,0.598526703499 3361 | 3359,0.0,0.0,0.307692307692 3362 | 3360,1.0,0.0,0.69133192389 3363 | 3361,1.0,0.0,0.307692307692 3364 | 3362,1.0,0.0,0.432835820896 3365 | 3363,1.0,0.0,0.384491114701 3366 | 3364,0.0,1.0,0.307692307692 3367 | 3365,1.0,1.0,0.705020920502 3368 | 3366,1.0,1.0,0.384491114701 3369 | 3367,0.0,1.0,0.432835820896 3370 | 3368,0.0,1.0,0.69133192389 3371 | 3369,1.0,0.0,0.598526703499 3372 | 3370,1.0,1.0,0.705020920502 3373 | 3371,0.0,0.0,0.21594068582 3374 | 3372,1.0,0.0,0.432835820896 3375 | 3373,0.0,0.0,0.384491114701 3376 | 3374,1.0,1.0,0.69133192389 3377 | 3375,0.0,0.0,0.384491114701 3378 | 3376,0.0,1.0,0.384491114701 3379 | 3377,0.0,0.0,0.473597359736 3380 | 3378,0.0,1.0,0.69133192389 3381 | 3379,0.0,1.0,0.598526703499 3382 | 3380,1.0,1.0,0.384491114701 3383 | 3381,1.0,0.0,0.69133192389 3384 | 3382,0.0,0.0,0.307692307692 3385 | 3383,0.0,0.0,0.307692307692 3386 | 3384,0.0,1.0,0.56401384083 3387 | 3385,0.0,0.0,0.473597359736 3388 | 3386,1.0,1.0,0.598526703499 3389 | 3387,1.0,1.0,0.21594068582 3390 | 3388,0.0,1.0,0.384491114701 3391 | 3389,0.0,0.0,0.473597359736 3392 | 3390,1.0,1.0,0.69133192389 3393 | 3391,0.0,0.0,0.432835820896 3394 | 3392,0.0,0.0,0.307692307692 3395 | 3393,0.0,1.0,0.598526703499 3396 | 3394,1.0,1.0,0.307692307692 3397 | 3395,0.0,0.0,0.473597359736 3398 | 3396,1.0,1.0,0.473597359736 3399 | 3397,1.0,1.0,0.384491114701 3400 | 3398,0.0,1.0,0.307692307692 3401 | 3399,0.0,1.0,0.432835820896 3402 | 3400,0.0,0.0,0.432835820896 3403 | 3401,1.0,1.0,0.473597359736 3404 | 3402,1.0,0.0,0.777142857143 3405 | 3403,1.0,1.0,0.777142857143 3406 | 3404,1.0,1.0,0.705020920502 3407 | 3405,1.0,0.0,0.705020920502 3408 | 3406,1.0,1.0,0.473597359736 3409 | 3407,1.0,1.0,0.777142857143 3410 | 3408,1.0,0.0,0.21594068582 3411 | 3409,0.0,0.0,0.307692307692 3412 | 3410,1.0,1.0,0.598526703499 3413 | 3411,0.0,1.0,0.307692307692 3414 | 3412,0.0,1.0,0.56401384083 3415 | 3413,0.0,0.0,0.69133192389 3416 | 3414,1.0,1.0,0.473597359736 3417 | 3415,0.0,0.0,0.384491114701 3418 | 3416,0.0,0.0,0.384491114701 3419 | 3417,0.0,1.0,0.21594068582 3420 | 3418,1.0,1.0,0.21594068582 3421 | 3419,1.0,1.0,0.56401384083 3422 | 3420,0.0,0.0,0.473597359736 3423 | 3421,1.0,1.0,0.56401384083 3424 | 3422,1.0,1.0,0.69133192389 3425 | 3423,0.0,0.0,0.473597359736 3426 | 3424,0.0,1.0,0.777142857143 3427 | 3425,0.0,0.0,0.384491114701 3428 | 3426,0.0,1.0,0.21594068582 3429 | 3427,0.0,1.0,0.21594068582 3430 | 3428,0.0,1.0,0.21594068582 3431 | 3429,0.0,1.0,0.21594068582 3432 | 3430,0.0,0.0,0.21594068582 3433 | 3431,0.0,1.0,0.432835820896 3434 | 3432,1.0,1.0,0.432835820896 3435 | 3433,0.0,0.0,0.21594068582 3436 | 3434,0.0,1.0,0.777142857143 3437 | 3435,0.0,1.0,0.777142857143 3438 | 3436,1.0,1.0,0.432835820896 3439 | 3437,0.0,1.0,0.56401384083 3440 | 3438,0.0,1.0,0.598526703499 3441 | 3439,1.0,1.0,0.56401384083 3442 | 3440,0.0,1.0,0.307692307692 3443 | 3441,1.0,1.0,0.473597359736 3444 | 3442,0.0,0.0,0.307692307692 3445 | 3443,0.0,1.0,0.307692307692 3446 | 3444,0.0,1.0,0.473597359736 3447 | 3445,0.0,1.0,0.384491114701 3448 | 3446,0.0,0.0,0.21594068582 3449 | 3447,0.0,1.0,0.777142857143 3450 | 3448,1.0,1.0,0.69133192389 3451 | 3449,0.0,1.0,0.432835820896 3452 | 3450,0.0,0.0,0.384491114701 3453 | 3451,0.0,1.0,0.56401384083 3454 | 3452,0.0,1.0,0.21594068582 3455 | 3453,1.0,0.0,0.307692307692 3456 | 3454,1.0,0.0,0.473597359736 3457 | 3455,1.0,1.0,0.56401384083 3458 | 3456,1.0,0.0,0.705020920502 3459 | 3457,1.0,1.0,0.705020920502 3460 | 3458,0.0,1.0,0.21594068582 3461 | 3459,1.0,0.0,0.598526703499 3462 | 3460,0.0,1.0,0.21594068582 3463 | 3461,0.0,1.0,0.432835820896 3464 | 3462,0.0,1.0,0.705020920502 3465 | 3463,0.0,0.0,0.432835820896 3466 | 3464,1.0,0.0,0.56401384083 3467 | 3465,1.0,1.0,0.384491114701 3468 | 3466,0.0,1.0,0.473597359736 3469 | 3467,0.0,0.0,0.56401384083 3470 | 3468,1.0,1.0,0.705020920502 3471 | 3469,0.0,0.0,0.307692307692 3472 | 3470,0.0,1.0,0.473597359736 3473 | 3471,0.0,0.0,0.307692307692 3474 | 3472,0.0,1.0,0.473597359736 3475 | 3473,1.0,0.0,0.473597359736 3476 | 3474,1.0,1.0,0.69133192389 3477 | 3475,0.0,0.0,0.432835820896 3478 | 3476,1.0,0.0,0.705020920502 3479 | 3477,0.0,0.0,0.21594068582 3480 | 3478,0.0,1.0,0.384491114701 3481 | 3479,1.0,1.0,0.21594068582 3482 | 3480,1.0,1.0,0.69133192389 3483 | 3481,0.0,1.0,0.56401384083 3484 | 3482,1.0,1.0,0.777142857143 3485 | 3483,0.0,1.0,0.21594068582 3486 | 3484,0.0,0.0,0.307692307692 3487 | 3485,1.0,1.0,0.432835820896 3488 | 3486,0.0,1.0,0.69133192389 3489 | 3487,0.0,0.0,0.307692307692 3490 | 3488,1.0,0.0,0.21594068582 3491 | 3489,1.0,1.0,0.598526703499 3492 | 3490,0.0,0.0,0.21594068582 3493 | 3491,1.0,0.0,0.473597359736 3494 | 3492,0.0,1.0,0.473597359736 3495 | 3493,0.0,1.0,0.598526703499 3496 | 3494,0.0,1.0,0.21594068582 3497 | 3495,0.0,1.0,0.21594068582 3498 | 3496,0.0,0.0,0.307692307692 3499 | 3497,0.0,0.0,0.21594068582 3500 | 3498,0.0,0.0,0.705020920502 3501 | 3499,1.0,1.0,0.598526703499 3502 | 3500,0.0,0.0,0.21594068582 3503 | 3501,1.0,0.0,0.384491114701 3504 | 3502,1.0,1.0,0.705020920502 3505 | 3503,0.0,1.0,0.432835820896 3506 | 3504,1.0,1.0,0.598526703499 3507 | 3505,0.0,0.0,0.21594068582 3508 | 3506,1.0,0.0,0.69133192389 3509 | 3507,0.0,1.0,0.777142857143 3510 | 3508,0.0,1.0,0.384491114701 3511 | 3509,1.0,0.0,0.21594068582 3512 | 3510,0.0,1.0,0.384491114701 3513 | 3511,0.0,0.0,0.384491114701 3514 | 3512,0.0,1.0,0.307692307692 3515 | 3513,0.0,1.0,0.598526703499 3516 | 3514,0.0,0.0,0.432835820896 3517 | 3515,0.0,1.0,0.473597359736 3518 | 3516,1.0,0.0,0.384491114701 3519 | 3517,1.0,1.0,0.705020920502 3520 | 3518,0.0,0.0,0.21594068582 3521 | 3519,1.0,0.0,0.56401384083 3522 | 3520,0.0,1.0,0.21594068582 3523 | 3521,0.0,1.0,0.21594068582 3524 | 3522,1.0,1.0,0.473597359736 3525 | 3523,0.0,0.0,0.598526703499 3526 | 3524,0.0,1.0,0.473597359736 3527 | 3525,0.0,1.0,0.473597359736 3528 | 3526,1.0,1.0,0.432835820896 3529 | 3527,0.0,1.0,0.384491114701 3530 | 3528,1.0,1.0,0.705020920502 3531 | 3529,0.0,1.0,0.384491114701 3532 | 3530,1.0,1.0,0.473597359736 3533 | 3531,1.0,0.0,0.56401384083 3534 | 3532,1.0,1.0,0.384491114701 3535 | 3533,1.0,0.0,0.56401384083 3536 | 3534,1.0,1.0,0.705020920502 3537 | 3535,1.0,1.0,0.777142857143 3538 | 3536,0.0,1.0,0.56401384083 3539 | 3537,1.0,0.0,0.56401384083 3540 | 3538,1.0,0.0,0.21594068582 3541 | 3539,1.0,0.0,0.69133192389 3542 | 3540,0.0,1.0,0.307692307692 3543 | 3541,0.0,0.0,0.473597359736 3544 | 3542,1.0,1.0,0.432835820896 3545 | 3543,0.0,1.0,0.307692307692 3546 | 3544,1.0,1.0,0.705020920502 3547 | 3545,0.0,1.0,0.473597359736 3548 | 3546,1.0,1.0,0.473597359736 3549 | 3547,1.0,1.0,0.473597359736 3550 | 3548,0.0,0.0,0.598526703499 3551 | 3549,0.0,1.0,0.384491114701 3552 | 3550,1.0,1.0,0.777142857143 3553 | 3551,0.0,1.0,0.307692307692 3554 | 3552,0.0,1.0,0.21594068582 3555 | 3553,1.0,0.0,0.384491114701 3556 | 3554,1.0,1.0,0.56401384083 3557 | 3555,0.0,0.0,0.384491114701 3558 | 3556,0.0,1.0,0.598526703499 3559 | 3557,1.0,1.0,0.705020920502 3560 | 3558,1.0,1.0,0.598526703499 3561 | 3559,1.0,1.0,0.777142857143 3562 | 3560,0.0,0.0,0.473597359736 3563 | 3561,1.0,1.0,0.705020920502 3564 | 3562,1.0,1.0,0.56401384083 3565 | 3563,1.0,1.0,0.777142857143 3566 | 3564,1.0,1.0,0.56401384083 3567 | 3565,0.0,1.0,0.21594068582 3568 | 3566,1.0,0.0,0.598526703499 3569 | 3567,1.0,1.0,0.598526703499 3570 | 3568,0.0,0.0,0.56401384083 3571 | 3569,0.0,1.0,0.598526703499 3572 | 3570,1.0,1.0,0.56401384083 3573 | 3571,0.0,1.0,0.307692307692 3574 | 3572,1.0,0.0,0.21594068582 3575 | 3573,1.0,1.0,0.69133192389 3576 | 3574,1.0,0.0,0.598526703499 3577 | 3575,0.0,1.0,0.21594068582 3578 | 3576,1.0,1.0,0.69133192389 3579 | 3577,1.0,1.0,0.21594068582 3580 | 3578,1.0,1.0,0.56401384083 3581 | 3579,0.0,1.0,0.307692307692 3582 | 3580,0.0,0.0,0.21594068582 3583 | 3581,0.0,0.0,0.21594068582 3584 | 3582,0.0,0.0,0.307692307692 3585 | 3583,0.0,0.0,0.384491114701 3586 | 3584,1.0,1.0,0.432835820896 3587 | 3585,0.0,0.0,0.21594068582 3588 | 3586,0.0,1.0,0.384491114701 3589 | 3587,0.0,0.0,0.21594068582 3590 | 3588,1.0,1.0,0.307692307692 3591 | 3589,0.0,1.0,0.432835820896 3592 | 3590,0.0,1.0,0.69133192389 3593 | 3591,1.0,1.0,0.705020920502 3594 | 3592,0.0,1.0,0.705020920502 3595 | 3593,0.0,1.0,0.307692307692 3596 | 3594,0.0,1.0,0.307692307692 3597 | 3595,1.0,0.0,0.777142857143 3598 | 3596,0.0,1.0,0.21594068582 3599 | 3597,0.0,0.0,0.473597359736 3600 | 3598,1.0,0.0,0.598526703499 3601 | 3599,1.0,1.0,0.705020920502 3602 | 3600,0.0,1.0,0.473597359736 3603 | 3601,1.0,1.0,0.473597359736 3604 | 3602,0.0,0.0,0.473597359736 3605 | 3603,1.0,0.0,0.21594068582 3606 | 3604,0.0,1.0,0.432835820896 3607 | 3605,1.0,0.0,0.56401384083 3608 | 3606,1.0,1.0,0.473597359736 3609 | 3607,0.0,1.0,0.473597359736 3610 | 3608,1.0,1.0,0.307692307692 3611 | 3609,1.0,1.0,0.777142857143 3612 | 3610,1.0,1.0,0.56401384083 3613 | 3611,1.0,1.0,0.69133192389 3614 | 3612,0.0,1.0,0.69133192389 3615 | 3613,0.0,0.0,0.21594068582 3616 | 3614,0.0,1.0,0.598526703499 3617 | 3615,0.0,1.0,0.21594068582 3618 | 3616,1.0,1.0,0.598526703499 3619 | 3617,1.0,0.0,0.705020920502 3620 | 3618,1.0,1.0,0.473597359736 3621 | 3619,0.0,1.0,0.21594068582 3622 | 3620,1.0,0.0,0.473597359736 3623 | 3621,1.0,1.0,0.69133192389 3624 | 3622,0.0,1.0,0.432835820896 3625 | 3623,1.0,1.0,0.307692307692 3626 | 3624,0.0,0.0,0.307692307692 3627 | 3625,0.0,0.0,0.21594068582 3628 | 3626,0.0,1.0,0.307692307692 3629 | 3627,0.0,1.0,0.21594068582 3630 | 3628,0.0,0.0,0.21594068582 3631 | 3629,1.0,1.0,0.307692307692 3632 | 3630,1.0,1.0,0.473597359736 3633 | 3631,1.0,0.0,0.21594068582 3634 | 3632,0.0,0.0,0.307692307692 3635 | 3633,0.0,0.0,0.307692307692 3636 | 3634,1.0,1.0,0.69133192389 3637 | 3635,0.0,0.0,0.384491114701 3638 | 3636,0.0,0.0,0.432835820896 3639 | 3637,0.0,1.0,0.21594068582 3640 | 3638,1.0,1.0,0.598526703499 3641 | 3639,1.0,1.0,0.777142857143 3642 | 3640,0.0,0.0,0.307692307692 3643 | 3641,1.0,1.0,0.384491114701 3644 | 3642,0.0,1.0,0.384491114701 3645 | 3643,1.0,1.0,0.56401384083 3646 | 3644,0.0,0.0,0.307692307692 3647 | 3645,1.0,1.0,0.432835820896 3648 | 3646,0.0,0.0,0.432835820896 3649 | 3647,0.0,1.0,0.473597359736 3650 | 3648,0.0,1.0,0.473597359736 3651 | 3649,1.0,0.0,0.56401384083 3652 | 3650,1.0,1.0,0.432835820896 3653 | 3651,0.0,0.0,0.384491114701 3654 | 3652,1.0,0.0,0.21594068582 3655 | 3653,0.0,1.0,0.307692307692 3656 | 3654,1.0,1.0,0.56401384083 3657 | 3655,1.0,1.0,0.705020920502 3658 | 3656,0.0,1.0,0.598526703499 3659 | 3657,1.0,0.0,0.384491114701 3660 | 3658,0.0,0.0,0.21594068582 3661 | 3659,1.0,0.0,0.432835820896 3662 | 3660,0.0,0.0,0.21594068582 3663 | 3661,1.0,0.0,0.705020920502 3664 | 3662,1.0,1.0,0.473597359736 3665 | 3663,1.0,1.0,0.21594068582 3666 | 3664,1.0,1.0,0.473597359736 3667 | 3665,0.0,0.0,0.432835820896 3668 | 3666,1.0,0.0,0.432835820896 3669 | 3667,0.0,1.0,0.56401384083 3670 | 3668,0.0,1.0,0.432835820896 3671 | 3669,0.0,1.0,0.56401384083 3672 | 3670,1.0,0.0,0.21594068582 3673 | 3671,0.0,1.0,0.432835820896 3674 | 3672,1.0,0.0,0.598526703499 3675 | 3673,0.0,0.0,0.384491114701 3676 | 3674,1.0,1.0,0.705020920502 3677 | 3675,0.0,0.0,0.432835820896 3678 | 3676,1.0,1.0,0.69133192389 3679 | 3677,0.0,0.0,0.384491114701 3680 | 3678,1.0,1.0,0.307692307692 3681 | 3679,0.0,0.0,0.307692307692 3682 | 3680,0.0,0.0,0.21594068582 3683 | 3681,0.0,0.0,0.21594068582 3684 | 3682,0.0,1.0,0.598526703499 3685 | 3683,0.0,0.0,0.384491114701 3686 | 3684,1.0,1.0,0.705020920502 3687 | 3685,1.0,0.0,0.473597359736 3688 | 3686,1.0,1.0,0.705020920502 3689 | 3687,0.0,1.0,0.432835820896 3690 | 3688,1.0,1.0,0.473597359736 3691 | 3689,0.0,1.0,0.21594068582 3692 | 3690,0.0,0.0,0.21594068582 3693 | 3691,0.0,1.0,0.21594068582 3694 | 3692,0.0,1.0,0.598526703499 3695 | 3693,0.0,1.0,0.21594068582 3696 | 3694,1.0,1.0,0.21594068582 3697 | 3695,1.0,1.0,0.705020920502 3698 | 3696,0.0,1.0,0.21594068582 3699 | 3697,1.0,0.0,0.432835820896 3700 | 3698,1.0,1.0,0.705020920502 3701 | 3699,1.0,1.0,0.384491114701 3702 | 3700,0.0,1.0,0.69133192389 3703 | 3701,0.0,1.0,0.473597359736 3704 | 3702,1.0,0.0,0.705020920502 3705 | 3703,0.0,1.0,0.21594068582 3706 | 3704,0.0,1.0,0.307692307692 3707 | 3705,0.0,0.0,0.307692307692 3708 | 3706,1.0,0.0,0.307692307692 3709 | 3707,0.0,1.0,0.307692307692 3710 | 3708,1.0,0.0,0.473597359736 3711 | 3709,1.0,1.0,0.473597359736 3712 | 3710,0.0,0.0,0.432835820896 3713 | 3711,1.0,1.0,0.598526703499 3714 | 3712,0.0,0.0,0.384491114701 3715 | 3713,0.0,0.0,0.21594068582 3716 | 3714,1.0,1.0,0.432835820896 3717 | 3715,0.0,1.0,0.21594068582 3718 | 3716,1.0,1.0,0.777142857143 3719 | 3717,0.0,0.0,0.384491114701 3720 | 3718,0.0,1.0,0.21594068582 3721 | 3719,1.0,1.0,0.598526703499 3722 | 3720,1.0,0.0,0.473597359736 3723 | 3721,1.0,1.0,0.69133192389 3724 | 3722,0.0,1.0,0.432835820896 3725 | 3723,1.0,1.0,0.69133192389 3726 | 3724,0.0,0.0,0.56401384083 3727 | 3725,1.0,1.0,0.598526703499 3728 | 3726,0.0,1.0,0.21594068582 3729 | 3727,1.0,1.0,0.598526703499 3730 | 3728,1.0,1.0,0.432835820896 3731 | 3729,0.0,1.0,0.598526703499 3732 | 3730,1.0,0.0,0.307692307692 3733 | 3731,0.0,0.0,0.307692307692 3734 | 3732,0.0,1.0,0.21594068582 3735 | 3733,0.0,1.0,0.432835820896 3736 | 3734,0.0,1.0,0.69133192389 3737 | 3735,0.0,1.0,0.432835820896 3738 | 3736,1.0,1.0,0.307692307692 3739 | 3737,0.0,1.0,0.777142857143 3740 | 3738,1.0,0.0,0.473597359736 3741 | 3739,1.0,0.0,0.56401384083 3742 | 3740,1.0,1.0,0.777142857143 3743 | 3741,1.0,1.0,0.705020920502 3744 | 3742,1.0,1.0,0.56401384083 3745 | 3743,0.0,1.0,0.473597359736 3746 | 3744,1.0,0.0,0.307692307692 3747 | 3745,1.0,0.0,0.69133192389 3748 | 3746,0.0,0.0,0.432835820896 3749 | 3747,0.0,0.0,0.21594068582 3750 | 3748,1.0,1.0,0.777142857143 3751 | 3749,0.0,0.0,0.705020920502 3752 | 3750,0.0,0.0,0.307692307692 3753 | 3751,0.0,0.0,0.384491114701 3754 | 3752,0.0,1.0,0.432835820896 3755 | 3753,0.0,1.0,0.598526703499 3756 | 3754,0.0,0.0,0.473597359736 3757 | 3755,1.0,1.0,0.69133192389 3758 | 3756,0.0,0.0,0.598526703499 3759 | 3757,0.0,1.0,0.473597359736 3760 | 3758,0.0,1.0,0.21594068582 3761 | 3759,0.0,1.0,0.307692307692 3762 | 3760,0.0,0.0,0.473597359736 3763 | 3761,0.0,0.0,0.69133192389 3764 | 3762,1.0,1.0,0.777142857143 3765 | 3763,0.0,1.0,0.307692307692 3766 | 3764,0.0,0.0,0.307692307692 3767 | 3765,0.0,1.0,0.473597359736 3768 | 3766,0.0,0.0,0.56401384083 3769 | 3767,1.0,1.0,0.598526703499 3770 | 3768,0.0,1.0,0.21594068582 3771 | 3769,0.0,0.0,0.473597359736 3772 | 3770,0.0,1.0,0.56401384083 3773 | 3771,0.0,0.0,0.307692307692 3774 | 3772,1.0,0.0,0.705020920502 3775 | 3773,0.0,1.0,0.432835820896 3776 | 3774,1.0,1.0,0.432835820896 3777 | 3775,1.0,1.0,0.69133192389 3778 | 3776,1.0,1.0,0.473597359736 3779 | 3777,0.0,1.0,0.432835820896 3780 | 3778,1.0,1.0,0.777142857143 3781 | 3779,1.0,1.0,0.705020920502 3782 | 3780,0.0,0.0,0.777142857143 3783 | 3781,1.0,0.0,0.307692307692 3784 | 3782,1.0,1.0,0.432835820896 3785 | 3783,1.0,0.0,0.21594068582 3786 | 3784,1.0,0.0,0.21594068582 3787 | 3785,1.0,1.0,0.705020920502 3788 | 3786,0.0,1.0,0.598526703499 3789 | 3787,1.0,0.0,0.384491114701 3790 | 3788,0.0,0.0,0.307692307692 3791 | 3789,1.0,1.0,0.69133192389 3792 | 3790,0.0,0.0,0.307692307692 3793 | 3791,0.0,1.0,0.598526703499 3794 | 3792,0.0,0.0,0.307692307692 3795 | 3793,1.0,1.0,0.705020920502 3796 | 3794,0.0,0.0,0.384491114701 3797 | 3795,0.0,1.0,0.598526703499 3798 | 3796,0.0,1.0,0.21594068582 3799 | 3797,0.0,0.0,0.307692307692 3800 | 3798,1.0,1.0,0.705020920502 3801 | 3799,0.0,1.0,0.384491114701 3802 | 3800,0.0,1.0,0.21594068582 3803 | 3801,0.0,0.0,0.384491114701 3804 | 3802,1.0,0.0,0.432835820896 3805 | 3803,1.0,1.0,0.307692307692 3806 | 3804,0.0,0.0,0.473597359736 3807 | 3805,0.0,1.0,0.384491114701 3808 | 3806,0.0,0.0,0.69133192389 3809 | 3807,0.0,0.0,0.21594068582 3810 | 3808,1.0,1.0,0.307692307692 3811 | 3809,1.0,0.0,0.307692307692 3812 | 3810,1.0,1.0,0.384491114701 3813 | 3811,1.0,1.0,0.705020920502 3814 | 3812,0.0,1.0,0.56401384083 3815 | 3813,1.0,1.0,0.705020920502 3816 | 3814,1.0,1.0,0.705020920502 3817 | 3815,0.0,0.0,0.432835820896 3818 | 3816,0.0,1.0,0.705020920502 3819 | 3817,0.0,1.0,0.307692307692 3820 | 3818,1.0,0.0,0.432835820896 3821 | 3819,0.0,1.0,0.384491114701 3822 | 3820,1.0,1.0,0.69133192389 3823 | 3821,1.0,1.0,0.432835820896 3824 | 3822,0.0,0.0,0.307692307692 3825 | 3823,0.0,1.0,0.307692307692 3826 | 3824,1.0,0.0,0.705020920502 3827 | 3825,1.0,0.0,0.777142857143 3828 | 3826,1.0,0.0,0.384491114701 3829 | 3827,1.0,0.0,0.21594068582 3830 | 3828,1.0,0.0,0.473597359736 3831 | 3829,1.0,1.0,0.384491114701 3832 | 3830,1.0,1.0,0.56401384083 3833 | 3831,0.0,1.0,0.598526703499 3834 | 3832,1.0,0.0,0.705020920502 3835 | 3833,1.0,0.0,0.69133192389 3836 | 3834,1.0,0.0,0.307692307692 3837 | 3835,0.0,1.0,0.307692307692 3838 | 3836,0.0,0.0,0.307692307692 3839 | 3837,1.0,0.0,0.432835820896 3840 | 3838,0.0,1.0,0.432835820896 3841 | 3839,0.0,1.0,0.384491114701 3842 | 3840,1.0,1.0,0.777142857143 3843 | 3841,0.0,1.0,0.473597359736 3844 | 3842,0.0,0.0,0.777142857143 3845 | 3843,0.0,1.0,0.307692307692 3846 | 3844,0.0,0.0,0.69133192389 3847 | 3845,0.0,1.0,0.307692307692 3848 | 3846,1.0,0.0,0.56401384083 3849 | 3847,1.0,1.0,0.705020920502 3850 | 3848,0.0,0.0,0.307692307692 3851 | 3849,0.0,0.0,0.69133192389 3852 | 3850,1.0,1.0,0.69133192389 3853 | 3851,0.0,1.0,0.56401384083 3854 | 3852,1.0,0.0,0.432835820896 3855 | 3853,1.0,1.0,0.432835820896 3856 | 3854,0.0,1.0,0.473597359736 3857 | 3855,0.0,1.0,0.473597359736 3858 | 3856,0.0,1.0,0.21594068582 3859 | 3857,0.0,0.0,0.307692307692 3860 | 3858,1.0,1.0,0.432835820896 3861 | 3859,0.0,1.0,0.598526703499 3862 | 3860,0.0,1.0,0.432835820896 3863 | 3861,1.0,1.0,0.598526703499 3864 | 3862,1.0,1.0,0.705020920502 3865 | 3863,0.0,1.0,0.56401384083 3866 | 3864,1.0,1.0,0.598526703499 3867 | 3865,0.0,1.0,0.56401384083 3868 | 3866,1.0,1.0,0.384491114701 3869 | 3867,0.0,1.0,0.56401384083 3870 | 3868,0.0,1.0,0.21594068582 3871 | 3869,0.0,1.0,0.384491114701 3872 | 3870,1.0,1.0,0.705020920502 3873 | 3871,1.0,0.0,0.384491114701 3874 | 3872,1.0,1.0,0.473597359736 3875 | 3873,0.0,0.0,0.384491114701 3876 | 3874,0.0,1.0,0.307692307692 3877 | 3875,1.0,0.0,0.598526703499 3878 | 3876,0.0,1.0,0.384491114701 3879 | 3877,1.0,0.0,0.473597359736 3880 | 3878,1.0,1.0,0.56401384083 3881 | 3879,0.0,0.0,0.432835820896 3882 | 3880,0.0,0.0,0.21594068582 3883 | 3881,1.0,1.0,0.307692307692 3884 | 3882,1.0,1.0,0.384491114701 3885 | 3883,0.0,0.0,0.21594068582 3886 | 3884,1.0,1.0,0.598526703499 3887 | 3885,1.0,1.0,0.473597359736 3888 | 3886,0.0,1.0,0.473597359736 3889 | 3887,1.0,0.0,0.21594068582 3890 | 3888,0.0,0.0,0.56401384083 3891 | 3889,0.0,1.0,0.473597359736 3892 | 3890,1.0,1.0,0.705020920502 3893 | 3891,1.0,1.0,0.705020920502 3894 | 3892,0.0,1.0,0.21594068582 3895 | 3893,1.0,1.0,0.69133192389 3896 | 3894,0.0,0.0,0.307692307692 3897 | 3895,0.0,0.0,0.432835820896 3898 | 3896,1.0,1.0,0.56401384083 3899 | 3897,1.0,1.0,0.473597359736 3900 | 3898,1.0,1.0,0.705020920502 3901 | 3899,0.0,0.0,0.432835820896 3902 | 3900,0.0,0.0,0.307692307692 3903 | 3901,1.0,1.0,0.705020920502 3904 | 3902,1.0,0.0,0.21594068582 3905 | 3903,0.0,1.0,0.21594068582 3906 | 3904,1.0,0.0,0.384491114701 3907 | 3905,0.0,1.0,0.56401384083 3908 | 3906,1.0,1.0,0.384491114701 3909 | 3907,1.0,1.0,0.473597359736 3910 | 3908,1.0,1.0,0.432835820896 3911 | 3909,0.0,1.0,0.432835820896 3912 | 3910,1.0,1.0,0.307692307692 3913 | 3911,0.0,0.0,0.56401384083 3914 | 3912,0.0,1.0,0.69133192389 3915 | 3913,1.0,0.0,0.705020920502 3916 | 3914,0.0,1.0,0.384491114701 3917 | 3915,1.0,1.0,0.69133192389 3918 | 3916,1.0,1.0,0.473597359736 3919 | 3917,1.0,1.0,0.384491114701 3920 | 3918,0.0,1.0,0.473597359736 3921 | 3919,0.0,1.0,0.307692307692 3922 | 3920,0.0,0.0,0.307692307692 3923 | 3921,1.0,0.0,0.307692307692 3924 | 3922,1.0,1.0,0.384491114701 3925 | 3923,0.0,0.0,0.473597359736 3926 | 3924,0.0,0.0,0.598526703499 3927 | 3925,1.0,1.0,0.21594068582 3928 | 3926,0.0,1.0,0.432835820896 3929 | 3927,1.0,1.0,0.21594068582 3930 | 3928,1.0,0.0,0.384491114701 3931 | 3929,1.0,1.0,0.705020920502 3932 | 3930,0.0,0.0,0.307692307692 3933 | 3931,0.0,1.0,0.598526703499 3934 | 3932,1.0,0.0,0.384491114701 3935 | 3933,1.0,1.0,0.777142857143 3936 | 3934,1.0,0.0,0.21594068582 3937 | 3935,0.0,0.0,0.705020920502 3938 | 3936,1.0,1.0,0.473597359736 3939 | 3937,1.0,1.0,0.705020920502 3940 | 3938,0.0,1.0,0.384491114701 3941 | 3939,0.0,1.0,0.473597359736 3942 | 3940,1.0,0.0,0.598526703499 3943 | 3941,1.0,1.0,0.307692307692 3944 | 3942,0.0,1.0,0.21594068582 3945 | 3943,0.0,0.0,0.307692307692 3946 | 3944,0.0,1.0,0.432835820896 3947 | 3945,0.0,0.0,0.21594068582 3948 | 3946,0.0,0.0,0.473597359736 3949 | 3947,0.0,1.0,0.56401384083 3950 | 3948,0.0,1.0,0.69133192389 3951 | 3949,1.0,0.0,0.473597359736 3952 | 3950,1.0,1.0,0.307692307692 3953 | 3951,1.0,1.0,0.432835820896 3954 | 3952,1.0,0.0,0.705020920502 3955 | 3953,0.0,0.0,0.21594068582 3956 | 3954,0.0,1.0,0.56401384083 3957 | 3955,1.0,1.0,0.777142857143 3958 | 3956,1.0,0.0,0.705020920502 3959 | 3957,1.0,0.0,0.307692307692 3960 | 3958,1.0,1.0,0.705020920502 3961 | 3959,1.0,1.0,0.69133192389 3962 | 3960,0.0,0.0,0.598526703499 3963 | 3961,0.0,0.0,0.21594068582 3964 | 3962,0.0,0.0,0.473597359736 3965 | 3963,1.0,1.0,0.777142857143 3966 | 3964,0.0,0.0,0.21594068582 3967 | 3965,0.0,1.0,0.384491114701 3968 | 3966,0.0,1.0,0.777142857143 3969 | 3967,1.0,1.0,0.598526703499 3970 | 3968,0.0,1.0,0.307692307692 3971 | 3969,1.0,1.0,0.705020920502 3972 | 3970,0.0,0.0,0.473597359736 3973 | 3971,1.0,0.0,0.56401384083 3974 | 3972,1.0,1.0,0.777142857143 3975 | 3973,1.0,1.0,0.473597359736 3976 | 3974,1.0,1.0,0.473597359736 3977 | 3975,0.0,0.0,0.473597359736 3978 | 3976,0.0,0.0,0.432835820896 3979 | 3977,1.0,0.0,0.384491114701 3980 | 3978,1.0,1.0,0.598526703499 3981 | 3979,1.0,1.0,0.384491114701 3982 | 3980,0.0,1.0,0.69133192389 3983 | 3981,0.0,0.0,0.21594068582 3984 | 3982,0.0,1.0,0.473597359736 3985 | 3983,1.0,0.0,0.432835820896 3986 | 3984,1.0,1.0,0.307692307692 3987 | 3985,1.0,0.0,0.21594068582 3988 | 3986,0.0,1.0,0.598526703499 3989 | 3987,0.0,0.0,0.21594068582 3990 | 3988,1.0,0.0,0.384491114701 3991 | 3989,1.0,1.0,0.432835820896 3992 | 3990,0.0,0.0,0.432835820896 3993 | 3991,1.0,1.0,0.777142857143 3994 | 3992,0.0,1.0,0.21594068582 3995 | 3993,1.0,1.0,0.56401384083 3996 | 3994,0.0,0.0,0.21594068582 3997 | 3995,0.0,1.0,0.21594068582 3998 | 3996,0.0,1.0,0.705020920502 3999 | 3997,1.0,1.0,0.432835820896 4000 | 3998,0.0,0.0,0.432835820896 4001 | 3999,1.0,1.0,0.69133192389 4002 | 4000,1.0,1.0,0.705020920502 4003 | 4001,0.0,1.0,0.432835820896 4004 | 4002,0.0,0.0,0.21594068582 4005 | 4003,0.0,1.0,0.384491114701 4006 | 4004,1.0,0.0,0.56401384083 4007 | 4005,1.0,1.0,0.56401384083 4008 | 4006,1.0,1.0,0.473597359736 4009 | 4007,1.0,1.0,0.384491114701 4010 | 4008,0.0,0.0,0.21594068582 4011 | 4009,0.0,1.0,0.473597359736 4012 | 4010,0.0,1.0,0.473597359736 4013 | 4011,0.0,0.0,0.473597359736 4014 | 4012,0.0,0.0,0.384491114701 4015 | 4013,0.0,1.0,0.69133192389 4016 | 4014,0.0,0.0,0.21594068582 4017 | 4015,1.0,1.0,0.56401384083 4018 | 4016,0.0,1.0,0.69133192389 4019 | 4017,1.0,1.0,0.69133192389 4020 | 4018,0.0,0.0,0.432835820896 4021 | 4019,1.0,1.0,0.69133192389 4022 | 4020,0.0,1.0,0.432835820896 4023 | 4021,1.0,0.0,0.432835820896 4024 | 4022,1.0,1.0,0.705020920502 4025 | 4023,0.0,1.0,0.307692307692 4026 | 4024,0.0,0.0,0.56401384083 4027 | 4025,1.0,1.0,0.56401384083 4028 | 4026,0.0,1.0,0.56401384083 4029 | 4027,0.0,1.0,0.56401384083 4030 | 4028,0.0,1.0,0.777142857143 4031 | 4029,0.0,1.0,0.21594068582 4032 | 4030,0.0,0.0,0.384491114701 4033 | 4031,1.0,0.0,0.69133192389 4034 | 4032,0.0,1.0,0.69133192389 4035 | 4033,1.0,1.0,0.598526703499 4036 | 4034,1.0,1.0,0.384491114701 4037 | 4035,1.0,1.0,0.69133192389 4038 | 4036,0.0,0.0,0.473597359736 4039 | 4037,0.0,1.0,0.432835820896 4040 | 4038,0.0,1.0,0.432835820896 4041 | 4039,1.0,0.0,0.473597359736 4042 | 4040,0.0,1.0,0.21594068582 4043 | 4041,1.0,1.0,0.384491114701 4044 | 4042,1.0,1.0,0.56401384083 4045 | 4043,1.0,0.0,0.432835820896 4046 | 4044,0.0,0.0,0.307692307692 4047 | 4045,1.0,0.0,0.432835820896 4048 | 4046,0.0,1.0,0.598526703499 4049 | 4047,1.0,1.0,0.705020920502 4050 | 4048,0.0,0.0,0.56401384083 4051 | 4049,0.0,0.0,0.432835820896 4052 | 4050,0.0,0.0,0.21594068582 4053 | 4051,0.0,1.0,0.384491114701 4054 | 4052,1.0,1.0,0.56401384083 4055 | 4053,0.0,1.0,0.432835820896 4056 | 4054,1.0,1.0,0.384491114701 4057 | 4055,1.0,1.0,0.69133192389 4058 | 4056,0.0,0.0,0.307692307692 4059 | 4057,1.0,1.0,0.473597359736 4060 | 4058,0.0,1.0,0.598526703499 4061 | 4059,0.0,1.0,0.432835820896 4062 | 4060,1.0,1.0,0.777142857143 4063 | 4061,1.0,1.0,0.69133192389 4064 | 4062,1.0,0.0,0.432835820896 4065 | 4063,1.0,1.0,0.56401384083 4066 | 4064,1.0,0.0,0.384491114701 4067 | 4065,1.0,1.0,0.598526703499 4068 | 4066,0.0,0.0,0.473597359736 4069 | 4067,0.0,0.0,0.56401384083 4070 | 4068,1.0,0.0,0.56401384083 4071 | 4069,0.0,1.0,0.56401384083 4072 | 4070,0.0,0.0,0.307692307692 4073 | 4071,0.0,1.0,0.56401384083 4074 | 4072,0.0,0.0,0.21594068582 4075 | 4073,0.0,0.0,0.21594068582 4076 | 4074,0.0,1.0,0.473597359736 4077 | 4075,0.0,0.0,0.307692307692 4078 | 4076,0.0,0.0,0.21594068582 4079 | 4077,1.0,1.0,0.705020920502 4080 | 4078,1.0,1.0,0.384491114701 4081 | 4079,1.0,1.0,0.56401384083 4082 | 4080,0.0,0.0,0.21594068582 4083 | 4081,0.0,1.0,0.777142857143 4084 | 4082,0.0,0.0,0.473597359736 4085 | 4083,1.0,1.0,0.598526703499 4086 | 4084,0.0,0.0,0.473597359736 4087 | 4085,1.0,1.0,0.56401384083 4088 | 4086,1.0,1.0,0.777142857143 4089 | 4087,0.0,1.0,0.598526703499 4090 | 4088,0.0,1.0,0.69133192389 4091 | 4089,0.0,1.0,0.69133192389 4092 | 4090,0.0,1.0,0.307692307692 4093 | 4091,1.0,1.0,0.777142857143 4094 | 4092,0.0,0.0,0.705020920502 4095 | 4093,1.0,1.0,0.56401384083 4096 | 4094,1.0,1.0,0.777142857143 4097 | 4095,0.0,0.0,0.307692307692 4098 | 4096,1.0,0.0,0.21594068582 4099 | 4097,0.0,0.0,0.307692307692 4100 | 4098,1.0,0.0,0.69133192389 4101 | 4099,1.0,1.0,0.473597359736 4102 | 4100,0.0,1.0,0.598526703499 4103 | 4101,0.0,1.0,0.384491114701 4104 | 4102,1.0,0.0,0.432835820896 4105 | 4103,1.0,0.0,0.69133192389 4106 | 4104,0.0,1.0,0.473597359736 4107 | 4105,1.0,1.0,0.473597359736 4108 | 4106,0.0,0.0,0.21594068582 4109 | 4107,0.0,1.0,0.69133192389 4110 | 4108,0.0,1.0,0.21594068582 4111 | 4109,1.0,1.0,0.56401384083 4112 | 4110,1.0,1.0,0.307692307692 4113 | 4111,1.0,0.0,0.56401384083 4114 | 4112,1.0,1.0,0.777142857143 4115 | 4113,1.0,1.0,0.56401384083 4116 | 4114,1.0,1.0,0.777142857143 4117 | 4115,1.0,1.0,0.56401384083 4118 | 4116,1.0,0.0,0.432835820896 4119 | 4117,1.0,1.0,0.473597359736 4120 | 4118,1.0,0.0,0.21594068582 4121 | 4119,0.0,0.0,0.384491114701 4122 | 4120,1.0,1.0,0.473597359736 4123 | 4121,1.0,1.0,0.432835820896 4124 | 4122,0.0,1.0,0.598526703499 4125 | 4123,0.0,1.0,0.307692307692 4126 | 4124,0.0,0.0,0.307692307692 4127 | 4125,0.0,0.0,0.384491114701 4128 | 4126,0.0,0.0,0.432835820896 4129 | 4127,0.0,0.0,0.432835820896 4130 | 4128,1.0,1.0,0.705020920502 4131 | 4129,0.0,0.0,0.384491114701 4132 | 4130,0.0,1.0,0.705020920502 4133 | 4131,1.0,1.0,0.56401384083 4134 | 4132,0.0,1.0,0.598526703499 4135 | 4133,1.0,1.0,0.705020920502 4136 | 4134,1.0,1.0,0.432835820896 4137 | 4135,1.0,1.0,0.56401384083 4138 | 4136,0.0,1.0,0.56401384083 4139 | 4137,1.0,1.0,0.598526703499 4140 | 4138,1.0,0.0,0.384491114701 4141 | 4139,0.0,1.0,0.598526703499 4142 | 4140,1.0,0.0,0.21594068582 4143 | 4141,1.0,1.0,0.598526703499 4144 | 4142,0.0,0.0,0.56401384083 4145 | 4143,1.0,1.0,0.705020920502 4146 | 4144,0.0,1.0,0.384491114701 4147 | 4145,1.0,1.0,0.777142857143 4148 | 4146,0.0,0.0,0.21594068582 4149 | 4147,1.0,1.0,0.777142857143 4150 | 4148,0.0,1.0,0.384491114701 4151 | 4149,1.0,0.0,0.56401384083 4152 | 4150,1.0,1.0,0.56401384083 4153 | 4151,1.0,0.0,0.777142857143 4154 | 4152,1.0,1.0,0.705020920502 4155 | 4153,1.0,1.0,0.432835820896 4156 | 4154,0.0,0.0,0.307692307692 4157 | 4155,0.0,1.0,0.705020920502 4158 | 4156,1.0,0.0,0.307692307692 4159 | 4157,1.0,1.0,0.598526703499 4160 | 4158,0.0,0.0,0.473597359736 4161 | 4159,0.0,1.0,0.598526703499 4162 | 4160,1.0,0.0,0.307692307692 4163 | 4161,0.0,0.0,0.432835820896 4164 | 4162,0.0,1.0,0.432835820896 4165 | 4163,1.0,1.0,0.598526703499 4166 | 4164,0.0,1.0,0.21594068582 4167 | 4165,0.0,1.0,0.307692307692 4168 | 4166,0.0,1.0,0.56401384083 4169 | 4167,0.0,1.0,0.69133192389 4170 | 4168,1.0,0.0,0.69133192389 4171 | 4169,0.0,0.0,0.473597359736 4172 | 4170,0.0,1.0,0.432835820896 4173 | 4171,0.0,1.0,0.432835820896 4174 | 4172,1.0,0.0,0.777142857143 4175 | 4173,1.0,1.0,0.432835820896 4176 | 4174,0.0,1.0,0.56401384083 4177 | 4175,0.0,1.0,0.307692307692 4178 | 4176,0.0,1.0,0.473597359736 4179 | 4177,0.0,0.0,0.21594068582 4180 | 4178,0.0,1.0,0.598526703499 4181 | 4179,0.0,1.0,0.384491114701 4182 | 4180,1.0,1.0,0.705020920502 4183 | 4181,1.0,1.0,0.705020920502 4184 | 4182,0.0,0.0,0.21594068582 4185 | 4183,1.0,1.0,0.307692307692 4186 | 4184,0.0,1.0,0.598526703499 4187 | 4185,1.0,1.0,0.598526703499 4188 | 4186,1.0,1.0,0.69133192389 4189 | 4187,1.0,0.0,0.307692307692 4190 | 4188,1.0,1.0,0.56401384083 4191 | 4189,0.0,0.0,0.384491114701 4192 | 4190,0.0,0.0,0.307692307692 4193 | 4191,1.0,0.0,0.598526703499 4194 | 4192,1.0,1.0,0.473597359736 4195 | 4193,0.0,0.0,0.21594068582 4196 | 4194,0.0,0.0,0.21594068582 4197 | 4195,0.0,1.0,0.432835820896 4198 | 4196,0.0,1.0,0.69133192389 4199 | 4197,1.0,1.0,0.56401384083 4200 | 4198,0.0,0.0,0.777142857143 4201 | 4199,0.0,0.0,0.21594068582 4202 | 4200,1.0,0.0,0.69133192389 4203 | 4201,1.0,1.0,0.432835820896 4204 | 4202,1.0,1.0,0.598526703499 4205 | 4203,0.0,0.0,0.473597359736 4206 | 4204,1.0,1.0,0.69133192389 4207 | 4205,0.0,1.0,0.473597359736 4208 | 4206,1.0,1.0,0.56401384083 4209 | 4207,0.0,0.0,0.69133192389 4210 | 4208,0.0,0.0,0.705020920502 4211 | 4209,1.0,1.0,0.69133192389 4212 | 4210,0.0,0.0,0.21594068582 4213 | 4211,0.0,1.0,0.384491114701 4214 | 4212,1.0,0.0,0.432835820896 4215 | 4213,0.0,1.0,0.307692307692 4216 | 4214,0.0,1.0,0.21594068582 4217 | 4215,1.0,1.0,0.598526703499 4218 | 4216,1.0,1.0,0.56401384083 4219 | 4217,0.0,0.0,0.473597359736 4220 | 4218,1.0,1.0,0.705020920502 4221 | 4219,1.0,1.0,0.69133192389 4222 | 4220,0.0,1.0,0.21594068582 4223 | 4221,0.0,1.0,0.473597359736 4224 | 4222,0.0,0.0,0.56401384083 4225 | 4223,1.0,1.0,0.307692307692 4226 | 4224,1.0,1.0,0.21594068582 4227 | 4225,0.0,0.0,0.432835820896 4228 | 4226,1.0,0.0,0.384491114701 4229 | 4227,0.0,1.0,0.705020920502 4230 | 4228,1.0,1.0,0.307692307692 4231 | 4229,1.0,0.0,0.21594068582 4232 | 4230,1.0,1.0,0.384491114701 4233 | 4231,0.0,0.0,0.21594068582 4234 | 4232,0.0,1.0,0.21594068582 4235 | 4233,1.0,1.0,0.69133192389 4236 | 4234,0.0,0.0,0.21594068582 4237 | 4235,1.0,1.0,0.69133192389 4238 | 4236,0.0,0.0,0.473597359736 4239 | 4237,0.0,0.0,0.777142857143 4240 | 4238,0.0,0.0,0.307692307692 4241 | 4239,0.0,1.0,0.21594068582 4242 | 4240,1.0,1.0,0.307692307692 4243 | 4241,0.0,0.0,0.21594068582 4244 | 4242,0.0,0.0,0.56401384083 4245 | 4243,0.0,0.0,0.384491114701 4246 | 4244,1.0,0.0,0.598526703499 4247 | 4245,0.0,0.0,0.705020920502 4248 | 4246,0.0,1.0,0.56401384083 4249 | 4247,0.0,0.0,0.384491114701 4250 | 4248,0.0,0.0,0.384491114701 4251 | 4249,0.0,1.0,0.56401384083 4252 | 4250,0.0,1.0,0.473597359736 4253 | 4251,0.0,1.0,0.21594068582 4254 | 4252,0.0,1.0,0.307692307692 4255 | 4253,1.0,0.0,0.56401384083 4256 | 4254,1.0,1.0,0.705020920502 4257 | 4255,0.0,0.0,0.21594068582 4258 | 4256,1.0,1.0,0.777142857143 4259 | 4257,0.0,1.0,0.307692307692 4260 | 4258,1.0,0.0,0.69133192389 4261 | 4259,1.0,1.0,0.21594068582 4262 | 4260,1.0,1.0,0.777142857143 4263 | 4261,1.0,1.0,0.384491114701 4264 | 4262,1.0,1.0,0.705020920502 4265 | 4263,0.0,1.0,0.307692307692 4266 | 4264,1.0,1.0,0.598526703499 4267 | 4265,0.0,0.0,0.21594068582 4268 | 4266,1.0,1.0,0.21594068582 4269 | 4267,1.0,0.0,0.56401384083 4270 | 4268,0.0,1.0,0.384491114701 4271 | 4269,1.0,0.0,0.598526703499 4272 | 4270,1.0,0.0,0.21594068582 4273 | 4271,0.0,1.0,0.21594068582 4274 | 4272,0.0,1.0,0.384491114701 4275 | 4273,1.0,1.0,0.777142857143 4276 | 4274,1.0,0.0,0.56401384083 4277 | 4275,1.0,0.0,0.473597359736 4278 | 4276,0.0,1.0,0.21594068582 4279 | 4277,0.0,0.0,0.21594068582 4280 | 4278,0.0,1.0,0.307692307692 4281 | 4279,0.0,1.0,0.384491114701 4282 | 4280,1.0,0.0,0.598526703499 4283 | 4281,0.0,1.0,0.598526703499 4284 | 4282,0.0,1.0,0.69133192389 4285 | 4283,1.0,1.0,0.21594068582 4286 | 4284,0.0,1.0,0.432835820896 4287 | 4285,0.0,1.0,0.384491114701 4288 | 4286,1.0,1.0,0.21594068582 4289 | 4287,1.0,0.0,0.432835820896 4290 | 4288,1.0,1.0,0.69133192389 4291 | 4289,1.0,1.0,0.598526703499 4292 | 4290,0.0,1.0,0.432835820896 4293 | 4291,0.0,0.0,0.432835820896 4294 | 4292,0.0,1.0,0.307692307692 4295 | 4293,1.0,0.0,0.705020920502 4296 | 4294,0.0,0.0,0.21594068582 4297 | 4295,0.0,0.0,0.307692307692 4298 | 4296,0.0,1.0,0.21594068582 4299 | 4297,1.0,1.0,0.598526703499 4300 | 4298,0.0,1.0,0.21594068582 4301 | 4299,1.0,1.0,0.473597359736 4302 | 4300,1.0,0.0,0.598526703499 4303 | 4301,1.0,0.0,0.21594068582 4304 | 4302,0.0,0.0,0.384491114701 4305 | 4303,1.0,1.0,0.598526703499 4306 | 4304,1.0,0.0,0.384491114701 4307 | 4305,0.0,0.0,0.21594068582 4308 | 4306,0.0,1.0,0.69133192389 4309 | 4307,1.0,1.0,0.598526703499 4310 | 4308,0.0,1.0,0.69133192389 4311 | 4309,1.0,1.0,0.69133192389 4312 | 4310,1.0,0.0,0.384491114701 4313 | 4311,0.0,0.0,0.432835820896 4314 | 4312,1.0,1.0,0.598526703499 4315 | 4313,0.0,1.0,0.21594068582 4316 | 4314,0.0,1.0,0.307692307692 4317 | 4315,1.0,1.0,0.69133192389 4318 | 4316,1.0,1.0,0.307692307692 4319 | 4317,1.0,1.0,0.777142857143 4320 | 4318,1.0,1.0,0.473597359736 4321 | 4319,0.0,1.0,0.598526703499 4322 | 4320,0.0,0.0,0.21594068582 4323 | 4321,1.0,0.0,0.69133192389 4324 | 4322,0.0,1.0,0.384491114701 4325 | 4323,0.0,1.0,0.473597359736 4326 | 4324,1.0,1.0,0.432835820896 4327 | 4325,1.0,1.0,0.598526703499 4328 | 4326,1.0,1.0,0.21594068582 4329 | 4327,1.0,1.0,0.56401384083 4330 | 4328,1.0,1.0,0.705020920502 4331 | 4329,0.0,1.0,0.21594068582 4332 | 4330,0.0,0.0,0.307692307692 4333 | 4331,1.0,1.0,0.705020920502 4334 | 4332,1.0,0.0,0.307692307692 4335 | 4333,1.0,1.0,0.307692307692 4336 | 4334,1.0,1.0,0.307692307692 4337 | 4335,1.0,1.0,0.432835820896 4338 | 4336,0.0,0.0,0.307692307692 4339 | 4337,0.0,1.0,0.384491114701 4340 | 4338,0.0,0.0,0.307692307692 4341 | 4339,0.0,0.0,0.307692307692 4342 | 4340,0.0,1.0,0.56401384083 4343 | 4341,1.0,1.0,0.598526703499 4344 | 4342,1.0,0.0,0.307692307692 4345 | 4343,0.0,0.0,0.598526703499 4346 | 4344,1.0,0.0,0.598526703499 4347 | 4345,0.0,1.0,0.21594068582 4348 | 4346,1.0,0.0,0.432835820896 4349 | 4347,1.0,1.0,0.598526703499 4350 | 4348,1.0,1.0,0.777142857143 4351 | 4349,1.0,0.0,0.598526703499 4352 | 4350,0.0,1.0,0.21594068582 4353 | 4351,1.0,0.0,0.598526703499 4354 | 4352,0.0,0.0,0.21594068582 4355 | 4353,0.0,1.0,0.473597359736 4356 | 4354,1.0,1.0,0.56401384083 4357 | 4355,1.0,0.0,0.777142857143 4358 | 4356,0.0,1.0,0.21594068582 4359 | 4357,1.0,1.0,0.307692307692 4360 | 4358,1.0,1.0,0.69133192389 4361 | 4359,1.0,1.0,0.705020920502 4362 | 4360,0.0,1.0,0.473597359736 4363 | 4361,1.0,1.0,0.56401384083 4364 | 4362,1.0,1.0,0.69133192389 4365 | 4363,1.0,1.0,0.705020920502 4366 | 4364,0.0,1.0,0.473597359736 4367 | 4365,0.0,0.0,0.307692307692 4368 | 4366,1.0,1.0,0.69133192389 4369 | 4367,1.0,0.0,0.21594068582 4370 | 4368,1.0,1.0,0.69133192389 4371 | 4369,0.0,1.0,0.307692307692 4372 | 4370,1.0,1.0,0.56401384083 4373 | 4371,0.0,0.0,0.384491114701 4374 | 4372,1.0,0.0,0.69133192389 4375 | 4373,1.0,1.0,0.307692307692 4376 | 4374,1.0,0.0,0.598526703499 4377 | 4375,0.0,0.0,0.21594068582 4378 | 4376,1.0,1.0,0.777142857143 4379 | 4377,0.0,1.0,0.56401384083 4380 | 4378,1.0,0.0,0.56401384083 4381 | 4379,0.0,0.0,0.473597359736 4382 | 4380,1.0,1.0,0.705020920502 4383 | 4381,1.0,1.0,0.307692307692 4384 | 4382,0.0,0.0,0.69133192389 4385 | 4383,1.0,0.0,0.705020920502 4386 | 4384,1.0,1.0,0.69133192389 4387 | 4385,1.0,1.0,0.473597359736 4388 | 4386,1.0,1.0,0.56401384083 4389 | 4387,0.0,1.0,0.307692307692 4390 | 4388,1.0,1.0,0.384491114701 4391 | 4389,0.0,0.0,0.307692307692 4392 | 4390,1.0,1.0,0.384491114701 4393 | 4391,0.0,0.0,0.307692307692 4394 | 4392,0.0,1.0,0.21594068582 4395 | 4393,0.0,0.0,0.21594068582 4396 | 4394,0.0,0.0,0.21594068582 4397 | 4395,0.0,0.0,0.473597359736 4398 | 4396,1.0,0.0,0.473597359736 4399 | 4397,1.0,1.0,0.307692307692 4400 | 4398,1.0,0.0,0.598526703499 4401 | 4399,0.0,1.0,0.21594068582 4402 | 4400,1.0,1.0,0.56401384083 4403 | 4401,0.0,1.0,0.384491114701 4404 | 4402,0.0,1.0,0.384491114701 4405 | 4403,1.0,1.0,0.473597359736 4406 | 4404,1.0,1.0,0.432835820896 4407 | 4405,1.0,0.0,0.307692307692 4408 | 4406,1.0,1.0,0.705020920502 4409 | 4407,0.0,1.0,0.384491114701 4410 | 4408,0.0,0.0,0.307692307692 4411 | 4409,1.0,0.0,0.307692307692 4412 | 4410,1.0,0.0,0.384491114701 4413 | 4411,0.0,1.0,0.69133192389 4414 | 4412,1.0,1.0,0.21594068582 4415 | 4413,0.0,1.0,0.69133192389 4416 | 4414,0.0,0.0,0.21594068582 4417 | 4415,1.0,1.0,0.598526703499 4418 | 4416,1.0,0.0,0.473597359736 4419 | 4417,0.0,1.0,0.384491114701 4420 | 4418,1.0,1.0,0.705020920502 4421 | 4419,1.0,0.0,0.598526703499 4422 | 4420,0.0,0.0,0.21594068582 4423 | 4421,0.0,1.0,0.21594068582 4424 | 4422,0.0,1.0,0.705020920502 4425 | 4423,1.0,1.0,0.473597359736 4426 | 4424,1.0,1.0,0.705020920502 4427 | 4425,0.0,1.0,0.432835820896 4428 | 4426,0.0,1.0,0.432835820896 4429 | 4427,1.0,0.0,0.432835820896 4430 | 4428,0.0,1.0,0.69133192389 4431 | 4429,0.0,0.0,0.21594068582 4432 | 4430,0.0,1.0,0.307692307692 4433 | 4431,0.0,1.0,0.598526703499 4434 | 4432,0.0,1.0,0.69133192389 4435 | 4433,1.0,1.0,0.69133192389 4436 | 4434,0.0,1.0,0.432835820896 4437 | 4435,0.0,1.0,0.56401384083 4438 | 4436,1.0,0.0,0.598526703499 4439 | 4437,0.0,0.0,0.56401384083 4440 | 4438,0.0,1.0,0.21594068582 4441 | 4439,1.0,0.0,0.473597359736 4442 | 4440,0.0,1.0,0.307692307692 4443 | 4441,0.0,1.0,0.307692307692 4444 | 4442,1.0,0.0,0.473597359736 4445 | 4443,1.0,1.0,0.69133192389 4446 | 4444,0.0,0.0,0.21594068582 4447 | 4445,0.0,0.0,0.307692307692 4448 | 4446,0.0,0.0,0.307692307692 4449 | 4447,0.0,1.0,0.56401384083 4450 | 4448,0.0,0.0,0.21594068582 4451 | 4449,0.0,1.0,0.56401384083 4452 | 4450,1.0,1.0,0.598526703499 4453 | 4451,0.0,0.0,0.307692307692 4454 | 4452,1.0,0.0,0.21594068582 4455 | 4453,0.0,1.0,0.21594068582 4456 | 4454,0.0,1.0,0.21594068582 4457 | 4455,1.0,1.0,0.777142857143 4458 | 4456,1.0,1.0,0.56401384083 4459 | 4457,1.0,0.0,0.473597359736 4460 | 4458,0.0,0.0,0.21594068582 4461 | 4459,0.0,1.0,0.56401384083 4462 | 4460,1.0,1.0,0.21594068582 4463 | 4461,1.0,0.0,0.777142857143 4464 | 4462,1.0,0.0,0.69133192389 4465 | 4463,0.0,1.0,0.705020920502 4466 | 4464,1.0,0.0,0.56401384083 4467 | 4465,0.0,0.0,0.598526703499 4468 | 4466,0.0,1.0,0.432835820896 4469 | 4467,0.0,1.0,0.432835820896 4470 | 4468,1.0,1.0,0.432835820896 4471 | 4469,1.0,0.0,0.705020920502 4472 | 4470,1.0,1.0,0.384491114701 4473 | 4471,1.0,1.0,0.598526703499 4474 | 4472,0.0,1.0,0.598526703499 4475 | 4473,1.0,0.0,0.598526703499 4476 | 4474,1.0,0.0,0.56401384083 4477 | 4475,1.0,1.0,0.69133192389 4478 | 4476,1.0,1.0,0.384491114701 4479 | 4477,0.0,1.0,0.598526703499 4480 | 4478,0.0,0.0,0.21594068582 4481 | 4479,1.0,0.0,0.56401384083 4482 | 4480,0.0,1.0,0.705020920502 4483 | 4481,0.0,1.0,0.473597359736 4484 | 4482,1.0,1.0,0.705020920502 4485 | 4483,0.0,0.0,0.432835820896 4486 | 4484,1.0,1.0,0.384491114701 4487 | 4485,1.0,1.0,0.56401384083 4488 | 4486,1.0,0.0,0.598526703499 4489 | 4487,0.0,0.0,0.307692307692 4490 | 4488,0.0,0.0,0.307692307692 4491 | 4489,1.0,1.0,0.473597359736 4492 | 4490,0.0,1.0,0.384491114701 4493 | 4491,1.0,1.0,0.473597359736 4494 | 4492,1.0,1.0,0.21594068582 4495 | 4493,1.0,0.0,0.21594068582 4496 | 4494,1.0,0.0,0.777142857143 4497 | 4495,1.0,1.0,0.69133192389 4498 | 4496,1.0,1.0,0.69133192389 4499 | 4497,0.0,0.0,0.21594068582 4500 | 4498,1.0,1.0,0.705020920502 4501 | 4499,0.0,1.0,0.21594068582 4502 | 4500,0.0,0.0,0.307692307692 4503 | 4501,0.0,1.0,0.384491114701 4504 | 4502,1.0,0.0,0.705020920502 4505 | 4503,1.0,1.0,0.777142857143 4506 | 4504,0.0,1.0,0.307692307692 4507 | 4505,0.0,0.0,0.384491114701 4508 | 4506,0.0,0.0,0.21594068582 4509 | 4507,0.0,0.0,0.307692307692 4510 | 4508,1.0,1.0,0.69133192389 4511 | 4509,1.0,1.0,0.598526703499 4512 | 4510,0.0,1.0,0.432835820896 4513 | 4511,0.0,1.0,0.21594068582 4514 | 4512,0.0,0.0,0.384491114701 4515 | 4513,0.0,0.0,0.21594068582 4516 | 4514,0.0,0.0,0.56401384083 4517 | 4515,1.0,1.0,0.69133192389 4518 | 4516,0.0,0.0,0.307692307692 4519 | 4517,1.0,1.0,0.307692307692 4520 | 4518,1.0,0.0,0.384491114701 4521 | 4519,0.0,0.0,0.69133192389 4522 | 4520,0.0,0.0,0.432835820896 4523 | 4521,1.0,1.0,0.705020920502 4524 | 4522,0.0,1.0,0.384491114701 4525 | 4523,0.0,1.0,0.384491114701 4526 | 4524,0.0,0.0,0.21594068582 4527 | 4525,1.0,0.0,0.598526703499 4528 | 4526,1.0,1.0,0.69133192389 4529 | 4527,0.0,0.0,0.307692307692 4530 | 4528,1.0,1.0,0.598526703499 4531 | 4529,1.0,0.0,0.21594068582 4532 | 4530,1.0,0.0,0.307692307692 4533 | 4531,1.0,1.0,0.21594068582 4534 | 4532,0.0,1.0,0.473597359736 4535 | 4533,0.0,0.0,0.21594068582 4536 | 4534,1.0,0.0,0.307692307692 4537 | 4535,1.0,1.0,0.473597359736 4538 | 4536,0.0,1.0,0.473597359736 4539 | 4537,0.0,0.0,0.21594068582 4540 | 4538,1.0,1.0,0.384491114701 4541 | 4539,0.0,1.0,0.56401384083 4542 | 4540,1.0,1.0,0.705020920502 4543 | 4541,1.0,1.0,0.21594068582 4544 | 4542,0.0,0.0,0.21594068582 4545 | 4543,0.0,0.0,0.473597359736 4546 | 4544,1.0,1.0,0.69133192389 4547 | 4545,0.0,1.0,0.21594068582 4548 | 4546,1.0,1.0,0.777142857143 4549 | 4547,1.0,1.0,0.69133192389 4550 | 4548,0.0,0.0,0.432835820896 4551 | 4549,1.0,0.0,0.56401384083 4552 | 4550,0.0,1.0,0.56401384083 4553 | 4551,0.0,1.0,0.473597359736 4554 | 4552,0.0,1.0,0.777142857143 4555 | 4553,0.0,1.0,0.21594068582 4556 | 4554,1.0,0.0,0.307692307692 4557 | 4555,0.0,0.0,0.432835820896 4558 | 4556,1.0,1.0,0.598526703499 4559 | 4557,1.0,1.0,0.705020920502 4560 | 4558,0.0,1.0,0.21594068582 4561 | 4559,0.0,1.0,0.473597359736 4562 | 4560,1.0,1.0,0.56401384083 4563 | 4561,1.0,0.0,0.598526703499 4564 | 4562,1.0,0.0,0.21594068582 4565 | 4563,0.0,1.0,0.21594068582 4566 | 4564,0.0,1.0,0.21594068582 4567 | 4565,1.0,1.0,0.777142857143 4568 | 4566,0.0,0.0,0.432835820896 4569 | 4567,1.0,1.0,0.473597359736 4570 | 4568,1.0,1.0,0.69133192389 4571 | 4569,0.0,1.0,0.705020920502 4572 | 4570,1.0,1.0,0.69133192389 4573 | 4571,0.0,0.0,0.21594068582 4574 | 4572,0.0,0.0,0.384491114701 4575 | 4573,0.0,1.0,0.473597359736 4576 | 4574,0.0,0.0,0.21594068582 4577 | 4575,0.0,1.0,0.69133192389 4578 | 4576,0.0,0.0,0.21594068582 4579 | 4577,0.0,0.0,0.384491114701 4580 | 4578,0.0,0.0,0.473597359736 4581 | 4579,0.0,1.0,0.473597359736 4582 | 4580,1.0,1.0,0.473597359736 4583 | 4581,0.0,1.0,0.384491114701 4584 | 4582,1.0,1.0,0.432835820896 4585 | 4583,0.0,1.0,0.384491114701 4586 | 4584,0.0,0.0,0.307692307692 4587 | 4585,1.0,1.0,0.307692307692 4588 | 4586,1.0,0.0,0.473597359736 4589 | 4587,0.0,1.0,0.307692307692 4590 | 4588,1.0,0.0,0.432835820896 4591 | 4589,0.0,1.0,0.598526703499 4592 | 4590,1.0,0.0,0.21594068582 4593 | 4591,1.0,0.0,0.307692307692 4594 | 4592,1.0,1.0,0.432835820896 4595 | 4593,1.0,1.0,0.777142857143 4596 | 4594,0.0,0.0,0.777142857143 4597 | 4595,0.0,0.0,0.21594068582 4598 | 4596,0.0,1.0,0.432835820896 4599 | 4597,1.0,1.0,0.473597359736 4600 | 4598,0.0,1.0,0.705020920502 4601 | 4599,1.0,0.0,0.473597359736 4602 | 4600,1.0,0.0,0.307692307692 4603 | 4601,1.0,0.0,0.705020920502 4604 | 4602,1.0,1.0,0.705020920502 4605 | 4603,0.0,1.0,0.598526703499 4606 | 4604,1.0,0.0,0.307692307692 4607 | 4605,1.0,0.0,0.307692307692 4608 | 4606,0.0,1.0,0.384491114701 4609 | 4607,0.0,0.0,0.21594068582 4610 | 4608,0.0,0.0,0.21594068582 4611 | 4609,1.0,1.0,0.56401384083 4612 | 4610,0.0,1.0,0.384491114701 4613 | 4611,0.0,0.0,0.384491114701 4614 | 4612,1.0,1.0,0.384491114701 4615 | 4613,1.0,0.0,0.473597359736 4616 | 4614,0.0,0.0,0.777142857143 4617 | 4615,0.0,0.0,0.21594068582 4618 | 4616,1.0,0.0,0.56401384083 4619 | 4617,0.0,0.0,0.384491114701 4620 | 4618,0.0,1.0,0.21594068582 4621 | 4619,1.0,1.0,0.56401384083 4622 | 4620,1.0,1.0,0.705020920502 4623 | 4621,0.0,1.0,0.777142857143 4624 | 4622,0.0,1.0,0.307692307692 4625 | 4623,0.0,0.0,0.21594068582 4626 | 4624,0.0,1.0,0.307692307692 4627 | 4625,1.0,0.0,0.598526703499 4628 | 4626,1.0,0.0,0.56401384083 4629 | 4627,1.0,1.0,0.777142857143 4630 | 4628,0.0,1.0,0.384491114701 4631 | 4629,1.0,1.0,0.384491114701 4632 | 4630,0.0,1.0,0.598526703499 4633 | 4631,1.0,1.0,0.598526703499 4634 | 4632,0.0,1.0,0.21594068582 4635 | 4633,0.0,1.0,0.69133192389 4636 | 4634,1.0,0.0,0.56401384083 4637 | 4635,0.0,1.0,0.307692307692 4638 | 4636,1.0,1.0,0.384491114701 4639 | 4637,0.0,1.0,0.384491114701 4640 | 4638,0.0,1.0,0.598526703499 4641 | 4639,1.0,1.0,0.384491114701 4642 | 4640,0.0,0.0,0.384491114701 4643 | 4641,1.0,1.0,0.705020920502 4644 | 4642,1.0,1.0,0.56401384083 4645 | 4643,0.0,1.0,0.56401384083 4646 | 4644,0.0,0.0,0.384491114701 4647 | 4645,1.0,0.0,0.56401384083 4648 | 4646,1.0,1.0,0.705020920502 4649 | 4647,1.0,1.0,0.56401384083 4650 | 4648,1.0,0.0,0.598526703499 4651 | 4649,0.0,1.0,0.473597359736 4652 | 4650,0.0,0.0,0.56401384083 4653 | 4651,1.0,1.0,0.777142857143 4654 | 4652,0.0,1.0,0.21594068582 4655 | 4653,1.0,1.0,0.777142857143 4656 | 4654,0.0,0.0,0.21594068582 4657 | 4655,0.0,0.0,0.56401384083 4658 | 4656,0.0,0.0,0.307692307692 4659 | 4657,0.0,1.0,0.432835820896 4660 | 4658,0.0,1.0,0.432835820896 4661 | 4659,0.0,0.0,0.777142857143 4662 | 4660,1.0,1.0,0.705020920502 4663 | 4661,0.0,1.0,0.56401384083 4664 | 4662,1.0,1.0,0.598526703499 4665 | 4663,0.0,1.0,0.473597359736 4666 | 4664,0.0,0.0,0.56401384083 4667 | 4665,0.0,1.0,0.56401384083 4668 | 4666,0.0,1.0,0.705020920502 4669 | 4667,1.0,1.0,0.56401384083 4670 | 4668,0.0,1.0,0.21594068582 4671 | 4669,1.0,1.0,0.56401384083 4672 | 4670,1.0,1.0,0.705020920502 4673 | 4671,1.0,1.0,0.777142857143 4674 | 4672,1.0,0.0,0.473597359736 4675 | 4673,1.0,0.0,0.69133192389 4676 | 4674,0.0,0.0,0.21594068582 4677 | 4675,0.0,0.0,0.473597359736 4678 | 4676,1.0,1.0,0.69133192389 4679 | 4677,0.0,0.0,0.307692307692 4680 | 4678,0.0,0.0,0.21594068582 4681 | 4679,0.0,1.0,0.21594068582 4682 | 4680,1.0,1.0,0.598526703499 4683 | 4681,1.0,1.0,0.432835820896 4684 | 4682,1.0,0.0,0.69133192389 4685 | 4683,0.0,1.0,0.432835820896 4686 | 4684,1.0,0.0,0.432835820896 4687 | 4685,1.0,1.0,0.384491114701 4688 | 4686,0.0,1.0,0.56401384083 4689 | 4687,1.0,0.0,0.69133192389 4690 | 4688,1.0,1.0,0.705020920502 4691 | 4689,0.0,1.0,0.598526703499 4692 | 4690,1.0,0.0,0.56401384083 4693 | 4691,0.0,1.0,0.384491114701 4694 | 4692,1.0,1.0,0.777142857143 4695 | 4693,0.0,0.0,0.307692307692 4696 | 4694,0.0,0.0,0.384491114701 4697 | 4695,1.0,1.0,0.69133192389 4698 | 4696,1.0,0.0,0.777142857143 4699 | 4697,1.0,0.0,0.56401384083 4700 | 4698,0.0,1.0,0.432835820896 4701 | 4699,0.0,1.0,0.384491114701 4702 | 4700,0.0,1.0,0.473597359736 4703 | 4701,0.0,0.0,0.705020920502 4704 | 4702,0.0,0.0,0.384491114701 4705 | 4703,1.0,1.0,0.384491114701 4706 | 4704,1.0,1.0,0.777142857143 4707 | 4705,1.0,1.0,0.705020920502 4708 | 4706,1.0,0.0,0.705020920502 4709 | 4707,1.0,1.0,0.432835820896 4710 | 4708,0.0,0.0,0.21594068582 4711 | 4709,0.0,1.0,0.432835820896 4712 | 4710,1.0,0.0,0.69133192389 4713 | 4711,1.0,0.0,0.384491114701 4714 | 4712,0.0,0.0,0.307692307692 4715 | 4713,1.0,1.0,0.777142857143 4716 | 4714,0.0,1.0,0.56401384083 4717 | 4715,1.0,1.0,0.473597359736 4718 | 4716,0.0,0.0,0.56401384083 4719 | 4717,0.0,1.0,0.384491114701 4720 | 4718,0.0,0.0,0.598526703499 4721 | 4719,0.0,1.0,0.21594068582 4722 | 4720,0.0,1.0,0.598526703499 4723 | 4721,1.0,0.0,0.69133192389 4724 | 4722,0.0,1.0,0.307692307692 4725 | 4723,1.0,0.0,0.69133192389 4726 | 4724,1.0,1.0,0.473597359736 4727 | 4725,0.0,0.0,0.21594068582 4728 | 4726,1.0,0.0,0.56401384083 4729 | 4727,1.0,1.0,0.705020920502 4730 | 4728,1.0,1.0,0.69133192389 4731 | 4729,0.0,1.0,0.307692307692 4732 | 4730,0.0,1.0,0.21594068582 4733 | 4731,1.0,0.0,0.777142857143 4734 | 4732,0.0,0.0,0.432835820896 4735 | 4733,0.0,1.0,0.384491114701 4736 | 4734,1.0,0.0,0.384491114701 4737 | 4735,1.0,0.0,0.384491114701 4738 | 4736,0.0,0.0,0.384491114701 4739 | 4737,0.0,1.0,0.384491114701 4740 | 4738,0.0,1.0,0.307692307692 4741 | 4739,0.0,0.0,0.21594068582 4742 | 4740,0.0,0.0,0.473597359736 4743 | 4741,0.0,1.0,0.473597359736 4744 | 4742,0.0,1.0,0.432835820896 4745 | 4743,1.0,1.0,0.473597359736 4746 | 4744,0.0,1.0,0.21594068582 4747 | 4745,1.0,1.0,0.432835820896 4748 | 4746,1.0,1.0,0.432835820896 4749 | 4747,1.0,1.0,0.777142857143 4750 | 4748,1.0,0.0,0.598526703499 4751 | 4749,0.0,0.0,0.307692307692 4752 | 4750,0.0,0.0,0.21594068582 4753 | 4751,0.0,1.0,0.432835820896 4754 | 4752,0.0,0.0,0.598526703499 4755 | 4753,1.0,1.0,0.432835820896 4756 | 4754,0.0,1.0,0.705020920502 4757 | 4755,0.0,1.0,0.473597359736 4758 | 4756,1.0,0.0,0.384491114701 4759 | 4757,1.0,0.0,0.21594068582 4760 | 4758,1.0,1.0,0.705020920502 4761 | 4759,0.0,0.0,0.69133192389 4762 | 4760,0.0,1.0,0.473597359736 4763 | 4761,1.0,1.0,0.777142857143 4764 | 4762,0.0,0.0,0.307692307692 4765 | 4763,1.0,0.0,0.384491114701 4766 | 4764,1.0,1.0,0.598526703499 4767 | 4765,1.0,1.0,0.777142857143 4768 | 4766,0.0,1.0,0.307692307692 4769 | 4767,1.0,0.0,0.56401384083 4770 | 4768,1.0,1.0,0.705020920502 4771 | 4769,0.0,1.0,0.307692307692 4772 | 4770,0.0,0.0,0.384491114701 4773 | 4771,1.0,1.0,0.705020920502 4774 | 4772,1.0,0.0,0.21594068582 4775 | 4773,0.0,1.0,0.307692307692 4776 | 4774,1.0,1.0,0.384491114701 4777 | 4775,1.0,1.0,0.777142857143 4778 | 4776,1.0,1.0,0.56401384083 4779 | 4777,0.0,1.0,0.473597359736 4780 | 4778,0.0,1.0,0.705020920502 4781 | 4779,1.0,0.0,0.21594068582 4782 | 4780,0.0,1.0,0.307692307692 4783 | 4781,0.0,1.0,0.307692307692 4784 | 4782,0.0,1.0,0.473597359736 4785 | 4783,1.0,0.0,0.473597359736 4786 | 4784,1.0,1.0,0.432835820896 4787 | 4785,0.0,1.0,0.56401384083 4788 | 4786,1.0,1.0,0.777142857143 4789 | 4787,1.0,0.0,0.21594068582 4790 | 4788,0.0,0.0,0.473597359736 4791 | 4789,1.0,1.0,0.705020920502 4792 | 4790,0.0,0.0,0.21594068582 4793 | 4791,1.0,1.0,0.777142857143 4794 | 4792,1.0,1.0,0.432835820896 4795 | 4793,1.0,1.0,0.21594068582 4796 | 4794,1.0,1.0,0.705020920502 4797 | 4795,0.0,0.0,0.21594068582 4798 | 4796,1.0,1.0,0.777142857143 4799 | 4797,1.0,1.0,0.473597359736 4800 | 4798,1.0,0.0,0.21594068582 4801 | 4799,1.0,0.0,0.56401384083 4802 | 4800,0.0,1.0,0.473597359736 4803 | 4801,0.0,0.0,0.307692307692 4804 | 4802,0.0,1.0,0.307692307692 4805 | 4803,1.0,1.0,0.432835820896 4806 | 4804,0.0,0.0,0.21594068582 4807 | 4805,1.0,0.0,0.473597359736 4808 | 4806,0.0,1.0,0.21594068582 4809 | 4807,0.0,1.0,0.705020920502 4810 | 4808,1.0,1.0,0.69133192389 4811 | 4809,0.0,1.0,0.21594068582 4812 | 4810,0.0,0.0,0.21594068582 4813 | 4811,1.0,0.0,0.598526703499 4814 | 4812,0.0,0.0,0.432835820896 4815 | 4813,1.0,1.0,0.432835820896 4816 | 4814,0.0,1.0,0.777142857143 4817 | 4815,1.0,1.0,0.598526703499 4818 | 4816,1.0,1.0,0.705020920502 4819 | 4817,1.0,0.0,0.598526703499 4820 | 4818,0.0,1.0,0.56401384083 4821 | 4819,0.0,1.0,0.384491114701 4822 | 4820,1.0,1.0,0.598526703499 4823 | 4821,0.0,1.0,0.56401384083 4824 | 4822,0.0,1.0,0.56401384083 4825 | 4823,0.0,0.0,0.307692307692 4826 | 4824,1.0,1.0,0.432835820896 4827 | 4825,1.0,1.0,0.705020920502 4828 | 4826,0.0,0.0,0.307692307692 4829 | 4827,0.0,0.0,0.384491114701 4830 | 4828,0.0,1.0,0.473597359736 4831 | 4829,0.0,0.0,0.384491114701 4832 | 4830,0.0,1.0,0.307692307692 4833 | 4831,1.0,1.0,0.69133192389 4834 | 4832,0.0,1.0,0.307692307692 4835 | 4833,1.0,0.0,0.69133192389 4836 | 4834,0.0,1.0,0.432835820896 4837 | 4835,1.0,1.0,0.69133192389 4838 | 4836,1.0,0.0,0.432835820896 4839 | 4837,0.0,1.0,0.21594068582 4840 | 4838,0.0,1.0,0.21594068582 4841 | 4839,1.0,1.0,0.473597359736 4842 | 4840,1.0,1.0,0.69133192389 4843 | 4841,0.0,1.0,0.56401384083 4844 | 4842,0.0,0.0,0.21594068582 4845 | 4843,0.0,0.0,0.56401384083 4846 | 4844,0.0,1.0,0.21594068582 4847 | 4845,0.0,0.0,0.473597359736 4848 | 4846,0.0,1.0,0.384491114701 4849 | 4847,1.0,0.0,0.307692307692 4850 | 4848,1.0,1.0,0.598526703499 4851 | 4849,0.0,1.0,0.21594068582 4852 | 4850,1.0,0.0,0.21594068582 4853 | 4851,0.0,1.0,0.56401384083 4854 | 4852,1.0,0.0,0.56401384083 4855 | 4853,0.0,1.0,0.307692307692 4856 | 4854,0.0,0.0,0.307692307692 4857 | 4855,1.0,1.0,0.56401384083 4858 | 4856,1.0,1.0,0.69133192389 4859 | 4857,0.0,0.0,0.384491114701 4860 | 4858,0.0,0.0,0.56401384083 4861 | 4859,0.0,1.0,0.473597359736 4862 | 4860,0.0,0.0,0.307692307692 4863 | 4861,0.0,1.0,0.21594068582 4864 | 4862,0.0,0.0,0.384491114701 4865 | 4863,0.0,1.0,0.384491114701 4866 | 4864,0.0,1.0,0.384491114701 4867 | 4865,1.0,1.0,0.705020920502 4868 | 4866,0.0,0.0,0.307692307692 4869 | 4867,0.0,1.0,0.432835820896 4870 | 4868,0.0,1.0,0.69133192389 4871 | 4869,0.0,0.0,0.598526703499 4872 | 4870,0.0,0.0,0.598526703499 4873 | 4871,0.0,0.0,0.307692307692 4874 | 4872,0.0,0.0,0.473597359736 4875 | 4873,0.0,0.0,0.21594068582 4876 | 4874,0.0,0.0,0.307692307692 4877 | 4875,1.0,1.0,0.705020920502 4878 | 4876,1.0,1.0,0.21594068582 4879 | 4877,1.0,0.0,0.56401384083 4880 | 4878,0.0,0.0,0.21594068582 4881 | 4879,1.0,1.0,0.705020920502 4882 | 4880,1.0,0.0,0.432835820896 4883 | 4881,0.0,1.0,0.777142857143 4884 | 4882,0.0,1.0,0.705020920502 4885 | 4883,0.0,1.0,0.307692307692 4886 | 4884,0.0,0.0,0.56401384083 4887 | 4885,1.0,1.0,0.598526703499 4888 | 4886,0.0,1.0,0.21594068582 4889 | 4887,0.0,1.0,0.21594068582 4890 | 4888,1.0,0.0,0.21594068582 4891 | 4889,1.0,1.0,0.705020920502 4892 | 4890,0.0,0.0,0.21594068582 4893 | 4891,0.0,0.0,0.56401384083 4894 | 4892,0.0,0.0,0.21594068582 4895 | 4893,1.0,0.0,0.21594068582 4896 | 4894,0.0,1.0,0.473597359736 4897 | 4895,0.0,1.0,0.307692307692 4898 | 4896,0.0,1.0,0.21594068582 4899 | 4897,0.0,1.0,0.56401384083 4900 | 4898,0.0,0.0,0.384491114701 4901 | 4899,1.0,0.0,0.56401384083 4902 | 4900,1.0,0.0,0.307692307692 4903 | 4901,1.0,1.0,0.705020920502 4904 | 4902,1.0,1.0,0.598526703499 4905 | 4903,0.0,0.0,0.432835820896 4906 | 4904,0.0,0.0,0.432835820896 4907 | 4905,1.0,0.0,0.705020920502 4908 | 4906,1.0,0.0,0.384491114701 4909 | 4907,0.0,0.0,0.21594068582 4910 | 4908,0.0,0.0,0.473597359736 4911 | 4909,1.0,1.0,0.705020920502 4912 | 4910,0.0,0.0,0.384491114701 4913 | 4911,1.0,0.0,0.432835820896 4914 | 4912,0.0,1.0,0.307692307692 4915 | 4913,1.0,1.0,0.598526703499 4916 | 4914,1.0,0.0,0.307692307692 4917 | 4915,0.0,0.0,0.21594068582 4918 | 4916,0.0,1.0,0.56401384083 4919 | 4917,1.0,1.0,0.432835820896 4920 | 4918,0.0,1.0,0.384491114701 4921 | 4919,1.0,1.0,0.56401384083 4922 | 4920,0.0,0.0,0.384491114701 4923 | 4921,0.0,1.0,0.705020920502 4924 | 4922,1.0,0.0,0.777142857143 4925 | 4923,0.0,0.0,0.432835820896 4926 | 4924,0.0,0.0,0.21594068582 4927 | 4925,1.0,0.0,0.432835820896 4928 | 4926,1.0,1.0,0.598526703499 4929 | 4927,0.0,1.0,0.307692307692 4930 | 4928,1.0,0.0,0.56401384083 4931 | 4929,0.0,0.0,0.307692307692 4932 | 4930,0.0,0.0,0.56401384083 4933 | 4931,1.0,0.0,0.307692307692 4934 | 4932,0.0,0.0,0.307692307692 4935 | 4933,0.0,1.0,0.473597359736 4936 | 4934,1.0,1.0,0.56401384083 4937 | 4935,1.0,0.0,0.432835820896 4938 | 4936,0.0,1.0,0.69133192389 4939 | 4937,0.0,1.0,0.21594068582 4940 | 4938,1.0,1.0,0.307692307692 4941 | 4939,0.0,1.0,0.384491114701 4942 | 4940,0.0,0.0,0.307692307692 4943 | 4941,0.0,1.0,0.384491114701 4944 | 4942,1.0,1.0,0.705020920502 4945 | 4943,1.0,1.0,0.777142857143 4946 | 4944,0.0,1.0,0.56401384083 4947 | 4945,0.0,0.0,0.307692307692 4948 | 4946,1.0,1.0,0.598526703499 4949 | 4947,1.0,1.0,0.473597359736 4950 | 4948,1.0,1.0,0.69133192389 4951 | 4949,0.0,1.0,0.21594068582 4952 | 4950,0.0,0.0,0.432835820896 4953 | 4951,1.0,1.0,0.384491114701 4954 | 4952,0.0,0.0,0.384491114701 4955 | 4953,1.0,1.0,0.598526703499 4956 | 4954,1.0,1.0,0.473597359736 4957 | 4955,0.0,1.0,0.473597359736 4958 | 4956,1.0,1.0,0.473597359736 4959 | 4957,0.0,1.0,0.432835820896 4960 | 4958,1.0,0.0,0.307692307692 4961 | 4959,0.0,0.0,0.473597359736 4962 | 4960,0.0,1.0,0.56401384083 4963 | 4961,1.0,1.0,0.432835820896 4964 | 4962,0.0,1.0,0.705020920502 4965 | 4963,0.0,0.0,0.21594068582 4966 | 4964,0.0,0.0,0.777142857143 4967 | 4965,0.0,1.0,0.307692307692 4968 | 4966,1.0,1.0,0.432835820896 4969 | 4967,1.0,1.0,0.777142857143 4970 | 4968,0.0,1.0,0.384491114701 4971 | 4969,0.0,0.0,0.21594068582 4972 | 4970,0.0,1.0,0.432835820896 4973 | 4971,1.0,1.0,0.777142857143 4974 | 4972,1.0,1.0,0.705020920502 4975 | 4973,0.0,0.0,0.21594068582 4976 | 4974,1.0,1.0,0.69133192389 4977 | 4975,0.0,0.0,0.307692307692 4978 | 4976,0.0,1.0,0.21594068582 4979 | 4977,1.0,0.0,0.432835820896 4980 | 4978,0.0,1.0,0.56401384083 4981 | 4979,0.0,1.0,0.598526703499 4982 | 4980,0.0,1.0,0.21594068582 4983 | 4981,1.0,1.0,0.705020920502 4984 | 4982,0.0,0.0,0.21594068582 4985 | 4983,1.0,0.0,0.777142857143 4986 | 4984,0.0,1.0,0.432835820896 4987 | 4985,0.0,0.0,0.21594068582 4988 | 4986,1.0,1.0,0.432835820896 4989 | 4987,1.0,1.0,0.384491114701 4990 | 4988,0.0,1.0,0.21594068582 4991 | 4989,1.0,0.0,0.307692307692 4992 | 4990,1.0,1.0,0.307692307692 4993 | 4991,1.0,0.0,0.21594068582 4994 | 4992,0.0,0.0,0.21594068582 4995 | 4993,0.0,1.0,0.56401384083 4996 | 4994,1.0,1.0,0.432835820896 4997 | 4995,0.0,1.0,0.473597359736 4998 | 4996,1.0,1.0,0.56401384083 4999 | 4997,1.0,1.0,0.69133192389 5000 | 4998,1.0,0.0,0.777142857143 5001 | 4999,0.0,1.0,0.705020920502 5002 | 5000,0.0,1.0,0.21594068582 5003 | 5001,0.0,1.0,0.473597359736 5004 | 5002,0.0,1.0,0.432835820896 5005 | 5003,1.0,0.0,0.473597359736 5006 | 5004,1.0,0.0,0.432835820896 5007 | 5005,0.0,1.0,0.21594068582 5008 | 5006,0.0,1.0,0.21594068582 5009 | 5007,0.0,1.0,0.598526703499 5010 | 5008,0.0,1.0,0.598526703499 5011 | 5009,0.0,1.0,0.56401384083 5012 | 5010,0.0,0.0,0.21594068582 5013 | 5011,1.0,1.0,0.598526703499 5014 | 5012,1.0,1.0,0.432835820896 5015 | 5013,0.0,0.0,0.384491114701 5016 | 5014,1.0,1.0,0.432835820896 5017 | 5015,1.0,1.0,0.473597359736 5018 | 5016,1.0,0.0,0.21594068582 5019 | 5017,0.0,1.0,0.432835820896 5020 | 5018,1.0,1.0,0.56401384083 5021 | 5019,0.0,0.0,0.56401384083 5022 | 5020,0.0,1.0,0.69133192389 5023 | 5021,0.0,0.0,0.21594068582 5024 | 5022,1.0,0.0,0.432835820896 5025 | 5023,0.0,0.0,0.21594068582 5026 | 5024,0.0,1.0,0.307692307692 5027 | 5025,1.0,1.0,0.598526703499 5028 | 5026,1.0,1.0,0.705020920502 5029 | 5027,1.0,0.0,0.705020920502 5030 | 5028,0.0,0.0,0.69133192389 5031 | 5029,0.0,1.0,0.56401384083 5032 | 5030,0.0,1.0,0.21594068582 5033 | 5031,1.0,0.0,0.21594068582 5034 | 5032,1.0,1.0,0.777142857143 5035 | 5033,0.0,1.0,0.432835820896 5036 | 5034,0.0,1.0,0.307692307692 5037 | 5035,0.0,0.0,0.473597359736 5038 | 5036,0.0,1.0,0.21594068582 5039 | 5037,0.0,0.0,0.21594068582 5040 | 5038,0.0,0.0,0.21594068582 5041 | 5039,0.0,1.0,0.69133192389 5042 | 5040,1.0,0.0,0.473597359736 5043 | 5041,1.0,1.0,0.432835820896 5044 | 5042,0.0,0.0,0.21594068582 5045 | 5043,1.0,1.0,0.69133192389 5046 | 5044,0.0,1.0,0.21594068582 5047 | 5045,1.0,1.0,0.598526703499 5048 | 5046,0.0,1.0,0.56401384083 5049 | 5047,1.0,1.0,0.21594068582 5050 | 5048,0.0,1.0,0.21594068582 5051 | 5049,0.0,1.0,0.384491114701 5052 | 5050,0.0,1.0,0.21594068582 5053 | 5051,0.0,0.0,0.21594068582 5054 | 5052,0.0,0.0,0.473597359736 5055 | 5053,1.0,0.0,0.473597359736 5056 | 5054,1.0,1.0,0.598526703499 5057 | 5055,0.0,0.0,0.473597359736 5058 | 5056,0.0,0.0,0.473597359736 5059 | 5057,0.0,1.0,0.21594068582 5060 | 5058,1.0,1.0,0.598526703499 5061 | 5059,1.0,1.0,0.56401384083 5062 | 5060,1.0,0.0,0.432835820896 5063 | 5061,0.0,0.0,0.473597359736 5064 | 5062,1.0,1.0,0.69133192389 5065 | 5063,0.0,0.0,0.473597359736 5066 | 5064,1.0,1.0,0.69133192389 5067 | 5065,1.0,0.0,0.473597359736 5068 | 5066,0.0,0.0,0.598526703499 5069 | 5067,1.0,1.0,0.598526703499 5070 | 5068,0.0,1.0,0.598526703499 5071 | 5069,1.0,1.0,0.307692307692 5072 | 5070,0.0,0.0,0.598526703499 5073 | 5071,1.0,0.0,0.21594068582 5074 | 5072,1.0,1.0,0.598526703499 5075 | 5073,0.0,0.0,0.473597359736 5076 | 5074,1.0,1.0,0.705020920502 5077 | 5075,1.0,0.0,0.21594068582 5078 | 5076,0.0,0.0,0.307692307692 5079 | 5077,0.0,0.0,0.307692307692 5080 | 5078,1.0,0.0,0.21594068582 5081 | 5079,0.0,1.0,0.69133192389 5082 | 5080,1.0,1.0,0.69133192389 5083 | 5081,0.0,1.0,0.473597359736 5084 | 5082,1.0,1.0,0.56401384083 5085 | 5083,0.0,1.0,0.384491114701 5086 | 5084,1.0,1.0,0.432835820896 5087 | 5085,0.0,1.0,0.56401384083 5088 | 5086,1.0,0.0,0.307692307692 5089 | 5087,0.0,0.0,0.56401384083 5090 | 5088,1.0,1.0,0.69133192389 5091 | 5089,1.0,1.0,0.432835820896 5092 | 5090,1.0,0.0,0.598526703499 5093 | 5091,1.0,0.0,0.598526703499 5094 | 5092,1.0,1.0,0.598526703499 5095 | 5093,0.0,1.0,0.56401384083 5096 | 5094,0.0,0.0,0.21594068582 5097 | 5095,1.0,0.0,0.307692307692 5098 | 5096,0.0,1.0,0.307692307692 5099 | 5097,1.0,0.0,0.705020920502 5100 | 5098,0.0,1.0,0.56401384083 5101 | 5099,1.0,1.0,0.705020920502 5102 | 5100,0.0,0.0,0.473597359736 5103 | 5101,0.0,0.0,0.473597359736 5104 | 5102,0.0,1.0,0.432835820896 5105 | 5103,0.0,0.0,0.307692307692 5106 | 5104,1.0,1.0,0.384491114701 5107 | 5105,1.0,1.0,0.307692307692 5108 | 5106,0.0,1.0,0.473597359736 5109 | 5107,0.0,0.0,0.384491114701 5110 | 5108,1.0,0.0,0.705020920502 5111 | 5109,1.0,0.0,0.598526703499 5112 | 5110,1.0,0.0,0.56401384083 5113 | 5111,1.0,1.0,0.777142857143 5114 | 5112,1.0,0.0,0.307692307692 5115 | 5113,0.0,1.0,0.705020920502 5116 | 5114,0.0,0.0,0.705020920502 5117 | 5115,1.0,1.0,0.69133192389 5118 | 5116,0.0,1.0,0.705020920502 5119 | 5117,0.0,1.0,0.432835820896 5120 | 5118,0.0,1.0,0.384491114701 5121 | 5119,0.0,0.0,0.21594068582 5122 | 5120,0.0,1.0,0.598526703499 5123 | 5121,0.0,0.0,0.69133192389 5124 | 5122,1.0,0.0,0.69133192389 5125 | 5123,1.0,0.0,0.21594068582 5126 | 5124,1.0,1.0,0.432835820896 5127 | 5125,0.0,1.0,0.598526703499 5128 | 5126,1.0,1.0,0.598526703499 5129 | 5127,0.0,0.0,0.307692307692 5130 | 5128,1.0,1.0,0.307692307692 5131 | 5129,0.0,1.0,0.705020920502 5132 | 5130,0.0,0.0,0.307692307692 5133 | 5131,1.0,1.0,0.705020920502 5134 | 5132,0.0,1.0,0.21594068582 5135 | 5133,1.0,0.0,0.384491114701 5136 | 5134,1.0,1.0,0.307692307692 5137 | 5135,0.0,0.0,0.69133192389 5138 | 5136,1.0,1.0,0.69133192389 5139 | 5137,0.0,1.0,0.307692307692 5140 | 5138,1.0,1.0,0.705020920502 5141 | 5139,1.0,1.0,0.432835820896 5142 | 5140,0.0,0.0,0.21594068582 5143 | 5141,0.0,1.0,0.432835820896 5144 | 5142,0.0,0.0,0.432835820896 5145 | 5143,0.0,0.0,0.21594068582 5146 | 5144,0.0,1.0,0.598526703499 5147 | 5145,0.0,0.0,0.21594068582 5148 | 5146,1.0,0.0,0.598526703499 5149 | 5147,0.0,0.0,0.21594068582 5150 | 5148,1.0,1.0,0.69133192389 5151 | 5149,1.0,0.0,0.21594068582 5152 | 5150,0.0,0.0,0.307692307692 5153 | 5151,0.0,1.0,0.69133192389 5154 | 5152,0.0,0.0,0.473597359736 5155 | 5153,0.0,0.0,0.432835820896 5156 | 5154,1.0,0.0,0.432835820896 5157 | 5155,0.0,1.0,0.473597359736 5158 | 5156,0.0,1.0,0.307692307692 5159 | 5157,0.0,0.0,0.21594068582 5160 | 5158,0.0,1.0,0.21594068582 5161 | 5159,1.0,1.0,0.432835820896 5162 | 5160,1.0,1.0,0.473597359736 5163 | 5161,0.0,0.0,0.21594068582 5164 | 5162,0.0,0.0,0.21594068582 5165 | 5163,0.0,0.0,0.384491114701 5166 | 5164,1.0,1.0,0.384491114701 5167 | 5165,0.0,1.0,0.384491114701 5168 | 5166,0.0,0.0,0.21594068582 5169 | 5167,1.0,1.0,0.56401384083 5170 | 5168,0.0,1.0,0.598526703499 5171 | 5169,0.0,0.0,0.598526703499 5172 | 5170,0.0,1.0,0.307692307692 5173 | 5171,1.0,0.0,0.56401384083 5174 | 5172,1.0,0.0,0.705020920502 5175 | 5173,0.0,1.0,0.307692307692 5176 | 5174,0.0,0.0,0.21594068582 5177 | 5175,1.0,0.0,0.705020920502 5178 | 5176,0.0,0.0,0.307692307692 5179 | 5177,1.0,1.0,0.598526703499 5180 | 5178,0.0,1.0,0.69133192389 5181 | 5179,0.0,1.0,0.473597359736 5182 | 5180,0.0,0.0,0.307692307692 5183 | 5181,1.0,0.0,0.307692307692 5184 | 5182,0.0,1.0,0.307692307692 5185 | 5183,0.0,1.0,0.56401384083 5186 | 5184,0.0,0.0,0.21594068582 5187 | 5185,0.0,0.0,0.21594068582 5188 | 5186,1.0,0.0,0.432835820896 5189 | 5187,0.0,1.0,0.307692307692 5190 | 5188,0.0,0.0,0.21594068582 5191 | 5189,0.0,1.0,0.384491114701 5192 | 5190,0.0,0.0,0.598526703499 5193 | 5191,0.0,0.0,0.432835820896 5194 | 5192,0.0,1.0,0.598526703499 5195 | 5193,1.0,0.0,0.21594068582 5196 | 5194,0.0,0.0,0.21594068582 5197 | 5195,0.0,1.0,0.307692307692 5198 | 5196,1.0,1.0,0.598526703499 5199 | 5197,0.0,0.0,0.432835820896 5200 | 5198,0.0,1.0,0.705020920502 5201 | 5199,1.0,1.0,0.56401384083 5202 | 5200,1.0,1.0,0.705020920502 5203 | 5201,0.0,1.0,0.69133192389 5204 | 5202,1.0,0.0,0.473597359736 5205 | 5203,0.0,1.0,0.705020920502 5206 | 5204,1.0,1.0,0.473597359736 5207 | 5205,1.0,1.0,0.705020920502 5208 | 5206,1.0,0.0,0.384491114701 5209 | 5207,0.0,0.0,0.21594068582 5210 | 5208,1.0,1.0,0.56401384083 5211 | 5209,1.0,1.0,0.56401384083 5212 | 5210,0.0,1.0,0.21594068582 5213 | 5211,1.0,1.0,0.777142857143 5214 | 5212,1.0,0.0,0.705020920502 5215 | 5213,1.0,0.0,0.56401384083 5216 | 5214,1.0,0.0,0.473597359736 5217 | 5215,1.0,1.0,0.705020920502 5218 | 5216,0.0,1.0,0.598526703499 5219 | 5217,1.0,1.0,0.56401384083 5220 | 5218,1.0,1.0,0.307692307692 5221 | 5219,0.0,1.0,0.432835820896 5222 | 5220,0.0,0.0,0.473597359736 5223 | 5221,1.0,1.0,0.21594068582 5224 | 5222,1.0,0.0,0.307692307692 5225 | 5223,0.0,1.0,0.705020920502 5226 | 5224,1.0,1.0,0.432835820896 5227 | 5225,0.0,1.0,0.56401384083 5228 | 5226,0.0,0.0,0.56401384083 5229 | 5227,0.0,0.0,0.473597359736 5230 | 5228,0.0,1.0,0.56401384083 5231 | 5229,0.0,0.0,0.777142857143 5232 | 5230,1.0,0.0,0.384491114701 5233 | 5231,0.0,0.0,0.432835820896 5234 | 5232,0.0,1.0,0.432835820896 5235 | 5233,1.0,1.0,0.598526703499 5236 | 5234,0.0,0.0,0.21594068582 5237 | 5235,1.0,1.0,0.69133192389 5238 | 5236,0.0,1.0,0.69133192389 5239 | 5237,1.0,1.0,0.705020920502 5240 | 5238,0.0,1.0,0.432835820896 5241 | 5239,1.0,1.0,0.384491114701 5242 | 5240,0.0,1.0,0.705020920502 5243 | 5241,1.0,1.0,0.598526703499 5244 | 5242,1.0,0.0,0.705020920502 5245 | 5243,0.0,0.0,0.432835820896 5246 | 5244,0.0,0.0,0.21594068582 5247 | 5245,0.0,1.0,0.473597359736 5248 | 5246,1.0,1.0,0.432835820896 5249 | 5247,0.0,0.0,0.307692307692 5250 | 5248,0.0,0.0,0.21594068582 5251 | 5249,0.0,0.0,0.473597359736 5252 | 5250,1.0,0.0,0.473597359736 5253 | 5251,0.0,0.0,0.69133192389 5254 | 5252,1.0,1.0,0.307692307692 5255 | 5253,0.0,0.0,0.307692307692 5256 | 5254,1.0,1.0,0.777142857143 5257 | 5255,1.0,1.0,0.56401384083 5258 | 5256,1.0,1.0,0.777142857143 5259 | 5257,0.0,1.0,0.598526703499 5260 | 5258,0.0,1.0,0.21594068582 5261 | 5259,1.0,1.0,0.705020920502 5262 | 5260,1.0,0.0,0.307692307692 5263 | 5261,0.0,0.0,0.21594068582 5264 | 5262,0.0,1.0,0.473597359736 5265 | 5263,1.0,0.0,0.56401384083 5266 | 5264,1.0,1.0,0.384491114701 5267 | 5265,0.0,1.0,0.384491114701 5268 | 5266,0.0,0.0,0.21594068582 5269 | 5267,0.0,0.0,0.307692307692 5270 | 5268,0.0,1.0,0.21594068582 5271 | 5269,0.0,1.0,0.21594068582 5272 | 5270,0.0,0.0,0.473597359736 5273 | 5271,1.0,1.0,0.598526703499 5274 | 5272,0.0,1.0,0.598526703499 5275 | 5273,1.0,1.0,0.56401384083 5276 | 5274,0.0,1.0,0.473597359736 5277 | 5275,1.0,1.0,0.705020920502 5278 | 5276,1.0,1.0,0.69133192389 5279 | 5277,1.0,1.0,0.69133192389 5280 | 5278,0.0,0.0,0.473597359736 5281 | 5279,0.0,0.0,0.473597359736 5282 | 5280,0.0,1.0,0.598526703499 5283 | 5281,1.0,1.0,0.598526703499 5284 | 5282,1.0,1.0,0.598526703499 5285 | 5283,1.0,1.0,0.384491114701 5286 | 5284,1.0,0.0,0.56401384083 5287 | 5285,0.0,0.0,0.307692307692 5288 | 5286,0.0,1.0,0.21594068582 5289 | 5287,1.0,1.0,0.598526703499 5290 | 5288,0.0,1.0,0.598526703499 5291 | 5289,0.0,1.0,0.21594068582 5292 | 5290,0.0,1.0,0.307692307692 5293 | 5291,0.0,0.0,0.21594068582 5294 | 5292,1.0,1.0,0.69133192389 5295 | 5293,0.0,0.0,0.307692307692 5296 | 5294,1.0,1.0,0.473597359736 5297 | 5295,1.0,0.0,0.432835820896 5298 | 5296,0.0,0.0,0.473597359736 5299 | 5297,0.0,1.0,0.56401384083 5300 | 5298,0.0,1.0,0.473597359736 5301 | 5299,0.0,0.0,0.598526703499 5302 | 5300,0.0,1.0,0.69133192389 5303 | 5301,1.0,1.0,0.598526703499 5304 | 5302,0.0,0.0,0.307692307692 5305 | 5303,0.0,1.0,0.473597359736 5306 | 5304,1.0,1.0,0.705020920502 5307 | 5305,1.0,1.0,0.598526703499 5308 | 5306,0.0,1.0,0.56401384083 5309 | 5307,0.0,1.0,0.21594068582 5310 | 5308,0.0,1.0,0.432835820896 5311 | 5309,0.0,1.0,0.307692307692 5312 | 5310,0.0,0.0,0.21594068582 5313 | 5311,0.0,0.0,0.21594068582 5314 | 5312,1.0,0.0,0.56401384083 5315 | 5313,1.0,1.0,0.473597359736 5316 | 5314,0.0,0.0,0.777142857143 5317 | 5315,0.0,0.0,0.69133192389 5318 | 5316,0.0,1.0,0.307692307692 5319 | 5317,0.0,1.0,0.432835820896 5320 | 5318,1.0,1.0,0.69133192389 5321 | 5319,1.0,1.0,0.473597359736 5322 | 5320,1.0,1.0,0.56401384083 5323 | 5321,1.0,1.0,0.69133192389 5324 | 5322,1.0,1.0,0.384491114701 5325 | 5323,0.0,0.0,0.777142857143 5326 | 5324,1.0,1.0,0.307692307692 5327 | 5325,1.0,1.0,0.473597359736 5328 | 5326,1.0,1.0,0.69133192389 5329 | 5327,1.0,0.0,0.705020920502 5330 | 5328,0.0,1.0,0.432835820896 5331 | 5329,0.0,0.0,0.432835820896 5332 | 5330,0.0,0.0,0.21594068582 5333 | 5331,1.0,1.0,0.69133192389 5334 | 5332,0.0,0.0,0.307692307692 5335 | 5333,0.0,0.0,0.307692307692 5336 | 5334,0.0,1.0,0.432835820896 5337 | 5335,1.0,0.0,0.69133192389 5338 | 5336,1.0,0.0,0.598526703499 5339 | 5337,0.0,1.0,0.432835820896 5340 | 5338,0.0,0.0,0.56401384083 5341 | 5339,1.0,0.0,0.69133192389 5342 | 5340,0.0,1.0,0.384491114701 5343 | 5341,1.0,1.0,0.56401384083 5344 | 5342,0.0,0.0,0.21594068582 5345 | 5343,1.0,1.0,0.384491114701 5346 | 5344,0.0,1.0,0.473597359736 5347 | 5345,0.0,1.0,0.598526703499 5348 | 5346,0.0,1.0,0.432835820896 5349 | 5347,0.0,1.0,0.384491114701 5350 | 5348,1.0,1.0,0.598526703499 5351 | 5349,1.0,1.0,0.473597359736 5352 | 5350,0.0,0.0,0.307692307692 5353 | 5351,0.0,1.0,0.56401384083 5354 | 5352,1.0,1.0,0.473597359736 5355 | 5353,0.0,0.0,0.384491114701 5356 | 5354,0.0,0.0,0.21594068582 5357 | 5355,1.0,1.0,0.777142857143 5358 | 5356,0.0,0.0,0.432835820896 5359 | 5357,1.0,0.0,0.432835820896 5360 | 5358,1.0,1.0,0.307692307692 5361 | 5359,1.0,1.0,0.473597359736 5362 | 5360,1.0,0.0,0.56401384083 5363 | 5361,0.0,0.0,0.56401384083 5364 | 5362,1.0,0.0,0.21594068582 5365 | 5363,1.0,0.0,0.432835820896 5366 | 5364,0.0,1.0,0.473597359736 5367 | 5365,1.0,1.0,0.432835820896 5368 | 5366,0.0,0.0,0.56401384083 5369 | 5367,1.0,0.0,0.56401384083 5370 | 5368,1.0,0.0,0.777142857143 5371 | 5369,0.0,0.0,0.307692307692 5372 | 5370,0.0,1.0,0.384491114701 5373 | 5371,1.0,1.0,0.69133192389 5374 | 5372,1.0,0.0,0.432835820896 5375 | 5373,1.0,1.0,0.777142857143 5376 | 5374,0.0,1.0,0.705020920502 5377 | 5375,0.0,0.0,0.21594068582 5378 | 5376,0.0,0.0,0.432835820896 5379 | 5377,0.0,0.0,0.21594068582 5380 | 5378,0.0,0.0,0.21594068582 5381 | 5379,1.0,1.0,0.777142857143 5382 | 5380,1.0,1.0,0.705020920502 5383 | 5381,0.0,0.0,0.21594068582 5384 | 5382,0.0,0.0,0.21594068582 5385 | 5383,0.0,1.0,0.56401384083 5386 | 5384,0.0,0.0,0.432835820896 5387 | 5385,1.0,1.0,0.705020920502 5388 | 5386,0.0,0.0,0.432835820896 5389 | 5387,0.0,0.0,0.598526703499 5390 | 5388,1.0,1.0,0.307692307692 5391 | 5389,1.0,0.0,0.384491114701 5392 | 5390,1.0,1.0,0.307692307692 5393 | 5391,0.0,1.0,0.777142857143 5394 | 5392,0.0,1.0,0.432835820896 5395 | 5393,0.0,0.0,0.384491114701 5396 | 5394,0.0,1.0,0.432835820896 5397 | 5395,1.0,0.0,0.384491114701 5398 | 5396,0.0,1.0,0.69133192389 5399 | 5397,1.0,0.0,0.432835820896 5400 | 5398,0.0,1.0,0.307692307692 5401 | 5399,0.0,1.0,0.21594068582 5402 | 5400,0.0,0.0,0.307692307692 5403 | 5401,0.0,1.0,0.69133192389 5404 | 5402,1.0,0.0,0.69133192389 5405 | 5403,0.0,1.0,0.705020920502 5406 | 5404,0.0,1.0,0.21594068582 5407 | 5405,1.0,1.0,0.598526703499 5408 | 5406,1.0,1.0,0.598526703499 5409 | 5407,0.0,1.0,0.432835820896 5410 | 5408,0.0,1.0,0.598526703499 5411 | 5409,0.0,1.0,0.432835820896 5412 | 5410,0.0,1.0,0.307692307692 5413 | 5411,0.0,1.0,0.56401384083 5414 | 5412,0.0,0.0,0.21594068582 5415 | 5413,1.0,1.0,0.56401384083 5416 | 5414,1.0,1.0,0.384491114701 5417 | 5415,0.0,1.0,0.384491114701 5418 | 5416,0.0,0.0,0.598526703499 5419 | 5417,1.0,1.0,0.307692307692 5420 | 5418,0.0,1.0,0.705020920502 5421 | 5419,1.0,1.0,0.473597359736 5422 | 5420,1.0,1.0,0.432835820896 5423 | 5421,0.0,0.0,0.21594068582 5424 | 5422,1.0,1.0,0.777142857143 5425 | 5423,0.0,0.0,0.21594068582 5426 | 5424,0.0,0.0,0.21594068582 5427 | 5425,1.0,0.0,0.384491114701 5428 | 5426,1.0,0.0,0.56401384083 5429 | 5427,0.0,1.0,0.432835820896 5430 | 5428,0.0,1.0,0.21594068582 5431 | 5429,1.0,1.0,0.473597359736 5432 | 5430,1.0,1.0,0.473597359736 5433 | 5431,0.0,0.0,0.307692307692 5434 | 5432,0.0,1.0,0.432835820896 5435 | 5433,1.0,1.0,0.56401384083 5436 | 5434,1.0,1.0,0.432835820896 5437 | 5435,0.0,0.0,0.432835820896 5438 | 5436,0.0,0.0,0.21594068582 5439 | 5437,0.0,1.0,0.598526703499 5440 | 5438,1.0,1.0,0.69133192389 5441 | 5439,1.0,1.0,0.705020920502 5442 | 5440,1.0,1.0,0.777142857143 5443 | 5441,0.0,1.0,0.777142857143 5444 | 5442,1.0,1.0,0.598526703499 5445 | 5443,1.0,1.0,0.432835820896 5446 | 5444,1.0,1.0,0.56401384083 5447 | 5445,1.0,0.0,0.777142857143 5448 | 5446,0.0,1.0,0.307692307692 5449 | 5447,1.0,1.0,0.432835820896 5450 | 5448,1.0,1.0,0.432835820896 5451 | 5449,1.0,1.0,0.56401384083 5452 | 5450,1.0,1.0,0.384491114701 5453 | 5451,1.0,0.0,0.432835820896 5454 | 5452,0.0,0.0,0.473597359736 5455 | 5453,0.0,0.0,0.21594068582 5456 | 5454,0.0,1.0,0.307692307692 5457 | 5455,1.0,1.0,0.56401384083 5458 | 5456,1.0,0.0,0.307692307692 5459 | 5457,0.0,0.0,0.21594068582 5460 | 5458,1.0,1.0,0.384491114701 5461 | 5459,0.0,1.0,0.56401384083 5462 | 5460,1.0,1.0,0.598526703499 5463 | 5461,1.0,0.0,0.705020920502 5464 | 5462,0.0,1.0,0.777142857143 5465 | 5463,1.0,1.0,0.432835820896 5466 | 5464,0.0,1.0,0.307692307692 5467 | 5465,0.0,0.0,0.307692307692 5468 | 5466,1.0,1.0,0.777142857143 5469 | 5467,1.0,1.0,0.473597359736 5470 | 5468,0.0,1.0,0.69133192389 5471 | 5469,0.0,1.0,0.21594068582 5472 | 5470,1.0,1.0,0.307692307692 5473 | 5471,0.0,0.0,0.473597359736 5474 | 5472,1.0,0.0,0.21594068582 5475 | 5473,1.0,1.0,0.432835820896 5476 | 5474,0.0,1.0,0.56401384083 5477 | 5475,1.0,0.0,0.473597359736 5478 | 5476,0.0,0.0,0.307692307692 5479 | 5477,0.0,1.0,0.473597359736 5480 | 5478,0.0,1.0,0.21594068582 5481 | 5479,1.0,1.0,0.598526703499 5482 | 5480,0.0,0.0,0.473597359736 5483 | 5481,0.0,1.0,0.705020920502 5484 | 5482,1.0,1.0,0.705020920502 5485 | 5483,1.0,1.0,0.69133192389 5486 | 5484,1.0,1.0,0.384491114701 5487 | 5485,1.0,1.0,0.473597359736 5488 | 5486,1.0,0.0,0.473597359736 5489 | 5487,0.0,1.0,0.432835820896 5490 | 5488,1.0,0.0,0.432835820896 5491 | 5489,0.0,1.0,0.473597359736 5492 | 5490,1.0,1.0,0.777142857143 5493 | 5491,0.0,0.0,0.307692307692 5494 | 5492,0.0,0.0,0.307692307692 5495 | 5493,1.0,0.0,0.432835820896 5496 | 5494,0.0,0.0,0.21594068582 5497 | 5495,0.0,1.0,0.473597359736 5498 | 5496,0.0,1.0,0.307692307692 5499 | 5497,0.0,0.0,0.473597359736 5500 | 5498,0.0,1.0,0.21594068582 5501 | 5499,0.0,0.0,0.21594068582 5502 | 5500,1.0,1.0,0.69133192389 5503 | 5501,1.0,0.0,0.21594068582 5504 | 5502,0.0,1.0,0.21594068582 5505 | 5503,1.0,0.0,0.384491114701 5506 | 5504,1.0,1.0,0.56401384083 5507 | 5505,1.0,1.0,0.21594068582 5508 | 5506,1.0,1.0,0.777142857143 5509 | 5507,1.0,0.0,0.56401384083 5510 | 5508,1.0,1.0,0.384491114701 5511 | 5509,0.0,0.0,0.307692307692 5512 | 5510,0.0,1.0,0.705020920502 5513 | 5511,1.0,1.0,0.705020920502 5514 | 5512,0.0,0.0,0.307692307692 5515 | 5513,1.0,1.0,0.21594068582 5516 | 5514,1.0,1.0,0.432835820896 5517 | 5515,0.0,1.0,0.384491114701 5518 | 5516,0.0,1.0,0.777142857143 5519 | 5517,0.0,1.0,0.56401384083 5520 | 5518,0.0,0.0,0.56401384083 5521 | 5519,1.0,1.0,0.56401384083 5522 | 5520,1.0,1.0,0.21594068582 5523 | 5521,1.0,0.0,0.473597359736 5524 | 5522,1.0,1.0,0.384491114701 5525 | 5523,0.0,0.0,0.21594068582 5526 | 5524,1.0,0.0,0.598526703499 5527 | 5525,1.0,1.0,0.432835820896 5528 | 5526,0.0,1.0,0.598526703499 5529 | 5527,0.0,1.0,0.432835820896 5530 | 5528,0.0,1.0,0.56401384083 5531 | 5529,0.0,1.0,0.21594068582 5532 | 5530,0.0,1.0,0.307692307692 5533 | 5531,1.0,1.0,0.777142857143 5534 | 5532,1.0,0.0,0.705020920502 5535 | 5533,1.0,1.0,0.705020920502 5536 | 5534,0.0,1.0,0.307692307692 5537 | 5535,1.0,1.0,0.21594068582 5538 | 5536,1.0,1.0,0.705020920502 5539 | 5537,1.0,0.0,0.473597359736 5540 | 5538,0.0,0.0,0.307692307692 5541 | 5539,1.0,1.0,0.705020920502 5542 | 5540,1.0,1.0,0.777142857143 5543 | 5541,1.0,1.0,0.705020920502 5544 | 5542,1.0,1.0,0.705020920502 5545 | 5543,1.0,0.0,0.432835820896 5546 | 5544,0.0,1.0,0.21594068582 5547 | 5545,0.0,0.0,0.473597359736 5548 | 5546,0.0,1.0,0.432835820896 5549 | 5547,1.0,0.0,0.384491114701 5550 | 5548,0.0,1.0,0.473597359736 5551 | 5549,0.0,1.0,0.384491114701 5552 | 5550,1.0,1.0,0.473597359736 5553 | 5551,1.0,0.0,0.384491114701 5554 | 5552,1.0,0.0,0.777142857143 5555 | 5553,0.0,1.0,0.21594068582 5556 | 5554,1.0,1.0,0.777142857143 5557 | 5555,1.0,1.0,0.473597359736 5558 | 5556,1.0,1.0,0.777142857143 5559 | 5557,1.0,1.0,0.21594068582 5560 | 5558,0.0,0.0,0.21594068582 5561 | 5559,1.0,1.0,0.705020920502 5562 | 5560,1.0,0.0,0.21594068582 5563 | 5561,1.0,0.0,0.307692307692 5564 | 5562,0.0,1.0,0.598526703499 5565 | 5563,0.0,0.0,0.307692307692 5566 | 5564,0.0,0.0,0.21594068582 5567 | 5565,1.0,1.0,0.384491114701 5568 | 5566,0.0,1.0,0.21594068582 5569 | 5567,1.0,1.0,0.21594068582 5570 | 5568,0.0,1.0,0.56401384083 5571 | 5569,0.0,1.0,0.307692307692 5572 | 5570,0.0,1.0,0.705020920502 5573 | 5571,0.0,0.0,0.432835820896 5574 | 5572,1.0,1.0,0.473597359736 5575 | 5573,1.0,1.0,0.56401384083 5576 | 5574,1.0,0.0,0.473597359736 5577 | 5575,1.0,1.0,0.598526703499 5578 | 5576,0.0,0.0,0.21594068582 5579 | 5577,0.0,1.0,0.307692307692 5580 | 5578,1.0,1.0,0.777142857143 5581 | 5579,1.0,1.0,0.473597359736 5582 | 5580,0.0,0.0,0.21594068582 5583 | 5581,1.0,1.0,0.56401384083 5584 | 5582,1.0,1.0,0.56401384083 5585 | 5583,1.0,1.0,0.384491114701 5586 | 5584,0.0,1.0,0.69133192389 5587 | 5585,0.0,0.0,0.432835820896 5588 | 5586,1.0,1.0,0.432835820896 5589 | 5587,0.0,1.0,0.21594068582 5590 | 5588,1.0,1.0,0.705020920502 5591 | 5589,0.0,0.0,0.432835820896 5592 | 5590,1.0,0.0,0.21594068582 5593 | 5591,0.0,1.0,0.432835820896 5594 | 5592,0.0,1.0,0.473597359736 5595 | 5593,1.0,0.0,0.777142857143 5596 | 5594,0.0,1.0,0.56401384083 5597 | 5595,1.0,0.0,0.432835820896 5598 | 5596,1.0,1.0,0.598526703499 5599 | 5597,1.0,1.0,0.705020920502 5600 | 5598,1.0,1.0,0.384491114701 5601 | 5599,1.0,1.0,0.56401384083 5602 | 5600,1.0,1.0,0.432835820896 5603 | 5601,1.0,1.0,0.432835820896 5604 | 5602,0.0,1.0,0.473597359736 5605 | 5603,1.0,1.0,0.473597359736 5606 | 5604,0.0,0.0,0.432835820896 5607 | 5605,0.0,0.0,0.432835820896 5608 | 5606,1.0,1.0,0.56401384083 5609 | 5607,1.0,1.0,0.432835820896 5610 | 5608,0.0,1.0,0.56401384083 5611 | 5609,0.0,1.0,0.705020920502 5612 | 5610,0.0,0.0,0.21594068582 5613 | 5611,1.0,0.0,0.307692307692 5614 | 5612,1.0,1.0,0.56401384083 5615 | 5613,0.0,1.0,0.473597359736 5616 | 5614,1.0,1.0,0.432835820896 5617 | 5615,1.0,1.0,0.432835820896 5618 | 5616,1.0,1.0,0.705020920502 5619 | 5617,1.0,1.0,0.21594068582 5620 | 5618,1.0,1.0,0.598526703499 5621 | 5619,0.0,0.0,0.21594068582 5622 | 5620,1.0,0.0,0.307692307692 5623 | 5621,1.0,1.0,0.56401384083 5624 | 5622,1.0,0.0,0.56401384083 5625 | 5623,0.0,0.0,0.21594068582 5626 | 5624,1.0,0.0,0.473597359736 5627 | 5625,1.0,0.0,0.777142857143 5628 | 5626,0.0,1.0,0.473597359736 5629 | 5627,0.0,1.0,0.473597359736 5630 | 5628,0.0,1.0,0.598526703499 5631 | 5629,0.0,1.0,0.69133192389 5632 | 5630,0.0,1.0,0.473597359736 5633 | 5631,0.0,1.0,0.598526703499 5634 | 5632,0.0,1.0,0.21594068582 5635 | 5633,1.0,0.0,0.473597359736 5636 | 5634,0.0,1.0,0.21594068582 5637 | 5635,0.0,0.0,0.432835820896 5638 | 5636,0.0,1.0,0.56401384083 5639 | 5637,0.0,0.0,0.432835820896 5640 | 5638,0.0,0.0,0.307692307692 5641 | 5639,1.0,0.0,0.384491114701 5642 | 5640,0.0,1.0,0.307692307692 5643 | 5641,0.0,1.0,0.432835820896 5644 | 5642,0.0,1.0,0.56401384083 5645 | 5643,1.0,1.0,0.69133192389 5646 | 5644,0.0,0.0,0.21594068582 5647 | 5645,0.0,0.0,0.473597359736 5648 | 5646,1.0,0.0,0.307692307692 5649 | 5647,1.0,0.0,0.307692307692 5650 | 5648,0.0,1.0,0.307692307692 5651 | 5649,1.0,1.0,0.473597359736 5652 | 5650,1.0,1.0,0.307692307692 5653 | 5651,0.0,0.0,0.384491114701 5654 | 5652,0.0,1.0,0.384491114701 5655 | 5653,1.0,1.0,0.384491114701 5656 | 5654,0.0,0.0,0.705020920502 5657 | 5655,0.0,1.0,0.473597359736 5658 | 5656,1.0,1.0,0.432835820896 5659 | 5657,0.0,1.0,0.307692307692 5660 | 5658,1.0,1.0,0.473597359736 5661 | 5659,0.0,1.0,0.307692307692 5662 | 5660,1.0,1.0,0.705020920502 5663 | 5661,1.0,1.0,0.705020920502 5664 | 5662,1.0,0.0,0.56401384083 5665 | 5663,0.0,0.0,0.307692307692 5666 | 5664,1.0,0.0,0.56401384083 5667 | 5665,0.0,0.0,0.598526703499 5668 | 5666,1.0,1.0,0.69133192389 5669 | 5667,0.0,1.0,0.21594068582 5670 | 5668,0.0,1.0,0.705020920502 5671 | 5669,1.0,0.0,0.21594068582 5672 | 5670,0.0,0.0,0.307692307692 5673 | 5671,1.0,1.0,0.384491114701 5674 | 5672,0.0,1.0,0.598526703499 5675 | 5673,1.0,1.0,0.384491114701 5676 | 5674,1.0,1.0,0.56401384083 5677 | 5675,0.0,1.0,0.69133192389 5678 | 5676,0.0,1.0,0.69133192389 5679 | 5677,1.0,1.0,0.598526703499 5680 | 5678,1.0,1.0,0.307692307692 5681 | 5679,1.0,1.0,0.705020920502 5682 | 5680,1.0,1.0,0.705020920502 5683 | 5681,0.0,0.0,0.21594068582 5684 | 5682,0.0,0.0,0.307692307692 5685 | 5683,0.0,1.0,0.56401384083 5686 | 5684,1.0,1.0,0.307692307692 5687 | 5685,0.0,0.0,0.21594068582 5688 | 5686,1.0,1.0,0.56401384083 5689 | 5687,0.0,0.0,0.21594068582 5690 | 5688,1.0,0.0,0.598526703499 5691 | 5689,1.0,1.0,0.384491114701 5692 | 5690,1.0,1.0,0.69133192389 5693 | 5691,1.0,0.0,0.598526703499 5694 | 5692,1.0,1.0,0.56401384083 5695 | 5693,0.0,0.0,0.21594068582 5696 | 5694,0.0,1.0,0.21594068582 5697 | 5695,0.0,0.0,0.384491114701 5698 | 5696,0.0,1.0,0.705020920502 5699 | 5697,0.0,1.0,0.705020920502 5700 | 5698,0.0,1.0,0.69133192389 5701 | 5699,0.0,1.0,0.307692307692 5702 | 5700,1.0,0.0,0.432835820896 5703 | 5701,1.0,1.0,0.777142857143 5704 | 5702,0.0,1.0,0.473597359736 5705 | 5703,1.0,1.0,0.69133192389 5706 | 5704,0.0,0.0,0.705020920502 5707 | 5705,1.0,1.0,0.777142857143 5708 | 5706,1.0,1.0,0.69133192389 5709 | 5707,0.0,1.0,0.56401384083 5710 | 5708,0.0,0.0,0.384491114701 5711 | 5709,0.0,0.0,0.21594068582 5712 | 5710,0.0,1.0,0.705020920502 5713 | 5711,0.0,1.0,0.432835820896 5714 | 5712,0.0,1.0,0.307692307692 5715 | 5713,0.0,1.0,0.777142857143 5716 | 5714,0.0,1.0,0.69133192389 5717 | 5715,1.0,1.0,0.69133192389 5718 | 5716,1.0,1.0,0.432835820896 5719 | 5717,1.0,0.0,0.69133192389 5720 | 5718,0.0,1.0,0.384491114701 5721 | 5719,0.0,1.0,0.598526703499 5722 | 5720,0.0,1.0,0.473597359736 5723 | 5721,1.0,1.0,0.598526703499 5724 | 5722,0.0,0.0,0.21594068582 5725 | 5723,0.0,1.0,0.307692307692 5726 | 5724,0.0,0.0,0.21594068582 5727 | 5725,1.0,1.0,0.21594068582 5728 | 5726,0.0,1.0,0.473597359736 5729 | 5727,1.0,1.0,0.21594068582 5730 | 5728,0.0,1.0,0.705020920502 5731 | 5729,1.0,0.0,0.705020920502 5732 | 5730,0.0,1.0,0.21594068582 5733 | 5731,1.0,1.0,0.56401384083 5734 | 5732,0.0,0.0,0.598526703499 5735 | 5733,0.0,1.0,0.777142857143 5736 | 5734,0.0,0.0,0.307692307692 5737 | 5735,0.0,1.0,0.432835820896 5738 | 5736,0.0,1.0,0.705020920502 5739 | 5737,0.0,0.0,0.432835820896 5740 | 5738,1.0,0.0,0.384491114701 5741 | 5739,0.0,0.0,0.21594068582 5742 | 5740,1.0,0.0,0.705020920502 5743 | 5741,0.0,1.0,0.307692307692 5744 | 5742,0.0,1.0,0.69133192389 5745 | 5743,0.0,0.0,0.384491114701 5746 | 5744,0.0,1.0,0.432835820896 5747 | 5745,0.0,1.0,0.384491114701 5748 | 5746,1.0,1.0,0.69133192389 5749 | 5747,1.0,1.0,0.21594068582 5750 | 5748,0.0,1.0,0.598526703499 5751 | 5749,0.0,1.0,0.307692307692 5752 | 5750,1.0,1.0,0.777142857143 5753 | 5751,0.0,0.0,0.21594068582 5754 | 5752,1.0,1.0,0.473597359736 5755 | 5753,1.0,0.0,0.69133192389 5756 | 5754,1.0,1.0,0.777142857143 5757 | 5755,0.0,1.0,0.69133192389 5758 | 5756,0.0,0.0,0.384491114701 5759 | 5757,0.0,1.0,0.473597359736 5760 | 5758,0.0,1.0,0.384491114701 5761 | 5759,1.0,1.0,0.473597359736 5762 | 5760,0.0,1.0,0.473597359736 5763 | 5761,0.0,0.0,0.21594068582 5764 | 5762,1.0,1.0,0.384491114701 5765 | 5763,0.0,1.0,0.307692307692 5766 | 5764,1.0,1.0,0.56401384083 5767 | 5765,1.0,0.0,0.21594068582 5768 | 5766,0.0,1.0,0.56401384083 5769 | 5767,1.0,1.0,0.473597359736 5770 | 5768,1.0,1.0,0.307692307692 5771 | 5769,0.0,1.0,0.777142857143 5772 | 5770,1.0,0.0,0.56401384083 5773 | 5771,1.0,1.0,0.21594068582 5774 | 5772,0.0,1.0,0.21594068582 5775 | 5773,1.0,1.0,0.21594068582 5776 | 5774,1.0,1.0,0.432835820896 5777 | 5775,1.0,1.0,0.777142857143 5778 | 5776,0.0,0.0,0.473597359736 5779 | 5777,0.0,1.0,0.432835820896 5780 | 5778,0.0,0.0,0.21594068582 5781 | 5779,1.0,1.0,0.56401384083 5782 | 5780,1.0,1.0,0.69133192389 5783 | 5781,1.0,0.0,0.307692307692 5784 | 5782,1.0,1.0,0.777142857143 5785 | 5783,0.0,1.0,0.307692307692 5786 | 5784,0.0,1.0,0.21594068582 5787 | 5785,1.0,1.0,0.69133192389 5788 | 5786,0.0,1.0,0.307692307692 5789 | 5787,1.0,1.0,0.21594068582 5790 | 5788,1.0,1.0,0.432835820896 5791 | 5789,0.0,1.0,0.56401384083 5792 | 5790,0.0,0.0,0.307692307692 5793 | 5791,0.0,1.0,0.56401384083 5794 | 5792,0.0,0.0,0.21594068582 5795 | 5793,0.0,0.0,0.705020920502 5796 | 5794,1.0,1.0,0.705020920502 5797 | 5795,1.0,1.0,0.56401384083 5798 | 5796,0.0,0.0,0.384491114701 5799 | 5797,1.0,0.0,0.21594068582 5800 | 5798,1.0,1.0,0.432835820896 5801 | 5799,0.0,0.0,0.21594068582 5802 | 5800,0.0,0.0,0.21594068582 5803 | 5801,1.0,0.0,0.56401384083 5804 | 5802,1.0,1.0,0.598526703499 5805 | 5803,1.0,1.0,0.56401384083 5806 | 5804,1.0,1.0,0.705020920502 5807 | 5805,0.0,0.0,0.598526703499 5808 | 5806,1.0,1.0,0.307692307692 5809 | 5807,1.0,1.0,0.56401384083 5810 | 5808,0.0,0.0,0.56401384083 5811 | 5809,1.0,0.0,0.432835820896 5812 | 5810,1.0,1.0,0.777142857143 5813 | 5811,0.0,1.0,0.21594068582 5814 | 5812,0.0,0.0,0.473597359736 5815 | 5813,0.0,0.0,0.598526703499 5816 | 5814,0.0,0.0,0.21594068582 5817 | 5815,0.0,0.0,0.21594068582 5818 | 5816,1.0,0.0,0.473597359736 5819 | 5817,0.0,1.0,0.598526703499 5820 | 5818,1.0,1.0,0.69133192389 5821 | 5819,0.0,0.0,0.56401384083 5822 | 5820,0.0,1.0,0.705020920502 5823 | 5821,0.0,0.0,0.21594068582 5824 | 5822,0.0,1.0,0.21594068582 5825 | 5823,0.0,1.0,0.21594068582 5826 | 5824,0.0,1.0,0.598526703499 5827 | 5825,0.0,0.0,0.21594068582 5828 | 5826,1.0,0.0,0.432835820896 5829 | 5827,1.0,0.0,0.384491114701 5830 | 5828,1.0,0.0,0.307692307692 5831 | 5829,0.0,1.0,0.21594068582 5832 | 5830,1.0,1.0,0.21594068582 5833 | 5831,0.0,0.0,0.21594068582 5834 | 5832,0.0,0.0,0.307692307692 5835 | 5833,0.0,0.0,0.432835820896 5836 | 5834,0.0,0.0,0.21594068582 5837 | 5835,0.0,1.0,0.432835820896 5838 | 5836,0.0,0.0,0.307692307692 5839 | 5837,0.0,1.0,0.777142857143 5840 | 5838,1.0,0.0,0.432835820896 5841 | 5839,0.0,1.0,0.384491114701 5842 | 5840,0.0,0.0,0.21594068582 5843 | 5841,0.0,1.0,0.56401384083 5844 | 5842,0.0,1.0,0.432835820896 5845 | 5843,0.0,0.0,0.21594068582 5846 | 5844,1.0,1.0,0.432835820896 5847 | 5845,0.0,1.0,0.307692307692 5848 | 5846,1.0,0.0,0.307692307692 5849 | 5847,1.0,1.0,0.432835820896 5850 | 5848,0.0,1.0,0.21594068582 5851 | 5849,1.0,1.0,0.56401384083 5852 | 5850,1.0,1.0,0.598526703499 5853 | 5851,1.0,1.0,0.598526703499 5854 | 5852,0.0,0.0,0.384491114701 5855 | 5853,1.0,1.0,0.598526703499 5856 | 5854,0.0,0.0,0.21594068582 5857 | 5855,0.0,0.0,0.21594068582 5858 | 5856,0.0,1.0,0.21594068582 5859 | 5857,1.0,1.0,0.384491114701 5860 | 5858,0.0,0.0,0.473597359736 5861 | 5859,1.0,1.0,0.598526703499 5862 | 5860,0.0,1.0,0.473597359736 5863 | 5861,0.0,0.0,0.21594068582 5864 | 5862,0.0,0.0,0.21594068582 5865 | 5863,1.0,0.0,0.307692307692 5866 | 5864,0.0,0.0,0.69133192389 5867 | 5865,1.0,0.0,0.307692307692 5868 | 5866,0.0,0.0,0.384491114701 5869 | 5867,1.0,1.0,0.598526703499 5870 | 5868,0.0,0.0,0.21594068582 5871 | 5869,1.0,0.0,0.705020920502 5872 | 5870,1.0,1.0,0.56401384083 5873 | 5871,0.0,0.0,0.21594068582 5874 | 5872,0.0,1.0,0.705020920502 5875 | 5873,1.0,1.0,0.598526703499 5876 | 5874,0.0,0.0,0.307692307692 5877 | 5875,0.0,1.0,0.598526703499 5878 | 5876,0.0,0.0,0.21594068582 5879 | 5877,1.0,1.0,0.705020920502 5880 | 5878,1.0,1.0,0.777142857143 5881 | 5879,0.0,0.0,0.21594068582 5882 | 5880,0.0,0.0,0.705020920502 5883 | 5881,1.0,1.0,0.473597359736 5884 | 5882,1.0,1.0,0.705020920502 5885 | 5883,1.0,1.0,0.432835820896 5886 | 5884,0.0,0.0,0.21594068582 5887 | 5885,0.0,1.0,0.56401384083 5888 | 5886,1.0,1.0,0.432835820896 5889 | 5887,0.0,0.0,0.56401384083 5890 | 5888,0.0,1.0,0.384491114701 5891 | 5889,1.0,0.0,0.69133192389 5892 | 5890,1.0,1.0,0.432835820896 5893 | 5891,1.0,1.0,0.69133192389 5894 | 5892,1.0,1.0,0.56401384083 5895 | 5893,1.0,1.0,0.705020920502 5896 | 5894,0.0,1.0,0.56401384083 5897 | 5895,1.0,0.0,0.473597359736 5898 | 5896,1.0,0.0,0.21594068582 5899 | 5897,1.0,0.0,0.473597359736 5900 | 5898,1.0,0.0,0.598526703499 5901 | 5899,1.0,0.0,0.21594068582 5902 | 5900,0.0,0.0,0.21594068582 5903 | 5901,0.0,1.0,0.598526703499 5904 | 5902,0.0,0.0,0.56401384083 5905 | 5903,1.0,1.0,0.473597359736 5906 | 5904,0.0,0.0,0.21594068582 5907 | 5905,0.0,0.0,0.432835820896 5908 | 5906,0.0,0.0,0.21594068582 5909 | 5907,1.0,1.0,0.69133192389 5910 | 5908,1.0,1.0,0.598526703499 5911 | 5909,1.0,1.0,0.384491114701 5912 | 5910,0.0,1.0,0.384491114701 5913 | 5911,0.0,1.0,0.432835820896 5914 | 5912,1.0,1.0,0.56401384083 5915 | 5913,0.0,1.0,0.56401384083 5916 | 5914,1.0,0.0,0.21594068582 5917 | 5915,0.0,1.0,0.777142857143 5918 | 5916,0.0,1.0,0.384491114701 5919 | 5917,0.0,0.0,0.384491114701 5920 | 5918,0.0,0.0,0.432835820896 5921 | 5919,0.0,0.0,0.384491114701 5922 | 5920,1.0,0.0,0.777142857143 5923 | 5921,1.0,1.0,0.69133192389 5924 | 5922,0.0,1.0,0.56401384083 5925 | 5923,0.0,0.0,0.432835820896 5926 | 5924,1.0,0.0,0.307692307692 5927 | 5925,1.0,1.0,0.432835820896 5928 | 5926,0.0,0.0,0.69133192389 5929 | 5927,1.0,1.0,0.432835820896 5930 | 5928,1.0,1.0,0.56401384083 5931 | 5929,1.0,0.0,0.473597359736 5932 | 5930,0.0,1.0,0.473597359736 5933 | 5931,1.0,1.0,0.473597359736 5934 | 5932,1.0,1.0,0.473597359736 5935 | 5933,1.0,1.0,0.473597359736 5936 | 5934,1.0,0.0,0.473597359736 5937 | 5935,0.0,0.0,0.21594068582 5938 | 5936,1.0,1.0,0.473597359736 5939 | 5937,1.0,0.0,0.56401384083 5940 | 5938,0.0,0.0,0.705020920502 5941 | 5939,1.0,0.0,0.473597359736 5942 | 5940,1.0,0.0,0.307692307692 5943 | 5941,1.0,0.0,0.384491114701 5944 | 5942,1.0,1.0,0.777142857143 5945 | 5943,1.0,0.0,0.21594068582 5946 | 5944,1.0,1.0,0.384491114701 5947 | 5945,1.0,1.0,0.777142857143 5948 | 5946,0.0,1.0,0.56401384083 5949 | 5947,1.0,1.0,0.384491114701 5950 | 5948,0.0,1.0,0.432835820896 5951 | 5949,0.0,0.0,0.21594068582 5952 | 5950,0.0,0.0,0.432835820896 5953 | 5951,1.0,0.0,0.21594068582 5954 | 5952,0.0,0.0,0.384491114701 5955 | 5953,0.0,0.0,0.598526703499 5956 | 5954,1.0,0.0,0.307692307692 5957 | 5955,1.0,1.0,0.473597359736 5958 | 5956,0.0,1.0,0.777142857143 5959 | 5957,0.0,1.0,0.598526703499 5960 | 5958,1.0,1.0,0.69133192389 5961 | 5959,0.0,0.0,0.473597359736 5962 | 5960,0.0,1.0,0.473597359736 5963 | 5961,0.0,0.0,0.56401384083 5964 | 5962,1.0,1.0,0.56401384083 5965 | 5963,0.0,1.0,0.307692307692 5966 | 5964,0.0,1.0,0.432835820896 5967 | 5965,0.0,0.0,0.307692307692 5968 | 5966,1.0,1.0,0.777142857143 5969 | 5967,1.0,1.0,0.777142857143 5970 | 5968,1.0,1.0,0.56401384083 5971 | 5969,1.0,1.0,0.598526703499 5972 | 5970,0.0,1.0,0.432835820896 5973 | 5971,1.0,0.0,0.21594068582 5974 | 5972,0.0,1.0,0.21594068582 5975 | 5973,1.0,1.0,0.384491114701 5976 | 5974,0.0,1.0,0.56401384083 5977 | 5975,1.0,1.0,0.598526703499 5978 | 5976,0.0,1.0,0.777142857143 5979 | 5977,1.0,0.0,0.384491114701 5980 | 5978,1.0,1.0,0.705020920502 5981 | 5979,1.0,1.0,0.56401384083 5982 | 5980,0.0,1.0,0.307692307692 5983 | 5981,0.0,0.0,0.21594068582 5984 | 5982,0.0,1.0,0.56401384083 5985 | 5983,1.0,1.0,0.705020920502 5986 | 5984,0.0,1.0,0.56401384083 5987 | 5985,1.0,0.0,0.69133192389 5988 | 5986,1.0,0.0,0.69133192389 5989 | 5987,1.0,1.0,0.384491114701 5990 | 5988,1.0,1.0,0.777142857143 5991 | 5989,1.0,1.0,0.777142857143 5992 | 5990,0.0,1.0,0.598526703499 5993 | 5991,0.0,1.0,0.598526703499 5994 | 5992,1.0,0.0,0.777142857143 5995 | 5993,0.0,0.0,0.432835820896 5996 | 5994,0.0,0.0,0.21594068582 5997 | 5995,1.0,1.0,0.56401384083 5998 | 5996,0.0,1.0,0.432835820896 5999 | 5997,1.0,1.0,0.56401384083 6000 | 5998,0.0,0.0,0.307692307692 6001 | 5999,1.0,0.0,0.56401384083 6002 | 6000,1.0,1.0,0.598526703499 6003 | 6001,1.0,1.0,0.21594068582 6004 | 6002,0.0,1.0,0.307692307692 6005 | 6003,1.0,1.0,0.307692307692 6006 | 6004,0.0,1.0,0.21594068582 6007 | 6005,1.0,1.0,0.56401384083 6008 | 6006,0.0,0.0,0.384491114701 6009 | 6007,1.0,1.0,0.56401384083 6010 | 6008,0.0,0.0,0.21594068582 6011 | 6009,0.0,1.0,0.307692307692 6012 | 6010,0.0,0.0,0.384491114701 6013 | 6011,1.0,1.0,0.777142857143 6014 | 6012,0.0,0.0,0.432835820896 6015 | 6013,1.0,1.0,0.56401384083 6016 | 6014,0.0,1.0,0.307692307692 6017 | 6015,1.0,1.0,0.432835820896 6018 | 6016,0.0,1.0,0.21594068582 6019 | 6017,1.0,1.0,0.777142857143 6020 | 6018,0.0,1.0,0.432835820896 6021 | 6019,1.0,1.0,0.598526703499 6022 | 6020,1.0,0.0,0.384491114701 6023 | 6021,0.0,0.0,0.21594068582 6024 | 6022,0.0,0.0,0.21594068582 6025 | 6023,1.0,0.0,0.69133192389 6026 | 6024,1.0,1.0,0.21594068582 6027 | 6025,1.0,0.0,0.21594068582 6028 | 6026,0.0,0.0,0.384491114701 6029 | 6027,0.0,1.0,0.21594068582 6030 | 6028,0.0,0.0,0.21594068582 6031 | 6029,0.0,0.0,0.307692307692 6032 | 6030,0.0,0.0,0.384491114701 6033 | 6031,0.0,1.0,0.598526703499 6034 | 6032,1.0,0.0,0.598526703499 6035 | 6033,1.0,1.0,0.56401384083 6036 | 6034,1.0,1.0,0.473597359736 6037 | 6035,1.0,1.0,0.432835820896 6038 | 6036,1.0,1.0,0.473597359736 6039 | 6037,0.0,0.0,0.21594068582 6040 | 6038,0.0,0.0,0.473597359736 6041 | 6039,1.0,1.0,0.432835820896 6042 | 6040,1.0,0.0,0.705020920502 6043 | 6041,1.0,0.0,0.473597359736 6044 | 6042,0.0,1.0,0.56401384083 6045 | 6043,0.0,0.0,0.473597359736 6046 | 6044,1.0,1.0,0.432835820896 6047 | 6045,1.0,0.0,0.384491114701 6048 | 6046,1.0,1.0,0.473597359736 6049 | 6047,1.0,1.0,0.432835820896 6050 | 6048,0.0,0.0,0.21594068582 6051 | 6049,0.0,1.0,0.56401384083 6052 | 6050,1.0,0.0,0.69133192389 6053 | 6051,1.0,1.0,0.56401384083 6054 | 6052,0.0,1.0,0.56401384083 6055 | 6053,1.0,1.0,0.56401384083 6056 | 6054,1.0,1.0,0.705020920502 6057 | 6055,1.0,1.0,0.21594068582 6058 | 6056,1.0,0.0,0.69133192389 6059 | 6057,0.0,1.0,0.56401384083 6060 | 6058,1.0,1.0,0.598526703499 6061 | 6059,1.0,1.0,0.384491114701 6062 | 6060,1.0,1.0,0.56401384083 6063 | 6061,0.0,1.0,0.307692307692 6064 | 6062,0.0,1.0,0.69133192389 6065 | 6063,0.0,1.0,0.56401384083 6066 | 6064,1.0,1.0,0.307692307692 6067 | 6065,1.0,1.0,0.598526703499 6068 | 6066,0.0,0.0,0.21594068582 6069 | 6067,1.0,1.0,0.777142857143 6070 | 6068,1.0,0.0,0.69133192389 6071 | 6069,0.0,0.0,0.21594068582 6072 | 6070,1.0,1.0,0.473597359736 6073 | 6071,0.0,1.0,0.432835820896 6074 | 6072,0.0,1.0,0.307692307692 6075 | 6073,0.0,0.0,0.21594068582 6076 | 6074,0.0,0.0,0.432835820896 6077 | 6075,1.0,1.0,0.432835820896 6078 | 6076,0.0,0.0,0.56401384083 6079 | 6077,1.0,1.0,0.598526703499 6080 | 6078,1.0,1.0,0.69133192389 6081 | 6079,0.0,1.0,0.598526703499 6082 | 6080,0.0,0.0,0.307692307692 6083 | 6081,0.0,1.0,0.432835820896 6084 | 6082,1.0,1.0,0.69133192389 6085 | 6083,1.0,1.0,0.56401384083 6086 | 6084,0.0,0.0,0.69133192389 6087 | 6085,1.0,0.0,0.473597359736 6088 | 6086,0.0,1.0,0.307692307692 6089 | 6087,1.0,1.0,0.777142857143 6090 | 6088,0.0,0.0,0.473597359736 6091 | 6089,1.0,0.0,0.777142857143 6092 | 6090,0.0,0.0,0.432835820896 6093 | 6091,1.0,1.0,0.598526703499 6094 | 6092,1.0,1.0,0.473597359736 6095 | 6093,1.0,1.0,0.473597359736 6096 | 6094,0.0,0.0,0.384491114701 6097 | 6095,1.0,1.0,0.56401384083 6098 | 6096,0.0,0.0,0.473597359736 6099 | 6097,0.0,1.0,0.307692307692 6100 | 6098,0.0,0.0,0.21594068582 6101 | 6099,0.0,1.0,0.307692307692 6102 | 6100,1.0,0.0,0.307692307692 6103 | 6101,0.0,1.0,0.56401384083 6104 | 6102,0.0,1.0,0.473597359736 6105 | 6103,1.0,1.0,0.598526703499 6106 | 6104,0.0,1.0,0.384491114701 6107 | 6105,0.0,0.0,0.21594068582 6108 | 6106,1.0,1.0,0.56401384083 6109 | 6107,0.0,0.0,0.21594068582 6110 | 6108,0.0,0.0,0.705020920502 6111 | 6109,1.0,0.0,0.432835820896 6112 | 6110,0.0,1.0,0.473597359736 6113 | 6111,1.0,1.0,0.69133192389 6114 | 6112,0.0,1.0,0.473597359736 6115 | 6113,1.0,1.0,0.705020920502 6116 | 6114,0.0,0.0,0.384491114701 6117 | 6115,1.0,1.0,0.705020920502 6118 | 6116,1.0,0.0,0.21594068582 6119 | 6117,0.0,0.0,0.307692307692 6120 | 6118,0.0,0.0,0.598526703499 6121 | 6119,0.0,0.0,0.307692307692 6122 | 6120,0.0,0.0,0.21594068582 6123 | 6121,1.0,1.0,0.56401384083 6124 | 6122,0.0,0.0,0.56401384083 6125 | 6123,1.0,1.0,0.56401384083 6126 | 6124,1.0,0.0,0.56401384083 6127 | 6125,0.0,0.0,0.432835820896 6128 | 6126,0.0,1.0,0.432835820896 6129 | 6127,1.0,0.0,0.432835820896 6130 | 6128,0.0,0.0,0.21594068582 6131 | 6129,1.0,1.0,0.307692307692 6132 | 6130,1.0,1.0,0.384491114701 6133 | 6131,0.0,0.0,0.307692307692 6134 | 6132,0.0,0.0,0.307692307692 6135 | 6133,0.0,1.0,0.307692307692 6136 | 6134,1.0,0.0,0.21594068582 6137 | 6135,1.0,1.0,0.598526703499 6138 | 6136,0.0,1.0,0.21594068582 6139 | 6137,0.0,1.0,0.307692307692 6140 | 6138,0.0,1.0,0.473597359736 6141 | 6139,0.0,0.0,0.69133192389 6142 | 6140,1.0,1.0,0.598526703499 6143 | 6141,1.0,1.0,0.777142857143 6144 | 6142,0.0,1.0,0.432835820896 6145 | 6143,1.0,0.0,0.777142857143 6146 | 6144,1.0,0.0,0.56401384083 6147 | 6145,1.0,1.0,0.307692307692 6148 | 6146,0.0,1.0,0.705020920502 6149 | 6147,0.0,1.0,0.598526703499 6150 | 6148,0.0,1.0,0.384491114701 6151 | 6149,0.0,1.0,0.307692307692 6152 | -------------------------------------------------------------------------------- /data/health.csv: -------------------------------------------------------------------------------- 1 | ,label,group,prediction 2 | 0,0.0,1.0,0.539982472583 3 | 1,1.0,1.0,0.927640904066 4 | 2,1.0,1.0,0.626604037135 5 | 3,0.0,0.0,0.0956673333252 6 | 4,1.0,1.0,0.951990582711 7 | 5,0.0,1.0,0.564915279871 8 | 6,1.0,1.0,0.90168293824 9 | 7,0.0,1.0,0.352390462189 10 | 8,1.0,1.0,0.882220569717 11 | 9,0.0,1.0,0.315466559202 12 | 10,1.0,1.0,0.774780004387 13 | 11,1.0,1.0,0.95353136338 14 | 12,0.0,0.0,0.171319451517 15 | 13,0.0,0.0,0.287814610505 16 | 14,0.0,1.0,0.270100462716 17 | 15,1.0,1.0,0.929630275845 18 | 16,1.0,1.0,0.774106819472 19 | 17,1.0,1.0,0.922860306522 20 | 18,0.0,1.0,0.19076337219 21 | 19,1.0,1.0,0.695556111788 22 | 20,1.0,1.0,0.559068532391 23 | 21,1.0,0.0,0.730159814451 24 | 22,1.0,1.0,0.618325773137 25 | 23,1.0,1.0,0.916173486248 26 | 24,0.0,0.0,0.237772732808 27 | 25,1.0,1.0,0.902347163298 28 | 26,1.0,1.0,0.393933563568 29 | 27,1.0,0.0,0.742307942747 30 | 28,1.0,1.0,0.855277340478 31 | 29,0.0,1.0,0.790148659003 32 | 30,1.0,1.0,0.951858841682 33 | 31,1.0,1.0,0.522954661355 34 | 32,1.0,1.0,0.627127443347 35 | 33,1.0,1.0,0.588804200015 36 | 34,1.0,1.0,0.956170763814 37 | 35,1.0,1.0,0.681974817015 38 | 36,1.0,0.0,0.794987817692 39 | 37,0.0,0.0,0.0302084584221 40 | 38,1.0,1.0,0.88812823817 41 | 39,0.0,0.0,0.0650443981822 42 | 40,1.0,1.0,0.820058581747 43 | 41,0.0,0.0,0.0415443231168 44 | 42,0.0,0.0,0.270719407711 45 | 43,0.0,1.0,0.88438139283 46 | 44,1.0,1.0,0.947889173253 47 | 45,1.0,1.0,0.646344915216 48 | 46,0.0,1.0,0.280524545996 49 | 47,1.0,1.0,0.492554389805 50 | 48,1.0,1.0,0.809387088234 51 | 49,1.0,0.0,0.423739994466 52 | 50,1.0,1.0,0.266851681801 53 | 51,0.0,1.0,0.137601529505 54 | 52,0.0,0.0,0.0632819056003 55 | 53,0.0,1.0,0.128978594306 56 | 54,1.0,1.0,0.663643546955 57 | 55,1.0,1.0,0.859518198748 58 | 56,1.0,1.0,0.822501661507 59 | 57,1.0,1.0,0.358446630822 60 | 58,1.0,1.0,0.669636150376 61 | 59,0.0,1.0,0.0698214689354 62 | 60,1.0,0.0,0.502761967535 63 | 61,0.0,0.0,0.0688720411546 64 | 62,0.0,0.0,0.0434378165331 65 | 63,0.0,1.0,0.682699424507 66 | 64,1.0,1.0,0.900484125012 67 | 65,0.0,0.0,0.245297116893 68 | 66,0.0,1.0,0.772972917361 69 | 67,1.0,1.0,0.654222413888 70 | 68,1.0,0.0,0.88499672118 71 | 69,0.0,1.0,0.118378129267 72 | 70,1.0,1.0,0.874335055063 73 | 71,0.0,0.0,0.0405741945826 74 | 72,0.0,1.0,0.605550469522 75 | 73,1.0,1.0,0.686526001041 76 | 74,0.0,0.0,0.0448000079278 77 | 75,1.0,1.0,0.877989901753 78 | 76,1.0,1.0,0.729572341849 79 | 77,1.0,1.0,0.83262551331 80 | 78,1.0,1.0,0.908067279358 81 | 79,1.0,1.0,0.529370608002 82 | 80,0.0,1.0,0.0872537625451 83 | 81,0.0,1.0,0.595899097788 84 | 82,0.0,0.0,0.492227778119 85 | 83,0.0,1.0,0.494049545696 86 | 84,1.0,1.0,0.916304659614 87 | 85,1.0,0.0,0.5245349022 88 | 86,1.0,0.0,0.539677772089 89 | 87,0.0,1.0,0.271476494672 90 | 88,1.0,1.0,0.895728958621 91 | 89,0.0,1.0,0.336007489708 92 | 90,0.0,1.0,0.30417445679 93 | 91,1.0,1.0,0.804694384782 94 | 92,1.0,1.0,0.843573525412 95 | 93,1.0,1.0,0.498848533726 96 | 94,1.0,0.0,0.944906788704 97 | 95,0.0,0.0,0.349808833463 98 | 96,0.0,1.0,0.407875410743 99 | 97,1.0,1.0,0.899767328175 100 | 98,1.0,1.0,0.825289628815 101 | 99,0.0,0.0,0.0447309032651 102 | 100,1.0,1.0,0.823866134453 103 | 101,1.0,1.0,0.501705312809 104 | 102,1.0,0.0,0.68999867536 105 | 103,0.0,0.0,0.337735910228 106 | 104,1.0,0.0,0.878788832443 107 | 105,0.0,0.0,0.131067256557 108 | 106,1.0,1.0,0.644376175674 109 | 107,1.0,0.0,0.777593797136 110 | 108,1.0,1.0,0.908611449574 111 | 109,1.0,1.0,0.913419117497 112 | 110,1.0,1.0,0.87332513622 113 | 111,0.0,1.0,0.0637530280204 114 | 112,1.0,1.0,0.857544680959 115 | 113,0.0,1.0,0.115751622168 116 | 114,1.0,0.0,0.242747044046 117 | 115,0.0,0.0,0.350749513698 118 | 116,0.0,0.0,0.918339734109 119 | 117,0.0,1.0,0.0435610012945 120 | 118,1.0,1.0,0.937332248742 121 | 119,1.0,1.0,0.890432701073 122 | 120,0.0,1.0,0.47362443565 123 | 121,1.0,1.0,0.656345314448 124 | 122,1.0,1.0,0.532555192064 125 | 123,0.0,0.0,0.0444454171761 126 | 124,1.0,0.0,0.754323006409 127 | 125,1.0,0.0,0.307043500198 128 | 126,0.0,0.0,0.339784143269 129 | 127,1.0,1.0,0.948126608146 130 | 128,0.0,1.0,0.577904864324 131 | 129,1.0,1.0,0.302006042183 132 | 130,0.0,1.0,0.406503921273 133 | 131,0.0,1.0,0.0516413958551 134 | 132,0.0,1.0,0.359257581013 135 | 133,1.0,1.0,0.635499016561 136 | 134,1.0,1.0,0.74818517992 137 | 135,1.0,1.0,0.655905328347 138 | 136,1.0,1.0,0.41241485331 139 | 137,0.0,0.0,0.188395356727 140 | 138,1.0,1.0,0.745395340015 141 | 139,1.0,1.0,0.840898473303 142 | 140,1.0,1.0,0.911868727081 143 | 141,0.0,0.0,0.076017276459 144 | 142,0.0,0.0,0.169408881029 145 | 143,1.0,1.0,0.795316821653 146 | 144,1.0,1.0,0.942913667497 147 | 145,0.0,0.0,0.107626063763 148 | 146,0.0,1.0,0.441239440382 149 | 147,1.0,1.0,0.763792475648 150 | 148,1.0,1.0,0.581233728106 151 | 149,1.0,1.0,0.789658802286 152 | 150,1.0,1.0,0.94727898186 153 | 151,0.0,1.0,0.0633120328937 154 | 152,1.0,1.0,0.736027784418 155 | 153,0.0,0.0,0.569964251701 156 | 154,1.0,1.0,0.746219473628 157 | 155,1.0,1.0,0.91886944134 158 | 156,1.0,1.0,0.366045503618 159 | 157,0.0,1.0,0.495185373221 160 | 158,1.0,1.0,0.847433202921 161 | 159,1.0,0.0,0.9463038306 162 | 160,1.0,1.0,0.921529856089 163 | 161,0.0,1.0,0.405997706306 164 | 162,1.0,1.0,0.490161205673 165 | 163,1.0,1.0,0.806268810585 166 | 164,0.0,1.0,0.616703259628 167 | 165,0.0,1.0,0.0843052296368 168 | 166,0.0,1.0,0.892046687201 169 | 167,1.0,0.0,0.227593317753 170 | 168,1.0,1.0,0.703693101303 171 | 169,0.0,0.0,0.0512617039203 172 | 170,1.0,1.0,0.919578955418 173 | 171,1.0,1.0,0.524491950918 174 | 172,0.0,1.0,0.926822256949 175 | 173,1.0,1.0,0.898797085359 176 | 174,0.0,1.0,0.735040923427 177 | 175,0.0,1.0,0.0483555342162 178 | 176,1.0,1.0,0.923680449758 179 | 177,0.0,0.0,0.275367762879 180 | 178,1.0,1.0,0.840103657417 181 | 179,1.0,1.0,0.715950250332 182 | 180,0.0,0.0,0.0412281790268 183 | 181,1.0,1.0,0.908793268076 184 | 182,1.0,1.0,0.762065836465 185 | 183,0.0,0.0,0.0777309465504 186 | -------------------------------------------------------------------------------- /eq_odds.py: -------------------------------------------------------------------------------- 1 | import cvxpy as cvx 2 | import numpy as np 3 | from collections import namedtuple 4 | 5 | 6 | class Model(namedtuple('Model', 'pred label')): 7 | def logits(self): 8 | raw_logits = np.clip(np.log(self.pred / (1 - self.pred)), -100, 100) 9 | return raw_logits 10 | 11 | def num_samples(self): 12 | return len(self.pred) 13 | 14 | def base_rate(self): 15 | """ 16 | Percentage of samples belonging to the positive class 17 | """ 18 | return np.mean(self.label) 19 | 20 | def accuracy(self): 21 | return self.accuracies().mean() 22 | 23 | def precision(self): 24 | return (self.label[self.pred.round() == 1]).mean() 25 | 26 | def recall(self): 27 | return (self.label[self.label == 1].round()).mean() 28 | 29 | def tpr(self): 30 | """ 31 | True positive rate 32 | """ 33 | return np.mean(np.logical_and(self.pred.round() == 1, self.label == 1)) 34 | 35 | def fpr(self): 36 | """ 37 | False positive rate 38 | """ 39 | return np.mean(np.logical_and(self.pred.round() == 1, self.label == 0)) 40 | 41 | def tnr(self): 42 | """ 43 | True negative rate 44 | """ 45 | return np.mean(np.logical_and(self.pred.round() == 0, self.label == 0)) 46 | 47 | def fnr(self): 48 | """ 49 | False negative rate 50 | """ 51 | return np.mean(np.logical_and(self.pred.round() == 0, self.label == 1)) 52 | 53 | def fn_cost(self): 54 | """ 55 | Generalized false negative cost 56 | """ 57 | return 1 - self.pred[self.label == 1].mean() 58 | 59 | def fp_cost(self): 60 | """ 61 | Generalized false positive cost 62 | """ 63 | return self.pred[self.label == 0].mean() 64 | 65 | def accuracies(self): 66 | return self.pred.round() == self.label 67 | 68 | def eq_odds(self, othr, mix_rates=None): 69 | has_mix_rates = not (mix_rates is None) 70 | if not has_mix_rates: 71 | mix_rates = self.eq_odds_optimal_mix_rates(othr) 72 | sp2p, sn2p, op2p, on2p = tuple(mix_rates) 73 | 74 | self_fair_pred = self.pred.copy() 75 | self_pp_indices, = np.nonzero(self.pred.round()) 76 | self_pn_indices, = np.nonzero(1 - self.pred.round()) 77 | np.random.shuffle(self_pp_indices) 78 | np.random.shuffle(self_pn_indices) 79 | 80 | n2p_indices = self_pn_indices[:int(len(self_pn_indices) * sn2p)] 81 | self_fair_pred[n2p_indices] = 1 - self_fair_pred[n2p_indices] 82 | p2n_indices = self_pp_indices[:int(len(self_pp_indices) * (1 - sp2p))] 83 | self_fair_pred[p2n_indices] = 1 - self_fair_pred[p2n_indices] 84 | 85 | othr_fair_pred = othr.pred.copy() 86 | othr_pp_indices, = np.nonzero(othr.pred.round()) 87 | othr_pn_indices, = np.nonzero(1 - othr.pred.round()) 88 | np.random.shuffle(othr_pp_indices) 89 | np.random.shuffle(othr_pn_indices) 90 | 91 | n2p_indices = othr_pn_indices[:int(len(othr_pn_indices) * on2p)] 92 | othr_fair_pred[n2p_indices] = 1 - othr_fair_pred[n2p_indices] 93 | p2n_indices = othr_pp_indices[:int(len(othr_pp_indices) * (1 - op2p))] 94 | othr_fair_pred[p2n_indices] = 1 - othr_fair_pred[p2n_indices] 95 | 96 | fair_self = Model(self_fair_pred, self.label) 97 | fair_othr = Model(othr_fair_pred, othr.label) 98 | 99 | if not has_mix_rates: 100 | return fair_self, fair_othr, mix_rates 101 | else: 102 | return fair_self, fair_othr 103 | 104 | def eq_odds_optimal_mix_rates(self, othr): 105 | sbr = float(self.base_rate()) 106 | obr = float(othr.base_rate()) 107 | 108 | sp2p = cvx.Variable(1) 109 | sp2n = cvx.Variable(1) 110 | sn2p = cvx.Variable(1) 111 | sn2n = cvx.Variable(1) 112 | 113 | op2p = cvx.Variable(1) 114 | op2n = cvx.Variable(1) 115 | on2p = cvx.Variable(1) 116 | on2n = cvx.Variable(1) 117 | 118 | sfpr = self.fpr() * sp2p + self.tnr() * sn2p 119 | sfnr = self.fnr() * sn2n + self.tpr() * sp2n 120 | ofpr = othr.fpr() * op2p + othr.tnr() * on2p 121 | ofnr = othr.fnr() * on2n + othr.tpr() * op2n 122 | error = sfpr + sfnr + ofpr + ofnr 123 | 124 | sflip = 1 - self.pred 125 | sconst = self.pred 126 | oflip = 1 - othr.pred 127 | oconst = othr.pred 128 | 129 | sm_tn = np.logical_and(self.pred.round() == 0, self.label == 0) 130 | sm_fn = np.logical_and(self.pred.round() == 0, self.label == 1) 131 | sm_tp = np.logical_and(self.pred.round() == 1, self.label == 1) 132 | sm_fp = np.logical_and(self.pred.round() == 1, self.label == 0) 133 | 134 | om_tn = np.logical_and(othr.pred.round() == 0, othr.label == 0) 135 | om_fn = np.logical_and(othr.pred.round() == 0, othr.label == 1) 136 | om_tp = np.logical_and(othr.pred.round() == 1, othr.label == 1) 137 | om_fp = np.logical_and(othr.pred.round() == 1, othr.label == 0) 138 | 139 | spn_given_p = (sn2p * (sflip * sm_fn).mean() + sn2n * (sconst * sm_fn).mean()) / sbr + \ 140 | (sp2p * (sconst * sm_tp).mean() + sp2n * (sflip * sm_tp).mean()) / sbr 141 | 142 | spp_given_n = (sp2n * (sflip * sm_fp).mean() + sp2p * (sconst * sm_fp).mean()) / (1 - sbr) + \ 143 | (sn2p * (sflip * sm_tn).mean() + sn2n * (sconst * sm_tn).mean()) / (1 - sbr) 144 | 145 | opn_given_p = (on2p * (oflip * om_fn).mean() + on2n * (oconst * om_fn).mean()) / obr + \ 146 | (op2p * (oconst * om_tp).mean() + op2n * (oflip * om_tp).mean()) / obr 147 | 148 | opp_given_n = (op2n * (oflip * om_fp).mean() + op2p * (oconst * om_fp).mean()) / (1 - obr) + \ 149 | (on2p * (oflip * om_tn).mean() + on2n * (oconst * om_tn).mean()) / (1 - obr) 150 | 151 | constraints = [ 152 | sp2p == 1 - sp2n, 153 | sn2p == 1 - sn2n, 154 | op2p == 1 - op2n, 155 | on2p == 1 - on2n, 156 | sp2p <= 1, 157 | sp2p >= 0, 158 | sn2p <= 1, 159 | sn2p >= 0, 160 | op2p <= 1, 161 | op2p >= 0, 162 | on2p <= 1, 163 | on2p >= 0, 164 | spp_given_n == opp_given_n, 165 | spn_given_p == opn_given_p, 166 | ] 167 | 168 | prob = cvx.Problem(cvx.Minimize(error), constraints) 169 | prob.solve() 170 | 171 | res = np.array([sp2p.value, sn2p.value, op2p.value, on2p.value]) 172 | return res 173 | 174 | def __repr__(self): 175 | return '\n'.join([ 176 | 'Accuracy:\t%.3f' % self.accuracy(), 177 | 'F.P. cost:\t%.3f' % self.fp_cost(), 178 | 'F.N. cost:\t%.3f' % self.fn_cost(), 179 | 'Base rate:\t%.3f' % self.base_rate(), 180 | 'Avg. score:\t%.3f' % self.pred.mean(), 181 | ]) 182 | 183 | 184 | """ 185 | Demo 186 | """ 187 | if __name__ == '__main__': 188 | """ 189 | To run the demo: 190 | 191 | ``` 192 | python eq_odds.py 193 | ``` 194 | 195 | `` should contain the following columns for the VALIDATION set: 196 | 197 | - `prediction` (a score between 0 and 1) 198 | - `label` (ground truth - either 0 or 1) 199 | - `group` (group assignment - either 0 or 1) 200 | 201 | Try the following experiments, which were performed in the paper: 202 | ``` 203 | python eq_odds.py data/income.csv 204 | python eq_odds.py data/health.csv 205 | python eq_odds.py data/criminal_recidivism.csv 206 | ``` 207 | """ 208 | import pandas as pd 209 | import sys 210 | 211 | if not len(sys.argv) == 2: 212 | raise RuntimeError('Invalid number of arguments') 213 | 214 | # Load the validation set scores from csvs 215 | data_filename = sys.argv[1] 216 | test_and_val_data = pd.read_csv(sys.argv[1]) 217 | 218 | # Randomly split the data into two sets - one for computing the fairness constants 219 | order = np.random.permutation(len(test_and_val_data)) 220 | val_indices = order[0::2] 221 | test_indices = order[1::2] 222 | val_data = test_and_val_data.iloc[val_indices] 223 | test_data = test_and_val_data.iloc[test_indices] 224 | 225 | # Create model objects - one for each group, validation and test 226 | group_0_val_data = val_data[val_data['group'] == 0] 227 | group_1_val_data = val_data[val_data['group'] == 1] 228 | group_0_test_data = test_data[test_data['group'] == 0] 229 | group_1_test_data = test_data[test_data['group'] == 1] 230 | 231 | group_0_val_model = Model(group_0_val_data['prediction'].as_matrix(), group_0_val_data['label'].as_matrix()) 232 | group_1_val_model = Model(group_1_val_data['prediction'].as_matrix(), group_1_val_data['label'].as_matrix()) 233 | group_0_test_model = Model(group_0_test_data['prediction'].as_matrix(), group_0_test_data['label'].as_matrix()) 234 | group_1_test_model = Model(group_1_test_data['prediction'].as_matrix(), group_1_test_data['label'].as_matrix()) 235 | 236 | # Find mixing rates for equalized odds models 237 | _, _, mix_rates = Model.eq_odds(group_0_val_model, group_1_val_model) 238 | 239 | # Apply the mixing rates to the test models 240 | eq_odds_group_0_test_model, eq_odds_group_1_test_model = Model.eq_odds(group_0_test_model, 241 | group_1_test_model, 242 | mix_rates) 243 | 244 | # Print results on test model 245 | print('Original group 0 model:\n%s\n' % repr(group_0_test_model)) 246 | print('Original group 1 model:\n%s\n' % repr(group_1_test_model)) 247 | print('Equalized odds group 0 model:\n%s\n' % repr(eq_odds_group_0_test_model)) 248 | print('Equalized odds group 1 model:\n%s\n' % repr(eq_odds_group_1_test_model)) 249 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | ignore = T003 4 | --------------------------------------------------------------------------------