diff --git a/README.md b/README.md index 5d5cb7ff42781eb619729d93a6766709b57efa7d..672f1ccfa358a772672d2d0b7ada290a177ef219 100644 --- a/README.md +++ b/README.md @@ -1,92 +1,4 @@ # ContinuousIM +Code for experiments of Chapter 3 of the thesis 'Influence Maximisation and Adaptive Control of Opinion Dynamics on Complex Networks'. - -## Getting started - -To make it easy for you to get started with GitLab, here's a list of recommended next steps. - -Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! - -## Add your files - -- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files -- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: - -``` -cd existing_repo -git remote add origin https://git.soton.ac.uk/grm1g17/continuousim.git -git branch -M main -git push -uf origin main -``` - -## Integrate with your tools - -- [ ] [Set up project integrations](https://git.soton.ac.uk/grm1g17/continuousim/-/settings/integrations) - -## Collaborate with your team - -- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) -- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) -- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) -- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) -- [ ] [Set auto-merge](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) - -## Test and Deploy - -Use the built-in continuous integration in GitLab. - -- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) -- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) -- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) -- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) -- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) - -*** - -# Editing this README - -When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. - -## Suggestions for a good README -Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. - -## Name -Choose a self-explaining name for your project. - -## Description -Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. - -## Badges -On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. - -## Visuals -Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. - -## Installation -Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. - -## Usage -Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. - -## Support -Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. - -## Roadmap -If you have ideas for releases in the future, it is a good idea to list them in the README. - -## Contributing -State if you are open to contributions and what your requirements are for accepting them. - -For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. - -You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. - -## Authors and acknowledgment -Show your appreciation to those who have contributed to the project. - -## License -For open source projects, say how it is licensed. - -## Project status -If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/constructive_model.py b/constructive_model.py new file mode 100644 index 0000000000000000000000000000000000000000..6d6e710c15fb45305f61a45d191fe60318e3dae4 --- /dev/null +++ b/constructive_model.py @@ -0,0 +1,795 @@ +import warnings +import pickle +import json +import random +import numpy as np +import networkx as nx +import matplotlib as mpl +import matplotlib.pyplot as plt + +from python.networks import get_highest_nodes +from python.general_GA_avoidance import load_data, compute_a_analytical_small_budget, print_multi_axes, \ + divide_into_neighbouring_groups, DISCRETE_COLOR, complete_hyper_params, main_text +from python.utils import DATA_PATH, PLOTS_PATH, create_range + +SUB_DATA_PATH = "constructive_model/" +mpl.rcParams['text.usetex'] = True + + +def create_name(type_of_experiment, l, a_budget, b_budget, N_allocations): + fname = "-N{:d}-a{:.1f}-b{:.1f}".format(N_allocations, a_budget, b_budget) + if type_of_experiment == "plot": + return PLOTS_PATH + "constructive" + fname + ".eps" + else: + return DATA_PATH + SUB_DATA_PATH + type_of_experiment + str(l) + fname + ".pkl" + + +def binary_search(compute_x_func, a_low, a_high, verbose=False): + a_middle = (a_high + a_low) / 2 + X_low, _ = compute_x_func(a_low) + X_middle, _ = compute_x_func(a_middle) + X_high, _ = compute_x_func(a_high) + diff = a_high - a_low + i = 0 + while diff > 1e-4: + new_a_low = (a_low + a_middle) / 2 + new_a_high = (a_middle + a_high) / 2 + new_X_low, a_values_low = compute_x_func(new_a_low) + new_X_high, a_values_high = compute_x_func(new_a_high) + if verbose == True: + print(a_low, new_a_low, a_middle, new_a_high, a_high) + + if np.max([X_low, new_X_low]) > np.max([X_middle, X_high, new_X_high]): + a_high = a_middle + a_middle = new_a_low + X_high = X_middle + X_middle = new_X_low + elif X_middle > np.max([X_low, new_X_low, X_high, new_X_high]): + a_high = new_a_high + a_low = new_a_low + X_high = new_X_high + X_low = new_X_low + elif np.max([X_high, new_X_high]) > np.max([X_middle, X_low, new_X_low]): + a_low = a_middle + a_middle = new_a_high + X_low = X_middle + X_middle = new_X_high + diff = a_high - a_low + i += 1 + return i, X_middle, a_middle + + +class Constructor: + def __init__(self, a_budget, b, W, X_opt_disc, X_opt_cont, b_allocation="discrete", seed=5, verbose=False): + self.W = W + self.L = np.diagflat(np.sum(self.W, axis=0)) - self.W + self.N = self.W.shape[0] + self.seq = np.squeeze(np.array(np.sum(self.W, axis=1))) + + self.a_budget = a_budget + if b_allocation == "discrete": + b_targets = b[b > 0] + assert np.all(b_targets[0] == b_targets) + self.b = b + self.b_allocation = b_allocation + + self.mask_b, self.mask_b_neighbours, self.mask_rest = divide_into_neighbouring_groups(b, W) + self.N_b = np.sum(self.mask_b) + + self.X_degree_disc = None + self.X_shadow_disc = None + self.X_opt_disc = X_opt_disc + self.X_random = None + + self.X_small = None + self.a_shadowing_cont = None + self.X_uniform = None + self.X_opt_cont = X_opt_cont + + self.seed = seed + self.verbose = verbose + + def build_strategy(self, strat, l, verbose=False): + if strat == "high disc": + return self.build_high_degree_disc(verbose=verbose) + elif strat == "shadow disc": + return self.build_shadowing_disc(l, verbose=verbose) + elif strat == "shield disc": + return self.build_shielding_disc(l, verbose=verbose) + elif strat == "opt disc": + return self.X_opt_disc + elif strat == "random": + if self.X_random is None: + a_vec = np.zeros(self.N) + np.random.seed(self.seed) + indices = np.random.choice(self.N, self.N_b, replace=False) + a_vec[indices] = self.a_budget / self.N_b + self.X_random, _ = self.compute_x(a_vec) + if verbose or self.verbose: + print("{:<18s}{:f}".format("X_rand", self.X_random)) + return self.X_random + elif strat == "opt cont": + return self.X_opt_cont + elif strat == "high cont": + return self.build_high_degree_cont(l, verbose=verbose) + elif strat == "first order": + return self.compute_first_order(verbose=verbose) + elif strat == "shield cont num": + if self.a_shadowing_cont is None: + self.build_shadowing_cont(l, verbose=verbose) + return self.build_shielding_cont(l, self.a_shadowing_cont, verbose=verbose) + elif strat == "uniform": + if self.X_uniform is None: + a_max_ent = np.ones(self.N) / self.N * self.a_budget + self.X_uniform, _ = self.compute_x(a_max_ent) + return self.X_uniform + elif strat == "shield cont": + return self.build_shielding_cont(l, "first order", verbose=verbose) + elif strat == "shadow cont": + return self.build_shadowing_cont(l, verbose=verbose) + else: + raise Exception("Strategy {:s} not understood.".format(strat)) + + def compute_first_order(self, verbose=False): + if self.X_small is None: + a_vec = compute_a_analytical_small_budget(self.seq, self.b, self.a_budget / self.N, np.sum(self.b) / self.N) + self.X_small, _ = self.compute_x(a_vec) + if self.verbose or verbose: + print("X_small {:.4f}".format(self.X_small), "a_small", a_vec[self.mask_b][0], "a_small_rest", + a_vec[np.logical_not(self.mask_b)][0]) + # print("a_with_b (small)", a_small[indices_with_b][0], a_small[indices_without_b][0], X_small) + # a_big = compute_a_analytical_big_budget(self.b, self.a_budget/self.N, np.sum(self.b)/self.N) + # X_big = self.compute_x(a_small) + # print("a_with_b (big)", a_big[indices_with_b][0], a_big[indices_without_b][0], X_big) + return self.X_small + + def build_shadowing_cont(self, l, verbose=False): + assert self.b_allocation == "discrete", "Shadowing only implemented for discrete bs" + # seq = np.squeeze(np.array(np.sum(self.W, axis=1))) + # indices_b = np.arange(N)[self.b > 0] + # print("indices b", indices_b) + # indices_b_wo_b_neighbours = indices_b[np.sum(W[indices_b][:, indices_b], axis=0) == 0] + # print("Indices b without b neighbours", indices_b_wo_b_neighbours) + # a_with_b = self.a_num[indices_b_wo_b_neighbours] + # # a_with_b = self.a_num[indices_b] + # sort_ind = np.argsort(seq[indices_b_wo_b_neighbours]) + # print("a_with_b", a_with_b[sort_ind]) + # print("degree_b", seq[indices_b_wo_b_neighbours][sort_ind]) + + # a_shadowing = np.mean(a_with_b) + # std_a_with_b = np.std(a_with_b) + # print("a shadowing: {:f} +- {:f}".format(a_shadowing, std_a_with_b)) + + indices_without_b = self.b == 0 + # N_without_b = np.sum(indices_without_b) + # a_vec_without_b = self.a_num[indices_without_b] + # a_without_b = np.median(a_vec_without_b) + # a_with_b = (self.a_budget - a_without_b * N_without_b) / (N - N_without_b) + + fname = create_name("shadowing", l, self.a_budget, np.sum(self.b), np.sum(self.mask_b)) + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + print("Data loaded from " + fname) + best_X, best_a = data['best_X'], data['best_a'] + + except FileNotFoundError: + def compute_x(a_shadow): + a_vec = np.zeros(self.N) + a_vec[self.mask_b] = a_shadow + a_vec[indices_without_b] = (self.a_budget - a_shadow * self.N_b) / (self.N - self.N_b) + X, _ = self.compute_x(a_vec) + return X, a_vec + + a_low, a_high = 0, self.a_budget / self.N_b + i, best_X, best_a = binary_search(compute_x, a_low, a_high, verbose=verbose or self.verbose) + + data = {'best_X': best_X, 'best_a': best_a} + print("i", i, "Saving model in " + fname) + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + + # self.a_shadowing = a_with_b + # self.a[np.logical_not(indices_without_b)] = a_with_b + # self.a[indices_without_b] = a_without_b + # assert a_shadowing > 0 + # self.a = self.a * self.a_budget / np.sum(self.a) + # print("a_with_b", a_with_b, "a_without_b", a_without_b) + # a_rest = (self.a_budget - best_a * N_with_b) / (self.N - N_with_b) + # if a_rest < 0: + # a_rest = 0 + # best_a = self.a_budget / N_with_b + # best_X = compute_x(best_a) + + a_vec = np.zeros(self.N) + a_vec[self.mask_b] = best_a + a_vec[indices_without_b] = (self.a_budget - best_a * self.N_b) / (self.N - self.N_b) + if True: # self.verbose or verbose: + print("X_shadow_cont_num {:.4f}".format(best_X), "a_shadowing", best_a, "a_rest", + a_vec[np.logical_not(self.mask_b)][0]) + + self.a_shadowing_cont = a_vec + assert np.isclose(np.sum(a_vec), self.a_budget), "{:f} {:f}".format(np.sum(a_vec), self.a_budget) + return best_X + + def build_shadowing_disc(self, l, verbose=False): + if self.X_shadow_disc is None: + if self.a_budget >= 0.9 * np.sum(self.b): + a_vec = self.b * self.a_budget / np.sum(self.b) + else: + indices_not_b = np.arange(self.N)[self.b == 0] + indices = random.sample(list(indices_not_b), self.N_b) + + a_vec = np.zeros_like(self.b) + a_vec[indices] = self.b[self.mask_b][0] * self.a_budget / np.sum(self.b) + + self.X_shadow_disc, _ = self.compute_x(a_vec) + if verbose or self.verbose: + print("{:<18s}{:f}".format("X_imitation", self.X_shadow_disc)) + return self.X_shadow_disc + + def build_shielding_cont(self, l, shadow_strat=None, verbose=False): + assert self.b_allocation == "discrete", "Shielding only implemented for discrete bs" + + mask_b_neighbours = np.logical_and(np.sum(self.W[self.mask_b], axis=0) > 0, np.logical_not(self.mask_b)) + mask_rest = np.logical_not(np.logical_or(self.mask_b, mask_b_neighbours)) + # print("N neighbours", np.sum(mask_b_neighbours)) + N_b = np.sum(self.mask_b) + N_b_neighbours = np.sum(mask_b_neighbours) + N_rest = np.sum(mask_rest) + assert N_b + N_b_neighbours + N_rest == self.N + + if type(shadow_strat) == np.ndarray: + type_of_experiment = "shielding_nnum" + a_ini = shadow_strat + elif shadow_strat == "first order": + a_ini = compute_a_analytical_small_budget(self.seq, self.b, self.a_budget / self.N, np.sum(self.b) / self.N) + type_of_experiment = "shielding" + elif shadow_strat == "grid": + type_of_experiment = "shielding_grid" + else: + raise Exception("Initialisation of shielding cont '{:s}' not understood.".format(shadow_strat)) + + fname = create_name(type_of_experiment, l, self.a_budget, np.sum(self.b), N_b) + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + # print("Data loaded from " + fname) + best_X, best_a = data['best_X'], data['best_a'] + + except FileNotFoundError: + if type(shadow_strat) == str: + # TODO: implement proper search in 2D + raise Exception("Work (not) in progress.") + + def compute_x(a_shadowing, a_shielding): + a_vec = np.zeros_like(self.b) + a_vec[self.mask_b] = a_shadowing + a_vec[mask_b_neighbours] = a_shielding + a_rest = (self.a_budget - a_shadowing * N_b - a_shielding * N_b_neighbours) / N_rest + a_vec[mask_rest] = a_rest + X, _ = self.compute_x(a_vec) + return X, a_rest + + def compute_Xs(a_shadows, a_shieldings): + return np.array( + [[compute_x(a_shadow, a_shield)[0] for a_shield in a_shieldings] for a_shadow in a_shadows]) + + a_shadows = (0, 5) + a_shieldings = (0, 5) + Xs = compute_Xs(a_shadows, a_shieldings) + diff = 10 + i = 0 + while diff > 1e-6: + new_a = (np.sum(a_shadows) / 2, np.sum(a_shieldings) / 2) + new_X, a_rest = compute_x(new_a[0], new_a[1]) + + if Xs[0, 0] > Xs[0, 1] and Xs[0, 0] > Xs[1, 0]: + a_shadows[1] = new_a[0] + a_shieldings[1] = new_a[1] + Xs[1, 1] + else: + X_high = new_X + a_high = new_a + # diff = a_high - a_low + i += 1 + # best_a, best_X = a_values, new_X + if np.isclose(new_a, 0) or np.isclose(new_a, 5): + raise Exception("SHIELDING OUT OF RANGE LIMIT") + else: + def compute_x(a_shielding): + a_vec = np.copy(a_ini) + a_vec[mask_b_neighbours] = a_shielding + a_vec = a_vec / np.sum(a_vec) * self.a_budget + X, _ = self.compute_x(a_vec) + return X, (a_vec[self.mask_b][0], a_vec[mask_b_neighbours][0], a_vec[mask_rest][0]) + + a_low, a_high = 0, 30 + i, best_X, best_a = binary_search(compute_x, a_low, a_high, verbose=verbose or self.verbose) + if np.isclose(best_a, a_high, atol=1e-3): + raise Exception("SHIELDING OUT OF RANGE LIMIT") + + data = {'best_X': best_X, 'best_a': best_a} + print("i", i, "Saving model in " + fname) + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + if self.verbose or verbose: + print("X_shield_cont {:.4f}".format(best_X), "a_shadowing", best_a[0], "a_shielding", best_a[1], + "a_rest", best_a[2]) + + return best_X + + def build_shielding_disc(self, l, verbose=False): + assert self.b_allocation == "discrete", "Shielding only implemented for discrete bs" + + fname = create_name("shielding_disc", l, self.a_budget, np.sum(self.b), np.sum(self.b > 0)) + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + # print("Data loaded from " + fname) + X, a_vec = data['best_X'], data['best_a'] + + except FileNotFoundError: + N_b, N_b_neighbours, N_rest = np.sum(self.mask_b), np.sum(self.mask_b_neighbours), np.sum(self.mask_rest) + + indices_neighbours = np.arange(self.N)[self.mask_b_neighbours] + indices_rest = np.arange(self.N)[self.mask_rest] + if self.a_budget >= 0.9 * np.sum(self.b): + if N_b < N_b_neighbours: + # TODO: introduce randomness if >1 nodes have the same number of neighbours + sort_ind = np.argsort(np.sum(self.W[self.mask_b], axis=0)[self.mask_b_neighbours])[::-1] + indices_a = indices_neighbours[sort_ind][:N_b] + elif N_b == N_b_neighbours: + indices_a = indices_neighbours + else: + assert N_b < self.N / 2 + indices_a = np.append(indices_neighbours, random.sample(list(indices_rest), N_b - N_b_neighbours)) + else: + if N_b < N_rest: + indices_a = random.sample(list(indices_rest), N_b) + elif N_b == N_rest: + indices_a = indices_rest + else: + assert N_b < self.N / 2 + # TODO: introduce randomness if >1 nodes have the same number of neighbours + sort_ind = np.argsort(np.sum(self.W[self.mask_b], axis=0)[self.mask_b_neighbours]) + indices_a = np.append(indices_rest, indices_neighbours[sort_ind][:N_b - N_rest]) + assert N_b == len(indices_a), str(N_b) + " != " + str(len(indices_a)) + + gain = self.b[self.mask_b][0] + a_vec = np.zeros_like(self.b) + a_vec[indices_a] = gain * self.a_budget / np.sum(self.b) + X, _ = self.compute_x(a_vec) + + data = {'best_X': X, 'best_a': a_vec} + print("N_neighbours", N_b_neighbours, "Saving model in " + fname) + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + + # print("a_shadowing", best_a[0], "a_shielding", best_a[1], "a_rest", best_a[2]) + return X + + def build_high_degree_cont(self, l, verbose=False): + fname = create_name("high_degree_cont", l, self.a_budget, np.sum(self.b), np.sum(self.b > 0)) + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + # print("Data loaded from " + fname) + best_X, best_a = data['best_X'], data['best_a'] + + except FileNotFoundError: + def compute_x(a_slope): + a_vec = np.array([a_slope * k for k in self.seq]) + a_vec += (self.a_budget - np.sum(a_vec)) / self.N + + while np.any(a_vec < 0): + broken_nodes = a_vec <= 0 + a_vec += (self.a_budget - np.sum(a_vec[a_vec > 0])) / np.sum(a_vec > 0) + a_vec[broken_nodes] = 0 + + assert np.isclose(np.sum(a_vec), self.a_budget), str(np.sum(a_vec)) + " " + str(self.a_budget) + X, _ = self.compute_x(a_vec) + return X, a_slope + + sort_deg = np.sort(np.unique(self.seq)) + a_low = - self.a_budget / np.sum(self.seq == sort_deg[0]) / (sort_deg[1] - sort_deg[0]) + a_high = self.a_budget / np.sum(self.seq == sort_deg[-1]) / (sort_deg[-1] - sort_deg[-2]) + i, best_X, best_a = binary_search(compute_x, a_low, a_high) + + data = {'best_X': best_X, 'best_a': best_a} + print("i", i, "Saving model in " + fname) + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + if self.verbose or verbose: + print("X_shield_cont {:.4f}".format(best_X), "a_shadowing", best_a[0], "a_shielding", best_a[1], + "a_rest", best_a[2]) + + return best_X + + def build_high_degree_disc(self, verbose=False): + if self.X_degree_disc is None: + def get_X_degree_disc(end): + if end == "high": + sorted_indices = np.argsort(self.seq)[::-1] + d_star = self.seq[sorted_indices][self.N_b - 1] + chosen_indices = sorted_indices[self.seq[sorted_indices] > d_star] + elif end == "low": + sorted_indices = np.argsort(self.seq) + d_star = self.seq[sorted_indices][self.N_b - 1] + chosen_indices = sorted_indices[self.seq[sorted_indices] < d_star] + else: + raise Exception("end {:s} not understood.".format(end)) + + chosen_indices = np.append(chosen_indices, random.sample( + list(sorted_indices[self.seq[sorted_indices] == d_star]), self.N_b - len(chosen_indices))) + a_degree = np.zeros(self.N) + a_degree[chosen_indices] = self.a_budget / self.N_b + X, _ = self.compute_x(a_degree) + return X + + X_high = get_X_degree_disc("high") + X_low = get_X_degree_disc("low") + if X_high > X_low: + self.X_degree_disc = X_high + else: + print("Low degree (fully avoidance) present!") + self.X_degree_disc = X_low + return self.X_degree_disc + + def compute_x(self, a): + if len(a.shape) == 1: + a = a[:, None] + if len(self.b.shape) == 1: + b = self.b[:, None] + else: + b = self.b + inv_Lab = np.linalg.inv(self.L + np.diagflat(a + b)) + x = np.array(np.matmul(inv_Lab, a).T) + X = np.sum(x) / self.N + + return X, x[0, :] + + +def print_X_gap(ax, pars, print_variable="allocations"): + n_nets = pars['n_nets'] + + n_disc = 5 + disc_strats = ["random", "high disc", "shadow disc", "shield disc", "opt disc"] + cont_strats = ["opt cont", "uniform", "high cont", "shadow cont", "shield cont num", "first order", + "shield cont"] + n_cont = 5 + Xs = {name: np.zeros(pars['n_nets']) for name in disc_strats + cont_strats[:n_cont]} + NAMES = {"high disc": "deg", "shadow disc": "shadw", "shield disc": "shield", "opt disc": "opt", "random": "rand", + "high cont": "deg", "uniform": "unif", "first order": "shadw", "shield cont": "shield\nfo", + "shield cont num": "shadw\nshield", "opt cont": "opt", "shadow cont": "shadw"} + + _, _, _, Xs_opt_cont, _, _, _, Xs_opt_disc, _, nets = load_data(pars) + print("b gain", np.max(nets[0].b)) + + for l in range(n_nets): + print("Network", l) + model = Constructor(np.sum(nets[l].a), nets[l].b[:, 0], nets[l].W.toarray(), Xs_opt_disc[l], Xs_opt_cont[l]) + for strat in Xs.keys(): + Xs[strat][l] = model.build_strategy(strat, l) + + print("X_opt_cont", np.mean(Xs["opt cont"]), "+-", np.std(Xs["opt cont"]) / np.sqrt(n_nets)) + print("X_opt_disc", np.mean(Xs["opt disc"]), "+-", np.std(Xs["opt disc"]) / np.sqrt(n_nets)) + print("X_shadow_shield", np.mean(Xs["shield cont num"]), "+-", np.std(Xs["shield cont num"]) / np.sqrt(n_nets)) + print("") + + x_axis = range(len(Xs) - 2) # -2 because of the opt + norm = 1 # np.mean(Xs["opt cont"] - Xs["random"]) + y_axis = [np.mean(Xs["opt disc"] - Xs[strat]) / norm for strat in disc_strats[:-1]] + y_axis += [np.mean(Xs["opt cont"] - Xs[strat]) / norm for strat in cont_strats[1:n_cont]] + y_err = [np.std(Xs["opt disc"] - Xs[strat]) / np.sqrt(n_nets) / norm for strat in disc_strats[:-1]] + y_err += [np.std(Xs["opt cont"] - Xs[strat]) / np.sqrt(n_nets) / norm for strat in cont_strats[1:n_cont]] + x_labels = [NAMES[strat] for strat in disc_strats[:-1] + cont_strats[1:n_cont]] + + print(x_labels, "\n", y_axis, "\n", y_err) + + bars = ax.bar(x_axis, y_axis, yerr=y_err, color=[DISCRETE_COLOR] * (len(disc_strats) - 1) + ["orange"] * n_cont, + width=0.6, log=True) # , tick_label=x_labels) + + def autolabel(rects): + for i, rect in enumerate(rects): + ax.annotate('{}'.format(x_labels[i]), xy=(rect.get_x() + rect.get_width() / 2, rect.get_height()), + textcoords="offset points", ha='center', va='bottom', xytext=(0, 3)) # 3 pt vertical offset + + autolabel(bars) + ax.xaxis.set(ticks=[], ticklabels=[]) + + if len(pars['multiaxesarray']) > 1: + ax.set(ylabel=r"$X^{\mathrm{opt}} - X\quad(N=" + "{:d})$".format(pars['N_allocations'])) + else: + ax.set(ylabel=r"Vote share gap to optimal, $\Delta X$") # X^{\mathrm{opt\,cont}} - X^{\mathrm{heur}}$") + + ax.set(title=r"$\mathcal{B}_a/\mathcal{B}_b = " + str(1 / pars['bmul']) + "$") + ax.yaxis.grid() + ax.margins(x=0.03) + # if pars['N_allocations'] == 256: + if pars['network'] == "email": + ax.set(ylim=[5e-4, 5e-1]) # 4e-2]) + elif pars['network'] == "ba": + ax.set(ylim=[1e-4, 5e-1]) # 4e-2]) + elif pars['network'] == "conf": + ax.set(ylim=[2e-4, 5e-1]) # 4e-2]) + elif pars['network'] == "advogato": + ax.set(ylim=[2e-4, 6e-1]) + elif pars['network'] == "classroom": + ax.set(ylim=[9e-5, 5e-1]) + + if pars[pars['axespar']] == pars['axesarray'][0]: # [-1]: # and pars[pars['multiaxespar']] == pars['multiaxesarray'][0]: + # if pars[pars['axespar']] == pars['axesarray'][0]: # and pars[pars['multiaxespar']] == pars['multiaxesarray'][0]: + from matplotlib.patches import Patch + legends = [ + Patch(facecolor=DISCRETE_COLOR, label="discrete"), + Patch(facecolor="orange", label="continuous") + ] + ax.legend(handles=legends) + + return Xs + + +def print_performance_iters(ax, pars, print_variable="allocations"): + assert pars['debug'] + n_nets = pars['n_nets'] + + disc_strats = ["high disc", "shadow disc", "shield disc", "opt disc"] + cont_strats = ["uniform", "high cont", "shadow cont", "shield cont num", "opt cont"] + strats = disc_strats + cont_strats + Xs = {name: np.zeros(pars['n_nets']) for name in disc_strats + cont_strats} + NAMES = {"high disc": "degree", "shadow disc": "shadowing", "shield disc": "shielding", "opt disc": "optimal", + "random": "random", + "high cont": "degree", "uniform": "uniform", "first order": "shadowing", "shield cont": "shield\nfo", + "shield cont num": "shadow shield", "opt cont": "opt", "shadow cont": "shadowing"} + + _, _, _, Xs_opt_cont, _, _, _, Xs_opt_disc, _, nets = load_data(pars) + print("b gain", np.max(nets[0].b)) + + for l, net in enumerate(nets): + print("Network", l) + model = Constructor(np.sum(net.a), net.b[:, 0], net.W.toarray(), Xs_opt_disc[l], Xs_opt_cont[l], seed=net.seed) + for strat in Xs.keys(): + Xs[strat][l] = model.build_strategy(strat, l) + + print("X_opt_cont", np.mean(Xs["opt cont"]), "+-", np.std(Xs["opt cont"]) / np.sqrt(n_nets)) + print("X_opt_disc", np.mean(Xs["opt disc"]), "+-", np.std(Xs["opt disc"]) / np.sqrt(n_nets)) + print("X_shadow_shield", np.mean(Xs["shield cont num"]), "+-", np.std(Xs["shield cont num"]) / np.sqrt(n_nets)) + print("") + # print("X random", Xs["random"]) + # print("X ini", pars['Xs_v_iters'][:, 0]) + + # norm = 1 # np.mean(Xs["opt cont"] - Xs["random"]) + # y_axis = [np.mean(Xs["opt disc"] - Xs[strat]) / norm for strat in disc_strats[:-1]] + # y_err = [np.std(Xs["opt disc"] - Xs[strat]) / np.sqrt(n_nets) / norm for strat in disc_strats[:-1]] + + its = {strat: [np.argmax(np.logical_or(pars['Xs_v_iters'][l] > X_strat, np.isclose(pars['Xs_v_iters'][l], X_strat))) + for l, X_strat in enumerate(Xs[strat])] for strat in strats} + print(its) + y_axis = [np.mean(its[strat]) for strat in strats] + y_err = [np.std(its[strat]) for strat in strats] + x_labels = [NAMES[strat] for strat in strats] + x_axis = range(len(y_axis)) + print(x_labels, "\n", y_axis, "\n", y_err) + + bars = ax.barh(x_axis[::-1], y_axis, xerr=y_err, height=0.6, log=True, + color=[DISCRETE_COLOR] * len(disc_strats) + ["orange"] * len(cont_strats), tick_label=x_labels) + + def autolabel(rects): + for i, rect in enumerate(rects): + ax.annotate('{}'.format(x_labels[i]), + xy=(rect.get_width() + y_err[i], rect.get_y() + rect.get_height() / 2), + textcoords="offset points", ha='left', va='center', xytext=(3, 0)) # 5 pt horizontal offset + + autolabel(bars) + ax.yaxis.set(ticks=[], ticklabels=[]) + + if len(pars['multiaxesarray']) > 1: + ax.set(xlabel=r"$X^{\mathrm{opt}} - X\quad(N=" + "{:d})$".format(pars['N_allocations'])) + else: + ax.set(xlabel=r"Iteratios of GA for higher $X$") # X^{\mathrm{opt\,cont}} - X^{\mathrm{heur}}$") + + ax.set(title=r"$\mathcal{B}_a/\mathcal{B}_b = " + str(1 / pars['bmul']) + "$") + ax.xaxis.grid() + ax.margins(y=0.03) + # if pars['N_allocations'] == 256: + if pars['network'] == "email": + ax.set(xlim=[3e-1, 1e3]) # 4e-2]) + # elif pars['network'] == "ba": + # ax.set(ylim=[1e-4, 5e-1]) # 4e-2]) + # if pars['network'] == "conf": + # ax.set(ylim=[2e-4, 5e-1]) # 4e-2]) + + if pars[pars['axespar']] == pars['axesarray'][-2]: # and pars[pars['multiaxespar']] == pars['multiaxesarray'][0]: + from matplotlib.patches import Patch + legends = [ + Patch(facecolor=DISCRETE_COLOR, label="discrete"), + Patch(facecolor="orange", label="continuous") + ] + ax.legend(handles=legends, loc="upper right") + + +def print_shadshield_vs_opt(ax, pars, print_variable="allocations"): + n_nets = pars['n_nets'] + + n_disc = 5 + disc_strats = ["random", "high disc", "shadow disc", "shield disc", "opt disc"] + cont_strats = ["opt cont", "uniform", "high cont", "shadow cont", "shield cont num", "first order", + "shield cont"] + n_cont = 5 + Xs = {name: np.zeros(pars['n_nets']) for name in disc_strats + cont_strats[:n_cont]} + NAMES = {"high disc": "deg", "shadow disc": "shadw", "shield disc": "shield", "opt disc": "opt", "random": "rand", + "high cont": "deg", "uniform": "unif", "first order": "shadw", "shield cont": "shield\nfo", + "shield cont num": "shadw\nshield", "opt cont": "opt", "shadow cont": "shadw"} + + _, _, _, Xs_opt_cont, _, _, _, Xs_opt_disc, _, nets = load_data(pars) + print("b gain", np.max(nets[0].b)) + + for l in range(n_nets): + print("Network", l) + model = Constructor(np.sum(nets[l].a), nets[l].b[:, 0], nets[l].W.toarray(), Xs_opt_disc[l], Xs_opt_cont[l]) + for strat in Xs.keys(): + Xs[strat][l] = model.build_strategy(strat, l) + + print("X_opt_cont", np.mean(Xs["opt cont"]), "+-", np.std(Xs["opt cont"])) + print("X_opt_disc", np.mean(Xs["opt disc"]), "+-", np.std(Xs["opt disc"])) + print("") + + x_axis = range(len(Xs) - 2) # -2 because of the opt + norm = 1 # np.mean(Xs["opt cont"] - Xs["random"]) + y_axis = [np.mean(Xs["opt disc"] - Xs[strat]) / norm for strat in disc_strats[:-1]] + y_axis += [np.mean(Xs["opt cont"] - Xs[strat]) / norm for strat in cont_strats[1:n_cont]] + y_err = [np.std(Xs["opt disc"] - Xs[strat]) / np.sqrt(n_nets) / norm for strat in disc_strats[:-1]] + y_err += [np.std(Xs["opt cont"] - Xs[strat]) / np.sqrt(n_nets) / norm for strat in cont_strats[1:n_cont]] + x_labels = [NAMES[strat] for strat in disc_strats[:-1] + cont_strats[1:n_cont]] + + print(x_labels, "\n", y_axis, "\n", y_err) + + +def print_evolution(ax, pars, print_variable="allocations"): + disc_strats = ["high disc", "shadow disc", "shield disc", "opt disc"] + cont_strats = ["opt cont", "high cont", "first order", "shield cont num", "uniform", "shadow cont", + "shield cont"] + n_cont = 5 + Xs = {name: np.zeros((len(pars['axisarray']), pars['n_nets'])) for name in disc_strats + cont_strats[:n_cont]} + NAMES = {"high disc": "hub disc", "shadow disc": "shadow disc", "shield disc": "shield disc", + "opt disc": "opt disc", "high cont": "hub cont", "uniform": "max ent", "first order": "shadow cont", + "shield cont": "shield cont", "shield cont num": "shield cont", "opt cont": "opt cont"} + + for i, val in enumerate(create_range(pars)): + print("\n", pars['axispar'], i, val) + + _, _, _, Xs_opt_cont, _, _, _, Xs_opt_disc, _, nets = load_data(pars) + print("b gain", np.max(nets[0].b)) + assert pars['network'] == "email", "Strategies implemented for email network only!" + + for l in range(pars['n_nets']): + print("Network", l) + model = Constructor(np.sum(nets[l].a), nets[l].b[:, 0], nets[l].G, Xs_opt_disc[l], Xs_opt_cont[l]) + for strat in Xs.keys(): + Xs[strat][i, l] = model.build_strategy(strat, l) + + # [print(names[i], np.mean(comparison_list[i]), "+-", np.std(comparison_list[i])) for i in + print("X_opt_cont", np.mean(Xs["opt cont"], axis=1), "+-", np.std(Xs["opt cont"], axis=1)) + print("") + [print(NAMES[strat], np.mean(Xs["opt cont"] - Xs[strat], axis=1), "+-", np.std(Xs["opt cont"] - Xs[strat], axis=1)) + for strat in Xs.keys()] + + axis_vec = pars['axisarray'] + linewidth = 1 + markers, linestyles = ["s", "v", "^", "*"][::-1], ["-", "--", "-.", ":"] + color_dist = plt.cm.get_cmap("winter")(np.linspace(0, 0.9, len(disc_strats))) + color_cont = plt.cm.get_cmap("autumn")(np.linspace(0, 0.9, n_cont - 1)) + + if print_variable == "allocations": + for k, strat in enumerate(disc_strats): + y_axis = np.mean(Xs["opt cont"] - Xs[strat], axis=1) + y_err = np.std(Xs["opt cont"] - Xs[strat], axis=1) + ax.errorbar(axis_vec, y_axis, yerr=y_err, label=NAMES[strat], linewidth=linewidth, marker=markers[k], + color=color_dist[k], fillstyle="none", ls=linestyles[0]) # ecolor="k") + for k, strat in enumerate(cont_strats[1:n_cont]): + y_axis = np.mean(Xs["opt cont"] - Xs[strat], axis=1) + y_err = np.std(Xs["opt cont"] - Xs[strat], axis=1) + ax.errorbar(axis_vec, y_axis, yerr=y_err, label=NAMES[strat], linewidth=linewidth, + marker=markers[k], color=color_cont[k], fillstyle="none", ls=linestyles[1]) # , ecolor="k") + + ax.set_yscale("log") + ax.set(ylabel=r"Gap to optimal, $X^{opt} - X$", + title=r"$\mathcal{B}_a/\mathcal{B}_b = " + str(1 / pars['bmul']) + "$", + ylim=[2e-5, 6e-1]) + ax.yaxis.grid() + ax.legend(ncol=2) # loc="right") + else: + raise ValueError("Print variable '" + print_variable + "' not understood.") + + ax.set(xlabel=r'N of B-targeted nodes (discrete)') + ax.set_xscale("log") + + # ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # if print_variable == 'allocations': + # ax.legend(ncol=2) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def result_constructive(network, end, n_nets=1, min_iters_since_change=100, figsize=(3, 2.5), **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'end': end, # 'N_allocations': 256, # 'bmul': 100, + 'axespar': 'bmul', 'axesarray': [0.1, 1, 10], + 'multiaxespar': None, 'multiaxesarray': [None], 'N_allocations': 16, + # 'multiaxespar': "N_allocations", 'multiaxesarray': [32], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 22660, 'min_iters_since_change': min_iters_since_change, + 'initial_a': 'random_disc', + 'add_continuous': True, 'iters': 60000, 'lrate': 50, + } + for key, val in kwargs.items(): + pars[key] = val + + pars = complete_hyper_params(pars) + + axes, outs = print_multi_axes(pars, print_X_gap, figsize=figsize, sharey=True, letter_labels=True) + # print_multi_axes(pars, print_performance_iters, figsize=(3, 2.5), sharey=True, letter_labels=True) + # print_multi_axes(pars, print_shadshield_vs_opt) + + # plotname = create_name("plot", _, a_budget, a_budget * pars['bmul']) + # + # fig.tight_layout() + # fig.savefig(plotname) + # print("\nFigure saved in " + plotname) + # fig.show() + + return outs + + +def result_evolution(): + pars = { + # Experiment setting + 'network': 'email', 'n_nets': 15, 'seed': 5, + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'end': 'middle', # 'N_allocations': 256, # 'bmul': 100, + 'axispar': 'N_allocations', 'axisarray': [4, 8, 16, 32, 64, 128, 256], + 'axespar': 'bmul', 'axesarray': [0.1, 1, 10], + 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 200, 'min_iters_since_change': 100, 'initial_a': 'random', + 'add_continuous': True, 'iters': 60000, 'lrate': 50, + } + + print_multi_axes(pars, print_evolution, figsize=(4.5, 3.75)) + + +if __name__ == "__main__": + hyper_pars = { + "network": "email", + # "network": "random", "p": 0.01, + # "network": "ba", "m": 5, + # "network": "conf", "gamma": 3, 'dmin':5, + # "network": "advogato", + # "network": "classroom", + "end": "middle", # "low" + # "end": "periphery", + # "initial_a_disc": "cont", + "N": 1133, + 'debug': False, + } + + result_constructive(figsize=(2.5, 2.5), **hyper_pars) + # result_evolution() + + if False: + outs = result_constructive(**hyper_pars) + + d = main_text() + d["fig6"] = {letter: {key: val.tolist() for key, val in out.items()} for letter, out in + zip(["6a", "6b", "6c"], outs)} + json.dump(d, open(DATA_PATH + "minimal_data_set.json", "w")) diff --git a/datasets/classroom/Friendship-network_data_2013.csv b/datasets/classroom/Friendship-network_data_2013.csv new file mode 100644 index 0000000000000000000000000000000000000000..4cfc91f86057ae90e8ffbe931b2c637314f906bb --- /dev/null +++ b/datasets/classroom/Friendship-network_data_2013.csv @@ -0,0 +1,668 @@ +1 55 +1 205 +1 272 +1 494 +1 779 +1 894 +3 1 +3 28 +3 147 +3 272 +3 407 +3 674 +3 884 +27 63 +27 173 +28 202 +28 327 +28 353 +28 407 +28 429 +28 441 +28 492 +28 545 +32 440 +32 624 +32 797 +32 920 +34 151 +34 277 +34 502 +34 866 +45 48 +45 79 +45 335 +45 496 +45 601 +45 674 +45 765 +46 117 +46 196 +46 257 +46 268 +48 45 +48 79 +48 496 +55 1 +55 170 +55 205 +55 252 +55 272 +55 779 +55 883 +55 894 +61 797 +63 27 +63 125 +63 173 +70 101 +70 132 +70 240 +70 425 +70 447 +72 407 +72 674 +72 857 +79 45 +79 48 +79 335 +79 496 +79 601 +79 674 +79 765 +80 120 +80 285 +80 468 +80 601 +85 190 +85 213 +85 214 +85 335 +85 603 +85 605 +85 765 +92 468 +92 845 +101 70 +101 119 +101 122 +101 132 +101 240 +101 343 +101 364 +101 425 +101 447 +117 1 +117 46 +117 196 +117 205 +117 252 +117 257 +117 265 +117 268 +117 272 +117 364 +117 407 +117 465 +117 494 +117 587 +117 883 +117 894 +119 101 +119 122 +119 132 +119 240 +119 425 +119 447 +120 80 +120 285 +120 488 +122 101 +122 119 +122 255 +122 425 +122 447 +124 471 +124 970 +125 92 +125 248 +125 325 +125 468 +125 491 +125 622 +125 624 +125 797 +125 960 +132 70 +132 101 +132 119 +132 122 +132 240 +132 425 +132 447 +134 388 +134 492 +134 496 +147 1 +147 3 +147 28 +147 72 +147 184 +147 272 +147 353 +147 407 +147 674 +147 884 +151 34 +151 38 +151 201 +151 277 +151 452 +151 502 +151 634 +151 642 +151 691 +151 694 +151 753 +151 866 +151 869 +156 694 +159 38 +159 642 +165 498 +170 1 +170 55 +170 205 +170 779 +170 883 +170 894 +173 27 +173 63 +173 1332 +184 327 +184 429 +184 441 +190 85 +190 213 +190 214 +190 272 +196 46 +196 117 +196 252 +196 268 +196 364 +200 480 +200 845 +201 34 +201 38 +201 245 +201 502 +201 642 +201 691 +201 753 +201 869 +202 28 +202 170 +202 407 +202 545 +202 883 +205 1 +205 55 +205 117 +205 170 +205 265 +205 272 +205 494 +205 587 +205 691 +205 779 +205 883 +205 894 +211 242 +211 468 +211 845 +213 190 +213 214 +214 190 +214 213 +214 603 +219 605 +222 248 +222 343 +222 867 +232 492 +232 798 +240 70 +240 101 +240 119 +240 132 +240 327 +240 425 +240 447 +242 211 +242 468 +242 845 +245 325 +245 440 +245 634 +245 691 +245 753 +245 869 +245 959 +248 222 +248 564 +248 694 +252 55 +252 117 +252 196 +252 265 +252 272 +252 364 +252 779 +255 275 +257 46 +257 268 +257 364 +265 117 +265 170 +265 196 +265 205 +265 252 +265 494 +265 587 +265 883 +265 894 +268 46 +268 117 +268 196 +268 257 +268 364 +272 1 +272 55 +272 170 +272 190 +272 205 +272 214 +272 441 +272 494 +272 587 +272 779 +272 883 +275 255 +275 312 +275 612 +277 34 +277 151 +277 502 +277 634 +277 691 +277 866 +285 80 +285 120 +285 232 +285 488 +285 492 +312 275 +312 612 +325 125 +325 245 +325 622 +325 624 +325 769 +325 797 +325 959 +327 27 +327 28 +327 119 +327 184 +327 353 +327 407 +327 429 +327 441 +335 45 +335 79 +335 765 +343 101 +343 222 +343 867 +353 28 +353 46 +353 122 +353 407 +353 425 +364 117 +364 196 +364 252 +364 257 +364 268 +366 974 +388 45 +388 79 +388 134 +388 335 +388 492 +388 496 +388 603 +388 765 +407 3 +407 28 +407 72 +407 147 +407 184 +407 202 +407 327 +407 353 +407 429 +407 441 +407 545 +407 674 +407 884 +425 70 +425 101 +425 119 +425 122 +425 132 +425 240 +425 343 +425 353 +425 441 +425 447 +429 28 +429 119 +429 184 +429 327 +429 353 +429 407 +429 441 +440 32 +440 245 +440 605 +440 797 +440 920 +441 28 +441 184 +441 272 +441 327 +441 407 +441 429 +441 447 +447 70 +447 101 +447 119 +447 122 +447 132 +447 240 +447 425 +447 441 +452 85 +452 634 +452 691 +452 869 +452 1332 +465 486 +465 531 +465 857 +468 80 +468 92 +468 125 +468 211 +468 242 +468 601 +468 845 +471 124 +471 970 +480 200 +480 771 +486 465 +486 531 +488 48 +488 120 +488 285 +491 219 +491 520 +491 576 +491 605 +492 28 +492 120 +492 134 +492 232 +492 285 +492 388 +492 447 +492 488 +492 496 +494 1 +494 117 +494 205 +494 265 +494 272 +494 587 +494 883 +494 894 +496 45 +496 48 +496 79 +496 85 +496 134 +496 388 +496 492 +496 603 +498 165 +498 857 +502 151 +502 277 +502 691 +502 866 +502 869 +520 219 +520 491 +520 576 +520 605 +531 465 +531 486 +531 691 +545 28 +545 202 +545 407 +564 577 +564 694 +576 219 +576 491 +576 520 +576 605 +577 564 +577 694 +587 117 +587 265 +587 272 +587 494 +587 883 +601 45 +601 79 +601 80 +601 134 +601 200 +601 388 +601 603 +603 85 +603 214 +603 335 +603 388 +603 496 +603 765 +605 85 +605 201 +605 219 +605 520 +605 576 +612 275 +612 312 +622 125 +622 452 +622 624 +622 769 +622 797 +622 798 +622 959 +622 960 +624 125 +624 245 +624 325 +624 452 +624 491 +624 622 +624 769 +624 797 +624 798 +624 960 +634 691 +634 869 +634 1332 +642 151 +642 201 +642 452 +642 634 +642 691 +642 866 +642 869 +674 3 +674 45 +674 72 +674 79 +674 147 +674 407 +691 205 +691 245 +691 452 +691 502 +691 531 +691 634 +691 642 +691 869 +691 883 +691 1332 +694 564 +694 577 +753 201 +753 245 +765 45 +765 79 +765 335 +769 125 +769 245 +769 325 +769 452 +769 622 +769 624 +769 797 +769 959 +769 960 +771 200 +771 480 +779 1 +779 48 +779 55 +779 170 +779 205 +779 252 +779 272 +779 883 +779 894 +797 125 +797 325 +797 622 +797 624 +797 959 +798 605 +798 960 +845 80 +845 92 +845 200 +845 211 +845 242 +845 468 +857 55 +857 72 +857 465 +857 498 +857 779 +866 34 +866 151 +866 452 +866 502 +866 634 +866 642 +866 691 +866 753 +866 869 +867 222 +867 343 +869 245 +869 634 +869 691 +869 1332 +883 1 +883 55 +883 117 +883 170 +883 205 +883 252 +883 265 +883 272 +883 494 +883 587 +883 779 +883 894 +883 1401 +884 3 +884 272 +894 1 +894 55 +894 117 +894 170 +894 205 +894 265 +894 272 +894 494 +894 587 +894 779 +894 883 +920 32 +920 440 +920 797 +959 245 +959 325 +959 622 +959 624 +959 769 +959 797 +960 622 +960 798 +970 124 +970 471 +974 366 +974 1485 +1228 642 +1228 1401 +1228 1519 +1332 452 +1332 634 +1332 691 +1332 869 +1332 1401 +1332 1519 +1401 642 +1401 1228 +1401 1332 +1401 1519 +1485 974 +1519 642 +1519 1228 +1519 1332 +1519 1401 +1519 1594 +1519 1828 +1594 1519 +1594 1828 +1828 1519 +1828 1594 diff --git a/datasets/classroom/output.aux b/datasets/classroom/output.aux new file mode 100644 index 0000000000000000000000000000000000000000..9d013521c356123876c2b0dc461043ec6ecbc1d2 --- /dev/null +++ b/datasets/classroom/output.aux @@ -0,0 +1,117 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\@nameuse{bbl@beforestart} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\bibstyle{naturemag-doi} +\providecommand \oddpage@label [2]{} +\babel@aux{english}{} +\citation{massa2009bowling,nr} +\citation{Guimera2003} +\@writefile{toc}{\contentsline {section}{\numberline {1}Details of the network employed}{3}{section.1}\protected@file@percent } +\newlabel{sect:network}{{1}{3}{Details of the network employed}{section.1}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Degree distribution of the studied network.\relax }}{3}{figure.caption.1}\protected@file@percent } +\providecommand*\caption@xref[2]{\@setref\relax\@undefined{#1}} +\newlabel{fig:hist}{{1}{3}{Degree distribution of the studied network.\relax }{figure.caption.1}{}} +\@writefile{toc}{\contentsline {section}{\numberline {2}First-order Taylor expansion of the vote share for small allocations}{3}{section.2}\protected@file@percent } +\newlabel{sect:Taylor_small}{{2}{3}{First-order Taylor expansion of the vote share for small allocations}{section.2}{}} +\newlabel{eq:mfvshare}{{1}{3}{First-order Taylor expansion of the vote share for small allocations}{equation.2.1}{}} +\newlabel{eq:optimisation}{{2}{3}{First-order Taylor expansion of the vote share for small allocations}{equation.2.2}{}} +\newlabel{eq:X_hat}{{5}{3}{First-order Taylor expansion of the vote share for small allocations}{equation.2.5}{}} +\newlabel{eq:half_result}{{6}{3}{First-order Taylor expansion of the vote share for small allocations}{equation.2.6}{}} +\newlabel{eq:small}{{7}{4}{First-order Taylor expansion of the vote share for small allocations}{equation.2.7}{}} +\@writefile{toc}{\contentsline {section}{\numberline {3}Zero-order Taylor expansion of the vote share for large allocations}{4}{section.3}\protected@file@percent } +\newlabel{sect:Taylor_large}{{3}{4}{Zero-order Taylor expansion of the vote share for large allocations}{section.3}{}} +\newlabel{eq:large}{{11}{4}{Zero-order Taylor expansion of the vote share for large allocations}{equation.3.11}{}} +\@writefile{toc}{\contentsline {section}{\numberline {4}Exploitability of a passive controller when deviating from uniform allocation}{4}{section.4}\protected@file@percent } +\newlabel{sect:exploitability}{{4}{4}{Exploitability of a passive controller when deviating from uniform allocation}{section.4}{}} +\newlabel{eq:exploit}{{12}{4}{Exploitability of a passive controller when deviating from uniform allocation}{equation.4.12}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces Increase in vote share $\Delta X$ for an optimal active controller when the passive controller deviates from uniform allocation on nodes with degree $d_n$ with $n=40$ perturbations of size $|1-w_{bi}/\langle \bm {w}_b \rangle |=1$. Error bars represent standard errors over 15 instances of the experiment and are smaller than the symbols. Both controllers hold the same budget $\mathcal {B}=N\langle d\rangle /15$. \relax }}{5}{figure.caption.2}\protected@file@percent } +\newlabel{fig:perturbations}{{2}{5}{Increase in vote share $\Delta X$ for an optimal active controller when the passive controller deviates from uniform allocation on nodes with degree $d_n$ with $n=40$ perturbations of size $|1-w_{bi}/\langle \boldsymbol {w}_b \rangle |=1$. Error bars represent standard errors over 15 instances of the experiment and are smaller than the symbols. Both controllers hold the same budget $\mathcal {B}=N\langle d\rangle /15$. \relax }{figure.caption.2}{}} +\@writefile{toc}{\contentsline {section}{\numberline {5}Comparison of numerical and analytical results for optimal allocations in the continuous regime and budget disadvantage}{5}{section.5}\protected@file@percent } +\newlabel{sect:ana_num}{{5}{5}{Comparison of numerical and analytical results for optimal allocations in the continuous regime and budget disadvantage}{section.5}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces Comparison of analytical and numerical results for optimal influence allocations on the continuous regime. Dependence of optimal allocations $w_{ai}$ on the allocations of a passive controller $w_{bi}$ resolved by classes of nodes of different degrees, indicated by their colour. The active controller is in budget disadvantage, $\mathcal {B}_a/\mathcal {B}_b=0.1$ and the passive controller targets continuously with weights randomly drawn from a uniform distribution. The value of external allocations (shown on top of each panel) are generally lower (\textit {left}), equal (\textit {middle}), or higher (\textit {right}) than node degrees. Numerical results are given by a cloud of points coloured by node degree and analytical results are given by \emph {curves} that correspond to equation \textup {\hbox {\mathsurround \z@ \normalfont (\ignorespaces \ref {eq:small}\unskip \@@italiccorr )}} (\textit {solid}) or equation \textup {\hbox {\mathsurround \z@ \normalfont (\ignorespaces \ref {eq:large}\unskip \@@italiccorr )}} (\textit {dashed}). Lines from $w_{ai}^L$ are also coloured by node degree, while showing only one line every six degrees (i.e. for degrees 1,7,13,...).\relax }}{5}{figure.caption.3}\protected@file@percent } +\newlabel{fig:nodelinearity}{{3}{5}{Comparison of analytical and numerical results for optimal influence allocations on the continuous regime. Dependence of optimal allocations $w_{ai}$ on the allocations of a passive controller $w_{bi}$ resolved by classes of nodes of different degrees, indicated by their colour. The active controller is in budget disadvantage, $\mathcal {B}_a/\mathcal {B}_b=0.1$ and the passive controller targets continuously with weights randomly drawn from a uniform distribution. The value of external allocations (shown on top of each panel) are generally lower (\textit {left}), equal (\textit {middle}), or higher (\textit {right}) than node degrees. Numerical results are given by a cloud of points coloured by node degree and analytical results are given by \emph {curves} that correspond to equation \eqref {eq:small} (\textit {solid}) or equation \eqref {eq:large} (\textit {dashed}). Lines from $w_{ai}^L$ are also coloured by node degree, while showing only one line every six degrees (i.e. for degrees 1,7,13,...).\relax }{figure.caption.3}{}} +\@writefile{toc}{\contentsline {section}{\numberline {6}Shadowing, shielding and hub preferences in the discrete regime}{6}{section.6}\protected@file@percent } +\newlabel{sect:discrete}{{6}{6}{Shadowing, shielding and hub preferences in the discrete regime}{section.6}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces Amount of \textbf {a} shadowing, \textbf {b} shielding, and \textbf {c} degree dependence present in optimal discrete allocations for a range of numbers of nodes $K$ targeted by either controller and different budget ratios $r=\mathcal {B}_a/\mathcal {B}_b$. Error bars represent standard errors over 15 instances of the experiments and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }}{6}{figure.caption.4}\protected@file@percent } +\newlabel{fig:discrete}{{4}{6}{Amount of \textbf {a} shadowing, \textbf {b} shielding, and \textbf {c} degree dependence present in optimal discrete allocations for a range of numbers of nodes $K$ targeted by either controller and different budget ratios $r=\mathcal {B}_a/\mathcal {B}_b$. Error bars represent standard errors over 15 instances of the experiments and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }{figure.caption.4}{}} +\citation{arrow1960stability} +\citation{bervoets2020learning} +\citation{rosen1965existence} +\citation{Dezso2001} +\citation{Bayati2010} +\@writefile{toc}{\contentsline {section}{\numberline {7}Proof of uniqueness of Nash Equilibrium}{7}{section.7}\protected@file@percent } +\newlabel{sect:uniqueness}{{7}{7}{Proof of uniqueness of Nash Equilibrium}{section.7}{}} +\@writefile{toc}{\contentsline {section}{\numberline {8}Numerical results of an iterative approach to finding the Nash Equilibrium}{7}{section.8}\protected@file@percent } +\newlabel{sect:Nash}{{8}{7}{Numerical results of an iterative approach to finding the Nash Equilibrium}{section.8}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Changes in normalised standard deviation of control allocations of an A- controller and a B-controller when dominated strategies are iteratively removed for a setting of budget equality (left) and budget inequality (right). Initial allocations are randomly drawn from a uniform distribution and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }}{7}{figure.caption.5}\protected@file@percent } +\newlabel{fig:Nash}{{5}{7}{Changes in normalised standard deviation of control allocations of an A- controller and a B-controller when dominated strategies are iteratively removed for a setting of budget equality (left) and budget inequality (right). Initial allocations are randomly drawn from a uniform distribution and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }{figure.caption.5}{}} +\@writefile{toc}{\contentsline {section}{\numberline {9}Extension to other network topologies}{7}{section.9}\protected@file@percent } +\newlabel{sect:other_topologies}{{9}{7}{Extension to other network topologies}{section.9}{}} +\citation{Molloy1995} +\citation{Abebe2018} +\@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Statistics of the network employed on the main manuscript (\textit {email interaction}) and the networks employed here for the extension of experiments (\textit {Barabasi-Albert}, \textit {scale-free}).\relax }}{8}{table.caption.6}\protected@file@percent } +\newlabel{tab:topologies}{{1}{8}{Statistics of the network employed on the main manuscript (\textit {email interaction}) and the networks employed here for the extension of experiments (\textit {Barabasi-Albert}, \textit {scale-free}).\relax }{table.caption.6}{}} +\@writefile{toc}{\contentsline {section}{\numberline {10}Proof of concavity}{8}{section.10}\protected@file@percent } +\newlabel{sect:convexity}{{10}{8}{Proof of concavity}{section.10}{}} +\newlabel{fig:profile_email}{{6a}{9}{email\relax }{figure.caption.7}{}} +\newlabel{sub@fig:profile_email}{{a}{9}{email\relax }{figure.caption.7}{}} +\newlabel{fig:enhacement_email}{{6b}{9}{email\relax }{figure.caption.7}{}} +\newlabel{sub@fig:enhacement_email}{{b}{9}{email\relax }{figure.caption.7}{}} +\newlabel{fig:shielding_email}{{6c}{9}{email\relax }{figure.caption.7}{}} +\newlabel{sub@fig:shielding_email}{{c}{9}{email\relax }{figure.caption.7}{}} +\newlabel{fig:profile_ba}{{6d}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{sub@fig:profile_ba}{{d}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{fig:enhacement_ba}{{6e}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{sub@fig:enhacement_ba}{{e}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{fig:shielding_ba}{{6f}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{sub@fig:shielding_ba}{{f}{9}{BA\relax }{figure.caption.7}{}} +\newlabel{fig:profile_conf}{{6g}{9}{scale-free\relax }{figure.caption.7}{}} +\newlabel{sub@fig:profile_conf}{{g}{9}{scale-free\relax }{figure.caption.7}{}} +\newlabel{fig:enhacement_conf}{{6h}{9}{scale-free\relax }{figure.caption.7}{}} +\newlabel{sub@fig:enhacement_conf}{{h}{9}{scale-free\relax }{figure.caption.7}{}} +\newlabel{fig:shielding_conf}{{6i}{9}{scale-free\relax }{figure.caption.7}{}} +\newlabel{sub@fig:shielding_conf}{{i}{9}{scale-free\relax }{figure.caption.7}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces Set of experiments on an email interaction network (\textit {top row}), Barabasi-Albert networks (\textit {middle row}) and scale-free networks (\textit {bottom row}). \textbf {a, d, g} Distribution of optimal influence allocations sorted in descending order when the passive controller discretely targets $K=16$ randomly chosen nodes and both controllers hold the same budget, $\mathcal {B}=N\langle {d}_i\rangle /15$. Allocations are coloured by the allocation group they belong to. \textbf {b, e, h} Percentage enhancement of control by optimal continuous allocations over optimal discrete allocations for varying $K$ (number of nodes $K$ that they target) and budget ratios. \textbf {c, f, i} Average allocations given to each group related to shadowing and shielding with respect to the total average allocation $\langle w_{ai} \rangle $ for different number of nodes $K$ targeted by the opponent and for equal budgets. $\mathbf {T}_b$ is the set of nodes targeted by the passive opponent, $\mathbf {N}_b$ is the set of nodes that are neighbours of the nodes in $\mathbf {T}_b$, and $\mathbf {R}$ comprises the remaining nodes that do not belong to any of the other two groups. Error bars represent standard errors over 15 experiment samples and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }}{9}{figure.caption.7}\protected@file@percent } +\newlabel{fig:extension}{{6}{9}{Set of experiments on an email interaction network (\textit {top row}), Barabasi-Albert networks (\textit {middle row}) and scale-free networks (\textit {bottom row}). \textbf {a, d, g} Distribution of optimal influence allocations sorted in descending order when the passive controller discretely targets $K=16$ randomly chosen nodes and both controllers hold the same budget, $\mathcal {B}=N\langle {d}_i\rangle /15$. Allocations are coloured by the allocation group they belong to. \textbf {b, e, h} Percentage enhancement of control by optimal continuous allocations over optimal discrete allocations for varying $K$ (number of nodes $K$ that they target) and budget ratios. \textbf {c, f, i} Average allocations given to each group related to shadowing and shielding with respect to the total average allocation $\langle w_{ai} \rangle $ for different number of nodes $K$ targeted by the opponent and for equal budgets. $\mathbf {T}_b$ is the set of nodes targeted by the passive opponent, $\mathbf {N}_b$ is the set of nodes that are neighbours of the nodes in $\mathbf {T}_b$, and $\mathbf {R}$ comprises the remaining nodes that do not belong to any of the other two groups. Error bars represent standard errors over 15 experiment samples and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }{figure.caption.7}{}} +\citation{Abebe2018} +\bibdata{sample.bib} +\newlabel{fig:corr_email}{{7a}{10}{email\relax }{figure.caption.8}{}} +\newlabel{sub@fig:corr_email}{{a}{10}{email\relax }{figure.caption.8}{}} +\newlabel{fig:corr_ba}{{7b}{10}{BA\relax }{figure.caption.8}{}} +\newlabel{sub@fig:corr_ba}{{b}{10}{BA\relax }{figure.caption.8}{}} +\newlabel{fig:corr_conf}{{7c}{10}{scale-free\relax }{figure.caption.8}{}} +\newlabel{sub@fig:corr_conf}{{c}{10}{scale-free\relax }{figure.caption.8}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces Kendall rank correlation coefficients $\tau _{wd}$ between allocation strength $w_{ai}$ and node degree $d_i$ in the continuous and discrete regimes and for different $K$ and on \textbf {a} an email network, \textbf {b} Barabasi-Albert networks and \textbf {c} scale-free networks. The active controller targets nodes optimally (\textit {squares}) or following a shielding strategy (\textit {circles}). The passive controller targets random nodes in the network and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$. Error bars represent standard errors over 15 experiment samples.\relax }}{10}{figure.caption.8}\protected@file@percent } +\newlabel{fig:correlations}{{7}{10}{Kendall rank correlation coefficients $\tau _{wd}$ between allocation strength $w_{ai}$ and node degree $d_i$ in the continuous and discrete regimes and for different $K$ and on \textbf {a} an email network, \textbf {b} Barabasi-Albert networks and \textbf {c} scale-free networks. The active controller targets nodes optimally (\textit {squares}) or following a shielding strategy (\textit {circles}). The passive controller targets random nodes in the network and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$. Error bars represent standard errors over 15 experiment samples.\relax }{figure.caption.8}{}} +\@writefile{toc}{\contentsline {section}{\numberline {11}Iterations to optimal IM of the proposed heuristics}{10}{section.11}\protected@file@percent } +\newlabel{sect:iter_perf}{{11}{10}{Iterations to optimal IM of the proposed heuristics}{section.11}{}} +\newlabel{fig:gap_email}{{8a}{11}{email\relax }{figure.caption.9}{}} +\newlabel{sub@fig:gap_email}{{a}{11}{email\relax }{figure.caption.9}{}} +\newlabel{fig:gap_ba}{{8b}{11}{BA\relax }{figure.caption.9}{}} +\newlabel{sub@fig:gap_ba}{{b}{11}{BA\relax }{figure.caption.9}{}} +\newlabel{fig:gap_conf}{{8c}{11}{scale-free\relax }{figure.caption.9}{}} +\newlabel{sub@fig:gap_conf}{{c}{11}{scale-free\relax }{figure.caption.9}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces Comparison of various heuristics to optimal allocations. Bars represent the gap in vote share $\Delta X$ of the heuristics with respect to optimal numerical allocations for three different budget scenarios (as indicated on the top of the panels) and on \textbf {a} an email network, \textbf {b} Barabasi-Albert networks and \textbf {c} scale-free networks. Each bar represents one of the following heuristics: random (\textit {rand}), degree-based (\textit {deg}), shadowing-based (\textit {shadw}), shielding-based (\textit {shield}), uniform targeting (\textit {unif}), combination of shadowing and shielding (\textit {shadw shield}). The passive controller targets $K=16$ nodes in the network in a discrete fashion. Error bars represent standard errors for 15 instances of the experiments and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }}{11}{figure.caption.9}\protected@file@percent } +\newlabel{fig:gaps}{{8}{11}{Comparison of various heuristics to optimal allocations. Bars represent the gap in vote share $\Delta X$ of the heuristics with respect to optimal numerical allocations for three different budget scenarios (as indicated on the top of the panels) and on \textbf {a} an email network, \textbf {b} Barabasi-Albert networks and \textbf {c} scale-free networks. Each bar represents one of the following heuristics: random (\textit {rand}), degree-based (\textit {deg}), shadowing-based (\textit {shadw}), shielding-based (\textit {shield}), uniform targeting (\textit {unif}), combination of shadowing and shielding (\textit {shadw shield}). The passive controller targets $K=16$ nodes in the network in a discrete fashion. Error bars represent standard errors for 15 instances of the experiments and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$.\relax }{figure.caption.9}{}} +\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces Alternative assessment of the proposed heuristics. On the x-axis, the number of iterations of the gradient-ascent algorithm required for obtaining a similar level of performance than the corresponding heuristic. On the y-axis, bars representing one of the following heuristics: degree-based (\textit {degree}), shadowing-based (\textit {shadowing}), shielding-based (\textit {shielding}), uniform targeting (\textit {uniform}), combination of shadowing and shielding (\textit {shadow shield}). The passive controller randomly targets $K=16$ nodes in the network in a discrete fashion and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$. Three budget scenarios are depicted (as indicated on the top of the panels). Error bars represent standard errors for 15 instances of the experiments. The initial allocation of the gradient-ascent algorithm is set at a discrete allocation on $K$ random nodes.\relax }}{12}{figure.caption.10}\protected@file@percent } +\newlabel{fig:perf_iter}{{9}{12}{Alternative assessment of the proposed heuristics. On the x-axis, the number of iterations of the gradient-ascent algorithm required for obtaining a similar level of performance than the corresponding heuristic. On the y-axis, bars representing one of the following heuristics: degree-based (\textit {degree}), shadowing-based (\textit {shadowing}), shielding-based (\textit {shielding}), uniform targeting (\textit {uniform}), combination of shadowing and shielding (\textit {shadow shield}). The passive controller randomly targets $K=16$ nodes in the network in a discrete fashion and the total budget of both controllers sums up to $\mathcal {B}_a+\mathcal {B}_b=N\langle d\rangle /30$. Three budget scenarios are depicted (as indicated on the top of the panels). Error bars represent standard errors for 15 instances of the experiments. The initial allocation of the gradient-ascent algorithm is set at a discrete allocation on $K$ random nodes.\relax }{figure.caption.10}{}} +\newlabel{LastPage}{{}{12}{}{page.12}{}} +\xdef\lastpage@lastpage{12} +\xdef\lastpage@lastpageHy{12} +\ttl@finishall diff --git a/datasets/classroom/output.out b/datasets/classroom/output.out new file mode 100644 index 0000000000000000000000000000000000000000..cd58acec345eef23b1bb9838d0339a9866b921a1 --- /dev/null +++ b/datasets/classroom/output.out @@ -0,0 +1,11 @@ +\BOOKMARK [1][-]{section.1}{Details of the network employed}{}% 1 +\BOOKMARK [1][-]{section.2}{First-order Taylor expansion of the vote share for small allocations}{}% 2 +\BOOKMARK [1][-]{section.3}{Zero-order Taylor expansion of the vote share for large allocations}{}% 3 +\BOOKMARK [1][-]{section.4}{Exploitability of a passive controller when deviating from uniform allocation}{}% 4 +\BOOKMARK [1][-]{section.5}{Comparison of numerical and analytical results for optimal allocations in the continuous regime and budget disadvantage}{}% 5 +\BOOKMARK [1][-]{section.6}{Shadowing, shielding and hub preferences in the discrete regime}{}% 6 +\BOOKMARK [1][-]{section.7}{Proof of uniqueness of Nash Equilibrium}{}% 7 +\BOOKMARK [1][-]{section.8}{Numerical results of an iterative approach to finding the Nash Equilibrium}{}% 8 +\BOOKMARK [1][-]{section.9}{Extension to other network topologies}{}% 9 +\BOOKMARK [1][-]{section.10}{Proof of concavity}{}% 10 +\BOOKMARK [1][-]{section.11}{Iterations to optimal IM of the proposed heuristics}{}% 11 diff --git a/datasets/ia-email-univ/email.txt b/datasets/ia-email-univ/email.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e7d2807317987b2bccb56d8c62c053a8a592b14 --- /dev/null +++ b/datasets/ia-email-univ/email.txt @@ -0,0 +1,10903 @@ +1 2 +1 3 +1 4 +1 5 +1 6 +1 7 +1 8 +1 9 +1 10 +1 11 +1 12 +1 13 +1 14 +1 15 +1 16 +1 17 +1 18 +1 19 +1 20 +1 21 +1 22 +1 23 +1 24 +1 25 +1 26 +1 27 +1 28 +1 29 +1 30 +1 31 +2 18 +2 32 +2 13 +2 16 +2 10 +2 24 +2 33 +2 34 +2 22 +2 1 +2 35 +2 3 +2 9 +2 20 +2 36 +2 7 +2 6 +2 8 +2 37 +2 11 +2 4 +2 38 +2 19 +3 39 +3 21 +3 40 +3 13 +3 2 +3 1 +3 7 +3 8 +3 34 +3 28 +3 23 +3 41 +3 42 +3 43 +3 9 +3 11 +3 4 +3 18 +3 19 +3 44 +3 16 +3 45 +3 46 +3 6 +3 20 +3 27 +3 22 +3 47 +3 48 +3 49 +3 50 +3 12 +3 51 +3 52 +3 53 +3 54 +3 55 +3 56 +4 57 +4 58 +4 59 +4 1 +4 60 +4 46 +4 61 +4 3 +4 62 +4 63 +4 64 +4 65 +4 66 +4 67 +4 11 +4 68 +4 69 +4 70 +4 71 +4 2 +4 22 +4 72 +5 1 +5 6 +5 73 +5 74 +5 13 +5 75 +5 76 +5 77 +5 78 +5 79 +6 1 +6 5 +6 2 +6 7 +6 28 +6 13 +6 34 +6 80 +6 81 +6 16 +6 18 +6 82 +6 27 +6 83 +6 8 +6 3 +6 84 +6 85 +6 86 +6 87 +6 22 +7 6 +7 1 +7 88 +7 3 +7 89 +7 22 +7 19 +7 90 +7 16 +7 91 +7 92 +7 2 +7 93 +7 94 +7 28 +7 13 +7 95 +7 96 +7 97 +7 98 +7 99 +7 100 +7 10 +7 76 +7 15 +7 9 +8 101 +8 3 +8 22 +8 6 +8 102 +8 28 +8 2 +8 1 +9 3 +9 22 +9 103 +9 13 +9 104 +9 41 +9 24 +9 2 +9 1 +9 21 +9 105 +9 16 +9 106 +9 107 +9 10 +9 30 +9 7 +10 1 +10 108 +10 2 +10 7 +10 109 +10 9 +10 34 +10 110 +10 111 +10 112 +10 16 +10 113 +10 24 +10 70 +10 114 +10 115 +10 116 +10 30 +10 117 +10 118 +10 119 +10 120 +10 121 +10 122 +10 123 +10 124 +10 125 +10 126 +10 127 +10 128 +10 129 +10 130 +11 1 +11 131 +11 73 +11 45 +11 132 +11 3 +11 133 +11 134 +11 135 +11 22 +11 136 +11 20 +11 19 +11 18 +11 137 +11 4 +11 138 +11 27 +11 2 +11 25 +12 139 +12 140 +12 1 +12 141 +12 142 +12 84 +12 143 +12 144 +12 145 +12 146 +12 3 +12 147 +12 148 +12 149 +12 150 +12 151 +12 152 +12 153 +13 9 +13 2 +13 154 +13 1 +13 155 +13 6 +13 156 +13 3 +13 24 +13 157 +13 28 +13 22 +13 158 +13 16 +13 18 +13 159 +13 14 +13 69 +13 45 +13 106 +13 76 +13 7 +13 153 +13 5 +13 160 +14 1 +14 13 +14 15 +14 161 +14 162 +14 163 +14 164 +14 123 +14 33 +14 24 +14 165 +14 166 +14 34 +14 167 +14 124 +14 168 +14 110 +14 169 +14 170 +14 171 +14 172 +14 173 +14 174 +14 80 +14 136 +14 112 +14 175 +14 176 +14 107 +14 177 +14 178 +14 179 +14 16 +14 180 +14 181 +14 182 +15 76 +15 183 +15 184 +15 185 +15 186 +15 187 +15 124 +15 33 +15 188 +15 189 +15 190 +15 168 +15 14 +15 34 +15 1 +15 191 +15 93 +15 23 +15 7 +16 192 +16 1 +16 2 +16 7 +16 6 +16 3 +16 9 +16 13 +16 108 +16 24 +16 10 +16 193 +16 123 +16 194 +16 195 +16 34 +16 196 +16 197 +16 198 +16 199 +16 30 +16 127 +16 200 +16 77 +16 105 +16 201 +16 202 +16 203 +16 204 +16 205 +16 206 +16 207 +16 208 +16 209 +16 210 +16 33 +16 211 +16 212 +16 213 +16 214 +16 215 +16 216 +16 56 +16 217 +16 14 +16 218 +16 219 +16 220 +16 129 +16 221 +16 222 +17 1 +17 115 +17 24 +17 34 +17 223 +17 224 +17 225 +18 25 +18 39 +18 26 +18 226 +18 23 +18 2 +18 38 +18 1 +18 227 +18 21 +18 3 +18 11 +18 6 +18 27 +18 13 +18 19 +18 22 +18 228 +19 229 +19 230 +19 38 +19 231 +19 20 +19 27 +19 7 +19 70 +19 1 +19 137 +19 11 +19 232 +19 186 +19 120 +19 82 +19 233 +19 234 +19 235 +19 18 +19 236 +19 2 +19 237 +19 238 +19 3 +19 239 +19 240 +19 41 +19 86 +20 233 +20 1 +20 228 +20 81 +20 50 +20 241 +20 41 +20 242 +20 11 +20 106 +20 243 +20 43 +20 244 +20 19 +20 3 +20 2 +20 22 +21 245 +21 9 +21 246 +21 40 +21 25 +21 46 +21 41 +21 3 +21 54 +21 247 +21 248 +21 47 +21 249 +21 18 +21 250 +21 251 +21 223 +21 252 +21 253 +21 1 +21 23 +21 50 +21 254 +21 105 +21 255 +21 210 +21 214 +21 206 +21 55 +21 157 +21 256 +21 107 +21 91 +21 239 +21 257 +21 258 +21 259 +21 59 +21 260 +21 39 +21 103 +21 104 +21 261 +22 6 +22 3 +22 27 +22 1 +22 2 +22 18 +22 9 +22 13 +22 4 +22 38 +22 7 +22 8 +22 32 +22 11 +22 20 +23 3 +23 262 +23 18 +23 263 +23 240 +23 264 +23 38 +23 265 +23 266 +23 227 +23 54 +23 182 +23 134 +23 135 +23 25 +23 43 +23 246 +23 45 +23 1 +23 267 +23 268 +23 39 +23 143 +23 269 +23 270 +23 271 +23 21 +23 272 +23 46 +23 44 +23 42 +23 273 +23 80 +23 196 +23 255 +23 274 +23 275 +23 276 +23 50 +23 277 +23 278 +23 279 +23 97 +23 280 +23 203 +23 230 +23 281 +23 15 +23 282 +23 283 +23 284 +24 108 +24 9 +24 285 +24 13 +24 2 +24 1 +24 109 +24 286 +24 17 +24 182 +24 10 +24 34 +24 176 +24 287 +24 288 +24 263 +24 289 +24 115 +24 290 +24 167 +24 14 +24 70 +24 16 +24 291 +24 119 +24 292 +24 124 +24 58 +24 30 +24 168 +24 33 +24 116 +24 293 +24 294 +24 174 +24 295 +24 110 +24 120 +24 121 +24 296 +24 297 +24 112 +25 18 +25 26 +25 227 +25 21 +25 23 +25 39 +25 11 +25 1 +25 287 +25 265 +25 298 +25 299 +25 300 +25 301 +25 62 +25 302 +25 126 +25 60 +25 303 +25 238 +26 18 +26 25 +26 1 +27 95 +27 19 +27 238 +27 304 +27 235 +27 70 +27 186 +27 232 +27 230 +27 3 +27 18 +27 11 +27 38 +27 1 +27 305 +27 86 +27 6 +27 275 +27 22 +27 306 +27 307 +28 6 +28 34 +28 3 +28 233 +28 182 +28 13 +28 7 +28 8 +28 308 +28 309 +28 1 +28 280 +29 310 +29 311 +29 312 +29 313 +29 314 +29 147 +29 315 +29 316 +29 1 +30 1 +30 9 +30 317 +30 318 +30 319 +30 320 +30 321 +30 322 +30 323 +30 324 +30 49 +30 325 +30 16 +30 326 +30 178 +30 24 +30 10 +30 34 +30 196 +30 327 +30 328 +30 218 +30 200 +30 211 +30 194 +30 201 +31 329 +31 45 +31 330 +31 259 +31 251 +31 104 +31 331 +31 202 +31 157 +31 332 +31 333 +31 334 +31 54 +31 335 +31 336 +31 245 +31 337 +31 338 +31 339 +31 340 +31 241 +31 1 +32 22 +32 341 +32 2 +33 15 +33 2 +33 14 +33 34 +33 24 +33 16 +33 120 +33 169 +34 308 +34 3 +34 6 +34 108 +34 28 +34 2 +34 15 +34 342 +34 16 +34 10 +34 24 +34 343 +34 33 +34 30 +34 14 +34 182 +34 55 +34 70 +34 17 +35 2 +36 2 +37 2 +38 19 +38 344 +38 345 +38 51 +38 18 +38 270 +38 237 +38 231 +38 233 +38 346 +38 347 +38 275 +38 23 +38 348 +38 241 +38 254 +38 27 +38 349 +38 350 +38 351 +38 22 +38 352 +38 2 +38 330 +38 353 +39 21 +39 354 +39 46 +39 25 +39 227 +39 52 +39 105 +39 18 +39 250 +39 313 +39 42 +39 245 +39 240 +39 246 +39 43 +39 3 +39 355 +39 23 +39 356 +39 357 +39 314 +39 332 +39 358 +39 107 +39 41 +39 45 +39 265 +39 50 +40 359 +40 54 +40 55 +40 336 +40 21 +40 268 +40 354 +40 293 +40 360 +40 46 +40 361 +40 56 +40 362 +40 363 +40 364 +40 49 +40 3 +40 47 +40 42 +40 365 +40 355 +40 105 +40 157 +40 58 +40 203 +40 366 +40 367 +41 354 +41 353 +41 21 +41 87 +41 368 +41 245 +41 262 +41 260 +41 358 +41 9 +41 134 +41 270 +41 54 +41 369 +41 250 +41 370 +41 371 +41 210 +41 194 +41 50 +41 3 +41 372 +41 135 +41 246 +41 332 +41 103 +41 20 +41 51 +41 373 +41 62 +41 48 +41 46 +41 374 +41 106 +41 94 +41 375 +41 238 +41 376 +41 377 +41 334 +41 247 +41 378 +41 379 +41 355 +41 19 +41 47 +41 39 +41 191 +41 235 +42 303 +42 380 +42 381 +42 105 +42 382 +42 372 +42 271 +42 3 +42 383 +42 384 +42 385 +42 386 +42 387 +42 356 +42 388 +42 39 +42 389 +42 50 +42 390 +42 391 +42 314 +42 392 +42 104 +42 245 +42 333 +42 393 +42 332 +42 44 +42 394 +42 378 +42 395 +42 396 +42 40 +42 397 +42 337 +42 355 +42 398 +42 354 +42 45 +42 134 +42 335 +42 157 +42 399 +42 400 +42 338 +42 401 +42 84 +42 402 +42 23 +42 403 +42 404 +43 3 +43 269 +43 46 +43 405 +43 20 +43 282 +43 39 +43 23 +43 230 +43 240 +44 341 +44 406 +44 407 +44 408 +44 332 +44 409 +44 410 +44 386 +44 42 +44 411 +44 412 +44 3 +44 135 +44 52 +44 383 +44 413 +44 23 +44 414 +45 11 +45 415 +45 399 +45 73 +45 31 +45 333 +45 416 +45 355 +45 417 +45 418 +45 39 +45 251 +45 3 +45 419 +45 23 +45 227 +45 42 +45 420 +45 421 +45 13 +45 50 +45 422 +45 54 +45 191 +45 423 +45 362 +45 424 +45 349 +45 425 +45 133 +45 259 +46 4 +46 59 +46 399 +46 43 +46 21 +46 72 +46 62 +46 40 +46 58 +46 39 +46 3 +46 426 +46 354 +46 64 +46 57 +46 373 +46 71 +46 414 +46 41 +46 69 +46 81 +46 66 +46 427 +46 282 +46 428 +46 429 +46 68 +46 23 +46 351 +46 241 +46 430 +46 246 +46 431 +46 52 +46 432 +46 48 +47 433 +47 21 +47 40 +47 337 +47 3 +47 41 +47 104 +48 296 +48 41 +48 3 +48 332 +48 434 +48 367 +48 46 +49 54 +49 76 +49 185 +49 269 +49 344 +49 3 +49 241 +49 92 +49 303 +49 40 +49 328 +49 206 +49 435 +49 55 +49 293 +49 436 +49 105 +49 116 +49 390 +49 437 +49 128 +49 361 +49 79 +49 201 +49 274 +49 317 +49 321 +49 327 +49 30 +49 438 +49 439 +49 213 +49 202 +49 440 +49 325 +49 322 +49 441 +49 56 +49 442 +49 363 +50 259 +50 368 +50 52 +50 228 +50 20 +50 81 +50 241 +50 354 +50 443 +50 444 +50 191 +50 245 +50 42 +50 324 +50 367 +50 338 +50 21 +50 271 +50 41 +50 3 +50 39 +50 314 +50 45 +50 404 +50 333 +50 23 +51 38 +51 445 +51 446 +51 105 +51 56 +51 447 +51 354 +51 353 +51 54 +51 448 +51 449 +51 368 +51 41 +51 278 +51 366 +51 3 +51 450 +51 338 +51 257 +51 451 +51 340 +51 269 +52 39 +52 452 +52 453 +52 228 +52 241 +52 81 +52 351 +52 269 +52 182 +52 128 +52 50 +52 454 +52 333 +52 133 +52 365 +52 340 +52 254 +52 44 +52 455 +52 456 +52 146 +52 457 +52 362 +52 367 +52 458 +52 157 +52 335 +52 248 +52 135 +52 46 +52 3 +52 316 +52 459 +52 402 +52 287 +52 460 +52 413 +52 461 +53 72 +53 3 +54 187 +54 124 +54 87 +54 183 +54 40 +54 354 +54 189 +54 268 +54 454 +54 346 +54 21 +54 76 +54 49 +54 41 +54 329 +54 331 +54 185 +54 462 +54 23 +54 51 +54 378 +54 463 +54 333 +54 464 +54 316 +54 465 +54 31 +54 3 +54 191 +54 466 +54 467 +54 45 +55 40 +55 3 +55 21 +55 468 +55 360 +55 34 +55 105 +55 259 +55 317 +55 49 +55 469 +55 324 +55 201 +55 56 +55 128 +56 51 +56 470 +56 335 +56 251 +56 392 +56 332 +56 40 +56 471 +56 3 +56 360 +56 364 +56 327 +56 472 +56 289 +56 207 +56 202 +56 196 +56 473 +56 212 +56 213 +56 390 +56 55 +56 293 +56 49 +56 201 +56 128 +56 16 +56 194 +56 437 +56 105 +56 133 +56 474 +56 210 +56 77 +56 214 +57 62 +57 4 +57 58 +57 475 +57 65 +57 476 +57 477 +57 478 +57 479 +57 480 +57 59 +57 46 +57 282 +57 69 +57 426 +57 72 +57 481 +57 64 +57 66 +57 373 +57 482 +57 483 +57 484 +57 485 +57 420 +57 486 +57 231 +57 487 +58 57 +58 4 +58 72 +58 46 +58 59 +58 64 +58 66 +58 69 +58 488 +58 62 +58 426 +58 282 +58 373 +58 192 +58 286 +58 40 +58 351 +58 393 +58 489 +58 67 +58 490 +58 491 +58 255 +58 439 +58 492 +58 493 +58 24 +58 206 +58 494 +58 124 +58 107 +58 495 +58 112 +59 46 +59 64 +59 66 +59 71 +59 69 +59 282 +59 57 +59 62 +59 426 +59 72 +59 58 +59 430 +59 496 +59 497 +59 4 +59 498 +59 256 +59 21 +59 499 +60 485 +60 25 +60 4 +61 470 +61 64 +61 4 +61 244 +61 500 +61 68 +61 132 +61 501 +61 485 +61 502 +62 57 +62 503 +62 63 +62 46 +62 58 +62 64 +62 504 +62 59 +62 4 +62 373 +62 341 +62 505 +62 371 +62 140 +62 185 +62 145 +62 267 +62 150 +62 203 +62 72 +62 71 +62 41 +62 66 +62 25 +62 476 +62 67 +63 427 +63 4 +63 62 +63 506 +63 507 +63 508 +63 150 +63 71 +63 509 +63 476 +64 485 +64 62 +64 65 +64 59 +64 68 +64 46 +64 90 +64 61 +64 506 +64 282 +64 4 +64 510 +64 69 +64 57 +64 72 +64 58 +64 483 +65 57 +65 64 +65 483 +65 68 +65 485 +65 282 +65 510 +65 430 +65 90 +65 477 +65 475 +65 4 +65 511 +65 512 +65 513 +65 476 +65 481 +65 514 +66 316 +66 515 +66 368 +66 4 +66 69 +66 71 +66 282 +66 57 +66 62 +66 426 +66 72 +66 59 +66 58 +66 46 +67 430 +67 516 +67 485 +67 286 +67 4 +67 282 +67 62 +67 238 +67 58 +67 490 +67 491 +67 517 +67 518 +67 519 +68 470 +68 500 +68 485 +68 65 +68 510 +68 430 +68 90 +68 64 +68 282 +68 520 +68 61 +68 511 +68 46 +68 69 +68 4 +68 373 +69 444 +69 506 +69 59 +69 13 +69 521 +69 522 +69 523 +69 524 +69 525 +69 64 +69 66 +69 46 +69 57 +69 426 +69 72 +69 58 +69 68 +69 4 +69 526 +69 527 +69 432 +69 509 +69 90 +69 528 +69 362 +69 466 +69 349 +69 219 +69 529 +69 500 +70 530 +70 19 +70 4 +70 233 +70 27 +70 108 +70 239 +70 444 +70 330 +70 82 +70 531 +70 117 +70 280 +70 24 +70 10 +70 169 +70 355 +70 182 +70 492 +70 532 +70 495 +70 170 +70 34 +71 508 +71 46 +71 63 +71 233 +71 59 +71 4 +71 427 +71 66 +71 429 +71 134 +71 62 +71 533 +71 511 +72 534 +72 53 +72 58 +72 59 +72 46 +72 426 +72 535 +72 536 +72 62 +72 537 +72 4 +72 369 +72 507 +72 285 +72 538 +72 69 +72 500 +72 539 +72 511 +72 540 +72 282 +72 57 +72 339 +72 455 +72 353 +72 396 +72 541 +72 66 +72 373 +72 542 +72 268 +72 351 +72 140 +72 423 +72 64 +72 510 +72 356 +73 45 +73 420 +73 11 +73 376 +73 543 +73 133 +73 5 +73 544 +73 467 +73 270 +73 447 +73 528 +73 260 +73 545 +73 546 +73 89 +73 378 +73 413 +73 422 +73 547 +73 548 +74 233 +74 134 +74 254 +74 5 +74 549 +74 466 +74 504 +74 550 +74 287 +74 551 +74 552 +74 194 +74 206 +74 196 +74 128 +74 505 +74 553 +74 186 +74 101 +74 554 +74 555 +75 556 +75 557 +75 354 +75 558 +75 152 +75 559 +75 468 +75 560 +75 5 +75 267 +75 148 +75 561 +76 183 +76 15 +76 187 +76 185 +76 553 +76 84 +76 562 +76 189 +76 396 +76 267 +76 147 +76 117 +76 105 +76 316 +76 54 +76 269 +76 49 +76 563 +76 564 +76 565 +76 566 +76 190 +76 567 +76 568 +76 467 +76 150 +76 466 +76 462 +76 233 +76 186 +76 569 +76 124 +76 341 +76 570 +76 80 +76 119 +76 571 +76 5 +76 572 +76 13 +76 573 +76 7 +76 352 +77 420 +77 147 +77 5 +77 574 +77 16 +77 323 +77 56 +77 196 +78 333 +78 183 +78 113 +78 181 +78 176 +78 162 +78 197 +78 5 +78 161 +78 575 +78 120 +78 121 +79 576 +79 128 +79 49 +79 133 +79 136 +79 322 +79 201 +79 5 +79 336 +79 105 +79 400 +79 577 +80 184 +80 578 +80 269 +80 6 +80 579 +80 580 +80 76 +80 581 +80 582 +80 23 +80 116 +80 85 +80 401 +80 400 +80 577 +80 105 +80 176 +80 583 +80 127 +80 274 +80 584 +80 194 +80 361 +80 120 +80 14 +80 161 +81 228 +81 134 +81 585 +81 50 +81 52 +81 6 +81 452 +81 241 +81 586 +81 155 +81 46 +81 587 +81 333 +81 20 +81 454 +81 460 +81 554 +81 588 +81 308 +81 260 +81 94 +81 243 +81 405 +81 204 +82 234 +82 306 +82 233 +82 70 +82 180 +82 19 +82 6 +82 269 +82 237 +82 94 +82 405 +82 182 +82 381 +82 275 +82 176 +82 113 +82 301 +82 520 +82 589 +82 460 +82 277 +82 201 +82 588 +83 590 +83 388 +83 6 +83 239 +83 143 +83 243 +84 76 +84 354 +84 141 +84 143 +84 332 +84 12 +84 146 +84 591 +84 6 +84 150 +84 140 +84 573 +84 42 +84 153 +84 152 +85 398 +85 592 +85 6 +85 593 +85 80 +85 212 +85 128 +85 219 +85 594 +85 198 +85 595 +85 215 +85 193 +85 291 +85 328 +85 222 +85 205 +85 401 +85 130 +85 327 +85 518 +85 596 +86 429 +86 597 +86 598 +86 378 +86 233 +86 95 +86 27 +86 454 +86 6 +86 19 +86 94 +87 54 +87 183 +87 134 +87 567 +87 6 +87 41 +88 7 +88 92 +88 599 +88 204 +88 219 +88 600 +88 518 +88 601 +88 193 +88 594 +88 198 +88 259 +89 454 +89 464 +89 93 +89 602 +89 7 +89 603 +89 604 +89 73 +90 7 +90 427 +90 68 +90 485 +90 282 +90 65 +90 510 +90 430 +90 605 +90 606 +90 607 +90 64 +90 507 +90 608 +90 396 +90 426 +90 69 +90 604 +90 609 +90 610 +90 285 +90 603 +91 611 +91 256 +91 233 +91 7 +91 612 +91 269 +91 613 +91 369 +91 614 +91 615 +91 444 +91 21 +92 49 +92 616 +92 7 +92 617 +92 618 +92 201 +92 284 +92 619 +92 157 +92 88 +92 620 +92 574 +92 259 +93 621 +93 454 +93 602 +93 89 +93 7 +93 189 +93 603 +93 15 +93 622 +93 623 +93 624 +93 625 +93 465 +93 626 +93 627 +93 191 +93 628 +93 118 +93 629 +94 630 +94 99 +94 81 +94 266 +94 631 +94 376 +94 632 +94 231 +94 7 +94 351 +94 457 +94 137 +94 41 +94 606 +94 633 +94 233 +94 568 +94 237 +94 131 +94 598 +94 597 +94 86 +94 82 +94 241 +95 27 +95 454 +95 86 +95 7 +95 632 +96 376 +96 7 +96 612 +96 100 +96 634 +96 610 +96 457 +97 7 +97 23 +98 635 +98 598 +98 636 +98 7 +98 627 +99 94 +99 135 +99 602 +99 7 +99 189 +100 7 +100 598 +100 96 +101 8 +101 265 +101 196 +101 271 +101 637 +101 582 +101 404 +101 132 +101 468 +101 638 +101 74 +101 128 +101 554 +102 339 +102 8 +102 370 +103 639 +103 41 +103 246 +103 21 +103 614 +103 9 +104 154 +104 42 +104 31 +104 333 +104 9 +104 21 +104 135 +104 501 +104 404 +104 128 +104 47 +104 201 +104 218 +104 640 +104 327 +104 105 +105 42 +105 51 +105 76 +105 40 +105 21 +105 9 +105 333 +105 39 +105 545 +105 335 +105 183 +105 331 +105 420 +105 578 +105 414 +105 236 +105 468 +105 378 +105 227 +105 274 +105 439 +105 400 +105 390 +105 210 +105 446 +105 641 +105 200 +105 214 +105 204 +105 16 +105 196 +105 80 +105 206 +105 128 +105 642 +105 643 +105 644 +105 596 +105 645 +105 646 +105 198 +105 647 +105 284 +105 129 +105 55 +105 49 +105 203 +105 259 +105 116 +105 648 +105 104 +105 213 +105 291 +105 205 +105 56 +105 218 +105 649 +105 650 +105 651 +105 503 +105 251 +105 321 +105 79 +105 202 +105 361 +105 201 +105 472 +105 217 +105 437 +105 216 +105 307 +106 538 +106 588 +106 425 +106 9 +106 13 +106 652 +106 653 +106 452 +106 654 +106 655 +106 656 +106 268 +106 415 +106 657 +106 458 +106 658 +106 134 +106 137 +106 41 +106 358 +106 20 +106 659 +106 339 +106 660 +106 661 +106 662 +106 663 +106 664 +106 391 +106 467 +106 665 +107 9 +107 666 +107 667 +107 252 +107 39 +107 21 +107 182 +107 128 +107 200 +107 206 +107 263 +107 196 +107 58 +107 668 +107 217 +107 14 +108 34 +108 120 +108 10 +108 296 +108 24 +108 70 +108 16 +109 24 +109 10 +110 117 +110 532 +110 569 +110 14 +110 119 +110 10 +110 669 +110 182 +110 24 +110 124 +111 10 +112 333 +112 271 +112 179 +112 10 +112 24 +112 670 +112 165 +112 280 +112 671 +112 163 +112 120 +112 168 +112 355 +112 114 +112 14 +112 170 +112 181 +112 58 +112 167 +113 134 +113 82 +113 672 +113 176 +113 10 +113 181 +113 78 +113 124 +113 162 +113 168 +113 532 +113 120 +113 163 +114 10 +114 669 +114 569 +114 117 +114 179 +114 112 +115 454 +115 673 +115 10 +115 24 +115 17 +115 224 +115 668 +115 225 +115 287 +115 255 +115 674 +115 367 +115 675 +116 470 +116 676 +116 677 +116 344 +116 678 +116 269 +116 468 +116 105 +116 593 +116 127 +116 128 +116 274 +116 80 +116 648 +116 446 +116 305 +116 390 +116 205 +116 679 +116 439 +116 194 +116 49 +116 215 +116 10 +116 24 +116 213 +116 435 +116 642 +116 206 +116 210 +116 214 +116 307 +116 201 +116 289 +116 680 +116 681 +116 204 +116 198 +117 76 +117 135 +117 185 +117 124 +117 70 +117 569 +117 119 +117 110 +117 167 +117 10 +117 682 +117 133 +117 161 +117 114 +117 532 +117 120 +118 683 +118 517 +118 93 +118 441 +118 629 +118 10 +118 205 +118 684 +118 469 +119 76 +119 124 +119 169 +119 10 +119 24 +119 669 +119 117 +119 110 +119 569 +120 233 +120 108 +120 19 +120 332 +120 685 +120 80 +120 117 +120 569 +120 532 +120 166 +120 178 +120 168 +120 165 +120 10 +120 24 +120 182 +120 669 +120 174 +120 176 +120 169 +120 170 +120 161 +120 112 +120 172 +120 163 +120 78 +120 179 +120 181 +120 563 +120 113 +120 33 +120 297 +121 178 +121 163 +121 169 +121 78 +121 563 +121 166 +121 174 +121 165 +121 172 +121 168 +121 24 +121 10 +122 429 +122 545 +122 686 +122 331 +122 329 +122 543 +122 252 +122 687 +122 688 +122 290 +122 355 +122 689 +122 10 +122 287 +123 14 +123 16 +123 10 +124 54 +124 76 +124 183 +124 15 +124 176 +124 117 +124 119 +124 555 +124 113 +124 14 +124 10 +124 24 +124 690 +124 569 +124 110 +124 58 +124 691 +125 692 +125 137 +125 429 +125 329 +125 367 +125 287 +125 182 +125 10 +125 255 +125 693 +125 694 +126 25 +126 684 +126 10 +127 647 +127 116 +127 274 +127 594 +127 695 +127 16 +127 696 +127 10 +127 80 +127 208 +127 446 +127 219 +127 649 +127 648 +127 199 +128 52 +128 303 +128 137 +128 429 +128 74 +128 231 +128 243 +128 101 +128 206 +128 321 +128 107 +128 79 +128 49 +128 194 +128 325 +128 293 +128 324 +128 105 +128 680 +128 217 +128 439 +128 182 +128 116 +128 435 +128 274 +128 196 +128 85 +128 56 +128 104 +128 55 +128 305 +128 207 +128 10 +128 289 +128 201 +128 697 +129 641 +129 200 +129 105 +129 643 +129 16 +129 10 +129 317 +130 468 +130 672 +130 698 +130 194 +130 10 +130 327 +130 401 +130 205 +130 699 +130 437 +130 85 +131 11 +131 135 +131 611 +131 134 +131 297 +131 700 +131 701 +131 585 +131 330 +131 155 +131 536 +131 702 +131 460 +131 703 +131 234 +131 614 +131 94 +131 481 +131 137 +131 704 +131 677 +132 244 +132 313 +132 470 +132 61 +132 547 +132 101 +132 501 +132 11 +132 638 +132 617 +132 331 +132 259 +133 73 +133 11 +133 475 +133 565 +133 134 +133 282 +133 52 +133 234 +133 213 +133 45 +133 79 +133 117 +133 446 +133 56 +134 585 +134 106 +134 87 +134 131 +134 135 +134 155 +134 227 +134 74 +134 81 +134 338 +134 481 +134 705 +134 41 +134 706 +134 691 +134 586 +134 23 +134 351 +134 663 +134 368 +134 377 +134 133 +134 240 +134 448 +134 140 +134 418 +134 314 +134 707 +134 113 +134 372 +134 607 +134 11 +134 71 +134 42 +134 708 +134 445 +134 487 +134 709 +134 254 +135 196 +135 394 +135 524 +135 11 +135 606 +135 131 +135 710 +135 387 +135 711 +135 311 +135 23 +135 41 +135 52 +135 44 +135 340 +135 598 +135 586 +135 117 +135 568 +135 431 +135 134 +135 712 +135 504 +135 397 +135 545 +135 467 +135 713 +135 714 +135 457 +135 148 +135 367 +135 480 +135 693 +135 184 +135 155 +135 715 +135 227 +135 332 +135 99 +135 104 +136 612 +136 565 +136 11 +136 302 +136 716 +136 576 +136 717 +136 718 +136 313 +136 533 +136 213 +136 79 +136 682 +136 14 +137 711 +137 662 +137 452 +137 238 +137 243 +137 269 +137 128 +137 182 +137 94 +137 19 +137 585 +137 138 +137 554 +137 239 +137 376 +137 454 +137 588 +137 413 +137 125 +137 321 +137 214 +137 11 +137 362 +137 230 +137 443 +137 520 +137 420 +137 233 +137 459 +137 332 +137 106 +137 131 +138 137 +138 230 +138 240 +138 11 +139 147 +139 12 +139 146 +140 147 +140 148 +140 142 +140 150 +140 12 +140 146 +140 84 +140 299 +140 267 +140 354 +140 504 +140 143 +140 300 +140 349 +140 719 +140 72 +140 152 +140 332 +140 329 +140 649 +140 396 +140 720 +140 573 +140 721 +140 505 +140 145 +140 149 +140 722 +140 314 +140 312 +140 313 +140 62 +140 333 +140 134 +141 354 +141 84 +141 12 +141 723 +141 719 +141 142 +141 146 +141 152 +142 143 +142 354 +142 152 +142 140 +142 12 +142 723 +142 649 +142 591 +142 404 +142 141 +142 147 +142 148 +142 150 +142 146 +142 724 +142 443 +142 313 +142 504 +142 355 +142 332 +142 578 +143 723 +143 140 +143 147 +143 142 +143 239 +143 12 +143 146 +143 725 +143 84 +143 726 +143 633 +143 504 +143 332 +143 413 +143 727 +143 396 +143 591 +143 381 +143 728 +143 23 +143 729 +143 730 +143 590 +143 411 +143 299 +143 83 +143 410 +143 276 +143 731 +144 559 +144 732 +144 387 +144 733 +144 12 +144 734 +144 364 +144 556 +145 371 +145 416 +145 331 +145 735 +145 146 +145 736 +145 267 +145 62 +145 241 +145 573 +145 185 +145 12 +145 237 +145 354 +145 150 +145 372 +145 140 +145 152 +146 142 +146 371 +146 573 +146 140 +146 139 +146 147 +146 145 +146 354 +146 150 +146 84 +146 332 +146 185 +146 737 +146 141 +146 148 +146 505 +146 12 +146 149 +146 362 +146 316 +146 143 +146 239 +146 52 +146 428 +146 229 +146 152 +147 152 +147 139 +147 140 +147 76 +147 314 +147 29 +147 183 +147 150 +147 146 +147 738 +147 239 +147 573 +147 507 +147 739 +147 143 +147 142 +147 354 +147 77 +147 12 +147 720 +147 396 +148 140 +148 206 +148 573 +148 364 +148 142 +148 146 +148 135 +148 719 +148 12 +148 378 +148 75 +148 152 +149 267 +149 721 +149 737 +149 371 +149 573 +149 140 +149 185 +149 505 +149 150 +149 12 +149 146 +149 152 +149 692 +150 152 +150 354 +150 146 +150 63 +150 76 +150 573 +150 241 +150 540 +150 147 +150 140 +150 142 +150 12 +150 84 +150 183 +150 62 +150 149 +150 243 +150 404 +150 145 +150 578 +151 241 +151 12 +152 149 +152 142 +152 147 +152 150 +152 739 +152 267 +152 371 +152 735 +152 559 +152 300 +152 557 +152 146 +152 243 +152 737 +152 75 +152 573 +152 140 +152 740 +152 141 +152 741 +152 148 +152 185 +152 145 +152 723 +152 12 +152 742 +152 84 +153 396 +153 743 +153 13 +153 744 +153 412 +153 745 +153 746 +153 747 +153 356 +153 590 +153 748 +153 591 +153 84 +153 12 +154 13 +154 104 +154 218 +155 377 +155 237 +155 135 +155 677 +155 13 +155 362 +155 445 +155 346 +155 131 +155 415 +155 586 +155 344 +155 134 +155 418 +155 585 +155 375 +155 378 +155 81 +156 269 +156 687 +156 13 +156 702 +156 662 +156 268 +157 335 +157 741 +157 31 +157 40 +157 246 +157 92 +157 332 +157 333 +157 42 +157 52 +157 21 +157 749 +157 13 +158 750 +158 751 +158 661 +158 752 +158 391 +158 753 +158 395 +158 13 +158 754 +158 183 +158 755 +158 649 +159 756 +159 434 +159 13 +160 757 +160 758 +160 759 +160 13 +161 190 +161 120 +161 183 +161 185 +161 14 +161 584 +161 78 +161 117 +161 80 +162 78 +162 584 +162 14 +162 113 +162 176 +162 196 +162 327 +162 197 +162 401 +162 699 +162 297 +162 198 +163 633 +163 351 +163 760 +163 489 +163 14 +163 121 +163 322 +163 120 +163 112 +163 113 +164 271 +164 173 +164 167 +164 14 +164 168 +164 322 +164 165 +165 239 +165 172 +165 174 +165 14 +165 167 +165 120 +165 121 +165 164 +165 112 +165 563 +165 166 +165 168 +165 297 +166 182 +166 492 +166 165 +166 168 +166 361 +166 178 +166 14 +166 120 +166 121 +167 237 +167 24 +167 117 +167 165 +167 14 +167 532 +167 164 +167 112 +168 15 +168 237 +168 166 +168 165 +168 164 +168 563 +168 322 +168 14 +168 691 +168 113 +168 532 +168 112 +168 24 +168 120 +168 121 +169 119 +169 70 +169 14 +169 120 +169 121 +169 33 +170 14 +170 70 +170 112 +170 490 +170 120 +171 501 +171 14 +171 584 +172 297 +172 165 +172 563 +172 14 +172 120 +172 121 +173 164 +173 14 +174 165 +174 14 +174 120 +174 121 +174 24 +175 14 +176 82 +176 390 +176 584 +176 24 +176 124 +176 162 +176 113 +176 181 +176 80 +176 220 +176 197 +176 196 +176 761 +176 182 +176 78 +176 14 +176 198 +176 120 +176 327 +177 584 +177 182 +177 14 +178 244 +178 120 +178 121 +178 30 +178 166 +178 14 +179 112 +179 120 +179 280 +179 669 +179 14 +179 114 +180 82 +180 14 +181 344 +181 549 +181 314 +181 78 +181 113 +181 176 +181 197 +181 112 +181 120 +181 14 +182 137 +182 231 +182 28 +182 234 +182 82 +182 241 +182 237 +182 52 +182 23 +182 24 +182 277 +182 762 +182 532 +182 34 +182 296 +182 125 +182 120 +182 563 +182 70 +182 176 +182 128 +182 287 +182 177 +182 166 +182 763 +182 292 +182 107 +182 110 +182 14 +183 567 +183 187 +183 54 +183 764 +183 700 +183 625 +183 384 +183 359 +183 147 +183 189 +183 393 +183 381 +183 715 +183 341 +183 150 +183 724 +183 726 +183 78 +183 367 +183 191 +183 76 +183 551 +183 15 +183 765 +183 566 +183 602 +183 604 +183 158 +183 105 +183 161 +183 766 +183 190 +183 87 +183 124 +183 185 +184 15 +184 185 +184 269 +184 80 +184 572 +184 189 +184 191 +184 579 +184 135 +184 206 +185 184 +185 371 +185 559 +185 145 +185 300 +185 742 +185 416 +185 573 +185 15 +185 146 +185 49 +185 76 +185 329 +185 354 +185 54 +185 364 +185 183 +185 62 +185 389 +185 736 +185 767 +185 569 +185 117 +185 331 +185 578 +185 267 +185 149 +185 152 +185 190 +185 161 +186 580 +186 603 +186 27 +186 549 +186 76 +186 19 +186 711 +186 15 +186 74 +186 768 +186 429 +186 639 +186 638 +186 414 +187 466 +187 183 +187 15 +187 54 +187 76 +187 567 +187 766 +187 396 +187 589 +188 769 +188 660 +188 455 +188 588 +188 770 +188 654 +188 467 +188 771 +188 562 +188 772 +188 15 +188 663 +188 578 +189 454 +189 76 +189 54 +189 191 +189 773 +189 464 +189 93 +189 184 +189 183 +189 623 +189 602 +189 622 +189 578 +189 774 +189 15 +189 99 +190 15 +190 185 +190 161 +190 567 +190 566 +190 573 +190 183 +190 76 +191 184 +191 189 +191 454 +191 464 +191 183 +191 316 +191 15 +191 45 +191 54 +191 622 +191 50 +191 93 +191 41 +192 698 +192 775 +192 16 +192 776 +192 248 +192 503 +192 446 +192 206 +192 58 +192 288 +192 224 +192 323 +193 363 +193 328 +193 361 +193 592 +193 222 +193 215 +193 594 +193 401 +193 196 +193 775 +193 16 +193 518 +193 88 +193 600 +193 601 +193 599 +193 212 +193 446 +193 219 +193 204 +193 85 +194 41 +194 705 +194 74 +194 196 +194 210 +194 293 +194 128 +194 16 +194 116 +194 130 +194 263 +194 649 +194 325 +194 439 +194 361 +194 390 +194 56 +194 317 +194 204 +194 80 +194 30 +194 400 +194 777 +195 16 +195 694 +195 778 +195 255 +195 675 +195 489 +195 671 +196 269 +196 333 +196 101 +196 135 +196 74 +196 237 +196 23 +196 678 +196 599 +196 220 +196 779 +196 274 +196 194 +196 30 +196 201 +196 77 +196 390 +196 176 +196 197 +196 204 +196 780 +196 263 +196 16 +196 317 +196 473 +196 56 +196 289 +196 472 +196 212 +196 327 +196 207 +196 128 +196 691 +196 777 +196 439 +196 214 +196 781 +196 107 +196 446 +196 361 +196 210 +196 364 +196 162 +196 105 +196 695 +196 218 +196 193 +197 196 +197 204 +197 16 +197 327 +197 782 +197 78 +197 220 +197 176 +197 390 +197 181 +197 289 +197 162 +197 780 +197 212 +198 775 +198 512 +198 85 +198 222 +198 205 +198 105 +198 215 +198 629 +198 327 +198 207 +198 401 +198 584 +198 162 +198 647 +198 441 +198 212 +198 16 +198 594 +198 204 +198 695 +198 176 +198 206 +198 116 +198 783 +198 88 +198 780 +198 698 +198 219 +198 642 +199 784 +199 785 +199 289 +199 687 +199 725 +199 286 +199 16 +199 363 +199 786 +199 215 +199 221 +199 780 +199 216 +199 649 +199 218 +199 127 +200 105 +200 219 +200 641 +200 645 +200 596 +200 129 +200 646 +200 642 +200 787 +200 643 +200 271 +200 647 +200 545 +200 470 +200 333 +200 16 +200 692 +200 788 +200 107 +200 617 +200 284 +200 259 +200 30 +200 205 +201 258 +201 335 +201 92 +201 82 +201 233 +201 650 +201 202 +201 56 +201 49 +201 16 +201 104 +201 79 +201 206 +201 361 +201 105 +201 438 +201 116 +201 291 +201 274 +201 196 +201 293 +201 218 +201 55 +201 325 +201 474 +201 336 +201 128 +201 30 +202 258 +202 335 +202 251 +202 399 +202 348 +202 31 +202 586 +202 201 +202 56 +202 16 +202 214 +202 49 +202 105 +202 321 +202 474 +203 291 +203 503 +203 371 +203 105 +203 416 +203 573 +203 16 +203 332 +203 263 +203 789 +203 40 +203 62 +203 206 +203 23 +203 323 +204 233 +204 272 +204 335 +204 378 +204 81 +204 390 +204 196 +204 217 +204 790 +204 198 +204 105 +204 293 +204 205 +204 361 +204 197 +204 251 +204 211 +204 210 +204 438 +204 193 +204 209 +204 274 +204 16 +204 207 +204 88 +204 594 +204 791 +204 216 +204 263 +204 194 +204 213 +204 291 +204 218 +204 446 +204 116 +204 503 +204 214 +204 328 +204 472 +205 401 +205 446 +205 217 +205 212 +205 219 +205 116 +205 208 +205 594 +205 648 +205 792 +205 198 +205 130 +205 85 +205 222 +205 204 +205 211 +205 16 +205 336 +205 783 +205 118 +205 390 +205 216 +205 207 +205 289 +205 291 +205 210 +205 698 +205 274 +205 105 +205 215 +205 200 +206 148 +206 74 +206 192 +206 21 +206 184 +206 695 +206 105 +206 214 +206 263 +206 107 +206 49 +206 128 +206 210 +206 322 +206 215 +206 222 +206 446 +206 58 +206 439 +206 16 +206 198 +206 327 +206 400 +206 116 +206 213 +206 361 +206 203 +206 201 +207 56 +207 213 +207 196 +207 390 +207 473 +207 212 +207 16 +207 198 +207 204 +207 364 +207 629 +207 128 +207 205 +207 216 +207 698 +207 327 +208 468 +208 792 +208 219 +208 212 +208 446 +208 16 +208 274 +208 127 +208 205 +208 648 +208 343 +208 596 +209 404 +209 16 +209 204 +209 215 +209 596 +209 218 +210 41 +210 404 +210 672 +210 676 +210 425 +210 21 +210 233 +210 105 +210 206 +210 194 +210 274 +210 204 +210 439 +210 446 +210 196 +210 16 +210 322 +210 361 +210 116 +210 400 +210 56 +210 214 +210 205 +210 698 +210 642 +211 578 +211 204 +211 212 +211 219 +211 205 +211 401 +211 289 +211 698 +211 792 +211 680 +211 781 +211 16 +211 215 +211 30 +212 793 +212 222 +212 211 +212 401 +212 193 +212 560 +212 219 +212 85 +212 215 +212 213 +212 205 +212 698 +212 441 +212 198 +212 207 +212 208 +212 794 +212 328 +212 792 +212 216 +212 472 +212 56 +212 196 +212 795 +212 16 +212 327 +212 197 +213 366 +213 677 +213 286 +213 793 +213 136 +213 472 +213 437 +213 116 +213 133 +213 212 +213 207 +213 56 +213 49 +213 284 +213 364 +213 16 +213 206 +213 796 +213 797 +213 105 +213 307 +213 474 +213 204 +214 688 +214 692 +214 243 +214 137 +214 429 +214 21 +214 56 +214 293 +214 210 +214 202 +214 206 +214 361 +214 196 +214 105 +214 438 +214 116 +214 263 +214 204 +214 503 +214 650 +214 274 +214 16 +215 592 +215 289 +215 116 +215 219 +215 198 +215 212 +215 216 +215 209 +215 363 +215 221 +215 199 +215 780 +215 642 +215 786 +215 85 +215 222 +215 401 +215 205 +215 698 +215 211 +215 218 +215 206 +215 193 +215 16 +215 518 +215 594 +216 780 +216 204 +216 599 +216 219 +216 289 +216 215 +216 212 +216 390 +216 439 +216 199 +216 221 +216 642 +216 786 +216 218 +216 16 +216 696 +216 207 +216 205 +216 105 +216 798 +217 545 +217 775 +217 243 +217 501 +217 128 +217 221 +217 204 +217 293 +217 107 +217 205 +217 105 +217 16 +217 794 +218 799 +218 154 +218 578 +218 216 +218 363 +218 199 +218 209 +218 780 +218 215 +218 599 +218 30 +218 201 +218 274 +218 629 +218 335 +218 104 +218 532 +218 105 +218 439 +218 16 +218 196 +218 204 +218 640 +219 401 +219 205 +219 725 +219 200 +219 698 +219 215 +219 695 +219 16 +219 212 +219 85 +219 472 +219 592 +219 208 +219 650 +219 211 +219 792 +219 216 +219 800 +219 222 +219 88 +219 595 +219 193 +219 696 +219 69 +219 692 +219 801 +219 289 +219 790 +219 198 +219 127 +220 390 +220 197 +220 196 +220 176 +220 802 +220 16 +221 555 +221 599 +221 786 +221 217 +221 215 +221 363 +221 199 +221 780 +221 289 +221 216 +221 647 +221 16 +222 592 +222 742 +222 803 +222 212 +222 804 +222 198 +222 85 +222 206 +222 205 +222 193 +222 594 +222 215 +222 219 +222 16 +223 549 +223 21 +223 678 +223 495 +223 805 +223 17 +224 192 +224 495 +224 806 +224 355 +224 115 +224 674 +224 17 +224 675 +225 115 +225 806 +225 17 +226 18 +226 528 +227 39 +227 23 +227 807 +227 134 +227 532 +227 18 +227 45 +227 324 +227 25 +227 410 +227 578 +227 518 +227 378 +227 368 +227 105 +227 135 +228 808 +228 50 +228 81 +228 399 +228 20 +228 241 +228 18 +228 404 +228 340 +228 52 +228 271 +228 314 +229 19 +229 454 +229 146 +230 23 +230 19 +230 298 +230 443 +230 775 +230 809 +230 137 +230 239 +230 138 +230 27 +230 613 +230 240 +230 233 +230 43 +231 240 +231 94 +231 182 +231 128 +231 243 +231 254 +231 810 +231 38 +231 346 +231 19 +231 334 +231 57 +232 19 +232 27 +233 210 +233 238 +233 444 +233 20 +233 282 +233 692 +233 243 +233 254 +233 120 +233 204 +233 71 +233 94 +233 91 +233 28 +233 74 +233 811 +233 82 +233 306 +233 812 +233 239 +233 813 +233 86 +233 70 +233 305 +233 814 +233 534 +233 19 +233 137 +233 38 +233 815 +233 76 +233 633 +233 660 +233 590 +233 439 +233 816 +233 378 +233 585 +233 711 +233 230 +233 240 +233 607 +233 235 +233 255 +233 201 +234 82 +234 19 +234 133 +234 182 +234 817 +234 131 +234 376 +235 541 +235 662 +235 305 +235 41 +235 27 +235 568 +235 233 +235 19 +235 415 +235 452 +235 458 +235 456 +235 818 +235 257 +236 19 +236 105 +237 819 +237 340 +237 316 +237 705 +237 38 +237 305 +237 585 +237 82 +237 631 +237 19 +237 633 +237 820 +237 182 +237 702 +237 269 +237 707 +237 624 +237 444 +237 821 +237 94 +237 464 +237 145 +237 196 +237 822 +237 532 +237 503 +237 168 +237 355 +237 167 +237 155 +238 27 +238 709 +238 564 +238 453 +238 823 +238 428 +238 824 +238 19 +238 513 +238 137 +238 460 +238 67 +238 41 +238 233 +238 487 +238 447 +238 25 +239 590 +239 504 +239 243 +239 230 +239 434 +239 147 +239 146 +239 143 +239 137 +239 233 +239 306 +239 812 +239 825 +239 813 +239 70 +239 330 +239 83 +239 19 +239 21 +239 165 +239 591 +240 443 +240 826 +240 776 +240 444 +240 440 +240 231 +240 43 +240 39 +240 405 +240 233 +240 23 +240 134 +240 138 +240 230 +240 248 +240 306 +240 19 +241 52 +241 81 +241 340 +241 228 +241 94 +241 484 +241 182 +241 466 +241 150 +241 243 +241 20 +241 367 +241 49 +241 456 +241 415 +241 316 +241 827 +241 145 +241 38 +241 452 +241 475 +241 269 +241 50 +241 588 +241 585 +241 46 +241 151 +241 31 +241 392 +242 828 +242 20 +242 418 +242 578 +243 396 +243 233 +243 431 +243 829 +243 830 +243 303 +243 826 +243 332 +243 81 +243 591 +243 152 +243 831 +243 214 +243 231 +243 241 +243 137 +243 239 +243 633 +243 373 +243 20 +243 588 +243 217 +243 452 +243 83 +243 150 +243 504 +243 128 +244 132 +244 378 +244 832 +244 61 +244 20 +244 470 +244 501 +244 178 +245 21 +245 39 +245 354 +245 335 +245 246 +245 250 +245 42 +245 248 +245 41 +245 50 +245 31 +246 245 +246 39 +246 362 +246 21 +246 399 +246 585 +246 157 +246 46 +246 250 +246 41 +246 23 +246 103 +247 21 +247 41 +248 331 +248 775 +248 379 +248 392 +248 52 +248 443 +248 833 +248 809 +248 834 +248 512 +248 245 +248 240 +248 555 +248 192 +248 21 +249 21 +249 306 +250 367 +250 687 +250 245 +250 252 +250 429 +250 246 +250 21 +250 702 +250 41 +250 39 +250 284 +251 333 +251 45 +251 420 +251 31 +251 204 +251 21 +251 258 +251 331 +251 437 +251 335 +251 105 +251 202 +251 56 +251 835 +252 250 +252 321 +252 122 +252 711 +252 306 +252 21 +252 107 +252 433 +253 21 +254 231 +254 677 +254 233 +254 810 +254 585 +254 334 +254 74 +254 338 +254 52 +254 38 +254 346 +254 259 +254 269 +254 21 +254 134 +255 333 +255 233 +255 21 +255 23 +255 836 +255 367 +255 837 +255 838 +255 195 +255 489 +255 125 +255 58 +255 839 +255 694 +255 277 +255 355 +255 115 +255 287 +256 269 +256 614 +256 572 +256 91 +256 612 +256 716 +256 499 +256 659 +256 769 +256 59 +256 840 +256 21 +256 841 +256 842 +257 235 +257 458 +257 354 +257 316 +257 660 +257 843 +257 568 +257 844 +257 369 +257 21 +257 51 +257 423 +258 348 +258 251 +258 201 +258 202 +258 21 +259 31 +259 50 +259 672 +259 21 +259 132 +259 45 +259 666 +259 333 +259 254 +259 200 +259 92 +259 420 +259 55 +259 472 +259 105 +259 88 +259 293 +259 305 +260 81 +260 418 +260 718 +260 845 +260 846 +260 755 +260 73 +260 41 +260 21 +260 458 +261 21 +262 23 +262 41 +262 377 +262 368 +263 23 +263 439 +263 214 +263 194 +263 196 +263 206 +263 24 +263 288 +263 203 +263 204 +263 503 +263 446 +263 107 +264 23 +264 847 +264 848 +264 447 +264 849 +264 564 +265 101 +265 23 +265 307 +265 272 +265 850 +265 39 +265 284 +265 25 +266 94 +266 598 +266 376 +266 23 +267 152 +267 140 +267 851 +267 557 +267 710 +267 852 +267 573 +267 556 +267 300 +267 503 +267 23 +267 719 +267 62 +267 185 +267 145 +267 341 +267 75 +267 76 +267 149 +268 425 +268 316 +268 368 +268 54 +268 40 +268 659 +268 657 +268 369 +268 767 +268 452 +268 365 +268 354 +268 358 +268 663 +268 395 +268 23 +268 362 +268 106 +268 853 +268 415 +268 72 +268 156 +268 568 +268 340 +269 91 +269 196 +269 80 +269 116 +269 76 +269 711 +269 49 +269 137 +269 43 +269 82 +269 52 +269 156 +269 184 +269 702 +269 854 +269 855 +269 256 +269 237 +269 241 +269 23 +269 614 +269 701 +269 254 +269 588 +269 51 +270 585 +270 815 +270 351 +270 856 +270 41 +270 38 +270 620 +270 73 +270 857 +270 829 +270 399 +270 23 +270 378 +270 816 +270 632 +270 858 +271 859 +271 860 +271 861 +271 392 +271 333 +271 750 +271 404 +271 434 +271 50 +271 228 +271 42 +271 356 +271 355 +271 200 +271 23 +271 112 +271 372 +271 314 +271 398 +271 101 +271 836 +271 164 +272 204 +272 265 +272 23 +273 501 +273 23 +273 862 +273 689 +273 355 +274 470 +274 23 +274 116 +274 594 +274 196 +274 446 +274 105 +274 208 +274 127 +274 695 +274 205 +274 80 +274 437 +274 390 +274 204 +274 49 +274 218 +274 128 +274 210 +274 593 +274 327 +274 201 +274 863 +274 439 +274 214 +274 382 +275 415 +275 864 +275 451 +275 378 +275 38 +275 279 +275 82 +275 458 +275 353 +275 23 +275 27 +276 756 +276 859 +276 388 +276 143 +276 865 +276 413 +276 591 +276 393 +276 458 +276 299 +276 866 +276 333 +276 414 +276 23 +277 23 +277 82 +277 182 +277 694 +277 323 +277 867 +277 255 +278 847 +278 824 +278 868 +278 554 +278 564 +278 869 +278 51 +278 870 +278 871 +278 848 +278 23 +279 872 +279 568 +279 415 +279 654 +279 598 +279 417 +279 275 +279 372 +279 23 +279 451 +280 372 +280 28 +280 23 +280 392 +280 70 +280 112 +280 532 +280 179 +280 671 +280 694 +281 339 +281 23 +282 67 +282 43 +282 57 +282 68 +282 485 +282 65 +282 510 +282 430 +282 90 +282 233 +282 64 +282 66 +282 426 +282 72 +282 59 +282 58 +282 427 +282 444 +282 133 +282 46 +282 23 +283 23 +283 495 +283 355 +284 729 +284 591 +284 686 +284 725 +284 434 +284 542 +284 393 +284 543 +284 23 +284 429 +284 329 +284 250 +284 92 +284 265 +284 420 +284 105 +284 200 +284 213 +285 540 +285 485 +285 24 +285 72 +285 506 +285 500 +285 90 +285 508 +286 58 +286 67 +286 24 +286 199 +286 213 +286 289 +287 25 +287 873 +287 52 +287 565 +287 346 +287 74 +287 125 +287 115 +287 874 +287 295 +287 875 +287 182 +287 367 +287 876 +287 877 +287 878 +287 879 +287 122 +287 24 +287 489 +287 839 +287 255 +288 192 +288 24 +288 263 +289 286 +289 24 +289 584 +289 401 +289 215 +289 780 +289 199 +289 216 +289 781 +289 56 +289 197 +289 221 +289 786 +289 128 +289 219 +289 116 +289 327 +289 205 +289 211 +289 196 +290 122 +290 671 +290 355 +290 693 +290 24 +290 880 +290 837 +290 694 +290 838 +290 495 +290 668 +291 446 +291 592 +291 105 +291 336 +291 204 +291 85 +291 24 +291 322 +291 725 +291 201 +291 547 +291 203 +291 205 +292 182 +292 24 +293 40 +293 414 +293 49 +293 128 +293 204 +293 214 +293 217 +293 201 +293 259 +293 24 +293 194 +293 56 +293 783 +294 24 +295 495 +295 875 +295 287 +295 24 +296 48 +296 308 +296 108 +296 182 +296 24 +296 881 +297 882 +297 131 +297 699 +297 172 +297 441 +297 584 +297 162 +297 877 +297 120 +297 24 +297 165 +298 429 +298 25 +298 590 +298 230 +298 443 +298 883 +298 884 +299 756 +299 726 +299 431 +299 140 +299 542 +299 398 +299 730 +299 332 +299 393 +299 396 +299 590 +299 276 +299 552 +299 885 +299 886 +299 410 +299 788 +299 434 +299 571 +299 887 +299 888 +299 389 +299 884 +299 729 +299 725 +299 316 +299 429 +299 25 +299 386 +299 409 +299 333 +299 143 +299 504 +300 573 +300 185 +300 392 +300 140 +300 545 +300 267 +300 25 +300 152 +300 371 +300 688 +300 414 +301 482 +301 25 +301 82 +301 849 +301 847 +301 331 +302 136 +302 25 +302 811 +303 380 +303 341 +303 42 +303 468 +303 382 +303 889 +303 243 +303 384 +303 385 +303 387 +303 890 +303 891 +303 322 +303 892 +303 128 +303 893 +303 393 +303 894 +303 895 +303 383 +303 381 +303 386 +303 896 +303 25 +303 439 +303 49 +304 27 +304 897 +304 329 +305 235 +305 237 +305 233 +305 27 +305 308 +305 676 +305 330 +305 729 +305 393 +305 520 +305 116 +305 307 +305 128 +305 438 +305 259 +306 311 +306 240 +306 249 +306 687 +306 898 +306 899 +306 900 +306 233 +306 239 +306 252 +306 749 +306 82 +306 27 +307 901 +307 265 +307 27 +307 305 +307 438 +307 116 +307 213 +307 105 +307 435 +308 34 +308 296 +308 761 +308 339 +308 658 +308 378 +308 456 +308 28 +308 844 +308 817 +308 305 +308 358 +308 534 +308 458 +308 425 +308 541 +308 881 +308 551 +308 452 +308 81 +309 413 +309 479 +309 28 +310 902 +310 29 +310 311 +310 903 +310 312 +311 312 +311 29 +311 306 +311 310 +311 135 +311 329 +311 314 +311 899 +312 904 +312 905 +312 29 +312 311 +312 906 +312 555 +312 907 +312 860 +312 310 +312 908 +312 140 +312 329 +313 795 +313 315 +313 404 +313 397 +313 712 +313 909 +313 39 +313 910 +313 457 +313 29 +313 911 +313 350 +313 132 +313 711 +313 142 +313 140 +313 378 +313 136 +313 765 +313 718 +314 458 +314 902 +314 147 +314 912 +314 527 +314 311 +314 134 +314 42 +314 523 +314 466 +314 140 +314 50 +314 29 +314 39 +314 181 +314 558 +314 438 +314 271 +314 228 +315 29 +315 795 +315 313 +315 457 +315 611 +315 348 +315 396 +315 712 +315 468 +316 368 +316 339 +316 237 +316 268 +316 354 +316 241 +316 76 +316 913 +316 52 +316 349 +316 827 +316 415 +316 495 +316 146 +316 532 +316 191 +316 914 +316 515 +316 29 +316 378 +316 54 +316 257 +316 299 +316 562 +316 66 +316 409 +316 358 +316 707 +316 662 +317 30 +317 196 +317 599 +317 49 +317 780 +317 129 +317 55 +317 322 +317 194 +317 321 +318 30 +319 30 +319 915 +320 697 +320 30 +320 323 +320 326 +320 517 +320 321 +321 916 +321 137 +321 692 +321 429 +321 252 +321 128 +321 49 +321 363 +321 697 +321 324 +321 320 +321 322 +321 317 +321 442 +321 323 +321 325 +321 30 +321 435 +321 105 +321 202 +322 303 +322 568 +322 442 +322 917 +322 291 +322 79 +322 30 +322 400 +322 317 +322 163 +322 210 +322 206 +322 446 +322 438 +322 915 +322 168 +322 164 +322 49 +322 390 +322 325 +322 439 +322 321 +322 336 +323 192 +323 30 +323 320 +323 203 +323 77 +323 697 +323 277 +323 640 +323 321 +323 326 +324 50 +324 227 +324 372 +324 666 +324 128 +324 30 +324 325 +324 55 +324 321 +325 128 +325 49 +325 324 +325 322 +325 328 +325 363 +325 30 +325 201 +325 321 +325 194 +326 30 +326 918 +326 320 +326 629 +326 323 +326 681 +327 592 +327 578 +327 49 +327 198 +327 584 +327 56 +327 289 +327 390 +327 207 +327 274 +327 629 +327 212 +327 130 +327 401 +327 85 +327 595 +327 162 +327 206 +327 176 +327 196 +327 780 +327 104 +327 197 +327 30 +328 212 +328 193 +328 363 +328 325 +328 30 +328 49 +328 85 +328 204 +329 31 +329 333 +329 311 +329 581 +329 673 +329 420 +329 54 +329 185 +329 140 +329 415 +329 284 +329 433 +329 122 +329 331 +329 543 +329 335 +329 355 +329 125 +329 312 +329 542 +329 384 +329 332 +329 304 +330 375 +330 31 +330 239 +330 881 +330 378 +330 585 +330 131 +330 919 +330 711 +330 305 +330 70 +330 38 +331 333 +331 420 +331 31 +331 248 +331 132 +331 339 +331 122 +331 54 +331 329 +331 564 +331 301 +331 336 +331 433 +331 105 +331 423 +331 543 +331 185 +331 775 +331 384 +331 827 +331 145 +331 251 +332 146 +332 412 +332 44 +332 431 +332 393 +332 243 +332 591 +332 84 +332 299 +332 407 +332 504 +332 383 +332 730 +332 386 +332 396 +332 724 +332 389 +332 920 +332 434 +332 543 +332 56 +332 143 +332 42 +332 41 +332 140 +332 905 +332 142 +332 48 +332 329 +332 157 +332 31 +332 203 +332 120 +332 39 +332 137 +332 381 +332 895 +332 893 +332 135 +333 196 +333 42 +333 336 +333 329 +333 532 +333 331 +333 543 +333 45 +333 545 +333 420 +333 372 +333 255 +333 658 +333 574 +333 861 +333 921 +333 78 +333 434 +333 251 +333 390 +333 558 +333 870 +333 105 +333 641 +333 112 +333 54 +333 335 +333 922 +333 31 +333 337 +333 364 +333 470 +333 564 +333 259 +333 200 +333 52 +333 381 +333 513 +333 299 +333 384 +333 81 +333 276 +333 466 +333 743 +333 457 +333 410 +333 140 +333 50 +333 271 +333 157 +333 104 +333 489 +334 923 +334 354 +334 368 +334 810 +334 254 +334 612 +334 924 +334 608 +334 457 +334 376 +334 231 +334 925 +334 41 +334 634 +334 31 +335 329 +335 543 +335 157 +335 333 +335 56 +335 420 +335 31 +335 105 +335 650 +335 202 +335 532 +335 245 +335 926 +335 42 +335 52 +335 204 +335 201 +335 218 +335 251 +336 40 +336 333 +336 331 +336 31 +336 908 +336 620 +336 291 +336 205 +336 79 +336 469 +336 322 +336 201 +337 927 +337 333 +337 42 +337 383 +337 433 +337 47 +337 31 +337 409 +337 356 +337 468 +337 778 +337 503 +338 134 +338 354 +338 51 +338 603 +338 638 +338 50 +338 254 +338 587 +338 42 +338 661 +338 31 +338 429 +339 928 +339 554 +339 340 +339 316 +339 354 +339 761 +339 929 +339 308 +339 281 +339 930 +339 331 +339 344 +339 565 +339 72 +339 931 +339 102 +339 545 +339 932 +339 31 +339 368 +339 484 +339 576 +339 933 +339 106 +340 237 +340 339 +340 934 +340 354 +340 228 +340 658 +340 241 +340 935 +340 135 +340 362 +340 31 +340 52 +340 365 +340 846 +340 268 +340 761 +340 51 +341 32 +341 384 +341 44 +341 936 +341 303 +341 889 +341 896 +341 891 +341 892 +341 736 +341 385 +341 393 +341 937 +341 416 +341 183 +341 62 +341 357 +341 573 +341 908 +341 267 +341 380 +341 890 +341 571 +341 938 +341 364 +341 578 +341 76 +341 382 +341 884 +341 413 +341 512 +341 389 +341 371 +342 34 +342 881 +343 34 +343 446 +343 400 +343 208 +343 698 +344 677 +344 489 +344 181 +344 568 +344 660 +344 339 +344 541 +344 939 +344 116 +344 564 +344 466 +344 415 +344 38 +344 155 +344 49 +344 549 +345 350 +345 38 +346 155 +346 418 +346 399 +346 551 +346 368 +346 375 +346 38 +346 287 +346 231 +346 254 +346 54 +347 590 +347 940 +347 941 +347 942 +347 356 +347 38 +347 943 +347 743 +347 944 +347 746 +347 945 +347 946 +347 748 +348 258 +348 38 +348 445 +348 611 +348 315 +348 202 +348 585 +349 140 +349 947 +349 523 +349 38 +349 316 +349 45 +349 69 +349 362 +350 948 +350 345 +350 313 +350 711 +350 949 +350 366 +350 38 +351 632 +351 270 +351 727 +351 134 +351 94 +351 705 +351 72 +351 58 +351 368 +351 687 +351 52 +351 38 +351 829 +351 554 +351 46 +351 870 +351 844 +351 163 +352 660 +352 588 +352 950 +352 467 +352 562 +352 455 +352 769 +352 656 +352 951 +352 654 +352 952 +352 953 +352 38 +352 76 +353 538 +353 38 +353 41 +353 568 +353 501 +353 275 +353 51 +353 954 +353 72 +353 578 +353 392 +353 841 +354 84 +354 146 +354 185 +354 338 +354 54 +354 316 +354 41 +354 140 +354 356 +354 39 +354 142 +354 415 +354 368 +354 75 +354 150 +354 930 +354 50 +354 399 +354 40 +354 46 +354 147 +354 573 +354 859 +354 340 +354 334 +354 767 +354 245 +354 42 +354 371 +354 268 +354 141 +354 505 +354 257 +354 339 +354 145 +354 365 +354 720 +354 358 +354 955 +354 51 +355 357 +355 356 +355 39 +355 956 +355 666 +355 957 +355 45 +355 958 +355 142 +355 271 +355 42 +355 40 +355 329 +355 501 +355 237 +355 41 +355 392 +355 468 +355 402 +355 290 +355 489 +355 495 +355 694 +355 693 +355 367 +355 416 +355 255 +355 273 +355 532 +355 691 +355 122 +355 959 +355 838 +355 70 +355 224 +355 668 +355 671 +355 283 +355 112 +355 874 +356 591 +356 354 +356 543 +356 407 +356 725 +356 389 +356 590 +356 945 +356 724 +356 744 +356 42 +356 399 +356 586 +356 946 +356 960 +356 747 +356 961 +356 745 +356 468 +356 392 +356 271 +356 410 +356 905 +356 470 +356 355 +356 153 +356 750 +356 39 +356 337 +356 552 +356 414 +356 347 +356 72 +357 355 +357 341 +357 889 +357 383 +357 416 +357 891 +357 39 +357 896 +358 452 +358 41 +358 369 +358 921 +358 354 +358 268 +358 378 +358 750 +358 515 +358 106 +358 308 +358 769 +358 707 +358 316 +358 962 +358 39 +358 425 +358 548 +359 40 +359 521 +359 183 +359 711 +359 765 +360 40 +360 55 +360 472 +360 56 +360 361 +361 40 +361 204 +361 193 +361 166 +361 49 +361 196 +361 201 +361 194 +361 796 +361 360 +361 214 +361 105 +361 210 +361 400 +361 436 +361 80 +361 206 +362 40 +362 340 +362 155 +362 349 +362 146 +362 246 +362 137 +362 268 +362 466 +362 69 +362 963 +362 523 +362 432 +362 544 +362 45 +362 52 +363 40 +363 49 +363 786 +363 221 +363 441 +363 199 +363 328 +363 215 +363 218 +363 325 +363 321 +363 193 +364 40 +364 148 +364 185 +364 341 +364 333 +364 144 +364 56 +364 472 +364 207 +364 213 +364 196 +365 52 +365 767 +365 954 +365 340 +365 369 +365 40 +365 268 +365 354 +365 962 +366 213 +366 51 +366 40 +366 350 +367 688 +367 250 +367 687 +367 183 +367 135 +367 50 +367 241 +367 52 +367 672 +367 48 +367 767 +367 468 +367 40 +367 470 +367 675 +367 355 +367 964 +367 495 +367 965 +367 255 +367 287 +367 532 +367 838 +367 489 +367 966 +367 693 +367 125 +367 115 +367 879 +368 268 +368 66 +368 41 +368 369 +368 354 +368 962 +368 392 +368 864 +368 262 +368 316 +368 660 +368 372 +368 50 +368 953 +368 351 +368 134 +368 51 +368 415 +368 929 +368 346 +368 334 +368 339 +368 227 +369 368 +369 358 +369 91 +369 41 +369 268 +369 257 +369 365 +369 954 +369 452 +369 72 +369 579 +370 41 +370 395 +370 872 +370 102 +370 609 +370 417 +371 145 +371 416 +371 152 +371 185 +371 503 +371 354 +371 736 +371 300 +371 41 +371 146 +371 149 +371 62 +371 341 +371 203 +372 42 +372 280 +372 368 +372 538 +372 378 +372 467 +372 279 +372 324 +372 333 +372 134 +372 41 +372 271 +372 730 +372 145 +373 704 +373 58 +373 41 +373 46 +373 243 +373 57 +373 62 +373 72 +373 429 +373 68 +374 41 +375 391 +375 330 +375 41 +375 155 +375 346 +376 266 +376 454 +376 612 +376 417 +376 608 +376 967 +376 634 +376 968 +376 610 +376 334 +376 734 +376 969 +376 397 +376 970 +376 421 +376 630 +376 403 +376 971 +376 606 +376 457 +376 872 +376 96 +376 137 +376 429 +376 94 +376 378 +376 41 +376 234 +376 73 +377 972 +377 155 +377 585 +377 445 +377 429 +377 41 +377 134 +377 882 +377 262 +377 973 +378 330 +378 244 +378 308 +378 54 +378 233 +378 73 +378 753 +378 454 +378 372 +378 42 +378 661 +378 391 +378 86 +378 313 +378 358 +378 585 +378 648 +378 316 +378 413 +378 588 +378 376 +378 148 +378 974 +378 275 +378 390 +378 975 +378 713 +378 389 +378 467 +378 41 +378 227 +378 270 +378 204 +378 750 +378 662 +378 105 +378 155 +379 833 +379 809 +379 659 +379 41 +379 248 +380 385 +380 784 +380 381 +380 42 +380 303 +380 341 +380 382 +380 976 +380 387 +381 303 +381 393 +381 504 +381 42 +381 384 +381 380 +381 143 +381 183 +381 387 +381 383 +381 382 +381 385 +381 890 +381 591 +381 730 +381 332 +381 386 +381 784 +381 413 +381 82 +381 333 +381 552 +381 892 +382 303 +382 42 +382 387 +382 784 +382 936 +382 384 +382 385 +382 383 +382 381 +382 386 +382 380 +382 977 +382 890 +382 578 +382 341 +382 593 +382 274 +383 42 +383 332 +383 384 +383 382 +383 303 +383 381 +383 386 +383 387 +383 337 +383 357 +383 504 +383 44 +383 884 +384 42 +384 341 +384 892 +384 385 +384 303 +384 383 +384 381 +384 386 +384 393 +384 938 +384 387 +384 784 +384 329 +384 409 +384 183 +384 382 +384 896 +384 543 +384 331 +384 407 +384 796 +384 333 +384 578 +384 891 +385 382 +385 890 +385 380 +385 726 +385 303 +385 341 +385 386 +385 784 +385 381 +385 393 +385 42 +385 387 +385 384 +385 896 +386 42 +386 381 +386 44 +386 385 +386 383 +386 730 +386 382 +386 299 +386 384 +386 504 +386 303 +386 332 +386 387 +387 380 +387 384 +387 382 +387 381 +387 385 +387 303 +387 383 +387 386 +387 938 +387 42 +387 144 +387 135 +387 591 +388 404 +388 276 +388 859 +388 42 +388 890 +388 83 +388 958 +388 833 +388 591 +388 396 +389 299 +389 726 +389 434 +389 410 +389 809 +389 884 +389 413 +389 633 +389 185 +389 788 +389 42 +389 431 +389 729 +389 396 +389 356 +389 378 +389 724 +389 332 +389 978 +389 885 +389 542 +389 886 +389 756 +389 552 +389 571 +389 887 +389 888 +389 341 +390 42 +390 725 +390 378 +390 333 +390 220 +390 197 +390 322 +390 49 +390 196 +390 105 +390 176 +390 116 +390 327 +390 207 +390 802 +390 446 +390 216 +390 786 +390 204 +390 56 +390 584 +390 274 +390 781 +390 194 +390 205 +391 375 +391 752 +391 657 +391 158 +391 42 +391 378 +391 458 +391 418 +391 979 +391 835 +391 106 +391 840 +392 980 +392 271 +392 538 +392 56 +392 280 +392 241 +392 248 +392 300 +392 902 +392 356 +392 368 +392 953 +392 42 +392 846 +392 353 +392 355 +393 303 +393 504 +393 332 +393 892 +393 730 +393 895 +393 893 +393 981 +393 385 +393 341 +393 42 +393 381 +393 920 +393 894 +393 976 +393 982 +393 983 +393 276 +393 439 +393 284 +393 183 +393 443 +393 384 +393 58 +393 299 +393 305 +394 135 +394 42 +395 158 +395 661 +395 753 +395 370 +395 752 +395 767 +395 42 +395 268 +395 984 +395 846 +396 745 +396 944 +396 412 +396 143 +396 299 +396 743 +396 434 +396 756 +396 504 +396 140 +396 243 +396 552 +396 410 +396 985 +396 986 +396 958 +396 890 +396 571 +396 315 +396 90 +396 42 +396 388 +396 389 +396 724 +396 466 +396 943 +396 747 +396 332 +396 187 +396 542 +396 153 +396 748 +396 72 +396 147 +396 892 +396 76 +397 313 +397 457 +397 421 +397 42 +397 135 +397 376 +397 468 +398 85 +398 976 +398 756 +398 942 +398 958 +398 299 +398 42 +398 271 +399 840 +399 354 +399 42 +399 960 +399 572 +399 356 +399 202 +399 45 +399 270 +399 46 +399 346 +399 246 +399 701 +399 228 +400 42 +400 361 +400 105 +400 574 +400 581 +400 322 +400 80 +400 79 +400 194 +400 206 +400 343 +400 210 +401 42 +401 219 +401 987 +401 130 +401 699 +401 584 +401 205 +401 212 +401 193 +401 436 +401 698 +401 80 +401 198 +401 327 +401 215 +401 802 +401 289 +401 211 +401 85 +401 441 +401 162 +401 798 +402 52 +402 988 +402 657 +402 434 +402 42 +402 905 +402 989 +402 355 +403 578 +403 697 +403 376 +403 545 +403 42 +403 968 +403 468 +404 313 +404 388 +404 573 +404 209 +404 104 +404 434 +404 271 +404 210 +404 228 +404 142 +404 677 +404 101 +404 50 +404 150 +404 42 +404 990 +405 81 +405 240 +405 429 +405 82 +405 43 +406 731 +406 407 +406 44 +406 408 +407 408 +407 332 +407 406 +407 411 +407 991 +407 356 +407 410 +407 44 +407 775 +407 552 +407 384 +407 730 +407 992 +408 406 +408 407 +408 904 +408 731 +408 409 +408 908 +408 44 +408 646 +408 775 +408 725 +409 892 +409 384 +409 431 +409 591 +409 705 +409 726 +409 408 +409 299 +409 410 +409 411 +409 44 +409 434 +409 729 +409 859 +409 316 +409 337 +410 726 +410 892 +410 993 +410 389 +410 434 +410 413 +410 299 +410 356 +410 396 +410 788 +410 543 +410 411 +410 542 +410 937 +410 407 +410 431 +410 409 +410 44 +410 227 +410 143 +410 333 +411 143 +411 407 +411 409 +411 410 +411 44 +411 540 +411 552 +411 773 +412 590 +412 943 +412 743 +412 396 +412 745 +412 44 +412 552 +412 153 +412 413 +412 332 +412 726 +412 724 +413 983 +413 884 +413 309 +413 143 +413 381 +413 410 +413 341 +413 44 +413 276 +413 590 +413 412 +413 724 +413 552 +413 389 +413 137 +413 73 +413 378 +413 52 +414 300 +414 46 +414 749 +414 276 +414 186 +414 44 +414 293 +414 356 +414 105 +414 434 +415 914 +415 316 +415 827 +415 652 +415 241 +415 106 +415 662 +415 354 +415 344 +415 549 +415 235 +415 452 +415 507 +415 275 +415 329 +415 368 +415 538 +415 279 +415 535 +415 705 +415 155 +415 568 +415 268 +415 45 +416 371 +416 185 +416 145 +416 357 +416 341 +416 851 +416 573 +416 45 +416 355 +416 203 +417 872 +417 45 +417 370 +417 750 +417 279 +417 376 +417 457 +417 612 +418 260 +418 994 +418 484 +418 605 +418 391 +418 995 +418 134 +418 523 +418 346 +418 45 +418 155 +418 242 +418 755 +419 848 +419 486 +419 808 +419 564 +419 513 +419 460 +419 45 +420 329 +420 331 +420 333 +420 251 +420 77 +420 73 +420 543 +420 574 +420 259 +420 335 +420 137 +420 105 +420 57 +420 45 +420 775 +420 284 +421 397 +421 45 +421 376 +421 609 +422 824 +422 957 +422 45 +422 996 +422 73 +422 554 +422 564 +422 447 +423 997 +423 660 +423 257 +423 72 +423 45 +423 331 +424 45 +425 268 +425 106 +425 659 +425 358 +425 308 +425 210 +425 840 +425 929 +425 430 +425 817 +425 45 +426 58 +426 59 +426 90 +426 46 +426 66 +426 69 +426 282 +426 57 +426 72 +427 90 +427 508 +427 63 +427 507 +427 998 +427 509 +427 908 +427 476 +427 864 +427 282 +427 46 +427 999 +427 71 +427 500 +427 868 +427 1000 +427 517 +428 238 +428 46 +428 146 +429 454 +429 122 +429 898 +429 298 +429 86 +429 884 +429 284 +429 299 +429 1001 +429 554 +429 460 +429 919 +429 250 +429 125 +429 377 +429 543 +429 817 +429 775 +429 214 +429 405 +429 321 +429 128 +429 71 +429 520 +429 376 +429 46 +429 186 +429 546 +429 632 +429 373 +429 1002 +429 338 +430 67 +430 497 +430 282 +430 500 +430 59 +430 499 +430 425 +430 68 +430 485 +430 65 +430 510 +430 90 +430 46 +431 756 +431 299 +431 409 +431 904 +431 135 +431 332 +431 243 +431 389 +431 892 +431 410 +431 46 +431 1003 +432 932 +432 963 +432 907 +432 1004 +432 1005 +432 860 +432 610 +432 362 +432 822 +432 46 +432 69 +433 252 +433 687 +433 543 +433 331 +433 337 +433 329 +433 927 +433 47 +433 802 +434 886 +434 571 +434 887 +434 389 +434 788 +434 726 +434 542 +434 993 +434 885 +434 552 +434 299 +434 756 +434 888 +434 884 +434 410 +434 159 +434 333 +434 404 +434 271 +434 729 +434 284 +434 748 +434 239 +434 396 +434 402 +434 332 +434 636 +434 540 +434 409 +434 724 +434 468 +434 48 +434 687 +434 414 +434 504 +435 691 +435 307 +435 116 +435 49 +435 321 +435 128 +436 49 +436 361 +436 401 +437 49 +437 274 +437 251 +437 105 +437 439 +437 130 +437 213 +437 56 +438 729 +438 204 +438 201 +438 501 +438 725 +438 49 +438 322 +438 214 +438 314 +438 552 +438 305 +438 307 +439 393 +439 233 +439 1006 +439 303 +439 105 +439 650 +439 206 +439 58 +439 194 +439 437 +439 128 +439 210 +439 216 +439 116 +439 263 +439 196 +439 322 +439 218 +439 274 +439 49 +440 240 +440 444 +440 49 +440 640 +441 882 +441 363 +441 297 +441 212 +441 699 +441 698 +441 118 +441 517 +441 806 +441 584 +441 401 +441 49 +441 198 +442 322 +442 49 +442 321 +443 809 +443 240 +443 142 +443 230 +443 775 +443 834 +443 298 +443 749 +443 137 +443 393 +443 444 +443 248 +443 504 +443 50 +443 539 +444 282 +444 233 +444 69 +444 240 +444 237 +444 443 +444 91 +444 50 +444 70 +444 440 +445 348 +445 155 +445 377 +445 586 +445 451 +445 588 +445 51 +445 461 +445 448 +445 134 +445 568 +446 51 +446 192 +446 468 +446 206 +446 274 +446 116 +446 695 +446 208 +446 390 +446 915 +446 105 +446 205 +446 594 +446 641 +446 210 +446 322 +446 193 +446 133 +446 127 +446 291 +446 343 +446 204 +446 196 +446 263 +447 264 +447 824 +447 484 +447 51 +447 73 +447 564 +447 996 +447 482 +447 1007 +447 422 +447 477 +447 238 +447 475 +447 816 +448 445 +448 134 +448 51 +449 51 +449 456 +450 459 +450 731 +450 51 +451 507 +451 445 +451 275 +451 772 +451 279 +451 500 +451 950 +451 1008 +451 662 +451 538 +451 51 +451 836 +452 688 +452 657 +452 268 +452 415 +452 654 +452 52 +452 1009 +452 455 +452 1010 +452 358 +452 515 +452 1011 +452 106 +452 914 +452 652 +452 81 +452 369 +452 235 +452 656 +452 663 +452 241 +452 137 +452 588 +452 308 +452 662 +452 243 +452 456 +453 484 +453 52 +453 238 +453 564 +453 687 +454 189 +454 623 +454 93 +454 821 +454 1012 +454 54 +454 89 +454 624 +454 625 +454 603 +454 1013 +454 622 +454 621 +454 191 +454 1014 +454 429 +454 115 +454 604 +454 376 +454 137 +454 86 +454 378 +454 704 +454 464 +454 229 +454 95 +454 52 +454 598 +454 708 +454 81 +454 578 +455 588 +455 654 +455 72 +455 515 +455 660 +455 52 +455 352 +455 188 +455 452 +456 308 +456 241 +456 449 +456 1009 +456 817 +456 761 +456 235 +456 452 +456 52 +457 313 +457 376 +457 315 +457 397 +457 417 +457 334 +457 923 +457 94 +457 135 +457 52 +457 333 +457 468 +457 96 +458 1015 +458 1001 +458 314 +458 1016 +458 603 +458 257 +458 707 +458 548 +458 632 +458 276 +458 391 +458 840 +458 52 +458 106 +458 308 +458 275 +458 235 +458 260 +459 1017 +459 700 +459 1018 +459 980 +459 1019 +459 701 +459 840 +459 137 +459 52 +459 842 +459 450 +460 757 +460 533 +460 564 +460 419 +460 554 +460 1020 +460 995 +460 471 +460 513 +460 484 +460 1021 +460 486 +460 848 +460 1022 +460 922 +460 1023 +460 477 +460 1024 +460 1025 +460 487 +460 1026 +460 1027 +460 131 +460 238 +460 429 +460 1002 +460 82 +460 52 +460 81 +461 52 +461 445 +461 632 +462 990 +462 1009 +462 1028 +462 54 +462 76 +462 818 +463 54 +464 821 +464 624 +464 774 +464 626 +464 603 +464 191 +464 89 +464 189 +464 454 +464 54 +464 1029 +464 625 +464 1013 +464 237 +465 93 +465 602 +465 54 +465 545 +466 187 +466 344 +466 69 +466 765 +466 54 +466 711 +466 76 +466 241 +466 314 +466 362 +466 74 +466 396 +466 549 +466 523 +466 333 +466 638 +466 1030 +466 1031 +467 660 +467 588 +467 770 +467 352 +467 769 +467 654 +467 952 +467 188 +467 819 +467 106 +467 468 +467 549 +467 76 +467 73 +467 135 +467 470 +467 372 +467 378 +467 1010 +467 54 +468 303 +468 208 +468 467 +468 356 +468 75 +468 101 +468 1032 +468 434 +468 130 +468 932 +468 367 +468 649 +468 116 +468 105 +468 337 +468 355 +468 315 +468 397 +468 1033 +468 457 +468 912 +468 489 +468 836 +468 403 +468 558 +468 965 +468 573 +468 55 +468 446 +468 552 +469 336 +469 55 +469 118 +470 500 +470 68 +470 810 +470 333 +470 356 +470 56 +470 116 +470 244 +470 501 +470 274 +470 61 +470 132 +470 521 +470 467 +470 200 +470 836 +470 367 +471 513 +471 757 +471 808 +471 56 +471 848 +471 460 +471 1034 +471 545 +472 360 +472 364 +472 213 +472 204 +472 212 +472 196 +472 219 +472 259 +472 696 +472 56 +472 105 +473 207 +473 196 +473 56 +474 56 +474 202 +474 201 +474 213 +475 133 +475 709 +475 65 +475 447 +475 1020 +475 1035 +475 1007 +475 241 +475 849 +475 554 +475 57 +475 483 +476 427 +476 870 +476 480 +476 485 +476 57 +476 65 +476 508 +476 62 +476 757 +476 63 +477 460 +477 996 +477 65 +477 483 +477 933 +477 1020 +477 995 +477 1036 +477 57 +477 447 +477 486 +478 57 +478 564 +479 57 +479 480 +479 1037 +479 957 +479 554 +479 309 +479 481 +479 849 +479 564 +480 57 +480 479 +480 1037 +480 957 +480 135 +480 483 +480 811 +480 476 +480 996 +480 875 +480 675 +481 134 +481 57 +481 709 +481 1038 +481 487 +481 663 +481 706 +481 691 +481 564 +481 65 +481 847 +481 1039 +481 554 +481 131 +481 479 +482 447 +482 868 +482 849 +482 57 +482 301 +482 995 +483 1040 +483 477 +483 487 +483 491 +483 522 +483 1041 +483 497 +483 607 +483 709 +483 484 +483 1042 +483 1008 +483 564 +483 499 +483 1035 +483 1043 +483 1022 +483 486 +483 995 +483 480 +483 869 +483 57 +483 65 +483 64 +483 475 +484 447 +484 486 +484 453 +484 418 +484 483 +484 709 +484 564 +484 995 +484 549 +484 57 +484 460 +484 870 +484 871 +484 1024 +484 339 +484 241 +485 90 +485 57 +485 64 +485 285 +485 68 +485 510 +485 65 +485 430 +485 67 +485 282 +485 476 +485 605 +485 60 +485 61 +485 508 +486 477 +486 565 +486 757 +486 460 +486 922 +486 483 +486 1020 +486 995 +486 513 +486 484 +486 848 +486 1023 +486 419 +486 1036 +486 57 +487 134 +487 564 +487 757 +487 1026 +487 481 +487 483 +487 460 +487 1044 +487 238 +487 1045 +487 57 +488 58 +489 344 +489 333 +489 468 +489 495 +489 163 +489 367 +489 58 +489 874 +489 255 +489 694 +489 675 +489 195 +489 689 +489 355 +489 878 +489 287 +489 1046 +490 67 +490 491 +490 58 +490 170 +491 497 +491 483 +491 607 +491 522 +491 1041 +491 632 +491 490 +491 517 +491 58 +491 67 +492 58 +492 70 +492 166 +493 58 +494 58 +495 316 +495 224 +495 355 +495 223 +495 806 +495 295 +495 874 +495 489 +495 689 +495 367 +495 283 +495 1047 +495 875 +495 668 +495 878 +495 694 +495 70 +495 58 +495 290 +496 59 +496 979 +497 491 +497 430 +497 607 +497 483 +497 1041 +497 59 +498 1048 +498 764 +498 700 +498 979 +498 499 +498 59 +499 483 +499 430 +499 1001 +499 1049 +499 256 +499 498 +499 701 +499 59 +500 68 +500 470 +500 607 +500 539 +500 430 +500 506 +500 451 +500 537 +500 72 +500 61 +500 507 +500 562 +500 730 +500 427 +500 285 +500 69 +500 508 +501 353 +501 660 +501 273 +501 643 +501 132 +501 470 +501 244 +501 355 +501 171 +501 638 +501 821 +501 438 +501 549 +501 217 +501 61 +501 818 +501 104 +502 61 +503 105 +503 62 +503 371 +503 505 +503 573 +503 203 +503 651 +503 214 +503 204 +503 263 +503 267 +503 237 +503 337 +503 192 +504 74 +504 381 +504 1050 +504 239 +504 443 +504 730 +504 393 +504 62 +504 893 +504 892 +504 140 +504 143 +504 981 +504 383 +504 332 +504 386 +504 920 +504 396 +504 434 +504 142 +504 724 +504 726 +504 895 +504 135 +504 833 +504 549 +504 243 +504 299 +504 552 +505 354 +505 736 +505 503 +505 140 +505 146 +505 573 +505 741 +505 74 +505 149 +505 62 +506 69 +506 525 +506 509 +506 63 +506 500 +506 64 +506 285 +507 147 +507 72 +507 427 +507 509 +507 63 +507 890 +507 607 +507 451 +507 562 +507 540 +507 415 +507 500 +507 90 +507 517 +507 999 +507 942 +508 427 +508 511 +508 755 +508 476 +508 485 +508 63 +508 607 +508 718 +508 285 +508 509 +508 71 +508 500 +509 427 +509 521 +509 506 +509 1050 +509 507 +509 508 +509 712 +509 69 +509 63 +510 282 +510 64 +510 68 +510 65 +510 430 +510 90 +510 485 +510 72 +511 508 +511 65 +511 68 +511 72 +511 71 +512 698 +512 908 +512 904 +512 1051 +512 889 +512 775 +512 809 +512 65 +512 834 +512 341 +512 248 +512 896 +512 833 +512 198 +512 992 +513 848 +513 808 +513 471 +513 757 +513 460 +513 333 +513 1034 +513 238 +513 65 +513 564 +513 486 +513 419 +514 1052 +514 65 +515 66 +515 316 +515 455 +515 452 +515 358 +515 771 +516 67 +517 427 +517 507 +517 118 +517 441 +517 491 +517 67 +517 320 +518 592 +518 227 +518 594 +518 193 +518 600 +518 601 +518 85 +518 88 +518 599 +518 532 +518 215 +518 67 +518 836 +519 67 +520 68 +520 429 +520 137 +520 82 +520 305 +521 509 +521 765 +521 359 +521 69 +521 711 +521 578 +521 1016 +521 470 +521 529 +522 483 +522 607 +522 491 +522 69 +523 69 +523 822 +523 349 +523 1053 +523 765 +523 362 +523 528 +523 314 +523 418 +523 570 +523 466 +523 546 +524 135 +524 69 +524 578 +525 69 +525 506 +526 69 +527 902 +527 529 +527 314 +527 558 +527 912 +527 69 +527 1054 +528 73 +528 765 +528 822 +528 523 +528 549 +528 226 +528 69 +529 558 +529 521 +529 903 +529 527 +529 69 +530 70 +530 950 +531 70 +531 881 +532 333 +532 705 +532 316 +532 227 +532 335 +532 237 +532 687 +532 1055 +532 182 +532 831 +532 110 +532 280 +532 680 +532 367 +532 113 +532 70 +532 167 +532 218 +532 117 +532 120 +532 168 +532 518 +532 355 +532 654 +533 460 +533 757 +533 612 +533 71 +533 136 +534 72 +534 233 +534 308 +535 72 +535 1056 +535 415 +536 72 +536 131 +537 72 +537 500 +538 353 +538 372 +538 72 +538 451 +538 415 +538 950 +538 1057 +538 392 +538 106 +539 500 +539 443 +539 72 +540 285 +540 72 +540 507 +540 150 +540 434 +540 411 +541 235 +541 344 +541 72 +541 549 +541 308 +541 1009 +542 284 +542 756 +542 389 +542 725 +542 434 +542 726 +542 552 +542 299 +542 729 +542 410 +542 888 +542 833 +542 72 +542 396 +542 886 +542 329 +543 558 +543 617 +543 73 +543 356 +543 581 +543 420 +543 721 +543 333 +543 335 +543 122 +543 433 +543 687 +543 332 +543 429 +543 329 +543 331 +543 384 +543 284 +543 410 +543 1034 +543 709 +544 73 +544 362 +545 581 +545 122 +545 709 +545 200 +545 300 +545 105 +545 73 +545 333 +545 721 +545 641 +545 217 +545 135 +545 471 +545 403 +545 339 +545 465 +546 523 +546 1053 +546 429 +546 1058 +546 73 +546 569 +547 132 +547 73 +547 291 +548 358 +548 458 +548 73 +549 74 +549 186 +549 831 +549 568 +549 466 +549 181 +549 467 +549 415 +549 564 +549 541 +549 660 +549 504 +549 223 +549 528 +549 1059 +549 484 +549 551 +549 765 +549 816 +549 344 +549 501 +550 74 +551 765 +551 183 +551 74 +551 549 +551 346 +551 308 +552 726 +552 468 +552 434 +552 885 +552 542 +552 886 +552 756 +552 788 +552 571 +552 887 +552 888 +552 389 +552 299 +552 729 +552 725 +552 413 +552 730 +552 590 +552 407 +552 504 +552 356 +552 381 +552 396 +552 411 +552 74 +552 412 +552 438 +552 884 +553 76 +553 568 +553 1060 +553 663 +553 74 +553 1061 +553 853 +554 869 +554 928 +554 849 +554 1062 +554 1007 +554 479 +554 565 +554 709 +554 824 +554 868 +554 564 +554 422 +554 475 +554 278 +554 137 +554 460 +554 429 +554 339 +554 481 +554 351 +554 74 +554 101 +554 81 +555 221 +555 312 +555 860 +555 248 +555 833 +555 687 +555 1063 +555 1009 +555 775 +555 592 +555 834 +555 74 +555 124 +556 75 +556 573 +556 267 +556 144 +557 152 +557 573 +557 75 +557 721 +557 267 +557 720 +558 912 +558 903 +558 543 +558 1054 +558 314 +558 902 +558 529 +558 527 +558 75 +558 333 +558 468 +559 185 +559 152 +559 75 +559 144 +559 741 +560 75 +560 1064 +560 212 +561 912 +561 902 +561 1054 +561 1065 +561 860 +561 1066 +561 75 +562 588 +562 654 +562 507 +562 500 +562 660 +562 568 +562 316 +562 188 +562 769 +562 76 +562 677 +562 578 +562 352 +563 76 +563 182 +563 172 +563 165 +563 168 +563 120 +563 121 +564 996 +564 869 +564 554 +564 460 +564 995 +564 453 +564 549 +564 762 +564 344 +564 868 +564 824 +564 849 +564 578 +564 238 +564 848 +564 278 +564 484 +564 709 +564 333 +564 76 +564 331 +564 447 +564 957 +564 419 +564 478 +564 487 +564 808 +564 481 +564 264 +564 479 +564 422 +564 483 +564 660 +564 513 +564 1026 +565 136 +565 486 +565 816 +565 339 +565 554 +565 133 +565 287 +565 76 +565 824 +565 1038 +566 183 +566 567 +566 76 +566 882 +566 190 +567 183 +567 187 +567 566 +567 190 +567 76 +567 87 +568 353 +568 656 +568 279 +568 135 +568 344 +568 76 +568 553 +568 549 +568 257 +568 598 +568 1061 +568 562 +568 235 +568 94 +568 415 +568 322 +568 660 +568 954 +568 268 +568 445 +569 76 +569 185 +569 546 +569 119 +569 669 +569 124 +569 117 +569 114 +569 110 +569 120 +570 523 +570 76 +571 341 +571 595 +571 888 +571 885 +571 886 +571 788 +571 552 +571 756 +571 434 +571 299 +571 887 +571 726 +571 389 +571 396 +571 76 +572 76 +572 612 +572 399 +572 960 +572 980 +572 184 +572 256 +572 659 +573 146 +573 140 +573 300 +573 267 +573 185 +573 145 +573 503 +573 557 +573 404 +573 84 +573 354 +573 416 +573 190 +573 147 +573 148 +573 505 +573 150 +573 710 +573 341 +573 851 +573 203 +573 556 +573 76 +573 149 +573 152 +573 468 +574 333 +574 420 +574 92 +574 77 +574 400 +575 78 +576 136 +576 339 +576 79 +577 79 +577 80 +578 142 +578 80 +578 1067 +578 1068 +578 611 +578 403 +578 1069 +578 671 +578 524 +578 656 +578 382 +578 1070 +578 211 +578 521 +578 189 +578 603 +578 185 +578 604 +578 150 +578 659 +578 341 +578 1071 +578 327 +578 353 +578 811 +578 227 +578 866 +578 891 +578 242 +578 218 +578 562 +578 188 +578 564 +578 105 +578 384 +578 715 +578 454 +579 80 +579 369 +579 184 +579 844 +580 80 +580 186 +581 686 +581 545 +581 543 +581 329 +581 400 +581 80 +582 80 +582 101 +582 757 +583 80 +584 289 +584 162 +584 327 +584 198 +584 401 +584 161 +584 176 +584 806 +584 297 +584 780 +584 177 +584 171 +584 699 +584 441 +584 80 +584 390 +585 663 +585 237 +585 270 +585 378 +585 377 +585 81 +585 348 +585 137 +585 677 +585 706 +585 155 +585 691 +585 254 +585 983 +585 700 +585 134 +585 131 +585 246 +585 241 +585 233 +585 330 +586 356 +586 445 +586 134 +586 135 +586 81 +586 202 +586 155 +586 883 +586 638 +587 1031 +587 81 +587 338 +587 1072 +588 82 +588 952 +588 106 +588 455 +588 654 +588 953 +588 770 +588 769 +588 656 +588 660 +588 352 +588 951 +588 655 +588 467 +588 562 +588 188 +588 819 +588 772 +588 1073 +588 137 +588 445 +588 243 +588 241 +588 954 +588 378 +588 452 +588 269 +588 687 +588 81 +589 662 +589 187 +589 82 +590 940 +590 356 +590 412 +590 743 +590 747 +590 945 +590 744 +590 961 +590 946 +590 748 +590 724 +590 591 +590 347 +590 153 +590 239 +590 756 +590 83 +590 413 +590 233 +590 299 +590 552 +590 143 +590 730 +590 298 +591 284 +591 142 +591 724 +591 945 +591 381 +591 409 +591 239 +591 276 +591 84 +591 726 +591 590 +591 143 +591 744 +591 388 +591 332 +591 243 +591 356 +591 153 +591 725 +591 743 +591 387 +591 746 +592 1074 +592 222 +592 595 +592 291 +592 650 +592 193 +592 215 +592 594 +592 85 +592 327 +592 895 +592 555 +592 725 +592 518 +592 219 +593 1075 +593 745 +593 116 +593 1076 +593 382 +593 85 +593 695 +593 274 +594 592 +594 193 +594 274 +594 600 +594 88 +594 518 +594 85 +594 198 +594 648 +594 204 +594 599 +594 601 +594 205 +594 446 +594 222 +594 215 +594 127 +594 695 +595 592 +595 571 +595 725 +595 85 +595 219 +595 327 +596 105 +596 209 +596 200 +596 85 +596 208 +596 742 +596 786 +597 86 +597 94 +597 598 +598 86 +598 708 +598 1032 +598 94 +598 715 +598 279 +598 135 +598 925 +598 621 +598 1077 +598 597 +598 568 +598 98 +598 654 +598 1062 +598 623 +598 741 +598 953 +598 100 +598 603 +598 454 +598 266 +599 196 +599 216 +599 88 +599 317 +599 221 +599 786 +599 518 +599 594 +599 193 +599 601 +599 218 +599 780 +600 742 +600 725 +600 193 +600 518 +600 594 +600 88 +600 965 +601 1046 +601 518 +601 594 +601 88 +601 599 +601 193 +602 93 +602 89 +602 465 +602 99 +602 623 +602 189 +602 622 +602 183 +603 454 +603 93 +603 621 +603 855 +603 458 +603 89 +603 578 +603 741 +603 598 +603 630 +603 338 +603 90 +603 186 +603 464 +604 621 +604 183 +604 90 +604 89 +604 454 +604 578 +605 90 +605 418 +605 485 +606 135 +606 94 +606 872 +606 376 +606 90 +607 507 +607 134 +607 522 +607 483 +607 1041 +607 497 +607 491 +607 90 +607 508 +607 233 +607 500 +608 924 +608 634 +608 985 +608 376 +608 334 +608 90 +609 421 +609 370 +609 872 +609 90 +610 432 +610 822 +610 1078 +610 967 +610 96 +610 612 +610 1079 +610 90 +610 376 +611 91 +611 131 +611 578 +611 315 +611 348 +611 1001 +611 614 +612 968 +612 376 +612 1080 +612 96 +612 572 +612 1081 +612 136 +612 985 +612 610 +612 923 +612 334 +612 1082 +612 1083 +612 417 +612 1084 +612 256 +612 533 +612 91 +613 230 +613 91 +613 1019 +614 854 +614 256 +614 91 +614 700 +614 131 +614 269 +614 611 +614 103 +615 91 +616 92 +617 543 +617 92 +617 1085 +617 132 +617 200 +618 92 +619 92 +620 270 +620 92 +620 336 +621 604 +621 737 +621 454 +621 598 +621 93 +621 603 +622 623 +622 454 +622 191 +622 1013 +622 602 +622 189 +622 93 +623 93 +623 602 +623 454 +623 189 +623 598 +623 622 +624 454 +624 464 +624 237 +624 821 +624 93 +625 183 +625 454 +625 677 +625 464 +625 93 +626 93 +626 464 +627 93 +627 636 +627 98 +628 93 +629 683 +629 198 +629 640 +629 118 +629 218 +629 207 +629 93 +629 327 +629 326 +630 94 +630 872 +630 376 +630 603 +631 94 +631 237 +632 351 +632 458 +632 94 +632 95 +632 461 +632 429 +632 491 +632 270 +633 163 +633 94 +633 389 +633 730 +633 859 +633 237 +633 233 +633 143 +633 243 +634 608 +634 985 +634 924 +634 96 +634 872 +634 969 +634 1078 +634 334 +634 376 +635 98 +636 737 +636 627 +636 98 +636 1014 +636 434 +637 101 +638 677 +638 132 +638 501 +638 101 +638 186 +638 466 +638 338 +638 586 +639 103 +639 186 +640 629 +640 323 +640 104 +640 440 +640 218 +641 200 +641 105 +641 643 +641 129 +641 642 +641 646 +641 645 +641 333 +641 545 +641 446 +642 105 +642 200 +642 643 +642 641 +642 116 +642 216 +642 215 +642 198 +642 210 +643 641 +643 501 +643 105 +643 200 +643 645 +643 129 +643 642 +644 105 +645 641 +645 200 +645 105 +645 643 +646 408 +646 200 +646 105 +646 641 +647 127 +647 105 +647 787 +647 783 +647 198 +647 786 +647 221 +647 200 +648 378 +648 792 +648 116 +648 594 +648 208 +648 205 +648 127 +648 695 +648 105 +649 660 +649 142 +649 140 +649 158 +649 773 +649 468 +649 783 +649 105 +649 199 +649 127 +649 194 +650 592 +650 775 +650 335 +650 219 +650 201 +650 696 +650 698 +650 214 +650 105 +650 439 +651 503 +651 1086 +651 105 +652 415 +652 452 +652 106 +653 853 +653 106 +654 660 +654 455 +654 588 +654 770 +654 352 +654 769 +654 656 +654 467 +654 562 +654 188 +654 772 +654 452 +654 106 +654 598 +654 279 +654 532 +655 588 +655 106 +656 568 +656 654 +656 588 +656 578 +656 106 +656 452 +656 769 +656 953 +656 352 +657 825 +657 402 +657 391 +657 979 +657 846 +657 661 +657 268 +657 106 +657 452 +657 752 +658 333 +658 935 +658 1087 +658 1088 +658 987 +658 106 +658 1089 +658 340 +658 308 +659 853 +659 425 +659 268 +659 379 +659 572 +659 578 +659 106 +659 256 +660 455 +660 588 +660 352 +660 769 +660 654 +660 467 +660 562 +660 188 +660 772 +660 344 +660 501 +660 649 +660 1060 +660 257 +660 368 +660 423 +660 962 +660 233 +660 664 +660 549 +660 568 +660 564 +660 106 +660 677 +661 754 +661 158 +661 1084 +661 752 +661 704 +661 984 +661 106 +661 657 +661 338 +661 395 +661 378 +662 415 +662 316 +662 451 +662 715 +662 589 +662 137 +662 235 +662 452 +662 156 +662 106 +662 378 +663 585 +663 481 +663 706 +663 691 +663 106 +663 553 +663 1090 +663 268 +663 452 +663 134 +663 188 +664 660 +664 1091 +664 106 +665 990 +665 106 +666 107 +666 355 +666 324 +666 259 +667 107 +668 115 +668 355 +668 290 +668 495 +668 107 +668 880 +668 694 +669 179 +669 114 +669 119 +669 569 +669 120 +669 110 +670 112 +671 578 +671 836 +671 112 +671 355 +671 195 +671 290 +671 280 +671 778 +671 1092 +672 130 +672 367 +672 113 +672 210 +672 259 +673 329 +673 115 +674 224 +674 115 +675 367 +675 875 +675 480 +675 1047 +675 195 +675 694 +675 489 +675 224 +675 115 +676 305 +676 116 +676 210 +677 344 +677 254 +677 155 +677 585 +677 213 +677 116 +677 404 +677 131 +677 638 +677 660 +677 625 +677 562 +678 223 +678 116 +678 196 +679 116 +680 1093 +680 128 +680 211 +680 532 +680 116 +681 326 +681 116 +682 136 +682 117 +683 629 +683 118 +684 126 +684 118 +685 120 +686 122 +686 581 +686 284 +687 367 +687 306 +687 555 +687 1007 +687 433 +687 250 +687 704 +687 122 +687 703 +687 351 +687 199 +687 543 +687 692 +687 588 +687 532 +687 156 +687 698 +687 1067 +687 1001 +687 453 +687 434 +688 300 +688 367 +688 452 +688 884 +688 122 +688 214 +689 122 +689 495 +689 273 +689 489 +689 694 +690 124 +691 975 +691 706 +691 663 +691 134 +691 585 +691 853 +691 481 +691 196 +691 168 +691 355 +691 435 +691 124 +692 321 +692 233 +692 884 +692 214 +692 125 +692 149 +692 200 +692 219 +692 687 +693 135 +693 1086 +693 355 +693 290 +693 125 +693 367 +694 1094 +694 489 +694 355 +694 495 +694 290 +694 255 +694 689 +694 675 +694 277 +694 195 +694 280 +694 668 +694 125 +695 696 +695 219 +695 206 +695 593 +695 446 +695 127 +695 198 +695 274 +695 648 +695 196 +695 594 +695 786 +696 695 +696 127 +696 650 +696 216 +696 472 +696 219 +697 403 +697 775 +697 320 +697 790 +697 321 +697 323 +697 128 +698 512 +698 192 +698 401 +698 211 +698 130 +698 198 +698 790 +698 797 +698 212 +698 215 +698 207 +698 650 +698 219 +698 801 +698 687 +698 441 +698 343 +698 205 +698 210 +699 441 +699 130 +699 162 +699 584 +699 297 +699 1095 +699 401 +699 806 +699 987 +699 879 +700 183 +700 840 +700 459 +700 131 +700 585 +700 498 +700 614 +701 399 +701 459 +701 131 +701 840 +701 1096 +701 269 +701 499 +702 237 +702 269 +702 250 +702 131 +702 156 +703 783 +703 687 +703 131 +704 687 +704 454 +704 775 +704 661 +704 373 +704 131 +705 237 +705 415 +705 409 +705 532 +705 194 +705 996 +705 1097 +705 134 +705 351 +706 481 +706 663 +706 691 +706 994 +706 585 +706 134 +706 847 +706 1098 +706 1043 +706 1038 +706 1039 +706 755 +707 853 +707 1010 +707 825 +707 458 +707 954 +707 316 +707 237 +707 358 +707 134 +708 598 +708 134 +708 454 +709 545 +709 134 +709 481 +709 816 +709 1038 +709 1035 +709 483 +709 484 +709 475 +709 1098 +709 238 +709 564 +709 849 +709 554 +709 543 +710 573 +710 267 +710 721 +710 851 +710 135 +710 733 +710 732 +711 137 +711 359 +711 252 +711 269 +711 313 +711 186 +711 861 +711 1050 +711 521 +711 350 +711 466 +711 135 +711 330 +711 233 +711 900 +712 135 +712 795 +712 313 +712 315 +712 509 +713 135 +713 378 +714 1099 +714 135 +714 988 +715 662 +715 183 +715 950 +715 598 +715 135 +715 578 +716 256 +716 136 +717 136 +718 812 +718 260 +718 508 +718 136 +718 313 +719 908 +719 140 +719 267 +719 148 +719 141 +720 557 +720 140 +720 354 +720 147 +721 149 +721 543 +721 557 +721 545 +721 140 +721 710 +722 140 +723 142 +723 737 +723 141 +723 152 +723 143 +724 945 +724 744 +724 591 +724 183 +724 940 +724 504 +724 332 +724 434 +724 389 +724 747 +724 413 +724 356 +724 590 +724 986 +724 1100 +724 958 +724 396 +724 941 +724 746 +724 946 +724 412 +724 142 +725 726 +725 219 +725 356 +725 291 +725 592 +725 729 +725 595 +725 798 +725 199 +725 438 +725 600 +725 284 +725 787 +725 143 +725 591 +725 730 +725 542 +725 552 +725 299 +725 390 +725 408 +726 729 +726 725 +726 434 +726 183 +726 552 +726 542 +726 389 +726 299 +726 385 +726 410 +726 978 +726 885 +726 886 +726 756 +726 788 +726 571 +726 887 +726 888 +726 504 +726 591 +726 409 +726 143 +726 412 +727 143 +727 351 +728 731 +728 992 +728 1003 +728 976 +728 143 +729 434 +729 725 +729 542 +729 284 +729 552 +729 438 +729 726 +729 389 +729 299 +729 143 +729 409 +729 859 +729 305 +730 393 +730 756 +730 407 +730 983 +730 386 +730 945 +730 633 +730 725 +730 299 +730 504 +730 590 +730 982 +730 552 +730 500 +730 332 +730 381 +730 143 +730 981 +730 372 +731 974 +731 728 +731 1003 +731 406 +731 408 +731 992 +731 450 +731 143 +732 144 +732 710 +733 144 +733 710 +734 821 +734 376 +734 144 +735 152 +735 145 +736 371 +736 185 +736 505 +736 937 +736 145 +736 341 +737 621 +737 723 +737 152 +737 636 +737 146 +737 149 +738 147 +738 793 +739 152 +739 147 +740 152 +741 157 +741 598 +741 603 +741 505 +741 152 +741 559 +742 185 +742 222 +742 152 +742 965 +742 596 +742 600 +743 748 +743 945 +743 153 +743 396 +743 590 +743 944 +743 746 +743 333 +743 412 +743 347 +743 591 +744 746 +744 945 +744 745 +744 356 +744 590 +744 153 +744 783 +744 724 +744 591 +744 748 +745 412 +745 940 +745 744 +745 748 +745 945 +745 153 +745 356 +745 746 +745 396 +745 593 +746 945 +746 744 +746 745 +746 591 +746 743 +746 347 +746 748 +746 153 +746 724 +747 590 +747 356 +747 396 +747 724 +747 153 +748 746 +748 744 +748 940 +748 743 +748 347 +748 745 +748 396 +748 434 +748 1075 +748 153 +748 590 +749 306 +749 414 +749 157 +749 443 +750 271 +750 358 +750 872 +750 417 +750 356 +750 158 +750 378 +751 158 +752 657 +752 158 +752 661 +752 391 +752 395 +753 395 +753 754 +753 158 +753 378 +754 812 +754 158 +754 753 +754 661 +755 508 +755 158 +755 260 +755 418 +755 706 +756 434 +756 276 +756 730 +756 431 +756 590 +756 299 +756 542 +756 885 +756 886 +756 788 +756 552 +756 571 +756 726 +756 887 +756 888 +756 389 +756 398 +756 396 +756 775 +756 159 +757 460 +757 1045 +757 160 +757 471 +757 1027 +757 808 +757 513 +757 486 +757 1101 +757 1020 +757 533 +757 1025 +757 848 +757 487 +757 1026 +757 582 +757 476 +758 160 +759 160 +760 163 +761 456 +761 935 +761 339 +761 340 +761 930 +761 308 +761 176 +762 564 +762 182 +763 182 +764 183 +764 498 +764 1048 +765 521 +765 466 +765 795 +765 523 +765 822 +765 551 +765 528 +765 1102 +765 183 +765 1053 +765 359 +765 549 +765 313 +766 183 +766 187 +766 774 +767 365 +767 268 +767 185 +767 367 +767 395 +767 354 +768 1103 +768 186 +769 188 +769 770 +769 467 +769 953 +769 660 +769 588 +769 352 +769 656 +769 654 +769 562 +769 358 +769 256 +770 819 +770 654 +770 588 +770 975 +770 769 +770 467 +770 188 +770 1073 +771 515 +771 1104 +771 953 +771 188 +772 188 +772 588 +772 654 +772 451 +772 660 +772 819 +773 976 +773 189 +773 411 +773 649 +774 896 +774 189 +774 464 +774 766 +775 833 +775 248 +775 704 +775 650 +775 331 +775 192 +775 884 +775 193 +775 443 +775 809 +775 512 +775 555 +775 834 +775 429 +775 756 +775 198 +775 217 +775 230 +775 408 +775 407 +775 420 +775 697 +776 240 +776 192 +777 196 +777 194 +778 337 +778 195 +778 671 +779 196 +780 317 +780 216 +780 199 +780 584 +780 196 +780 198 +780 289 +780 599 +780 221 +780 215 +780 786 +780 218 +780 197 +780 327 +781 390 +781 196 +781 211 +781 289 +782 197 +783 703 +783 744 +783 293 +783 205 +783 649 +783 647 +783 198 +783 786 +784 890 +784 936 +784 885 +784 380 +784 895 +784 382 +784 385 +784 381 +784 891 +784 384 +784 199 +785 199 +786 221 +786 363 +786 215 +786 599 +786 199 +786 780 +786 289 +786 216 +786 596 +786 647 +786 783 +786 390 +786 695 +787 725 +787 647 +787 200 +788 434 +788 885 +788 886 +788 756 +788 571 +788 887 +788 888 +788 552 +788 200 +788 389 +788 410 +788 726 +788 299 +789 203 +790 698 +790 697 +790 204 +790 219 +791 204 +792 648 +792 212 +792 219 +792 208 +792 211 +792 205 +793 1067 +793 1069 +793 1005 +793 1105 +793 1078 +793 212 +793 213 +793 738 +794 809 +794 212 +794 217 +795 315 +795 712 +795 765 +795 313 +795 1066 +795 903 +795 212 +796 384 +796 213 +796 361 +797 698 +797 213 +798 725 +798 216 +798 401 +799 218 +799 926 +800 219 +801 698 +801 219 +802 433 +802 401 +802 390 +802 1106 +802 220 +803 222 +804 222 +805 223 +806 224 +806 495 +806 699 +806 225 +806 584 +806 441 +807 850 +807 227 +808 471 +808 513 +808 228 +808 1097 +808 564 +808 848 +808 757 +808 1034 +808 419 +808 1023 +809 443 +809 248 +809 775 +809 833 +809 834 +809 379 +809 512 +809 389 +809 230 +809 794 +810 470 +810 254 +810 334 +810 231 +811 233 +811 1037 +811 302 +811 480 +811 957 +811 578 +812 754 +812 718 +812 846 +812 233 +812 239 +813 233 +813 239 +814 233 +814 825 +815 270 +815 233 +816 849 +816 847 +816 447 +816 549 +816 823 +816 233 +816 565 +816 270 +816 709 +817 429 +817 234 +817 308 +817 456 +817 425 +818 990 +818 462 +818 501 +818 235 +819 770 +819 953 +819 1058 +819 952 +819 467 +819 772 +819 588 +819 237 +820 853 +820 237 +821 734 +821 464 +821 501 +821 237 +821 454 +821 624 +822 765 +822 610 +822 432 +822 523 +822 1053 +822 528 +822 237 +823 238 +823 816 +824 565 +824 1036 +824 422 +824 554 +824 238 +824 564 +824 870 +824 868 +824 447 +824 278 +824 1107 +825 707 +825 239 +825 657 +825 814 +826 240 +826 243 +827 415 +827 316 +827 241 +827 331 +828 242 +828 1062 +829 270 +829 243 +829 351 +830 243 +831 549 +831 243 +831 976 +831 532 +832 244 +833 775 +833 809 +833 379 +833 248 +833 834 +833 512 +833 388 +833 542 +833 908 +833 504 +833 555 +834 443 +834 248 +834 775 +834 833 +834 809 +834 555 +834 1108 +834 512 +835 391 +835 251 +836 1109 +836 859 +836 468 +836 470 +836 451 +836 1010 +836 271 +836 255 +836 1110 +836 671 +836 1111 +836 518 +837 838 +837 255 +837 290 +837 880 +838 255 +838 367 +838 837 +838 355 +838 290 +839 255 +839 287 +840 459 +840 425 +840 700 +840 701 +840 980 +840 399 +840 256 +840 458 +840 391 +841 256 +841 353 +842 459 +842 256 +843 257 +844 308 +844 579 +844 257 +844 351 +845 260 +846 392 +846 340 +846 812 +846 657 +846 260 +846 395 +847 1098 +847 1043 +847 1035 +847 1039 +847 278 +847 301 +847 264 +847 816 +847 481 +847 706 +848 757 +848 471 +848 1045 +848 808 +848 460 +848 564 +848 264 +848 513 +848 419 +848 278 +848 1098 +848 486 +848 1034 +849 301 +849 482 +849 564 +849 1035 +849 264 +849 475 +849 1043 +849 816 +849 554 +849 709 +849 1037 +849 479 +849 1098 +850 807 +850 265 +851 710 +851 416 +851 267 +851 573 +852 267 +853 659 +853 707 +853 653 +853 929 +853 691 +853 820 +853 268 +853 553 +854 614 +854 869 +854 269 +855 603 +855 1112 +855 871 +855 923 +855 269 +855 868 +855 869 +856 270 +857 270 +858 270 +859 388 +859 276 +859 354 +859 1113 +859 271 +859 729 +859 409 +859 633 +859 836 +860 271 +860 963 +860 432 +860 1005 +860 312 +860 907 +860 555 +860 561 +861 1050 +861 271 +861 989 +861 333 +861 988 +861 711 +862 273 +863 274 +864 368 +864 275 +864 427 +865 976 +865 1113 +865 276 +866 578 +866 276 +867 277 +868 564 +868 554 +868 278 +868 869 +868 824 +868 1112 +868 855 +868 870 +868 482 +868 427 +869 1112 +869 868 +869 564 +869 855 +869 278 +869 854 +869 483 +869 554 +870 1035 +870 476 +870 824 +870 868 +870 871 +870 333 +870 278 +870 1114 +870 484 +870 1038 +870 351 +871 855 +871 870 +871 278 +871 484 +872 370 +872 417 +872 634 +872 279 +872 609 +872 750 +872 630 +872 606 +872 376 +873 287 +874 489 +874 495 +874 287 +874 1115 +874 355 +875 675 +875 480 +875 295 +875 287 +875 495 +876 287 +877 297 +877 287 +878 489 +878 287 +878 495 +878 1095 +879 367 +879 287 +879 699 +880 668 +880 837 +880 290 +881 330 +881 308 +881 342 +881 296 +881 531 +882 377 +882 566 +882 297 +882 441 +883 298 +883 586 +884 434 +884 299 +884 688 +884 429 +884 389 +884 383 +884 552 +884 775 +884 692 +884 341 +884 1116 +884 298 +884 413 +885 784 +885 552 +885 726 +885 886 +885 756 +885 788 +885 434 +885 571 +885 887 +885 888 +885 389 +885 299 +886 885 +886 542 +886 756 +886 788 +886 434 +886 552 +886 571 +886 726 +886 887 +886 888 +886 389 +886 299 +887 885 +887 886 +887 756 +887 788 +887 434 +887 552 +887 571 +887 726 +887 888 +887 389 +887 299 +888 756 +888 885 +888 886 +888 788 +888 571 +888 887 +888 542 +888 434 +888 552 +888 726 +888 389 +888 299 +889 896 +889 936 +889 891 +889 341 +889 303 +889 512 +889 357 +890 341 +890 385 +890 303 +890 507 +890 1117 +890 382 +890 381 +890 784 +890 388 +890 396 +890 978 +891 341 +891 907 +891 889 +891 896 +891 303 +891 357 +891 784 +891 578 +891 384 +892 431 +892 504 +892 303 +892 393 +892 381 +892 409 +892 410 +892 341 +892 384 +892 396 +893 504 +893 393 +893 303 +893 332 +894 981 +894 1011 +894 393 +894 983 +894 895 +894 976 +894 920 +894 982 +894 303 +895 592 +895 894 +895 981 +895 976 +895 784 +895 983 +895 393 +895 504 +895 303 +895 332 +895 920 +896 341 +896 889 +896 936 +896 891 +896 924 +896 774 +896 357 +896 384 +896 512 +896 385 +896 303 +897 304 +898 1118 +898 306 +898 429 +899 311 +899 900 +899 306 +900 306 +900 1058 +900 899 +900 711 +901 307 +902 310 +902 527 +902 1066 +902 314 +902 561 +902 558 +902 392 +902 912 +903 558 +903 795 +903 310 +903 529 +904 431 +904 312 +904 1051 +904 512 +904 908 +904 408 +905 312 +905 356 +905 332 +905 402 +906 312 +907 1004 +907 1005 +907 860 +907 891 +907 432 +907 1067 +907 1069 +907 312 +907 911 +908 904 +908 427 +908 408 +908 512 +908 992 +908 312 +908 719 +908 341 +908 833 +908 1003 +908 336 +909 313 +910 1069 +910 313 +910 1067 +910 1005 +910 1105 +910 1078 +911 907 +911 313 +912 561 +912 1066 +912 527 +912 902 +912 558 +912 314 +912 1065 +912 1054 +912 468 +913 316 +914 316 +914 452 +914 415 +915 322 +915 446 +915 319 +916 321 +917 322 +918 326 +919 1119 +919 429 +919 330 +920 393 +920 332 +920 894 +920 981 +920 895 +920 983 +920 504 +921 358 +921 1090 +921 333 +922 460 +922 486 +922 333 +922 1002 +923 334 +923 612 +923 457 +923 855 +923 1023 +924 896 +924 608 +924 985 +924 634 +924 334 +925 334 +925 598 +926 799 +926 335 +927 433 +927 337 +928 339 +928 1062 +928 554 +929 853 +929 368 +929 425 +929 339 +930 354 +930 339 +930 761 +930 1120 +931 339 +931 1011 +931 1121 +932 963 +932 1005 +932 339 +932 432 +932 468 +933 339 +933 477 +934 340 +935 658 +935 761 +935 987 +935 340 +935 1087 +936 784 +936 341 +936 382 +936 889 +936 896 +937 341 +937 736 +937 410 +938 384 +938 341 +938 387 +939 344 +940 745 +940 941 +940 590 +940 748 +940 724 +940 347 +940 946 +941 940 +941 942 +941 724 +941 347 +942 941 +942 347 +942 958 +942 507 +942 398 +943 412 +943 396 +943 347 +944 396 +944 347 +944 743 +945 591 +945 724 +945 590 +945 743 +945 746 +945 744 +945 745 +945 730 +945 347 +945 356 +946 356 +946 590 +946 940 +946 724 +946 347 +947 349 +948 350 +949 350 +950 352 +950 530 +950 952 +950 715 +950 451 +950 538 +951 588 +951 352 +952 588 +952 950 +952 819 +952 352 +952 467 +953 769 +953 368 +953 392 +953 588 +953 656 +953 598 +953 771 +953 819 +953 352 +954 365 +954 588 +954 568 +954 353 +954 369 +954 707 +954 962 +955 354 +956 355 +957 422 +957 811 +957 1037 +957 479 +957 480 +957 564 +957 355 +957 995 +957 996 +958 1063 +958 1100 +958 986 +958 942 +958 355 +958 396 +958 724 +958 388 +958 398 +959 355 +960 356 +960 1122 +960 572 +960 399 +961 356 +961 590 +962 954 +962 365 +962 368 +962 358 +962 660 +963 860 +963 932 +963 432 +963 362 +964 367 +965 742 +965 468 +965 367 +965 600 +966 367 +967 376 +967 610 +968 612 +968 403 +968 1084 +968 376 +968 1080 +969 376 +969 634 +970 376 +971 376 +972 377 +973 377 +974 731 +974 378 +975 770 +975 378 +975 691 +976 398 +976 773 +976 380 +976 728 +976 865 +976 894 +976 831 +976 393 +976 981 +976 895 +976 983 +977 382 +978 726 +978 890 +978 389 +979 657 +979 498 +979 496 +979 1123 +979 391 +980 392 +980 840 +980 459 +980 1068 +980 572 +981 895 +981 920 +981 976 +981 1124 +981 894 +981 983 +981 393 +981 504 +981 730 +982 730 +982 894 +982 393 +983 976 +983 920 +983 894 +983 393 +983 895 +983 585 +983 730 +983 981 +983 413 +984 395 +984 661 +985 612 +985 608 +985 634 +985 924 +985 396 +986 958 +986 724 +986 396 +987 658 +987 935 +987 1087 +987 401 +987 699 +988 861 +988 714 +988 402 +988 1050 +989 1050 +989 861 +989 402 +990 1009 +990 462 +990 818 +990 404 +990 665 +991 407 +992 407 +992 731 +992 1003 +992 728 +992 908 +992 512 +993 434 +993 410 +994 418 +994 706 +995 477 +995 482 +995 486 +995 460 +995 1043 +995 484 +995 957 +995 483 +995 1112 +995 564 +995 996 +995 1026 +995 418 +996 477 +996 422 +996 564 +996 995 +996 705 +996 480 +996 447 +996 957 +997 1123 +997 423 +998 427 +998 1125 +999 427 +999 507 +1000 427 +1001 1049 +1001 611 +1001 429 +1001 458 +1001 499 +1001 1126 +1001 687 +1002 429 +1002 460 +1002 922 +1003 731 +1003 992 +1003 728 +1003 908 +1003 431 +1004 1067 +1004 1005 +1004 907 +1004 1069 +1004 1105 +1004 432 +1005 1004 +1005 1067 +1005 907 +1005 1069 +1005 1105 +1005 1070 +1005 432 +1005 910 +1005 860 +1005 932 +1005 793 +1006 439 +1007 475 +1007 687 +1007 554 +1007 447 +1008 483 +1008 451 +1009 462 +1009 452 +1009 555 +1009 456 +1009 1127 +1009 990 +1009 541 +1010 707 +1010 452 +1010 467 +1010 836 +1011 894 +1011 931 +1011 452 +1012 454 +1013 454 +1013 622 +1013 464 +1014 454 +1014 636 +1015 458 +1016 458 +1016 521 +1017 459 +1017 1068 +1017 1019 +1018 459 +1019 459 +1019 613 +1019 1017 +1019 1068 +1020 475 +1020 757 +1020 460 +1020 486 +1020 477 +1021 460 +1022 483 +1022 460 +1023 1128 +1023 486 +1023 460 +1023 923 +1023 808 +1024 460 +1024 1097 +1024 484 +1025 757 +1025 460 +1026 757 +1026 995 +1026 487 +1026 460 +1026 1045 +1026 564 +1027 757 +1027 460 +1028 462 +1029 464 +1030 466 +1031 587 +1031 466 +1032 598 +1032 1069 +1032 1078 +1032 468 +1033 468 +1034 808 +1034 471 +1034 543 +1034 848 +1034 513 +1035 1043 +1035 847 +1035 1039 +1035 1098 +1035 849 +1035 870 +1035 475 +1035 709 +1035 483 +1035 1038 +1036 477 +1036 486 +1036 824 +1037 957 +1037 479 +1037 811 +1037 480 +1037 849 +1038 709 +1038 1035 +1038 481 +1038 565 +1038 706 +1038 870 +1039 1035 +1039 847 +1039 1043 +1039 1098 +1039 706 +1039 481 +1040 483 +1041 483 +1041 497 +1041 607 +1041 491 +1042 483 +1043 1035 +1043 847 +1043 1098 +1043 1039 +1043 995 +1043 483 +1043 849 +1043 706 +1044 487 +1045 757 +1045 1112 +1045 848 +1045 487 +1045 1026 +1046 601 +1046 489 +1047 495 +1047 675 +1048 498 +1048 764 +1049 1001 +1049 499 +1050 861 +1050 504 +1050 509 +1050 989 +1050 988 +1050 711 +1051 904 +1051 512 +1052 514 +1053 1129 +1053 546 +1053 523 +1053 822 +1053 765 +1054 558 +1054 912 +1054 561 +1054 527 +1055 532 +1056 535 +1057 538 +1058 900 +1058 819 +1058 546 +1059 549 +1060 553 +1060 660 +1061 568 +1061 553 +1062 928 +1062 554 +1062 828 +1062 598 +1063 555 +1063 958 +1064 560 +1065 912 +1065 561 +1066 912 +1066 902 +1066 1105 +1066 561 +1066 795 +1067 1005 +1067 910 +1067 793 +1067 1070 +1067 1069 +1067 1105 +1067 1078 +1067 1004 +1067 907 +1067 687 +1067 578 +1068 578 +1068 1017 +1068 980 +1068 1019 +1069 1004 +1069 1067 +1069 1005 +1069 907 +1069 1105 +1069 910 +1069 793 +1069 1070 +1069 1078 +1069 578 +1069 1032 +1070 578 +1070 1067 +1070 1005 +1070 1069 +1070 1105 +1071 578 +1072 587 +1073 1130 +1073 588 +1073 770 +1074 592 +1075 593 +1075 748 +1076 593 +1077 598 +1078 1067 +1078 793 +1078 1069 +1078 634 +1078 610 +1078 910 +1078 1032 +1078 1079 +1079 1078 +1079 610 +1080 968 +1080 612 +1080 1084 +1080 1131 +1081 612 +1082 612 +1083 612 +1084 612 +1084 1080 +1084 968 +1084 661 +1085 617 +1086 693 +1086 651 +1087 935 +1087 987 +1087 1132 +1087 658 +1088 658 +1088 1089 +1089 1088 +1089 658 +1090 663 +1090 921 +1091 664 +1092 671 +1093 680 +1094 694 +1095 699 +1095 878 +1096 701 +1096 1133 +1097 705 +1097 808 +1097 1024 +1098 847 +1098 1043 +1098 1039 +1098 1035 +1098 709 +1098 1112 +1098 706 +1098 848 +1098 849 +1099 714 +1100 958 +1100 724 +1101 757 +1102 765 +1103 768 +1104 771 +1105 1004 +1105 1067 +1105 1005 +1105 1070 +1105 1069 +1105 910 +1105 793 +1105 1066 +1106 802 +1107 824 +1108 834 +1109 836 +1110 836 +1111 836 +1112 855 +1112 995 +1112 868 +1112 869 +1112 1045 +1112 1098 +1113 865 +1113 859 +1114 870 +1115 874 +1116 884 +1117 890 +1118 898 +1119 919 +1120 930 +1121 931 +1122 960 +1123 997 +1123 979 +1124 981 +1125 998 +1126 1001 +1127 1009 +1128 1023 +1129 1053 +1130 1073 +1131 1080 +1132 1087 +1133 1096 +1133 1133 diff --git a/datasets/ia-email-univ/ia-email-univ.mtx b/datasets/ia-email-univ/ia-email-univ.mtx new file mode 100644 index 0000000000000000000000000000000000000000..120257b6f86486a0c65a926c02b7c6666f0b686e --- /dev/null +++ b/datasets/ia-email-univ/ia-email-univ.mtx @@ -0,0 +1,5453 @@ +%MatrixMarket matrix coordinate pattern symmetric +1133 1133 5451 +2 1 +3 1 +4 1 +5 1 +6 1 +7 1 +8 1 +9 1 +10 1 +11 1 +12 1 +13 1 +14 1 +15 1 +16 1 +17 1 +18 1 +19 1 +20 1 +21 1 +22 1 +23 1 +24 1 +25 1 +26 1 +27 1 +28 1 +29 1 +30 1 +31 1 +3 2 +4 2 +6 2 +7 2 +8 2 +9 2 +10 2 +11 2 +13 2 +16 2 +18 2 +19 2 +20 2 +22 2 +24 2 +32 2 +33 2 +34 2 +35 2 +36 2 +37 2 +38 2 +4 3 +6 3 +7 3 +8 3 +9 3 +11 3 +12 3 +13 3 +16 3 +18 3 +19 3 +20 3 +21 3 +22 3 +23 3 +27 3 +28 3 +34 3 +39 3 +40 3 +41 3 +42 3 +43 3 +44 3 +45 3 +46 3 +47 3 +48 3 +49 3 +50 3 +51 3 +52 3 +53 3 +54 3 +55 3 +56 3 +11 4 +22 4 +46 4 +57 4 +58 4 +59 4 +60 4 +61 4 +62 4 +63 4 +64 4 +65 4 +66 4 +67 4 +68 4 +69 4 +70 4 +71 4 +72 4 +6 5 +13 5 +73 5 +74 5 +75 5 +76 5 +77 5 +78 5 +79 5 +7 6 +8 6 +13 6 +16 6 +18 6 +22 6 +27 6 +28 6 +34 6 +80 6 +81 6 +82 6 +83 6 +84 6 +85 6 +86 6 +87 6 +9 7 +10 7 +13 7 +15 7 +16 7 +19 7 +22 7 +28 7 +76 7 +88 7 +89 7 +90 7 +91 7 +92 7 +93 7 +94 7 +95 7 +96 7 +97 7 +98 7 +99 7 +100 7 +22 8 +28 8 +101 8 +102 8 +10 9 +13 9 +16 9 +21 9 +22 9 +24 9 +30 9 +41 9 +103 9 +104 9 +105 9 +106 9 +107 9 +16 10 +24 10 +30 10 +34 10 +70 10 +108 10 +109 10 +110 10 +111 10 +112 10 +113 10 +114 10 +115 10 +116 10 +117 10 +118 10 +119 10 +120 10 +121 10 +122 10 +123 10 +124 10 +125 10 +126 10 +127 10 +128 10 +129 10 +130 10 +18 11 +19 11 +20 11 +22 11 +25 11 +27 11 +45 11 +73 11 +131 11 +132 11 +133 11 +134 11 +135 11 +136 11 +137 11 +138 11 +84 12 +139 12 +140 12 +141 12 +142 12 +143 12 +144 12 +145 12 +146 12 +147 12 +148 12 +149 12 +150 12 +151 12 +152 12 +153 12 +14 13 +16 13 +18 13 +22 13 +24 13 +28 13 +45 13 +69 13 +76 13 +106 13 +153 13 +154 13 +155 13 +156 13 +157 13 +158 13 +159 13 +160 13 +15 14 +16 14 +24 14 +33 14 +34 14 +80 14 +107 14 +110 14 +112 14 +123 14 +124 14 +136 14 +161 14 +162 14 +163 14 +164 14 +165 14 +166 14 +167 14 +168 14 +169 14 +170 14 +171 14 +172 14 +173 14 +174 14 +175 14 +176 14 +177 14 +178 14 +179 14 +180 14 +181 14 +182 14 +23 15 +33 15 +34 15 +76 15 +93 15 +124 15 +168 15 +183 15 +184 15 +185 15 +186 15 +187 15 +188 15 +189 15 +190 15 +191 15 +24 16 +30 16 +33 16 +34 16 +56 16 +77 16 +105 16 +108 16 +123 16 +127 16 +129 16 +192 16 +193 16 +194 16 +195 16 +196 16 +197 16 +198 16 +199 16 +200 16 +201 16 +202 16 +203 16 +204 16 +205 16 +206 16 +207 16 +208 16 +209 16 +210 16 +211 16 +212 16 +213 16 +214 16 +215 16 +216 16 +217 16 +218 16 +219 16 +220 16 +221 16 +222 16 +24 17 +34 17 +115 17 +223 17 +224 17 +225 17 +19 18 +21 18 +22 18 +23 18 +25 18 +26 18 +27 18 +38 18 +39 18 +226 18 +227 18 +228 18 +20 19 +27 19 +38 19 +41 19 +70 19 +82 19 +86 19 +120 19 +137 19 +186 19 +229 19 +230 19 +231 19 +232 19 +233 19 +234 19 +235 19 +236 19 +237 19 +238 19 +239 19 +240 19 +22 20 +41 20 +43 20 +50 20 +81 20 +106 20 +228 20 +233 20 +241 20 +242 20 +243 20 +244 20 +23 21 +25 21 +39 21 +40 21 +41 21 +46 21 +47 21 +50 21 +54 21 +55 21 +59 21 +91 21 +103 21 +104 21 +105 21 +107 21 +157 21 +206 21 +210 21 +214 21 +223 21 +239 21 +245 21 +246 21 +247 21 +248 21 +249 21 +250 21 +251 21 +252 21 +253 21 +254 21 +255 21 +256 21 +257 21 +258 21 +259 21 +260 21 +261 21 +27 22 +32 22 +38 22 +25 23 +38 23 +39 23 +42 23 +43 23 +44 23 +45 23 +46 23 +50 23 +54 23 +80 23 +97 23 +134 23 +135 23 +143 23 +182 23 +196 23 +203 23 +227 23 +230 23 +240 23 +246 23 +255 23 +262 23 +263 23 +264 23 +265 23 +266 23 +267 23 +268 23 +269 23 +270 23 +271 23 +272 23 +273 23 +274 23 +275 23 +276 23 +277 23 +278 23 +279 23 +280 23 +281 23 +282 23 +283 23 +284 23 +30 24 +33 24 +34 24 +58 24 +70 24 +108 24 +109 24 +110 24 +112 24 +115 24 +116 24 +119 24 +120 24 +121 24 +124 24 +167 24 +168 24 +174 24 +176 24 +182 24 +263 24 +285 24 +286 24 +287 24 +288 24 +289 24 +290 24 +291 24 +292 24 +293 24 +294 24 +295 24 +296 24 +297 24 +26 25 +39 25 +60 25 +62 25 +126 25 +227 25 +238 25 +265 25 +287 25 +298 25 +299 25 +300 25 +301 25 +302 25 +303 25 +38 27 +70 27 +86 27 +95 27 +186 27 +230 27 +232 27 +235 27 +238 27 +275 27 +304 27 +305 27 +306 27 +307 27 +34 28 +182 28 +233 28 +280 28 +308 28 +309 28 +147 29 +310 29 +311 29 +312 29 +313 29 +314 29 +315 29 +316 29 +34 30 +49 30 +178 30 +194 30 +196 30 +200 30 +201 30 +211 30 +218 30 +317 30 +318 30 +319 30 +320 30 +321 30 +322 30 +323 30 +324 30 +325 30 +326 30 +327 30 +328 30 +45 31 +54 31 +104 31 +157 31 +202 31 +241 31 +245 31 +251 31 +259 31 +329 31 +330 31 +331 31 +332 31 +333 31 +334 31 +335 31 +336 31 +337 31 +338 31 +339 31 +340 31 +341 32 +34 33 +120 33 +169 33 +55 34 +70 34 +108 34 +182 34 +308 34 +342 34 +343 34 +51 38 +231 38 +233 38 +237 38 +241 38 +254 38 +270 38 +275 38 +330 38 +344 38 +345 38 +346 38 +347 38 +348 38 +349 38 +350 38 +351 38 +352 38 +353 38 +41 39 +42 39 +43 39 +45 39 +46 39 +50 39 +52 39 +105 39 +107 39 +227 39 +240 39 +245 39 +246 39 +250 39 +265 39 +313 39 +314 39 +332 39 +354 39 +355 39 +356 39 +357 39 +358 39 +42 40 +46 40 +47 40 +49 40 +54 40 +55 40 +56 40 +58 40 +105 40 +157 40 +203 40 +268 40 +293 40 +336 40 +354 40 +355 40 +359 40 +360 40 +361 40 +362 40 +363 40 +364 40 +365 40 +366 40 +367 40 +46 41 +47 41 +48 41 +50 41 +51 41 +54 41 +62 41 +87 41 +94 41 +103 41 +106 41 +134 41 +135 41 +191 41 +194 41 +210 41 +235 41 +238 41 +245 41 +246 41 +247 41 +250 41 +260 41 +262 41 +270 41 +332 41 +334 41 +353 41 +354 41 +355 41 +358 41 +368 41 +369 41 +370 41 +371 41 +372 41 +373 41 +374 41 +375 41 +376 41 +377 41 +378 41 +379 41 +44 42 +45 42 +50 42 +84 42 +104 42 +105 42 +134 42 +157 42 +245 42 +271 42 +303 42 +314 42 +332 42 +333 42 +335 42 +337 42 +338 42 +354 42 +355 42 +356 42 +372 42 +378 42 +380 42 +381 42 +382 42 +383 42 +384 42 +385 42 +386 42 +387 42 +388 42 +389 42 +390 42 +391 42 +392 42 +393 42 +394 42 +395 42 +396 42 +397 42 +398 42 +399 42 +400 42 +401 42 +402 42 +403 42 +404 42 +46 43 +230 43 +240 43 +269 43 +282 43 +405 43 +52 44 +135 44 +332 44 +341 44 +383 44 +386 44 +406 44 +407 44 +408 44 +409 44 +410 44 +411 44 +412 44 +413 44 +414 44 +50 45 +54 45 +73 45 +133 45 +191 45 +227 45 +251 45 +259 45 +333 45 +349 45 +355 45 +362 45 +399 45 +415 45 +416 45 +417 45 +418 45 +419 45 +420 45 +421 45 +422 45 +423 45 +424 45 +425 45 +48 46 +52 46 +57 46 +58 46 +59 46 +62 46 +64 46 +66 46 +68 46 +69 46 +71 46 +72 46 +81 46 +241 46 +246 46 +282 46 +351 46 +354 46 +373 46 +399 46 +414 46 +426 46 +427 46 +428 46 +429 46 +430 46 +431 46 +432 46 +104 47 +337 47 +433 47 +296 48 +332 48 +367 48 +434 48 +54 49 +55 49 +56 49 +76 49 +79 49 +92 49 +105 49 +116 49 +128 49 +185 49 +201 49 +202 49 +206 49 +213 49 +241 49 +269 49 +274 49 +293 49 +303 49 +317 49 +321 49 +322 49 +325 49 +327 49 +328 49 +344 49 +361 49 +363 49 +390 49 +435 49 +436 49 +437 49 +438 49 +439 49 +440 49 +441 49 +442 49 +52 50 +81 50 +191 50 +228 50 +241 50 +245 50 +259 50 +271 50 +314 50 +324 50 +333 50 +338 50 +354 50 +367 50 +368 50 +404 50 +443 50 +444 50 +54 51 +56 51 +105 51 +257 51 +269 51 +278 51 +338 51 +340 51 +353 51 +354 51 +366 51 +368 51 +445 51 +446 51 +447 51 +448 51 +449 51 +450 51 +451 51 +81 52 +128 52 +133 52 +135 52 +146 52 +157 52 +182 52 +228 52 +241 52 +248 52 +254 52 +269 52 +287 52 +316 52 +333 52 +335 52 +340 52 +351 52 +362 52 +365 52 +367 52 +402 52 +413 52 +452 52 +453 52 +454 52 +455 52 +456 52 +457 52 +458 52 +459 52 +460 52 +461 52 +72 53 +76 54 +87 54 +124 54 +183 54 +185 54 +187 54 +189 54 +191 54 +268 54 +316 54 +329 54 +331 54 +333 54 +346 54 +354 54 +378 54 +454 54 +462 54 +463 54 +464 54 +465 54 +466 54 +467 54 +56 55 +105 55 +128 55 +201 55 +259 55 +317 55 +324 55 +360 55 +468 55 +469 55 +77 56 +105 56 +128 56 +133 56 +194 56 +196 56 +201 56 +202 56 +207 56 +210 56 +212 56 +213 56 +214 56 +251 56 +289 56 +293 56 +327 56 +332 56 +335 56 +360 56 +364 56 +390 56 +392 56 +437 56 +470 56 +471 56 +472 56 +473 56 +474 56 +58 57 +59 57 +62 57 +64 57 +65 57 +66 57 +69 57 +72 57 +231 57 +282 57 +373 57 +420 57 +426 57 +475 57 +476 57 +477 57 +478 57 +479 57 +480 57 +481 57 +482 57 +483 57 +484 57 +485 57 +486 57 +487 57 +59 58 +62 58 +64 58 +66 58 +67 58 +69 58 +72 58 +107 58 +112 58 +124 58 +192 58 +206 58 +255 58 +282 58 +286 58 +351 58 +373 58 +393 58 +426 58 +439 58 +488 58 +489 58 +490 58 +491 58 +492 58 +493 58 +494 58 +495 58 +62 59 +64 59 +66 59 +69 59 +71 59 +72 59 +256 59 +282 59 +426 59 +430 59 +496 59 +497 59 +498 59 +499 59 +485 60 +64 61 +68 61 +132 61 +244 61 +470 61 +485 61 +500 61 +501 61 +502 61 +63 62 +64 62 +66 62 +67 62 +71 62 +72 62 +140 62 +145 62 +150 62 +185 62 +203 62 +267 62 +341 62 +371 62 +373 62 +476 62 +503 62 +504 62 +505 62 +71 63 +150 63 +427 63 +476 63 +506 63 +507 63 +508 63 +509 63 +65 64 +68 64 +69 64 +72 64 +90 64 +282 64 +483 64 +485 64 +506 64 +510 64 +68 65 +90 65 +282 65 +430 65 +475 65 +476 65 +477 65 +481 65 +483 65 +485 65 +510 65 +511 65 +512 65 +513 65 +514 65 +69 66 +71 66 +72 66 +282 66 +316 66 +368 66 +426 66 +515 66 +238 67 +282 67 +286 67 +430 67 +485 67 +490 67 +491 67 +516 67 +517 67 +518 67 +519 67 +69 68 +90 68 +282 68 +373 68 +430 68 +470 68 +485 68 +500 68 +510 68 +511 68 +520 68 +72 69 +90 69 +219 69 +349 69 +362 69 +426 69 +432 69 +444 69 +466 69 +500 69 +506 69 +509 69 +521 69 +522 69 +523 69 +524 69 +525 69 +526 69 +527 69 +528 69 +529 69 +82 70 +108 70 +117 70 +169 70 +170 70 +182 70 +233 70 +239 70 +280 70 +330 70 +355 70 +444 70 +492 70 +495 70 +530 70 +531 70 +532 70 +134 71 +233 71 +427 71 +429 71 +508 71 +511 71 +533 71 +140 72 +268 72 +282 72 +285 72 +339 72 +351 72 +353 72 +356 72 +369 72 +373 72 +396 72 +423 72 +426 72 +455 72 +500 72 +507 72 +510 72 +511 72 +534 72 +535 72 +536 72 +537 72 +538 72 +539 72 +540 72 +541 72 +542 72 +89 73 +133 73 +260 73 +270 73 +376 73 +378 73 +413 73 +420 73 +422 73 +447 73 +467 73 +528 73 +543 73 +544 73 +545 73 +546 73 +547 73 +548 73 +101 74 +128 74 +134 74 +186 74 +194 74 +196 74 +206 74 +233 74 +254 74 +287 74 +466 74 +504 74 +505 74 +549 74 +550 74 +551 74 +552 74 +553 74 +554 74 +555 74 +148 75 +152 75 +267 75 +354 75 +468 75 +556 75 +557 75 +558 75 +559 75 +560 75 +561 75 +80 76 +84 76 +105 76 +117 76 +119 76 +124 76 +147 76 +150 76 +183 76 +185 76 +186 76 +187 76 +189 76 +190 76 +233 76 +267 76 +269 76 +316 76 +341 76 +352 76 +396 76 +462 76 +466 76 +467 76 +553 76 +562 76 +563 76 +564 76 +565 76 +566 76 +567 76 +568 76 +569 76 +570 76 +571 76 +572 76 +573 76 +147 77 +196 77 +323 77 +420 77 +574 77 +113 78 +120 78 +121 78 +161 78 +162 78 +176 78 +181 78 +183 78 +197 78 +333 78 +575 78 +105 79 +128 79 +133 79 +136 79 +201 79 +322 79 +336 79 +400 79 +576 79 +577 79 +85 80 +105 80 +116 80 +120 80 +127 80 +161 80 +176 80 +184 80 +194 80 +269 80 +274 80 +361 80 +400 80 +401 80 +577 80 +578 80 +579 80 +580 80 +581 80 +582 80 +583 80 +584 80 +94 81 +134 81 +155 81 +204 81 +228 81 +241 81 +243 81 +260 81 +308 81 +333 81 +405 81 +452 81 +454 81 +460 81 +554 81 +585 81 +586 81 +587 81 +588 81 +94 82 +113 82 +176 82 +180 82 +182 82 +201 82 +233 82 +234 82 +237 82 +269 82 +275 82 +277 82 +301 82 +306 82 +381 82 +405 82 +460 82 +520 82 +588 82 +589 82 +143 83 +239 83 +243 83 +388 83 +590 83 +140 84 +141 84 +143 84 +146 84 +150 84 +152 84 +153 84 +332 84 +354 84 +573 84 +591 84 +128 85 +130 85 +193 85 +198 85 +205 85 +212 85 +215 85 +219 85 +222 85 +291 85 +327 85 +328 85 +398 85 +401 85 +518 85 +592 85 +593 85 +594 85 +595 85 +596 85 +94 86 +95 86 +233 86 +378 86 +429 86 +454 86 +597 86 +598 86 +134 87 +183 87 +567 87 +92 88 +193 88 +198 88 +204 88 +219 88 +259 88 +518 88 +594 88 +599 88 +600 88 +601 88 +93 89 +454 89 +464 89 +602 89 +603 89 +604 89 +282 90 +285 90 +396 90 +426 90 +427 90 +430 90 +485 90 +507 90 +510 90 +603 90 +604 90 +605 90 +606 90 +607 90 +608 90 +609 90 +610 90 +233 91 +256 91 +269 91 +369 91 +444 91 +611 91 +612 91 +613 91 +614 91 +615 91 +157 92 +201 92 +259 92 +284 92 +574 92 +616 92 +617 92 +618 92 +619 92 +620 92 +118 93 +189 93 +191 93 +454 93 +465 93 +602 93 +603 93 +621 93 +622 93 +623 93 +624 93 +625 93 +626 93 +627 93 +628 93 +629 93 +99 94 +131 94 +137 94 +231 94 +233 94 +237 94 +241 94 +266 94 +351 94 +376 94 +457 94 +568 94 +597 94 +598 94 +606 94 +630 94 +631 94 +632 94 +633 94 +454 95 +632 95 +100 96 +376 96 +457 96 +610 96 +612 96 +634 96 +598 98 +627 98 +635 98 +636 98 +135 99 +189 99 +602 99 +598 100 +128 101 +132 101 +196 101 +265 101 +271 101 +404 101 +468 101 +554 101 +582 101 +637 101 +638 101 +339 102 +370 102 +246 103 +614 103 +639 103 +105 104 +128 104 +135 104 +154 104 +201 104 +218 104 +327 104 +333 104 +404 104 +501 104 +640 104 +116 105 +128 105 +129 105 +183 105 +196 105 +198 105 +200 105 +201 105 +202 105 +203 105 +204 105 +205 105 +206 105 +210 105 +213 105 +214 105 +216 105 +217 105 +218 105 +227 105 +236 105 +251 105 +259 105 +274 105 +284 105 +291 105 +307 105 +321 105 +331 105 +333 105 +335 105 +361 105 +378 105 +390 105 +400 105 +414 105 +420 105 +437 105 +439 105 +446 105 +468 105 +472 105 +503 105 +545 105 +578 105 +596 105 +641 105 +642 105 +643 105 +644 105 +645 105 +646 105 +647 105 +648 105 +649 105 +650 105 +651 105 +134 106 +137 106 +268 106 +339 106 +358 106 +391 106 +415 106 +425 106 +452 106 +458 106 +467 106 +538 106 +588 106 +652 106 +653 106 +654 106 +655 106 +656 106 +657 106 +658 106 +659 106 +660 106 +661 106 +662 106 +663 106 +664 106 +665 106 +128 107 +182 107 +196 107 +200 107 +206 107 +217 107 +252 107 +263 107 +666 107 +667 107 +668 107 +120 108 +296 108 +117 110 +119 110 +124 110 +182 110 +532 110 +569 110 +669 110 +114 112 +120 112 +163 112 +165 112 +167 112 +168 112 +170 112 +179 112 +181 112 +271 112 +280 112 +333 112 +355 112 +670 112 +671 112 +120 113 +124 113 +134 113 +162 113 +163 113 +168 113 +176 113 +181 113 +532 113 +672 113 +117 114 +179 114 +569 114 +669 114 +224 115 +225 115 +255 115 +287 115 +367 115 +454 115 +668 115 +673 115 +674 115 +675 115 +127 116 +128 116 +194 116 +198 116 +201 116 +204 116 +205 116 +206 116 +210 116 +213 116 +214 116 +215 116 +269 116 +274 116 +289 116 +305 116 +307 116 +344 116 +390 116 +435 116 +439 116 +446 116 +468 116 +470 116 +593 116 +642 116 +648 116 +676 116 +677 116 +678 116 +679 116 +680 116 +681 116 +119 117 +120 117 +124 117 +133 117 +135 117 +161 117 +167 117 +185 117 +532 117 +569 117 +682 117 +205 118 +441 118 +469 118 +517 118 +629 118 +683 118 +684 118 +124 119 +169 119 +569 119 +669 119 +161 120 +163 120 +165 120 +166 120 +168 120 +169 120 +170 120 +172 120 +174 120 +176 120 +178 120 +179 120 +181 120 +182 120 +233 120 +297 120 +332 120 +532 120 +563 120 +569 120 +669 120 +685 120 +163 121 +165 121 +166 121 +168 121 +169 121 +172 121 +174 121 +178 121 +563 121 +252 122 +287 122 +290 122 +329 122 +331 122 +355 122 +429 122 +543 122 +545 122 +686 122 +687 122 +688 122 +689 122 +176 124 +183 124 +555 124 +569 124 +690 124 +691 124 +137 125 +182 125 +255 125 +287 125 +329 125 +367 125 +429 125 +692 125 +693 125 +694 125 +684 126 +199 127 +208 127 +219 127 +274 127 +446 127 +594 127 +647 127 +648 127 +649 127 +695 127 +696 127 +137 128 +182 128 +194 128 +196 128 +201 128 +206 128 +207 128 +217 128 +231 128 +243 128 +274 128 +289 128 +293 128 +303 128 +305 128 +321 128 +324 128 +325 128 +429 128 +435 128 +439 128 +680 128 +697 128 +200 129 +317 129 +641 129 +643 129 +194 130 +205 130 +327 130 +401 130 +437 130 +468 130 +672 130 +698 130 +699 130 +134 131 +135 131 +137 131 +155 131 +234 131 +297 131 +330 131 +460 131 +481 131 +536 131 +585 131 +611 131 +614 131 +677 131 +700 131 +701 131 +702 131 +703 131 +704 131 +244 132 +259 132 +313 132 +331 132 +470 132 +501 132 +547 132 +617 132 +638 132 +134 133 +213 133 +234 133 +282 133 +446 133 +475 133 +565 133 +135 134 +140 134 +155 134 +227 134 +240 134 +254 134 +314 134 +338 134 +351 134 +368 134 +372 134 +377 134 +418 134 +445 134 +448 134 +481 134 +487 134 +585 134 +586 134 +607 134 +663 134 +691 134 +705 134 +706 134 +707 134 +708 134 +709 134 +148 135 +155 135 +184 135 +196 135 +227 135 +311 135 +332 135 +340 135 +367 135 +387 135 +394 135 +397 135 +431 135 +457 135 +467 135 +480 135 +504 135 +524 135 +545 135 +568 135 +586 135 +598 135 +606 135 +693 135 +710 135 +711 135 +712 135 +713 135 +714 135 +715 135 +213 136 +302 136 +313 136 +533 136 +565 136 +576 136 +612 136 +682 136 +716 136 +717 136 +718 136 +138 137 +182 137 +214 137 +230 137 +233 137 +238 137 +239 137 +243 137 +269 137 +321 137 +332 137 +362 137 +376 137 +413 137 +420 137 +443 137 +452 137 +454 137 +459 137 +520 137 +554 137 +585 137 +588 137 +662 137 +711 137 +230 138 +240 138 +146 139 +147 139 +142 140 +143 140 +145 140 +146 140 +147 140 +148 140 +149 140 +150 140 +152 140 +267 140 +299 140 +300 140 +312 140 +313 140 +314 140 +329 140 +332 140 +333 140 +349 140 +354 140 +396 140 +504 140 +505 140 +573 140 +649 140 +719 140 +720 140 +721 140 +722 140 +142 141 +146 141 +152 141 +354 141 +719 141 +723 141 +143 142 +146 142 +147 142 +148 142 +150 142 +152 142 +313 142 +332 142 +354 142 +355 142 +404 142 +443 142 +504 142 +578 142 +591 142 +649 142 +723 142 +724 142 +146 143 +147 143 +239 143 +276 143 +299 143 +332 143 +381 143 +396 143 +410 143 +411 143 +413 143 +504 143 +590 143 +591 143 +633 143 +723 143 +725 143 +726 143 +727 143 +728 143 +729 143 +730 143 +731 143 +364 144 +387 144 +556 144 +559 144 +732 144 +733 144 +734 144 +146 145 +150 145 +152 145 +185 145 +237 145 +241 145 +267 145 +331 145 +354 145 +371 145 +372 145 +416 145 +573 145 +735 145 +736 145 +147 146 +148 146 +149 146 +150 146 +152 146 +185 146 +229 146 +239 146 +316 146 +332 146 +354 146 +362 146 +371 146 +428 146 +505 146 +573 146 +737 146 +150 147 +152 147 +183 147 +239 147 +314 147 +354 147 +396 147 +507 147 +573 147 +720 147 +738 147 +739 147 +152 148 +206 148 +364 148 +378 148 +573 148 +719 148 +150 149 +152 149 +185 149 +267 149 +371 149 +505 149 +573 149 +692 149 +721 149 +737 149 +152 150 +183 150 +241 150 +243 150 +354 150 +404 150 +540 150 +573 150 +578 150 +241 151 +185 152 +243 152 +267 152 +300 152 +371 152 +557 152 +559 152 +573 152 +723 152 +735 152 +737 152 +739 152 +740 152 +741 152 +742 152 +356 153 +396 153 +412 153 +590 153 +591 153 +743 153 +744 153 +745 153 +746 153 +747 153 +748 153 +218 154 +237 155 +344 155 +346 155 +362 155 +375 155 +377 155 +378 155 +415 155 +418 155 +445 155 +585 155 +586 155 +677 155 +268 156 +269 156 +662 156 +687 156 +702 156 +246 157 +332 157 +333 157 +335 157 +741 157 +749 157 +183 158 +391 158 +395 158 +649 158 +661 158 +750 158 +751 158 +752 158 +753 158 +754 158 +755 158 +434 159 +756 159 +757 160 +758 160 +759 160 +183 161 +185 161 +190 161 +584 161 +176 162 +196 162 +197 162 +198 162 +297 162 +327 162 +401 162 +584 162 +699 162 +322 163 +351 163 +489 163 +633 163 +760 163 +165 164 +167 164 +168 164 +173 164 +271 164 +322 164 +166 165 +167 165 +168 165 +172 165 +174 165 +239 165 +297 165 +563 165 +168 166 +178 166 +182 166 +361 166 +492 166 +237 167 +532 167 +237 168 +322 168 +532 168 +563 168 +691 168 +490 170 +501 171 +584 171 +297 172 +563 172 +181 176 +182 176 +196 176 +197 176 +198 176 +220 176 +327 176 +390 176 +584 176 +761 176 +182 177 +584 177 +244 178 +280 179 +669 179 +197 181 +314 181 +344 181 +549 181 +231 182 +234 182 +237 182 +241 182 +277 182 +287 182 +292 182 +296 182 +532 182 +563 182 +762 182 +763 182 +185 183 +187 183 +189 183 +190 183 +191 183 +341 183 +359 183 +367 183 +381 183 +384 183 +393 183 +551 183 +566 183 +567 183 +602 183 +604 183 +625 183 +700 183 +715 183 +724 183 +726 183 +764 183 +765 183 +766 183 +185 184 +189 184 +191 184 +206 184 +269 184 +572 184 +579 184 +190 185 +267 185 +300 185 +329 185 +331 185 +354 185 +364 185 +371 185 +389 185 +416 185 +559 185 +569 185 +573 185 +578 185 +736 185 +742 185 +767 185 +414 186 +429 186 +549 186 +580 186 +603 186 +638 186 +639 186 +711 186 +768 186 +396 187 +466 187 +567 187 +589 187 +766 187 +455 188 +467 188 +562 188 +578 188 +588 188 +654 188 +660 188 +663 188 +769 188 +770 188 +771 188 +772 188 +191 189 +454 189 +464 189 +578 189 +602 189 +622 189 +623 189 +773 189 +774 189 +566 190 +567 190 +573 190 +316 191 +454 191 +464 191 +622 191 +206 192 +224 192 +248 192 +288 192 +323 192 +446 192 +503 192 +698 192 +775 192 +776 192 +196 193 +204 193 +212 193 +215 193 +219 193 +222 193 +328 193 +361 193 +363 193 +401 193 +446 193 +518 193 +592 193 +594 193 +599 193 +600 193 +601 193 +775 193 +196 194 +204 194 +210 194 +263 194 +293 194 +317 194 +325 194 +361 194 +390 194 +400 194 +439 194 +649 194 +705 194 +777 194 +255 195 +489 195 +671 195 +675 195 +694 195 +778 195 +197 196 +201 196 +204 196 +207 196 +210 196 +212 196 +214 196 +218 196 +220 196 +237 196 +263 196 +269 196 +274 196 +289 196 +317 196 +327 196 +333 196 +361 196 +364 196 +390 196 +439 196 +446 196 +472 196 +473 196 +599 196 +678 196 +691 196 +695 196 +777 196 +779 196 +780 196 +781 196 +204 197 +212 197 +220 197 +289 197 +327 197 +390 197 +780 197 +782 197 +204 198 +205 198 +206 198 +207 198 +212 198 +215 198 +219 198 +222 198 +327 198 +401 198 +441 198 +512 198 +584 198 +594 198 +629 198 +642 198 +647 198 +695 198 +698 198 +775 198 +780 198 +783 198 +215 199 +216 199 +218 199 +221 199 +286 199 +289 199 +363 199 +649 199 +687 199 +725 199 +780 199 +784 199 +785 199 +786 199 +205 200 +219 200 +259 200 +271 200 +284 200 +333 200 +470 200 +545 200 +596 200 +617 200 +641 200 +642 200 +643 200 +645 200 +646 200 +647 200 +692 200 +787 200 +788 200 +202 201 +206 201 +218 201 +233 201 +258 201 +274 201 +291 201 +293 201 +325 201 +335 201 +336 201 +361 201 +438 201 +474 201 +650 201 +214 202 +251 202 +258 202 +321 202 +335 202 +348 202 +399 202 +474 202 +586 202 +206 203 +263 203 +291 203 +323 203 +332 203 +371 203 +416 203 +503 203 +573 203 +789 203 +205 204 +207 204 +209 204 +210 204 +211 204 +213 204 +214 204 +216 204 +217 204 +218 204 +233 204 +251 204 +263 204 +272 204 +274 204 +291 204 +293 204 +328 204 +335 204 +361 204 +378 204 +390 204 +438 204 +446 204 +472 204 +503 204 +594 204 +790 204 +791 204 +207 205 +208 205 +210 205 +211 205 +212 205 +215 205 +216 205 +217 205 +219 205 +222 205 +274 205 +289 205 +291 205 +336 205 +390 205 +401 205 +446 205 +594 205 +648 205 +698 205 +783 205 +792 205 +210 206 +213 206 +214 206 +215 206 +222 206 +263 206 +322 206 +327 206 +361 206 +400 206 +439 206 +446 206 +695 206 +212 207 +213 207 +216 207 +327 207 +364 207 +390 207 +473 207 +629 207 +698 207 +212 208 +219 208 +274 208 +343 208 +446 208 +468 208 +596 208 +648 208 +792 208 +215 209 +218 209 +404 209 +596 209 +214 210 +233 210 +274 210 +322 210 +361 210 +400 210 +404 210 +425 210 +439 210 +446 210 +642 210 +672 210 +676 210 +698 210 +212 211 +215 211 +219 211 +289 211 +401 211 +578 211 +680 211 +698 211 +781 211 +792 211 +213 212 +215 212 +216 212 +219 212 +222 212 +327 212 +328 212 +401 212 +441 212 +472 212 +560 212 +698 212 +792 212 +793 212 +794 212 +795 212 +284 213 +286 213 +307 213 +364 213 +366 213 +437 213 +472 213 +474 213 +677 213 +793 213 +796 213 +797 213 +243 214 +263 214 +274 214 +293 214 +361 214 +429 214 +438 214 +503 214 +650 214 +688 214 +692 214 +216 215 +218 215 +219 215 +221 215 +222 215 +289 215 +363 215 +401 215 +518 215 +592 215 +594 215 +642 215 +698 215 +780 215 +786 215 +218 216 +219 216 +221 216 +289 216 +390 216 +439 216 +599 216 +642 216 +696 216 +780 216 +786 216 +798 216 +221 217 +243 217 +293 217 +501 217 +545 217 +775 217 +794 217 +274 218 +335 218 +363 218 +439 218 +532 218 +578 218 +599 218 +629 218 +640 218 +780 218 +799 218 +222 219 +289 219 +401 219 +472 219 +592 219 +595 219 +650 219 +692 219 +695 219 +696 219 +698 219 +725 219 +790 219 +792 219 +800 219 +801 219 +390 220 +802 220 +289 221 +363 221 +555 221 +599 221 +647 221 +780 221 +786 221 +592 222 +594 222 +742 222 +803 222 +804 222 +495 223 +549 223 +678 223 +805 223 +355 224 +495 224 +674 224 +675 224 +806 224 +806 225 +528 226 +324 227 +368 227 +378 227 +410 227 +518 227 +532 227 +578 227 +807 227 +241 228 +271 228 +314 228 +340 228 +399 228 +404 228 +808 228 +454 229 +233 230 +239 230 +240 230 +298 230 +443 230 +613 230 +775 230 +809 230 +240 231 +243 231 +254 231 +334 231 +346 231 +810 231 +235 233 +238 233 +239 233 +240 233 +243 233 +254 233 +255 233 +282 233 +305 233 +306 233 +378 233 +439 233 +444 233 +534 233 +585 233 +590 233 +607 233 +633 233 +660 233 +692 233 +711 233 +811 233 +812 233 +813 233 +814 233 +815 233 +816 233 +376 234 +817 234 +257 235 +305 235 +415 235 +452 235 +456 235 +458 235 +541 235 +568 235 +662 235 +818 235 +269 237 +305 237 +316 237 +340 237 +355 237 +444 237 +464 237 +503 237 +532 237 +585 237 +624 237 +631 237 +633 237 +702 237 +705 237 +707 237 +819 237 +820 237 +821 237 +822 237 +428 238 +447 238 +453 238 +460 238 +487 238 +513 238 +564 238 +709 238 +823 238 +824 238 +243 239 +306 239 +330 239 +434 239 +504 239 +590 239 +591 239 +812 239 +813 239 +825 239 +248 240 +306 240 +405 240 +440 240 +443 240 +444 240 +776 240 +826 240 +243 241 +269 241 +316 241 +340 241 +367 241 +392 241 +415 241 +452 241 +456 241 +466 241 +475 241 +484 241 +585 241 +588 241 +827 241 +418 242 +578 242 +828 242 +303 243 +332 243 +373 243 +396 243 +431 243 +452 243 +504 243 +588 243 +591 243 +633 243 +826 243 +829 243 +830 243 +831 243 +378 244 +470 244 +501 244 +832 244 +246 245 +248 245 +250 245 +335 245 +354 245 +250 246 +362 246 +399 246 +585 246 +331 248 +379 248 +392 248 +443 248 +512 248 +555 248 +775 248 +809 248 +833 248 +834 248 +306 249 +252 250 +284 250 +367 250 +429 250 +687 250 +702 250 +258 251 +331 251 +333 251 +335 251 +420 251 +437 251 +835 251 +306 252 +321 252 +433 252 +711 252 +259 254 +269 254 +334 254 +338 254 +346 254 +585 254 +677 254 +810 254 +277 255 +287 255 +333 255 +355 255 +367 255 +489 255 +694 255 +836 255 +837 255 +838 255 +839 255 +269 256 +499 256 +572 256 +612 256 +614 256 +659 256 +716 256 +769 256 +840 256 +841 256 +842 256 +316 257 +354 257 +369 257 +423 257 +458 257 +568 257 +660 257 +843 257 +844 257 +348 258 +293 259 +305 259 +333 259 +420 259 +472 259 +666 259 +672 259 +418 260 +458 260 +718 260 +755 260 +845 260 +846 260 +368 262 +377 262 +288 263 +439 263 +446 263 +503 263 +447 264 +564 264 +847 264 +848 264 +849 264 +272 265 +284 265 +307 265 +850 265 +376 266 +598 266 +300 267 +341 267 +503 267 +556 267 +557 267 +573 267 +710 267 +719 267 +851 267 +852 267 +316 268 +340 268 +354 268 +358 268 +362 268 +365 268 +368 268 +369 268 +395 268 +415 268 +425 268 +452 268 +568 268 +657 268 +659 268 +663 268 +767 268 +853 268 +588 269 +614 269 +701 269 +702 269 +711 269 +854 269 +855 269 +351 270 +378 270 +399 270 +585 270 +620 270 +632 270 +815 270 +816 270 +829 270 +856 270 +857 270 +858 270 +314 271 +333 271 +355 271 +356 271 +372 271 +392 271 +398 271 +404 271 +434 271 +750 271 +836 271 +859 271 +860 271 +861 271 +355 273 +501 273 +689 273 +862 273 +327 274 +382 274 +390 274 +437 274 +439 274 +446 274 +470 274 +593 274 +594 274 +695 274 +863 274 +279 275 +353 275 +378 275 +415 275 +451 275 +458 275 +864 275 +299 276 +333 276 +388 276 +393 276 +413 276 +414 276 +458 276 +591 276 +756 276 +859 276 +865 276 +866 276 +323 277 +694 277 +867 277 +554 278 +564 278 +824 278 +847 278 +848 278 +868 278 +869 278 +870 278 +871 278 +372 279 +415 279 +417 279 +451 279 +568 279 +598 279 +654 279 +872 279 +372 280 +392 280 +532 280 +671 280 +694 280 +339 281 +426 282 +427 282 +430 282 +444 282 +485 282 +510 282 +355 283 +495 283 +329 284 +393 284 +420 284 +429 284 +434 284 +542 284 +543 284 +591 284 +686 284 +725 284 +729 284 +485 285 +500 285 +506 285 +508 285 +540 285 +289 286 +295 287 +346 287 +367 287 +489 287 +565 287 +839 287 +873 287 +874 287 +875 287 +876 287 +877 287 +878 287 +879 287 +327 289 +401 289 +584 289 +780 289 +781 289 +786 289 +355 290 +495 290 +668 290 +671 290 +693 290 +694 290 +837 290 +838 290 +880 290 +322 291 +336 291 +446 291 +547 291 +592 291 +725 291 +414 293 +783 293 +495 295 +875 295 +308 296 +881 296 +441 297 +584 297 +699 297 +877 297 +882 297 +429 298 +443 298 +590 298 +883 298 +884 298 +316 299 +332 299 +333 299 +386 299 +389 299 +393 299 +396 299 +398 299 +409 299 +410 299 +429 299 +431 299 +434 299 +504 299 +542 299 +552 299 +571 299 +590 299 +725 299 +726 299 +729 299 +730 299 +756 299 +788 299 +884 299 +885 299 +886 299 +887 299 +888 299 +371 300 +392 300 +414 300 +545 300 +573 300 +688 300 +331 301 +482 301 +847 301 +849 301 +811 302 +322 303 +341 303 +380 303 +381 303 +382 303 +383 303 +384 303 +385 303 +386 303 +387 303 +393 303 +439 303 +468 303 +889 303 +890 303 +891 303 +892 303 +893 303 +894 303 +895 303 +896 303 +329 304 +897 304 +307 305 +308 305 +330 305 +393 305 +438 305 +520 305 +676 305 +729 305 +311 306 +687 306 +749 306 +898 306 +899 306 +900 306 +435 307 +438 307 +901 307 +339 308 +358 308 +378 308 +425 308 +452 308 +456 308 +458 308 +534 308 +541 308 +551 308 +658 308 +761 308 +817 308 +844 308 +881 308 +413 309 +479 309 +311 310 +312 310 +902 310 +903 310 +312 311 +314 311 +329 311 +899 311 +329 312 +555 312 +860 312 +904 312 +905 312 +906 312 +907 312 +908 312 +315 313 +350 313 +378 313 +397 313 +404 313 +457 313 +711 313 +712 313 +718 313 +765 313 +795 313 +909 313 +910 313 +911 313 +438 314 +458 314 +466 314 +523 314 +527 314 +558 314 +902 314 +912 314 +348 315 +396 315 +457 315 +468 315 +611 315 +712 315 +795 315 +339 316 +349 316 +354 316 +358 316 +368 316 +378 316 +409 316 +415 316 +495 316 +515 316 +532 316 +562 316 +662 316 +707 316 +827 316 +913 316 +914 316 +321 317 +322 317 +599 317 +780 317 +915 319 +321 320 +323 320 +326 320 +517 320 +697 320 +322 321 +323 321 +324 321 +325 321 +363 321 +429 321 +435 321 +442 321 +692 321 +697 321 +916 321 +325 322 +336 322 +390 322 +400 322 +438 322 +439 322 +442 322 +446 322 +568 322 +915 322 +917 322 +326 323 +640 323 +697 323 +325 324 +372 324 +666 324 +328 325 +363 325 +629 326 +681 326 +918 326 +390 327 +401 327 +578 327 +584 327 +592 327 +595 327 +629 327 +780 327 +363 328 +331 329 +332 329 +333 329 +335 329 +355 329 +384 329 +415 329 +420 329 +433 329 +542 329 +543 329 +581 329 +673 329 +375 330 +378 330 +585 330 +711 330 +881 330 +919 330 +333 331 +336 331 +339 331 +384 331 +420 331 +423 331 +433 331 +543 331 +564 331 +775 331 +827 331 +381 332 +383 332 +386 332 +389 332 +393 332 +396 332 +407 332 +412 332 +431 332 +434 332 +504 332 +543 332 +591 332 +724 332 +730 332 +893 332 +895 332 +905 332 +920 332 +335 333 +336 333 +337 333 +364 333 +372 333 +381 333 +384 333 +390 333 +410 333 +420 333 +434 333 +457 333 +466 333 +470 333 +489 333 +513 333 +532 333 +543 333 +545 333 +558 333 +564 333 +574 333 +641 333 +658 333 +743 333 +861 333 +870 333 +921 333 +922 333 +354 334 +368 334 +376 334 +457 334 +608 334 +612 334 +634 334 +810 334 +923 334 +924 334 +925 334 +420 335 +532 335 +543 335 +650 335 +926 335 +469 336 +620 336 +908 336 +356 337 +383 337 +409 337 +433 337 +468 337 +503 337 +778 337 +927 337 +354 338 +429 338 +587 338 +603 338 +638 338 +661 338 +340 339 +344 339 +354 339 +368 339 +484 339 +545 339 +554 339 +565 339 +576 339 +761 339 +928 339 +929 339 +930 339 +931 339 +932 339 +933 339 +354 340 +362 340 +365 340 +658 340 +761 340 +846 340 +934 340 +935 340 +357 341 +364 341 +371 341 +380 341 +382 341 +384 341 +385 341 +389 341 +393 341 +413 341 +416 341 +512 341 +571 341 +573 341 +578 341 +736 341 +884 341 +889 341 +890 341 +891 341 +892 341 +896 341 +908 341 +936 341 +937 341 +938 341 +881 342 +400 343 +446 343 +698 343 +415 344 +466 344 +489 344 +541 344 +549 344 +564 344 +568 344 +660 344 +677 344 +939 344 +350 345 +368 346 +375 346 +399 346 +418 346 +551 346 +356 347 +590 347 +743 347 +746 347 +748 347 +940 347 +941 347 +942 347 +943 347 +944 347 +945 347 +946 347 +445 348 +585 348 +611 348 +362 349 +523 349 +947 349 +366 350 +711 350 +948 350 +949 350 +368 351 +554 351 +632 351 +687 351 +705 351 +727 351 +829 351 +844 351 +870 351 +455 352 +467 352 +562 352 +588 352 +654 352 +656 352 +660 352 +769 352 +950 352 +951 352 +952 352 +953 352 +392 353 +501 353 +538 353 +568 353 +578 353 +841 353 +954 353 +356 354 +358 354 +365 354 +368 354 +371 354 +399 354 +415 354 +505 354 +573 354 +720 354 +767 354 +859 354 +930 354 +955 354 +356 355 +357 355 +367 355 +392 355 +402 355 +416 355 +468 355 +489 355 +495 355 +501 355 +532 355 +666 355 +668 355 +671 355 +691 355 +693 355 +694 355 +838 355 +874 355 +956 355 +957 355 +958 355 +959 355 +389 356 +392 356 +399 356 +407 356 +410 356 +414 356 +468 356 +470 356 +543 356 +552 356 +586 356 +590 356 +591 356 +724 356 +725 356 +744 356 +745 356 +747 356 +750 356 +905 356 +945 356 +946 356 +960 356 +961 356 +383 357 +416 357 +889 357 +891 357 +896 357 +369 358 +378 358 +425 358 +452 358 +515 358 +548 358 +707 358 +750 358 +769 358 +921 358 +962 358 +521 359 +711 359 +765 359 +361 360 +472 360 +400 361 +436 361 +796 361 +432 362 +466 362 +523 362 +544 362 +963 362 +441 363 +786 363 +472 364 +369 365 +767 365 +954 365 +962 365 +468 367 +470 367 +489 367 +495 367 +532 367 +672 367 +675 367 +687 367 +688 367 +693 367 +767 367 +838 367 +879 367 +964 367 +965 367 +966 367 +369 368 +372 368 +392 368 +415 368 +660 368 +864 368 +929 368 +953 368 +962 368 +452 369 +579 369 +954 369 +395 370 +417 370 +609 370 +872 370 +416 371 +503 371 +736 371 +378 372 +467 372 +538 372 +730 372 +429 373 +704 373 +391 375 +378 376 +397 376 +403 376 +417 376 +421 376 +429 376 +454 376 +457 376 +606 376 +608 376 +610 376 +612 376 +630 376 +634 376 +734 376 +872 376 +967 376 +968 376 +969 376 +970 376 +971 376 +429 377 +445 377 +585 377 +882 377 +972 377 +973 377 +389 378 +390 378 +391 378 +413 378 +454 378 +467 378 +585 378 +588 378 +648 378 +661 378 +662 378 +713 378 +750 378 +753 378 +974 378 +975 378 +659 379 +809 379 +833 379 +381 380 +382 380 +385 380 +387 380 +784 380 +976 380 +382 381 +383 381 +384 381 +385 381 +386 381 +387 381 +393 381 +413 381 +504 381 +552 381 +591 381 +730 381 +784 381 +890 381 +892 381 +383 382 +384 382 +385 382 +386 382 +387 382 +578 382 +593 382 +784 382 +890 382 +936 382 +977 382 +384 383 +386 383 +387 383 +504 383 +884 383 +385 384 +386 384 +387 384 +393 384 +407 384 +409 384 +543 384 +578 384 +784 384 +796 384 +891 384 +892 384 +896 384 +938 384 +386 385 +387 385 +393 385 +726 385 +784 385 +890 385 +896 385 +387 386 +504 386 +730 386 +591 387 +938 387 +396 388 +404 388 +591 388 +833 388 +859 388 +890 388 +958 388 +396 389 +410 389 +413 389 +431 389 +434 389 +542 389 +552 389 +571 389 +633 389 +724 389 +726 389 +729 389 +756 389 +788 389 +809 389 +884 389 +885 389 +886 389 +887 389 +888 389 +978 389 +446 390 +584 390 +725 390 +781 390 +786 390 +802 390 +418 391 +458 391 +657 391 +752 391 +835 391 +840 391 +979 391 +538 392 +846 392 +902 392 +953 392 +980 392 +439 393 +443 393 +504 393 +730 393 +892 393 +893 393 +894 393 +895 393 +920 393 +976 393 +981 393 +982 393 +983 393 +661 395 +752 395 +753 395 +767 395 +846 395 +984 395 +410 396 +412 396 +434 396 +466 396 +504 396 +542 396 +552 396 +571 396 +724 396 +743 396 +745 396 +747 396 +748 396 +756 396 +890 396 +892 396 +943 396 +944 396 +958 396 +985 396 +986 396 +421 397 +457 397 +468 397 +756 398 +942 398 +958 398 +976 398 +572 399 +701 399 +840 399 +960 399 +574 400 +581 400 +436 401 +441 401 +584 401 +698 401 +699 401 +798 401 +802 401 +987 401 +434 402 +657 402 +905 402 +988 402 +989 402 +468 403 +545 403 +578 403 +697 403 +968 403 +434 404 +573 404 +677 404 +990 404 +429 405 +407 406 +408 406 +731 406 +408 407 +410 407 +411 407 +552 407 +730 407 +775 407 +991 407 +992 407 +409 408 +646 408 +725 408 +731 408 +775 408 +904 408 +908 408 +410 409 +411 409 +431 409 +434 409 +591 409 +705 409 +726 409 +729 409 +859 409 +892 409 +411 410 +413 410 +431 410 +434 410 +542 410 +543 410 +726 410 +788 410 +892 410 +937 410 +993 410 +540 411 +552 411 +773 411 +413 412 +552 412 +590 412 +724 412 +726 412 +743 412 +745 412 +943 412 +552 413 +590 413 +724 413 +884 413 +983 413 +434 414 +749 414 +452 415 +507 415 +535 415 +538 415 +549 415 +568 415 +652 415 +662 415 +705 415 +827 415 +914 415 +573 416 +851 416 +457 417 +612 417 +750 417 +872 417 +484 418 +523 418 +605 418 +755 418 +994 418 +995 418 +460 419 +486 419 +513 419 +564 419 +808 419 +848 419 +543 420 +574 420 +775 420 +609 421 +447 422 +554 422 +564 422 +824 422 +957 422 +996 422 +660 423 +997 423 +430 425 +659 425 +817 425 +840 425 +929 425 +476 427 +500 427 +507 427 +508 427 +509 427 +517 427 +864 427 +868 427 +908 427 +998 427 +999 427 +1000 427 +454 429 +460 429 +520 429 +543 429 +546 429 +554 429 +632 429 +775 429 +817 429 +884 429 +898 429 +919 429 +1001 429 +1002 429 +485 430 +497 430 +499 430 +500 430 +510 430 +756 431 +892 431 +904 431 +1003 431 +610 432 +822 432 +860 432 +907 432 +932 432 +963 432 +1004 432 +1005 432 +543 433 +687 433 +802 433 +927 433 +468 434 +504 434 +540 434 +542 434 +552 434 +571 434 +636 434 +687 434 +724 434 +726 434 +729 434 +748 434 +756 434 +788 434 +884 434 +885 434 +886 434 +887 434 +888 434 +993 434 +691 435 +439 437 +501 438 +552 438 +725 438 +729 438 +650 439 +1006 439 +444 440 +640 440 +517 441 +584 441 +698 441 +699 441 +806 441 +882 441 +444 443 +504 443 +539 443 +749 443 +775 443 +809 443 +834 443 +448 445 +451 445 +461 445 +568 445 +586 445 +588 445 +468 446 +594 446 +641 446 +695 446 +915 446 +475 447 +477 447 +482 447 +484 447 +564 447 +816 447 +824 447 +996 447 +1007 447 +456 449 +459 450 +731 450 +500 451 +507 451 +538 451 +662 451 +772 451 +836 451 +950 451 +1008 451 +455 452 +456 452 +515 452 +588 452 +652 452 +654 452 +656 452 +657 452 +662 452 +663 452 +688 452 +914 452 +1009 452 +1010 452 +1011 452 +484 453 +564 453 +687 453 +464 454 +578 454 +598 454 +603 454 +604 454 +621 454 +622 454 +623 454 +624 454 +625 454 +704 454 +708 454 +821 454 +1012 454 +1013 454 +1014 454 +515 455 +588 455 +654 455 +660 455 +761 456 +817 456 +1009 456 +468 457 +923 457 +548 458 +603 458 +632 458 +707 458 +840 458 +1001 458 +1015 458 +1016 458 +700 459 +701 459 +840 459 +842 459 +980 459 +1017 459 +1018 459 +1019 459 +471 460 +477 460 +484 460 +486 460 +487 460 +513 460 +533 460 +554 460 +564 460 +757 460 +848 460 +922 460 +995 460 +1002 460 +1020 460 +1021 460 +1022 460 +1023 460 +1024 460 +1025 460 +1026 460 +1027 460 +632 461 +818 462 +990 462 +1009 462 +1028 462 +603 464 +624 464 +625 464 +626 464 +774 464 +821 464 +1013 464 +1029 464 +545 465 +602 465 +523 466 +549 466 +638 466 +711 466 +765 466 +1030 466 +1031 466 +468 467 +470 467 +549 467 +588 467 +654 467 +660 467 +769 467 +770 467 +819 467 +952 467 +1010 467 +489 468 +552 468 +558 468 +573 468 +649 468 +836 468 +912 468 +932 468 +965 468 +1032 468 +1033 468 +500 470 +501 470 +521 470 +810 470 +836 470 +513 471 +545 471 +757 471 +808 471 +848 471 +1034 471 +696 472 +483 475 +554 475 +709 475 +849 475 +1007 475 +1020 475 +1035 475 +480 476 +485 476 +508 476 +757 476 +870 476 +483 477 +486 477 +933 477 +995 477 +996 477 +1020 477 +1036 477 +564 478 +480 479 +481 479 +554 479 +564 479 +849 479 +957 479 +1037 479 +483 480 +675 480 +811 480 +875 480 +957 480 +996 480 +1037 480 +487 481 +554 481 +564 481 +663 481 +691 481 +706 481 +709 481 +847 481 +1038 481 +1039 481 +849 482 +868 482 +995 482 +484 483 +486 483 +487 483 +491 483 +497 483 +499 483 +522 483 +564 483 +607 483 +709 483 +869 483 +995 483 +1008 483 +1022 483 +1035 483 +1040 483 +1041 483 +1042 483 +1043 483 +486 484 +549 484 +564 484 +709 484 +870 484 +871 484 +995 484 +1024 484 +508 485 +510 485 +605 485 +513 486 +565 486 +757 486 +848 486 +922 486 +995 486 +1020 486 +1023 486 +1036 486 +564 487 +757 487 +1026 487 +1044 487 +1045 487 +495 489 +675 489 +689 489 +694 489 +874 489 +878 489 +1046 489 +491 490 +497 491 +517 491 +522 491 +607 491 +632 491 +1041 491 +668 495 +689 495 +694 495 +806 495 +874 495 +875 495 +878 495 +1047 495 +979 496 +607 497 +1041 497 +499 498 +700 498 +764 498 +979 498 +1048 498 +701 499 +1001 499 +1049 499 +506 500 +507 500 +508 500 +537 500 +539 500 +562 500 +607 500 +730 500 +549 501 +638 501 +643 501 +660 501 +818 501 +821 501 +505 503 +573 503 +651 503 +549 504 +552 504 +724 504 +726 504 +730 504 +833 504 +892 504 +893 504 +895 504 +920 504 +981 504 +1050 504 +573 505 +736 505 +741 505 +509 506 +525 506 +509 507 +517 507 +540 507 +562 507 +607 507 +890 507 +942 507 +999 507 +509 508 +511 508 +607 508 +718 508 +755 508 +521 509 +712 509 +1050 509 +698 512 +775 512 +809 512 +833 512 +834 512 +889 512 +896 512 +904 512 +908 512 +992 512 +1051 512 +564 513 +757 513 +808 513 +848 513 +1034 513 +1052 514 +771 515 +532 518 +592 518 +594 518 +599 518 +600 518 +601 518 +836 518 +529 521 +578 521 +711 521 +765 521 +1016 521 +607 522 +528 523 +546 523 +570 523 +765 523 +822 523 +1053 523 +578 524 +529 527 +558 527 +902 527 +912 527 +1054 527 +549 528 +765 528 +822 528 +558 529 +903 529 +950 530 +881 531 +654 532 +680 532 +687 532 +705 532 +831 532 +1055 532 +612 533 +757 533 +1056 535 +950 538 +1057 538 +549 541 +1009 541 +552 542 +725 542 +726 542 +729 542 +756 542 +833 542 +886 542 +888 542 +558 543 +581 543 +617 543 +687 543 +709 543 +721 543 +1034 543 +581 545 +641 545 +709 545 +721 545 +569 546 +1053 546 +1058 546 +551 549 +564 549 +568 549 +660 549 +765 549 +816 549 +831 549 +1059 549 +765 551 +571 552 +590 552 +725 552 +726 552 +729 552 +730 552 +756 552 +788 552 +884 552 +885 552 +886 552 +887 552 +888 552 +568 553 +663 553 +853 553 +1060 553 +1061 553 +564 554 +565 554 +709 554 +824 554 +849 554 +868 554 +869 554 +928 554 +1007 554 +1062 554 +592 555 +687 555 +775 555 +833 555 +834 555 +860 555 +1009 555 +1063 555 +573 556 +573 557 +720 557 +721 557 +902 558 +903 558 +912 558 +1054 558 +741 559 +1064 560 +860 561 +902 561 +912 561 +1054 561 +1065 561 +1066 561 +568 562 +578 562 +588 562 +654 562 +660 562 +677 562 +769 562 +578 564 +660 564 +709 564 +762 564 +808 564 +824 564 +848 564 +849 564 +868 564 +869 564 +957 564 +995 564 +996 564 +1026 564 +816 565 +824 565 +1038 565 +567 566 +882 566 +598 568 +656 568 +660 568 +954 568 +1061 568 +669 569 +595 571 +726 571 +756 571 +788 571 +885 571 +886 571 +887 571 +888 571 +612 572 +659 572 +960 572 +980 572 +710 573 +851 573 +603 578 +604 578 +611 578 +656 578 +659 578 +671 578 +715 578 +811 578 +866 578 +891 578 +1067 578 +1068 578 +1069 578 +1070 578 +1071 578 +844 579 +686 581 +757 582 +699 584 +780 584 +806 584 +663 585 +677 585 +691 585 +700 585 +706 585 +983 585 +638 586 +883 586 +1031 587 +1072 587 +654 588 +655 588 +656 588 +660 588 +687 588 +769 588 +770 588 +772 588 +819 588 +951 588 +952 588 +953 588 +954 588 +1073 588 +662 589 +591 590 +724 590 +730 590 +743 590 +744 590 +747 590 +748 590 +756 590 +940 590 +945 590 +946 590 +961 590 +724 591 +725 591 +726 591 +743 591 +744 591 +746 591 +945 591 +594 592 +595 592 +650 592 +725 592 +895 592 +1074 592 +695 593 +745 593 +1075 593 +1076 593 +599 594 +600 594 +601 594 +648 594 +695 594 +725 595 +742 596 +786 596 +598 597 +603 598 +621 598 +623 598 +654 598 +708 598 +715 598 +741 598 +925 598 +953 598 +1032 598 +1062 598 +1077 598 +601 599 +780 599 +786 599 +725 600 +742 600 +965 600 +1046 601 +622 602 +623 602 +621 603 +630 603 +741 603 +855 603 +621 604 +872 606 +1041 607 +634 608 +924 608 +985 608 +872 609 +612 610 +822 610 +967 610 +1078 610 +1079 610 +614 611 +1001 611 +923 612 +968 612 +985 612 +1080 612 +1081 612 +1082 612 +1083 612 +1084 612 +1019 613 +700 614 +854 614 +1085 617 +737 621 +623 622 +1013 622 +821 624 +677 625 +636 627 +640 629 +683 629 +872 630 +730 633 +859 633 +872 634 +924 634 +969 634 +985 634 +1078 634 +737 636 +1014 636 +677 638 +642 641 +643 641 +645 641 +646 641 +643 642 +645 643 +783 647 +786 647 +787 647 +695 648 +792 648 +660 649 +773 649 +783 649 +696 650 +698 650 +775 650 +1086 651 +853 653 +656 654 +660 654 +769 654 +770 654 +772 654 +769 656 +953 656 +661 657 +752 657 +825 657 +846 657 +979 657 +935 658 +987 658 +1087 658 +1088 658 +1089 658 +853 659 +664 660 +677 660 +769 660 +772 660 +962 660 +1060 660 +704 661 +752 661 +754 661 +984 661 +1084 661 +715 662 +691 663 +706 663 +1090 663 +1091 664 +990 665 +694 668 +880 668 +778 671 +836 671 +1092 671 +694 675 +875 675 +1047 675 +1093 680 +692 687 +698 687 +703 687 +704 687 +1001 687 +1007 687 +1067 687 +884 688 +694 689 +706 691 +853 691 +975 691 +884 692 +1086 693 +1094 694 +696 695 +786 695 +775 697 +790 697 +790 698 +797 698 +801 698 +806 699 +879 699 +987 699 +1095 699 +840 700 +840 701 +1096 701 +783 703 +775 704 +996 705 +1097 705 +755 706 +847 706 +994 706 +1038 706 +1039 706 +1043 706 +1098 706 +825 707 +853 707 +954 707 +1010 707 +816 709 +849 709 +1035 709 +1038 709 +1098 709 +721 710 +732 710 +733 710 +851 710 +861 711 +900 711 +1050 711 +795 712 +988 714 +1099 714 +950 715 +812 718 +908 719 +737 723 +744 724 +746 724 +747 724 +940 724 +941 724 +945 724 +946 724 +958 724 +986 724 +1100 724 +726 725 +729 725 +730 725 +787 725 +798 725 +729 726 +756 726 +788 726 +885 726 +886 726 +887 726 +888 726 +978 726 +731 728 +976 728 +992 728 +1003 728 +859 729 +756 730 +945 730 +981 730 +982 730 +983 730 +974 731 +992 731 +1003 731 +821 734 +937 736 +793 738 +965 742 +746 743 +748 743 +944 743 +945 743 +745 744 +746 744 +748 744 +783 744 +945 744 +746 745 +748 745 +940 745 +945 745 +748 746 +945 746 +940 748 +1075 748 +872 750 +754 753 +812 754 +775 756 +788 756 +885 756 +886 756 +887 756 +888 756 +808 757 +848 757 +1020 757 +1025 757 +1026 757 +1027 757 +1045 757 +1101 757 +930 761 +935 761 +1048 764 +795 765 +822 765 +1053 765 +1102 765 +774 766 +1103 768 +770 769 +953 769 +819 770 +975 770 +1073 770 +953 771 +1104 771 +819 772 +976 773 +896 774 +809 775 +833 775 +834 775 +884 775 +786 780 +786 783 +885 784 +890 784 +891 784 +895 784 +936 784 +885 788 +886 788 +887 788 +888 788 +1005 793 +1067 793 +1069 793 +1078 793 +1105 793 +809 794 +903 795 +1066 795 +926 799 +1106 802 +850 807 +848 808 +1023 808 +1034 808 +1097 808 +833 809 +834 809 +957 811 +1037 811 +846 812 +825 814 +823 816 +847 816 +849 816 +990 818 +952 819 +953 819 +1058 819 +853 820 +1053 822 +868 824 +870 824 +1036 824 +1107 824 +1062 828 +976 831 +834 833 +908 833 +1108 834 +859 836 +1010 836 +1109 836 +1110 836 +1111 836 +838 837 +880 837 +980 840 +1035 847 +1039 847 +1043 847 +1098 847 +1034 848 +1045 848 +1098 848 +1035 849 +1037 849 +1043 849 +1098 849 +929 853 +869 854 +868 855 +869 855 +871 855 +923 855 +1112 855 +1113 859 +907 860 +963 860 +1005 860 +988 861 +989 861 +1050 861 +976 865 +1113 865 +869 868 +870 868 +1112 868 +1112 869 +871 870 +1035 870 +1038 870 +1114 870 +1115 874 +1095 878 +1116 884 +886 885 +887 885 +888 885 +887 886 +888 886 +888 887 +891 889 +896 889 +936 889 +978 890 +1117 890 +896 891 +907 891 +895 894 +920 894 +976 894 +981 894 +982 894 +983 894 +1011 894 +920 895 +976 895 +981 895 +983 895 +924 896 +936 896 +1118 898 +900 899 +1058 900 +912 902 +1066 902 +908 904 +1051 904 +911 907 +1004 907 +1005 907 +1067 907 +1069 907 +992 908 +1003 908 +1005 910 +1067 910 +1069 910 +1078 910 +1105 910 +1054 912 +1065 912 +1066 912 +1119 919 +981 920 +983 920 +1090 921 +1002 922 +1023 923 +985 924 +1062 928 +1120 930 +1011 931 +1121 931 +963 932 +1005 932 +987 935 +1087 935 +941 940 +946 940 +942 941 +958 942 +952 950 +962 954 +995 957 +996 957 +1037 957 +986 958 +1063 958 +1100 958 +1122 960 +1080 968 +1084 968 +981 976 +983 976 +1123 979 +1068 980 +983 981 +1124 981 +1087 987 +1050 988 +1050 989 +1009 990 +1003 992 +996 995 +1026 995 +1043 995 +1112 995 +1123 997 +1125 998 +1049 1001 +1126 1001 +1005 1004 +1067 1004 +1069 1004 +1105 1004 +1067 1005 +1069 1005 +1070 1005 +1105 1005 +1127 1009 +1019 1017 +1068 1017 +1068 1019 +1128 1023 +1097 1024 +1045 1026 +1069 1032 +1078 1032 +1038 1035 +1039 1035 +1043 1035 +1098 1035 +1043 1039 +1098 1039 +1098 1043 +1112 1045 +1129 1053 +1105 1066 +1069 1067 +1070 1067 +1078 1067 +1105 1067 +1070 1069 +1078 1069 +1105 1069 +1105 1070 +1130 1073 +1079 1078 +1084 1080 +1131 1080 +1132 1087 +1089 1088 +1133 1096 +1112 1098 diff --git a/datasets/ia-email-univ/readme.html b/datasets/ia-email-univ/readme.html new file mode 100644 index 0000000000000000000000000000000000000000..8f63fc6df93495872befe92a05b5f52d9f86bf28 --- /dev/null +++ b/datasets/ia-email-univ/readme.html @@ -0,0 +1,44 @@ +<html> +<link rel="stylesheet" media="screen" href="http://networkrepository.com/assets/css/bootstrap.css"> +<link rel="stylesheet" href="http://networkrepository.com/assets/css/responsive.css"> +<link rel="stylesheet" href="http://networkrepository.com/assets/css/style.css"> + +<body> +<br><br> +<div class="container"> +<div class="row"> +<div class="col-md-12"> +<div class="panel panel-success"> + <div class="panel-heading"> + <h3 class="panel-title"><i class="icon-group icon-large"></i> Acknowledgement policy</h3> + </div> + <div class="panel-body"> + <h4>Please acknowledge the <a href="http://networkrepository.com" target="_blank">repository</a> in published materials</h4> + <p class="lead12"> + If you publish material based on data obtained from this <a href="http://networkrepository.com" target="_blank">repository</a>, then, in your acknowledgements, please note the assistance you received by using <a href="http://networkrepository.com" target="_blank">network repository</a>. + <BR><BR> + Please use the following <code>BiBTeX</code> reference:<BR> + + <blockquote class="hero"> + <p style="font-family:'Lato';"> + <code style="font-size:1.1em;"> + @inproceedings{nr-aaai15,<BR> + title = {The Network Data Repository with Interactive Graph Analytics and Visualization},<BR> + author={Ryan A. Rossi and Nesreen K. Ahmed},<BR> + booktitle = {Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence},<BR> + url={<i><a href="http://networkrepository.com" target="_blank"><b style="font-weight:bold !important;">http://networkrepository.com</b></a></i>},<BR> + year={2015}<BR> + }<BR> + </code> + </p> + </blockquote> + Many of the datasets have additional citation requests; these can be found on each dataset page. + See the <a href="http://networkrepository.com/policy.php" target="_blank">data license and policy</a> for more information. + </p> + </div> +</div> +</div> +</div> +</div> +</body> +</html> \ No newline at end of file diff --git a/datasets/soc-advogato/readme.html b/datasets/soc-advogato/readme.html new file mode 100644 index 0000000000000000000000000000000000000000..9d0691b601db511db842d4722abdfbd7d2c83a25 --- /dev/null +++ b/datasets/soc-advogato/readme.html @@ -0,0 +1,39 @@ +<html> +<link rel="stylesheet" media="screen" href="http://networkrepository.com/assets/css/bootstrap.css"> +<link rel="stylesheet" href="http://networkrepository.com/assets/css/responsive.css"> +<link rel="stylesheet" href="http://networkrepository.com/assets/css/style.css"> + +<body> +<br><br> +<div class="container"> +<div class="row"> +<div class="col-md-12"> +<div class="panel panel-success"> + <div class="panel-heading"> + <h3 class="panel-title"><i class="icon-group icon-large"></i> Acknowledgement policy</h3> + </div> + <div class="panel-body"> + <h4>Please cite the following if you use the data:</h4> + <p class="lead12"> + + <blockquote class="hero"> + <p style="font-family:'Lato';"> + <code style="font-size:1.1em;"> + @inproceedings{nr-aaai15,<BR> + title = {The Network Data Repository with Interactive Graph Analytics and Visualization},<BR> + author={Ryan A. Rossi and Nesreen K. Ahmed},<BR> + booktitle = {AAAI},<BR> + url={<i><a href="http://networkrepository.com" target="_blank"><b style="font-weight:bold !important;">http://networkrepository.com</b></a></i>},<BR> + year={2015}<BR> + }<BR> + </code> + </p> + </blockquote> + </p> + </div> +</div> +</div> +</div> +</div> +</body> +</html> \ No newline at end of file diff --git a/datasets/soc-advogato/soc-advogato.edges b/datasets/soc-advogato/soc-advogato.edges new file mode 100644 index 0000000000000000000000000000000000000000..42d1d5d302a08f059901b86a603af5ccef31f006 --- /dev/null +++ b/datasets/soc-advogato/soc-advogato.edges @@ -0,0 +1,51335 @@ +% asym posweighted +% 51332 6551 6551 +% ent.developer ent.developer weight.certificate +1 1 .8 +1 2 1 +1 3 1 +1 4 1 +1 5 1 +1 6 .8 +1 7 .6 +1 8 1 +1 9 1 +10 11 .6 +12 12 .6 +12 13 .8 +12 14 .8 +15 15 .6 +15 16 .8 +15 17 .6 +15 18 .8 +15 19 1 +15 20 .6 +15 21 .6 +15 22 1 +15 23 .6 +24 24 .8 +25 26 .8 +25 27 .8 +25 28 .8 +25 29 1 +25 30 1 +25 31 1 +25 32 .8 +25 33 .8 +25 34 .8 +25 25 .8 +25 35 .8 +36 36 1 +37 38 .8 +37 39 .8 +37 40 .8 +37 37 .8 +41 41 .6 +41 42 .6 +41 43 1 +41 44 1 +41 45 1 +41 46 1 +47 47 .6 +48 49 .8 +48 50 .8 +48 51 .8 +48 52 .8 +48 48 .8 +48 53 1 +48 54 .6 +48 55 .8 +48 56 .8 +48 57 .8 +48 58 1 +48 59 .8 +48 60 .8 +48 61 .8 +48 62 .6 +48 63 .6 +48 64 .8 +48 65 1 +48 66 .8 +48 67 1 +48 68 .8 +48 69 .8 +48 70 .8 +48 71 .8 +48 72 .8 +48 73 .8 +48 74 .8 +48 75 .8 +48 76 .8 +77 77 .8 +78 79 1 +78 80 .8 +78 81 .8 +78 82 .8 +78 83 .8 +78 84 .8 +78 85 .8 +78 86 .8 +78 87 .8 +78 88 .8 +78 89 .8 +78 90 .8 +78 91 .8 +78 92 1 +78 93 .8 +78 94 .8 +78 95 1 +78 96 .8 +78 97 .8 +78 98 .8 +78 99 .8 +78 100 1 +78 101 1 +78 102 .8 +78 103 .8 +78 104 1 +78 105 .8 +78 106 .8 +78 107 .8 +78 40 .8 +78 108 1 +78 109 .8 +78 110 .8 +78 111 .8 +78 112 1 +78 113 1 +114 115 1 +114 116 .8 +114 114 .8 +117 118 1 +117 119 1 +120 45 1 +120 121 1 +122 22 1 +122 123 .8 +122 124 .8 +125 126 1 +125 127 .8 +125 128 .8 +125 129 1 +130 130 .8 +131 131 .6 +131 132 .6 +131 133 .8 +134 135 1 +134 136 1 +134 137 1 +134 134 .8 +134 138 .8 +134 79 1 +134 139 1 +134 140 .6 +134 141 .8 +134 142 .8 +143 144 1 +143 145 1 +143 146 1 +143 147 1 +143 148 1 +149 149 .6 +150 151 .8 +152 152 1 +153 153 1 +153 154 1 +153 155 1 +153 156 1 +153 157 .8 +153 158 .6 +153 159 .8 +153 160 .6 +153 161 .8 +153 162 .8 +153 163 1 +164 164 .8 +164 165 1 +164 166 .8 +164 167 .8 +164 168 .8 +169 170 1 +169 171 1 +169 172 1 +169 173 .8 +169 174 1 +169 169 .8 +169 175 1 +169 176 1 +169 177 .8 +169 178 .8 +179 179 .6 +180 181 .8 +180 182 .8 +180 183 .6 +184 184 .8 +185 185 1 +185 186 .8 +185 62 .8 +185 187 .6 +185 188 .8 +185 189 .6 +190 191 .8 +190 192 .8 +190 193 1 +190 194 .8 +195 196 .8 +195 197 .8 +195 195 .6 +195 198 .6 +195 199 .6 +195 200 .6 +195 201 .6 +195 202 .8 +195 203 .6 +195 204 .6 +195 205 .6 +206 207 1 +206 206 .8 +206 208 .8 +206 209 1 +206 210 1 +206 211 1 +206 212 1 +206 213 1 +214 214 .6 +214 215 .8 +214 216 .6 +214 217 .6 +214 218 .6 +214 219 .6 +214 220 .6 +214 221 .6 +214 222 .6 +214 223 .6 +214 224 .6 +214 225 .6 +214 226 .6 +214 227 .6 +214 228 .6 +214 229 .6 +214 230 .6 +214 231 .6 +214 232 .6 +214 233 .8 +214 234 .6 +214 235 .6 +214 236 .6 +214 237 .6 +214 238 .6 +214 239 .6 +214 240 .6 +214 241 .6 +214 242 .6 +214 243 .6 +214 244 .6 +214 245 .6 +214 246 .6 +214 247 .6 +214 248 .6 +214 249 .6 +214 250 .6 +214 70 .6 +214 251 .6 +214 252 .6 +214 253 .6 +214 254 .6 +214 255 .6 +214 256 .6 +214 257 .6 +214 258 .6 +214 259 .6 +214 260 .6 +214 261 .6 +214 262 .6 +214 263 .6 +214 264 .6 +214 265 .8 +266 266 .6 +267 267 1 +267 268 1 +267 269 .6 +267 270 1 +267 271 .8 +267 272 1 +267 273 1 +267 274 1 +275 276 .8 +136 135 1 +277 278 .6 +277 279 .8 +277 280 .6 +277 277 .8 +277 281 .6 +277 282 1 +277 283 .8 +277 30 1 +277 284 .6 +277 22 1 +277 285 1 +277 286 1 +277 287 .8 +277 227 .6 +277 288 .8 +277 289 .6 +277 290 1 +277 291 .6 +277 292 1 +277 112 1 +277 61 .8 +277 293 .6 +277 294 .6 +277 295 .8 +277 296 .8 +277 297 1 +277 298 .6 +299 299 1 +300 300 .6 +301 301 .8 +301 46 1 +301 95 .8 +301 302 .8 +301 303 1 +301 304 1 +301 305 1 +301 306 .8 +301 307 .8 +301 308 1 +309 309 .6 +309 191 .8 +309 310 1 +309 311 .6 +309 312 .6 +313 313 .8 +314 46 1 +314 30 1 +314 315 .8 +314 316 .8 +314 317 .6 +314 318 .8 +314 319 .8 +314 320 1 +321 321 .6 +321 322 1 +321 323 1 +321 126 1 +321 175 .8 +321 324 1 +321 30 1 +321 325 1 +321 326 1 +321 327 .8 +321 328 1 +321 329 1 +330 330 .8 +330 331 .8 +330 49 .8 +330 332 1 +330 57 1 +330 333 .8 +330 334 1 +330 335 .8 +330 336 1 +330 337 1 +330 48 .8 +338 339 1 +338 338 1 +340 340 .6 +341 342 .6 +343 344 1 +343 345 1 +343 324 1 +343 346 1 +347 347 .6 +348 349 1 +348 303 1 +348 350 .8 +348 351 .8 +348 352 1 +348 353 1 +354 354 1 +231 355 .6 +231 356 .6 +231 357 .8 +231 234 .6 +231 358 .6 +231 359 .6 +231 360 .6 +231 214 .8 +231 361 .6 +231 362 .6 +231 363 .8 +231 30 1 +231 364 .8 +365 365 .6 +366 366 .6 +367 367 .6 +368 368 .6 +369 370 .8 +371 371 .6 +372 373 1 +372 374 .8 +372 375 1 +372 87 .8 +372 141 .8 +372 376 .8 +372 377 1 +372 378 .6 +372 379 1 +380 381 1 +382 382 .6 +383 383 .6 +384 385 1 +384 384 .6 +384 386 .6 +384 387 .8 +388 389 .8 +388 390 1 +388 391 .8 +388 392 1 +388 393 .8 +388 394 1 +395 395 .6 +396 396 .6 +397 397 .6 +397 398 1 +397 399 1 +397 157 1 +397 400 .8 +397 401 .6 +397 346 .8 +397 402 .6 +397 403 .6 +397 404 .6 +397 405 1 +397 406 .6 +397 407 .8 +397 408 .6 +397 72 .8 +397 409 .6 +397 410 .8 +397 411 .8 +397 412 .6 +397 413 .6 +397 414 .8 +397 415 .6 +397 416 .6 +397 417 .8 +397 181 .8 +397 418 .6 +397 419 .6 +397 420 .8 +397 421 .6 +397 422 .8 +423 424 1 +423 425 1 +423 22 1 +423 112 1 +423 118 1 +423 426 1 +423 427 1 +428 429 .8 +428 430 .8 +428 431 .8 +428 432 .8 +428 433 1 +428 434 .8 +428 46 1 +428 435 .8 +428 436 .8 +428 437 .8 +428 438 .8 +428 318 .8 +428 439 .8 +428 440 1 +428 44 .8 +428 30 1 +428 441 .8 +428 442 .8 +428 443 .8 +428 316 .8 +428 352 1 +428 444 .8 +428 445 .8 +428 446 .8 +447 447 1 +448 449 .8 +448 450 .8 +448 451 .8 +448 452 .8 +448 453 .6 +448 454 .8 +455 455 1 +456 457 .8 +458 458 .6 +459 459 .6 +460 460 .6 +460 461 .6 +462 370 .8 +462 463 .8 +462 464 .8 +462 465 1 +438 438 .6 +438 316 1 +438 466 .8 +438 467 .8 +438 468 .8 +438 469 .8 +438 441 1 +438 470 .6 +438 471 .6 +438 472 .6 +438 473 .6 +438 474 .6 +438 475 .6 +438 476 .6 +438 477 .6 +438 478 .6 +438 479 .6 +438 480 .6 +438 481 .6 +438 482 .6 +438 483 .6 +438 236 .6 +438 484 .6 +438 485 .6 +438 486 .8 +438 487 .6 +438 488 .6 +438 489 .6 +438 490 .6 +438 491 .8 +438 492 .6 +438 493 .6 +438 494 .6 +438 495 .6 +438 496 .6 +438 497 .6 +438 498 1 +438 499 .6 +438 500 .6 +438 501 .8 +438 502 .6 +438 503 .6 +438 504 .6 +438 505 .6 +438 506 1 +438 70 .6 +438 507 .6 +438 508 .8 +438 509 .6 +438 510 .6 +438 305 1 +438 511 1 +438 512 .8 +438 513 .8 +438 93 .6 +438 514 .8 +438 515 .6 +438 258 .6 +438 516 .6 +438 517 .6 +438 518 .6 +438 519 .6 +438 520 .6 +438 521 .6 +438 522 .6 +438 523 .8 +438 524 .8 +438 525 1 +438 526 .8 +438 527 .8 +438 528 .8 +438 529 .8 +438 530 .6 +438 531 .6 +438 532 .6 +438 533 .6 +438 534 .6 +438 535 .6 +438 536 .6 +438 537 .6 +438 538 .6 +438 539 .6 +438 540 .6 +438 541 .6 +438 542 .6 +438 543 .6 +438 544 .6 +438 545 .8 +438 546 .8 +438 547 .8 +438 548 .6 +438 549 .8 +438 550 .6 +438 551 .6 +438 460 .6 +438 552 .6 +438 553 .8 +554 555 1 +554 556 .8 +557 557 1 +557 558 1 +557 559 1 +560 560 .8 +560 561 1 +560 562 1 +563 564 .8 +563 565 .8 +201 197 .8 +201 201 .6 +566 566 .6 +567 567 1 +568 568 .6 +568 569 .6 +568 570 .6 +571 571 .6 +571 572 1 +362 362 .8 +362 232 .8 +362 39 1 +362 573 .6 +362 324 .8 +362 574 .8 +362 575 .8 +362 576 1 +362 577 1 +362 578 .8 +362 19 1 +362 579 .8 +362 580 .8 +362 581 .8 +362 96 .6 +362 582 .8 +362 583 1 +362 584 1 +362 92 .8 +362 316 1 +362 585 .6 +362 586 .6 +362 587 .8 +362 588 .8 +362 589 .6 +362 255 .6 +362 501 .8 +362 45 1 +362 9 .8 +362 590 .6 +362 488 .6 +362 30 1 +362 328 1 +362 591 .8 +362 592 .8 +362 593 .8 +362 594 .8 +362 329 1 +362 89 .6 +362 595 .8 +362 596 .8 +362 597 .8 +362 598 1 +362 103 .8 +362 599 .8 +362 469 1 +362 523 .8 +362 438 .6 +362 104 .8 +362 242 1 +362 600 .8 +362 157 .8 +362 601 1 +362 602 .8 +362 603 .8 +362 604 .8 +362 335 .8 +362 336 1 +362 98 .8 +362 605 .8 +362 606 .8 +362 607 .8 +362 548 .8 +362 546 .8 +362 547 .8 +362 608 .6 +362 609 .6 +362 265 .8 +362 610 1 +362 611 .8 +362 399 .8 +362 612 1 +362 107 .6 +362 613 .8 +362 65 1 +362 429 1 +362 614 .8 +362 615 .8 +362 616 .8 +362 617 .8 +362 34 .8 +362 618 1 +362 619 .6 +362 620 .8 +362 297 1 +362 621 .8 +362 622 .6 +362 623 .8 +362 624 1 +362 274 1 +362 625 .8 +362 626 1 +362 193 1 +362 627 1 +362 212 .8 +362 628 1 +362 629 1 +362 630 .8 +362 631 .8 +362 322 .8 +362 632 .8 +362 289 .8 +362 418 .8 +362 633 .8 +362 497 .8 +362 634 .8 +362 635 1 +636 637 1 +636 638 1 +636 30 1 +636 639 1 +636 640 1 +636 641 1 +636 305 1 +636 642 1 +636 643 1 +636 644 1 +636 427 1 +636 645 1 +636 63 1 +636 646 1 +636 579 1 +636 119 1 +636 647 1 +636 334 1 +636 648 1 +636 649 1 +636 650 1 +636 58 1 +636 51 1 +636 651 1 +636 652 1 +636 653 1 +636 654 1 +636 655 1 +636 434 1 +636 656 1 +636 657 1 +636 658 1 +636 659 1 +660 660 .6 +660 661 1 +660 261 .8 +662 662 .6 +662 663 .6 +664 664 .6 +665 665 .6 +666 666 .8 +666 667 .8 +666 668 1 +666 669 .8 +666 670 .8 +671 672 1 +671 673 1 +671 671 .8 +671 674 .8 +671 675 .8 +676 677 .8 +676 678 .8 +676 466 .8 +676 603 .8 +676 679 1 +676 680 .8 +676 93 .8 +676 94 .8 +676 95 1 +676 96 .8 +676 97 .8 +676 108 1 +676 109 .8 +676 681 .8 +676 110 .8 +676 100 1 +676 682 1 +676 654 1 +676 683 1 +676 653 1 +676 652 1 +684 684 .6 +685 683 .8 +686 686 .8 +687 687 1 +602 602 .6 +602 601 .8 +602 583 1 +602 592 .8 +602 362 .8 +602 336 1 +688 688 .8 +689 689 1 +690 690 .6 +690 691 .6 +692 692 .6 +693 693 1 +694 694 .8 +694 282 1 +694 695 1 +694 696 .8 +694 697 .8 +694 698 .8 +699 699 .6 +699 109 .8 +699 700 .6 +699 701 1 +702 703 .8 +702 704 .6 +702 215 1 +702 702 .6 +702 705 .8 +706 707 .8 +706 708 1 +706 242 1 +706 545 1 +706 709 1 +706 620 1 +706 710 1 +706 333 1 +706 624 1 +706 653 1 +706 711 1 +706 712 1 +706 713 1 +706 714 1 +706 715 1 +706 716 1 +706 30 1 +706 643 1 +706 331 1 +706 332 1 +706 717 1 +706 718 1 +706 719 1 +706 618 1 +706 720 1 +706 346 1 +706 721 1 +706 722 1 +706 723 .8 +706 49 1 +706 724 1 +706 725 1 +706 726 .6 +706 727 1 +706 728 1 +706 268 1 +729 332 1 +729 310 1 +729 331 .8 +729 282 1 +730 126 1 +731 731 1 +732 732 .6 +733 733 .6 +734 734 .6 +734 735 .8 +734 102 .6 +734 736 1 +734 737 1 +734 738 1 +734 739 1 +734 84 .8 +734 740 .8 +734 741 .8 +734 584 .8 +734 648 1 +734 142 .8 +734 141 .8 +742 743 1 +742 742 1 +744 744 .6 +745 745 .6 +746 746 1 +746 747 1 +746 748 1 +746 749 1 +746 584 1 +746 750 1 +746 22 1 +746 436 1 +746 647 1 +746 751 1 +746 108 1 +26 33 .6 +26 34 .6 +26 32 .8 +26 31 1 +26 71 .6 +26 737 .8 +26 30 1 +26 46 1 +26 26 .8 +26 29 1 +26 324 1 +26 28 .8 +26 27 .8 +26 752 .8 +26 25 .8 +26 753 .6 +754 754 1 +755 755 .6 +756 756 .6 +757 758 .6 +757 757 .6 +757 215 .8 +757 46 1 +757 95 .8 +757 759 .8 +757 205 .6 +757 92 .8 +757 760 .6 +761 762 1 +763 764 1 +765 765 .8 +766 766 .8 +766 606 .8 +766 17 .6 +766 607 .8 +766 166 .8 +766 767 .8 +768 768 .8 +768 769 .8 +768 770 1 +768 771 .6 +768 772 .8 +768 773 1 +768 774 1 +768 610 1 +768 577 1 +768 775 .8 +768 658 1 +768 776 1 +768 777 .8 +768 778 .8 +768 779 .8 +768 780 .8 +768 781 1 +768 782 1 +760 783 1 +760 784 1 +760 438 1 +785 785 .8 +785 328 1 +785 786 .8 +785 126 1 +785 286 1 +785 787 1 +785 788 .8 +785 525 .8 +785 329 1 +785 789 1 +785 790 .8 +785 736 1 +785 791 .8 +785 792 .8 +785 162 1 +785 522 .8 +785 615 .8 +785 793 .8 +785 794 .8 +785 795 .8 +785 796 .6 +785 797 .8 +785 62 .8 +785 798 .8 +785 799 .6 +785 582 .8 +785 800 .8 +785 624 .8 +785 642 1 +785 801 .8 +785 802 1 +785 613 .8 +785 188 .8 +785 712 .8 +785 803 .8 +785 460 .8 +785 804 .8 +785 617 .8 +785 232 .8 +785 357 .8 +785 683 .8 +785 614 .8 +785 805 .8 +785 751 1 +785 806 .8 +785 346 .8 +785 620 .8 +785 492 1 +785 807 1 +785 808 .8 +785 809 .8 +785 810 .8 +785 811 .8 +785 349 1 +785 812 .8 +785 641 1 +785 405 1 +785 813 1 +785 814 .8 +785 594 .8 +785 815 .8 +816 816 .6 +817 817 1 +818 818 1 +819 820 .8 +821 822 .6 +821 821 .6 +823 823 1 +824 824 .6 +824 46 1 +824 328 1 +824 385 1 +824 126 1 +824 825 1 +824 826 1 +824 827 1 +828 828 .6 +291 829 .8 +291 112 1 +291 328 1 +291 22 1 +291 784 .8 +291 830 .8 +291 831 .6 +291 277 .8 +291 291 .6 +832 832 .6 +833 741 .8 +833 736 .8 +833 789 .8 +833 142 .8 +833 739 .8 +833 834 .8 +833 792 .8 +833 835 .8 +833 836 .8 +833 837 .8 +838 838 .6 +839 839 1 +840 840 .6 +840 841 .8 +840 586 .6 +840 34 .8 +840 780 .8 +840 842 .6 +840 843 .8 +840 844 .6 +840 845 .8 +840 846 .8 +840 597 .8 +847 847 .6 +848 849 .8 +848 848 1 +848 850 1 +848 851 .8 +848 852 1 +853 106 .8 +853 854 .8 +853 656 .8 +853 855 .8 +853 856 .8 +853 857 .6 +853 858 1 +853 859 .8 +853 860 .6 +853 648 .8 +853 84 .8 +853 30 1 +853 172 1 +853 429 1 +853 861 .8 +853 862 .8 +853 863 .8 +853 364 .8 +853 53 .8 +853 637 .8 +853 333 .8 +853 50 .8 +853 864 .8 +853 48 .8 +853 58 .8 +853 61 .8 +853 337 .8 +853 865 1 +866 866 .8 +867 867 1 +868 868 .6 +868 869 1 +868 870 1 +868 141 .8 +868 871 .6 +872 872 1 +873 46 1 +873 873 1 +874 874 .8 +875 875 .6 +875 876 .6 +877 316 1 +877 46 1 +877 878 .8 +877 743 1 +877 879 1 +877 880 .8 +877 438 .8 +877 329 1 +877 881 .8 +877 882 .8 +877 784 .8 +877 286 1 +877 795 .8 +877 883 .8 +877 79 .8 +884 884 .6 +885 126 1 +885 885 .8 +885 886 .8 +885 887 .8 +885 888 .8 +885 889 .6 +885 890 .6 +885 891 .6 +885 40 .8 +885 892 .8 +885 893 .8 +885 329 1 +885 751 .8 +885 894 .8 +895 895 .6 +896 118 1 +896 65 1 +897 897 .8 +897 898 .8 +897 899 .8 +897 900 .6 +897 780 1 +897 597 .8 +897 901 .8 +897 902 1 +897 903 .8 +897 904 1 +897 701 1 +897 905 .8 +897 711 1 +897 363 .8 +897 727 .8 +906 907 .8 +906 908 .8 +909 909 .6 +909 910 .8 +98 98 .6 +98 762 .8 +98 911 1 +98 804 .8 +98 113 1 +98 912 .8 +98 438 .8 +98 913 1 +98 914 .8 +98 328 1 +98 915 1 +98 286 1 +98 916 1 +98 19 .8 +98 265 .8 +98 917 .6 +98 846 .8 +98 918 1 +98 376 .6 +98 919 .8 +98 297 1 +98 65 .8 +98 214 .8 +98 920 .6 +98 255 .6 +98 157 .8 +98 241 .8 +98 92 1 +98 194 .8 +98 599 .8 +98 89 .6 +98 921 .8 +98 922 .8 +98 923 .8 +98 583 .8 +98 592 .8 +98 525 .8 +98 362 1 +98 924 .6 +98 925 .6 +98 926 .6 +98 613 .8 +98 927 .6 +98 246 .6 +98 615 .8 +98 399 .8 +98 928 .6 +98 929 .8 +98 930 .8 +98 121 1 +931 931 .6 +932 932 .6 +524 524 .6 +524 807 1 +524 438 .8 +524 258 .6 +524 528 .8 +524 918 1 +524 735 1 +524 933 .8 +524 623 .8 +524 791 .8 +524 719 1 +524 934 1 +524 346 .8 +524 935 .8 +524 98 .6 +524 936 .8 +524 937 .8 +524 171 1 +524 597 .8 +524 938 .8 +524 712 .8 +524 939 .8 +524 593 .8 +524 530 .8 +524 940 .6 +524 941 .6 +524 942 .6 +524 453 .6 +524 804 1 +524 324 1 +524 263 .6 +524 943 1 +524 830 .8 +524 944 1 +524 945 .8 +524 795 .8 +524 946 .6 +524 947 .8 +524 922 .8 +524 255 .8 +524 948 .6 +524 949 1 +524 950 .6 +524 951 .6 +524 864 .8 +524 103 .8 +524 658 1 +524 952 .6 +524 532 .6 +524 953 .8 +524 917 .6 +524 107 .6 +524 954 .6 +524 955 .6 +524 956 .6 +524 957 .8 +524 469 1 +524 780 .8 +524 271 .8 +524 358 .6 +524 958 .8 +524 959 .6 +524 214 .8 +524 89 .6 +524 960 .6 +524 888 .8 +524 961 .8 +524 887 .8 +524 962 .8 +524 513 .8 +524 963 .6 +524 801 1 +524 757 .6 +524 703 .6 +524 923 .6 +524 964 .6 +524 965 .6 +524 966 .6 +524 517 .6 +524 45 .8 +524 967 .6 +524 968 .6 +524 969 .6 +524 970 .6 +524 920 .8 +524 305 1 +524 971 .6 +524 972 .6 +524 598 .8 +524 599 .6 +524 522 .8 +524 613 .6 +524 295 .8 +524 525 1 +524 973 .6 +524 974 .8 +524 975 .6 +524 976 .6 +524 977 .6 +524 978 .6 +524 979 .6 +524 980 .6 +524 981 .6 +524 982 .6 +524 362 .8 +524 983 1 +524 984 .6 +524 93 .6 +524 985 .8 +524 986 .6 +524 987 .8 +524 988 .6 +524 989 .6 +524 990 .8 +524 773 .6 +524 991 .8 +524 992 .6 +524 993 .8 +524 34 .8 +524 545 .8 +524 994 .8 +524 995 .8 +524 996 .6 +524 997 .6 +524 998 .8 +524 157 .6 +524 19 .8 +524 261 .6 +524 394 .8 +524 999 .6 +524 638 1 +524 1000 .6 +524 546 .8 +524 492 .8 +524 46 1 +524 44 1 +524 1001 .8 +524 1002 .8 +524 174 1 +524 1003 .8 +524 1004 .8 +1005 721 .6 +1006 1007 1 +669 669 .8 +669 670 1 +669 1008 1 +669 1009 .8 +669 666 .8 +669 668 .8 +669 1010 .6 +669 1011 1 +669 1012 1 +1013 1013 .8 +1014 1014 1 +1015 1015 .6 +1016 739 1 +1016 45 1 +1016 92 .8 +1016 1017 .8 +1016 1018 .8 +1016 1019 .6 +1016 1020 1 +1016 1021 1 +1016 1022 1 +1016 1023 .8 +1016 215 1 +1016 1024 .8 +1016 1025 .8 +1016 641 .8 +1016 1026 .8 +1016 1027 .8 +1016 714 1 +1016 743 1 +1016 1028 .8 +1016 1029 .6 +1016 1030 1 +1016 801 .8 +1016 1031 .8 +1016 469 .8 +1016 443 .8 +1016 1032 .8 +1016 1033 .8 +1016 736 1 +1016 741 1 +1016 90 .8 +1016 1034 .6 +1016 1035 .6 +1016 297 1 +1016 429 1 +1016 44 1 +1016 293 1 +1016 1036 .6 +1016 1037 .8 +1016 1038 .6 +1016 1039 .6 +1016 1040 .6 +1016 1041 .6 +1016 1042 .6 +1016 1043 .6 +1016 1044 .6 +1016 497 1 +1016 613 .8 +1016 1045 .6 +1016 656 .8 +1016 1046 1 +1016 1047 1 +1048 1048 .6 +1048 1049 1 +1050 786 .8 +1050 588 .8 +1050 1051 .8 +1050 1052 1 +1050 792 1 +1050 1053 .8 +1050 715 .8 +1054 1054 1 +1055 1056 .8 +1055 523 .8 +1055 1057 .8 +1055 411 .6 +1055 1058 .8 +1055 1059 .6 +1055 98 .8 +1055 1060 .6 +1061 304 .8 +1061 1062 .8 +1061 450 .8 +1061 449 1 +1063 1063 .6 +1063 1064 .8 +1063 1065 1 +1063 1066 .6 +1063 1067 .8 +541 438 .8 +541 598 1 +541 1068 1 +541 617 .6 +541 1069 .8 +541 316 1 +541 328 1 +541 1070 1 +1071 441 1 +1072 30 1 +1072 1073 .8 +1072 577 .8 +1072 326 1 +1072 1074 .8 +1072 306 .8 +1072 468 .8 +1072 1075 .8 +1072 1076 .6 +1072 305 .8 +1072 46 1 +1072 324 .8 +1072 1077 .6 +1072 352 .8 +1072 466 .8 +1072 1078 .8 +1072 1021 .8 +1072 882 .8 +1072 1079 .8 +1072 351 .8 +1072 1080 .6 +1072 1081 .8 +1072 677 .6 +1072 638 .6 +1072 1082 .8 +1072 1083 .8 +1072 1084 .6 +1072 1085 .6 +1072 1086 .8 +1072 1022 .8 +1072 642 1 +1072 438 .6 +1072 303 .8 +1072 431 .8 +1072 827 1 +1072 316 .8 +1072 1087 .8 +1072 172 .8 +1072 142 .8 +1072 555 1 +1072 1088 .6 +1072 933 .6 +1072 643 1 +1072 1089 .8 +1072 1090 .6 +1072 89 .6 +1072 528 .8 +1072 1091 .6 +1072 1092 1 +1072 440 1 +1072 599 .6 +1072 804 .8 +1072 1093 .6 +1072 1094 .8 +1095 1095 .6 +1096 1096 .6 +238 104 .8 +238 1097 .8 +238 736 1 +238 92 .8 +238 238 .6 +238 651 .8 +238 998 .8 +238 187 .8 +1098 1098 .6 +1099 1099 .6 +1100 1002 .8 +1100 1101 .8 +1100 30 1 +1102 1102 .6 +1103 1103 .6 +116 1104 .8 +116 1105 .8 +116 142 1 +116 1104 .8 +116 1106 .8 +116 718 1 +116 1107 .8 +116 22 1 +116 859 1 +116 673 1 +116 674 1 +116 588 1 +116 1108 .8 +116 1109 .6 +1110 1110 .8 +1110 1111 .8 +1110 784 .8 +1110 880 .8 +1110 175 1 +1110 887 .8 +1110 1112 .6 +1110 108 .8 +1110 652 1 +1110 1113 .8 +1110 1114 .6 +1110 883 .8 +1115 328 1 +1115 171 1 +1115 46 1 +1115 350 1 +1115 1116 1 +1115 1092 1 +1115 30 1 +1115 1117 .8 +1115 324 .8 +1115 8 .8 +1115 719 1 +1115 325 1 +1115 1020 1 +1115 913 .8 +1115 326 1 +1115 126 1 +1115 101 1 +1115 428 .8 +1118 46 1 +1118 1118 .6 +1118 148 1 +1119 92 .8 +1119 1022 .8 +1119 750 .8 +1119 1017 .8 +1119 469 .8 +1119 584 .8 +1120 1120 .8 +1121 864 .8 +1121 1121 .6 +1122 764 1 +1122 426 1 +1122 282 1 +1122 1123 1 +1122 22 1 +1122 424 1 +1122 46 1 +1122 1124 1 +1122 118 1 +1122 1125 1 +1122 1126 1 +1122 290 1 +1122 598 .8 +1122 110 .8 +1122 647 1 +1122 273 .8 +1122 1127 1 +1122 237 .6 +1128 1128 .8 +1129 1129 .6 +1129 1130 .6 +1131 1131 1 +1132 1132 .6 +1132 30 1 +1132 1133 .8 +1132 349 1 +1132 282 1 +1132 1134 1 +1132 982 .8 +1132 246 .6 +1132 1135 .8 +1132 1136 .6 +1132 643 1 +1132 94 .6 +1132 517 .6 +1132 1137 .6 +1132 525 .8 +1132 1138 .6 +1132 1139 .6 +1132 938 .6 +1132 898 .6 +1140 1140 .8 +1141 1142 .8 +1141 1141 .6 +1143 1143 1 +1144 1144 .6 +1144 1145 .8 +1146 1146 .6 +1147 1147 .8 +1147 1148 .6 +1147 1149 .8 +1147 1150 .8 +1147 1151 1 +1147 711 1 +1147 791 1 +1147 429 1 +1147 326 1 +1147 46 1 +1147 883 1 +1147 328 1 +1147 324 1 +1147 1152 .6 +1147 625 .8 +1147 34 1 +1147 1153 1 +1147 1154 .8 +911 911 .8 +911 175 .8 +911 916 1 +911 1155 .8 +911 1156 1 +911 1157 1 +911 1158 .8 +911 764 1 +911 292 1 +1159 603 1 +1159 1159 .6 +1159 604 .8 +1159 261 .6 +1159 157 .6 +1159 242 .8 +1159 89 .6 +1159 658 .8 +1159 955 .6 +1159 1153 .8 +1159 989 .8 +1159 1160 1 +1159 519 .6 +1159 613 .8 +1159 215 1 +1159 429 1 +1159 1161 .6 +1159 599 .8 +1159 1162 1 +1159 107 .6 +1159 376 .8 +1159 214 .8 +1159 1163 .6 +1159 578 .8 +1159 718 .8 +1159 1164 .6 +1159 1042 .6 +1159 525 .8 +1159 1165 .8 +1159 556 .8 +1159 1060 .6 +1159 1166 .8 +1159 807 1 +1159 1167 1 +1159 584 1 +1159 323 1 +1159 241 .8 +1159 577 1 +1159 938 .6 +1159 1168 .6 +1159 1068 1 +1159 1169 .8 +1159 1170 .6 +1159 638 1 +1159 362 .8 +1159 920 .8 +1159 1171 1 +1159 1172 .8 +1159 175 1 +1173 1173 .6 +1174 1174 .8 +1174 710 1 +1174 974 .8 +1174 594 .8 +1174 1175 1 +1174 126 1 +1174 852 1 +1174 1176 1 +1174 1177 1 +1174 175 1 +1174 916 1 +1174 329 1 +1174 1178 .6 +1174 1179 1 +1174 1180 .8 +1174 1089 1 +1174 30 1 +1174 658 1 +1174 625 .8 +1174 597 .8 +1174 166 1 +1174 708 .8 +1174 1153 1 +1174 1181 .8 +1174 1182 .6 +1174 1183 .8 +1174 449 1 +1184 1185 .6 +1184 1184 .6 +1184 424 1 +1184 427 1 +1184 328 1 +1184 30 1 +1184 719 1 +1184 46 1 +1184 296 1 +1184 286 1 +245 245 .6 +245 1186 .6 +245 1187 .6 +245 1188 .6 +245 297 1 +245 1189 .8 +245 1190 .8 +245 214 .8 +245 1191 .8 +245 257 .8 +245 1192 .6 +245 993 .8 +245 830 .8 +1188 492 .6 +1188 784 1 +1188 234 .6 +1193 1193 .8 +1194 1195 .8 +1196 1196 1 +1197 801 1 +1197 1198 1 +1197 84 .8 +1199 49 1 +1199 1200 1 +1199 98 .8 +1199 1199 .8 +1201 1201 .8 +1201 1202 .8 +1201 1203 1 +1201 1204 .8 +1201 1205 .6 +1201 1206 .8 +1201 1207 .8 +1201 1208 .8 +1201 1209 .8 +1201 1210 .8 +1201 749 1 +1201 1211 .8 +1201 387 .8 +1201 748 1 +1201 1212 .8 +1201 1213 .8 +1201 46 1 +1201 584 .8 +1201 1047 .6 +1201 377 .8 +1201 1214 .8 +1201 1215 .6 +1201 784 .8 +1201 199 .8 +1201 346 .6 +1201 110 .8 +1201 1216 .8 +1201 1111 .8 +1201 893 .8 +1201 1217 .8 +1201 113 .8 +1201 1218 .8 +1201 1219 .8 +1201 1220 .8 +1201 1221 .6 +1201 659 1 +1201 1070 .8 +1201 1222 1 +1201 1223 .6 +1201 290 1 +1201 30 .8 +1201 1145 .8 +1224 740 .8 +1224 1224 .6 +1225 1225 .6 +1226 379 1 +1226 282 1 +1226 22 1 +1226 65 1 +1226 869 1 +1226 870 1 +1226 1227 1 +1226 1228 .8 +1226 312 .6 +1226 1229 .8 +1226 1230 1 +1226 356 .6 +1226 695 1 +1226 1231 1 +1186 1232 .6 +1186 575 .8 +1186 584 1 +1186 1233 .8 +1186 215 .8 +1186 203 .6 +1186 1234 .8 +1186 226 .6 +1186 89 .6 +1186 355 .8 +1186 311 .6 +1186 214 .8 +1186 245 .6 +1186 1189 .8 +1186 1235 .6 +1236 1236 .8 +1236 1237 1 +1236 610 .8 +1236 597 .8 +1236 124 .8 +1236 1238 1 +1236 1239 .8 +1236 1240 1 +1236 1005 .6 +1236 1241 1 +1236 944 .8 +1236 1242 .8 +1236 1178 .6 +1236 577 1 +1236 1243 .8 +1236 1244 1 +1236 1245 .8 +1236 1116 1 +1236 1246 .8 +1236 1092 .8 +1236 1247 1 +1236 830 1 +1236 1248 1 +1236 1249 .8 +1236 1250 .8 +1236 1251 .6 +1236 1252 .8 +1236 297 1 +1236 1253 .6 +1236 62 .8 +1236 1254 .8 +1236 1255 .8 +1236 1256 .6 +1236 813 1 +1236 1257 .6 +1236 1258 .8 +1236 1259 .6 +1236 1260 .8 +1236 1261 .6 +1236 1262 .6 +1236 1263 .6 +1236 1264 .6 +1236 1265 .6 +1236 1266 .6 +1236 1267 .6 +1236 1268 .8 +1236 1269 .6 +1236 1270 1 +1236 1271 .6 +1236 1043 .8 +1272 1273 .8 +1274 1275 .8 +1276 1276 .6 +1276 30 1 +1276 46 1 +1276 1277 .6 +1276 1278 1 +1276 126 1 +1276 6 1 +1276 329 1 +1276 1279 .6 +1276 1032 .8 +1276 1 .8 +1276 793 .8 +1280 1280 1 +1280 1113 .8 +1280 214 .6 +1280 1281 .8 +1280 1282 .6 +1280 1283 .6 +1280 1284 .8 +1280 45 1 +1285 1286 .8 +1285 1026 .8 +1285 1287 .8 +1285 1288 .8 +1285 1289 .8 +1285 985 .6 +1285 1290 .8 +1285 1291 .8 +1285 648 1 +1285 740 .8 +1292 1292 .8 +1292 215 1 +1292 506 1 +1292 717 1 +1292 1293 1 +1294 1294 .6 +1295 1295 .8 +1296 1297 .6 +1296 1296 .6 +1296 1298 .8 +1299 1299 .6 +1300 1300 .6 +1301 1302 .8 +1301 1162 1 +1301 528 .8 +1301 739 1 +1301 943 1 +1301 762 1 +1301 757 .6 +1301 187 .8 +1301 804 .8 +1301 638 .8 +1301 329 1 +1301 1303 .8 +1301 142 .8 +1301 656 1 +1301 84 .8 +1301 1167 1 +1301 1304 .8 +1301 1305 .8 +1301 855 1 +1301 1306 .8 +1301 741 .8 +1301 1307 1 +1301 1308 .8 +1301 1309 1 +1301 792 1 +1301 1310 .8 +1301 405 1 +1301 1311 .8 +1301 1312 1 +1301 1247 1 +1301 764 1 +1301 1116 1 +1301 349 1 +1301 1313 1 +1301 1314 1 +1301 214 .8 +1301 780 .8 +1301 791 1 +1301 34 .8 +1301 1016 .8 +1301 1315 1 +1301 242 .8 +1301 788 .8 +1301 1316 1 +1301 1317 1 +1301 1318 1 +1301 1319 1 +1301 173 1 +1320 1321 .8 +1322 174 1 +762 762 1 +762 913 1 +762 1314 1 +762 915 1 +762 1323 1 +762 297 1 +762 98 .8 +762 1324 1 +762 1325 1 +762 1326 1 +762 171 1 +1327 1327 .6 +1328 1328 .6 +1329 1329 .8 +1330 1330 .6 +1331 1331 .6 +1331 708 .8 +1331 777 .8 +1331 597 .8 +28 28 .6 +1332 1332 .6 +1333 1334 .8 +1333 1333 .6 +119 119 .8 +119 764 1 +119 108 .6 +119 1335 .8 +119 121 1 +119 306 .8 +119 750 1 +119 45 1 +119 1336 .8 +119 658 .6 +119 855 1 +119 887 .8 +119 1337 .8 +119 1338 .8 +119 1339 .6 +119 1340 .6 +119 1341 .8 +119 1342 .8 +119 1343 1 +119 1344 .8 +119 1345 .6 +119 1346 .8 +119 65 1 +1347 1347 .6 +1347 869 1 +1348 1348 1 +623 1349 .8 +623 1350 .8 +623 438 .6 +623 1351 .8 +623 791 .8 +623 1352 .6 +623 849 .8 +623 1353 .8 +623 1354 .6 +623 349 .8 +623 1355 1 +623 1356 .8 +623 1216 .6 +623 1309 .8 +623 1357 .8 +1358 1358 1 +261 214 1 +261 1359 1 +261 1047 1 +261 405 .8 +261 780 1 +261 1154 1 +261 604 .8 +261 1360 .6 +261 1361 1 +261 1362 1 +261 1363 .8 +261 1364 .8 +261 661 .6 +261 1365 .8 +261 1366 1 +261 1367 .8 +261 768 .8 +261 1368 .8 +261 1369 1 +261 1370 .6 +261 526 .8 +261 1065 1 +261 1371 1 +261 1372 1 +261 1373 1 +261 1374 1 +261 1375 .6 +261 1376 1 +261 1377 1 +261 9 1 +261 1378 1 +261 727 1 +261 1379 .8 +261 1380 .8 +261 1381 1 +261 1160 1 +261 441 1 +261 1382 .6 +261 1251 1 +261 1383 .8 +261 1254 .8 +261 1094 1 +261 699 1 +261 1384 1 +261 1385 1 +261 1386 .8 +261 1387 .8 +261 363 1 +261 701 1 +261 1388 1 +261 1389 .8 +261 128 1 +261 109 1 +261 914 1 +261 1390 1 +261 1391 1 +261 1392 1 +261 1393 1 +261 1394 1 +261 1395 .8 +261 943 .8 +261 1396 1 +261 37 1 +261 1397 1 +261 1398 1 +261 1043 1 +261 1399 1 +261 42 1 +261 625 1 +1400 466 .8 +1400 30 1 +1400 324 .8 +1400 174 .8 +1400 326 1 +1400 1400 .6 +1400 1002 .8 +1400 323 .8 +1400 345 .8 +1400 797 .6 +1400 1401 .8 +1400 1076 .6 +1400 121 .6 +1400 46 1 +1400 438 .8 +1400 328 1 +1400 1402 .8 +1400 587 .6 +1400 329 1 +1400 1403 .6 +1400 1404 .6 +1400 555 1 +1400 1405 .6 +1400 584 1 +1400 1406 .6 +1400 1407 .6 +1400 1000 .6 +1400 1408 .6 +1400 837 .8 +1400 859 1 +1400 1409 .6 +1400 1410 .6 +1031 1411 .6 +1412 1412 .6 +1413 1414 .6 +1413 1413 .6 +1413 438 .8 +1413 597 .8 +1413 583 .8 +1413 1415 .6 +1413 934 1 +1413 242 .8 +1413 30 1 +1413 949 1 +1413 171 1 +1413 172 1 +1416 1417 1 +1416 1418 .8 +1416 780 .6 +1416 1419 .8 +1416 1420 1 +1421 1422 .6 +1421 1423 .6 +1421 1424 .6 +1421 1425 .6 +1426 1426 .8 +1426 1427 .8 +1426 1428 1 +1426 1429 .8 +1426 1430 1 +1431 385 .8 +1431 860 1 +1432 1432 1 +1433 1433 1 +1433 328 1 +1433 30 1 +1433 306 .8 +1433 1434 .8 +1433 326 1 +1433 934 .8 +1433 1020 1 +1433 174 .8 +1433 1435 .6 +1433 1436 .8 +1433 797 .8 +1433 1028 .8 +1433 648 1 +1433 142 .8 +1433 1437 1 +1438 1438 .6 +1439 1439 .6 +1439 191 .8 +1440 1440 .6 +1440 1441 1 +1442 1442 .6 +1443 1443 1 +1444 1028 1 +1444 46 1 +1444 175 1 +1444 286 1 +1445 1445 .8 +1446 1446 .8 +1446 1447 .8 +1446 803 .8 +1448 1449 .8 +1448 1448 .6 +1448 379 .8 +1448 1450 .6 +1448 1451 .8 +1452 1453 .8 +1452 1452 .6 +1452 1454 .8 +1452 142 .8 +1452 1176 1 +1452 1312 .8 +1452 472 .6 +1455 1455 1 +1456 1456 .6 +1456 597 .8 +1457 801 .8 +1457 516 .8 +1457 1458 .8 +1457 297 1 +1457 1459 1 +1460 1460 .6 +534 1461 .6 +534 46 1 +534 534 .6 +534 493 1 +534 6 .8 +534 852 1 +534 1462 1 +534 883 .8 +534 1463 .6 +534 658 .8 +534 1172 .8 +534 1126 1 +534 1464 .8 +534 1465 .8 +534 1449 .8 +534 282 1 +534 1466 .6 +534 1467 .8 +1468 1468 1 +1469 712 .8 +1469 808 .8 +1469 517 .8 +1155 764 1 +1155 1209 .8 +1470 1470 .6 +1471 1471 1 +1472 1472 .6 +1472 995 .6 +1472 438 .8 +1472 46 1 +1472 44 1 +1472 588 .8 +1472 802 1 +1472 1473 .8 +1474 1474 .6 +1475 1475 1 +358 358 .6 +358 30 1 +358 1020 1 +358 46 1 +358 719 1 +358 1476 .8 +358 324 .8 +358 345 .8 +358 328 1 +358 172 .8 +358 827 .8 +358 810 .6 +358 1477 .6 +358 231 .6 +358 524 .6 +358 215 .8 +358 107 .6 +1478 1478 .8 +825 747 1 +825 427 1 +825 746 1 +825 290 1 +825 1479 1 +825 65 .8 +825 1181 .8 +825 789 .8 +825 286 1 +825 1480 .6 +825 46 1 +825 858 .8 +825 827 1 +825 736 1 +825 825 .6 +825 826 1 +825 647 1 +825 329 1 +1200 1200 1 +1200 49 1 +1481 1481 .6 +1481 213 1 +1482 1482 1 +1483 1483 .8 +1483 46 1 +1483 514 .8 +1483 429 1 +1483 240 .8 +1483 806 .6 +1483 1407 .6 +1483 1464 .8 +1483 111 .8 +1483 438 .8 +1483 852 1 +1483 1172 .8 +1483 858 1 +1483 944 .8 +1483 1484 .8 +1483 784 1 +1483 1220 .8 +1483 658 .8 +1483 296 1 +1483 711 .8 +1483 30 1 +1483 719 1 +1483 956 .6 +1483 328 1 +1483 214 .8 +1483 1181 .8 +1483 528 .8 +1483 44 .8 +1483 362 .8 +1483 9 .8 +1483 1171 1 +1483 165 .8 +1483 4 .8 +1483 1022 1 +1483 1072 .8 +1483 5 1 +1483 431 1 +1483 1485 .6 +1483 1165 .8 +1483 445 1 +1483 1486 .8 +1483 1415 .8 +1483 1318 1 +1483 1302 .6 +1483 703 .6 +1483 739 1 +1483 791 1 +1483 316 1 +1483 584 1 +1483 258 .8 +1483 1487 .6 +1483 1488 .6 +1483 952 .6 +1483 1489 .8 +1483 937 .8 +1483 918 1 +1483 939 .8 +1483 234 .6 +1483 1223 .6 +1483 1490 .8 +1483 1491 .8 +1483 1492 .8 +1483 1493 .8 +1483 643 1 +1483 1494 .8 +1483 353 1 +1483 526 .8 +1483 751 1 +1483 103 .8 +1483 950 .6 +1483 1495 1 +1483 1496 .8 +1483 1497 .8 +1483 1498 .6 +1483 934 1 +1483 1499 1 +1483 613 .8 +1483 997 .6 +1483 1500 .6 +1483 1241 .8 +1483 194 .6 +1483 1501 .8 +1483 92 .8 +1483 604 .8 +1483 346 .8 +1483 1502 1 +1483 1503 1 +1483 673 1 +1483 261 .8 +1483 373 .8 +1504 1504 .8 +1504 1505 .8 +1504 843 .8 +1504 1506 .6 +1507 1507 .8 +1507 126 1 +1508 112 1 +1509 1509 .6 +1510 1247 1 +1510 1511 .8 +1510 1512 .8 +1510 577 1 +1513 1513 .6 +1513 1514 .8 +1513 332 1 +1513 1515 1 +806 806 .6 +806 22 1 +806 424 1 +806 426 1 +806 1124 1 +806 597 .8 +806 770 1 +806 514 .8 +806 1516 .8 +806 1047 .6 +806 118 1 +806 1517 .8 +806 1518 .8 +806 1519 .8 +806 1520 .8 +806 711 .8 +806 1521 .6 +806 1522 .8 +806 972 .6 +806 1523 .8 +806 1524 1 +1525 1526 .8 +1525 1525 .6 +1525 1527 .8 +1525 1528 .8 +1525 1529 .8 +1525 1530 .8 +1525 1531 .8 +1532 1123 1 +1532 1533 .8 +1534 1314 .6 +1534 237 .6 +1534 1535 .6 +1534 1536 .8 +1534 1537 .6 +1538 1538 .6 +1538 1539 .6 +1538 1540 .8 +1538 711 1 +1538 234 .8 +1538 414 .8 +1538 716 1 +1538 349 1 +1487 658 1 +1487 1488 .8 +1487 1284 .8 +1487 46 1 +1487 1541 .8 +1542 1542 .8 +1542 1543 .8 +1542 647 1 +1542 764 1 +1542 46 1 +1542 1091 .8 +1542 1137 .6 +1542 1544 .8 +1545 46 1 +1545 438 .8 +1545 1343 1 +1545 187 .8 +1545 1546 .8 +1545 780 .8 +1545 523 .8 +1545 1547 .8 +1545 44 1 +1545 346 .8 +1545 1548 1 +1545 316 1 +1545 1549 .8 +1545 658 .8 +1545 353 1 +1545 1550 .6 +1545 121 1 +1545 506 1 +1545 431 1 +1545 1551 1 +1545 9 .8 +1545 711 1 +1545 214 .8 +1545 1270 1 +1545 1047 .8 +1545 922 .8 +1545 103 1 +1545 1552 .8 +1545 743 1 +1545 424 1 +1545 282 1 +1545 296 1 +1545 1127 1 +1545 1246 1 +1545 119 1 +1545 1030 1 +1545 469 1 +1545 1117 1 +1545 1553 1 +1545 1122 1 +1545 45 1 +1545 583 1 +1545 274 1 +1545 175 1 +1545 265 1 +1545 157 .8 +1545 1554 .8 +1545 618 1 +1545 1555 1 +1545 829 1 +1545 1556 .6 +1545 1501 .8 +1545 65 1 +1545 1557 1 +1545 1558 1 +1545 328 1 +1545 1559 .8 +1545 593 1 +1545 801 1 +1545 610 1 +1545 1560 1 +1545 1561 1 +1545 440 1 +1545 1515 1 +1545 148 1 +1545 1278 1 +1545 6 1 +1545 612 1 +1545 126 1 +1545 623 1 +1545 1562 1 +1545 1563 .8 +1545 1564 .8 +1545 1565 1 +1545 632 1 +1545 788 1 +1545 1566 .8 +1545 1567 1 +1545 461 .6 +1545 1277 1 +1545 1568 1 +1545 1569 .8 +1545 716 1 +1545 1258 .8 +1545 1570 1 +1545 1571 1 +1545 1366 1 +1572 1572 .8 +1573 1574 .8 +1573 1575 .8 +1573 1576 .8 +1577 1577 .6 +1578 1578 .8 +1578 126 1 +1578 46 1 +1578 883 .8 +1578 562 .8 +1578 1579 .8 +1578 714 .8 +1578 1580 .8 +1578 787 1 +1578 1581 .8 +1578 30 1 +1578 305 .8 +1578 644 .8 +1578 1582 1 +1578 1583 .8 +1578 1211 .8 +1578 329 1 +1578 175 1 +1578 852 .8 +1578 1584 .8 +1578 296 .8 +1578 282 .8 +1578 708 .8 +1578 597 .8 +1578 1277 .8 +1578 157 .8 +1578 776 .8 +1578 45 .8 +1578 1585 1 +1578 1586 .8 +1578 1052 .8 +1578 328 1 +1578 1153 .8 +1578 48 .8 +1578 1233 .6 +1578 601 .8 +1578 191 .8 +1578 428 .8 +1578 1492 1 +1578 209 .8 +1578 820 .8 +1578 829 .8 +1578 1493 1 +1578 1587 .8 +1578 673 1 +1578 128 1 +1588 1588 .6 +1588 174 1 +1588 712 .8 +1588 1001 .8 +1588 1002 .8 +1588 990 .8 +1588 1589 .8 +1588 1590 .6 +1588 714 1 +1588 126 1 +1591 46 1 +1591 506 1 +1591 1583 1 +1591 440 1 +1591 44 .8 +1591 431 1 +1591 353 1 +1591 445 .8 +1591 435 .8 +1234 1234 .8 +1234 172 1 +1234 853 .8 +1234 1592 .8 +1234 719 1 +1234 163 1 +1234 30 1 +1234 854 1 +1234 1593 .6 +1234 126 1 +1234 1594 .8 +1234 1595 .8 +1234 1596 .8 +1234 1583 1 +1234 1597 .8 +1234 1598 .8 +1234 1599 .6 +1234 695 1 +1234 1600 .8 +1234 716 1 +1601 555 1 +1601 1601 .6 +1601 1602 .6 +1601 1603 1 +1601 1604 .6 +1601 175 1 +1601 349 .8 +1601 737 1 +1601 328 1 +1601 106 .8 +1601 1605 .8 +1601 1516 .8 +1601 845 .8 +1601 405 1 +1601 1246 1 +1601 457 .8 +1601 1606 .6 +1601 46 1 +1601 1110 .6 +1601 983 .8 +1607 1607 .6 +1607 30 1 +1607 46 1 +1607 22 1 +1607 577 1 +1607 126 1 +1607 1608 .8 +1607 246 .6 +1607 1609 .8 +1610 172 1 +1611 1611 .8 +1612 1613 .6 +1612 1612 .8 +1614 1614 .8 +1615 1615 1 +468 719 1 +468 30 1 +468 328 .8 +468 1616 .8 +468 324 .8 +468 1476 .8 +468 1020 .8 +468 1079 .8 +468 934 .8 +468 623 .8 +468 1072 .8 +468 1356 .8 +468 797 .6 +468 1075 .8 +468 326 .8 +468 645 .8 +468 1073 .8 +468 807 .8 +1617 1617 .6 +1617 610 1 +1618 1618 1 +1618 1619 1 +1618 286 1 +1618 1620 .8 +1618 1621 .6 +1618 708 .8 +1618 1622 .8 +1618 683 1 +1618 45 .8 +1618 658 1 +1618 1068 1 +465 463 1 +465 370 .8 +465 464 1 +465 462 .6 +465 369 .8 +781 1623 .6 +1624 1624 .6 +1624 46 1 +1624 362 .6 +1624 883 .8 +1624 1211 .8 +1624 385 .8 +1624 19 .6 +1624 658 .8 +1624 586 .6 +1624 297 .8 +1624 191 .8 +1624 387 .8 +1624 286 1 +1624 1625 .6 +1624 810 1 +1624 1626 .8 +1624 1609 .8 +1624 923 .6 +1624 1216 .8 +1624 1079 .8 +1624 905 .8 +1624 1627 .8 +1624 1391 1 +1624 841 .8 +1624 1628 .8 +1624 1026 .8 +1624 42 1 +1624 948 .6 +1624 972 .6 +1624 1629 1 +1624 1201 .8 +1624 922 .8 +1624 1298 .8 +1624 1630 .6 +1624 277 .8 +1624 617 .8 +1624 795 .8 +1624 1631 .8 +1624 853 .8 +1624 1632 1 +1624 806 .8 +1624 1633 .8 +1624 1634 .8 +1624 1635 .8 +1624 1636 .8 +1624 1360 1 +1624 439 .8 +1624 1637 .8 +1624 1087 .8 +1624 225 .8 +1624 548 .8 +1624 1638 .6 +1624 982 .8 +1624 1369 .8 +1624 1639 .8 +1624 680 .8 +1624 878 .8 +1624 1019 .6 +1624 1640 .8 +1624 1174 .6 +1624 251 .6 +1624 1641 .8 +1624 263 .8 +1624 1642 .8 +1624 1183 .8 +1624 1643 1 +1624 23 .6 +1624 1644 .6 +1624 1645 .8 +1624 1646 .8 +1624 61 .8 +1624 90 .8 +1624 1647 .8 +1624 958 .8 +1624 1648 1 +1624 1529 .8 +1624 141 .8 +1624 1649 .8 +1624 1650 .8 +1624 357 .8 +1624 1566 .8 +1624 1187 .8 +1624 1651 .8 +1624 1652 1 +1624 1653 .8 +1624 1654 .8 +1624 1064 .8 +1624 96 .8 +1624 1655 1 +1624 1656 .8 +1624 1585 .8 +1624 98 .8 +1624 1657 .8 +1624 988 .8 +1624 1027 .8 +1624 1352 .8 +1624 1601 .8 +1624 1394 .8 +1624 91 .8 +1624 1658 .8 +1624 1368 .8 +1624 1659 .8 +1624 681 .8 +1624 1660 .8 +1624 1661 .8 +1624 1662 .8 +1624 298 .8 +1624 785 .6 +1624 1182 .6 +1624 1663 .8 +1624 587 .8 +1664 1664 .6 +1664 1665 .8 +1664 34 1 +1666 1666 .6 +1346 1346 .8 +1346 45 1 +1346 119 1 +1346 1341 .8 +1667 1667 .6 +1668 1181 .8 +1669 858 1 +1669 1175 1 +1669 121 1 +1669 1669 .6 +984 646 .8 +984 175 1 +984 1319 .8 +1670 1671 .6 +657 657 .8 +657 918 .8 +657 1672 .6 +657 450 .8 +657 1673 .6 +657 957 .8 +657 1674 .6 +657 449 .8 +657 452 .8 +657 451 .8 +657 1675 .8 +657 1278 1 +657 46 1 +657 329 1 +657 1676 .6 +657 286 1 +657 1677 .8 +657 42 .6 +657 1678 .6 +657 1679 .8 +657 1680 .6 +657 175 1 +1681 1681 .8 +1682 65 .8 +1682 1019 .8 +1682 1683 .8 +1682 805 .8 +1682 1684 .8 +1682 65 .8 +1682 1685 .6 +1682 738 .8 +1682 1018 .8 +1682 1686 .8 +1682 1343 1 +1682 1687 .8 +1682 1023 .8 +1682 921 .8 +1682 750 .8 +1682 22 1 +1682 104 .8 +1682 1089 .8 +1682 394 .8 +1682 651 .8 +1682 746 1 +1682 1428 .8 +1682 801 .8 +1682 469 .8 +1682 1027 .8 +1682 1688 .8 +97 739 1 +97 736 1 +97 1298 .8 +97 97 .8 +97 86 .8 +97 1689 .8 +97 789 .8 +97 792 .8 +97 740 .8 +97 648 1 +97 84 .8 +97 1628 .8 +97 741 .8 +97 584 .8 +97 142 .8 +97 801 .8 +97 1690 .8 +97 1053 .8 +97 738 .8 +97 46 1 +97 1691 .8 +97 1176 1 +97 431 .8 +97 91 .8 +97 833 .8 +97 106 .8 +97 1635 .8 +97 837 .8 +97 1692 .8 +97 1693 .8 +97 1694 .8 +97 859 .8 +97 353 1 +97 329 1 +97 855 .8 +97 1695 .6 +97 1454 .8 +97 1696 .6 +97 856 .8 +97 805 .8 +97 1659 .8 +97 405 .8 +97 1697 .8 +97 1698 .8 +97 1699 .8 +97 126 1 +1700 1700 .6 +1675 1701 .8 +1675 1702 .8 +1675 355 .8 +1675 1703 .8 +1675 214 .8 +1675 1233 .8 +1675 841 .8 +1675 1704 1 +1675 710 1 +1675 1705 .8 +1675 1706 .8 +1675 1707 1 +1675 1708 .8 +1709 1629 1 +1709 1710 1 +1709 1711 1 +1709 1712 1 +1709 1183 .6 +1713 1713 .6 +1714 1671 .8 +1715 1715 .6 +1522 1522 .8 +1522 806 .8 +1522 431 1 +1522 597 .8 +1522 966 .6 +1522 1325 .8 +1716 399 .6 +1716 1717 .6 +1716 398 .6 +1716 584 .8 +1716 126 1 +1716 892 .8 +1716 46 1 +1716 328 1 +1718 431 .8 +1718 46 1 +1718 1719 .6 +1718 438 .6 +1718 30 1 +1718 1022 1 +1718 435 .8 +1718 1720 1 +1718 352 1 +1718 326 1 +1718 1086 .8 +1718 1288 .8 +1718 1718 .6 +274 274 .8 +274 1609 .8 +274 1721 .8 +274 1722 .8 +274 918 1 +274 1171 1 +274 629 1 +274 46 1 +274 710 1 +274 333 1 +274 624 .8 +274 650 .8 +274 1723 1 +274 29 1 +274 1229 .8 +274 175 1 +274 1177 1 +274 852 1 +274 126 1 +274 282 1 +274 1122 1 +274 194 1 +274 655 .8 +274 1724 .8 +1725 1725 .8 +1726 1726 .8 +1727 30 1 +1727 1082 1 +1727 305 .8 +1727 858 1 +1727 642 1 +1727 1123 1 +1727 1728 .8 +1727 1298 .8 +1727 783 .8 +1729 1729 .6 +1729 1730 .8 +1731 1731 .8 +1731 1732 .8 +1731 1733 .6 +1731 399 .8 +1731 43 1 +1731 1734 .6 +1735 1735 .6 +1735 1490 .8 +1736 1736 .6 +1736 1737 .6 +1736 582 .8 +719 719 .6 +1738 1738 1 +1738 632 1 +1738 53 1 +1738 175 1 +1738 126 1 +1738 54 .6 +1738 1739 .6 +1738 1740 .8 +1738 426 .8 +1738 46 1 +1738 80 .8 +1738 1741 .8 +1738 1154 .8 +1738 653 .8 +1738 1742 .8 +1738 1743 .8 +1738 1393 .8 +1738 1744 .6 +1738 1745 .8 +1738 1746 .8 +1738 1747 .8 +1738 328 1 +1738 191 1 +1738 1124 1 +1748 1748 .8 +1748 349 1 +1748 934 .8 +1748 1020 1 +1748 1749 .8 +1748 577 .8 +1748 652 1 +1536 1536 .8 +1536 30 1 +1536 328 1 +1536 719 1 +1536 1750 .8 +1536 1751 .6 +1536 457 .8 +1536 349 1 +1536 1117 1 +1536 646 1 +1536 1752 1 +1536 934 1 +1536 1753 1 +1536 943 1 +1536 1313 1 +1536 1020 1 +1536 1754 1 +1536 172 1 +1536 1755 1 +1536 1756 .8 +1536 577 1 +1536 1757 1 +1758 1758 .6 +51 51 .8 +51 349 1 +51 144 .8 +51 1759 .6 +51 147 .8 +51 282 1 +51 591 .6 +51 52 .8 +51 50 .8 +51 829 .8 +51 1022 .8 +51 1760 .8 +51 1761 .8 +51 175 1 +51 784 .8 +51 1097 .8 +51 1762 .8 +51 1763 .6 +51 576 .8 +51 331 .8 +51 1764 .8 +51 1765 .8 +51 48 .8 +51 335 .8 +51 332 1 +51 1246 1 +51 49 1 +51 53 .8 +51 729 .8 +51 55 .8 +51 1766 1 +51 61 .8 +51 333 1 +51 1767 .8 +51 57 .8 +51 58 1 +51 67 1 +51 59 1 +51 624 1 +51 1768 1 +51 577 1 +51 334 1 +51 337 1 +51 1769 .8 +51 100 .8 +51 861 .8 +1629 1770 1 +1629 1771 .6 +1629 441 1 +1629 1727 1 +1629 1772 1 +1629 62 1 +1629 1773 .6 +1629 1774 .6 +1629 678 .8 +1629 1775 .8 +1629 1776 .8 +1629 1777 .6 +1629 42 .6 +1629 1778 .6 +1629 1779 .8 +1629 421 .6 +1629 1780 .6 +1629 1160 1 +1629 1781 .8 +1629 1248 .8 +1629 943 1 +1629 1068 1 +1629 801 1 +1629 1782 .6 +1629 1783 .6 +1629 1784 1 +1629 1709 1 +1785 1785 .6 +1786 1786 .6 +1786 513 .8 +1786 323 .8 +1786 719 1 +1786 1167 .6 +1787 1787 1 +1788 1788 .6 +1789 646 .8 +1789 1790 .6 +1789 1283 .8 +1791 1791 .6 +1792 1793 1 +1792 1794 1 +1792 1028 1 +1792 1007 1 +1792 1795 .8 +1796 1796 1 +204 204 .6 +831 492 .6 +831 1797 .8 +831 1798 .8 +831 623 .8 +831 501 .8 +831 99 .8 +831 918 1 +831 934 1 +831 739 1 +831 1799 .8 +831 382 .6 +831 1800 .6 +831 1801 .6 +831 291 .6 +831 563 .6 +1802 1802 .6 +420 1803 .8 +420 420 .6 +420 716 .8 +420 792 .8 +1804 1313 1 +1804 1020 .8 +1804 646 .8 +1805 1805 .6 +1806 1806 .6 +1807 1807 .8 +1808 1808 .8 +1808 1809 .8 +1808 492 1 +1808 888 1 +1810 1810 1 +996 987 .8 +996 996 .8 +996 584 1 +996 1811 1 +996 46 1 +996 597 .8 +996 242 .8 +996 1085 .8 +996 1650 .6 +996 528 .8 +996 997 .6 +996 1812 .8 +996 261 .6 +996 1170 .6 +996 214 .8 +996 919 .8 +996 1813 .6 +996 577 1 +996 524 .8 +996 610 1 +996 81 .6 +996 1814 .6 +996 1815 .6 +996 624 .8 +996 757 .6 +996 209 .8 +996 19 .8 +996 429 1 +996 1160 .8 +996 1816 .8 +996 255 .6 +996 1817 .8 +996 525 .8 +996 583 .8 +996 958 .8 +996 357 .8 +996 604 .8 +996 1034 .6 +996 791 .8 +996 593 .8 +996 1060 .6 +996 297 .8 +996 157 .6 +996 112 1 +996 801 .8 +996 1818 .8 +996 939 .8 +996 103 .8 +996 274 .8 +996 1819 .6 +996 1820 .8 +996 1409 .6 +996 34 1 +1821 126 1 +1821 1821 .8 +1822 1823 .8 +1822 178 .8 +1822 1824 .8 +1822 1552 .8 +1822 924 .6 +1822 1825 .6 +1822 1826 .6 +1822 1827 .8 +1828 1828 .6 +1829 629 1 +1830 1830 .8 +1830 429 1 +1830 431 1 +1830 1237 .8 +1830 1831 .6 +1830 1832 .6 +1830 1833 .6 +1834 445 1 +1834 46 1 +1834 1818 .8 +1834 1024 .8 +1834 431 .8 +1834 506 1 +1834 44 .8 +1834 437 .8 +1834 943 1 +1834 469 .8 +1834 22 1 +1834 1835 .8 +1834 1086 .8 +1834 1836 .6 +1834 1291 .8 +1834 512 .6 +1834 770 .8 +1837 1246 .8 +1837 1838 .6 +1837 879 .8 +1837 46 1 +1837 324 1 +1837 328 1 +1837 1839 .8 +1837 910 .8 +1840 990 .6 +1840 1495 1 +1840 1840 .8 +1840 1841 .8 +1840 1400 .6 +1840 1842 .8 +1840 577 1 +1840 1247 1 +1840 329 1 +1840 438 .8 +1840 46 1 +1840 545 .8 +1840 1843 .8 +1840 860 .6 +1840 857 1 +1840 45 1 +1840 912 1 +1840 172 1 +1840 934 1 +1840 913 1 +1840 1085 1 +1840 171 1 +1840 349 1 +1840 712 .8 +1840 492 .8 +1840 638 1 +1840 209 1 +1840 30 1 +1840 937 1 +1840 719 1 +1840 126 1 +1840 1752 1 +1840 1754 1 +1840 1844 1 +1840 1490 1 +1840 1845 .6 +1840 1846 .8 +1840 1117 1 +1840 1020 1 +1840 1847 1 +1840 1491 1 +1840 1493 1 +1840 1848 .8 +1840 174 1 +1840 1582 1 +1840 431 1 +1840 1849 .6 +1840 939 .8 +1840 348 1 +1840 286 1 +1840 350 1 +1840 780 .8 +1840 813 1 +1840 1850 .8 +1840 165 1 +1840 1851 1 +1840 1852 .8 +1853 126 1 +1854 1854 1 +1854 148 1 +1414 1413 .6 +1576 1574 1 +1576 1573 .8 +1576 1576 .8 +1576 1575 .8 +1855 1856 1 +1855 1688 .8 +1855 46 1 +1855 441 1 +1855 1775 .8 +1855 1092 1 +1855 1857 .8 +1855 739 1 +1855 1858 .6 +1855 1370 .8 +1859 1860 .6 +1861 1861 .8 +1861 1862 .8 +1861 1863 .8 +1861 1123 1 +1861 1864 .6 +1861 590 .6 +138 135 1 +138 647 1 +138 134 .8 +138 79 .8 +138 1218 .8 +138 1865 .6 +138 139 .8 +1866 1866 .6 +1866 1867 1 +1868 1742 1 +1868 1868 .6 +1868 1869 1 +1868 653 1 +1868 1870 .8 +1868 1871 .8 +1868 157 .8 +1872 605 .8 +1872 1153 1 +1872 1873 .8 +1872 597 .8 +1872 1874 1 +1872 605 .8 +1872 96 .8 +1872 1875 .8 +1876 429 1 +1876 712 1 +1876 1877 .6 +1876 597 .8 +1876 780 1 +1876 545 1 +1876 174 1 +1876 513 1 +1876 349 1 +1876 492 1 +1878 719 1 +1878 30 1 +1878 1436 .8 +1878 438 .8 +1878 492 .8 +1878 1085 .8 +1878 1020 1 +1878 46 1 +1878 62 .8 +1878 649 1 +1878 708 .8 +1879 1879 .6 +1879 65 1 +1879 1880 .6 +1879 792 1 +1879 1881 .6 +1879 784 1 +1879 1882 .6 +1879 108 .8 +1879 584 1 +1883 1883 .8 +1884 1884 1 +1885 1885 .6 +1885 1886 .8 +1887 1887 .6 +1887 1190 .8 +1887 1156 1 +1888 30 1 +1889 126 1 +1890 46 1 +1890 714 1 +1891 1891 1 +445 353 1 +445 44 .8 +445 46 1 +445 318 .8 +445 440 1 +445 436 1 +445 1892 .8 +445 22 1 +445 1591 .8 +445 431 1 +445 4 .8 +445 1893 .8 +445 1160 .8 +445 328 1 +445 30 1 +445 329 1 +445 506 1 +445 441 .8 +445 1894 1 +445 1518 .8 +445 1834 .8 +445 1895 .8 +445 437 .8 +445 738 .8 +445 101 1 +445 1835 .8 +1896 1896 .8 +1896 46 1 +1896 1897 .8 +1896 577 1 +1896 793 1 +1537 1537 .6 +1537 1534 .8 +1537 1898 1 +1537 46 1 +1537 1899 .8 +1537 1486 .8 +1537 1900 .8 +1537 841 .6 +1537 1901 .8 +1902 587 .8 +1902 1167 .8 +1902 1902 .8 +1902 1086 .8 +1902 1903 .8 +1904 1905 .8 +1906 46 1 +1906 1407 .8 +1906 440 1 +1906 44 .8 +1906 1893 .8 +1906 431 1 +1906 1020 1 +1906 1907 .8 +1906 1908 1 +1906 428 1 +1906 1909 .8 +1906 1910 .8 +1906 639 1 +1906 1237 .8 +1906 632 .8 +1906 1906 .8 +1906 126 1 +1911 148 1 +1911 1912 1 +1913 1010 .6 +1913 96 .6 +1914 588 .6 +1914 1229 .8 +1914 1591 .8 +638 677 .6 +638 1915 .6 +638 1616 .8 +638 735 .8 +638 511 1 +638 174 .8 +638 46 1 +638 1073 .8 +638 30 1 +638 324 1 +638 934 .8 +638 1020 1 +638 1798 .6 +638 1083 .8 +638 172 .8 +638 501 .6 +638 1085 1 +638 34 .6 +638 1916 .6 +638 791 .8 +638 829 .8 +638 1028 .8 +638 438 .6 +638 512 .6 +638 1166 .8 +638 1434 1 +638 481 .8 +638 797 .8 +638 1917 .8 +638 784 .8 +638 29 .6 +638 1133 .8 +638 1181 .8 +638 645 .8 +638 112 .8 +638 121 1 +638 1021 .8 +638 1079 .8 +638 1356 1 +638 467 .8 +638 623 .8 +638 937 1 +638 1918 .8 +638 1919 .6 +638 584 .8 +638 1920 .6 +638 171 1 +638 175 .6 +638 748 1 +638 749 1 +638 893 .6 +638 1921 .8 +638 1922 .6 +638 1754 1 +638 1923 .6 +638 1284 .6 +638 329 1 +638 1160 .8 +638 353 1 +638 1924 1 +638 1132 .6 +638 1925 .8 +638 1926 1 +638 1927 .8 +638 1314 .6 +638 514 .8 +638 94 .6 +638 701 .8 +638 1752 1 +638 298 .6 +638 912 .8 +638 1928 .6 +638 1929 .6 +638 1703 .6 +638 44 .8 +638 577 1 +638 1930 1 +638 1931 .8 +638 1932 .8 +638 1933 .8 +638 1033 .8 +638 1074 .8 +638 933 .6 +638 1934 .6 +638 1935 .6 +638 822 .6 +638 528 .6 +638 242 .6 +638 1936 .6 +638 841 .6 +638 1839 .8 +638 1702 .8 +638 1937 .8 +638 1495 1 +638 588 .6 +638 492 .6 +638 1938 .6 +638 804 .6 +638 1371 .8 +638 346 .6 +638 915 1 +638 575 .6 +638 60 .8 +638 1719 .8 +638 1137 .8 +638 1353 .8 +638 964 .6 +638 1223 .6 +638 344 .8 +638 1433 1 +638 1437 1 +638 1939 1 +638 599 1 +854 172 1 +854 854 1 +1940 1940 .6 +1941 1941 .6 +1942 1309 1 +1942 30 1 +1942 1943 1 +500 500 .6 +1944 939 .6 +1945 1945 .8 +1946 629 1 +1947 1948 .8 +1949 1949 .8 +1950 1950 .6 +1950 399 .8 +1951 1951 .6 +1951 30 1 +1951 346 .8 +1951 719 1 +1951 46 1 +1951 1798 1 +1951 1049 1 +1951 1490 1 +1951 492 1 +1951 438 .8 +1951 513 .8 +1951 174 .8 +1951 1020 1 +1951 1309 1 +1951 349 .8 +1951 393 .6 +1951 126 1 +1951 1495 1 +1951 898 .8 +1951 1952 .8 +1951 1953 .6 +1951 1954 .6 +1951 1955 .8 +1951 1956 .6 +1957 597 .8 +1957 1958 .6 +1957 126 1 +1957 522 1 +1957 1064 .6 +1959 802 1 +1959 215 1 +418 418 .6 +418 438 .8 +418 1960 1 +418 46 1 +418 428 1 +418 1075 1 +418 1961 1 +418 181 .8 +418 215 1 +418 594 .8 +418 399 .8 +418 1630 .8 +418 1453 1 +418 595 .6 +418 30 1 +418 1472 .8 +418 1962 .6 +418 454 1 +418 593 .8 +418 416 .6 +418 516 .6 +418 1963 .6 +418 1586 1 +418 683 .8 +418 997 .6 +418 793 .8 +418 419 .6 +418 165 .8 +418 1964 .8 +418 846 1 +418 214 .6 +418 780 .6 +418 751 1 +418 625 .8 +418 719 1 +418 328 1 +418 397 .6 +418 922 .8 +418 246 .6 +418 417 .8 +418 1068 1 +418 1154 .6 +418 813 1 +418 1965 .6 +418 500 .8 +418 175 1 +418 121 1 +418 157 .8 +418 23 .6 +418 1966 .6 +418 1967 1 +418 1968 .8 +418 776 .8 +418 1004 .6 +418 1969 .6 +418 610 1 +418 1831 .6 +418 1970 .6 +418 1971 .6 +418 82 .6 +418 1972 .8 +418 1973 .8 +418 1974 .8 +418 1975 .8 +418 715 1 +418 126 1 +1976 1976 .8 +1976 764 1 +1977 1277 .6 +1977 45 1 +1977 708 1 +1977 1775 .8 +1977 165 1 +1977 167 1 +1977 166 .6 +1977 1378 1 +1977 897 .8 +1977 1416 1 +1977 785 1 +1977 124 1 +1977 214 1 +1977 721 .8 +1977 1978 .8 +1977 1979 .6 +1977 363 .8 +1977 349 1 +1977 1980 1 +1977 186 1 +1977 625 1 +1977 1981 1 +1977 960 1 +1977 1395 1 +1977 1982 1 +1977 400 1 +1983 1983 .8 +1984 784 1 +1984 277 .8 +1984 1985 .6 +1986 1597 1 +1986 1654 .8 +1986 779 .8 +1986 719 1 +1986 13 .8 +1986 1869 .8 +1986 1987 1 +1986 65 1 +1986 167 .8 +1986 1988 1 +1986 1668 .8 +1986 1548 1 +1986 739 1 +1986 329 1 +1986 1775 .8 +1986 353 1 +1986 30 1 +1989 1989 .6 +1990 1991 1 +1990 1278 1 +1990 1565 1 +1990 126 1 +1990 1990 .8 +1992 1992 1 +1992 1451 .8 +1992 467 1 +1992 425 1 +1992 508 1 +1992 118 1 +1992 352 1 +1992 303 1 +1992 1993 1 +1992 438 .6 +1992 126 1 +1992 1994 1 +1992 623 .8 +1992 1490 1 +1992 1995 1 +1992 30 1 +1992 329 1 +1992 719 .8 +1992 1075 1 +1992 349 1 +1992 304 1 +1992 513 .8 +1992 1616 1 +1992 351 .6 +1992 439 .6 +1992 1020 1 +1992 1996 1 +1992 1847 1 +1992 258 .8 +1992 904 .6 +1992 1624 .6 +1992 556 .8 +1992 1997 .6 +1992 1136 .6 +1992 1998 .6 +1992 228 .6 +1992 1076 .6 +1992 588 .6 +1992 1602 .6 +1992 257 .8 +1992 841 .6 +1992 804 .6 +1992 1999 .8 +1992 1415 .6 +1992 2000 .6 +1992 316 1 +1992 586 .8 +1992 528 .8 +1992 797 .8 +1992 757 .6 +1992 1171 1 +1992 471 .6 +1992 580 .8 +1992 48 .8 +1992 888 .8 +1992 501 .8 +1992 912 .8 +1992 1586 .8 +1992 1547 .8 +1992 918 .8 +1992 92 .8 +1992 346 .6 +1992 2001 .6 +1992 683 .6 +1992 113 .8 +1992 65 1 +1992 1172 .8 +1992 1110 .8 +1992 738 1 +1992 83 .8 +1992 1072 .8 +1992 2002 .8 +1992 1486 .8 +1992 658 .8 +1992 1139 .6 +1992 2003 .6 +1992 2004 .8 +1992 593 .8 +1992 1880 .8 +1992 1339 .8 +1992 1571 .8 +1992 2005 .6 +1992 2006 .6 +1992 2007 .6 +1992 2008 .8 +1992 2009 .6 +1992 2010 .6 +1992 2011 .6 +1992 2012 .6 +1992 1640 .8 +1992 2013 .6 +1992 2014 .6 +1992 2015 1 +1992 2016 .8 +1992 2017 .6 +1992 2018 .6 +1992 2019 .6 +1992 2020 .6 +1992 2021 .8 +1992 644 1 +1992 429 1 +1992 1278 1 +1992 642 1 +1992 2022 .6 +1992 2023 .6 +1992 2024 .6 +1992 1939 .6 +1992 2025 .6 +1992 1667 .6 +1992 2026 .6 +1992 2027 .6 +1992 2028 .6 +1992 2029 .6 +1992 2030 .6 +1992 2031 1 +1992 2032 .8 +1992 833 .8 +1992 837 .8 +1992 2033 .6 +1992 2034 .6 +1992 2035 .6 +1992 2036 .8 +1992 929 .8 +1992 2037 .6 +1992 411 .6 +1992 2038 .6 +1992 2039 .6 +1992 2040 .6 +1992 2041 .6 +1992 1528 .8 +1992 1527 .8 +1992 2042 1 +1992 2043 .6 +1992 2044 .6 +1992 2045 .6 +1992 2046 .6 +1992 2047 .6 +1992 889 .6 +1992 2048 .6 +1992 2049 .6 +1992 2050 .6 +1992 2051 .6 +1992 2052 .6 +1992 2053 .6 +1992 2054 .6 +2055 171 1 +2055 1020 1 +2055 46 1 +2055 431 .8 +2055 121 1 +2056 2056 .6 +2057 1343 1 +2057 594 .6 +2057 2058 .8 +2057 282 1 +2059 714 1 +2059 2060 .6 +2059 2061 .8 +2059 736 1 +2059 883 .8 +2059 657 .8 +2059 1672 .6 +2059 1402 .8 +857 2062 .6 +857 858 .6 +857 2063 .6 +857 2064 .6 +857 277 .6 +857 290 .8 +857 1016 .6 +857 2065 .6 +857 2066 .6 +857 2067 .6 +857 1638 .6 +857 934 .6 +857 2068 .6 +857 104 .6 +857 2069 .6 +857 2070 .6 +857 278 .6 +857 2071 .6 +857 2072 .6 +857 2073 .6 +857 79 .6 +857 2074 .6 +857 746 .6 +857 860 .6 +857 93 .6 +2075 2076 1 +2077 2078 .8 +2077 438 .8 +2077 286 1 +2077 30 1 +2077 46 1 +2077 1447 .8 +2077 1022 1 +2077 436 1 +2077 316 .8 +2077 434 1 +843 2002 .8 +843 306 .8 +843 34 .6 +843 1074 .8 +843 555 1 +843 844 .6 +843 2079 .6 +843 881 .8 +843 841 .6 +843 983 .8 +843 2080 .6 +843 2081 .6 +2082 2082 1 +2083 238 .6 +2083 2084 .6 +2083 2085 .8 +2083 1339 .8 +2086 310 1 +2086 2086 .6 +2086 1309 1 +2086 8 1 +2086 643 1 +2086 1097 .8 +2086 2087 .6 +815 815 .8 +1691 1691 .8 +1691 736 .8 +1691 792 .8 +1691 801 .8 +1691 738 .8 +1691 1114 .6 +2088 583 1 +2089 2089 .6 +2089 912 .8 +2089 83 .8 +2090 2090 .8 +2090 428 .8 +2090 429 .8 +2090 1191 .8 +2090 431 1 +2090 2091 .6 +2090 578 .8 +2090 618 .8 +2090 643 1 +2090 2092 .8 +2090 1270 1 +2090 969 1 +2093 2093 .8 +2093 272 .8 +2093 2094 .8 +2093 273 .8 +2093 43 1 +2093 1732 .8 +2093 1733 .6 +2095 2095 1 +2096 2096 1 +2097 2097 .6 +2097 1041 .8 +2097 2098 .8 +2097 2099 .8 +1473 1472 .8 +1473 2100 1 +1473 1473 .8 +849 849 .6 +849 157 .8 +849 851 .8 +849 623 .8 +849 850 .8 +849 848 1 +849 1172 .8 +849 1153 1 +2101 324 .8 +2101 306 .8 +2101 2102 .8 +2101 1313 .8 +2101 623 .8 +2101 466 .8 +2101 1082 .8 +2101 1401 .8 +2101 2103 .8 +2101 323 .8 +2101 668 .8 +2101 1804 .8 +2101 1434 .8 +2101 1021 .8 +2101 788 .6 +2101 1637 .8 +2101 325 1 +2101 2101 .6 +2101 1754 1 +2101 1692 .8 +2104 2104 .6 +2104 1968 .8 +2105 2106 .8 +2105 181 .8 +2105 182 .8 +2105 1653 .8 +2105 2107 .8 +2105 2108 .8 +2105 2109 .8 +2105 2110 .8 +2105 2111 .8 +2105 2112 .8 +2105 2113 .6 +2105 1047 .8 +61 1767 .8 +61 50 .8 +61 51 .8 +61 55 .8 +61 576 .8 +61 329 1 +61 286 1 +61 48 1 +61 332 1 +61 331 .8 +61 61 .8 +61 637 1 +61 335 .8 +61 49 1 +61 2114 .8 +61 277 .8 +61 57 .8 +2115 2115 .6 +2116 2116 1 +2117 2117 .6 +1093 1093 .8 +1093 646 1 +2118 46 1 +2119 2119 .6 +2120 2120 .8 +2120 1202 .8 +2121 2121 1 +2122 2122 .6 +2122 186 1 +2123 148 1 +2124 2124 .6 +140 140 .8 +140 142 1 +140 859 1 +140 141 .8 +140 789 1 +140 134 1 +140 919 1 +2125 2125 1 +2125 1417 1 +2125 1418 .8 +2125 779 .8 +2125 1391 .8 +2125 638 .8 +2125 780 .6 +2125 2126 .6 +2125 721 1 +2127 2127 .6 +2127 736 1 +2128 1378 .8 +2129 2129 .6 +2129 373 1 +2129 2130 1 +2129 62 .8 +2131 2131 .6 +2131 1247 1 +163 854 1 +163 163 .8 +163 323 .8 +163 1505 .8 +163 1238 1 +163 656 .8 +163 46 1 +163 743 1 +163 2132 .8 +163 652 1 +163 1765 .8 +163 1312 .8 +163 860 1 +163 825 .8 +163 648 .8 +163 1116 1 +163 647 1 +163 1925 1 +163 642 1 +163 1663 .8 +163 1082 1 +163 719 1 +163 1089 1 +163 1247 1 +163 329 1 +163 826 1 +163 175 1 +163 1181 .8 +163 172 1 +163 2133 1 +163 154 1 +163 467 .8 +163 126 1 +163 713 1 +2134 2134 .6 +2134 912 .8 +2134 83 .6 +2134 2135 .6 +2134 2136 .6 +2134 2137 .8 +2134 2138 .6 +2134 2089 .6 +2134 2139 .8 +2134 1605 .8 +2134 2140 .6 +2134 2141 .8 +2134 349 1 +2134 792 1 +2134 2142 .6 +2134 781 1 +2134 2143 .6 +2134 918 1 +2134 20 .6 +2134 577 1 +2134 631 .6 +2134 2144 .8 +2134 1388 .8 +2134 2145 .8 +2134 2146 .6 +2134 408 .6 +2134 2147 .6 +2134 1880 .6 +2134 2148 .8 +2134 1060 .6 +2134 1377 .8 +2134 1383 .8 +2134 107 .6 +2134 428 1 +2134 429 1 +2134 2149 .8 +2134 418 .6 +2134 420 .8 +2134 1645 .8 +2134 2150 .6 +2134 2151 .8 +2134 2152 .6 +2134 157 .8 +2134 1852 1 +2134 2153 .8 +2134 2154 .8 +2134 376 .6 +2134 802 1 +2134 1965 .6 +2155 2155 .8 +2155 920 .8 +2155 46 1 +2155 353 1 +2156 2156 .8 +870 916 1 +870 2157 1 +870 869 1 +870 1227 1 +870 2158 1 +2159 2159 .6 +2160 2160 .6 +2111 2111 .8 +2161 492 1 +2162 2162 .6 +2162 46 1 +2162 102 .6 +2162 349 1 +2162 50 1 +2162 52 1 +2162 328 1 +2162 1976 .8 +2163 2163 .6 +80 80 .8 +80 632 1 +80 1738 1 +80 1741 .8 +80 1740 .8 +80 1393 .8 +80 1743 .8 +80 1237 .8 +80 22 1 +80 1962 .8 +80 1744 .6 +80 126 1 +80 46 1 +80 717 1 +80 1586 .8 +80 431 1 +80 2164 .8 +80 165 .8 +80 166 .8 +80 653 .8 +80 426 1 +80 1747 .8 +80 2165 .8 +80 53 1 +80 437 1 +80 1910 1 +80 1770 1 +80 639 1 +80 549 .8 +80 2166 .6 +2167 2167 1 +2168 1219 .8 +2169 2169 .8 +2169 2170 .8 +2171 2171 1 +804 804 .6 +804 892 .6 +804 719 1 +804 328 1 +804 1754 1 +804 1079 .6 +804 1117 1 +804 1020 1 +804 30 1 +804 1847 1 +804 791 1 +804 947 .8 +804 1356 .8 +804 282 1 +804 751 .8 +804 807 .8 +804 712 .8 +804 912 .8 +804 918 1 +804 171 1 +804 933 .6 +804 2172 1 +804 172 1 +804 1085 .8 +804 645 .8 +804 1076 .6 +804 46 1 +804 939 .6 +804 1798 .6 +804 1072 .8 +804 1437 .8 +804 735 1 +804 324 1 +804 1992 .6 +804 577 1 +804 1476 .8 +804 646 .8 +804 797 .8 +804 346 .8 +804 174 1 +804 638 .8 +804 349 1 +804 523 .8 +804 348 1 +804 593 .8 +804 543 .6 +804 1752 1 +804 511 1 +804 2173 .6 +804 438 .6 +804 780 .8 +804 830 1 +804 934 1 +804 1167 .6 +804 344 1 +804 1004 .6 +804 492 1 +804 943 1 +2174 2174 .6 +2175 943 1 +2176 2176 .6 +2177 2177 1 +2178 2178 .6 +2179 2179 .8 +2180 1524 1 +2180 997 .6 +2180 2181 .6 +2180 2182 .8 +2180 2183 .6 +2180 1768 1 +2180 646 1 +2180 2184 .8 +2180 2185 .6 +1924 175 1 +1924 30 1 +1924 353 1 +1924 329 1 +1924 286 1 +1924 46 1 +1924 431 1 +1924 209 1 +1924 719 1 +1924 739 1 +1924 1924 .6 +1924 352 1 +1924 303 1 +1924 1030 1 +1924 514 1 +1924 598 1 +2186 2186 1 +1863 1863 .6 +1863 1862 .8 +1863 1861 .8 +1863 1200 .8 +1863 167 .8 +2187 2187 .6 +2188 2188 .8 +2188 943 1 +2188 1756 .8 +2188 1755 1 +2188 1536 .8 +2188 1931 .8 +2188 2189 .8 +2188 2190 1 +2188 1741 .8 +2191 2191 1 +2192 1586 1 +617 944 1 +617 1975 .6 +617 711 1 +617 75 .8 +617 2193 .6 +617 1384 .8 +617 1920 .8 +617 1377 .8 +617 1378 1 +617 1917 1 +2194 2194 .6 +2194 82 1 +433 433 1 +2195 2196 1 +2195 2197 1 +2195 658 1 +2195 850 1 +2195 1154 .8 +2195 852 1 +2195 1126 1 +2195 883 1 +2195 2198 1 +2195 2199 .8 +2195 2200 1 +2195 289 1 +2195 2201 1 +2195 1462 1 +2195 1762 1 +2202 1216 .6 +2203 2203 1 +2204 2204 .6 +429 429 1 +429 46 1 +429 431 1 +429 215 1 +429 44 1 +429 725 .8 +429 2205 .8 +429 442 .8 +429 30 1 +429 428 .8 +429 2206 .8 +429 1247 1 +429 1123 1 +429 316 .8 +429 444 .8 +429 318 1 +429 1065 .8 +429 2091 .8 +429 1116 1 +429 506 1 +429 1024 1 +429 432 .8 +429 353 1 +429 438 .8 +429 445 1 +429 1823 .6 +429 578 .8 +429 433 1 +429 434 .8 +429 440 1 +429 1191 .8 +429 2207 .8 +429 304 .8 +429 2208 .8 +429 853 .8 +429 643 .8 +429 618 .8 +429 437 .8 +429 1089 1 +429 286 1 +429 739 1 +429 405 .8 +429 4 .8 +429 2092 .8 +429 2209 .6 +429 1554 .6 +429 647 1 +429 5 1 +429 126 1 +429 441 .8 +429 1086 .8 +429 491 .8 +429 1893 .8 +429 2002 .8 +429 2210 .8 +429 1894 1 +429 436 .8 +429 720 .8 +429 736 1 +429 1176 1 +429 282 1 +429 1160 .8 +429 1190 .8 +429 1343 1 +429 2211 .6 +429 791 .8 +429 2212 .8 +429 1270 .8 +429 2213 .8 +429 2214 .8 +429 1557 .8 +429 564 .8 +429 1856 1 +429 2215 .8 +429 2216 .8 +429 1447 .8 +429 943 1 +429 2217 .8 +429 2218 .8 +429 2219 .8 +429 2220 .8 +429 802 .8 +429 1548 .8 +429 969 .8 +429 1816 .8 +429 1832 .6 +429 242 .8 +429 2221 .8 +429 958 .8 +429 157 .6 +429 22 1 +429 683 .8 +429 2222 .8 +429 722 .6 +429 1908 1 +429 373 .8 +429 2 .8 +429 2223 .6 +429 1910 .8 +429 399 .8 +429 1809 .8 +429 45 1 +429 2224 .8 +429 2184 .8 +429 562 1 +429 1471 1 +429 2225 1 +429 2226 .8 +429 549 .8 +429 639 .8 +429 2227 .8 +429 1959 1 +429 844 .8 +429 830 .8 +429 2228 .8 +429 1092 1 +429 413 .6 +429 1058 .8 +429 2229 .8 +429 717 1 +429 2230 .8 +429 1770 1 +429 2231 .8 +429 1775 .8 +429 1830 .8 +429 2232 1 +429 902 .8 +429 835 .8 +429 148 1 +429 2233 .8 +429 2234 .6 +429 1386 .6 +429 2235 1 +429 2236 .8 +739 739 1 +739 801 .8 +739 738 1 +739 736 1 +739 1053 .8 +739 1690 .8 +739 648 .8 +739 789 .8 +739 584 .8 +739 142 .8 +739 835 .8 +739 1298 .8 +739 97 .8 +739 106 .8 +739 836 .8 +739 86 .8 +739 792 .8 +739 329 1 +739 834 .8 +739 1694 .8 +739 1693 .8 +739 45 1 +739 2237 .6 +739 2238 1 +739 740 .8 +739 1659 .8 +739 1454 .8 +739 856 .8 +739 90 .8 +739 1452 .8 +739 326 1 +739 743 1 +739 506 1 +739 1433 .8 +739 1606 .6 +739 2239 .8 +739 2240 .8 +2241 2241 .6 +2242 1469 .6 +2242 2243 .8 +2242 2244 .6 +2242 2245 .8 +2242 274 1 +2242 242 1 +2242 2246 1 +2247 2247 .8 +2247 325 1 +2247 326 1 +2247 324 .8 +2247 1028 .8 +2247 719 1 +2247 1434 1 +2247 46 1 +2247 1087 .8 +2247 112 .8 +2247 2248 .6 +2247 30 1 +2247 323 .8 +2247 1078 .8 +2247 1021 .8 +2247 1117 1 +2247 328 1 +2247 2249 .8 +2247 2101 .8 +2247 1912 1 +2247 2094 .8 +2247 306 .8 +2247 1075 1 +2247 148 1 +721 721 .8 +721 1005 .8 +721 712 1 +721 174 1 +721 349 1 +721 728 1 +721 2250 .8 +721 780 1 +721 2227 .8 +721 1418 1 +721 492 1 +721 1416 1 +721 2125 1 +721 711 1 +721 577 1 +721 653 1 +721 1869 .8 +721 709 .8 +721 1362 1 +721 2251 1 +721 830 1 +721 2252 .8 +721 30 1 +721 719 1 +721 1529 .8 +721 990 1 +721 1742 1 +721 1495 1 +721 1020 1 +721 2253 .8 +721 545 1 +721 2254 .8 +721 2255 .8 +721 2256 .6 +721 324 1 +721 345 1 +721 1356 1 +721 344 1 +721 892 1 +721 1049 1 +721 638 1 +721 346 1 +721 399 .8 +721 779 1 +721 774 1 +721 727 .8 +721 1917 .8 +721 1073 .8 +721 172 1 +721 1117 1 +721 126 1 +721 1353 1 +721 1490 1 +721 791 1 +721 1436 1 +721 1075 1 +721 468 1 +721 511 1 +721 934 1 +721 2233 .8 +721 2257 .6 +721 2258 .8 +721 620 1 +721 1370 .8 +721 1386 .6 +721 1870 .8 +721 1952 .8 +721 1719 1 +721 2259 .6 +721 793 1 +721 2260 1 +721 303 1 +721 804 .8 +721 2173 .8 +721 1847 1 +721 1379 1 +1304 837 .8 +1304 739 1 +1304 736 1 +1304 106 .8 +1304 2261 .8 +1304 2262 .6 +1304 790 .8 +1304 2263 .8 +1304 1692 .8 +1304 2032 .8 +1304 1306 .8 +1304 1301 .8 +2264 2264 .6 +2264 1399 .6 +2264 2265 .6 +2266 2266 .6 +2266 2267 .8 +2266 2268 .8 +2266 2269 .8 +2266 1145 .8 +2266 1011 .8 +2266 1569 .6 +1815 677 .6 +1815 587 .6 +1815 1917 .8 +1815 46 1 +1815 30 1 +1815 719 1 +1815 328 1 +1815 34 .8 +1815 934 1 +1815 1798 .8 +1815 345 1 +1815 327 1 +1815 933 .6 +1815 2270 .6 +1815 492 .8 +1815 438 .8 +1815 545 .8 +1815 2271 .8 +1815 171 1 +1815 242 .8 +1815 2272 .6 +1815 528 .8 +1815 1932 .8 +1163 1163 .6 +1163 248 .8 +1163 46 1 +1163 1894 .8 +1163 555 1 +1163 1247 1 +1163 788 .6 +1163 860 .6 +1163 638 .6 +1163 63 .6 +1163 175 1 +1163 126 1 +1163 603 .6 +1163 2217 .8 +1163 442 .6 +1163 101 .8 +1163 506 .8 +1163 353 .8 +1163 1557 .8 +1163 163 .8 +1163 227 .8 +1163 606 .8 +1163 240 .6 +1163 2273 .8 +1163 1303 .6 +1163 1167 .8 +1163 2274 .8 +1163 844 .8 +1163 306 .8 +1163 2275 .8 +1163 919 .8 +1163 1110 .8 +1163 893 .8 +1163 1126 .8 +1163 858 .8 +1163 1915 .8 +1163 1360 .8 +1163 737 1 +1163 2019 .6 +1163 1964 .8 +1163 1366 .6 +1163 2276 .6 +1163 20 .6 +1163 1160 .8 +1163 1052 .8 +1163 166 .6 +1163 888 .8 +1163 776 .8 +1163 882 .8 +1163 497 .6 +1163 610 .8 +1163 1137 .6 +1163 922 .8 +1163 67 .8 +1163 1390 .6 +1163 328 1 +1163 399 .8 +1163 773 .8 +1163 1586 .6 +1163 23 .6 +1163 614 .6 +1163 148 .8 +1163 400 .8 +1163 1517 .8 +1163 624 .8 +1163 916 .8 +1163 594 .8 +1163 1558 .8 +1163 1248 .8 +1163 2182 .6 +1163 593 .8 +1163 982 .8 +1163 2277 .8 +1163 1416 .8 +2278 2278 .8 +2278 377 .8 +2278 647 1 +2279 2279 .6 +2280 2280 .6 +958 958 .8 +958 46 1 +958 5 1 +958 1557 1 +958 103 .8 +958 271 .8 +958 258 .8 +958 1022 1 +958 438 .8 +958 597 .8 +958 584 1 +958 443 .8 +958 524 .8 +958 593 .8 +958 917 .6 +958 44 .8 +958 613 .8 +958 882 .8 +958 429 1 +958 255 .6 +958 2061 .8 +958 996 .8 +958 242 1 +2281 2282 .6 +2283 2283 1 +701 701 1 +701 1892 .8 +701 2284 .8 +701 46 1 +701 739 1 +701 94 .6 +701 904 .8 +701 648 1 +701 441 .8 +701 903 .8 +701 2285 .8 +701 902 .8 +701 2286 .6 +701 1727 .8 +701 1675 .8 +701 897 .8 +701 898 .8 +701 899 .8 +701 905 .8 +701 901 .8 +2287 282 1 +2287 694 1 +2287 1560 1 +2288 2289 .8 +165 167 .8 +165 166 .8 +165 286 1 +165 710 1 +165 30 1 +165 1123 1 +165 49 .8 +165 1200 .8 +165 2290 1 +165 2291 .8 +165 555 1 +165 2292 .6 +165 71 .8 +165 679 1 +165 1772 .6 +165 2293 .8 +165 165 1 +2294 2294 .6 +751 1968 1 +751 708 .8 +751 1189 .8 +751 805 1 +751 1968 1 +751 2295 .8 +751 1684 .8 +751 1181 .8 +751 1086 .8 +751 1557 1 +751 613 .6 +751 1017 .8 +751 200 .8 +751 172 1 +751 2274 1 +751 1686 .8 +751 92 .8 +751 885 .6 +751 2296 .8 +751 948 .6 +751 711 .8 +751 2297 .8 +751 234 .6 +751 678 .8 +751 2298 .8 +751 2299 .8 +751 1463 .6 +751 1998 .6 +751 1134 1 +751 394 .8 +751 1899 .8 +751 1471 1 +751 1322 1 +751 746 1 +751 992 .6 +751 1339 .8 +751 376 .6 +751 1688 .8 +2300 22 1 +2300 1097 .8 +2300 194 .6 +2301 2301 .6 +2302 2302 .8 +2302 324 .8 +2302 2303 .6 +2302 323 .8 +2302 326 1 +2302 271 .8 +2302 797 .6 +2302 328 1 +2302 623 .8 +2302 2304 .6 +259 259 .6 +2150 2150 .6 +2150 92 .8 +2150 2134 .6 +2150 926 .8 +2150 1223 .6 +2305 2305 .6 +1551 1551 .8 +1551 263 .8 +1551 2306 1 +1551 2307 .8 +1551 2308 .8 +1551 737 1 +1551 518 .8 +1551 121 1 +1551 166 .8 +1551 1246 1 +1551 1930 1 +1551 30 1 +1551 126 1 +1551 1116 1 +1551 352 1 +1551 364 .8 +1551 1037 .8 +1551 613 .8 +1551 524 .6 +1551 271 .6 +1551 378 .6 +1551 1223 .8 +1551 1690 .8 +1551 943 1 +1551 1153 .8 +1551 1583 1 +1551 303 1 +1551 719 1 +1551 326 1 +1551 1020 .8 +1551 101 1 +1551 610 1 +1551 232 .8 +1551 646 1 +2309 2309 .6 +2309 46 1 +2310 2310 1 +2311 2311 .6 +1637 1012 .8 +1637 2312 .8 +1637 1637 .8 +2313 165 1 +2313 2313 .8 +2313 157 .8 +2313 679 1 +2313 1515 1 +2313 232 .8 +2313 1178 .8 +2313 944 .8 +2313 20 .8 +2313 286 1 +2313 1646 .8 +2313 1450 .8 +2313 1974 1 +2313 714 1 +2313 642 1 +2313 2314 1 +2315 2315 .6 +2315 2316 .6 +2315 1494 .8 +2315 597 .8 +1190 759 .8 +1190 1033 1 +1190 584 1 +1190 205 .8 +1190 316 1 +1190 329 1 +1190 1454 1 +1190 191 .8 +1190 232 .6 +1190 581 .8 +1190 887 .8 +1190 784 1 +1190 324 1 +1190 643 1 +1190 2317 .8 +1190 2318 .8 +1190 764 1 +1190 290 1 +1190 2319 .8 +1190 1157 1 +1190 137 1 +1190 2320 .6 +1190 1158 1 +1190 280 .8 +1190 1240 1 +1190 1761 .8 +1190 196 .8 +1190 579 1 +1190 2321 .6 +1190 1701 .6 +1190 2322 .6 +1190 2323 1 +1190 273 .8 +1190 175 1 +1190 677 .8 +1190 328 1 +1190 841 .8 +1190 121 1 +1190 586 .8 +1190 2103 1 +1190 467 .8 +1190 2002 .8 +1190 429 1 +1190 251 .6 +1190 250 .6 +1190 2309 .6 +1190 362 .8 +1190 2324 .8 +1190 2325 .8 +1190 2326 .8 +1190 104 1 +1190 197 .8 +1190 200 .8 +1190 513 .6 +1190 985 .8 +1190 335 .8 +1190 738 1 +1190 1356 .8 +1190 804 .6 +1190 2327 .6 +1190 1839 .8 +1190 2328 .6 +1190 2329 .6 +1190 2330 1 +1190 2331 .8 +1190 1415 .6 +1190 1246 1 +1190 1127 1 +1190 9 .8 +1190 495 .6 +1190 45 1 +1190 2021 .6 +1190 642 1 +1190 1165 .6 +1190 703 .6 +1190 53 .8 +1190 1188 .6 +1190 65 1 +1190 1390 .6 +1190 1595 .8 +1190 245 .6 +1190 356 .6 +1190 255 .6 +1190 1171 1 +1190 1801 .6 +1190 1172 .8 +1190 743 1 +1190 1132 .6 +1190 388 .8 +1190 704 .6 +1190 640 1 +1190 1156 1 +1190 1113 .8 +1190 2004 .6 +1190 961 .6 +1190 246 .6 +1190 2332 .8 +1190 292 1 +1190 2333 .6 +1190 617 .6 +1190 2334 .6 +1190 633 .8 +1190 188 .8 +1190 893 1 +1190 1812 .8 +1190 113 1 +1190 296 1 +1190 1849 .6 +1190 242 1 +1190 920 .6 +1190 2141 .8 +1190 2212 .8 +1190 1469 .6 +1190 21 .6 +1190 613 .8 +1190 1887 .6 +1190 911 1 +1190 1775 .6 +1190 461 .6 +1190 962 .8 +1190 1586 .8 +1190 46 1 +1190 126 1 +2335 2335 .6 +2336 1943 1 +2337 2337 .6 +2338 441 1 +2338 428 1 +2339 2340 1 +1243 2080 .8 +2341 2341 1 +2342 296 .8 +2342 714 .8 +2342 2342 .8 +2342 612 1 +2342 2343 .8 +2342 2269 .8 +2342 1562 1 +2344 2344 1 +2344 428 1 +2345 1634 .8 +324 328 1 +324 30 1 +324 645 .8 +324 1075 1 +324 326 1 +324 719 1 +324 323 .8 +324 46 1 +324 345 1 +324 305 1 +324 121 1 +324 325 1 +324 286 1 +324 1495 1 +324 1754 1 +324 1028 .8 +324 1752 .8 +324 2346 .6 +324 1616 1 +324 346 .8 +324 2347 1 +1365 2348 .8 +1365 654 .8 +1365 950 .8 +1365 2349 .8 +1365 1293 .8 +1365 780 1 +1365 1394 .8 +1365 1047 .8 +1365 960 .8 +1365 1178 .8 +1365 1662 .8 +1365 625 .8 +1365 1711 .8 +1365 214 .8 +1365 1339 .8 +1365 2350 .8 +1365 20 .8 +1365 990 1 +1365 2351 .8 +1365 187 .6 +1365 686 .8 +1365 613 .8 +1365 349 1 +1365 2352 .8 +1365 1416 1 +1365 773 .8 +1365 1978 .8 +1365 610 1 +1365 1517 1 +1365 363 1 +1365 261 .6 +1365 897 .8 +1365 791 .8 +1365 45 1 +1365 2353 .8 +1818 1818 .8 +1818 1898 .8 +1818 1023 .8 +1818 1027 .8 +1818 104 1 +1818 92 .8 +1818 1097 .8 +1818 46 1 +1818 30 1 +1818 329 1 +1818 1799 1 +1818 175 1 +1818 1024 .8 +1818 2354 .8 +1818 1343 1 +1818 2355 .8 +1818 2356 1 +1818 1341 .8 +1818 1834 .8 +1818 2357 .8 +1818 943 1 +2358 2358 .8 +2359 2359 1 +2360 2360 .6 +2360 2361 1 +2360 1662 .8 +2362 2362 .6 +2362 148 1 +2362 1603 .8 +2362 714 1 +2362 46 1 +2362 1912 1 +2362 845 .8 +2362 2363 .6 +2362 2247 1 +2362 323 .8 +2362 325 1 +1594 743 1 +1594 764 1 +1594 1062 .8 +1594 46 1 +1594 329 1 +1594 2002 .8 +1594 1234 .8 +1594 1089 1 +1594 1020 1 +1594 175 1 +1594 1176 1 +1594 101 1 +1594 286 1 +1594 316 .8 +1594 306 .8 +1594 1068 1 +2364 2364 .6 +2365 2365 .8 +2365 2366 .8 +2365 2267 .8 +2365 2367 .8 +2365 2368 .8 +2369 2369 1 +2370 2371 .8 +2370 2372 .8 +2370 234 .8 +2370 165 .8 +2370 2370 1 +2370 2373 .8 +2370 1365 .8 +2370 1783 .6 +2370 721 .8 +2370 1370 .8 +1250 1250 .6 +1250 764 1 +2374 2374 .6 +2375 2375 .8 +656 584 1 +656 648 .8 +656 142 .8 +656 86 .8 +656 789 .8 +656 741 .8 +656 2376 .8 +656 836 .8 +656 834 .8 +656 835 .8 +656 1176 1 +656 740 .8 +656 84 .8 +656 737 1 +656 893 .6 +656 1288 .8 +656 2377 .6 +656 1628 .8 +656 1081 .8 +656 701 .8 +656 1308 .6 +656 91 .8 +656 792 .8 +656 801 .8 +656 2378 .8 +2379 2379 .6 +2380 2380 .8 +2381 2381 .6 +2381 126 1 +2381 928 .6 +168 194 .8 +168 168 .8 +466 328 1 +466 324 1 +466 1117 .8 +466 174 .8 +466 30 1 +466 719 1 +466 466 .8 +466 882 .8 +466 121 1 +546 546 .8 +546 362 .8 +546 1356 .8 +546 1353 .8 +546 157 .8 +546 30 1 +546 937 .8 +546 46 1 +546 460 .6 +546 2214 .8 +546 2382 .8 +546 186 .8 +2383 2383 .8 +2383 1957 1 +2383 126 1 +2383 286 1 +2383 175 1 +2383 162 1 +2383 1247 1 +2383 855 1 +2383 736 .8 +2383 1343 1 +2383 813 1 +2383 522 1 +2383 1116 1 +2383 2384 .8 +2383 1731 1 +2383 724 .8 +2385 2386 .8 +2385 2385 .8 +2387 2388 .6 +2387 2389 .8 +2390 2390 .6 +2390 346 .8 +2391 2391 .8 +2392 2393 1 +2394 2394 .6 +2394 719 1 +2394 2395 .8 +2394 2396 .8 +2394 2397 1 +2394 673 1 +2394 116 1 +2394 925 .8 +2394 2193 .8 +2394 30 1 +2394 126 1 +2398 2398 .8 +2398 46 1 +2398 825 .8 +2398 1157 .8 +2398 328 1 +2398 916 1 +2398 764 1 +2399 2075 .8 +2399 30 1 +2399 126 1 +2399 46 1 +2399 642 1 +2399 2399 .6 +2400 2400 .6 +1075 328 1 +1075 324 1 +1075 30 1 +1075 719 1 +1075 468 1 +1075 306 .8 +1075 645 .8 +1075 1074 .8 +1075 1434 .8 +1075 511 .8 +1075 1117 1 +1075 2401 .8 +1075 174 .8 +1075 1087 .8 +1075 466 .8 +1075 1072 .8 +1075 1313 .8 +1075 323 .8 +1075 1401 .8 +1075 623 .8 +1075 1073 .8 +1075 2103 .8 +1075 1076 .6 +1075 46 1 +1075 2067 .6 +1075 3 .8 +1075 2402 .8 +1075 2403 .6 +1075 1133 .8 +1075 2249 .8 +1075 1754 1 +1075 1752 .8 +1075 936 .8 +1075 2347 1 +1075 2404 1 +2405 2406 .8 +2405 2407 .6 +2405 1020 1 +2405 2408 .8 +2405 286 1 +2405 2405 .6 +2405 2409 .8 +2405 2410 .8 +2405 866 .8 +2405 2411 .6 +2405 565 .8 +2405 199 .8 +2405 2412 .8 +2413 2413 .6 +2414 2414 .6 +2414 230 .8 +2414 2227 .8 +2414 2415 .8 +2414 2416 .6 +2414 2417 1 +2414 126 1 +2414 707 .6 +2414 857 .6 +2414 2259 .6 +2418 2419 .8 +2418 286 1 +473 473 .8 +473 1584 .8 +473 1673 .8 +1434 2103 .8 +1434 323 .8 +1434 1117 1 +1434 324 .8 +1434 1075 1 +1434 326 1 +1434 1020 1 +1434 306 .8 +1434 719 1 +1434 1400 .6 +1434 1082 .8 +1434 2101 .8 +1434 466 .8 +1434 934 .8 +1434 1633 .8 +1434 1401 .8 +1434 328 1 +1434 352 .8 +1434 645 .8 +1434 46 1 +1434 1028 .8 +1434 1076 .6 +1434 1753 1 +1434 2247 1 +1434 1546 .8 +1434 325 1 +1434 1847 1 +1434 2420 1 +2421 2421 1 +2422 2422 .6 +1710 2423 .8 +1710 1712 1 +1710 2424 1 +2425 293 1 +2426 1717 .8 +2426 2426 .8 +2228 1191 1 +2228 578 1 +2228 428 1 +2228 2092 .8 +2228 431 1 +2228 2091 .8 +2228 643 1 +2228 1270 1 +2228 720 .8 +2228 1554 .8 +2228 1555 1 +2228 2222 .8 +2427 2428 .8 +2427 1653 .8 +2429 2429 .6 +2430 2430 .8 +2430 276 .8 +2430 1839 .8 +2431 328 1 +758 758 .8 +758 323 .8 +758 30 1 +758 326 1 +758 352 .8 +758 1082 .8 +758 719 1 +758 1123 1 +758 324 .8 +758 328 1 +758 2432 .8 +758 2433 .8 +758 2141 .8 +758 142 1 +758 736 1 +758 1286 .8 +758 318 .8 +758 835 .8 +758 522 1 +758 1301 .6 +758 859 1 +2434 2434 .8 +2434 1495 1 +2434 1283 1 +2434 1284 .8 +2434 2435 .8 +2434 830 1 +2434 780 .8 +2434 1372 .6 +2434 2251 1 +2434 2436 .8 +545 438 .8 +545 174 .8 +545 712 .6 +545 2437 .8 +2438 323 .8 +2438 210 1 +2438 213 .8 +2438 2439 .8 +2438 328 1 +795 506 1 +795 303 1 +795 46 1 +795 743 1 +795 350 1 +795 1075 1 +795 151 .8 +795 30 1 +795 642 1 +795 1123 1 +795 353 1 +795 329 1 +795 175 1 +795 1176 1 +795 352 1 +795 282 1 +795 286 1 +795 328 1 +795 283 .8 +795 264 .6 +795 1408 .6 +1419 1419 .8 +2440 2440 .6 +2441 2441 1 +611 362 1 +203 197 .8 +203 199 .6 +203 196 .8 +203 198 .6 +203 195 .6 +203 205 .6 +203 586 .6 +203 2329 .6 +2442 377 1 +2442 2443 1 +2442 121 1 +2444 2445 .8 +2444 2446 1 +2444 2444 1 +2444 2447 .8 +2444 2448 .6 +2444 2449 .8 +2444 2450 1 +2444 2451 .8 +2444 2452 .8 +2444 1277 1 +2453 652 1 +2453 1210 .8 +2453 2453 .6 +2453 764 1 +2453 2454 1 +2453 105 .8 +2453 1499 1 +2453 1212 .8 +2453 2455 1 +2453 2289 1 +2453 2456 .8 +2453 659 1 +2453 110 .8 +2453 137 .8 +2453 747 1 +2453 2457 .8 +2453 1214 .8 +2453 1219 .8 +2453 749 1 +2453 1127 1 +2453 290 1 +2453 1222 1 +2453 2458 .8 +2453 1479 1 +2453 79 1 +2453 746 1 +2453 748 1 +2453 2459 .8 +2453 1213 1 +2453 2460 1 +2453 647 1 +2453 2461 .8 +2453 1605 .8 +1530 1530 .8 +1530 1527 .8 +1530 1939 .6 +1530 1420 .8 +1530 1525 .6 +1530 2258 .8 +2462 2463 .6 +2462 2464 1 +2462 1370 .8 +2462 711 1 +2462 1364 .8 +2462 774 1 +2462 2348 1 +2465 2465 .6 +400 405 1 +400 540 1 +400 1711 1 +400 813 1 +400 2221 1 +400 654 1 +400 2352 .8 +400 930 .8 +400 2466 .6 +400 7 .6 +400 577 1 +400 2467 .8 +400 2468 .8 +400 2469 1 +400 737 1 +400 2470 .6 +400 2471 1 +400 2472 1 +400 2473 1 +400 2474 .8 +400 2080 .8 +400 2361 .8 +400 597 .8 +400 1955 1 +400 1094 1 +400 2144 .8 +400 1249 1 +400 1450 1 +400 2475 1 +400 2423 .8 +400 1710 1 +400 613 1 +353 46 1 +353 30 1 +353 1116 1 +2476 2476 1 +2477 2477 .6 +2477 1202 1 +2477 1343 1 +2477 118 1 +2477 323 .8 +2477 724 .8 +2477 2478 .8 +2477 282 1 +2477 406 .8 +2477 148 1 +2479 2479 1 +2480 2480 .6 +417 1341 .8 +417 417 .8 +417 397 .6 +417 2354 .8 +417 2356 1 +417 1818 .8 +417 175 1 +417 844 .8 +417 919 .8 +417 181 .8 +417 328 1 +417 1047 .8 +417 399 .8 +417 469 1 +417 1418 .8 +417 1248 1 +417 807 1 +2481 673 1 +2481 1490 1 +2481 1493 1 +2481 1846 1 +1397 1397 .8 +1397 2149 .8 +1397 780 1 +1397 1416 .8 +1397 1417 1 +1397 1418 1 +1397 791 1 +1397 186 .8 +1397 2482 1 +1397 2483 1 +1397 728 .8 +1397 1392 1 +1397 1420 .8 +1397 2484 .8 +1397 492 .8 +1397 2485 .8 +1397 2486 .8 +1397 2480 .8 +1397 2487 1 +1397 774 1 +2488 121 1 +2488 584 .8 +2488 214 .6 +2488 2488 .8 +497 710 1 +497 610 1 +497 444 .8 +497 258 .8 +497 2489 .6 +497 1388 1 +497 781 1 +2490 2490 .6 +2490 234 .6 +2491 2491 .6 +2492 2492 1 +2492 399 .8 +2012 2012 .6 +2012 286 1 +256 30 1 +256 214 .6 +2493 30 1 +2494 2494 1 +2495 242 .8 +2495 2495 .6 +2495 2214 1 +2496 2496 .6 +2496 2497 .6 +2496 2498 .6 +2496 1662 .6 +2482 2482 1 +2482 1517 1 +2482 1391 .8 +2499 2499 1 +2499 584 1 +2500 2500 .8 +2384 2383 .8 +2384 2384 .8 +2384 126 1 +2501 784 .8 +2501 584 1 +2501 110 .8 +2502 2502 .6 +2502 2503 1 +2504 2504 .6 +893 1244 .8 +893 251 .8 +893 523 .8 +893 469 1 +893 2274 .8 +893 1024 1 +893 576 1 +893 1546 1 +893 2208 1 +893 498 1 +893 2505 1 +893 438 .8 +893 1898 1 +893 44 1 +893 525 1 +893 1201 .8 +893 1393 .6 +893 716 .8 +893 610 .8 +893 2135 .6 +893 2506 .6 +893 2507 .8 +893 2270 .6 +893 2508 .6 +893 1685 .8 +893 633 .6 +893 6 .6 +893 786 .8 +893 794 .6 +893 2141 .8 +893 173 .6 +893 66 .6 +893 2509 .8 +893 2510 .6 +893 403 .6 +893 165 1 +893 1004 .6 +2511 2511 .6 +283 283 .8 +283 795 .8 +2512 2512 .6 +2512 46 1 +2513 2513 1 +2514 2514 .6 +1032 1032 .8 +1032 2 .8 +2515 387 .6 +2515 9 .6 +2515 385 .8 +2515 2516 .6 +2515 1229 .6 +2515 2515 .6 +2515 2517 .6 +2515 2518 .8 +2515 2519 .8 +2515 2520 .6 +2515 791 .8 +2087 310 .8 +2087 265 .8 +2087 584 1 +2087 2086 .6 +2087 233 .8 +2087 1126 .8 +2087 16 .8 +2412 22 1 +2412 2521 1 +2412 1343 1 +2412 714 1 +2412 2412 .8 +2412 1231 1 +2412 306 1 +2412 112 1 +2412 426 1 +2412 261 .6 +2412 525 .8 +2412 385 .8 +2412 2004 1 +2412 1047 .8 +2412 357 .8 +2412 791 1 +2412 593 .8 +2412 1034 .8 +2412 923 .6 +2412 242 1 +2412 1160 .8 +2412 241 .8 +2412 297 1 +2412 157 .8 +2412 2324 .8 +2412 378 .6 +2412 705 .8 +2412 2522 .6 +2412 2523 .6 +2412 1069 .6 +2412 1685 .6 +2412 2524 .8 +2412 1938 .6 +2412 2405 .8 +2412 1171 1 +2525 2525 .6 +2525 30 1 +2525 286 1 +2525 126 1 +2526 2526 .6 +312 2527 .6 +312 191 .6 +312 623 .8 +312 379 .6 +312 1227 1 +312 869 1 +312 1226 1 +312 309 .6 +312 218 .6 +312 2528 .8 +312 1228 .8 +312 1230 1 +312 359 .6 +312 998 .8 +312 651 .8 +312 694 .8 +312 696 .8 +312 697 .8 +2529 2529 .6 +2529 555 1 +2529 1157 1 +2529 2530 .8 +2529 286 1 +2529 172 1 +2529 1158 .8 +2529 356 .6 +2529 92 1 +2529 1703 .8 +2529 251 .6 +2531 2531 .8 +2237 2237 .6 +2532 2532 .8 +2533 2533 .6 +2534 556 .8 +2534 18 .8 +2534 890 .8 +2534 1892 .8 +2534 1216 .8 +2534 1079 .8 +2534 1627 .8 +2534 461 .8 +2534 2535 .8 +2534 346 1 +2534 1652 1 +2534 2536 .8 +2534 2537 .6 +2534 326 1 +2534 2538 1 +2534 167 1 +2534 1515 .8 +2534 318 1 +2534 63 1 +2534 655 1 +2534 434 1 +2534 656 1 +2534 657 1 +2534 165 1 +2534 2539 1 +2534 1068 1 +2534 888 1 +2534 1491 1 +2534 856 1 +2534 81 .8 +2534 82 .8 +2540 2540 .6 +2541 1770 1 +2497 2497 .6 +2542 716 1 +2542 2251 1 +1088 1088 .6 +1088 1339 .8 +1088 1728 .8 +2543 2543 1 +2543 2544 .8 +2543 1683 .8 +2543 2270 .6 +506 46 1 +506 1116 1 +506 30 1 +506 431 1 +506 506 1 +506 743 1 +506 1160 1 +506 445 1 +506 441 1 +506 5 1 +506 44 1 +506 432 1 +506 440 1 +2545 2545 .6 +2546 2546 .8 +2547 2548 .6 +2547 2549 .6 +772 772 .8 +772 328 1 +772 30 1 +772 719 1 +772 46 1 +772 2550 .8 +772 193 1 +772 274 1 +772 627 1 +772 2246 1 +772 655 1 +772 624 1 +772 918 1 +772 1768 1 +772 650 1 +772 785 .8 +772 1954 .6 +772 597 .8 +772 768 .8 +2551 1517 1 +2551 9 .8 +2551 1750 .8 +2551 2551 .8 +2552 2552 1 +2553 2553 .8 +2554 2555 .8 +2554 1002 .8 +2554 174 .8 +2554 2556 .8 +2557 2558 .8 +2559 2559 .8 +2559 2560 .8 +1167 2561 1 +1167 431 1 +1167 46 1 +1167 2562 .8 +1167 2563 .8 +1167 1002 .8 +1167 30 .6 +1167 1117 1 +1167 934 .8 +1167 327 1 +1167 2564 .6 +1167 810 .6 +1167 1020 1 +1167 172 1 +1167 677 .6 +1167 1491 .8 +1167 587 .6 +1167 2565 .8 +1167 937 .8 +1167 1495 .8 +1167 714 1 +1167 1023 1 +1167 290 1 +1167 353 1 +1167 90 .8 +1167 14 .8 +1167 298 .6 +1167 641 1 +1167 2566 .8 +1167 807 .8 +1167 514 .8 +1167 71 .8 +1167 1957 1 +1167 858 1 +2567 2567 .6 +658 587 .8 +658 1488 .6 +658 2568 .6 +658 1730 .6 +658 2527 .6 +658 2569 .8 +658 2570 .8 +658 2571 .6 +658 1624 .6 +658 1188 .6 +658 1464 .8 +658 247 .6 +658 243 .6 +658 1136 .6 +658 246 .6 +658 240 .6 +658 1487 .6 +658 1483 .6 +658 258 .6 +658 613 .6 +658 977 .8 +658 2572 .6 +658 1541 .6 +658 1465 .8 +658 2573 .8 +658 883 1 +658 1106 .6 +658 1779 .6 +658 2574 1 +658 2198 1 +658 2197 .8 +658 1031 .8 +658 2575 .8 +658 1176 1 +658 1 1 +658 37 .8 +658 1874 .8 +658 2410 .8 +658 449 1 +658 2576 .8 +658 710 1 +2577 1930 1 +2106 1653 .8 +2106 182 .8 +2106 865 .8 +2106 2108 .8 +2106 2107 .8 +2106 324 1 +2106 1586 .8 +2106 2578 .8 +2106 2105 .8 +2106 2110 .8 +2106 428 1 +2106 2579 .6 +2106 2243 .8 +2106 1965 .6 +2106 124 .8 +2106 1743 .8 +2106 2580 .8 +2106 2581 .8 +2582 2582 .6 +2583 1117 1 +2583 202 1 +2583 2584 1 +2583 2585 1 +2583 1397 1 +2583 186 1 +2586 2586 .8 +2586 2587 .8 +2588 2588 .6 +2588 385 1 +2589 2589 .6 +2589 756 1 +2590 857 .6 +2590 467 1 +2590 242 1 +2590 532 .8 +2590 374 .6 +2590 1599 .8 +2590 812 .6 +2590 353 1 +2590 2591 .8 +2013 1750 .8 +2013 2592 .6 +2013 1407 .8 +2013 2593 .8 +2013 2594 .6 +2013 2595 .6 +2596 323 .8 +2596 2597 1 +2598 2598 .8 +1062 1062 .8 +1062 1454 .8 +1062 2184 .8 +1062 304 .8 +1062 2599 .8 +1062 741 .8 +1062 764 1 +1062 2600 .6 +1062 1023 .8 +1062 1020 1 +1062 2226 .8 +1874 869 1 +908 316 1 +908 436 1 +908 1996 1 +908 438 .8 +908 467 .8 +908 908 .8 +908 1894 .8 +908 2210 .8 +908 351 .8 +2601 2601 .8 +2601 1757 1 +2601 2602 .8 +2601 1750 .8 +2601 1536 .8 +2601 2603 .8 +2601 2604 .6 +2601 2016 .8 +2601 2605 .6 +2601 440 1 +2601 457 .8 +2601 512 .8 +2601 2606 1 +2601 2607 .8 +2608 887 .8 +2608 35 .8 +2608 2609 .8 +96 1913 .6 +96 2610 .8 +96 356 .6 +96 581 .6 +96 1162 .8 +96 659 .6 +96 297 1 +96 703 .6 +96 2002 .6 +96 1704 .6 +96 759 .8 +96 2611 .6 +96 362 .6 +96 784 .8 +96 197 .8 +96 1801 .6 +96 780 .6 +96 579 1 +96 985 .6 +96 334 .8 +96 739 1 +96 1091 .6 +96 202 1 +96 577 1 +96 880 .6 +96 791 .6 +96 797 .8 +96 1290 .8 +96 2612 .6 +96 1111 .8 +96 2613 .6 +96 44 1 +96 2614 .8 +96 1270 .8 +96 2615 .6 +96 2272 .6 +96 328 1 +96 30 1 +96 719 1 +96 46 1 +96 917 .6 +96 1153 .6 +96 2616 .8 +2617 2617 .8 +2617 2618 1 +2617 2317 1 +2617 643 1 +2619 2619 .8 +2619 126 1 +2620 2620 1 +2621 2621 1 +2621 1182 .6 +2621 1171 1 +2621 424 1 +2621 46 1 +2621 632 1 +2621 2622 1 +2623 2623 .8 +1385 1385 .6 +1385 2624 1 +1385 296 1 +1385 375 1 +1385 1562 1 +1385 612 1 +1385 283 1 +1385 2343 .8 +1385 1579 1 +1385 714 1 +1385 2269 .8 +1385 2625 .8 +1385 1781 .8 +1385 1553 .8 +2626 326 1 +2626 65 .8 +210 210 .8 +210 206 .8 +2627 2627 1 +2628 2628 1 +1697 1697 .8 +1697 2629 .8 +1697 106 .8 +1697 97 .8 +1697 736 1 +1697 837 .8 +1697 2164 .8 +2630 2630 .8 +2631 298 .8 +2632 2632 .6 +871 868 .6 +2085 1254 .8 +2085 610 1 +2085 625 .8 +2085 400 .8 +2085 1373 .8 +2085 1248 1 +2633 2633 1 +2634 915 1 +2634 192 .8 +2634 399 .8 +1769 50 .8 +1769 57 1 +1769 58 .8 +1769 337 .8 +1769 51 .8 +1769 1769 .8 +1769 59 .8 +1769 227 .8 +2635 2636 .8 +2635 2637 .6 +2635 1892 1 +2635 907 .8 +2635 1288 .8 +2635 2638 .6 +2635 2639 .6 +2635 440 1 +410 126 1 +2640 2640 1 +2485 2485 .8 +2641 2641 .6 +2642 2642 .6 +2643 2643 .6 +2644 2644 .6 +2645 2645 .6 +2645 45 1 +913 933 .6 +913 171 1 +913 172 1 +913 328 1 +913 2172 .8 +913 2271 .8 +913 1314 1 +913 2646 1 +913 915 .8 +913 2647 .6 +913 791 .8 +913 810 .6 +913 827 1 +913 350 1 +913 762 1 +913 913 1 +913 1441 .8 +913 1324 1 +2648 242 .8 +2648 2648 1 +2649 2649 .6 +2650 2650 .6 +2651 2651 .6 +1246 737 1 +1246 2652 1 +1246 352 1 +1246 1547 .8 +1246 1930 1 +1246 2653 .6 +1246 1750 .8 +1246 2654 .6 +1246 2655 1 +1246 2656 .6 +1246 2008 .8 +1246 2657 .8 +1246 265 1 +1246 2246 1 +1246 2509 .8 +1246 2658 .8 +1246 2659 .6 +1246 461 .6 +1701 1675 .8 +1701 46 1 +1701 426 1 +1701 1124 1 +1701 425 1 +1701 770 1 +1701 22 1 +1701 424 1 +1701 112 1 +1701 118 1 +1701 2660 .8 +1701 250 .6 +1701 44 1 +1701 1705 .8 +1701 1707 .8 +1701 1708 .8 +2661 2661 .6 +2662 475 .8 +2662 1012 1 +2663 2664 .6 +2663 2663 .6 +2663 2665 .6 +714 286 1 +714 2666 .8 +714 2291 .8 +714 327 .8 +714 1123 1 +714 1546 .8 +714 46 1 +714 1022 1 +714 405 1 +714 126 1 +714 1430 1 +714 2667 .8 +714 373 1 +714 1663 .6 +714 872 1 +531 531 .6 +531 1244 1 +531 286 1 +531 972 .6 +531 956 .6 +531 1549 .8 +531 211 1 +531 89 .6 +531 323 .8 +531 525 .8 +531 711 .8 +531 1393 .8 +531 719 1 +531 165 .8 +531 93 .6 +531 438 .8 +531 349 1 +531 530 .6 +2668 2668 .6 +2669 2669 .6 +2670 2670 .6 +2670 329 1 +1369 708 .6 +1369 960 .6 +1369 1826 .6 +1369 125 .6 +1369 1378 1 +1369 1223 .8 +1369 922 .6 +1369 804 1 +1369 2671 .8 +1369 261 1 +1369 625 1 +1369 2274 1 +1369 2672 1 +1369 2085 .8 +1369 2673 1 +1369 2674 1 +1369 2675 .8 +1369 129 1 +1369 45 1 +1369 62 1 +1369 658 1 +2676 1557 .8 +2676 2676 .6 +2677 2677 .8 +2677 116 .8 +1982 1982 1 +1982 2678 .8 +1982 2679 .8 +1982 614 .8 +859 86 .8 +859 801 .8 +859 97 .8 +859 1693 .8 +859 142 .8 +859 648 1 +859 736 1 +859 329 1 +859 1496 .8 +859 91 .8 +859 856 .8 +859 837 .8 +859 1894 .8 +859 318 .8 +859 747 1 +859 738 .8 +859 90 .8 +859 1089 1 +859 405 .8 +859 2680 .6 +859 2681 .8 +2682 2682 1 +2682 2683 1 +2684 2684 .8 +715 715 .6 +715 207 .8 +715 2685 .6 +715 2686 .6 +715 2687 .6 +715 786 .8 +715 549 1 +715 44 1 +715 441 1 +715 717 1 +715 214 .8 +715 1943 1 +715 2302 1 +715 2688 .6 +715 2689 .6 +715 2690 .6 +715 2691 .6 +715 2692 .6 +2693 2693 .6 +2694 597 .8 +2694 378 .6 +2694 2307 .8 +2694 1153 1 +2694 1873 .8 +2694 2575 .8 +2694 2694 .8 +2694 1875 .8 +2694 2695 1 +2696 2696 .6 +2696 886 .8 +2696 2002 1 +2696 2697 .8 +2696 2698 .8 +2696 95 .8 +2696 303 .8 +2696 305 1 +2696 301 .8 +2696 304 1 +2696 2699 .8 +2696 2700 .6 +1271 1166 .8 +2701 2701 1 +2701 945 1 +1910 429 1 +1910 46 1 +1910 5 1 +1910 1407 .6 +1910 445 1 +1910 1910 .8 +1910 1893 1 +1910 44 1 +1910 1499 .8 +1910 639 1 +1910 1906 1 +1910 1237 .8 +1910 316 1 +1910 2702 .6 +1910 353 1 +1910 440 1 +1910 632 .8 +1910 1856 1 +1910 215 1 +1910 110 .8 +1910 1770 1 +1910 441 1 +1910 318 1 +1910 2231 1 +1910 2703 .8 +1910 2704 .6 +1910 1160 1 +1910 549 .8 +1910 173 .8 +1910 1447 1 +1910 1959 1 +1910 2705 .8 +1910 1154 .6 +1910 437 .8 +1910 2232 1 +1910 2240 .8 +1910 506 1 +1910 717 1 +1910 80 .8 +1910 43 1 +1910 2655 1 +1910 2706 .6 +1910 2707 1 +1910 1116 1 +1910 1795 .6 +1910 2235 1 +1910 2708 .6 +2051 2051 .8 +2709 2709 .8 +2710 1378 .8 +2711 2711 .6 +2712 2712 .8 +318 1894 1 +318 1996 .8 +318 439 .6 +318 738 .8 +318 317 .6 +318 2002 .8 +318 1583 1 +318 859 1 +318 428 1 +318 2226 1 +318 789 1 +318 588 1 +318 2713 .8 +318 65 1 +318 2714 .6 +318 2715 .8 +337 57 .8 +337 51 .8 +337 50 .8 +337 2716 .8 +337 58 .8 +337 48 .8 +337 330 .8 +337 333 1 +337 861 .8 +337 637 .8 +337 1769 .8 +2717 2717 .6 +2718 2718 .6 +2718 295 .8 +2719 2719 .8 +2719 610 1 +2719 737 1 +2719 2659 .8 +2719 2720 .8 +2110 2110 .8 +2721 424 1 +2721 425 1 +2721 1520 1 +2721 2722 .6 +2721 19 .6 +2019 797 .8 +2019 1918 .8 +2019 126 1 +2019 829 .6 +2723 2723 .8 +2723 268 1 +2723 1839 .8 +2723 2662 .8 +2723 147 1 +422 774 1 +422 793 1 +422 780 1 +422 1586 1 +422 422 1 +2724 2724 .6 +2724 328 1 +2724 890 .8 +2724 779 .8 +2724 34 1 +2724 625 .6 +2724 349 1 +2724 888 1 +2724 265 1 +2724 830 1 +2724 469 1 +2724 711 1 +2724 172 1 +2724 646 1 +1287 1286 .8 +1287 1026 .8 +1287 46 1 +1287 1285 .8 +1287 318 .8 +1287 351 .8 +360 360 .6 +1754 328 1 +1754 304 1 +1754 172 1 +1754 121 1 +1754 1020 1 +1754 328 1 +1754 934 1 +1754 46 1 +1754 719 1 +1754 1752 1 +1754 171 1 +1754 324 1 +1754 30 1 +1860 30 1 +1860 1020 1 +1860 1860 .6 +1860 1076 .6 +1860 121 1 +1860 46 1 +1860 1077 .8 +1860 1859 .6 +1860 658 .6 +1860 1087 .8 +1860 1021 .8 +1860 1085 .6 +1860 1073 .8 +1860 437 1 +1860 344 .8 +1860 2725 .8 +1860 2726 .8 +1860 2727 .8 +1860 2728 .8 +1860 572 .8 +1860 2729 .6 +1860 570 .8 +1860 504 .6 +1860 324 1 +1860 492 .6 +1860 438 .8 +2730 1149 1 +2730 173 .8 +2731 2732 .8 +2731 2733 .8 +2731 1049 .8 +2734 759 .8 +2735 2735 .6 +2736 2736 .6 +2737 2737 1 +2738 2739 .8 +2738 2738 .8 +716 2740 .6 +716 553 .8 +716 1538 .8 +716 1540 .8 +716 349 1 +716 2741 .8 +716 378 .6 +716 142 1 +716 2227 .8 +716 1072 .8 +716 2742 .6 +716 2743 .8 +716 92 1 +716 528 .8 +716 855 1 +716 837 .8 +716 522 .8 +716 789 1 +716 2744 .8 +716 739 1 +716 420 .8 +716 681 .6 +716 1000 .8 +716 588 .8 +716 740 .8 +716 157 .8 +716 781 .8 +716 715 1 +716 786 1 +716 2745 .8 +716 2686 .8 +716 620 1 +716 718 .8 +716 329 1 +716 859 1 +716 536 1 +716 2746 .8 +716 2251 1 +716 1051 1 +716 492 1 +716 1519 1 +716 1286 1 +716 736 1 +716 84 .8 +716 584 1 +716 140 .8 +716 2747 .6 +716 2629 .8 +716 2141 .8 +716 242 1 +716 194 1 +716 1306 .8 +716 1659 .8 +716 2748 .8 +716 1108 .8 +716 2749 .8 +716 2750 .8 +716 2751 .8 +716 758 .8 +716 318 .8 +716 116 .8 +716 2752 .8 +716 944 .8 +716 2753 .8 +716 2754 .8 +716 2755 .8 +1604 110 .8 +1604 652 .8 +1604 2453 .8 +1604 105 .8 +1604 1222 .8 +1604 106 .8 +1604 1605 .8 +1604 1604 .6 +1604 2756 .6 +1604 46 1 +1604 2757 .8 +1604 175 .8 +1604 739 1 +1604 647 1 +1604 1798 .6 +1503 1503 1 +1503 1502 1 +1503 1490 1 +1503 673 1 +1503 126 1 +1503 30 1 +2758 918 1 +2758 2463 1 +1490 2759 .8 +1490 623 1 +1490 172 1 +1490 302 .8 +1490 739 1 +1490 735 1 +1490 1492 .8 +1490 1476 1 +1490 438 .8 +1490 349 1 +1490 30 1 +1490 1117 1 +1490 1752 .8 +1490 324 1 +1490 791 1 +1490 1079 .8 +1490 1847 1 +1490 1753 1 +1490 1125 1 +1490 1436 .8 +1490 719 1 +1490 1020 1 +1490 1754 1 +1490 1490 .6 +1490 46 1 +1490 937 .8 +1490 797 .8 +1490 1491 1 +1490 405 1 +1490 780 .8 +1490 1616 1 +1490 1493 .8 +1490 501 .8 +1490 1735 .8 +1490 2760 .8 +1490 1085 .8 +1490 468 .8 +1490 441 1 +1490 577 1 +1490 126 1 +1490 1992 1 +1490 481 .8 +1490 1108 .8 +1490 1123 1 +1490 1848 1 +1490 673 1 +1490 1502 1 +1490 645 1 +1490 807 1 +1490 1495 1 +1490 1353 1 +1490 2761 1 +1490 2435 .8 +1490 2401 .8 +1490 672 1 +1490 2762 .8 +1490 712 1 +1490 830 1 +1490 346 .8 +1490 1049 1 +1490 2258 .8 +2763 2763 1 +2764 2259 .6 +2764 2764 .6 +2764 429 .8 +2765 2765 .8 +2766 2766 .8 +2767 2767 1 +2767 1343 1 +2767 329 1 +2768 528 .6 +1158 555 1 +1158 2320 .6 +1158 1157 1 +1158 2319 .8 +1158 1158 .8 +1158 764 1 +1158 2769 .8 +1158 2770 .8 +1158 2771 .6 +1158 292 1 +2772 2772 .6 +2772 650 1 +2773 2773 1 +2774 2774 .6 +2774 904 .8 +2774 2775 .6 +2774 1964 .8 +2774 2776 .8 +2774 791 1 +2774 2259 .6 +2774 1618 1 +2774 2634 .6 +2774 915 1 +2774 2777 .8 +2774 2778 .6 +2774 2716 .8 +2774 2779 .6 +2774 1395 .6 +2774 188 .8 +2774 2780 .6 +2774 1899 .8 +2774 552 .6 +2774 442 .8 +2774 399 .8 +2774 43 1 +2774 46 1 +2774 719 1 +2774 1832 .6 +2774 773 .8 +2774 969 1 +2774 2090 1 +2774 431 1 +2774 2092 1 +2774 708 .6 +2774 1816 1 +2774 994 .8 +2774 2781 .6 +2774 429 .8 +2774 1011 1 +2774 669 1 +2774 2782 .6 +2774 1510 .8 +2774 137 1 +2774 1089 1 +2774 2783 .8 +2774 2317 .8 +2774 2784 .8 +2774 960 .8 +2774 1126 1 +2774 624 1 +2774 943 1 +2774 807 1 +2774 165 1 +2774 1093 .8 +2774 701 .8 +2774 2274 1 +2774 794 .8 +2774 70 .8 +2774 1526 .8 +2774 2785 .6 +2774 646 1 +2774 1223 .8 +2774 1043 .8 +2774 1781 .8 +2774 630 .8 +2774 2786 .6 +2774 20 .8 +2774 2787 .8 +2774 2448 .8 +2774 2788 .6 +2774 751 1 +2774 2789 .8 +2774 597 .8 +2774 1974 1 +2774 714 1 +2774 2790 .8 +2774 214 .6 +2774 1282 .6 +2774 346 1 +2774 1238 1 +2774 2791 .8 +2774 1142 .8 +2774 860 1 +2774 175 1 +2774 610 1 +2774 2792 .6 +2774 1068 1 +2774 335 1 +2774 349 1 +2774 1586 .8 +2774 441 1 +2774 830 1 +2774 1711 1 +2774 2219 .8 +2774 207 .8 +2774 62 1 +2774 2793 .6 +2774 2794 .6 +2774 157 .8 +2774 469 1 +2774 1418 1 +2774 2795 .8 +2774 1339 .8 +2774 400 1 +2774 460 .8 +2774 583 1 +2774 1049 1 +2774 2372 1 +2774 215 1 +2774 328 1 +2774 297 1 +2774 1163 .8 +2774 699 .6 +2774 545 1 +2774 2125 .8 +2774 23 .8 +2774 777 1 +2774 1548 1 +2796 2796 .6 +2796 1963 .6 +2796 625 .6 +2796 328 1 +2796 30 1 +2796 719 1 +2796 46 1 +2797 2517 .8 +2797 2798 .8 +2797 2323 .8 +2797 2799 .8 +2797 582 .8 +2797 474 .6 +2800 2800 1 +2801 2801 .8 +2801 2802 .8 +2803 2803 .8 +2803 2274 1 +2803 2804 .6 +2803 943 1 +2803 1851 1 +2803 737 1 +2803 1153 .8 +2803 2805 .8 +2803 2806 .6 +2803 1988 1 +2803 1874 .8 +2803 1388 1 +2803 610 1 +2803 46 1 +2803 2807 1 +2803 1237 1 +2803 45 .6 +2808 2516 .8 +2809 2809 .8 +2810 2810 .6 +2700 2700 .6 +2700 2002 .8 +2700 306 .8 +2811 2811 .6 +2099 2099 .6 +2099 497 .8 +2099 334 .8 +2099 613 .8 +2099 1046 .8 +2099 2097 .6 +2099 2098 .8 +2812 2812 .6 +288 289 .6 +288 860 1 +288 288 .8 +288 1068 1 +288 647 1 +288 277 .8 +2813 2813 .6 +2813 2622 .8 +2814 2814 .6 +2815 2815 .8 +2816 2816 .6 +2817 2817 1 +2818 2818 .8 +2686 2745 .6 +2686 715 .8 +2686 2687 .6 +2686 2819 .6 +2686 1960 1 +2686 736 1 +2686 739 1 +2686 46 1 +2686 207 .8 +2686 2820 .6 +869 869 1 +869 65 1 +869 870 1 +869 1227 1 +869 2158 1 +869 2821 .8 +869 1874 .6 +869 1226 1 +869 359 .6 +869 2822 .8 +869 312 .6 +869 868 .6 +869 379 1 +869 640 1 +869 1171 1 +869 1177 1 +869 1228 .8 +869 2823 1 +869 282 1 +869 2824 .8 +869 1181 .8 +2825 2825 .8 +2826 2826 .6 +499 345 1 +499 30 1 +499 438 .8 +499 46 1 +499 1075 1 +499 1960 1 +499 2827 .6 +499 584 1 +499 327 .8 +499 175 1 +499 2356 1 +499 1500 .6 +499 499 .6 +499 2828 .6 +499 517 .6 +499 2535 .6 +499 2516 .8 +499 2829 .6 +2830 678 .8 +2830 2830 .6 +2831 2831 .6 +2831 770 1 +2831 194 .8 +2831 2832 .6 +2833 2833 .6 +2713 2713 .6 +2713 1086 .8 +2713 751 1 +2713 2834 .8 +2713 22 1 +2713 30 1 +2713 46 1 +2713 352 1 +2713 326 1 +2713 738 1 +2713 2284 .8 +2713 1343 1 +2713 1894 1 +2713 318 .8 +2713 1447 .6 +2713 2652 .8 +2713 202 .8 +2713 319 .8 +2713 438 .8 +2713 394 .8 +2713 705 .6 +2713 93 .6 +2713 2835 .8 +2713 2836 .8 +452 449 .8 +452 450 .8 +452 451 .8 +452 448 .6 +582 1047 .8 +582 427 .8 +582 286 1 +582 2071 1 +582 582 1 +582 2363 .8 +582 324 1 +582 148 .8 +582 1033 .8 +582 255 .6 +582 205 .6 +582 2837 .8 +582 2838 .6 +582 1195 .8 +582 2839 .6 +582 739 1 +582 327 .8 +582 198 .6 +582 197 .8 +582 577 .8 +582 1613 .6 +582 362 .8 +582 2323 .8 +582 474 .6 +582 121 1 +582 163 .8 +582 2615 .8 +582 581 .8 +582 1150 .8 +582 1243 .6 +582 844 .6 +582 304 1 +582 301 .8 +582 467 .8 +582 326 1 +582 743 1 +582 677 .8 +582 2506 .6 +582 65 .8 +582 784 .8 +582 250 .6 +582 561 1 +582 2840 .6 +582 736 1 +582 512 .6 +582 596 .6 +582 83 .6 +582 831 .6 +582 1658 .8 +582 1307 .8 +582 2841 .8 +582 800 .6 +582 2461 .8 +582 556 .8 +582 259 .6 +582 764 1 +582 437 .6 +582 50 1 +582 52 .8 +582 51 1 +582 853 .8 +582 1767 .8 +582 58 .8 +582 2216 1 +582 2003 .6 +582 2842 .6 +582 683 1 +582 1585 .6 +582 215 1 +582 1117 1 +582 258 .6 +582 499 .6 +582 2020 .6 +582 489 .6 +582 503 .6 +582 703 .6 +582 1139 .6 +582 923 .6 +582 44 1 +582 1171 1 +582 2515 .6 +582 113 .8 +582 297 1 +582 738 1 +582 1415 .8 +582 801 .8 +582 2843 .6 +582 1486 .8 +582 961 .6 +582 846 .8 +582 2844 .6 +582 2405 .6 +582 141 .6 +582 2797 .8 +582 631 .6 +582 719 1 +582 475 .8 +582 2845 .8 +582 1677 .6 +582 1736 .6 +582 2141 .6 +582 517 .6 +582 92 1 +582 2846 .6 +582 2001 .6 +582 741 1 +582 2214 .8 +582 1165 .8 +582 1270 .8 +582 2725 .8 +582 1192 .8 +582 2432 1 +582 646 1 +582 973 .8 +582 1304 .8 +582 261 .6 +582 157 .8 +582 893 1 +582 787 .8 +582 15 .6 +582 2568 .6 +582 1169 .8 +582 374 .8 +582 2777 .6 +582 785 .6 +582 776 .8 +582 2847 1 +2580 1965 .8 +2580 181 .8 +2580 1653 .8 +2580 1056 .8 +2580 2108 .8 +2580 182 .8 +2580 2110 .8 +2580 2848 .8 +2580 2107 .8 +2580 2109 .8 +2580 2113 .8 +2580 2849 .8 +2580 2111 .8 +2580 2850 .8 +2580 2106 .8 +2748 2748 .8 +2748 740 .8 +2748 739 1 +2748 84 .8 +2748 142 1 +2748 789 .8 +2748 86 .8 +2748 855 1 +2748 2751 .6 +2748 2629 .8 +2748 1433 .8 +2748 837 .8 +2748 587 .8 +69 69 .6 +69 67 1 +69 48 1 +69 68 .6 +69 70 .8 +69 71 .8 +69 53 .8 +69 66 .8 +69 74 .8 +2851 1692 .8 +2851 2852 .8 +2851 142 1 +2851 739 1 +2851 736 1 +2851 438 .6 +2851 1308 .8 +2851 86 .8 +2851 329 1 +2851 126 1 +2851 248 .6 +2851 597 .8 +2851 324 1 +2851 30 1 +2851 353 1 +2851 175 1 +2851 784 1 +2851 405 1 +2851 327 .8 +2851 646 1 +2851 792 1 +2851 46 1 +2851 13 1 +2851 431 1 +2851 2851 .6 +2851 2853 .8 +2851 2854 1 +2851 1898 .8 +2851 2681 .8 +2851 1021 .8 +2851 2855 .8 +2851 719 1 +2851 445 1 +2851 858 1 +2851 101 1 +2851 286 1 +2851 1075 .8 +2851 162 1 +2851 1668 1 +2851 129 1 +2851 165 1 +1770 1471 1 +1770 441 1 +1770 717 1 +1770 1557 1 +1770 1893 1 +1770 2856 .6 +1770 2541 .8 +2857 2857 .6 +2858 2858 .6 +2858 441 1 +2858 1165 .6 +1172 385 .8 +1172 1449 1 +1172 1176 1 +1172 1453 .8 +1172 2727 .8 +1172 2859 .8 +1172 658 .8 +1172 214 .8 +1172 1464 .8 +1172 2377 .8 +1172 141 .8 +1172 586 .8 +1172 597 .8 +1172 9 .8 +1172 246 .6 +1172 738 1 +1172 644 1 +1172 852 1 +1172 1343 1 +1172 1126 1 +1172 434 1 +1172 1171 1 +1172 1024 1 +1172 883 1 +1172 710 1 +1172 16 .8 +1172 858 1 +1172 562 1 +1172 1075 1 +1172 1033 .8 +1172 197 1 +1172 987 .6 +1172 2572 .8 +1172 282 1 +1172 1483 .6 +1172 598 .8 +1172 469 .8 +1172 948 .6 +1172 1546 .8 +1172 349 1 +1172 1216 .8 +1172 784 1 +1172 2860 .8 +1172 291 .6 +1172 2861 1 +1172 2521 1 +1172 525 .8 +1172 107 .6 +1172 157 .6 +1172 1070 .8 +1172 795 .8 +1172 1543 1 +1172 1211 1 +1172 34 1 +1172 335 .8 +1172 989 .8 +1172 1582 .8 +1172 1437 1 +1172 1227 1 +1172 1961 .8 +1172 1816 1 +1172 2862 .8 +1172 848 .8 +1172 934 1 +1172 2863 .8 +1172 2864 .8 +1172 1160 .8 +1172 643 1 +1172 2151 .8 +1172 766 .6 +1172 1172 1 +1172 2865 1 +1172 898 .8 +1172 849 .8 +2866 2866 .6 +2866 2867 .8 +2866 2868 .6 +2866 2869 .6 +2866 766 .6 +2870 2870 .6 +2870 314 .8 +2249 2249 .8 +2249 326 1 +2249 1075 .8 +2249 323 .8 +2249 324 .8 +2530 2320 .6 +2530 1158 .8 +2530 2770 .8 +2530 1157 1 +2530 555 1 +2530 2319 .8 +2871 2872 1 +2871 2871 1 +2873 2873 .6 +2874 883 .8 +2874 1211 .8 +2874 1176 1 +2874 1449 .8 +2874 57 .8 +797 328 1 +797 719 1 +797 30 1 +797 1020 1 +797 1476 1 +797 735 1 +797 326 1 +797 1400 .6 +797 324 .8 +797 1075 1 +797 645 .8 +797 174 1 +797 1633 .8 +797 466 .8 +797 577 .8 +797 468 .8 +797 797 .6 +797 1436 .8 +797 934 1 +797 1401 .8 +797 352 1 +797 1073 .8 +797 1074 .8 +797 2401 .8 +797 1313 .8 +797 1789 .6 +797 215 .8 +797 2616 .8 +797 1072 .8 +797 2875 .6 +797 1434 .8 +797 323 .8 +797 1117 1 +797 1084 .6 +797 349 1 +797 558 .8 +797 668 .8 +797 350 1 +797 1076 .6 +797 2876 .6 +797 305 1 +797 1356 .8 +797 2877 .8 +797 623 .8 +797 1079 .8 +797 1495 1 +797 1437 .8 +797 1616 .8 +797 652 .8 +797 642 1 +797 282 1 +797 46 1 +797 829 .8 +797 1918 1 +797 118 1 +797 467 .8 +797 351 .8 +797 1427 .8 +797 1433 .8 +797 1993 .8 +797 791 1 +797 435 .8 +797 1123 1 +797 1491 .6 +797 325 1 +797 595 .8 +797 2878 .8 +797 172 .8 +797 344 .8 +797 1894 1 +797 436 1 +797 286 1 +797 1166 .8 +797 511 1 +797 348 1 +797 827 1 +797 1639 .8 +797 320 .6 +797 2879 .8 +797 1213 .8 +797 8 .8 +797 1247 1 +797 1754 1 +797 22 1 +797 2880 1 +797 937 .8 +797 2881 .8 +797 353 1 +797 1490 1 +797 405 1 +797 2882 .8 +797 915 1 +797 13 .8 +797 126 1 +797 1167 .6 +797 1847 1 +797 2883 .8 +797 1430 1 +797 736 1 +797 1752 1 +797 638 .8 +797 646 .8 +797 65 .8 +797 2884 .8 +797 1948 .8 +797 674 .8 +797 2885 .8 +797 1900 .8 +797 2019 .6 +797 2221 1 +797 2190 1 +797 2667 .8 +797 1937 .8 +797 804 .8 +797 2304 .8 +797 2886 .8 +797 142 1 +797 711 .8 +797 943 1 +797 522 1 +797 2887 .8 +797 1051 .8 +797 555 1 +905 905 .8 +905 2888 .8 +905 2551 .8 +905 1750 .8 +905 902 .8 +905 904 .8 +905 898 .8 +905 903 .8 +905 899 .8 +905 897 .6 +905 701 1 +2889 2889 .8 +774 14 .8 +774 2464 1 +774 780 .8 +774 1491 1 +774 1167 .8 +774 711 1 +774 2561 1 +774 2614 .8 +774 846 .8 +774 934 1 +774 46 1 +774 30 1 +774 1847 1 +774 328 1 +774 719 1 +774 1020 1 +774 1754 1 +774 172 1 +774 1075 1 +774 13 1 +774 1495 1 +774 791 1 +774 939 .8 +774 2883 .8 +774 898 .8 +774 348 1 +774 712 1 +774 807 1 +774 422 1 +774 793 .8 +774 2890 1 +774 2348 1 +774 892 1 +774 727 1 +774 1930 1 +774 653 1 +774 902 1 +774 2463 .8 +774 1742 1 +774 2251 1 +774 1869 1 +774 492 1 +774 721 1 +774 1362 1 +774 349 1 +774 303 1 +774 1117 1 +774 468 1 +774 1356 1 +774 326 1 +774 645 1 +774 2450 1 +774 943 1 +774 1364 1 +774 577 1 +774 1309 1 +774 2247 1 +774 715 1 +774 1851 1 +2891 2891 .8 +2891 1221 1 +2892 2892 .8 +2893 2893 .6 +2894 2894 .8 +2894 2895 .6 +2894 791 1 +2894 258 .8 +2896 2896 .6 +95 306 .8 +95 1720 1 +95 1133 .8 +95 719 1 +95 301 .6 +95 303 1 +95 352 1 +95 305 1 +95 326 1 +95 2284 .8 +95 738 .8 +95 435 .8 +95 1894 .8 +95 2078 .8 +2897 2897 .8 +2897 747 1 +2461 1479 1 +1800 1800 .6 +1800 172 1 +1800 934 1 +1800 174 .8 +1800 349 1 +1800 831 1 +1800 438 1 +1800 492 .6 +1800 579 .6 +1800 19 .8 +1800 214 .6 +2898 1237 1 +2898 2232 1 +2899 2366 1 +2899 2267 1 +2900 2900 .8 +2900 157 .8 +2346 2346 .6 +2346 2101 .8 +2346 172 1 +2346 324 1 +2346 344 1 +2901 2901 .6 +673 1493 1 +673 30 1 +673 1108 .8 +673 673 1 +673 1490 1 +673 286 1 +673 1502 1 +673 719 1 +673 937 1 +673 1993 1 +673 1491 1 +673 1492 .8 +673 126 .6 +673 175 .6 +673 674 .8 +673 1342 1 +673 116 .8 +673 918 1 +673 735 1 +673 2902 1 +673 1568 .8 +673 2759 .8 +673 672 1 +673 2903 1 +673 1503 .8 +673 2208 1 +673 2397 1 +673 1653 .8 +673 675 .8 +673 671 .8 +673 1587 .8 +673 2113 .6 +673 2904 .6 +673 2905 .8 +673 718 .8 +673 2906 .8 +673 2907 1 +673 1662 .6 +673 2908 .8 +673 2909 .6 +673 2252 1 +673 2910 .8 +673 2911 .8 +673 713 1 +673 428 1 +673 2807 1 +673 629 1 +673 2246 1 +673 1104 1 +673 2762 1 +673 2912 .8 +673 1049 1 +673 2913 .6 +673 1754 1 +2914 2914 .6 +2915 2915 .6 +2915 310 1 +655 624 1 +655 2550 .8 +655 274 1 +655 1609 .8 +655 629 1 +655 1768 1 +655 194 .8 +655 193 1 +655 627 1 +2916 2916 .6 +2351 2917 .6 +1712 1710 1 +1712 1709 1 +1712 1629 1 +2445 1991 1 +2445 1278 1 +2445 2446 1 +2445 2918 1 +2445 2444 .8 +2445 2447 .8 +2445 2448 .6 +2919 2919 .6 +2919 346 1 +2919 492 1 +2920 2920 .8 +2921 2922 .8 +2921 2921 .6 +2921 2923 .8 +2924 2925 .6 +2924 130 .6 +2902 718 .8 +2902 1568 .8 +2902 1846 .6 +2926 357 .8 +2926 424 1 +2926 2927 .8 +2926 427 1 +2410 2407 .6 +2410 2405 .8 +2410 2408 .6 +2410 2406 .8 +2410 2928 .6 +2410 121 .6 +2410 960 .8 +2410 866 .6 +2410 2411 .6 +2410 565 .8 +2410 2929 .6 +2410 2930 .8 +2410 658 1 +773 773 .8 +773 2931 .6 +773 830 .8 +773 89 .6 +773 44 .8 +773 2932 .8 +773 349 1 +773 469 .8 +773 613 .6 +773 525 .8 +773 93 .6 +773 770 1 +773 1160 1 +773 22 1 +773 214 .8 +773 246 .6 +773 991 .6 +773 1216 .8 +773 107 .8 +773 923 .6 +773 2506 .6 +773 893 .8 +773 1233 .6 +773 583 1 +773 263 .8 +773 997 .6 +773 804 .8 +773 538 .8 +773 112 .8 +773 438 .8 +773 920 .8 +773 2933 .8 +773 514 .8 +773 912 .8 +773 242 .8 +773 524 .8 +773 121 .8 +773 1324 1 +773 171 1 +773 2858 .8 +773 2934 .6 +2935 1605 .8 +2935 2935 .8 +2935 433 1 +2935 710 1 +2935 1494 .8 +2936 2936 .8 +1381 1416 1 +1381 261 1 +1381 1065 1 +1381 2235 1 +1381 1223 1 +2937 2937 .6 +2938 2938 .6 +2938 642 1 +2938 610 1 +2938 624 .8 +2938 2789 .8 +2938 2787 .8 +2938 165 1 +2938 328 1 +2938 658 1 +2938 349 1 +2938 62 1 +2938 1731 .8 +2938 2939 .8 +2938 2940 .8 +2938 128 1 +2938 1987 .6 +649 286 1 +172 1480 .6 +172 511 1 +172 46 1 +172 350 1 +172 30 1 +172 1117 1 +172 934 1 +172 719 1 +172 1020 1 +172 352 1 +172 326 1 +172 623 .8 +172 735 .8 +172 2941 .6 +172 2942 .8 +172 34 .6 +172 1238 .8 +172 915 1 +172 13 .8 +172 431 1 +172 1993 1 +172 642 1 +172 645 .8 +172 324 1 +172 1592 .8 +172 430 .8 +172 174 .8 +172 1313 1 +172 351 1 +172 1996 .8 +172 791 1 +172 1434 .8 +172 209 .8 +172 112 .8 +172 1167 .8 +172 810 .8 +172 349 1 +172 1072 .8 +172 1133 .8 +172 501 .8 +172 286 1 +172 947 .6 +172 797 .8 +172 1085 .8 +172 912 1 +172 1927 .8 +172 577 1 +172 764 1 +172 1495 1 +172 1023 .8 +172 1436 .8 +172 646 1 +172 1616 1 +172 2101 .8 +172 104 .8 +172 2319 .8 +172 2320 .6 +172 555 1 +172 1157 1 +172 739 1 +172 2726 .6 +172 584 .8 +172 656 .8 +172 171 1 +172 2943 .6 +172 2944 .8 +172 784 1 +172 1247 1 +172 2945 .6 +172 2172 1 +172 175 .8 +172 1116 1 +172 2946 .6 +172 1754 1 +172 303 1 +172 2530 .8 +172 1024 .8 +172 1158 .8 +172 1027 .8 +172 353 1 +172 2947 .6 +172 854 .8 +172 1597 .8 +172 933 .8 +172 2647 .6 +172 853 .8 +172 2646 .8 +172 1314 1 +172 1752 1 +172 1536 .8 +172 1089 1 +172 1687 .8 +172 163 1 +172 405 .8 +172 1073 .8 +172 99 .8 +172 126 1 +172 2271 1 +172 101 1 +172 1451 .8 +172 807 1 +172 1075 1 +172 649 1 +172 827 1 +172 2529 .6 +172 647 1 +172 1847 1 +172 328 1 +172 805 .6 +172 1028 .8 +172 329 1 +172 918 1 +172 2363 .6 +172 830 1 +172 696 .8 +172 1179 .8 +172 1430 1 +172 913 1 +172 1613 .6 +172 1938 .6 +172 2948 .6 +172 1411 .6 +172 990 .6 +172 762 1 +172 83 .8 +172 9 .6 +172 640 1 +172 2420 .8 +172 2949 .8 +172 1177 .8 +172 1171 1 +172 597 .8 +172 643 1 +172 873 .8 +172 246 .6 +172 751 .8 +172 695 1 +172 65 1 +172 2214 .8 +172 712 .8 +172 1324 1 +172 1441 1 +172 939 .8 +172 1440 .8 +172 949 1 +172 1844 .8 +172 525 .8 +172 545 .8 +172 1001 .8 +172 44 .8 +172 157 .8 +172 492 .8 +172 1840 .8 +172 1413 .6 +172 2950 .6 +172 1166 .8 +172 162 1 +172 1631 .6 +1338 1338 .6 +1338 887 .8 +1338 1339 .8 +1338 784 .8 +1338 119 1 +1338 2951 .6 +1338 1340 .6 +2952 2952 .6 +759 759 .8 +759 316 .8 +759 2103 1 +759 2953 .8 +759 385 1 +759 387 1 +759 887 .8 +759 2954 .8 +759 2955 .8 +759 175 1 +759 329 1 +759 46 1 +759 30 1 +759 1836 .6 +759 841 .6 +759 2734 .8 +576 46 1 +576 51 .8 +576 175 1 +576 1449 .8 +576 1010 .8 +576 2956 .8 +576 1248 1 +576 2246 1 +2957 2957 .6 +2958 2958 .6 +2959 2959 .6 +2960 2960 1 +2961 2961 .8 +2961 837 .8 +2961 855 1 +2961 102 .8 +2961 790 .8 +2961 2751 .6 +2961 736 1 +2961 106 .8 +2961 801 .8 +2961 2843 .6 +2961 91 .8 +2961 2261 .8 +2961 2962 .8 +2961 188 .8 +2961 2747 .8 +2963 318 1 +2963 1306 1 +2963 2964 .8 +2963 627 1 +2963 1768 1 +2963 1769 1 +2963 949 1 +2963 2435 .8 +2963 1073 .8 +2963 2841 .8 +2963 1547 .8 +2963 2101 .8 +2963 325 1 +2963 1316 1 +994 444 1 +994 994 .8 +994 2872 .6 +994 2965 .6 +994 2966 1 +994 157 .8 +994 1047 .8 +994 528 .8 +994 22 1 +994 286 1 +994 969 .6 +994 110 .8 +994 898 .6 +994 711 .8 +994 524 .8 +994 376 .6 +2200 780 .8 +2200 1515 .8 +2200 624 1 +2200 1182 .6 +1651 34 .6 +1651 33 .8 +1651 31 1 +1651 29 1 +1651 32 .8 +1651 27 1 +1651 28 .8 +1651 836 .8 +1651 71 .8 +1651 1651 .8 +1180 1180 .8 +1180 12 .8 +1180 374 .6 +1180 2967 1 +2968 2968 1 +2969 625 .8 +2969 2970 .8 +2969 699 .8 +2969 1378 1 +2969 165 1 +2969 234 .8 +2969 1368 .8 +2969 335 1 +2969 708 .8 +2969 1968 1 +2969 2969 .8 +2969 614 .8 +2969 1373 .8 +2969 414 .8 +2969 157 1 +2969 397 .6 +2969 597 .8 +2969 2793 .8 +2969 45 1 +2969 387 .8 +2969 385 1 +2326 2326 .8 +2326 2325 .8 +2326 2971 .8 +2326 2170 .8 +2917 2171 .6 +2917 286 1 +2917 194 .8 +2917 1609 .8 +2917 165 .8 +2895 2895 .8 +2895 310 .8 +2895 234 .6 +2895 2894 .6 +2972 1074 .8 +2972 328 1 +2972 306 .8 +2972 1616 .8 +2972 2660 .8 +2973 2973 .6 +2862 2862 .8 +2862 2863 .8 +2862 1172 .8 +992 34 .8 +992 514 1 +992 751 1 +992 335 .8 +992 992 .6 +992 261 .6 +992 65 1 +992 324 1 +992 329 1 +2255 511 1 +2255 174 1 +2255 1851 1 +2255 492 1 +2255 2974 .8 +2255 2614 .8 +2255 2255 .6 +2255 1072 .8 +2255 1418 .8 +2255 1001 .8 +2255 349 1 +2255 2173 .8 +2255 1020 1 +2255 2450 .8 +2255 810 .8 +2255 780 .8 +2255 624 1 +2255 712 1 +2255 2975 .8 +2255 1356 1 +2255 728 .8 +2255 1852 1 +2976 2976 .6 +2770 2320 .6 +2770 2770 .6 +2770 2530 .8 +246 30 1 +246 214 .8 +246 93 .6 +246 205 .8 +246 1754 1 +246 172 1 +246 46 1 +246 719 1 +246 215 .8 +246 1190 1 +246 1172 .8 +246 1189 .8 +246 257 .8 +246 1607 .8 +246 1132 .6 +246 1488 .6 +246 1309 1 +246 1650 .8 +246 2977 .6 +246 997 .6 +246 1671 .8 +246 378 .6 +246 593 .8 +246 157 .6 +246 773 .6 +246 650 .8 +246 98 .8 +246 807 .8 +246 1399 .6 +246 2852 .8 +246 1447 .8 +246 418 .6 +246 936 .8 +246 1768 1 +2978 1280 1 +2978 768 .6 +2978 2979 .6 +2978 79 .8 +2978 1563 .6 +2978 2381 .6 +2978 518 .8 +2978 1645 .8 +2978 198 .6 +654 654 .8 +654 813 1 +654 1247 1 +654 1711 1 +654 2221 1 +654 126 1 +2980 2980 .6 +1342 1342 .8 +1342 119 1 +1342 855 1 +1342 2981 .8 +1342 673 1 +2982 2982 1 +2317 2317 .6 +2317 643 1 +2317 2983 1 +2317 2733 1 +2317 2732 1 +2317 1497 1 +2317 126 1 +1065 2757 .8 +1065 784 .8 +1065 1591 .8 +1065 2984 .8 +1065 1287 .8 +1065 2985 .8 +1065 99 .8 +1065 2986 .8 +1065 1495 1 +1065 126 1 +1065 515 .6 +1065 2987 .6 +1065 1371 1 +1065 1561 .8 +1065 431 1 +1065 2988 1 +1065 853 .8 +1065 304 1 +1065 1856 1 +1065 643 1 +1065 428 1 +1065 2215 .8 +1065 894 .8 +1065 720 .8 +1065 618 .8 +1065 855 1 +1065 526 1 +1065 1247 1 +1065 2141 .8 +1065 2989 .6 +1065 1064 .6 +1065 4 .8 +1065 141 .8 +1065 1555 .8 +1065 1026 .8 +1065 467 .8 +1065 2222 .6 +1065 1908 1 +1065 1066 .6 +1065 2219 .8 +1065 746 1 +1065 1063 .6 +1065 373 1 +1065 787 .6 +1065 2990 .6 +1065 1471 1 +1065 619 .6 +1065 2228 .8 +1065 1092 .8 +1065 2991 .8 +1065 2992 .6 +1065 1858 .6 +1065 2993 1 +1065 2994 1 +2790 888 .8 +2790 711 1 +2790 764 1 +2790 1543 .8 +2790 2672 1 +2790 177 1 +2790 2790 .8 +2790 2995 .8 +2790 2996 .8 +2790 212 1 +2790 2997 1 +2790 2998 .8 +2790 178 .8 +2790 776 .8 +2790 2999 .8 +2790 647 1 +2790 954 .8 +2790 3000 .8 +2790 3001 .8 +2790 2716 .8 +2790 1179 .8 +2790 1770 1 +2790 3002 .8 +2790 3003 .6 +2790 3004 .6 +2790 3005 .8 +2790 241 .8 +2790 351 1 +2790 3006 1 +2790 3007 .8 +2790 1961 1 +2790 3008 1 +2790 2463 .6 +2790 904 1 +2790 126 1 +2790 30 1 +2790 1156 1 +2790 1387 .6 +2790 3009 .8 +2790 176 1 +2790 1122 1 +2790 1337 1 +2790 588 .8 +2790 1091 1 +2790 3010 1 +2790 1560 .8 +2790 2298 1 +2790 1524 1 +2790 20 .6 +2790 737 1 +3011 3011 .8 +3011 500 .6 +3011 2716 .8 +316 316 1 +316 1160 .8 +316 1022 .8 +316 3012 .6 +316 1068 1 +316 3013 1 +3014 1663 1 +3015 449 1 +3016 1074 .8 +3016 1851 .6 +3016 3017 .8 +3018 3018 1 +3019 3019 1 +3019 3020 .8 +3019 46 1 +3021 1208 .8 +3022 3022 .6 +2656 1838 .8 +2656 327 1 +2656 2008 1 +2954 759 .8 +2954 579 .8 +3023 3023 .6 +3024 1579 1 +3024 296 1 +3024 1562 .8 +3024 3024 .8 +3025 3025 .6 +3026 1016 .8 +3027 3027 .6 +3027 1126 1 +3028 3028 .6 +3028 3029 .6 +3028 1418 .8 +3028 3030 .6 +3028 1064 .8 +3028 1512 .6 +3028 157 .8 +3028 3031 .6 +3028 18 .8 +3028 593 .8 +3028 261 .8 +3028 121 1 +3028 1247 1 +3028 46 1 +3028 719 1 +3028 30 1 +3028 328 1 +3028 830 1 +3028 323 1 +3028 44 1 +3028 209 1 +3028 525 1 +3028 22 1 +3028 1816 1 +3028 467 1 +3028 1065 1 +3028 3032 1 +3028 860 1 +3028 793 .8 +3028 137 1 +3028 265 1 +3028 3033 .8 +3028 540 .8 +3028 1223 .8 +3028 191 .8 +3028 286 1 +3028 846 .8 +3028 858 1 +3028 594 .8 +2840 2323 .6 +2840 2840 .6 +3034 3034 .6 +3035 46 1 +3035 586 .6 +3035 328 1 +3035 30 1 +3035 719 1 +3036 3037 .8 +3038 400 1 +3038 1711 1 +3038 1710 1 +3038 613 1 +3039 2219 .8 +3039 2740 .6 +3039 1774 .6 +3039 2327 .6 +3039 1248 1 +3039 526 .8 +3039 1970 .6 +3040 3040 .6 +3041 126 1 +3042 3042 .8 +3043 3043 .6 +3044 3044 .6 +3044 3045 .6 +3046 3046 .6 +3046 1202 1 +3046 3047 .8 +3048 3048 .6 +3049 3049 .6 +3049 543 .6 +3049 3050 .8 +3049 2304 1 +3049 705 .8 +3049 2536 .6 +3049 2094 1 +3049 1661 .8 +3049 327 .8 +3049 214 .8 +3049 3051 .8 +3049 3052 .6 +2239 3053 .8 +2239 2239 .8 +2239 739 1 +2239 856 1 +2239 46 1 +2239 3054 .8 +2239 993 .8 +2239 597 .8 +2239 987 .6 +2239 3055 .8 +2239 209 .8 +2239 242 .8 +2239 157 .6 +2239 3056 .8 +3057 126 1 +3057 428 1 +3058 1807 .8 +3058 13 1 +3058 1754 1 +3059 265 .8 +3059 710 1 +3060 3060 .6 +2447 2444 .8 +2447 2445 1 +2447 2446 1 +2447 2448 .6 +2447 2447 .8 +2447 3061 .8 +2447 126 1 +3062 3062 1 +3063 3063 .6 +3063 328 1 +3063 1856 1 +966 966 .6 +966 1522 .8 +966 806 .8 +966 3064 .8 +966 22 1 +966 770 1 +966 424 1 +966 3065 .8 +966 3066 .6 +966 2622 .8 +966 3067 1 +966 3068 .8 +966 112 1 +966 426 1 +966 118 1 +966 609 .8 +966 3069 .8 +966 425 1 +966 427 1 +966 1124 1 +966 1520 .8 +966 1047 .8 +966 1523 .8 +966 3070 .8 +966 617 .6 +966 287 .8 +966 3071 .8 +966 972 .6 +966 3072 .8 +966 640 1 +3073 461 1 +1360 1356 .8 +1360 1408 .6 +1360 40 .8 +1360 2254 .8 +3074 3075 .6 +648 648 .8 +648 142 .8 +648 789 .8 +648 792 .8 +648 736 1 +648 738 .8 +648 739 .8 +648 2132 .8 +648 741 .8 +648 740 .8 +648 1053 .8 +648 2376 .8 +648 835 .8 +648 833 .8 +648 1081 .6 +648 327 .8 +648 1020 1 +648 1308 .6 +648 441 .8 +648 737 .8 +648 584 1 +648 1644 .6 +648 91 .8 +648 656 .8 +648 1628 .8 +648 1689 .6 +648 86 .8 +648 834 .6 +648 1298 .8 +648 3076 .6 +648 97 .8 +648 836 .8 +648 801 .8 +648 106 .8 +648 1433 .8 +648 1307 .8 +648 1692 .8 +648 837 .8 +648 1694 .8 +648 1693 .8 +648 1516 .8 +648 1286 .8 +648 2237 .6 +648 3077 .8 +648 859 .8 +648 3078 .8 +648 855 .8 +648 1454 .8 +648 3079 .8 +648 90 .8 +3080 3080 .8 +3081 3081 1 +3082 813 1 +3082 1116 1 +3082 65 1 +2593 1407 .6 +2593 584 1 +2593 648 1 +2593 86 .8 +2593 1454 1 +2593 1406 .6 +2593 3083 .6 +2593 3084 .6 +2593 2782 .8 +2593 2747 .8 +2593 2749 .6 +2593 3085 .8 +2593 2433 .8 +492 492 .8 +492 784 1 +492 46 1 +492 438 1 +492 1114 .6 +492 3086 .6 +492 3087 .6 +492 1643 .8 +492 45 1 +492 514 .8 +492 1343 1 +492 638 1 +492 328 1 +492 831 .6 +492 1800 .6 +492 513 .8 +492 234 .8 +492 588 .8 +492 760 .6 +492 1188 .6 +492 349 1 +492 30 1 +492 83 .8 +492 829 .8 +492 982 .6 +492 2001 .6 +492 3088 .6 +492 963 .8 +492 1216 .8 +492 2782 .6 +492 528 .8 +492 172 1 +492 3089 .6 +492 66 .8 +492 799 .6 +492 192 .8 +492 53 1 +492 67 1 +492 808 .8 +492 65 1 +492 1418 .8 +492 1049 1 +492 712 1 +492 2255 .8 +492 3090 .6 +492 2226 1 +492 1988 .8 +492 2136 .6 +492 3091 .6 +1755 1755 1 +1755 943 1 +3092 3092 1 +3093 3093 .6 +2221 2221 .8 +2221 215 .8 +2221 2880 .8 +2221 126 1 +2221 1160 .8 +3094 3094 .6 +3095 3095 .6 +3096 739 1 +3096 3096 .6 +3097 3097 1 +3097 773 .6 +3097 3098 .6 +104 784 1 +104 65 1 +104 286 1 +104 1086 .8 +104 801 .8 +104 736 1 +104 327 .6 +104 1022 1 +104 1023 .8 +104 2454 .8 +104 2805 .6 +104 326 1 +104 3099 .6 +104 1546 .8 +104 1799 1 +104 238 .6 +104 92 1 +104 1018 .8 +104 739 1 +104 734 .6 +104 741 1 +104 172 1 +104 750 1 +104 22 1 +104 1019 .6 +104 584 .8 +104 45 1 +104 746 1 +104 2945 1 +104 651 1 +104 760 1 +104 1027 .8 +104 1898 .8 +104 1682 .8 +104 3100 1 +104 3101 .6 +104 1818 1 +104 405 1 +104 610 .8 +104 2325 .8 +104 166 1 +104 1315 1 +104 19 1 +104 328 1 +104 492 1 +705 705 .8 +705 126 1 +705 30 1 +705 703 .6 +705 739 1 +705 2652 .8 +705 46 1 +705 469 .8 +705 286 1 +705 2713 .8 +705 352 1 +705 784 .8 +705 438 .8 +705 738 .8 +705 1447 .8 +705 93 .6 +705 704 .6 +705 353 1 +705 90 .8 +705 1286 .8 +705 1685 .6 +705 2334 .6 +705 215 .8 +705 44 .8 +705 1998 .6 +705 802 1 +705 792 1 +705 1246 1 +705 34 .8 +705 1494 .8 +705 702 .6 +705 786 .8 +705 681 .6 +705 2835 .8 +705 3102 .8 +705 522 .8 +705 639 1 +705 3103 .8 +705 3104 .8 +705 2750 .8 +705 3049 .6 +705 2714 .6 +536 536 .8 +536 739 1 +536 656 .8 +536 1689 .8 +536 84 .8 +536 837 .8 +536 1176 1 +536 2213 .8 +536 329 1 +536 855 1 +536 648 1 +536 718 .8 +536 142 .8 +536 802 .8 +536 856 .8 +536 1452 .8 +536 2216 .8 +536 3078 .8 +536 405 .8 +536 859 .8 +536 1053 .8 +536 789 .8 +536 736 1 +536 86 .8 +536 1454 .8 +536 1628 .8 +536 833 .8 +536 1286 .8 +536 879 .8 +536 1697 .8 +3105 1589 .8 +735 30 1 +735 719 1 +735 1356 .8 +735 1616 1 +735 1020 1 +3106 3106 .8 +3106 3107 1 +3106 2332 1 +3108 3108 .6 +3108 3109 .6 +3110 3110 .8 +3110 855 1 +3111 3111 .8 +1391 1517 .8 +1391 2482 .8 +1391 1518 .8 +1391 9 .8 +1391 779 .8 +1391 1418 .8 +1391 3112 .8 +1391 522 .8 +1391 1417 .8 +3113 3113 .6 +3114 3114 1 +740 739 1 +740 1690 .8 +740 84 .8 +740 736 1 +740 738 .8 +740 1635 .8 +740 792 .6 +740 741 .8 +740 3115 .6 +740 1053 .8 +740 740 .8 +740 46 1 +740 3116 .6 +740 835 .8 +740 833 .8 +740 86 .8 +740 1628 .8 +740 656 .8 +740 648 1 +740 584 .8 +740 142 .8 +740 789 .8 +740 836 .8 +740 1689 .8 +740 97 .8 +740 106 .8 +740 1692 .8 +740 837 .8 +740 3077 .8 +740 1694 .8 +740 1693 .8 +740 1286 1 +740 855 .8 +740 3076 .8 +740 1696 .8 +740 1311 .6 +740 2751 .6 +740 1627 .8 +740 2629 .8 +740 1224 .8 +740 102 .8 +740 3117 .6 +740 2748 .8 +740 91 .8 +740 1306 .6 +740 718 .8 +740 1298 .8 +740 3118 .8 +740 1310 .6 +740 3119 .6 +740 1454 .8 +740 2747 .6 +740 2739 .8 +740 802 .8 +740 963 .8 +740 1285 .8 +740 588 1 +3120 3120 .6 +87 87 .8 +87 805 .8 +87 46 1 +87 303 1 +87 1847 1 +87 316 1 +87 1546 .6 +87 438 .6 +87 30 1 +87 1117 1 +87 305 1 +87 642 1 +87 22 1 +87 306 .8 +87 719 1 +87 353 1 +87 329 1 +87 431 1 +87 13 .8 +87 1343 1 +87 349 1 +87 304 1 +87 1162 1 +87 3121 .6 +87 355 .8 +87 310 .8 +87 648 1 +87 491 1 +87 233 .8 +87 2614 .8 +87 3122 .8 +87 307 1 +87 3123 .6 +2269 2269 .8 +2269 1562 1 +2269 375 1 +2269 1145 .8 +2269 283 1 +2269 2624 1 +2269 1626 .8 +2269 1778 .6 +2269 3124 .6 +2269 2268 .8 +2269 2625 .6 +2269 2922 .8 +2269 3125 .6 +2269 2439 .6 +2269 3126 .8 +2269 75 .8 +2269 711 .8 +2269 1781 .8 +2269 1182 .8 +2269 1569 .6 +2269 3127 1 +2269 3128 .8 +2269 1385 .6 +1544 1544 .6 +1544 3129 .8 +3130 3130 .8 +3130 121 1 +3130 584 1 +3130 2594 .6 +3130 86 .8 +3130 681 .8 +3130 1407 .8 +3130 142 1 +3130 467 1 +3130 659 1 +3130 787 1 +3130 329 1 +3130 801 .8 +3130 1139 .6 +3130 157 .6 +3130 328 1 +3130 830 1 +3130 2747 .6 +3130 751 1 +3130 403 .8 +3130 1964 .8 +3131 3131 .8 +3132 385 .8 +3132 3132 .8 +3132 3099 .6 +3132 387 .8 +3132 3133 .6 +3134 126 1 +1931 1756 .8 +1931 943 1 +1931 2189 .8 +1931 1930 1 +1931 2188 1 +1931 2190 1 +3135 3135 1 +3136 46 1 +3136 445 .8 +3136 329 1 +3136 30 1 +3136 577 1 +3136 328 1 +3136 555 1 +479 555 1 +479 3137 1 +479 46 1 +479 3138 .8 +479 916 1 +479 879 1 +479 943 1 +1762 1428 .8 +1762 916 1 +1762 1181 .8 +1762 1176 1 +176 176 .6 +3139 3139 .8 +1484 1484 .8 +1484 514 .8 +1484 1602 .6 +1484 1516 .8 +1484 106 .8 +1484 3140 .8 +1484 3141 .6 +1484 2020 .6 +480 480 .8 +480 121 1 +480 328 1 +480 1343 1 +480 434 1 +480 2157 1 +480 1930 1 +480 353 1 +3142 3142 .6 +3143 3143 1 +3144 3144 1 +3145 3146 1 +3147 105 .6 +3147 1214 .8 +3147 743 1 +3147 2457 .8 +3147 2454 .8 +3147 1605 .8 +3147 652 1 +3147 1222 .8 +3148 2332 1 +3148 1768 1 +3148 332 1 +3148 333 1 +3148 1280 1 +1703 1703 .6 +1703 46 1 +1703 638 .8 +1703 286 1 +1703 1450 .8 +1703 737 1 +1703 555 1 +1703 1157 1 +1703 3149 .6 +1703 328 1 +1703 141 .8 +1703 3150 .8 +1703 215 .8 +1703 1675 .8 +1703 284 .6 +1703 89 .6 +1703 2529 .8 +1703 2171 .8 +1703 1704 .8 +1703 2615 .8 +1703 683 .6 +1703 846 .8 +1703 632 .6 +1703 590 .6 +1703 919 .8 +1703 1408 .8 +1703 194 .8 +3151 3151 1 +635 635 .8 +3152 2072 .6 +1415 1663 .8 +1415 226 .6 +1415 3153 .6 +1415 3154 .6 +1415 3155 1 +1415 1153 .8 +1415 582 .8 +1415 40 .8 +1415 578 .8 +3156 3156 .6 +1995 1994 1 +1995 1992 1 +3157 3157 .6 +3158 125 .8 +3159 3159 1 +3160 3160 .8 +3160 3161 .8 +3160 3162 .8 +3163 3163 .6 +3163 1151 .8 +3163 2020 .8 +3163 514 .8 +3163 2922 .8 +3163 2332 .8 +3163 1604 .8 +3163 1602 .8 +3163 1516 .8 +3164 3164 .6 +3165 3165 .8 +3165 376 .6 +3165 121 1 +3166 3166 .6 +3167 3167 1 +3168 3168 .6 +3169 3169 .6 +3169 328 1 +3170 3170 .8 +3170 584 1 +1539 1539 .6 +1539 709 .8 +1539 1538 .6 +807 1838 .6 +807 1927 .8 +807 2073 .6 +807 335 .8 +807 30 1 +807 33 .6 +807 444 .8 +807 351 .8 +807 3171 .6 +807 3172 .8 +807 1133 .8 +807 1437 1 +807 645 .8 +807 753 .6 +807 1895 .8 +807 34 .8 +807 1616 1 +807 677 .6 +807 810 .8 +807 1839 .8 +807 298 .8 +807 99 .8 +807 172 1 +807 822 .6 +807 807 1 +807 1495 1 +807 829 .8 +807 1719 .8 +807 994 .6 +807 3173 .6 +807 719 1 +807 511 1 +807 1353 .8 +807 1754 1 +807 3174 .8 +807 1847 1 +807 328 1 +807 492 .8 +807 304 1 +807 326 1 +807 1433 .8 +807 3102 1 +807 255 .6 +807 199 .6 +807 346 .8 +807 1356 .8 +807 937 .8 +807 804 .8 +807 3175 .6 +807 524 .6 +807 438 .8 +807 638 .8 +807 1490 .8 +807 525 .8 +807 1844 .8 +807 912 1 +807 1645 .8 +807 947 .8 +807 986 .6 +807 523 .8 +807 1080 .8 +807 949 1 +807 990 .8 +807 174 1 +807 1001 .8 +807 988 .8 +807 3176 .6 +807 3177 .6 +807 3178 .6 +807 1322 1 +807 3179 .8 +807 712 1 +807 717 1 +807 2347 1 +807 3180 .6 +807 35 .8 +807 3181 .6 +807 124 .6 +807 1395 .6 +807 1075 1 +807 3182 .8 +807 468 1 +3183 31 1 +3183 28 .8 +3183 29 1 +3183 32 .8 +3183 33 .8 +3184 3184 .6 +2555 467 .8 +2555 174 .8 +2555 1002 .8 +2555 2556 .8 +2555 2554 .6 +2555 466 .8 +106 739 1 +106 86 .8 +106 648 1 +106 656 .8 +106 84 .8 +106 2376 .8 +106 584 .6 +106 1689 .8 +106 1053 .8 +106 738 .8 +106 1516 .8 +106 142 .8 +106 1628 .8 +106 834 .8 +106 835 .8 +106 97 .8 +106 1298 .8 +106 789 .8 +106 740 .8 +106 741 .8 +106 574 .8 +106 3076 .8 +106 91 .8 +106 46 1 +106 438 .8 +106 1604 .6 +106 3185 .6 +106 3186 .6 +106 1692 .8 +106 1635 .8 +106 801 .8 +106 1309 .8 +106 1307 .8 +106 102 .8 +106 677 .6 +106 286 1 +106 837 .8 +106 79 .8 +106 855 .8 +106 1694 .8 +106 1605 .8 +106 1602 .6 +106 1081 .8 +106 3187 .6 +106 1454 .8 +106 1083 .8 +106 405 .8 +106 514 .8 +106 3188 .6 +106 3140 .8 +106 3189 .6 +106 1484 .8 +106 2751 .6 +106 1311 .6 +106 2020 .6 +106 2261 .8 +106 3190 .6 +106 1304 .8 +106 2216 .8 +106 1167 .6 +106 2799 .8 +106 2961 .8 +106 1697 .8 +106 2213 .8 +106 2263 .8 +106 790 .8 +106 3191 .8 +106 2262 .8 +106 3192 .8 +106 1433 .8 +106 2629 .8 +106 1033 .8 +106 3193 .8 +106 1695 .8 +106 1312 .8 +106 856 .8 +106 1895 .8 +106 1286 .8 +106 736 1 +106 3119 .6 +106 3141 .6 +106 258 .6 +106 751 .8 +3194 3194 .8 +2332 3195 .6 +2332 521 .8 +3196 3196 .6 +3197 242 1 +3197 716 1 +3198 3198 1 +3198 375 1 +3198 612 1 +3198 1579 1 +3198 1562 1 +3198 283 .8 +1893 46 1 +1893 431 1 +1893 30 1 +1893 3199 .6 +1893 353 1 +1893 445 .8 +1893 318 .8 +1893 440 1 +1893 436 1 +1893 511 1 +1893 434 1 +1893 4 .8 +1893 44 .8 +1893 5 1 +1893 1908 1 +1893 1770 1 +3200 3200 1 +2636 2636 .8 +2636 3201 .8 +2636 2635 .8 +2636 438 1 +2636 2273 1 +2636 46 1 +2636 334 .8 +2636 258 .8 +3202 3202 .6 +3202 3203 .8 +3204 1231 1 +342 302 .8 +342 342 .6 +342 341 .6 +342 326 1 +342 328 1 +342 1021 .8 +342 1689 .8 +342 784 .8 +342 714 1 +2940 2795 .8 +2940 3205 .8 +2423 1710 1 +3206 3206 .8 +3206 1370 .6 +3206 349 1 +3206 711 .8 +3206 348 1 +3207 3207 1 +3207 226 .8 +146 145 1 +146 787 1 +434 2002 .6 +434 303 .8 +434 2284 .8 +434 306 .8 +1652 1652 .8 +1652 30 1 +1652 1247 1 +1652 163 1 +1652 1925 1 +1652 1160 .8 +1652 5 1 +1652 943 1 +1652 2188 1 +1652 719 1 +1652 46 1 +1652 326 1 +1652 739 1 +1652 431 1 +1652 2189 .8 +1652 2435 .8 +1652 1020 1 +1652 1847 1 +1652 172 .8 +1652 286 1 +1652 1511 .8 +1652 695 1 +1652 303 1 +1652 307 1 +1652 351 .8 +1652 694 1 +1652 282 .8 +1652 555 1 +1652 329 1 +1652 643 1 +1652 405 .8 +1652 736 1 +1652 438 .6 +1652 3208 .8 +1652 858 .8 +1652 644 .8 +1652 1898 1 +1652 373 1 +1652 1964 1 +1652 428 1 +1652 440 1 +1652 696 1 +1652 639 1 +1652 1908 1 +1652 441 1 +1652 2231 1 +1652 175 1 +1652 813 1 +1652 3082 1 +1652 2226 1 +1652 1548 1 +1652 1277 1 +1652 697 .8 +1652 3209 .8 +1652 44 1 +1108 1108 .8 +1108 1493 1 +1108 438 .8 +1108 937 1 +1108 46 1 +1108 736 1 +1108 719 1 +1108 30 1 +1108 2759 .8 +1108 1476 .8 +1108 1492 1 +1108 329 1 +1108 936 .8 +1108 718 1 +1108 1568 1 +1108 1502 1 +1108 1490 1 +1108 1491 .8 +1108 739 1 +1108 674 1 +1108 855 1 +1108 863 .8 +1108 792 1 +1108 3210 1 +1108 2902 1 +1108 716 1 +1108 2905 .8 +1108 3211 .8 +1108 1587 .8 +1108 324 1 +1108 1519 1 +1108 346 .8 +1108 786 1 +1108 344 1 +1108 673 .8 +1108 672 1 +1108 126 1 +1108 175 1 +1108 1974 1 +1108 3117 .8 +1108 681 .8 +1108 1304 .8 +1108 758 .8 +1108 741 1 +1108 53 .8 +1108 522 .8 +1108 142 1 +1108 116 .8 +1108 1306 .8 +1108 789 1 +1108 588 .8 +1108 2906 .8 +1108 3212 .8 +1108 815 .8 +1108 701 .8 +1108 84 .8 +1108 86 .8 +1108 859 1 +1108 1659 .8 +1108 2213 .8 +1108 1165 .8 +1108 2762 .8 +1108 1846 .8 +1108 1845 .8 +1108 2686 .6 +1108 2277 .8 +1108 740 .8 +1108 837 .8 +1108 987 1 +3213 3213 .6 +3213 46 1 +3213 13 .8 +3213 281 .6 +3213 191 .8 +3213 1185 .6 +3213 1960 1 +3213 353 1 +3213 328 1 +3214 3214 .8 +3215 3215 1 +1566 1049 1 +1566 678 .8 +1566 787 1 +1566 1991 1 +1566 1552 .8 +1566 1545 1 +1566 126 1 +1566 175 1 +1566 166 1 +1566 46 1 +1566 793 .8 +1566 329 1 +1566 2251 .8 +1566 1754 1 +1590 1219 .8 +1590 747 1 +1590 3216 .6 +1590 2555 .8 +1590 174 .8 +1590 1002 .8 +1590 990 .8 +1590 1001 .8 +1590 377 .8 +1590 3217 .6 +1231 598 .8 +1231 3204 .8 +398 1717 .8 +398 2426 .8 +398 399 .8 +398 3218 .6 +3219 3219 .6 +3220 3220 .8 +3220 1768 1 +3221 3221 .6 +3222 3222 .6 +3222 2317 .8 +3222 2983 1 +3222 3223 1 +3222 719 .6 +3222 175 .6 +3222 2356 .6 +3222 353 .6 +3222 1116 .6 +3222 943 .6 +3222 3224 .6 +3222 316 .6 +3222 3013 .6 +3222 3225 .6 +3222 30 .6 +3222 1495 .6 +3226 3227 1 +3226 3228 1 +3211 1108 .8 +3211 3211 .6 +3211 1587 .8 +3211 1493 1 +3229 3229 .6 +3229 718 .8 +3230 3230 .6 +3230 558 .8 +323 328 1 +323 1401 .8 +323 352 .8 +323 1076 .6 +323 1434 .8 +323 1072 .8 +323 305 .8 +323 3231 .8 +323 934 .8 +323 1079 .6 +323 3232 .8 +323 2346 .6 +323 3233 .6 +323 325 1 +323 558 .6 +323 1021 1 +323 22 1 +323 426 1 +323 1932 .6 +323 2666 .8 +323 430 .8 +323 1637 .8 +323 1860 .6 +323 912 .6 +323 595 .6 +323 2247 1 +323 2249 .8 +323 916 .8 +323 2725 .8 +323 1403 .6 +323 175 .8 +323 2880 .8 +323 2600 .6 +323 306 .6 +323 615 .8 +323 101 1 +323 2681 .8 +323 3234 .6 +323 3235 .6 +323 2304 .8 +323 248 .6 +323 529 .8 +323 3236 .6 +323 2171 .6 +323 2596 .8 +323 3237 .8 +323 1175 .8 +323 1092 1 +323 346 .8 +323 206 .8 +323 207 1 +323 210 1 +323 2439 .8 +323 217 .8 +3238 3238 1 +578 578 .8 +578 286 1 +578 431 1 +578 329 1 +578 429 1 +578 13 .8 +578 739 1 +578 442 1 +578 1065 .8 +578 729 .8 +578 46 1 +578 457 .8 +578 2189 .8 +578 428 1 +578 444 1 +578 1191 .8 +578 2021 .6 +578 44 .8 +578 2205 .6 +578 1643 .8 +578 2207 .8 +578 618 .8 +578 2090 .8 +578 2092 .8 +578 3239 .8 +578 492 .6 +578 943 1 +578 224 1 +578 720 1 +578 2880 1 +578 1813 .8 +578 643 1 +578 1711 .6 +578 1415 .8 +578 1270 1 +578 2091 .8 +2456 652 1 +2456 1212 .8 +2456 65 .6 +2456 2453 .8 +2456 1210 .8 +2456 108 .8 +2456 2455 .6 +2456 377 .6 +2456 2289 .6 +2456 1218 .8 +2456 105 .8 +2456 290 1 +2456 1479 1 +2456 746 1 +2456 748 1 +2285 2285 .8 +2285 903 .8 +2285 904 .8 +2285 701 1 +2285 902 .8 +2483 234 .6 +2483 2782 .6 +2483 3240 .6 +2483 588 .6 +2483 46 1 +2483 438 .8 +2483 963 .6 +2483 492 .8 +2483 2483 .8 +2483 3087 .6 +2483 2739 .8 +2483 1418 1 +2483 780 .8 +2483 1988 .8 +2483 3091 .6 +3241 46 1 +3241 30 1 +3241 1343 1 +3241 1731 .8 +3241 29 1 +2853 2854 .8 +2853 2851 .6 +2853 3242 .8 +2853 2419 .8 +2853 2853 .8 +2853 536 .8 +2853 577 1 +3243 320 1 +2791 2791 .8 +2791 1142 .8 +3244 3244 1 +3244 943 1 +3244 1988 1 +3244 1605 1 +3244 719 1 +3244 30 1 +3244 328 1 +3244 46 1 +3244 492 1 +3244 2483 1 +3244 2739 .8 +3244 963 .8 +3244 1643 1 +3244 588 1 +3244 234 1 +3244 2277 1 +3245 3245 .6 +542 533 1 +542 2002 .8 +542 306 .8 +542 542 .8 +542 1817 1 +542 2217 1 +542 438 .8 +542 577 1 +542 1068 1 +542 2218 1 +542 1881 .8 +542 345 1 +542 34 1 +542 346 1 +1454 739 1 +1454 855 1 +1454 142 1 +1454 648 1 +1454 736 1 +1454 738 1 +1454 1798 .6 +1454 835 .8 +1454 3246 .8 +1454 801 .8 +1454 741 .8 +1454 2184 .8 +1454 106 .8 +1454 1286 .8 +1454 856 .8 +1454 1116 1 +1454 1452 .8 +1454 3079 .6 +3247 1243 1 +3248 126 1 +3248 46 1 +3249 1219 .8 +3249 1695 .8 +3249 739 1 +3249 2273 .8 +3249 837 .8 +295 295 1 +295 1592 .8 +295 277 .8 +295 1764 .8 +295 1863 .6 +295 296 1 +295 3250 .6 +295 603 .8 +295 2718 .6 +295 271 .8 +295 1826 .6 +295 71 .8 +295 67 .8 +295 165 .8 +295 1450 .6 +295 167 .8 +295 166 .8 +295 1169 .8 +295 3251 .8 +295 438 .6 +295 194 .6 +295 3252 .8 +1835 1834 .8 +1835 445 1 +1835 44 .8 +1835 242 .6 +1835 46 1 +1835 512 .8 +1835 1000 .8 +3253 3253 .8 +794 794 1 +794 893 1 +794 796 .8 +794 469 .8 +794 438 .8 +794 577 1 +794 708 .6 +794 625 1 +794 2274 1 +794 2031 1 +794 2470 .6 +794 1418 1 +794 2282 .8 +794 400 .8 +794 3254 .6 +3255 2803 1 +1261 2527 .6 +1261 234 .8 +1261 3256 .6 +1261 2031 1 +1261 751 1 +1261 587 .8 +1261 708 1 +1261 172 1 +1261 711 1 +1261 706 .8 +1261 2084 .8 +1261 1652 1 +1261 1255 .8 +1261 1392 .8 +1261 457 1 +1261 30 1 +1261 719 1 +1261 2435 .8 +1261 3208 1 +1261 373 1 +1261 3257 1 +1261 1254 1 +1261 2688 .6 +1261 3258 .6 +1261 944 1 +1261 610 1 +1261 716 1 +1261 2789 .8 +1261 3259 .8 +1261 1236 .8 +1261 3260 .6 +1261 1154 1 +1261 2793 .8 +1261 779 1 +1261 934 1 +1261 1028 1 +1261 629 1 +1261 1237 1 +3261 3261 1 +3262 3262 .6 +3263 273 1 +3263 2956 .8 +3263 2993 1 +3263 873 .8 +3078 739 1 +3078 329 1 +3078 3078 .8 +3078 736 1 +3078 188 .6 +3078 1597 1 +3078 648 1 +3264 3264 .6 +3265 286 1 +3265 46 1 +3265 126 1 +3265 3265 .6 +3266 3266 .6 +449 450 .8 +449 1673 .8 +449 451 .8 +449 452 .8 +449 448 .8 +449 3267 .6 +449 2409 .8 +970 970 .6 +970 2566 .8 +970 917 .8 +970 524 .8 +970 597 .8 +970 952 .6 +970 923 .6 +970 3268 .8 +3269 431 1 +3269 5 1 +3269 4 .8 +3269 9 .8 +3269 3269 .8 +3269 171 1 +2828 2828 .6 +2828 517 .6 +2828 2535 .6 +2828 499 .6 +2828 986 .6 +2828 528 .8 +2828 712 .8 +845 845 .8 +845 555 1 +845 1603 1 +845 843 .8 +845 8 .8 +845 983 .8 +845 1606 .8 +845 457 .8 +845 226 .6 +845 1601 .8 +845 472 .8 +845 1794 .6 +845 1123 1 +3270 3270 .8 +3271 3271 .8 +3271 387 .8 +3271 385 .8 +3271 3272 .8 +3271 3273 .8 +3271 3274 .8 +3271 2214 1 +3271 46 1 +230 230 .6 +230 1927 .8 +230 1083 .8 +230 1047 .6 +230 214 .6 +230 918 .8 +230 947 .8 +230 1801 .6 +230 1442 .6 +230 757 .6 +230 34 .8 +230 610 1 +230 334 .8 +230 1658 .8 +230 791 .8 +230 934 .8 +230 298 .6 +230 3275 .6 +230 822 .6 +230 703 .6 +230 1166 .8 +230 512 .8 +230 101 1 +230 3276 .6 +230 3277 .6 +3278 3278 1 +3279 3279 .8 +1181 915 .8 +1181 3280 .8 +1181 642 .8 +1181 350 1 +1181 825 .8 +1181 46 1 +1181 3281 .8 +1181 1762 .8 +1181 286 1 +1181 540 .6 +1181 751 1 +1181 1154 .6 +1181 1668 .8 +1181 582 .8 +1181 2705 .6 +1181 514 .8 +1181 992 .6 +1181 461 .6 +1181 890 .6 +1181 1282 .6 +1181 274 .8 +1181 1237 .8 +1181 1049 .8 +1181 869 .8 +1181 3282 .6 +1181 1394 .6 +1181 2716 .8 +1181 1174 .6 +1181 1301 .6 +1181 173 .8 +1181 1316 .8 +1181 2141 .8 +1181 128 1 +2618 2618 1 +2618 2617 1 +2618 2317 1 +2618 643 1 +2618 30 .6 +3283 3283 .6 +3283 2523 .6 +3283 928 .6 +3283 3284 .6 +3283 1187 .8 +3283 591 .6 +432 432 .8 +432 1720 1 +432 436 1 +432 46 1 +1011 669 1 +1011 3285 1 +1011 271 .8 +3286 3286 .6 +3287 3287 .6 +3287 215 .8 +3287 1041 .8 +3112 712 .8 +3112 1418 .8 +3112 492 .8 +3112 346 .8 +3112 779 .8 +3112 892 .8 +3112 2482 1 +3112 780 .8 +3112 3288 .6 +1216 784 1 +1216 883 .8 +1216 1047 .8 +1216 1022 1 +1216 234 .6 +1216 852 1 +1216 623 .8 +1216 1201 .8 +1216 528 .8 +1216 948 .8 +1216 1798 .6 +1216 586 .6 +1216 724 .6 +1216 111 .8 +1216 2861 .8 +1216 1353 .8 +1216 1211 .8 +1216 716 .6 +3289 1362 1 +3289 3289 1 +3290 3290 .8 +3290 2093 .8 +2665 2665 .6 +2665 2664 .6 +2665 2663 .6 +3291 863 .8 +3291 3291 .6 +3291 3292 .6 +3291 3293 .6 +3291 429 .8 +3291 46 1 +3291 30 1 +3291 22 1 +3291 638 .8 +3291 326 1 +3291 2616 .8 +3291 1176 1 +3291 783 .8 +3291 1171 1 +3291 719 1 +3294 3294 .6 +3295 3295 .6 +241 241 .8 +241 1179 .8 +241 3296 .8 +241 351 1 +241 1033 .8 +241 214 .6 +241 271 .8 +241 46 1 +241 30 1 +241 286 1 +241 1485 .8 +241 453 .6 +241 352 1 +241 1961 1 +241 1167 .8 +241 3009 .6 +241 1960 1 +241 1126 1 +241 638 .8 +241 394 1 +241 194 .8 +241 1000 .8 +241 2412 .8 +241 98 .8 +241 3297 .6 +241 3050 .8 +241 121 1 +241 3007 .8 +241 3006 .8 +241 904 .8 +3298 370 .8 +3298 463 .8 +3298 464 .8 +3298 462 .8 +3298 465 .8 +3299 3299 .6 +268 269 .6 +268 333 1 +268 67 .8 +268 268 1 +268 1839 .8 +268 328 1 +268 267 1 +268 270 1 +3300 3300 .6 +3301 3301 .6 +3302 3302 1 +3303 3303 .8 +3182 110 .8 +3182 122 .6 +3182 165 1 +3182 2134 .6 +3182 328 1 +3182 1126 .8 +3182 3182 .8 +3182 1047 .6 +3182 3304 .8 +3182 3305 1 +3182 708 .8 +3182 807 .8 +3182 246 .6 +3306 3306 .6 +3307 1086 .8 +3307 2971 .6 +3307 3308 .6 +3307 3309 .6 +3307 3310 .6 +3311 3311 .6 +2138 2138 .6 +2138 912 .8 +2138 2089 .6 +2138 83 .8 +2138 1605 .8 +2138 2134 .6 +3312 580 .8 +3312 593 .8 +392 392 .8 +392 801 .8 +392 1309 .8 +392 2667 .8 +392 651 .8 +392 390 .8 +392 2843 .6 +392 738 .8 +392 391 .8 +392 3313 .8 +392 1754 1 +2439 2439 .6 +2439 1354 .6 +2439 1450 .8 +2439 1248 1 +2439 3314 .8 +2439 209 1 +2439 2942 .8 +2439 1820 .8 +2439 708 .8 +2439 2269 .8 +3315 3315 .6 +1643 1643 .8 +1643 353 1 +1643 739 1 +1643 784 .8 +1643 492 .6 +1643 1546 .8 +1643 3240 .8 +3316 3316 1 +3316 3317 .8 +3316 3318 1 +3316 1643 .8 +3316 1992 .8 +3316 555 .8 +3316 89 .6 +3316 507 .6 +3316 44 .8 +3316 205 .6 +3316 1801 .8 +3316 45 1 +3316 328 1 +3316 1065 .6 +3316 1217 .8 +3316 1075 .8 +3316 1281 .8 +3316 988 .8 +3316 3319 .6 +3316 232 .6 +3316 329 1 +3316 102 .8 +3316 1704 1 +3316 497 .8 +3316 710 1 +3320 3320 .6 +3321 3321 .8 +3321 2671 1 +3322 3322 .8 +3322 643 1 +3322 3239 1 +3322 1555 .8 +2805 3323 .6 +2805 1546 .8 +2805 784 .8 +2805 1097 .8 +2805 352 1 +2805 2157 .8 +1112 1112 .6 +1112 1339 .8 +1112 113 .8 +1112 887 .8 +1112 784 1 +1112 2307 1 +1112 1435 .8 +1112 564 .8 +1112 335 .8 +1112 1110 .8 +791 791 .8 +791 577 .8 +791 326 1 +791 735 1 +791 1616 .8 +791 174 .8 +791 1356 .8 +791 511 .8 +791 46 1 +791 350 .8 +791 1075 .8 +791 2562 .8 +791 2563 .8 +791 1476 .8 +791 349 1 +791 646 .8 +791 934 .8 +791 328 1 +791 1436 .8 +791 719 1 +791 325 .8 +791 829 .8 +791 623 .8 +791 352 1 +791 467 .8 +791 468 .8 +791 466 .8 +791 1166 .8 +791 2248 .6 +791 1021 .8 +791 737 1 +791 918 1 +791 1072 .8 +791 797 .8 +791 569 .6 +791 481 .8 +791 1117 1 +791 1133 .8 +791 144 .8 +791 1028 .8 +791 501 .8 +791 915 .8 +791 2647 .6 +791 1490 .8 +791 1752 1 +791 555 1 +791 810 .8 +791 34 .6 +791 1754 1 +791 305 1 +791 44 .8 +791 540 .6 +791 638 .8 +791 30 1 +791 99 .8 +791 2894 .6 +791 3324 .6 +791 935 .6 +791 2614 .8 +791 361 .6 +791 231 .6 +791 912 .8 +791 3325 .6 +791 1241 .8 +791 3133 .6 +791 561 .8 +791 3296 .6 +791 3149 .6 +791 171 1 +791 22 1 +791 651 .8 +791 1937 .8 +791 2945 .6 +791 1702 .8 +791 586 .6 +791 1602 .6 +791 3326 .6 +791 271 .8 +791 3327 .6 +791 804 .6 +791 1786 .6 +791 1847 1 +791 1430 1 +791 2324 .8 +791 292 .8 +791 172 1 +791 1848 .6 +791 1948 .8 +791 2435 .6 +791 904 .8 +791 2918 .6 +791 346 .6 +791 1856 1 +791 261 .6 +791 2302 .6 +791 65 1 +791 1223 .6 +791 1314 .8 +791 1301 .6 +791 525 .8 +791 1217 .6 +791 1991 .8 +791 1278 .6 +791 711 .8 +791 353 1 +791 990 .8 +791 242 .8 +791 3328 .6 +791 1811 .8 +791 545 1 +791 3050 .8 +791 793 .8 +791 949 1 +791 785 .8 +791 513 .8 +791 1147 .6 +791 2450 1 +791 610 1 +3099 121 1 +3099 46 1 +3099 1075 .8 +3099 1428 .8 +3099 1123 1 +3099 328 1 +3099 1020 .8 +3099 352 .8 +3099 784 .8 +3099 385 1 +3099 1799 1 +3099 3329 .6 +3099 1097 .8 +3099 3330 .6 +3099 1898 .8 +3099 1451 .8 +3099 3132 .8 +3099 387 .6 +3099 141 .6 +3099 1546 .6 +3099 3133 .8 +3099 405 .8 +3099 736 1 +3099 175 1 +1571 858 1 +1571 328 1 +1571 577 1 +1571 629 .8 +1571 650 .8 +1571 286 1 +1571 49 .8 +1571 46 1 +1571 1993 1 +1571 303 1 +1571 352 1 +1571 649 1 +1571 1641 .8 +1571 2171 .6 +1571 194 .6 +1571 126 1 +1571 918 1 +1571 329 1 +513 513 .8 +513 1786 .8 +513 333 .8 +513 234 .6 +513 545 .8 +513 712 1 +513 2224 .8 +513 2782 .6 +513 1322 1 +513 813 1 +513 2250 .8 +513 599 .6 +513 1831 .6 +513 1243 1 +513 2911 .6 +3331 2037 .6 +3332 3332 .6 +3332 1754 1 +3333 3333 .6 +659 659 1 +659 2453 .8 +659 290 1 +659 652 1 +659 1201 .8 +3334 3334 .8 +1768 193 1 +1768 624 1 +1768 627 1 +1768 793 .8 +1768 331 .8 +1768 650 .8 +1768 274 1 +1768 629 .8 +1768 333 1 +1768 282 1 +1768 332 1 +1768 334 1 +1768 655 1 +1768 3220 .8 +1222 652 1 +1222 105 .8 +1222 659 1 +1222 110 .8 +1222 2289 .8 +1222 1499 .8 +1222 3335 .6 +1222 290 1 +1222 3336 .8 +1222 3337 .6 +1222 2454 .8 +1222 2455 .6 +1222 377 .8 +1222 137 1 +1222 2458 .8 +1222 1218 .8 +1222 2457 .8 +1222 1479 .8 +1222 1212 .8 +1222 2461 .8 +1222 747 1 +1222 1605 .8 +1222 1210 .8 +1222 79 .8 +1222 1215 .6 +1222 748 1 +1222 2378 .8 +1222 1205 .6 +1222 746 1 +1222 2459 .8 +1222 3338 .6 +1222 1214 .8 +1222 1219 .8 +1222 1213 .8 +1222 2460 .8 +1222 749 1 +1222 743 1 +1222 2501 .8 +1222 3147 .6 +1222 647 1 +3192 3192 .8 +3192 827 1 +3192 1592 .8 +3192 736 1 +3192 329 1 +3192 739 1 +3192 142 .8 +3192 790 .8 +3192 2799 .8 +3192 1699 .8 +3192 3313 .6 +3339 3339 .8 +3189 2206 .8 +3189 429 1 +3189 431 .6 +3189 2208 .8 +3189 30 1 +3189 46 1 +3189 345 .8 +3189 719 1 +3189 428 .8 +3189 1516 .8 +3189 677 1 +3189 3140 .8 +3189 106 .8 +3189 514 .8 +3340 1316 1 +3340 3341 .8 +3342 3343 .6 +3342 626 1 +3342 3268 1 +3344 1436 1 +3345 3345 .6 +3346 724 1 +1765 1765 .8 +1765 405 .8 +1765 739 1 +1765 789 .8 +1765 2666 .6 +1765 286 1 +1765 801 .8 +1765 3347 .8 +1765 1195 .8 +1765 2276 .8 +1765 46 1 +1765 175 1 +1765 2094 .8 +1765 1117 1 +1765 327 .6 +1765 51 .8 +1765 331 .8 +1765 656 .8 +1765 349 1 +1765 736 1 +1765 1020 1 +1765 729 .8 +1765 90 .8 +1765 2247 .8 +1765 1434 .8 +1765 858 1 +1765 1078 .8 +1765 1764 .6 +1765 643 1 +1765 1068 1 +1765 701 1 +1765 335 .8 +1765 1597 .8 +1765 934 .8 +1765 1553 .8 +1765 163 .8 +1765 141 .8 +1765 807 .8 +1765 1696 .8 +1765 1053 .8 +1765 53 .8 +1765 361 .6 +76 76 .8 +2452 1991 1 +2452 2934 .6 +2452 3348 1 +2452 293 1 +3075 3075 .6 +3075 3074 .6 +3349 3349 .6 +3349 191 .8 +3349 3350 .8 +3349 743 1 +3349 747 1 +3349 652 1 +3349 1222 1 +3349 748 1 +3349 714 1 +3349 647 1 +3349 746 1 +3349 137 1 +3349 126 1 +3349 1218 .8 +3349 749 1 +3349 2454 .8 +647 764 1 +647 1543 .8 +647 748 1 +647 1222 1 +3351 3351 .8 +3352 1654 1 +3353 3353 1 +3354 2272 .6 +3355 683 .8 +3356 3356 .6 +3356 1064 .6 +3356 3357 .6 +3358 3358 .6 +3359 3359 .6 +3360 175 1 +3361 3361 .6 +3362 612 1 +3362 610 1 +3363 3363 .8 +3364 3364 .6 +3365 683 .6 +3365 3366 .6 +3365 1059 .6 +3367 3367 .8 +3367 108 .8 +3367 784 1 +3368 48 .8 +2605 2601 .8 +2605 2602 .8 +2605 1750 .8 +2605 1757 1 +2605 2605 .6 +2605 2606 .8 +3369 3369 .6 +3370 3370 .6 +3370 1316 1 +3371 3371 .8 +1002 174 1 +1002 30 1 +1002 466 .8 +1002 328 1 +1002 46 1 +1002 3372 .6 +1002 990 1 +1002 1001 1 +1002 1589 .8 +1002 3050 .8 +3373 3374 .6 +3375 3375 .6 +2003 2003 .6 +2003 1167 1 +2003 1485 .8 +3376 822 .6 +3376 3376 .6 +597 30 1 +597 1116 1 +597 1238 .8 +597 597 .8 +597 659 1 +597 316 1 +597 46 1 +597 856 .8 +597 750 1 +597 1546 .8 +597 714 1 +597 349 1 +597 1428 .8 +597 1124 1 +597 555 1 +597 749 1 +597 126 1 +597 1176 1 +597 326 1 +597 175 1 +597 329 1 +597 2891 .8 +597 1247 1 +597 2538 .8 +597 1511 .8 +597 610 1 +597 353 1 +597 719 1 +597 1240 .8 +597 224 .8 +597 2031 1 +597 736 1 +597 286 1 +597 2929 .6 +597 1021 .8 +597 3102 1 +597 271 .8 +597 65 1 +597 1246 1 +597 1047 .6 +597 512 .8 +597 3377 .6 +597 323 .8 +597 1786 .8 +597 92 .8 +597 2614 .8 +597 2216 .8 +597 2515 .6 +597 1699 .8 +597 1698 .8 +597 674 .8 +597 3378 .6 +597 293 1 +597 1957 1 +597 1172 .8 +597 2748 .8 +597 1494 .8 +597 2327 .6 +597 2329 .6 +597 237 .6 +597 3379 .6 +597 591 .6 +597 2988 1 +597 2619 1 +597 784 1 +597 791 .8 +597 803 .6 +597 311 .6 +597 1422 .6 +597 3380 .6 +597 1165 .6 +597 172 1 +597 333 .8 +597 3381 .6 +597 626 1 +597 1334 .8 +597 3382 .6 +597 83 .6 +597 1737 .6 +597 70 .6 +597 471 .6 +597 1998 .6 +597 3383 .8 +597 1189 .8 +597 247 .6 +597 1192 .6 +597 248 .6 +597 1478 .8 +597 1040 .6 +597 250 .6 +597 214 .8 +597 641 .8 +597 362 .6 +597 513 .6 +597 2273 .6 +597 133 .8 +597 2072 .8 +597 251 .6 +597 3035 .6 +597 2592 .6 +597 500 .6 +597 255 .6 +597 291 .6 +597 356 .6 +597 904 .6 +597 1602 .6 +597 2002 .8 +597 759 .8 +597 488 .6 +597 934 1 +597 1216 .6 +597 703 .6 +597 2858 .6 +597 556 .6 +597 1315 .6 +597 501 .8 +597 243 .6 +597 822 .6 +597 523 .6 +597 3119 .6 +597 2918 .6 +597 806 .6 +597 540 .6 +597 3384 .8 +597 1185 .6 +597 81 .6 +597 258 .6 +597 2377 .6 +597 1535 .6 +597 1405 .6 +597 3121 .6 +597 852 1 +597 3385 .8 +597 3386 .8 +597 94 .6 +597 982 .6 +597 1819 .6 +597 2000 .8 +597 911 .8 +597 1171 1 +597 107 .6 +597 1136 .6 +597 1110 .6 +597 2021 .6 +597 1000 .6 +597 113 .8 +597 3387 .8 +597 3388 .6 +597 2749 .6 +597 3389 .6 +597 3141 .6 +597 631 .6 +597 593 .6 +597 2518 .6 +597 2593 .6 +597 2016 .8 +597 252 .6 +597 2334 .6 +597 2008 .8 +597 1045 .6 +597 3390 .8 +597 3391 .6 +597 1486 .8 +597 1091 .8 +597 1600 .6 +597 2381 .6 +597 3392 .6 +597 1585 .6 +597 986 .6 +597 93 .6 +597 1880 .6 +597 2634 .6 +597 2789 .8 +597 517 .6 +597 2844 .6 +597 309 .6 +597 3393 .6 +597 1345 .6 +597 254 .6 +597 1563 .6 +597 2239 .8 +597 563 .6 +597 987 .8 +597 2535 .6 +597 3394 .6 +597 632 .6 +597 2089 .6 +597 1326 .8 +597 995 .6 +597 111 .6 +597 2851 .6 +597 1220 .8 +597 67 .8 +597 98 .6 +597 1217 .8 +597 963 .6 +597 960 .8 +597 2141 .8 +597 757 .6 +597 518 .6 +597 840 .6 +597 774 1 +597 993 1 +597 1413 .8 +597 528 .8 +597 3395 .8 +597 2507 .8 +597 1333 .6 +597 211 1 +597 3396 .8 +597 2164 .8 +597 263 .8 +597 269 .6 +597 268 .8 +597 1137 .6 +597 2306 .8 +597 378 .6 +597 1817 .6 +597 2694 .6 +597 973 .6 +597 524 .6 +597 1991 .6 +597 956 .6 +597 917 .6 +597 3397 .6 +597 189 .6 +597 1522 .6 +597 972 .6 +597 599 .8 +597 971 .8 +597 958 .8 +597 855 1 +597 1797 1 +597 3398 .6 +597 974 .8 +597 976 .8 +597 1550 .6 +597 2506 .6 +597 970 .6 +597 950 .8 +597 954 .6 +597 194 .6 +597 705 .6 +597 955 .6 +597 2295 .8 +597 2933 .8 +597 3217 .6 +597 376 .6 +597 992 .6 +597 2270 .6 +597 2705 .8 +597 2063 .6 +597 923 .6 +597 3399 .8 +597 242 1 +597 938 .6 +597 1811 1 +597 3400 .8 +597 3401 .6 +597 3402 .8 +597 1559 .8 +597 394 .8 +597 999 .6 +597 1060 .6 +597 1685 .6 +597 965 .6 +597 741 1 +597 1043 .8 +597 3403 .6 +597 1399 .6 +597 3089 .6 +597 920 .6 +597 711 1 +597 722 .6 +597 3404 .6 +597 3405 .8 +597 3406 .6 +597 1092 1 +597 858 1 +597 623 .6 +597 1768 1 +597 813 1 +597 892 .8 +597 3407 .6 +597 928 .6 +597 2745 .6 +597 246 .6 +597 3408 .6 +597 2792 .6 +597 3176 .6 +597 1832 .6 +597 2777 .6 +597 3218 .6 +597 1528 .8 +597 1527 .8 +597 2042 1 +597 577 1 +597 328 1 +597 334 .8 +597 2350 .6 +597 891 .6 +597 1463 .6 +597 3409 .6 +597 3410 .6 +597 406 .6 +597 3411 .6 +597 1711 .8 +597 401 .8 +597 3412 .6 +597 699 .6 +597 3413 1 +597 68 .6 +597 2974 .6 +597 1920 .6 +597 1826 .6 +597 7 .8 +597 1236 .8 +597 594 .8 +597 403 .8 +597 1781 .8 +597 1779 .6 +597 1630 .6 +597 1174 .6 +597 2772 1 +597 3414 .6 +597 1971 .6 +597 3051 .8 +597 1656 .6 +597 812 .6 +597 1393 .8 +597 1178 .6 +597 525 .8 +597 45 1 +597 421 .6 +597 654 1 +597 953 .8 +597 1770 1 +597 2231 1 +597 2541 .8 +597 3082 .8 +597 1510 1 +597 2347 1 +597 1182 .6 +597 1831 .6 +597 3415 .8 +597 1578 .6 +597 1743 .8 +597 2315 .6 +597 2193 .6 +597 3416 .6 +597 23 .6 +597 3312 .6 +597 3125 .6 +597 1778 .6 +597 3417 .6 +597 1569 .6 +597 3052 .6 +597 3418 .6 +597 3419 .6 +597 2282 .6 +597 1965 .6 +597 2832 .6 +597 414 .8 +597 2221 1 +597 2352 .8 +597 3420 .6 +597 2259 .6 +597 3181 .6 +597 3421 .6 +597 2784 .6 +597 2439 .6 +597 2136 .8 +597 2466 .8 +597 2790 .8 +597 708 .8 +597 335 1 +597 2785 .6 +597 2787 .8 +597 125 .8 +597 943 1 +597 469 .8 +597 1237 1 +597 1618 .8 +597 43 1 +597 1732 .8 +597 1733 .6 +597 1634 .6 +597 2780 .6 +597 2084 .6 +597 2795 .6 +597 2018 .6 +597 492 1 +597 440 1 +597 22 1 +597 429 1 +597 1068 1 +597 1126 1 +597 3422 .8 +597 2774 .8 +597 770 1 +597 634 .8 +597 1142 .8 +597 2372 .8 +597 620 .8 +597 1390 .6 +597 124 .6 +597 830 1 +597 3423 .6 +597 3424 .6 +597 3425 .6 +597 1242 .6 +597 3426 .8 +597 232 .8 +597 157 .8 +597 3427 .6 +597 3428 .8 +597 1876 .6 +597 2741 .6 +597 3429 1 +597 1636 .8 +597 1774 .6 +597 3430 .8 +597 1852 1 +597 3206 .8 +597 3431 .6 +597 3432 .6 +597 2511 .6 +597 3433 .6 +597 3434 .8 +597 2778 .6 +597 2671 .6 +597 2277 .8 +597 3007 .8 +597 3435 .6 +597 2474 .8 +597 780 .8 +597 1872 .6 +597 775 .6 +597 709 .6 +597 768 .6 +597 3436 .6 +597 3437 .6 +597 363 .8 +597 1417 1 +597 346 1 +597 2615 .8 +597 772 .6 +597 3438 .8 +597 2349 .8 +597 769 .6 +597 1363 .6 +597 3439 .6 +597 3440 .6 +597 2940 .6 +597 552 .6 +597 1665 .6 +597 3441 .6 +597 1377 .8 +597 441 1 +597 1851 1 +597 2434 1 +597 545 1 +597 1277 1 +597 1416 1 +597 1394 .8 +597 899 .8 +597 897 .8 +597 1586 1 +597 1243 1 +597 400 1 +597 804 .8 +597 13 1 +597 1223 .8 +597 20 .8 +597 944 .8 +597 625 .8 +597 1378 .8 +597 2254 .8 +597 779 .8 +597 737 .8 +597 212 .8 +597 1339 .6 +597 807 1 +597 2938 .6 +597 771 .6 +597 1958 .6 +597 2911 .6 +597 238 .6 +597 3442 .6 +597 1365 .6 +597 2463 .6 +597 3443 .6 +597 3444 .6 +597 900 .6 +597 1005 .6 +597 2134 .6 +597 383 .6 +597 1331 .6 +597 1662 1 +597 3445 .6 +597 1085 1 +597 2672 .8 +597 990 1 +597 3446 .6 +597 3447 .6 +597 1368 .6 +597 3448 .6 +597 405 1 +597 1373 .6 +597 1954 .6 +597 1248 1 +597 3449 .8 +597 1375 .6 +597 1251 .6 +597 3450 .6 +597 3451 .6 +597 2969 .8 +597 2970 .8 +597 1254 .6 +597 1930 1 +597 1419 .8 +597 1398 .8 +597 1386 .6 +597 1387 .6 +597 1383 .8 +597 297 1 +597 1952 .6 +597 2144 .6 +597 1250 1 +597 764 1 +597 42 .8 +597 1385 .8 +597 727 .8 +597 2740 .6 +597 1955 .8 +597 3452 .6 +597 3453 .6 +597 3454 .6 +597 2265 .6 +597 1456 .6 +597 1094 .8 +597 2807 .8 +597 128 1 +597 1389 .6 +597 3455 .6 +391 391 .8 +391 801 .8 +391 1309 .8 +391 2751 .6 +391 1459 .8 +391 390 .8 +391 1684 .8 +391 3313 .8 +391 2667 .8 +391 392 1 +391 2843 .6 +391 389 .6 +391 388 1 +391 584 1 +3456 3456 .8 +3456 286 1 +3457 3457 .6 +3458 3458 .8 +3459 3459 .8 +3460 3460 1 +1696 1696 .8 +1696 739 1 +1696 736 1 +1696 1053 1 +1696 1635 .8 +1696 97 .8 +1696 1692 .8 +1696 648 .8 +1696 859 .8 +1696 329 .8 +1696 46 1 +1696 91 .8 +1696 835 .8 +1696 1693 .8 +1696 740 .8 +1696 142 1 +1696 1307 .8 +1696 656 .8 +1696 106 .8 +1696 3461 .6 +1696 855 .8 +1696 837 .8 +1696 856 .8 +3462 303 1 +3462 46 1 +3462 30 1 +2135 912 .8 +2135 83 .8 +2135 349 1 +2135 1605 .8 +2135 1881 .6 +2135 3088 .6 +2135 2089 .8 +2135 274 .8 +2135 1216 .8 +2135 3240 .6 +2135 784 .8 +2135 963 .6 +2135 1780 .6 +2135 3463 .6 +2135 3464 .6 +2135 2137 .6 +2135 2136 .8 +1673 1673 .8 +1673 2409 .8 +1673 807 1 +1673 30 1 +1673 46 1 +1673 328 1 +1673 473 .8 +1673 844 .6 +1673 3465 .6 +1673 1674 .6 +1673 3466 .8 +1673 40 .8 +1673 556 .6 +1673 918 1 +1673 957 .8 +1673 657 .8 +1673 450 .8 +1673 449 .8 +1673 739 1 +1673 142 1 +1673 451 .8 +1673 2034 .8 +1673 1584 .8 +1673 3467 .6 +1673 3468 .8 +1673 630 .6 +3469 2229 .8 +3469 3469 .8 +3469 1499 1 +3469 1222 1 +3469 747 1 +3469 714 1 +3469 30 1 +3469 746 1 +3469 872 1 +3469 428 .8 +3469 647 1 +3469 1479 1 +3469 1213 .8 +916 2528 .8 +916 3470 1 +916 3471 1 +916 2225 1 +916 1596 1 +916 916 1 +1677 582 .6 +1677 167 .8 +1677 165 .8 +1677 2292 .6 +1677 1677 .8 +1677 352 .8 +1677 286 1 +1677 2711 .8 +2625 2100 .8 +2625 612 1 +2625 1778 .6 +2625 1569 .6 +2625 1562 1 +2625 3124 .6 +2625 2269 .6 +3472 3472 .6 +3473 286 1 +711 797 .8 +711 14 .8 +711 1491 .8 +711 1167 .8 +711 2561 1 +711 46 1 +711 764 1 +711 711 .8 +711 2565 .8 +711 1553 .8 +711 852 1 +711 780 1 +711 1302 .6 +711 2464 1 +711 774 1 +711 349 1 +711 348 1 +711 9 .8 +711 329 1 +711 806 .6 +711 643 1 +711 13 1 +711 1393 .6 +711 1339 .8 +711 245 .6 +711 531 .6 +711 3474 .6 +711 3475 .8 +711 269 .6 +711 751 1 +711 791 1 +711 888 .8 +711 1495 1 +711 1021 .8 +711 1545 .8 +711 599 .6 +711 1278 1 +711 103 .8 +711 613 .8 +711 939 .8 +711 1948 .8 +711 2507 .6 +711 898 .8 +711 378 .6 +711 3009 .6 +711 2930 .6 +711 6 .8 +711 20 .6 +711 2790 .6 +711 943 1 +711 2732 .8 +711 1187 .8 +711 1642 .8 +711 2614 .8 +711 891 .6 +711 2686 .6 +711 1147 .6 +711 892 .8 +711 3476 .8 +711 776 .8 +711 1370 .8 +711 3477 .6 +711 2268 .6 +711 678 .8 +711 2348 .8 +711 1392 .8 +711 3428 .6 +711 793 .8 +711 2251 .8 +711 717 1 +711 492 1 +711 363 1 +711 2463 .6 +711 897 .8 +711 577 1 +711 3440 .8 +711 1364 .8 +711 1362 .8 +711 2890 1 +711 3431 .6 +711 1538 .6 +711 3478 .6 +3479 1373 .8 +1781 46 1 +1781 126 1 +1781 30 1 +1781 3480 .6 +1781 1579 1 +1781 1052 1 +1781 286 1 +1781 610 1 +1781 2847 .8 +1781 597 .8 +1781 1178 .6 +1781 353 1 +1781 44 1 +1781 2232 1 +1781 632 1 +1781 45 1 +1781 1343 1 +1781 3481 .6 +1781 3482 1 +1781 2226 1 +1781 2231 .8 +1781 3483 .6 +1781 65 1 +1781 440 1 +1781 431 1 +1781 3484 .8 +1781 2274 .8 +1781 62 .8 +1781 1629 .8 +1781 2141 .8 +1781 3485 .6 +1781 851 .6 +1781 815 .8 +1781 506 1 +1781 714 1 +1781 708 .8 +1781 2269 .8 +1781 157 .8 +1781 2774 .8 +1781 3486 .8 +1781 5 1 +1781 1988 1 +1781 786 1 +1781 1562 1 +1781 561 .8 +1781 3487 .6 +1781 2195 .8 +1145 1166 .8 +1145 1378 .8 +1145 625 .8 +1145 296 1 +1145 1579 1 +1145 3024 1 +1145 1562 1 +1145 375 1 +1145 227 .8 +1145 283 1 +1145 1307 .8 +1145 747 1 +1145 3488 .8 +1145 2934 .6 +1145 965 .6 +1145 1222 1 +1145 362 .6 +1145 277 .8 +1145 683 .8 +1145 795 .8 +1145 175 1 +1145 3396 .8 +1145 328 1 +1145 2393 .8 +1145 712 .8 +1145 525 .8 +1145 3489 .6 +1145 1512 .8 +1145 890 .8 +1145 87 .6 +1145 23 .6 +1145 599 .6 +1145 1494 .8 +1145 207 .8 +1145 1469 .6 +1145 584 .8 +1145 1091 .8 +1145 1223 .8 +1145 1308 1 +1145 466 .8 +1145 1366 .8 +1145 1316 1 +1145 399 .8 +1145 2141 .8 +1145 1236 .8 +1145 335 .8 +1145 1991 .8 +1145 1145 .8 +1145 1144 .8 +1145 857 .6 +1145 612 1 +1145 860 .8 +2629 1697 .8 +2629 736 .8 +2629 835 .8 +2629 142 .8 +2629 1286 .8 +2629 740 .8 +2629 102 .8 +2629 91 .8 +2629 792 .8 +2629 2376 .8 +2629 648 .8 +2629 2262 .8 +2629 790 .8 +2629 106 .8 +2629 2748 .8 +2629 837 .8 +2629 1693 .8 +2629 855 .8 +2629 1454 .8 +2629 739 .8 +2629 1053 .8 +2629 789 .8 +2629 1628 .8 +2629 3490 .8 +2629 84 .8 +2629 3491 .8 +2629 584 .8 +2629 1306 .6 +2629 852 .8 +2629 1464 .8 +2629 318 .8 +2629 522 .8 +2629 859 .8 +2629 786 .8 +2629 128 1 +2629 1781 1 +3492 3492 1 +3493 3493 .6 +3494 3494 .6 +3495 3495 .6 +3496 3496 .6 +1580 1580 .8 +1580 3497 .8 +1580 302 .8 +1580 467 .8 +1580 151 .8 +1580 879 .8 +1580 126 1 +1580 3379 .8 +1580 240 .6 +1580 644 .8 +1580 719 1 +1580 642 1 +1580 329 1 +1580 30 1 +1580 163 1 +1580 1278 1 +1580 1568 .8 +1580 787 1 +1580 1020 1 +1580 2746 .8 +1546 1176 1 +1546 1211 1 +1546 1643 .8 +1546 736 1 +1546 104 .8 +1546 1023 .8 +1546 92 1 +1546 1027 .8 +1546 3188 .8 +1546 90 .8 +1546 405 1 +3498 3498 .6 +3499 3499 .6 +3500 2275 .8 +3500 2930 .6 +3500 2497 .8 +3500 3501 .8 +3500 2428 .8 +3500 2510 .6 +3500 3404 .6 +3500 116 1 +3502 3502 .6 +949 126 1 +949 46 1 +949 1495 1 +949 1020 1 +949 719 1 +949 172 1 +949 171 1 +949 1754 1 +949 30 1 +949 939 .8 +949 438 .8 +3503 3503 .6 +3504 3504 .8 +1325 762 1 +1325 1522 .8 +1325 22 1 +1325 2732 1 +1325 1177 1 +1437 1616 1 +1437 328 1 +1437 30 1 +1437 797 .8 +1437 174 1 +1437 511 1 +1437 512 .8 +1437 1028 .8 +1437 3172 .8 +1437 1927 .6 +1437 645 1 +1437 638 1 +1437 1074 1 +1437 3505 .6 +3506 3506 .8 +1066 1066 .6 +1066 1856 1 +1066 1065 1 +1066 618 .8 +1066 1561 .8 +1066 2215 .8 +1066 431 1 +1066 2091 .8 +1066 2222 .6 +1066 643 1 +1066 322 .8 +1066 2069 .8 +1066 126 1 +1066 2207 .6 +1066 863 .6 +1066 1270 1 +1066 2430 1 +1066 2259 .6 +834 834 .8 +834 142 .8 +834 739 1 +834 656 .8 +834 1028 .8 +834 734 .6 +834 1022 .8 +834 1306 .6 +846 846 .8 +846 40 .8 +846 326 1 +846 1162 1 +846 1171 1 +846 1486 .8 +846 2273 .8 +846 582 .8 +846 840 .8 +846 1703 .8 +846 683 .8 +846 1306 .8 +846 2214 .8 +846 3379 .8 +846 956 .6 +846 972 .8 +846 774 1 +846 322 .8 +846 1548 1 +846 271 .8 +846 922 .8 +846 98 .8 +846 997 .6 +846 593 .8 +846 103 .8 +846 157 .6 +846 3507 .6 +846 3028 .6 +846 399 .8 +846 1652 .8 +846 1153 .8 +846 418 .8 +846 776 .8 +846 1183 .8 +846 3477 .6 +846 2847 .8 +846 1178 .8 +846 1394 1 +846 261 .8 +846 3508 .6 +846 1872 .8 +846 1874 .8 +846 3509 .8 +846 924 .8 +846 2265 .8 +846 1370 .8 +846 3510 .6 +846 583 1 +846 3511 .6 +846 1254 .8 +3512 3513 .6 +3514 3514 .8 +3514 1398 1 +3515 3515 .6 +3516 3516 .6 +3517 3517 .6 +3517 326 1 +3517 1117 1 +3517 30 1 +3517 46 1 +3517 719 1 +3517 328 1 +3517 1083 .8 +3517 1028 .8 +3517 1284 .8 +3517 915 .8 +3517 638 .8 +3517 112 .8 +3517 349 .8 +3517 1917 .8 +3517 735 .8 +3517 569 .6 +3517 286 1 +3517 595 .8 +3517 1309 .8 +3517 385 .8 +3517 22 1 +3517 2199 .6 +3517 3337 .6 +3517 469 .8 +1150 887 .8 +1150 101 1 +1150 1343 1 +1150 1930 1 +1150 943 1 +1150 19 .6 +1150 456 .8 +1150 225 .6 +1150 215 .8 +1150 658 .8 +1150 1658 .8 +1150 1536 .8 +1150 2610 .8 +1150 3122 .8 +1150 1496 .8 +1150 2271 .8 +1150 35 .8 +1150 224 .8 +1150 2609 .8 +3518 3519 .8 +3518 3520 .6 +3518 794 .6 +3518 2572 .8 +3518 3403 .6 +3518 803 .6 +3518 725 .8 +3518 326 1 +1476 328 1 +1476 719 1 +1476 30 1 +1476 324 .8 +1476 947 .6 +1476 468 .8 +1476 466 .8 +1476 1616 .8 +1476 1020 .8 +1476 1073 .8 +1476 735 .8 +1476 1072 .8 +1476 645 .8 +1476 1075 .8 +1476 174 .8 +1476 577 .8 +1476 1436 .8 +1476 1633 .8 +2363 915 1 +2363 934 1 +2363 172 1 +2363 791 1 +2363 582 .8 +2363 2362 .6 +2363 2517 .8 +2363 2841 .8 +2363 1856 1 +3521 1375 .6 +3521 3521 .6 +3521 1379 1 +3521 2256 .6 +3522 3522 1 +3523 3523 .8 +888 888 .8 +888 2789 .8 +888 261 .6 +888 711 .8 +888 3524 1 +888 3525 1 +888 2995 .8 +888 3526 .8 +2466 2466 .6 +2466 405 1 +2466 400 1 +2466 3527 .6 +2466 1711 1 +3528 3528 .6 +3529 3529 .8 +2297 2297 .8 +2297 519 .8 +2297 751 1 +3530 191 .8 +3530 915 1 +3531 233 .8 +3532 3532 .6 +3533 3533 1 +118 30 1 +118 652 1 +118 1428 1 +118 1123 1 +118 282 1 +118 770 1 +118 112 1 +118 118 1 +118 642 1 +118 424 1 +118 425 1 +118 22 1 +118 1124 1 +118 426 1 +3534 3534 .6 +3535 3535 1 +3536 3536 1 +1170 1170 .6 +1170 3217 .8 +1170 376 .6 +1170 110 .8 +1170 994 .6 +1170 1222 1 +1170 377 .8 +1170 804 .8 +2856 346 .8 +2856 224 .8 +2856 522 .8 +1743 1743 .8 +1743 632 1 +1743 80 .8 +1743 1738 1 +1743 126 1 +1743 175 1 +1743 46 1 +1743 1182 .8 +1743 461 .8 +1743 1744 .6 +1743 1514 .8 +1743 53 1 +1743 1747 .8 +1743 1741 .8 +1743 3537 .8 +1743 1181 .8 +1743 242 1 +1743 604 .8 +1743 1775 .8 +1743 1756 .8 +1743 1145 .8 +1743 625 .8 +1743 804 .8 +1743 1447 .8 +1743 48 .8 +1743 1740 .8 +1743 1779 .8 +1743 597 .8 +1743 739 1 +1743 708 .8 +1743 1605 .8 +1743 673 .8 +1743 1393 .8 +1743 950 .6 +1743 1965 .6 +1743 19 .8 +1743 1124 1 +1743 2106 .8 +1743 1154 .8 +1743 2537 .6 +1743 2251 .8 +1743 1473 .6 +1743 3538 .8 +1743 917 .8 +1743 1365 .8 +3539 3539 1 +3540 3540 .6 +1749 1749 .6 +1749 1915 .6 +1749 426 1 +924 3030 .6 +924 630 .6 +924 924 .6 +924 776 .8 +924 2313 .6 +837 1692 .8 +837 1298 .8 +837 1689 .8 +837 106 .8 +837 739 1 +837 2376 .8 +837 792 .8 +837 736 .8 +837 1433 .6 +837 97 .8 +837 142 .8 +837 833 .8 +837 574 .8 +837 801 .8 +837 740 .8 +837 835 .8 +837 1308 .8 +837 1516 .8 +837 1307 .8 +837 2132 .8 +837 3186 .6 +837 84 .8 +837 738 .8 +837 86 .8 +837 741 .8 +837 3076 .6 +837 1628 .8 +837 1635 .8 +837 1309 .8 +837 1053 .8 +837 1690 .8 +837 1644 .6 +837 701 .8 +837 1437 .8 +837 1691 .8 +837 91 .8 +837 789 .8 +837 3115 .6 +837 3077 .8 +837 834 .8 +837 734 .6 +837 1627 .8 +837 648 1 +837 1663 .8 +837 1693 .8 +837 1286 .8 +837 855 .8 +837 1659 .8 +837 1454 .8 +837 1696 .8 +837 856 .8 +837 1452 .8 +837 859 .8 +837 3079 .6 +837 1311 .6 +837 90 .8 +837 405 .8 +837 1312 .8 +837 2213 .8 +837 853 .8 +837 1694 .8 +837 2751 .6 +837 3541 .8 +837 1180 .6 +837 1304 .8 +837 1699 .8 +837 3476 .8 +837 3313 .8 +837 3192 .8 +837 2961 .8 +837 790 .8 +837 718 .8 +837 2263 .8 +837 674 .8 +837 2032 .8 +837 1765 .8 +837 2748 .8 +837 1695 .8 +837 1697 .8 +837 3249 .8 +837 3542 .8 +837 2261 .8 +837 102 .8 +837 2629 .8 +837 9 .8 +837 3543 .8 +837 8 .8 +837 3491 .8 +837 3118 .8 +837 1176 1 +837 3544 .6 +837 1640 .8 +837 1306 .6 +837 1310 .6 +837 3119 .6 +837 3117 .6 +837 784 .8 +837 643 .8 +837 802 .8 +837 863 .6 +837 681 .6 +837 953 .8 +837 588 .6 +837 3389 .6 +837 2141 .6 +837 1301 .6 +837 2962 .6 +837 536 .8 +837 2747 .6 +837 1000 .8 +837 786 .8 +837 2593 .6 +837 1400 .8 +837 758 .6 +837 2216 .8 +837 188 .6 +837 2750 .8 +837 1409 .6 +837 1106 .8 +837 963 .8 +837 2739 .8 +837 1051 .8 +837 73 .8 +837 2239 .8 +837 3545 .8 +837 716 .8 +837 2448 .8 +1962 1962 .8 +1962 118 1 +1962 2622 1 +1962 632 .8 +3546 3547 .6 +3546 109 .8 +3548 121 1 +1215 1215 .6 +1215 747 1 +1215 652 1 +1215 1222 .8 +1215 1214 .8 +1215 1213 .8 +1215 746 1 +1215 137 1 +1215 290 1 +1215 1479 1 +1215 110 .8 +1215 3549 .6 +2157 737 1 +2157 352 1 +3550 3550 .6 +3056 3056 .8 +3056 990 .6 +3551 3551 1 +2209 2209 .6 +2209 429 .8 +2209 431 1 +2209 428 .8 +2209 46 1 +2209 643 1 +2209 1823 .6 +2209 2205 .8 +1030 2953 .6 +1030 1016 1 +1030 1034 .8 +1030 1924 1 +1030 991 .8 +1030 1038 .6 +3552 3552 .8 +3553 3553 .6 +3553 42 .6 +3554 3554 .6 +3555 644 1 +3555 3556 .6 +3555 3555 .6 +3555 1484 .8 +3555 3119 .6 +3555 1137 .6 +3557 3557 .6 +3557 1092 .8 +3558 3558 .8 +3559 3560 .8 +3559 774 1 +3559 584 1 +3559 629 1 +3559 1757 1 +3559 780 1 +3559 188 .8 +3559 227 .8 +3559 230 .8 +3559 1804 .8 +3559 1154 .8 +3559 2789 .8 +3559 3561 .8 +1915 30 1 +1915 1915 .8 +1915 324 .8 +1915 328 1 +1915 22 1 +1915 426 1 +1915 1020 .8 +1915 915 .8 +1915 3323 .6 +1915 1447 .8 +1915 1749 .6 +1915 2002 .8 +1915 34 .8 +3562 514 .8 +3562 3562 .6 +3563 3563 .6 +603 603 .8 +603 3564 .8 +603 295 .8 +603 1200 1 +603 1515 .8 +603 167 .8 +603 1169 .8 +603 587 .8 +603 157 .6 +603 963 .6 +603 1450 .6 +603 49 1 +603 165 .8 +603 3251 .8 +603 599 .8 +603 166 .8 +603 3565 .8 +603 242 .8 +603 1495 1 +603 1660 .8 +603 912 .8 +603 1159 .8 +603 261 .6 +603 898 .8 +603 658 .8 +603 919 .8 +603 1862 .8 +603 1863 .8 +603 452 .8 +603 641 1 +603 362 .8 +603 3566 .8 +603 989 .8 +603 194 .8 +603 2160 .6 +603 2151 .6 +603 3397 .6 +603 608 .8 +3567 3567 .8 +3568 3568 1 +2660 2660 .8 +2660 1077 .6 +2660 121 .6 +2660 577 .8 +2660 46 1 +2660 1075 1 +2660 1021 .8 +2660 30 1 +2660 2071 1 +2660 324 .8 +2660 351 .8 +2660 3569 .6 +2660 760 .6 +2660 1751 .8 +2660 1496 .8 +3570 3570 1 +3571 3571 .6 +13 1020 1 +13 328 1 +13 46 1 +13 1075 1 +13 30 1 +13 191 .8 +13 286 .8 +13 736 .8 +13 2565 .8 +13 2561 .8 +13 1491 .8 +13 352 1 +13 50 .8 +13 3572 .8 +13 1583 1 +13 1247 1 +13 3573 .8 +13 506 1 +13 943 1 +13 281 .6 +13 14 .8 +13 2967 .8 +13 228 .6 +13 3574 .8 +13 12 .8 +13 774 1 +13 711 .8 +13 898 1 +3575 3575 .8 +3576 3576 .6 +3576 141 .8 +1698 1698 .8 +1698 126 1 +1698 84 .8 +3577 3577 .8 +601 583 1 +601 362 .8 +601 592 .8 +601 601 .8 +601 157 .8 +601 852 1 +601 1211 .8 +601 602 .8 +601 336 1 +601 48 1 +601 53 1 +601 67 1 +601 1578 .8 +2395 2395 .6 +2395 719 1 +1628 739 1 +1628 882 .8 +1628 648 1 +1628 84 .8 +1628 736 1 +1628 737 .8 +1628 86 .8 +1628 741 .8 +1628 584 1 +1628 327 .8 +1628 142 .8 +1628 789 .8 +3578 3579 .8 +3580 3580 1 +3581 620 1 +3581 2251 1 +3581 1490 1 +3581 1869 1 +3581 709 1 +3582 3582 .6 +3583 876 .8 +899 701 1 +899 904 .8 +899 903 .8 +899 2285 .6 +899 905 .8 +899 2551 .8 +899 899 .8 +899 897 .6 +899 902 .8 +3584 3584 .8 +3585 3585 .6 +3585 610 1 +3585 30 1 +3585 328 1 +3585 719 1 +3585 46 1 +3586 764 1 +3586 1157 1 +3586 2944 1 +3586 555 1 +3586 577 1 +3587 3587 .6 +3587 1165 1 +3587 3210 .8 +3587 2728 .8 +3587 791 .8 +3587 718 .8 +3587 157 .8 +3587 82 .8 +3587 793 .8 +3588 3588 .6 +2786 2786 .6 +2786 429 1 +2786 2219 1 +3589 3589 .6 +53 53 .8 +53 332 1 +53 282 1 +53 51 .8 +53 144 .8 +53 329 1 +53 49 1 +53 175 1 +53 331 .8 +53 335 .8 +53 324 1 +53 729 .8 +53 50 .8 +53 286 1 +53 48 .8 +53 126 1 +53 172 1 +53 807 .8 +53 298 .8 +53 864 .8 +53 46 1 +53 328 1 +53 1097 .8 +53 54 .6 +53 1746 .8 +53 637 1 +53 3590 .6 +53 1764 .8 +53 591 .6 +53 710 .8 +53 3591 .8 +53 65 .8 +53 1766 .8 +53 3592 .8 +53 736 1 +53 333 .8 +53 739 1 +53 720 .8 +53 1738 .8 +53 67 .8 +53 70 .8 +53 69 .8 +53 718 .8 +53 859 1 +53 1519 .8 +53 786 1 +53 68 .6 +53 588 .8 +53 1779 .6 +53 632 1 +3593 129 1 +3594 3594 .8 +3595 3595 1 +3596 3596 .6 +3596 3597 .6 +2322 2322 .6 +1450 1450 .6 +1450 379 .8 +1450 312 .6 +1450 2615 .8 +1450 311 .6 +1450 166 .8 +1450 165 .8 +1450 167 .8 +1450 2171 .6 +1450 1200 1 +1450 295 .8 +1450 194 .6 +1450 3598 .8 +1450 3599 .8 +1450 603 .6 +1450 3565 .8 +1450 3600 .8 +1450 1533 .8 +1450 624 .8 +1450 3601 .6 +1450 3252 .6 +3602 1211 .8 +3602 1176 1 +3602 587 .6 +3602 328 1 +3602 883 .8 +3602 886 .8 +3602 1339 .8 +3602 2876 .6 +3602 236 .6 +3602 760 .6 +3602 658 .8 +3602 276 .8 +3602 2572 .8 +3603 3603 1 +3604 2316 .6 +3604 1653 .8 +3350 783 1 +3350 697 .8 +3350 1160 .8 +3350 3350 .8 +3350 191 .8 +3350 1238 .8 +3350 1024 .8 +3605 3605 .6 +3606 2739 .8 +1485 3607 .6 +3608 1043 .8 +3609 3609 .6 +3609 2777 .8 +3609 588 .8 +3609 1650 .8 +3609 3610 .6 +3609 812 .6 +3609 1914 .6 +3609 3109 .6 +3611 3611 .6 +3611 1644 .6 +3611 3233 .6 +3611 3262 .6 +3611 3612 .6 +3611 2562 .8 +3611 102 .6 +3611 1075 .8 +3611 30 1 +3611 1123 1 +3611 328 1 +3611 1020 1 +3611 345 .8 +3611 324 .8 +3611 1804 .6 +3611 3613 .6 +3611 46 1 +3611 667 .8 +3611 3614 .6 +3611 109 .6 +3611 1915 .6 +1717 1717 .8 +1717 1033 .8 +1717 3572 1 +1717 587 .8 +3240 3240 .8 +3240 784 .8 +3240 739 1 +3240 46 1 +3240 3615 .6 +3240 883 .8 +3240 1694 .6 +3240 353 1 +3240 1557 .8 +3240 1643 .8 +3240 3088 .6 +3240 172 1 +3240 1605 .8 +3240 234 .6 +3240 963 .6 +3240 328 1 +3240 492 .6 +3240 2782 .6 +3240 113 .8 +3240 438 .8 +3181 807 .8 +3181 3616 .8 +3181 2948 .8 +3617 3618 1 +3619 3619 .6 +3620 1270 1 +3620 2216 1 +3620 437 .8 +3620 2298 .8 +3620 710 1 +3620 1609 .8 +3620 286 1 +3620 30 1 +3620 3621 .6 +2047 2047 .6 +3622 3622 .6 +3622 3623 1 +3624 3624 .6 +3624 2252 1 +3624 2498 1 +3624 673 1 +3624 30 1 +3624 2904 .8 +3624 3625 .8 +3624 126 1 +3626 3626 .8 +968 968 .6 +968 3627 .8 +968 2351 .8 +968 2157 1 +968 577 1 +968 126 1 +968 1616 1 +968 30 1 +968 719 1 +968 1847 1 +968 46 1 +3628 3628 .6 +3628 3629 .6 +3630 3630 .6 +3630 1229 1 +3630 3631 .8 +3630 629 1 +3630 194 .8 +3630 624 .8 +3630 3632 .8 +3633 82 1 +3633 3634 .6 +2716 2716 1 +2716 1734 .6 +2716 626 1 +2716 3011 .6 +2716 3051 .8 +2716 3635 .8 +2716 610 .8 +2931 2931 .6 +3636 3636 .6 +1801 1801 .6 +1801 232 .6 +1801 28 .8 +1801 225 .6 +1801 215 .8 +1801 96 1 +1801 3380 .6 +1801 387 .8 +1801 194 .8 +3637 3637 .6 +3637 1420 1 +3637 1378 1 +3638 3638 .6 +1634 3002 1 +1634 2635 .8 +1634 441 1 +1634 2938 .6 +1634 1780 .6 +1634 1385 .6 +1634 2741 .6 +1634 3424 .6 +1634 2084 .6 +1634 1472 .8 +1634 3639 .6 +1634 2671 .6 +1634 3640 .6 +1634 2665 .6 +1634 3641 .6 +1634 2085 .8 +1634 2709 .6 +1218 1218 .8 +1218 1546 .8 +1218 858 1 +1218 1212 .8 +1218 1123 1 +1218 2453 .8 +1218 1210 .8 +1218 764 1 +1218 2454 .8 +1218 286 1 +1218 2289 .8 +1218 46 1 +1218 105 .8 +1218 1499 .8 +1218 324 .8 +1218 1127 .8 +1218 290 1 +1218 110 .8 +1218 714 .8 +1218 1222 1 +1218 377 .8 +1218 2455 .6 +1218 659 1 +1218 3642 .8 +1218 137 1 +1218 2458 .8 +1218 2457 .8 +1218 1479 .8 +1218 2461 .8 +1218 747 1 +1218 2378 .8 +1218 1605 .8 +1218 79 .8 +1218 748 1 +1218 652 1 +1218 746 1 +1218 2459 .8 +1218 1214 .8 +1218 1219 .8 +1218 1213 .8 +1218 2460 .8 +1218 749 1 +1218 879 .8 +1218 555 1 +1218 175 1 +1218 3643 .8 +1218 743 1 +1218 584 1 +1218 2501 .8 +1218 647 1 +1218 329 1 +1218 641 .8 +1218 1158 .8 +1218 1027 .8 +1218 750 .8 +1218 1343 1 +1218 2278 .8 +1218 3644 .6 +1218 22 1 +1218 770 1 +1218 296 .8 +1218 649 1 +1218 108 .8 +1218 3645 .8 +1218 2312 .8 +1218 1862 .8 +1218 2456 .8 +1218 1201 .8 +1218 92 .8 +1218 1604 .6 +1218 644 .8 +1218 1206 .6 +1218 3396 .8 +1218 1203 1 +1218 1865 .8 +1218 954 .8 +1218 1070 .8 +1218 1428 .8 +2659 1246 1 +2659 2658 .6 +2659 737 1 +2230 642 1 +2230 429 1 +2230 3269 .8 +1929 1929 .8 +1929 638 .6 +1929 514 .8 +1929 1536 .8 +1929 144 .8 +1929 764 1 +1929 587 .6 +1929 1211 .8 +1929 316 1 +1929 3188 .8 +1929 501 .8 +1929 1518 .8 +1929 1133 .8 +1929 1798 .6 +1929 1065 .8 +1929 405 1 +1929 2993 1 +962 962 .8 +962 1160 1 +962 1176 1 +962 1957 1 +962 292 1 +962 1158 1 +962 1156 1 +3646 3646 .6 +3293 3293 .8 +3293 3292 .6 +3293 863 .8 +3293 714 1 +3293 3291 .6 +3293 3647 .8 +3648 3648 .8 +915 30 1 +915 1616 1 +915 1436 .6 +915 1074 .8 +915 328 1 +915 1791 .8 +915 3649 .8 +915 172 1 +915 46 1 +915 1117 1 +915 934 1 +915 638 .8 +915 791 .8 +915 1314 .8 +915 350 1 +915 171 1 +915 2172 1 +915 797 .8 +915 2646 1 +915 2271 .8 +915 1687 .8 +915 2363 .6 +915 1356 .8 +915 912 .8 +915 913 .8 +915 1658 .8 +915 762 1 +915 2634 .6 +915 990 .6 +915 827 1 +915 262 .6 +915 1126 1 +915 1181 .8 +915 712 .8 +915 323 .8 +915 2304 .6 +915 780 .8 +3650 3650 .6 +234 438 .6 +234 513 .8 +234 234 .6 +234 2782 .6 +234 963 .6 +234 2483 .8 +234 492 1 +234 549 1 +234 66 .8 +234 588 .8 +234 1643 1 +234 3651 .6 +234 1988 1 +234 715 1 +234 2141 1 +938 524 .6 +938 938 .8 +938 44 1 +938 995 .6 +938 209 1 +938 242 .8 +938 597 .8 +938 959 .8 +938 172 1 +938 712 .8 +938 1001 .8 +938 1002 .8 +938 174 1 +938 346 .8 +390 390 .6 +390 801 .8 +390 1309 .8 +390 391 .8 +390 441 1 +390 388 1 +390 1894 1 +390 1754 1 +390 392 1 +390 2667 .8 +390 2843 .6 +390 584 1 +390 393 .8 +390 3652 .6 +3653 514 1 +3654 3655 .6 +3656 3656 1 +2845 1231 1 +2845 2521 1 +2845 1171 1 +2845 2861 .8 +2845 1723 1 +50 352 1 +50 303 1 +50 52 .8 +50 51 .8 +50 286 1 +50 282 1 +50 3006 .8 +50 349 1 +50 351 .8 +50 1760 .8 +50 764 1 +50 329 1 +50 49 .8 +50 2062 .8 +50 175 1 +50 624 .8 +50 332 1 +50 48 .8 +50 29 1 +50 58 .8 +50 1767 .8 +50 55 .8 +50 57 .8 +50 59 1 +50 647 1 +50 61 .8 +50 333 1 +50 637 1 +50 331 .8 +50 864 .8 +50 227 .8 +50 337 .8 +50 1769 1 +50 853 .8 +50 461 .6 +3657 3657 .6 +3657 3600 .8 +3657 1450 .8 +3658 22 1 +233 46 1 +233 1160 .8 +233 719 1 +233 328 1 +233 2058 .8 +233 286 1 +233 961 .6 +233 233 .8 +233 491 .8 +233 1752 .8 +233 87 .6 +233 3659 .6 +233 610 .8 +233 1126 .8 +233 3275 .6 +233 332 1 +233 214 .6 +233 822 .6 +233 2087 .6 +233 1216 .6 +233 226 .6 +233 231 .6 +233 219 .6 +233 3136 .6 +233 198 .6 +233 3660 .6 +233 1047 .6 +233 919 .8 +233 461 .8 +233 1673 .8 +233 2997 .8 +233 2704 .6 +233 2782 .8 +233 2108 .8 +233 404 .6 +233 182 .8 +233 2111 .8 +233 183 .6 +233 801 1 +233 525 1 +233 1471 1 +233 3566 .8 +233 3032 .8 +233 1034 .8 +233 1584 .6 +233 30 1 +850 849 .8 +850 848 1 +850 852 1 +850 1176 1 +850 2198 1 +850 1211 1 +850 883 .8 +850 1126 1 +850 658 .8 +850 784 .8 +850 1154 .6 +850 126 1 +850 2197 1 +850 2874 .8 +850 175 .8 +850 22 1 +850 1464 .8 +850 850 1 +850 1031 .8 +850 3661 .8 +850 2753 .8 +850 2861 .8 +850 2575 .8 +850 1172 .8 +3662 3662 .8 +171 350 1 +171 172 1 +171 511 1 +171 645 .8 +171 646 1 +171 915 .8 +171 810 .8 +171 328 1 +171 174 1 +171 30 1 +171 719 1 +171 1313 1 +171 1117 1 +171 171 1 +171 2172 .8 +171 912 .8 +171 1020 1 +171 1754 1 +171 303 1 +171 1436 .6 +171 933 .6 +171 2647 .6 +171 501 .8 +171 949 1 +171 762 1 +171 913 1 +3651 3651 .6 +3651 234 .8 +3651 66 .8 +3651 1046 .6 +3663 3663 1 +3663 3664 1 +3663 126 1 +3663 438 .8 +3663 46 1 +3663 30 1 +3663 86 1 +3663 328 1 +3663 324 1 +3663 3193 1 +2329 2329 .6 +2329 203 .6 +2329 586 .6 +2329 199 .6 +2329 197 .8 +2329 200 .8 +2329 205 .6 +2329 1190 .8 +2329 198 .6 +2329 196 .8 +2329 204 .8 +2329 3655 .6 +2329 255 .6 +2329 488 .6 +3665 3665 .6 +3276 505 .8 +3276 303 1 +3276 629 .8 +3276 46 1 +3276 883 .8 +3276 3497 .8 +3276 1924 .8 +3276 151 .8 +3276 1580 .8 +3276 649 1 +3276 176 .8 +3276 3666 .6 +3276 30 1 +3276 309 .6 +3276 3667 .6 +3276 1211 1 +3276 3668 1 +3276 879 .8 +3276 1571 .8 +3276 351 .8 +3276 918 .8 +3276 175 1 +3276 1176 1 +3276 352 .8 +3276 764 1 +3276 3669 .6 +3276 1762 .6 +3276 286 1 +3276 913 .8 +3276 194 .8 +3670 3670 1 +3670 2100 .6 +3671 2099 .8 +3671 3672 .8 +3671 334 1 +3671 65 1 +3673 643 1 +2487 2251 .8 +2487 349 1 +2487 3440 .6 +2487 1392 .8 +2487 1397 1 +3674 3674 1 +2142 1028 1 +2142 2142 .6 +2142 3675 .8 +2142 1538 .8 +2142 3676 .6 +2142 3677 .6 +2142 944 .8 +2142 261 .6 +2142 1178 .6 +2142 708 1 +2142 3678 .8 +2142 1160 1 +2142 584 1 +2142 9 .8 +2142 2711 .8 +2142 3229 .6 +3679 3680 .6 +3679 224 .8 +3679 3679 .6 +3679 1964 .8 +3681 3681 .8 +413 43 1 +413 2002 .8 +3030 324 1 +3030 3030 .6 +3030 327 1 +3030 3103 1 +3030 30 1 +3030 46 1 +3030 719 1 +3030 3028 .6 +3030 1075 1 +3030 645 1 +3030 934 1 +3030 1616 1 +3030 1495 1 +3030 326 1 +3030 323 1 +3030 2346 1 +3030 344 .8 +3030 345 1 +3030 913 1 +3682 3682 .6 +3336 3336 .8 +3336 121 1 +3336 3683 .6 +3336 109 .6 +3336 1021 .6 +3133 3133 .8 +3133 387 .8 +3133 3099 .8 +3133 3132 .6 +3684 3684 .8 +3309 1086 .8 +3309 3308 .6 +3309 3307 .6 +3309 3309 .6 +1035 1035 .6 +1035 1016 .8 +3685 888 1 +3685 328 1 +3685 326 1 +3685 2616 .8 +3685 351 1 +3685 658 .8 +3685 852 1 +3685 1465 .8 +3685 2196 .8 +3685 977 .8 +3686 3137 1 +3686 2538 .8 +2357 2357 .6 +2357 1818 1 +2357 2354 .8 +2357 1341 .8 +3687 3687 .6 +3688 3688 .6 +3688 2227 .8 +3688 2415 .8 +3688 2144 .8 +3688 2259 .8 +3688 3441 .8 +3689 696 .8 +3689 126 1 +3689 175 1 +2955 759 .8 +3690 2143 .6 +3690 324 1 +3690 175 1 +3690 736 1 +3691 3691 .6 +3691 194 .6 +3692 894 .8 +639 441 1 +639 431 1 +639 215 1 +639 1910 .8 +639 1515 .8 +639 1160 1 +639 429 1 +639 1893 1 +639 46 1 +3693 3693 .6 +3694 3694 .6 +3694 1961 .8 +3695 3695 .6 +3696 3696 .6 +3697 3697 1 +3698 3698 1 +2839 2839 .6 +2839 2403 .6 +2839 1195 .8 +3699 1775 .8 +3699 1855 .8 +3700 126 1 +3700 30 1 +132 132 .6 +132 3701 .6 +132 1960 1 +132 131 .6 +2308 1551 .8 +2308 263 .8 +2308 2306 1 +2308 3116 .8 +682 912 1 +682 682 .8 +682 722 .8 +682 3398 .8 +682 1650 .8 +682 577 1 +682 1939 .6 +682 500 .6 +682 3702 .8 +682 3703 .6 +682 3704 .8 +682 3705 .8 +682 719 1 +474 743 1 +474 474 .6 +474 962 1 +474 1156 1 +474 3706 .8 +474 3707 .8 +474 273 1 +474 2517 .8 +474 911 1 +3210 718 .8 +3210 1568 .8 +3210 126 1 +3210 30 1 +3210 46 1 +3210 1165 .8 +3210 3708 .8 +3709 3709 .6 +3710 3710 .8 +3711 3711 .6 +3712 3712 .6 +3713 887 .8 +3713 3713 .8 +1335 119 .8 +3714 3714 .6 +2733 2732 1 +2733 643 1 +2733 2731 .8 +2733 579 1 +2733 1277 .6 +386 386 .6 +386 384 .6 +3643 3643 .8 +3715 46 1 +894 1957 1 +894 885 .8 +894 889 .8 +894 3716 .8 +894 891 .6 +3138 46 1 +3138 714 .8 +3138 30 1 +3138 3281 .8 +3138 916 .8 +3138 286 .8 +3138 739 1 +3138 329 1 +3138 2213 .8 +3138 1024 .8 +3138 405 .8 +3138 126 1 +240 3379 .8 +240 1580 .8 +240 644 1 +240 214 .8 +240 9 .8 +240 19 .8 +240 93 .8 +240 658 .8 +240 1033 .8 +240 2333 .8 +240 113 .8 +240 1488 .6 +240 737 1 +240 111 .8 +240 584 1 +240 1483 .8 +240 956 .6 +240 887 1 +240 45 1 +240 292 1 +240 3316 .8 +240 486 1 +240 888 1 +240 751 1 +240 265 1 +240 787 1 +240 1685 .8 +1780 1780 .6 +1780 46 1 +1780 30 1 +1780 739 1 +1780 506 1 +1780 45 1 +1780 514 1 +1780 643 1 +1780 577 1 +1780 65 1 +1780 751 1 +1780 2034 .6 +1780 717 1 +1780 852 1 +1780 776 .8 +1780 349 1 +1780 610 1 +1780 492 1 +1780 1847 1 +1780 165 1 +1780 2137 .8 +1780 3509 .8 +1780 1874 .8 +3717 157 1 +3717 708 .8 +3717 175 1 +3717 637 1 +3717 624 1 +3717 48 1 +3717 332 1 +3717 329 1 +2903 2903 .8 +2903 673 1 +2903 672 1 +2903 1502 1 +3718 3386 .8 +3718 1547 .8 +3718 3718 .6 +3718 2307 .8 +3719 3719 1 +3123 46 1 +3720 3720 .8 +3720 45 1 +3721 82 1 +3722 377 1 +3722 3482 1 +3722 3723 1 +3722 3724 1 +3722 746 1 +3722 1213 1 +3722 747 1 +3722 1222 1 +3722 749 1 +3722 1499 1 +3722 659 1 +3722 108 1 +3722 110 .8 +3722 46 1 +3722 562 1 +3722 1127 1 +3722 2289 1 +3722 290 1 +3722 175 1 +3722 126 1 +3722 2454 .8 +3722 3725 .8 +3722 994 .8 +3722 1605 .8 +3722 2378 .8 +3726 1344 1 +3726 1760 .8 +3726 764 1 +2905 2905 .6 +2905 1493 1 +2905 1587 .8 +2905 1108 1 +2905 3211 .8 +2905 672 1 +2905 718 1 +2905 30 1 +2905 126 1 +2905 673 1 +2905 324 1 +2905 1490 1 +2905 1492 1 +2905 46 1 +2905 719 1 +2905 674 .8 +2905 1824 .8 +3727 3727 .6 +519 519 .6 +519 1485 .6 +519 2274 .6 +519 3728 .6 +519 763 .6 +519 2504 .6 +519 3729 .6 +519 500 .6 +519 974 .8 +519 2729 .6 +519 572 .8 +519 3660 .6 +519 189 .6 +519 3730 .6 +519 3731 .6 +519 2489 .6 +519 1500 .6 +519 1707 .8 +519 3708 .6 +519 3732 .8 +519 1104 .6 +519 3378 .6 +519 2435 .6 +519 716 .8 +519 3102 1 +519 2891 1 +519 238 .6 +519 3395 .6 +519 211 .6 +519 2295 .8 +3733 324 1 +3733 1447 1 +3733 440 1 +3733 352 1 +3733 431 1 +3733 46 1 +3733 506 1 +3733 719 1 +3733 353 1 +3733 1495 1 +3733 30 1 +3733 1012 1 +3733 328 1 +2072 2072 1 +2072 328 1 +2072 857 1 +2072 46 1 +2072 49 1 +2072 1288 .8 +2072 576 1 +2072 385 .8 +2072 1761 .8 +2072 2681 .8 +2072 426 1 +2072 22 1 +2072 597 .8 +2072 888 .8 +3734 3734 .6 +3735 3735 .6 +3736 3736 .8 +3737 3737 .8 +1826 1826 .6 +1826 295 .8 +1826 528 .8 +1826 519 .8 +1826 210 .8 +1826 2135 .8 +1826 1390 .8 +1826 1178 .8 +1826 3385 .8 +3738 3738 1 +3162 3161 .8 +3162 3160 .8 +783 783 .8 +783 3350 1 +783 506 1 +783 760 .6 +2042 813 1 +2042 162 1 +2042 739 1 +2042 695 1 +2042 1176 1 +3739 3285 1 +3740 1407 .6 +3126 3126 .8 +3126 3741 .6 +3126 972 .6 +3126 2269 .6 +3126 708 .8 +3127 3127 .8 +3127 1579 1 +3127 296 1 +3127 1562 1 +3127 2343 .8 +3127 375 1 +3127 322 .8 +3127 1052 1 +3127 283 .8 +3127 2269 .8 +3127 3024 .8 +3127 3128 1 +3127 3742 .8 +3127 1569 .6 +3127 2100 .8 +3127 1308 .8 +3127 2268 1 +3127 1626 .8 +3743 3743 .6 +3743 1968 1 +3743 1653 1 +3743 1229 1 +3743 1723 1 +3743 2427 .8 +3743 282 1 +3743 1337 .8 +3743 1560 .8 +3743 640 1 +3743 1177 1 +3744 1742 1 +2158 869 1 +2158 2158 1 +2158 870 1 +3745 3745 .6 +3746 3746 .6 +3747 3747 .6 +3748 3748 .8 +3748 1524 1 +3748 328 1 +3748 286 1 +555 764 1 +555 2002 .8 +555 2319 .8 +555 2201 .8 +555 2320 .6 +555 286 1 +555 1157 1 +555 2944 1 +555 328 1 +555 1603 1 +555 843 .8 +555 2530 .8 +555 1158 .8 +555 329 1 +555 1601 .8 +555 845 .8 +555 2529 1 +555 1606 .8 +1214 1214 .8 +1214 747 1 +1214 1479 1 +1214 290 1 +1214 748 1 +1214 746 1 +1214 1499 .8 +1214 2455 .8 +1214 79 .8 +1214 1127 .8 +1214 1210 .8 +1214 2453 1 +1214 377 .8 +1214 137 1 +1214 2457 .8 +1214 1222 1 +1214 659 1 +1214 1212 .8 +1214 1218 .8 +1214 2378 .8 +1214 108 .8 +1214 764 1 +1214 352 1 +1214 2459 .8 +1214 719 1 +1214 749 1 +1214 1219 .8 +1214 2460 .8 +1214 2456 .8 +1214 1213 .8 +1214 30 1 +1214 3749 .6 +1214 3645 .8 +2939 2939 .8 +2939 514 .8 +2939 20 .8 +2939 3750 .8 +2939 779 .8 +1783 1783 .6 +1783 441 1 +3751 3751 .6 +189 189 .6 +189 519 .6 +189 346 .8 +3752 3752 1 +3753 3753 .6 +1309 1309 .8 +1309 736 .8 +1309 801 .8 +1309 391 .6 +1309 738 .8 +1309 1117 .8 +1309 1434 .8 +1309 735 .8 +1309 303 .8 +1309 46 1 +1309 438 .6 +1309 349 .8 +1309 30 1 +1309 719 1 +1309 1020 1 +1309 326 1 +1309 468 .8 +1309 1308 .8 +1309 789 .8 +1309 142 .8 +1309 648 .8 +1309 390 .8 +1309 392 .8 +1309 389 .6 +1309 2667 .8 +1309 388 .8 +1309 2843 .6 +1309 1684 .6 +1309 393 .8 +1309 2860 .8 +1309 784 1 +1309 852 1 +1309 1176 1 +1309 883 .8 +1309 246 .6 +1309 3754 .8 +1309 1798 .8 +1309 515 .8 +3755 2081 .8 +3756 3756 .6 +3757 82 1 +2446 1278 1 +2446 1565 1 +2446 1991 1 +2446 2918 1 +2446 2445 1 +2446 2446 .8 +2446 736 1 +3758 3758 .6 +3758 286 1 +3758 112 1 +3758 425 1 +3758 118 1 +3758 1124 1 +3758 30 1 +3758 427 1 +3758 22 1 +3758 1298 .8 +3758 424 1 +3758 282 1 +3758 426 1 +3758 770 1 +3758 3759 .8 +3758 291 .6 +1997 784 1 +1997 1185 .6 +1997 200 .8 +3760 3760 .8 +3761 3761 .6 +3761 126 1 +3761 121 1 +3761 644 1 +3761 825 1 +3761 522 1 +3761 286 1 +3761 1476 1 +3761 1957 1 +3761 175 1 +3761 1280 1 +3761 1064 .8 +3762 175 .8 +3762 46 1 +3762 3762 .8 +3762 353 1 +3762 329 1 +3762 2997 .8 +3762 148 .8 +3763 1867 .6 +3763 3764 .6 +3763 3765 .6 +3766 3766 1 +3766 857 1 +3767 385 1 +3768 1605 .8 +22 425 1 +22 424 1 +22 118 1 +22 770 1 +22 112 1 +22 282 1 +22 1915 .6 +22 30 1 +22 46 1 +22 1124 1 +22 426 1 +22 893 .6 +22 1097 .6 +22 104 .8 +22 65 1 +22 2945 .6 +22 92 .8 +22 1116 1 +22 3102 .8 +22 1221 .8 +22 3769 .8 +22 805 .8 +22 751 1 +22 3770 1 +22 1723 1 +22 3069 .8 +22 609 .8 +3771 3771 .6 +3772 3772 .6 +3772 316 1 +3772 112 1 +3773 3773 .6 +1240 1240 .8 +1240 2685 .8 +2689 2125 .6 +2689 3774 .8 +2689 2708 1 +2689 1154 .8 +3775 656 .8 +3775 235 .6 +3775 106 .8 +3775 3776 .8 +3775 1882 .6 +3775 3319 1 +3775 1879 .6 +3777 3777 .6 +416 399 .8 +416 498 1 +416 438 1 +416 316 1 +416 46 1 +416 1996 1 +416 2578 .8 +416 3778 .8 +416 625 .8 +416 2997 .8 +3779 781 1 +3780 3780 .8 +3781 1273 .6 +1516 106 .8 +1516 1692 .8 +1516 102 .8 +1516 736 1 +1516 1694 .8 +1516 837 .8 +1516 1693 .8 +1516 1602 .8 +1516 3782 .8 +1516 2747 .8 +1516 1151 .8 +1516 3141 .6 +1516 2020 .6 +1516 806 .6 +1516 514 .8 +1516 1311 .6 +1516 1484 .8 +1516 648 1 +1516 3189 .6 +1516 3140 .8 +1516 1601 .8 +3783 3783 .6 +1105 116 1 +1105 1105 .8 +1105 925 .8 +1105 1107 .8 +1105 3784 .8 +3785 3785 .6 +2834 45 .8 +2834 22 1 +2834 65 .8 +2834 286 1 +2834 349 1 +3009 3006 .8 +3009 3786 .8 +3009 2076 1 +3009 176 .8 +3009 764 1 +3787 1562 1 +3787 1222 1 +3787 110 .8 +3788 3788 .6 +3789 3347 1 +1969 375 1 +1969 46 1 +1969 1960 1 +1969 612 1 +3790 448 .8 +3790 449 1 +1849 3791 .8 +1849 719 1 +1849 46 1 +1849 329 1 +1849 736 1 +1849 1490 1 +1849 30 1 +1849 859 1 +1849 673 .8 +1849 1492 .8 +1849 1848 1 +1849 22 1 +1849 431 1 +1849 739 1 +1849 1000 .8 +1849 1840 1 +1849 126 1 +1849 1960 1 +1849 385 1 +1849 744 .8 +1849 855 1 +1849 997 .6 +1849 438 1 +1849 1800 .6 +1849 1190 1 +1849 495 .8 +1849 21 .6 +1849 121 1 +1849 1519 .8 +1849 3792 .8 +1401 328 1 +1401 719 1 +1401 306 .8 +1401 466 .8 +1401 1075 .8 +1401 323 .8 +1401 326 1 +1401 30 1 +1401 1087 .6 +1401 1434 .8 +1401 645 .8 +1401 324 .8 +1401 174 .8 +1401 1117 1 +1401 2401 .8 +1401 934 .8 +1401 1633 .8 +1401 735 .8 +1401 2101 .8 +1401 1084 .6 +1401 1401 .8 +1401 797 .8 +1401 2103 .8 +1401 345 .8 +1401 352 1 +1684 801 .8 +1684 391 .8 +1684 3313 .8 +1684 738 1 +1684 441 1 +1684 390 1 +1684 1309 1 +1684 388 1 +1684 65 .8 +1684 2751 .6 +1684 392 1 +1684 389 .6 +1684 584 1 +1684 2667 .8 +1684 751 .8 +1684 651 .8 +1684 1684 .6 +1684 394 .8 +1684 1682 1 +1684 921 .8 +1684 1023 .8 +1684 92 1 +1684 393 .8 +2306 263 .8 +2306 1551 .8 +2306 2308 .8 +2306 2307 .8 +2306 2232 1 +2306 783 .8 +2306 1037 .8 +2306 3116 .8 +2306 19 .8 +2306 836 .8 +2306 3793 .8 +2306 2185 .8 +1635 735 .8 +1635 46 1 +1635 1476 .8 +1635 1616 .8 +1635 858 .8 +1635 349 .8 +1635 144 .8 +1635 642 1 +1635 172 .8 +1635 30 1 +1635 1117 1 +1635 324 .8 +1635 645 .8 +1635 1123 1 +1635 934 .8 +1635 328 1 +1635 719 1 +1635 915 .8 +1635 1020 .8 +1635 1308 .8 +1635 352 1 +1635 326 1 +1635 1074 .8 +1635 468 .8 +1635 467 .8 +1635 1238 .8 +1635 2562 .8 +1635 2563 .8 +1635 22 1 +1635 13 .8 +1635 1894 .8 +1635 431 .8 +1635 738 .8 +1635 801 .8 +1635 792 .8 +1635 2759 .6 +1635 348 .8 +1635 736 .8 +1635 1309 .8 +3794 137 .8 +3560 3560 .6 +3560 2911 .8 +3560 3795 .6 +3560 3625 .8 +3560 2252 1 +3560 1492 1 +1708 1707 .8 +1708 1708 .8 +1708 1701 .8 +1708 1675 .8 +1708 1705 .8 +1026 1026 .8 +1026 739 1 +1026 736 1 +1026 1286 1 +1026 86 .8 +1026 2103 .8 +1026 175 1 +1026 1016 .8 +1026 1287 .8 +1026 52 .8 +1026 1285 1 +1026 1022 1 +1026 918 1 +1026 45 1 +1026 750 1 +1026 1720 1 +1026 1289 .8 +1026 3246 .8 +1026 985 .8 +1026 1065 .8 +1026 580 .8 +1026 2990 .6 +1026 335 .8 +1026 2145 .8 +1026 614 .8 +1026 1812 .8 +1026 711 .8 +1026 46 1 +3796 949 1 +3796 966 .6 +3796 2405 .8 +3796 631 .8 +3796 758 .8 +3796 989 .8 +3796 920 .8 +3796 17 .6 +3797 1153 .8 +3797 49 .8 +3798 647 1 +3798 283 .8 +3798 3798 .6 +3798 643 1 +3798 1343 1 +3798 737 1 +3231 323 .8 +3231 1401 .8 +3231 326 1 +3231 328 1 +3231 325 .8 +903 904 .8 +903 701 1 +903 902 1 +903 2286 .6 +903 897 .8 +903 712 .8 +903 899 .8 +903 905 .8 +903 901 .8 +629 629 .8 +629 286 1 +629 1290 .8 +629 649 1 +629 274 .8 +629 333 .8 +629 63 .8 +629 1571 .8 +629 194 .8 +629 2246 1 +629 1030 1 +629 577 1 +629 49 1 +629 282 1 +629 2787 .8 +629 1524 1 +629 624 .8 +629 627 .8 +629 918 1 +629 129 .8 +629 1946 .8 +629 3799 1 +3800 3800 .6 +3801 3478 1 +969 643 1 +969 429 1 +969 286 1 +1094 1094 1 +1094 30 1 +1094 719 1 +1094 3802 1 +1094 328 1 +1094 46 1 +1094 1309 1 +1094 1996 1 +1094 1109 1 +1094 1370 .8 +1094 492 1 +1094 3803 1 +1094 1072 .8 +1094 1075 1 +1094 2404 1 +1094 2347 .8 +1094 329 1 +1094 859 1 +1094 801 1 +1094 391 .8 +1094 1684 1 +1094 388 1 +1094 390 .8 +1094 1894 1 +1094 3450 .6 +1094 3447 .6 +1094 1384 .8 +1094 414 .8 +1094 2803 1 +1094 897 .8 +1094 400 1 +1094 1930 1 +1094 1091 1 +1094 3804 .8 +1094 918 1 +1094 1492 1 +1094 3754 .8 +1094 403 .6 +1094 1662 .8 +1094 1798 .8 +1094 186 .8 +1094 3805 1 +1094 2108 .8 +1094 441 .6 +1094 3676 .6 +3806 3806 1 +200 200 .6 +200 198 .6 +200 195 .6 +200 587 .8 +200 204 .8 +200 3807 .8 +200 197 .8 +200 822 .6 +200 826 1 +200 286 1 +200 205 .6 +200 1543 .8 +200 3316 .8 +200 3138 .8 +200 2329 .6 +200 2003 .6 +200 1997 .6 +200 3808 .6 +200 751 1 +200 757 .6 +200 1113 .8 +200 914 .8 +200 172 1 +200 1126 1 +200 265 .8 +3809 3809 .6 +3810 3810 .6 +3811 3811 1 +3812 3812 .6 +221 276 1 +221 202 .8 +221 646 1 +221 113 .8 +221 810 .8 +221 40 .8 +221 232 .6 +221 214 .6 +3813 3813 1 +2904 2904 .6 +2904 718 1 +2904 673 .6 +2904 2498 .8 +2904 1493 .8 +2904 30 1 +2904 3814 .6 +2904 126 1 +2904 116 .8 +3087 492 .8 +3087 3086 .6 +3087 1643 .8 +3087 119 1 +3087 1598 .8 +3087 2034 .8 +3087 461 .6 +3087 67 1 +3087 66 .8 +3087 234 .8 +3087 1360 1 +3815 3815 .8 +3815 3816 1 +3817 3817 .6 +3818 3818 1 +3819 3819 .8 +3820 19 1 +3821 1596 .8 +2471 2274 .8 +2471 400 1 +3822 3822 .6 +3823 3823 .6 +2393 1145 .8 +2393 2393 1 +1517 1518 .8 +1517 46 1 +1517 353 1 +1517 1517 1 +1517 329 1 +1517 1312 .8 +1517 9 .8 +1517 163 .8 +1517 1895 .8 +1517 736 1 +1517 506 1 +1517 305 1 +1517 86 .8 +1517 855 .8 +1517 90 .8 +1517 431 1 +1517 175 .8 +1517 1116 1 +1517 577 .8 +1517 1171 1 +1517 858 1 +1517 45 1 +1517 806 .6 +1517 1068 1 +1517 1880 .6 +1517 1839 .8 +1517 923 .6 +1517 517 .6 +1517 2141 .6 +1517 791 .8 +1517 1246 1 +1517 92 .8 +1517 297 1 +1517 738 .8 +1517 918 1 +1517 1160 .8 +1517 445 1 +1517 3386 .8 +1517 2482 1 +1517 1391 .8 +1517 433 1 +1517 1021 .8 +1517 172 1 +1517 405 1 +1517 424 1 +1517 943 1 +1517 2551 .8 +1517 1582 1 +1517 1471 1 +1517 1092 1 +1517 100 .8 +1517 1417 .8 +1004 1004 .8 +1004 345 1 +1004 324 1 +1004 344 .8 +1004 892 .8 +1004 30 1 +1004 3824 1 +1004 327 .8 +1004 346 .8 +1004 1418 .8 +1004 982 .8 +1004 712 1 +1004 1851 1 +1004 1356 1 +1004 1495 1 +1004 523 .8 +1004 804 .8 +1004 2173 .8 +1004 780 .8 +1004 492 1 +1004 524 .8 +1004 1020 1 +1004 830 1 +1004 2255 .8 +1004 1917 .8 +1004 2975 .8 +1004 3447 .8 +1004 1049 1 +1004 2372 .8 +3825 3825 .6 +2144 2144 .8 +2144 2227 .8 +2144 400 1 +2622 3067 .8 +3129 3129 .8 +3129 1544 .8 +3129 1154 .8 +1493 30 1 +1493 1490 1 +1493 937 1 +1493 1492 1 +1493 1491 1 +1493 2759 .8 +1493 46 1 +1493 144 1 +1493 1752 1 +1493 438 .8 +1493 719 1 +1493 1108 1 +1493 1493 1 +1493 739 .8 +1493 791 1 +1493 328 1 +1493 936 .8 +1493 673 1 +1493 1502 1 +1493 1848 1 +1493 329 1 +1998 109 .8 +1998 1693 .8 +1998 1998 .6 +1998 803 .6 +1998 328 1 +1998 9 .8 +1998 556 .6 +1998 597 .8 +1998 555 1 +1998 736 1 +1998 703 .6 +1998 2652 1 +1998 1685 .6 +1998 2713 .8 +1998 3826 .8 +3827 3827 1 +3827 193 1 +3274 3274 .6 +3274 387 1 +3274 385 1 +3828 3828 1 +3828 3829 .8 +3830 3830 .6 +3831 30 1 +3831 3831 1 +3831 735 1 +3831 286 1 +3831 126 1 +3831 2729 .6 +3831 32 .6 +3831 29 1 +3831 31 .8 +3832 3832 .6 +3833 286 1 +3834 3834 .6 +3835 672 .8 +3835 1420 .8 +3836 3836 .6 +212 445 1 +212 212 .8 +212 3837 .8 +212 3838 1 +212 377 1 +212 157 .8 +212 3839 .8 +212 2790 .8 +212 1910 1 +212 206 1 +212 1250 1 +212 2267 .8 +212 3285 1 +2604 2604 .6 +851 1172 .8 +851 1126 .8 +851 658 .8 +851 2572 .8 +851 851 .8 +851 1211 .8 +851 852 1 +851 1464 .8 +851 883 1 +851 849 .8 +851 848 .8 +851 850 .8 +851 3661 .6 +851 3840 .6 +851 2575 .8 +3841 82 1 +3842 3842 .6 +3842 807 .8 +3003 3003 .6 +3003 346 1 +3843 445 1 +1825 193 1 +1825 1825 .6 +1825 2550 .8 +1825 1768 1 +1825 194 .8 +2925 2925 .6 +2925 643 1 +2925 2318 .8 +2925 46 1 +2925 30 1 +2925 130 .6 +2925 2924 .6 +3844 3844 .6 +3845 3845 .6 +1773 1773 .6 +1773 62 1 +1773 929 .8 +1773 944 .8 +1773 1512 .8 +1773 1982 .8 +1773 757 .6 +1773 46 1 +1773 30 1 +3846 3846 .6 +3847 3847 .8 +3848 3848 .6 +3849 3849 .6 +75 1211 .8 +3850 3850 1 +3850 258 .8 +3850 271 .6 +3850 532 .8 +3850 951 .8 +3850 2634 .6 +3850 1745 .6 +3850 1318 1 +1603 1603 1 +1603 555 1 +1603 1660 .6 +1603 647 1 +1603 1123 1 +1603 843 .8 +1603 1601 .8 +1603 1315 1 +3851 46 1 +2680 3079 .8 +2680 2680 .6 +2680 859 1 +3852 3852 1 +3852 764 .8 +3853 3853 .8 +3854 3854 .8 +3177 2157 .8 +3855 3855 .6 +3855 627 .8 +3855 637 1 +3855 1766 .8 +3855 333 1 +3855 282 1 +3855 274 1 +630 630 .8 +630 261 .6 +630 528 .8 +630 1162 .8 +630 950 .6 +630 605 .6 +630 255 .6 +630 93 .8 +630 2782 .6 +630 245 .6 +630 1685 .6 +630 157 .6 +630 3856 .8 +630 1034 .6 +630 898 .8 +630 362 .8 +630 3218 .6 +630 1183 .6 +630 614 .8 +630 1656 .6 +630 815 .6 +630 812 .8 +3267 449 .8 +3267 3267 .6 +2213 739 1 +2213 1433 .8 +2213 329 1 +3007 3007 .6 +3007 176 .6 +3007 2076 1 +3007 3009 .6 +3007 241 .8 +3007 351 .8 +3007 352 1 +3007 3008 .8 +3007 2790 .6 +3007 3001 .6 +3007 776 .6 +3007 597 .8 +3857 3857 .6 +3858 3858 .6 +3859 3859 .6 +697 317 .8 +697 3350 .8 +697 764 1 +697 1344 .8 +697 698 .8 +697 695 1 +697 282 1 +697 694 .8 +697 696 1 +3860 3860 .6 +3186 3542 .8 +3186 3861 .8 +421 421 .6 +421 397 .6 +421 625 .6 +421 597 .8 +421 3862 .6 +3863 3863 .6 +3863 656 .8 +3863 86 .8 +3863 739 1 +3863 46 1 +3863 286 1 +3863 329 1 +3863 855 1 +3863 438 .8 +3864 922 .6 +3864 923 .8 +2406 2405 .8 +2406 2406 .8 +2406 2407 .8 +2406 46 1 +2406 30 1 +2406 385 .8 +2406 2410 .8 +1732 43 1 +1732 2093 .8 +1732 399 .8 +1732 1732 .8 +1732 1733 .6 +1732 1731 1 +900 902 .8 +900 904 1 +900 701 1 +900 898 .8 +900 860 1 +900 899 .8 +900 905 .8 +900 900 .6 +900 897 .6 +900 165 1 +900 857 1 +900 385 1 +900 282 1 +900 1560 .8 +900 1546 1 +3865 3865 .8 +3865 121 1 +3865 743 1 +3865 710 1 +3865 332 1 +3865 329 1 +3865 175 1 +3865 1176 1 +3865 126 1 +1232 1186 .6 +1232 2859 .8 +1232 385 .8 +1232 3099 .8 +1232 387 .6 +1232 1027 .8 +2517 2517 .6 +2517 2323 .8 +2517 2797 .6 +3866 641 .8 +3866 3866 .6 +3866 1663 .8 +3867 3867 .6 +3867 595 .6 +3868 3868 1 +3869 376 .6 +3870 3870 .6 +2933 2933 .8 +2933 514 .8 +1281 1281 .8 +1281 1280 .8 +1281 1596 .8 +1281 328 1 +1281 165 .8 +1281 167 .8 +1281 45 1 +1281 49 1 +3871 3871 .6 +3871 126 1 +3871 195 .6 +951 1928 .6 +951 951 .6 +951 780 .8 +951 1842 .6 +951 524 .6 +951 44 .8 +951 324 1 +951 3850 .8 +2876 2876 .6 +2876 46 1 +2876 1075 1 +2876 30 1 +2876 305 1 +2876 1123 1 +2876 1020 1 +2876 2333 .6 +2876 102 .6 +2876 797 .8 +2876 175 1 +2876 880 .8 +2876 385 .8 +2876 22 1 +2876 3602 .8 +2876 750 1 +2876 328 1 +2876 2666 .8 +2876 1644 .8 +2876 444 .8 +2876 3337 .6 +2876 584 .8 +2876 587 .8 +2876 121 1 +2876 94 .6 +2876 1089 1 +3872 3872 .6 +3872 328 1 +3872 353 1 +3872 46 1 +3872 2199 .6 +3872 506 1 +2539 2539 .6 +2539 328 1 +2539 30 1 +2539 46 1 +2539 121 1 +2539 126 1 +2539 329 1 +2539 175 1 +2539 234 .6 +2539 1022 .8 +2539 750 .8 +2539 1643 .8 +2539 469 1 +2539 1993 1 +2539 927 .6 +2539 424 1 +2539 548 .8 +2539 438 .8 +2539 17 .6 +2539 1233 .6 +2539 503 .6 +2539 928 .6 +3873 3873 1 +3874 3874 .8 +3875 3875 .8 +3876 3876 1 +3876 2945 .6 +3876 651 .8 +3876 1027 .8 +3876 22 .8 +3876 2199 .6 +3877 3877 1 +3878 3878 1 +3879 3879 .6 +2038 2038 .6 +2807 2807 .8 +2807 2803 1 +2807 1529 1 +2807 673 1 +2807 3880 .6 +3881 3881 .8 +3882 3882 .6 +145 145 .8 +145 147 1 +145 1020 1 +145 144 1 +3883 126 .8 +3883 750 .8 +3883 1400 .8 +3884 3884 .6 +3884 351 .8 +3884 555 1 +3884 329 1 +3884 46 1 +3884 30 1 +3884 175 1 +3884 1898 .8 +2537 776 1 +2537 711 1 +2537 157 .8 +2537 793 1 +2537 1586 1 +2537 780 1 +2537 1223 .6 +2537 43 1 +2537 399 1 +2537 708 .8 +2537 597 .8 +2537 40 .8 +2537 329 1 +2537 431 1 +2537 126 1 +2537 802 1 +2537 1126 1 +2537 2578 1 +2537 960 .8 +2537 492 .8 +2537 804 1 +2537 1779 .8 +2537 1743 .8 +2537 3483 .6 +2537 1775 1 +2537 1190 1 +2537 429 1 +2537 62 .8 +2537 634 .8 +2537 678 .8 +2537 751 1 +2537 346 1 +2537 577 1 +2537 30 1 +2537 353 1 +2537 719 1 +2537 46 1 +2537 2282 .8 +2537 1384 .8 +2537 2789 .8 +2537 1587 1 +2537 1661 .8 +2537 326 1 +2537 328 1 +2537 1616 .8 +2537 463 .8 +2537 717 1 +2537 80 .8 +2537 1630 .8 +2537 1182 .8 +2537 418 .8 +2537 523 1 +2537 2108 1 +2537 1965 1 +2537 1463 .6 +2537 1409 .6 +2537 115 1 +2537 194 .8 +2537 1184 .6 +2537 524 .8 +2537 593 .8 +2537 162 1 +2537 1064 .6 +2537 522 1 +2537 785 .8 +2537 172 1 +2537 153 1 +2537 646 .8 +2537 303 1 +2537 1961 1 +2537 813 1 +2537 22 1 +2537 45 1 +2537 65 1 +2537 584 .8 +2537 739 1 +2537 1028 .8 +2537 1688 .8 +2537 405 1 +2537 2798 1 +2537 588 .8 +2537 946 .8 +2537 3885 .8 +2537 335 .8 +2537 582 .8 +3010 3010 .8 +3010 1343 1 +3010 694 .8 +3010 282 1 +3010 695 1 +3010 696 1 +90 90 .6 +90 739 1 +90 2666 .6 +90 1693 .8 +90 3100 .8 +90 801 .8 +90 2237 .6 +90 1086 .8 +90 792 .8 +90 789 .8 +90 2715 .8 +90 92 .8 +90 1176 1 +90 142 .8 +90 1799 1 +90 329 1 +90 327 .6 +90 1898 .8 +90 3246 .8 +90 1628 .8 +90 584 .8 +90 2213 .8 +90 741 .8 +90 1454 .8 +90 86 .8 +90 736 1 +90 84 .8 +90 648 1 +90 859 1 +90 1546 .8 +90 855 .8 +90 574 .8 +90 835 .8 +90 405 .8 +90 1312 .8 +3886 322 1 +3886 3886 1 +3209 3209 .6 +3209 126 1 +802 802 1 +802 739 1 +802 1009 1 +802 506 1 +802 2757 .8 +802 855 1 +802 46 1 +802 856 1 +802 2214 1 +802 741 1 +802 2213 1 +802 353 1 +802 329 1 +802 175 1 +802 784 .8 +802 142 1 +802 837 1 +802 1691 .8 +802 789 1 +802 126 1 +802 792 1 +802 431 1 +802 3887 .8 +802 536 .8 +802 1309 1 +802 1690 .8 +802 3888 .8 +802 963 .8 +802 2739 .8 +802 736 1 +802 785 .8 +802 2747 1 +802 863 1 +802 786 1 +802 614 1 +802 2961 1 +802 2962 .8 +802 1167 1 +802 1959 1 +802 215 1 +802 604 .6 +802 740 .8 +802 656 1 +802 1053 1 +802 928 .8 +802 1472 .8 +802 1650 1 +802 261 .6 +802 1369 .6 +2291 2291 .8 +3889 3889 .6 +3890 3890 .8 +3890 514 .8 +3890 1151 .8 +3890 2789 .8 +3891 3891 .6 +3891 738 1 +3891 1308 .8 +3891 648 1 +3891 142 .8 +3891 737 1 +3891 855 .8 +3891 329 1 +3891 30 1 +3891 126 1 +3891 741 .8 +680 680 .8 +680 1033 .8 +680 109 .8 +680 1306 .8 +680 22 1 +680 584 1 +680 1500 .8 +680 827 1 +680 103 .8 +680 841 .8 +680 34 1 +680 492 1 +680 80 .8 +680 265 1 +680 461 .8 +680 630 .8 +680 844 .8 +680 189 .8 +680 1526 .8 +680 1072 .8 +680 469 1 +680 599 .8 +680 20 .8 +680 157 .8 +680 453 .8 +680 2792 .8 +680 812 .8 +680 399 .8 +680 1963 .6 +680 3892 1 +680 214 .8 +680 890 .8 +680 255 .8 +680 804 .8 +680 2550 .8 +680 349 1 +680 793 .8 +680 801 1 +680 2777 .8 +680 235 .6 +680 625 .8 +680 620 .8 +680 335 .8 +680 362 .8 +680 632 .8 +3161 3162 .8 +3161 3160 .8 +3893 3893 1 +3894 830 1 +3894 148 1 +3438 2834 1 +3438 3544 .8 +3438 2356 .8 +3438 65 1 +3438 45 .8 +3438 119 1 +3438 2137 .8 +3438 1519 1 +3438 3438 .8 +3438 3895 .8 +3438 1337 1 +3438 3896 .8 +3438 3805 .8 +3438 1524 1 +3438 2255 .8 +3438 3442 .6 +3438 1020 1 +3438 431 1 +3438 2787 .8 +3438 3537 .8 +3438 1988 1 +3438 3897 .8 +3438 30 1 +3438 492 1 +3438 1001 1 +3438 1987 1 +3438 349 1 +3438 3898 .6 +3438 736 1 +3438 68 .8 +3837 3837 .8 +3837 212 .8 +3899 3899 .6 +3900 3900 .6 +3901 3901 .6 +3902 3902 .8 +3902 3903 1 +3904 3904 .8 +3904 626 1 +3904 3268 1 +610 1236 .8 +610 1254 .8 +610 124 .8 +610 1250 .8 +610 1251 .6 +610 128 1 +610 2267 .6 +610 1237 .8 +610 1396 .6 +610 2463 .6 +610 1657 .8 +610 3905 .8 +610 3906 .6 +610 2674 .6 +610 3907 .6 +610 1617 .6 +610 3585 .6 +610 642 1 +610 3908 .6 +610 612 1 +610 1223 .6 +610 1153 .6 +610 1808 .6 +610 1781 .6 +610 1453 .6 +610 1804 .8 +610 593 .8 +610 3484 .6 +610 1512 .8 +610 812 .6 +610 1543 .6 +610 791 .8 +610 3743 .6 +610 646 .8 +610 3909 .6 +610 779 .8 +610 945 .6 +610 233 .8 +610 1052 .8 +610 3910 .6 +610 953 .8 +610 2147 .6 +610 3312 .6 +610 3082 1 +610 276 .8 +610 3911 .6 +610 3538 .6 +610 2788 .6 +610 1116 1 +610 3912 .6 +610 203 .6 +610 3377 .6 +610 107 .6 +610 3913 .8 +610 2976 .8 +610 686 .6 +610 406 .8 +610 3845 .6 +610 525 .8 +610 407 .6 +610 715 1 +610 737 1 +610 1126 .8 +610 1290 .8 +610 104 .8 +610 1089 1 +610 1548 .8 +610 739 1 +610 2685 .6 +610 1333 .6 +610 1988 1 +610 3704 .6 +610 418 .6 +610 2789 .8 +610 987 .6 +610 3914 .6 +610 3915 .8 +610 597 .8 +610 2102 .8 +610 890 .6 +610 265 .8 +610 81 .6 +610 788 .8 +610 3916 .6 +610 3917 .6 +610 2671 .6 +610 3918 .6 +610 3919 .6 +610 1238 1 +610 1047 .6 +610 3051 .6 +610 736 1 +610 2332 .8 +610 2541 .6 +610 2031 1 +610 1247 1 +610 1634 .6 +610 3920 .6 +610 2719 .8 +610 1258 .6 +610 802 .8 +610 3455 .6 +610 3921 .6 +610 3922 .8 +610 3923 .8 +610 3924 .8 +610 2340 .6 +610 3925 1 +610 297 1 +610 3926 1 +610 3927 1 +610 3928 .8 +610 3929 .6 +610 3930 .8 +610 3931 .6 +610 2635 .8 +610 3258 .6 +610 1947 .8 +610 3932 .6 +610 1257 .6 +610 3933 .6 +610 1261 .8 +610 3934 .6 +610 1263 .6 +610 1265 .6 +610 1964 1 +610 1269 .6 +610 3362 .8 +3935 3935 .8 +3936 3936 .6 +3936 232 .6 +3936 3937 .6 +3938 1277 .8 +3938 595 .8 +3938 328 1 +3938 429 1 +3939 3939 .6 +156 156 1 +156 153 1 +156 154 1 +156 161 .6 +1057 1057 .8 +1057 62 .8 +1057 19 .8 +1057 3856 .6 +3940 3940 .6 +3941 82 1 +3941 1650 .8 +855 855 1 +855 648 .8 +855 106 .8 +855 3187 .6 +855 741 .8 +855 353 1 +855 119 1 +855 736 1 +855 1693 .8 +855 1086 .8 +855 574 .8 +855 97 .8 +855 3185 .6 +855 1692 .8 +855 46 1 +855 739 1 +855 584 1 +855 837 .8 +855 1454 .8 +855 1695 .8 +855 2213 .8 +855 1298 .8 +855 856 .8 +855 738 .8 +855 1696 .8 +855 1663 .8 +855 304 .8 +855 835 .8 +855 656 .8 +855 405 .8 +855 1342 .8 +855 1306 .6 +3942 30 1 +3943 3944 .8 +3943 3943 .6 +3943 385 1 +2404 2404 .8 +2404 1309 1 +1549 209 .8 +1549 3384 1 +1549 211 1 +1549 3389 .8 +1549 3237 .8 +1549 207 .8 +1549 1515 .8 +1549 3480 .6 +2907 2907 .8 +3945 3945 .8 +3945 46 1 +3945 2002 .8 +1747 1747 .8 +1747 1743 .8 +1747 1154 .6 +1747 632 1 +1747 80 .8 +3680 30 1 +3680 46 1 +3680 431 1 +3680 4 .8 +3946 2732 1 +3947 3947 .6 +3947 3948 .8 +3947 1047 .8 +3949 3950 .6 +3951 3951 .6 +3951 963 .6 +3952 3133 .6 +3952 387 .8 +3952 385 1 +3953 3067 .8 +3953 15 .6 +3953 394 .8 +3953 1794 .8 +3953 2107 .8 +3953 1814 .6 +3953 3564 .8 +3953 814 .8 +3953 3954 .8 +3955 3955 1 +3956 3956 1 +1744 80 .8 +1744 632 1 +1744 1744 1 +1744 1743 .8 +1744 1738 1 +2762 2762 .6 +2762 1491 1 +2762 1490 1 +2762 672 .8 +2762 673 .8 +2762 1493 .6 +2762 937 1 +2762 1846 .8 +3957 3957 .8 +3958 3193 .8 +2219 1065 1 +2219 1386 .6 +3959 3959 .8 +3960 3960 .6 +2560 2560 .8 +3918 3918 .8 +3918 922 .8 +3918 214 .8 +229 584 1 +229 2189 .8 +229 316 .8 +229 225 .8 +229 172 1 +229 214 .6 +229 361 .6 +229 89 .6 +2353 2353 .6 +2783 1794 .6 +2783 2783 .8 +2783 584 1 +2783 3409 .8 +2783 3664 .8 +2783 399 .8 +2783 2965 .6 +2783 2782 .8 +2783 1410 .6 +2783 3961 .6 +2783 2775 .8 +2783 3066 .6 +3962 3962 .8 +3962 1707 .8 +3962 3963 .8 +3962 974 .8 +3962 1343 1 +3962 506 1 +3964 329 1 +3965 46 1 +3966 3966 .6 +2802 2802 .8 +2802 2801 .8 +3967 3967 .8 +3968 3525 1 +3968 3968 .6 +3969 1355 1 +1373 261 .6 +1373 3970 .8 +1373 924 .8 +1373 3509 .8 +1373 1874 .8 +1373 1872 .8 +1373 2969 .8 +1373 2265 .8 +1373 1515 1 +1373 1954 .8 +1373 1251 .8 +1373 1388 .8 +1373 3450 .6 +1373 3971 .8 +1373 2085 .8 +3972 2781 1 +3972 701 1 +3972 2090 1 +3973 3973 .6 +3974 3974 .6 +3975 3975 .6 +808 712 .8 +808 1851 1 +808 620 .8 +808 349 1 +808 814 .8 +3976 3976 .6 +3977 3977 .8 +3978 3978 1 +3979 3979 1 +1999 1692 .8 +1999 2263 .8 +1999 329 1 +1999 855 1 +1999 46 1 +1999 736 1 +1999 739 1 +1999 3491 .8 +3980 1533 1 +3980 3981 .8 +3544 3544 .8 +3544 739 1 +3544 142 .8 +3544 2799 .8 +3544 3476 .8 +3544 3313 .8 +3544 3896 1 +3544 3898 .6 +2190 2188 .8 +2190 2189 .6 +2190 1931 .8 +2190 1756 .8 +2190 943 1 +2190 2881 .8 +2190 101 1 +2190 1536 .8 +2190 1755 .8 +2190 797 .8 +782 3982 .8 +782 3983 1 +782 727 .8 +782 443 1 +3984 126 1 +8 46 1 +8 1436 .8 +8 797 .8 +8 445 1 +8 2881 .8 +8 2190 1 +8 101 1 +8 118 1 +8 837 .8 +8 555 1 +8 2296 .6 +333 1766 .8 +333 637 .8 +333 349 1 +333 331 .8 +333 282 .8 +333 335 .8 +333 53 .8 +3985 2197 1 +3985 603 .8 +3985 90 .8 +3985 91 .8 +3985 878 .8 +3985 92 1 +3985 680 .8 +3985 93 .8 +3985 95 1 +3985 96 .8 +3985 98 .8 +3985 99 .8 +3985 682 1 +3985 654 1 +3985 652 1 +3985 651 1 +3985 51 1 +3985 1723 1 +3985 1001 1 +3985 1908 1 +3985 2078 .8 +3985 175 1 +3985 1195 .8 +3985 1609 .8 +3985 1648 .8 +3985 861 .8 +3985 296 1 +3985 3102 1 +3985 595 1 +3985 295 1 +3985 258 .8 +3985 1122 1 +3985 3986 .8 +3985 353 1 +3987 3987 .6 +3824 3824 .8 +3824 345 1 +3824 327 1 +3988 3988 .6 +3988 165 1 +3989 3989 1 +1357 572 1 +1357 2298 .8 +1357 3990 .8 +1357 129 1 +1357 629 1 +1357 1524 1 +3991 3991 .6 +2880 215 .8 +2880 323 .8 +3992 3992 .6 +3993 3993 .6 +3994 3994 1 +1494 1494 1 +1494 3995 .8 +1494 3996 .6 +1494 1450 .8 +1494 165 1 +1494 167 .8 +1494 717 1 +1494 2315 .6 +1494 119 1 +1494 679 .6 +1494 3328 .8 +1494 1349 .8 +1494 1280 .8 +1494 2277 .8 +1494 873 1 +1971 1971 .6 +3997 3997 .6 +3998 3998 1 +1491 1491 .8 +1491 1167 .8 +1491 2561 .8 +1491 1490 .8 +1491 1492 .8 +1491 937 .8 +1491 14 .8 +1491 623 1 +1491 13 .8 +1491 1595 .8 +1491 1108 .8 +1491 780 .8 +1491 349 1 +1491 918 1 +2107 1653 .8 +2107 2107 .8 +2107 2108 .8 +2107 181 .8 +2107 182 .8 +2107 2106 .8 +2107 2109 .8 +2107 1056 .8 +2107 2848 .8 +2107 2110 .8 +2107 3812 .8 +2107 2243 .8 +3999 3999 .6 +2755 2754 1 +4000 4000 1 +2570 658 .8 +2570 2570 .8 +2966 376 .6 +2966 994 .8 +55 1760 .8 +55 50 .8 +55 52 .8 +55 51 .8 +55 48 .8 +55 49 1 +55 331 .8 +55 853 .8 +55 1047 .6 +55 56 .8 +4001 116 1 +3409 3409 .6 +3409 604 .8 +3409 4002 .8 +3409 1091 .8 +3409 461 .8 +3409 3087 .6 +3409 2150 .6 +3409 379 .8 +3409 2934 .8 +3409 804 .8 +3409 2214 .8 +3409 1136 .6 +3409 4003 .6 +3409 413 .6 +3409 2350 .6 +3409 4004 .6 +3409 4005 .6 +3409 927 .8 +3409 584 1 +3409 597 .8 +3409 1768 1 +3409 378 .6 +3409 2783 .8 +3409 3961 .8 +3409 2775 .8 +1046 1046 .8 +1046 587 .8 +1046 770 1 +1046 405 1 +4006 632 1 +4006 431 1 +4006 639 1 +4006 46 1 +4007 4007 .8 +88 1860 .6 +88 964 .6 +88 4008 .6 +88 1815 .6 +88 88 .8 +88 4009 .6 +88 3337 .6 +88 4010 .6 +565 565 .6 +565 960 .8 +565 2410 .8 +565 2411 .8 +565 2405 .8 +565 2407 .8 +565 784 1 +565 644 .8 +565 2928 .6 +1082 326 .8 +4011 4011 1 +2023 2023 1 +1627 835 .8 +1627 736 1 +1627 84 .8 +1627 2132 .8 +1627 1627 .8 +1627 1097 .8 +1627 738 .8 +1627 2759 .8 +1627 792 .8 +1627 1749 .8 +1627 436 1 +1627 1691 .8 +1627 916 1 +1627 833 .8 +1627 741 .8 +1627 1053 .8 +1627 1308 .8 +1627 2210 1 +1627 701 .8 +1627 1546 .8 +1627 349 1 +1627 1075 1 +1627 739 1 +1627 801 .8 +1627 3541 .8 +1627 648 1 +1627 142 .8 +1627 789 .8 +1627 86 .8 +1627 1628 .8 +1627 656 .8 +1627 1689 .8 +1627 3338 .6 +1627 106 .8 +1627 175 1 +1627 1692 .8 +1627 859 .8 +1627 837 .8 +1627 91 .8 +1627 1454 1 +1627 740 .8 +1627 221 .6 +3477 4012 .8 +4013 4013 .6 +569 31 .8 +569 1020 1 +569 467 .8 +569 2666 .8 +569 32 .8 +569 3517 .6 +569 918 .8 +569 302 .8 +569 90 .8 +403 403 .6 +403 892 .8 +403 2510 .6 +403 893 1 +403 625 .8 +403 1963 .6 +403 20 .8 +403 3130 .6 +403 528 .8 +403 397 .6 +403 2847 .8 +403 597 .8 +403 780 .8 +403 3288 .8 +3934 1643 .8 +3934 492 1 +3934 1557 1 +3934 2232 1 +3934 783 .8 +3934 1114 .6 +3258 1586 1 +3258 1254 .8 +3258 2688 .6 +3203 3203 .6 +4014 4014 1 +4015 2505 .8 +4016 4016 .6 +1027 1027 .8 +1027 506 1 +1027 434 1 +1027 743 1 +1027 750 .8 +1027 1546 .8 +1027 736 1 +1027 30 1 +1027 328 1 +1027 2945 .6 +1027 104 .8 +1027 1019 .6 +1027 329 1 +1027 175 1 +1027 1022 .8 +1027 1097 .8 +1027 92 .8 +1027 651 .8 +1027 1496 .8 +1027 286 1 +1027 438 .8 +1027 584 1 +4017 4017 1 +4018 4019 .8 +2964 2964 .6 +2964 629 1 +2964 804 .8 +2964 346 .8 +2964 214 .8 +2964 1968 .8 +2964 1622 .8 +2964 960 .8 +2964 2317 .8 +2964 1395 .8 +2964 461 .8 +2964 795 .8 +2964 2578 .8 +2964 1142 .8 +2964 2634 .8 +2964 2938 .8 +2964 1634 .8 +2964 779 .8 +2964 1339 .8 +2964 1137 .8 +1398 3507 1 +1398 1398 .8 +1398 4020 .6 +1398 53 1 +1398 48 1 +1398 331 1 +1398 332 1 +1398 1768 1 +1398 74 1 +1398 66 .8 +1398 67 1 +1398 4021 .8 +1398 57 1 +1398 333 1 +1398 724 1 +1398 3565 .8 +1398 4022 1 +1398 4023 .6 +1398 3514 .8 +1398 4024 .6 +1398 1742 .8 +1398 1373 1 +1398 727 .8 +1398 1085 1 +1398 779 .8 +1398 75 1 +1398 282 1 +1398 1609 .8 +1398 51 1 +1398 68 1 +387 387 .8 +387 385 .8 +387 4025 .6 +387 759 .8 +387 3133 .8 +387 3132 .8 +387 108 .8 +1775 1351 .8 +1775 1775 .8 +1775 4026 .8 +1775 1106 .6 +1775 658 1 +1775 4027 .8 +1775 634 .8 +1775 157 .8 +1775 1277 .8 +1775 630 .6 +1775 1068 1 +1775 46 1 +1775 165 1 +1775 429 1 +1775 2205 .8 +1775 1773 .6 +1775 424 1 +1775 718 .8 +1775 353 1 +1775 506 1 +1775 2855 .8 +1775 2851 .6 +1775 248 .6 +1775 1692 .8 +1775 172 1 +1775 577 1 +1775 1490 1 +1775 674 .8 +1775 1689 .8 +1775 1092 1 +1775 44 1 +1775 678 .6 +1775 610 1 +1775 542 .8 +1775 188 .6 +1775 335 1 +1775 1089 1 +1775 194 .8 +1775 441 1 +1775 1162 1 +1775 963 .8 +1775 984 .8 +1775 62 1 +1775 625 .8 +1775 2350 .8 +1775 1743 .6 +1775 844 .8 +1775 1178 .6 +1775 1236 .8 +1775 1237 .8 +1775 4028 .6 +1775 3809 .6 +1775 1510 .8 +1775 1779 .6 +1775 1512 .8 +1775 711 1 +1775 2214 .8 +1775 349 1 +1775 801 1 +1775 214 .6 +1775 67 .8 +1775 3464 .6 +1775 925 .6 +1775 3467 .8 +1775 1223 .6 +1775 1047 .8 +1775 751 1 +1775 4029 .6 +1775 1629 .8 +1775 525 1 +1775 776 .8 +1775 1160 1 +1775 1093 .6 +1775 148 1 +1775 1542 .6 +1775 65 1 +1775 1575 .6 +1775 1656 .6 +1775 1569 .6 +1775 1966 .6 +1775 4030 .6 +1775 4031 .6 +1775 1777 .6 +1775 3483 .6 +1775 3129 .6 +1775 2429 .6 +1775 1248 .8 +1775 3699 .6 +1775 1855 .8 +1775 1857 .8 +1775 1732 .8 +1775 399 1 +1775 1731 1 +1775 43 1 +1775 860 1 +1775 329 1 +1775 50 .8 +1775 948 .6 +1775 1781 .8 +1775 328 1 +1775 30 1 +1775 719 1 +1775 629 .8 +1775 1326 .8 +1775 762 .8 +1775 2251 .8 +1775 1877 .6 +1775 4032 .6 +1775 1495 1 +1775 4033 .6 +1775 2256 .6 +1775 3257 .6 +1775 708 .8 +1775 2252 .8 +1775 623 .6 +1775 2535 .6 +1775 536 .8 +1775 342 .6 +1775 3117 .8 +1775 802 .8 +1775 648 1 +1775 2706 .6 +1775 1492 .8 +1775 4034 .6 +1775 1182 .6 +1775 4035 .6 +1775 3444 .6 +1775 3430 .8 +1775 1418 .8 +1775 1664 .6 +1775 1780 .6 +1775 902 .8 +1775 768 .6 +1775 186 .8 +1775 1394 .8 +1775 779 .8 +1775 1662 .8 +1775 780 .6 +1775 728 .8 +4036 4036 1 +3275 3275 .6 +3275 14 1 +3275 4037 .6 +3275 4038 .6 +3275 1491 .8 +3275 3276 .6 +4039 4039 .6 +4040 4040 .6 +1459 1459 .8 +1459 391 .8 +1459 1457 .8 +2576 2197 1 +2576 658 .8 +2576 2572 1 +2576 3661 1 +2576 852 1 +4041 4041 1 +4042 4042 .8 +4042 1656 .8 +4042 4043 .8 +3281 3281 .8 +3281 46 1 +3281 1767 .8 +4044 4044 .6 +4044 1428 .8 +2821 2821 .6 +2821 869 1 +4045 4045 .8 +4046 4046 .6 +4046 345 1 +4046 255 .6 +4046 328 1 +4046 1087 .8 +4046 30 1 +4046 2860 .8 +4046 241 .6 +4046 1012 .8 +1310 584 .8 +1310 714 1 +1310 2747 .6 +1310 835 .8 +1310 656 .8 +1310 86 .8 +1310 90 .8 +1310 3119 .6 +4047 4047 .6 +4047 1823 .6 +4048 4048 1 +4049 4049 .6 +4050 4050 .6 +393 393 .8 +393 390 1 +393 1024 1 +393 388 .8 +393 801 .8 +393 1309 1 +393 389 .8 +393 2667 .8 +393 392 1 +393 2843 .6 +393 2751 .6 +4051 4051 .6 +4051 925 .8 +4051 1109 .8 +4051 30 1 +4051 4052 .8 +4051 1105 .8 +4051 2396 1 +4051 116 1 +4051 3805 1 +4051 2397 1 +4051 719 1 +4053 4053 .6 +3728 3728 .6 +3954 3954 .8 +4054 4054 .6 +1500 1500 .6 +1500 499 .6 +1500 2829 .6 +4055 4055 .8 +3053 3053 .6 +3053 2239 .8 +3053 3442 .6 +3053 739 1 +3053 856 .8 +4056 4056 .6 +1205 1205 .6 +1205 1605 .8 +1205 1222 .8 +1205 2458 .8 +1205 1218 .8 +1205 1212 .8 +1205 1111 .8 +1205 1201 .8 +3454 3454 .8 +3454 441 1 +4057 4057 .6 +4058 4058 .6 +2942 2307 .8 +2942 2942 .8 +2942 719 1 +2942 323 1 +2942 324 .8 +2942 2101 .8 +2942 1648 .8 +2942 887 .8 +4059 4059 1 +3666 151 .8 +3666 3497 .8 +3419 1717 .8 +491 87 .6 +491 435 .8 +491 1065 .8 +491 30 1 +491 307 1 +491 305 1 +491 438 .6 +4060 4060 1 +4061 4061 .6 +1921 1921 .8 +1921 46 1 +1921 30 1 +1921 719 1 +1921 286 1 +1921 326 1 +1921 352 1 +1921 1081 .8 +1921 328 .8 +1921 659 .8 +1921 641 .8 +1389 1389 .6 +1389 1379 1 +1389 429 1 +1389 2227 .8 +1389 1375 .6 +1389 261 .8 +1389 597 .8 +1389 4062 .8 +1389 2256 .6 +1389 4063 .6 +4064 302 .8 +1034 1016 .8 +1034 1030 1 +1034 1035 .6 +1034 858 1 +1034 631 .6 +1034 1041 .8 +1034 22 1 +1034 883 .8 +1034 852 1 +1034 438 .6 +1034 792 1 +1034 19 .8 +1034 1038 .6 +1034 1042 .6 +1034 658 .8 +1034 997 .6 +1034 429 1 +1034 242 .8 +1034 1595 .8 +1034 2412 .8 +1034 157 .8 +1034 1162 1 +1034 265 .8 +1034 34 1 +1034 1930 1 +3861 3542 .8 +3861 3186 .8 +3861 584 1 +4065 1992 1 +4065 727 1 +4065 1022 1 +4065 431 1 +4065 1447 1 +4065 432 1 +4065 4066 .8 +4065 320 1 +4065 780 1 +4065 445 1 +4065 513 1 +4065 712 1 +4065 523 1 +4065 791 1 +4065 31 1 +4065 301 .8 +4065 4019 .8 +4065 4067 .8 +303 1022 1 +303 352 1 +303 306 .8 +303 95 .8 +303 46 1 +303 719 1 +303 30 1 +303 326 .8 +303 305 1 +303 1993 1 +303 348 1 +303 1894 1 +303 286 1 +303 1019 .8 +4068 741 1 +351 352 1 +351 324 .8 +351 858 1 +351 350 1 +351 1720 .8 +351 1022 .8 +351 303 .8 +351 3006 .8 +351 1961 .6 +351 3572 .6 +351 3884 .6 +351 4069 .6 +351 241 .6 +351 3009 .6 +351 836 .6 +722 722 1 +722 1247 1 +722 682 1 +722 604 .8 +722 429 .8 +722 3398 .8 +722 349 1 +722 793 .8 +722 912 1 +722 597 .8 +722 1270 1 +722 1899 1 +722 51 1 +722 53 1 +722 428 1 +722 618 1 +722 1554 1 +722 643 1 +722 332 1 +722 333 1 +722 1769 1 +4070 4070 .8 +3511 3511 .6 +4071 4071 .6 +4071 587 .8 +4071 1167 .6 +4071 93 .6 +4071 311 .6 +3347 215 .8 +3347 642 1 +538 322 .8 +538 2199 .8 +538 773 .8 +538 2078 .8 +4072 4072 .6 +4073 4073 .8 +4074 4074 1 +4074 2990 .6 +4075 883 .6 +4075 1211 .8 +4075 1031 .8 +44 431 1 +44 46 1 +44 438 .8 +44 658 .6 +44 429 .8 +44 638 .8 +44 435 .8 +44 305 1 +44 440 1 +44 2002 .8 +44 428 .8 +44 444 .8 +44 1521 .6 +44 1086 .8 +44 353 1 +44 445 .8 +44 1237 1 +44 506 1 +44 432 1 +44 995 .6 +44 578 .6 +44 4076 .8 +44 514 .8 +44 5 1 +44 441 .8 +44 791 .8 +44 1041 .6 +44 215 .8 +44 1834 .8 +44 510 .6 +44 3316 .6 +44 306 .8 +44 434 .8 +44 1701 .6 +44 512 .8 +44 586 .6 +44 1835 .8 +44 271 .8 +44 1270 .8 +44 4077 .6 +44 1411 .6 +44 1291 .8 +44 9 .6 +44 1893 .8 +44 556 .8 +44 1407 .6 +44 1483 .6 +44 111 .8 +44 893 .8 +44 322 .8 +44 1545 .8 +44 951 .6 +44 958 .8 +44 922 .8 +44 1016 .8 +44 938 .6 +44 103 .8 +44 209 .8 +44 1924 .8 +44 172 1 +44 703 .6 +44 157 .6 +44 705 .6 +44 93 .6 +44 242 .8 +44 3319 .6 +44 604 .6 +44 1816 .8 +44 1906 .8 +44 1908 1 +44 373 1 +44 632 .8 +44 1642 .8 +44 524 .6 +44 2522 .6 +44 793 .8 +44 2224 .8 +44 1910 .8 +44 1092 1 +44 2226 .8 +44 549 .8 +44 1781 .8 +44 1775 .8 +44 2165 .6 +44 1856 1 +4078 4078 .6 +4078 441 1 +4079 4079 .8 +596 1898 .8 +596 2326 .8 +596 1270 .8 +596 324 1 +596 187 .8 +596 362 .6 +596 52 .8 +596 111 .8 +596 3786 .8 +596 297 .8 +596 92 1 +596 757 .6 +596 1844 .8 +596 2355 .8 +596 2601 .8 +596 316 1 +596 103 .8 +596 593 1 +596 157 .8 +596 1560 1 +596 3397 .6 +596 45 1 +4080 4080 .8 +4080 1373 .8 +3474 3474 .6 +3474 735 .8 +3474 468 .8 +3474 286 1 +3474 577 .8 +3474 172 1 +3474 329 1 +3474 1754 1 +3474 1020 1 +3474 719 1 +3474 328 1 +3474 1847 1 +3474 934 1 +3474 791 .8 +3474 1117 1 +3474 30 1 +3474 438 .8 +3474 1075 1 +3474 46 1 +3474 774 1 +3474 4081 .6 +4082 1851 1 +4082 724 .6 +4082 2255 .8 +4082 1437 1 +4082 944 .8 +4082 1072 .8 +4082 633 .8 +4082 1629 1 +4082 627 1 +4082 1189 .8 +4082 442 .8 +4082 1677 .8 +4082 946 .8 +4082 4083 .6 +4082 592 .8 +4082 2972 .6 +4082 2614 .8 +1728 1088 .6 +1728 30 1 +1728 303 1 +4084 4084 .8 +3101 3101 .6 +3101 104 .8 +3101 651 .8 +3101 584 .8 +3101 4085 .6 +2164 751 .8 +4086 4086 .6 +2263 1304 .8 +2263 736 1 +2263 739 1 +2263 1692 .8 +2263 790 .8 +2263 784 1 +2263 1635 .8 +2263 801 .8 +2263 741 1 +2263 84 .8 +2263 789 .8 +2263 3191 .8 +2263 329 1 +2263 126 1 +2263 2032 .6 +2263 4087 .6 +2263 855 1 +2263 142 1 +2263 656 .8 +2263 674 .8 +2263 2216 .8 +2263 3891 .6 +4088 1603 1 +4089 4089 .8 +3898 3544 .8 +3898 3896 .8 +3898 3438 .8 +3898 431 1 +2836 2836 1 +2836 215 1 +2836 1233 .8 +2836 2713 .8 +2836 1894 1 +2836 2652 .8 +2836 1447 .6 +2836 469 1 +2836 43 1 +4090 4090 .8 +1074 328 1 +1074 719 1 +1074 1073 .8 +1074 30 1 +1074 306 .8 +1074 1072 .8 +1074 645 .8 +1074 326 1 +1074 323 .8 +1074 1079 .8 +1074 352 1 +1074 345 .8 +1074 4091 .8 +1074 511 .8 +1074 1020 .8 +1074 3016 .6 +1074 1851 .6 +1074 1075 .8 +1074 3017 .8 +1074 882 .8 +1074 147 .8 +1074 46 1 +1074 1754 1 +1074 1433 1 +4092 4092 .6 +4092 3099 .8 +4092 1902 .6 +4093 2832 .8 +4093 4094 .8 +4095 4095 .8 +3175 807 .8 +3175 346 .6 +3175 3175 .6 +3175 9 .8 +3304 4096 .8 +3304 708 .8 +3304 3182 .8 +3304 819 .8 +3304 4096 .8 +3304 441 1 +3304 3004 .6 +3304 277 .8 +3304 1142 .8 +3304 279 .8 +3304 125 .8 +3304 4097 .8 +3304 126 1 +3304 4098 .8 +4099 4099 1 +4099 126 1 +4100 642 1 +4100 3323 .6 +4100 30 1 +4100 2289 .8 +4100 329 1 +4100 175 1 +4100 1222 1 +4100 679 .6 +4100 647 1 +139 139 .8 +139 135 1 +139 136 1 +139 134 .8 +139 138 .8 +2222 2222 .8 +2222 126 1 +2222 1065 1 +2222 428 1 +2222 1561 .8 +2222 1191 .8 +2222 2092 1 +2222 720 1 +2222 431 1 +2222 618 .8 +2222 2207 .8 +2222 1816 .8 +2222 1066 .6 +2222 2091 .8 +2222 4101 .6 +2222 1856 1 +2222 2208 .8 +2222 442 .8 +2222 2090 1 +2222 619 .8 +2222 2228 .8 +2222 1555 .8 +2222 578 1 +2222 4 .8 +2222 5 1 +2222 1833 .8 +2222 353 1 +2222 2219 .8 +2222 2259 .6 +2222 4102 .6 +2222 577 1 +4103 1075 .8 +4103 1428 .8 +4104 4104 1 +4105 1968 1 +4105 174 1 +4105 1750 .8 +4105 312 .6 +4105 2060 .6 +4105 4106 .8 +4105 4002 .8 +4105 631 .6 +2184 1454 .8 +2184 2600 .6 +2184 1798 .6 +2184 587 .8 +2184 172 1 +2184 2947 .6 +2184 1062 .8 +2184 2599 .8 +2184 741 .8 +2184 441 1 +2184 1770 1 +2184 1471 1 +2184 440 1 +2184 428 1 +619 619 .6 +619 1067 .8 +619 1237 .8 +619 593 .8 +619 618 1 +619 1555 1 +619 1066 .6 +619 429 1 +619 428 1 +619 2219 1 +619 362 .8 +619 1816 1 +619 442 1 +619 2207 .8 +619 2222 .8 +619 1065 1 +619 643 1 +619 431 1 +619 725 .8 +619 2091 .8 +619 578 1 +619 2092 .8 +619 1554 .8 +619 2215 1 +619 2090 .8 +619 1823 .8 +619 126 1 +619 4107 .8 +619 1191 1 +619 3239 1 +619 234 .6 +619 438 .8 +619 46 1 +619 444 1 +619 2069 1 +619 2208 1 +619 1561 1 +619 1270 1 +619 2209 .6 +4108 2619 .8 +4108 4108 .6 +3505 3505 .8 +3505 1176 1 +3505 1342 .8 +3505 3725 .8 +3505 46 1 +3505 500 .6 +3505 1346 .8 +3505 1126 .8 +3505 775 .8 +3505 492 .8 +3505 1463 .6 +4109 4109 .6 +4110 4111 .6 +2396 2396 .8 +2396 2397 1 +2396 114 .8 +2396 673 .8 +2396 1918 .8 +2396 1107 .8 +2396 30 1 +2396 829 .6 +2396 424 1 +2396 22 1 +2396 46 1 +2396 112 .8 +2396 116 .8 +2396 2882 .8 +2396 719 1 +2396 937 .8 +2396 643 1 +2396 497 .8 +2396 1201 .8 +2396 1525 .6 +2396 428 1 +2396 1105 .8 +2396 329 1 +2396 4112 .8 +2396 4113 .6 +2396 3784 .6 +2396 2762 .8 +2396 1104 .8 +2396 1798 .8 +216 216 .6 +4114 4114 .6 +4114 4115 .6 +4114 286 1 +1589 1589 .8 +1589 30 1 +1589 174 1 +1589 990 1 +1589 1001 .8 +1589 1002 .8 +1589 1100 .6 +1589 1404 .8 +1589 4116 .8 +1589 1400 .6 +1589 466 .8 +1589 126 1 +1589 171 1 +1589 349 1 +1589 4117 .6 +1589 11 .6 +1589 46 1 +1589 3105 .8 +1589 348 1 +1589 1588 .6 +4118 4118 .6 +208 208 .8 +208 1187 .8 +208 4119 .6 +208 207 1 +208 209 1 +208 210 1 +208 211 1 +208 286 1 +208 1820 .8 +208 593 .8 +208 295 .8 +208 1142 .8 +208 977 .8 +208 206 .8 +2415 2227 .8 +2415 2415 .6 +2415 4120 .6 +2415 2414 .6 +2415 3688 .6 +4121 4121 1 +4121 2307 .8 +4121 3006 .6 +4121 2284 .8 +4121 304 .8 +4121 2076 1 +4121 3572 1 +4121 176 .6 +4121 3786 .8 +4122 929 .8 +4123 4101 1 +1458 1458 .8 +1458 1457 .8 +202 646 .8 +202 1571 .8 +202 1804 .8 +202 430 .8 +202 286 .8 +202 1597 .8 +202 783 .8 +202 289 .6 +202 3122 .8 +202 2611 .8 +202 1390 .6 +202 613 .8 +202 4124 .8 +202 207 .8 +2475 1711 1 +2475 813 1 +2475 1723 1 +2475 400 .8 +2312 30 1 +2312 1637 .8 +2312 916 .8 +4125 2324 .6 +4125 4126 .8 +4127 4127 .6 +902 701 1 +902 903 1 +902 904 .8 +902 902 1 +902 897 .8 +902 898 .8 +902 905 .8 +902 429 1 +902 899 .8 +902 901 .8 +902 711 1 +902 1851 1 +902 165 1 +902 634 .8 +902 900 .6 +902 363 .8 +1273 1273 .8 +1273 1135 1 +4128 4128 1 +3083 3083 .6 +1107 1918 .8 +1107 1107 .8 +1107 30 1 +1107 829 .8 +1107 116 .8 +1107 1105 .8 +1107 3784 .6 +1107 2912 .8 +1107 4113 .8 +1107 925 .8 +1107 114 .6 +1107 673 .8 +1107 4129 .6 +1107 4052 .8 +1107 2397 1 +1107 2882 .8 +1107 719 1 +1107 4112 .6 +1107 4051 .6 +1107 2762 1 +1107 1104 .8 +1107 859 1 +4130 4130 .8 +4130 1378 1 +4130 2434 .8 +4130 812 .8 +4130 1254 .6 +4130 4131 .8 +707 3398 .6 +707 4132 .6 +707 2227 .6 +707 2259 .6 +707 4101 .6 +707 2781 .6 +707 2222 .6 +1838 444 .8 +1838 2073 .6 +1838 3171 .6 +1838 327 1 +1838 345 .8 +1838 2355 .8 +1838 807 .8 +1838 994 .6 +1838 1838 .8 +1838 30 1 +1838 46 1 +2678 2678 .6 +2678 614 .8 +2678 2679 .8 +2678 1982 .8 +2678 613 .8 +4133 62 1 +1596 1596 .8 +1596 126 1 +1596 282 .8 +1596 286 1 +1596 175 1 +1596 3572 .8 +1596 826 .8 +1596 46 1 +1596 3821 .8 +1596 825 .8 +1596 329 1 +1596 916 .8 +1176 4067 .8 +1176 1546 .8 +1176 736 1 +1176 327 .8 +1176 1211 1 +1176 431 1 +1176 1762 .8 +1176 656 .8 +1176 852 .8 +1176 90 .8 +1176 92 .8 +1176 38 .8 +1176 1089 1 +1176 175 1 +4134 4134 .6 +4134 793 1 +1605 2135 .8 +1605 83 .8 +1605 1222 1 +1605 110 .8 +1605 747 1 +1605 137 1 +1605 79 .8 +1605 836 .8 +1605 108 .8 +1605 1641 .8 +1605 784 .8 +1605 887 .8 +1605 1213 .8 +1605 748 1 +1605 746 1 +1605 652 1 +1605 290 1 +1605 1214 .8 +1605 1604 .6 +1605 2756 .6 +1605 3768 .6 +1605 102 .8 +1605 749 1 +1605 2457 .8 +1605 883 .8 +1605 4067 .8 +1605 647 1 +1605 2501 .8 +1605 234 .8 +4135 4135 1 +4136 4136 .8 +4137 4138 1 +3037 1520 1 +3037 271 .8 +3037 19 .8 +3037 94 .8 +3037 329 1 +2609 887 .8 +2609 35 .8 +2609 1150 .8 +2609 2608 .8 +2609 224 .8 +4139 30 1 +1948 797 .8 +1948 46 1 +1948 791 .8 +1948 577 1 +1948 353 1 +1948 30 1 +862 584 .6 +862 862 .8 +862 1794 1 +862 46 1 +862 2703 .6 +862 717 1 +862 324 1 +862 3409 .8 +862 4140 .8 +862 1717 1 +862 399 .8 +862 2750 .8 +862 2749 .8 +862 453 .8 +862 2965 .8 +862 853 .8 +862 1020 1 +862 4141 .8 +862 1974 .6 +862 776 .8 +862 1021 1 +862 1734 .6 +862 461 .8 +862 1731 1 +862 346 1 +862 126 1 +3282 3282 .6 +3282 2216 .8 +2841 739 1 +2841 1343 1 +2841 506 1 +2841 445 1 +2841 3191 .8 +2841 1557 .8 +2841 855 1 +2841 46 1 +2841 1430 1 +2841 561 .8 +2841 2216 .8 +2841 858 1 +2841 714 1 +2841 825 .8 +2841 648 .8 +2841 438 .8 +2841 736 1 +2841 2799 .8 +2841 30 1 +2841 1454 .8 +2841 44 .8 +2841 741 .8 +2841 642 1 +2841 427 .8 +2841 2363 .6 +2841 45 1 +2841 328 1 +2841 833 .8 +2841 582 .8 +2841 437 .8 +2841 610 1 +2841 329 1 +2841 916 1 +2841 175 1 +2841 142 1 +2841 837 .8 +2841 4142 .8 +2841 126 1 +2841 1659 .8 +2841 148 .8 +2841 441 .8 +2841 1160 .8 +2841 1856 .8 +4143 45 1 +887 46 1 +887 886 .8 +887 784 .8 +887 2942 .8 +887 438 .8 +887 1751 .8 +887 1641 .8 +887 1339 .6 +887 113 .8 +887 1605 .8 +887 119 .8 +887 1150 .8 +887 108 .8 +887 1111 .8 +887 2613 .6 +887 2323 .8 +887 586 .6 +887 1882 .6 +887 35 .8 +887 1112 .6 +887 503 .6 +887 4144 .6 +2368 2365 .8 +2368 2367 .8 +2368 3285 1 +2368 2267 .8 +2368 4145 .8 +4146 351 .8 +4146 350 1 +4146 2307 .8 +4146 2076 1 +4146 3669 .6 +4146 3572 .8 +4146 3786 .8 +4146 4147 .8 +4146 4148 1 +4146 4149 1 +2041 2041 1 +1022 46 1 +1022 30 1 +1022 352 1 +1022 1086 .8 +1022 326 1 +1022 327 .8 +1022 438 .8 +1022 719 1 +1022 1720 1 +1022 95 .8 +1022 1133 1 +1022 303 1 +1022 435 .8 +1022 209 1 +1022 65 1 +1022 1081 .8 +1022 351 1 +1022 443 .8 +1022 784 1 +1022 316 1 +1022 436 1 +1022 1031 .8 +1022 431 .8 +1022 1993 1 +1022 1017 .6 +1022 1116 1 +1022 2284 1 +1803 1803 .8 +1803 126 1 +1803 506 1 +1803 46 1 +1803 62 .6 +1803 2217 1 +749 1605 .8 +749 2460 1 +749 1218 .8 +749 747 1 +749 652 1 +749 1212 1 +749 110 .8 +749 1479 1 +749 746 1 +749 748 1 +749 1219 .8 +749 79 .8 +749 1222 1 +749 290 1 +749 2457 .8 +749 137 1 +749 1499 1 +749 2453 .8 +749 1214 .8 +749 764 1 +749 1210 .8 +749 2289 .8 +749 2456 .8 +749 326 1 +749 659 1 +749 2459 .8 +749 2461 .8 +749 2278 .8 +749 1205 .6 +749 2454 .8 +749 1213 .8 +749 3749 .6 +749 584 1 +749 2458 .8 +749 647 1 +749 108 .8 +749 1203 1 +749 377 .8 +749 3725 .8 +749 3645 .8 +749 4150 .6 +749 1201 .8 +749 1206 .8 +749 46 1 +749 1238 1 +749 1116 1 +4151 4151 .6 +4151 1386 .8 +4151 4132 .8 +3856 3856 .8 +3856 893 .8 +3856 584 1 +3856 357 .8 +3856 1068 1 +3856 67 .8 +3856 438 .6 +3856 431 1 +3856 320 1 +3856 443 .8 +3856 1057 .6 +3856 2508 .6 +3856 93 .6 +3856 215 .8 +3856 316 1 +3856 19 .8 +3856 265 .8 +3856 1315 1 +3856 2782 .6 +3856 1685 .6 +3856 157 .6 +3856 631 .6 +3856 804 .6 +3856 1413 .6 +3856 620 .6 +4152 70 .6 +4152 4152 .8 +4152 2186 .8 +1632 3663 1 +1632 3664 1 +1632 3193 1 +1632 1632 1 +1632 126 1 +1632 438 1 +1632 46 1 +1632 30 1 +1632 175 1 +1632 4153 1 +1632 441 1 +1632 318 1 +1632 639 1 +1632 1770 1 +1632 440 1 +1632 44 1 +1632 431 1 +1632 1160 1 +1367 1367 .8 +4154 4154 .8 +3423 3423 .6 +3423 126 1 +3423 46 1 +3423 1116 1 +3423 328 1 +1477 2078 .8 +1477 4019 .8 +1477 316 .8 +4155 4156 .6 +4155 4157 .6 +4155 126 1 +4155 4158 1 +4155 45 1 +1623 2754 1 +1623 4159 .6 +1623 4160 .6 +2261 2261 .8 +2261 106 .8 +2261 102 .8 +2261 1311 .6 +2261 736 1 +2261 739 1 +2261 142 1 +2261 86 .8 +2261 656 .8 +2261 584 .8 +2261 1692 .8 +2261 2614 .8 +2261 1658 .8 +2261 1126 .8 +2261 1689 .8 +2261 747 1 +2261 3192 .8 +2261 1304 .8 +2261 1699 .6 +2261 3118 .8 +2261 2961 .8 +2261 405 .8 +2261 248 .6 +2261 1409 .6 +4161 4161 .6 +4162 4162 .6 +183 183 .6 +991 991 .6 +991 1030 1 +991 773 .6 +991 524 .8 +991 1038 .6 +991 1034 .8 +991 1035 .6 +991 1039 .6 +991 498 1 +991 469 .8 +991 1042 .6 +991 1021 1 +4163 4163 .8 +4163 46 1 +4163 438 .6 +4163 593 .8 +4163 4164 .8 +4163 30 1 +904 901 .6 +904 701 1 +904 903 .8 +904 2285 .6 +904 902 .8 +904 897 .6 +904 898 .8 +904 899 .8 +904 905 .8 +904 1020 1 +904 2782 .8 +904 888 .8 +904 918 1 +904 927 .8 +904 1179 .8 +904 4165 .6 +904 1512 .8 +904 3599 .8 +904 641 .8 +904 1451 .8 +904 1187 1 +904 711 .8 +904 148 1 +904 2286 .8 +904 328 1 +904 53 .8 +904 3242 .8 +904 2284 .8 +904 2149 .8 +904 1089 1 +904 549 .8 +904 2789 .8 +904 432 1 +904 165 .8 +904 900 .6 +904 260 .6 +904 916 1 +904 449 .8 +91 91 .8 +91 3116 .6 +91 30 1 +91 351 .8 +91 1633 .8 +91 2376 .8 +91 2061 .8 +91 46 1 +91 1644 .8 +91 736 1 +91 648 .8 +91 1693 .8 +91 859 .8 +91 837 .8 +91 739 1 +91 329 1 +91 1298 .8 +91 97 .8 +91 656 .8 +91 86 .8 +91 106 .8 +91 789 .8 +91 84 .8 +91 142 .8 +91 741 .8 +91 584 .8 +91 1033 .6 +91 2629 .8 +91 792 .8 +91 102 .8 +91 405 .8 +91 2751 .6 +91 740 .8 +91 835 .8 +91 2748 .8 +91 855 1 +91 2961 .8 +91 802 1 +91 4166 1 +1824 46 1 +1824 719 1 +1824 316 1 +1824 4167 .8 +1824 1490 1 +1824 126 1 +1824 1495 1 +1824 30 1 +1824 937 .8 +1824 1754 1 +1824 638 .8 +1824 1085 1 +1422 1422 .8 +1422 237 .6 +1422 1314 .6 +1422 1534 .6 +1422 1421 .6 +1422 1423 .6 +4168 584 1 +4168 2593 .8 +4168 4026 .8 +4168 4169 .8 +4168 3085 .6 +4168 656 .8 +4168 1794 .8 +4168 1793 1 +4168 4168 .8 +4170 148 1 +4170 584 1 +3526 1961 .6 +4171 4171 .8 +2140 2140 .6 +2140 349 1 +4172 4173 1 +4174 4174 .8 +4175 4175 .6 +4175 112 1 +4176 46 1 +4176 4019 .8 +2147 148 1 +2147 2147 .8 +2147 2559 .8 +2147 2560 .8 +2147 1243 1 +2147 2482 1 +2147 80 .8 +2147 2210 .8 +2147 95 .8 +2147 786 1 +2147 722 1 +2147 467 1 +2147 949 1 +2147 1740 .8 +2147 1074 .8 +2147 1536 .8 +2147 1337 .8 +2147 501 .8 +2147 627 1 +2147 2745 .6 +2147 82 1 +2147 679 1 +2147 1133 1 +2147 2255 .8 +2147 3478 .6 +2147 318 1 +2147 304 1 +2147 2246 1 +2147 101 1 +2147 2233 .8 +2147 1515 1 +2147 1176 1 +2147 2463 .8 +2147 595 .8 +2147 2290 .8 +2147 2474 .8 +2147 3032 1 +2147 1948 .8 +2147 351 1 +2147 1270 1 +2147 852 1 +2147 426 1 +2147 70 .8 +2147 1571 .8 +2147 2577 .8 +2147 337 1 +2147 193 1 +2147 50 .8 +2147 2501 .8 +2147 1377 .8 +2147 48 1 +2147 4 .8 +2147 1696 .8 +2147 2171 .8 +2147 2672 1 +2147 1306 .8 +2147 1851 1 +2147 2483 .8 +2147 1894 1 +2147 336 1 +2147 3102 .8 +2147 1246 1 +2147 1799 1 +2147 49 .8 +2147 2352 1 +2147 468 1 +2147 1290 .8 +2147 2108 .8 +2147 1978 1 +2147 43 1 +2147 2101 .8 +2147 813 1 +2147 1437 1 +2147 513 .8 +2147 2042 1 +2147 227 .8 +2147 1418 1 +2147 81 .6 +2147 1361 .8 +2147 1417 1 +2147 740 .8 +2147 574 .8 +2147 66 .8 +2147 1996 1 +2147 400 1 +2147 1049 1 +2147 2435 .8 +2147 792 1 +2147 230 .8 +2147 436 1 +2147 1109 .8 +2147 917 .8 +2147 224 .8 +2147 916 1 +2147 296 1 +2147 1769 1 +2147 83 .8 +2147 137 1 +2147 555 1 +2147 2259 .6 +2147 344 1 +2528 916 1 +2528 3598 .8 +2528 289 .6 +4177 4177 .8 +4177 1175 1 +1658 1658 .8 +1658 230 .8 +1658 918 .8 +1658 2614 .8 +1658 915 1 +1658 1616 1 +1658 934 1 +1658 286 1 +1658 30 1 +1658 719 1 +1658 46 1 +1658 947 .8 +1658 121 1 +1658 791 1 +1658 935 .6 +1658 328 1 +1658 34 .6 +1658 1100 .8 +1658 990 .8 +1658 118 1 +1658 22 1 +1658 232 .6 +1658 1150 .6 +1658 1993 1 +1658 1928 .6 +1658 2261 .8 +1658 4178 .6 +1658 747 1 +1658 436 .8 +1658 2272 .6 +1658 841 .6 +1658 577 1 +1658 1847 1 +1658 1844 .6 +1658 623 .8 +1658 298 .8 +1658 4179 .6 +1658 2985 .8 +1658 586 .6 +1658 582 .8 +1658 1842 .6 +1658 501 .6 +4180 4180 .6 +4180 286 1 +4181 4181 1 +4181 4037 .6 +674 739 1 +674 736 1 +674 837 .8 +674 718 .8 +674 855 1 +674 142 1 +674 797 .8 +674 1568 .8 +674 673 .8 +674 116 .8 +674 1492 .8 +674 672 .8 +674 1342 1 +674 1108 .8 +674 1490 .8 +674 1493 .8 +674 3212 .8 +674 126 1 +674 2902 .8 +674 1846 .6 +674 30 1 +674 3210 .8 +674 329 1 +674 316 .8 +674 1068 1 +674 1463 .6 +329 353 1 +329 30 1 +329 719 1 +329 1799 1 +329 739 1 +329 506 1 +329 859 1 +329 1428 .8 +329 46 1 +329 679 .8 +540 1535 .6 +540 93 .6 +540 1663 .6 +540 1283 1 +540 400 1 +540 1980 1 +830 709 .8 +830 638 .6 +830 1313 1 +830 94 .8 +830 918 1 +830 709 .8 +830 4182 .8 +830 4183 1 +830 2975 .8 +830 1968 .8 +830 577 1 +830 438 .8 +830 631 .6 +830 712 .8 +830 810 .8 +830 646 .8 +830 1166 .8 +830 311 .6 +830 1085 1 +830 286 1 +830 3659 .6 +830 3937 .8 +830 198 .8 +830 1495 1 +830 172 1 +830 232 .6 +830 717 1 +830 219 .6 +830 329 1 +830 2372 1 +830 620 .8 +830 545 .8 +830 349 1 +830 4184 .8 +830 511 1 +830 1016 .6 +830 1020 1 +830 793 .8 +830 12 .8 +830 1436 1 +830 1301 .6 +830 624 1 +830 715 .8 +830 46 1 +830 346 .8 +830 739 1 +830 939 .6 +830 813 1 +830 34 1 +830 3495 .6 +830 859 1 +830 291 .6 +830 1117 1 +830 531 .6 +830 265 .8 +830 1093 .6 +830 1616 1 +830 780 .8 +830 3614 .8 +830 4185 .6 +830 1049 1 +830 492 1 +830 171 1 +830 3337 .6 +830 1852 1 +830 1671 .6 +830 523 .8 +830 3894 .8 +830 1399 .6 +830 1490 1 +830 4186 .6 +254 247 .6 +4187 4187 .6 +4188 4188 .6 +1645 1645 .6 +1645 1495 1 +1645 172 1 +1645 918 1 +1645 438 .8 +1645 30 1 +1645 1353 .8 +1645 1436 .8 +1645 577 1 +1645 328 1 +1645 915 .8 +1645 912 .8 +1645 2614 .8 +1645 990 .8 +1645 780 .8 +1645 807 1 +1645 712 .8 +1645 939 .8 +1645 804 .8 +1645 2631 .6 +4189 776 .8 +464 463 1 +464 370 1 +4190 4190 .6 +6 1570 .8 +6 1 .8 +1411 1211 .8 +1411 883 .8 +1411 286 .8 +1411 4075 .8 +1411 352 1 +1411 1288 .8 +1411 784 .8 +1411 438 .6 +1411 46 1 +1411 2727 .8 +1411 1031 .8 +1411 1411 .6 +1411 3615 .6 +1411 714 .8 +1411 738 .8 +1411 880 .8 +1411 172 1 +1411 2331 .8 +1411 4191 .8 +1411 440 1 +1411 4077 .6 +1411 44 .6 +1411 1110 .8 +1411 1111 .8 +1411 2196 .8 +4192 4192 .6 +2355 1818 .8 +2355 4193 .8 +2355 835 1 +2355 1546 .8 +2355 2073 .6 +2355 444 .8 +2355 1838 .6 +2355 30 1 +2355 3174 .8 +4194 4194 .6 +4195 4195 .8 +4195 739 1 +3664 3663 1 +3664 650 1 +3664 3849 .8 +3664 357 .8 +3664 3193 1 +287 287 .8 +287 285 1 +287 284 .6 +287 424 1 +287 22 1 +287 3071 .8 +2798 2798 .8 +2798 45 1 +2798 1337 .8 +2798 4196 .8 +2962 126 1 +2962 2962 .8 +2962 2751 .6 +2962 391 .8 +2962 739 1 +2962 801 .8 +2962 1309 .8 +2962 789 .8 +2962 855 1 +2962 1754 1 +2962 2961 .8 +2962 3313 .8 +2962 1684 .8 +2962 2667 .8 +2962 1547 .8 +2962 3386 .8 +4197 4197 1 +4198 632 .8 +4198 1154 .8 +4199 4199 1 +81 81 .6 +81 107 .6 +81 1136 .6 +81 965 .6 +81 1022 1 +81 30 1 +81 1495 1 +81 46 1 +81 303 1 +81 19 .8 +81 597 .8 +81 214 .8 +81 298 .8 +81 2273 .8 +81 1535 .6 +81 703 .6 +81 648 1 +81 2363 .6 +81 65 1 +81 3385 .8 +81 9 .8 +81 345 1 +81 258 .8 +81 501 .8 +81 1291 1 +81 516 .6 +81 113 1 +81 438 .6 +81 1485 .6 +81 3088 .6 +81 4200 .6 +81 2933 .8 +81 610 .8 +81 4201 .8 +81 830 .8 +81 987 .8 +81 103 .8 +81 613 .8 +81 357 .8 +81 157 .6 +4202 4202 .8 +4203 4203 .8 +4186 4186 .6 +4186 860 .8 +1019 434 1 +1019 303 1 +1019 326 1 +1019 92 .8 +1019 750 1 +1019 801 .8 +1019 104 .8 +1019 1022 1 +1019 1023 .8 +1019 1018 .8 +1019 22 1 +1019 1017 .8 +1019 748 1 +1019 746 1 +1019 1019 .8 +1019 65 1 +1019 1086 .8 +1019 647 1 +1019 2945 .8 +1019 651 .8 +1019 1027 .8 +1019 1682 .8 +1019 469 .8 +1019 1024 .8 +1019 805 .8 +1019 405 .8 +1019 1687 .8 +1019 1119 .8 +1019 3102 .8 +1019 933 .8 +1019 1079 .8 +1019 2271 1 +1019 2284 .8 +1019 350 1 +1019 913 1 +1019 2646 .8 +1019 171 1 +1019 94 .6 +1019 2272 .6 +1019 827 1 +1019 1314 1 +1019 1847 1 +1019 4149 1 +1019 1441 1 +1019 1754 1 +1019 523 .8 +1019 934 1 +1019 555 1 +1019 1686 .8 +1019 2614 .8 +1019 525 .8 +1019 912 .8 +1019 1440 .8 +1019 858 1 +1019 921 .8 +1019 394 .8 +1153 157 .8 +1153 1223 .8 +1153 4204 .8 +1153 2539 .6 +1153 1304 .8 +1153 4205 .8 +1153 3850 .8 +1153 328 1 +1153 89 .8 +1153 45 1 +1153 751 1 +1153 297 1 +1153 1685 .8 +1153 1650 .8 +1153 492 1 +1153 457 .8 +1153 4206 .6 +1153 617 .8 +1153 1982 .8 +1153 3856 .8 +1153 14 1 +1153 774 1 +1153 711 1 +1153 188 .8 +1153 232 .8 +1153 1418 .8 +1153 2831 .8 +1153 890 .8 +1153 892 .8 +1153 399 .8 +1153 888 1 +1153 3797 1 +1153 814 .6 +1153 699 .6 +1153 1673 .8 +1153 1183 .8 +1153 2847 .8 +1153 2694 .8 +1153 2018 .6 +1153 413 .6 +1153 1873 .8 +1153 1875 .8 +1153 849 .8 +1153 2782 .8 +1153 1872 .8 +1153 1874 .8 +1153 626 1 +1153 1147 .8 +1153 3509 .8 +1153 924 .8 +1153 1387 .6 +1153 4207 .8 +1153 3635 .8 +1153 1254 .8 +1153 2265 .8 +1153 4208 .8 +1153 4209 1 +1153 9 1 +4210 4210 .8 +4211 326 1 +4211 286 1 +4211 2103 1 +4211 558 .8 +1839 2430 .8 +1839 586 .6 +1839 528 .8 +4212 4212 .6 +3659 4213 .6 +4214 1313 1 +4214 326 1 +4214 2247 1 +599 4215 .8 +599 172 1 +599 171 1 +599 913 1 +599 518 .6 +599 599 1 +599 2333 .8 +599 89 .6 +599 1223 .6 +599 933 .8 +599 1211 1 +599 30 .6 +599 304 .6 +599 936 .6 +599 888 1 +599 711 .8 +599 764 1 +599 522 .8 +599 2507 .8 +599 362 .8 +599 1303 .8 +599 830 .8 +599 631 .6 +599 1339 .8 +599 701 .8 +599 1191 .8 +599 194 .6 +599 985 .8 +599 4216 .8 +599 2270 .6 +599 2171 1 +599 1536 1 +599 295 .8 +599 603 .8 +599 2004 1 +599 4217 .6 +599 498 1 +599 1543 1 +599 98 .8 +599 251 .8 +599 3948 .8 +599 1489 .8 +599 265 .8 +599 177 .8 +599 178 .8 +599 929 .8 +599 4218 1 +599 613 1 +599 2732 .8 +599 617 .8 +599 2153 .8 +599 776 1 +599 2429 .8 +599 820 .8 +599 122 .8 +3708 3708 .6 +3708 3210 .8 +64 48 .8 +64 3850 .8 +3441 3441 .6 +2739 2747 .8 +2739 963 .8 +2739 492 .8 +2739 91 .8 +2739 2141 .8 +2739 3240 .8 +2739 2739 .8 +2739 740 .8 +2739 2629 .8 +2739 2782 .8 +2739 3951 .6 +2739 1643 .8 +2739 3087 .8 +2739 2483 .6 +2739 234 .8 +2739 588 .8 +2739 2151 .8 +2739 2750 .8 +2739 4219 .8 +2739 802 .8 +2739 718 .8 +2739 3606 .6 +2739 2749 1 +2739 142 1 +2739 855 1 +2739 1286 .8 +2739 837 .8 +2739 859 1 +2739 736 1 +2739 834 .8 +4220 4220 .6 +4220 497 1 +4220 194 1 +4220 2171 1 +4220 1450 .8 +4220 3598 .8 +4220 286 .8 +4220 328 1 +307 307 1 +307 491 .8 +307 308 1 +307 1647 .8 +307 305 1 +307 46 1 +307 301 .8 +1919 1919 .6 +1919 638 .6 +1919 328 1 +4221 4002 1 +4221 3038 .6 +4221 3774 .6 +4221 3922 .6 +4221 2084 .8 +4221 4222 .6 +4221 1251 .8 +4221 610 1 +4221 2527 .6 +4221 2913 1 +4221 4223 .6 +1008 670 .8 +1008 669 .8 +1008 1008 .8 +3402 3402 .8 +3402 604 .6 +3402 1552 .8 +810 810 .8 +810 172 1 +810 1167 .8 +810 587 .8 +810 912 1 +810 298 .8 +810 2172 1 +810 915 .8 +810 34 .8 +810 1687 .8 +810 791 1 +810 171 1 +810 807 .8 +810 804 .8 +810 1441 1 +4224 112 1 +708 708 .8 +708 1093 .8 +708 1223 .8 +708 2784 .8 +708 1236 .8 +708 4225 .6 +708 2361 .8 +708 3676 .6 +708 2142 .6 +708 232 .8 +708 4221 .6 +708 706 .6 +708 2130 .6 +708 4226 .6 +708 4227 .6 +4228 4228 .6 +4229 4229 .6 +4230 4230 .6 +4230 30 1 +4230 719 1 +4230 324 1 +4230 1386 .8 +4230 2227 .8 +4230 4231 .6 +4230 429 1 +4230 1379 .8 +66 66 .6 +66 48 .8 +66 328 1 +66 67 1 +66 234 .6 +66 68 .6 +66 69 .8 +66 70 .8 +66 3087 .6 +66 1988 .8 +66 3091 .6 +2681 2681 .8 +2681 739 1 +2681 835 .8 +2681 1031 .8 +2681 1075 .8 +2681 2312 .8 +2681 350 1 +2681 859 .8 +2681 648 1 +2681 84 .8 +2681 736 1 +2681 30 1 +2681 324 1 +2681 323 .8 +4232 3182 .8 +4233 4233 .6 +4234 2192 1 +3702 682 .8 +4235 1830 .8 +4235 1839 .8 +4235 1823 .8 +4235 1692 .8 +4235 239 .6 +4235 3802 1 +4235 335 1 +4235 654 1 +3251 3251 .8 +3251 1169 .8 +3251 603 .8 +3251 295 .8 +3251 157 .8 +3986 3986 .8 +3986 3427 .8 +3986 1000 .6 +3986 3827 .8 +3986 4236 .6 +3986 2972 .6 +3986 708 .8 +3986 1242 .6 +3986 3430 .8 +3986 46 1 +3986 2671 .6 +3986 4237 .6 +3986 1368 .6 +3986 192 .8 +3986 214 .8 +3986 4035 .6 +3986 3444 .6 +3986 780 .6 +3986 1182 .6 +3986 1775 .8 +3986 793 .8 +3986 1569 .8 +3986 4238 .6 +3986 1181 .6 +3986 3432 .6 +3986 4239 .6 +3986 3795 .6 +3986 3919 .8 +3986 3447 .6 +3986 1004 .8 +3986 1277 1 +3986 1178 .6 +3986 1365 .8 +3986 1075 1 +3986 1518 .8 +3986 328 1 +3986 859 .8 +3146 3146 1 +3146 34 1 +3146 3145 1 +4240 4240 1 +4142 4142 .8 +4241 4241 1 +4242 4242 .6 +4243 1781 1 +4243 1052 1 +4243 1579 1 +4243 3487 .6 +2036 2036 1 +2036 1322 1 +4244 4245 .8 +4244 1313 1 +1165 4 .8 +1165 431 .8 +1165 2443 .8 +1165 673 .8 +1165 1407 .8 +1165 950 .6 +1165 718 .8 +1165 3587 .8 +1165 1049 .8 +3625 3625 .6 +3625 2498 .8 +3625 1529 1 +3625 1490 1 +3625 1492 1 +3625 1491 1 +3625 2762 .8 +3625 1493 .8 +3625 2497 .8 +3625 673 1 +3625 672 1 +3625 1846 1 +3625 2902 1 +3625 3467 .8 +3625 830 1 +3625 2252 1 +3625 1662 .8 +3625 719 1 +3625 3560 .8 +3625 2911 .8 +3625 2258 .8 +551 551 .6 +551 886 .8 +551 549 .8 +551 550 .8 +551 838 .6 +4160 4159 .6 +4160 1623 .6 +4246 4246 .6 +4247 82 1 +4248 794 .6 +4248 469 1 +2251 793 .8 +2251 718 .8 +2251 346 1 +2251 620 1 +2251 1326 1 +2251 678 .8 +2251 2251 1 +2251 2227 .8 +2251 1395 .8 +2251 2487 .8 +2251 711 .8 +2251 3440 .8 +2251 1362 1 +2906 673 1 +2906 672 .8 +2906 1108 1 +2906 1493 1 +2906 1974 1 +2906 2759 .8 +2906 1587 .8 +2906 2905 .8 +2906 674 .8 +2906 3211 .8 +2906 30 1 +2906 2906 .6 +2505 498 1 +2505 4249 .8 +2505 4015 1 +2505 579 1 +2505 1607 .8 +2505 641 1 +4250 747 1 +4250 642 1 +4250 879 1 +4250 1306 1 +4250 736 1 +3417 3417 .6 +3417 126 1 +3417 329 1 +3417 46 1 +3417 2772 1 +3417 650 1 +1570 1570 .8 +1570 2390 .6 +1570 346 .8 +1570 6 .8 +836 836 .8 +836 92 .8 +836 1651 .8 +836 656 .8 +836 142 .8 +836 84 .8 +836 86 .8 +836 740 .8 +836 2666 .6 +836 1081 .8 +836 327 .6 +836 1638 .8 +836 3793 .8 +836 1663 .8 +836 79 .8 +836 648 1 +836 1215 .6 +836 2459 .8 +836 326 .8 +836 105 .8 +836 1605 .8 +836 749 1 +836 1097 .8 +836 833 .8 +836 1087 .8 +836 587 .8 +836 834 .8 +836 734 .6 +836 964 .8 +836 172 .6 +836 1435 .8 +836 739 1 +836 1692 .8 +836 3186 .6 +836 729 .8 +836 2880 .8 +836 1693 .8 +836 859 .8 +836 405 1 +836 102 .8 +836 3154 .8 +836 2306 1 +798 798 .6 +663 663 .6 +2450 2450 1 +2450 1020 1 +2450 34 .8 +2450 918 1 +2450 577 1 +2450 171 1 +2450 30 1 +2450 1754 1 +2450 346 .8 +2450 2 1 +2450 1 1 +2450 5 1 +2450 4 1 +2450 3 1 +2450 46 1 +2450 438 1 +2450 712 1 +2450 1418 1 +2450 620 .8 +2450 830 1 +2450 780 .8 +2450 990 .8 +2450 1001 1 +2450 174 .8 +2450 1049 1 +2450 492 1 +2450 1851 1 +2450 349 1 +2450 525 .8 +2450 791 1 +2450 678 .8 +2450 2255 1 +2450 7 .6 +2450 793 .8 +743 747 1 +743 652 1 +743 1222 1 +743 1218 1 +743 79 1 +743 710 1 +2132 2132 .8 +2132 84 .8 +4251 1361 .8 +4252 4252 .6 +4253 3742 .8 +4253 643 1 +4253 853 .8 +4253 3293 .6 +4253 428 .8 +4253 4254 .6 +4253 429 .8 +4253 1123 1 +4 353 1 +4 30 1 +4 46 1 +4 4 .6 +4 431 1 +4 445 .8 +4 44 .8 +4 1116 1 +4 506 1 +4 329 1 +4 1799 1 +4 1893 .8 +4 3680 .6 +4 318 .8 +4 440 1 +4 3269 .6 +4 286 1 +4 441 .8 +4 435 .8 +4 1856 1 +4 429 .8 +4 5 1 +4 1908 1 +3395 3395 .8 +3395 1893 .8 +3395 626 1 +3395 993 1 +3395 3904 1 +3395 3268 1 +3395 4255 .8 +4256 4256 .6 +3742 126 1 +3742 714 1 +3742 286 1 +3742 46 1 +3742 431 .8 +3742 428 .8 +3742 863 .6 +3742 2227 .6 +3742 4254 .6 +3742 4101 .6 +3742 3647 .6 +3742 3742 .8 +3742 4253 .6 +3742 429 1 +3742 328 .6 +3742 2578 .8 +3742 2703 .6 +3742 1826 .8 +3742 1974 1 +3742 1043 .8 +3742 4257 .8 +3742 3128 1 +3742 3127 1 +3742 4258 .8 +220 225 .6 +2548 2549 .6 +2548 194 .8 +2548 572 1 +2548 2548 .6 +2548 2051 .8 +2548 3410 .6 +2548 2547 .8 +2548 4259 .6 +2548 1524 .8 +2548 4260 .6 +2548 4261 .6 +2548 4262 .6 +2548 4263 .6 +2548 819 1 +1297 1297 .6 +1297 1296 .6 +1297 1298 .8 +1297 4264 .6 +4265 3468 .6 +1149 514 .8 +1149 2020 .6 +1149 1484 .8 +1149 1149 .6 +4266 4266 .6 +4266 1816 1 +4266 604 .6 +4267 4267 .6 +4021 67 1 +4159 4160 .6 +4159 1623 .6 +4268 293 1 +4268 4268 1 +4269 4269 .6 +2299 1019 .6 +2299 2299 .6 +2299 751 1 +2299 801 1 +2299 1017 .8 +2299 326 1 +2299 65 1 +2299 805 1 +257 246 .6 +257 2971 .8 +257 356 1 +257 556 .6 +257 965 .6 +257 257 .8 +257 214 .8 +257 1192 .8 +257 523 .6 +257 4270 .6 +257 2001 .6 +257 245 .6 +257 1992 .8 +257 2004 .8 +257 258 .8 +257 262 .6 +257 737 1 +4271 4271 .8 +4271 30 1 +1877 1049 1 +1877 2450 1 +1877 1048 .6 +1877 1775 .6 +1877 1876 .6 +4272 126 1 +2437 712 .8 +861 861 .8 +861 1012 1 +861 1769 .8 +861 57 .8 +861 227 .8 +861 58 .8 +861 51 .8 +861 337 .8 +861 59 .8 +861 333 .8 +861 637 .8 +861 865 1 +861 1187 .8 +861 48 .8 +861 853 .8 +861 50 .8 +861 1930 1 +861 577 1 +861 328 1 +861 4273 .8 +1308 1308 .8 +1308 1309 1 +1308 438 .6 +4274 4274 .6 +4275 4275 1 +1311 1311 .6 +1311 286 1 +1311 1693 .8 +1311 4100 .8 +1311 789 .8 +1311 71 .8 +1311 1176 1 +1311 837 .8 +1311 142 .8 +1311 1022 .8 +1311 175 1 +1311 405 .8 +1311 90 .8 +1311 329 1 +1311 31 .8 +1311 327 .8 +1311 1204 .8 +1311 853 .8 +1311 1298 .8 +1311 1125 .8 +1311 1628 .8 +1311 584 .8 +1311 1694 .8 +1311 1516 .8 +1311 2213 .8 +1311 642 1 +1311 741 .8 +1311 747 .8 +1311 1692 .8 +1311 29 .8 +1311 1454 .8 +1311 86 .8 +1311 30 1 +1311 1157 1 +1311 737 .8 +1311 736 .8 +1311 84 .8 +1311 1053 .8 +1311 648 .8 +1311 859 .8 +1311 714 1 +1311 385 .8 +1311 3186 .8 +1311 2312 .8 +1311 97 .8 +1311 2646 .8 +1311 1491 .6 +1311 102 .8 +1311 46 1 +1311 1041 .6 +1311 855 .8 +1311 2376 .8 +1311 835 .8 +1311 658 .6 +1311 656 .8 +1311 3541 .8 +1311 1288 .8 +1311 3077 .8 +1311 2652 1 +1311 1695 .8 +1311 3079 .8 +1311 1505 .8 +1311 1126 .8 +1311 1696 .8 +1311 3769 .8 +1311 740 .8 +1311 750 .8 +1311 1921 .8 +1311 506 1 +1311 1590 .6 +1311 106 .8 +1311 739 1 +1311 668 .8 +1311 171 1 +2356 2356 1 +4276 4276 .6 +4276 2578 .8 +4276 1223 .8 +4276 7 .8 +191 46 1 +191 1238 .8 +191 13 .8 +191 328 1 +191 1020 1 +191 431 1 +191 302 .8 +191 191 .8 +191 4087 .8 +191 190 .8 +191 2290 1 +191 1031 .8 +191 1583 1 +191 3530 .8 +191 918 1 +191 764 1 +191 915 .8 +191 279 .8 +191 4277 .8 +191 1176 1 +191 1211 .8 +191 916 1 +191 2528 .8 +191 281 .6 +191 312 .8 +191 1450 .6 +191 1010 .8 +191 49 1 +191 3590 .6 +191 289 .6 +191 1089 1 +191 1190 .8 +191 647 1 +191 1430 1 +191 1185 .6 +191 638 .8 +191 1323 .8 +191 277 .8 +191 1290 1 +191 232 .6 +191 586 .6 +191 579 .8 +191 3350 .8 +191 3349 .8 +191 1024 .8 +191 3213 .8 +191 1624 .6 +191 197 .8 +191 580 .8 +191 1280 .8 +191 2221 1 +191 519 .8 +191 712 .8 +191 1003 .8 +191 578 .8 +191 1439 .6 +191 165 1 +191 1533 .8 +191 349 1 +191 4278 .6 +191 877 .8 +4279 4279 .6 +4280 4280 1 +4280 4281 .8 +4282 767 .8 +4282 606 .8 +4282 766 .8 +4283 4283 .6 +4283 801 1 +4283 1182 .8 +4283 328 1 +4284 4284 .6 +4285 4285 .8 +4285 1318 1 +4285 4286 1 +4287 4287 .6 +4288 4289 1 +4288 4288 1 +4288 286 1 +4288 2781 1 +4288 2090 1 +4288 2092 1 +4288 431 1 +4288 969 1 +4288 4290 1 +4288 720 1 +4288 428 1 +4288 1247 1 +4288 4291 1 +4288 126 1 +4288 46 1 +4288 643 1 +2411 2411 .8 +2411 960 1 +2411 565 .8 +4292 4292 .6 +4293 4294 .8 +4293 1012 1 +4295 328 1 +4295 45 1 +4295 2147 1 +4295 3292 .8 +4295 3394 .8 +4295 4132 1 +4295 721 1 +4295 3920 1 +4286 4296 1 +4286 4285 1 +4297 1153 1 +2094 2094 .8 +2094 325 1 +2094 2247 1 +2094 1021 .8 +2094 326 1 +2094 1117 1 +2094 735 1 +2094 1401 .8 +2094 344 .8 +2094 2101 .8 +2094 2249 .8 +2094 324 1 +2094 1753 1 +2094 273 1 +2094 272 1 +2094 2093 .8 +2094 363 1 +955 955 .6 +4298 925 1 +4299 4299 .6 +4300 4300 1 +956 19 .8 +956 524 .8 +956 1028 .8 +956 157 .8 +956 2506 .6 +2432 2432 .8 +2432 2672 .8 +2432 2519 .8 +4301 126 .8 +1746 53 .8 +3482 2226 1 +3482 2289 1 +3482 1499 1 +3482 3482 1 +3482 749 1 +3482 1222 1 +3482 3645 .8 +3482 747 1 +3482 79 .8 +3482 1213 .8 +3482 377 .8 +3482 746 1 +3482 108 .8 +3482 290 1 +3482 137 .8 +3482 2460 .8 +3482 1212 .8 +3482 1214 .8 +3482 46 1 +3482 555 1 +3482 142 1 +3482 2551 .8 +3482 2141 .8 +3482 157 .8 +3482 776 .8 +3482 4302 1 +3482 174 1 +2946 2320 .6 +2911 126 1 +2911 2911 .6 +2911 1492 1 +2911 3795 .6 +2911 3560 .8 +2911 728 1 +999 524 .6 +999 604 .6 +999 329 1 +999 1671 .6 +999 788 .8 +999 617 .6 +1954 1954 .6 +1954 495 .6 +1954 46 1 +1954 62 .8 +1954 328 1 +1954 165 1 +1954 175 1 +1954 1981 .8 +1954 708 .8 +1954 1365 .8 +1954 1373 .8 +1954 762 1 +4303 4303 .6 +4303 205 .8 +1956 2672 1 +1956 1571 .8 +1956 2352 1 +1956 1361 .8 +1956 1109 .8 +1956 1306 .8 +1956 351 1 +1956 2463 .8 +1956 3032 .8 +1956 1437 1 +1956 137 1 +1956 1894 1 +1956 50 .8 +1956 2210 .8 +1956 1996 1 +1956 916 1 +1956 595 .8 +1956 1799 1 +1956 4 .8 +1956 1536 .8 +1956 1133 1 +1956 722 1 +1956 1246 .8 +1956 1769 1 +1956 852 1 +1956 2483 .8 +1956 1417 1 +1956 679 1 +1956 1049 1 +1956 1176 1 +1956 43 1 +1956 2255 .8 +1956 224 .8 +1956 344 1 +1956 193 1 +1956 436 1 +1956 1978 1 +1956 337 1 +1956 2042 1 +1956 48 1 +1956 2290 .8 +1956 336 .8 +1956 296 1 +1956 426 1 +1956 1337 .8 +1956 101 1 +1956 1290 .8 +1956 1074 .8 +1956 95 .8 +1956 400 1 +1956 792 1 +1956 3102 .8 +1956 2246 1 +1956 148 1 +1956 1851 1 +1956 1418 1 +1956 598 .8 +1956 627 1 +1956 1893 1 +1956 949 1 +1956 813 1 +1956 513 .8 +1956 786 .8 +1956 1270 1 +1956 1711 1 +1956 318 1 +1956 304 1 +1956 2171 .8 +1956 555 1 +1956 49 .8 +1956 2482 1 +1956 468 1 +1956 467 1 +1956 501 .8 +1956 917 .8 +1956 80 .8 +1956 2101 .8 +1956 81 .6 +1956 82 1 +1956 2745 .6 +1956 3478 .6 +1956 230 .8 +1956 2233 .8 +1956 2577 .8 +1956 2474 .8 +1956 1377 .8 +1956 1515 1 +1956 2435 .8 +1956 2277 .8 +1956 70 .8 +1956 574 .8 +1956 83 .8 +1956 2501 .8 +1956 1696 .8 +1956 2108 .8 +1956 66 .8 +1956 1740 .8 +1956 1948 .8 +1956 227 .8 +1956 2259 1 +1956 740 .8 +4304 4304 1 +4305 1723 1 +4305 1603 1 +4305 2293 .8 +1206 1206 .8 +1206 1201 .8 +1206 746 1 +1206 1479 1 +1206 652 1 +1206 1210 .8 +1206 1499 1 +1206 110 .8 +1206 1222 1 +1206 2457 .8 +1206 1214 .8 +1206 747 1 +1206 2461 .8 +1206 749 1 +1206 1203 1 +1206 748 1 +1206 1212 1 +907 320 1 +907 1892 1 +907 2078 1 +907 2068 1 +907 3372 1 +907 209 1 +4306 4306 .6 +4306 67 1 +4306 336 .8 +4306 165 1 +4030 4030 .6 +4030 297 1 +4030 4307 .6 +4030 2855 1 +4030 4308 .6 +4030 1775 .8 +3545 1051 .8 +3545 3545 .8 +3545 736 1 +3545 46 1 +3545 73 .8 +3545 2887 .8 +3545 859 1 +3545 837 .8 +3545 30 1 +3545 353 1 +3545 126 1 +3545 715 1 +4309 4309 .6 +3491 3491 .8 +3491 792 .8 +3491 736 1 +3491 856 .8 +3491 1692 .8 +3491 656 .8 +3491 789 1 +3491 86 .8 +3491 855 1 +3491 142 .8 +3491 739 1 +3491 648 1 +3491 84 .8 +3491 1053 .8 +3491 859 1 +3491 102 .8 +3491 2629 .8 +3491 163 1 +3491 405 .8 +3491 1596 .8 +3491 49 .8 +3491 175 .8 +3491 1693 .8 +3491 837 .6 +4310 4310 .6 +4311 4311 .6 +3033 346 .8 +3033 1497 .8 +3033 22 1 +3033 1227 1 +4312 4312 .6 +3380 3380 .8 +3380 328 1 +3380 70 .6 +3380 597 .8 +3380 9 .8 +3380 1801 .6 +3380 528 .6 +3380 1233 .6 +3380 677 .8 +3380 2715 .8 +3380 1162 .8 +3380 590 .6 +3380 356 .6 +3380 45 1 +4313 4313 1 +2084 1160 1 +2084 625 .8 +2084 1634 .8 +2084 597 .8 +2084 780 .8 +2084 708 1 +2084 124 .8 +2084 214 .8 +2084 441 1 +2084 2125 1 +2084 4221 .8 +2084 2130 .6 +2084 4314 .6 +2084 3258 .6 +2084 1947 .8 +2084 4315 .6 +2084 3478 .8 +2084 4316 .8 +2084 1261 .8 +2084 1265 .6 +4317 4317 .6 +4318 441 1 +4318 405 .8 +4318 1428 1 +4318 584 .8 +4318 440 1 +4318 46 1 +4318 126 1 +4281 4281 .6 +4281 4278 .6 +3004 3004 .6 +3004 3304 .6 +4319 4319 .8 +4319 3 1 +4319 2450 1 +292 292 1 +292 113 .8 +4320 4320 1 +1981 126 1 +1981 1981 .8 +1981 1586 1 +1981 1622 .8 +1981 297 1 +1981 495 .6 +1981 1970 .6 +1981 175 1 +1981 46 1 +1981 1365 .6 +1981 880 .8 +1981 1068 1 +1981 157 .8 +1981 990 .8 +1981 3032 .6 +1981 3928 .8 +1981 1954 .6 +1981 286 1 +1981 1978 .8 +1981 1988 1 +1981 708 .8 +1981 727 .8 +1981 714 1 +1981 1974 .8 +1981 872 1 +1981 148 1 +1981 1254 .8 +1981 1519 1 +1981 1742 .8 +1981 116 .8 +1981 716 .8 +1981 128 1 +1981 642 1 +1981 151 1 +1981 694 1 +1981 282 1 +1981 1241 1 +1981 2142 .6 +1981 1315 1 +1981 1369 .6 +2887 2887 .8 +2887 1436 .8 +2887 3545 .8 +2887 736 .8 +2887 73 .8 +2887 859 .8 +2887 118 .8 +2887 1051 .8 +4321 165 1 +4321 4321 .6 +4321 555 1 +4321 4322 .8 +4321 497 .8 +4323 4323 1 +4324 4324 .8 +4325 4325 1 +4131 1569 .8 +4131 1052 1 +4131 1258 .8 +4131 296 1 +4131 962 1 +4131 157 1 +4131 1781 1 +4131 1562 1 +4131 1377 .8 +4131 4326 .8 +4131 1626 1 +4131 1579 1 +4131 375 1 +4327 53 .8 +4327 577 1 +4327 3206 .8 +4327 3340 .6 +4327 4327 .6 +4327 346 1 +4327 46 1 +1017 1086 .8 +1017 326 1 +1017 1022 .8 +1017 92 .8 +1017 1019 .6 +1017 4328 .8 +1017 750 .8 +1017 801 .8 +1017 22 1 +1017 1023 .8 +1017 318 .8 +1017 4329 .8 +1017 584 1 +1017 434 1 +1017 95 1 +1017 1720 1 +1017 348 1 +4330 4330 .6 +4331 4331 .8 +1106 658 1 +1106 1106 .8 +1106 4332 .6 +1106 2768 .8 +1106 837 1 +1106 1775 .8 +1106 116 .8 +4333 4333 .6 +4334 2851 .6 +4334 1207 .8 +4334 4334 .6 +4335 4335 .6 +4335 829 1 +4335 1158 1 +4335 1485 .8 +4335 92 1 +4335 1209 1 +4335 1617 .8 +4335 104 1 +4335 292 1 +4335 1898 1 +4335 1315 1 +4335 1929 .8 +4336 4336 .6 +4337 4337 .8 +3326 3326 .6 +3326 791 .8 +3326 1801 .6 +3326 92 .8 +3326 540 .8 +3385 3385 1 +339 339 1 +339 338 1 +339 2544 .8 +4338 4338 .6 +4339 4339 1 +4201 4201 .8 +4201 4200 .6 +4201 81 .8 +4201 212 .6 +3020 3020 .8 +3020 3019 .8 +4340 4340 1 +4341 4341 .6 +4342 4342 .6 +4342 335 1 +4342 65 1 +4342 255 .6 +4342 583 .8 +4342 362 .8 +4342 4343 .6 +4342 1402 .8 +4342 3283 .6 +4342 1051 .8 +1038 1038 .6 +1038 991 .8 +1038 1016 1 +1038 1030 1 +1038 1034 .8 +1038 1039 .6 +4344 4344 .6 +679 679 .8 +679 175 .8 +679 3335 .6 +679 714 1 +679 1157 .8 +679 647 1 +679 642 1 +679 1123 1 +679 2291 .8 +679 286 1 +679 4100 .8 +679 3323 .6 +679 2313 .8 +679 1306 1 +679 165 1 +679 2293 .8 +679 49 .8 +679 1281 .8 +679 1450 .6 +679 2290 .8 +679 164 .8 +679 1646 .8 +679 328 1 +679 295 .8 +679 603 .6 +679 409 .8 +679 72 .8 +679 1241 .8 +679 282 1 +679 2789 .8 +679 1974 .6 +679 4345 .6 +679 1515 .6 +679 1315 .8 +679 1898 .8 +679 92 .8 +679 104 .6 +679 1494 .8 +679 4346 .8 +679 1280 .6 +679 3250 .6 +679 2062 .6 +679 4347 .6 +679 1863 .8 +679 4348 .6 +679 4349 .6 +679 4350 .6 +679 873 .6 +679 2935 .8 +679 1052 .8 +679 4351 .6 +679 4322 .8 +679 289 .6 +679 4352 .6 +679 4353 .8 +679 3252 .6 +679 3347 .8 +679 296 1 +679 1579 .8 +679 764 1 +679 1929 1 +679 2993 1 +4354 4354 .6 +3285 2267 .8 +3285 3285 1 +4355 431 .8 +2971 3308 .6 +2971 3307 .6 +2971 1086 .8 +2971 2325 .8 +2971 2326 .8 +4356 4356 1 +1660 1660 1 +1660 172 1 +1660 112 1 +1660 326 1 +1660 424 1 +1660 118 1 +1660 2616 .8 +1660 351 .8 +1660 1313 1 +1660 1917 .8 +1660 440 1 +1660 50 .8 +1660 1065 .8 +1660 3573 .8 +1660 2318 .8 +1660 1247 1 +1660 1157 1 +1660 739 1 +1660 8 .8 +1660 1603 .8 +1660 1663 .6 +1660 282 .8 +1660 1339 .8 +1660 1894 1 +1660 747 1 +1660 1211 .8 +1660 306 .8 +1660 349 .8 +1660 303 .8 +1660 65 .8 +1660 2886 .8 +1660 1764 .8 +1660 167 .8 +1660 1655 1 +1660 329 1 +1660 3601 .6 +1660 165 1 +1660 1450 1 +1340 1338 .6 +1340 887 .8 +1340 1339 .6 +1340 119 1 +577 918 1 +577 46 1 +577 353 1 +577 30 1 +577 1449 .8 +577 629 .8 +577 1571 .8 +577 2614 .8 +577 1817 .8 +577 712 .8 +577 525 .8 +577 306 1 +577 939 .8 +577 533 .8 +577 542 .8 +577 362 .8 +577 545 .8 +577 1948 .8 +577 2883 .8 +577 469 1 +577 242 .8 +577 1641 .8 +577 304 1 +577 2002 .8 +577 2700 .8 +577 103 .8 +577 547 .8 +577 63 1 +577 780 .8 +577 1467 .8 +577 492 1 +577 2246 1 +577 2226 .8 +577 613 .8 +577 621 1 +577 624 1 +577 649 1 +577 193 .8 +577 793 .8 +577 2450 1 +577 1352 .8 +577 627 1 +577 1049 1 +577 100 .8 +577 346 1 +577 1711 1 +577 1093 .6 +577 1896 .8 +577 1897 .8 +577 843 1 +2032 4357 .8 +2032 2748 .8 +2032 674 .8 +2032 739 1 +2032 430 .8 +2032 1696 .8 +2032 1451 .8 +2032 1036 .8 +2032 855 1 +2032 648 1 +2032 1053 .8 +2032 736 1 +2032 2213 .8 +2032 1304 .8 +2032 1628 .8 +2032 833 .8 +2032 405 .8 +2032 175 1 +2032 142 1 +2032 837 .8 +2032 126 1 +2032 3543 .8 +2032 106 .8 +2032 1286 .8 +2032 738 .8 +2032 703 .6 +2032 3542 .8 +2032 3491 .8 +2032 3475 1 +4358 4358 1 +4359 4359 .6 +4359 4360 .8 +4359 2170 .8 +4359 1298 .8 +4359 1085 .8 +4361 4361 1 +4362 4362 .6 +2507 46 1 +2507 5 1 +2507 353 1 +2507 739 1 +2507 506 1 +2507 445 1 +2507 434 1 +2507 576 1 +2507 2238 1 +2507 561 1 +2507 714 1 +2507 438 .8 +2507 647 1 +2507 1447 .8 +2507 305 1 +2507 1847 1 +2507 4 .8 +2507 436 1 +2507 126 1 +2507 431 1 +2507 2507 .6 +2507 378 .6 +2507 4363 .6 +2507 2956 .8 +2507 215 .8 +2507 589 .6 +2507 166 .8 +2879 349 1 +2879 1434 .8 +2879 118 1 +2879 468 .8 +2879 827 1 +2879 30 1 +2879 1117 1 +2879 348 .8 +2879 1082 .8 +2879 1021 .8 +2879 1020 1 +2879 577 .8 +2879 466 .8 +2879 934 .8 +2879 1052 .8 +2879 13 1 +2879 4364 .6 +2879 2879 .8 +2879 1183 .8 +2879 4365 .8 +2879 4366 .8 +4367 4367 .8 +2484 1397 1 +2484 2484 .8 +1707 1705 .8 +1707 1708 .8 +1707 293 .8 +1707 3962 .8 +4368 2251 1 +2508 2508 .6 +4369 3002 1 +4369 1643 1 +3389 3389 .6 +3389 3384 1 +3389 584 1 +3389 211 1 +3389 1549 .8 +3389 209 .8 +3389 207 .8 +3389 210 1 +3389 1451 .8 +3389 1515 .8 +3389 1598 .8 +3389 3192 .8 +3389 286 1 +4370 4370 1 +4371 990 .6 +4371 1764 .6 +4372 4372 .6 +4372 148 .8 +1556 1556 .6 +4373 4373 .6 +4373 584 .8 +4373 102 .6 +4373 3116 .6 +4373 1644 .6 +4373 513 .8 +4374 4374 1 +4375 4375 .8 +2687 2687 .6 +2687 715 .8 +2687 2745 .6 +2687 207 .8 +2687 2685 .8 +959 959 .8 +959 316 1 +959 2522 .6 +959 306 .8 +959 938 .6 +959 242 .8 +1461 1461 .6 +1461 534 .6 +4376 4376 1 +4377 4377 1 +4377 751 .8 +481 638 .8 +481 829 .8 +481 1918 .8 +481 112 .8 +481 30 1 +481 468 .8 +481 791 .8 +481 349 1 +481 577 .8 +481 328 1 +481 719 1 +481 645 .8 +481 1117 1 +481 1020 1 +481 1476 .8 +481 174 .8 +481 934 .8 +481 324 .8 +481 1075 .8 +481 351 .8 +481 352 1 +481 623 .8 +481 172 1 +481 511 .8 +481 735 .8 +481 642 1 +481 467 .8 +481 1021 .8 +481 1313 .8 +481 46 1 +481 303 1 +481 438 .6 +481 431 1 +481 937 .8 +481 739 1 +481 329 1 +481 1490 .8 +481 1847 1 +481 1356 .8 +481 325 1 +481 298 .6 +481 5 1 +481 1752 1 +481 807 .8 +481 915 .8 +481 1930 1 +4378 4378 1 +92 801 .8 +92 95 1 +92 434 1 +92 104 .8 +92 286 1 +92 736 1 +92 1086 .8 +92 326 1 +92 436 1 +92 1546 .8 +92 1720 1 +92 1022 1 +92 22 1 +92 1018 .8 +92 739 1 +92 1583 1 +92 431 1 +92 2291 .8 +92 46 1 +92 1023 .8 +92 750 .8 +92 1176 1 +92 584 1 +92 858 1 +92 1019 .6 +92 1123 1 +92 1017 .8 +92 738 .8 +92 65 .8 +92 506 1 +92 746 1 +92 651 .8 +92 1027 .8 +92 175 1 +92 353 1 +92 1898 .8 +92 90 .8 +92 1089 1 +92 1818 .8 +92 405 .8 +92 49 .8 +92 14 .8 +92 610 .8 +92 1895 .8 +92 1812 .8 +92 1912 .8 +92 4379 .6 +92 4353 .8 +92 1886 .8 +92 38 .8 +92 234 .6 +92 1290 .8 +92 441 1 +92 751 .8 +92 92 .8 +92 2171 .6 +92 2749 .6 +92 1686 .8 +92 394 .8 +4380 4380 .6 +379 869 1 +379 1227 1 +379 1450 .6 +379 312 .6 +379 1230 1 +379 232 .6 +379 651 .8 +379 1226 .8 +379 1228 .6 +379 2528 .8 +379 2615 .8 +379 694 .8 +379 696 .8 +379 998 .8 +379 956 .6 +379 1440 .8 +379 960 .8 +379 3598 .8 +379 194 .6 +379 103 .8 +379 624 .8 +379 1356 .8 +379 2831 .6 +379 1448 .6 +4381 4381 1 +4382 4382 .6 +4382 1211 1 +4382 852 1 +4382 764 1 +4383 4383 .6 +2318 86 .8 +2318 2317 .8 +2318 351 .8 +2318 4384 .8 +2318 643 1 +2318 584 .8 +2318 2925 .6 +2318 2318 .8 +2318 4069 .6 +2318 1190 1 +2318 4385 .8 +2318 4386 .8 +865 1653 1 +278 279 .8 +278 277 .6 +1233 1546 .8 +1233 1447 .8 +1233 438 .8 +1233 46 1 +1233 1022 .8 +1233 434 .8 +1233 93 .8 +1233 784 .8 +1233 329 1 +1233 328 1 +1233 1993 1 +1233 1755 1 +1233 2652 .8 +1233 1894 .8 +1233 3380 .6 +1233 30 1 +1233 469 .8 +1233 2713 .6 +1233 2836 .8 +4387 4387 1 +4388 126 1 +4388 1500 1 +377 2289 1 +377 105 .8 +377 377 1 +377 1499 1 +377 2453 .8 +377 1210 .8 +377 1212 .8 +377 2456 .6 +377 652 1 +377 290 1 +377 110 .8 +377 1222 1 +377 1218 .8 +377 2278 .8 +377 137 1 +377 2458 .8 +377 2457 .8 +377 2461 .8 +377 1479 1 +377 1214 .8 +377 1213 .8 +377 2459 .8 +377 79 .8 +377 1219 .8 +377 1205 .6 +377 748 1 +377 3338 .6 +377 749 1 +377 1201 .8 +377 3396 .8 +377 3725 .8 +377 212 .8 +377 3838 .8 +377 1318 1 +377 1091 .8 +377 282 1 +377 639 1 +377 1590 .8 +377 659 1 +377 237 .8 +377 1314 .8 +377 747 1 +377 1070 1 +4389 4389 .8 +4389 827 1 +4389 2031 1 +4389 171 1 +4389 328 1 +4389 1430 1 +4390 736 1 +4390 739 1 +4390 4390 .8 +4390 4391 .8 +2572 2572 .8 +2572 1172 .8 +2572 658 .8 +2572 3602 .8 +2572 1339 .8 +2572 977 .8 +2572 1541 .6 +3468 3468 .8 +3468 1673 .8 +4392 2807 1 +4392 1529 1 +4392 3880 .8 +4392 1530 .8 +4393 4393 .6 +123 123 .8 +137 4394 .6 +137 377 .8 +137 290 1 +137 1218 .8 +137 1222 1 +137 2454 .8 +137 2456 .8 +137 108 .8 +137 137 1 +137 652 1 +137 2453 1 +137 110 .8 +137 2455 .8 +137 1499 .8 +137 2457 .8 +137 1127 1 +137 105 .8 +137 659 1 +137 1210 .8 +137 1479 1 +137 2458 .8 +137 747 1 +137 1212 .8 +137 748 1 +137 2461 .8 +137 746 1 +137 2459 .8 +137 1205 .6 +137 2289 .8 +137 4395 .6 +137 1604 .6 +137 1214 .8 +137 2278 .8 +137 749 1 +137 2501 .8 +137 3645 .8 +137 1201 .8 +137 4396 .8 +2922 2922 .8 +2922 345 1 +2922 4067 1 +2922 46 1 +2922 2921 .6 +2922 2923 .8 +2922 4397 1 +2922 327 .8 +34 1080 .8 +34 638 .8 +34 34 .8 +34 1085 .8 +34 255 .6 +34 1133 .8 +34 172 1 +34 32 .8 +34 1356 .8 +34 3649 .8 +34 1028 .8 +34 1077 .6 +34 1072 .8 +34 31 .8 +34 1993 .8 +34 33 .6 +34 1651 .6 +34 2303 .6 +34 438 .6 +34 2726 .6 +34 2879 .8 +34 753 .6 +34 2172 .8 +34 1633 .8 +34 328 1 +34 501 .8 +34 915 .8 +34 1616 .8 +34 1754 1 +34 791 1 +34 780 .6 +34 112 1 +34 843 .6 +34 4009 .6 +34 1923 .6 +34 1815 .6 +34 797 .8 +34 845 .8 +34 298 .8 +34 810 .8 +34 3442 .6 +34 174 .8 +34 844 .6 +34 807 .8 +34 99 .8 +34 842 .6 +34 933 .6 +34 2614 .8 +34 1658 .8 +34 25 .8 +34 1314 .8 +34 913 .8 +34 840 .6 +34 841 .6 +34 827 1 +34 387 .8 +34 1316 .8 +34 345 1 +34 523 .8 +34 35 .8 +34 982 .8 +34 2272 .6 +34 517 .6 +34 1928 .6 +34 525 .8 +34 830 1 +34 346 .8 +34 1313 1 +34 1175 1 +34 4183 1 +34 1963 .6 +34 2450 1 +34 399 .8 +34 3146 .8 +34 1664 .8 +4255 362 .8 +4398 298 .8 +4398 4399 .8 +4398 3266 .6 +4400 1495 1 +4400 2883 .8 +4400 1080 .6 +4401 555 1 +4401 30 1 +4402 4402 1 +4403 4403 1 +4404 4404 .6 +4404 558 1 +4404 3230 .8 +4404 3233 .6 +4404 2103 1 +4404 1759 .8 +2141 564 .8 +2141 1270 1 +2141 2141 1 +2141 438 .8 +2141 741 1 +2141 1237 .8 +2141 786 1 +2141 2747 .6 +2141 963 .8 +2141 588 1 +2141 3240 .6 +2141 2782 .8 +2141 2433 .8 +2141 758 .8 +2141 178 .8 +2141 1068 1 +2141 837 .6 +2141 385 1 +2141 3085 .8 +2141 2749 .8 +2141 718 .8 +2141 1000 .8 +2141 492 .8 +2141 801 1 +2141 1319 1 +2141 1065 1 +2141 461 .6 +2141 399 .8 +2141 2703 .6 +2141 1788 .8 +2141 2173 .8 +2141 1519 .8 +2141 2214 1 +2141 2226 1 +2141 142 1 +2141 1770 1 +2141 441 1 +2141 173 1 +2141 1149 1 +2141 2739 .8 +2141 234 .8 +2141 1988 1 +2141 3091 .8 +2141 2795 .8 +2141 1958 .6 +2141 2137 .8 +2141 3892 1 +2141 3838 1 +2141 307 1 +2141 4405 .8 +2141 4406 1 +2141 1318 1 +2141 1734 .6 +2141 4407 .6 +4067 31 1 +4067 784 .8 +4067 737 .8 +4067 29 1 +4067 46 1 +4067 328 1 +4067 327 .8 +4067 345 1 +4067 326 1 +4067 324 1 +4067 3099 .8 +4067 1176 1 +4067 1604 .6 +4067 1605 1 +4067 1898 .8 +4067 3188 .8 +4067 2886 .8 +4067 1151 .8 +4067 3102 1 +4067 1220 1 +4067 1221 1 +4067 4408 .8 +4067 1546 1 +4409 1274 .8 +4409 46 1 +3933 121 1 +3933 328 1 +4410 1201 .8 +4410 4410 .6 +4411 4411 1 +4412 1386 .8 +4412 4413 .6 +4412 4414 .6 +4412 4415 1 +4412 859 1 +4412 2256 .6 +4412 1823 .8 +4412 725 .8 +4412 2207 .8 +4412 1005 .8 +4412 1379 1 +4412 429 1 +4412 1247 1 +4412 1375 .8 +4412 4132 .8 +4412 2227 .8 +4416 4416 1 +4417 4417 .6 +4418 4418 .8 +4419 4419 .6 +4420 126 1 +4420 175 1 +4421 82 .8 +4422 4422 1 +1663 467 .8 +1663 46 .8 +1663 1663 .6 +1663 827 .8 +1663 4423 1 +1663 30 .8 +1663 736 .8 +1663 3014 1 +1663 324 .8 +1663 327 .8 +1663 1434 .8 +1663 286 .8 +1663 764 .8 +1663 328 .8 +1663 739 .8 +1663 142 .8 +1663 789 .8 +1663 648 .8 +1663 792 .8 +1663 1247 .8 +1663 2376 .8 +1663 1176 .8 +1663 741 .8 +1663 584 .8 +1663 1644 .6 +1663 836 .8 +1663 1689 .6 +1663 747 .8 +1663 91 .8 +1663 1628 .8 +1663 97 .8 +1663 656 .8 +1663 86 .8 +1663 1604 .6 +1663 175 .8 +1663 1028 .8 +1663 1660 .6 +1663 1603 .8 +1663 623 .8 +1663 2538 .8 +1663 303 .8 +1663 837 .8 +1663 1075 .8 +1663 329 .8 +1663 3216 .6 +1663 1590 .6 +1663 457 .8 +1663 1078 .8 +1663 855 .8 +1663 84 .8 +1663 506 .8 +1663 4424 .6 +1663 791 .8 +1663 1913 .6 +1663 3866 .6 +1663 641 .8 +1663 1218 .8 +1663 743 .8 +1663 4425 .8 +1663 1033 .6 +1663 1927 .6 +1663 4371 .6 +1663 199 .6 +1663 1485 .6 +1663 4245 .6 +1663 4426 .6 +1663 990 .6 +1663 4427 .6 +1663 1415 .6 +1663 3753 .6 +1663 961 .6 +1663 4428 .6 +1663 1690 .8 +1663 92 .8 +1663 163 .8 +1663 540 .6 +1663 353 .8 +1663 595 .6 +1663 269 .6 +1663 2884 .6 +1663 586 .6 +1663 203 .6 +1663 126 .8 +1663 1960 .8 +1663 3544 .8 +1663 1699 .6 +1663 2261 .8 +1663 1113 .6 +1663 2799 .8 +1663 3313 .6 +1663 4142 .8 +4429 4429 .8 +4430 1238 1 +4431 527 .8 +345 345 1 +345 328 1 +345 323 .8 +345 324 1 +345 30 1 +345 326 1 +345 1434 .8 +345 46 1 +345 434 1 +345 736 1 +345 511 1 +345 4397 1 +345 327 .8 +345 4432 1 +345 913 1 +345 1811 1 +345 1020 1 +345 34 1 +1033 1033 .8 +1033 1598 .8 +1033 438 .8 +1033 71 .8 +1033 91 .8 +1033 109 .8 +1033 3296 .8 +1033 1433 .8 +1033 202 .8 +1033 743 1 +1033 1717 .8 +1033 736 1 +1033 784 1 +1033 792 1 +1033 241 .6 +1033 351 .8 +1033 1110 .8 +1033 648 1 +1033 142 1 +1033 176 .8 +1033 789 1 +1033 638 .8 +1033 104 1 +1033 696 .8 +1033 698 .8 +1033 92 .8 +1033 1126 .8 +1033 111 .8 +1033 240 .6 +2780 2780 .6 +2780 46 1 +2780 429 1 +2780 428 1 +2780 377 1 +2780 4254 .8 +2780 2209 .6 +2780 2091 .8 +2780 126 1 +2780 1066 .6 +2780 2774 .8 +2780 708 .6 +2780 1974 1 +2780 597 .8 +2780 2259 .6 +3259 3259 .6 +3259 1764 .8 +3259 778 .6 +3259 625 .8 +3259 457 .8 +3259 812 .6 +3259 1657 .8 +3259 2125 1 +4433 4433 .8 +4434 4434 .6 +4434 1494 1 +4434 103 1 +4435 784 1 +4436 4436 .6 +4165 4165 .6 +4437 4437 1 +4438 4438 .6 +4439 4439 1 +4439 351 1 +713 713 1 +4440 4440 1 +4441 4441 .8 +2008 2008 .8 +2008 1246 1 +2008 1547 .8 +2008 737 1 +2008 2655 .8 +2008 1750 .8 +2008 597 .8 +2008 2657 .8 +2008 126 1 +2008 2656 .6 +4442 4443 .8 +4442 4442 .8 +4444 506 1 +4444 126 1 +4444 787 1 +4444 128 1 +4444 329 1 +4444 644 1 +4391 4391 .8 +4391 4390 .8 +4445 4445 1 +4446 4446 .6 +4447 46 1 +4447 2289 .8 +4448 548 .8 +4448 4448 .6 +3995 1494 .8 +4449 3631 .8 +4449 865 .8 +4450 4450 .6 +4451 4451 .6 +1657 939 1 +1657 1392 1 +1657 610 1 +1657 546 .8 +1657 1657 .8 +1657 727 .8 +1657 30 1 +1657 719 1 +1657 1362 1 +1657 1869 1 +4452 4452 .8 +1619 224 1 +1619 625 .8 +1619 328 1 +1619 378 .6 +1619 46 1 +1619 1618 1 +4453 4453 .6 +4454 4454 1 +4455 3424 .8 +4455 286 1 +4455 30 1 +4455 46 1 +792 65 .8 +792 1635 .8 +792 801 .8 +792 1308 .8 +792 736 1 +792 648 1 +792 789 .8 +792 142 .8 +792 2376 .8 +792 741 .8 +792 739 1 +792 1452 .8 +792 107 .6 +792 2629 .8 +792 3542 .8 +792 1880 .6 +792 740 .6 +792 4456 .8 +792 1881 .6 +792 2136 1 +4457 4457 .8 +1045 1045 .6 +1045 946 .8 +1794 2782 .8 +1794 584 1 +1794 1794 .8 +1794 2226 1 +1794 2783 1 +1794 4168 1 +1794 1793 1 +4458 4458 .6 +4458 1753 1 +4458 325 1 +4458 2247 1 +1235 1235 .6 +3629 3629 .8 +4459 4459 .6 +4459 3180 .8 +4460 4460 1 +3905 610 1 +4461 4461 .8 +1528 1528 .6 +1528 1526 .8 +1528 1525 .8 +1528 1527 .8 +1724 274 .8 +1724 1722 .8 +1724 1609 .8 +2257 721 .8 +2257 1955 1 +2257 400 1 +2257 4462 .6 +2257 1711 1 +4463 4463 .8 +1247 45 1 +1247 1238 1 +1247 46 1 +1247 428 .8 +1247 429 .8 +1247 30 1 +1247 1123 1 +1247 286 1 +1247 467 .8 +1247 1176 1 +1247 1116 1 +1247 2538 .8 +1247 610 .8 +1247 163 1 +1247 4464 .6 +1247 1511 .8 +1247 597 .8 +1247 1597 .8 +1247 4465 .6 +1247 813 1 +1247 4412 .6 +4466 4466 .6 +4467 4467 .8 +2566 2566 .8 +2566 14 .8 +2566 1167 .8 +2566 1491 .8 +2566 13 .8 +2566 2565 .8 +3225 3225 1 +3225 3013 1 +4468 349 1 +4468 719 1 +4468 1020 1 +4468 522 1 +4468 126 1 +4468 449 1 +4468 2251 1 +4468 1362 1 +4468 653 1 +4469 4469 .6 +2704 1906 1 +2704 428 1 +2704 431 1 +2704 639 1 +2704 1910 1 +2704 1237 1 +2704 1407 .8 +2704 445 1 +2704 429 1 +2704 215 1 +2704 506 1 +2704 353 1 +2704 438 .8 +2704 2782 .8 +2704 2593 .8 +2704 2749 1 +2704 2240 1 +2704 1092 1 +2704 329 1 +2704 126 1 +2704 4470 .8 +2704 46 1 +2704 5 1 +2704 4471 .8 +1816 1816 .8 +1816 429 1 +1816 431 1 +1816 643 .8 +1816 2092 .8 +1816 2090 .8 +1816 2091 .8 +1816 442 .8 +1816 2215 .8 +1816 1270 1 +1816 997 .6 +1816 430 .8 +1816 428 1 +1816 1065 1 +1816 720 .8 +1816 2207 .8 +1816 1823 .6 +1816 4 .8 +1816 30 1 +1816 126 1 +1816 1957 1 +1816 1856 1 +1816 1554 .8 +1816 1561 .8 +1816 2208 .8 +1816 4107 .6 +1816 1064 .6 +1816 4101 .6 +1816 157 .6 +1816 969 .8 +1816 286 1 +1816 1808 .6 +1816 921 .8 +1816 898 .6 +1816 1814 .6 +1816 646 .8 +1816 1085 .8 +1816 514 .8 +1816 324 .8 +1816 121 1 +1816 242 1 +1816 587 .8 +1816 4406 1 +1816 996 .8 +1816 1126 .8 +1816 378 .6 +1816 4266 .6 +1816 3400 .8 +1816 948 .6 +1816 741 .8 +1816 760 .8 +1816 683 1 +1816 1089 1 +1816 175 1 +1816 3850 .8 +1816 44 1 +1816 1172 .8 +1816 525 .8 +1816 469 1 +1816 2222 .6 +1816 22 1 +1816 791 1 +1816 1058 .8 +1816 893 1 +1816 2219 .8 +3547 3546 .8 +3547 109 .8 +3547 3547 .6 +3547 2154 .8 +3547 3420 .6 +3547 2468 .6 +4277 4277 .8 +4277 191 .8 +4472 4472 .8 +4472 586 .6 +2965 2593 .8 +2965 2965 .8 +2965 453 .6 +2965 584 1 +2965 681 .8 +2965 1000 .8 +2965 2747 .8 +2965 2749 .8 +2965 994 .6 +2965 431 1 +2965 3409 .8 +2965 1410 .6 +2965 2783 .8 +2965 142 1 +2965 3085 .8 +2965 2703 .8 +3914 22 1 +3914 3914 1 +3914 424 1 +3914 3064 1 +4473 4473 .6 +162 126 1 +162 825 .8 +162 826 1 +162 46 1 +162 1238 1 +162 1247 1 +162 3328 .8 +162 646 .8 +162 1430 1 +162 385 .8 +162 649 1 +162 1428 .8 +162 1116 1 +162 647 1 +162 30 1 +162 1313 1 +162 2538 1 +162 22 1 +162 4474 .6 +162 813 1 +162 695 1 +162 522 1 +162 1092 1 +162 2042 1 +162 1961 1 +162 303 1 +162 1668 .8 +700 700 .6 +4475 4475 .6 +4476 4476 .8 +4477 4477 .6 +4478 4478 .6 +1044 1016 .8 +4479 1957 1 +4479 126 1 +4480 175 1 +4481 4481 .6 +4363 4363 .6 +4363 739 1 +4363 46 1 +4363 378 .6 +4363 126 1 +4363 2507 .6 +2994 1371 .8 +2994 1065 .8 +2994 2994 .8 +2994 1084 .8 +3176 3176 1 +327 345 1 +327 328 1 +327 326 1 +327 324 1 +4482 4482 1 +1499 2453 .8 +1499 652 1 +1499 1210 .8 +1499 2454 .8 +1499 3642 .8 +1499 105 .8 +1499 1499 .8 +1499 1212 1 +1499 377 .8 +1499 1218 .8 +1499 2289 .8 +1499 286 1 +1499 2456 .8 +1499 108 .8 +1499 659 1 +1499 290 1 +1499 1590 .6 +1499 3338 .6 +1499 1127 .8 +1499 110 .8 +1499 1222 1 +1499 2455 .6 +1499 747 1 +1499 2461 .8 +1499 1479 1 +1499 2458 .8 +1499 2457 .8 +1499 137 1 +1499 1605 .8 +1499 79 .8 +1499 748 1 +1499 2459 .8 +1499 746 1 +1499 1604 .6 +1499 1214 .8 +1499 749 1 +1499 1219 .8 +1499 1213 .8 +1499 2460 .8 +1499 647 1 +1499 3645 .8 +1499 954 .6 +1499 4150 .6 +921 1023 1 +921 22 1 +921 751 1 +921 1682 1 +921 388 1 +921 801 1 +921 92 1 +1324 1324 1 +1324 2271 1 +1324 172 1 +1056 1056 .8 +1056 1653 .8 +1056 2107 .8 +1056 182 .8 +1056 2108 .8 +1056 181 .8 +1056 2112 .8 +1056 2113 .8 +1056 2109 1 +1056 2111 .8 +1056 2849 .8 +1056 2848 .8 +4483 4483 .8 +3090 3090 .6 +3090 780 .8 +3090 461 .6 +2843 2843 .6 +2843 390 .8 +2843 1309 .8 +2843 2667 .8 +2843 1684 .6 +2843 392 1 +2843 1754 1 +2843 388 .8 +2843 389 .6 +2843 801 .8 +2843 2961 .8 +2843 651 .8 +2843 582 .8 +4484 4260 .6 +4485 3725 .8 +4456 1881 .6 +4456 65 1 +4456 792 1 +4456 1880 .6 +4456 4486 .6 +4456 1879 .6 +4456 107 .6 +4456 3501 .8 +4456 3464 .6 +394 1682 1 +394 92 1 +394 65 1 +394 751 1 +394 388 1 +394 1023 1 +394 469 1 +394 801 1 +394 22 1 +394 1019 .8 +394 895 .8 +394 805 1 +394 1686 .8 +394 921 1 +394 1834 1 +4487 1526 .6 +4487 4487 1 +4487 1527 .6 +4487 1525 .6 +1258 1254 .8 +1258 1545 .8 +1258 4131 .8 +1258 62 1 +1258 1236 .8 +1258 148 1 +32 32 .8 +32 31 .8 +32 33 .6 +32 29 1 +32 28 .8 +32 27 .8 +32 26 .8 +32 737 .8 +32 34 .8 +32 1246 1 +1137 1137 .8 +1137 944 .8 +1137 770 1 +1137 2306 .6 +1137 263 .6 +1137 2141 .6 +1137 1091 .6 +1137 1542 .6 +1137 597 .8 +1137 83 .8 +1137 324 1 +1137 70 .6 +1137 94 .8 +1137 1851 1 +1137 3179 .8 +1137 776 .8 +4488 4488 1 +4489 4489 .6 +605 712 .8 +605 545 1 +605 791 1 +605 923 .8 +605 757 .6 +605 2000 .6 +605 751 1 +605 3510 .6 +605 2034 .8 +605 584 1 +605 1153 .6 +605 362 1 +605 2372 1 +605 3316 .8 +605 2021 .8 +605 438 .8 +605 1494 .8 +605 919 .8 +605 328 1 +605 2535 .8 +605 580 .8 +605 886 .8 +3427 1852 1 +3427 3986 .8 +3427 804 .8 +3427 46 1 +3427 30 1 +3427 1617 .6 +3427 4490 .6 +3427 1242 .8 +3427 3538 .6 +3427 3444 .6 +3427 261 .6 +3427 1416 .8 +3427 1631 .8 +3427 4035 .6 +3427 3430 .8 +3427 1182 .6 +3427 2832 .6 +3427 1642 .8 +3427 4120 .6 +3427 902 .8 +3427 1068 1 +3427 990 .8 +3427 1142 .8 +3427 2147 .6 +3427 904 .8 +3427 583 .8 +3427 780 .8 +3427 1394 .8 +3427 2671 .6 +3427 460 .8 +3427 157 .8 +3427 234 .6 +3427 192 .8 +3427 597 .8 +3427 1368 .6 +3427 708 .8 +3427 1775 .8 +3427 793 .8 +3427 1181 .6 +3427 2634 .6 +3427 4238 .6 +3427 625 .8 +3427 1563 .6 +3427 2251 .8 +3427 3425 .8 +3427 1662 .8 +3427 1243 .8 +3427 1910 1 +3427 2550 .8 +3427 2252 .8 +3427 346 1 +112 1117 1 +112 1020 1 +112 719 1 +112 1616 .8 +112 328 1 +112 22 1 +112 425 1 +112 424 1 +112 118 1 +112 770 1 +112 46 1 +112 325 1 +112 735 .8 +112 511 .8 +112 1356 .8 +112 174 .8 +112 1075 .8 +112 349 .8 +112 1082 .8 +112 326 1 +112 577 .8 +112 468 .8 +112 1124 1 +112 426 1 +112 1476 .8 +112 4175 .6 +112 858 1 +112 1073 .8 +112 2942 .8 +112 351 .8 +112 947 .6 +112 1918 .8 +112 40 .6 +112 829 .8 +112 282 .8 +112 1133 .8 +112 915 .8 +112 1028 .8 +112 638 .8 +112 1284 .6 +112 3517 .6 +112 481 .8 +112 1434 .8 +112 797 .8 +112 34 .6 +112 1917 .6 +112 209 .8 +112 65 .8 +112 784 .8 +112 2247 .8 +112 172 .8 +112 801 .8 +112 1167 .6 +112 430 .8 +112 657 .6 +112 918 .8 +112 144 .8 +112 1892 .8 +112 2060 .6 +112 3572 .8 +112 2553 .6 +112 4491 .6 +112 2248 .6 +112 887 .8 +112 737 .8 +112 4492 .6 +112 1211 .8 +112 1639 .6 +112 2002 .6 +112 569 .6 +112 2157 .8 +112 937 .6 +112 377 .6 +112 13 .8 +112 1641 .6 +112 2457 .8 +112 1660 .6 +112 110 .8 +112 1116 1 +112 1754 1 +112 736 1 +112 555 1 +112 108 .8 +112 1078 .8 +112 353 1 +112 729 .8 +112 1452 .8 +112 4344 .6 +112 297 .8 +112 1343 1 +112 1536 .8 +112 810 .6 +112 2076 1 +112 3102 .8 +112 423 .8 +112 3758 .8 +112 1930 1 +112 2271 .8 +112 291 .6 +112 1520 .8 +112 1283 .6 +112 438 .8 +112 2789 .8 +112 1160 .8 +112 1927 .8 +112 165 .8 +112 4493 .6 +112 255 .6 +112 287 .8 +112 285 .8 +112 609 .8 +112 3069 .8 +112 3772 .6 +112 3066 .6 +112 3070 .8 +315 314 .8 +315 30 1 +1988 234 .8 +1988 3091 .6 +1988 50 .8 +1988 1769 1 +1988 588 .8 +1988 66 1 +1988 1605 .8 +1988 963 .8 +4494 2154 .8 +2091 2091 1 +2091 429 1 +2091 2206 .8 +2091 725 .8 +2091 4107 .8 +2091 578 1 +2091 1823 .6 +2091 431 1 +2091 643 1 +2091 2207 .8 +2091 618 1 +2091 1191 1 +2091 3239 .8 +2091 430 .8 +2091 1816 .8 +2091 1561 .8 +2091 1555 1 +2091 1270 1 +2091 2219 1 +2091 1066 .6 +2091 2222 .6 +2091 1554 .8 +2091 428 1 +2091 2228 1 +2091 1832 .6 +4495 4495 .6 +3431 3431 .8 +3431 1002 1 +3431 1001 1 +3431 1020 1 +1209 764 1 +590 167 .8 +590 1862 .8 +590 1861 .8 +590 1863 .8 +590 590 .8 +590 3380 .6 +590 45 1 +590 3316 .8 +590 165 .8 +590 2171 1 +590 362 .8 +590 297 1 +1185 13 1 +1185 34 .8 +1185 357 .8 +1185 355 .8 +1185 356 .6 +1185 191 .8 +1185 759 .8 +1185 281 .6 +1185 232 .6 +1185 4496 .6 +1185 19 .6 +1185 587 .8 +1185 46 1 +1185 329 1 +1185 783 1 +1185 2610 .8 +1185 3863 .6 +1185 55 .6 +1185 928 .6 +1185 582 .8 +1185 3732 .8 +1185 89 .6 +1185 4037 .6 +1185 276 .8 +1185 4497 .6 +1185 290 1 +1185 3153 .6 +1185 623 .8 +1185 3190 .6 +1185 438 .6 +1185 2003 .6 +4498 329 1 +4498 45 1 +4498 4498 .8 +1917 30 1 +1917 324 .8 +1917 1616 .8 +1917 3663 .6 +1917 2272 .6 +1917 1602 .6 +607 607 .8 +607 766 .6 +607 606 .8 +607 3281 1 +2316 148 1 +2316 2316 .6 +2316 3604 .6 +4499 4499 .8 +4499 1175 1 +4500 4500 .8 +4501 4501 .6 +4502 4502 1 +4502 1476 1 +1704 1704 .8 +1704 334 .8 +1704 2514 .6 +1704 1675 .8 +1704 1706 .8 +4503 4503 .6 +4503 286 1 +4503 175 1 +4503 4504 .8 +4503 328 1 +2223 429 1 +4505 625 1 +4505 4506 .8 +4505 4505 1 +296 1767 .8 +296 3281 1 +296 714 .8 +296 286 1 +296 1553 .8 +296 1222 1 +296 137 .8 +296 649 1 +296 328 1 +296 1127 .8 +296 2289 .8 +296 45 1 +296 290 1 +296 4507 .6 +296 2343 .8 +595 595 .8 +595 324 .8 +595 30 1 +595 323 1 +595 328 1 +595 466 .8 +595 351 .8 +595 1075 1 +595 326 1 +595 719 1 +595 345 .8 +595 1753 1 +595 1754 1 +595 543 .6 +595 492 .8 +595 712 .8 +108 1499 .8 +108 105 .8 +108 652 1 +108 2456 .8 +108 1210 .8 +108 659 1 +108 2289 .8 +108 290 1 +108 108 .8 +108 2453 .8 +108 764 1 +108 110 .8 +108 377 .8 +108 2454 .8 +108 2455 .6 +108 1218 .8 +108 65 .8 +108 1127 .8 +108 1222 .8 +108 2278 .8 +108 1479 1 +108 2457 .8 +108 137 .8 +108 2461 .8 +108 1212 .8 +108 747 1 +108 79 .8 +108 748 1 +108 1205 .6 +108 1605 .8 +108 746 1 +108 2459 .8 +108 2458 .8 +108 1214 .8 +108 1219 .8 +108 1213 1 +108 749 1 +108 2757 .6 +108 647 1 +108 3147 .6 +108 3749 .6 +108 1604 .6 +108 175 .8 +108 3645 .8 +108 887 .8 +108 1112 .8 +108 1339 .8 +108 1113 .8 +108 1110 .8 +108 2501 .8 +108 2951 .6 +108 4508 .6 +2108 2108 .6 +2108 1653 .8 +2108 4509 .6 +2108 182 .8 +2108 2109 .6 +2108 2113 .6 +2108 2849 .8 +2108 4510 .6 +2108 2111 .8 +2108 424 1 +2108 426 1 +2108 1520 1 +2108 2721 .8 +2108 22 1 +2108 1124 1 +2108 112 1 +2108 427 1 +2108 46 1 +2108 2031 .8 +2108 1965 .6 +2108 461 .8 +2108 2107 .8 +2108 3812 .8 +2108 1047 1 +2108 30 1 +2108 4511 1 +2108 293 .8 +2108 624 .8 +2108 3360 .6 +2108 175 1 +2108 126 1 +2108 188 .6 +2108 2850 .6 +2108 233 .8 +2108 89 .6 +2108 183 .6 +2108 2106 .8 +2108 2112 .8 +2108 716 1 +2108 181 .8 +2108 2110 .8 +2108 1056 .8 +2108 2848 .8 +2108 2105 .6 +2108 3805 .8 +4512 1798 .8 +4512 30 1 +4512 4512 .6 +4512 3754 .8 +4512 1309 1 +3237 3237 .8 +3237 2806 .6 +3237 927 .8 +196 197 .8 +196 46 1 +196 196 .8 +196 198 .6 +196 199 .6 +196 195 .6 +196 200 .8 +196 202 .8 +196 205 .6 +196 204 .6 +196 586 .6 +196 1190 .8 +196 203 .6 +196 3380 .8 +4513 1052 1 +4513 2269 1 +4513 1562 1 +4513 375 1 +4513 283 1 +4513 1569 .8 +1064 1957 1 +1064 126 1 +1064 1167 .8 +1064 2206 .8 +1064 2207 .8 +1064 643 1 +1064 4107 .8 +1064 4514 .8 +1064 22 1 +1064 286 1 +1064 30 1 +1064 431 1 +1064 327 .8 +1064 3398 .6 +1064 425 1 +1064 4515 .8 +1064 4516 .8 +1064 2003 .6 +1064 2555 .8 +1064 4101 .6 +1064 1247 1 +1064 446 1 +1064 1816 .8 +1064 428 1 +1064 3357 .8 +1064 3356 .6 +1064 863 .8 +1064 522 .8 +1064 429 1 +1064 1958 .6 +1064 1065 1 +1064 1596 1 +1064 102 .8 +1064 587 .8 +1064 2430 .8 +1064 2091 .8 +1064 825 .8 +1064 324 .8 +1064 46 1 +1064 426 1 +1064 1203 1 +1064 764 1 +1064 1117 1 +1064 618 .8 +1064 118 1 +1064 1764 .8 +1064 261 .8 +1064 4517 .6 +1064 4518 .6 +1064 1063 .6 +1064 3028 .6 +1064 21 .6 +1064 4519 .6 +1064 4520 .6 +1064 3761 .8 +1064 162 1 +1064 329 1 +1064 872 1 +4521 4521 1 +4522 1068 1 +4522 883 1 +4522 888 1 +4522 1491 1 +4522 1278 1 +4522 743 1 +4522 1546 1 +4522 710 1 +4522 856 1 +4522 750 1 +4522 79 1 +4522 49 1 +4522 317 .8 +4522 351 1 +4522 654 1 +4522 653 1 +4522 652 1 +4522 651 1 +4522 51 1 +4522 579 1 +4522 1116 1 +4522 1428 1 +4522 1450 1 +4522 738 1 +4522 30 1 +4522 641 1 +4522 305 1 +4522 747 1 +4522 1752 1 +4522 440 1 +4522 810 1 +4522 643 1 +4522 584 1 +960 2410 .8 +960 2405 1 +960 2928 .6 +960 2406 .8 +960 2411 .6 +960 2407 .8 +960 987 .6 +960 111 .8 +960 271 .8 +960 1703 .6 +960 1226 1 +960 379 1 +960 328 1 +960 1324 1 +960 751 1 +960 2573 .8 +960 565 .8 +960 3911 .8 +960 135 .8 +960 3538 .6 +960 1366 .8 +960 128 1 +219 219 .6 +219 216 .6 +767 767 1 +767 606 .8 +767 17 .8 +767 631 .6 +767 4523 .6 +4524 4524 .6 +4525 4525 1 +276 276 .8 +276 4191 .8 +276 555 1 +276 430 .8 +276 1185 .6 +276 4526 .6 +276 4527 .6 +276 205 .6 +276 582 .6 +276 89 .6 +276 4528 .8 +276 3732 .8 +276 2430 .8 +276 55 .8 +276 232 .6 +276 1678 .6 +276 4529 .6 +276 584 1 +276 774 .8 +276 1277 1 +1268 2505 1 +1268 893 1 +1268 2208 1 +1268 673 1 +1268 175 1 +1268 126 1 +4530 4530 .8 +4531 4531 1 +4532 4532 1 +4533 4533 .6 +4533 4534 1 +4533 307 1 +4535 4535 .8 +4536 4536 .6 +4537 4537 1 +3655 3655 .6 +4538 4538 .8 +334 1764 .8 +334 334 .8 +334 331 .8 +334 282 .8 +334 332 1 +334 864 .8 +334 65 1 +334 1766 .8 +334 1704 .6 +334 1229 .8 +334 4539 .6 +334 2216 .8 +334 2636 .6 +334 67 .8 +334 274 .8 +334 3319 .6 +334 624 .8 +334 4540 .6 +334 399 .8 +334 2246 1 +334 1768 1 +334 48 .8 +334 335 .8 +334 62 .8 +334 224 .8 +334 615 .8 +334 193 1 +334 144 1 +334 1384 .6 +334 189 .6 +334 2671 .6 +4541 4541 .6 +646 202 1 +646 1313 .8 +646 646 .8 +646 1804 .8 +646 791 1 +646 172 1 +646 4010 .6 +646 171 1 +646 2728 .8 +646 830 1 +646 1085 .8 +646 1117 1 +646 1789 .6 +646 350 1 +646 1020 1 +646 934 1 +646 1597 .8 +646 610 1 +646 2611 1 +646 1167 .6 +646 60 .8 +646 1536 1 +646 1547 .8 +646 2518 .8 +646 1139 .6 +646 4405 .8 +646 2214 1 +646 1613 .8 +646 2215 .8 +646 242 .8 +646 2851 .6 +646 802 .8 +646 1156 .8 +646 4542 .6 +646 1318 1 +646 3892 .8 +646 430 .8 +646 583 .8 +646 4406 1 +646 307 1 +646 1816 .8 +646 997 .6 +646 442 1 +646 683 .8 +646 429 1 +646 965 .6 +646 582 1 +646 1488 .6 +646 82 .8 +646 793 .8 +646 162 1 +646 157 .8 +646 1745 .8 +646 984 .8 +646 3850 .8 +646 1316 .8 +646 3838 .8 +646 1301 .8 +646 173 .8 +646 3212 .6 +646 232 .8 +646 2887 .6 +646 2141 .8 +646 212 .8 +646 377 .8 +646 2724 .6 +646 1093 .8 +646 461 .6 +646 893 1 +646 2934 .6 +646 1236 .8 +646 1831 .6 +646 45 .6 +646 1142 .8 +646 776 .8 +646 1223 .8 +646 1551 .8 +646 1182 .8 +646 2537 .6 +646 2774 1 +646 708 .8 +646 23 .8 +3218 3218 .6 +3218 398 .8 +3218 399 .8 +3218 2426 .8 +3218 4543 .6 +3218 4544 .6 +527 430 .8 +527 784 .8 +527 438 .8 +527 883 .8 +527 1211 .8 +527 4545 .6 +527 527 .8 +4546 2684 .8 +4546 1024 .8 +4546 710 1 +4546 286 1 +4546 916 1 +4546 3281 .8 +4546 743 1 +4432 345 1 +4432 3103 .8 +1560 1723 1 +1560 4547 .8 +1560 282 1 +1560 2521 1 +1560 1231 1 +1560 1337 .8 +1560 2332 .8 +1560 2845 .8 +1560 1091 .6 +4548 4548 .8 +4549 4549 1 +2615 1912 1 +2615 2615 .8 +2615 312 .6 +2615 2612 .8 +2615 194 .8 +38 92 .8 +38 1047 .6 +38 255 .6 +38 2715 .8 +4550 4550 .8 +4551 4551 .6 +2246 193 1 +4552 4552 .6 +4191 440 1 +4191 1020 1 +2863 2862 .8 +2863 1172 .8 +4553 4553 1 +4553 1190 .8 +4554 4554 .6 +2114 2114 .6 +2114 332 1 +2114 53 .8 +2114 61 .8 +2114 286 1 +2114 659 1 +2114 377 .8 +4555 4555 .6 +4556 4556 .6 +3296 4557 .6 +3296 241 .6 +514 514 .8 +514 353 1 +514 719 1 +514 327 .8 +514 1602 .6 +514 1604 .6 +514 1516 .8 +514 106 .8 +514 46 1 +514 30 1 +514 324 1 +514 438 .8 +514 492 .6 +514 638 .8 +514 501 .6 +514 44 .8 +514 1798 .6 +514 3140 .6 +514 3189 .6 +514 1484 .8 +514 1483 .6 +514 2020 .8 +514 3141 .6 +514 1090 .8 +514 3113 .6 +514 1933 .8 +514 1149 .8 +514 1167 .6 +514 2432 .8 +514 3119 .6 +514 3890 .8 +514 3562 .6 +514 2933 .8 +514 1151 .8 +514 992 .6 +514 3519 .8 +4558 4558 .8 +4558 418 .8 +4558 4200 .6 +4558 399 1 +4558 46 1 +4558 3187 .8 +4558 1587 .8 +4558 3477 .6 +4558 1376 .6 +4558 261 .6 +4558 1113 .8 +1856 1856 .8 +1856 431 1 +1856 429 .8 +1856 46 1 +1856 30 1 +1856 1065 1 +1856 4 .8 +1856 2205 .8 +1856 2206 .8 +1856 428 1 +1856 4559 .6 +1856 1855 .8 +1856 1910 1 +1856 44 1 +1856 438 .8 +1856 326 1 +1856 436 1 +1856 440 1 +1856 5 1 +1856 1858 .6 +1856 3063 .6 +4560 4560 .6 +4561 801 1 +2181 2181 .6 +2181 62 1 +4562 4562 1 +4414 4415 1 +4414 1386 .8 +4414 2227 .8 +4414 1375 .6 +4414 1379 1 +4414 4132 .8 +4414 707 .6 +4414 859 1 +4414 116 .8 +4414 716 1 +4563 4563 1 +4236 30 1 +4236 937 .8 +4236 323 .8 +4236 1753 1 +4236 2172 .8 +4564 4564 .6 +4565 4565 1 +1116 434 .8 +1116 1238 .8 +1116 1247 .8 +1116 2538 .8 +1116 353 .6 +4566 4566 .6 +4566 1936 .6 +4567 4567 .8 +4568 4568 .6 +626 626 1 +626 3268 1 +626 993 1 +626 3343 .6 +626 3395 .6 +2018 2018 .6 +2018 634 .8 +2018 1992 .6 +2018 791 .8 +2018 2466 .6 +2018 658 1 +2018 1153 .8 +3185 3187 .6 +3185 855 .8 +3185 106 .8 +3185 944 .8 +3185 1546 .8 +4569 4569 1 +2149 922 .8 +2149 364 .8 +2149 1384 .8 +2149 522 1 +2149 780 1 +2149 1397 .8 +2149 349 1 +2149 1416 1 +2149 904 1 +2149 186 .8 +2149 1417 1 +2149 126 1 +2149 2434 .8 +2149 1495 1 +2149 719 1 +2149 2252 .8 +2149 492 .8 +2149 799 .8 +2149 793 .8 +2149 352 1 +2149 791 1 +2149 2134 .6 +2149 2787 1 +2149 779 .8 +2149 1117 1 +2149 3440 .8 +2149 728 1 +2149 610 .6 +2149 1420 1 +4570 4570 .8 +4571 4572 .8 +4573 4573 .6 +4573 286 1 +2273 2273 .6 +2273 584 1 +2273 677 .6 +2273 597 .6 +2273 46 1 +2273 2002 .8 +2273 1086 .8 +2273 4574 .8 +2273 81 .8 +2273 846 .8 +2273 3249 .8 +376 376 .6 +376 121 .8 +376 1170 .6 +376 3217 .6 +376 212 .6 +376 994 .6 +376 1605 .8 +376 2966 1 +376 597 .8 +376 110 .8 +376 659 1 +376 860 1 +376 292 1 +376 1211 1 +376 1176 1 +376 19 1 +376 357 .8 +376 3856 .6 +376 1085 1 +376 1047 .8 +376 751 1 +376 764 1 +376 584 1 +376 157 .6 +376 1590 .6 +376 2872 .6 +376 1159 .6 +376 4575 .6 +376 65 1 +376 746 1 +376 749 1 +376 647 1 +376 1543 1 +376 399 .8 +376 792 .8 +376 2134 .6 +376 599 .8 +1040 1040 .6 +4576 4576 .8 +4576 2267 .8 +2523 928 .6 +2523 751 1 +2523 2523 .6 +2523 2295 .8 +2523 2412 .8 +2523 3283 .8 +2523 19 .8 +2523 3284 .6 +4577 4577 .8 +4578 4578 .6 +4578 708 .8 +4578 1384 .8 +4578 1183 .8 +4578 328 1 +4578 4579 .6 +4578 2141 1 +4578 791 1 +4578 577 1 +4578 1277 .8 +4578 983 1 +1396 1396 .8 +2782 2782 .6 +2782 963 .6 +2782 3951 .6 +2782 3087 .6 +2782 438 .8 +2782 1643 .8 +2782 716 .8 +2782 492 .8 +2782 934 1 +2782 588 .8 +2782 245 .6 +2782 3856 .6 +2782 773 .6 +2782 378 .6 +2782 63 .6 +2782 997 .6 +2782 102 .8 +2782 712 .8 +2782 2483 .6 +2782 631 .6 +2782 513 .8 +2782 912 1 +2782 3085 .8 +2782 2749 .8 +2782 453 .6 +2782 584 1 +2782 2593 .8 +2782 4580 1 +2782 2739 .8 +2782 1794 .8 +2782 2141 .8 +2782 617 .8 +2782 66 .6 +2782 2783 .6 +2782 2750 .8 +2782 335 .8 +2782 4581 .8 +2782 328 1 +2782 1716 .8 +2782 2704 .6 +2782 22 1 +2782 1586 .8 +2782 2243 .6 +2782 3288 .6 +2782 1154 .8 +2782 2774 .8 +2782 4582 .6 +2782 2793 .6 +2782 4407 .6 +2782 1153 .8 +2610 3573 .8 +2610 2880 1 +2610 215 .8 +2610 2561 .8 +2610 1122 1 +2610 1428 .8 +2610 1249 1 +2610 1053 .8 +2610 1738 1 +2610 1757 1 +2610 827 1 +2610 2226 1 +2610 58 .8 +2610 1908 1 +2610 1392 1 +2610 716 1 +2610 119 1 +2610 1092 1 +2610 1002 .8 +2610 1447 .8 +2610 637 1 +2610 639 1 +2610 1454 .8 +2610 640 1 +2610 641 1 +2610 265 .8 +2610 330 .8 +2610 305 .8 +2610 2214 1 +2610 1752 1 +2610 1362 1 +2610 2615 .8 +2610 440 1 +2610 331 .8 +2610 644 1 +2610 427 1 +2610 1116 1 +2610 334 1 +2610 642 1 +2610 432 1 +2610 645 1 +2610 2213 .8 +2610 1519 1 +2610 63 1 +2610 348 1 +2610 2747 .8 +2610 1123 1 +2610 863 .8 +2610 1847 1 +2610 746 1 +2610 1167 .8 +2610 345 1 +2610 241 .8 +2610 4583 1 +2610 623 .8 +2610 717 1 +2610 379 1 +2610 332 1 +2610 2847 .8 +2610 805 .8 +2610 2103 1 +2610 1436 1 +2610 1961 .8 +2610 1898 1 +2610 1993 1 +2610 578 1 +2610 2348 1 +2610 327 .8 +2610 57 1 +2610 912 1 +2610 2372 1 +2610 13 1 +2610 1052 1 +2610 614 .8 +2610 1030 1 +2610 619 .8 +2610 104 .8 +2610 295 .8 +2610 422 .8 +2610 1955 1 +2610 2232 1 +2610 618 1 +2610 3288 .8 +2610 31 .8 +2610 2823 1 +2610 1286 .8 +2610 830 1 +2610 1910 1 +2610 1211 .8 +2610 2247 1 +2610 363 1 +2610 1313 .8 +2610 1089 1 +2610 325 1 +2610 673 1 +2610 2218 1 +2610 1479 1 +2610 167 .8 +2610 1768 1 +2610 1247 1 +2610 915 1 +2610 1134 1 +1761 30 1 +3428 597 .8 +3428 3428 1 +3428 711 1 +3428 3429 .8 +3428 898 .6 +3428 1852 1 +3428 774 1 +3428 214 .6 +1441 176 .8 +1441 171 1 +4584 4584 .8 +4585 4586 .6 +2769 2769 .8 +4587 328 1 +4587 4587 .6 +4588 286 1 +4588 329 1 +4588 30 1 +4588 353 1 +4588 29 1 +588 588 .8 +588 1591 .8 +588 739 1 +588 1053 .8 +588 46 1 +588 225 .8 +588 353 1 +588 328 1 +588 121 1 +588 1229 .8 +588 387 .8 +588 385 .8 +588 514 .8 +588 286 1 +588 333 .8 +588 1914 .6 +588 45 1 +588 1177 1 +588 92 1 +588 2515 .6 +588 1246 1 +588 492 1 +588 712 .8 +588 517 .6 +588 648 1 +588 1650 .6 +588 2782 .6 +588 963 .6 +588 792 1 +588 1301 .6 +588 2777 .6 +588 234 .6 +588 1560 1 +588 890 .6 +588 1586 1 +588 420 .8 +588 1050 .8 +588 2240 .8 +588 1047 .6 +588 1167 .6 +588 2861 1 +588 2521 1 +588 2232 1 +588 2141 1 +588 346 1 +588 1988 .8 +588 716 1 +588 2752 .6 +588 1420 .8 +588 598 .8 +4589 4589 .6 +4590 4590 .8 +4591 4591 1 +4591 747 1 +4591 377 1 +4592 116 1 +4593 714 .8 +4593 4593 .8 +1337 45 1 +1337 1337 1 +1337 119 1 +1337 2798 .8 +1337 4196 .8 +1337 329 1 +1337 282 1 +1337 1123 1 +1337 1723 1 +1337 3770 1 +1337 4547 1 +1337 1560 1 +1337 2521 1 +1337 1231 1 +1337 2420 1 +1337 1171 1 +1337 696 1 +1337 694 1 +1337 697 .8 +1337 3010 .8 +1337 2323 .8 +1337 855 1 +1337 1091 .8 +1337 65 1 +1337 640 1 +1337 2949 1 +1337 764 1 +3125 3125 .6 +4594 4594 .6 +359 1230 .8 +359 22 1 +359 282 1 +359 764 1 +359 869 1 +359 1227 1 +359 584 1 +359 359 .6 +359 1132 .6 +4595 1247 1 +45 2740 .6 +45 819 .6 +45 944 1 +45 937 .8 +45 119 1 +45 3885 1 +45 1281 .8 +45 1337 1 +45 577 1 +45 3940 .6 +45 1557 1 +45 65 1 +45 2060 .6 +45 2798 1 +45 1028 .8 +45 946 .8 +45 4196 .8 +45 4596 .8 +45 2834 .8 +45 335 .8 +45 329 1 +45 1408 .6 +45 194 .8 +45 1026 .8 +45 1023 .8 +45 4597 .8 +45 3888 .6 +45 3573 .6 +45 584 1 +45 1053 1 +45 104 1 +45 739 1 +45 719 1 +45 651 .8 +45 1346 .8 +45 4598 .6 +45 4599 1 +45 588 .6 +45 2356 1 +45 746 1 +45 4600 .6 +45 1671 .6 +45 1485 .6 +45 1280 1 +45 1247 1 +45 1688 .8 +45 2125 1 +45 42 .6 +45 4601 .8 +45 1154 1 +45 120 .6 +45 802 1 +45 1160 1 +45 1369 1 +45 4602 .6 +45 4603 .6 +45 63 1 +45 4604 .6 +45 4605 1 +45 4606 .8 +45 165 1 +45 1898 1 +45 1251 .8 +45 4607 .6 +45 736 1 +45 4608 .8 +45 4609 .6 +45 536 1 +4610 62 .8 +2226 2226 .8 +2226 506 1 +2226 1160 1 +2226 4534 .6 +2226 46 1 +2226 1647 .8 +2226 438 1 +2226 303 1 +2226 441 1 +2226 432 1 +2226 2002 .8 +2226 1847 1 +2226 844 .6 +2226 308 1 +2226 307 1 +2226 2700 .8 +2226 843 .8 +2226 316 1 +2226 305 1 +2226 577 1 +2226 2218 1 +2226 1817 .8 +2226 1062 .8 +2226 511 1 +2226 304 1 +2226 1993 1 +2226 523 .8 +2226 719 1 +2226 1020 1 +2226 174 1 +2226 434 1 +2226 353 1 +2226 990 .8 +2226 1794 .6 +2226 584 1 +2226 103 .8 +2226 157 .8 +2226 613 .8 +2226 428 1 +2226 599 .6 +2226 345 1 +2226 2224 .8 +2226 645 1 +2226 306 1 +2226 1068 1 +2226 44 1 +2226 2551 1 +2226 3082 1 +2226 65 1 +2226 492 1 +2226 3482 1 +2226 4611 1 +2226 2078 .8 +2226 649 1 +2226 4612 1 +2005 2005 .6 +2005 3133 .8 +2005 311 .6 +3239 578 .8 +3239 618 1 +3239 1191 1 +3239 643 1 +3239 428 .8 +3239 2091 .8 +3239 1554 1 +3239 1561 1 +3239 2208 .8 +3239 1856 1 +3239 2215 1 +3239 720 .8 +3239 1555 1 +3239 619 1 +4613 4613 .6 +58 58 1 +58 1767 .8 +58 57 1 +58 48 1 +58 50 1 +58 1769 1 +1323 1323 .6 +1323 762 1 +1323 328 1 +1323 98 .6 +1323 610 1 +4614 129 1 +4614 2340 .8 +4615 1711 1 +4615 813 1 +4615 1249 1 +4615 400 .8 +4615 45 .6 +4615 1264 .8 +4615 4616 1 +3444 3444 .6 +3444 126 1 +3444 1968 .8 +3444 787 1 +3444 810 1 +3444 346 1 +3444 492 1 +3444 708 .8 +3444 2227 .8 +3444 793 .8 +3444 718 .8 +3444 1293 .8 +3444 513 1 +3444 1586 1 +3444 324 1 +3444 1775 .8 +3444 1382 .8 +3444 3427 .6 +3444 422 .8 +3444 2847 .8 +3444 3986 .8 +3444 780 1 +3444 620 1 +3444 1851 1 +3444 717 1 +3444 678 .8 +3444 1165 .8 +3444 673 .8 +3444 3625 .6 +3444 2463 .8 +3444 597 .8 +3444 349 1 +3444 4173 .8 +3124 612 1 +3124 1778 .6 +3124 1569 .6 +3124 1562 1 +3124 2100 .6 +3124 2269 .8 +1245 1237 .8 +1245 44 1 +1245 737 .8 +998 998 .8 +998 2971 .6 +998 3308 .6 +998 1086 .8 +998 1226 .8 +998 651 .8 +998 1227 1 +998 869 1 +998 1230 .8 +998 379 .8 +998 238 .6 +858 328 .8 +858 983 1 +858 1195 .8 +4617 4617 1 +4617 584 1 +4617 175 1 +4617 1086 .8 +4618 1898 .8 +205 200 .8 +205 201 .6 +205 203 .6 +205 197 .8 +205 582 .8 +205 584 .8 +205 195 .6 +205 276 .8 +205 204 .8 +205 757 .6 +205 1078 .8 +205 323 .8 +205 2570 .6 +205 1648 .8 +205 196 .8 +205 1190 .8 +205 46 1 +205 232 .6 +205 580 .8 +205 581 .6 +205 2615 .8 +205 579 .6 +205 586 .6 +205 738 .8 +205 2329 .6 +205 2858 .6 +205 803 .6 +205 4303 .6 +205 4619 .6 +205 1464 .8 +205 246 .6 +205 70 .6 +205 1136 .6 +205 254 .6 +205 199 .6 +4620 1809 .8 +4620 4620 .6 +920 920 .6 +920 917 .6 +920 103 .8 +920 533 .6 +920 4621 .6 +920 1846 .6 +920 534 .6 +920 535 .6 +920 536 .6 +920 537 .6 +920 46 1 +920 438 .8 +920 353 1 +920 773 .6 +920 255 .6 +920 187 .6 +920 362 .8 +920 4622 .6 +920 4623 .6 +920 1685 .8 +920 2865 .8 +920 1427 .8 +920 2155 .6 +4624 4624 .6 +4094 4094 .6 +4094 2832 .6 +4094 2831 .8 +4094 1175 .8 +2225 1024 .8 +2225 431 1 +2225 2225 .8 +1263 1223 1 +1263 1264 1 +1263 1236 1 +1263 62 1 +1263 610 1 +1263 1378 1 +1563 1563 .6 +1563 1049 1 +1563 714 1 +1563 1545 .8 +1563 3390 .8 +1563 1569 .8 +1563 2277 1 +1823 1823 .8 +1823 429 .8 +1823 1191 .8 +1823 4593 .6 +1823 2205 .6 +1823 578 .6 +1823 2207 .8 +1823 2091 .6 +1823 725 .6 +1823 46 1 +1823 643 1 +1823 2209 .6 +1823 431 1 +1823 4047 .6 +1823 2206 .8 +1823 442 .8 +1823 618 .6 +1823 30 1 +1823 316 .8 +1823 2092 .8 +1823 4132 .6 +1823 89 .6 +1823 1554 .8 +1823 1065 .8 +1823 4257 .6 +1823 428 1 +1823 157 .6 +1823 757 .6 +1965 1965 .6 +1965 1653 .8 +1965 182 .8 +1965 181 .8 +1965 1047 1 +1965 1056 .8 +1965 2108 .8 +1965 2243 .8 +1965 2106 .8 +1965 2580 .8 +1965 2109 .8 +1965 2848 .8 +1641 282 1 +1641 887 .8 +1641 113 .8 +1641 784 .8 +1641 215 .8 +1641 1605 .8 +1641 332 1 +1641 637 1 +1641 629 .8 +1641 63 .8 +1641 194 .8 +1641 292 1 +1641 95 1 +1641 2944 1 +4625 322 .8 +4625 4492 .8 +4625 4083 .8 +4625 4625 .8 +4626 3168 .6 +5 46 1 +5 30 1 +5 647 1 +5 440 1 +5 431 1 +5 5 .8 +5 353 1 +5 429 .8 +5 2235 1 +2657 737 1 +2657 1246 1 +2227 2227 .8 +2227 739 1 +2227 4102 .8 +2227 2416 .8 +2227 522 1 +2227 4254 .8 +2227 2251 1 +2227 3398 .8 +2227 492 1 +2227 4120 .8 +2227 4627 .6 +2227 4194 .8 +2227 2259 .6 +2227 3441 .8 +2227 3705 .8 +2227 682 .8 +2227 2144 .8 +2227 1823 .8 +2227 728 1 +2227 2911 1 +2227 1519 1 +2227 1375 .6 +3640 3640 .6 +3640 799 .8 +3640 492 1 +3640 1133 1 +3640 1898 1 +3640 126 1 +3640 715 1 +698 317 .8 +698 697 .8 +698 569 .6 +698 694 .8 +199 197 .8 +199 1663 .8 +199 198 .6 +199 196 .8 +199 1605 .8 +199 200 .8 +199 586 .8 +199 324 1 +199 203 .6 +199 2329 .6 +199 1675 .6 +199 610 .8 +199 1022 1 +199 1171 1 +199 500 .6 +199 841 .6 +199 805 .6 +199 807 .8 +199 199 .8 +199 277 .8 +199 2405 .8 +199 187 .8 +199 1798 .6 +199 9 .8 +199 1153 .6 +199 478 .8 +199 584 .8 +199 1201 .8 +199 513 .6 +199 579 .8 +199 3776 .8 +199 919 .8 +199 1172 .8 +199 918 .8 +199 1839 .8 +199 751 1 +199 784 1 +199 1068 1 +199 1126 1 +199 577 1 +199 92 .8 +199 764 1 +199 316 1 +199 1616 1 +199 195 .6 +199 4628 .6 +199 3852 .6 +199 356 .8 +199 1495 1 +199 2593 .6 +199 214 .8 +199 757 .6 +199 1353 .8 +199 19 .6 +199 1134 1 +199 205 .6 +199 1671 .6 +199 2199 .6 +199 1165 .8 +199 4629 .6 +199 651 .8 +199 65 1 +199 52 .8 +199 111 .8 +199 429 1 +199 1650 .6 +199 94 .6 +199 830 .8 +199 1281 .8 +199 1543 .8 +199 103 .8 +199 944 .6 +4225 1524 1 +4225 4225 .8 +4630 4630 .6 +4035 746 1 +4035 4035 .8 +4035 858 1 +4035 983 .8 +4035 1562 1 +4035 375 1 +4035 296 .8 +4528 285 .8 +4528 424 1 +4528 22 1 +4528 426 1 +4528 276 .8 +4528 312 .6 +4528 578 .8 +4528 45 1 +2343 296 1 +4631 4631 .8 +3716 3716 .6 +3716 214 .8 +3716 891 .6 +3716 885 .8 +4632 399 .8 +4632 1716 .6 +4632 1717 .8 +4632 1809 .8 +3382 584 1 +3382 2325 .6 +3382 4432 .8 +3382 2073 .6 +3382 327 .8 +3382 3382 .8 +4633 4633 .8 +4633 1407 .8 +4633 445 1 +4633 1126 .8 +4633 1466 .6 +4633 757 .6 +1220 2891 .8 +1220 3102 .8 +1220 1221 .8 +1220 584 .8 +1220 444 .8 +1220 1220 1 +1220 1201 .8 +1220 1582 .6 +4634 4634 .6 +572 572 .8 +2745 405 .8 +2745 1960 1 +2745 736 1 +2745 739 1 +2745 46 1 +2745 30 1 +2745 2686 .6 +2745 2687 .6 +2745 3297 .6 +2745 715 .8 +2745 786 .8 +2745 207 .8 +3937 3936 .6 +3937 3937 1 +770 112 1 +770 305 1 +770 46 1 +770 425 1 +770 118 1 +770 1124 1 +770 22 1 +770 424 1 +770 282 1 +770 426 1 +770 427 .8 +770 1126 1 +770 764 1 +770 2521 1 +770 658 .8 +770 640 1 +770 2949 1 +770 1171 1 +770 2823 1 +770 598 .8 +770 1125 1 +770 1723 1 +770 806 .6 +770 801 .8 +770 1137 .6 +770 194 1 +770 469 .8 +770 2831 .6 +770 3071 .8 +1372 1372 .6 +4003 1136 .6 +4003 126 1 +4003 3572 1 +4003 2076 1 +4003 3006 .8 +4003 303 1 +4003 352 1 +4003 919 .6 +4003 271 .8 +4003 518 .8 +4003 328 1 +4003 30 1 +4003 719 1 +4003 324 1 +4003 4635 .8 +4003 329 1 +4003 1315 1 +4003 3101 .8 +4003 1898 1 +4003 104 1 +4003 92 1 +4003 286 1 +83 912 1 +83 2135 .8 +83 1937 .8 +83 1671 .8 +83 172 1 +83 810 .8 +83 492 .6 +83 171 1 +83 1754 1 +83 30 1 +83 1020 1 +83 915 1 +83 350 1 +83 174 .8 +83 933 .8 +83 2271 1 +83 349 1 +83 438 .8 +83 2172 1 +83 251 .6 +83 1192 .6 +83 258 .6 +83 1486 .6 +83 712 .8 +83 2089 .8 +83 2134 .6 +83 2138 .6 +4636 4636 1 +279 277 .8 +279 278 .6 +279 441 1 +279 4637 .6 +279 4008 .6 +279 349 1 +279 191 .8 +279 4098 .8 +279 4096 .6 +279 831 .6 +279 4379 .6 +279 92 .8 +279 14 .6 +279 2324 .8 +279 4097 .8 +2402 2402 .6 +2002 2002 .8 +2002 303 1 +2002 305 1 +2002 95 .8 +2002 1915 .6 +2002 1160 .8 +2002 306 .8 +2002 434 1 +2002 555 1 +2002 1086 .8 +2002 318 1 +2002 317 .8 +2002 316 .8 +2002 1116 1 +2002 647 1 +2002 843 .8 +2002 353 1 +2002 304 1 +2002 881 .8 +2002 438 .6 +2002 1594 .6 +2002 2698 .6 +2002 432 1 +2002 441 1 +2002 1557 .8 +2002 2700 .8 +2002 1407 .6 +2002 308 .6 +2002 2218 1 +2002 577 1 +2002 44 1 +2002 523 .6 +2002 533 .8 +2002 542 .8 +2002 1817 .8 +2002 2217 1 +2002 844 .8 +2002 413 .6 +3172 1437 1 +3172 1927 .6 +3172 719 1 +3172 1167 .6 +3172 441 1 +3172 2351 .8 +4638 4638 .8 +161 153 1 +161 154 1 +161 161 .6 +4639 1334 .8 +4639 514 .8 +4639 4639 .8 +4639 4640 .8 +4639 739 1 +4639 142 .8 +4639 789 .8 +4639 656 .8 +1238 1238 .8 +1238 916 .8 +346 46 1 +346 346 .8 +346 719 1 +346 324 1 +346 643 1 +346 110 .8 +346 2317 .8 +346 1754 1 +346 2318 .8 +346 638 1 +346 892 .8 +346 298 .8 +346 791 1 +346 1167 .6 +346 934 1 +346 780 .8 +346 171 1 +346 344 1 +346 807 1 +346 326 1 +346 1497 .8 +346 947 .8 +346 804 .8 +346 712 .8 +346 2390 .6 +346 526 .8 +346 1003 .8 +346 1001 .8 +346 1798 .8 +346 454 .8 +346 3405 .8 +346 779 .8 +346 1490 1 +346 620 .6 +346 349 1 +346 1049 .8 +346 3112 .8 +346 718 .8 +346 830 1 +346 4582 .6 +346 2173 .8 +346 522 1 +346 3651 .6 +346 990 .8 +346 577 1 +346 1656 .6 +346 678 .8 +346 2372 .8 +346 844 1 +346 1436 1 +346 348 1 +346 542 .8 +346 2251 .8 +346 1293 .8 +346 2080 .8 +346 30 1 +4641 1371 1 +3445 990 1 +2524 2524 .8 +2524 2033 .6 +2524 1685 .6 +2524 328 1 +2524 760 .8 +2524 3422 .8 +2524 1330 .8 +2524 2216 .8 +2524 621 .8 +2524 2429 .8 +4642 4642 .8 +4642 577 1 +4642 9 .8 +4642 918 1 +4642 65 1 +4642 329 1 +441 1892 .8 +441 436 1 +441 1288 .8 +441 2078 .8 +441 209 .8 +441 4643 .8 +441 1996 1 +441 1086 .8 +441 437 .8 +441 320 .8 +441 439 .8 +441 318 1 +441 435 .8 +441 2210 .8 +441 46 1 +441 279 .8 +441 4637 .8 +441 348 .8 +441 648 .8 +441 4098 .8 +441 445 1 +441 4096 .8 +441 738 1 +441 93 .6 +441 316 1 +441 305 1 +441 5 1 +441 3558 .8 +441 639 1 +441 192 .8 +441 1770 1 +441 2231 .8 +441 1893 1 +441 440 1 +441 3304 .8 +441 43 1 +441 4644 .8 +441 1783 .8 +441 1548 1 +441 429 1 +441 1270 1 +441 44 1 +441 373 1 +441 432 1 +441 431 1 +441 624 1 +441 4078 .8 +441 859 1 +441 2338 .8 +441 716 1 +441 802 1 +441 4645 .6 +4646 4646 .6 +3089 3089 .6 +3089 157 .8 +3089 597 .8 +3089 492 .8 +4647 173 1 +4647 4648 1 +4647 652 1 +4649 4649 1 +4649 273 1 +4649 469 1 +4649 466 .8 +4649 30 1 +4649 46 1 +4649 1068 1 +4649 2226 1 +4649 4650 .8 +4649 779 .8 +4649 610 1 +4649 424 1 +4649 1816 1 +4649 364 .8 +4649 780 .8 +4649 719 1 +4651 584 1 +328 30 1 +328 1616 .8 +328 1072 .8 +328 645 .8 +328 947 .6 +328 719 1 +328 466 .8 +328 1073 .8 +328 468 .8 +328 324 .8 +328 1075 .8 +328 1074 .8 +328 2875 .6 +328 1434 .8 +328 1020 .8 +328 1117 .8 +328 174 .8 +328 2101 .8 +328 511 .8 +328 934 .8 +328 1313 .8 +328 2877 .8 +328 1002 .8 +328 326 .8 +328 577 .8 +328 1082 .8 +328 1633 .8 +328 323 .8 +328 1401 .8 +328 2103 .8 +328 352 1 +328 2616 .8 +328 797 .6 +328 1789 .6 +328 1436 .6 +328 215 .6 +328 349 .8 +328 350 .8 +328 668 .8 +328 1079 .8 +328 144 .8 +328 2291 .8 +328 1427 .8 +328 202 .8 +328 1426 .8 +328 3017 .6 +328 858 .8 +328 1123 1 +328 1727 .8 +328 1863 .6 +328 667 .8 +328 112 .8 +328 1915 .6 +328 3099 .6 +328 1791 .6 +328 501 .6 +328 1323 .6 +328 2561 .8 +328 1993 .8 +328 587 .6 +328 1176 .8 +328 914 .6 +328 804 .6 +328 1012 1 +328 1450 .6 +328 4652 .6 +328 1175 1 +328 4653 .8 +328 2577 .8 +328 67 1 +328 194 .6 +328 2753 .6 +328 4294 1 +328 2970 .8 +328 4654 .8 +328 716 1 +328 4655 .6 +4656 4656 1 +4656 4657 1 +4062 4062 .6 +4062 1389 .8 +4658 4658 1 +1406 3085 .6 +1406 4026 .8 +4659 4030 .6 +4659 4659 .6 +4659 3565 .8 +1793 4168 1 +1793 1794 1 +1793 656 1 +1793 584 .8 +1793 1793 1 +1793 1795 .6 +3706 1156 1 +3706 292 1 +3706 911 1 +3706 1158 1 +3706 962 1 +3706 2100 1 +3706 764 1 +3706 328 1 +4660 4660 .6 +4660 4010 .6 +4660 2334 .6 +4661 4661 .6 +239 239 .6 +239 890 .6 +239 126 1 +239 329 1 +239 175 1 +4662 4662 1 +2275 2275 .8 +2275 2034 1 +2275 2824 .8 +2275 4218 .8 +2275 4663 .8 +4664 1451 .8 +4664 4665 .6 +4664 4664 .6 +4664 175 1 +4666 546 1 +4667 4667 .6 +4668 4668 .6 +3128 3127 1 +3128 1579 1 +3128 296 1 +3128 612 1 +3128 3742 .8 +3128 2269 .8 +3128 863 .6 +3128 1569 .8 +1451 737 1 +1451 647 1 +1451 1343 1 +1451 1451 .8 +1451 1598 .8 +1451 743 1 +1451 1592 .8 +1451 53 .8 +1451 430 .8 +1451 3337 .6 +1451 739 1 +1451 506 1 +1451 46 1 +1451 329 1 +1451 30 1 +1451 303 .8 +1451 1238 1 +1451 1024 .8 +1451 576 .8 +1451 649 1 +1451 286 1 +1451 305 1 +1451 643 .8 +1451 1847 1 +1451 1195 .8 +1451 1992 .8 +1451 1449 .8 +1451 172 1 +1451 171 1 +1451 747 1 +1451 2506 .6 +1451 3153 .6 +1451 65 .8 +1451 3099 .6 +1451 1699 .8 +1451 2032 .8 +1451 175 .8 +1451 62 .6 +1451 4664 .6 +1451 1655 1 +1451 2031 1 +1451 3389 .8 +1451 1448 .6 +1451 904 .8 +4669 1373 1 +4669 1662 .8 +4669 4670 .8 +4669 1142 .8 +4669 3559 .8 +442 429 1 +442 725 .8 +442 431 1 +442 4107 .8 +442 46 1 +442 44 1 +442 428 1 +442 444 1 +442 1191 .8 +442 1823 .6 +442 3239 .8 +442 2208 .8 +442 2090 .8 +442 2207 .8 +442 618 .8 +442 578 .8 +442 2091 .8 +442 720 .8 +442 643 1 +442 1554 .8 +442 4671 .6 +442 4514 .6 +442 1561 .8 +442 2217 1 +442 2206 .8 +442 1856 1 +442 1270 1 +442 1065 1 +442 2002 .8 +442 126 1 +442 438 .8 +442 4406 1 +442 1816 .6 +442 646 .8 +442 1555 .8 +442 1163 .6 +442 2222 .8 +442 619 .8 +270 268 1 +4672 4672 .6 +4672 353 1 +4672 186 .8 +2558 2558 .8 +4673 1818 1 +4673 735 1 +4673 303 1 +4673 2944 1 +4673 1416 1 +4673 390 1 +4673 760 1 +4673 1619 1 +4673 1171 1 +4673 46 1 +4673 3470 1 +4673 2707 1 +4673 4674 1 +4673 2993 1 +4673 3082 1 +4673 2798 1 +4673 1924 1 +4673 2562 1 +4675 4675 .6 +4616 736 1 +4616 4615 1 +4676 4676 .6 +4677 4677 .6 +4678 2685 .8 +4678 548 .8 +4678 805 .8 +4678 786 1 +280 46 1 +280 280 .6 +280 30 1 +280 277 .6 +280 764 1 +280 440 1 +280 501 .6 +280 598 .8 +280 2760 .8 +1831 1831 .6 +1831 2034 .8 +1831 1068 1 +1831 429 1 +1831 48 1 +1831 643 1 +1831 126 1 +1831 4679 .6 +1831 717 1 +1831 1126 1 +1831 1171 1 +1831 22 1 +1831 426 1 +1831 2845 .8 +1831 2861 1 +1831 1124 1 +1831 1247 1 +1831 2939 .8 +1831 335 1 +1831 1586 1 +1831 646 1 +1831 175 1 +1831 323 .8 +1831 3108 .6 +1831 1830 .8 +1831 4260 .6 +1831 525 1 +1831 328 1 +1831 532 .8 +1831 45 1 +1831 1394 .8 +1831 1832 .6 +1831 3555 .6 +1831 904 .8 +1831 62 1 +1831 2706 .6 +1831 1242 .8 +1831 4680 .8 +4679 4679 .6 +4679 3414 .6 +4679 2169 .8 +4679 168 .8 +4679 1630 .6 +4679 4281 .6 +4679 3463 .6 +4679 420 .8 +4679 4681 .6 +4679 3481 .6 +4679 1832 .6 +4679 1831 .6 +4679 126 1 +2001 2001 .8 +2001 492 .8 +4682 46 1 +4682 1940 .6 +4682 4682 .6 +4683 4683 1 +4683 4684 1 +4685 4685 .6 +4685 92 1 +4685 326 1 +3913 1898 .8 +982 4686 .6 +982 2272 .6 +982 34 .8 +982 934 .8 +982 492 .6 +982 46 1 +982 286 1 +982 126 1 +982 1451 .8 +982 4099 1 +1974 714 1 +1974 126 1 +1974 872 1 +1974 286 1 +1974 3742 .8 +1974 862 .6 +1974 863 .8 +1974 418 .8 +1974 708 .8 +4687 4687 .6 +1928 1928 .6 +1928 298 .8 +1928 30 1 +1928 438 .8 +1928 1020 1 +1928 638 .8 +1928 2614 .8 +1928 1658 .8 +1928 1436 .8 +1928 990 .6 +1928 1842 .6 +1928 735 1 +1928 2272 .6 +1928 951 .6 +1928 34 .8 +1928 329 1 +1928 286 1 +517 438 .8 +517 2615 .8 +517 563 .6 +517 577 1 +517 323 .8 +517 438 .8 +517 791 1 +517 807 .8 +517 712 .8 +517 933 .8 +517 1166 .8 +517 286 1 +517 829 1 +517 2503 .8 +517 582 .8 +517 528 .8 +517 175 1 +517 2828 .6 +517 759 .8 +517 328 1 +517 1306 .8 +517 1400 .6 +517 2247 .8 +517 429 1 +517 1517 .6 +517 934 1 +517 46 1 +517 346 .6 +517 719 1 +517 34 .8 +517 795 .8 +517 2535 .6 +517 597 .8 +517 1132 .6 +517 165 .8 +517 720 .8 +517 1167 .6 +517 1000 .6 +517 588 .8 +517 492 .6 +517 171 1 +517 260 .6 +517 324 .8 +517 242 .8 +517 30 1 +517 1469 .6 +517 1798 .6 +672 672 .6 +672 673 1 +672 1492 1 +672 1490 1 +672 1493 .8 +672 1502 1 +672 1108 .8 +672 2902 1 +672 30 1 +672 1568 .8 +672 675 .8 +677 323 1 +677 797 .8 +677 324 1 +677 30 1 +677 829 .8 +677 677 .6 +677 327 .8 +677 40 .6 +677 1918 .8 +677 326 1 +677 1073 .8 +677 1480 .6 +677 2405 .6 +677 638 .6 +677 46 1 +677 306 .8 +677 3099 .6 +677 430 .8 +677 1072 .8 +677 4364 .8 +677 4688 .6 +677 1920 .6 +677 2333 .6 +677 3649 .8 +677 443 .8 +677 1167 .8 +677 316 1 +677 1485 .6 +677 1815 .6 +677 102 .8 +677 106 .8 +677 2600 .6 +677 175 1 +677 1602 .6 +677 1033 .8 +677 1090 .8 +677 961 .8 +677 3189 .8 +677 126 1 +677 101 1 +677 527 .8 +677 4689 .6 +677 346 .8 +677 104 .8 +677 757 .6 +677 39 .8 +677 1190 .8 +677 1498 .6 +677 4690 .8 +677 4691 1 +677 4125 .6 +677 311 .6 +677 2878 .8 +677 4692 .8 +677 3380 .8 +677 982 .8 +677 2273 .8 +677 3119 .6 +677 2636 .8 +2139 2134 .6 +2139 912 .8 +2139 1605 .8 +2139 2140 .6 +1495 719 1 +1495 30 1 +1495 1616 1 +1495 937 .8 +1495 13 1 +1495 1133 .8 +1495 645 .8 +1495 324 1 +1495 577 1 +1495 328 1 +1495 1085 .6 +1495 126 1 +1495 172 1 +1495 2883 .8 +1495 1752 1 +1495 1754 1 +1495 1844 .8 +1495 438 .8 +1495 1353 .8 +1495 949 1 +1495 950 .6 +1495 1490 .8 +1495 774 1 +1495 807 1 +1495 4400 .8 +1495 545 1 +1495 349 1 +1495 1851 1 +1495 712 1 +1495 2434 .8 +1495 610 1 +1495 653 1 +4693 4693 1 +2613 886 .8 +2613 887 .8 +2613 1111 .8 +2307 2307 .8 +2307 351 .8 +2307 2942 .8 +2307 887 .8 +2307 350 1 +2307 4121 .6 +2307 710 1 +2307 4146 .8 +2307 1435 .8 +2307 2076 1 +2307 3669 .6 +2307 3006 .8 +2307 3572 .8 +2307 4694 .8 +2307 1037 .8 +2307 3750 .8 +2307 1547 .8 +2307 2765 .8 +2307 234 .6 +2307 904 .6 +2307 3386 .8 +2307 1112 .6 +2307 3718 .6 +2307 518 .6 +2307 263 .8 +2307 2306 .8 +2307 364 .8 +2307 1179 .8 +2307 2694 .6 +2307 1551 .8 +2307 4695 .6 +226 226 .6 +764 1123 1 +764 22 1 +764 1125 1 +764 282 1 +764 1122 1 +764 119 1 +764 2944 .8 +764 1157 1 +764 2319 .8 +764 747 1 +764 1344 1 +764 1176 1 +764 697 1 +764 3586 .8 +764 647 1 +764 30 1 +764 770 1 +764 1230 1 +764 424 1 +764 1543 .8 +764 748 1 +764 137 1 +764 1430 1 +764 2521 1 +764 640 1 +764 2949 1 +764 1171 1 +764 2420 1 +764 273 1 +764 1126 1 +764 869 1 +764 2823 1 +764 1723 1 +764 1231 1 +764 696 1 +764 1211 1 +764 598 .8 +764 1068 1 +764 65 1 +764 562 1 +764 1136 .6 +764 297 1 +764 377 .8 +764 1222 1 +764 3807 1 +764 1134 1 +764 1218 .8 +764 177 .8 +764 4696 1 +764 2997 .8 +764 694 1 +764 1337 1 +764 588 1 +764 1091 1 +764 3010 .8 +764 3770 1 +764 695 1 +764 1560 1 +764 4697 1 +764 1203 1 +764 2861 1 +764 4547 1 +4698 4698 .6 +430 430 .8 +430 385 .8 +430 105 .8 +430 429 .8 +430 276 .8 +430 2214 1 +430 1318 1 +4699 4699 .8 +4699 3292 .8 +4699 3293 .6 +4699 4101 .8 +4699 429 1 +4699 643 .8 +4699 2781 1 +4699 1974 1 +4699 863 .8 +4699 126 1 +4699 872 1 +1384 1384 .6 +1384 346 1 +1384 438 .8 +1384 712 1 +1384 492 1 +1384 545 1 +1384 4002 1 +1384 349 1 +1384 522 .8 +1384 719 1 +1384 717 1 +1384 804 .8 +1384 30 1 +1384 791 1 +1384 126 1 +1384 780 .8 +1384 46 1 +1384 328 1 +1384 1182 .6 +1384 525 .8 +1384 776 1 +1384 990 .8 +1384 1975 .6 +1384 617 .8 +1384 588 .8 +1384 469 1 +1384 625 .6 +1384 175 1 +1384 701 .8 +1384 1856 1 +1384 4583 .8 +1384 1662 .8 +1384 577 1 +1384 1418 1 +1384 620 1 +1384 830 1 +1384 511 1 +1384 774 1 +1384 807 1 +1384 892 .8 +1384 468 .8 +1384 715 .8 +1384 23 .6 +1384 2084 .6 +1384 1395 .6 +1384 1852 1 +1384 799 .8 +1384 2254 .8 +1384 1968 .8 +1384 624 .8 +1384 2252 1 +1384 937 1 +1384 1851 1 +1384 1495 1 +1384 1869 .6 +1384 793 .8 +1384 2227 .8 +1384 422 1 +1384 2372 1 +1384 2136 .8 +1384 777 .6 +1384 2792 .6 +1384 727 1 +1987 66 .8 +1987 1988 1 +1987 349 1 +1987 68 .8 +1987 65 1 +4700 4700 .6 +1467 1467 .8 +1467 577 1 +4701 918 1 +4701 45 1 +4701 629 1 +4701 328 1 +4701 157 1 +4702 4702 1 +4703 157 .8 +4703 1711 .6 +4703 799 .6 +4703 1964 .6 +4703 93 .8 +4703 4206 .6 +4703 3647 .8 +4703 89 .8 +4703 1963 .6 +4703 625 .6 +4703 1182 .8 +4703 2934 .6 +4703 4704 .8 +4703 328 1 +4703 1833 .6 +1339 1339 .8 +1339 887 .8 +1339 784 .8 +1339 113 .8 +1339 1088 .6 +1339 3602 .8 +1339 1338 .6 +1339 1340 .6 +1339 119 .8 +1339 3753 .6 +1339 2527 .6 +1339 234 .6 +1339 3256 .6 +1339 2031 1 +1339 1111 .8 +1339 886 .8 +1339 108 .8 +1339 2951 .6 +1339 197 .8 +1339 1112 .8 +1339 3475 .8 +1339 2572 .8 +1339 1353 .8 +1339 751 1 +1339 2201 .8 +1339 1126 1 +4705 4705 .8 +4706 4706 .6 +4707 4707 .6 +844 1243 .8 +844 304 1 +844 316 1 +844 842 .6 +844 1162 1 +844 1673 .6 +1168 1168 .6 +4708 4708 .6 +4709 4709 1 +4710 4710 .6 +4711 719 1 +1991 1991 .6 +1991 1278 1 +1991 2918 .6 +1991 1565 1 +1991 2446 1 +1991 1990 1 +1991 642 1 +1991 644 1 +1991 787 1 +1991 2445 .8 +1991 6 .8 +1991 329 1 +1991 22 1 +1991 2562 1 +1991 144 1 +1991 2452 1 +1991 3348 1 +1991 2934 .8 +1991 773 .8 +1991 1463 .8 +1991 4712 .8 +1991 1545 .8 +2165 632 1 +2165 126 1 +2165 431 1 +2165 157 .8 +2165 1740 .8 +2165 46 1 +2165 1024 1 +2165 329 1 +2165 1910 .8 +2165 440 1 +2165 428 1 +2165 445 1 +2165 44 1 +2165 717 1 +2165 215 1 +2165 639 1 +2165 1906 .8 +2165 2232 1 +2165 2240 .8 +2165 4713 .8 +2165 587 .8 +2165 1237 1 +2165 80 .8 +2165 4714 .8 +2165 577 1 +4715 46 1 +4715 2944 .8 +4715 1037 .8 +4715 332 1 +4715 637 .8 +4715 333 .8 +4715 331 .8 +4715 2769 .8 +4715 286 1 +4715 126 1 +4715 1596 1 +4715 1428 .8 +4715 4716 .6 +4715 647 1 +4715 51 .8 +4715 335 .8 +4715 1583 1 +4715 1247 1 +4715 826 .8 +4715 137 .8 +4715 3592 .8 +4715 49 .8 +4715 852 1 +4715 95 .8 +4715 1641 .8 +4715 2201 .8 +4715 4715 .8 +558 558 .8 +558 858 1 +558 351 .8 +558 2103 1 +558 88 .8 +4717 4009 .6 +4717 2303 .6 +4717 34 .8 +4717 591 .6 +4717 4717 .6 +4717 362 .8 +1870 653 1 +1870 1871 .8 +1870 1870 .8 +1870 2260 1 +1870 1869 1 +1870 719 1 +1870 1020 1 +1870 303 1 +1870 126 1 +1870 30 1 +1870 492 1 +1870 46 1 +1870 1868 .6 +1870 1742 .6 +1870 363 1 +1870 721 .8 +521 2332 1 +4718 142 1 +1602 1602 .6 +1602 106 .8 +1602 1605 .8 +1602 1516 .8 +1602 677 .6 +1602 1601 .8 +1602 1604 .6 +1602 1798 .6 +1602 514 .8 +1602 1484 .8 +1602 584 1 +1602 3141 .6 +1602 2020 .6 +1602 3119 .6 +4719 4719 1 +3990 30 1 +3990 129 1 +3990 2298 .8 +3990 1609 .8 +3990 1357 .8 +1183 1183 .6 +1183 517 .8 +1183 416 .6 +1183 3651 .6 +1183 3477 .6 +1183 3597 .6 +1183 335 1 +1183 1282 .6 +1183 614 .8 +1183 1629 .6 +1183 1174 .6 +1183 1178 .6 +1183 1711 .8 +1183 1704 .8 +1183 2879 .8 +1183 1135 .8 +1183 189 .6 +1183 1093 .6 +1183 109 .8 +1183 4366 .8 +1183 1374 .6 +1183 3635 .8 +1183 1515 .8 +1183 2254 .8 +1183 1764 .8 +1183 108 .8 +1183 2694 .8 +1183 4365 .8 +1183 1874 .6 +1918 1918 .8 +1918 797 .8 +1918 829 .8 +1918 30 1 +1918 642 .8 +1918 2307 .8 +1918 112 .8 +1918 677 .6 +1918 481 .8 +1918 2878 .8 +4720 1569 .6 +4720 4721 1 +4720 4513 1 +4722 4722 .8 +4723 186 .8 +4723 715 1 +4723 653 1 +4723 4468 1 +4723 126 1 +4723 2125 .8 +4723 346 1 +4723 2919 .8 +4723 344 1 +4723 1436 .8 +4723 727 .8 +4723 46 1 +4723 4183 .8 +4723 830 1 +4723 709 1 +587 587 .8 +587 1167 .8 +587 113 .8 +587 658 .8 +587 1400 .6 +587 4008 .6 +587 1815 .6 +587 328 1 +587 3602 .8 +587 4071 .6 +587 1633 .8 +587 3564 .8 +587 91 .8 +587 836 .8 +587 810 .8 +587 2600 .6 +587 944 .8 +587 2571 .6 +587 1046 .8 +587 2876 .6 +587 2184 .8 +587 4724 .6 +587 594 .6 +587 1929 .8 +587 298 .8 +587 3442 .6 +587 200 .8 +587 232 .6 +587 1185 .6 +587 1702 .8 +587 579 .8 +587 362 .8 +587 528 .6 +587 1151 .8 +587 1488 .6 +587 2748 .8 +587 736 1 +587 1717 .8 +587 1315 1 +587 923 .6 +587 2705 .8 +587 603 .8 +587 357 .8 +587 1816 .8 +587 1957 1 +587 102 .8 +587 2141 .8 +587 1064 .8 +587 4517 .6 +587 972 .8 +587 23 .6 +587 2777 .8 +587 62 1 +587 4713 .8 +587 2165 .8 +587 1902 .6 +587 1898 1 +587 92 1 +587 124 .6 +587 364 .8 +587 20 .8 +587 1624 .6 +587 715 1 +4360 1085 .6 +4360 4360 .6 +193 624 1 +193 193 .8 +193 274 1 +193 577 1 +193 194 .8 +193 1352 .8 +193 2246 1 +193 627 1 +193 918 1 +193 1768 1 +193 655 1 +193 3827 1 +4725 4725 .6 +2819 2324 .8 +2819 1339 .8 +2819 46 1 +2819 126 1 +2819 1495 1 +2819 1290 .8 +2819 642 1 +2819 3475 1 +2819 329 1 +2819 2686 .6 +2819 4726 .6 +4727 1133 1 +4727 1290 1 +4727 2078 .8 +4727 175 1 +4727 1195 .8 +4727 1609 .8 +4727 861 .8 +4727 2171 1 +4727 296 1 +4727 3102 1 +4727 595 1 +4727 295 1 +4727 258 .8 +4727 1122 1 +4727 1996 1 +4727 2420 1 +3928 297 .8 +3928 3928 .8 +4728 718 .8 +4728 1311 .6 +4728 1183 .8 +4728 211 1 +4728 4729 .8 +4728 937 1 +4728 881 .8 +4728 424 1 +3448 3448 .6 +4033 4033 .6 +4033 1495 1 +4730 4730 1 +4731 4731 .6 +741 1053 .8 +741 833 .8 +741 648 1 +741 584 1 +741 834 .8 +741 1635 .8 +741 4643 .8 +741 1176 1 +741 746 1 +741 1692 .8 +741 2538 .8 +741 3185 .6 +741 353 1 +741 1454 1 +741 2599 .8 +741 2184 .8 +741 1062 .8 +1003 346 .8 +1003 191 .8 +1003 438 .8 +1003 1003 .6 +1003 1001 .8 +4732 4732 .6 +4733 4733 .8 +1554 1191 1 +1554 429 1 +1554 3239 1 +1554 618 1 +1554 643 1 +1554 1561 1 +1554 578 1 +1554 442 .8 +1554 428 1 +1554 2207 .6 +1554 2091 .6 +1554 1823 .8 +1554 431 1 +1554 2092 .8 +1554 2090 .8 +1554 720 1 +1554 1065 1 +1554 1555 1 +1554 2228 1 +4734 126 1 +4735 4735 1 +2872 751 1 +2872 994 .6 +2872 1086 .8 +2872 584 1 +4736 107 .8 +4736 2457 .8 +4736 1312 .8 +4736 2108 .8 +4736 40 .8 +4736 240 .8 +4736 111 .8 +4736 112 1 +4736 1578 .8 +4736 113 1 +4736 1019 .8 +4736 3645 .8 +4736 106 .8 +4736 805 1 +4736 241 1 +4736 1123 1 +4736 863 1 +4736 1167 1 +4736 4580 1 +4736 345 1 +4736 850 1 +4736 89 .8 +4736 88 .8 +4736 556 .8 +4736 1216 .8 +4736 1079 .8 +4736 461 .8 +4736 1026 .8 +4736 1311 .8 +4736 2852 .8 +4736 481 .8 +4736 9 1 +174 466 .6 +174 1400 .6 +174 1020 1 +174 30 1 +174 1075 .8 +174 511 1 +174 934 1 +174 1313 .8 +174 324 .8 +174 1002 1 +174 1356 1 +174 623 .8 +174 1087 .8 +174 174 1 +174 577 .8 +174 326 1 +174 1433 .8 +174 1401 .8 +174 323 1 +174 345 1 +174 797 .8 +174 350 1 +174 305 1 +174 46 1 +174 882 .8 +174 1476 .8 +174 351 .8 +174 4737 .6 +174 1403 .6 +174 1404 .6 +174 304 .8 +174 467 .8 +174 1072 .8 +174 2555 .8 +174 329 1 +174 172 .8 +174 349 1 +174 2554 .6 +174 525 .8 +174 438 .8 +174 348 1 +174 712 .8 +174 248 .6 +174 4116 .6 +174 1589 .6 +174 171 1 +174 1001 .8 +174 990 .8 +174 545 1 +174 1117 1 +174 2255 .8 +174 810 .8 +174 1588 .6 +174 4738 .6 +174 492 1 +174 813 1 +174 2226 .8 +174 12 .6 +174 807 1 +174 2437 .8 +174 1418 .8 +174 344 1 +174 495 .8 +174 892 .6 +174 1049 .8 +174 982 .6 +174 1076 .6 +174 3482 1 +174 1293 1 +174 192 .8 +174 717 1 +174 4612 1 +167 167 .8 +167 166 .8 +167 165 .8 +167 2291 .8 +167 1200 1 +167 49 .8 +167 1862 .8 +167 1078 .8 +167 1863 .8 +167 1677 .8 +167 1450 .8 +124 124 .6 +124 708 .8 +124 1620 .6 +124 926 .8 +124 328 1 +124 122 .6 +124 2084 .6 +124 399 .8 +124 282 1 +124 694 1 +124 1560 1 +124 3915 .6 +124 2939 .8 +124 610 1 +124 932 .6 +124 1665 .6 +124 1978 .8 +124 1368 .8 +124 2970 .8 +124 1251 .6 +124 819 .6 +2789 2789 .8 +2789 148 .8 +2789 48 .8 +2789 3890 .6 +2789 503 .6 +2789 4135 .6 +2789 597 .8 +2789 751 1 +2789 1313 .8 +2789 888 .8 +2789 3203 .6 +2789 4739 .6 +2789 3088 .6 +2789 172 1 +2789 209 .8 +2789 19 .6 +2789 764 1 +2789 1223 .8 +2789 1175 1 +2789 1388 .8 +2789 323 .8 +2789 4740 .6 +2789 4741 .6 +2789 555 1 +2789 1154 .8 +2789 46 1 +2789 282 1 +2789 112 .8 +2789 4029 .6 +2789 4742 .6 +2789 339 .8 +2789 760 .6 +2789 492 1 +2789 165 1 +2789 67 .8 +2789 1126 1 +2789 1779 .6 +2789 820 .6 +2789 642 1 +2789 613 .8 +2789 708 .8 +2789 2774 .8 +2789 1974 .6 +2789 1142 .8 +2789 2537 .6 +2789 1971 .6 +2789 629 .8 +2789 776 .8 +2789 679 1 +2789 2938 .8 +2789 167 1 +2789 3908 .6 +2789 3949 .8 +2789 4597 .8 +2789 1394 .8 +2789 2468 .6 +2789 1277 .8 +2789 4743 .6 +2789 610 1 +2789 1373 .8 +2789 904 1 +2789 4208 .8 +2789 1381 .8 +2789 1649 .8 +2789 1398 1 +2789 3894 .8 +2789 1384 .8 +2789 891 .8 +2789 4368 .6 +2789 774 1 +2789 405 1 +2789 1538 .6 +2789 4744 .6 +2789 4745 .6 +2789 3774 .8 +2789 905 .8 +2789 694 1 +2789 124 .8 +2789 4746 .8 +2789 3559 .6 +2789 701 1 +2789 4747 .6 +2789 4748 .6 +2789 781 1 +2789 944 .8 +2789 4749 .8 +2789 3259 .6 +2789 723 .6 +2789 2664 .6 +2789 449 1 +2789 983 .8 +4750 4750 1 +1135 1135 1 +1135 4751 .8 +1135 3781 .8 +1135 1273 .6 +1135 1272 .8 +4752 11 1 +4753 22 1 +4753 40 .8 +4754 4754 .6 +4755 30 1 +3398 3398 .6 +3398 597 .8 +3398 3292 .6 +3398 322 .8 +3398 1064 .6 +3398 157 .6 +3398 4101 .8 +3398 722 .6 +3398 682 .8 +3398 324 1 +3915 3915 .8 +3915 610 1 +4756 4756 .6 +4757 4757 .8 +4758 46 1 +4758 4758 .6 +4758 805 .8 +4758 577 1 +4758 714 1 +4758 787 1 +4758 674 .8 +4759 4759 .6 +3660 3660 .6 +3660 764 1 +3660 286 1 +3660 357 .8 +3660 46 1 +3660 121 1 +3660 175 1 +3660 760 .6 +3660 101 1 +3660 324 1 +3660 30 1 +4760 4760 .8 +4761 4761 1 +2752 2752 .6 +2752 588 .8 +2752 2141 .8 +2752 1519 1 +2752 786 1 +3070 3070 .8 +3070 2622 .8 +3070 3067 .8 +3070 112 1 +3070 3069 .8 +3070 425 1 +3070 424 1 +4762 4762 .6 +788 1020 1 +788 364 .8 +788 788 .8 +788 175 1 +788 94 .8 +788 126 1 +788 1126 .8 +788 329 1 +788 610 1 +788 791 .8 +788 3319 .8 +788 1238 1 +788 1378 .8 +788 860 .6 +788 1223 1 +788 323 1 +788 1774 .6 +788 4763 .8 +788 1988 1 +788 781 1 +2578 2578 .8 +2578 157 .8 +2578 214 .6 +2578 1584 .6 +2578 1966 .6 +2578 4764 .6 +2578 404 .6 +2578 4765 .6 +2578 415 .6 +2578 4470 .6 +2578 4766 .6 +2578 3532 .6 +2578 2113 .6 +2578 4510 .6 +2578 183 .6 +2578 4767 .6 +2578 2112 .6 +2578 3288 .6 +2578 1772 .8 +2578 4768 .6 +2578 4769 .6 +2578 4202 .6 +2578 1887 .6 +2578 4770 .6 +2578 1058 .8 +2578 4276 .6 +2578 2106 .6 +2578 4771 .6 +2578 409 .6 +2578 1769 .8 +2578 2448 .8 +2578 4336 .6 +2578 100 .8 +2578 2168 .8 +2578 4772 .6 +2578 4773 .8 +2578 4774 .6 +2578 3778 .6 +2578 492 1 +2578 1238 1 +2578 2934 .6 +2578 516 .6 +2578 1961 1 +2578 4029 .6 +2578 525 .8 +2578 1068 1 +2578 984 .8 +2578 1393 .8 +2578 4342 .8 +2578 813 1 +2578 922 .6 +2578 2141 .8 +2578 1575 .8 +2578 42 .6 +2578 107 .6 +2578 233 1 +2578 1091 .8 +2578 1747 .6 +2578 1182 .6 +2578 1339 .8 +2578 3742 .8 +2578 2282 .6 +2578 1142 .8 +2578 1630 .6 +4775 46 1 +4775 30 1 +4775 4775 .8 +4775 3150 .6 +4775 594 .6 +4775 1244 1 +4775 1237 .8 +4775 1111 .8 +4506 4506 1 +4506 625 1 +4506 53 .6 +4776 3538 .8 +4776 1852 1 +4777 4777 .6 +4778 4778 .8 +4091 1074 .8 +4091 719 1 +4091 30 1 +4091 306 .8 +4091 324 .8 +4779 4779 1 +4779 3002 1 +4779 1634 .6 +4779 2635 .6 +4779 1548 1 +4779 1394 .8 +4779 408 .8 +4780 4780 .6 +1021 2101 .8 +1021 1434 .8 +1021 323 .8 +1021 1401 .8 +1021 2401 .8 +1021 324 1 +1021 306 .8 +1021 328 1 +1021 2103 .8 +1021 325 1 +1021 326 1 +1021 349 1 +1021 791 .8 +1021 1078 .8 +1021 4656 .8 +1021 2971 .6 +1021 788 .6 +1021 1932 .8 +1021 109 .6 +1021 467 .8 +1021 2071 .8 +1021 2660 .8 +1021 1648 .8 +1021 1134 .8 +1021 638 .8 +1021 1637 .8 +1021 1100 .8 +1021 1753 1 +1021 1028 .8 +1021 2070 .8 +1021 1085 .6 +1021 172 1 +1021 4781 .6 +1021 1052 .8 +1021 2248 .6 +1021 1117 1 +1021 714 1 +1021 701 .8 +1021 344 .8 +1021 595 .8 +1021 4215 .8 +1021 1016 .8 +1021 2094 .8 +1021 1930 1 +1021 342 .6 +1021 1303 1 +1021 573 .6 +1021 4782 .6 +1021 1226 .6 +1021 2653 .6 +1021 928 .6 +1021 3476 .6 +1021 3117 .6 +1021 1938 .6 +1021 4783 .6 +1021 597 .8 +1021 60 .6 +1021 910 .8 +1021 1711 .6 +1021 475 .8 +1021 251 .6 +1021 3384 .8 +1021 4670 .8 +1021 916 1 +1021 911 .8 +1021 888 .8 +1021 562 1 +1021 1723 1 +1021 649 1 +1021 764 1 +1021 2608 .8 +1021 1517 .8 +1021 346 .8 +1021 2851 .6 +1021 919 .8 +1021 711 .8 +4784 4785 .8 +4786 4786 1 +2614 2614 .8 +2614 1658 .8 +2614 34 .6 +2614 915 1 +2614 1616 1 +2614 735 1 +2614 30 1 +2614 1993 1 +2614 719 1 +2614 328 1 +2614 1436 .8 +2614 797 .8 +2614 172 1 +2614 171 1 +2614 1752 .8 +2614 791 .8 +2614 46 1 +2614 1495 1 +2614 1847 1 +2614 1917 .8 +2614 990 .8 +2614 935 .8 +2614 304 1 +2614 438 .6 +2614 934 1 +2614 87 .8 +2614 1100 .8 +2614 306 .8 +2614 232 .6 +2614 1022 1 +2614 351 .8 +2614 298 .8 +2614 323 .8 +2614 174 .8 +2614 1928 .6 +2614 2272 .6 +2614 2261 .8 +2614 1844 .8 +2614 913 1 +2614 2647 .6 +2614 933 .6 +2614 810 .6 +2614 577 1 +2614 841 .6 +2614 918 1 +2614 4787 .8 +2614 2883 .8 +2614 1353 .8 +2614 2974 .6 +2614 780 .8 +2614 2173 .8 +2614 2255 .8 +2614 1049 1 +2614 3478 .6 +4349 4349 .8 +4788 4788 .6 +4789 3040 .6 +4790 4790 .8 +4791 4791 1 +3325 3325 .6 +4792 4793 1 +4794 4794 .6 +4795 4795 .6 +4795 1512 .8 +4795 556 .8 +4795 773 .8 +4795 469 .8 +4796 4796 .6 +4796 370 .8 +4796 463 1 +4694 352 1 +4694 303 .8 +4694 351 .8 +4694 46 1 +4694 286 1 +4694 2307 .8 +1423 1423 .6 +1423 1422 .6 +1423 1421 .6 +4797 4797 1 +2956 2956 .8 +2956 576 1 +2956 2507 .8 +4798 4798 .6 +2606 2603 .8 +2606 2604 .6 +2606 1757 1 +2606 2057 1 +2606 248 .6 +2606 2602 .8 +2606 1750 .8 +2606 2601 1 +2606 2605 .8 +86 648 1 +86 656 .8 +86 84 .8 +86 106 .8 +86 836 .8 +86 2318 .8 +86 859 .8 +86 631 .6 +628 362 1 +628 583 1 +628 577 1 +2885 2885 .8 +2885 797 .8 +2885 126 1 +2885 286 1 +2885 1983 .8 +2885 323 .8 +2885 1428 .8 +2885 175 1 +2885 46 1 +2885 2419 .8 +2885 2880 .8 +4799 716 1 +4799 694 1 +4691 4691 1 +4691 677 1 +4691 1167 1 +99 99 .8 +99 30 1 +99 915 1 +99 350 1 +99 171 1 +99 328 1 +99 719 1 +99 1072 1 +99 172 1 +99 807 .8 +99 933 .6 +99 121 1 +99 912 .8 +99 1313 1 +99 2646 .8 +99 46 1 +99 577 1 +99 431 1 +99 934 1 +99 501 .8 +99 831 .6 +99 1176 1 +99 286 .6 +780 1847 1 +780 797 .8 +780 1436 .8 +780 303 1 +780 46 1 +780 30 1 +780 34 .6 +780 438 .8 +780 329 1 +780 1028 .8 +780 1490 .8 +780 843 .8 +780 845 .8 +780 328 1 +780 937 .8 +780 514 .8 +780 14 .8 +780 1491 .8 +780 915 .8 +780 735 1 +780 844 .6 +780 842 .6 +780 2503 .8 +780 840 .8 +780 60 .6 +780 791 .8 +780 841 .8 +780 3172 .8 +780 1430 1 +780 2464 .8 +780 1558 .8 +780 172 1 +780 1167 .6 +780 1246 1 +780 2482 1 +780 804 .8 +780 346 .8 +780 1645 .6 +780 711 .8 +780 774 1 +780 1545 .8 +780 1301 .6 +780 2614 .8 +780 939 .8 +780 712 .8 +780 751 1 +780 532 .6 +780 524 .8 +780 951 .6 +780 2067 .6 +780 522 .6 +780 523 .8 +780 3442 .6 +780 171 1 +780 892 .8 +780 1993 .8 +780 950 .6 +780 1547 .8 +780 525 .8 +780 2808 .6 +780 1652 .8 +780 949 1 +780 1166 .8 +780 577 1 +780 1418 .8 +780 779 .8 +780 1391 .8 +780 2437 .8 +780 813 1 +780 2990 .6 +780 1361 .8 +780 242 .8 +780 2450 .8 +780 492 .8 +780 530 .8 +780 807 .8 +780 830 1 +780 898 .8 +780 1529 .8 +780 982 .8 +780 2350 .8 +780 2173 .8 +780 728 1 +780 1631 .8 +780 2126 .8 +780 776 .8 +780 1049 1 +780 1370 .8 +780 1968 .8 +780 1004 .6 +780 624 1 +780 3597 .6 +780 4800 .6 +780 2200 .6 +780 2255 .8 +780 173 .8 +780 3447 .6 +780 2483 .8 +780 3421 .6 +780 403 .8 +780 3181 .6 +780 3288 1 +780 3566 .8 +780 63 1 +780 4801 .8 +780 2975 .8 +780 2136 .6 +780 1734 .6 +780 4802 .8 +780 1395 .8 +780 2787 .8 +780 4803 .6 +780 793 .8 +780 399 .8 +780 1416 1 +780 2125 1 +780 1851 1 +780 1852 1 +780 934 1 +780 3405 .8 +780 1417 1 +780 2254 .8 +780 1869 .8 +780 1876 .6 +780 1394 .8 +780 2348 .8 +780 4804 .8 +780 1372 .6 +780 1075 1 +780 620 .8 +780 1642 .8 +780 1001 1 +780 3427 .6 +780 422 1 +780 3444 .6 +780 2084 .6 +780 2251 .8 +780 2911 .6 +780 4650 .6 +780 1585 .8 +780 2487 .8 +780 2372 1 +780 545 .8 +780 3206 1 +780 2434 .8 +780 897 .6 +780 363 .8 +780 186 .8 +780 2149 .8 +780 457 1 +780 1397 1 +780 1952 .8 +780 1757 1 +780 4805 .6 +780 2485 .8 +4806 4806 .6 +4807 4807 .8 +4808 4808 .6 +4808 2099 .8 +637 49 .8 +637 332 1 +637 335 .8 +637 175 1 +637 3591 .8 +637 3592 .8 +637 1766 .8 +637 282 1 +637 1012 .8 +637 333 .8 +637 4809 .8 +637 331 .8 +3513 3512 .6 +4810 610 1 +4810 2789 .8 +2183 94 .6 +2183 4811 .6 +2183 385 .8 +4812 855 1 +4812 716 1 +4812 536 1 +4812 859 1 +4812 116 1 +4812 1051 1 +4812 715 1 +4812 736 1 +4813 4813 .8 +4814 297 1 +4814 175 1 +4815 4815 .8 +4816 4816 .8 +4816 4817 .8 +2376 648 1 +2376 2376 .8 +2376 792 .8 +2376 142 .6 +2376 584 .8 +2376 46 1 +2376 1644 .8 +2376 3116 .6 +2376 91 .8 +2376 327 .8 +2376 835 .8 +2376 741 .8 +2376 739 .8 +2376 833 .8 +2376 86 .8 +2376 736 .8 +2376 1689 .8 +2376 84 .8 +2376 656 .8 +2376 834 .8 +2376 106 .8 +2376 837 .8 +2376 1692 .8 +2376 2629 .8 +2376 405 1 +2376 1454 1 +2376 2681 .8 +2376 1693 .8 +2376 3491 .8 +2376 1640 .8 +2376 738 1 +3297 1407 .6 +3297 978 .6 +3297 157 .8 +3297 604 .8 +3297 659 .8 +3297 1033 .8 +4818 4818 1 +4819 4819 1 +4819 925 1 +4819 1525 .8 +4819 719 1 +4820 4820 .6 +4821 4821 .6 +4822 4822 .6 +4823 4823 .6 +4823 118 1 +2015 1485 1 +1922 172 1 +1922 801 .8 +1922 104 1 +1922 65 .8 +1922 22 1 +1922 2834 .8 +1922 623 .8 +1922 326 1 +1922 30 1 +1922 92 .8 +1922 747 1 +1922 764 1 +1922 282 1 +1922 1176 1 +1922 1641 .8 +1922 2945 .6 +1922 2199 .6 +1922 2652 1 +1922 97 .8 +1922 1754 1 +1922 2210 .8 +1922 2062 .8 +1922 893 .6 +1922 50 .8 +1922 557 .6 +1922 88 .8 +1922 2538 1 +4824 4824 .8 +4825 4825 .6 +1497 1497 .8 +1497 643 1 +1497 2318 .8 +1497 2317 .8 +1497 110 .8 +1497 46 1 +1497 30 1 +1497 324 1 +1497 647 1 +1497 286 1 +1497 346 .8 +1497 4386 .8 +243 243 .6 +243 255 .6 +243 214 .6 +243 234 .6 +243 1047 .8 +243 1136 .6 +243 658 .8 +243 4528 .8 +4826 4826 1 +4827 4827 1 +4827 1378 1 +4827 1988 1 +4827 1370 .8 +4828 4828 .8 +4829 4829 .6 +4523 17 .6 +4523 1521 .6 +4523 4523 .6 +4464 4464 .6 +4464 1247 1 +4830 4830 .6 +4831 429 .8 +4832 4832 .8 +4833 4833 .6 +507 507 1 +4834 4834 1 +4083 1028 .8 +4083 4492 .8 +4835 4835 1 +2320 555 1 +2320 2320 .6 +2320 2319 .8 +2320 2201 .8 +2320 172 1 +2320 286 1 +2320 764 1 +2320 1157 1 +2320 739 1 +2320 2944 1 +2320 2769 .8 +2320 746 1 +2320 290 1 +2320 2946 .6 +2320 2943 .6 +2320 2770 .6 +2320 2530 .8 +2320 1158 .8 +4836 4836 1 +4837 4837 .6 +4120 4120 .8 +4120 4627 .6 +4120 2227 .8 +4120 2415 .8 +4120 990 1 +4120 3398 .8 +4120 2414 .6 +4120 126 1 +4120 4016 .6 +4120 4838 1 +4120 30 1 +4120 4839 .6 +4120 3427 .8 +4379 4379 .6 +4379 14 .8 +4379 92 .8 +4379 4353 .8 +4379 19 1 +4840 4840 .6 +4841 710 1 +4841 4841 .8 +575 575 .6 +575 1935 .6 +575 638 1 +4842 4842 .6 +4842 126 1 +4842 1960 1 +217 310 1 +217 217 .8 +217 209 1 +217 207 1 +217 210 1 +217 2439 .8 +217 323 1 +217 211 1 +217 213 1 +3432 1847 1 +3432 3432 .6 +3432 735 1 +3432 209 .8 +3432 3003 .6 +3432 349 1 +3432 441 1 +4843 4843 .6 +4844 4844 .6 +3227 3228 1 +3227 3226 1 +3639 3639 .6 +3639 1634 .6 +3639 46 1 +1164 1164 .8 +3116 30 1 +3116 102 .6 +3116 3116 .6 +3116 1644 .6 +3116 91 .8 +3116 1073 .8 +3116 438 .8 +3116 1086 .8 +3116 22 1 +3116 326 1 +3116 436 1 +3116 320 .6 +3116 431 .8 +3116 1022 1 +3116 1718 .6 +3116 1892 .8 +3116 2210 1 +3116 2376 .8 +3116 584 .8 +3116 46 1 +3116 328 1 +3116 2306 1 +3116 2232 1 +209 4845 .8 +209 172 .8 +209 348 .8 +209 320 .8 +209 743 1 +209 1924 1 +209 710 1 +209 1704 .8 +209 210 1 +209 3384 1 +209 2789 .8 +209 1288 .8 +209 211 1 +209 1549 .8 +209 880 .8 +209 3389 .8 +209 522 .8 +209 207 1 +209 2239 .8 +209 1650 .6 +209 1053 1 +209 1820 .8 +209 206 .8 +209 2195 .8 +4846 210 1 +4846 3609 .6 +4846 3566 .8 +4846 1895 .8 +4846 3033 .6 +4846 2703 .8 +4846 388 1 +4846 1051 .8 +4847 4847 .6 +1606 555 1 +1606 739 1 +1606 506 1 +1606 46 1 +1606 856 .8 +1606 1430 1 +1606 1075 .8 +1606 1606 .8 +1526 1526 .6 +1526 1525 .6 +1526 680 .8 +1526 346 .8 +1526 157 .8 +1526 1529 .8 +1526 344 1 +1526 1527 .8 +1526 1528 .8 +1526 1490 1 +1526 780 .8 +1526 1531 .8 +1526 1530 .8 +1526 345 1 +1526 719 1 +1526 2258 .8 +1609 1609 .8 +1609 274 .8 +1609 1721 .8 +1609 710 1 +1609 1722 .8 +1609 624 .8 +1609 126 1 +1609 629 1 +1609 194 .8 +1609 655 .8 +1609 175 1 +1609 918 1 +1609 286 1 +1609 67 .8 +1609 46 1 +1609 2298 .8 +1609 4848 .8 +1587 1587 .8 +1587 673 .8 +1587 1108 1 +1587 3211 .8 +1587 157 .8 +1587 2762 .8 +1587 1493 1 +1587 2905 .8 +1587 1490 .8 +1587 672 .8 +1587 1568 .8 +1587 2902 1 +1587 1492 1 +1587 30 1 +1587 126 1 +1587 674 .8 +1587 46 .8 +4019 4019 .6 +4019 719 1 +4019 46 1 +4019 439 .8 +4019 326 1 +4019 30 1 +4019 2210 .8 +4019 4849 .6 +4019 316 .8 +4019 1160 .8 +4019 1086 .8 +4019 438 .8 +4019 1288 .8 +4019 209 .8 +4019 437 .8 +4019 4850 .6 +4019 1477 .6 +4019 4491 .8 +4019 349 1 +4019 436 1 +4019 320 .8 +4019 428 1 +4019 429 .8 +4019 431 1 +49 1571 .8 +49 50 .8 +49 916 1 +49 175 1 +49 282 1 +49 4851 .8 +49 332 1 +49 1200 1 +4852 4852 .6 +4853 1752 1 +3390 1000 .6 +3390 674 .8 +3390 1307 .8 +3390 1298 .8 +3390 3384 .8 +310 1847 1 +310 729 .8 +310 310 .8 +310 2895 .6 +310 4854 .8 +310 2086 .6 +310 1240 .6 +2112 2112 .6 +2112 1653 .8 +2112 2108 .8 +2112 2113 .6 +2112 182 .8 +2112 2849 .6 +2112 183 .6 +2112 2470 .8 +2743 2743 .8 +2743 718 .8 +2743 157 .8 +2743 1379 .8 +2760 1490 .8 +2760 30 1 +2760 2760 .6 +2760 1492 .8 +2760 1125 .8 +4855 4855 1 +4856 4856 .6 +2506 2506 .8 +2506 4186 .8 +606 766 .6 +606 606 .8 +606 17 .6 +606 329 1 +606 1500 .8 +606 1521 .6 +606 242 .8 +606 438 .8 +606 1000 .6 +606 607 .8 +606 1278 .8 +606 4443 .8 +606 4442 .8 +606 767 .8 +332 282 1 +332 49 1 +332 144 .8 +332 50 .8 +332 331 .8 +332 4832 .8 +332 2615 .8 +332 22 1 +332 167 1 +1867 1867 1 +1867 3763 .6 +1867 1866 1 +4178 309 .6 +4178 430 .8 +4178 2284 .8 +4178 1499 .8 +4178 624 .8 +4178 4277 .6 +4178 92 .8 +4857 4857 1 +4858 4858 .8 +4859 4859 .6 +2256 2256 .6 +2256 1375 1 +2256 2227 .8 +2256 1389 .6 +2256 721 1 +2256 1005 1 +2256 1379 1 +2256 4132 .8 +2256 1386 .6 +2256 707 .6 +2256 1823 .8 +2256 3441 .8 +2256 2253 1 +2256 3521 1 +2256 2259 .6 +4542 242 .8 +1028 1434 1 +1028 323 1 +1028 326 1 +1028 1087 .8 +1028 34 .6 +1028 325 .8 +1028 1021 .8 +1028 737 .8 +1028 3517 .6 +1028 947 .6 +1028 1022 .8 +1028 438 .8 +1028 4492 .6 +1028 4083 .6 +1028 1433 .6 +1028 3338 .6 +1028 584 1 +1028 2726 .6 +1028 16 .6 +1028 40 .6 +1028 1920 .6 +1028 1215 .6 +1028 2409 .6 +1028 4860 .6 +1028 106 .8 +1028 658 .8 +1028 964 .6 +1028 918 .8 +1028 1086 .6 +1028 112 .8 +1028 912 .6 +1028 1078 1 +1028 215 .6 +1028 638 .6 +1028 1079 .8 +1028 2247 .8 +1028 1117 1 +1028 1751 .6 +1028 3337 .6 +1028 791 1 +1028 512 .6 +1028 501 .6 +1028 1837 .6 +1028 166 .8 +1028 88 .6 +1028 1339 .8 +1028 44 .8 +1028 2172 .6 +1028 171 .6 +1028 172 .8 +1028 944 .6 +1028 442 .6 +1028 4861 .6 +1028 2942 .8 +1028 317 .6 +1028 3602 .6 +1028 1663 .8 +1028 2377 .6 +1028 1088 .6 +1028 780 .6 +1028 2984 .6 +1028 1016 .8 +1028 4010 .6 +1028 4862 .6 +1028 844 .6 +1028 324 1 +1028 2571 .6 +1028 1827 .6 +1028 4863 .6 +1028 3675 .6 +4864 4865 .6 +644 644 1 +644 739 1 +644 858 .8 +644 1580 .8 +644 1596 .8 +644 642 1 +644 328 1 +644 163 1 +644 719 1 +644 1992 .8 +644 329 1 +644 1020 1 +644 172 .8 +644 126 1 +644 3102 .8 +644 3379 .8 +644 30 1 +644 3555 .6 +644 3556 .8 +644 1898 .8 +644 787 1 +644 467 1 +4866 4866 .8 +882 797 .8 +882 1073 .8 +882 326 1 +882 323 .8 +882 466 .8 +882 1076 .6 +882 1074 .8 +882 174 .8 +882 623 .8 +882 1075 .8 +882 882 .8 +882 3230 .8 +882 1633 .8 +882 316 .8 +882 306 .8 +882 324 .8 +882 1020 1 +882 934 .8 +882 645 .8 +882 1401 .8 +882 351 .8 +882 352 1 +882 555 1 +882 584 .8 +147 147 1 +147 144 1 +147 328 1 +147 30 .8 +147 719 1 +147 306 .8 +147 324 .8 +147 1075 .8 +147 1020 1 +147 326 1 +147 1401 .8 +147 323 .8 +147 642 1 +147 858 .8 +147 1074 .8 +147 46 1 +147 325 .8 +147 427 .6 +147 1932 .6 +147 145 1 +147 562 1 +147 146 1 +147 165 .6 +147 1278 1 +147 467 1 +147 787 1 +4867 4867 .8 +65 349 1 +65 1022 1 +65 326 1 +65 1086 .8 +65 801 1 +65 282 1 +65 328 1 +65 1123 1 +65 22 1 +65 1082 1 +65 827 .8 +65 784 1 +65 792 1 +65 65 1 +65 1023 .8 +65 286 1 +65 764 1 +65 102 .6 +65 104 .8 +65 869 1 +65 108 .8 +65 750 .8 +65 45 1 +65 584 .8 +65 2834 1 +65 1019 .6 +65 2945 .8 +65 825 .8 +65 710 1 +65 2417 .8 +65 1119 .8 +65 273 .8 +65 334 1 +65 738 1 +65 1451 .8 +65 107 .6 +65 648 1 +65 497 .6 +65 577 1 +65 1704 .6 +65 1687 .8 +65 1230 1 +65 1557 1 +65 1882 .6 +65 1881 .6 +65 591 .6 +65 1171 1 +65 640 1 +65 2529 .6 +65 1231 1 +65 1880 .6 +65 751 1 +65 1068 1 +65 172 1 +65 3237 .8 +65 2713 .6 +65 791 1 +65 438 .8 +65 1089 1 +65 394 .8 +65 921 .8 +65 1437 1 +65 522 1 +65 3501 .8 +65 1514 .8 +65 859 1 +65 1020 1 +65 1160 1 +65 813 1 +65 492 1 +65 93 .8 +65 2250 .8 +65 1247 1 +65 1091 1 +65 1987 1 +1630 1630 .6 +1630 126 1 +1630 1182 .8 +1630 46 1 +1630 793 .8 +1630 620 .6 +1630 642 1 +1630 296 1 +1630 714 .8 +1630 1089 .8 +1630 30 1 +1630 328 1 +1630 4868 .8 +1630 107 .8 +1630 4749 .8 +1630 4679 .8 +1630 813 1 +1630 1237 .8 +1630 2898 .6 +1630 2042 1 +1630 157 .8 +1630 1384 .6 +1630 1569 .6 +1630 1049 1 +1630 1734 .6 +1630 2578 .8 +2565 1491 .8 +2565 2565 .8 +2565 2561 .8 +2565 1167 .8 +2565 13 .8 +2565 14 .8 +2565 1179 .8 +926 926 .6 +926 157 .8 +926 541 .8 +926 2573 .8 +926 864 1 +926 148 1 +926 2150 .8 +926 715 .8 +926 3117 .8 +926 124 .8 +926 714 1 +926 2439 .8 +926 4869 .8 +4870 3989 .6 +4870 595 .8 +4870 543 1 +4870 1000 .8 +4870 808 .8 +4870 328 1 +4870 22 1 +4870 104 1 +4870 326 1 +4870 126 1 +4870 4871 .6 +4870 1356 .8 +4870 34 .8 +4870 892 1 +4870 345 1 +4870 2536 1 +4870 4034 .8 +4870 323 1 +4870 1401 1 +4870 4173 1 +4872 126 1 +4873 4873 1 +4874 4874 .6 +4586 4586 .6 +4875 4875 .6 +4875 737 1 +4875 807 .6 +4875 227 .6 +4875 893 .6 +4875 795 .6 +157 593 .8 +157 157 .8 +157 963 .6 +157 615 .8 +157 1165 .8 +157 631 .6 +157 994 .6 +157 598 .8 +157 214 .8 +157 1034 .8 +157 376 .6 +157 921 1 +157 898 .8 +157 1814 .6 +157 316 .8 +157 329 1 +157 353 1 +157 1318 1 +157 751 1 +157 943 1 +157 34 .8 +157 599 .6 +157 995 .6 +157 1685 .6 +157 1160 .8 +157 703 .8 +157 632 .8 +157 2977 .6 +157 246 .6 +157 526 .8 +157 992 .6 +157 852 1 +157 1126 1 +157 804 .8 +157 328 1 +157 1047 .8 +157 923 .6 +157 603 .8 +157 987 .8 +157 1167 .8 +157 121 1 +157 405 .8 +157 1132 .6 +157 4876 .6 +157 513 .8 +157 959 .8 +157 378 .6 +157 107 .6 +157 830 1 +157 323 .8 +157 920 .8 +157 2705 .8 +157 1816 .8 +157 19 .8 +157 583 .8 +157 1172 .8 +157 81 .6 +157 525 .8 +157 1660 .8 +157 44 1 +157 1452 .8 +157 739 1 +157 1719 .8 +157 1815 .6 +157 2239 .8 +157 242 1 +157 4663 .8 +157 3251 .8 +157 919 .8 +157 357 .8 +157 2002 .8 +157 379 .8 +157 112 1 +157 683 .8 +157 757 .6 +157 4872 1 +157 4868 .8 +157 4877 .8 +157 497 .6 +157 985 .6 +157 993 .8 +157 1393 .8 +157 1494 .8 +157 1169 .8 +157 1023 1 +157 633 .6 +157 597 .8 +157 841 .6 +157 442 .8 +157 795 .8 +157 846 1 +157 791 .8 +157 1998 .6 +157 1170 .6 +157 604 .8 +157 93 .6 +157 1650 .6 +157 255 .6 +157 2004 .8 +157 1159 .6 +157 1585 .8 +157 996 .8 +157 1060 .6 +157 2522 .6 +157 274 1 +157 638 .8 +157 623 .8 +157 3398 .6 +157 4878 .6 +157 938 .6 +157 998 .8 +157 92 1 +157 524 .8 +157 914 .8 +157 1154 .8 +157 956 .8 +157 172 1 +157 1166 .8 +157 297 1 +157 65 1 +157 864 .8 +157 187 .8 +157 613 .8 +157 983 .8 +157 711 1 +157 2507 .8 +157 1068 1 +157 1533 .8 +157 362 .8 +157 1545 .8 +157 1609 .8 +157 2135 .6 +157 1162 1 +157 2091 .8 +157 3910 .8 +157 658 .8 +157 89 .6 +157 989 .6 +157 1164 .6 +157 556 .8 +157 2535 .8 +157 718 .8 +157 2615 .8 +157 988 .8 +157 2405 .8 +157 930 .8 +157 1072 .8 +157 469 1 +157 1561 1 +157 1547 .8 +157 1091 .8 +157 624 .8 +157 430 .8 +157 1552 .8 +157 98 .8 +157 532 .6 +157 712 .8 +157 241 .8 +157 248 .6 +157 1000 .8 +157 954 .8 +157 3408 .6 +157 1595 .8 +157 1549 .8 +157 334 .8 +157 584 1 +157 1839 .8 +157 1065 .8 +157 1543 1 +157 4321 .8 +157 1012 1 +157 893 1 +157 912 .8 +157 332 1 +157 1028 .8 +157 4879 .6 +157 601 .8 +157 1556 .6 +157 4880 .6 +157 209 .8 +157 514 .8 +157 3566 .8 +157 949 .8 +157 888 .8 +157 2412 .8 +157 3892 .8 +157 705 .6 +157 596 .8 +157 1521 .6 +157 617 .6 +157 543 .6 +157 1339 .8 +157 1097 .8 +157 1961 .8 +157 1440 .8 +157 1899 .6 +157 1880 .6 +157 3297 .6 +157 3050 .8 +157 1671 .6 +157 265 .8 +157 17 .6 +157 1304 .8 +157 659 1 +157 189 .6 +157 103 1 +157 269 .6 +157 1043 .6 +157 1191 .8 +157 4881 .8 +157 966 .6 +157 4882 .6 +157 2388 .8 +157 1156 1 +157 519 .6 +157 306 1 +157 429 1 +157 934 1 +157 3384 1 +157 1171 1 +157 960 .8 +157 944 .8 +157 82 .8 +157 528 .8 +157 492 .8 +157 1560 1 +157 801 .8 +157 1598 .8 +157 3087 .6 +157 3032 .6 +157 251 .6 +157 1163 .6 +157 45 1 +157 2295 .8 +157 1517 .8 +157 523 .8 +157 770 1 +157 1827 .8 +157 441 1 +157 578 .8 +157 263 .8 +157 904 .8 +157 2865 .8 +157 322 .8 +157 51 .8 +157 517 .6 +157 394 .8 +157 4883 .8 +157 2768 .8 +157 610 1 +157 207 .8 +157 880 .8 +157 657 .6 +157 3587 .8 +157 333 1 +157 1237 .8 +157 148 .8 +157 2715 .8 +157 4884 1 +157 793 .8 +157 346 .8 +157 2867 .8 +157 1844 .8 +157 577 1 +157 843 .8 +157 2782 .6 +157 3395 .8 +157 83 .8 +157 545 .8 +157 955 .6 +157 1495 1 +157 1487 .6 +157 4885 .8 +157 766 .6 +157 1042 .6 +157 1135 .8 +157 716 .8 +157 147 1 +157 925 .6 +157 3564 .8 +157 605 .6 +157 837 .8 +157 805 .8 +157 547 .8 +157 2611 .8 +157 807 1 +157 1490 .8 +157 972 .8 +157 548 .8 +157 1908 1 +157 887 .8 +157 1812 .8 +157 3541 .8 +157 797 .8 +157 1427 .8 +157 1233 .6 +157 2933 .8 +157 1881 .6 +157 384 .6 +157 1002 .8 +157 2572 .8 +157 467 .8 +157 608 .6 +157 4886 .6 +157 606 .6 +157 4887 .6 +157 3237 .8 +157 324 .8 +157 62 .8 +157 439 .8 +157 618 .8 +157 546 .8 +157 629 1 +157 111 .8 +157 2573 1 +157 373 .8 +157 153 1 +157 154 1 +157 162 .8 +157 646 .8 +157 4888 .8 +157 1813 .8 +157 614 .8 +157 18 .8 +157 174 1 +157 582 1 +157 2866 .6 +157 1067 .8 +157 3028 .6 +157 1453 1 +157 762 .8 +157 1832 .6 +157 948 .6 +157 4343 .8 +157 531 .6 +157 541 .8 +157 1399 .8 +157 1550 .6 +157 1849 .6 +157 4675 .6 +157 2539 .6 +157 3130 .6 +157 3507 .6 +157 1181 .8 +157 1991 1 +157 1278 1 +157 2214 .8 +157 1307 .8 +157 4889 .8 +157 52 .8 +157 4625 .8 +157 4333 .8 +157 4703 .8 +157 1390 .6 +157 4442 .6 +157 426 1 +157 425 1 +157 2835 .8 +157 647 1 +157 3118 .8 +157 910 .8 +157 652 1 +157 764 1 +157 1499 1 +157 2454 .8 +157 939 .8 +157 215 .8 +157 3208 1 +157 1652 .8 +157 349 1 +157 2145 .6 +157 1642 .6 +157 883 .8 +157 2013 .6 +157 1 .8 +157 785 .8 +157 3403 .6 +157 2506 .6 +157 973 .6 +157 786 .8 +157 2134 .6 +157 4890 .6 +157 6 .8 +157 3807 1 +157 2616 .8 +157 137 .8 +157 1967 1 +157 945 .8 +157 974 .8 +157 4396 .8 +157 4891 .6 +157 4892 .8 +157 1645 .8 +157 1514 .8 +157 767 .8 +157 1675 .8 +157 2900 .6 +157 3546 .8 +157 704 .6 +157 118 1 +157 588 .6 +157 177 .8 +157 4835 .6 +157 1834 .8 +157 191 .8 +157 738 .8 +157 1238 1 +157 1677 .8 +157 2990 .6 +157 335 .8 +157 1026 .8 +157 276 .8 +157 1570 .8 +157 1222 1 +157 749 1 +157 747 1 +157 1070 .8 +157 1182 .8 +157 3367 .8 +157 3319 .6 +157 453 .6 +157 2593 .8 +157 4433 .8 +157 4893 .8 +157 2141 .8 +157 2143 .6 +157 2861 .8 +157 2845 .8 +157 399 .8 +157 4167 .8 +157 1716 .6 +157 1190 .8 +157 188 .8 +157 15 .6 +157 1085 1 +157 119 1 +157 1049 .8 +157 990 .8 +157 102 .6 +157 4540 .8 +157 1542 .6 +157 4189 .6 +157 630 .6 +157 3089 .6 +157 1361 .8 +157 715 .8 +157 4186 .6 +157 3537 .8 +157 1330 .8 +157 2617 .8 +157 1366 .8 +157 1356 .8 +157 4894 .8 +157 2622 .8 +157 1824 .8 +157 4580 1 +157 4895 .8 +157 2685 .6 +157 794 .8 +157 1021 .8 +157 984 .8 +157 780 .8 +157 4896 .8 +157 4897 .8 +157 4898 .6 +157 2033 .6 +157 2238 1 +157 4198 .8 +157 4251 .8 +157 803 .6 +157 4273 .8 +157 1467 .8 +157 1436 .8 +157 1360 .8 +157 3797 .8 +157 402 .6 +157 4899 .6 +157 3240 .8 +157 1586 .8 +157 1631 .8 +157 929 .6 +157 178 .8 +157 1515 .8 +157 2151 .8 +157 4900 .8 +157 1727 .8 +157 2094 .8 +157 4901 .8 +157 21 .6 +157 3235 .6 +157 1512 .8 +157 522 1 +157 640 1 +157 4696 1 +157 1823 .8 +157 3519 .8 +157 1309 1 +157 538 .8 +157 3344 .8 +157 4902 .8 +157 3312 .6 +157 23 .6 +157 2739 .8 +157 549 .8 +157 4903 .8 +157 2226 .8 +157 844 .6 +157 886 .8 +157 1486 .8 +157 918 1 +157 87 .6 +157 2824 .8 +157 2732 .8 +157 813 1 +157 1286 .8 +157 454 .8 +157 639 .8 +157 437 .8 +157 1246 .8 +157 736 1 +157 621 .8 +157 1175 1 +157 63 .8 +157 2503 .8 +157 799 .6 +157 377 1 +157 374 .6 +157 212 .8 +157 2227 .8 +157 173 .8 +157 457 .8 +157 4904 .8 +157 3894 .8 +157 1668 .8 +157 234 .8 +157 2240 .8 +157 412 .6 +157 4905 .8 +157 4906 .8 +157 1351 .8 +157 4004 .6 +157 4907 .6 +157 1678 .6 +157 2976 .8 +157 4908 .6 +157 812 .6 +157 890 .6 +157 788 .8 +157 3404 .6 +157 4823 .8 +157 1092 1 +157 950 .6 +157 1820 .8 +157 620 .8 +157 336 .8 +157 2887 .8 +157 2678 .6 +157 2255 .8 +157 811 .6 +157 4909 .8 +157 928 .6 +157 3218 .6 +157 4910 .8 +157 3853 .8 +157 4461 .8 +157 4581 .8 +157 1963 .6 +157 1052 1 +157 1768 .8 +157 808 .8 +157 680 .8 +157 1529 .8 +157 1526 .8 +157 2042 .8 +157 1528 .8 +157 1527 .8 +157 2045 .6 +157 400 .8 +157 892 .8 +157 2934 .6 +157 397 .6 +157 891 .6 +157 1711 .8 +157 1322 .8 +157 1910 .8 +157 2578 .8 +157 625 .8 +157 165 1 +157 4911 .8 +157 4912 .6 +157 4913 .6 +157 1524 .8 +157 594 .8 +157 1418 .8 +157 673 .8 +157 2444 .8 +157 2250 .8 +157 728 .8 +157 94 .8 +157 2108 .8 +157 337 .8 +157 2745 .8 +157 409 .6 +157 2997 1 +157 1089 1 +157 233 .8 +157 182 .8 +157 737 .8 +157 1772 .8 +157 1769 .8 +157 100 .8 +157 414 .8 +157 4512 .6 +157 3467 .8 +157 1662 .8 +157 776 .8 +157 1245 .8 +157 2703 .8 +157 4914 .8 +157 3827 1 +157 2907 .8 +157 675 .6 +157 4327 .8 +157 4260 .6 +157 463 .8 +157 2104 .6 +157 1971 .6 +157 4915 .8 +157 2230 .8 +157 2350 .8 +157 917 .8 +157 3209 .6 +157 4183 1 +157 579 .8 +157 1051 .8 +157 48 .8 +157 2316 .6 +157 2313 .8 +157 4342 .6 +157 1774 .6 +157 2772 .8 +157 73 .8 +157 3067 1 +157 3413 .8 +157 654 1 +157 1574 .8 +157 1587 .8 +157 1277 .8 +157 1575 .8 +157 3082 .8 +157 2231 .8 +157 4916 .8 +157 421 .6 +157 1629 .8 +157 634 .8 +157 1401 .8 +157 1775 .8 +157 678 .8 +157 42 .6 +157 67 .8 +157 3464 .6 +157 2165 .8 +157 1741 .8 +157 1773 .6 +157 774 1 +157 1980 1 +157 4917 .8 +157 552 .6 +157 2450 1 +157 3482 1 +157 193 .8 +157 20 .8 +157 1248 1 +157 1153 .8 +157 420 .8 +157 3288 .8 +157 1187 1 +157 1605 .8 +157 208 1 +157 1857 .8 +157 290 1 +157 4918 .8 +157 2198 1 +157 849 .8 +157 850 .8 +157 2197 .8 +157 4919 .8 +157 7 .8 +157 815 .8 +157 1636 .8 +157 50 .8 +157 1781 .8 +157 708 .8 +157 863 .8 +157 719 1 +157 2470 .6 +157 1569 .8 +157 2625 .8 +157 1578 .8 +157 403 .8 +157 2269 .8 +157 2429 .8 +157 1370 .8 +157 542 .8 +157 4920 .8 +157 2182 .8 +157 1622 .8 +157 2466 .8 +157 1988 1 +157 3918 .8 +157 4921 .6 +157 2787 .8 +157 1779 .6 +157 2372 .8 +157 213 .8 +157 4922 .8 +157 1902 .8 +157 2774 .8 +157 1384 .8 +157 3011 .8 +157 500 .6 +157 460 .8 +157 902 .8 +157 79 .8 +157 2317 .8 +157 627 .8 +157 4923 .8 +157 9 .8 +157 3578 .6 +157 1851 1 +157 3909 .8 +157 2252 .8 +157 3622 .8 +157 1566 .8 +157 4597 .8 +157 3257 .8 +157 773 .8 +157 649 1 +157 1492 .8 +157 2847 .8 +157 3429 .8 +157 2474 .8 +157 1394 .8 +157 1093 .8 +157 363 .8 +157 2938 .8 +157 709 .8 +157 2790 .8 +157 1665 .8 +157 2463 .8 +157 1981 .8 +157 1416 .8 +157 779 .8 +157 802 1 +157 694 .8 +157 186 .8 +157 4924 .8 +157 4869 .6 +157 1386 .6 +157 722 .8 +157 2473 1 +157 701 .8 +157 124 .8 +157 417 .8 +157 2464 1 +157 348 1 +157 2911 .8 +157 1978 .8 +157 2969 .8 +157 2062 .8 +157 2265 .8 +157 1254 .6 +157 1387 .6 +157 2352 .8 +157 1757 1 +157 3455 .6 +157 1379 .8 +157 2743 .8 +157 1398 .8 +157 2267 .8 +157 125 .8 +157 2366 .8 +157 1362 1 +157 4744 .6 +157 4925 .8 +157 282 1 +157 4926 .6 +157 778 .8 +157 3717 .8 +157 781 1 +157 129 1 +4518 4518 .6 +4518 1064 .8 +4518 643 1 +4518 46 1 +2126 779 .8 +2126 780 .8 +2126 346 .8 +2126 1418 .8 +2126 525 .8 +2126 328 1 +2126 2126 .6 +2126 1512 .8 +2126 469 .8 +2126 1391 .8 +2126 598 .8 +2126 492 .8 +2126 2125 .8 +2126 1417 .8 +2323 739 1 +2323 736 1 +2323 148 .8 +2323 273 .8 +2323 561 .8 +2323 46 1 +2323 427 .8 +2323 855 .8 +2323 714 .8 +2323 175 1 +2323 126 1 +2323 2660 .8 +2323 329 1 +2323 2312 .8 +2323 2213 .8 +2323 856 .8 +2323 859 .8 +2323 582 .8 +2323 474 .8 +2323 887 .8 +2323 586 .6 +2323 1190 .8 +2323 2840 .6 +2323 858 1 +2323 437 .8 +2323 2798 .8 +2323 1157 1 +2323 642 1 +2323 2363 .6 +2323 2725 .8 +2323 879 1 +2323 307 .6 +2323 789 .8 +2323 328 1 +2323 2216 .8 +2323 2799 .8 +2323 4927 .8 +2323 2517 .8 +2323 2797 .8 +2323 45 1 +2323 1306 .8 +2323 562 .8 +2323 701 .8 +2323 1337 .8 +4928 751 1 +4929 4929 .6 +3618 2672 1 +1524 624 1 +1524 2550 .8 +1524 65 1 +1524 813 1 +1524 577 1 +1524 2246 1 +1524 282 1 +1524 1768 1 +1524 627 .8 +1524 639 1 +1524 3805 .8 +1524 1357 .6 +4930 4930 .8 +4930 1586 1 +3153 3153 .6 +3153 2506 .6 +4931 4932 1 +4933 4933 1 +4692 1915 .8 +4692 1749 1 +128 2754 .8 +128 1255 1 +232 739 1 +232 99 .8 +232 1616 1 +232 30 1 +232 4582 .6 +232 324 1 +232 379 1 +232 34 1 +232 1020 1 +232 2942 .8 +232 2307 1 +232 887 .8 +232 1215 .6 +232 4245 .6 +232 918 1 +232 4175 .6 +232 3275 .6 +232 829 .8 +232 934 1 +232 53 1 +232 284 .6 +232 51 1 +232 1073 .8 +232 172 1 +232 4371 .6 +232 4539 1 +232 1333 .6 +232 215 1 +232 4408 .6 +232 221 .6 +232 985 .6 +232 92 .8 +232 805 1 +232 2895 .6 +232 1627 .8 +232 757 .6 +232 1033 .8 +232 810 .8 +232 242 1 +232 791 .8 +232 1166 .8 +232 587 .8 +232 356 .8 +232 1917 .8 +232 1605 .8 +232 2682 .6 +232 844 .8 +232 44 .8 +232 203 .6 +232 2021 .6 +232 915 .8 +232 1602 .6 +232 638 .8 +232 2876 .6 +232 491 .8 +232 830 .8 +232 797 .8 +232 277 .6 +232 297 .8 +232 362 1 +232 555 1 +232 3316 1 +232 3936 .6 +232 1547 .8 +232 1801 .8 +232 658 .8 +232 239 .6 +232 2189 .8 +232 429 1 +232 1415 .8 +232 456 .8 +232 703 .6 +232 13 .8 +232 102 .8 +232 1167 1 +232 615 .8 +232 234 .6 +232 19 .6 +232 227 .6 +232 2506 .8 +232 214 .8 +232 784 1 +232 1490 .8 +232 3495 .6 +232 1047 .6 +232 265 1 +232 225 .8 +232 1162 .8 +232 1518 .8 +232 3122 .8 +232 928 .6 +232 1496 .8 +232 89 .6 +232 200 .8 +232 1992 .8 +232 331 .8 +232 1216 .6 +232 943 .8 +232 1186 .6 +232 226 .6 +232 230 .6 +232 759 .8 +232 385 .8 +232 357 .8 +232 1185 .8 +232 912 .8 +232 822 .6 +232 610 1 +232 575 .6 +232 2616 .8 +232 2614 1 +232 445 .8 +232 1343 1 +232 1818 .8 +232 1834 .8 +232 437 1 +232 306 .8 +232 1191 .8 +232 512 .8 +232 4178 .6 +232 191 1 +232 1764 .8 +232 1658 .8 +232 349 1 +232 1692 .8 +232 195 .6 +232 430 .8 +232 578 .8 +232 252 .6 +232 334 .8 +232 361 .6 +232 332 1 +232 231 .6 +232 1072 .8 +232 648 1 +232 501 .8 +232 1536 .8 +232 198 .6 +232 96 .6 +232 87 .8 +232 335 .8 +232 1641 .8 +232 591 .6 +232 637 1 +232 576 .8 +232 1760 .8 +232 1246 1 +232 163 .8 +232 2363 .6 +232 55 .6 +232 1927 .8 +232 807 .8 +232 346 .8 +232 1074 .8 +232 1290 .8 +232 3133 .6 +232 582 .8 +232 48 .8 +232 947 .8 +232 2405 .8 +232 801 1 +232 14 .8 +232 2529 .6 +232 880 .8 +232 4671 .6 +232 4934 .6 +232 2025 .6 +232 3866 .6 +232 3174 .8 +232 1402 .8 +232 2728 .6 +232 866 .6 +232 2729 .6 +232 572 .8 +232 171 1 +232 3758 .6 +232 668 .8 +232 1542 .6 +232 2101 .8 +232 505 .6 +232 504 .6 +232 569 .6 +232 3660 .6 +232 3187 .6 +232 2320 .6 +232 2566 .8 +232 106 .8 +232 2884 .6 +232 1009 .8 +232 1434 .8 +232 570 .6 +232 1590 .6 +232 4935 .6 +232 4700 .6 +232 377 .8 +232 4076 .8 +232 2284 .8 +232 506 1 +232 2765 .8 +232 4936 .6 +232 2656 .6 +232 845 .8 +232 425 1 +232 4937 .6 +232 507 .6 +232 2577 .6 +232 3708 .6 +232 311 .8 +232 4938 .6 +232 1104 .6 +232 1915 .8 +232 508 .8 +232 1088 .6 +232 1727 .8 +232 3732 .8 +232 1728 .8 +232 1453 .6 +232 4939 .6 +232 510 .6 +232 2757 .8 +232 854 1 +232 2923 .8 +232 4114 .6 +232 4397 .8 +232 2922 .8 +232 345 1 +232 199 .6 +232 3193 .8 +232 540 1 +232 4940 .6 +232 442 .8 +232 118 1 +232 4941 .6 +232 1499 .8 +232 83 .6 +232 1270 1 +232 2562 .8 +232 2555 .8 +232 1422 .6 +232 1305 .8 +232 1648 .8 +232 1021 .8 +232 40 .8 +232 205 .8 +232 209 .8 +232 1704 .6 +232 492 .6 +232 1233 .6 +232 2188 .8 +232 3591 .8 +232 2324 1 +232 579 1 +232 594 1 +232 316 1 +232 944 1 +232 581 .6 +232 1190 1 +232 1800 .6 +232 323 .8 +232 1894 1 +232 1756 .8 +232 1078 .8 +232 1127 .8 +232 298 .8 +232 1390 .6 +232 65 1 +232 2715 .8 +232 2503 .8 +232 312 .6 +232 1026 .8 +232 1289 .8 +232 276 .8 +232 2002 .8 +232 659 1 +232 3319 1 +232 617 .8 +232 715 .8 +232 246 .6 +232 804 .8 +232 585 .6 +232 4882 .8 +232 577 1 +232 614 .8 +232 613 .8 +232 914 .8 +232 960 .8 +232 583 1 +232 517 .8 +232 625 .8 +232 399 1 +232 1378 1 +232 712 .8 +232 599 .8 +232 193 1 +232 22 1 +232 274 1 +232 751 1 +232 1223 .8 +232 1217 1 +232 4204 .8 +232 1551 .8 +232 1702 .8 +232 1153 .8 +232 4751 .8 +232 4205 .8 +232 3028 .8 +232 4635 .8 +232 2777 .6 +232 374 .8 +232 3032 1 +232 373 1 +232 812 .6 +232 2939 .8 +232 3609 .6 +232 785 .8 +232 925 .6 +232 813 1 +232 620 1 +232 1418 .8 +232 188 .8 +232 888 .8 +232 1514 .8 +232 255 .8 +232 2782 .8 +232 3121 .8 +232 39 .8 +232 677 .8 +232 4691 .8 +232 1159 .8 +232 1319 1 +232 4405 1 +232 2214 1 +232 646 1 +232 457 .8 +232 1291 .8 +232 1601 .8 +232 1189 .8 +232 2601 .8 +232 4942 .8 +232 983 .8 +232 1399 .8 +232 1967 .8 +232 194 .8 +232 62 .8 +232 104 1 +232 1160 1 +232 2240 1 +232 793 .8 +232 461 .8 +232 2313 1 +232 165 1 +232 497 1 +232 4029 .6 +232 469 1 +232 400 1 +232 75 .8 +232 125 .8 +232 526 1 +232 1851 1 +232 1971 .6 +232 904 .8 +232 3911 .8 +232 899 .8 +232 45 1 +232 42 1 +232 418 .8 +232 1662 .8 +232 708 1 +232 897 .8 +232 779 1 +232 516 .8 +232 788 1 +232 1178 .8 +232 1964 1 +232 2222 1 +232 711 1 +232 862 .8 +232 632 1 +232 716 1 +232 2807 1 +232 774 1 +3919 3919 .8 +3919 2277 .8 +3919 1304 .8 +4943 4943 .6 +4944 2783 .8 +4945 4945 .8 +4946 4946 .6 +4947 4947 .6 +4947 716 1 +4948 4948 .6 +3675 3675 .6 +1613 351 .8 +1613 1961 .6 +1613 53 .8 +1613 175 1 +1613 329 1 +1613 286 1 +1613 126 1 +1613 1612 .8 +1613 46 1 +1613 646 1 +4949 4949 .6 +4950 4950 .6 +4950 1488 .8 +2081 715 1 +2081 297 1 +2081 843 1 +2081 2754 .8 +2081 4951 .8 +2081 3755 .8 +2081 126 1 +2081 1243 1 +4952 4952 .6 +1586 1978 1 +1586 1981 1 +1586 1634 .8 +1586 1386 .6 +1586 2782 .8 +1586 80 .8 +1586 3088 .6 +1586 710 1 +1586 399 .8 +1586 773 .8 +1586 4953 .8 +1586 2106 .8 +1586 19 .6 +1586 3566 .8 +1586 982 .6 +1586 4954 .8 +1586 4002 .8 +1586 1992 1 +1586 1662 .8 +1586 858 1 +1586 2745 .8 +1586 2986 .6 +1586 2602 .8 +1586 1022 .8 +1586 718 .8 +1586 1679 .8 +1586 258 .8 +1586 4955 .6 +1586 1512 .8 +1586 2282 .6 +1586 1394 .8 +1586 807 .8 +1586 2686 .6 +1586 924 .6 +1586 712 .8 +1586 3949 .6 +1586 1353 .8 +1586 1964 .8 +1586 215 1 +1586 779 .8 +1586 286 1 +1586 1629 1 +1586 1595 .8 +1586 829 .8 +1586 1495 1 +1586 683 .6 +1586 1193 .8 +1586 209 1 +1586 4150 .6 +1586 124 .6 +1586 3112 .8 +1586 2573 .8 +1586 263 .6 +1586 1966 .6 +1586 72 .8 +1586 4069 .6 +1586 4597 .8 +1586 4780 .6 +1586 1384 .6 +1586 100 .8 +1586 1248 .8 +1586 68 .6 +1586 4749 .8 +1586 148 1 +1586 1521 .8 +1586 1016 .8 +1586 107 .6 +1586 793 .8 +1586 328 1 +1586 997 .6 +1586 944 .8 +1586 499 .6 +1586 2703 .8 +1586 4956 .6 +1586 2774 .8 +1586 583 .8 +1586 282 1 +1586 3102 .6 +1586 2299 .8 +1586 429 1 +1586 1831 .6 +1586 715 .8 +1586 4957 .8 +1586 1788 .6 +1586 22 1 +1586 4389 .8 +1586 939 .8 +1586 34 1 +1586 33 .8 +1586 9 .8 +1586 418 .6 +1586 2182 .8 +1586 890 .6 +1586 214 .8 +1586 1418 1 +1586 165 .8 +1586 1093 .6 +1586 375 1 +1586 106 .8 +1586 4930 .8 +1586 1047 .8 +1586 157 .8 +1586 630 .6 +1586 111 .8 +1586 4132 .6 +1586 242 1 +1586 2934 .6 +1586 445 1 +1586 886 .8 +1586 1769 .8 +1586 1798 .6 +1586 4214 .6 +809 809 .6 +809 1650 .8 +809 3103 .8 +809 4958 .8 +809 4959 .8 +809 94 .8 +809 788 .8 +809 555 1 +809 286 1 +809 344 1 +809 324 1 +809 327 .8 +809 345 1 +809 126 1 +809 1523 .8 +809 4419 .6 +809 1020 1 +809 785 .8 +809 595 .8 +809 1436 1 +809 780 .8 +809 577 1 +2060 46 1 +2060 45 1 +4960 4960 .8 +4470 4470 1 +4470 2704 .6 +1548 5 1 +1548 953 .8 +1548 40 .8 +1548 329 1 +1548 445 1 +1548 736 1 +1548 1799 1 +1548 739 1 +1548 835 1 +1548 148 .8 +1548 43 1 +1548 1907 1 +1548 3002 1 +1548 1634 .6 +1548 4779 1 +3246 3246 .8 +3246 739 1 +3246 1287 .8 +3246 736 1 +3246 46 1 +3246 985 .6 +3246 1286 .8 +3246 1289 .8 +3246 1285 .8 +3246 1026 .8 +3246 1454 .8 +4961 4961 .6 +4185 1126 1 +4185 329 1 +4185 797 .6 +4185 4962 .8 +4185 3174 .6 +4185 599 1 +4185 1172 1 +4185 362 1 +4963 4963 .6 +4963 46 1 +4963 1171 1 +4963 273 1 +1424 1425 .6 +1424 1424 .6 +1424 1423 .6 +1424 1422 .6 +1705 1705 .8 +1705 1675 .8 +1705 1707 .8 +1705 1701 .8 +1705 9 .6 +1705 271 .6 +1705 293 .8 +1705 277 .8 +1705 4964 .8 +1705 3117 .6 +1705 2425 .6 +1705 751 1 +1705 46 1 +1705 429 1 +1705 215 1 +1705 1708 .8 +4965 4965 .6 +4965 273 1 +4965 424 1 +4965 46 1 +4965 148 .8 +4965 1270 1 +1091 1091 .8 +1091 1542 .6 +1091 1543 .8 +1091 764 1 +1091 290 1 +1091 647 1 +1091 1137 .6 +1091 108 .8 +1091 282 1 +1091 694 .8 +1091 1560 1 +1091 1134 1 +1091 1544 .6 +1091 377 1 +1091 1337 .8 +1091 697 .8 +1091 65 1 +1091 3010 .8 +1091 1126 .8 +1091 658 .8 +1091 1874 .8 +1091 2790 .8 +2991 2991 1 +4966 4966 .8 +4966 265 1 +4967 667 1 +3725 1176 1 +3725 747 1 +3725 647 1 +3725 659 1 +3725 652 1 +3725 2457 .8 +3725 714 .8 +3725 1212 .8 +3725 1127 .8 +3725 2278 .8 +3725 3549 .6 +3725 4968 .6 +3725 2289 .8 +3725 290 1 +3725 2852 .8 +3725 2461 .8 +3725 1211 .8 +3725 1479 .8 +3725 2456 .6 +3725 137 1 +3725 2460 .8 +3725 1215 .6 +3725 433 .8 +3725 110 .8 +3725 1213 .8 +3725 2453 .8 +3725 1218 .8 +3725 1210 .8 +3725 764 1 +3725 2874 .6 +3725 1222 .8 +3725 749 1 +3725 2454 .8 +3725 4485 .8 +3725 3505 .8 +4969 4969 1 +4969 2539 1 +4969 1671 .8 +4969 442 1 +4969 328 1 +2378 2378 .8 +2378 1214 .8 +2378 1195 .8 +2794 2794 .6 +4714 4713 .8 +4714 1133 .8 +4714 2165 .8 +4714 1142 .8 +4714 1378 .8 +3314 1549 .8 +3314 1592 .8 +3314 207 .8 +3314 209 .8 +3314 44 .8 +4970 4970 .6 +4970 431 1 +1935 575 .6 +4183 830 1 +4183 939 .8 +4183 1085 1 +4183 34 1 +4183 438 1 +4183 2255 .8 +4183 4583 1 +4971 46 1 +4972 4972 .6 +4973 4973 .8 +1541 1541 .6 +1541 1487 .8 +1541 658 1 +1541 1464 .8 +1541 1488 .8 +1541 977 .8 +1541 2572 .8 +2944 555 1 +2944 1157 1 +2944 764 1 +2944 2319 .8 +3399 1123 1 +4974 4975 .6 +4974 373 1 +4974 634 1 +4974 3082 1 +4974 813 1 +1540 349 1 +1540 1538 .6 +1540 716 1 +4976 4976 .6 +4976 1531 .8 +2473 2473 1 +2473 405 1 +2473 2474 .8 +2473 400 1 +2473 1711 1 +2473 2467 .8 +2473 4977 .8 +4978 4978 1 +4245 4245 .8 +248 2681 1 +248 248 .8 +248 324 1 +248 1692 .8 +248 323 1 +248 2851 .6 +248 286 1 +248 126 1 +248 4979 .8 +4126 2324 .8 +4890 4890 .6 +4890 2143 .6 +3676 1538 .8 +3676 2142 .6 +3676 3676 .6 +3676 708 1 +3676 414 .8 +3676 397 .8 +3676 2793 .8 +3676 1094 1 +3676 2969 .8 +2882 829 .8 +2882 30 1 +2882 328 1 +2882 1918 .8 +2882 2878 .8 +2882 4980 .6 +2882 797 .8 +2882 2882 .6 +2882 112 .8 +2882 286 1 +2882 46 1 +2882 2883 .8 +2882 2019 .6 +399 399 .8 +399 1717 .8 +399 398 .8 +399 584 1 +399 1716 .8 +399 2426 .8 +399 892 .8 +399 157 .8 +399 4700 .6 +399 30 1 +399 46 1 +399 4511 .8 +399 297 1 +399 1809 .8 +399 4632 .6 +399 4167 .8 +399 2558 .6 +399 4981 .6 +399 429 1 +399 328 1 +399 1060 .6 +399 2595 .6 +399 2013 .6 +399 1000 .8 +399 103 .8 +399 617 .8 +399 362 .8 +399 4540 .6 +399 334 .8 +399 385 1 +399 20 .6 +399 2599 .8 +399 2184 .8 +399 741 1 +399 1454 .8 +399 4982 .6 +399 3850 .8 +399 376 .8 +399 2098 .6 +399 949 1 +399 599 .6 +399 711 .8 +399 323 1 +399 625 .6 +399 4983 .6 +399 4984 .6 +399 4985 .6 +399 1777 .6 +399 2260 .6 +399 2642 .6 +399 4986 .6 +399 4987 .6 +399 1049 .8 +399 1484 .8 +399 1824 .6 +399 846 .8 +399 52 .8 +399 1085 .8 +399 927 .6 +399 98 .8 +399 261 .6 +399 4580 1 +399 577 1 +399 793 .8 +399 919 .8 +399 4958 .8 +399 232 .6 +399 2492 1 +399 1092 1 +399 3218 .6 +399 4543 .6 +399 324 1 +399 922 .8 +399 1153 .8 +399 239 .6 +399 680 .8 +399 4544 .8 +399 397 .6 +399 2141 .8 +399 405 1 +399 2783 .8 +399 3409 .8 +399 3961 .6 +399 2775 .8 +399 886 .8 +399 417 .8 +399 418 .6 +399 34 1 +399 1410 .6 +399 370 .8 +399 1178 .6 +399 4029 .6 +399 718 .8 +399 2787 .8 +399 1732 1 +399 43 1 +399 1968 1 +399 1665 .8 +1001 1001 1 +1001 990 1 +1001 174 1 +1001 1002 1 +1001 1590 .6 +1001 2555 .8 +1001 1589 .8 +1001 171 1 +1001 172 1 +1001 712 1 +1001 524 .8 +1001 938 .8 +1001 3050 .8 +1001 577 1 +1001 934 1 +1001 525 1 +1001 1003 .8 +1001 807 1 +1001 1418 1 +1001 492 1 +1001 1492 .8 +1001 346 1 +1001 1404 .6 +1001 780 .8 +1001 511 1 +1001 830 1 +1001 3894 .8 +1001 1993 1 +1001 829 .8 +1001 303 1 +1001 2556 .8 +1001 1356 1 +1001 937 .8 +1001 2437 .8 +1001 46 1 +1001 892 .6 +1001 1020 1 +1001 349 1 +1001 2255 .8 +1001 1917 .8 +1001 2450 .8 +1001 345 1 +1001 728 .8 +1001 2173 .8 +1001 1851 1 +1001 438 .8 +1001 324 1 +1001 30 1 +1001 1049 1 +1001 3431 .8 +2215 1856 1 +2215 429 1 +4988 648 1 +4988 334 1 +4988 647 1 +4988 119 1 +4988 579 1 +4988 1116 1 +4988 1428 1 +4988 1450 1 +4988 738 1 +4988 637 1 +4988 1768 1 +4988 1515 .8 +4988 2299 .8 +4988 2535 .8 +4988 1652 1 +4988 2536 .8 +4988 2537 .6 +4988 326 1 +4988 1202 1 +4988 2538 1 +4988 167 1 +4988 1571 1 +4988 2550 .8 +4988 655 1 +4988 434 1 +4988 1086 .8 +4988 172 1 +4988 797 .8 +4988 27 .8 +4988 65 1 +4988 555 1 +4988 2834 1 +4988 1921 .8 +4989 4989 .6 +4990 4990 .8 +4990 1171 1 +4990 3807 1 +4990 3770 1 +4990 22 1 +4990 282 1 +4990 1231 1 +4991 4991 .6 +4992 4992 .6 +2021 578 .8 +2021 2021 .6 +2021 1643 .8 +2021 583 .8 +2021 904 .8 +2021 337 1 +2021 171 1 +2021 30 1 +2021 1420 1 +2021 46 1 +2021 1343 1 +2021 430 .8 +2021 373 1 +2021 1548 1 +2021 377 .8 +2021 1434 .8 +2021 3482 1 +2021 425 1 +2021 445 1 +2021 540 1 +2021 442 .8 +2021 709 .8 +2021 1818 .8 +2021 735 1 +2021 882 .8 +2021 2323 .8 +2021 209 1 +2021 1524 1 +2021 1162 1 +2021 1433 .8 +2021 1616 .8 +2021 144 .8 +2021 1476 1 +2021 511 1 +2021 1248 1 +2021 655 1 +2021 1094 1 +2021 434 1 +2021 1238 1 +2021 1416 1 +2021 1401 1 +2021 620 1 +2021 844 .8 +2021 657 .8 +2021 1012 1 +2021 835 .8 +2021 659 1 +2021 1016 .8 +2021 1024 1 +2021 883 .8 +2021 888 .8 +2021 2450 1 +2021 1491 1 +2021 710 1 +2021 1974 1 +2021 743 1 +2021 1278 1 +2021 856 1 +2021 656 .8 +2021 2136 .8 +2021 892 1 +2021 576 1 +2021 750 1 +2021 1546 .8 +2021 857 1 +2021 1684 .8 +2021 79 .8 +2021 333 1 +2021 163 1 +2021 273 1 +2021 651 .8 +2021 858 1 +2021 562 1 +2021 650 1 +2021 1924 1 +2021 100 .8 +2021 1450 .6 +2021 2562 .8 +2021 350 1 +2021 1968 1 +2021 118 1 +2021 1356 1 +2021 658 1 +2021 624 1 +2021 1033 .8 +2021 385 1 +2021 2890 1 +2021 375 1 +2021 3117 .8 +2021 859 1 +2021 1493 1 +2021 2252 1 +2021 5 1 +2021 1580 .8 +2021 1543 .8 +2021 649 1 +2021 2911 .8 +2021 3257 .6 +2021 860 1 +2021 654 1 +2021 787 1 +2021 1834 .8 +2021 1124 1 +2021 1127 1 +4993 4993 1 +4994 584 1 +4994 1794 .8 +4994 2226 1 +4994 399 1 +4994 3218 .6 +4994 1410 .8 +4994 2787 .8 +4994 1732 1 +4994 1731 1 +4994 1733 .6 +4994 4632 .8 +1025 1025 .8 +1025 506 1 +1025 4995 .8 +3565 1450 .8 +3565 194 .8 +3565 1909 .8 +3565 167 1 +3565 584 1 +3565 165 .8 +3565 71 1 +3565 603 .8 +4996 4996 .6 +4997 4997 .6 +4997 449 .8 +4509 1653 .6 +4509 4509 .6 +4509 2109 .6 +4509 182 .6 +2947 172 .8 +2947 2184 .8 +2947 933 .6 +4998 4998 1 +3669 351 .8 +3669 352 1 +3669 350 .8 +3669 3006 .8 +3669 2076 1 +3669 2307 .8 +3669 303 .8 +3669 4146 .8 +3669 3669 .6 +3669 3786 .8 +3669 3572 .8 +3669 2587 .6 +3669 176 .8 +3669 1441 .8 +3669 1179 .8 +3669 1927 .6 +3669 4148 1 +3669 872 1 +3669 4147 .8 +3669 1167 .8 +3669 1961 .6 +3669 3884 .6 +1496 1496 .8 +1496 1428 1 +1496 1023 .8 +1496 1027 .8 +1496 329 1 +1496 859 1 +1496 175 1 +1496 1150 .8 +1496 1097 .8 +1496 1241 .8 +1496 4057 .8 +4999 121 1 +5000 5001 .6 +5000 5000 .6 +1229 1229 .6 +4986 4986 .6 +4986 843 1 +4986 844 .8 +4113 4113 .6 +4113 30 1 +4113 22 1 +4113 116 .8 +4113 1105 .8 +4113 673 1 +4113 719 1 +4113 46 1 +4113 329 1 +4113 1580 .8 +4113 126 1 +4113 2762 1 +4113 937 1 +3804 3804 .8 +3804 84 .8 +3804 737 .8 +3804 789 .8 +3804 739 .8 +3804 400 1 +3804 1711 1 +3804 736 1 +4987 4987 .6 +1908 44 1 +1908 943 1 +1908 1160 1 +1908 1086 .8 +1908 46 1 +1908 445 1 +1908 1407 .6 +1908 441 1 +1908 436 1 +1908 440 1 +1908 1894 1 +1908 431 1 +1908 429 1 +1908 1856 1 +1908 5 1 +1908 353 1 +1908 1116 1 +1908 434 1 +1908 432 1 +1908 318 1 +1908 438 .8 +1908 1065 1 +1908 435 .8 +1908 4 .8 +1908 1906 .8 +1908 1893 1 +1908 373 1 +1908 4888 .8 +1908 1237 .8 +1302 1302 .6 +1302 46 1 +1302 757 .6 +1302 972 .6 +1302 1301 .6 +1302 711 .6 +1302 214 .8 +1302 251 .6 +1302 703 .8 +5002 598 .8 +5002 2521 1 +5002 1122 1 +5002 1229 .8 +5003 5003 .6 +5004 669 .8 +2908 2908 .8 +5005 747 1 +5005 2214 1 +5005 1752 1 +5005 233 1 +5005 440 1 +5005 741 1 +5005 810 1 +5005 5006 .6 +5005 2537 .6 +5005 2536 .8 +5005 4583 1 +5005 1652 1 +5005 2705 .8 +5005 321 .6 +5005 346 1 +5005 2535 .8 +5005 4214 1 +5005 2299 .8 +5005 1073 .8 +5005 949 1 +5005 627 1 +5005 2964 .8 +5005 1306 1 +5005 318 1 +5005 167 1 +5005 2538 1 +5005 1447 1 +5005 1844 .8 +5005 373 1 +5005 445 1 +5005 303 1 +5005 1596 1 +5005 583 1 +5005 1644 .8 +5005 1992 1 +5005 27 .8 +5005 891 .8 +3338 1499 .8 +3338 747 1 +3338 1222 1 +5007 5007 .6 +5007 1622 .8 +5007 126 1 +5007 46 1 +5007 1278 1 +2416 2416 .6 +2416 2227 .8 +2416 4102 .6 +2416 230 .8 +1784 1629 1 +964 964 .6 +964 2334 .6 +964 1139 .6 +4895 4895 .8 +4895 157 .8 +4895 1361 .8 +4895 622 .6 +4895 604 .8 +4129 116 .8 +4129 1105 .8 +4129 925 .8 +4129 2396 .8 +4129 22 1 +4129 5008 .6 +4129 859 1 +4129 4113 .8 +4129 2912 .8 +4129 2762 .8 +4129 3784 .6 +3357 1064 .8 +2233 126 1 +2233 2233 1 +2233 4254 .8 +2233 2227 .8 +2233 787 1 +2233 644 1 +2233 727 .8 +2233 30 1 +2233 429 1 +2233 1247 1 +2233 428 1 +2233 2259 .8 +5009 3179 .6 +5009 1162 1 +5009 336 1 +5009 227 .8 +5009 2042 1 +5009 1653 .8 +5009 224 .8 +5009 1092 1 +1049 990 .8 +1049 30 1 +1049 577 1 +1049 1490 1 +1049 346 1 +1049 780 .8 +1049 1165 .8 +1049 492 1 +1049 1851 1 +1049 2614 1 +1049 1566 .8 +1049 2450 1 +1049 328 1 +1049 348 1 +1049 678 .8 +1049 1662 .8 +1049 1001 1 +1049 1418 1 +1049 830 1 +1049 791 1 +1049 807 1 +1049 712 1 +1049 1622 .8 +1254 3455 .6 +1254 2085 .8 +1254 610 1 +1254 3443 .6 +1254 597 .8 +1254 328 1 +1254 1981 1 +1254 126 1 +1254 1373 .6 +1254 1236 1 +1254 125 .6 +1254 1634 .8 +1254 1254 .6 +1254 4130 .6 +1254 880 .8 +1254 625 .8 +1254 944 1 +1254 128 1 +1254 3259 .6 +1254 773 .8 +1254 1366 1 +1254 1258 .8 +1254 1964 .8 +1254 3038 .6 +1254 2345 .6 +1254 2664 .8 +1254 3906 .6 +1254 457 1 +1254 46 1 +1254 286 1 +1254 658 1 +1254 5010 .6 +1254 3931 .6 +1254 904 .8 +1254 157 .8 +1254 5011 .6 +1254 2130 .6 +1254 1255 .8 +1254 5012 .8 +1254 3258 .6 +1254 5013 .6 +1254 1947 .8 +1254 2688 .6 +1254 2689 .6 +1254 5014 .6 +1254 5015 .6 +1254 2277 .8 +1254 5016 .6 +1254 1266 .6 +1254 5017 .8 +1254 5018 .6 +1254 1259 .6 +1254 763 1 +1254 2635 .8 +1254 1261 .8 +1254 129 1 +1254 3934 .6 +1254 2314 .8 +1254 1986 .6 +1254 5019 .6 +1254 5020 .6 +1254 1223 .6 +1254 5021 .6 +1254 1378 .6 +1254 1264 .6 +1254 1241 1 +1254 5022 1 +1254 3511 .6 +1254 846 1 +1254 2793 .8 +1254 1251 .8 +3085 2749 .8 +3085 3186 .8 +5023 5023 .8 +5024 5024 .6 +5024 424 1 +5024 22 1 +5024 426 1 +5024 3064 1 +939 712 .8 +939 588 .6 +939 492 .6 +939 934 1 +939 346 .8 +939 1798 .6 +939 804 .8 +939 528 .8 +939 939 .6 +939 525 .8 +939 172 1 +939 780 .8 +939 1645 .8 +939 2614 .8 +939 1658 .8 +939 1844 .8 +939 735 1 +939 935 .8 +939 791 .8 +939 1948 .8 +939 577 1 +939 990 .8 +939 324 1 +939 171 1 +939 933 .8 +939 2272 .6 +939 913 .8 +939 438 .8 +939 511 1 +939 2535 .6 +939 830 .8 +939 1020 1 +939 912 .8 +939 298 .8 +939 1616 1 +939 523 .8 +939 2061 .8 +939 949 1 +939 711 .8 +939 1362 .8 +939 1370 .8 +939 1657 .8 +5025 3989 1 +3388 3388 .6 +3388 584 1 +3388 860 1 +1502 673 1 +1502 1490 1 +1502 1493 1 +1502 30 1 +1502 1108 .8 +1502 937 1 +1502 1492 .8 +1502 46 1 +1502 719 1 +1502 1503 1 +1502 1502 .8 +1502 735 1 +111 255 .6 +111 277 .8 +111 703 .6 +111 770 1 +111 597 .8 +111 503 .6 +111 113 1 +111 1207 .8 +111 46 1 +111 1306 .8 +111 3102 1 +111 1586 .8 +111 1650 .8 +111 914 .8 +111 1033 .8 +111 5026 .6 +111 795 .8 +111 2616 .8 +111 2214 .8 +111 893 1 +111 577 1 +111 240 .8 +111 258 .8 +111 316 1 +111 919 .8 +111 4542 .6 +111 960 .8 +111 1172 .8 +111 271 .8 +111 948 .8 +111 346 .8 +111 429 1 +111 3386 .8 +111 214 .8 +111 5027 .8 +111 596 .8 +111 199 .8 +111 1047 .8 +111 651 .8 +111 1483 .6 +111 751 1 +111 44 .8 +111 1485 .6 +111 34 .8 +111 1301 .6 +111 631 .6 +111 584 1 +111 1318 1 +111 469 .8 +111 19 .8 +111 334 .8 +111 322 .8 +111 1216 .8 +111 588 .6 +111 157 .8 +111 617 .6 +111 1550 .6 +111 1849 .6 +111 1819 .6 +111 525 .8 +5028 5028 .8 +1223 1223 .6 +1223 638 .8 +1223 328 1 +1223 2789 1 +1223 2725 .6 +1223 167 .6 +1223 2572 .6 +1223 94 .8 +1223 5029 .6 +1223 922 .6 +1223 1485 .8 +1223 599 .8 +1223 518 .8 +1223 791 1 +1223 187 .8 +1223 5030 .6 +1223 89 .8 +1223 258 1 +1223 5031 .8 +1223 1281 .8 +1223 1702 .8 +1223 103 1 +1223 3397 .6 +1223 956 .8 +1223 613 1 +1223 1551 1 +1223 3940 .6 +1223 4204 .8 +1223 261 .8 +1223 62 1 +1223 4751 .8 +1223 3037 1 +1223 1642 .6 +1223 5032 .6 +1223 608 .6 +1223 3032 .6 +1223 4205 .8 +1223 888 .8 +1223 4949 .6 +1223 1153 .8 +1223 605 .8 +1223 3028 .8 +1223 757 .6 +1223 738 1 +1223 4893 .8 +1223 162 1 +1223 2150 .6 +1223 17 .8 +1223 498 1 +1223 1849 .8 +1223 3850 .6 +1223 188 .6 +1223 5033 .8 +1223 1390 .8 +1223 4580 .8 +1223 4206 .6 +1223 1963 .6 +1223 5034 .8 +1223 107 .6 +1223 4288 .8 +1223 5035 .6 +1223 1641 .8 +1223 893 1 +1223 525 1 +1223 2034 .8 +1223 1545 .8 +1223 335 .8 +1223 5036 .8 +1223 2274 .8 +1223 5037 1 +1223 1154 .8 +1223 193 1 +1223 438 .8 +1223 5038 .8 +1223 5039 .6 +1223 628 .8 +1223 1145 .6 +1223 5040 .8 +1223 1768 .8 +1223 3033 .6 +1223 1201 .8 +1223 1646 .8 +1223 3370 .6 +1223 1653 .8 +1223 2108 .6 +1223 5041 .8 +1223 4189 1 +1223 1630 .8 +1223 5042 .6 +1223 210 .8 +1223 788 .8 +1223 461 .8 +1223 1971 .6 +1223 776 .8 +1223 1246 1 +1223 3651 .8 +1223 5043 .6 +1223 5044 .6 +1223 1349 .8 +1223 1178 .6 +1223 2864 1 +1223 1629 1 +1223 5045 .6 +1223 4499 1 +1223 4276 .6 +1223 4943 .6 +1223 708 1 +1223 890 .8 +1223 5046 1 +1223 2671 .6 +1223 1917 .8 +1223 2090 .8 +1223 1782 .8 +1223 4232 .6 +1223 5047 .6 +1223 2372 1 +1223 5048 .6 +1223 1451 1 +1223 3432 .8 +1223 5004 .8 +1223 701 .8 +1223 5049 .6 +1223 403 .8 +1223 1373 .6 +1223 2970 .8 +1223 2436 .8 +1223 5050 .6 +1223 5051 .6 +1223 3455 .8 +1223 3316 .8 +1223 1381 .8 +1223 157 1 +1223 4926 .6 +1223 186 .8 +1223 5052 .6 +1223 5053 .6 +1223 5054 .8 +1223 1357 1 +1223 1964 .8 +1223 1265 .8 +1223 2267 .8 +1223 1643 .8 +1223 2470 .6 +1223 5055 1 +1223 234 .6 +1223 1263 .8 +1223 629 1 +1223 238 .8 +1223 5056 .6 +2217 442 1 +2217 429 1 +2217 1028 1 +2217 1065 1 +2217 431 1 +2217 2217 1 +2217 1803 .6 +2217 2697 .8 +4308 4308 .6 +154 154 1 +154 46 1 +154 5057 .6 +154 155 1 +154 153 1 +1871 1871 .6 +1871 653 .8 +1871 303 1 +503 503 .6 +503 2789 .8 +503 438 .8 +503 582 .8 +503 887 .8 +503 872 1 +503 111 .8 +503 548 .8 +503 4885 .8 +503 2539 .6 +5058 5058 .6 +805 2945 .6 +805 576 .8 +805 46 1 +805 1176 1 +805 431 1 +805 97 .8 +805 801 .8 +805 329 1 +805 22 1 +805 1019 .6 +805 750 1 +805 353 1 +805 1023 .8 +805 879 .8 +805 746 1 +805 714 1 +805 65 .8 +805 87 .8 +805 95 .8 +805 436 1 +805 1687 .8 +805 738 1 +805 2299 .6 +805 469 .8 +805 647 1 +805 1024 .8 +805 751 1 +805 1686 .8 +805 126 1 +805 119 1 +805 394 .8 +805 4580 1 +805 1153 .8 +325 325 1 +325 46 1 +325 1075 1 +325 324 .8 +325 326 1 +325 1117 1 +325 328 1 +325 323 .8 +325 791 .8 +325 1028 1 +325 719 1 +325 1021 .8 +325 2247 1 +325 3 .8 +325 1087 .8 +325 2248 .6 +325 1434 .8 +325 1022 .8 +325 1078 .8 +325 306 .8 +325 441 .6 +325 797 .8 +325 2101 .8 +325 110 .8 +325 2249 .8 +325 1753 1 +325 438 .6 +325 2094 .8 +325 345 .8 +325 915 .8 +325 304 .8 +325 2607 .8 +325 344 .8 +325 5059 .6 +325 2536 .8 +634 634 .8 +634 613 .8 +634 2350 .6 +634 5060 .8 +634 45 1 +634 751 .8 +634 919 .8 +634 1964 .8 +634 80 .8 +634 3918 .8 +634 1161 .6 +634 3862 .6 +634 552 .6 +634 757 .6 +634 1178 .8 +634 1514 .8 +634 786 .8 +634 780 .8 +634 2784 .6 +634 1277 .6 +634 362 .8 +634 813 1 +634 3481 .6 +634 5061 .6 +634 1575 .6 +634 421 .6 +634 3090 .6 +634 3288 .6 +634 658 1 +634 1774 .6 +634 1510 .8 +634 1247 1 +634 1076 .6 +634 23 .6 +634 5062 .6 +634 3652 .6 +634 1629 .8 +634 4974 .6 +634 1773 .6 +634 42 .6 +634 1237 1 +634 1775 .8 +634 2429 .6 +634 1656 .6 +634 3347 1 +634 2625 .6 +634 1248 1 +634 4900 .6 +634 420 .8 +634 1586 .8 +634 207 .8 +634 1636 .8 +634 904 .8 +634 1975 .8 +634 1182 .8 +634 708 .8 +634 1622 .8 +634 2018 .6 +634 1326 .8 +634 400 .8 +634 188 .8 +634 2671 .6 +634 1495 1 +634 711 .8 +634 794 .6 +634 157 .8 +634 346 .8 +634 3455 .6 +634 1971 .6 +634 3424 .6 +634 597 .8 +634 1394 .8 +634 3538 .6 +634 1085 1 +634 577 1 +634 1650 .8 +634 124 .8 +634 128 1 +634 3885 1 +634 3640 .6 +634 3228 .6 +5063 5063 .8 +5063 267 .8 +5063 46 1 +5063 286 1 +1289 1026 .8 +1289 3246 .8 +1289 985 .8 +1289 1287 .8 +1289 1285 .8 +1289 1286 .8 +1289 1289 1 +1289 30 1 +1289 860 1 +1289 857 .8 +1289 2417 1 +5057 5057 .6 +5057 154 1 +5057 555 1 +5057 1450 .8 +5064 1306 .8 +5064 3117 .8 +5064 736 1 +5065 5065 .6 +5065 192 .6 +5065 1450 .8 +39 39 .8 +39 362 1 +39 677 .6 +39 841 .8 +39 1126 1 +39 1176 1 +39 736 .8 +39 3121 .8 +39 232 .6 +39 579 .8 +39 586 .6 +39 9 .8 +39 739 1 +39 126 1 +39 46 1 +39 1960 1 +39 1116 1 +39 30 1 +39 431 .8 +39 743 1 +39 747 1 +39 652 1 +39 1222 1 +39 659 1 +39 290 1 +39 79 .8 +39 87 .6 +39 255 .8 +18 548 .8 +18 739 1 +18 741 1 +18 1053 .8 +18 142 1 +18 789 .8 +18 736 1 +18 86 .8 +18 656 .8 +18 859 1 +18 1895 1 +18 467 1 +18 440 1 +18 329 1 +18 126 1 +18 261 .8 +18 157 .8 +18 1930 1 +18 362 .8 +18 855 1 +18 1278 1 +18 15 .6 +18 528 .6 +18 963 .6 +18 1702 .8 +18 711 .8 +18 2539 .8 +18 3069 .6 +18 609 .6 +18 577 1 +18 65 1 +18 1067 .6 +18 633 .6 +18 525 .8 +18 864 .8 +18 1642 .6 +18 1068 1 +18 2865 .8 +18 3507 .6 +18 439 .6 +18 214 .8 +18 3028 .6 +18 1998 .6 +18 927 .6 +18 2535 .6 +4611 2226 1 +4611 304 1 +4611 301 .8 +4611 2218 1 +4876 4876 .6 +4876 1613 .8 +4876 2215 .8 +4876 2214 .8 +4876 1318 1 +4876 3892 .8 +4876 1816 1 +4876 4405 1 +4876 307 1 +4876 4406 1 +5066 82 .8 +2886 1898 .8 +2886 4067 .8 +2886 3100 .8 +2886 1343 1 +2886 3102 .8 +1873 1153 1 +5067 5067 1 +4892 3334 .6 +4892 157 .8 +5068 5068 .8 +2927 2927 .8 +2927 357 .8 +2927 2926 .8 +2927 424 1 +2611 202 1 +2611 646 1 +3623 3622 .8 +5069 5069 .8 +2109 1653 .8 +5070 5070 .8 +68 68 .6 +68 67 1 +68 1987 .8 +3393 3393 .6 +3393 9 .8 +3393 597 .8 +5071 5071 .6 +5072 5072 .6 +5072 1407 .8 +3805 3805 1 +3805 624 1 +3805 30 1 +3805 3117 .8 +3805 1306 .8 +3805 5073 .8 +3805 2622 1 +3805 2108 .6 +3805 1094 .8 +3805 925 .8 +3805 1524 1 +3805 3438 .8 +3805 1519 1 +5074 5074 .8 +2599 2184 .8 +2599 2599 .8 +2599 1062 .8 +2599 741 .8 +2599 1454 .8 +4239 1768 1 +4107 429 .8 +4107 2205 .6 +4107 725 .8 +4107 2091 .6 +4107 442 .8 +4107 431 1 +4107 2208 .6 +5075 5075 1 +364 788 .8 +364 328 1 +364 30 1 +364 1020 1 +364 2103 .8 +364 1804 .8 +364 46 1 +364 430 .8 +364 364 .8 +364 737 .8 +364 1246 1 +364 853 .8 +364 1930 1 +364 1752 1 +364 2307 1 +364 2725 .8 +364 5076 .8 +364 888 1 +364 599 1 +364 922 .8 +364 1780 .6 +364 1360 .8 +364 2134 .6 +364 776 1 +364 2276 .8 +364 3597 .8 +364 2274 1 +364 517 .8 +364 701 1 +364 1248 1 +364 4650 .8 +364 610 1 +364 576 1 +364 207 1 +364 2847 1 +364 206 .8 +364 5077 .6 +364 2940 .6 +364 711 1 +364 2255 .8 +364 1399 .8 +364 769 .8 +364 2181 .6 +364 1394 .8 +364 1592 .8 +364 363 .8 +364 1826 .8 +364 708 .8 +364 1816 1 +364 424 1 +364 893 1 +364 587 .8 +364 231 .6 +364 919 .8 +364 1920 .8 +364 2149 .8 +364 779 .8 +364 1277 1 +364 1373 .8 +364 1387 .6 +364 1629 1 +364 2439 1 +5078 5078 .6 +5079 5080 .8 +5079 5079 .8 +5081 5081 .8 +5082 5082 .8 +373 506 1 +373 445 1 +373 1557 1 +373 30 1 +373 1518 .8 +373 1020 1 +373 1908 1 +373 431 1 +373 1996 .8 +373 1065 1 +373 316 1 +373 46 1 +373 1591 .8 +373 714 1 +373 5 1 +373 1993 1 +373 148 1 +373 318 1 +373 548 .6 +373 441 1 +373 353 1 +373 45 1 +373 432 1 +373 440 1 +373 44 1 +373 175 1 +373 436 1 +373 1291 .8 +373 126 1 +373 1893 .8 +373 428 1 +373 1160 .8 +373 1407 .6 +373 438 .8 +373 373 1 +373 4888 .6 +1685 1685 .6 +1685 703 .6 +1685 469 1 +1685 705 .6 +1685 93 .6 +1685 2713 .8 +1685 2652 1 +1685 1682 .8 +1685 1447 .8 +1685 922 .8 +1685 30 1 +1685 3088 .6 +1685 2550 .8 +1685 3940 .6 +1685 291 .6 +1685 1846 .6 +1685 3856 .6 +1685 4406 .8 +1685 525 .8 +1685 631 .6 +1685 438 .8 +1685 157 .6 +1685 323 .8 +1685 242 .8 +1685 1169 .8 +1685 615 .8 +1685 1042 .6 +1685 1415 .6 +1685 955 .6 +1685 1034 .8 +1685 1998 .6 +1685 335 .8 +1685 3509 .6 +1685 2334 .6 +1685 917 .8 +1685 357 .8 +1685 175 1 +1685 2412 .8 +1685 2524 .8 +1685 19 1 +1685 240 .8 +1685 985 .6 +1685 597 .8 +1685 5083 .8 +1685 1139 .6 +1685 893 1 +1685 519 .6 +1685 2388 .8 +1685 804 .8 +1685 2324 .8 +1685 1671 .6 +1685 1165 .8 +1685 920 .8 +1685 638 1 +1685 860 1 +1685 604 .8 +1685 904 .8 +1685 89 .6 +1685 243 .6 +1685 4581 .8 +1685 2428 .8 +1685 336 .8 +1685 3002 1 +1685 5084 .8 +1685 3826 .8 +1685 2835 .8 +5085 1302 .6 +5086 376 .8 +5087 1578 .8 +5087 683 .8 +5087 194 .8 +5087 1975 .8 +5087 2792 .6 +5087 5088 .8 +5087 1017 .8 +5087 1305 .8 +5087 1050 .8 +5089 5089 .6 +5089 5090 .8 +5091 5091 .6 +467 327 .8 +467 175 .6 +467 797 .8 +467 642 1 +467 829 .8 +467 791 .8 +467 1117 .8 +467 46 .8 +467 908 .8 +467 1663 .8 +467 638 .8 +467 1247 .8 +467 2555 .8 +467 174 .8 +467 286 .6 +467 329 1 +467 1278 1 +467 787 1 +467 644 1 +467 147 1 +5092 126 1 +498 498 1 +498 2505 1 +498 46 1 +498 893 1 +498 1582 1 +498 5093 1 +1557 1160 .8 +5094 5094 .6 +5094 647 1 +5094 3601 .6 +5094 1450 .6 +5094 5095 .6 +5096 5096 1 +1722 274 1 +1722 1722 .8 +1722 1609 .8 +1722 1724 .8 +5097 5097 1 +5097 615 1 +5098 5098 1 +5099 5099 .6 +5100 5100 .6 +5100 42 .8 +5100 1156 1 +5101 2298 .8 +5102 5102 .6 +5103 5103 1 +3642 764 1 +3642 3642 .8 +2574 2574 .8 +2574 46 1 +2574 883 .8 +2574 1176 1 +2574 1211 .8 +717 639 1 +717 353 1 +717 431 1 +717 432 1 +717 44 1 +717 428 1 +717 445 1 +717 46 1 +717 215 1 +717 1908 1 +717 30 1 +717 1020 1 +717 1160 1 +717 429 1 +717 326 1 +717 4302 1 +717 1770 1 +717 807 1 +717 1910 1 +5104 5104 .6 +1555 1555 1 +1555 618 1 +1555 1191 1 +1555 643 1 +1555 3239 .8 +1555 429 1 +1555 578 1 +1555 2090 1 +1555 2091 .8 +1555 442 .8 +1555 1561 1 +1555 1554 1 +1555 1065 1 +1555 2206 .8 +1555 720 1 +1555 584 .8 +1555 1247 1 +1555 2219 1 +1555 2092 1 +1555 428 1 +1555 1066 .6 +1555 2207 .8 +1555 1270 1 +1555 2228 1 +1555 1816 .8 +1555 619 .8 +1555 725 .8 +5105 5105 .6 +5106 59 .8 +5106 1420 1 +5106 2197 1 +5106 162 1 +5106 1149 1 +5106 572 1 +5106 171 1 +5106 4906 .8 +5106 1202 1 +5106 739 1 +5106 1343 1 +5106 2443 .8 +5106 373 1 +5106 1434 1 +5106 1009 .8 +5106 1548 1 +5106 377 1 +5106 2284 .8 +5106 3482 1 +5106 506 1 +5106 4648 1 +5106 425 1 +5106 508 .8 +5106 3774 .8 +5106 2474 .8 +5106 445 1 +5106 242 1 +5106 1515 1 +5106 854 .8 +5107 5107 .6 +5108 3408 .8 +5108 4663 .8 +5108 5108 .8 +1278 644 1 +1278 126 1 +1278 1580 1 +1278 163 1 +1278 826 1 +1278 329 1 +1278 1991 1 +1278 467 1 +1278 147 1 +1278 642 1 +1278 1565 1 +1278 1568 1 +1278 2446 1 +1278 3556 1 +1278 1992 1 +1278 657 1 +1278 1053 1 +5109 385 .8 +5110 5110 .6 +5110 22 1 +5111 5111 .8 +580 2324 .8 +580 310 1 +580 729 .8 +580 581 .8 +580 205 .8 +580 362 .6 +580 2086 .6 +580 2407 .6 +580 2615 .6 +580 1390 .6 +580 5112 .6 +580 988 .8 +580 1224 .6 +580 2514 .6 +580 1624 .6 +580 3117 .6 +580 234 .6 +580 191 .8 +580 565 .8 +580 960 .8 +580 1185 .8 +580 2307 .8 +580 309 .6 +580 2309 .6 +580 2411 .6 +580 2406 .8 +580 919 .6 +580 1677 .8 +580 888 .8 +580 593 .8 +580 605 .8 +580 597 .8 +580 2405 .8 +580 242 1 +580 3524 1 +580 1418 .6 +580 4942 .8 +580 1026 .8 +580 5113 .8 +580 3030 .6 +580 21 .6 +580 5114 .6 +580 4893 .8 +580 3434 .8 +580 335 .8 +580 1512 .8 +580 3312 .6 +580 625 .6 +580 776 .8 +5115 5115 .6 +5115 5116 .8 +5117 5117 1 +1403 1403 .6 +1403 466 .8 +1403 174 .8 +1403 1400 .6 +1403 30 1 +1403 324 1 +1403 719 1 +1403 46 1 +1403 438 .8 +1403 286 1 +1403 328 1 +1403 323 .8 +1403 915 .8 +1403 934 1 +1403 645 .8 +1403 1754 1 +1403 329 1 +1403 1404 .6 +1403 349 1 +1403 467 .8 +298 595 .8 +298 934 1 +298 121 1 +298 1079 .8 +298 1356 .8 +298 915 .8 +298 324 1 +298 2985 .8 +298 990 .6 +298 1750 .8 +298 34 .8 +298 594 .6 +298 1020 1 +298 32 .8 +298 587 .8 +298 3442 .6 +298 1167 .6 +298 780 .6 +298 810 1 +298 481 .8 +298 1928 .6 +298 2631 .8 +298 807 .8 +298 53 .8 +298 54 .6 +298 4179 .8 +298 2272 .6 +298 277 .6 +298 933 .8 +298 638 .8 +298 1485 .6 +298 346 .8 +298 4399 .8 +298 632 .8 +298 4398 .8 +298 3266 .6 +440 440 1 +440 316 .8 +440 318 .8 +440 46 1 +440 438 .8 +440 1996 .8 +440 1447 .8 +440 437 .8 +440 2210 .8 +440 4191 .8 +440 1086 .8 +440 436 1 +440 947 .6 +440 1894 1 +440 3737 .6 +440 1906 .8 +440 1908 1 +440 5 1 +440 441 1 +440 432 .8 +440 2078 .6 +440 429 .8 +440 1270 .8 +440 44 1 +440 428 1 +440 435 .8 +440 445 1 +440 93 .6 +440 1072 .8 +3071 3071 1 +3071 118 1 +3071 287 .8 +3071 22 1 +3071 1962 .8 +3071 3070 .8 +3071 966 .8 +3071 112 1 +3071 426 1 +3071 1124 1 +3071 770 1 +5118 3705 .8 +5118 3704 .8 +3704 682 .8 +5119 5119 .6 +5120 5120 .6 +5120 1689 .8 +5120 934 .8 +5120 46 1 +5120 2535 .6 +5121 5121 1 +3171 1838 .6 +3171 444 .8 +3171 2073 .6 +3171 807 .8 +5122 5122 .6 +2049 2049 .6 +1213 1213 .8 +1213 746 1 +1213 652 1 +1213 1215 .6 +1213 748 1 +1213 1605 .8 +1213 749 1 +1213 747 1 +1213 860 1 +1213 2417 .6 +1213 3335 .6 +1213 1201 .8 +1213 1214 .8 +1213 1222 1 +1213 1212 .8 +5123 5123 .6 +914 914 .8 +914 916 .8 +914 2550 .8 +914 624 .8 +914 1671 .6 +2951 119 1 +2951 887 .8 +2951 1340 .6 +2951 1338 .8 +2951 764 1 +2951 2951 .6 +1092 1116 1 +1092 2538 1 +1092 1238 1 +1092 1247 1 +1092 1797 1 +1092 813 1 +1092 1511 .8 +1092 597 .8 +1092 44 1 +1092 46 1 +1092 506 .8 +1092 126 1 +1092 30 1 +1880 1880 .6 +1880 65 1 +1880 2303 .6 +1880 248 .6 +1880 792 1 +1880 4486 .6 +1880 1879 .6 +1880 1881 .6 +2699 2699 .6 +1465 658 .8 +1465 852 1 +1465 1211 .8 +1465 2196 .8 +285 284 .6 +285 285 .8 +285 22 1 +285 281 .6 +285 424 1 +285 287 .8 +285 2859 .8 +285 1010 .8 +5124 5124 1 +5124 4548 .8 +5124 640 1 +5125 5125 1 +2639 2635 .8 +4098 279 .8 +4098 441 1 +4098 4096 .8 +4098 4097 .6 +4098 5126 1 +642 30 1 +642 719 1 +642 735 .8 +642 1020 1 +642 1082 1 +642 2291 .8 +642 305 1 +642 5127 .8 +642 858 .8 +642 791 .8 +642 1123 1 +642 147 1 +642 467 1 +642 3347 .8 +642 787 1 +642 1278 1 +642 2913 1 +642 779 1 +3591 3591 .8 +3591 175 1 +3591 53 1 +3591 637 1 +3591 332 1 +3591 49 .8 +1543 46 1 +1543 764 1 +1543 1211 .8 +1543 119 1 +1543 110 .8 +1543 647 1 +1543 1542 .6 +1543 1091 .8 +1543 1021 1 +1543 1097 .8 +1543 2672 .6 +1543 747 1 +1543 748 1 +1543 1222 1 +1543 290 1 +1543 2996 .8 +1543 2997 1 +2934 2452 .8 +2934 1570 .8 +2934 2934 .6 +2934 1145 .8 +2934 773 .8 +2934 625 .8 +2934 927 .8 +2934 3409 .8 +2934 157 .8 +2934 1991 .8 +2934 399 .8 +2934 2126 .8 +2934 5128 .8 +2934 791 .8 +2934 1301 .8 +2934 646 .8 +2934 188 .8 +100 1768 1 +100 334 .8 +100 51 .8 +100 332 1 +100 49 1 +100 144 1 +100 333 1 +100 5129 .8 +100 577 .8 +100 282 1 +100 2578 .8 +100 157 .8 +100 335 .8 +100 1586 .8 +100 627 .8 +100 29 1 +100 1766 .8 +100 329 1 +100 1517 .8 +100 1278 1 +5130 5130 .8 +336 336 .6 +336 362 1 +336 583 1 +336 602 .8 +336 592 1 +336 601 .8 +336 1971 .6 +336 335 1 +1435 1435 .8 +1435 286 1 +1435 2666 .8 +1435 2237 .8 +1435 1762 .8 +1435 2561 .8 +1435 1496 .8 +1435 736 1 +1435 104 .8 +1435 1176 1 +1435 92 .8 +1435 1097 .8 +1435 836 .8 +1435 4067 .8 +1435 1433 .8 +1435 1751 .8 +1435 2307 .8 +1435 2942 .8 +5131 5131 .8 +192 192 .8 +1392 1362 1 +1392 1397 1 +1392 678 .8 +1392 2487 .8 +1392 3117 1 +586 46 1 +586 30 1 +586 586 .6 +586 197 .8 +586 199 .8 +586 200 .8 +586 205 .6 +586 203 .6 +586 196 .8 +586 329 1 +586 307 1 +586 1190 .8 +586 1602 .6 +586 1270 .8 +586 144 .8 +586 514 .8 +586 191 .8 +586 1692 .8 +586 1216 .6 +586 331 .8 +586 429 .8 +586 92 .8 +586 1339 .8 +586 1761 .8 +586 1839 .8 +586 1047 .6 +586 362 .8 +586 1172 .8 +586 1663 .8 +586 841 .8 +586 39 .8 +586 442 .8 +586 431 1 +586 4472 .8 +586 3776 .8 +586 2529 .6 +586 737 .8 +586 1022 1 +586 214 .6 +586 577 1 +586 934 1 +586 759 .8 +586 1033 .8 +586 610 1 +586 840 .6 +586 298 .8 +586 618 .8 +586 807 .8 +586 277 .6 +586 944 .8 +586 175 1 +586 915 .8 +586 1658 .8 +586 528 .6 +586 34 .8 +586 784 1 +586 328 1 +586 1801 .6 +586 703 .6 +586 2021 .6 +586 1756 .8 +586 791 1 +586 2261 .8 +586 990 .6 +586 943 1 +586 2614 .8 +586 2323 .8 +586 947 .6 +586 83 .6 +586 638 .8 +586 166 .8 +586 2211 .6 +586 45 1 +586 44 .8 +586 306 .8 +586 1290 .8 +586 65 .8 +586 297 .8 +586 578 .8 +586 441 1 +586 198 .6 +586 1675 .6 +586 9 .6 +586 780 .6 +586 1485 .6 +586 3276 .6 +586 887 .8 +586 311 .6 +586 2329 .6 +586 234 .6 +586 255 .6 +586 316 1 +586 1992 .8 +586 1671 .6 +586 2004 .6 +586 1486 .6 +586 241 .6 +586 593 .8 +586 806 .6 +586 631 .6 +586 195 .6 +586 1333 .6 +586 1497 .8 +2136 2136 .8 +2136 2134 .6 +2136 492 .8 +2136 859 .8 +2136 4599 1 +2136 349 1 +2136 780 .8 +2136 597 .8 +2136 346 1 +2136 791 .8 +2136 1643 .8 +2136 1004 .8 +2136 324 1 +2136 830 1 +2136 513 1 +2136 65 1 +2136 1020 1 +2136 2464 .8 +2136 717 1 +2136 792 1 +2136 712 1 +2136 649 1 +2136 2137 .8 +2136 318 1 +2136 2939 .8 +2136 2135 .8 +2136 1384 .8 +2136 234 .8 +2136 1847 1 +2136 990 1 +2136 1988 1 +2136 4670 .8 +4066 46 1 +5132 5133 1 +5132 5132 1 +5134 5134 .8 +852 852 1 +852 1464 .8 +852 883 .8 +852 1176 1 +852 1211 .8 +852 2852 .8 +852 1126 .8 +852 784 .8 +852 658 .8 +950 950 .6 +950 937 1 +950 1495 1 +950 1844 .8 +950 2883 .8 +950 5135 .6 +651 104 .8 +651 2945 .6 +651 22 1 +651 1022 1 +651 1019 .6 +651 92 .8 +651 65 .8 +651 1027 .8 +651 238 .6 +651 1683 .8 +651 1898 .8 +651 1682 1 +651 2290 .8 +651 3101 .6 +651 1688 .8 +651 1341 .8 +651 1687 .8 +651 791 .8 +651 388 1 +651 1485 .6 +651 2667 .8 +651 392 .8 +651 389 .8 +651 390 .8 +651 2843 .6 +651 1684 .6 +651 187 .8 +651 912 .8 +651 5056 .6 +651 379 .6 +651 1230 1 +651 1315 1 +651 312 .6 +651 1226 .8 +651 1227 .8 +651 998 .8 +651 1440 .8 +681 681 .6 +681 584 1 +681 4026 .8 +681 739 1 +681 1000 .6 +681 86 .8 +681 736 1 +681 1406 .6 +681 3085 .6 +681 1407 .6 +681 2013 .6 +681 837 .8 +681 2594 .6 +681 2749 .6 +681 786 .8 +681 2747 .6 +681 2593 .6 +681 2750 .6 +681 1750 .8 +5136 5136 .8 +4227 3438 .8 +3490 2629 .8 +3490 91 .8 +3490 656 .8 +3490 142 .8 +3490 3490 .6 +3490 739 1 +3490 789 .8 +3490 90 .8 +738 801 .8 +738 46 1 +738 1309 .8 +738 1081 .8 +738 738 .6 +738 431 .8 +738 2284 .8 +738 443 .8 +738 435 .8 +738 1635 .8 +738 1022 1 +738 209 .8 +738 1086 .8 +738 95 .8 +738 2652 .8 +738 2078 .8 +738 316 .8 +738 318 .8 +738 792 .8 +738 736 .8 +738 436 1 +738 1690 .8 +738 4066 .8 +738 883 .8 +738 701 .8 +738 92 .8 +738 104 .8 +738 739 1 +738 1023 .8 +738 741 .8 +738 1627 .8 +738 1720 .8 +738 648 1 +738 1176 1 +738 584 .8 +738 86 .8 +738 1298 .8 +738 97 .8 +738 1116 1 +738 1692 .8 +738 1454 1 +738 859 1 +738 3313 .8 +738 3191 .8 +738 292 1 +738 857 1 +738 1464 .8 +738 388 .8 +738 2667 .8 +738 392 .8 +738 1856 1 +738 2002 .8 +738 5137 .8 +738 2713 .8 +738 1686 .8 +5138 5138 .6 +4101 4101 1 +4101 1064 .6 +4101 3398 .6 +4101 3357 .6 +4101 4516 .8 +4101 2091 .8 +4101 1823 .8 +4101 46 1 +4101 3292 .8 +4101 584 .8 +4101 126 1 +4101 2781 .8 +4101 2222 .6 +4101 175 1 +4101 5139 .6 +4101 4519 .8 +4101 2259 .6 +4101 3742 .6 +4101 3647 .8 +4101 2227 .6 +5140 5140 1 +3055 3055 .8 +3055 2239 .8 +3461 3461 .6 +1251 3449 .8 +1251 1373 .8 +1251 148 .8 +1251 3566 .8 +1251 2463 .8 +1251 2484 .8 +1251 4926 .8 +1251 778 .8 +1251 3259 .8 +1251 625 .8 +1251 610 .8 +1251 2258 .8 +1251 634 .8 +1251 1271 .8 +1251 1254 .8 +5141 5141 .6 +5142 5142 .8 +5142 316 1 +5142 46 1 +5142 329 .8 +2062 1633 .8 +2062 328 1 +2062 50 1 +2062 2062 .8 +2062 282 .8 +2062 558 .8 +2062 2103 .8 +2062 46 1 +1362 1362 1 +1362 2487 .8 +1362 1392 1 +1362 939 .8 +1362 892 1 +1362 2251 1 +1362 348 1 +1362 830 1 +1362 349 1 +1362 711 .8 +1362 1869 .8 +1362 1490 1 +1362 912 1 +1362 2252 1 +1362 492 1 +1362 620 1 +1362 780 1 +1362 511 1 +1362 1436 1 +1362 3289 1 +1362 1657 .8 +1362 721 1 +1362 1364 1 +1362 4468 1 +1362 719 1 +1362 2255 1 +2170 2170 .8 +2170 1085 .8 +3317 3317 .6 +5143 5143 1 +5144 5144 .6 +5145 5145 .8 +2977 46 1 +2977 2977 .6 +2977 22 1 +2977 126 1 +2977 246 .6 +2977 328 1 +2977 719 1 +2977 30 1 +2977 157 .6 +2977 898 .6 +2977 578 1 +5146 277 1 +5146 296 1 +5146 1579 1 +5146 3024 1 +5146 1562 1 +5146 375 1 +5146 1052 1 +5146 3127 1 +5146 1569 .8 +5146 5146 .8 +5146 1778 .8 +5146 2268 .8 +5146 612 1 +5146 5147 .8 +5146 3124 .6 +5146 2625 .8 +5146 2100 .8 +5146 2349 .8 +5148 5148 .6 +508 508 1 +5149 5149 1 +5150 764 1 +1010 2859 .8 +1010 576 .8 +1010 669 .8 +1010 285 .8 +5151 5151 .6 +5152 5152 1 +5153 49 1 +5154 5154 1 +4559 4559 .6 +4559 2206 .8 +4559 1856 1 +5155 5155 .6 +5156 5157 .6 +5156 5156 .6 +1242 1243 1 +501 328 1 +501 501 .8 +501 638 .8 +501 791 .8 +501 172 .8 +501 34 .6 +501 303 1 +501 46 1 +501 121 1 +501 431 1 +501 349 1 +501 1028 .8 +501 171 1 +501 1754 1 +501 353 1 +501 514 .8 +501 831 .6 +501 2646 .8 +501 99 .8 +501 577 1 +501 810 .8 +501 523 .6 +3292 3292 .6 +3292 3394 .8 +3292 3398 .6 +3292 4699 .8 +5158 5158 .8 +406 406 .8 +406 1895 .8 +406 610 .8 +406 4165 .6 +406 1964 .8 +406 2615 .8 +5159 5159 .8 +5160 5160 .6 +5160 1117 1 +2799 2799 .8 +2799 582 .8 +2799 1518 .8 +2799 271 .8 +2799 4927 .8 +2799 736 1 +2799 2323 .8 +2799 148 1 +2799 5161 .8 +2799 1306 .6 +1283 1284 .8 +1283 1280 .8 +1283 1283 .8 +1283 30 1 +1283 112 1 +1283 258 .6 +2795 2795 .8 +2795 438 1 +2795 2072 .8 +2795 597 .6 +2795 2790 .8 +2795 1371 .8 +2795 902 .8 +2795 719 1 +2795 12 1 +2795 987 .8 +2795 708 .8 +2795 397 .6 +2795 1820 .8 +2795 802 1 +2795 2141 .8 +2795 30 1 +2795 46 1 +2795 1418 1 +2795 328 1 +2795 4031 .6 +2795 1301 1 +2795 1236 .8 +2795 1473 .6 +2795 1075 1 +2795 3004 .6 +2795 2774 .8 +2795 1065 1 +2795 1968 .8 +2795 1370 .8 +2795 2080 .8 +2795 2940 .8 +2795 5077 .8 +2795 3205 .8 +5162 5162 .6 +747 747 1 +747 659 1 +747 652 1 +747 1212 1 +747 1218 .8 +747 110 .6 +747 1222 1 +747 137 1 +747 290 1 +747 1479 1 +747 2453 .8 +747 1210 .6 +747 2454 .8 +747 2457 .8 +747 1127 .8 +747 1499 .6 +747 2455 .6 +747 2378 .8 +747 1605 .8 +747 79 .8 +747 105 .8 +747 377 .8 +747 2458 .8 +747 2461 .8 +747 1215 .6 +747 3338 .6 +747 748 1 +747 1214 .8 +747 2459 .8 +747 746 1 +747 1219 .8 +747 1590 .6 +747 749 1 +747 1213 1 +747 2460 .8 +747 743 1 +747 764 1 +4111 739 1 +4111 46 1 +4111 800 1 +4111 148 1 +4111 438 .6 +4111 4111 .6 +4964 4964 .8 +4964 293 1 +5163 2366 .8 +5163 2267 .8 +5163 5163 .6 +5164 5164 .6 +2675 148 .8 +2675 1369 .8 +1191 429 1 +1191 1823 .6 +1191 431 1 +1191 428 1 +1191 2091 .6 +1191 2090 .8 +1191 2092 .8 +1191 3239 1 +1191 618 1 +1191 444 .8 +1191 643 1 +1191 1555 1 +1191 1554 .8 +1191 2219 1 +1191 1092 1 +5165 5165 1 +5166 441 1 +5166 4644 .8 +5166 1783 .8 +5167 5167 1 +5168 329 1 +5168 13 .8 +2034 2034 .6 +2034 1831 .6 +2073 2073 .6 +2073 444 .8 +2073 2355 .8 +5169 5169 .6 +5170 148 1 +5171 5171 1 +613 1068 1 +613 1134 1 +613 813 1 +613 654 1 +613 998 .8 +613 238 .6 +613 187 .6 +613 400 1 +613 1711 1 +613 301 .8 +613 1249 1 +613 1710 1 +613 2423 .8 +613 5172 .8 +1550 1550 .6 +879 879 .8 +5173 5173 .8 +2319 2319 .6 +2319 764 1 +2319 555 1 +2319 2201 .8 +2319 172 1 +2319 2320 .6 +2319 286 1 +2319 1157 1 +2319 2290 .8 +5174 5174 .6 +3649 3649 .8 +3649 915 .8 +3649 30 1 +3649 34 .6 +3649 1074 .8 +3649 439 .6 +3649 1791 .8 +5175 5175 .8 +5176 1961 .8 +5177 5177 .8 +886 438 .8 +886 1022 .8 +886 784 .8 +886 887 .8 +886 2613 .6 +886 1111 .8 +5178 5178 .6 +5179 5179 .6 +2930 2930 .6 +2930 565 .8 +2245 1378 1 +5180 5180 .6 +5180 1521 .8 +1595 1491 .8 +1595 1167 .6 +1595 1234 .8 +1595 30 1 +1595 438 .8 +1595 121 1 +1595 807 .8 +1595 1600 .8 +1595 175 1 +5181 5181 .6 +5182 5182 .6 +2328 512 .8 +2328 577 1 +5183 5183 .8 +4968 4968 .6 +5184 969 1 +1418 1418 .8 +1418 779 .8 +1418 594 .8 +1418 2482 .8 +1418 780 .8 +1418 20 .6 +1418 805 1 +1418 1001 .8 +1418 492 .8 +1418 712 .8 +1418 174 1 +1418 3112 .8 +1418 2126 .8 +1418 1416 .8 +1418 717 1 +1418 1075 1 +1076 1079 .8 +1076 328 1 +1076 306 .8 +1076 30 1 +1076 1117 1 +1076 719 1 +1076 645 .8 +1076 324 .8 +1076 1434 .8 +1076 352 1 +1076 2972 .6 +1076 1860 .6 +1076 323 .8 +3923 1160 1 +3923 1247 1 +3923 813 1 +3923 737 1 +3923 3082 1 +4902 157 .8 +4902 242 1 +4902 5185 .6 +4902 4696 1 +4902 3417 .8 +5186 167 .8 +5186 1515 .8 +5186 194 .8 +5186 737 1 +7 1 1 +7 4 1 +7 7 .8 +7 4002 .8 +7 2450 1 +7 3 1 +7 597 1 +7 1521 .8 +7 399 .8 +7 157 .8 +7 80 .8 +7 1137 .8 +7 400 1 +7 1542 .6 +7 1965 .6 +7 717 1 +7 23 .6 +7 2282 .6 +7 1971 .6 +7 2671 .6 +7 8 1 +7 4276 .6 +7 2193 .6 +7 708 .8 +7 3520 .8 +7 4749 .6 +4157 4156 1 +4157 4155 1 +4157 126 1 +4157 328 1 +4157 781 1 +5187 5187 .6 +5188 5188 1 +5188 617 .8 +5189 5189 .6 +776 776 1 +776 2716 1 +776 3001 .8 +776 711 1 +776 3524 1 +776 3525 1 +776 3526 .8 +776 5190 .8 +776 157 .8 +776 580 .8 +322 111 .6 +322 4083 .8 +322 4492 .8 +322 322 .8 +322 3394 .6 +322 46 1 +322 126 1 +322 1247 1 +322 4351 .6 +322 3292 .6 +322 429 .8 +322 5191 .6 +322 2078 .8 +322 1650 .6 +322 506 1 +322 1757 1 +322 643 1 +322 431 1 +322 2090 .8 +322 1306 .8 +322 846 .8 +322 316 .8 +322 1281 .8 +322 35 .8 +322 916 1 +322 323 1 +322 770 1 +322 528 .8 +322 328 1 +322 3316 .8 +322 917 .6 +322 893 1 +322 795 .8 +322 44 1 +322 1162 1 +322 265 .8 +322 109 .8 +322 1393 .6 +322 104 1 +322 944 .8 +322 807 .8 +322 113 .8 +322 65 1 +322 1547 .8 +322 297 1 +322 578 .8 +322 2886 .8 +322 3396 .8 +322 2355 1 +322 2562 .6 +322 956 .6 +322 1487 .6 +322 593 .8 +322 1497 .8 +322 215 .8 +322 638 1 +322 1819 .6 +322 751 1 +322 45 .6 +322 863 .6 +322 594 .6 +322 532 .6 +322 3398 .6 +322 3293 .6 +322 321 .6 +322 997 .6 +322 538 .8 +322 2199 .6 +322 1301 .8 +322 19 1 +322 1066 .6 +322 4625 .8 +322 336 1 +5192 5192 1 +625 2970 .8 +625 1978 .8 +625 2969 .8 +625 699 .8 +625 1538 .8 +625 5193 .6 +625 2085 .8 +625 812 .8 +625 2585 .6 +625 5194 .8 +625 1795 .8 +625 5195 .6 +625 2084 .8 +625 3259 .8 +625 778 .8 +625 1254 .8 +625 944 1 +625 3228 .8 +625 2313 .8 +625 399 .8 +625 1774 .6 +625 675 .6 +625 1178 .6 +625 889 .8 +625 20 .8 +625 1970 .6 +625 577 1 +625 403 .6 +625 526 .8 +625 2938 .8 +625 891 .8 +625 232 .8 +625 2274 .8 +625 335 1 +625 711 1 +625 2911 .8 +625 362 .8 +625 3177 .8 +625 4505 .8 +625 1174 .6 +625 2898 .8 +625 413 .6 +625 336 1 +625 5196 .6 +625 583 1 +625 326 1 +625 62 .8 +625 421 .6 +625 4703 .8 +625 34 1 +625 1145 .8 +625 1971 .6 +625 984 .8 +625 3426 .8 +625 1779 .6 +625 2787 .8 +625 552 .6 +625 2671 .8 +625 3414 .6 +625 1360 .8 +625 1574 .8 +625 3609 .6 +625 1575 .8 +1407 1407 .8 +1407 1237 .6 +1407 1464 .8 +1407 584 .8 +1407 2593 .6 +1407 5197 .6 +1407 3085 .6 +1407 3186 .6 +1407 2749 .6 +1407 1406 .6 +1407 445 1 +1407 4 .8 +1407 44 .8 +1407 46 1 +1407 1893 1 +1407 1892 .8 +1407 1041 .6 +1407 1400 .6 +1407 2014 .6 +1407 3388 .6 +1407 242 .8 +1407 1906 .8 +1407 2702 .6 +1407 428 1 +1407 2747 .8 +5198 5198 1 +5199 5199 .8 +5200 5200 .6 +3335 652 1 +2595 2595 .6 +5201 801 1 +5201 1309 1 +5202 2246 1 +5203 5203 .6 +1166 1166 .8 +1166 791 .8 +1166 638 .8 +1166 737 .8 +1166 934 .8 +1166 328 1 +1166 915 .8 +1166 577 .8 +1166 349 1 +1166 1930 1 +1166 232 .6 +1166 174 .8 +1166 1844 .8 +1166 214 .8 +1166 1159 .6 +1166 172 1 +1166 830 1 +1166 517 .6 +1166 780 .8 +1166 1397 1 +5204 5204 .6 +94 94 .8 +94 2183 .6 +94 1137 .8 +94 2435 .6 +94 3195 .6 +94 1650 .6 +94 918 1 +94 3179 .6 +1142 1142 .8 +1142 5205 .6 +1142 126 1 +1142 62 .8 +1142 646 .8 +1142 1187 .8 +1142 4119 .6 +1142 5206 .6 +1142 194 .8 +1142 629 .8 +1142 329 1 +1142 1175 .8 +1142 193 .8 +1142 1394 .8 +1142 625 .8 +1142 214 .8 +1142 2136 .6 +1142 955 .6 +1142 2634 .6 +1142 1223 .6 +1142 2881 .8 +1142 919 .8 +1142 1370 .6 +1142 3206 .8 +1142 2789 .8 +1142 1650 .8 +1142 1418 .8 +1142 1001 .8 +1142 1126 1 +1142 708 .8 +1142 1141 .6 +1142 2990 .6 +1142 1968 .8 +1142 2938 .6 +1142 642 1 +1142 644 1 +1142 787 1 +1142 1278 1 +1142 328 1 +1142 719 1 +1142 46 1 +1142 819 .8 +1142 1831 .6 +1142 624 1 +1142 1524 1 +1142 2791 .8 +1142 20 .8 +1142 349 1 +1142 795 .8 +1142 2298 .8 +1142 606 .8 +1142 1137 .8 +1142 501 .8 +1142 1970 .6 +1142 2578 .8 +1142 715 .8 +1142 461 .8 +1142 1662 .8 +1142 492 .8 +1142 1047 .6 +1142 23 .6 +1142 1634 .6 +1142 3482 1 +1142 960 .8 +1142 2964 .6 +1142 830 1 +1142 1415 .6 +1142 2467 .8 +1142 864 .8 +1142 890 .6 +1142 4714 .6 +1142 2774 .8 +1142 773 .6 +1142 1238 .8 +1142 2538 .8 +1142 1116 1 +1142 1247 1 +1142 813 1 +1142 3304 .6 +1142 3283 .6 +1142 804 .6 +1142 898 .8 +1142 904 .8 +1142 1309 .8 +1142 1395 .8 +1142 737 1 +1142 1630 .6 +1142 1076 .6 +1142 2478 .8 +1142 1734 .6 +1142 1679 .8 +1142 173 .8 +5207 2781 1 +5207 2227 1 +5207 121 1 +5207 2259 .6 +5207 1379 1 +5207 1386 1 +5207 643 1 +5207 428 1 +5207 30 1 +589 647 1 +589 746 1 +589 589 .6 +589 888 .8 +589 107 .6 +589 963 .6 +589 2507 .6 +589 2508 .6 +589 2568 .6 +589 749 1 +589 1222 1 +589 377 .8 +589 108 .8 +589 2459 .8 +589 3645 .8 +589 659 1 +589 1213 1 +589 1479 1 +589 1214 .8 +589 1210 .8 +589 290 1 +589 748 1 +589 1605 .8 +589 747 1 +589 137 1 +589 2457 .8 +589 2458 .8 +589 2323 .8 +589 642 1 +589 657 .6 +5208 5208 1 +5209 5209 .6 +5210 5210 .8 +5210 3285 1 +5211 5211 .6 +5212 5212 .6 +5213 5213 .6 +3730 2171 1 +3730 3730 .6 +5214 5214 1 +789 739 .8 +789 740 .8 +789 792 .8 +789 736 1 +789 1309 .8 +789 738 .8 +789 741 .8 +789 84 .8 +789 1053 .8 +789 833 .8 +789 1176 1 +789 648 1 +789 142 .8 +789 1628 .8 +789 802 1 +789 1033 .8 +789 3491 .8 +789 790 .8 +5215 5215 1 +5216 2732 1 +5216 2733 .8 +5217 5217 1 +5217 1154 .6 +5046 5046 .8 +5046 1223 .8 +5046 788 .8 +5218 286 1 +5218 4067 .6 +5219 5219 .6 +1693 741 .8 +1693 740 .8 +1693 1516 .8 +1693 106 .8 +1693 736 1 +1693 142 1 +1693 739 1 +1693 835 .8 +1693 656 .8 +1693 834 .8 +1693 837 .8 +1693 86 .8 +1693 1694 .8 +1693 855 1 +1693 1024 .8 +1693 329 1 +1693 801 .8 +1693 1308 .8 +1693 1053 .8 +1693 286 1 +1693 324 1 +1693 84 .8 +1693 91 .8 +1693 102 .8 +1693 737 1 +1693 71 .8 +1693 1628 .8 +1693 789 .8 +1693 738 .8 +1693 648 1 +1693 327 .8 +1693 859 1 +1693 2237 .6 +1693 1306 .6 +5220 5220 1 +1511 1511 .8 +1511 1247 1 +1511 2538 .8 +1511 695 1 +4850 4850 .6 +4850 4849 .6 +4850 439 .8 +4850 46 1 +4850 5221 .6 +4850 2066 .6 +4850 4019 .8 +723 1538 .8 +723 716 1 +1975 1975 .8 +5222 1768 1 +5222 1202 1 +5222 1515 .8 +5222 2535 .8 +5222 346 1 +5222 1652 1 +5222 2536 .8 +5222 2537 .6 +5222 2538 1 +5222 167 1 +5222 703 .8 +5222 318 1 +5222 1306 1 +5222 2964 .8 +5222 627 1 +5222 1939 1 +5222 1420 1 +5222 2197 1 +5222 1149 1 +5222 572 1 +5222 171 1 +5222 4906 1 +5222 739 1 +5222 59 1 +5222 1343 1 +5222 192 1 +5222 373 1 +5222 672 1 +5222 1434 1 +5222 1009 1 +5222 1548 1 +5222 377 1 +2859 2859 .8 +2859 1453 .8 +2859 1126 .8 +2859 46 1 +2859 1449 .8 +2859 714 1 +2859 1186 .6 +2859 3527 .6 +2859 1176 1 +2859 101 1 +2859 286 .8 +2859 1010 .6 +2859 1123 1 +2859 1172 .8 +2859 385 .8 +2859 1232 .6 +2859 285 .8 +533 542 .8 +533 306 1 +533 438 .8 +533 1817 .8 +533 2217 .8 +533 2002 .8 +533 577 1 +1742 512 .8 +1742 1742 .8 +1742 30 1 +1742 2226 1 +1742 990 1 +1742 1020 1 +1742 46 1 +1742 492 1 +1742 348 1 +1742 712 1 +1742 303 1 +1742 438 1 +1742 719 1 +1742 4583 1 +1742 653 .8 +1742 1871 .6 +1742 1490 1 +1742 577 1 +1742 286 1 +1742 1868 .6 +1742 1870 .6 +1742 3744 .6 +1742 128 1 +4219 4219 .8 +4219 2739 .8 +4219 426 1 +4219 1701 .8 +4219 444 .8 +4219 1629 1 +5223 5223 .8 +5223 1278 1 +378 378 .6 +378 4363 .8 +378 2507 1 +378 19 .8 +378 3394 .6 +378 2064 .6 +378 121 1 +378 518 .6 +378 268 .6 +378 263 .6 +378 597 1 +378 1440 .6 +378 2694 .6 +378 271 .8 +378 939 .6 +378 584 1 +378 2965 .6 +378 3389 .8 +378 3384 1 +378 1549 .8 +378 335 .8 +378 860 1 +378 857 .6 +378 716 .6 +378 2782 .8 +378 157 .8 +378 1551 .6 +378 246 .8 +378 46 1 +378 1126 1 +378 3399 1 +378 711 1 +378 589 .6 +378 431 1 +378 345 1 +378 1811 1 +378 1816 1 +5224 5224 .6 +3224 943 1 +3224 3224 1 +5225 5225 .6 +1195 2071 1 +1195 2660 .8 +1195 30 1 +1195 46 1 +1195 438 .8 +1195 431 1 +1195 643 1 +1195 434 .8 +1195 858 1 +1195 1195 .6 +1195 2276 .8 +1195 2317 .8 +1195 2318 .8 +1195 427 .8 +1195 327 .8 +1195 353 1 +1195 329 1 +1195 1799 .8 +1195 1765 .8 +1195 286 1 +1195 3150 .6 +1195 2839 .6 +1195 594 .6 +1195 2057 .6 +1195 385 .8 +1195 1912 .8 +1195 737 .8 +1195 1194 .8 +1195 4694 .8 +1195 3064 .8 +1195 356 .8 +1195 1451 .8 +1195 1208 1 +1195 2378 .8 +1068 562 1 +1068 1122 1 +1068 316 1 +1068 1230 1 +1068 273 1 +1068 22 1 +1068 2823 1 +1068 1723 1 +1068 282 1 +1068 65 1 +1068 1134 1 +1068 1171 1 +1068 764 1 +1068 613 .8 +1068 598 .8 +1068 577 1 +1068 2141 .8 +1068 4696 1 +1068 424 1 +1068 813 1 +1068 2226 1 +1068 2154 .8 +1068 1594 1 +1068 2949 1 +1068 1981 1 +489 555 1 +3066 2622 .8 +3066 112 1 +3066 3067 .8 +3066 966 .6 +3066 1961 .6 +3066 770 1 +3066 426 1 +3066 22 1 +3066 118 1 +3066 1560 1 +5226 5226 .8 +3384 210 .8 +3384 880 .8 +3384 211 .8 +3384 207 .8 +5227 2337 1 +3510 3510 .6 +3510 543 1 +3510 1000 .8 +3510 512 .8 +3510 3213 .8 +3510 1703 .6 +3510 20 .8 +3510 1195 .8 +3510 1917 .8 +3510 1113 .8 +3510 2377 .8 +3510 2078 .8 +3510 1689 .8 +3510 1823 .8 +3510 1399 1 +3510 2376 .8 +3510 3240 .8 +3510 2795 .8 +3510 1592 .6 +3510 947 .8 +3510 1041 .8 +3510 414 .8 +3510 4491 .8 +3510 4581 .8 +3510 2257 .8 +3510 2539 1 +3510 3440 .8 +3510 374 .8 +3510 197 1 +3510 1927 .8 +3510 258 .8 +3510 1591 .8 +3510 699 1 +3510 758 .8 +3510 2550 .8 +3510 1860 .6 +3510 1743 .8 +3510 4751 .8 +3510 1870 .8 +3510 1765 .8 +3510 1004 .8 +3510 1764 .8 +3510 891 .6 +3510 674 .8 +3510 2412 .8 +3510 677 .6 +3510 376 .8 +3510 1840 .8 +3510 2535 .6 +3510 1393 .8 +3510 1150 .8 +3510 1093 .6 +3510 2061 .8 +3510 1312 .8 +3510 790 .8 +3510 2366 .8 +3510 240 .8 +3510 2969 .8 +3510 630 .8 +3510 1073 .8 +3510 846 1 +3510 317 .8 +3510 387 .8 +3510 1110 .8 +3510 825 1 +3510 2487 .8 +3510 1514 .8 +3510 861 .8 +3510 3986 .8 +3510 4067 .8 +3510 4642 .8 +3510 1395 .8 +3510 2032 .8 +3510 84 .8 +3510 553 .8 +3510 3476 .8 +3510 2883 .8 +3510 2790 .8 +3510 2739 .8 +3510 1952 .8 +3510 1034 .8 +3510 2350 .8 +3510 85 .8 +3510 615 .8 +3510 89 .6 +3510 88 .8 +3510 87 .6 +3510 86 .8 +3510 233 1 +3510 890 .6 +3510 18 .8 +3510 603 .6 +3510 556 .8 +3510 2126 .8 +63 63 .6 +63 175 1 +63 286 1 +63 1603 1 +63 30 1 +63 555 1 +63 329 1 +63 126 1 +63 48 .8 +63 1641 .8 +63 629 1 +63 3671 .8 +63 577 1 +63 780 1 +63 3774 1 +827 1117 1 +827 30 1 +827 825 .8 +827 172 1 +827 915 .8 +827 934 1 +3117 736 1 +3117 739 1 +3117 740 .8 +3117 84 .8 +3117 855 1 +3117 30 1 +3117 1306 .8 +3117 293 1 +3117 2629 .8 +3117 267 .8 +3117 1089 1 +3117 837 1 +3117 142 1 +3117 926 .8 +3117 1021 .8 +3117 718 .8 +3117 5064 .6 +3117 2976 .8 +3117 2277 .8 +3117 1586 1 +3117 939 .8 +3117 1775 .8 +3117 1075 1 +3117 1392 .8 +3741 1512 .6 +3741 214 .6 +3741 3126 .8 +5228 1491 1 +5228 346 1 +5228 1237 1 +5229 5229 .6 +5229 5230 .8 +5231 52 1 +5232 5232 .8 +5233 797 .8 +5234 5234 1 +5235 5235 .6 +5235 5236 .6 +5235 5237 .6 +3480 3480 .6 +3480 506 1 +3480 46 1 +3480 1549 .8 +3480 1781 .8 +3480 1052 .8 +5238 5238 1 +260 260 .6 +260 904 .8 +9 739 1 +9 126 1 +9 46 1 +9 1960 1 +9 506 1 +9 30 1 +9 1517 1 +9 86 .8 +9 3237 .8 +9 311 .6 +9 736 1 +9 586 .6 +9 2515 .6 +9 1229 .8 +9 329 1 +9 9 1 +9 3629 .6 +9 83 .8 +9 1135 .6 +9 2188 .8 +9 837 .8 +9 791 .8 +9 583 .8 +9 2858 .6 +9 1165 .8 +9 1798 .8 +9 5239 .8 +9 803 .6 +9 1705 .6 +9 70 .6 +9 255 .6 +9 1424 .6 +9 172 1 +9 1422 .6 +9 3380 .6 +9 3343 .6 +9 1801 .6 +9 703 .6 +9 1127 1 +9 34 .8 +9 3268 .8 +9 986 .6 +9 4885 .6 +9 1291 .8 +9 234 .6 +9 640 1 +9 5124 .6 +9 1171 1 +9 738 1 +9 514 .8 +9 1290 .8 +9 316 1 +9 1595 .8 +9 239 .6 +9 1415 .6 +9 349 1 +9 65 1 +9 1881 .6 +9 2363 .6 +9 39 .8 +9 822 .6 +9 113 1 +9 1185 .6 +9 492 .6 +9 841 .8 +9 1498 .6 +9 1434 .8 +9 943 1 +9 2420 1 +9 5240 .6 +9 2135 .8 +9 512 .8 +9 1033 .8 +9 1083 .8 +9 610 1 +9 1812 .8 +9 334 .8 +9 1172 .8 +9 1166 .8 +9 844 .6 +9 764 1 +9 2331 .8 +9 276 .8 +9 807 .8 +9 362 .8 +9 3172 1 +9 1186 .6 +9 4271 .6 +9 784 .8 +9 674 .8 +9 718 .8 +9 2377 .6 +9 1216 .6 +9 2518 .8 +9 1737 .6 +9 488 .6 +9 2329 .6 +9 1711 .6 +9 590 .6 +9 564 .8 +9 3382 .6 +9 3490 .6 +9 585 .6 +9 240 .6 +9 44 1 +9 1703 .6 +9 5241 .6 +9 1047 .6 +9 19 .6 +9 1153 .6 +9 2698 .8 +9 1844 .8 +9 495 .6 +9 356 .6 +9 965 .6 +9 904 .6 +9 2519 .6 +9 1160 .8 +9 1192 .8 +9 1695 .8 +9 1123 1 +9 1280 .8 +9 251 .6 +9 3491 .8 +9 695 1 +9 1592 .8 +9 282 1 +9 1136 .6 +9 638 .8 +9 1243 .6 +9 1998 .6 +9 651 .8 +9 1856 1 +9 4 1 +9 3269 .8 +9 556 .6 +9 2918 .6 +9 501 .6 +9 259 .6 +9 292 1 +9 214 .8 +9 298 .8 +9 335 .8 +9 4186 .6 +9 3385 .8 +9 3393 .6 +9 658 .8 +9 1494 .8 +9 1072 .8 +9 94 .6 +9 14 .8 +9 81 .6 +9 1112 .6 +9 2819 .6 +9 471 .6 +9 2002 .8 +9 442 .8 +9 1495 1 +9 1139 .6 +9 87 .6 +9 729 .8 +9 2945 .6 +9 348 .8 +9 1999 .8 +9 2003 .6 +9 1000 .6 +9 1486 .6 +9 513 .6 +9 93 .6 +9 438 .6 +9 1585 .6 +9 3119 .6 +9 1561 .8 +9 2097 .6 +9 1586 .8 +9 3319 .6 +9 1282 .6 +9 714 1 +9 199 .8 +9 1391 .8 +9 2482 .8 +9 3175 .6 +9 1991 .6 +9 1483 .6 +9 956 .6 +9 711 .8 +9 531 .6 +9 952 .6 +9 1545 .8 +9 103 .8 +9 987 .8 +9 2551 .8 +9 1 .8 +9 5242 1 +5243 5243 .6 +3970 3970 1 +5244 5244 .8 +5244 1515 .8 +5244 1200 1 +5244 167 .8 +5244 1023 1 +5244 1123 1 +1203 1203 1 +1203 749 1 +5245 5245 .8 +4307 4307 .6 +4307 4030 .6 +1967 5246 .8 +1967 457 .8 +1967 328 1 +1967 1390 .8 +1967 910 .8 +5247 5247 .8 +3115 3115 .8 +3115 741 1 +3115 3079 .8 +3115 739 1 +5248 648 1 +5248 5249 .8 +5248 1491 1 +5248 352 1 +5248 1930 1 +5248 1001 1 +5248 1620 .8 +3447 1495 1 +3447 713 1 +3447 780 1 +3447 623 1 +3447 344 1 +3447 324 1 +3447 1004 .8 +3447 624 1 +3447 46 1 +3447 3447 .6 +3447 5250 1 +3447 3986 .8 +3447 1731 1 +3180 4459 .6 +3180 807 1 +3180 3180 .6 +5251 5251 .6 +5252 282 1 +5252 326 1 +5252 5253 .6 +5252 869 1 +5252 4114 .6 +5254 5254 .6 +5255 5255 1 +5256 5256 1 +5256 121 1 +5256 328 1 +5256 30 1 +5256 719 1 +5256 46 1 +5257 5257 .6 +5257 1374 .6 +5258 5258 .6 +5258 5259 .8 +5258 701 1 +5258 429 1 +5258 1816 1 +5260 5260 .6 +2877 328 1 +2877 719 1 +2877 1616 1 +2877 30 1 +2877 1020 1 +2877 174 .8 +2877 1356 .8 +2877 797 .8 +2877 1495 .8 +2877 2067 .6 +2877 1077 .6 +2877 858 1 +2877 638 .8 +5261 151 .8 +5261 3497 .8 +5262 5262 1 +5263 5263 .6 +1354 1354 .8 +5264 5264 .6 +1777 1777 1 +1777 967 .6 +1777 782 .6 +1777 15 .8 +1777 1629 .8 +1777 2274 .8 +1777 209 1 +1777 4917 .6 +1777 1332 .6 +1777 4031 .8 +1777 1980 .6 +1777 1774 .6 +1777 610 1 +1777 801 1 +1777 3124 .6 +1777 1656 .6 +1777 3809 .8 +1777 4028 .6 +1777 1126 1 +5265 5265 .6 +5265 2349 .6 +431 438 .8 +431 46 1 +431 435 .8 +431 1086 .8 +431 30 1 +431 1727 .6 +431 1718 .6 +431 5266 .6 +431 1022 .8 +431 1720 .8 +431 352 1 +431 209 .8 +431 318 1 +431 1288 .8 +431 1160 1 +431 2210 .8 +431 1447 .8 +431 1894 .8 +431 1996 .8 +431 432 .8 +431 44 1 +431 429 .8 +431 428 1 +431 444 .8 +431 442 .6 +431 506 1 +431 1024 .8 +431 5267 .8 +431 353 1 +431 1191 .8 +431 578 .6 +431 2091 .6 +431 1838 .6 +431 725 .6 +431 1065 .8 +431 2206 .6 +431 1591 .6 +431 4865 .6 +431 437 .8 +431 4 .8 +431 445 1 +431 3269 .6 +431 2208 .6 +431 2225 1 +431 1893 .8 +431 643 .8 +431 5268 .6 +431 2090 .8 +431 1856 1 +431 5 1 +431 720 .8 +431 1270 1 +431 1165 .6 +431 2443 .6 +431 3189 .6 +431 2784 .6 +431 1208 .8 +431 1816 .6 +431 1522 .8 +431 2507 .6 +431 1554 .6 +431 639 1 +431 4970 .8 +431 1770 1 +431 1910 .8 +431 618 .8 +431 1906 .8 +431 440 1 +431 1908 1 +431 2704 .6 +431 2219 .8 +431 2222 .8 +431 2228 .8 +431 1795 .6 +5269 5269 .6 +4097 4097 .6 +4097 279 .8 +4097 4098 .6 +225 3659 .6 +225 1801 .6 +225 3495 .6 +225 5270 .6 +225 219 .6 +225 233 .8 +225 2682 .6 +225 220 .6 +225 5271 .6 +225 2506 .8 +225 203 .6 +225 2490 .6 +225 1147 .6 +225 1442 .6 +225 222 .6 +225 4640 .6 +225 5272 .6 +225 4689 .6 +225 3122 .8 +225 1047 .6 +225 89 .6 +225 252 .6 +225 5273 .8 +225 3343 .6 +225 3190 .6 +225 228 .6 +225 610 .8 +225 575 .6 +225 3591 .8 +225 3324 .6 +225 96 .6 +225 1241 .8 +225 485 .6 +225 4379 .6 +225 2838 .6 +225 2858 .6 +225 588 .6 +225 1459 .8 +2849 1653 .8 +5259 5259 .6 +5259 5258 .8 +2981 46 1 +2981 2981 .8 +2981 1009 .8 +2981 506 1 +2981 30 1 +2981 353 1 +2981 126 1 +2981 431 1 +1113 784 1 +1113 2757 .8 +1113 1498 .6 +1113 1663 .8 +1113 2214 .8 +1113 251 .6 +1113 1110 .8 +1113 108 .8 +1113 261 .6 +1113 214 .8 +1113 1111 .8 +4802 780 .8 +1319 1317 1 +1319 4405 1 +1319 1318 1 +1319 307 1 +1319 46 1 +1319 2495 .8 +1319 1319 .8 +1319 4406 1 +1319 242 1 +1319 984 .8 +1319 1316 1 +1319 173 .8 +1319 2141 .8 +5274 5274 .6 +5274 1361 .8 +2470 2470 .6 +2470 1056 .8 +2470 181 1 +2470 2243 .8 +2470 182 .8 +2470 2108 .8 +2470 2112 .8 +2470 2107 .8 +2470 2849 .8 +2470 2109 .8 +2470 1653 1 +2470 2848 .8 +2470 2110 .8 +2470 1247 1 +2470 112 1 +2470 1047 .8 +2470 2671 .8 +2470 328 1 +2470 865 .8 +2470 950 .8 +2470 188 .8 +2470 904 .8 +2470 1384 .8 +2470 513 .8 +2470 5275 .8 +2470 1650 .8 +963 963 .6 +963 3951 .6 +963 492 .8 +963 142 1 +963 46 1 +963 751 .8 +963 1643 .8 +963 3240 .8 +963 286 1 +963 588 .6 +963 514 .8 +963 1702 .8 +963 2782 .6 +963 234 .6 +963 555 1 +963 2985 .8 +963 4784 .8 +963 4785 1 +963 1181 .8 +963 1394 .6 +963 1114 .6 +963 3087 .6 +963 438 .8 +963 2295 .8 +963 2483 .6 +963 2151 .6 +963 65 1 +963 2141 .8 +963 2739 .8 +963 66 .8 +963 2135 .6 +963 802 .8 +963 789 1 +963 837 .8 +963 1092 1 +963 91 .8 +963 740 .8 +963 2629 .8 +963 718 .8 +963 3778 .6 +963 1988 .8 +963 3091 .6 +2420 1230 1 +2420 764 1 +2420 640 1 +2420 282 1 +2420 22 1 +2420 424 1 +2420 1434 .8 +2420 2949 1 +2420 1123 1 +2420 1171 1 +2420 273 1 +2420 3770 1 +2420 562 1 +2420 1231 1 +2420 1723 1 +2420 1126 1 +2420 1656 .8 +2420 2823 1 +2420 4547 1 +2420 1337 1 +2420 588 .8 +4861 4861 1 +583 543 1 +583 1000 .8 +583 1703 .6 +583 512 .8 +583 3213 .8 +583 2078 .8 +583 1113 .8 +583 20 .8 +583 2377 .8 +583 1195 .8 +583 1917 .8 +583 1689 .8 +583 1399 .8 +583 2795 .8 +583 1823 .8 +583 1592 .6 +583 2376 .8 +583 3240 .8 +583 2539 1 +583 414 .8 +583 947 .8 +583 633 .8 +583 1041 .8 +583 2257 .8 +583 4581 .8 +583 729 .8 +583 1521 .8 +583 3440 .8 +583 197 1 +583 374 .8 +583 1927 .8 +583 758 .8 +583 258 .8 +583 1591 .8 +583 2550 .8 +583 699 1 +583 1860 .6 +583 1004 .8 +583 1743 .8 +583 1765 .8 +583 1764 .8 +583 1870 .8 +583 1393 1 +583 891 .6 +583 1727 1 +583 2535 .6 +583 4751 .8 +583 1383 .8 +583 1840 .8 +583 674 .8 +583 677 .6 +583 376 .8 +583 2412 .8 +583 1150 .8 +583 1093 .6 +583 2061 .8 +583 1312 .8 +583 790 .8 +583 2366 .8 +583 240 .8 +583 2969 .8 +583 630 .8 +583 1073 .8 +583 846 1 +583 1110 .8 +583 1514 .8 +583 387 .8 +583 2487 .8 +583 825 1 +583 861 .8 +583 4067 .8 +583 4642 .8 +583 2222 1 +583 553 .8 +583 3986 .8 +583 317 .8 +583 1395 .8 +583 3476 .8 +583 2032 .8 +583 84 .8 +583 1952 .8 +583 2883 .8 +583 2739 .8 +583 2790 .8 +583 2361 1 +583 1034 .8 +583 2350 .8 +583 85 .8 +583 86 .8 +583 615 1 +583 89 .6 +583 603 .6 +583 2126 .8 +583 88 .8 +583 87 .6 +583 556 .8 +583 233 1 +583 18 .8 +583 890 .6 +4654 346 1 +4507 296 1 +4507 286 1 +4507 649 1 +4507 328 1 +2433 2433 .8 +5276 5276 .6 +5277 5277 .6 +570 5278 1 +570 3281 .8 +2025 2025 .6 +2025 232 .6 +3443 3443 .8 +3443 1869 .8 +3443 1047 .6 +2708 2708 .6 +2708 441 1 +2708 431 1 +2708 46 1 +2708 639 1 +2708 1910 1 +2708 632 1 +2708 2749 .8 +2708 2141 1 +3599 431 .8 +3599 432 .8 +3599 328 1 +3599 167 .8 +3599 437 .8 +3599 433 .8 +3599 165 .8 +3599 904 .8 +3599 1646 .8 +3599 194 .8 +3599 1450 .8 +4922 4922 1 +5279 5279 1 +803 803 .6 +803 917 .6 +803 3343 .6 +803 993 .8 +803 626 1 +803 1998 .6 +803 1446 .8 +803 1447 .8 +2373 290 1 +2373 375 1 +2373 612 1 +2373 292 1 +2373 1562 1 +2373 1052 1 +2373 746 1 +2373 1203 1 +2373 747 1 +2373 1856 1 +2373 2349 .8 +2373 1569 .8 +2373 1812 1 +2373 2370 .8 +4635 4635 .8 +4635 1648 1 +4635 104 1 +4635 583 .8 +4635 1898 1 +4635 1315 1 +4635 46 1 +4635 324 1 +4635 30 1 +4635 329 1 +4635 1378 1 +5280 5280 1 +5281 5281 .8 +5282 5282 1 +5283 5283 .6 +5283 46 1 +5283 1799 1 +5283 3425 .6 +5283 353 1 +5283 431 1 +4132 4132 .6 +4132 1823 .6 +4132 2227 .8 +4132 429 1 +4132 863 .6 +4132 1386 .8 +4052 4052 .6 +4052 925 1 +4052 1105 .8 +4052 2396 1 +4052 2397 1 +4052 30 1 +4052 719 1 +5284 5284 .6 +511 174 1 +511 2255 .8 +2474 2474 .8 +2474 1711 1 +2474 400 1 +2474 2473 1 +2474 2361 1 +5285 5286 .8 +5285 103 .8 +5285 5287 .8 +2985 2985 .8 +2985 298 .6 +2985 30 1 +3543 3543 .8 +3543 910 .8 +3543 142 1 +3543 648 1 +3543 739 1 +3543 1053 .8 +3543 736 .8 +5288 964 .6 +5288 5289 .8 +5288 5290 .8 +5288 2487 .8 +5288 1135 .8 +5288 20 .8 +5288 3615 .6 +5291 5291 .8 +5291 328 .6 +5010 5010 .6 +5010 328 1 +5010 1930 1 +5010 774 1 +5292 710 1 +4238 917 .8 +4238 708 .8 +4238 1394 .8 +4238 661 .6 +4238 3986 .6 +4238 3427 .6 +4238 4238 1 +1886 1886 .8 +1886 46 1 +1886 561 .8 +1886 1075 1 +1886 5127 .8 +1886 89 .6 +1886 175 1 +1886 1241 1 +3430 1025 .8 +5293 5293 .8 +1753 326 1 +2575 658 1 +2575 2198 1 +2575 1211 1 +2575 1176 1 +2575 852 1 +2575 2694 .8 +2575 851 1 +2575 850 1 +2575 1126 1 +2575 848 1 +2575 126 1 +2967 2967 .8 +2967 13 1 +2967 12 .8 +2967 3574 .8 +2967 374 .8 +2967 1180 .8 +2705 2705 1 +2705 764 1 +2705 1222 1 +2705 749 1 +2705 2248 .6 +2705 677 .6 +2705 1176 1 +2705 326 1 +2705 1203 1 +2705 587 .8 +2705 163 1 +2705 1663 1 +2705 3014 1 +2705 4423 1 +2705 2076 1 +2705 328 1 +2705 1495 1 +2705 126 1 +2705 1160 1 +2705 1910 1 +2705 610 1 +2705 717 1 +2705 45 .6 +2705 1181 .6 +2705 1974 .6 +5294 438 .8 +1996 1894 .8 +1996 318 .8 +1996 439 .6 +1996 172 .8 +1996 431 1 +1996 1086 .8 +1996 4643 .8 +1996 46 1 +1996 2210 .8 +1996 352 .8 +1996 1447 .8 +1996 438 .8 +1996 577 .8 +1996 435 .8 +1996 2078 .8 +1996 437 .8 +1996 436 1 +1996 326 1 +1996 440 1 +1996 316 .8 +1996 209 .8 +1996 907 .6 +1996 1892 .8 +1996 441 1 +1996 286 1 +1996 908 .8 +1996 2133 .8 +1996 1583 1 +1996 290 1 +1996 1719 .6 +1996 317 .8 +1996 353 1 +1996 329 1 +2276 2276 .8 +2276 579 .8 +2206 429 .8 +2206 2206 .6 +2206 2091 .8 +2206 2207 .8 +2206 428 .8 +2206 2092 .8 +2206 1856 1 +2206 4 .8 +2206 4559 .6 +2206 618 .8 +2206 578 .8 +2206 1065 .8 +2206 1247 1 +2206 643 1 +2235 5 1 +2235 1160 1 +2235 1435 1 +2235 1176 1 +2235 429 1 +2235 46 1 +2235 318 1 +2235 431 1 +2235 432 1 +2235 436 1 +2235 440 1 +2235 428 1 +2235 1910 1 +2235 506 1 +2235 215 1 +2235 2235 1 +2235 1237 1 +2235 1770 1 +2235 1893 1 +2235 1908 1 +2235 445 1 +2235 1548 1 +2235 434 1 +2235 373 1 +2235 303 1 +2235 1856 1 +2235 290 1 +2235 701 1 +2235 441 1 +2549 572 1 +2549 3408 .8 +2549 194 .8 +2549 4663 .8 +2549 2051 .8 +2549 2548 .6 +2549 2547 .8 +2835 2835 .6 +2835 2713 .8 +2835 1518 .8 +2835 2652 1 +2835 352 1 +2835 46 1 +2835 353 1 +2835 888 1 +1690 738 .8 +1690 736 .8 +1690 46 1 +1690 30 1 +1690 431 .8 +1690 792 .8 +1690 1635 .8 +1690 1309 .8 +1690 740 .8 +1690 739 1 +1690 1689 .8 +1690 97 .8 +1690 142 1 +1690 835 .8 +1690 648 1 +1690 1176 1 +1690 837 .8 +1690 1692 .8 +1690 329 1 +1690 3982 .8 +1690 856 .8 +1690 1663 .8 +1690 5295 .8 +3814 718 .8 +2562 2563 .8 +2562 934 1 +2562 1020 1 +2562 1167 .6 +2562 791 .8 +2562 1476 .8 +2562 324 1 +2562 30 1 +2562 1754 1 +2562 719 1 +2562 438 .8 +2562 915 .8 +2562 577 .8 +2562 990 .8 +2562 584 .8 +2562 328 1 +5296 5296 .6 +5296 30 1 +5296 126 1 +5296 207 1 +5296 323 1 +1405 1405 .8 +1405 555 1 +1405 1400 .6 +1405 583 .8 +1405 438 .6 +1405 46 1 +4849 4849 .6 +4849 4019 .8 +4849 4850 .6 +3896 3438 .8 +3896 3544 .8 +5297 5297 .8 +1622 1622 .8 +1622 126 1 +1622 30 1 +1622 1248 .8 +1622 1618 .8 +1622 708 .8 +1622 2746 .8 +1622 46 1 +1622 1277 .8 +1622 1278 1 +1622 1182 .6 +1622 791 .8 +1622 165 .8 +1622 51 .8 +1622 3324 .8 +1622 163 .8 +1622 718 .8 +1622 813 1 +1622 2352 .8 +1622 794 .6 +1622 1580 .8 +1622 1418 .8 +1622 776 .8 +1622 610 .8 +1622 418 .6 +1622 719 1 +1622 713 1 +1622 1584 .6 +1622 634 .8 +1622 1049 .8 +1622 715 .8 +1622 5007 .6 +1622 349 1 +1622 2473 .8 +1622 717 1 +1622 779 .8 +1622 186 .8 +5298 5298 .8 +4081 4081 .6 +4081 3474 .6 +4081 931 .6 +4081 892 .8 +5299 5299 1 +5300 46 1 +5300 1221 1 +5300 1582 1 +5300 3102 1 +5300 1415 .8 +5301 5301 .8 +5301 126 1 +5301 46 1 +5301 785 .8 +5301 3618 1 +1846 1846 .6 +1846 1492 1 +1846 1490 1 +1846 1568 1 +1846 30 1 +1846 126 1 +1846 2902 1 +1846 1848 1 +5302 5302 .8 +5303 5304 .6 +5303 4621 .6 +1895 739 1 +1895 445 .8 +1895 1546 .8 +1895 736 1 +1895 1518 .8 +1895 807 .8 +1895 1517 .8 +5305 5305 .6 +1336 119 1 +1336 3573 .8 +1336 1341 .8 +712 588 .8 +712 517 .6 +712 990 .8 +712 492 1 +712 934 1 +712 804 .8 +712 827 1 +712 438 1 +712 791 1 +712 83 .8 +712 523 .8 +712 172 1 +712 2437 1 +712 939 .8 +712 346 1 +712 1645 .8 +712 174 1 +712 577 1 +712 830 1 +712 780 .8 +712 545 1 +712 513 .8 +712 915 .8 +712 46 1 +712 2782 .8 +712 525 1 +712 947 .8 +712 2828 .8 +712 5306 .6 +712 1469 .6 +712 938 .8 +712 349 1 +712 1001 1 +712 522 1 +712 595 .8 +712 1418 1 +712 1490 1 +712 2761 1 +712 1356 1 +712 1616 1 +712 30 1 +712 324 1 +712 344 1 +712 807 1 +712 530 .8 +712 2450 .8 +712 1003 .8 +712 2255 1 +712 1851 1 +712 808 .8 +712 813 1 +712 460 .8 +5307 5307 1 +407 148 .8 +407 397 .6 +407 407 .6 +407 406 .6 +407 5308 .6 +407 5062 .6 +407 1629 .8 +5309 5309 .6 +439 318 .8 +439 1996 1 +439 1894 .8 +439 3649 .8 +439 915 .8 +439 46 1 +439 1086 .8 +439 431 .8 +439 4019 .6 +439 2210 .8 +439 439 .8 +439 1288 .8 +439 438 .8 +439 1447 .8 +439 30 1 +439 1022 .8 +439 352 1 +439 437 .8 +439 320 .8 +439 441 .8 +439 432 1 +439 2078 .8 +439 4491 .8 +439 4940 .6 +439 429 .8 +439 918 .6 +439 5310 .8 +439 316 1 +439 286 1 +439 45 .6 +439 351 1 +439 436 1 +439 1567 .8 +3396 377 .8 +3396 764 1 +3396 652 1 +3396 137 1 +3396 1222 1 +3396 110 .8 +3396 3077 .8 +3396 4026 .8 +3396 322 .8 +3396 1218 1 +5311 5311 1 +1711 1711 .8 +1711 813 1 +1711 328 1 +1711 492 1 +1711 400 1 +1711 405 .8 +1711 540 .8 +1711 2616 .8 +1711 654 1 +1711 2352 .8 +1711 165 1 +1711 2466 .6 +1711 2469 .8 +1711 577 1 +1711 737 1 +1711 2467 .8 +1711 2468 .8 +1711 3209 .8 +1711 2474 .8 +1711 2473 .6 +1711 2361 .8 +1711 2475 1 +1711 4977 .8 +1711 1980 .8 +1711 613 .8 +1711 1955 1 +1711 2257 .6 +1711 1249 1 +1711 2423 .8 +1711 1710 .8 +1711 4615 .8 +33 32 .8 +33 33 .6 +33 34 .6 +33 31 .8 +33 28 .6 +33 71 .8 +33 26 .8 +33 29 .8 +33 30 .8 +33 27 .8 +33 1651 .8 +33 191 .8 +33 1022 1 +33 142 .8 +33 753 .6 +33 843 .8 +33 893 .6 +33 438 .8 +33 1314 .8 +5088 5088 .8 +5312 5312 1 +5313 5313 .6 +5314 5314 .6 +5314 879 1 +3731 188 .8 +3731 3078 .8 +3731 3731 .6 +3731 5315 .8 +3372 30 1 +3372 719 1 +3372 326 1 +3372 46 1 +3372 1002 .8 +3372 174 1 +3372 320 1 +3372 1086 .8 +3372 2078 1 +3372 907 1 +3372 1022 1 +3372 1447 .8 +3372 437 .8 +3372 436 1 +3372 1892 1 +3372 1996 1 +3372 2068 1 +3372 584 1 +3372 1720 1 +3372 317 .8 +3372 413 .6 +5316 5316 .6 +1907 1407 .6 +1907 440 1 +1907 46 1 +1907 431 .8 +1907 43 1 +1907 1548 1 +2459 2459 .8 +2459 746 1 +2459 747 1 +2459 110 .8 +2459 1218 .8 +2459 137 .8 +2459 2457 .8 +2459 105 .8 +2459 652 1 +2459 1222 .8 +2459 748 1 +2459 79 .8 +2459 2461 .8 +2459 290 1 +2459 1499 .8 +2459 1479 1 +2459 2289 .8 +2459 1605 .8 +2459 1214 .8 +2459 1219 .8 +2459 1212 .8 +2459 2456 .8 +2459 659 1 +2459 2278 .8 +2459 1213 .8 +2459 1210 .8 +2459 749 1 +2459 2460 .8 +2459 2501 .8 +2459 954 .8 +2754 5317 .8 +2754 242 .8 +2754 716 .8 +2754 126 1 +2754 644 .8 +2754 1578 .8 +2754 46 1 +2754 329 .8 +2754 787 .8 +2754 467 .8 +2754 128 .8 +2754 1584 .8 +2754 802 .8 +2754 859 .8 +2754 5318 .8 +2754 1650 .8 +2754 715 1 +2754 2081 .6 +2754 4951 .6 +2754 2755 .8 +2754 2664 .8 +1533 1909 .8 +1533 194 .8 +1533 274 1 +1533 1450 .8 +1533 126 1 +1533 175 1 +1533 106 .8 +1533 2160 .6 +1533 1042 .6 +1533 598 1 +5319 30 1 +5320 46 1 +5093 498 1 +5093 46 1 +5321 5321 .8 +5321 864 .8 +5322 3179 .6 +3478 3478 .6 +3478 1049 1 +3478 1877 .6 +3478 2450 1 +3478 793 1 +3478 577 1 +3478 346 1 +3478 678 .8 +3478 1048 .6 +3478 708 .8 +3478 2614 1 +3478 1566 .6 +3478 990 1 +3478 46 1 +3478 780 .8 +3478 1418 1 +3478 3801 .6 +3478 2251 1 +3478 711 .8 +3478 6 .8 +3478 3440 .8 +3478 1943 .8 +5323 5323 .6 +5324 5324 .6 +4112 4112 .8 +4112 1109 .6 +4112 950 .8 +3257 3257 .6 +3257 1370 .6 +3257 774 1 +3257 2463 .6 +3257 711 1 +3257 2464 1 +3257 2348 .8 +3257 898 .8 +3257 5325 .8 +3257 786 .8 +3257 1992 1 +3257 4583 .8 +3257 441 1 +3257 1495 1 +3257 715 .8 +3257 5326 .8 +3257 902 .8 +3257 4097 .6 +3257 1255 .8 +3257 3424 .8 +5327 639 1 +5327 1237 1 +5327 1910 1 +5327 5327 .6 +5327 3445 .8 +5327 5328 .8 +1081 1081 .6 +1081 303 1 +5329 710 1 +5329 743 1 +5329 1278 1 +5329 856 1 +5329 750 1 +5329 1430 1 +5329 1546 1 +5329 46 1 +5329 1306 1 +5329 2964 .8 +5329 627 1 +5329 1768 1 +5329 2435 .8 +5329 1073 .8 +5329 230 .8 +5329 948 .8 +5329 4906 1 +5329 83 .8 +5329 86 .8 +5329 89 .8 +5329 88 .8 +5329 1216 .8 +5329 1079 .8 +5329 461 .8 +5329 1026 .8 +5329 2852 .8 +5329 481 .8 +5329 658 1 +5329 523 .8 +5329 712 1 +5329 3319 .8 +5329 1092 1 +5329 649 1 +1303 1021 1 +5330 5330 .6 +5331 5332 .8 +251 251 .6 +251 1616 1 +251 30 1 +251 46 1 +251 2700 .6 +251 784 .8 +251 486 .8 +251 860 .8 +251 584 1 +251 822 .6 +251 83 .8 +251 1171 1 +251 556 .8 +5172 1711 1 +5172 813 1 +5172 400 1 +5172 1710 1 +5172 4383 .8 +5172 1249 1 +4893 4893 .8 +5333 642 1 +5334 5334 1 +3475 3475 .8 +3475 530 .6 +3475 1339 .8 +3475 893 .8 +3475 328 1 +3475 2032 .8 +3475 974 .8 +3050 3050 .8 +3050 1002 1 +3050 349 1 +3050 1001 1 +3050 174 1 +3050 1589 .8 +3050 348 1 +3050 543 .8 +3050 791 .8 +3050 2199 .6 +3050 583 .8 +3050 3049 .8 +3050 492 1 +3050 728 .8 +2777 2777 .6 +2777 1650 .8 +2777 588 .8 +2777 812 .6 +2777 3609 .6 +2777 1963 .8 +2777 587 .8 +2777 830 1 +2777 680 .8 +5335 5335 .6 +2822 869 1 +2983 2983 .6 +2983 2317 .6 +2983 643 .6 +2983 4958 .6 +3377 3377 .6 +3377 739 1 +3377 610 1 +3377 1247 1 +3377 597 .8 +3377 2324 .8 +3377 328 1 +3377 1116 1 +3377 2538 1 +3377 1797 1 +4839 4839 .6 +4839 2227 .8 +4839 2415 .8 +4839 4627 .6 +4839 4016 .6 +4839 4120 .8 +5336 5336 .6 +5337 5337 .6 +5337 440 1 +490 490 .6 +242 242 1 +242 623 .6 +242 232 .6 +242 943 .8 +242 1521 .6 +242 430 .8 +242 214 .8 +242 646 .8 +242 2495 .6 +242 2214 .8 +242 4542 .6 +242 528 .8 +242 1316 .8 +242 1317 .8 +242 3892 .8 +242 4405 .8 +242 1318 1 +242 4406 1 +242 329 1 +242 1301 .8 +242 1319 1 +242 2239 1 +242 757 .6 +242 1053 1 +242 1407 .6 +242 3400 .8 +242 1685 .6 +242 215 1 +242 429 1 +242 1126 .8 +242 107 .6 +242 597 .8 +242 841 .8 +242 633 .6 +242 603 .8 +242 938 .6 +242 297 1 +242 1023 1 +242 1163 .6 +242 711 .8 +242 791 1 +242 1415 .8 +242 577 1 +242 703 .6 +242 583 .8 +242 3384 1 +242 2933 .8 +242 610 1 +242 1495 1 +242 760 .8 +242 525 .8 +242 1170 .6 +242 1057 .8 +242 316 1 +242 919 .8 +242 683 .8 +242 584 1 +242 2295 .8 +242 63 .8 +242 1043 .6 +242 65 1 +242 830 .8 +242 987 .8 +242 81 .6 +242 864 1 +242 1815 .6 +242 638 1 +242 1811 1 +242 1241 .8 +242 888 .8 +242 2713 .8 +242 1660 .8 +242 631 .6 +242 780 .8 +242 19 1 +242 1440 .8 +242 996 .8 +242 1413 .6 +242 1494 .8 +242 1216 .8 +242 22 1 +242 582 .8 +242 328 1 +242 1817 .8 +242 960 .8 +242 658 .8 +242 934 1 +242 34 1 +242 1881 .6 +242 1162 1 +242 591 .6 +242 1034 .8 +242 2004 1 +242 1042 .6 +242 379 1 +242 1998 .6 +242 240 .8 +242 912 .8 +242 545 .8 +242 261 .8 +242 362 .8 +242 955 .6 +242 949 1 +242 613 .8 +242 517 .6 +242 248 .6 +242 624 .8 +242 1166 .8 +242 335 .8 +242 2333 .8 +242 194 .6 +242 956 .6 +242 959 .8 +242 2002 .8 +242 991 .6 +242 138 .6 +242 615 .8 +242 751 1 +242 954 .6 +242 604 .8 +242 921 .8 +242 958 .8 +242 1171 1 +242 580 .8 +242 1159 .6 +242 1154 .6 +242 1899 .6 +242 526 .8 +242 1450 .6 +242 1650 .6 +242 44 1 +242 1000 .8 +242 399 .8 +242 606 .8 +242 1418 .8 +242 1824 .8 +242 2685 .6 +242 2013 .6 +242 712 .8 +242 3519 .8 +242 1991 1 +242 4902 .8 +242 716 .8 +3778 3778 .8 +5338 736 1 +5338 739 1 +5338 1053 1 +5339 5339 .8 +2544 2543 .8 +2544 2544 1 +2544 1683 .8 +5340 3380 .6 +5340 293 .8 +5340 5340 1 +5340 22 1 +5341 5341 1 +5341 3048 .8 +5342 5342 .8 +5343 5343 .8 +814 712 1 +5344 5344 .8 +5345 5345 .6 +922 214 .6 +922 1223 .6 +922 3864 .6 +922 438 .8 +922 2021 .6 +922 1839 .8 +922 804 .6 +922 944 .8 +922 1812 .8 +922 328 1 +922 93 .8 +922 584 1 +922 1022 1 +922 651 .8 +922 3256 .6 +922 1339 .8 +922 2880 1 +922 888 .8 +922 1162 1 +922 1515 .8 +922 1216 .8 +922 523 .8 +922 577 1 +922 530 .8 +922 846 .8 +922 1447 .8 +922 1549 .8 +922 703 .6 +922 3389 .8 +922 113 1 +922 524 .8 +922 103 .8 +922 784 1 +922 469 .8 +922 1485 .6 +922 258 .8 +922 1166 .8 +922 1127 1 +922 949 1 +922 887 .8 +922 234 .6 +922 760 .6 +922 71 .8 +922 5346 .6 +922 1545 .8 +922 1393 .8 +922 44 1 +922 290 1 +922 989 .6 +922 918 1 +922 917 .6 +922 1685 .6 +922 528 .8 +922 987 .8 +922 743 1 +922 1631 .8 +922 1514 .8 +922 98 .8 +922 779 .8 +922 1091 .8 +922 349 1 +922 2250 .8 +922 728 .8 +922 3918 .8 +922 2149 .8 +5347 5347 .6 +5347 286 1 +5347 30 1 +5347 1175 1 +5347 126 1 +5347 1384 .8 +5347 5348 1 +5278 3281 .8 +5278 5278 .8 +5278 570 .8 +5278 1123 1 +84 1698 .8 +3424 3424 .6 +3424 5349 .8 +3424 4455 .8 +3678 4729 .8 +3678 2578 .8 +3678 2142 .6 +3678 1277 1 +3678 186 .8 +3678 126 1 +3678 3678 .8 +5350 5350 1 +5351 286 1 +5351 5351 .6 +5352 5352 1 +3892 3892 .8 +3892 1318 1 +3892 4405 1 +3892 1317 .8 +3892 242 .8 +3892 2214 1 +3892 1316 .8 +3892 1032 .8 +3892 646 1 +3892 4406 1 +3892 307 1 +3892 1816 .8 +3892 683 .8 +3892 173 .8 +3892 1319 .8 +3892 3838 1 +3892 1745 .8 +3892 1093 .8 +3892 2141 .8 +5353 5353 .6 +4954 4954 .8 +4954 4717 .6 +4954 825 1 +4954 2852 .8 +4954 1597 1 +5354 5354 .6 +5355 5355 1 +3795 3795 .6 +3795 2911 1 +3795 3560 .8 +3795 1236 .8 +3795 5016 .6 +103 46 1 +103 103 .8 +103 989 .6 +103 4434 .6 +103 2226 .8 +678 678 .8 +678 793 1 +678 577 1 +678 30 1 +678 514 1 +678 1798 .8 +678 807 1 +678 1049 1 +678 1490 1 +678 157 1 +678 1629 .8 +678 46 1 +678 468 .8 +678 2450 1 +678 1754 1 +678 324 1 +678 719 1 +678 6 .8 +678 22 1 +678 990 .8 +678 892 .8 +678 2905 .6 +678 126 1 +678 1484 .8 +678 3141 .6 +678 2020 .8 +678 1492 .8 +678 1805 .6 +678 5356 .6 +678 905 .6 +678 1775 .6 +678 780 .8 +678 791 1 +678 1418 1 +678 492 1 +678 5357 .6 +678 346 1 +678 1566 .8 +678 2614 1 +678 4179 .8 +678 328 1 +678 1656 .6 +678 438 1 +678 624 1 +678 1247 1 +678 523 .8 +678 1085 .8 +678 4662 .8 +678 3 1 +678 1 .8 +678 2 1 +678 1032 .8 +678 5 1 +678 830 1 +678 776 1 +678 712 1 +678 525 .8 +678 718 .8 +678 1495 1 +678 1277 .8 +678 774 1 +678 378 .6 +678 1662 .8 +678 1356 1 +678 625 .8 +678 2182 .8 +678 335 .8 +678 1047 .8 +678 2264 .6 +678 2265 .6 +678 4378 .8 +678 2830 .6 +678 5358 .8 +678 2557 .8 +678 1558 .8 +678 3386 .8 +678 5359 .6 +678 469 1 +678 67 1 +678 1399 .8 +678 751 1 +678 2945 .6 +678 711 1 +678 1370 .8 +678 5306 .6 +678 4582 .8 +678 174 1 +678 2437 1 +678 1852 1 +678 349 1 +678 1840 .8 +678 5325 .8 +678 799 .6 +678 1020 1 +678 2251 .8 +678 788 .8 +678 172 1 +678 2348 .8 +678 3288 .8 +678 422 .8 +678 1851 1 +678 513 1 +678 3801 .6 +678 2252 .8 +678 1491 1 +678 1392 .8 +678 3444 .6 +678 1993 1 +5147 612 1 +5147 1562 1 +5360 224 .8 +1905 3579 .6 +1905 1904 1 +5361 5361 1 +424 424 1 +424 770 1 +424 118 1 +424 112 1 +424 425 1 +424 642 1 +424 22 1 +424 1124 1 +424 426 1 +424 427 1 +424 46 1 +424 5362 .8 +424 273 1 +424 2420 1 +424 640 1 +424 1122 1 +424 764 1 +424 282 1 +424 1230 1 +424 1171 1 +424 1221 .8 +424 3758 .8 +424 2926 .8 +424 1177 1 +424 3064 .6 +424 1660 .6 +424 1123 1 +424 3102 .8 +424 2823 1 +424 598 .8 +424 1723 1 +424 285 .8 +424 3065 .8 +424 287 .8 +424 4965 .6 +424 2721 .8 +424 1520 .8 +424 806 .6 +424 647 1 +424 747 1 +424 1116 1 +424 277 .8 +424 423 .8 +424 271 .8 +424 255 .6 +424 1222 1 +424 562 1 +424 1560 1 +424 45 1 +424 966 .6 +424 4696 1 +424 3067 .6 +424 2622 .8 +424 3068 .6 +424 1068 1 +424 609 .6 +2236 2219 1 +2236 1386 .6 +1488 658 .8 +1488 2568 .6 +1488 2571 .6 +1488 591 .6 +1488 770 1 +1488 1498 .6 +1488 587 .8 +1488 246 .6 +1488 240 .6 +1488 1487 .6 +1488 1483 .6 +1488 5363 .6 +1488 1541 .6 +1488 646 .8 +1488 4950 .6 +2272 933 .6 +2272 2614 .8 +2272 1917 .8 +2272 171 1 +2272 913 .8 +2272 810 .8 +2272 298 .8 +2272 511 1 +2272 172 1 +2272 982 .6 +2272 1535 .6 +2272 523 .8 +2272 949 .8 +2272 525 1 +2272 255 .8 +2272 530 .8 +5364 5364 .6 +5364 719 1 +5364 782 1 +5365 5365 .6 +5366 5366 .8 +5367 1373 .8 +5368 5368 1 +5368 22 1 +5368 4511 1 +5368 433 1 +5368 428 1 +5368 426 1 +5368 424 1 +5369 5369 .6 +1265 1236 1 +1265 328 1 +1265 610 1 +1265 1223 .8 +1265 62 .8 +1265 2084 .8 +1265 1264 .6 +2503 1356 .8 +2503 804 .6 +2503 1754 1 +4921 4921 .6 +5370 5370 .6 +5371 391 .8 +5371 389 .8 +5371 1684 .8 +5371 2751 .8 +5371 2961 .8 +5371 5371 .6 +3483 3483 .6 +3483 62 .6 +3483 1781 .6 +3483 1775 .8 +3483 1779 .6 +5372 5372 .8 +5372 186 .6 +141 329 1 +141 739 1 +141 827 1 +141 736 1 +141 30 1 +141 286 1 +141 1754 1 +141 385 1 +141 175 1 +141 1020 1 +141 324 1 +141 3576 .6 +141 860 1 +141 734 .6 +141 2164 .8 +141 555 1 +141 346 .6 +141 297 .8 +141 3150 .8 +141 5373 .6 +141 3303 .6 +141 283 .8 +141 1756 .8 +141 2405 1 +141 2069 .8 +141 1518 .8 +141 1752 1 +141 1172 .8 +141 3586 .8 +141 5374 .8 +141 5375 .6 +141 1703 .6 +141 405 1 +141 1765 .8 +141 868 .6 +141 4539 .6 +1527 1527 .8 +1527 1525 .8 +1527 1526 .8 +1527 1490 1 +1527 1529 .8 +1527 1528 .8 +4519 4519 .6 +4519 863 .8 +4519 429 1 +4519 2786 .8 +4519 46 1 +4519 643 1 +4519 431 1 +4519 4101 .8 +4519 1840 .8 +4519 3292 .8 +4519 3394 .8 +4519 2215 .8 +4519 1064 .6 +4519 4516 .6 +4519 148 .8 +5376 5376 .6 +5376 708 .8 +5377 5377 .8 +5377 444 .8 +5378 5378 .6 +5379 1518 .8 +5380 5380 1 +5381 5381 .6 +5381 46 1 +5382 5382 .6 +3323 714 1 +3323 642 1 +3323 2652 1 +3323 46 1 +3323 2805 .6 +3323 4100 .8 +5383 5383 .6 +5384 5384 1 +5384 454 .8 +3403 157 .8 +3403 2171 .6 +3403 4891 .6 +3403 85 .6 +3403 5385 .6 +3403 1512 .6 +3403 4106 .6 +3403 1794 .6 +3403 23 .6 +3403 1175 .6 +3403 1961 .8 +3403 3178 .6 +3403 1237 .8 +3403 2450 1 +3403 4 1 +3403 1842 .6 +3403 1996 1 +3403 516 .6 +3403 888 .8 +3403 374 .6 +224 286 1 +224 46 1 +224 126 1 +224 578 1 +224 310 1 +224 1033 .6 +224 2586 .6 +224 292 1 +224 656 .8 +224 589 .6 +224 597 .8 +224 1246 1 +224 2619 1 +224 1150 .8 +224 5360 .8 +224 741 .8 +224 35 .8 +224 887 .8 +224 751 .8 +224 1478 .6 +224 113 .8 +224 3544 .8 +224 1116 1 +224 3904 .8 +224 316 1 +224 4255 .8 +224 5386 .8 +224 2609 .8 +224 146 .8 +224 2721 .8 +224 2608 .8 +224 1559 .8 +224 3242 .8 +224 3679 .6 +224 1964 .8 +224 787 1 +224 3772 .8 +224 2856 .6 +224 428 1 +224 357 .8 +224 1068 1 +224 614 .8 +224 5289 .8 +224 1162 1 +224 62 1 +224 1619 .6 +224 577 1 +224 1277 .6 +224 1473 .6 +224 1770 1 +224 2231 .8 +224 307 1 +5387 5387 .6 +5388 5388 .8 +2092 2092 .8 +2092 428 .8 +2092 2090 .8 +2092 431 .8 +2092 429 .8 +4167 4167 .8 +4167 157 .8 +4167 610 1 +4167 1809 .8 +4167 914 .8 +4167 4499 .8 +4167 1824 .8 +4167 2790 .6 +4167 2004 1 +4167 4170 .6 +4619 4619 .6 +4619 205 .8 +4619 286 1 +1036 656 .8 +1036 1036 .6 +5389 5389 1 +272 272 1 +272 267 1 +272 273 1 +272 2094 1 +272 2093 1 +42 918 1 +42 1773 .6 +42 1679 .8 +42 3553 .6 +42 41 .6 +42 5100 .6 +42 4744 .6 +42 597 1 +42 1250 1 +42 1248 1 +42 1649 .8 +42 1377 .8 +42 45 1 +42 1254 .6 +42 3228 .6 +42 5390 .8 +4343 1402 .8 +4343 591 .6 +4343 4343 .6 +4343 157 .8 +5391 988 .6 +5392 5392 .6 +5393 5393 .8 +5393 2824 1 +444 431 1 +444 429 1 +444 46 1 +444 444 .8 +444 2073 .6 +444 584 .8 +444 1838 .8 +444 3171 .6 +444 318 .8 +444 44 .8 +444 151 .8 +444 445 .8 +444 807 .8 +444 1191 .8 +444 5377 .8 +444 3173 .6 +444 93 .6 +444 436 1 +444 994 .6 +444 578 .8 +444 1561 .8 +444 2091 .6 +444 2891 .8 +444 1220 .8 +444 35 .8 +444 3179 .6 +444 658 .8 +444 1582 .8 +5394 5394 .6 +5394 5395 .8 +2868 2867 .8 +2868 2868 .6 +5396 5396 1 +5397 5397 .6 +2460 2460 .8 +2460 652 .8 +2460 79 .8 +2460 747 1 +2460 748 1 +2460 1218 .8 +2460 746 1 +2460 2457 .8 +2460 749 1 +2460 1605 .8 +2460 110 .8 +2460 1219 .8 +2460 1499 .8 +2460 2459 .8 +2460 1222 1 +2460 105 .8 +2460 290 1 +2460 1214 .8 +2460 2378 .8 +2460 647 1 +2460 1213 .8 +2460 2453 .8 +1649 1649 .8 +1649 1869 .8 +1649 42 .8 +5398 5398 1 +4738 174 1 +4738 4737 .6 +4738 1764 .8 +3487 1781 1 +3487 1052 1 +3487 1579 1 +3487 4243 1 +3487 328 1 +3487 30 1 +3749 3749 .6 +3749 2456 .8 +3749 105 .8 +3749 2455 .8 +3749 2454 .8 +3749 110 .8 +3749 2501 .8 +3749 749 1 +3749 652 1 +3749 1214 .8 +5399 5399 1 +3341 3340 .8 +5400 1486 .8 +5400 328 1 +3140 106 .8 +3140 445 1 +3140 323 .8 +3140 2726 .8 +3140 46 1 +3140 324 1 +3140 1516 .8 +3140 3103 .8 +3140 3189 .8 +3140 1484 .8 +3140 4067 .8 +3140 345 .8 +30 719 1 +30 46 1 +30 1495 1 +30 1116 1 +30 353 1 +30 1847 1 +30 126 1 +5401 5401 1 +5402 5402 .6 +4547 1231 1 +4547 2521 1 +4547 282 1 +4547 3770 1 +4547 1723 1 +4547 3807 1 +4547 1171 1 +4547 2420 1 +3912 3912 1 +67 67 .8 +67 334 .8 +67 1958 .6 +67 70 .8 +67 71 .8 +67 53 .8 +67 48 .8 +67 295 .8 +67 51 .8 +67 3856 .8 +67 66 .8 +67 69 .8 +67 68 1 +67 328 1 +67 286 1 +67 1609 .8 +67 632 .8 +67 461 .6 +67 739 1 +67 74 1 +67 22 .6 +67 5403 1 +5404 62 1 +5405 5405 .8 +5406 5406 1 +550 550 .8 +550 438 .8 +550 437 1 +550 549 .8 +550 44 1 +550 93 .8 +550 1270 1 +550 1854 .6 +1157 1157 1 +1157 764 1 +1157 2320 .6 +1157 2319 .8 +1157 555 1 +1157 2201 .8 +1157 2290 .8 +5407 5407 .8 +5407 328 1 +5016 5016 .8 +5016 1349 .8 +5408 5408 1 +5408 1318 1 +2749 2782 .8 +2749 2750 .8 +2749 2704 .6 +2749 92 1 +5409 5409 .6 +5410 5410 .6 +5411 326 1 +5411 2536 .8 +5411 325 1 +5411 324 1 +5411 2247 1 +2304 2304 .8 +2304 323 .8 +2304 326 1 +2304 3049 .8 +1020 328 1 +1020 1616 .8 +1020 30 1 +1020 1117 1 +1020 306 .8 +1020 46 1 +1020 171 1 +1020 101 1 +5412 286 1 +5412 3017 .8 +5413 5413 .8 +5414 5414 .8 +5415 5415 .6 +5415 352 1 +5415 2290 1 +5415 1022 1 +943 3224 1 +943 943 1 +943 46 1 +943 784 .8 +943 4066 .8 +943 427 1 +943 883 .8 +943 880 .8 +943 438 .8 +943 2189 .8 +943 431 1 +943 434 1 +943 436 1 +943 739 1 +943 30 1 +943 1157 1 +943 1116 1 +943 1247 1 +943 1065 .8 +943 506 1 +943 2538 .8 +943 647 1 +943 1755 1 +943 352 1 +943 1024 .8 +943 353 1 +943 445 1 +943 440 1 +943 1756 .8 +943 1536 .8 +943 1931 .8 +943 1089 .8 +943 1518 .8 +943 578 .8 +943 5 1 +943 441 1 +943 2188 .8 +943 101 1 +943 1430 .8 +943 1270 1 +943 2517 .8 +943 2216 .8 +943 1517 1 +943 1856 .8 +943 2190 1 +943 1579 1 +943 1318 1 +943 1908 1 +943 1834 1 +943 3537 .8 +943 711 .8 +943 550 .8 +943 44 1 +943 2787 .8 +943 420 .6 +943 1741 .8 +943 437 1 +943 1818 1 +5416 5416 1 +5417 904 .6 +1375 1375 .6 +1375 2227 .8 +1375 721 .6 +1375 4132 .8 +1375 1005 .6 +1375 1386 .6 +1375 261 .8 +1375 2256 .6 +1375 1379 1 +1375 1380 .8 +1375 1389 .6 +5418 5418 .6 +5419 5419 1 +661 661 .6 +661 4238 .8 +661 2492 1 +661 261 .8 +661 660 .6 +5420 5420 .8 +4785 4784 1 +4690 4690 .6 +5421 5422 1 +5421 1160 1 +5421 714 1 +5421 4994 .6 +2706 5327 .6 +2706 632 .8 +2706 1237 1 +2706 1910 .8 +2706 639 1 +2706 3412 .8 +2706 215 1 +2706 717 1 +2706 1831 .6 +2706 1775 .8 +2706 3476 .8 +2706 1906 .8 +2706 2704 .6 +2706 2240 .8 +2706 1795 .6 +2706 1160 1 +2706 3125 .6 +2706 429 1 +3920 716 1 +3920 2754 .8 +3920 194 1 +471 471 .6 +471 2604 .6 +471 1750 .8 +471 1757 1 +471 488 .6 +471 2603 .8 +471 2606 .8 +471 2602 .8 +471 1536 .8 +471 457 .8 +471 1751 .6 +4941 4941 .6 +5423 5423 .6 +1371 1065 1 +1371 784 .8 +5424 5424 1 +2325 2325 .8 +2325 3308 .6 +2325 2971 .6 +2325 3307 .6 +2325 2326 .8 +2325 3382 .6 +4290 2781 1 +4290 4288 1 +4290 4291 1 +1160 326 1 +1160 1086 .8 +1160 316 .8 +1160 1799 .8 +1160 436 1 +1160 46 1 +1160 175 .8 +1160 1116 1 +1160 506 1 +1160 1583 .8 +1160 438 .6 +1160 1024 .6 +1160 747 .6 +1160 1591 .6 +1160 912 .6 +1160 2238 .8 +1160 1081 .6 +1160 353 1 +1160 3350 .8 +1160 1557 .8 +1160 30 1 +1160 5 1 +1160 647 1 +1160 1895 .8 +1160 432 1 +1160 445 1 +1160 435 .8 +1160 1089 .8 +1160 1892 .8 +1160 943 1 +1160 3224 .8 +1160 855 1 +1160 250 .6 +1160 523 .6 +1160 911 .8 +1160 3387 .6 +1160 2518 .6 +1160 962 .8 +1160 280 .6 +1160 328 1 +1160 1834 1 +1160 2880 1 +1160 4534 .6 +1160 1020 .8 +1160 215 1 +1160 1908 1 +1160 2224 .8 +1160 1652 .8 +1160 373 .8 +1160 2221 .8 +1160 1471 1 +1160 1247 1 +1160 813 1 +1160 639 1 +1160 2226 .8 +1160 1893 1 +1160 305 1 +1160 2218 .8 +1160 1856 1 +1160 431 1 +1160 844 .8 +1160 717 1 +1160 5425 .6 +1160 93 .6 +1160 5165 .6 +1160 4302 1 +1160 2231 1 +1160 1775 .8 +1160 2787 .8 +1160 400 .8 +1160 1242 .6 +1160 441 1 +1160 5426 .8 +1160 308 .8 +1160 2267 .8 +1160 773 .6 +1160 2084 .6 +1160 2807 .8 +1160 437 .8 +1160 3432 .8 +1160 1632 .8 +1160 3678 .6 +1160 3640 .8 +1160 2033 .6 +1160 737 1 +1160 3923 1 +1160 2085 .8 +1160 5395 .8 +1160 4906 1 +1160 2219 .8 +1160 5055 .8 +1160 5421 .6 +1160 2635 .8 +1160 5390 1 +4023 1398 1 +4023 4023 .6 +4023 3514 .8 +4023 4024 .6 +4023 4020 .6 +4023 1742 .8 +5427 540 1 +5427 5427 1 +5428 5428 1 +5428 1816 .6 +5429 5429 1 +3615 3615 .8 +3615 1211 .8 +3615 784 .8 +3615 1411 .8 +3615 883 .8 +3615 4075 .8 +3615 286 1 +3615 121 1 +3615 657 .8 +3615 46 1 +3615 3240 .8 +3615 328 1 +3615 5430 .6 +978 978 .6 +1388 165 1 +1388 167 1 +1388 1450 .8 +1388 497 1 +1750 1750 .8 +1750 457 .8 +1750 1751 .6 +1750 1536 .8 +1750 2985 .8 +1750 5431 .6 +1750 1246 1 +1750 2602 .8 +1750 488 .6 +1750 1757 1 +1750 126 1 +1750 324 .8 +1750 2606 .8 +1750 2604 .6 +1750 471 .6 +1750 2013 .6 +1750 2016 .8 +1750 2008 .8 +1750 2601 .8 +1750 2605 .6 +1750 3084 .6 +1750 2551 .8 +1750 2888 .6 +1750 681 .8 +1750 905 .8 +5432 5432 .8 +5432 5433 .6 +4116 174 .8 +4116 1404 .6 +4116 1002 .8 +5434 2781 .8 +2064 2064 .6 +2064 1639 .6 +2064 46 1 +2064 719 1 +2064 857 .8 +457 46 1 +457 642 1 +457 2666 .8 +457 1022 .8 +457 1518 .8 +457 1308 .8 +457 829 .8 +457 4564 .6 +457 282 1 +457 33 .6 +457 440 1 +457 385 1 +457 784 .8 +457 1751 .6 +457 328 1 +457 584 1 +457 142 .8 +457 789 .8 +457 739 .8 +457 445 1 +457 1750 .8 +457 226 .8 +457 456 .8 +457 887 .8 +457 1606 .6 +457 501 .8 +457 1757 1 +457 1216 .6 +457 3119 .6 +457 2601 .8 +457 1967 .8 +457 4942 .6 +457 2042 .8 +457 776 .8 +457 2034 .6 +457 274 .8 +457 1779 .6 +457 1774 .6 +457 788 .8 +457 1603 1 +457 1386 .6 +457 1601 .8 +457 1383 .8 +457 3449 .8 +457 2486 .8 +457 3259 .6 +457 3228 .6 +457 2142 .6 +457 918 1 +457 2913 1 +4328 92 .8 +4328 1023 1 +4328 1017 .8 +4328 22 1 +3228 500 .6 +3228 1939 .6 +3228 3228 1 +3228 634 1 +3228 1868 .6 +3228 1362 1 +3228 2486 .6 +3228 990 .8 +3228 42 .8 +3228 708 .8 +3228 46 1 +3228 719 1 +3228 30 1 +3228 328 1 +3228 3226 1 +3107 3107 .8 +3107 3475 .8 +3107 126 1 +3107 530 .6 +3107 4539 .8 +3107 1247 .8 +3107 805 .8 +3107 3106 1 +3107 614 1 +3107 888 1 +3107 326 1 +211 3384 1 +211 210 1 +211 1451 .8 +211 1549 .8 +211 207 1 +5435 5435 .6 +5435 46 1 +5435 1116 1 +5435 353 1 +5435 2312 .8 +5435 506 1 +5435 126 1 +5435 5112 1 +5435 610 1 +1561 1561 .6 +1561 618 1 +1561 3239 1 +1561 2091 .8 +1561 578 .8 +1561 1065 1 +1561 643 1 +1561 428 .8 +1561 4 .8 +1561 1191 .8 +1561 736 1 +1561 855 1 +1561 2215 .8 +1561 1554 .8 +1561 2092 .8 +1561 2090 .8 +1561 429 1 +1561 2208 .6 +1561 1555 1 +1561 2219 1 +1561 1816 .8 +1561 1270 1 +1379 1380 .8 +1379 1386 .6 +1379 3441 .6 +1379 1379 .8 +726 706 .6 +614 614 .8 +614 739 1 +614 855 1 +614 2950 .6 +614 91 .8 +614 789 .8 +614 736 1 +614 740 .8 +614 834 .8 +614 318 .8 +614 329 1 +614 2678 .8 +614 837 .8 +614 2679 .8 +614 648 1 +614 1982 .8 +614 805 .8 +614 632 .8 +614 5034 .6 +614 893 1 +614 785 .8 +614 525 .8 +1841 990 .8 +1841 1842 .8 +1841 1840 .8 +4490 1486 1 +811 811 .8 +811 328 1 +811 719 1 +811 30 1 +811 785 .8 +811 46 1 +4581 1993 1 +4581 438 1 +4581 523 .8 +4581 934 1 +4581 2272 .6 +4581 530 .8 +4581 469 1 +4581 547 .8 +4581 1685 .8 +4581 1447 1 +4581 492 1 +4581 712 .8 +4581 34 .8 +4581 525 .8 +4581 4581 .6 +5436 5436 .6 +5436 3002 1 +5436 4779 1 +5436 5437 1 +5438 5438 .8 +5438 739 1 +5438 353 1 +5438 46 1 +5438 329 1 +5438 718 .8 +5438 855 1 +5438 656 .8 +5438 296 .8 +3464 3464 .6 +4076 44 .8 +4076 232 .6 +5439 5439 .6 +1656 30 1 +1656 46 1 +1656 4043 .8 +1656 1656 .8 +1656 346 .8 +1656 157 .8 +1656 1049 .8 +1656 214 .6 +1656 328 1 +1656 215 .8 +1656 779 .8 +1656 717 1 +1656 793 .8 +1656 107 .6 +1656 675 .6 +1656 1384 .6 +1656 438 .8 +1656 776 1 +1656 2420 1 +1656 2733 .8 +1656 22 1 +1656 461 .6 +1656 44 1 +1656 440 1 +1656 1781 .8 +1656 1569 .8 +1656 165 1 +1656 597 .8 +1656 1874 .6 +1656 1917 .8 +5440 5440 .6 +4539 822 .6 +4539 141 .8 +4539 232 .6 +4539 4539 1 +4539 5270 .6 +4539 46 1 +4539 1936 .6 +4539 113 .8 +4955 1229 1 +4955 274 1 +4955 4955 .6 +1182 3424 .6 +1182 793 .8 +1182 1223 .6 +1182 157 .8 +1182 4703 .8 +1182 2782 .6 +1182 1160 1 +1182 1630 .6 +1182 1236 .8 +1182 20 .8 +1182 583 .8 +1182 3918 .8 +1182 905 .6 +1182 276 .8 +1182 4283 .8 +1182 597 .8 +1182 1366 .8 +1182 718 .8 +1182 2199 .8 +1182 1248 1 +1182 2578 .8 +1182 634 1 +1182 1495 1 +1182 1384 .6 +1182 214 .6 +1182 1174 .8 +1182 4196 .8 +1182 960 .8 +1182 22 1 +1182 1964 .8 +1182 610 1 +1182 2269 .8 +1182 708 .8 +1182 779 .8 +1182 3455 .6 +1182 2634 .6 +1182 124 .8 +1182 125 .8 +1182 642 1 +1182 2892 .8 +1182 888 .8 +1182 3125 .6 +1182 3415 .8 +1182 2200 .8 +1182 791 1 +1182 1394 .8 +1182 109 .8 +1182 646 1 +1182 3021 .8 +1182 2793 .8 +1182 1872 .8 +1182 830 1 +1182 3986 .8 +1182 4035 .8 +1182 3520 .6 +1182 2372 .8 +1182 1782 .8 +1182 5289 .8 +1182 2080 .8 +1182 2197 .8 +1182 4868 .8 +1182 1775 1 +1182 5441 .6 +1182 5442 .6 +1182 3181 .6 +1182 3419 .6 +1182 3427 .6 +1182 5443 .6 +1182 5444 .8 +1182 1293 .8 +1182 2352 .8 +1182 5445 .8 +1182 1978 .8 +1182 1636 .8 +1182 1622 .8 +1182 3915 .8 +1182 844 .8 +1182 165 1 +1182 5446 .6 +1182 353 1 +1182 3051 .6 +1182 1092 1 +1182 2153 .6 +1182 5447 .8 +1182 3508 .6 +5448 5448 .6 +5449 5449 .6 +5450 5450 1 +5451 22 1 +5452 2277 .8 +5452 5453 .8 +5452 5317 .8 +5452 3424 .8 +5452 1053 .8 +5452 789 .8 +2259 2259 .6 +2259 2222 1 +2259 4102 1 +2259 2992 .6 +2259 1065 1 +2259 3398 .8 +2259 597 .8 +2259 4101 .6 +2259 1816 1 +2259 4254 .8 +2259 431 1 +2259 2774 .6 +2259 324 1 +2259 323 1 +2259 619 .8 +2259 3441 .6 +2259 2414 .6 +2259 1386 .6 +2259 2227 .8 +2259 429 1 +2259 1375 .6 +2259 1379 1 +2259 1067 .8 +2259 578 1 +2259 2233 .8 +2259 984 .8 +463 370 .8 +463 463 .8 +463 464 .8 +463 46 1 +463 1378 .6 +463 1630 .6 +463 776 .8 +463 2350 .6 +463 712 .8 +463 2141 .8 +463 461 .8 +463 2705 .8 +463 4942 .6 +463 397 .6 +463 858 .8 +463 1147 .6 +463 1183 .6 +463 2126 .8 +463 462 .6 +463 2274 .8 +463 214 .8 +463 157 .8 +463 465 1 +463 369 .8 +3308 3308 .6 +3308 1086 .8 +3308 3307 .8 +3308 3309 .6 +3308 2666 .8 +3308 2971 .8 +427 427 1 +427 426 1 +427 118 1 +427 46 1 +427 1075 1 +427 1124 1 +427 30 1 +427 642 1 +427 22 1 +427 424 1 +427 425 1 +427 112 1 +427 770 1 +427 624 .8 +427 1799 1 +427 3574 1 +5454 5454 .6 +5455 830 1 +5455 5455 .8 +2793 414 1 +2793 1182 1 +2793 526 1 +2793 1394 1 +2793 1160 1 +2793 1731 1 +2793 2130 1 +2793 978 1 +2793 1254 1 +2793 1009 1 +2793 4616 1 +2793 4615 1 +2793 1266 .8 +2793 944 1 +2793 776 1 +2793 1270 1 +2793 736 1 +2793 4124 1 +2793 819 1 +2793 1373 1 +2793 784 1 +2793 615 1 +2793 785 1 +2793 2740 1 +2793 1964 1 +2793 1398 1 +2793 779 1 +2852 1692 .8 +2852 1211 .8 +3453 3453 .8 +4063 4062 .6 +4063 1389 .6 +4063 1047 .8 +5456 5456 .8 +1380 1380 .8 +1380 2227 .8 +1380 1379 .8 +5457 5457 .8 +5458 5458 .6 +5459 683 1 +5328 5327 .6 +5328 5328 .6 +5328 5460 .6 +3119 3119 .6 +3119 106 .8 +3119 514 .8 +3119 2020 .6 +3119 86 .8 +3119 9 .8 +5461 819 .6 +5461 328 1 +5461 46 1 +5461 3099 .6 +5461 429 1 +5461 5461 .6 +5462 17 .6 +5462 2251 1 +5462 2147 .6 +5462 1093 .6 +5462 4239 .6 +5462 163 1 +5462 417 .8 +5462 1827 .8 +5463 5463 .8 +5464 5464 1 +5465 5465 .8 +552 552 .8 +552 328 1 +5466 5466 .6 +5466 5467 .8 +3983 3983 1 +5363 5363 .6 +5363 1498 .6 +5363 526 .8 +5363 1488 .6 +5363 677 .8 +5363 1371 .8 +5363 784 1 +4628 4628 .6 +5468 46 1 +5468 441 1 +5469 5469 1 +5470 5470 .6 +5470 1538 .8 +5470 716 1 +5470 59 .8 +5471 5471 .6 +2878 118 1 +2878 1918 .8 +2878 829 .8 +2878 797 .8 +2878 2878 .6 +1811 2922 .8 +1811 345 1 +1811 597 .8 +1811 378 .6 +1811 242 .8 +1811 584 1 +1811 996 .8 +1811 791 .8 +4729 4729 .8 +574 574 .8 +574 558 .8 +574 3233 .6 +574 736 1 +574 792 .8 +574 738 .8 +574 739 1 +574 467 .8 +574 1308 .8 +574 701 .8 +574 1307 .8 +574 741 .8 +574 84 .8 +574 1053 .8 +574 1176 1 +574 648 .8 +574 142 .8 +574 789 .8 +574 86 .8 +574 835 .8 +574 656 .8 +574 1505 .8 +574 106 .8 +574 286 1 +574 46 1 +574 837 .8 +574 506 1 +574 30 1 +574 1286 .8 +574 859 .8 +574 855 1 +574 3078 .8 +574 3230 .8 +574 329 1 +574 2103 .8 +574 352 1 +574 1454 .8 +574 353 1 +574 1452 .8 +574 2213 .8 +574 801 .8 +574 1694 .8 +574 90 .8 +574 405 1 +574 163 .8 +1535 46 1 +1535 1534 .6 +1535 1233 .6 +1535 1353 .8 +1535 5472 .8 +1535 540 .6 +1535 1797 .8 +1535 328 1 +1535 1616 1 +1535 591 .6 +1535 1216 .6 +1535 273 .8 +1535 4083 .8 +1535 1996 1 +1535 2272 .6 +1535 933 .8 +1535 1917 .8 +1535 34 .8 +1535 126 1 +1535 81 .6 +1535 523 .8 +1535 545 .8 +1535 1436 1 +3527 3527 .6 +2728 30 1 +2728 1307 .8 +2728 2728 .6 +2728 719 1 +2728 1434 .8 +2728 1117 1 +2728 646 .8 +2728 1804 .8 +2728 791 .8 +2728 46 1 +2728 431 1 +2728 2918 .8 +2728 1165 .8 +5473 5473 1 +5474 5474 .8 +5475 351 1 +5475 1943 1 +5475 303 1 +5475 2485 .8 +5475 3537 1 +5476 2412 .8 +5476 996 .8 +5476 3099 .8 +5476 1313 1 +5476 1030 1 +5476 825 .8 +5476 286 1 +5476 344 1 +5476 1860 .8 +5476 586 .8 +5476 48 1 +5476 599 1 +5476 1915 .8 +5476 4751 .8 +5477 1365 .8 +5477 2634 .8 +5477 552 .8 +1616 174 .8 +1616 468 .8 +1616 1117 1 +1616 326 1 +1616 1079 .8 +1616 1437 .8 +1616 501 .6 +5478 5478 .6 +5479 19 1 +5479 481 .8 +5479 3067 1 +5479 81 .6 +5479 305 .8 +5479 2247 1 +5479 5480 .8 +5479 1934 .6 +5395 1160 1 +5395 5394 .8 +5481 5481 .6 +4918 4918 1 +5482 5482 1 +1968 1968 .8 +1968 1370 .8 +1968 1418 .8 +1968 780 .8 +1968 1004 .6 +1968 30 1 +1968 126 1 +1968 346 .8 +1968 46 1 +1968 2350 .8 +5483 469 1 +612 407 .8 +612 1156 .8 +612 438 1 +612 2278 1 +612 286 1 +612 618 1 +612 1778 .8 +612 2625 .8 +612 2342 .8 +612 711 1 +612 290 1 +612 148 1 +612 1158 1 +612 1116 1 +612 1579 1 +612 1154 1 +612 283 1 +612 1471 1 +612 2268 .8 +612 2343 1 +612 292 1 +612 746 1 +612 1626 1 +612 911 1 +612 764 1 +612 1969 .8 +612 296 1 +612 747 1 +612 3198 1 +612 1545 .8 +612 578 1 +612 1145 .8 +612 3128 1 +612 5147 1 +612 4721 1 +612 375 1 +612 1562 1 +612 1569 1 +612 3127 1 +612 2269 1 +612 1052 1 +612 1781 1 +612 962 1 +612 2230 .8 +612 1160 1 +612 474 .8 +612 1222 1 +612 3787 1 +612 4513 1 +612 4720 1 +612 5484 .8 +612 1308 1 +612 3706 1 +612 3707 .8 +612 346 1 +612 46 1 +612 506 1 +612 1024 1 +612 30 1 +612 5 1 +612 44 1 +612 445 1 +612 215 1 +612 1856 1 +612 431 1 +612 328 1 +612 716 1 +612 904 .8 +612 2449 .8 +612 2349 .8 +5485 5485 .8 +5486 5486 .6 +5486 46 1 +215 328 1 +215 735 .8 +215 737 .8 +215 1638 .6 +215 1753 1 +215 1028 .8 +215 34 .6 +215 1086 .8 +215 405 .8 +215 1041 .8 +215 297 1 +215 1703 .6 +215 1834 .8 +215 638 .8 +215 44 .8 +215 3347 .8 +215 2880 .8 +215 1016 .8 +215 3153 .6 +215 5487 .6 +215 227 .6 +215 214 .6 +215 893 .6 +215 757 .6 +215 2925 .6 +215 3275 .6 +215 358 .6 +215 1240 .6 +215 1186 .6 +215 232 .6 +215 703 .6 +215 1602 .6 +215 759 .8 +215 19 .6 +215 1801 .6 +215 1150 .8 +215 2700 .6 +215 5488 .6 +215 4271 .8 +215 390 .8 +215 887 .8 +215 246 .6 +215 841 .8 +215 579 .8 +215 2610 .8 +215 1585 .6 +215 2221 .8 +215 191 .8 +215 429 .8 +215 1333 .6 +215 1160 .8 +215 322 .8 +215 3287 .6 +215 989 .6 +215 711 .8 +215 5072 .6 +215 614 .8 +215 802 1 +215 1959 1 +5489 5489 .6 +5489 1386 .8 +5489 214 .6 +5489 215 1 +237 237 .8 +237 1314 .6 +237 1422 .6 +237 5490 .8 +237 1706 .6 +237 3808 .6 +237 377 .8 +237 5491 .6 +237 5492 .8 +105 105 .8 +105 2453 .8 +105 652 1 +105 1210 .8 +105 1499 .8 +105 2454 .8 +105 286 1 +105 858 1 +105 1212 .8 +105 430 .8 +105 1123 1 +105 2455 .6 +105 290 1 +105 377 .6 +105 1127 .8 +105 659 1 +105 113 .8 +105 110 .8 +105 1222 .8 +105 747 1 +105 1479 1 +105 748 1 +105 1605 .8 +105 137 1 +105 746 1 +105 1205 .6 +105 1214 .8 +105 836 .8 +105 1219 .8 +105 2460 .8 +105 749 1 +105 1213 .8 +105 2501 .8 +105 743 1 +105 647 1 +105 2458 .8 +105 954 .8 +627 5493 .8 +627 2221 1 +627 629 1 +627 2550 .8 +627 624 1 +627 577 1 +627 650 .8 +627 193 1 +627 1352 .8 +627 627 .8 +627 274 1 +627 1768 1 +627 49 1 +627 655 1 +627 5494 .8 +627 194 .8 +627 918 1 +627 1229 1 +627 1177 1 +627 29 1 +627 333 1 +627 100 1 +627 1524 .8 +627 497 1 +1492 1492 .8 +1492 937 1 +1492 1490 1 +1492 1491 1 +1492 673 .8 +1492 2762 .8 +1492 1002 1 +1492 1001 1 +1492 2252 1 +1492 719 1 +1492 3625 .8 +1492 2911 .8 +1492 5495 1 +1492 3935 1 +1964 1964 .8 +1964 3679 .8 +1964 46 1 +1964 224 .8 +1964 1652 1 +1964 1586 1 +1964 736 1 +1964 802 1 +1964 44 1 +1964 428 1 +1964 329 1 +1964 30 1 +1964 353 1 +5496 5496 .6 +5496 984 .8 +5497 5498 .6 +5497 1170 .6 +5497 2789 1 +5497 1361 1 +5497 96 .8 +5497 574 .8 +5497 739 1 +5497 2263 1 +2702 1407 1 +2702 1906 .8 +2702 46 1 +1447 2210 .8 +1447 431 .8 +1447 1086 .8 +1447 439 .8 +1447 2078 .8 +1447 437 .8 +1447 1996 .8 +1447 46 1 +1447 438 .8 +1447 1894 .8 +1447 318 .8 +1447 1160 .8 +1447 5267 .8 +1447 4643 .8 +1447 95 .8 +1447 738 1 +1447 2652 .8 +1447 440 1 +1447 1233 .6 +1447 93 .8 +1447 1446 .8 +3450 1195 .8 +3450 1194 .8 +5499 5499 .6 +2715 90 .8 +2715 1898 .8 +2715 1818 .8 +2715 736 .8 +2715 1343 1 +2715 4067 .8 +2715 3380 .6 +2715 38 .8 +2715 194 .6 +2715 2714 .6 +2715 318 1 +5500 5500 .8 +5501 5501 .8 +5502 5031 .6 +5502 5502 .8 +5502 801 .8 +2781 429 1 +2781 2207 1 +2781 431 1 +2781 2092 1 +2781 2090 1 +2781 969 1 +2781 1067 .8 +2781 863 1 +2781 4290 1 +2781 4101 1 +2781 782 1 +2781 4288 1 +2781 3972 1 +2781 4291 1 +2781 720 1 +2781 618 1 +2781 2222 1 +2781 1386 1 +2781 2227 1 +2781 2415 1 +2781 2259 1 +2781 4230 .8 +2781 4412 1 +2781 707 1 +2781 3398 1 +2781 1823 1 +2781 1065 1 +2781 282 1 +2781 1816 1 +2781 1379 1 +2781 578 1 +2781 1270 1 +2781 984 1 +2781 324 1 +2781 725 1 +2781 1247 1 +2781 46 1 +2781 4413 1 +2781 1191 1 +2781 2091 1 +2781 1554 1 +2781 643 1 +2781 428 1 +2781 853 1 +2781 2215 1 +2781 2219 1 +2781 2228 1 +2781 22 1 +2781 1058 1 +2781 2208 1 +2781 329 1 +2781 739 1 +2781 2205 1 +2781 112 1 +2781 859 1 +2781 3678 1 +2781 5434 1 +2781 4699 1 +621 621 .8 +2603 1757 1 +2603 2602 .8 +1583 46 1 +1583 352 1 +1583 438 .8 +1583 1086 .8 +1583 1160 .8 +5503 5503 1 +5503 326 1 +5503 1661 .8 +4043 1656 .8 +5504 1167 1 +5505 5506 1 +5507 5508 .6 +3256 3256 .6 +3256 1339 .8 +5509 5509 .6 +5510 5510 .6 +4147 4147 .6 +4959 4959 .8 +4959 809 .8 +4959 4958 .8 +4959 3482 1 +305 30 1 +305 1020 1 +305 328 1 +305 1079 .8 +305 323 .8 +305 719 1 +305 324 1 +305 352 1 +305 46 1 +305 303 1 +305 1072 .8 +305 1633 .8 +305 174 .8 +305 353 1 +305 1116 1 +305 511 1 +305 1075 1 +305 304 1 +305 101 1 +305 1162 .8 +305 2218 1 +305 349 1 +305 307 1 +1679 248 .8 +1679 812 .8 +1679 1586 1 +1679 370 .8 +1679 793 .8 +1679 1047 .8 +1679 316 1 +1679 214 .8 +1679 776 .8 +1679 328 1 +1679 1971 .6 +1679 1142 .8 +1679 2157 .8 +1679 1277 1 +1862 1123 1 +1862 1863 .8 +1862 642 1 +1862 652 .8 +1862 1862 .8 +1862 2291 .8 +1862 5127 .8 +1862 858 1 +1862 110 .8 +1862 1861 .8 +1862 1200 .8 +1862 167 .8 +1862 49 .8 +1862 290 1 +1862 1212 .8 +1862 659 1 +1862 1499 .8 +1862 328 1 +1862 1214 .8 +1862 747 1 +1862 748 1 +1862 764 1 +1862 647 1 +1862 590 .6 +1862 1864 .6 +1671 324 .8 +1671 328 .8 +1671 1671 .8 +1671 326 1 +1671 1185 .6 +1671 586 .6 +1671 2135 .8 +1671 887 .8 +1671 45 1 +1671 860 .8 +1671 857 .8 +1671 1557 1 +1671 83 .8 +1671 277 1 +1671 1135 .8 +1671 858 1 +1671 1132 .6 +1671 38 .8 +1671 788 .8 +1671 2190 .6 +1671 584 .8 +1671 323 1 +1671 2363 .6 +1671 1022 1 +1671 904 .8 +1671 1702 .8 +1671 3491 .8 +1671 1162 .8 +1671 4277 .8 +1671 94 .8 +1671 2565 .8 +1671 5511 .6 +1671 292 1 +1671 3316 .8 +1671 1670 .6 +1671 4150 .6 +1671 255 .6 +1671 918 1 +1671 271 .8 +1671 246 .6 +1671 795 .6 +1671 214 .8 +1671 643 1 +1671 1559 .8 +1671 17 .6 +1671 306 1 +1671 4973 .6 +1671 776 1 +1671 364 .8 +5512 5512 .6 +5513 166 1 +5513 22 1 +5513 3856 .8 +5513 233 1 +5513 332 1 +5513 2614 1 +5513 1798 1 +5513 1356 1 +5513 948 .6 +5513 1816 1 +5513 1685 .8 +5513 1089 1 +5273 5273 .8 +5273 649 1 +3561 45 1 +3561 1384 .8 +3561 595 .8 +3561 328 1 +3561 1159 .6 +3561 610 1 +3561 1365 .8 +3561 1514 .8 +3561 1385 .6 +3561 1626 .8 +3561 5514 .8 +3561 1154 1 +3561 1747 .8 +3561 716 1 +3268 3268 1 +3268 3343 .6 +3268 3342 .8 +3268 803 .6 +3268 993 1 +3268 626 1 +3268 3904 1 +3268 3395 .8 +5515 5515 .6 +5516 329 1 +5516 30 1 +5516 739 1 +5517 5517 .6 +5518 5519 1 +5520 5520 1 +5521 5521 1 +2152 2152 .6 +2152 2134 .6 +5430 5430 .6 +5522 5522 1 +1230 1230 1 +1230 359 .6 +1230 764 1 +1230 282 1 +1230 22 1 +1230 2521 1 +4600 4600 .6 +4600 45 1 +5523 5523 .8 +5056 5056 .6 +5056 651 .8 +263 263 .8 +263 1551 .8 +263 2308 .8 +263 993 .8 +263 1586 .8 +263 214 .8 +263 258 .8 +263 1486 .8 +263 666 .8 +263 737 1 +263 2306 1 +263 597 .8 +263 378 .6 +263 5524 .6 +263 712 .8 +263 323 .8 +263 518 .8 +263 2307 .8 +263 2232 1 +263 269 .6 +263 148 .8 +263 19 .8 +263 89 .6 +263 364 .8 +263 271 .8 +263 919 .8 +263 2657 .8 +263 1246 1 +263 329 1 +263 857 .8 +263 613 .8 +263 773 .6 +263 4695 .6 +355 46 1 +355 286 1 +355 3281 .8 +355 355 .8 +355 1027 .8 +778 778 .8 +778 449 .8 +778 1212 .8 +778 1031 1 +778 1020 1 +778 4468 1 +822 822 .6 +822 638 .8 +822 572 1 +822 312 .6 +822 1450 .6 +822 1756 .8 +822 807 1 +822 3376 .6 +822 200 .8 +822 1543 .8 +822 1917 .8 +822 251 .6 +822 1219 .8 +822 1033 .8 +822 724 .6 +70 70 .6 +70 1165 .6 +70 3655 .6 +70 3380 .6 +70 1422 .6 +70 311 .6 +70 3382 .8 +70 2186 .6 +70 1498 .6 +70 3343 .6 +70 3490 .6 +70 965 .6 +70 1984 .6 +70 578 .8 +70 1737 .6 +70 1047 .6 +70 597 .8 +70 1192 .6 +70 471 .6 +70 5240 .6 +70 488 .6 +70 251 .6 +70 917 .6 +70 1958 .6 +70 67 .8 +70 334 .8 +70 724 .8 +70 68 .6 +70 74 .8 +523 523 .8 +523 438 .8 +523 1078 .8 +523 2272 .8 +523 933 .8 +523 807 .8 +523 501 .8 +523 33 .6 +523 34 .8 +523 1160 .8 +523 492 .8 +523 893 1 +523 2271 .8 +523 511 1 +523 712 .8 +523 1000 .8 +523 525 .8 +523 1020 1 +523 719 1 +523 1075 .8 +523 324 .8 +523 466 .8 +523 304 .8 +523 829 .8 +523 659 1 +523 934 1 +523 915 .8 +523 171 1 +523 172 1 +523 1754 1 +523 2614 .8 +523 349 1 +523 1052 1 +523 1847 1 +523 577 1 +523 1557 1 +523 353 1 +523 2208 .8 +523 2985 .8 +523 298 .8 +523 1535 .8 +523 530 .6 +523 949 .8 +523 1798 .8 +523 2482 .8 +523 2224 .8 +523 547 .8 +523 1019 .6 +523 939 .8 +523 469 .8 +523 255 .6 +523 780 .8 +523 804 .8 +523 990 .8 +523 2002 1 +523 46 1 +523 543 .6 +523 2226 .8 +523 1352 .6 +523 4581 .8 +523 830 .8 +523 1004 .6 +523 45 .8 +523 982 .8 +987 987 .8 +987 751 1 +987 928 .6 +987 597 .8 +987 638 .8 +987 19 .8 +987 4147 .8 +987 923 .6 +987 801 .8 +987 741 1 +987 584 1 +987 1172 .8 +987 2239 .8 +987 856 .8 +987 1500 .6 +987 4940 .6 +987 960 .8 +987 528 .6 +987 258 .6 +987 1306 .8 +987 1640 .8 +987 2789 .8 +987 167 .8 +987 1703 .6 +987 242 .8 +987 2013 .6 +987 107 .6 +987 5250 .6 +987 1243 .8 +987 297 1 +987 893 1 +987 362 .8 +987 524 .8 +987 46 1 +987 194 .8 +987 232 .6 +987 9 .8 +987 703 .6 +987 988 .6 +987 81 .6 +987 610 1 +987 996 .8 +987 3032 .8 +987 467 .8 +3061 3061 .8 +3061 126 1 +2756 2756 .8 +2756 1604 .6 +2756 1605 .8 +2756 2989 .8 +3652 3652 .6 +3652 390 1 +3652 593 .8 +5525 5525 .8 +5525 2756 .6 +5525 286 1 +5525 1450 .8 +5526 1809 .8 +5527 62 1 +5527 4155 .8 +5527 4604 .6 +3948 438 .8 +3948 3947 .8 +1402 1402 .8 +1402 2059 .8 +1402 1400 .6 +1402 574 .6 +1402 4491 .8 +1402 439 .8 +1402 46 1 +1402 658 .6 +1402 4343 .6 +5528 4713 .8 +5529 5529 .6 +5530 5530 .6 +5531 2153 .8 +5531 2979 .6 +5531 3463 .6 +5531 2062 .8 +5531 3651 .6 +5531 2050 1 +5531 2276 .8 +5531 284 .6 +5532 5532 .6 +5533 5533 .6 +1852 1852 1 +1852 349 1 +1852 678 .8 +1852 2974 .8 +1852 624 1 +1852 2975 .8 +1852 830 1 +1852 2255 1 +1852 3538 .6 +1852 2254 .8 +1039 991 .6 +1039 1038 .6 +1039 1016 1 +1039 1030 1 +1039 1039 .6 +1039 1034 .8 +5534 5534 .6 +1640 736 1 +1640 739 1 +1640 584 1 +1640 648 1 +1640 789 .8 +1640 142 1 +1640 91 .8 +1640 86 .8 +1640 835 .8 +1640 837 .8 +1640 329 1 +1640 855 1 +1640 2213 .8 +1139 9 .8 +1139 107 .8 +1139 923 .6 +1139 631 .6 +1139 46 1 +1139 499 .6 +1139 1585 .6 +1139 582 .8 +1139 1407 .6 +1139 887 .8 +1139 646 1 +1139 214 .8 +1139 964 .8 +1139 681 .8 +1139 1685 .8 +1139 712 .8 +1139 5535 .8 +1139 83 .8 +1139 1113 .8 +1139 607 .8 +1139 261 .8 +1139 3130 .6 +1767 296 1 +1767 3281 1 +1767 58 .8 +1767 1767 .8 +1767 57 .8 +1767 50 .8 +1767 61 .8 +1767 51 .8 +1767 333 1 +1767 331 .8 +5536 5536 .6 +5537 5537 1 +5538 1939 1 +5538 5538 .6 +988 807 1 +988 1546 .8 +988 3103 1 +988 324 1 +988 1167 .8 +988 1650 .6 +988 1839 .8 +988 322 .8 +988 804 .8 +988 286 1 +988 1075 .8 +988 1589 .8 +988 987 .6 +988 511 .8 +988 631 .8 +988 630 .8 +988 1154 .8 +988 624 .8 +988 779 .8 +988 2482 1 +988 1964 .8 +988 2255 1 +5539 5539 .6 +2751 391 .8 +2751 739 1 +2751 1689 .8 +2751 106 .8 +2751 801 .8 +2751 390 .8 +2751 1309 .8 +2751 91 .8 +2751 789 .8 +2751 855 .8 +2751 741 .8 +2751 84 .8 +2751 856 .8 +2751 1659 .8 +2751 1754 1 +2751 2751 .6 +2751 792 .8 +2751 740 .8 +2751 2961 .8 +2751 3313 .8 +2751 648 1 +2751 1684 .8 +1052 1052 .8 +1052 175 .6 +1052 296 1 +1052 1579 1 +1052 375 1 +1052 1781 1 +1052 336 1 +1052 3127 1 +1052 1626 1 +1052 2269 .6 +1052 1562 1 +2478 2478 .8 +89 89 .8 +89 22 1 +89 30 1 +89 286 1 +89 1047 .6 +89 19 .6 +89 1886 .8 +89 92 1 +89 1898 .8 +89 518 .6 +89 893 .8 +89 764 1 +89 917 .8 +89 2171 1 +89 328 1 +89 966 .8 +89 1650 .8 +89 1685 .8 +89 98 .8 +89 157 .8 +89 1159 .6 +89 255 .8 +89 773 .6 +89 103 .8 +89 630 .6 +89 1624 .6 +89 214 .8 +89 1175 1 +89 1399 .8 +89 165 .8 +3634 5066 .6 +3634 82 .8 +5540 357 .8 +5540 5540 .8 +5540 584 1 +1892 320 .6 +1892 46 1 +1892 1086 .8 +1892 738 1 +1892 431 .8 +1892 1996 1 +1892 436 1 +1892 1718 .6 +1892 907 1 +1892 1892 1 +1892 30 1 +1892 2210 .8 +1892 352 1 +1892 209 .8 +1892 316 .8 +1892 437 1 +1892 1288 .8 +1892 439 .8 +1892 2078 1 +1892 1719 .6 +1892 1160 .8 +1892 326 1 +1892 441 .8 +1892 112 1 +1892 701 .8 +1892 2068 1 +1892 584 .8 +1892 3116 .6 +1892 317 .8 +1892 445 .8 +1892 429 .8 +1892 631 .6 +1892 154 .8 +5541 5541 .6 +5541 1704 .6 +1733 1732 1 +1733 1731 1 +5542 5542 .6 +5356 469 .8 +5356 1507 .8 +5356 2652 1 +5356 5356 .6 +5356 1886 .6 +5543 5543 .6 +5544 919 .8 +5544 214 .8 +5544 89 .6 +5544 632 .8 +5544 799 .6 +5544 813 1 +5544 93 .8 +4026 584 1 +4026 1406 .6 +5545 5545 .6 +5546 1981 1 +5546 1970 .6 +1659 855 1 +1659 142 .8 +1659 1659 .8 +1659 736 1 +1659 837 .8 +304 1754 1 +304 30 1 +304 1020 1 +304 719 1 +304 739 1 +304 324 .8 +304 316 1 +304 511 1 +304 353 1 +304 329 1 +304 1799 1 +304 46 1 +304 434 .8 +304 303 .8 +304 2078 .8 +304 174 .8 +304 328 1 +304 432 .8 +304 1720 .8 +2579 2243 .8 +2579 2106 .6 +2579 1653 .8 +1244 1244 .8 +1244 1237 1 +1244 4775 .6 +1244 233 .8 +5547 5547 .6 +5548 5548 .8 +71 71 .8 +71 31 .8 +71 33 .6 +71 737 .8 +71 753 .6 +71 334 .8 +71 67 .8 +71 70 .6 +71 1764 .8 +71 1515 .8 +71 29 .8 +71 2400 .6 +71 53 .8 +71 1078 .8 +71 295 .8 +71 68 .6 +4851 385 .8 +4851 286 1 +4851 49 .8 +4851 2984 .8 +5549 5549 .8 +703 1233 .6 +703 642 1 +703 786 .8 +703 44 1 +703 643 1 +703 1233 .6 +703 438 .8 +703 1022 .8 +703 718 .8 +703 1685 .6 +703 738 .8 +703 215 1 +703 784 .8 +703 316 1 +703 1894 1 +703 705 .8 +703 429 .8 +703 1998 .6 +703 4581 .6 +703 46 1 +703 2835 .8 +703 739 1 +703 1446 .8 +703 2334 .6 +703 405 1 +703 3826 .8 +703 469 .8 +703 2713 .8 +703 2652 .8 +703 93 .6 +703 803 .8 +2788 242 .8 +2788 2788 .6 +2788 588 .8 +2788 715 .8 +2788 2686 .6 +5550 5550 .8 +841 841 .8 +841 844 .6 +841 780 .8 +841 34 .8 +841 843 .8 +841 328 1 +841 658 .8 +841 200 .8 +841 1936 .6 +841 19 .6 +841 1127 .8 +841 5490 .8 +841 311 .6 +841 2614 .8 +841 2615 .8 +841 9 .6 +841 1658 .8 +841 3276 .6 +841 577 1 +841 148 .8 +841 31 .8 +841 1537 .6 +841 492 .6 +841 214 .6 +841 39 .6 +841 303 1 +841 1761 .6 +841 1701 .6 +841 1190 .8 +841 1126 1 +841 1542 .6 +841 385 .8 +841 387 .8 +841 918 .8 +841 840 .6 +841 586 .6 +841 1270 .8 +841 575 .6 +841 934 1 +841 2616 .8 +841 2515 .6 +841 215 .8 +841 1984 .6 +841 888 .8 +2672 2672 1 +3412 1910 .8 +3412 1237 1 +3412 632 .8 +3412 639 1 +3412 4006 .8 +4254 4254 .8 +4254 1809 .8 +4254 2780 .6 +4254 429 1 +4254 2227 .8 +4254 126 1 +1037 1037 .8 +1037 2307 .8 +1037 3750 .8 +3703 682 .8 +3703 3705 .8 +3703 3703 .6 +1752 937 .8 +1752 46 1 +1752 1075 1 +1752 1476 .8 +1752 349 1 +1752 144 .8 +1752 30 1 +1752 1117 1 +1752 324 1 +1752 791 .8 +1752 1847 1 +1752 328 1 +1752 1436 .8 +1752 719 1 +1752 351 .8 +1752 1020 1 +1752 1754 1 +1752 329 1 +1752 1490 .8 +1752 172 1 +1752 918 1 +5551 5551 .8 +3102 175 1 +3102 1343 1 +3102 22 1 +3102 1176 1 +3102 2886 .8 +3102 1221 .8 +3102 3769 .8 +3102 498 1 +3102 2891 1 +3102 739 1 +3102 1306 .8 +3102 1220 .8 +3102 5552 1 +4580 2782 .8 +4580 584 1 +4580 4580 .8 +4580 1202 1 +2861 1171 1 +2861 2521 1 +2861 1216 .8 +2861 2845 .8 +2861 588 .8 +2861 801 1 +512 1616 1 +512 468 .8 +512 501 .6 +512 512 .6 +512 2328 .6 +512 3337 .6 +512 1655 .8 +512 492 .6 +512 5553 .6 +512 5554 .6 +512 1237 .6 +512 5555 .8 +512 4010 .6 +512 1835 .8 +512 1167 .6 +512 44 .8 +512 1742 .6 +1547 737 1 +1547 1246 1 +1547 2984 .8 +1547 1435 .8 +1547 2307 .8 +1547 286 1 +1547 46 1 +1547 328 1 +1547 1312 .8 +1547 121 1 +1547 4067 .8 +1547 1247 1 +1547 324 1 +1547 232 .6 +1547 22 1 +1547 1750 .8 +1547 710 1 +1547 3386 .8 +1547 3718 .8 +1547 646 1 +1547 2008 .8 +1547 2657 .8 +2912 116 1 +2912 1105 .8 +2912 925 .8 +2912 1107 1 +2912 30 1 +2912 3784 .8 +2912 4113 .6 +2912 1109 .6 +2912 673 .8 +2912 2762 1 +1772 1772 .8 +1772 2703 .8 +1772 1241 .8 +1864 1861 .8 +1864 1862 .8 +5083 1685 .8 +5083 522 1 +532 1247 1 +532 780 .8 +532 322 .8 +532 2227 .8 +532 4254 .8 +532 1809 1 +1334 1334 .8 +1334 1125 1 +1334 5556 .8 +5557 126 1 +2697 95 1 +2697 306 1 +2697 2698 .8 +2697 46 1 +2697 2002 .8 +2697 2697 .8 +2697 307 1 +2697 305 1 +2697 844 .8 +5558 3743 .8 +5558 1653 1 +5559 5559 .8 +5560 5561 1 +3155 5562 1 +3155 3155 1 +3155 1415 1 +2205 429 .8 +2205 2205 .6 +2205 1823 .6 +2205 578 .6 +2205 643 1 +2205 70 .6 +3188 175 1 +3188 1546 .8 +3188 1898 .8 +3188 4067 1 +3188 90 .8 +3188 736 .8 +3188 3100 .8 +3188 2886 .8 +3188 327 .8 +3188 3187 .6 +3188 3185 .6 +3188 328 1 +3188 1343 1 +3188 22 1 +3601 3601 .6 +3601 167 .8 +3601 5094 .8 +3601 194 .8 +3601 1660 .8 +3601 168 .8 +3601 72 .8 +1286 739 1 +1286 1026 .8 +1286 740 .8 +1286 736 1 +1286 1287 .8 +1286 1285 .8 +1286 142 .8 +1286 648 .8 +1286 837 .8 +1286 985 .8 +1286 1289 .8 +1286 1454 .8 +1286 90 .8 +1286 2629 .8 +1286 835 1 +5562 3155 1 +5042 46 1 +5042 30 1 +5042 5563 .8 +5042 696 1 +5564 1175 1 +5565 5565 1 +5565 2070 .8 +5565 193 1 +5565 4861 1 +5566 1698 1 +5566 5566 .6 +4704 4704 .8 +3212 3212 .8 +3212 1108 .8 +3212 1492 .8 +3212 674 .8 +3212 2902 1 +3212 718 .8 +3212 1568 .8 +3212 3210 .8 +3212 646 1 +3212 202 1 +3212 2611 1 +3212 30 1 +3212 126 1 +2340 129 1 +2340 3799 1 +2340 629 1 +2340 2339 .8 +2340 4226 .8 +2185 2185 .6 +2185 614 .8 +2185 329 1 +3118 789 .8 +3118 1176 1 +3118 142 .8 +3118 736 1 +3118 3118 .8 +3118 90 .8 +3118 837 .8 +3118 584 1 +3118 739 1 +3118 656 .8 +3118 835 .8 +3118 86 .8 +3118 855 1 +3118 329 1 +3118 2213 .8 +3118 1454 .8 +3118 856 .8 +3118 405 .8 +3118 286 1 +3118 84 .8 +3118 648 1 +3118 2237 .6 +3118 91 .8 +3118 1693 .8 +3118 1692 .8 +3118 1628 .8 +3118 801 .8 +3118 1898 .8 +3118 92 .8 +3118 3491 .8 +3118 647 1 +3118 3141 .6 +3118 1020 1 +3118 2261 .8 +3118 786 .8 +3118 740 .8 +5567 1219 .8 +5568 5568 1 +1582 1582 1 +5569 5569 .8 +5570 5570 1 +3917 3917 .8 +1087 328 1 +1087 719 1 +1087 466 .8 +1087 30 1 +1087 306 .8 +1087 1434 .8 +1087 1400 .6 +1087 2401 .8 +1087 645 .8 +1087 324 .8 +1087 1075 .8 +1087 1020 1 +1087 1117 1 +1087 174 .8 +1087 2101 .8 +1087 326 1 +1087 323 .8 +1087 2103 .8 +1087 1401 .8 +1087 1076 .6 +1087 305 .8 +1087 3231 .8 +1087 1804 .8 +1087 46 1 +1087 3 .8 +1087 1028 .8 +1087 1860 .6 +1087 1546 .8 +1087 2247 1 +1087 325 1 +1087 569 .6 +1087 944 .8 +1087 5571 .8 +1087 591 .6 +1087 1072 .8 +1087 943 .8 +1087 3338 .6 +5572 5572 .6 +363 1370 .6 +363 711 .8 +363 793 .8 +363 1370 .6 +363 1154 .8 +1963 1963 .6 +1963 4703 .6 +1963 622 .6 +1963 374 .6 +1963 1223 .6 +1963 1650 .8 +1963 1816 1 +1963 1498 .6 +1963 2777 .6 +1963 5034 .8 +1963 3609 .6 +1963 757 .6 +1963 45 1 +1963 403 .6 +1963 20 .8 +1963 83 .8 +1963 2796 .6 +1963 4830 .6 +1963 2147 .6 +1963 2199 .6 +1963 3916 .6 +1963 4094 .6 +1963 927 .8 +1963 469 1 +1963 4959 .6 +1963 5573 .6 +1963 34 1 +1963 804 .8 +1963 457 .8 +1963 2539 .6 +1963 923 .6 +1963 944 1 +1963 617 .8 +1963 1047 .8 +1963 3404 .6 +1963 812 .6 +1963 5274 .6 +1963 2034 .8 +1963 1899 .8 +1963 40 .8 +1963 3409 .8 +1963 1964 .8 +1963 2775 .8 +1963 399 .8 +1963 919 .8 +5574 5574 .6 +352 1022 1 +352 303 1 +352 1720 1 +352 328 1 +352 95 .8 +352 2290 .8 +352 2157 .8 +352 1116 1 +352 1076 .6 +352 353 1 +352 1924 .8 +352 2076 1 +352 1961 .8 +3425 1242 .8 +3425 1243 1 +3425 46 1 +3425 577 1 +3425 438 .8 +3425 513 1 +3425 2080 .8 +3425 306 1 +3425 1075 1 +3425 610 1 +3425 346 .8 +3425 934 1 +3425 1711 .8 +3425 2372 .8 +3574 577 1 +3574 46 1 +3574 30 1 +3574 13 1 +3574 2967 .8 +3574 12 .6 +3574 126 1 +426 426 1 +426 425 1 +426 118 1 +426 22 1 +426 770 1 +426 424 1 +426 112 1 +426 1124 1 +426 46 1 +273 764 1 +273 65 .8 +273 282 1 +273 1122 1 +273 1126 1 +273 598 1 +273 426 1 +273 1123 1 +273 22 1 +273 112 .8 +273 770 1 +273 427 .8 +273 1125 .8 +273 273 1 +273 46 1 +273 642 .8 +273 175 1 +273 148 1 +273 121 .6 +273 1127 .8 +273 561 1 +273 2323 1 +273 640 1 +273 2949 1 +273 1171 1 +273 2521 1 +273 1230 1 +273 1228 .6 +273 2420 1 +273 424 1 +273 425 1 +273 118 1 +273 3807 1 +273 267 1 +273 272 1 +273 1068 1 +273 2094 1 +273 1156 1 +273 2823 1 +273 2093 1 +273 474 .8 +273 2517 .8 +273 4696 1 +273 1723 1 +273 3770 1 +273 801 1 +273 1134 1 +273 1560 1 +273 4547 1 +273 1337 1 +273 2861 1 +273 4697 1 +273 588 1 +273 562 1 +273 2216 1 +273 2956 .8 +4544 398 1 +4544 3218 .6 +4544 399 .8 +4544 1717 1 +3572 3786 .8 +3572 351 .8 +3572 1717 .8 +3572 4146 .8 +3572 3006 .8 +3572 303 .8 +3572 2646 .8 +3572 2307 .8 +2865 107 .6 +2865 378 .6 +2865 1360 .8 +2865 1068 1 +5575 5575 .8 +5576 5576 1 +1043 4379 .8 +1043 4353 1 +1043 3033 .8 +1043 126 1 +1043 1974 1 +1043 1898 1 +1043 644 1 +1043 1886 1 +1043 1207 1 +1043 1043 .6 +1043 3742 .8 +1043 3608 .8 +1043 716 1 +1043 2740 .6 +1043 3640 .6 +1043 1241 1 +1043 561 1 +1043 45 1 +2298 2298 .8 +2298 629 1 +2298 129 1 +1869 1869 .8 +1869 460 .8 +1869 1491 1 +1869 2260 1 +1869 793 1 +1869 780 .8 +1869 1248 1 +1869 2254 .8 +1869 2227 .8 +1869 2372 1 +1869 1362 .8 +1869 709 .8 +1869 1364 1 +1869 1649 .8 +1869 1657 .8 +1869 653 1 +1869 1870 .8 +1869 774 1 +1869 721 .8 +1869 1868 .6 +1972 1972 .8 +1972 418 .8 +5577 5577 1 +1486 1486 .8 +1486 9 .6 +1486 258 .6 +1486 83 .6 +1486 597 .6 +1486 263 .8 +5578 5578 .6 +5578 296 .8 +5578 286 1 +5579 5579 1 +5580 5580 .6 +4920 4920 .8 +4920 30 1 +4920 126 1 +4920 90 .6 +5581 5581 .6 +72 167 .8 +72 165 .8 +72 328 1 +72 3601 .8 +72 48 .8 +5582 555 1 +3091 1988 1 +3091 492 1 +3091 234 .8 +3091 66 .8 +3091 2483 .6 +3091 963 .8 +3091 1643 1 +40 46 1 +40 121 1 +40 326 1 +40 351 .8 +40 327 .8 +40 323 .8 +40 324 1 +40 719 1 +40 1020 1 +40 467 .8 +40 3016 .6 +40 147 .8 +40 282 .8 +40 1648 .8 +40 112 1 +40 3774 .6 +40 4754 .6 +40 40 .6 +40 3189 .6 +40 1021 .8 +40 1480 .6 +40 5583 .6 +40 677 .6 +40 1759 .6 +40 2248 .6 +40 788 .8 +40 1918 .8 +40 5584 .6 +40 3099 .6 +40 2405 .6 +40 4753 .8 +40 1072 .8 +40 846 .8 +40 1915 .6 +40 328 1 +40 1920 .6 +40 638 .6 +40 1132 .6 +40 912 .6 +40 1791 .6 +40 2727 .8 +40 2333 .6 +40 1028 .8 +40 301 .6 +40 737 .8 +40 643 1 +40 835 .8 +40 356 .6 +40 658 .8 +40 858 1 +40 1084 .8 +40 943 .8 +40 1673 .8 +40 1880 .6 +40 346 .8 +40 232 .8 +40 1464 .8 +40 852 1 +40 1211 .8 +40 764 1 +40 918 1 +40 738 .8 +40 126 1 +40 928 .6 +40 1415 .8 +40 599 .8 +40 189 .8 +40 1360 .8 +40 4005 .6 +3759 286 1 +3759 22 1 +3759 118 1 +3759 652 1 +3759 2878 .8 +3759 3759 .8 +3759 282 1 +957 151 1 +957 450 .8 +957 3497 .8 +957 1580 .8 +957 175 1 +957 957 .8 +957 657 .8 +957 1717 .8 +957 1673 .6 +957 449 .8 +957 451 .8 +957 844 .6 +5585 5585 .8 +5586 5586 1 +5587 5587 .8 +5587 3133 .8 +5588 792 1 +5588 191 1 +5588 1961 1 +5588 1798 1 +5588 2103 1 +1169 1169 .8 +1169 295 .8 +1169 3251 .8 +1169 603 .8 +1169 157 .6 +1169 1685 .6 +1169 4442 .8 +1169 582 .8 +5589 5589 1 +5590 5590 1 +728 728 1 +728 349 1 +728 2250 .8 +728 1002 .8 +728 174 1 +728 649 1 +728 780 1 +728 1418 1 +728 779 1 +728 1397 .8 +728 492 1 +728 3288 1 +728 2483 .8 +728 1416 .8 +728 2911 1 +728 727 1 +5591 5591 .6 +5591 349 1 +228 228 .6 +5592 5592 .6 +5592 1148 .6 +5592 1965 .8 +5592 2024 .6 +5592 500 .8 +2463 774 1 +2463 711 1 +2463 2462 .8 +2463 1370 .8 +2463 2464 1 +2463 1495 1 +1070 290 1 +1070 1479 1 +1070 377 .8 +1070 747 1 +1070 746 1 +1070 110 .8 +1070 749 1 +1070 1222 1 +1070 748 1 +1070 764 1 +1070 1214 .8 +1070 119 1 +1070 292 1 +1070 3642 .8 +1070 647 1 +1070 282 1 +1070 332 1 +1070 1346 .8 +5593 5593 .8 +3907 3907 .8 +3907 3206 .8 +2282 2282 .6 +2282 7 .8 +2282 597 .8 +2282 2281 .6 +2282 1385 .6 +2282 1971 .6 +2282 2832 .6 +2282 1780 .6 +2282 2671 .6 +2282 788 .8 +2282 4379 .8 +2282 45 1 +2282 2417 1 +2282 860 .6 +2282 1278 1 +2282 1451 1 +2282 1630 .6 +2282 708 .8 +2282 773 .8 +2282 468 .8 +2282 214 .8 +2282 715 1 +2282 23 .6 +2282 830 1 +2282 703 .6 +2282 2141 1 +2282 62 1 +2282 1586 1 +2282 1399 .6 +2282 1377 .8 +2282 1378 .8 +2282 397 .6 +2282 794 .8 +2282 904 .8 +2282 2219 .8 +2282 982 .6 +2282 950 .6 +2282 2274 1 +2282 3892 1 +2282 1047 1 +2282 880 .8 +2282 2578 .6 +2282 346 1 +2282 30 1 +2282 328 1 +2282 719 1 +2282 46 1 +1377 124 .8 +1377 188 .8 +1377 2803 1 +1377 1373 .8 +1377 1068 .8 +1377 1742 .8 +1377 2257 .8 +1377 919 .8 +1377 1028 .6 +1377 2282 .8 +1377 42 1 +1377 701 .8 +1377 1154 .8 +1377 157 .8 +1377 5010 .6 +1377 3259 .8 +1377 5594 .6 +1377 4131 .8 +1377 1562 1 +1377 1219 .8 +1377 1339 .8 +1394 963 .8 +1394 1988 1 +1394 286 1 +1394 46 1 +1394 555 1 +1394 126 1 +1394 3387 1 +1394 1241 1 +1394 859 1 +1394 649 1 +1394 846 1 +1394 1908 1 +1394 1116 1 +1394 2268 .8 +1394 807 1 +1394 719 1 +1394 30 1 +1394 328 1 +1394 1181 .8 +1394 695 1 +1394 694 1 +1394 43 1 +1394 4779 .8 +1394 165 1 +1394 346 1 +1394 1558 1 +1394 577 1 +1394 708 .8 +1394 1831 .6 +1394 1142 .8 +1394 644 1 +1394 830 1 +1394 1586 1 +1394 634 .8 +1394 4238 .8 +1394 3635 .8 +1394 780 1 +1394 2793 .8 +1394 1043 .8 +1394 1160 1 +1394 215 1 +1394 2372 .8 +1394 2789 .8 +1394 1365 .8 +1394 3427 .8 +1394 777 .8 +1394 157 .8 +1394 597 .8 +1394 364 .8 +1394 1775 .8 +4492 4492 .6 +4492 4083 .6 +4492 322 .8 +4492 4625 .8 +4721 4721 1 +4721 283 .8 +4721 612 1 +4721 1052 .8 +4721 1579 1 +4721 1569 .8 +5027 5027 .6 +5595 5595 .6 +1085 1085 .8 +1085 1020 .8 +1085 638 .6 +1085 34 .8 +1085 4360 .6 +1085 1313 .8 +1085 646 .8 +1085 324 .8 +1085 829 .8 +1085 468 .8 +1085 30 1 +1085 328 1 +1085 1616 .8 +1085 501 .6 +1085 1917 .8 +1085 46 1 +1085 947 .6 +1085 174 .8 +1085 1916 .6 +1085 1918 .8 +1085 1356 .8 +1085 577 1 +1085 1860 .6 +1085 797 .6 +1085 1021 .8 +1085 623 .8 +1085 323 .8 +1085 1298 .6 +1085 172 .8 +1085 1754 1 +1085 303 .8 +1085 719 1 +1085 830 1 +1085 438 .6 +1085 804 .8 +1085 2435 .6 +1085 1814 .6 +1085 562 1 +1085 492 1 +1085 2170 .6 +1085 4183 1 +1085 349 1 +1085 346 .8 +1085 5596 .6 +1085 1495 1 +1085 1878 .6 +1085 1851 1 +1085 3763 .6 +2948 739 1 +2948 126 1 +2948 30 1 +2948 142 .8 +2948 3616 .8 +3598 2528 .8 +3598 3462 .6 +3598 918 1 +1567 1278 1 +1567 1567 .8 +1567 1568 1 +1567 439 .8 +1567 46 1 +1567 438 .8 +1567 644 1 +5597 5597 1 +5598 5598 1 +5599 5599 1 +1706 1704 .8 +1706 237 .6 +446 46 1 +446 429 .8 +446 431 1 +446 446 .8 +446 428 .8 +446 353 1 +1466 1466 .6 +5600 5600 1 +5601 5601 .6 +3150 3150 .8 +3150 46 1 +3150 329 1 +3150 141 .8 +3150 2503 .8 +3150 1703 .6 +3150 4775 .6 +3150 2587 .8 +2854 2854 1 +2284 1086 .8 +2284 738 .8 +2284 95 .8 +2284 434 .8 +2284 303 .8 +2284 46 1 +2284 1720 1 +2284 30 1 +2284 701 .8 +5315 5315 .8 +5315 3078 .8 +5315 3731 .8 +5315 188 .8 +62 62 .8 +62 1451 .8 +62 737 1 +62 45 1 +62 209 1 +62 1650 1 +62 610 1 +62 157 .8 +62 775 .8 +62 1012 .8 +62 1772 1 +62 224 .8 +62 4219 1 +62 1236 .8 +62 1629 .8 +62 1776 .8 +62 801 1 +62 1775 .8 +62 827 1 +62 1514 1 +62 2787 .8 +62 2938 .8 +62 5602 .6 +62 819 .8 +62 1654 .8 +62 3675 .6 +62 2664 .8 +62 4926 .8 +62 779 .8 +62 5603 .8 +62 1258 .8 +62 5604 .8 +62 5605 .6 +62 5172 .8 +62 5606 .6 +62 5607 .6 +62 5608 .8 +62 5609 .8 +62 5610 .8 +62 5611 .6 +62 5612 .6 +62 4455 .6 +62 5613 .6 +62 5614 .8 +62 5615 .6 +62 5616 .6 +62 5016 .6 +62 5617 .8 +62 4603 .6 +62 5618 .8 +62 5619 .6 +62 1197 .6 +62 4413 .6 +62 5620 .6 +62 3617 .6 +62 4159 .6 +62 5621 .6 +62 5622 .8 +62 2129 .6 +62 148 .8 +62 5527 .6 +62 1393 .8 +62 4604 .6 +62 5421 .6 +62 4606 .8 +62 4314 .6 +62 5623 .8 +62 3755 .8 +62 5008 .8 +62 5624 .6 +62 5625 .8 +62 4156 .8 +62 5014 .6 +62 5626 .6 +62 4607 .6 +62 5627 .6 +62 3593 .6 +62 1256 .6 +62 5628 .6 +62 5629 .8 +62 5630 .6 +62 3933 .6 +62 3260 .6 +62 1978 .8 +62 1543 1 +62 5631 .6 +62 128 1 +62 5632 .8 +62 1257 .6 +62 120 .6 +62 2181 .6 +62 245 .6 +62 1263 .6 +62 1898 1 +62 5020 .6 +62 1265 .6 +62 788 .6 +62 5633 .6 +62 1071 .6 +62 5634 .6 +62 5635 .6 +62 5636 .6 +62 1259 .6 +62 778 .8 +62 5637 .6 +62 5638 .6 +62 5639 .6 +62 5640 .6 +62 5641 .6 +62 960 .8 +62 1269 .6 +62 5642 .6 +62 1270 1 +62 5643 .8 +62 4133 .6 +62 5644 .8 +62 5645 .6 +62 5646 .6 +62 5647 .6 +62 5648 .6 +62 3934 .6 +62 1271 .6 +1597 646 .8 +1597 202 .8 +1597 172 1 +1597 1247 1 +1597 854 .8 +1597 1592 .8 +1597 3078 .6 +1597 1924 .8 +1597 825 .6 +5649 5649 .8 +5650 5650 .6 +5651 5651 .6 +5652 5652 1 +3031 3031 .6 +109 109 .6 +109 1033 .8 +109 945 .8 +109 3546 .8 +109 3547 .6 +109 3420 .6 +109 2468 .6 +109 699 .6 +5653 5653 .6 +5653 46 1 +5654 5654 .6 +3122 1597 .8 +3122 286 1 +3122 202 .8 +3122 46 1 +3122 643 1 +3122 1020 1 +3122 928 .6 +3122 225 .8 +3122 232 .6 +3122 1518 .8 +3122 1150 .6 +3122 87 .6 +3122 646 .8 +3122 1801 .6 +5655 4596 .8 +5656 5656 .8 +5657 5658 .8 +5657 3130 .6 +5657 2865 .8 +5657 3403 .6 +5657 112 1 +5657 4167 .8 +5657 416 .6 +5657 2831 .8 +5657 409 .8 +5137 5137 .6 +5137 46 1 +5137 738 1 +5137 2699 1 +2068 907 1 +2068 1892 1 +2068 2078 1 +2068 437 1 +2068 46 1 +2068 1720 1 +2068 1894 1 +2068 436 1 +2068 316 1 +5491 5492 .8 +5491 377 .8 +5491 237 .8 +2941 1616 .8 +2941 1024 .8 +2941 46 1 +2941 1495 1 +2941 438 .8 +2941 1020 1 +2941 1041 .6 +2941 695 1 +3981 1533 1 +5659 1886 .8 +5659 5659 .6 +3507 3507 .6 +3507 2432 1 +3507 93 .8 +3507 157 .8 +3507 18 .8 +3507 864 .8 +3507 1642 .6 +3507 1068 1 +3507 2865 .8 +3507 316 1 +3507 65 1 +3507 1160 1 +3507 3319 .6 +3507 846 .8 +3507 440 1 +3507 1930 1 +3507 121 1 +3507 1645 .8 +3507 912 1 +3507 1165 .8 +3507 760 .6 +3507 617 .6 +3507 3807 1 +3507 1307 .8 +3507 3837 .8 +3507 4218 .8 +3507 1652 .8 +3507 757 .6 +3507 1398 1 +3549 3549 .6 +4854 310 1 +5660 5660 .8 +5660 2332 1 +5660 521 1 +1029 1016 .8 +1029 1027 .8 +1029 175 1 +1029 144 .8 +5661 3218 .8 +5661 2703 .6 +3098 773 .6 +5662 5662 .6 +5662 2911 1 +5662 1492 1 +5662 728 1 +5662 2250 1 +5663 1373 1 +5663 724 1 +5664 5664 .6 +5665 5665 .6 +4953 46 1 +4953 1886 1 +4953 1885 .8 +2585 2583 .8 +4884 1092 1 +4884 1277 1 +750 750 .8 +750 436 1 +750 1023 .8 +750 4329 1 +750 434 1 +750 46 1 +750 1546 .8 +750 1075 1 +750 736 1 +750 119 1 +750 30 1 +750 642 1 +750 1123 1 +750 22 1 +750 328 1 +750 104 .8 +750 1583 1 +750 1019 .6 +750 5666 .6 +750 65 .8 +750 301 .8 +750 92 .8 +750 1176 1 +750 431 1 +750 1017 .8 +750 746 1 +750 584 .8 +750 648 1 +750 1923 .6 +750 5667 .8 +750 1065 .8 +750 1591 .8 +750 175 1 +750 506 1 +750 651 .8 +750 1755 .8 +750 647 1 +750 1027 .8 +750 3347 .8 +750 2238 1 +2250 728 .8 +2250 2250 .8 +2250 349 1 +2250 3105 .8 +5668 5668 .6 +2518 9 .8 +2518 2515 .6 +2518 764 1 +2518 576 .8 +2518 1229 .8 +4415 4415 1 +4771 4771 .6 +5669 5669 .6 +5669 1893 1 +5669 46 1 +5669 431 1 +5669 44 1 +5669 5 1 +1687 651 .8 +1687 172 1 +1687 801 .8 +1687 1019 .8 +1687 171 1 +1687 326 1 +1687 810 .8 +1687 1754 1 +3415 3415 .8 +3415 1182 .6 +3415 1248 .8 +3415 5289 .8 +1790 1789 .6 +5670 5670 1 +5671 5671 .6 +5672 5672 .6 +5673 3002 1 +5674 5674 .8 +4868 4868 .8 +4868 296 1 +4868 1630 .8 +4868 1182 1 +1814 1085 1 +918 737 1 +918 577 1 +918 2727 .8 +918 286 1 +918 916 1 +918 2157 .8 +918 5675 .8 +918 743 1 +918 175 1 +918 826 1 +918 947 .6 +918 1072 .8 +918 1673 .8 +918 274 1 +918 1671 .6 +918 638 .8 +918 1609 .6 +918 1676 .6 +918 1482 .6 +918 492 1 +918 2246 1 +918 1678 .6 +918 1679 .8 +918 1680 .6 +918 627 .8 +918 1571 .8 +918 42 .6 +918 4642 .8 +918 629 1 +918 1978 .8 +918 1373 .6 +5676 5676 1 +5677 5677 .8 +5678 5678 .8 +5679 5679 .6 +5679 121 1 +5487 1211 .8 +880 880 .6 +880 883 .8 +880 784 .8 +880 878 .8 +880 438 .8 +880 1583 1 +880 79 .8 +880 175 1 +880 743 1 +880 2839 .6 +880 3384 .8 +880 1110 .8 +880 1288 .8 +880 3032 .6 +880 207 .8 +880 213 1 +880 210 1 +880 1514 .8 +880 1981 .8 +1079 1073 .8 +1079 719 1 +1079 735 .8 +1079 1434 1 +1079 645 .8 +1079 934 .8 +1079 306 .8 +1079 1075 1 +1079 511 .8 +1079 30 1 +1079 468 .8 +1079 1616 .8 +1079 328 1 +1079 326 1 +1079 305 1 +1079 1076 .6 +1079 324 .8 +1079 351 .6 +1079 46 1 +1079 1356 .8 +1079 323 .8 +1079 797 .6 +1079 4364 .6 +1079 3099 .6 +1079 5584 .6 +1079 677 .6 +1079 327 .8 +1079 1028 .8 +1079 1020 1 +1079 1860 .6 +1079 1288 .8 +1079 298 .6 +1079 2101 .8 +1079 171 1 +1079 2271 1 +1506 1506 .6 +1506 1961 .6 +1506 5680 .6 +1506 348 1 +1506 286 1 +1506 46 1 +1506 329 1 +935 1436 .8 +935 2614 .8 +935 1658 .8 +935 501 .8 +935 524 .6 +935 1075 1 +935 1645 .8 +5681 142 1 +5681 101 1 +5681 5681 .8 +5681 736 1 +5681 1546 .8 +5681 739 1 +5681 329 1 +2214 430 .8 +2214 854 .8 +2214 2551 .6 +2214 1113 .8 +2214 796 .8 +2214 1032 .8 +2214 4596 .8 +2214 2987 .6 +2214 4405 1 +2214 784 1 +2214 307 1 +2214 2464 .8 +2214 172 1 +2214 934 1 +2214 646 1 +2214 242 .8 +2214 802 1 +2214 3887 .8 +2214 2495 .8 +2214 4542 .6 +2214 113 .8 +2214 1318 1 +2214 2214 .8 +2214 1316 .8 +2214 460 .8 +2214 1319 .8 +2214 1768 1 +2214 2141 .8 +2214 546 .8 +5682 5682 1 +5683 5683 1 +4209 4209 1 +5680 1961 .6 +5680 351 .8 +5680 303 1 +5680 352 1 +5680 3669 .8 +5680 176 .6 +5680 4146 .8 +5680 3006 .8 +5680 3884 .6 +5680 1179 .8 +5684 3186 .8 +640 22 1 +640 426 1 +640 1124 1 +640 1122 1 +640 273 1 +640 1123 1 +640 2521 1 +640 1230 1 +640 282 1 +640 425 1 +640 2420 1 +640 2949 1 +640 1171 1 +640 1177 1 +640 770 1 +640 764 1 +640 2823 1 +640 424 1 +640 1723 1 +640 1231 1 +640 3770 1 +640 3204 1 +640 4696 1 +5685 5685 1 +2685 2685 .6 +2685 207 .8 +2685 2745 .6 +2685 548 .8 +2685 715 .8 +2685 4448 .6 +2685 786 .8 +2685 2687 .6 +2685 1471 1 +1058 1058 .8 +1058 429 1 +1058 1816 .8 +2033 2033 .6 +3434 5686 .8 +3434 3434 .8 +5687 5687 .8 +2296 8 .8 +2296 46 .6 +4680 4680 .8 +1795 2706 .8 +1390 46 1 +1390 1430 1 +1390 739 1 +1390 355 .8 +1390 328 1 +1390 297 1 +1390 157 .8 +1390 658 1 +1390 188 .8 +1390 1826 .8 +1390 1967 1 +1390 849 .8 +1429 1429 .8 +1429 433 1 +1429 1426 .8 +1429 1427 .8 +1429 5688 .8 +2646 172 1 +2646 350 1 +2646 171 1 +2646 1754 1 +2646 1020 1 +2646 912 .8 +2646 915 .8 +2646 2172 .8 +2646 303 1 +2646 2646 .8 +2646 2076 1 +2646 3006 .8 +2646 3572 .8 +2646 1314 .8 +2646 2271 .8 +2646 933 .6 +2646 99 .8 +2646 501 .8 +2646 810 .8 +2646 791 .8 +2646 934 1 +2646 328 1 +436 1086 .8 +436 46 1 +436 440 1 +436 2210 1 +436 95 1 +436 303 1 +436 434 1 +436 1996 1 +436 1894 1 +436 326 1 +436 435 .8 +436 209 .8 +436 352 1 +436 318 .8 +436 30 1 +436 438 .8 +436 1720 1 +436 1160 .8 +436 738 .8 +436 1022 1 +436 443 .8 +436 437 .8 +436 316 1 +436 441 1 +436 3372 .8 +436 1116 1 +5689 5689 .6 +2389 2388 .6 +2389 2387 .8 +5690 1227 1 +5691 5691 .6 +5691 807 1 +5691 713 1 +3888 3888 .6 +3888 45 1 +3888 802 1 +3888 2151 .8 +3888 792 1 +3888 739 1 +3888 84 .8 +3888 740 .8 +3888 142 1 +3888 789 1 +3888 91 .8 +3888 65 1 +3888 859 1 +3888 855 1 +3888 90 .8 +3888 1519 .8 +3888 681 .8 +3888 736 1 +3888 9 .8 +317 318 .8 +317 121 1 +317 119 1 +317 46 1 +317 4643 .8 +317 1583 1 +317 328 1 +317 584 .8 +317 1086 .8 +317 1031 .8 +317 319 .8 +317 439 .8 +317 555 1 +317 286 1 +317 352 1 +317 314 .8 +317 2002 .8 +317 437 .8 +317 290 1 +317 16 .8 +317 431 .8 +317 1996 1 +317 30 1 +317 1719 .6 +317 1211 .8 +317 209 .8 +317 743 1 +317 316 1 +317 2210 1 +317 719 1 +317 3372 .8 +317 1028 .8 +317 784 .8 +317 1022 1 +317 883 .8 +317 320 .8 +317 1160 .8 +317 1892 .8 +317 2078 .8 +317 438 .8 +317 428 .8 +317 305 1 +317 764 1 +317 1116 1 +317 506 1 +317 353 1 +317 1924 1 +317 329 1 +317 739 1 +317 697 .8 +317 698 .8 +624 624 .8 +624 655 .8 +624 297 1 +624 2550 .8 +624 194 .8 +624 577 1 +624 193 1 +624 2246 1 +624 627 1 +624 215 1 +624 1768 1 +624 349 1 +624 830 1 +624 620 .8 +624 2221 1 +624 2200 .8 +624 629 .8 +624 2478 .8 +624 1524 1 +624 1852 1 +801 801 .8 +801 391 .8 +801 65 .8 +801 172 1 +801 829 .8 +801 1086 .8 +801 736 .8 +801 1309 1 +801 1691 .8 +801 738 .8 +801 22 1 +801 1505 .8 +801 1125 .8 +801 1023 .8 +801 434 1 +801 1019 .6 +801 1097 .6 +801 104 .8 +801 1307 .8 +801 92 .8 +801 739 1 +801 1018 .8 +801 1053 .8 +801 1428 .8 +801 584 1 +801 648 1 +801 142 .8 +801 91 .8 +801 750 .8 +801 833 .8 +801 1017 .8 +801 86 .8 +801 1628 .8 +801 1298 .8 +801 97 .8 +801 835 .8 +801 1308 .8 +801 436 1 +801 2945 .6 +801 792 .8 +801 5692 .6 +801 1692 .8 +801 837 .8 +801 1754 1 +801 647 1 +801 506 1 +801 651 .8 +801 329 1 +801 1024 1 +801 855 .8 +801 390 1 +801 859 1 +801 2238 1 +801 1081 .8 +801 353 1 +801 1454 1 +801 2213 .8 +801 1062 .8 +801 1452 .8 +801 853 .8 +801 1682 .8 +801 805 .8 +801 469 .8 +801 2312 .8 +801 856 .8 +801 90 .8 +801 405 1 +801 1687 .8 +801 163 .8 +801 282 1 +801 1041 .6 +801 1016 .8 +801 2751 .6 +801 101 1 +801 1675 .8 +801 2299 .6 +801 1229 .8 +801 3313 .8 +801 2263 .8 +801 2032 .8 +801 2961 .8 +801 2216 .8 +801 1684 .6 +801 1177 1 +801 562 1 +801 1557 1 +801 424 1 +801 388 1 +801 1723 1 +801 389 .8 +801 392 1 +801 2667 1 +801 2843 .6 +801 751 .8 +801 3491 .8 +801 3118 .8 +801 393 .8 +801 1457 .8 +801 770 1 +801 1640 .8 +801 1171 1 +801 1126 1 +801 2171 .6 +801 640 1 +801 1548 .8 +801 1686 .8 +801 3237 .8 +801 863 .8 +801 5502 .8 +801 992 .6 +801 788 .8 +801 106 .8 +801 394 .8 +801 786 .8 +801 2141 .8 +801 1231 1 +801 4696 1 +801 5483 1 +801 813 1 +801 588 1 +801 5274 .6 +801 2861 1 +801 885 .8 +801 895 .8 +801 5201 .6 +801 2824 .8 +801 869 1 +801 2104 .6 +801 2772 1 +801 650 1 +801 1770 1 +801 1248 1 +801 4283 .8 +801 5693 1 +801 273 1 +801 1197 1 +973 973 .6 +973 40 1 +973 121 1 +973 582 1 +973 2843 .8 +973 2506 .8 +973 1548 1 +973 597 .8 +973 19 .8 +973 1440 .8 +973 1899 .6 +973 274 1 +973 952 .6 +973 126 1 +973 162 1 +5694 424 1 +1680 918 1 +5431 5431 .6 +5431 46 1 +5431 876 .6 +2581 126 1 +2581 562 1 +2581 22 1 +2581 426 1 +2581 46 1 +2581 1124 1 +2581 3885 1 +2208 30 1 +2208 46 1 +2208 2208 .8 +2208 429 .8 +2208 4107 .6 +2208 2207 .8 +2208 2069 .8 +2208 725 .8 +2208 431 1 +2208 3189 .6 +2208 2091 .6 +2208 4593 .6 +2208 3239 .8 +2208 1554 .6 +2208 5268 .6 +2208 442 .6 +5695 5695 .6 +5696 5696 .6 +5697 5697 .6 +5697 2361 1 +5013 323 .8 +5013 151 .8 +5013 5013 .6 +5013 22 1 +5013 1762 .8 +5013 2950 .8 +5013 658 1 +5013 983 .8 +5013 647 1 +5013 714 1 +3236 3236 .6 +3236 739 1 +3236 323 .8 +1702 638 .8 +1702 791 .8 +1702 587 .8 +1702 1675 .8 +1702 1153 .8 +1702 5698 1 +1702 1671 .8 +1702 1223 .8 +1702 963 .8 +1702 18 .6 +1702 1175 1 +1702 232 .8 +1702 3209 .8 +5699 5699 .6 +5506 802 1 +5506 5505 1 +5700 5700 .6 +1341 119 1 +1341 1336 .8 +1341 2356 1 +1341 2354 .8 +1341 651 .8 +1341 2290 1 +1341 1341 .8 +1341 2357 .8 +5701 5701 .6 +3051 2240 1 +3051 739 1 +5702 1858 1 +486 486 .8 +2354 1818 1 +2354 405 .8 +2354 46 1 +2354 30 1 +2354 2354 .8 +2354 328 1 +2354 719 1 +2354 1341 .8 +2354 3280 .8 +2354 2357 .8 +2354 2356 1 +2354 1505 .8 +5703 5703 1 +5704 5704 1 +5390 5390 1 +5390 5705 .6 +5390 1202 1 +5390 449 1 +5390 42 .8 +5390 1649 .8 +5390 5421 .6 +5390 1973 .8 +5390 232 .8 +5390 1154 .8 +5390 1834 1 +5390 215 1 +5390 43 1 +5390 41 1 +5706 46 1 +5706 5706 .6 +3930 3455 .8 +5707 492 1 +4713 2165 .8 +4713 126 1 +4713 431 1 +4713 632 1 +4713 62 .8 +4713 587 .8 +4713 4714 .8 +4713 1133 .8 +4713 1142 .8 +4713 1557 .8 +4713 944 .8 +4713 5528 .8 +5011 1254 .8 +5011 1160 1 +5011 162 .8 +3616 2948 .8 +3616 377 .8 +3616 749 1 +3616 1222 1 +3616 334 .8 +3616 747 1 +3616 3181 .6 +787 787 1 +787 126 1 +787 1278 1 +787 644 1 +787 1991 1 +787 642 1 +787 467 1 +787 438 .8 +787 1992 1 +787 1580 .8 +787 240 .8 +787 329 1 +787 2199 .8 +787 3130 .6 +787 147 1 +787 30 .8 +787 144 1 +787 146 1 +787 145 1 +787 1020 1 +787 1650 .8 +787 3556 .8 +787 582 .8 +787 1567 .8 +787 1684 .8 +787 391 .8 +787 1459 .8 +787 785 .8 +787 191 .8 +5708 5708 .8 +5709 5709 .6 +5710 740 .8 +5710 743 1 +5710 1919 .6 +5710 175 1 +5710 5711 .6 +5710 1176 1 +5710 1209 .8 +5710 2290 1 +5710 296 .8 +5710 126 1 +5710 5350 .8 +5710 286 1 +5712 286 1 +1047 990 .6 +1047 1046 1 +1047 806 .8 +1047 617 .8 +1047 1653 .8 +1047 181 .8 +5713 5713 .6 +5714 399 .8 +5714 398 .8 +5714 3218 .8 +2759 2759 .6 +2759 30 1 +2759 46 1 +2759 1960 1 +2759 1490 1 +2759 1635 .8 +2759 1627 .8 +2759 1493 .8 +2759 1108 .8 +2759 673 .8 +2759 126 1 +2759 353 1 +2759 305 1 +2759 2906 .8 +5715 5715 1 +1678 918 1 +5716 46 1 +1740 1739 .6 +1740 426 1 +1740 53 .8 +1740 632 .8 +1740 1740 .8 +1740 1741 .8 +1740 80 .8 +1740 2165 .8 +5717 647 1 +2388 2388 .6 +2388 4074 .8 +5718 135 1 +5719 5719 .6 +876 5431 .6 +876 876 .8 +876 2932 1 +876 46 1 +876 1514 .8 +5720 5720 .6 +1574 1574 .6 +1574 1575 .8 +1574 625 .8 +1574 4029 .6 +1574 157 .8 +1574 148 1 +1574 328 1 +1574 1573 .8 +1574 1576 .8 +1386 2219 1 +1386 1809 .8 +1386 2227 .8 +1386 4132 .8 +1386 1375 .8 +1386 157 .8 +1386 5721 .6 +1386 457 .8 +1386 597 .8 +1386 708 .8 +1386 429 1 +1386 2236 .8 +1386 2259 .6 +1386 3441 .6 +1386 2222 1 +1386 261 .8 +1386 1380 .8 +1386 1379 1 +1386 1005 .8 +1386 4231 .8 +1386 5453 1 +1386 5489 .6 +1386 1519 1 +1386 4230 .8 +1386 3647 1 +1386 1823 .8 +1386 3521 .6 +1386 1389 .6 +1386 2256 .6 +1386 721 .8 +1386 1586 1 +1386 792 1 +1386 736 1 +1386 859 1 +1386 2233 1 +1386 4151 .6 +1386 5722 .8 +1386 4414 .8 +1386 4413 .6 +1386 5723 .6 +1386 4412 .6 +1386 2786 .8 +1386 5724 .6 +1386 2144 1 +1386 707 .8 +1386 2228 1 +1386 1270 1 +1386 1554 1 +1386 5725 .6 +1386 2781 1 +5726 5726 .6 +5727 5727 1 +2409 2409 .8 +2409 2405 .8 +2409 449 .8 +5728 5728 1 +2071 2071 .8 +2071 2660 .8 +3328 825 .8 +3328 286 1 +3328 126 1 +3328 522 .8 +3328 162 .8 +5729 5730 .8 +5731 45 1 +1642 1642 .8 +1642 324 1 +1642 1754 1 +1642 30 1 +1642 46 1 +1642 329 1 +1642 1835 .8 +1642 316 1 +1642 44 1 +1642 1834 .8 +1642 1356 1 +1642 286 1 +1642 791 1 +1642 171 1 +1642 858 1 +1642 813 1 +1642 893 .8 +1642 3954 .8 +1642 934 1 +1642 711 1 +1642 620 1 +1642 492 1 +1642 807 1 +1642 780 1 +1642 1851 1 +1642 2125 1 +1642 1495 1 +1642 2252 .8 +1642 437 1 +1642 990 1 +1642 2348 .8 +1642 1075 1 +5732 858 1 +5732 2201 .8 +3631 129 1 +4726 329 1 +4726 2819 .6 +4726 3297 .6 +4726 978 .6 +4726 126 1 +2832 2832 .8 +2832 4094 .8 +2832 2831 .6 +23 157 .8 +23 5185 .8 +23 1563 .6 +23 2678 .6 +23 3403 .6 +23 15 .8 +23 1512 .8 +23 3467 1 +23 2774 1 +23 646 1 +23 791 1 +23 326 1 +23 719 1 +23 645 1 +23 346 1 +5733 5733 .6 +414 414 .8 +414 126 1 +414 46 1 +414 852 1 +414 175 1 +414 3350 .8 +414 167 .8 +414 1583 1 +414 647 1 +414 1217 .8 +414 1343 1 +414 4202 .8 +414 717 1 +414 1373 .8 +414 1978 .8 +414 2969 .8 +414 1538 .6 +414 728 1 +5734 5734 1 +1820 1820 .8 +1820 209 1 +1820 210 1 +1820 3389 .8 +1820 3314 .8 +1820 2750 .8 +1820 3384 1 +1820 207 1 +1820 1549 .8 +1820 211 1 +5735 5735 1 +1318 2214 1 +1318 646 1 +1318 430 .8 +1318 4405 1 +1318 943 1 +1318 683 1 +1318 3892 1 +1318 1319 .8 +1318 4406 1 +1318 1745 .8 +1318 3838 1 +1318 5408 1 +1318 4285 1 +1318 2141 1 +1318 4296 1 +1318 173 1 +1318 1788 1 +925 925 .8 +925 30 1 +925 46 1 +925 617 .8 +925 98 .8 +925 950 .6 +925 428 1 +925 323 1 +925 116 .8 +925 22 1 +925 1020 1 +925 492 1 +925 115 .8 +925 114 .8 +925 1525 .8 +925 4512 .6 +925 3467 .8 +925 2193 .8 +925 1105 .8 +925 675 .8 +925 4052 .8 +925 5736 .8 +925 4051 .8 +925 1109 .6 +925 3805 1 +925 2396 .8 +5737 3632 .8 +5738 5738 .6 +5738 1407 .8 +4365 2879 .8 +4365 1183 .8 +4365 4366 .8 +4365 108 1 +3792 3792 .8 +3792 3491 .8 +3792 714 1 +3792 1430 1 +5739 165 1 +82 3389 .8 +82 646 1 +82 584 1 +82 3384 1 +82 211 1 +82 210 1 +82 286 1 +82 1671 .8 +82 1560 1 +82 944 .8 +82 157 .8 +82 638 1 +82 82 1 +82 5740 .8 +82 934 1 +82 328 1 +82 993 .8 +82 3587 .8 +82 1165 .8 +82 346 .8 +82 3397 .8 +82 793 .8 +82 880 .8 +82 46 1 +82 719 1 +82 30 1 +82 126 1 +82 1378 .8 +82 750 1 +82 469 1 +82 45 1 +82 1319 1 +82 594 .8 +82 1223 .8 +82 751 1 +82 399 .8 +82 362 1 +82 2578 .8 +82 418 .6 +82 175 1 +2268 2268 .8 +2268 612 1 +2268 1569 .6 +2268 1562 1 +2268 375 1 +2268 1145 .8 +2268 2269 .6 +2268 711 .8 +2268 1778 .6 +2268 1626 .8 +2268 3127 1 +2268 1553 .8 +2268 4591 .6 +2268 126 .6 +2268 1394 .8 +2268 642 .8 +2268 1052 1 +2268 5146 .6 +1653 1653 .8 +1653 1965 .6 +1653 1046 .8 +1653 624 .8 +1653 2700 .6 +1653 2332 .8 +1653 5741 .6 +1653 5655 .6 +1653 3590 .6 +1653 1229 .8 +1653 879 .8 +1653 3360 .6 +1653 91 .8 +1653 282 1 +1653 3064 .8 +1653 865 .8 +1653 1202 1 +1653 3730 .6 +1653 2109 .6 +1653 182 .8 +1653 183 .6 +1653 4509 .6 +1653 194 .8 +1653 2171 .8 +1653 22 1 +1653 1723 1 +1653 2849 .6 +1653 2850 .6 +1653 2111 .6 +1653 4510 .6 +1653 2108 .6 +1653 2113 .6 +1653 2107 .6 +1653 3812 .8 +1653 2106 .6 +1653 2112 .6 +1653 181 .8 +1653 1056 .8 +1653 2848 .8 +1653 2110 .8 +1653 5110 .6 +1653 5742 .6 +1653 2428 .8 +1653 2427 .8 +1653 2579 .6 +1653 2243 .8 +1653 2580 .6 +1653 3604 .8 +1653 673 1 +1653 3743 .8 +1518 431 1 +1518 46 1 +1518 30 1 +1518 457 .8 +1518 5743 .6 +1518 1517 .8 +1518 1895 .8 +5744 716 1 +2999 178 .8 +2999 954 .8 +2999 647 1 +2999 177 .8 +2999 2790 .8 +5745 297 1 +5745 2450 1 +5745 1315 1 +2732 2731 .8 +2732 1325 1 +2732 2733 .8 +1626 1626 .8 +1626 2516 .8 +1626 4885 .8 +1626 1579 1 +1626 375 1 +1626 612 1 +1626 296 1 +1626 1562 1 +1626 5746 .6 +1626 1052 1 +1626 3024 1 +1626 1969 .6 +1626 283 .8 +1626 3198 1 +1626 2342 .6 +1626 46 1 +1626 30 1 +1626 353 1 +1626 329 1 +1626 303 1 +1626 4694 .8 +1626 352 1 +1626 351 .8 +1626 286 1 +1626 1218 .8 +1626 290 1 +1626 241 .6 +1626 1961 .8 +1626 277 .8 +1626 2268 .8 +1626 3127 1 +1626 2269 .8 +1626 2625 .6 +1626 714 1 +1626 294 .6 +1626 227 .8 +1626 2343 .8 +1626 1569 .6 +1626 2100 .8 +1626 4513 .8 +5747 5747 .8 +975 975 .6 +975 524 .8 +975 1216 .8 +4106 1202 1 +4106 927 .8 +4106 632 .8 +5748 5748 .6 +5749 5749 .6 +5749 2716 1 +5749 1028 .8 +5750 5750 .6 +1647 1647 .8 +1647 1917 .8 +1647 576 .8 +1647 1022 1 +1647 438 .8 +1647 642 1 +1647 1847 1 +1647 4492 .8 +1647 13 .8 +1647 943 1 +1647 719 1 +1647 325 1 +1647 1097 .8 +1647 30 1 +1647 506 1 +1647 323 1 +1647 1616 1 +1647 511 1 +1647 349 1 +1647 1117 1 +1647 305 1 +1647 324 .8 +1647 934 1 +1647 308 1 +5751 5751 1 +2888 2551 .8 +2888 2888 .6 +5752 5752 .6 +5753 5753 .8 +5754 5754 1 +218 312 .6 +2050 375 1 +5755 5755 .6 +2612 2615 .8 +2612 2612 .8 +2612 1912 1 +2612 584 1 +2352 1249 1 +2352 813 1 +2352 593 1 +2352 3906 .6 +2352 654 .8 +2352 1116 1 +2352 1711 .8 +2352 405 .8 +2352 400 .8 +2352 126 1 +2352 1247 1 +2352 2538 .8 +3944 916 .8 +3944 3943 1 +2458 1218 .8 +2458 1222 .8 +2458 377 .8 +2458 290 1 +2458 652 1 +2458 110 .8 +2458 2457 .8 +2458 2278 .8 +2458 2289 .8 +2458 1479 .8 +2458 137 1 +2458 1205 .6 +2458 748 1 +2458 747 1 +2458 79 .8 +2458 1499 .8 +2458 1605 .8 +2458 659 1 +2458 2454 .8 +2458 746 1 +2458 2459 .8 +2458 286 1 +2458 1176 1 +2458 1214 .8 +2458 1213 1 +2458 749 1 +2458 647 1 +2458 2501 .8 +5756 5756 .6 +4424 1663 1 +4424 3014 1 +2382 2382 .8 +2382 1356 1 +2382 1353 1 +2382 546 .8 +2382 2260 .8 +5757 121 1 +1900 1900 .8 +1900 48 .8 +1900 797 .8 +5758 5758 1 +5759 5759 .6 +3442 298 .8 +3442 780 .6 +3442 34 .8 +3442 587 .8 +3442 934 1 +3442 171 1 +3442 791 1 +3442 918 1 +3442 427 .8 +3442 2255 1 +1912 2247 1 +1912 1912 .8 +1912 148 1 +1912 2290 1 +1912 714 1 +1912 2615 1 +1912 2612 .8 +5760 5760 .6 +4005 4005 .6 +1721 274 .8 +1721 1721 .8 +2792 46 1 +2792 30 1 +2792 2792 .6 +2792 4581 .8 +2792 3937 .6 +2792 466 .8 +2792 467 .8 +2792 1085 1 +2792 928 .6 +2792 471 .6 +2792 468 .8 +2792 1899 1 +2792 829 .8 +2792 1407 .6 +2792 830 1 +2792 454 .8 +2792 5384 .8 +2792 215 1 +2792 100 .8 +2792 1384 .6 +2792 2774 .6 +5688 1426 .8 +5688 647 1 +2881 2881 .6 +2881 353 1 +2881 46 1 +2881 797 .8 +2881 30 1 +2881 1436 .8 +2847 2847 .8 +2847 1788 .6 +2847 1768 1 +2847 1920 .6 +2847 1781 .6 +2847 675 .6 +2847 846 .8 +2847 1740 .8 +2847 1971 .6 +2847 72 .8 +2847 890 .6 +2847 2399 .8 +2847 4260 .6 +2847 4327 .8 +2847 780 .8 +2847 1813 .8 +2847 403 .6 +2847 800 .6 +2847 4111 .6 +2847 492 1 +2847 3597 .8 +2847 1153 .6 +2847 658 1 +2847 370 .8 +2847 214 .8 +2847 65 1 +2847 1998 .6 +2847 2104 .6 +2847 346 .8 +2847 2134 .6 +2847 624 .8 +2847 297 1 +2847 4957 .8 +2847 2782 .6 +2847 4342 .8 +2847 1382 .6 +2847 2468 1 +2847 1704 .6 +2847 4615 .8 +3791 3791 .6 +5761 1886 .8 +5761 5762 .6 +5761 4398 .6 +1198 1198 1 +5666 5666 .8 +5666 2726 .8 +5666 327 .8 +5666 3103 1 +1177 22 1 +1177 1124 1 +1177 426 1 +1177 424 1 +1177 1171 1 +1177 3770 1 +1177 30 1 +3208 3208 1 +3208 1171 1 +5763 5763 .6 +1479 747 1 +1479 746 1 +1479 748 1 +1479 290 1 +1479 764 1 +898 711 1 +898 774 1 +898 2464 1 +898 780 .8 +898 683 .8 +898 528 .8 +898 165 1 +898 813 1 +898 1370 .6 +898 5325 .8 +898 13 1 +898 701 1 +898 904 .8 +898 903 .8 +898 902 .8 +898 897 .8 +898 2348 .8 +898 3257 .8 +898 3428 .6 +898 905 .8 +898 901 .8 +898 782 .8 +898 900 .6 +898 899 .8 +898 727 .8 +898 45 1 +898 1538 .8 +898 2142 .6 +898 1364 .8 +898 723 .6 +898 892 1 +898 1851 1 +898 449 1 +17 841 1 +17 603 .8 +17 17 .8 +17 1671 .8 +17 243 .8 +17 328 1 +17 167 .8 +17 329 1 +17 44 1 +17 5764 .8 +17 1521 .6 +17 46 1 +17 15 .6 +17 767 .6 +17 625 .8 +17 165 .8 +17 4215 .8 +17 1021 1 +17 1332 .6 +17 4523 .6 +5765 5765 .6 +3216 3216 .6 +3216 1590 .6 +3216 110 .8 +3216 652 1 +3216 747 1 +3216 2453 .8 +3216 1663 .8 +3216 4423 .8 +3216 5766 .6 +3216 1499 .8 +3216 297 .8 +3216 3014 .8 +3216 4424 .6 +5767 5767 .6 +5135 328 1 +5135 30 1 +5135 46 1 +5135 126 1 +5135 5135 .6 +5135 950 .8 +5135 1738 1 +5135 827 1 +5135 1249 1 +5135 1053 .8 +5135 1428 .8 +5135 58 .8 +5135 2226 1 +5135 1908 1 +5135 1392 1 +5135 1757 1 +5135 1447 .8 +5135 716 1 +5135 119 1 +5135 1002 .8 +5135 1092 1 +5135 639 1 +5135 640 1 +5135 641 1 +5135 305 1 +5135 637 1 +5135 265 .8 +5135 331 .8 +5135 330 .8 +5135 440 1 +5135 427 1 +5135 1362 1 +5135 2615 .8 +5135 644 1 +5135 2214 1 +5135 1752 1 +5135 1116 1 +5135 432 1 +5135 334 .8 +5135 645 1 +5135 642 1 +5135 348 1 +5135 863 .8 +5135 1847 1 +5135 2213 .8 +5135 2747 .8 +5135 1519 1 +5135 63 1 +5135 1123 1 +5135 1167 .8 +5135 345 1 +5135 4583 1 +5135 623 .8 +5135 746 1 +5135 241 .8 +5135 717 1 +5135 805 .8 +5135 379 1 +5135 2847 .8 +5135 332 1 +5135 2103 1 +5135 1961 .8 +5135 327 .8 +5135 2348 1 +5135 1898 1 +5135 578 1 +5135 1436 1 +5135 1993 1 +5135 912 1 +5135 13 1 +5135 57 1 +5135 614 .8 +5135 1052 1 +5135 619 .8 +5135 1030 1 +5135 1955 1 +5135 422 1 +5135 618 1 +5135 104 .8 +5135 295 .8 +5135 2232 1 +5135 3288 .8 +5135 31 .8 +5135 2823 1 +5135 1286 .8 +5135 830 1 +5135 1910 1 +5135 1211 1 +5135 2247 1 +5135 363 1 +5135 1313 .8 +5135 1089 1 +5135 325 1 +5135 2218 1 +5135 1479 1 +5135 167 .8 +5135 1768 1 +5135 1247 1 +5135 915 1 +5135 1134 1 +1812 1812 .8 +1812 171 1 +1812 92 .8 +1812 292 1 +1812 647 1 +1812 5768 .6 +1812 2291 .8 +1812 1082 1 +1812 922 .6 +1812 858 1 +1812 1240 .8 +1827 1827 .8 +1827 30 1 +1827 126 1 +1827 522 .6 +1827 271 .8 +1827 956 .6 +1827 919 .8 +1827 951 .6 +1827 1028 .8 +1827 336 .8 +1827 157 .8 +2048 2048 1 +5740 5740 .8 +5740 82 1 +4028 4028 .6 +1162 1162 .8 +1162 434 1 +1162 46 1 +1162 1847 .8 +1162 437 .8 +1162 305 1 +1162 306 .8 +1162 844 .8 +1162 2698 .8 +1162 2002 .8 +1162 584 1 +1162 2218 1 +1162 301 .6 +1162 631 .6 +1162 743 1 +1162 630 .6 +1162 846 .8 +1162 1447 .8 +1162 927 .8 +5769 5769 1 +5770 45 .8 +5770 1154 1 +5770 30 1 +2201 2201 .8 +2201 555 1 +2201 286 1 +2201 1157 .8 +2201 764 1 +2201 1202 1 +5771 5771 1 +1562 296 1 +1562 1579 1 +1562 3024 1 +1562 375 1 +1562 3198 1 +1562 3787 1 +1562 1222 1 +1562 2342 .8 +1562 3127 1 +1562 1385 .8 +1562 1569 .6 +1562 2269 .8 +1562 747 1 +1562 5147 .8 +1562 5146 .6 +1562 1052 1 +1562 2268 .8 +1562 2100 .8 +1562 1626 .8 +2419 2419 1 +2419 1123 1 +2419 126 1 +2419 286 1 +2419 695 1 +2419 4067 1 +2419 649 1 +2419 2853 .8 +3324 1062 .8 +5772 5772 .6 +1799 1799 1 +1799 46 1 +1799 506 1 +1799 30 1 +4504 3269 .8 +4504 4503 .6 +5773 5773 .6 +1662 1662 .8 +1662 1490 1 +1662 1492 1 +1662 2497 .6 +1662 1636 .8 +1662 469 .8 +1662 1049 1 +1662 335 .8 +1662 791 1 +1662 1237 .8 +1662 801 .8 +1662 30 1 +1662 1001 1 +1662 46 1 +1662 1774 .6 +1662 2496 .6 +1662 1840 .8 +1662 708 .8 +1662 1178 .8 +1662 807 1 +1662 26 1 +1662 673 .8 +1662 2498 1 +1662 3625 .8 +1662 2911 .8 +1662 1094 1 +1662 2913 .8 +4038 357 .8 +1514 1514 .8 +1514 1515 1 +1514 2932 1 +1514 1957 1 +1514 65 .8 +1514 864 .8 +1514 876 .8 +1514 328 1 +1514 209 .8 +2372 620 .8 +516 121 1 +516 46 1 +516 438 1 +516 81 .8 +516 1996 1 +516 1126 1 +516 1543 .8 +516 1457 .8 +516 30 1 +516 214 .8 +516 3403 .6 +516 2578 .8 +516 418 .6 +516 1642 .8 +516 553 .8 +516 990 .8 +516 2940 .6 +516 778 .8 +1078 1401 .8 +1078 934 .8 +1078 2562 .8 +1078 351 .8 +1078 328 1 +1078 1117 1 +1078 1434 .8 +1078 858 1 +1078 1083 .8 +1078 912 .8 +1078 430 .8 +1078 1028 .8 +1078 1753 1 +1078 1916 .6 +1078 325 1 +1078 2247 .8 +1078 323 .8 +1078 326 1 +1078 656 .8 +1078 3317 .6 +1078 5374 .6 +1078 1104 .6 +1078 4946 .6 +1078 4716 .6 +1078 205 .6 +1078 167 .8 +1078 166 .8 +1078 1765 .8 +331 332 1 +331 335 .8 +331 333 .8 +331 637 .8 +331 1766 .8 +331 729 .8 +331 349 .8 +331 282 1 +331 49 .8 +331 51 .8 +419 419 .6 +5774 5774 1 +5775 5775 .6 +1382 1382 .8 +1920 1604 .8 +4260 4260 .6 +1558 3386 .8 +1558 166 1 +5776 5776 .6 +5777 5777 .8 +5778 51 1 +5778 1723 1 +5778 1001 1 +5778 58 1 +5778 1908 1 +5778 650 1 +5778 649 1 +5778 648 1 +5778 334 1 +5778 647 1 +5778 119 1 +5778 579 1 +5778 1116 1 +5778 1428 1 +5778 1450 1 +5778 738 1 +5778 317 .8 +5778 49 1 +5778 2210 1 +5778 501 .8 +5778 22 1 +5778 1840 .8 +5778 1490 1 +5778 98 .8 +5778 96 .8 +5778 95 1 +5778 93 .8 +5778 92 1 +5778 91 .8 +5778 90 .8 +5778 352 1 +5778 466 .8 +5778 678 .8 +5778 677 .8 +5778 230 .8 +5778 2841 .8 +5375 5375 .6 +5375 141 .8 +1531 1531 .6 +1531 344 1 +1531 324 1 +1531 1526 .8 +1531 5779 .6 +5780 5780 .8 +5780 271 .8 +5780 34 .8 +4124 207 .8 +4124 202 1 +5781 5781 .6 +252 252 .6 +252 92 .8 +252 597 .8 +252 540 .6 +252 3287 .6 +1353 1353 .8 +1353 623 .8 +1353 1356 .8 +1353 3172 .8 +1353 1754 1 +1353 1495 1 +5295 5295 .8 +5295 1284 .8 +5295 1227 1 +5295 349 1 +5295 348 1 +5295 29 1 +5295 324 1 +5295 943 1 +5295 1690 .8 +793 793 1 +793 577 1 +793 1278 1 +793 157 1 +793 791 .8 +793 540 .8 +793 438 .8 +793 3328 .8 +793 646 1 +793 2851 .6 +793 766 .6 +793 597 .8 +793 2331 .8 +793 3210 .8 +793 1568 .8 +793 718 .8 +793 3587 .8 +793 82 .8 +793 722 .6 +793 46 1 +793 103 .8 +793 924 .6 +793 17 .6 +793 593 .8 +793 606 .6 +793 757 .6 +793 5032 .6 +793 934 1 +793 1126 1 +793 2134 .6 +793 1399 .6 +793 617 .6 +793 938 .6 +793 1545 .8 +793 6 .8 +793 3028 .6 +793 1390 .6 +793 923 .6 +793 112 1 +793 525 1 +793 1908 1 +793 1319 1 +793 1316 1 +793 1418 .8 +793 22 1 +793 214 .8 +793 1154 .8 +793 1961 .8 +793 44 1 +793 1453 .8 +793 3032 .6 +793 3507 .6 +793 503 .6 +793 544 .6 +793 785 .8 +793 788 .8 +793 4795 .8 +793 1565 1 +793 162 1 +793 805 1 +793 613 .8 +793 893 1 +793 712 .8 +793 15 .6 +793 87 .6 +793 399 .8 +793 2141 .8 +793 242 1 +793 683 .8 +793 62 .8 +793 795 .8 +793 621 1 +793 189 .6 +793 1182 .6 +793 955 .6 +793 34 1 +793 627 1 +793 625 .8 +793 1092 .8 +793 1521 .8 +793 1352 .6 +793 890 .6 +793 1768 1 +793 232 .8 +793 650 .8 +793 335 .8 +793 892 .8 +793 3853 .8 +793 801 1 +793 2861 1 +793 265 1 +793 1586 1 +793 583 .8 +793 830 1 +793 2792 .6 +793 362 .8 +793 4581 .8 +793 623 .8 +793 346 .8 +793 2042 1 +793 100 1 +793 1630 .6 +793 418 .8 +793 612 1 +793 1991 1 +793 776 1 +793 711 1 +793 638 1 +793 2703 .8 +793 680 .8 +793 1 1 +793 960 .8 +793 2847 .8 +793 4956 .6 +793 4029 .6 +793 53 .8 +793 4712 .8 +793 370 .8 +793 1679 .8 +793 1277 .8 +793 678 .8 +793 1524 1 +793 2450 1 +793 1566 .8 +793 1049 1 +793 1656 .6 +793 3181 .6 +793 2948 .6 +793 2251 .8 +793 799 .8 +793 3444 .6 +793 1869 1 +793 780 1 +793 774 1 +793 422 .8 +793 1851 1 +793 2537 .6 +793 363 .8 +793 5782 .6 +793 1392 .8 +793 3478 .8 +793 3440 .8 +793 1896 .8 +793 1236 1 +3079 3079 .8 +3079 1020 1 +3079 739 1 +3079 1307 .8 +3079 648 1 +3079 142 1 +3079 789 .8 +3079 736 1 +3079 855 .8 +3079 837 .8 +3079 656 .8 +3079 46 1 +3079 84 .8 +3079 3115 .8 +3079 1075 1 +3079 324 1 +3079 642 1 +3079 741 .8 +3079 90 .8 +3079 2680 .6 +3079 859 1 +5783 5783 .6 +5784 3182 .8 +4149 4148 1 +4149 350 1 +5785 5785 .6 +5785 1393 .8 +5785 19 .8 +5785 271 .8 +5785 584 1 +5785 316 1 +5785 760 .6 +5498 5498 .6 +5498 469 .6 +5786 1193 .8 +5787 5787 1 +5787 2667 1 +5788 5788 1 +5788 1148 1 +5789 5789 .6 +5790 5790 .8 +5791 5791 .8 +5791 4580 .8 +5791 1153 .8 +5792 5792 .6 +5793 5793 1 +5794 209 .8 +5794 2078 .8 +1978 625 .6 +1978 2970 .6 +1978 5795 1 +297 3067 .8 +297 112 1 +297 1030 .6 +297 65 1 +297 3067 .8 +297 694 .8 +297 3032 .6 +297 329 1 +297 440 1 +297 148 .8 +297 282 1 +297 762 1 +297 624 .8 +297 1126 .8 +297 1134 1 +297 46 1 +297 495 .6 +297 987 .6 +297 265 .8 +297 157 .6 +297 1981 .8 +297 1390 .6 +297 764 1 +297 3928 .8 +297 1123 1 +297 696 1 +297 2312 1 +297 2031 1 +297 3328 1 +2910 2910 .6 +2910 1492 1 +2910 30 1 +2910 713 1 +5796 5796 1 +5797 5797 .6 +609 112 1 +609 118 1 +609 426 1 +609 425 1 +609 1124 1 +609 3069 .8 +609 22 1 +609 3067 .8 +609 424 .6 +609 3066 .6 +5798 5798 .6 +5799 5799 .6 +5800 5800 .6 +5801 5801 .6 +3374 3373 .6 +4739 4739 .6 +4739 22 1 +641 641 .8 +641 1921 .8 +641 46 1 +641 30 1 +641 327 .8 +641 329 1 +641 467 .8 +641 3032 1 +5802 5802 .8 +5803 5803 .6 +5803 2449 .8 +5803 6 .8 +5803 126 1 +5803 2447 .8 +5803 2448 .8 +5803 1277 1 +5803 1731 .8 +5803 2251 1 +5803 1565 1 +5803 1991 1 +5803 1278 1 +5803 9 1 +3411 3411 .6 +3411 642 1 +1109 1109 .6 +1109 950 .8 +1109 4112 .8 +1109 116 1 +1109 30 1 +1109 925 .8 +1109 1094 1 +1109 719 1 +1109 46 1 +1109 115 1 +1109 114 .8 +1109 5804 1 +1109 2396 1 +1109 1105 .8 +3471 916 1 +3471 911 .8 +3471 3471 1 +5805 1052 .6 +5492 5491 .6 +5492 237 .8 +5492 1422 .6 +5806 5806 1 +5806 1565 1 +5804 5804 1 +5807 5807 .6 +5807 3002 .8 +5807 4779 1 +912 912 .8 +912 915 .8 +912 1028 .8 +912 83 .8 +912 1605 .8 +912 171 1 +912 172 .8 +912 1754 1 +912 349 1 +912 506 1 +912 2646 .8 +912 641 .8 +912 1314 .8 +912 13 1 +912 735 1 +912 2089 .6 +912 712 .8 +912 1441 1 +912 274 1 +912 526 1 +912 807 1 +912 1440 .8 +912 1631 .8 +912 2134 .6 +912 3564 .8 +912 2138 .6 +912 799 .6 +912 165 .8 +5808 5808 .8 +223 223 .6 +223 928 .6 +223 643 1 +223 214 .6 +2568 658 .8 +2568 2568 .6 +2568 576 .8 +2568 1488 .6 +2568 297 .8 +2568 3085 .6 +2568 5809 .6 +2568 1407 .6 +2568 2593 .6 +2568 1000 .6 +2568 3740 .6 +2568 2749 .6 +5810 242 .8 +5810 438 .6 +5810 1521 .8 +4037 4037 .6 +4037 784 .8 +4037 743 .8 +4037 286 1 +4037 289 .6 +4037 312 .6 +4037 3275 .6 +4037 328 1 +4037 2528 .8 +4037 623 .8 +4951 3432 1 +4951 843 1 +4951 2081 .6 +4951 844 1 +4951 1243 1 +4951 1242 1 +4951 2754 .8 +2997 1543 1 +2997 764 1 +2997 2998 1 +2997 911 .8 +2997 647 1 +2997 1454 1 +2997 353 1 +2997 175 1 +2997 1222 1 +2997 555 1 +2997 1603 1 +5811 5811 .6 +2594 584 1 +5812 5812 .6 +5813 5813 1 +5814 5814 1 +5815 960 .8 +5815 1844 .8 +5815 5257 .6 +5815 943 1 +5815 801 1 +5815 4499 .6 +5815 841 .8 +2252 2252 .8 +2252 937 1 +2252 492 .8 +2252 30 1 +2252 719 1 +2252 830 1 +2252 990 1 +2252 1851 1 +2252 1491 1 +2252 3625 .8 +2252 1362 1 +5816 5816 .8 +5817 5817 .6 +5818 1160 1 +5246 5246 1 +5246 328 1 +5246 1967 1 +5819 5820 .8 +5698 286 1 +5698 289 .8 +5698 1984 .6 +5698 126 1 +5698 175 1 +5698 1702 1 +5698 2619 1 +5698 1117 1 +5698 1176 1 +5698 5554 .8 +5698 5698 .6 +5698 385 .8 +5698 387 .8 +5032 5032 1 +5032 5821 .6 +1741 64 .6 +1741 1741 .8 +1741 1740 .8 +1741 943 1 +1741 653 .8 +504 504 .6 +5822 2631 .8 +5822 1800 .6 +5822 1322 1 +5822 3116 .6 +5822 2732 1 +5822 1600 .8 +5822 1333 .6 +5822 2173 .8 +5823 5823 .6 +5824 135 .6 +5824 2274 .8 +5824 1494 .6 +5824 1378 .6 +5824 328 1 +5824 429 .8 +5824 1655 1 +5825 5825 1 +1955 1711 1 +1955 400 1 +173 173 .8 +173 175 1 +173 328 1 +173 431 1 +173 30 1 +173 1318 1 +173 4405 1 +173 1316 1 +173 1319 1 +173 1301 1 +173 893 .8 +173 583 .8 +173 646 1 +173 157 .8 +173 1745 1 +173 683 1 +173 984 .8 +173 780 .8 +173 1418 1 +173 2482 1 +173 3838 1 +173 1237 1 +173 1910 1 +173 639 1 +173 242 1 +173 1317 1 +173 815 .8 +173 1447 1 +173 348 1 +173 445 1 +173 46 1 +173 1908 1 +173 717 1 +173 5826 .8 +173 4919 .8 +173 2214 1 +173 2141 1 +173 2232 1 +173 4296 1 +173 1149 1 +173 3892 1 +173 4406 1 +173 3754 1 +173 1309 1 +173 1142 1 +173 1020 1 +173 1181 .6 +173 855 1 +173 1663 .8 +173 4648 1 +173 5827 .6 +173 652 1 +173 5828 1 +173 170 1 +173 169 .8 +173 171 1 +173 174 1 +173 172 1 +173 555 1 +173 1153 1 +173 1872 1 +173 4207 1 +5829 5829 .6 +3032 495 1 +3032 297 .8 +3032 3928 .8 +3032 4353 .8 +3032 92 .8 +3032 104 1 +3032 989 .8 +3032 3032 .6 +3032 467 .8 +3032 385 1 +3032 793 .6 +3032 15 .8 +3032 1315 1 +3032 1485 .6 +3032 1898 1 +3032 328 1 +2974 2974 .6 +2974 2255 1 +2974 2614 .8 +2974 990 1 +2974 2975 .8 +2974 1852 1 +5830 5830 .6 +1462 1462 1 +5831 5831 .6 +1960 320 1 +4179 298 .8 +4179 2985 .8 +4179 4179 .8 +4179 1645 .8 +5832 5832 .6 +1836 1836 1 +1836 437 .8 +1836 1834 .8 +2688 1947 .8 +2688 2832 .8 +2688 45 1 +2688 1254 .8 +2688 4315 .6 +2688 5624 .6 +5833 3177 .6 +5833 700 .6 +5833 4902 .8 +5833 4206 .6 +5833 2333 .6 +5833 621 1 +5833 480 .6 +5833 3489 .6 +5833 5681 1 +2061 46 1 +2061 2061 .6 +2061 1075 1 +2061 352 1 +2061 1633 .8 +2061 349 1 +2061 348 1 +2061 435 1 +2061 318 .8 +2061 1894 .8 +2061 2284 .8 +2061 1052 .8 +2061 316 .8 +2061 1073 .8 +2061 328 1 +2061 939 .8 +2061 958 .8 +2061 142 1 +2061 1519 1 +2061 736 1 +2061 4286 1 +2061 186 1 +5834 1310 .8 +5834 2889 1 +5834 165 1 +5834 164 .8 +5835 5835 .6 +891 889 .6 +891 2986 .8 +891 126 1 +891 885 .8 +891 711 .8 +891 142 1 +891 736 1 +891 175 1 +891 30 1 +891 597 .8 +891 3716 .8 +891 329 1 +891 46 1 +1427 328 1 +1427 30 1 +1427 1426 1 +1427 1429 .8 +1427 1496 .8 +1427 165 .8 +1427 286 1 +1427 555 1 +1427 175 .6 +1427 329 1 +1427 829 .8 +1427 1021 .8 +1427 154 1 +1427 1671 .6 +1427 45 1 +1427 1343 1 +1427 647 1 +1427 5688 1 +1427 3360 .6 +1427 1400 .6 +1427 944 .6 +1427 40 .8 +1427 658 .8 +1427 2950 .6 +5836 5836 1 +5837 385 1 +2173 2173 .6 +2173 2260 1 +2173 937 1 +2173 2792 .6 +2173 780 .8 +2173 492 .8 +2173 346 .8 +2173 1004 .8 +2173 1851 1 +3838 1316 1 +3838 1318 1 +3838 2214 1 +3838 646 1 +3838 3892 1 +3838 212 1 +3154 5838 .6 +3154 2765 .8 +3154 1415 .8 +3154 976 .8 +3154 836 .8 +3154 648 1 +3154 736 1 +3154 5705 .8 +5839 5839 .8 +2260 2260 .6 +2667 2667 .6 +2667 388 .8 +2667 1684 .8 +2667 801 .8 +2667 390 1 +2667 1309 .8 +2667 392 1 +2667 389 .8 +2667 651 .8 +2667 126 1 +2667 714 .8 +2667 2843 .6 +2667 738 .8 +2667 391 .8 +2667 393 .8 +2667 797 .8 +3433 604 .8 +3433 2432 1 +3433 5840 .8 +2787 780 .8 +2787 2787 .8 +2787 1756 1 +2787 1741 .8 +2787 943 1 +2787 399 .8 +2787 1732 1 +2787 1875 .8 +2787 2372 .8 +2211 1165 .8 +5841 1065 1 +5841 46 1 +5842 5842 .6 +1636 1636 1 +1636 335 .8 +1636 1662 .8 +1636 1967 1 +1636 283 .8 +1636 801 1 +1636 1768 1 +1636 634 .8 +1636 904 .8 +1636 532 .8 +1636 214 .8 +1636 1384 .8 +1636 701 .8 +5725 5725 1 +3672 3672 .8 +3672 450 .8 +3672 449 1 +3672 3671 .8 +289 289 .8 +289 46 1 +289 3598 .8 +289 2528 .8 +289 916 1 +289 191 .8 +289 312 .6 +289 860 1 +289 288 .8 +5843 5843 .8 +5026 5026 .6 +2720 1247 1 +2720 1092 1 +2720 1238 1 +2720 353 1 +2720 1123 1 +2720 167 .8 +2720 737 1 +2720 2719 .8 +2720 1200 1 +2720 2538 .8 +1241 1241 .8 +1241 1496 .8 +1051 1051 .8 +1051 736 1 +1051 1400 .6 +1051 2887 .8 +1051 53 .8 +1051 718 .8 +1051 73 .8 +2727 2727 .8 +2727 1211 .8 +2727 918 .8 +2727 1031 .8 +2727 883 .8 +5844 5844 1 +5722 5722 1 +5722 1386 1 +5722 1554 1 +5722 997 .8 +5722 1264 .8 +5845 333 .8 +5845 776 .8 +5845 716 .8 +5845 786 .8 +74 69 .8 +74 67 1 +74 48 .8 +74 70 .8 +74 71 .8 +74 1958 .8 +74 68 .8 +1211 623 .8 +1211 1860 .6 +1211 1546 1 +1211 1449 .8 +1211 784 .8 +1211 1411 .6 +1211 883 .8 +1211 4075 .6 +1211 286 .8 +1211 1031 .8 +1211 3615 .6 +1211 2727 .6 +1211 1176 1 +1211 2574 .8 +1211 598 .8 +1211 3240 .6 +1211 1126 .8 +1211 2076 .8 +1211 2852 .8 +1211 1204 .8 +1211 3668 1 +1211 385 .8 +1211 1464 .6 +1211 764 1 +1211 1201 .8 +1211 1202 .8 +1211 1216 .8 +1211 177 .8 +1211 194 .8 +1211 1154 .6 +1211 850 1 +5846 5846 .6 +5034 5034 .8 +5034 46 1 +5847 5847 .6 +5848 5848 .6 +5848 5538 .6 +3724 3724 .6 +3724 3482 1 +3724 1499 1 +1395 522 1 +1395 807 1 +1395 804 .8 +1395 780 .8 +1395 2774 .8 +1395 2182 .8 +1395 1968 .8 +1395 1395 1 +1395 1384 .6 +1395 1142 .8 +1395 2251 1 +4413 4414 .8 +4413 1386 .8 +4413 1005 .8 +4413 2253 .8 +4413 4412 .8 +5849 5849 .6 +3205 3205 .6 +3205 2795 .8 +3205 652 1 +3205 2940 .8 +2918 2918 .6 +2918 1165 .8 +2918 597 .8 +2918 556 .8 +2918 791 1 +2918 2728 .8 +5850 5850 .8 +5850 1515 1 +2867 2867 .6 +2867 2866 .6 +2867 3252 .8 +2867 2868 .6 +2867 157 .8 +2867 46 1 +2867 1175 1 +4905 4905 1 +4905 148 1 +1665 124 .8 +1665 399 1 +1665 4544 .8 +1665 1731 1 +1665 1732 .8 +1665 121 1 +1665 1664 .8 +5851 5851 .6 +3193 3193 .6 +3193 739 1 +3193 3663 1 +3193 3664 1 +3193 2516 .8 +3193 433 1 +3193 175 1 +3193 784 .6 +3193 46 1 +3193 943 .8 +3193 438 .8 +2148 2148 .8 +3826 241 .6 +3826 703 .8 +3826 803 .8 +3826 1446 .8 +3826 1447 .8 +3826 352 1 +3826 2076 1 +3826 303 1 +3826 351 .8 +3826 2652 .8 +3826 3826 .8 +5596 1085 .6 +3476 3476 .8 +3476 739 1 +3476 1580 .8 +3476 467 .8 +3476 736 1 +3476 329 1 +3476 837 .8 +3476 3078 .8 +3476 175 1 +3476 741 1 +3476 855 1 +3476 126 1 +3476 30 1 +3476 46 1 +3476 647 1 +3476 286 1 +3476 324 1 +3476 3544 .8 +3476 786 .8 +3476 142 .8 +3476 1370 .6 +3476 711 1 +3476 128 1 +1420 1420 1 +5852 2571 .8 +5853 5853 .8 +3885 3885 1 +3885 426 1 +3885 1124 1 +3885 424 1 +3885 425 1 +3885 22 1 +3885 45 1 +3885 4896 1 +2519 9 .8 +2519 46 1 +2519 506 1 +2519 855 1 +2519 576 .8 +2519 1032 .8 +2519 562 1 +2519 1075 .8 +5854 5854 .6 +2254 982 .8 +2254 492 1 +2254 810 1 +2254 1356 1 +2254 1004 .8 +2254 1020 1 +2254 780 .8 +2254 807 1 +2254 460 .8 +2254 2975 .8 +2254 1852 1 +2254 545 1 +5855 5855 .6 +5855 918 1 +5856 46 1 +5856 5856 .8 +5856 435 1 +4919 4919 1 +4919 173 .8 +1156 1156 1 +1156 2320 .8 +1156 1155 1 +1156 286 .8 +1156 292 1 +1156 1190 1 +1156 2312 1 +1156 273 1 +1156 2216 .8 +1156 911 .8 +1156 290 .8 +1156 764 1 +1156 1240 1 +1156 1158 1 +1156 962 1 +1156 1157 1 +1156 1218 .8 +1156 1270 1 +4087 302 .8 +4087 191 .8 +4087 286 1 +4087 4087 .6 +2674 1809 1 +3564 3564 .8 +5604 129 1 +5604 74 1 +5604 714 1 +5604 715 1 +5604 2911 1 +5604 1117 1 +5604 643 1 +5604 62 1 +5604 3774 .8 +5604 45 1 +3013 3013 1 +3013 3225 1 +1575 1575 .6 +1575 1574 .8 +1575 1573 .8 +5857 5857 .6 +4743 4743 .6 +4743 329 1 +4743 126 1 +4743 175 1 +4743 324 1 +4743 576 1 +4743 1248 1 +4743 286 1 +4743 353 1 +4743 30 1 +4743 46 1 +4743 438 .8 +4743 1343 1 +4743 658 .8 +4743 1068 1 +4743 883 .8 +4743 776 .8 +4743 2789 .8 +4743 1075 .8 +5858 46 1 +5858 286 1 +5859 5859 1 +813 1247 1 +813 695 1 +813 1116 1 +813 30 1 +813 1020 1 +813 1711 1 +813 328 1 +813 126 1 +813 577 1 +813 613 1 +102 102 .8 +102 3116 .6 +102 1644 .6 +102 30 1 +102 65 .8 +102 2876 .6 +102 142 .8 +102 739 1 +102 736 1 +102 740 .8 +102 84 .8 +102 741 .8 +102 584 1 +102 1288 .8 +102 5860 .6 +102 91 .8 +102 2376 .8 +102 1516 .8 +102 1605 .8 +102 323 .8 +102 886 .8 +102 106 .8 +102 2162 .6 +102 1693 .8 +102 329 1 +102 1097 .8 +102 345 1 +102 2261 .6 +102 5161 .8 +102 792 .8 +102 3316 .8 +102 859 1 +102 5861 .6 +102 831 .8 +102 836 .8 +102 912 .8 +102 2629 .8 +102 3317 .8 +102 2961 .8 +102 1167 .6 +102 4373 .6 +102 5862 .6 +102 2782 .6 +102 587 .8 +102 1064 .8 +102 801 1 +102 789 1 +5863 5863 .6 +4204 4204 1 +4204 1223 .8 +294 294 .6 +294 227 .6 +294 283 .8 +1779 1779 .6 +1779 776 .8 +1779 328 1 +1779 457 .8 +1779 46 1 +1779 286 .8 +1779 157 .8 +1779 555 1 +1779 126 1 +1779 576 1 +1779 1343 1 +1779 764 1 +1779 438 .6 +1779 526 .8 +1779 658 .8 +1779 1971 .6 +1779 4342 .6 +1779 188 .6 +1779 4410 .6 +1779 1980 1 +1779 1629 1 +1779 1248 .8 +1779 2429 .6 +1779 3483 .6 +3816 3816 .8 +3816 1156 1 +3816 3815 .8 +5864 915 1 +5864 2133 1 +5864 1644 .8 +5864 1591 .8 +5864 1837 .8 +5864 3585 .6 +5864 772 .8 +5864 1858 1 +5864 2282 .8 +5864 173 1 +5864 891 .8 +5864 1968 1 +5864 2792 .8 +5864 1780 .6 +5864 1092 1 +5864 4635 .8 +5864 546 .8 +5864 373 1 +5864 548 .8 +5864 5135 .6 +5864 2483 1 +5864 1163 .8 +5864 378 .6 +5864 2883 .8 +5864 1844 .8 +5864 2239 1 +5864 3394 .8 +3592 1766 .8 +3592 637 .8 +3592 49 .8 +3592 331 .8 +3592 53 .8 +3592 332 1 +3592 335 .8 +3592 3591 .8 +3592 46 1 +3592 858 1 +3592 736 .8 +3592 353 1 +5865 5865 1 +3982 1690 .8 +3982 329 1 +3982 353 1 +3982 739 1 +3982 782 .8 +3982 2638 .8 +3426 3426 .8 +3426 126 1 +3426 175 1 +3426 577 .8 +2573 2573 .8 +2573 1126 1 +2573 46 1 +2573 2950 .8 +2573 883 .8 +1953 1953 .6 +1953 325 1 +1953 188 .8 +1953 727 .8 +1953 363 1 +1953 2247 1 +974 974 .8 +974 2829 .6 +974 983 .8 +974 1545 .8 +974 1808 .6 +974 2390 .6 +974 1909 .8 +974 1174 .6 +5866 5866 .6 +4366 710 1 +4366 4366 .8 +5867 5867 .6 +5868 30 1 +4787 4787 .6 +4787 666 .8 +4787 2614 .8 +2584 1397 1 +2584 2583 1 +2584 1117 1 +2584 202 1 +2069 2069 1 +2069 2207 .8 +2069 429 .8 +2069 2205 .8 +2069 1823 .6 +2069 46 1 +2069 30 1 +2069 1309 .8 +2069 303 1 +2069 22 1 +2069 578 .8 +2069 1020 1 +2069 175 1 +2069 2208 .8 +2069 431 1 +2069 44 .8 +2069 725 .8 +2069 857 .6 +2069 5268 .6 +2069 141 .8 +2069 126 1 +2069 1065 .8 +2069 1066 .6 +1154 632 .8 +1154 46 1 +1154 54 .8 +1154 157 .8 +1154 175 1 +1154 53 1 +1154 329 .8 +1154 796 .6 +1154 242 .8 +1154 126 1 +1154 653 .8 +1154 1740 .8 +1154 80 .8 +1154 4674 1 +1154 1738 .8 +1154 1739 .8 +1154 2246 1 +1154 1741 .8 +1154 431 1 +1154 1743 .8 +1154 4198 .8 +1154 37 1 +1154 2782 .8 +1154 1237 1 +1154 717 1 +1154 1171 1 +1154 2240 .8 +1154 173 .8 +1154 639 .8 +1154 1747 .8 +1154 1126 1 +1154 1211 .8 +1154 883 .8 +1154 3182 .6 +1154 694 1 +1154 737 .8 +1154 5770 .6 +1154 30 1 +1154 1075 1 +1154 325 1 +1154 2536 .8 +1154 2247 1 +1154 2304 .8 +1154 363 .8 +1154 297 1 +1154 1147 .8 +1154 850 .8 +1154 1370 1 +1154 45 1 +1154 1113 .8 +1154 696 1 +1154 148 .8 +1154 1495 1 +5869 5869 .6 +5870 5870 .8 +5871 5871 .6 +5871 282 1 +5872 356 1 +5872 387 1 +5872 385 1 +5872 3274 .6 +5872 3271 .6 +5872 3273 .6 +5872 3133 .8 +349 30 1 +349 577 .8 +349 719 1 +349 1020 1 +349 1073 .8 +349 934 1 +349 1079 .8 +349 328 1 +349 1437 .8 +349 912 1 +349 791 .8 +349 1993 1 +349 172 1 +349 144 .8 +349 50 .8 +349 481 .8 +349 1356 .8 +349 121 1 +349 1847 1 +349 1309 .8 +349 501 .8 +349 110 .8 +349 348 1 +349 65 .8 +349 1133 .8 +349 1021 .8 +349 829 .8 +349 623 .8 +349 2616 .8 +349 4009 .6 +349 3749 .6 +349 304 1 +349 331 .8 +349 1752 1 +349 174 1 +349 588 .6 +349 333 .8 +349 3088 .6 +349 804 .8 +349 511 1 +349 438 .8 +349 523 .8 +349 1117 1 +349 735 1 +349 1589 .8 +349 492 1 +349 332 1 +349 3050 .8 +349 712 .8 +349 303 1 +349 513 .8 +349 2134 .6 +349 157 .8 +349 326 1 +349 813 1 +349 799 .6 +349 1072 .8 +349 620 .8 +349 2450 .8 +349 2255 .8 +349 171 1 +349 918 1 +349 1001 1 +349 5873 .6 +349 346 .8 +349 728 .8 +349 808 .8 +349 2250 .8 +349 335 1 +349 1495 1 +349 1851 1 +349 3206 .8 +349 4583 .8 +349 2173 .8 +349 1384 .6 +349 2246 1 +349 2975 .8 +349 715 .8 +349 1852 1 +349 2136 .8 +349 191 1 +349 779 .8 +349 2464 1 +349 2251 1 +349 1326 1 +349 1362 .8 +349 1988 1 +349 3897 .8 +349 5874 .6 +349 4468 1 +454 454 .8 +454 448 .8 +454 5384 .8 +454 46 1 +454 2792 .6 +5607 5607 .6 +537 537 .6 +537 438 .6 +4627 4120 .8 +4627 2227 .8 +1350 1350 .8 +1350 623 .8 +1851 1049 1 +1851 490 .8 +1851 1968 1 +1851 513 1 +1851 572 1 +3343 1047 .6 +3343 584 1 +3343 993 1 +3343 3342 .6 +3343 803 .6 +3343 3343 .6 +3343 9 .8 +3343 3268 .8 +3343 626 1 +3343 3904 .8 +3343 70 .6 +5875 5875 1 +1192 1192 .6 +1192 917 .6 +1192 9 .8 +1192 582 .8 +1192 1047 .6 +1192 2420 1 +1192 328 1 +1192 175 1 +1192 93 .6 +1192 286 1 +1192 597 .8 +1192 1123 1 +1192 1219 .8 +1192 904 .6 +1192 282 1 +1192 313 .6 +1192 257 .8 +1192 214 .8 +1192 556 .8 +1192 1992 .8 +1192 245 .6 +2377 2377 .8 +2377 324 1 +2377 1799 1 +2377 1023 .8 +2377 2945 .6 +2377 92 .8 +2377 13 .8 +2377 348 1 +2377 349 1 +2377 22 1 +2377 1028 .8 +2377 1519 .8 +5876 5876 .6 +5877 5877 1 +11 1589 .8 +11 4117 .6 +11 584 1 +11 30 1 +11 46 1 +11 1156 1 +5878 5878 .8 +5878 1692 .8 +5878 584 1 +5878 4026 .8 +370 463 .8 +370 464 .8 +370 462 .6 +370 465 1 +370 3298 .8 +370 265 .8 +370 399 .8 +370 369 .8 +5879 5879 .6 +5879 30 1 +5879 46 1 +5879 1116 1 +5879 126 1 +5879 1162 1 +5879 286 1 +5879 710 1 +5880 1609 .8 +5880 1648 .8 +5880 861 .8 +5880 2171 1 +5880 296 1 +5880 101 1 +5880 102 .8 +5880 103 .8 +5880 104 1 +5880 105 .8 +5880 1769 1 +5880 949 1 +5880 2905 .8 +5880 199 .8 +5880 677 .8 +5880 678 .8 +5880 466 .8 +5880 603 .8 +5880 352 1 +5880 825 .8 +5880 1030 1 +5880 3099 .8 +5880 996 .8 +5880 263 .8 +5880 1963 .8 +5880 1645 .8 +5880 17 .8 +5880 2247 1 +5880 1894 1 +5880 1641 .8 +5880 1182 .8 +5880 2246 1 +5880 740 .8 +5880 1849 .8 +5881 5881 .6 +5882 5882 .8 +5882 1549 .8 +5882 126 1 +5883 1377 .8 +1901 658 .8 +1901 1220 .8 +1901 945 .6 +1901 4053 .6 +1901 1161 .6 +1901 1537 .8 +1399 1399 .6 +1399 157 .8 +1399 593 .8 +1399 633 .8 +1399 1165 .8 +1399 4 .6 +1399 950 .6 +1399 3587 .8 +1399 718 .8 +1399 793 .6 +1399 597 .8 +1399 1789 .6 +1399 4892 .6 +1399 1967 1 +1399 457 .8 +1399 265 .8 +1399 1047 .8 +1399 704 .6 +1399 246 .6 +1399 594 .8 +1399 5884 .6 +1399 2824 .8 +1399 620 .6 +1399 1882 .6 +1399 4795 .8 +1399 89 .6 +1399 2013 .6 +1399 316 .8 +1399 232 .6 +1399 890 .6 +1399 807 1 +1399 4900 .6 +1399 2265 .6 +1399 2264 .6 +1399 678 .8 +1399 364 .8 +5885 5885 .6 +890 890 .8 +890 157 .6 +890 107 .8 +890 632 .8 +890 3407 .8 +890 210 1 +890 399 .6 +890 346 .8 +890 683 .6 +890 793 .8 +890 2934 .6 +890 966 1 +890 1494 .6 +890 429 .6 +890 46 .6 +890 328 .8 +890 3033 .6 +890 812 .8 +890 1153 1 +890 794 .6 +890 892 .6 +890 1399 .6 +890 1512 .6 +890 1145 .6 +890 888 .8 +890 806 .6 +890 461 .6 +890 885 .6 +890 588 .6 +890 239 .6 +890 1586 .6 +890 630 .6 +890 1181 .6 +890 2847 .6 +890 45 .6 +2172 2172 .6 +2172 171 1 +2172 172 1 +2172 1028 .8 +2172 34 .6 +2172 1603 1 +2172 947 .6 +2172 328 1 +2172 934 .8 +2172 1754 1 +2172 933 .6 +947 30 1 +947 306 .8 +947 719 1 +947 1356 .8 +947 947 .8 +947 468 .8 +947 1077 .6 +947 328 1 +947 915 .8 +947 1434 .8 +947 827 .8 +947 1993 .8 +947 2561 .8 +947 349 .8 +947 1028 .6 +947 1085 .8 +947 112 .8 +947 1616 .8 +947 174 .8 +947 1075 1 +947 1123 1 +947 1020 1 +947 1495 .8 +947 466 .8 +947 46 1 +947 1476 .8 +947 303 1 +947 440 1 +947 172 1 +947 316 .8 +947 286 1 +947 1072 .8 +947 2172 .8 +947 918 .8 +947 2271 .8 +947 807 .8 +947 121 1 +947 1937 .8 +947 804 .6 +947 1719 .8 +947 936 .8 +947 949 1 +947 1076 .6 +947 712 .8 +947 3736 .8 +947 813 1 +961 1663 .6 +961 1119 .8 +961 233 .6 +961 1190 .6 +961 593 .6 +961 582 .8 +961 1000 .8 +961 524 .8 +5886 5886 .8 +5887 167 .8 +5887 1863 .8 +5887 590 .8 +5887 1703 .6 +5887 3316 .8 +4207 1147 .8 +4207 1153 1 +4207 3509 .8 +4207 1874 1 +4207 2694 .8 +4207 2695 .8 +5888 5888 .6 +5888 46 1 +5888 126 1 +5888 286 1 +5888 30 1 +5888 328 1 +3420 109 .8 +3420 3547 .6 +3420 2468 .8 +3420 3546 .8 +3420 3420 .8 +5889 5889 .8 +4096 279 1 +4096 4098 .8 +4096 441 1 +4096 4637 .6 +509 509 .6 +509 438 .8 +929 1512 .8 +929 599 .8 +929 98 .8 +929 1992 1 +929 604 .6 +929 4122 .8 +929 630 .6 +929 62 .8 +5890 5890 1 +1930 4884 1 +1930 328 1 +1930 1012 1 +3769 22 1 +3769 3102 1 +3769 1221 .8 +3769 46 1 +3769 1176 1 +3769 30 1 +3769 175 .8 +3769 2715 .8 +5891 46 1 +1291 431 1 +1291 175 1 +1291 353 1 +1291 30 1 +1291 457 .8 +1291 46 1 +1291 5 1 +1291 1291 .8 +1291 506 1 +1291 445 .8 +1291 4 .6 +1291 44 .8 +375 375 1 +375 1562 1 +375 296 1 +375 3024 1 +375 290 1 +375 1579 1 +375 283 1 +375 2343 .8 +375 1052 1 +375 286 1 +375 329 1 +375 647 1 +375 353 1 +375 227 .8 +375 1156 1 +375 277 1 +375 748 1 +375 3198 1 +375 2050 1 +375 46 1 +375 719 1 +375 30 1 +5892 5892 .6 +5893 5893 .6 +2079 843 .8 +2079 844 .6 +5894 590 .8 +5894 362 .8 +5895 5895 .6 +4817 4817 .6 +4817 3285 1 +4817 4816 .8 +4817 212 .8 +5896 5896 1 +3440 3440 .8 +3440 2487 .8 +3440 30 1 +3440 126 1 +3440 346 1 +3440 2251 1 +3440 990 1 +3440 3478 .8 +2535 2535 .6 +2535 517 1 +2535 2828 .8 +2535 499 .6 +2535 438 .8 +2535 829 .8 +2535 528 .6 +2535 30 1 +2535 46 1 +2535 316 .8 +2535 19 .8 +2535 324 .8 +2535 326 1 +2535 892 .8 +2535 986 .6 +2535 886 .6 +2535 2945 .6 +2535 4083 .6 +2535 1022 .8 +2535 2304 .8 +2535 712 .6 +2535 919 .6 +2535 857 .6 +2535 5120 .6 +2535 934 1 +2535 939 .6 +2535 638 .8 +443 443 .8 +443 1086 .8 +443 738 1 +443 46 1 +443 30 1 +443 351 .8 +443 352 1 +443 437 .8 +443 320 .8 +4640 4640 .6 +4640 1442 .6 +1970 1970 .6 +1970 928 .6 +1970 625 .8 +1970 495 .8 +1970 3032 .8 +1970 1917 .8 +1970 1981 .8 +1970 186 .8 +1970 1978 .8 +1970 1277 .8 +5897 5897 1 +79 747 1 +79 1222 1 +79 110 .8 +79 1218 .8 +79 290 1 +79 1499 .8 +79 1479 1 +79 748 1 +79 79 .8 +79 1212 .8 +79 2457 .8 +79 2458 .8 +79 659 1 +79 2461 .8 +79 746 1 +79 1219 .8 +79 1214 .8 +79 880 .8 +79 878 .8 +79 652 1 +79 749 1 +79 2460 1 +79 743 1 +79 1605 .8 +79 647 1 +79 1203 1 +79 1213 .8 +79 1201 .8 +79 134 1 +79 135 1 +79 138 .8 +79 5549 1 +5898 5898 1 +5899 2444 .8 +5899 2450 1 +3661 850 .8 +3661 3661 .8 +3661 849 .8 +3661 851 .8 +4901 4901 .6 +5900 5900 1 +5900 1494 1 +5900 791 .8 +5901 5901 1 +5902 5902 1 +5903 5903 .6 +5904 5904 .6 +5904 45 1 +5905 1643 1 +3799 129 1 +3799 629 1 +3799 2298 .8 +3799 944 .8 +3799 2340 .6 +5906 5906 1 +5907 5907 .6 +5191 5191 .8 +5908 5908 .8 +5909 2170 .8 +5909 4296 1 +5909 440 1 +5909 5909 1 +4406 1318 1 +4406 1319 .8 +4406 46 1 +4406 307 1 +4406 242 .8 +4406 3892 .8 +4406 646 .8 +4406 442 .8 +4406 1316 .8 +5128 5128 .6 +989 5910 .8 +989 989 .8 +989 1546 .8 +989 5911 .8 +989 1023 .8 +989 1898 .8 +989 1159 .6 +989 965 .6 +989 920 .6 +989 1043 .6 +989 3032 .6 +989 2135 .6 +5912 5912 .6 +4002 4002 .6 +4002 7 .6 +4002 246 .6 +4002 1586 .8 +4002 328 1 +4002 711 .8 +4002 22 1 +5913 5913 .6 +5914 5914 1 +2349 2349 .8 +2349 1569 .8 +2349 5146 .8 +2349 2625 .8 +2349 612 1 +2349 375 1 +2349 3124 .6 +2349 2100 .8 +2349 597 .8 +2349 1562 1 +2349 1781 .8 +54 1746 .6 +54 53 .8 +54 298 .6 +54 48 .8 +4767 4767 .8 +4767 2578 .8 +5915 5915 .6 +5916 5916 .6 +3647 3293 .8 +3647 3647 .8 +3647 863 .8 +3647 3292 .8 +3647 126 1 +3647 30 1 +3647 4519 .8 +3647 4101 .8 +3647 2227 .8 +3647 2144 1 +3647 1386 1 +3647 1379 1 +4917 4917 1 +1212 137 .8 +1212 1222 .8 +1212 377 .6 +1212 1499 .8 +1212 105 .8 +1212 1218 .8 +1212 2453 .8 +1212 110 .8 +1212 2457 .8 +1212 108 .8 +1212 748 1 +1212 79 .8 +1212 1605 .8 +1212 1127 .8 +1212 746 1 +1212 1205 .6 +1212 647 1 +4022 4022 .8 +5917 5917 .6 +3223 2317 .6 +3223 2983 1 +3223 3223 1 +3223 2617 .6 +3223 2618 .6 +3223 1555 .6 +3223 618 .6 +3223 1191 .6 +3223 46 .6 +3223 399 .6 +3223 324 .6 +3223 328 .6 +3223 431 .6 +1349 3281 .8 +1349 5918 .6 +1349 4114 .8 +5919 5919 .6 +5919 813 1 +5919 737 1 +3961 3961 .6 +3961 2783 .8 +3961 584 1 +3961 3409 .8 +4889 4889 .6 +4889 46 1 +4885 4885 .8 +4885 5746 .8 +4885 2516 .8 +4885 1450 .6 +4885 19 .6 +4885 5920 .6 +4885 9 .6 +4885 1898 1 +4885 45 1 +4885 1280 1 +4885 157 .8 +4885 503 .6 +4885 599 .6 +4885 1067 .6 +4885 751 1 +4885 1278 1 +4885 121 1 +4885 3007 .6 +4885 780 .8 +4885 3319 .6 +4885 22 1 +4885 92 .8 +4885 5921 .8 +4885 1626 .8 +5922 5922 .8 +1608 1608 .6 +1608 1607 .8 +4925 157 .8 +4925 1153 1 +4925 126 1 +5923 1278 1 +2451 2451 .8 +2451 2444 1 +2451 1 1 +2451 5242 1 +2451 9 1 +1086 326 1 +1086 719 1 +1086 30 1 +1086 352 1 +1086 1719 .6 +1086 3310 .6 +1086 623 .8 +1086 3116 .6 +1086 46 1 +1086 3308 .6 +1086 3307 .6 +1086 3309 .6 +1086 2971 .6 +1086 351 .8 +1086 858 1 +1086 327 .8 +1086 1081 .8 +1086 1133 .8 +1086 1028 .8 +1086 1022 .8 +1086 438 .6 +1086 1072 .8 +1086 1720 1 +1086 95 1 +1086 303 1 +1086 209 .8 +1086 435 .8 +1086 65 .8 +1086 801 .8 +1086 431 .8 +1086 1546 .8 +1086 827 .8 +1086 2284 .8 +1086 443 .8 +1086 738 .8 +1086 784 .8 +1086 318 .8 +1086 1996 .8 +1086 1894 .8 +1086 439 .6 +1086 4643 .8 +1086 1160 .8 +1086 2210 .8 +1086 1447 .8 +1086 2078 .8 +1086 437 .8 +1086 436 1 +1086 316 .8 +1086 440 1 +1086 434 .8 +1086 441 1 +1086 432 .8 +1086 286 1 +1086 736 .8 +1086 215 .8 +1086 433 1 +1086 104 .8 +1086 1023 .8 +1086 1116 1 +1086 1583 1 +1086 2002 .8 +1086 1521 .6 +1086 855 .8 +1086 783 .8 +1086 1024 .8 +1086 2945 .6 +1086 353 1 +1086 1557 1 +1086 998 .6 +1086 739 1 +1086 304 .8 +1086 90 .8 +1086 44 1 +1086 2273 .8 +1086 631 .6 +1086 751 .8 +1086 563 .6 +1086 2872 .6 +1086 1471 1 +1086 1834 .8 +1086 413 .6 +1086 713 1 +528 1798 .6 +528 290 1 +528 638 .8 +528 230 .8 +528 1927 .8 +528 5487 .6 +528 4186 .6 +528 822 .6 +528 1091 .6 +528 586 .6 +528 2212 .6 +528 2327 .6 +528 1932 .8 +528 1437 1 +528 1167 .8 +528 587 .8 +528 1047 .6 +528 1839 .8 +528 361 .6 +528 234 .6 +528 791 1 +528 311 .6 +528 3380 .6 +528 255 .6 +528 70 .6 +528 2858 .6 +528 1076 .6 +528 1543 .8 +528 1136 .6 +528 892 .8 +528 631 .6 +528 5924 .6 +528 346 .8 +528 647 1 +528 2819 .6 +528 1819 .6 +528 1216 .8 +528 588 .6 +528 517 .6 +528 2003 .6 +528 2844 .6 +528 1677 .6 +528 5925 .6 +528 1171 1 +528 241 .6 +528 734 .6 +528 615 .8 +528 923 .6 +528 2828 .6 +528 2535 .6 +528 593 .8 +528 918 1 +528 2503 .8 +528 764 1 +528 1206 .6 +528 987 .6 +528 5026 .6 +528 2214 .8 +528 242 .8 +528 1826 .6 +528 1219 .8 +528 711 .8 +528 956 .6 +528 972 .6 +528 1301 .6 +528 526 .8 +528 5926 .6 +528 1483 .6 +528 322 .8 +528 939 .6 +528 492 .6 +528 1072 .8 +528 1535 .6 +528 214 .8 +528 643 1 +528 941 .6 +528 954 .6 +528 194 .6 +528 922 .8 +528 2270 .6 +528 994 .6 +528 716 .8 +528 1433 .8 +528 1815 .6 +528 1938 .6 +528 2768 .8 +528 1631 .8 +528 530 .6 +528 399 .8 +528 950 .6 +528 3218 .6 +528 4005 .6 +528 403 .6 +528 898 .8 +528 1370 .6 +528 3597 .6 +528 135 1 +528 5927 .6 +528 1387 .6 +3627 3627 .8 +4650 30 1 +4650 286 1 +4650 649 1 +4650 46 1 +4650 4650 .8 +4650 1490 1 +4650 364 .8 +5928 5928 .8 +5928 46 1 +5928 1060 .8 +5928 2522 .8 +5929 5929 .8 +5929 431 1 +3088 2711 .6 +5930 2556 .8 +2270 2270 .6 +2270 2543 .8 +2270 1815 .6 +5931 5931 .6 +2592 2592 .6 +2592 2013 .6 +1134 282 1 +1134 46 1 +1134 858 1 +1134 2307 1 +1134 737 1 +1134 405 1 +1134 943 1 +1134 562 1 +1134 1068 1 +1134 751 1 +1134 2246 1 +2253 2253 .6 +2253 1005 1 +2253 1375 .8 +2253 721 1 +2253 2256 .6 +2253 1379 1 +2253 2227 1 +5932 5932 1 +5933 1840 .8 +5933 3028 .8 +5933 22 1 +5933 501 .8 +5933 1622 .8 +5933 1663 .8 +5933 49 1 +5933 317 .8 +5933 351 1 +5933 1849 .8 +5933 650 1 +5933 649 1 +5933 648 1 +5933 334 1 +5933 647 1 +5933 119 1 +5933 579 1 +5933 1116 1 +5933 1428 1 +5933 1450 1 +5933 738 1 +5933 638 1 +5933 30 1 +5933 640 1 +5933 641 1 +5933 305 1 +5933 747 1 +5933 2214 1 +5933 1752 1 +5933 233 1 +5933 440 1 +5934 5934 .8 +5935 5935 .8 +1284 3517 .6 +1284 112 1 +1284 1580 .8 +1284 2199 .6 +1284 638 .8 +1284 92 .8 +1284 915 .8 +1284 1464 .8 +1284 5295 .8 +1284 3079 .8 +1284 1280 .8 +1284 1283 .8 +1284 1485 .6 +1284 1487 .6 +1284 658 .8 +934 328 1 +934 1117 1 +934 174 .8 +934 645 .8 +934 719 1 +934 1616 1 +934 468 .8 +934 326 1 +934 30 1 +934 1079 .8 +934 324 .8 +934 1073 .8 +934 2563 .8 +934 2562 .8 +934 466 .8 +934 1167 .6 +934 172 1 +934 351 .8 +934 511 1 +934 286 1 +934 1847 1 +934 739 1 +934 1754 1 +934 171 1 +934 915 1 +934 175 .8 +934 46 1 +934 1086 .8 +934 791 .8 +934 2945 .6 +934 646 .8 +934 1028 .8 +934 121 1 +934 584 .8 +934 882 .8 +934 329 1 +934 327 .8 +934 1020 1 +934 350 1 +934 827 1 +934 2271 1 +934 912 .8 +934 2363 .6 +934 2646 .8 +934 1993 1 +934 438 .8 +934 933 .6 +934 2647 .6 +934 735 1 +934 2214 .8 +934 431 1 +934 712 .8 +934 1441 1 +934 857 1 +5197 584 1 +5197 5197 .6 +5197 1407 .6 +5197 175 1 +5197 631 .6 +5197 1086 .8 +5197 46 1 +1288 1288 .8 +1288 1718 .8 +1288 1160 .8 +1288 431 .8 +1288 318 .8 +1288 439 .8 +5936 5936 .8 +2020 1484 .8 +2020 514 .8 +2020 2020 .6 +2020 1516 .8 +2020 106 .8 +2020 3141 .6 +2020 1090 .8 +2020 1149 .8 +2020 3119 .6 +2020 3163 .8 +2020 1151 .8 +5937 576 .8 +5938 5938 .8 +3319 4114 .6 +3319 286 1 +3319 49 1 +3319 282 1 +3319 126 1 +3319 175 1 +3319 3319 .8 +3319 329 1 +3319 1229 .8 +3319 9 .8 +3319 232 .8 +3319 46 1 +3319 328 1 +3319 500 .8 +3319 1402 .8 +3319 790 .8 +3319 3122 .8 +3319 1150 .6 +3319 594 .6 +3319 887 .8 +3319 45 1 +3319 1839 .8 +3319 332 1 +3319 61 .8 +3319 51 .8 +3319 58 .8 +3319 214 .8 +3319 1192 .6 +3319 56 .6 +3319 167 .8 +3319 864 .8 +3319 48 .8 +3319 1663 1 +3319 57 .8 +3319 335 .8 +3319 29 1 +3319 22 1 +3319 595 .6 +3319 1767 .6 +3319 5939 .6 +3319 19 .8 +3319 1450 .6 +3319 274 .8 +3319 2550 .8 +3319 1703 .6 +3319 770 1 +3319 598 .6 +3319 1126 .8 +3319 853 .8 +3319 50 .8 +3319 53 .8 +3319 70 .6 +3319 67 .6 +3319 3591 .6 +3319 737 1 +3319 113 .6 +3319 292 .8 +3319 44 .8 +3319 261 .6 +3319 584 1 +3319 265 .6 +3319 2171 .6 +3319 1127 .6 +3319 1139 .6 +3319 757 .6 +3319 1642 .6 +3319 1451 .8 +3319 2883 .8 +3319 577 1 +3319 4189 .6 +3319 938 .6 +3319 227 .6 +3319 1159 .6 +3319 3507 .6 +3319 15 .6 +3319 21 .8 +3319 1301 .6 +3319 2332 .6 +3319 788 .8 +3319 780 .8 +3319 193 1 +3319 819 .6 +3319 2157 .8 +3319 4379 .6 +3319 4353 .6 +3319 1369 .6 +3319 804 .6 +3319 2274 .8 +3319 862 .6 +5940 5940 1 +5941 5941 1 +5373 5373 .6 +5373 286 1 +5373 29 1 +5373 34 .8 +5373 28 .8 +633 593 .8 +633 157 .8 +633 126 1 +633 46 1 +633 328 1 +633 242 .8 +633 997 .6 +633 1960 1 +633 893 1 +633 1399 .6 +633 18 .8 +633 22 1 +633 1190 1 +633 362 .8 +633 1178 .6 +4977 2473 1 +4977 400 1 +4977 813 1 +4977 30 1 +4977 1711 1 +4008 278 .6 +4008 587 .6 +4008 277 .6 +4008 4008 .6 +4008 46 1 +4008 279 .8 +4008 1521 .6 +4008 34 .6 +4008 88 .6 +4008 735 .8 +5942 5942 .8 +670 670 .8 +670 668 .8 +670 1009 .8 +670 2538 .8 +670 669 .8 +670 1008 .8 +3233 3233 .6 +3233 558 .8 +3233 323 .8 +3233 2666 .8 +3233 1087 .8 +3233 1759 .8 +3233 385 .8 +3233 652 1 +5943 879 .8 +4423 4423 1 +4423 1663 1 +5944 996 .8 +5944 3099 .8 +5944 705 .8 +5944 1313 1 +5944 825 .8 +5944 3102 1 +5944 595 1 +5944 295 1 +5944 258 .8 +5944 1122 1 +5944 786 1 +5944 1176 1 +5944 439 .8 +5944 1633 .8 +5944 70 .8 +5944 3625 .8 +5944 2795 .8 +5944 2307 1 +5944 574 .8 +5944 142 1 +5944 110 .8 +5944 111 .8 +5944 112 1 +5944 1578 .8 +5944 113 1 +5944 1587 .8 +5944 1078 1 +5944 194 1 +5944 316 1 +5944 191 1 +5944 1961 1 +5944 582 1 +5944 332 1 +769 769 .8 +5945 126 1 +5945 22 1 +5946 5946 .8 +5946 5947 .8 +5946 1505 .8 +5948 5948 1 +5949 5949 .6 +1903 1903 .6 +5950 1809 .8 +1745 298 .8 +1745 3850 .8 +1745 632 .8 +1745 1318 1 +1745 1745 .6 +2004 764 1 +2004 1123 1 +2004 642 1 +2004 2521 1 +2004 22 1 +2004 640 1 +2004 1723 1 +2004 3770 1 +2004 46 1 +2004 2004 1 +2004 1126 1 +2004 425 1 +5951 351 1 +5711 5711 .6 +5952 5952 1 +5952 1834 .8 +5953 5953 .6 +1505 13 .8 +1505 1020 1 +1505 46 1 +1505 736 .8 +3839 3913 .8 +3839 3839 .8 +3839 212 .8 +3839 5954 .8 +1993 1022 1 +1993 303 1 +1993 46 1 +1993 438 .8 +1993 30 1 +1993 511 1 +1993 1117 1 +1993 305 1 +1993 328 1 +1993 1436 1 +1993 719 1 +1993 1020 1 +1993 2067 .6 +1993 349 .8 +1993 172 .8 +1993 34 .6 +1993 2614 .8 +1993 791 1 +1993 525 .8 +5362 5362 .8 +5362 424 1 +5362 46 1 +5362 719 1 +5362 324 1 +5362 427 1 +1343 1343 1 +1343 3102 .8 +1343 2886 .8 +1343 1818 1 +1343 2715 .8 +1361 1361 1 +1361 4251 .8 +1361 5274 .6 +1361 2482 1 +1361 780 .8 +1361 779 .8 +1361 286 1 +1361 4886 .6 +1361 892 1 +1361 2551 .8 +1361 385 1 +1361 178 .8 +1361 3422 1 +1361 1085 1 +1361 5456 .8 +1361 4434 .6 +1361 830 1 +1361 4895 .8 +1361 2659 .8 +1361 5955 .6 +1361 1794 .6 +1361 549 .8 +1361 2832 .8 +5956 781 .6 +5488 587 .8 +5488 791 1 +5488 1167 .8 +5488 4071 .6 +5488 4691 1 +5957 5957 .6 +5957 3566 .8 +917 524 .8 +917 89 .6 +917 958 .8 +917 948 .6 +917 953 .6 +917 3652 .6 +917 1068 1 +917 2164 .8 +917 98 .6 +917 2782 .6 +917 993 1 +917 1487 .6 +917 194 .6 +917 362 .8 +917 773 .6 +917 992 .6 +917 956 .6 +917 2550 .6 +917 1494 .8 +917 923 .6 +917 498 1 +917 4238 .8 +5958 5959 .6 +5960 45 1 +3541 736 1 +3541 1691 .8 +3541 934 .8 +3541 1635 .8 +3541 1309 .8 +3541 574 .8 +3541 1308 .8 +3541 701 .8 +3541 739 1 +3541 741 .8 +3541 84 .8 +3541 1053 .8 +3541 142 .8 +3541 86 .8 +3541 656 .8 +3541 837 .8 +3541 562 1 +3541 1301 .6 +3541 1586 .8 +3541 2745 .8 +3541 1978 .8 +4153 3193 .8 +5556 1231 1 +5556 598 .8 +5556 1334 1 +5556 1125 1 +5556 1122 1 +5556 2521 1 +5556 3204 .8 +5556 5556 .8 +5961 5961 .6 +5030 1135 .8 +2824 2824 .8 +2824 2275 .8 +2824 869 1 +2824 1177 1 +2824 1227 .8 +2824 1171 1 +2824 1229 1 +2824 5962 .8 +2824 157 .8 +2824 126 .8 +2824 30 1 +2824 46 1 +2824 5393 .8 +2016 2601 .8 +2016 2602 .8 +2016 2604 .6 +2016 2605 .8 +2016 2606 .8 +2016 5431 .6 +5963 5963 .6 +5964 5964 .8 +5965 5965 .6 +5965 328 1 +1117 328 1 +1117 719 1 +1117 30 1 +1117 1072 .8 +1117 466 .8 +1117 306 .8 +1117 1434 .8 +1117 324 .8 +1117 1075 .8 +1117 1020 1 +1117 174 1 +1117 1616 .8 +1117 2101 .8 +1117 934 .8 +1117 511 .8 +1117 645 .8 +1117 623 .8 +1117 326 1 +1117 1087 .8 +1117 1313 .8 +1117 2401 .8 +1117 1082 1 +1117 323 .8 +1117 882 .8 +1117 1401 .8 +1117 46 1 +1117 646 .8 +1117 2103 .8 +1117 1076 .6 +1117 351 .8 +1117 1804 .8 +1117 325 1 +1117 352 1 +1117 468 .8 +1117 3517 .6 +1117 305 1 +1117 1753 .8 +1117 172 .8 +1117 1074 .8 +1117 431 .8 +1117 735 .8 +1117 303 .8 +1117 1238 .6 +1117 1356 .6 +1117 1917 .8 +1117 947 .6 +1117 1546 .6 +1117 1476 .6 +1117 827 1 +1117 349 1 +1117 1079 .6 +1117 1028 .6 +1117 1081 .6 +1117 1083 .6 +1117 1309 .6 +1117 915 .6 +1117 1021 .8 +1117 577 .8 +1117 3230 .6 +1117 467 .8 +1117 791 .6 +1117 438 .8 +1117 1993 1 +1117 126 1 +1117 2972 .6 +1117 2247 .8 +1117 5966 .6 +901 701 1 +901 902 .8 +901 904 .8 +901 903 .8 +901 898 .8 +901 897 .8 +901 905 .8 +901 899 .8 +3 3 1 +3 328 1 +3 2 1 +3 1 .8 +579 579 .8 +579 2276 .8 +579 46 1 +579 232 .6 +579 19 .6 +579 3015 .6 +579 2324 .8 +579 1270 1 +579 893 .6 +579 944 .8 +579 578 .8 +579 887 .8 +579 1091 .6 +579 739 1 +579 501 .8 +579 759 .8 +579 1800 .6 +579 1754 1 +579 172 1 +579 328 1 +579 2319 .8 +579 1157 1 +579 214 .6 +579 215 .8 +579 233 .8 +579 362 .8 +579 312 .6 +579 784 .8 +579 2503 .8 +579 1704 .6 +579 1072 .8 +579 764 1 +579 22 1 +579 2615 .8 +579 96 .8 +579 2616 .8 +579 13 .8 +579 703 .6 +579 310 1 +579 2002 .8 +579 822 .6 +579 3316 .8 +579 1756 .8 +579 1839 .8 +579 943 1 +579 430 .8 +579 205 .8 +579 577 1 +579 880 .8 +579 791 1 +579 797 .8 +579 1078 .8 +579 202 1 +579 265 .8 +579 2954 .6 +579 334 .8 +579 1613 .6 +579 2124 .6 +579 1536 .8 +579 2505 .8 +579 204 .6 +579 290 1 +579 126 1 +579 4100 .8 +579 1127 .8 +579 199 .6 +579 4472 .8 +579 658 .8 +579 4353 .8 +579 738 1 +579 429 1 +579 92 .8 +579 5490 .8 +579 65 .8 +579 1162 .8 +579 3122 .8 +579 335 .8 +579 276 .8 +579 109 .6 +579 1801 .6 +579 1167 .8 +579 1992 .8 +579 331 .8 +579 1190 .8 +579 191 .8 +579 316 .8 +579 587 .8 +579 53 .8 +579 1166 .8 +579 1936 .6 +579 1047 .6 +579 112 1 +579 638 .8 +579 584 1 +579 361 .6 +579 988 .8 +579 513 .6 +579 1844 .8 +579 1123 1 +579 1171 1 +579 4397 .8 +579 2284 .8 +579 118 1 +579 1557 1 +579 209 .8 +579 511 1 +579 2732 1 +579 2733 .8 +579 643 1 +579 1247 1 +2806 2806 .6 +2806 5967 .6 +592 592 .6 +592 255 .6 +592 583 .8 +592 362 .8 +592 336 1 +592 601 .8 +5968 5968 .6 +5968 110 1 +5968 1222 1 +5968 290 1 +5968 647 1 +667 667 .8 +667 668 .8 +667 328 .6 +667 1082 .8 +667 2291 .8 +667 666 .8 +667 5969 .8 +5970 5970 1 +4781 4781 .6 +3068 426 .6 +3068 5971 .6 +3068 2622 1 +3068 3067 1 +3068 22 1 +3068 1171 1 +3068 966 .6 +249 249 .6 +518 1408 .6 +518 2307 .8 +518 2942 .8 +518 121 1 +518 263 .8 +518 89 .6 +518 2306 .8 +518 946 .8 +518 599 .6 +518 4003 .6 +4696 273 1 +4696 1126 1 +4696 764 1 +4696 2949 1 +4696 2521 1 +4696 424 1 +4696 1171 1 +4696 1230 1 +4696 1123 1 +4696 1068 1 +4696 640 1 +4696 1122 1 +4696 562 1 +4696 1560 1 +4696 282 1 +4696 22 1 +4696 1231 1 +4696 1723 1 +4696 3770 1 +4696 1177 1 +4696 3807 1 +1317 1318 1 +1317 1316 1 +1317 242 .8 +1317 1317 1 +1317 4405 1 +1317 1319 1 +1148 2668 .6 +1264 1254 .8 +1264 2227 .8 +1264 5972 .8 +1264 4615 .8 +1264 1711 1 +1264 642 1 +1264 5973 .6 +1264 5974 .8 +1264 3316 .8 +1264 1223 .8 +1264 5021 .8 +1264 2790 .8 +1264 1091 1 +1264 1154 1 +1264 126 1 +1264 2081 .8 +1264 1357 .8 +1264 1261 .8 +1264 3755 .8 +1264 1270 1 +1264 793 1 +1264 1236 1 +1264 1263 .6 +1264 62 1 +1264 5020 .6 +1264 610 1 +1264 3934 .6 +1264 1258 .8 +1264 1237 1 +1264 983 1 +1264 1986 .8 +1264 430 .8 +1264 1318 1 +1264 5722 .8 +1264 4221 .8 +1264 457 1 +1264 267 1 +1264 1339 .8 +1264 2674 1 +1264 20 .8 +1264 1043 .8 +1264 5624 .6 +1264 776 1 +1264 157 1 +1264 1368 .8 +1264 3319 .8 +1264 4227 .6 +1264 2130 .8 +1264 2129 .6 +1264 3228 .8 +1264 328 1 +1264 716 1 +1264 3933 .8 +1264 944 1 +1264 577 1 +1264 629 1 +1264 788 .8 +1264 45 1 +1264 2636 1 +1264 1265 .6 +1264 2256 .6 +3786 3006 .8 +3786 350 1 +3786 352 1 +3786 351 .8 +3786 3572 .8 +3786 2076 1 +1255 716 1 +1255 328 1 +1255 859 1 +1255 715 1 +1255 126 1 +1255 1742 1 +1255 3257 1 +1255 711 1 +1255 349 1 +1255 2251 1 +1255 990 1 +1255 128 1 +1255 1961 1 +1255 3424 1 +1255 13 1 +530 523 .8 +530 2272 .8 +530 438 1 +530 525 .8 +530 511 1 +530 937 1 +530 391 .8 +530 3475 1 +530 1489 .8 +530 2512 .8 +530 531 .6 +530 934 1 +530 5975 .8 +530 490 .6 +530 949 .8 +530 2031 1 +530 1628 .8 +530 893 1 +720 578 1 +720 429 .8 +720 643 1 +720 1823 .6 +720 2092 .8 +720 428 1 +720 431 1 +720 2090 .8 +720 2207 .8 +720 1065 1 +720 53 .8 +720 1270 1 +720 2222 .8 +720 1247 1 +720 1856 1 +5976 5976 .6 +1239 830 1 +1239 1239 .8 +1239 1236 .8 +1239 577 1 +1239 4182 .8 +5977 5977 .8 +971 971 .6 +971 597 .8 +971 271 .8 +5978 5978 .6 +2472 2472 .6 +2984 914 .8 +2984 1065 .8 +2984 4851 .8 +5979 5307 1 +5980 610 1 +5980 45 1 +2989 2989 .8 +2989 2756 .8 +2989 3768 .8 +2989 1605 .8 +5981 739 1 +5981 426 1 +5982 5982 .6 +2829 2829 .6 +2829 1500 .6 +2829 499 .6 +4427 4427 1 +933 2947 .8 +933 172 1 +933 2271 1 +933 99 .8 +933 171 1 +933 912 .8 +933 2647 .6 +650 629 1 +650 286 1 +650 1692 .8 +650 1571 .8 +650 918 1 +650 577 1 +650 101 1 +650 193 1 +650 1768 1 +650 2772 1 +5983 5983 1 +5984 5984 .8 +5985 708 1 +5985 66 .8 +5985 855 1 +5985 144 .8 +5985 4034 .8 +5985 1798 .8 +1620 1620 .8 +1620 1618 1 +1620 1621 .6 +1620 492 1 +1620 1622 .8 +1620 819 1 +1620 124 .6 +1620 2784 .6 +1620 791 1 +1620 683 1 +1620 708 .8 +1620 919 .8 +1620 399 .8 +5040 5040 1 +5986 5986 .6 +5987 5987 1 +2928 2928 .6 +1661 326 1 +1661 719 1 +1661 466 .8 +1661 324 1 +1661 1075 1 +1661 1401 .8 +1661 1028 1 +1661 2094 1 +1661 304 1 +1661 543 1 +1661 934 1 +1661 329 1 +1661 174 .8 +1661 351 1 +1661 286 1 +1661 1847 1 +1661 2703 .8 +1661 327 .8 +1661 912 1 +1661 438 1 +1661 46 1 +1661 529 .8 +1661 248 .8 +1661 325 1 +1661 5503 .8 +1498 784 .8 +1498 1498 .6 +1498 2757 .8 +1498 658 .8 +1498 677 .6 +1498 4539 .6 +1498 2327 .6 +1498 1488 .6 +1498 526 .8 +1498 1371 .8 +1498 5363 .6 +1498 5926 .6 +1498 1113 .8 +1498 1483 .6 +1498 9 .8 +1498 70 .8 +282 1123 1 +282 46 1 +282 22 1 +282 30 1 +282 1134 1 +282 51 .8 +282 1020 1 +282 719 1 +282 303 1 +282 1117 1 +282 1125 .8 +282 764 1 +282 2062 .8 +282 332 1 +282 331 .8 +282 2521 1 +282 1171 1 +282 3770 1 +282 2420 1 +282 333 .8 +282 695 1 +282 696 1 +282 1723 1 +282 637 .8 +282 1231 1 +282 3385 .8 +282 1560 .8 +282 3010 .8 +282 855 1 +282 697 .8 +282 1337 .8 +5988 5988 1 +2742 2742 .6 +148 148 .8 +148 1912 1 +148 1270 1 +148 271 .8 +148 1548 .8 +3610 3610 .6 +3610 1650 .8 +3610 588 .8 +3610 2777 .6 +3610 3609 .6 +3610 1229 .8 +3610 1591 .8 +5989 5989 .8 +5990 5990 .6 +5990 925 1 +5991 5991 .6 +5992 5992 1 +5359 5359 .6 +5359 2317 .8 +2664 2664 .6 +2664 944 1 +2664 62 1 +2664 1254 1 +2664 45 1 +2664 610 1 +2664 2754 1 +2664 5420 .8 +5993 5993 .6 +1559 1430 1 +1559 30 1 +1559 1171 1 +1559 1154 .6 +5994 45 1 +405 739 1 +405 856 1 +405 736 1 +405 46 1 +405 30 1 +405 1116 1 +405 353 1 +405 801 .8 +405 1307 .8 +405 1799 1 +405 90 .8 +405 835 1 +405 741 1 +405 1693 .8 +405 859 1 +405 86 .8 +405 836 .8 +405 84 .8 +405 1628 .8 +405 648 1 +405 2237 .8 +405 1435 .8 +405 286 1 +405 326 1 +405 719 1 +405 506 1 +405 445 1 +405 436 1 +405 440 1 +405 328 1 +405 576 1 +405 175 1 +405 22 1 +405 853 .8 +405 142 1 +405 1688 .8 +405 789 1 +405 584 1 +405 738 .8 +405 1454 .8 +405 1452 .8 +405 106 .8 +405 91 .8 +405 97 .8 +405 855 .8 +405 2213 .8 +405 1694 .8 +405 701 .8 +405 1097 .8 +405 1818 .8 +405 1023 .8 +405 4329 .8 +405 303 1 +405 434 .8 +405 5995 1 +405 2238 1 +405 1546 1 +405 1075 1 +405 3186 .8 +405 714 1 +405 438 .8 +405 1428 .8 +405 349 1 +405 737 .8 +405 1847 1 +405 1692 .8 +405 643 .8 +405 555 1 +405 441 .8 +405 3099 .8 +405 1898 .8 +405 318 .8 +405 1086 .8 +405 327 .8 +405 351 .8 +405 1081 .8 +405 104 .8 +405 1024 1 +405 305 1 +405 1309 .8 +405 577 1 +405 1089 1 +405 1176 1 +405 1247 1 +405 2660 .8 +405 1298 .8 +405 1893 .8 +405 290 1 +405 797 .8 +405 3138 .8 +405 3281 1 +405 916 1 +405 1490 1 +405 1343 1 +405 2356 1 +405 1119 .8 +405 1037 1 +405 837 .8 +405 1895 .8 +405 641 1 +405 172 1 +405 400 1 +405 2473 1 +405 1711 1 +405 2361 .8 +405 813 1 +5996 5996 .6 +5996 1494 .8 +5996 3995 .6 +5996 328 1 +5997 5997 .6 +5998 5998 1 +5999 5999 .6 +2265 2265 .8 +2265 1153 .8 +2265 1378 .8 +2265 157 .8 +2265 846 .8 +2265 4209 1 +2265 4744 .6 +2265 708 .8 +2265 2847 .8 +2265 142 1 +2265 805 .8 +2265 2141 .8 +2265 718 .8 +2265 3814 .6 +2265 1373 .8 +2265 2264 .6 +2265 329 1 +2265 714 1 +2265 1492 .8 +2265 1383 .8 +2265 1846 .8 +2265 428 .8 +2265 678 .6 +2265 2904 .6 +2265 46 1 +2265 22 1 +2265 431 1 +2265 5495 .8 +2265 597 .8 +2265 674 .8 +2265 2056 .6 +2265 780 .8 +2265 126 1 +2265 324 .8 +2265 1399 .6 +3613 3613 .6 +652 1082 .8 +652 1123 1 +652 858 1 +652 118 1 +652 46 1 +652 426 1 +652 764 1 +652 286 1 +652 1218 .8 +652 2453 .8 +652 1210 .8 +652 1499 .8 +652 2454 .8 +652 105 .8 +652 1212 .8 +652 2456 .8 +652 3642 .8 +652 2289 .8 +652 377 .8 +652 290 1 +652 659 1 +652 110 .8 +652 3335 .6 +652 1222 1 +652 2278 .8 +652 1479 1 +652 2457 .8 +652 2458 .8 +652 2461 .8 +652 748 1 +652 1214 .8 +652 746 1 +652 1215 .6 +652 2459 .8 +652 1219 .8 +652 79 .8 +652 1205 .6 +652 747 1 +652 1213 .8 +652 1605 .8 +652 2460 .8 +652 749 1 +652 743 1 +652 3216 .6 +652 2501 .8 +652 3749 .6 +652 647 1 +652 3147 .6 +652 2410 .8 +652 1343 1 +652 3645 .8 +6000 6000 1 +6000 1020 1 +6000 1961 1 +19 893 1 +19 3190 .6 +19 198 .8 +19 2570 .8 +19 4660 .6 +19 3276 .6 +19 1390 .6 +19 985 .8 +19 1113 .8 +19 1938 .6 +19 19 .6 +19 252 .6 +19 81 .6 +19 704 .6 +19 2506 .6 +19 948 .8 +19 2097 .6 +19 1137 .6 +19 3088 .8 +19 195 .6 +19 2721 .8 +19 2302 .6 +19 1360 .8 +19 1650 .8 +19 2021 .6 +19 1391 .8 +19 2089 .6 +19 4628 .6 +19 4629 .6 +19 599 .6 +19 788 .8 +19 4073 .6 +19 93 .6 +19 960 .8 +19 987 .8 +19 923 .8 +19 972 .8 +19 98 .6 +19 3319 .6 +19 5664 .6 +19 3729 .6 +19 378 .6 +19 1091 .8 +19 263 .8 +19 5524 .6 +19 269 .8 +19 2306 .8 +19 973 .6 +19 255 .8 +19 1223 .6 +19 1333 .8 +19 5544 .6 +19 1522 .8 +19 2127 .6 +19 2535 .6 +19 967 .6 +19 4516 .8 +19 3187 .6 +19 6001 .6 +19 2182 .6 +19 2656 .8 +19 194 .6 +19 2860 .8 +19 773 .6 +19 989 .8 +19 3820 .6 +19 533 .6 +19 1170 .6 +19 2270 .6 +19 1034 .8 +19 2508 .6 +19 1057 .6 +19 930 .6 +19 357 .8 +19 3856 .8 +19 376 .8 +19 1625 .6 +19 3400 .8 +19 1042 .6 +19 4878 .6 +19 4844 .6 +19 3032 .8 +19 604 .6 +19 965 .6 +19 1064 .6 +19 997 .6 +19 4880 .6 +19 1556 .6 +19 1164 .6 +19 2185 .6 +19 241 .8 +19 1028 1 +19 784 1 +19 928 .6 +19 5517 .6 +19 4942 .8 +19 1425 .6 +19 1069 .6 +19 2523 .6 +19 1671 .6 +19 617 .6 +19 3402 .8 +19 4379 .8 +19 1961 .6 +19 1495 1 +19 1964 .6 +19 552 .6 +19 924 .6 +19 17 .6 +19 4886 .6 +19 2539 .6 +19 15 .6 +19 3534 .6 +19 745 .6 +5161 5161 .8 +5161 148 1 +5161 1912 1 +5161 286 .8 +5161 357 .8 +5161 1052 1 +5161 175 .8 +5161 3152 .6 +5161 860 .6 +5161 857 .8 +5161 1301 .6 +159 555 1 +159 1603 1 +159 845 1 +159 4564 .8 +6002 3396 .8 +6003 175 1 +6003 46 1 +6003 2207 .8 +6003 429 .8 +6003 126 1 +2212 2212 .8 +2212 46 1 +2212 30 1 +2212 719 1 +2212 431 .8 +2212 2529 .6 +2212 528 .8 +2212 429 .8 +2212 1190 .8 +6004 6004 .8 +6004 286 1 +2199 2199 .6 +2199 22 1 +2199 16 .6 +2199 5256 .6 +2199 2945 .6 +2199 1284 .6 +2199 3872 .6 +2199 573 .6 +2199 3316 .8 +2199 538 1 +2199 3050 .8 +2199 787 1 +2199 5388 .6 +2199 3031 .6 +2199 1567 .8 +2199 5905 .8 +2199 4580 1 +2199 1963 .6 +2199 6005 .8 +2199 2195 .8 +6006 30 1 +6006 126 1 +6006 46 1 +1080 30 1 +1080 328 1 +1080 1087 .8 +1080 934 .8 +1080 34 .6 +1080 4400 .8 +1080 1495 1 +6007 6007 .6 +6008 6008 .6 +3234 323 .8 +2448 2448 .8 +2448 2444 1 +2448 2445 1 +2448 2447 .8 +2448 2446 1 +2448 786 1 +2448 837 1 +2448 1565 1 +2448 801 1 +2448 1278 1 +2448 2750 .8 +2448 536 1 +2448 2887 .8 +2448 5809 .6 +2448 142 1 +2448 9 1 +2448 1379 .8 +2014 584 1 +2014 632 .6 +2014 1407 .6 +2014 4026 .8 +3141 46 1 +3141 3141 .6 +3141 1484 .8 +3141 1090 .8 +3141 1075 1 +3141 1602 .6 +3141 324 1 +3141 1516 .8 +3141 353 1 +3141 1151 .8 +1408 1408 .6 +2679 2679 .6 +2679 614 .8 +2679 747 1 +2679 647 1 +6009 6009 1 +6010 121 1 +255 34 .8 +255 255 .8 +255 30 1 +255 46 1 +255 385 .8 +255 584 1 +255 719 1 +255 31 1 +255 324 1 +255 583 .8 +255 362 .8 +255 328 1 +255 29 1 +255 32 .8 +255 591 .6 +255 33 .8 +255 28 .8 +255 345 .8 +255 327 1 +255 3380 .6 +255 638 1 +255 3121 .6 +255 807 .8 +255 511 1 +255 913 .6 +255 827 1 +255 753 .8 +255 111 .8 +255 271 .8 +255 39 .8 +255 1136 .6 +255 1926 1 +255 592 .8 +255 1671 .6 +255 94 .6 +255 599 .8 +255 19 .8 +255 3316 .8 +255 1087 .8 +255 268 .8 +255 944 .8 +255 4046 .6 +255 298 .8 +255 810 .8 +255 764 1 +255 172 1 +255 934 .8 +255 112 1 +255 22 1 +255 1116 1 +255 524 .8 +255 915 .8 +255 804 .8 +255 1798 .8 +255 35 .8 +255 26 .8 +255 113 1 +255 2002 .8 +255 888 .8 +255 523 .8 +255 89 .6 +255 4236 .6 +255 545 .8 +255 830 1 +255 992 .6 +255 242 .8 +255 1535 .8 +255 958 .8 +255 577 1 +255 98 .8 +255 593 .8 +255 711 .8 +255 751 1 +255 157 .6 +255 525 .8 +255 191 1 +255 336 1 +255 631 .8 +255 630 .8 +255 887 .8 +255 2141 .8 +255 766 .8 +255 767 .8 +255 322 .8 +255 1361 .8 +255 1313 1 +255 6011 .8 +255 1020 1 +255 4958 .6 +255 4183 1 +6012 6012 .6 +6012 6013 .6 +6014 6014 .8 +6015 802 1 +6015 431 1 +6015 739 1 +6015 1691 .8 +6015 2214 .8 +6015 784 .8 +6015 1065 .8 +6015 46 1 +6015 113 .8 +6015 175 1 +6015 3887 .8 +6016 6016 .6 +6017 6017 .6 +6018 6018 1 +6019 3225 1 +6019 43 1 +6019 1489 .8 +6019 440 1 +6019 6019 1 +6019 649 1 +1363 597 .8 +1363 708 .8 +1363 2795 .8 +1363 719 1 +1363 597 .8 +1363 3445 .8 +1363 30 1 +6020 6020 1 +1899 2002 .8 +1899 923 .6 +1899 2522 .6 +1899 3316 .6 +1899 1393 .8 +1899 6021 .6 +1899 973 .6 +1899 271 .8 +1899 1522 .6 +1899 3397 .6 +1899 2127 .6 +1899 303 1 +1899 518 .8 +1899 89 .6 +1899 513 .8 +1899 103 .8 +1899 1535 .6 +1899 952 .6 +1899 1819 .6 +1899 751 1 +1899 242 .8 +1899 606 .6 +1899 2131 .8 +1899 857 1 +1899 860 .6 +1899 1998 .6 +1899 3028 .8 +1899 3407 .8 +1899 461 .8 +725 442 .8 +725 1823 .6 +725 2091 .6 +725 6022 .6 +1585 46 1 +1585 564 .8 +1585 582 .8 +1585 1585 .8 +1585 30 1 +1585 9 .8 +1585 791 1 +1585 2217 1 +1585 126 1 +1585 762 1 +1585 751 1 +1585 641 1 +1585 2202 .6 +1585 285 .8 +1585 2218 1 +1585 303 1 +1585 304 1 +1585 348 1 +1585 191 .8 +1585 215 1 +1585 307 1 +1585 324 1 +1585 103 .8 +1585 157 .8 +1585 593 1 +1585 1 1 +1585 805 1 +1585 346 1 +1585 1243 1 +1585 1242 .8 +1585 844 .8 +1585 780 .8 +1585 3288 .8 +6023 6023 1 +1523 1523 .8 +1523 1047 .8 +1523 806 .8 +6024 6024 .6 +1521 46 1 +1521 385 .8 +1521 438 .8 +1521 30 1 +1521 44 .8 +1521 584 1 +1521 327 .8 +1521 719 1 +1521 1020 1 +1521 329 1 +1521 175 1 +1521 623 .8 +1521 286 1 +1521 559 .8 +1521 1086 .8 +1521 2333 .6 +1521 1309 .8 +1521 242 .8 +1521 1187 .6 +1521 806 .6 +1521 788 .8 +1521 1000 .8 +1521 1650 .8 +1521 1846 .6 +1521 4432 .8 +1521 3382 .8 +1521 1126 1 +1521 328 1 +1521 107 .6 +1521 194 .8 +1521 514 .8 +1521 760 .6 +1521 45 .8 +1521 469 .8 +1521 157 .6 +1521 17 .6 +1521 1219 .8 +1521 3389 .6 +1521 1201 .8 +1521 1642 .6 +1521 1366 .6 +1521 1964 .6 +1521 5180 .6 +1521 166 .8 +1521 2173 .6 +1521 461 .6 +1521 4749 .8 +1521 34 .8 +1521 4029 .6 +1521 7 .6 +1521 2316 .6 +1521 1153 .8 +1521 3840 .6 +1521 2195 .8 +1521 4748 .6 +1521 1978 .8 +5239 5239 .8 +2436 2434 1 +6025 6025 1 +775 9 .8 +775 610 1 +775 597 .8 +775 328 1 +775 62 .8 +775 92 .8 +775 888 .8 +775 4100 .8 +775 400 .8 +775 437 1 +775 165 1 +775 768 .6 +775 1384 .8 +2198 1126 .8 +2198 1176 1 +2198 658 .8 +2198 429 .8 +2198 852 1 +2198 1211 1 +2198 1031 .8 +2098 2097 .8 +2098 2099 .8 +6026 6026 .6 +6026 286 1 +6026 175 1 +6026 428 1 +559 559 1 +559 557 .6 +5308 407 .8 +1041 1041 .6 +1041 215 1 +1041 739 1 +1041 1343 1 +1041 506 1 +1041 445 .8 +1041 118 1 +1041 434 1 +1041 1024 .8 +1041 46 1 +1041 710 1 +1041 2238 1 +1041 1546 .8 +1041 1075 1 +1041 2941 .6 +1041 714 1 +1041 5 .8 +1041 4067 .8 +1041 647 1 +1041 305 .8 +1041 44 .8 +1041 747 1 +1041 1123 1 +1041 1847 .8 +1041 746 1 +1041 22 1 +1041 719 1 +1041 353 1 +1041 1583 1 +1041 1020 .8 +1041 329 1 +1041 405 .8 +1041 1799 .8 +1041 4 .6 +1041 175 1 +1041 431 .8 +1041 286 1 +1041 801 .8 +1041 119 1 +1041 2667 .8 +1041 389 .8 +1041 3287 .8 +1041 2097 .6 +1778 1569 1 +1778 612 1 +1778 1562 1 +1778 2625 1 +1778 375 1 +1778 3124 .6 +1778 110 1 +1778 2268 1 +1778 2269 1 +1778 5146 .6 +1778 4513 1 +952 9 .8 +952 757 .6 +2923 2923 .8 +2923 2922 .8 +2923 2921 .6 +2923 4397 1 +2923 345 1 +4783 4783 .6 +4783 1938 .8 +356 643 1 +356 2276 .8 +356 30 1 +356 1195 .8 +356 764 1 +356 1765 .8 +356 231 .6 +356 356 .8 +356 357 .8 +356 1185 .8 +356 584 1 +356 40 .8 +356 1028 .8 +356 232 .6 +356 928 .6 +356 579 .8 +356 257 1 +356 556 .8 +356 5872 .8 +2775 2775 .8 +2775 3409 .8 +2775 1963 .8 +2775 2783 .8 +2775 399 .8 +2775 2774 .6 +6027 6027 .6 +6028 6028 1 +6029 6029 .6 +6030 6030 .6 +1464 1407 .6 +1312 1312 .8 +1312 90 .8 +1312 329 1 +1312 837 .8 +1312 163 1 +1312 1517 .8 +1312 1452 .8 +1312 572 1 +1312 328 1 +1312 789 .8 +1312 86 .8 +1312 855 .8 +1312 1925 1 +1312 1514 .8 +1290 1009 .8 +1290 576 .8 +1290 910 .8 +6031 6031 .6 +6032 6032 .6 +748 748 .8 +748 1222 .8 +748 137 .8 +6033 6033 .8 +1313 30 1 +1313 2102 .8 +1313 646 .8 +1313 610 .8 +6034 6034 .6 +6035 6035 .6 +4004 4004 .6 +4004 157 .6 +4004 983 .8 +4004 3409 .6 +4465 6036 1 +4465 1247 1 +1598 1598 .8 +1598 696 .8 +6037 1849 .6 +6037 1643 .8 +6037 1201 .8 +6037 542 .8 +6037 1165 .8 +6037 3032 1 +6037 2313 .8 +6037 2216 .8 +6037 619 .8 +6038 6038 .6 +6038 2201 .8 +6039 5767 .6 +842 842 .6 +842 844 .6 +842 2002 .8 +842 843 .8 +842 306 .8 +842 1717 .8 +842 780 .6 +842 34 .8 +3803 30 1 +3803 328 1 +3803 324 1 +3803 1020 1 +3803 645 1 +3803 1313 .8 +3803 1433 1 +3803 1356 1 +3803 4091 .8 +3803 349 1 +3803 1079 .8 +3803 1076 .6 +3803 1495 1 +3803 1798 .8 +3803 1754 1 +3803 492 1 +3803 1616 .8 +3803 719 1 +3803 511 1 +3803 1028 .8 +3803 1437 1 +3803 830 1 +1042 1042 .6 +1042 1533 1 +1042 991 .8 +1042 1016 .8 +1042 1034 .6 +1042 598 1 +1042 1408 .8 +3408 572 1 +3408 3408 .6 +3408 2549 .6 +3408 194 .6 +3408 1450 .6 +3408 624 .8 +3408 2615 .8 +3408 4663 .8 +3408 2051 .8 +3408 6040 .8 +1734 1734 .6 +1734 1968 1 +1734 3538 .8 +1734 2182 .8 +1734 1731 .8 +1734 1142 1 +6041 6041 1 +6041 757 .6 +6042 6042 .8 +4648 173 1 +4648 646 1 +4648 652 1 +6043 6043 .6 +6043 1147 1 +737 46 1 +737 1075 .8 +737 1428 .8 +737 30 1 +737 328 1 +737 1759 .6 +737 352 1 +737 666 .8 +737 918 1 +737 71 .6 +737 736 .8 +737 434 1 +737 2157 .8 +737 2805 .8 +737 303 1 +737 348 .8 +737 584 .8 +737 648 .8 +737 656 .8 +737 86 .8 +737 789 .8 +737 84 .8 +737 1628 .8 +737 1246 1 +737 230 .6 +737 240 .8 +737 1551 .8 +737 1245 .8 +737 44 1 +737 62 1 +737 167 .8 +737 813 1 +737 577 1 +737 1116 1 +737 695 1 +737 1247 1 +737 1711 .8 +737 1160 1 +737 65 1 +737 400 1 +737 654 1 +737 3082 1 +737 405 1 +737 2538 1 +737 610 1 +737 1237 1 +737 1249 1 +6044 6044 1 +6045 6045 1 +6046 103 1 +6046 6046 1 +6047 6047 .6 +6048 6048 .6 +3467 1490 1 +3467 346 1 +3467 1845 .8 +3467 1846 .8 +3467 1492 1 +3467 1848 1 +3467 1491 1 +3467 3467 .6 +3467 1527 .8 +3467 1502 1 +3467 1356 1 +6049 6049 .6 +1644 30 1 +1644 3116 .6 +1644 102 .6 +1644 1644 .6 +1644 648 1 +1644 91 .8 +1644 789 .8 +1644 739 1 +1644 142 .8 +1644 738 1 +1644 736 1 +1644 835 .8 +1644 327 .8 +1644 1690 .8 +1644 46 1 +1644 584 1 +1644 1176 1 +1644 1663 .8 +1644 345 1 +1644 106 .8 +1644 2376 .8 +1644 837 .8 +1644 1635 .8 +1644 329 1 +1644 1754 1 +1644 893 .6 +1644 22 1 +1644 2600 .6 +6050 6050 .6 +1882 1882 .6 +1882 292 1 +5484 1385 .6 +5484 375 1 +5484 1562 1 +5484 5484 .6 +2616 30 1 +2616 328 1 +2616 324 1 +2616 577 .8 +2616 326 1 +2616 1434 .8 +2616 349 1 +2616 352 1 +2616 174 .8 +2616 1428 1 +2616 1123 1 +2616 642 1 +2616 1243 .8 +2616 1495 .8 +2616 282 1 +2616 46 1 +2616 2942 .8 +2616 172 1 +2616 1996 1 +2616 719 1 +2616 348 .8 +2616 943 1 +2616 764 1 +2616 2656 .8 +2616 973 .6 +2616 923 .6 +2616 974 1 +2616 1711 .8 +2616 813 1 +6051 6051 .8 +6052 6052 1 +6053 6053 .6 +1766 51 .8 +1766 331 .8 +1766 49 .8 +1766 282 1 +1766 335 .8 +1766 4526 .8 +1766 53 .8 +1766 637 .8 +1766 3591 .8 +1766 3592 1 +1766 4643 .8 +2950 5013 .8 +6054 6054 1 +5386 5386 .8 +5386 224 1 +5386 3242 .8 +6055 6055 .8 +6056 6056 .6 +1133 1133 .8 +1133 1616 .8 +1133 797 .8 +1133 735 .8 +1133 511 .8 +1133 174 .8 +1133 46 1 +1133 1075 .8 +1133 1073 .8 +1133 1495 1 +1133 1476 .8 +1133 349 .8 +1133 30 1 +1133 1117 1 +1133 324 1 +1133 791 .8 +1133 645 .8 +1133 934 .8 +1133 1356 .8 +1133 328 1 +1133 1436 .6 +1133 1081 .8 +1133 719 1 +1133 915 .8 +1133 351 .8 +1133 1020 1 +1133 1437 1 +1133 352 1 +1133 326 1 +1133 172 .8 +1133 1074 .8 +1133 1086 .8 +1133 623 .8 +1133 577 .8 +1133 468 .8 +1133 1798 .6 +1133 1022 1 +1133 1720 1 +1133 638 .8 +1133 2210 .8 +1133 1894 .8 +1133 318 .8 +1133 437 .8 +1133 348 .8 +1133 1927 .6 +198 197 .8 +198 196 .8 +198 199 .6 +198 204 .8 +198 203 .6 +198 200 .8 +198 205 .6 +198 195 .6 +244 244 .8 +2076 303 1 +2076 352 1 +2076 351 .8 +2076 2307 .8 +2076 4146 .8 +2076 350 1 +2076 3006 .8 +2076 1211 .8 +2076 171 1 +2076 3669 .6 +2076 6057 .6 +2076 3572 .6 +2076 2587 .6 +2076 176 .6 +6058 70 .6 +6059 6059 1 +1916 1916 .6 +1916 34 .6 +1916 1085 .6 +2569 2569 .8 +2569 2985 .8 +2569 1437 .8 +2569 1751 .8 +2569 886 .8 +2569 353 1 +2569 1073 .8 +2569 1020 1 +2569 345 1 +2569 658 .8 +2929 2929 .6 +2929 271 .8 +2929 597 .8 +2929 2410 .8 +2929 565 .6 +2929 960 1 +4805 4805 .6 +4805 546 1 +4805 2214 .8 +4805 780 .8 +5012 5437 1 +5012 3002 1 +5012 2267 .8 +632 1703 .6 +632 2014 .6 +632 1009 .8 +632 2443 1 +632 944 .8 +632 597 .8 +632 1738 1 +632 54 .6 +632 1740 .8 +632 46 1 +632 1393 .8 +632 157 .8 +632 92 1 +632 53 1 +632 335 .8 +632 1240 .8 +632 5072 .6 +632 1745 .8 +632 1739 .6 +632 44 1 +632 438 .8 +632 1746 .8 +632 653 .8 +632 4902 .6 +632 165 .8 +632 4198 .8 +632 923 .6 +632 121 1 +632 1237 1 +632 48 .8 +632 66 .6 +632 126 1 +632 614 .8 +632 4674 1 +632 613 .8 +632 1092 1 +632 429 1 +632 296 1 +632 80 .8 +632 362 .8 +632 2042 1 +632 1741 .8 +632 1910 1 +632 1906 .8 +632 1893 1 +632 215 1 +632 1743 .8 +632 1744 .6 +632 717 1 +632 1962 .8 +632 1245 .8 +632 2232 1 +632 3412 .8 +632 2240 1 +632 1747 .8 +632 2165 .8 +632 1447 1 +632 437 1 +632 2655 1 +632 2706 .8 +632 4006 .8 +632 2166 .6 +2103 328 1 +2103 324 1 +2103 719 1 +2103 1117 1 +2103 326 1 +2103 645 1 +2103 1075 1 +2103 323 .8 +2103 934 1 +2103 1434 1 +2103 30 1 +2103 1633 .8 +2103 1020 1 +2103 1082 .8 +2103 577 .8 +2103 1072 .8 +2103 558 1 +2103 352 1 +2103 1076 .6 +2103 466 1 +2103 3233 .6 +1125 801 .8 +1125 282 1 +1125 1122 1 +1125 770 1 +1125 118 1 +1125 22 1 +1125 1124 1 +1125 426 1 +1125 424 1 +1125 30 1 +4425 4425 .8 +4425 1692 .8 +4425 641 .8 +4425 506 1 +4425 323 .8 +4425 46 1 +4425 350 1 +4425 1075 1 +704 703 .6 +704 702 .6 +704 705 .8 +4623 4623 .6 +4623 920 .8 +2258 2258 .6 +2258 3625 .8 +2258 1531 .8 +2258 5869 .8 +2258 721 1 +2258 1525 .6 +2258 778 .8 +2258 1436 1 +2258 4468 1 +2258 709 1 +5205 5205 .6 +5205 282 1 +5205 332 1 +5205 30 1 +5205 175 1 +5205 1142 .8 +919 919 .6 +919 111 .8 +919 4003 .6 +919 1832 .6 +919 757 .6 +919 1021 .8 +919 988 .8 +919 199 .8 +919 113 1 +919 356 .8 +919 265 .8 +919 605 .8 +919 2005 .8 +919 1703 .8 +919 592 .8 +919 948 .8 +919 2535 .6 +919 711 .8 +919 1827 .8 +919 917 .6 +919 4629 .6 +919 1091 .8 +919 593 .8 +919 5544 .6 +919 263 .8 +919 893 .8 +919 4954 .8 +919 1522 .8 +919 971 .8 +919 953 .8 +919 5764 .8 +919 107 .6 +919 194 .6 +919 157 .8 +919 242 1 +919 996 .8 +919 1304 .8 +919 2732 .8 +919 813 1 +919 173 .8 +919 620 .8 +919 399 .8 +919 1163 .8 +919 613 1 +919 548 .8 +919 603 .8 +919 140 1 +6060 6060 .6 +4782 4782 .6 +6061 6061 .6 +6062 6062 .6 +186 1417 1 +186 1622 .8 +186 779 1 +186 2482 1 +186 780 .8 +186 126 1 +186 1970 .6 +186 5960 .6 +186 2149 1 +186 6063 .6 +186 773 1 +186 546 1 +186 2122 .6 +510 510 .6 +510 44 .8 +510 297 .8 +510 13 .8 +510 232 .6 +510 586 .8 +5272 5272 .6 +5447 5447 .8 +5447 175 .8 +5447 720 .8 +5447 46 1 +1909 1909 .8 +1909 1189 .8 +1909 194 .8 +1909 3565 .8 +1909 1906 .8 +1909 1533 .8 +1909 175 1 +335 332 1 +335 282 1 +335 51 .8 +335 331 1 +335 49 1 +335 3786 .8 +335 144 .8 +335 210 .8 +335 324 1 +335 729 .8 +335 53 .8 +335 637 1 +335 1764 .8 +335 1451 .8 +335 807 .8 +335 349 1 +335 3591 .8 +335 1766 .8 +335 3592 .8 +335 209 1 +335 2124 .6 +335 61 .8 +335 333 1 +335 334 .8 +335 695 1 +335 3384 1 +335 4147 .8 +335 864 .8 +335 251 .8 +335 207 .8 +335 720 .8 +335 336 1 +335 1668 .8 +335 328 1 +335 85 .8 +335 1092 .8 +335 289 .8 +335 191 1 +335 48 1 +335 1366 .8 +335 4022 .8 +335 100 .8 +335 165 1 +335 4342 .8 +335 330 .8 +335 1024 1 +335 75 .8 +335 4167 .8 +335 3855 .6 +6064 6064 .6 +6064 30 1 +6064 555 1 +6064 1495 1 +5555 5555 .8 +5555 46 1 +5555 576 .8 +5555 647 1 +5555 30 1 +5555 329 1 +5555 175 1 +5555 286 1 +5555 328 1 +5555 1227 1 +5555 2984 .6 +6065 6065 .6 +6065 46 1 +6065 883 .8 +6066 6066 .6 +6067 6067 .6 +727 30 1 +727 346 1 +727 719 1 +727 46 1 +727 1798 1 +727 1049 1 +727 1490 1 +727 492 1 +727 438 .8 +727 513 .8 +727 174 .8 +727 1020 1 +727 1309 1 +727 349 .8 +727 126 1 +727 1495 1 +727 898 .8 +727 1952 .8 +727 1953 .6 +727 1954 .6 +727 1955 .8 +727 1956 .6 +727 1988 .8 +727 6068 .6 +727 2233 .8 +727 6069 .6 +727 782 .8 +727 625 .8 +727 2434 .8 +727 2149 .8 +727 45 1 +727 1391 .8 +727 1375 .6 +727 2638 .8 +727 1978 .8 +727 1872 .8 +727 6070 .6 +727 261 .8 +727 1384 .8 +727 1416 .8 +727 774 1 +727 597 .8 +727 348 1 +727 990 1 +727 1840 .8 +727 768 .8 +727 1377 .8 +727 1930 .8 +727 610 1 +727 897 .8 +727 2352 .8 +727 328 1 +727 961 .6 +727 1370 1 +727 186 .8 +727 214 .8 +727 1981 1 +727 1662 .8 +727 20 .8 +727 1777 .6 +727 1373 .8 +727 1178 .8 +727 699 .8 +727 1742 .8 +727 1398 .8 +727 2350 .8 +727 2464 1 +727 1920 .8 +727 3802 1 +727 2911 .8 +1306 3117 .8 +1306 739 1 +1306 84 .8 +1306 102 .8 +1306 1659 .8 +1306 792 .8 +1306 1053 .8 +1306 736 1 +1306 3491 .8 +1306 855 1 +1306 740 .8 +1306 2799 .8 +1306 1693 .8 +1306 2629 .8 +1306 834 .8 +1306 1304 .8 +1306 91 .8 +1306 5064 .6 +1306 679 .8 +1306 716 .8 +1306 2277 .8 +1306 1929 1 +1306 165 1 +1306 2993 1 +6071 6071 .6 +6072 6072 .6 +2744 2744 .8 +2744 142 .8 +6073 1589 .8 +6073 2685 .6 +6073 2861 1 +6073 2997 .8 +6073 1682 1 +6073 547 .8 +6073 1191 1 +6073 3178 .6 +2216 2216 .8 +2216 582 1 +2216 405 1 +2216 743 1 +2216 2517 .8 +2216 2323 .8 +2216 429 1 +2216 536 .8 +2216 46 1 +2216 736 1 +2216 2141 .8 +2216 1311 .8 +2216 4580 .8 +2216 837 .8 +2216 437 .8 +2216 595 1 +6074 712 .8 +6074 1077 .6 +6074 6075 .8 +6074 2100 .8 +6074 2273 .8 +6074 6076 .6 +6074 480 .6 +5403 22 .6 +6077 6077 .6 +6078 6078 .6 +6078 722 1 +6079 129 1 +6079 1315 1 +1409 2261 .8 +1409 1409 .6 +1409 1400 .6 +1409 859 1 +1409 142 1 +1409 46 1 +1409 837 .8 +1409 1696 .8 +1409 53 .8 +1077 1077 .6 +6080 6080 .6 +475 1012 1 +475 1430 1 +475 328 1 +475 2662 .8 +5268 5268 .6 +5268 1823 .6 +5268 429 .8 +5268 2207 .8 +5268 1191 .8 +5268 431 1 +5268 2208 .6 +5268 2069 .8 +5268 725 .6 +5268 2091 .6 +6081 6081 1 +6081 6082 1 +2949 2420 1 +2949 640 1 +2949 22 1 +2949 2521 1 +2949 282 1 +2949 764 1 +2949 1125 1 +2949 770 1 +2949 1123 1 +2949 1230 1 +2949 273 1 +2949 2806 1 +2949 1068 1 +2949 207 1 +6083 6083 .6 +5127 328 1 +2726 34 .6 +2726 3103 1 +2726 2726 .8 +2726 327 .8 +2726 5666 .8 +2726 501 .8 +2726 4395 .6 +2726 3708 .8 +2726 1335 .8 +2726 1921 1 +2726 2946 .8 +2726 734 .6 +2726 172 1 +2726 1028 1 +2726 286 1 +2726 345 1 +2726 1421 .6 +2726 6084 .8 +2726 1009 1 +2726 498 1 +2726 355 .6 +3386 1547 1 +3386 2307 .8 +3386 1246 1 +3386 737 .8 +3386 3718 .8 +3386 712 .8 +3386 597 .8 +3386 806 .6 +3386 1171 1 +3386 2657 .8 +3386 1558 .8 +6085 6085 1 +529 323 .8 +529 438 .8 +2133 436 .8 +2133 318 .8 +2133 1996 .8 +2133 46 1 +1875 2695 .8 +1875 2694 .8 +1875 1873 .8 +1875 1153 1 +1875 1875 .8 +1875 2709 .8 +1875 2787 .8 +1875 1078 .8 +594 438 .6 +594 431 1 +594 46 1 +594 701 .8 +594 506 1 +594 353 1 +594 1195 .6 +594 2057 .6 +594 1343 1 +594 45 1 +594 736 1 +594 308 1 +594 14 .6 +594 587 .6 +594 316 1 +594 1097 .8 +594 4775 .6 +594 298 .6 +594 2821 .6 +594 2092 .8 +594 2090 .8 +594 1162 .8 +594 3269 .6 +594 1919 .6 +594 710 1 +594 810 .8 +594 943 1 +594 1091 .6 +594 232 .6 +594 1150 .8 +594 2271 .8 +594 171 1 +594 328 1 +594 92 .8 +594 2377 .8 +594 988 .8 +594 805 1 +594 1047 .6 +594 594 .8 +594 214 .8 +594 593 .8 +594 362 .8 +594 579 .8 +594 2505 .6 +594 498 1 +594 893 .8 +594 101 1 +594 322 .6 +594 1167 .8 +594 807 .8 +594 1546 .8 +594 30 1 +594 719 1 +594 801 .8 +594 111 .8 +594 1246 1 +594 1418 .8 +594 780 1 +594 580 .8 +594 3028 .6 +594 2482 .8 +594 779 .8 +594 1174 .6 +594 793 .8 +594 1399 .8 +594 1646 .8 +594 492 .8 +594 1004 .6 +594 345 .8 +594 809 .6 +594 785 .8 +594 811 .6 +594 157 .8 +594 1586 .8 +594 1512 .8 +594 3218 .6 +594 597 .8 +594 401 .8 +594 858 1 +594 1378 .8 +594 82 .8 +594 644 1 +594 329 1 +594 2792 .8 +594 680 .8 +594 711 .8 +594 632 1 +594 1740 .8 +594 418 .6 +594 1453 .8 +594 683 .8 +594 62 1 +594 1339 .8 +594 192 .8 +594 1851 1 +812 812 .6 +812 2777 .6 +812 1650 .8 +812 3609 .6 +812 625 .8 +812 680 .8 +812 328 1 +812 165 .8 +812 3067 .8 +812 121 1 +812 346 .8 +812 72 .8 +812 791 .8 +812 795 1 +812 1631 .8 +812 2106 .8 +812 1586 1 +812 597 .8 +812 45 1 +812 2243 .6 +812 921 .8 +812 400 1 +812 214 .8 +812 4130 .6 +812 3795 .8 +812 6086 .8 +812 5016 .6 +4407 1473 1 +6087 6087 .8 +4223 4223 .6 +4223 4221 .6 +3327 3327 .6 +6088 6088 .8 +6089 6089 .6 +1425 1425 .6 +1425 1424 .6 +1425 1423 .6 +1425 1422 .8 +1425 1421 .8 +6090 6090 .6 +6091 6091 .8 +4596 4596 .8 +4596 5655 .8 +4596 427 1 +2286 441 1 +2286 701 1 +2286 904 1 +3109 3108 .6 +3109 3109 .6 +3109 46 1 +3109 328 1 +3645 3645 .8 +3645 748 1 +3645 1222 1 +3645 2457 .8 +3645 1214 .8 +3645 2453 .8 +3645 747 1 +3645 2460 .8 +3645 79 .8 +3645 652 1 +3645 1210 .8 +3645 1499 .8 +3645 2454 .8 +3645 286 1 +3645 2455 .6 +3645 290 1 +3645 377 .8 +3645 1127 .8 +3645 659 1 +3645 110 .8 +3645 1479 1 +3645 1605 .8 +3645 137 .8 +3645 746 1 +3645 1205 .6 +3645 1219 .8 +3645 749 1 +3645 1213 .8 +3645 647 1 +3645 2458 .8 +3840 3840 .6 +3840 849 .8 +3840 851 .8 +1939 1939 1 +2602 1750 .8 +4516 4516 .6 +4516 429 1 +4516 148 .8 +4516 1064 .6 +4516 4519 .6 +4516 126 1 +4516 2207 1 +4516 643 1 +6092 6092 .6 +6093 6093 .6 +6093 1032 .8 +2510 403 .6 +2510 2244 .6 +6094 6094 .6 +3909 3909 .8 +3909 46 1 +3909 2887 .8 +3909 1051 .8 +5827 5827 .6 +5827 173 .8 +5827 4919 .8 +1111 2613 .6 +1111 887 .8 +1111 784 .8 +1111 886 .8 +1111 1110 .8 +3707 1156 1 +3707 1068 1 +3707 46 1 +3707 292 1 +3707 3432 1 +3707 44 .8 +3707 844 .8 +3707 303 1 +3707 4906 1 +3707 3425 .8 +3707 1242 1 +3707 1243 1 +3707 346 1 +3707 843 1 +3707 441 1 +3707 3136 .8 +3707 577 1 +4218 3837 .8 +4218 506 1 +4218 1155 1 +4218 1187 .8 +4218 1563 .6 +5460 5460 .6 +5460 3124 .6 +5460 5328 .6 +5460 328 1 +5460 6048 .6 +5460 5327 .6 +5460 1237 .6 +5460 2948 .6 +5460 768 .6 +5460 775 .6 +5460 3447 .6 +5460 3431 .6 +1387 1387 .6 +1387 1378 1 +1387 528 .8 +1387 364 .8 +1387 1153 .8 +1387 2790 .8 +1387 157 1 +1387 708 .8 +1387 597 .8 +1387 261 .8 +1387 30 1 +1387 46 1 +1387 126 1 +1387 719 1 +1387 116 1 +6095 6095 .6 +6096 126 1 +6096 1699 .8 +6096 1020 1 +643 643 .8 +643 429 .8 +643 431 1 +643 1555 1 +643 3239 .8 +227 227 .8 +227 277 .6 +227 137 1 +227 215 .8 +227 1752 .8 +227 357 .8 +227 5487 .6 +227 2506 .6 +227 214 .6 +227 1179 .8 +227 1135 .6 +227 296 1 +227 1579 1 +227 58 .8 +227 1562 .8 +227 6097 .6 +227 3547 .6 +227 2990 .6 +227 3340 .6 +227 3297 .6 +227 3367 .8 +227 1704 .8 +227 4942 .6 +227 3826 .8 +227 3266 .6 +227 21 .6 +227 927 .6 +227 4189 .6 +227 1060 .6 +227 770 1 +227 121 .6 +227 1769 .8 +6098 6098 .6 +556 556 .6 +556 1135 .8 +556 1136 .6 +556 1033 .8 +556 92 1 +556 3119 .6 +556 106 .8 +556 257 .8 +556 914 .6 +556 904 .8 +556 2276 .8 +556 4271 .6 +556 1415 .6 +556 780 .8 +556 254 .6 +556 311 .8 +556 1165 .8 +556 65 .8 +556 243 .6 +556 2918 .6 +556 6099 .6 +556 282 1 +556 943 1 +556 356 .8 +556 1998 .6 +556 251 .8 +556 1673 .6 +556 1997 .6 +556 3384 .8 +556 554 .8 +556 514 .8 +556 582 1 +556 1494 .8 +556 44 1 +556 19 .8 +556 2377 .8 +556 259 .6 +556 1992 .8 +556 597 .8 +556 4795 .8 +556 1512 1 +6100 1587 .8 +6100 1078 1 +6100 194 1 +6100 316 1 +6100 191 1 +6100 1961 1 +6100 2103 1 +6100 582 1 +6100 332 1 +6100 306 1 +6100 584 1 +6100 1167 1 +6100 746 1 +6100 645 1 +6100 643 1 +2992 1065 1 +3754 30 1 +3754 1309 1 +3754 1798 .8 +3754 1020 1 +3754 126 1 +6101 6101 1 +4962 4962 .8 +6102 766 .6 +6102 3218 .6 +6102 808 .8 +6102 4635 .8 +6102 1619 1 +6102 4886 .6 +6102 5289 .8 +6102 419 .6 +4258 4258 .6 +4258 1823 .8 +4258 46 1 +4258 863 .8 +4258 429 1 +4258 3742 .8 +4258 4253 .6 +4258 4257 .8 +1584 467 1 +1584 1673 .6 +1584 644 1 +1584 336 .8 +1584 473 .6 +1584 1277 .6 +1584 4763 .8 +1584 3468 .6 +1938 1938 .6 +1938 171 1 +1938 30 1 +1938 719 1 +1938 172 1 +1938 328 1 +1938 34 .8 +1938 807 .8 +1938 1616 1 +1938 1100 .8 +1938 1002 .8 +1938 46 1 +1938 174 .8 +1938 4783 .6 +1938 1847 1 +1938 1437 1 +1938 912 .8 +1938 638 .8 +1938 1957 1 +1938 736 1 +1938 126 1 +1938 1076 .6 +1938 918 1 +1938 345 1 +1938 643 1 +1938 466 .8 +1938 712 .8 +1938 346 .8 +1938 324 .8 +1938 990 .8 +1938 595 .8 +1938 1754 1 +1938 1497 .8 +1938 1001 .8 +1938 545 .8 +1938 1589 .6 +1938 528 .8 +4911 4911 1 +6103 6103 1 +6104 6104 .6 +4940 4491 .8 +4940 830 .6 +6105 6106 .6 +6107 6107 .6 +6108 1047 .6 +6109 6109 1 +5779 5779 .6 +6110 524 .8 +6110 46 1 +6111 353 1 +6111 855 1 +6111 739 1 +6111 142 1 +6111 1416 1 +1764 1764 .8 +1764 51 1 +1764 282 1 +1764 710 1 +1764 332 1 +1764 49 1 +1764 864 .8 +1764 1660 .8 +1764 1704 .6 +1764 53 1 +1764 637 1 +1764 334 .8 +1764 65 1 +1764 1515 1 +1764 639 1 +1764 70 .8 +1764 1404 .8 +1764 174 1 +1764 73 1 +1764 71 .8 +1764 48 .8 +1764 3259 .8 +3971 3971 .8 +3971 52 1 +3971 1364 1 +3971 214 1 +3971 437 1 +3971 1954 1 +3971 1538 1 +3054 3054 1 +3054 739 1 +3054 2239 .8 +3054 856 1 +3054 6112 .6 +6113 6113 .6 +5553 5553 .6 +6114 6114 1 +3566 3566 .8 +3566 5957 .6 +3566 3288 .8 +6115 6115 .6 +2556 174 .8 +2556 2555 .8 +2556 5930 .8 +2556 2554 .6 +2556 467 .8 +2556 1002 .8 +2556 1001 .8 +6116 6116 .8 +4744 4744 .6 +4744 2265 .8 +4744 625 .8 +4744 1485 .8 +6117 6117 .6 +2725 2725 .6 +2725 119 .8 +2725 323 .8 +2725 555 1 +2725 2323 .6 +2725 325 .8 +2725 2247 .8 +2725 1408 .6 +4801 4801 .6 +4801 804 .8 +4801 46 1 +4801 30 1 +4801 577 1 +4801 1418 .8 +6118 6118 .6 +271 3137 1 +271 148 .8 +271 1089 1 +271 429 1 +271 597 .8 +271 44 .8 +271 2799 .8 +271 1011 .8 +271 1189 .6 +271 5780 .6 +271 265 .8 +271 960 .6 +271 255 .6 +271 1899 .6 +271 2522 .6 +271 1126 .8 +271 1303 .8 +271 267 .6 +271 263 .6 +271 112 .8 +271 3475 .8 +271 378 .6 +271 1671 .6 +271 5705 .6 +271 958 .8 +271 971 .6 +271 613 .6 +618 1191 1 +618 578 1 +618 429 1 +618 428 1 +618 431 1 +618 3239 1 +618 2091 1 +618 1554 1 +618 643 1 +618 2092 .8 +618 2090 .8 +618 3120 .6 +618 720 1 +618 1561 1 +618 442 .8 +618 1856 1 +618 1065 1 +618 2206 .8 +618 2219 1 +618 1555 1 +618 1064 .6 +618 1545 .8 +618 586 .6 +618 1066 .6 +618 2222 .8 +618 863 .6 +618 612 1 +618 1247 1 +618 619 .8 +618 362 .8 +618 2228 1 +618 1092 1 +618 722 1 +618 1270 1 +6119 2246 1 +6119 1182 .8 +6119 1483 .8 +6119 1641 .8 +6119 1894 1 +6119 2247 1 +6119 1963 .8 +6119 227 .8 +6119 263 .8 +6119 2412 .8 +6119 1996 1 +6119 1213 1 +6119 2420 1 +6119 3986 .8 +6119 353 1 +6119 306 1 +6119 584 1 +6119 1167 1 +6119 746 1 +6119 1123 1 +6119 645 1 +6119 643 1 +6119 810 1 +6119 440 1 +6119 233 1 +6119 1752 1 +6119 747 1 +6119 305 1 +6119 30 1 +6119 638 1 +6119 738 1 +6119 1450 1 +6119 1428 1 +6119 1116 1 +6120 6120 .6 +6121 6121 .6 +2193 2193 .6 +2193 675 .6 +2193 719 1 +2193 2879 .8 +2193 7 .8 +2193 617 .8 +2193 3803 .8 +2193 925 .8 +2193 904 .8 +3179 444 .8 +3179 3179 .6 +3179 2073 .6 +3179 1838 .6 +3179 3171 .6 +3179 807 .8 +3179 35 .8 +3179 327 .8 +3179 94 .6 +3179 4067 .8 +3179 22 1 +3179 425 1 +3179 424 1 +3179 118 1 +3179 770 1 +3179 112 1 +3179 30 1 +3179 46 1 +3179 1124 1 +3179 426 1 +3179 2622 .8 +3179 1137 .8 +3179 584 1 +3179 3068 .8 +4869 4869 .8 +1723 1723 1 +1723 1231 1 +1723 22 1 +1723 282 1 +1723 1171 1 +469 1023 .8 +469 469 .8 +469 1682 .8 +469 750 1 +469 651 .8 +469 1022 1 +469 104 .8 +469 1898 .8 +469 92 .8 +469 22 1 +469 584 1 +469 801 .8 +469 1024 .8 +469 1290 .8 +469 103 .8 +469 45 1 +469 1834 .8 +469 751 1 +469 893 .8 +469 659 1 +469 523 .8 +469 951 .6 +469 987 .6 +469 989 .6 +469 705 .6 +469 703 .6 +469 93 .6 +469 577 1 +469 1685 .6 +469 917 .8 +469 1233 .6 +469 2334 .6 +469 760 .6 +469 2550 .8 +469 357 .8 +469 394 .8 +469 1571 .8 +469 2715 .8 +469 335 .8 +469 1963 .6 +469 1352 .8 +469 5483 1 +469 525 1 +469 362 .8 +469 4581 .8 +469 1768 1 +469 224 .8 +469 318 1 +2137 3438 .8 +2137 2136 .8 +2137 2134 .6 +2137 2137 .8 +2137 4312 .8 +2137 1643 1 +2137 2141 .8 +2137 2135 .6 +2137 318 .8 +2137 625 .8 +4215 4215 .8 +2267 2267 .8 +2267 1011 .8 +2267 1579 .8 +2267 1001 .6 +2267 2266 .8 +2267 2555 .8 +2267 2366 .8 +2267 212 .8 +2267 716 .8 +2267 2899 .6 +2267 6122 .8 +2267 4145 .8 +2267 2952 1 +2267 5210 .8 +2267 3002 .8 +2267 5437 .8 +2267 4576 .8 +2267 5163 .8 +2267 6123 .6 +2267 3285 1 +2267 2367 1 +2267 2365 .8 +2267 2368 .8 +2267 3739 .8 +2267 148 .8 +4575 4575 .6 +181 1653 .8 +181 182 .8 +181 2107 .8 +181 2108 .8 +181 2106 .8 +181 22 1 +181 2110 .8 +181 417 .8 +181 418 .6 +181 397 .6 +181 6124 .8 +181 501 .8 +181 2243 .8 +181 1046 .8 +181 1277 .6 +181 2580 .8 +181 2105 .8 +181 2470 .8 +181 1047 1 +181 1965 .8 +181 1056 .8 +4010 4010 .6 +4010 1313 .8 +4010 646 .8 +4010 3337 .6 +4010 88 .8 +4010 4660 .6 +1898 750 1 +1898 1546 .8 +1898 4067 .8 +1898 736 1 +1898 104 .8 +1898 92 .8 +1898 1023 .8 +1898 1893 .8 +1898 1027 .8 +1898 2886 .8 +1898 3913 .8 +1898 651 .8 +1898 3100 .8 +1898 584 .8 +1898 652 1 +1898 90 .8 +1898 760 .6 +1898 2715 .8 +1898 1818 .8 +1898 3188 .8 +1898 1537 .8 +1898 596 .8 +1898 644 .8 +1898 126 1 +1898 4635 .8 +1898 215 1 +1053 739 1 +1053 1053 .8 +1053 736 1 +1053 1052 1 +1053 741 1 +1053 46 1 +1053 1308 .8 +1053 45 1 +1053 142 .8 +1053 789 .8 +1053 648 1 +1053 30 1 +1053 86 .8 +1053 833 .8 +1053 792 1 +1053 97 .8 +1053 837 .8 +1053 1696 .8 +1053 1089 1 +1053 1278 1 +1053 3491 .8 +1053 242 1 +1053 561 1 +1053 3543 .8 +1053 175 .6 +2757 784 .8 +2757 46 1 +2757 108 .6 +2757 119 .8 +2757 30 1 +2757 1065 .8 +5006 1930 1 +5006 2487 .8 +5006 3440 .8 +5006 126 1 +5006 1495 1 +5006 326 1 +5006 2672 .8 +5006 1244 1 +5006 4775 .6 +5006 233 1 +5006 2464 1 +5006 62 1 +3065 3065 .8 +3065 736 1 +3065 424 1 +3065 22 1 +3065 1124 1 +3065 426 1 +3065 640 1 +3065 1177 1 +6125 9 .8 +6125 6125 .6 +6126 1655 .8 +6126 46 1 +6126 353 1 +6126 3099 .8 +6127 6127 .6 +4665 4665 .8 +4665 4664 .8 +6128 3498 .8 +6128 2352 1 +1515 1515 .8 +1515 922 .8 +1515 1200 1 +1515 918 1 +1515 295 .6 +1515 1764 .6 +1515 71 .8 +1515 53 .8 +1515 67 .8 +1515 328 1 +1515 167 .8 +1515 5346 .6 +1515 2636 .6 +1515 3389 .6 +1515 6129 .6 +1515 603 .8 +1515 1514 .8 +1515 6130 .6 +1515 639 1 +1515 801 .8 +1515 5244 .8 +1515 2200 .8 +1515 2313 .8 +1515 1513 .6 +1515 5850 .6 +1515 1373 .8 +1089 1089 .8 +1089 506 1 +1089 1238 .8 +1089 743 1 +1089 1075 1 +1089 859 1 +1089 349 1 +1089 30 1 +1089 1117 1 +1089 2225 .8 +1089 934 1 +1089 328 1 +1089 1682 .8 +1089 879 .8 +1089 916 1 +1089 175 1 +1089 1176 1 +1089 92 .8 +1089 577 1 +1089 1031 .8 +1089 286 1 +1089 610 1 +1089 305 1 +4384 2318 .8 +4384 506 1 +4653 328 1 +6131 6131 1 +6132 852 1 +6132 1176 1 +6132 290 1 +6132 2681 .8 +6132 1898 .8 +6132 126 1 +3178 3178 .6 +3178 1356 .8 +6133 6133 .6 +6134 94 .8 +4643 4643 .8 +4643 318 .8 +4643 1996 .8 +4643 1894 .8 +107 107 .6 +107 65 1 +107 792 1 +107 328 1 +107 30 1 +107 492 1 +107 918 1 +107 3501 .8 +107 113 .8 +107 1631 .8 +107 1881 .6 +107 4456 .8 +107 3464 .8 +107 5403 .6 +107 960 .8 +1676 918 1 +6135 6135 1 +1771 1770 1 +3273 3271 .8 +3273 387 .8 +3273 385 .8 +3273 3273 .8 +1463 3505 .8 +1463 1126 1 +1463 1211 1 +1463 852 1 +1463 1465 .8 +1463 658 1 +1463 883 1 +1463 46 1 +1463 714 1 +1463 1464 1 +1463 2196 1 +1463 1462 1 +1463 1463 .6 +1463 126 1 +1463 674 .8 +1463 751 .8 +983 1601 .8 +983 457 .8 +983 1603 1 +983 226 .8 +983 858 1 +983 2883 .8 +983 843 .8 +983 1606 .8 +983 6136 .8 +983 845 .8 +983 555 1 +983 2789 .8 +983 1237 .8 +983 4642 .8 +983 3350 1 +983 783 1 +983 632 .8 +983 5013 .8 +983 723 .8 +983 1988 1 +1850 1840 .8 +6099 292 1 +4848 4848 .8 +4848 2482 1 +6137 6137 .8 +3455 1182 .8 +3455 3455 .6 +3455 292 1 +3455 634 .8 +3455 126 1 +3455 714 1 +3455 429 1 +3455 708 .8 +3455 1223 .8 +3455 1254 .8 +3455 4410 .6 +3455 707 .6 +3455 157 .8 +3455 1383 .8 +3455 597 .8 +3455 2085 .8 +3455 610 1 +3455 3930 .8 +3103 2726 .8 +3103 327 .8 +3103 324 1 +3103 3103 .8 +3103 345 .8 +3103 30 1 +3103 5666 1 +3103 3140 .8 +3103 1650 .8 +3103 4067 1 +3103 344 .8 +3103 3104 .8 +6138 6138 .6 +4983 4983 .6 +4983 1533 .8 +4983 2160 .8 +4983 194 .8 +4983 1200 1 +4983 1280 .8 +4983 165 .8 +4983 6139 .8 +6140 6140 .6 +6141 6141 .8 +6141 1136 .6 +1529 1529 .6 +1529 1526 .6 +1529 1525 .6 +1529 1527 .6 +1529 1528 .6 +1529 1495 1 +1529 1490 1 +1529 780 .8 +1529 2807 1 +1529 990 .8 +1529 30 1 +1529 719 1 +1529 1848 1 +1529 1493 1 +1529 1492 1 +1529 2911 1 +1529 673 .8 +1529 2252 1 +1529 1742 .8 +1529 1020 1 +1529 3560 .8 +1529 3625 1 +1529 2762 1 +1529 1851 1 +1529 3880 .8 +1529 721 .8 +1529 728 1 +1529 349 1 +1529 2258 1 +946 2213 .8 +946 45 .8 +946 327 .8 +946 103 .8 +946 469 .8 +946 104 .8 +946 405 .8 +946 518 .8 +946 2059 .8 +6129 5346 .8 +6142 6142 .6 +6143 6143 1 +5954 5954 .8 +5954 3839 1 +5954 43 1 +5954 3483 .6 +5954 881 .8 +5954 843 .8 +3723 1479 1 +3723 3482 1 +3723 647 1 +3723 747 1 +3723 1222 1 +3723 3469 .8 +3723 2278 .8 +3723 659 1 +3723 746 1 +3723 1213 1 +3723 2378 .8 +3723 1499 1 +4166 4166 1 +4166 1237 1 +3086 3087 .6 +3086 492 .6 +3086 1114 .6 +3086 1643 .8 +3086 45 1 +3556 3555 .6 +3556 644 1 +3556 328 1 +3556 1278 1 +3556 467 .8 +3556 787 1 +6144 844 .8 +14 2565 .8 +14 1491 .8 +14 2561 .8 +14 1167 .6 +14 14 .8 +14 92 .8 +14 1343 1 +14 94 .6 +14 13 .8 +14 2183 .6 +14 6145 .6 +14 2464 .8 +14 3275 .6 +14 284 .6 +14 4379 .8 +14 4353 .8 +14 311 .6 +306 46 1 +306 1401 .8 +306 305 1 +306 328 1 +306 2002 .8 +306 434 1 +306 95 .8 +306 303 .8 +306 119 .8 +306 2699 .8 +306 843 .8 +306 1117 1 +306 324 .8 +306 2249 .8 +306 882 .8 +306 1753 1 +306 1074 .8 +306 645 1 +306 1075 .8 +306 947 .8 +306 1020 1 +306 881 .8 +306 1162 1 +306 2698 .8 +306 2225 1 +306 2700 .8 +306 2696 .6 +306 959 .8 +306 1817 .8 +306 577 1 +306 323 .8 +306 533 .8 +306 542 .8 +306 2217 1 +2113 1653 .6 +2113 4510 .6 +2113 2111 .6 +2113 2850 .6 +2113 2849 .6 +2113 182 .6 +2113 2109 .6 +2113 2113 .6 +2113 2108 .6 +2113 2578 .8 +2113 2112 .6 +2113 2243 .8 +2113 181 .8 +2113 673 1 +6146 6146 .8 +5275 2470 .8 +5275 46 1 +5275 30 1 +5275 719 1 +5275 328 1 +6147 6147 .6 +357 5161 .8 +357 2926 .8 +683 258 .8 +683 1415 .6 +683 30 1 +683 719 1 +683 46 1 +683 126 1 +683 737 1 +683 1157 1 +683 286 1 +683 425 1 +683 118 1 +683 303 1 +683 1992 .8 +683 582 1 +683 1703 .8 +683 2945 .8 +683 1756 .8 +683 187 .8 +683 846 .8 +683 1586 1 +683 242 .8 +683 1318 1 +683 157 .6 +683 4405 1 +683 4406 1 +683 646 1 +683 307 1 +683 1316 1 +683 1816 1 +683 429 1 +683 1560 1 +683 45 1 +683 329 1 +683 898 .8 +683 3838 1 +683 3892 1 +683 793 .8 +683 3032 1 +683 785 .8 +683 5459 .6 +683 1495 1 +683 173 1 +683 912 1 +683 711 .8 +683 774 1 +683 1490 1 +683 1752 1 +683 1370 .8 +683 13 1 +683 712 1 +683 801 1 +683 53 1 +683 1418 1 +683 594 .8 +683 1618 1 +683 830 1 +683 2141 1 +683 1620 .8 +683 4041 1 +4261 4261 .8 +269 6148 .8 +269 269 .6 +269 333 1 +269 268 1 +269 267 1 +4208 4208 .6 +4208 1153 .8 +4208 128 1 +4208 2803 1 +4208 1383 .8 +4208 2807 .8 +4208 2789 .8 +1692 1692 .8 +1692 142 .8 +1692 836 .8 +1692 1298 .8 +1692 801 .8 +1692 835 .8 +1692 740 .8 +1692 736 1 +1692 1627 .8 +1692 97 .8 +1692 106 .8 +1692 1516 .8 +1692 648 1 +1692 738 .8 +1692 741 .8 +1692 837 .8 +1692 2376 .8 +1692 792 .8 +1692 1690 .8 +1692 855 .8 +1692 4425 .8 +1692 1696 .8 +1692 856 .8 +1692 2852 1 +1692 405 .8 +1692 1311 .6 +1692 650 .8 +1692 2261 .8 +1692 2263 .8 +1692 1999 .8 +1692 790 .8 +1692 2262 .8 +1692 5849 .8 +1692 5878 .6 +1692 718 .8 +1692 1304 .8 +1692 3118 .8 +1692 248 .6 +1692 1819 .8 +1692 3491 .8 +1692 2851 .6 +1692 2101 .8 +1692 2448 .6 +1692 1775 .8 +52 51 .8 +52 52 .8 +52 303 1 +52 286 1 +52 50 .8 +52 352 1 +52 1760 .8 +52 624 .8 +52 332 1 +52 48 1 +52 53 .8 +52 61 .8 +52 57 .8 +52 334 .8 +52 853 .8 +52 58 .8 +52 1961 .8 +52 126 1 +52 4148 1 +52 1768 1 +52 335 1 +52 331 1 +6149 6150 .6 +5723 5723 .6 +5723 429 1 +5723 1386 .8 +5723 2259 .6 +5723 2227 .8 +5723 1379 .8 +5723 736 1 +5723 121 1 +5514 500 .6 +5514 4239 .6 +5514 2261 .8 +5514 1860 .6 +5514 948 .6 +5514 1195 .8 +5514 677 .6 +5514 1167 .8 +5514 1113 .8 +5514 1020 1 +5514 199 .6 +5514 1812 .8 +5514 540 1 +5514 897 1 +6151 6151 .6 +5426 5426 1 +2953 1030 1 +2953 2953 .8 +2953 1162 1 +2953 759 .8 +2953 703 .6 +3337 3517 .6 +3337 944 .6 +3337 1028 .6 +3337 1720 .8 +3337 2726 .6 +3337 870 .6 +3337 44 .8 +3337 880 .6 +3337 2332 .8 +3337 1227 .8 +3337 3320 .6 +3337 3708 .6 +3337 104 .8 +3337 652 .8 +3337 1434 .8 +3337 501 .6 +3337 1222 .8 +3337 914 .6 +3337 175 1 +3337 13 .8 +3337 4010 .6 +3337 88 .8 +3337 113 .8 +3337 576 .6 +3337 893 .6 +3337 658 .6 +3337 610 .8 +3337 4178 .6 +3337 1451 .8 +543 543 .6 +543 804 .8 +543 323 .8 +543 1401 1 +543 438 .8 +543 3050 .8 +543 326 1 +543 2247 1 +543 2094 .8 +543 492 .8 +543 2304 1 +543 2302 .6 +543 324 .8 +543 523 .6 +543 346 .8 +543 344 .8 +543 595 .6 +543 1076 .6 +543 174 .8 +543 466 .8 +543 645 .8 +543 1075 1 +543 345 .8 +3254 3254 1 +6152 6152 .6 +6153 6153 1 +6154 6154 1 +6155 3542 .8 +4216 4216 .6 +4216 6156 .8 +4216 30 1 +4216 53 .8 +4216 48 .8 +4216 46 1 +4216 632 .8 +4216 126 1 +3538 3538 .6 +3538 1852 1 +2143 4890 .6 +2143 4209 1 +2143 1211 1 +2143 852 1 +2143 2143 .6 +2143 4691 1 +2658 1246 1 +2658 2658 .6 +2658 2659 .8 +2658 1930 1 +2658 2008 1 +6157 6157 .8 +4942 4942 .6 +4942 457 .8 +4942 227 .8 +4942 776 .8 +101 101 1 +101 3102 1 +101 175 1 +101 46 1 +101 30 1 +101 329 1 +101 506 1 +101 5 1 +101 1020 1 +1326 1326 1 +1326 998 .8 +1326 762 1 +1326 2251 1 +6158 6158 1 +6159 6159 .6 +6159 1309 1 +6159 392 1 +6159 801 1 +505 505 .8 +1592 3314 .8 +1592 1957 1 +1592 2860 1 +1592 1549 .8 +1592 1234 .8 +1592 3314 .8 +1592 854 1 +1592 207 1 +1592 1925 1 +1592 295 .8 +1592 3192 .8 +1592 1598 1 +1592 1451 .8 +1592 286 1 +1592 172 1 +1592 853 .8 +1592 3384 1 +1592 209 1 +1592 827 1 +1592 962 .8 +1592 825 .8 +1592 695 1 +1592 210 1 +1592 3475 .8 +1592 2988 1 +1592 2914 .8 +1592 522 .8 +1592 449 1 +1592 2942 .8 +1592 506 1 +1592 5820 .8 +1592 739 1 +1592 826 1 +1592 2101 .8 +1592 213 1 +1592 3389 .8 +1592 1597 .8 +1592 126 1 +1592 3237 .8 +1592 6160 .8 +1592 696 .8 +927 927 .8 +927 2539 .6 +927 1047 .8 +927 18 .8 +927 1135 .8 +927 3807 .8 +927 98 .6 +927 1418 .8 +927 701 .8 +927 1809 .8 +927 1162 .8 +927 399 .8 +927 4106 .8 +927 1963 .6 +927 4959 .6 +927 2147 .6 +927 3237 .8 +927 2934 .8 +927 397 .6 +927 3409 .8 +927 2164 .8 +927 1779 .6 +129 629 .8 +129 3799 1 +129 2340 .8 +6161 6161 .8 +3807 282 1 +3807 1122 1 +3807 3807 .8 +3807 2521 1 +3807 3770 1 +3807 1123 1 +3807 1230 1 +3807 1231 1 +3807 1723 1 +3807 1171 1 +3807 4547 .8 +495 297 1 +495 3928 .8 +495 495 .6 +495 438 .6 +495 348 .8 +495 3032 1 +495 104 .8 +495 92 .8 +495 641 1 +235 235 .6 +6162 6162 .8 +281 13 .8 +281 191 .8 +281 783 1 +281 175 .8 +27 29 1 +27 32 .8 +27 27 .8 +27 31 .8 +27 33 .6 +27 28 .8 +27 46 1 +27 1651 .8 +27 320 .8 +27 26 .8 +27 34 .6 +27 286 1 +27 71 .6 +27 753 .6 +4888 4888 .6 +4888 373 .8 +6163 6163 .8 +5768 2291 .8 +5768 328 1 +293 293 1 +293 1707 .8 +293 1705 .8 +1069 19 .8 +1069 2412 .6 +1069 261 .6 +829 797 .8 +829 829 .8 +829 1434 .8 +829 1428 .8 +829 511 .8 +829 577 .8 +829 1075 .8 +829 306 .8 +829 642 .8 +829 2666 .6 +829 426 .8 +829 1124 .8 +829 424 .8 +829 1918 1 +829 349 .8 +829 1077 .6 +829 351 .8 +829 467 .8 +829 112 .8 +829 677 .6 +829 638 .8 +829 652 .8 +829 1638 .6 +829 481 .8 +829 438 .8 +829 827 .8 +829 2878 .8 +829 4980 .6 +829 175 .6 +829 1485 .6 +829 1213 .8 +829 6164 .6 +829 804 .6 +829 2327 .6 +829 807 1 +829 2019 .6 +829 6165 .6 +829 2171 .6 +829 713 1 +5766 5766 .6 +6166 126 1 +6166 30 1 +6166 1075 1 +6166 316 1 +6166 329 1 +6166 714 1 +6166 440 1 +6166 215 1 +6166 373 1 +790 736 1 +790 90 .8 +790 790 .8 +790 739 1 +790 405 1 +790 1452 .8 +790 789 1 +790 86 .8 +790 656 .8 +790 142 1 +790 106 .8 +790 84 .8 +790 3192 .8 +790 1692 .8 +790 329 1 +790 1428 1 +790 1308 .8 +790 648 1 +790 792 .8 +790 2961 .8 +790 1304 .8 +790 2263 .8 +790 1504 .8 +790 2213 .8 +790 1659 .8 +790 2629 .8 +790 46 1 +790 126 1 +790 3191 .8 +790 4704 .8 +6167 4581 .8 +6167 4703 .8 +6167 2739 .8 +6167 618 1 +6167 958 .8 +6167 519 .8 +6167 927 .8 +6167 1813 .8 +4981 4981 1 +4296 1318 1 +4296 4286 1 +6168 6168 .6 +6168 1489 1 +6168 677 .6 +6168 1220 1 +6168 4690 .6 +1569 1569 .8 +1569 375 1 +1569 2625 .8 +1569 1562 1 +1569 714 1 +1569 1778 .8 +1569 3124 .6 +1569 283 1 +1569 1626 .8 +1569 2100 .8 +1569 6169 .6 +1569 110 .8 +1569 1579 1 +1569 1049 1 +1569 2269 .8 +1569 2268 .8 +1569 2342 .8 +1569 1563 .8 +1569 1781 .8 +1569 3127 1 +1569 1145 .8 +1569 277 .8 +1569 1052 1 +1569 4591 .8 +1569 3024 1 +1569 227 .8 +1569 3128 .8 +1569 157 .8 +1569 708 .8 +1569 1553 1 +1569 5146 .6 +1569 5147 .8 +1569 1385 .6 +1569 2343 .8 +1569 3198 1 +1569 2349 .8 +1569 51 1 +1569 2373 .6 +1569 4513 1 +1569 4721 1 +1569 2266 .6 +1569 5484 .6 +1569 294 .6 +1569 1545 .8 +1569 3616 .8 +1569 1656 .8 +1569 6043 .6 +1569 3986 .8 +1569 297 1 +1569 286 1 +1569 336 .8 +1569 4131 .8 +1569 4720 .8 +1648 1648 .8 +1648 1434 .8 +1648 1401 .8 +1648 202 .8 +1648 46 1 +1648 350 1 +1648 1075 .8 +1648 1495 .8 +1648 349 .8 +1648 30 1 +1648 305 1 +1648 324 .8 +1648 1123 1 +1648 345 .8 +1648 306 .8 +1648 1020 1 +1648 326 1 +1648 282 .8 +1648 1074 .8 +1648 577 .8 +1648 323 .8 +1648 325 .8 +1648 3280 .8 +1648 3683 .6 +1648 3612 .6 +1648 145 .8 +1648 22 1 +1648 31 .8 +1648 1339 .8 +1648 1305 .8 +166 215 .8 +166 46 1 +166 1546 .8 +166 784 .8 +166 167 .8 +166 578 .6 +166 736 1 +166 328 1 +166 1422 .6 +166 780 .6 +166 437 .8 +166 651 .8 +166 598 .8 +166 165 1 +166 434 .8 +166 2292 .6 +166 1558 .8 +166 1010 .6 +166 882 .6 +166 1097 .8 +166 282 1 +166 5490 .8 +166 1761 .6 +166 104 .8 +166 332 1 +166 277 .8 +166 4215 .8 +166 2332 .8 +166 1047 .8 +166 4073 .6 +166 70 .8 +166 6170 .8 +166 1450 .6 +166 53 .8 +166 948 .6 +166 1160 .8 +166 1677 .8 +166 164 .8 +166 1551 .8 +166 1012 .8 +166 1200 .8 +166 49 .8 +166 295 .8 +166 1494 .8 +166 2507 .8 +166 4878 .6 +166 98 .8 +166 1660 .8 +166 1390 .6 +166 766 .8 +166 607 .6 +166 2950 .6 +166 45 .8 +166 622 .6 +166 1126 .8 +166 1521 .8 +166 461 .6 +166 4597 .8 +166 812 .6 +166 72 .8 +166 274 .8 +166 233 1 +166 48 1 +166 80 .8 +166 1174 .8 +166 1566 .6 +20 20 .8 +20 2939 .8 +20 774 1 +20 14 .8 +20 1454 1 +20 1704 .8 +20 711 .8 +20 21 .6 +20 165 .8 +20 3526 .8 +20 335 .8 +20 555 1 +20 1153 1 +977 977 .8 +1151 1151 .8 +1151 327 .8 +1151 1602 .6 +1151 1516 .8 +1151 106 .8 +1151 46 1 +1151 1484 .8 +1151 2020 .6 +1151 3141 .6 +1151 1090 .8 +1151 3113 .6 +1151 1933 .8 +1151 1149 .8 +1151 3163 .8 +1151 22 1 +1151 324 .8 +1151 4067 .8 +1151 3103 .8 +1151 3140 .8 +1151 587 .8 +1151 791 .8 +1151 3890 .6 +488 488 .6 +488 2329 .6 +488 1171 1 +488 1750 .8 +488 1757 .8 +488 2619 .8 +488 2602 .8 +488 385 .8 +488 387 .8 +488 2604 .6 +488 2603 .8 +488 471 .6 +6171 6172 .8 +6173 6173 .6 +6173 819 .6 +6173 2672 .6 +6173 788 .8 +6173 1047 .8 +6173 165 .8 +6173 135 .8 +6173 2274 .8 +6173 328 1 +6173 429 .8 +6173 1655 1 +6173 46 1 +6173 353 1 +6173 3099 .6 +553 438 .8 +553 995 .6 +553 553 .8 +553 516 .8 +553 46 1 +553 718 .8 +553 990 .8 +553 45 .6 +553 1943 .8 +553 2141 .8 +553 588 .8 +4604 5527 .6 +4604 62 1 +4604 4155 1 +4604 126 1 +6174 6174 .8 +6175 6175 .6 +6175 46 1 +6176 6176 .8 +6177 6177 .8 +3404 157 .6 +3404 214 .6 +3404 265 .8 +3404 3404 .6 +3404 552 .6 +3404 597 .8 +3404 5274 .6 +3404 4900 .8 +3404 1963 .6 +3404 898 .6 +3404 788 .8 +3404 94 .6 +6178 6178 .6 +2224 2224 .8 +2224 2002 .8 +2224 1447 .8 +2224 523 .8 +2224 316 1 +2224 438 .8 +2224 1437 1 +2224 3172 .8 +2224 645 .8 +2224 1433 .8 +2224 5 1 +2224 431 1 +2224 506 1 +2224 1893 1 +2224 2217 .8 +2224 428 1 +2224 436 1 +2224 44 1 +2224 429 .8 +2224 432 .8 +2224 304 1 +2224 2078 .8 +2224 441 1 +2224 1160 .8 +2224 1908 1 +2224 1993 1 +2224 639 .8 +1633 719 1 +1633 328 1 +1633 1117 1 +1633 326 .8 +1633 1082 .8 +1633 30 1 +1633 1434 .8 +1633 323 .8 +1633 305 .8 +1633 352 1 +1633 1860 .6 +1633 797 .6 +1633 1072 .8 +1633 351 .8 +1633 2061 .8 +1633 286 1 +1633 1020 .8 +1633 91 .8 +1633 46 1 +1633 587 .6 +1633 466 .8 +1633 468 .8 +1633 2062 .8 +1633 1847 1 +1633 438 .6 +1633 303 .8 +1633 1075 .8 +1633 511 .8 +1633 350 .8 +1633 829 .8 +1633 175 .8 +1633 623 .8 +135 138 .8 +135 136 1 +135 134 .8 +6179 2200 .8 +2262 1304 .8 +2262 4142 .8 +2262 2629 .8 +2262 736 1 +1315 1315 1 +1315 1485 .8 +1315 104 1 +1315 1603 1 +1315 1898 1 +1315 92 1 +1315 651 .8 +1315 3101 .8 +1315 187 .6 +1315 679 .8 +2975 982 .8 +2975 1968 .8 +2975 2255 1 +2975 2974 .8 +2975 810 1 +2975 545 .8 +2975 1852 1 +2975 348 1 +59 59 .8 +59 58 1 +59 51 .8 +59 48 .8 +59 57 .8 +59 333 1 +4811 385 1 +4491 4491 .6 +4491 4940 .6 +4491 286 1 +4491 2059 .6 +4491 6180 .8 +4491 5221 .6 +1277 1991 1 +1277 1992 1 +1277 2746 .8 +1277 1991 1 +1277 1652 1 +1277 461 .6 +1277 787 .8 +1277 793 .8 +1277 1775 .8 +1277 163 1 +1277 1580 1 +1277 1568 1 +1277 1584 .8 +1277 126 1 +1277 6 .8 +1277 644 1 +1277 1278 1 +1277 2733 .8 +6181 6181 .8 +4517 4517 .8 +4517 912 1 +4517 1069 .8 +4517 584 1 +4517 2977 .6 +4517 719 1 +4517 30 1 +4517 1816 1 +4517 1064 1 +4517 1559 .8 +4517 1497 1 +4517 643 1 +4517 720 1 +4517 3680 .8 +4517 316 1 +4517 362 1 +4517 601 .8 +965 965 .6 +965 328 1 +965 121 1 +965 175 1 +965 329 1 +965 1315 .8 +965 555 1 +965 126 1 +965 63 .8 +965 658 .8 +965 750 1 +965 273 .8 +965 1546 .8 +965 1430 1 +965 714 .8 +965 101 1 +965 30 1 +965 646 .8 +965 1089 1 +965 852 1 +965 3770 1 +965 286 1 +1228 1228 .6 +1228 1230 1 +2527 312 .6 +2527 309 .6 +2527 126 1 +2527 658 .8 +2527 3611 .6 +2527 2171 .6 +2527 1450 .6 +2527 2615 .6 +3770 3770 1 +3770 1723 1 +3770 22 1 +3770 282 1 +6182 6182 .6 +178 639 1 +178 108 .8 +178 954 .8 +178 1222 1 +178 1213 .8 +178 3645 .8 +178 647 1 +178 747 1 +178 1218 .8 +178 177 .8 +178 2457 .8 +178 290 1 +5826 5826 1 +515 515 .8 +515 739 1 +515 1434 .8 +515 328 1 +515 30 1 +515 46 1 +515 719 1 +515 468 .8 +515 434 .8 +515 1020 .8 +515 286 1 +515 1117 1 +515 789 .8 +6183 1974 1 +6183 714 1 +6183 126 1 +2607 2607 .8 +2607 325 1 +2607 2601 .8 +6184 6184 1 +308 1020 1 +308 308 1 +308 46 1 +308 305 1 +308 1647 .8 +308 307 1 +308 301 .8 +308 2226 1 +308 1160 1 +645 719 1 +645 30 1 +645 1075 .8 +645 1020 .8 +645 468 .8 +645 511 .8 +645 324 .8 +645 328 1 +645 1117 1 +645 934 .8 +645 326 1 +645 46 1 +645 1133 .8 +645 172 .8 +645 1074 .8 +645 1927 .6 +645 306 .8 +645 1437 1 +5925 119 1 +5925 5925 .6 +5925 385 .8 +6185 6185 .8 +16 1176 1 +16 1211 .8 +16 883 .8 +16 1031 .8 +16 1411 .6 +16 784 .8 +16 623 .8 +16 4075 .6 +16 1860 .6 +16 317 .8 +16 2727 .6 +16 944 .8 +16 22 1 +16 30 1 +16 126 1 +16 852 .8 +16 1126 .8 +16 241 .8 +16 15 .6 +5059 5059 .6 +5059 325 1 +5059 328 1 +5059 324 1 +6186 6186 .6 +6187 296 1 +6188 6188 .6 +450 449 1 +6189 6189 .6 +6190 6190 .8 +6191 6191 .6 +6191 812 .6 +753 33 .6 +753 753 .6 +753 32 .8 +753 31 .8 +753 29 1 +753 142 .8 +753 30 1 +753 28 .8 +753 27 .8 +753 34 .6 +753 26 .8 +753 46 1 +753 71 .8 +3683 30 1 +3683 324 .8 +3683 1020 1 +6192 1270 .8 +6192 46 1 +985 985 .8 +985 1289 .8 +985 1286 .8 +985 1026 .8 +985 1285 .8 +985 1287 .8 +985 2103 .8 +985 50 .8 +985 48 .8 +985 55 .8 +985 658 .8 +4914 4914 .8 +6193 655 1 +6193 434 1 +6193 620 1 +6193 656 1 +6193 657 1 +6193 658 1 +6193 835 1 +6193 1065 1 +6193 651 1 +6193 51 1 +6193 1723 1 +6193 1001 1 +6193 58 1 +6193 1908 1 +6193 650 1 +6193 649 1 +6193 648 1 +6193 334 1 +6193 647 1 +6193 119 1 +6193 1430 1 +6193 385 1 +6193 1530 .8 +6193 1568 1 +6193 671 .8 +6193 631 .8 +6193 1318 1 +6193 526 1 +6193 1132 .6 +6193 920 .8 +6193 19 1 +6193 583 1 +6193 242 1 +6193 3251 .8 +6193 985 .8 +6193 597 .8 +6193 255 .8 +6193 449 1 +6194 6194 .6 +6195 6195 .8 +6196 6196 1 +6197 514 1 +6197 3140 .8 +6198 6198 .6 +6199 6199 1 +1298 1298 .8 +1298 1689 .8 +1298 741 .8 +1298 84 .8 +1298 739 1 +1298 142 .8 +1298 648 1 +1298 86 .8 +1298 656 .8 +1298 1085 .6 +1298 46 1 +1298 736 1 +1298 1628 .8 +1298 97 .8 +1298 801 .8 +1298 738 .8 +1298 701 .8 +1298 789 .8 +1298 1692 .8 +1298 1727 .8 +1298 837 .8 +1298 855 1 +1298 2213 .8 +2366 2267 .8 +2366 2899 .6 +2366 148 .8 +2366 4576 .8 +2366 157 .8 +2366 3285 1 +3489 46 1 +3489 3489 .6 +3489 1961 .8 +6200 6200 .6 +4273 4273 .8 +6201 6201 .6 +6202 6202 .6 +6203 6203 .6 +1961 351 .8 +1961 352 1 +1961 303 1 +1961 3006 1 +1961 1961 .8 +1961 5680 .6 +1961 4148 1 +1961 241 .6 +1961 3009 .6 +1961 3786 .8 +1961 4146 .8 +1961 2076 1 +6204 6204 .6 +6204 1408 .6 +3519 514 .8 +3519 3519 .8 +3519 3564 .6 +3519 157 .8 +3519 242 .8 +4443 606 .8 +6205 6205 .6 +2884 2884 .6 +2884 1597 .8 +2884 30 1 +2884 349 .8 +2884 584 .8 +2884 1663 .8 +2884 736 .8 +6206 6206 .8 +6207 6207 .6 +6208 6208 .6 +6208 1416 1 +6208 799 .8 +6208 2251 1 +6208 719 1 +6208 546 1 +6209 6209 .6 +6210 6210 .6 +6211 6211 .6 +6212 6212 .6 +3121 362 1 +3121 39 .8 +3121 3121 .8 +6213 6213 1 +6213 6214 1 +6215 6215 .6 +6216 6216 .8 +615 584 1 +615 46 1 +615 1290 .8 +615 30 1 +615 1754 1 +2454 2455 .6 +2454 2456 .8 +2454 2289 .8 +2454 1218 .8 +2454 105 .8 +2454 1127 .8 +2844 2844 .6 +6217 6217 .6 +4205 4205 1 +4205 1223 .8 +2334 737 .8 +2334 349 1 +2334 964 .6 +2334 4660 .6 +4140 4140 .6 +6112 6112 1 +6112 739 1 +6112 121 1 +6112 4394 1 +6112 506 1 +6112 425 1 +6112 445 1 +6112 855 1 +6112 46 1 +6112 856 1 +6112 714 1 +6112 736 1 +6112 175 1 +6112 1893 .8 +6112 431 1 +6112 2239 1 +6112 3053 .6 +6112 3055 .8 +6112 3054 .6 +6112 209 .8 +549 1548 1 +549 549 .8 +549 46 1 +549 5 1 +549 438 .8 +549 1116 1 +549 1471 1 +549 353 1 +549 886 .8 +182 182 .8 +182 1653 .8 +182 2109 .8 +182 2849 .8 +182 183 .6 +182 1965 .6 +182 91 .8 +182 22 1 +182 424 1 +182 2850 .8 +182 4510 .8 +182 2111 .8 +182 426 1 +182 1124 .6 +182 112 .6 +182 427 1 +182 46 1 +182 2108 .8 +182 1047 .8 +182 3812 .8 +182 233 .8 +182 2107 .8 +182 1223 .8 +182 157 .8 +182 461 .8 +182 328 1 +182 30 1 +182 719 1 +182 2106 .8 +182 2112 .8 +182 1056 .8 +182 2105 .8 +182 181 .8 +182 2110 .8 +182 2848 .8 +182 180 .8 +182 89 .6 +6218 6218 .6 +6219 683 .6 +2747 1406 .8 +2747 1407 .8 +2747 3085 .8 +2747 2141 .8 +2747 1000 .8 +2747 2749 .8 +2747 1310 .8 +2747 2965 .8 +2747 2593 .8 +2747 86 .8 +2747 3130 .6 +2747 681 .8 +2747 739 1 +2747 855 1 +2747 837 .8 +2747 2747 .8 +2747 1694 .8 +2747 740 .8 +2747 1516 .8 +2747 3240 .8 +2747 438 .8 +2747 142 1 +2747 834 .8 +2747 2750 .8 +2747 3186 .8 +2747 84 .8 +2747 2629 .8 +2747 792 1 +2747 5884 .8 +2747 91 .8 +2747 2739 .8 +2747 802 1 +2747 53 .8 +2747 716 .8 +2747 2744 .8 +2747 736 1 +2747 1693 .8 +2747 3491 .8 +2747 963 .8 +2747 863 .8 +2747 789 1 +2747 2961 .8 +2747 492 1 +6220 6220 .6 +5971 3068 .8 +3784 3784 .6 +3784 1105 .8 +3784 116 .8 +3784 1107 .8 +6221 6221 .6 +6221 5389 1 +1813 1813 .6 +1813 326 1 +1813 2102 .8 +1813 1804 .8 +1813 1313 .8 +1813 46 1 +1813 429 1 +1813 329 1 +1813 30 1 +1813 1518 .8 +1813 1104 .6 +1813 306 .8 +1813 1025 .8 +1813 512 .8 +1813 456 .8 +1813 578 .8 +1813 248 .6 +1813 1839 .6 +1813 1819 .8 +1813 996 .8 +1813 467 .8 +1813 717 1 +1813 353 1 +1813 431 1 +1813 432 1 +1813 44 1 +1813 428 1 +1813 2296 .6 +1813 65 1 +2229 2229 .8 +2229 46 1 +2229 429 1 +2229 6222 1 +2229 3469 1 +1189 244 .6 +1189 245 .6 +1189 2501 .8 +1189 6223 1 +1189 659 1 +1189 46 1 +1189 1430 1 +1189 652 1 +1189 562 1 +1189 696 1 +1189 2457 1 +1189 714 1 +1189 5 1 +1189 457 .8 +1189 1459 1 +1189 1212 1 +1189 110 .8 +1189 746 1 +1189 3644 .6 +1189 647 1 +1189 30 1 +1189 747 1 +1189 427 1 +1189 2607 .8 +1189 1123 1 +1189 1753 1 +1189 290 1 +1189 2461 .8 +1189 1479 1 +1189 1020 1 +1189 137 1 +1189 175 1 +1189 3137 1 +1189 764 1 +1189 1213 1 +1189 2453 1 +1189 126 1 +1189 101 1 +1189 2454 .8 +1189 555 1 +1189 286 1 +1189 282 1 +1189 1186 .6 +1189 297 .8 +1189 70 .6 +1189 3035 .6 +1189 246 .6 +1189 1339 .8 +1189 2343 .8 +1189 751 .8 +1189 113 .8 +1189 512 .8 +1189 597 .8 +1189 695 1 +1189 172 1 +1189 854 .8 +1189 669 .8 +4980 797 .8 +4980 2878 .8 +4980 30 1 +4980 829 .8 +4980 1918 .8 +5446 126 1 +5446 1182 .8 +5446 1254 .8 +883 209 .8 +883 46 1 +883 22 1 +883 880 .8 +883 1211 .8 +883 784 .8 +883 1411 .6 +883 1031 .8 +6224 6224 .6 +344 797 .8 +344 323 1 +344 1401 1 +344 174 .8 +344 1860 .8 +344 1075 1 +344 4067 .8 +344 1117 1 +344 324 1 +344 345 1 +344 328 1 +344 1753 1 +344 327 .8 +344 3231 .8 +344 595 .6 +344 2346 .6 +344 326 1 +344 623 .6 +344 466 .8 +344 934 1 +6225 3314 .8 +6226 6226 .8 +6226 2296 .8 +6226 46 1 +6227 6227 1 +142 142 .8 +142 648 1 +142 792 .8 +142 789 .8 +142 736 1 +142 584 1 +142 739 1 +142 1635 .8 +142 801 .8 +142 738 1 +142 1309 .8 +142 1690 .8 +142 574 .8 +142 467 .8 +142 1663 .8 +142 1308 .6 +142 701 .8 +142 1307 .8 +142 741 .8 +142 84 .8 +142 740 .8 +142 1053 .8 +142 2249 .8 +142 833 .8 +142 3541 .8 +142 1627 .8 +142 1176 1 +142 2376 .6 +142 2132 .8 +142 835 .8 +142 1644 .6 +142 1692 .8 +142 1454 1 +142 1012 .8 +6228 6228 .6 +6229 6229 .6 +6230 6230 1 +4029 3414 .6 +4029 3288 .6 +4029 924 .8 +4029 5062 .6 +4029 1774 .6 +6231 6231 .6 +6232 427 1 +4200 4200 .6 +4200 1126 .8 +4200 81 .6 +4200 4201 .8 +4200 883 .8 +4200 65 1 +4200 784 1 +374 374 .6 +374 438 1 +374 12 .8 +374 3574 .8 +374 2967 1 +374 582 1 +374 3566 .8 +374 923 .8 +374 2350 .6 +374 2831 .6 +374 329 1 +374 1963 .6 +374 282 1 +374 261 .8 +374 3403 .8 +374 3503 .6 +374 214 .8 +374 399 .8 +374 1160 1 +374 328 1 +374 335 .8 +374 625 .6 +374 584 1 +374 3807 1 +374 622 .6 +374 15 .8 +374 2865 1 +6233 6233 1 +928 2877 .8 +928 643 1 +928 1505 .8 +928 2164 .8 +928 297 1 +928 342 .6 +928 223 .6 +928 3122 .8 +928 3284 .6 +928 356 .6 +928 1021 .8 +928 495 .6 +928 751 .8 +928 1585 .6 +928 2381 .6 +928 858 1 +928 987 .6 +928 599 .6 +928 2523 .6 +928 1998 .6 +928 613 .6 +928 983 1 +928 1841 .8 +928 2295 .8 +928 919 .6 +928 3032 .6 +928 3283 .6 +928 5979 .8 +928 5307 .8 +928 1610 .6 +928 497 .8 +928 98 .8 +928 165 1 +928 6234 .8 +928 802 1 +928 22 1 +928 46 1 +928 328 1 +928 1494 .8 +928 1970 .6 +928 577 1 +928 2793 .6 +928 3468 .6 +928 1826 .8 +6235 4207 1 +6235 1153 1 +4746 208 .8 +4746 3117 .8 +4746 2789 .8 +6236 6236 1 +2550 2550 .8 +2550 194 .8 +2550 274 .8 +2550 655 .8 +2550 624 .8 +2550 312 .8 +2550 1450 .8 +2550 914 .8 +2550 627 1 +2550 193 1 +2550 1768 1 +2550 1524 1 +6040 6040 .8 +6040 353 1 +6040 2002 .8 +6040 3408 .8 +6040 2549 .6 +6040 4663 .8 +6040 5108 .8 +6040 2548 .8 +4644 441 1 +4644 1783 .8 +3436 1043 .6 +6237 310 1 +6237 2331 1 +6238 6238 .6 +6238 2839 .6 +6238 2403 .6 +127 2468 .8 +127 125 1 +1751 438 .8 +1751 1751 .6 +1751 1028 .8 +1751 457 .8 +1751 1435 .8 +1751 4492 .6 +1751 887 .8 +1751 1018 .8 +1751 110 .8 +1751 1750 .8 +1751 1536 .8 +1751 2660 .8 +1751 234 .6 +1751 2602 .8 +1751 1757 .8 +1751 2606 .8 +1751 2604 .6 +1751 471 .6 +6239 6239 1 +522 1957 1 +522 126 1 +522 644 .8 +522 1020 1 +522 1580 .8 +522 209 .8 +522 438 .8 +522 648 1 +522 855 1 +522 739 1 +522 789 .8 +522 825 .8 +522 1181 .8 +522 826 1 +522 3192 .8 +522 827 1 +522 695 1 +522 854 .8 +522 1592 .8 +522 802 .8 +522 792 1 +522 780 .8 +522 824 .6 +522 1278 1 +522 2182 .8 +522 801 .8 +522 211 1 +522 3389 .8 +522 584 .8 +522 431 1 +522 3384 1 +522 3328 .8 +522 786 .8 +522 2239 1 +522 318 1 +522 1286 1 +522 758 .8 +522 835 1 +522 2629 .8 +522 1301 .6 +522 1167 .8 +522 90 .8 +522 84 .8 +522 681 .8 +522 65 1 +522 712 .8 +522 5083 .6 +522 536 .8 +522 1454 1 +522 142 .8 +522 791 1 +522 346 1 +522 813 1 +522 3102 .8 +522 349 1 +522 162 .8 +522 2632 .6 +522 624 .8 +522 4583 .8 +522 815 .8 +522 1384 .6 +522 1968 .8 +522 588 .8 +522 53 .8 +522 1391 .8 +522 2482 1 +522 1418 .8 +522 1293 .8 +522 1243 .8 +522 5325 .8 +113 93 .6 +113 764 1 +113 119 1 +113 352 1 +113 714 1 +113 151 .8 +113 1641 .8 +113 784 .8 +113 4067 .8 +113 887 .8 +113 290 1 +113 736 .8 +113 105 .8 +113 1339 .8 +113 587 .8 +113 2488 .6 +113 4395 .8 +113 4236 .8 +113 648 1 +113 1920 .6 +113 492 .6 +113 175 .8 +113 292 1 +113 1812 .8 +113 45 1 +113 1189 .8 +113 760 .6 +113 1135 .8 +113 1112 .6 +113 4539 .8 +113 4599 1 +113 580 .8 +113 1643 .8 +113 746 1 +113 107 .6 +113 261 .6 +113 3088 .6 +113 318 .8 +113 111 .8 +113 802 1 +113 919 .8 +113 6015 .8 +113 240 .6 +113 3319 .6 +113 98 .6 +113 1201 .8 +113 3316 .8 +113 1880 .6 +113 233 1 +5073 2277 .8 +5073 3805 .8 +5060 634 .8 +5060 329 1 +6240 6240 .6 +1759 324 .8 +1759 792 .8 +1759 323 .8 +1759 1546 .8 +1759 385 .8 +1759 737 1 +1759 1246 .8 +4511 4511 1 +4511 22 1 +4511 5368 1 +864 864 .8 +864 5321 .8 +864 57 .8 +3635 3635 .8 +3635 328 1 +3635 1183 .8 +3635 2716 .8 +3635 776 1 +3635 1394 .8 +3635 286 1 +3635 46 1 +3635 126 1 +3635 30 1 +3635 1153 .8 +2054 2054 .6 +6241 6241 .6 +197 46 1 +197 198 .6 +197 196 .8 +197 506 1 +197 1024 .8 +197 199 .6 +197 172 1 +197 1452 .8 +197 4344 .6 +197 1078 .8 +197 112 .8 +197 584 .8 +197 195 .6 +197 200 .8 +197 286 1 +197 353 1 +197 305 1 +197 204 .6 +197 203 .6 +197 205 .6 +197 586 .6 +197 191 .8 +197 245 .6 +197 258 .6 +197 201 .6 +197 613 .6 +6242 6242 .8 +6242 46 1 +6242 6243 .6 +3381 916 .8 +3381 46 1 +43 43 1 +43 1548 1 +43 40 .8 +43 329 1 +43 1907 1 +43 1906 1 +43 440 1 +43 431 1 +43 126 .8 +43 1908 1 +43 802 1 +43 441 1 +43 2093 1 +43 1732 1 +43 3013 1 +43 3225 1 +43 1489 .8 +43 413 .6 +43 1799 .8 +43 1733 .6 +2671 282 1 +2671 1768 1 +2671 332 1 +2671 1451 .8 +2671 2470 .8 +2671 1223 .8 +2671 66 .6 +2671 919 .6 +2671 625 .8 +2671 157 .6 +2671 328 1 +2671 334 .6 +2671 675 .6 +2671 469 .8 +2671 7 .6 +2671 2282 .8 +2671 583 .8 +2671 336 1 +2671 189 .6 +2671 751 .8 +2671 830 .8 +2671 4597 .8 +2671 3519 .8 +2671 3986 .6 +2671 3427 .6 +2671 610 .6 +2671 1399 .8 +2671 634 .6 +2671 597 .6 +2671 3911 .8 +2671 1963 .8 +2671 238 .8 +2671 2373 .8 +2671 960 .8 +2671 1377 .8 +2671 187 .8 +2671 1242 .6 +2671 2940 .8 +2671 1369 .8 +2671 3545 .8 +2671 4333 .8 +2671 1153 .8 +2671 1373 .8 +2671 1370 .8 +2671 1416 .6 +2671 62 1 +2671 261 .8 +2671 773 1 +2671 1366 .6 +2671 2134 .6 +2671 1301 .8 +2671 897 .8 +2671 3321 .8 +2671 577 .8 +6244 6244 1 +361 735 1 +361 1403 .6 +361 46 1 +361 1580 .8 +361 438 .8 +361 1993 1 +361 30 1 +361 719 1 +6245 1852 1 +6245 2463 .8 +6245 1607 .8 +6245 1005 .6 +6245 191 1 +6245 2126 .8 +6245 5502 .8 +6245 1314 1 +6245 5049 .6 +6246 6246 .6 +3173 3173 .6 +3173 994 .6 +1073 1616 .8 +1073 735 .8 +1073 466 .8 +1073 1917 .8 +1073 3116 .6 +1073 1072 .8 +1073 1020 1 +1073 324 .8 +1073 1079 .8 +1073 30 1 +1073 797 .8 +1073 1434 .8 +1073 323 .8 +1073 882 .8 +1073 511 .8 +1073 1401 .8 +1073 2401 .8 +1073 1860 .6 +1073 46 1 +1073 1075 .8 +1073 328 1 +1073 1074 .8 +1073 1133 .8 +1073 934 .8 +1073 1476 .8 +1073 1356 .8 +1073 304 .8 +1073 947 .8 +1073 306 .8 +1073 351 .8 +1073 829 .8 +1073 1720 .8 +1073 645 .8 +1073 1495 .8 +1073 172 1 +1073 1754 1 +1073 1993 .8 +1073 1117 1 +1073 719 1 +1073 1076 .6 +1073 126 1 +1073 438 .8 +1073 598 .8 +1073 349 1 +4119 126 1 +4119 1957 1 +4119 1187 .8 +4119 6247 .6 +4119 4119 .6 +4119 208 .8 +4119 1704 .8 +4119 3761 .8 +4119 593 .8 +6248 6248 .8 +6249 2366 .8 +6249 2267 .8 +6249 126 1 +6249 788 .8 +1187 1187 .6 +1187 584 .8 +1187 207 1 +1187 861 1 +2784 2784 .8 +2784 1816 1 +2784 431 1 +2784 708 1 +2784 922 .8 +2784 429 1 +2489 497 .6 +2489 710 1 +2489 438 .8 +2489 316 1 +2489 1720 1 +2489 2078 .8 +2489 286 1 +6250 6250 1 +5095 584 1 +6251 6251 .6 +6252 674 .8 +6252 14 .8 +6252 2831 .6 +6252 1552 .8 +6252 2503 .8 +6252 2984 .6 +6252 3629 .6 +6252 1240 .8 +6253 6253 .6 +2078 1447 .8 +2078 209 1 +2078 303 1 +2078 46 1 +2078 1719 .8 +2078 438 .8 +2078 738 .8 +2078 30 1 +2078 719 1 +2078 439 .8 +2078 435 1 +2078 1894 1 +2078 2210 1 +2078 1996 1 +2078 1022 1 +2078 1720 1 +2078 352 1 +2078 1133 .8 +2078 326 1 +2078 95 .8 +2078 318 .8 +2078 1086 .8 +2078 437 1 +2078 577 .8 +2078 431 1 +2078 1160 .8 +2078 320 .8 +2078 1892 1 +2078 907 1 +2078 2078 1 +2078 316 1 +2078 436 1 +2078 5794 .8 +2078 441 1 +2078 1477 .6 +2078 432 .8 +2078 4191 .8 +2078 286 1 +2078 2077 .8 +2078 3372 .8 +2078 2068 .8 +2078 304 .8 +2078 555 1 +2078 538 .8 +2467 2467 .8 +2467 400 1 +2467 405 1 +2467 1711 1 +2467 43 1 +2467 1548 1 +451 449 .8 +1436 719 1 +1436 1436 .6 +1436 797 .8 +1436 118 1 +1436 735 .8 +1436 46 1 +1436 1075 1 +1436 1002 .8 +1436 346 1 +1436 830 1 +1436 1293 .8 +6254 6254 .6 +6255 6255 .6 +1638 327 .8 +1638 4882 .8 +1638 46 1 +2468 109 .8 +2468 3420 .6 +2468 3547 .6 +2468 540 1 +2468 3546 .8 +2468 1940 .6 +6256 6256 .6 +2673 3797 .8 +2673 328 1 +3614 642 .8 +3614 3614 .6 +6257 6257 .6 +1730 1730 .6 +1730 323 1 +1730 316 1 +1730 658 .8 +1730 93 .6 +1730 6258 .6 +1730 1729 .8 +771 771 .6 +771 597 .8 +6259 1649 .8 +6260 6260 .8 +5185 3417 .8 +5185 23 .6 +2571 2571 .6 +2571 555 .8 +2571 46 1 +2571 286 .8 +2571 658 .6 +2571 92 .8 +2571 2237 .6 +2571 651 .8 +2571 1081 .6 +2571 2941 .6 +2571 587 .8 +2571 1692 .8 +2571 5852 .6 +2571 329 1 +2571 760 .6 +2571 738 .8 +2571 2538 .8 +2571 1028 .8 +2571 45 .8 +2571 1496 .8 +2571 1488 .6 +2571 1027 .8 +2652 2652 .8 +2652 46 1 +2652 438 .6 +2652 738 .8 +2652 1447 .8 +2652 30 1 +2652 642 1 +2652 1022 .8 +2652 1720 .8 +2652 352 1 +1832 1832 .6 +1832 919 .8 +1832 89 .6 +1832 214 .6 +1832 1830 .8 +1832 157 .8 +1832 1831 .6 +1832 1833 .6 +1832 532 .8 +1593 1593 .6 +1593 1234 .8 +3252 3252 .8 +3252 194 1 +3252 167 .8 +3252 165 .8 +6261 2838 .6 +461 461 1 +461 1899 .8 +461 1521 .6 +461 890 .8 +461 1154 1 +461 166 .6 +461 3087 .6 +461 399 .6 +461 680 .8 +461 3409 .8 +461 1653 .8 +461 2108 .8 +461 188 .6 +461 233 1 +461 182 1 +461 80 1 +461 53 1 +461 1223 1 +461 1181 1 +461 1052 1 +461 4189 1 +461 1378 .8 +461 646 1 +461 2034 1 +461 463 .8 +461 1743 .8 +461 2243 .8 +461 3073 1 +461 67 .8 +461 57 1 +461 337 1 +461 232 .8 +461 181 1 +461 610 .6 +461 1277 .6 +461 1178 1 +461 683 1 +461 3090 .6 +461 1160 1 +461 1881 .6 +461 1190 .6 +461 1592 1 +461 1316 1 +461 1319 1 +461 815 .8 +461 1656 .6 +461 50 .6 +461 1545 .6 +461 3416 .8 +461 773 .6 +461 804 .6 +461 1142 .8 +461 2964 .8 +461 1246 .6 +461 1975 .6 +461 460 .6 +461 862 .8 +461 1415 .8 +461 62 1 +2536 326 1 +2536 466 1 +2536 2247 1 +2536 325 1 +2536 323 1 +2536 5503 1 +2536 1661 1 +2536 529 1 +2536 1021 1 +2536 306 1 +2536 2304 1 +2536 1401 1 +2536 2094 1 +2536 543 1 +2536 2401 1 +2536 1075 1 +2536 324 1 +2536 345 1 +2536 1117 1 +2536 719 1 +2536 6262 .8 +2536 523 1 +2536 3049 .8 +2536 791 .8 +1688 751 .8 +1688 6263 .8 +1688 45 1 +4939 4939 .6 +6264 6264 .8 +6265 6265 1 +6266 2023 1 +6266 2192 1 +6267 6267 .6 +6268 3281 1 +6269 6269 .6 +4979 286 1 +4979 126 1 +4979 248 .8 +4979 4979 .6 +6021 2522 .8 +6021 46 1 +6021 439 1 +3250 295 .8 +3250 3250 .6 +6270 6270 .6 +6271 6271 1 +6272 6272 1 +1293 1293 .8 +1293 1292 .8 +1293 4612 1 +878 328 1 +878 719 1 +878 30 1 +878 1079 .8 +878 326 1 +878 323 .8 +878 858 1 +878 882 .8 +878 880 .8 +878 79 .8 +878 1401 .8 +878 659 1 +878 743 1 +878 1075 .8 +878 438 .6 +878 305 1 +878 440 1 +878 746 1 +878 22 1 +878 1583 1 +878 1799 1 +878 3017 .8 +878 784 .8 +878 286 1 +878 466 .8 +878 878 .8 +878 881 .8 +6273 6273 .6 +6274 6274 .8 +6275 6275 .8 +1316 1316 .8 +1316 242 1 +1316 4405 1 +1316 2214 1 +1316 430 1 +1316 4527 1 +1316 3892 1 +1316 34 .8 +1316 4406 1 +1316 1319 1 +1316 683 .8 +1316 1613 .8 +1316 1745 .8 +1316 984 .8 +1316 3850 1 +1316 1816 1 +1316 802 1 +1316 646 1 +1316 1156 .8 +1316 2215 .8 +1316 3340 .6 +1316 173 1 +1316 377 1 +1316 1788 .6 +1316 3370 .8 +1316 1058 .8 +944 613 .8 +944 1373 .8 +944 2142 .6 +944 3820 .6 +944 2635 .8 +944 4601 .8 +944 157 .8 +944 5603 .8 +944 1258 .8 +944 1254 .8 +944 2664 .8 +944 129 .8 +944 3799 .8 +944 5527 .6 +1217 1223 .8 +1217 1217 1 +1217 1022 1 +1217 513 .6 +1217 597 .8 +1217 518 .8 +1217 46 1 +1217 1201 .8 +1217 328 1 +1217 30 1 +1217 352 1 +1217 1123 1 +1217 3316 .8 +1217 104 .8 +1217 1378 .8 +1217 45 1 +1217 1021 .8 +1217 605 .8 +1217 232 .8 +1217 62 .8 +1217 946 1 +1217 1154 .8 +1217 449 .8 +5884 5884 .6 +5884 2747 .8 +5884 2750 .8 +5884 681 .8 +3072 3072 .8 +3072 2721 .8 +3072 2722 1 +3072 1520 .8 +3072 424 1 +3072 22 1 +3072 425 1 +3072 3071 1 +3072 118 1 +6276 6276 .8 +6276 1229 1 +2729 1449 .8 +6277 6277 .6 +6277 2196 .8 +2100 2100 .8 +2100 3124 .6 +2100 1569 .6 +2100 1778 .6 +2100 612 1 +2100 1156 1 +2100 148 1 +2100 2625 .8 +2100 1912 .8 +2100 375 1 +2100 1579 1 +2100 283 1 +2100 1969 .6 +2100 3670 .6 +2100 1562 1 +2100 3024 .8 +2100 277 1 +2100 296 .6 +2100 271 1 +2100 2799 .8 +2100 1089 .8 +2100 2517 .8 +2100 800 .8 +2100 2797 .8 +2100 399 .8 +2100 2269 .6 +2100 3127 .8 +2100 1626 .6 +2100 1473 .8 +2100 2267 1 +2100 1795 .8 +2210 209 .8 +2210 352 1 +2210 318 .8 +2210 46 1 +2210 30 1 +2210 438 .6 +2210 1720 .8 +2210 1160 .6 +2210 738 .8 +2210 1022 .8 +2210 95 .8 +2210 431 .8 +2210 1894 .8 +2210 443 .8 +2210 1086 .8 +2210 435 .8 +2210 2210 .8 +2210 1081 .6 +2210 1288 .8 +2210 1447 .8 +2210 439 .6 +2210 2078 .8 +2210 1996 .8 +2210 437 1 +2210 5236 .6 +2210 6278 .8 +2210 316 .8 +2210 436 1 +2210 440 1 +2210 1892 .8 +2210 93 .6 +2210 434 .8 +2210 907 .6 +2210 441 .8 +2210 2553 .6 +2210 4066 .6 +2210 908 .8 +2210 1583 1 +2210 286 1 +2210 1116 1 +2210 506 1 +2210 353 1 +2943 172 1 +2943 2320 .8 +2943 555 1 +2231 441 1 +2231 639 1 +2231 431 1 +2231 318 1 +2231 373 1 +2231 1770 1 +2231 2231 1 +2231 1910 1 +2231 429 1 +2231 1160 1 +2231 584 .8 +2231 2703 .8 +2231 1022 .8 +1067 1067 .8 +1067 157 .8 +777 777 .8 +777 5923 .8 +777 1277 .8 +777 126 1 +777 2232 1 +777 1378 .8 +777 1394 .8 +777 711 1 +777 3423 .6 +777 3427 .8 +777 2125 .8 +777 2774 1 +777 3288 .8 +777 2126 .8 +777 1384 .8 +777 708 .8 +777 775 .8 +777 173 1 +777 1020 1 +777 1174 .6 +777 2782 .8 +777 3425 .6 +777 768 .6 +777 3436 .6 +777 1331 .6 +777 6279 .6 +777 6043 .6 +777 714 1 +777 1890 .6 +1378 62 .8 +1378 1420 .8 +1378 6280 .8 +1378 2740 .8 +1378 2265 .6 +1378 188 .6 +1378 4612 .6 +1378 37 .6 +1378 186 .6 +1378 6281 .6 +1378 187 1 +1378 2085 .8 +1378 6282 .6 +1378 6283 .6 +1378 214 1 +1378 6284 .8 +1378 5244 1 +1378 276 .8 +1378 6285 .6 +1378 708 1 +1378 4060 .8 +1378 2177 .6 +1378 3259 .8 +1378 5876 .6 +1378 4130 .8 +1378 457 1 +1378 162 1 +1378 3795 .8 +1378 4565 .6 +1378 819 1 +1378 2083 .6 +1378 2149 .8 +1378 516 .8 +1378 6286 .6 +1378 638 1 +1378 80 .8 +1378 167 .8 +1378 6287 .8 +1378 4171 .8 +1378 4953 .8 +1378 1160 .8 +1378 1860 .6 +1378 604 .8 +1378 627 .8 +1378 1178 .8 +1378 1826 .8 +1378 6288 .8 +1378 858 1 +1378 3766 .6 +1378 231 .8 +1378 5040 .6 +1378 82 .8 +1378 1319 .8 +1378 2969 1 +1378 258 1 +1378 1494 .6 +1378 65 1 +1378 807 .8 +1378 1373 .8 +1378 768 .8 +1378 1642 .8 +1378 613 1 +1378 919 .8 +1378 946 .6 +1378 441 1 +1378 683 .8 +1378 232 1 +1378 6289 .6 +1378 124 .6 +1378 885 .6 +1378 3032 .8 +1378 2296 .8 +1378 1673 .8 +1378 598 .8 +1378 2162 .6 +1378 1611 .6 +1378 261 1 +1378 461 .8 +1378 1965 .8 +1378 1377 .8 +1378 2245 .8 +1378 4635 .8 +1378 2940 .8 +1378 1858 .8 +1378 413 .6 +1378 336 .8 +1378 2953 .8 +1378 4714 .8 +1378 4261 .6 +1378 45 .6 +1378 104 .8 +1378 836 .8 +1378 2034 .6 +1378 2240 .6 +1378 1145 .8 +1378 40 .8 +1378 2705 .8 +1378 6290 .6 +1378 1971 .6 +1378 4958 .6 +1378 274 .8 +1378 125 1 +1378 809 .8 +1378 1874 .8 +1378 6291 .6 +1378 1360 1 +1378 1387 .6 +1378 5069 .6 +1378 2934 .6 +1378 1485 .8 +1378 3510 .6 +1378 93 .8 +1378 1182 .8 +1378 6292 .8 +1378 965 .8 +1378 5824 .6 +1378 1369 .8 +1378 1667 .8 +1378 1254 .8 +1378 1651 .6 +1378 6293 .6 +1378 2673 .8 +1378 6294 .8 +1378 5604 .6 +1378 5393 .8 +1378 2664 .8 +1378 3258 .6 +1378 5054 .8 +1378 1623 .8 +1378 1263 .6 +1378 6295 .8 +1378 1289 .8 +1378 5021 .8 +1378 2710 .6 +1378 778 1 +1378 439 .8 +1378 5973 .6 +1378 430 .8 +1378 788 .8 +1378 1031 1 +1378 1057 .8 +1378 577 .8 +1378 2286 .8 +1378 1268 .6 +1378 1261 .8 +1378 5643 .8 +1378 4616 1 +1378 4615 .8 +1378 629 .8 +1378 2298 .8 +1378 234 .8 +1378 110 .8 +1378 2793 .8 +1378 3424 .8 +1378 5698 .8 +1378 197 .8 +1378 297 .8 +1378 1246 .8 +1378 275 .8 +1378 4237 1 +1378 3629 1 +1378 934 1 +1378 2690 .6 +1378 2672 .8 +6296 6296 1 +6297 6297 .6 +4395 4395 .6 +4395 238 .6 +4395 4236 .6 +4395 113 .8 +4395 3338 .6 +4395 290 1 +4395 747 1 +4395 137 1 +6298 6298 .6 +6299 6299 1 +1018 92 .8 +1018 801 .8 +1018 104 .8 +1018 1751 .8 +1018 652 1 +547 547 .6 +547 438 .6 +547 523 .8 +547 525 .8 +547 2512 .8 +547 1993 1 +547 577 1 +547 1495 1 +547 4581 .8 +3776 1847 .8 +3776 577 1 +3776 348 1 +3776 642 1 +3776 710 1 +3776 310 .8 +3776 3776 .8 +3776 858 1 +3776 2355 .8 +6300 885 .8 +6300 894 .8 +6300 3716 .8 +6300 891 .8 +6301 6301 .8 +6302 6302 1 +1833 1833 .8 +1833 1830 .8 +1833 1832 .6 +1833 2222 .8 +2457 1222 .8 +2457 1499 .8 +2457 377 .6 +2457 137 1 +2457 110 .8 +2457 1479 .8 +2457 2454 .8 +2457 747 1 +2457 1127 .8 +2457 290 1 +2457 105 .8 +2457 2453 .8 +2457 659 1 +2457 2456 .8 +2457 1604 .6 +2457 2459 .8 +2457 748 1 +2457 2461 .8 +2457 2289 .8 +2457 1205 .6 +2457 1210 .8 +2457 746 1 +2457 2278 .8 +2457 2455 .6 +2457 22 1 +2457 426 1 +2457 424 1 +2457 112 1 +2457 1214 .8 +2457 2378 .8 +2457 749 1 +2457 1605 .8 +2457 1219 .8 +2457 79 .8 +2457 2460 .8 +2457 647 1 +2457 13 .8 +2457 3216 .6 +2457 3147 .6 +2457 2458 .8 +6303 6303 .6 +6303 148 1 +2271 171 1 +2271 172 1 +2271 1314 .8 +2271 2271 .6 +2271 350 1 +2271 933 .6 +2271 934 1 +2271 1019 .8 +2271 525 .8 +2271 827 1 +598 1211 .8 +598 1122 1 +598 2332 .8 +598 1126 1 +598 273 1 +598 282 1 +598 297 .8 +598 424 1 +598 764 1 +598 641 .8 +598 1603 1 +598 845 .8 +598 2521 1 +598 1453 .8 +598 3807 .8 +598 4697 1 +598 770 1 +598 2823 1 +598 1171 1 +598 3770 1 +598 2420 1 +598 3204 1 +598 1723 1 +598 1230 1 +598 1123 1 +598 562 1 +598 640 1 +598 2845 .8 +598 2861 .8 +598 1068 1 +598 801 .8 +598 4664 .6 +598 2949 1 +598 274 .8 +598 5556 .8 +598 1134 1 +598 5002 .8 +598 362 .8 +598 593 .8 +598 539 .8 +598 63 .8 +598 1042 .6 +598 1533 1 +598 541 1 +598 1560 1 +598 1337 1 +598 2457 .8 +598 1924 1 +598 1909 .8 +598 290 1 +598 2785 .6 +598 588 .8 +6304 286 1 +6304 324 1 +6304 52 .8 +6305 6305 .6 +6306 6306 .8 +6307 6307 .8 +6307 4539 .6 +6222 643 1 +6222 2229 1 +6222 46 1 +6222 429 1 +6308 6308 .6 +1757 2602 .8 +1757 5431 .6 +1757 1751 .6 +1757 126 1 +1757 2619 .8 +1757 2603 .8 +1757 2606 .8 +1757 2604 .6 +1757 780 1 +1757 3466 1 +6309 6309 .6 +6310 30 1 +548 438 .8 +548 548 .6 +548 329 1 +548 34 .8 +548 316 1 +548 46 1 +548 467 .8 +548 525 .8 +548 736 1 +548 2745 .6 +548 1697 .8 +548 103 .8 +548 503 .6 +548 207 .8 +548 362 .8 +548 2950 .6 +548 157 .8 +548 261 .8 +548 4887 .6 +548 751 1 +548 757 .6 +548 1427 .8 +548 373 .8 +548 919 .8 +548 18 .8 +548 3105 .8 +548 4189 .6 +548 2539 .6 +548 4218 .8 +548 2685 .6 +6311 6311 .6 +6312 4691 .6 +6313 6313 1 +6314 6315 1 +6316 3384 1 +3001 193 1 +3001 5153 .8 +3001 5004 .8 +3001 3001 .8 +3001 2790 .6 +6317 6317 1 +1631 1631 1 +1631 624 1 +1631 1524 1 +1631 2246 1 +1631 30 1 +1631 349 1 +1631 807 1 +1631 577 1 +1631 1643 1 +1631 297 1 +1631 1517 1 +1631 2551 1 +1631 1356 .8 +6318 6318 1 +6319 6319 .6 +5221 5221 .6 +6320 6320 .6 +986 986 .6 +986 764 1 +986 30 1 +986 46 1 +986 719 1 +986 1075 1 +986 121 1 +986 328 1 +986 584 1 +986 438 .8 +986 1839 .8 +986 892 .8 +986 2828 .6 +986 1356 .8 +986 807 1 +986 1616 1 +986 1437 1 +986 468 .8 +986 291 .6 +2240 2240 .8 +1843 1841 .8 +411 411 1 +6321 6321 .6 +6321 286 1 +6321 2312 .8 +6321 1135 .8 +6321 1637 .6 +2741 2741 .6 +2741 708 .6 +2741 6322 .6 +2741 349 1 +2741 30 1 +2741 46 1 +2741 151 1 +2741 555 1 +2741 714 1 +2741 233 1 +2741 2556 .8 +2741 5930 .8 +2741 3531 .8 +2741 2939 .8 +2741 20 .8 +2397 2397 1 +2397 30 1 +2397 1493 .6 +187 187 .6 +187 238 .8 +187 121 1 +187 6323 .8 +187 104 .8 +187 92 1 +187 651 .8 +187 998 .8 +187 1485 .8 +6324 6324 1 +1248 1248 .8 +1248 1247 1 +1248 1092 1 +1248 1116 1 +1248 1065 .8 +1248 719 1 +1248 328 1 +1248 46 1 +1248 2538 1 +1248 1511 .8 +1248 1454 .8 +1248 157 .8 +1248 1629 .8 +1248 576 1 +1248 1779 .8 +1248 813 1 +1248 634 .8 +1248 801 .8 +1248 467 .8 +1248 644 .8 +1248 1775 .8 +1248 1586 .8 +1248 417 .8 +1248 1182 .6 +1248 3415 .6 +1248 1163 .6 +1248 2439 .6 +1248 1510 .8 +1248 708 .8 +1248 1622 .8 +1248 1797 1 +1248 1869 .8 +1248 364 .8 +1248 4743 .6 +1248 2361 .8 +1248 597 .8 +1248 1249 1 +1248 2352 .8 +1248 1250 .8 +1248 2664 .6 +1248 2085 .8 +1248 1236 .8 +1248 669 1 +1248 172 1 +4543 4543 .6 +4543 3218 .6 +4543 399 .8 +3394 3292 1 +3394 438 1 +3394 46 1 +3394 30 1 +3394 33 .8 +3394 506 1 +3394 322 .8 +695 172 1 +695 854 1 +695 669 1 +695 1511 .8 +695 697 .8 +2538 1247 .8 +2538 741 .8 +2538 1925 .8 +2538 1663 .8 +6325 6325 .6 +4291 126 1 +85 85 .8 +85 332 1 +85 331 1 +85 637 1 +85 335 1 +85 53 .8 +85 48 .8 +85 67 1 +85 1766 .8 +85 3592 1 +85 333 1 +85 144 .8 +85 334 1 +85 864 .8 +85 720 .8 +85 46 1 +85 431 1 +85 148 1 +85 3385 1 +85 69 .8 +85 3313 .8 +85 4100 .8 +85 4022 .8 +85 100 .8 +85 330 .8 +85 74 .8 +6326 6326 .8 +3465 3465 .6 +3465 385 .8 +3465 1673 .6 +3465 2409 .8 +3465 3466 .8 +3465 473 .6 +3465 46 1 +3465 30 1 +3465 449 .8 +3465 450 .8 +3465 453 .6 +6327 1222 1 +6327 747 1 +6327 1562 1 +6327 296 1 +6327 295 1 +6327 3251 .8 +6327 1579 1 +6327 375 1 +6327 1052 1 +6327 647 1 +6327 110 .8 +6327 79 .8 +6327 290 1 +6327 286 1 +6327 137 1 +6327 165 1 +6327 30 1 +6327 3787 1 +6327 659 1 +6327 2457 1 +6327 1218 .8 +6327 1479 1 +6327 1499 1 +6327 749 1 +6327 1213 .8 +6327 46 1 +6327 1546 .8 +6327 714 1 +6327 872 1 +6327 746 1 +6327 22 1 +6327 751 1 +6327 764 1 +6327 426 1 +6327 424 1 +6327 1503 1 +6327 292 1 +6327 1583 1 +6327 329 1 +6327 175 1 +6327 2290 1 +6327 157 .8 +6327 1169 .8 +6327 603 .8 +6327 582 1 +6327 1781 .8 +6327 708 .8 +6327 1145 .8 +6327 3202 1 +6327 425 1 +6327 640 1 +6327 2420 1 +6327 598 1 +6327 1156 1 +6327 1203 1 +6327 652 1 +6327 2453 .8 +6327 105 .8 +6327 108 .8 +6327 4959 1 +6327 2456 1 +6327 911 .8 +6327 3725 .8 +6327 1176 1 +6327 3742 .8 +6327 2578 .8 +6328 1344 1 +6329 6330 1 +2243 2861 .8 +2243 181 .8 +2243 1653 .8 +2243 80 .8 +6331 6331 .6 +6331 1416 1 +2563 934 .8 +2563 2562 .8 +2563 457 .8 +2563 1308 .8 +2563 1167 .6 +2449 2449 .8 +2449 5803 .6 +2449 6 .6 +2449 612 1 +2449 2452 .8 +2449 2444 1 +2449 2446 1 +6332 6332 .6 +6332 59 .8 +6333 336 1 +892 892 .8 +892 1798 .6 +892 986 .6 +892 346 .8 +892 807 .8 +892 2535 .6 +892 779 .8 +892 1418 .8 +892 1512 .8 +892 711 .8 +892 3112 .8 +892 774 1 +892 2254 .6 +4405 4405 1 +4405 1318 1 +4405 646 1 +4405 2214 .8 +4405 1316 1 +4405 242 .8 +4405 1317 1 +4405 2495 .6 +4405 430 .8 +4405 3892 .8 +4405 1319 .8 +4405 307 1 +4405 4406 1 +6334 764 1 +6335 6335 .6 +3407 4057 .6 +3407 23 .6 +995 44 1 +995 797 .8 +995 938 .6 +995 597 .6 +995 438 .6 +995 157 .6 +995 4077 .6 +995 524 .8 +995 593 .8 +995 959 .8 +995 261 .6 +995 712 .8 +995 1472 .6 +4622 4622 .6 +4622 46 1 +4622 438 .8 +311 311 .6 +311 232 .6 +311 841 .8 +311 9 .6 +311 214 .6 +311 30 1 +311 1941 .6 +311 329 1 +311 234 .6 +311 556 .8 +311 346 .6 +6336 6336 .6 +6337 6337 1 +6338 424 1 +2408 2405 .8 +2408 2408 .6 +1646 1646 .6 +1646 121 1 +1646 328 1 +1646 165 1 +1646 167 1 +1646 295 1 +1646 603 1 +1646 194 .8 +1646 1450 .8 +1646 3599 1 +1646 3565 .8 +1646 2314 1 +1646 3250 .8 +1646 594 .8 +1646 1223 .6 +1646 639 1 +1646 2993 1 +1646 679 1 +1646 296 1 +1270 943 1 +1270 19 .8 +1270 232 .6 +1270 1022 1 +1270 431 1 +1270 596 .6 +1270 126 1 +1270 148 1 +1270 1912 1 +1270 579 .8 +1270 2652 1 +1270 30 1 +1270 642 1 +1270 46 1 +1270 438 .8 +1270 4066 .8 +1270 714 1 +1270 5 1 +1270 2417 .6 +1270 436 1 +1270 435 .8 +1270 429 .8 +1270 44 .8 +1270 428 1 +1270 2141 .6 +1270 643 1 +1270 2090 .8 +1270 2092 .8 +1270 918 1 +1270 578 .8 +1270 720 .8 +1270 2215 .8 +1270 1065 .8 +1270 2216 .8 +1270 550 .6 +1270 802 1 +1270 2361 1 +2464 2464 1 +2464 1364 1 +2464 2890 1 +6339 4767 .8 +6339 593 1 +6339 255 .8 +6339 582 .8 +6339 623 .8 +6339 841 .8 +6339 2550 .8 +6339 442 1 +6339 21 .6 +6340 6340 1 +4206 1624 .6 +4206 613 1 +4206 1316 1 +4206 795 .8 +4206 328 1 +4206 625 .6 +4206 1964 .6 +4206 4206 .6 +3288 780 1 +3288 2482 1 +3288 346 1 +3288 3112 .8 +3288 1418 .8 +3288 174 1 +3288 4582 .8 +3288 3288 .8 +3288 779 .8 +3288 3050 .8 +3288 349 1 +3288 3566 .8 +3288 1436 1 +3288 1417 .8 +3288 1391 .8 +3288 678 .8 +3288 1585 .8 +3288 2125 .8 +6341 6341 1 +5287 5285 .8 +6342 6342 .6 +6342 119 1 +1817 1817 .8 +1817 2002 .8 +1817 306 .8 +1817 577 1 +1817 533 .8 +1817 542 .8 +1114 1114 .6 +1114 784 .8 +1114 1691 1 +1114 3323 .8 +1114 492 .6 +1114 760 .6 +6343 6343 .6 +3002 441 1 +3002 431 1 +3002 46 1 +3002 1288 .8 +3002 5436 .6 +3002 3002 1 +3002 1548 1 +3002 4779 1 +3002 1634 .6 +3002 2635 .6 +3002 408 .6 +3002 6344 .6 +3002 1385 .6 +3002 6345 .8 +3002 3324 .8 +3002 3558 .8 +3002 2225 .8 +3002 1685 .6 +3002 5084 .6 +3002 5437 1 +3002 5807 .6 +3002 5673 .6 +3002 6186 .8 +3002 6086 .8 +3002 2235 1 +3002 3458 .8 +3002 4369 .6 +3002 5166 1 +3002 5012 .8 +6346 6346 .6 +4526 335 .8 +4526 1766 .8 +4526 332 1 +6347 1343 1 +6347 506 1 +6347 859 1 +6347 2246 1 +247 247 .6 +247 1464 .8 +247 254 .6 +6348 6348 .6 +6349 6349 .6 +4025 4025 1 +4025 714 1 +4025 286 1 +4025 327 .8 +4025 126 1 +4025 46 1 +4025 1921 .8 +4025 329 .8 +4025 324 1 +4025 2681 .8 +4025 30 1 +4025 1343 1 +4025 1075 1 +4025 385 .8 +4025 387 .8 +6350 6350 .6 +6351 6351 1 +5693 5693 1 +5693 801 1 +5693 2667 .8 +5693 2772 1 +5693 650 1 +2860 854 1 +2860 735 .8 +2860 724 .6 +2860 695 1 +2860 1598 .6 +2860 46 1 +2860 1592 .8 +2860 30 1 +2860 719 1 +6352 6352 .6 +1227 1227 1 +1227 869 1 +1227 1226 1 +1227 282 1 +1227 379 1 +1227 998 1 +1227 1230 1 +1227 694 1 +1227 1723 1 +6148 6148 .8 +6148 269 .8 +1314 237 .8 +1314 1422 .6 +1314 2332 .8 +1314 1534 .6 +1314 2271 .8 +1314 791 .8 +1314 810 .8 +1314 934 1 +1314 172 1 +1314 2172 .8 +1314 171 1 +1314 350 1 +1314 933 .6 +1314 912 .8 +1314 501 .8 +1314 913 1 +1314 827 1 +1314 34 .6 +1314 762 1 +1314 134 1 +1314 135 1 +4958 4958 .8 +4958 399 1 +3397 3397 .6 +3397 956 .8 +3397 972 .6 +3397 316 .6 +3397 1223 .6 +3397 923 .8 +3397 703 .8 +3397 858 1 +3397 19 .8 +3397 188 .8 +3397 2199 .8 +3397 82 .8 +6353 6353 .6 +144 145 1 +144 642 .8 +144 352 1 +144 13 .8 +144 1022 1 +144 145 1 +144 286 1 +144 1434 .8 +144 349 .8 +144 332 1 +144 1020 1 +144 328 1 +144 53 .8 +144 282 1 +144 46 1 +144 1766 .8 +144 3591 .8 +144 265 1 +144 147 1 +144 1752 .8 +144 637 1 +144 30 1 +144 51 .8 +2303 2303 .6 +2303 34 .6 +2303 591 .6 +2303 1114 .6 +2303 238 .6 +2303 4009 .6 +6354 6354 .6 +736 736 .8 +736 801 .8 +736 1635 .8 +736 738 .8 +736 792 .8 +736 1546 .8 +736 858 .8 +736 1075 .8 +736 286 1 +736 737 .8 +736 1691 .8 +736 345 .8 +736 1309 .8 +736 327 .8 +736 1211 .8 +736 1690 .8 +736 1516 .8 +736 1086 .8 +736 1799 .8 +736 574 .8 +736 467 .8 +736 1023 .8 +736 1663 .8 +736 1097 .8 +736 104 .8 +736 1307 .8 +736 1308 .8 +736 701 .8 +736 92 .8 +736 734 .6 +736 739 1 +736 84 .8 +736 741 .8 +736 740 .8 +736 1053 .8 +736 1428 .8 +736 833 .8 +736 835 .8 +736 3541 .8 +736 2132 .8 +736 2249 .8 +736 1627 .8 +736 4236 .6 +736 750 .8 +736 1176 1 +736 648 1 +736 142 .8 +736 2376 .8 +736 789 .8 +736 1644 .8 +736 584 .8 +736 91 .8 +736 86 .8 +736 1628 .8 +736 1689 .8 +736 656 .8 +736 834 .8 +736 97 .8 +736 3076 .8 +736 1298 .8 +736 836 .8 +736 106 .8 +736 1435 .6 +736 1020 .8 +736 175 1 +736 879 .8 +736 1692 .8 +736 837 .8 +736 3077 .8 +736 1024 .8 +736 1693 .8 +736 1694 .8 +736 855 .8 +736 1286 .8 +736 2237 .8 +736 1026 .8 +736 859 .8 +736 3078 .8 +736 353 1 +736 795 .8 +736 1659 .8 +736 1454 .8 +736 2213 .8 +736 1452 .8 +736 3100 .8 +736 856 .8 +736 853 .8 +736 3079 .8 +736 90 .8 +736 2666 .6 +736 5995 .8 +736 1818 .8 +736 405 .8 +736 610 .8 +736 163 .8 +736 1895 .8 +736 1311 .6 +736 1027 .8 +736 2681 .8 +736 2261 .8 +736 3065 .8 +736 2629 .8 +736 1033 .8 +736 1697 .8 +736 1304 .8 +736 3117 .6 +736 2262 .8 +736 2799 .8 +736 790 .8 +736 2263 .8 +736 2961 .8 +736 3191 .8 +736 1698 .8 +736 3491 .8 +736 3118 .8 +736 3490 .8 +736 802 .8 +6355 6356 1 +6357 6357 1 +5253 5253 1 +993 3343 .6 +993 3268 1 +993 626 1 +993 3904 .8 +993 737 1 +993 263 .8 +993 45 1 +993 923 .8 +993 3395 .8 +993 597 .8 +993 1116 1 +993 751 1 +993 282 1 +6358 6358 1 +6359 51 .8 +6359 6359 .6 +1857 1857 .8 +1857 1855 .8 +1857 3096 .6 +1857 1688 .8 +1857 1775 .8 +6360 285 1 +6360 284 .6 +6360 287 .8 +6360 6360 .8 +6360 277 .8 +6361 6361 1 +6362 6362 .6 +6363 316 1 +6363 6363 .8 +6363 46 1 +6363 1447 .8 +6363 431 1 +6363 352 1 +6363 440 1 +6363 286 1 +6363 1086 .8 +6363 2078 .8 +6363 1892 .8 +6363 642 1 +6363 326 1 +6363 329 1 +6363 506 1 +6363 1116 1 +6363 428 1 +6363 1847 .8 +796 796 .6 +796 2214 1 +796 1024 1 +796 2226 1 +796 785 .6 +4894 4894 .8 +6364 2150 .6 +6364 4005 .6 +6364 970 .6 +6364 1959 1 +6364 1164 .6 +6364 1069 .8 +6364 4499 .8 +6364 3089 .6 +6365 6365 1 +4249 2505 .8 +1124 112 1 +1124 118 1 +1124 424 1 +1124 425 1 +1124 22 1 +1124 770 1 +3414 3414 .8 +3414 625 .8 +3414 6366 .6 +3414 4679 .6 +3414 2742 .6 +3414 716 .8 +3414 68 .6 +3414 4281 .6 +3414 6367 .6 +2883 2883 .8 +2883 445 1 +2883 1451 .8 +2883 649 1 +2883 1495 1 +2883 438 .8 +2883 1117 1 +2883 1752 1 +2883 324 1 +2883 1847 1 +2883 3667 .8 +2883 332 1 +2883 1436 .8 +2883 1597 .8 +2883 701 .8 +2883 826 1 +2883 916 1 +2883 1181 .8 +2883 172 1 +2883 807 .8 +2883 1844 .8 +2883 6136 .8 +2883 950 .6 +2883 2614 .8 +2883 577 1 +2883 774 1 +2883 780 .8 +2883 14 .8 +2883 2464 .8 +2883 349 1 +2883 46 1 +2883 983 .8 +2883 2887 .8 +5242 5242 1 +3435 3435 .6 +1024 1024 .8 +1024 4546 .8 +1024 431 1 +1024 469 .8 +1024 1818 .8 +6368 6368 1 +2151 2151 .8 +2151 963 .8 +2151 603 .8 +2151 1047 .6 +2151 45 1 +2151 2517 .8 +2151 1068 1 +2151 22 1 +2151 1065 1 +2151 2141 .8 +2151 113 .8 +2151 1643 1 +2151 739 1 +2151 119 1 +2151 2739 .8 +2151 5905 .8 +6369 6369 .6 +1809 399 .8 +1809 4632 .6 +1809 1716 .6 +1809 4511 .8 +1809 4167 .8 +1809 157 .8 +1809 1060 .6 +1809 429 1 +1809 328 1 +1809 4540 .6 +1809 2332 .8 +1809 4254 .8 +1809 362 .8 +1809 1808 .8 +1809 20 .6 +1809 3621 .6 +2443 431 1 +2443 5 1 +2443 2443 .8 +2443 46 1 +2443 1165 .8 +2443 632 1 +2443 4674 1 +3017 1074 .8 +3017 30 1 +3017 305 1 +3017 46 1 +3017 286 1 +6370 6370 .6 +4751 1135 1 +4751 4751 .6 +4751 666 .8 +4751 669 .8 +4751 670 .8 +4751 154 .8 +4751 274 1 +4751 2932 1 +4751 876 .8 +4751 1223 .8 +4751 5030 .6 +4751 331 .8 +4751 282 1 +4751 1764 .8 +4751 334 .8 +4751 70 .8 +4751 1515 .8 +4751 3781 .8 +4751 1272 .8 +4751 1273 .6 +4751 629 1 +1782 1782 .8 +6371 6371 .8 +6371 429 1 +6371 643 1 +6371 3239 1 +6371 1554 1 +2292 2292 .6 +2292 166 .8 +2292 167 .8 +2292 165 .8 +4278 4278 .6 +4278 1799 1 +4278 191 .8 +4278 4281 .6 +786 837 .8 +786 718 .8 +786 893 1 +786 801 .8 +786 584 .8 +786 715 .8 +786 3118 .8 +786 522 .8 +786 792 1 +786 802 1 +786 2629 .8 +786 2687 .6 +1848 1848 .6 +1848 1490 1 +1848 791 1 +1848 1493 1 +1848 1492 1 +1370 774 1 +1370 46 1 +1370 1370 1 +1370 711 1 +1370 3206 .8 +1370 780 1 +1370 712 1 +1370 5306 .6 +1370 1968 1 +1370 898 1 +1370 13 1 +1370 438 1 +1370 492 1 +1370 3257 1 +1370 306 .8 +1370 1753 1 +1370 2463 1 +1370 1084 .6 +1370 1851 1 +1370 30 1 +1370 1364 .8 +1370 2464 1 +1370 1757 1 +1370 2372 1 +6372 6372 .6 +709 2251 1 +709 2232 1 +709 1020 1 +709 717 1 +709 830 1 +709 1049 1 +709 157 .8 +709 2252 .8 +709 30 1 +709 719 1 +709 3429 .6 +709 1869 .8 +709 1539 .6 +4877 4877 .8 +6373 6373 .8 +6374 97 .8 +1221 1221 .8 +1221 22 1 +1221 1343 1 +1221 1124 1 +1221 424 1 +1221 426 1 +1221 46 1 +1221 112 1 +1221 1220 .8 +1221 282 1 +6375 6375 .6 +948 741 1 +948 1211 .8 +948 1031 .8 +948 2312 .8 +948 2681 .8 +948 883 .8 +948 1464 .8 +948 852 1 +948 1216 .8 +948 1176 1 +948 738 1 +948 736 1 +948 3240 .8 +948 46 1 +948 2727 .8 +948 1860 .6 +948 948 .6 +948 148 1 +948 1218 1 +948 1411 .6 +948 296 1 +948 290 1 +948 137 1 +948 784 .8 +948 4075 .6 +948 1408 .6 +948 919 .6 +948 45 1 +948 297 1 +948 648 1 +948 286 1 +948 166 .8 +948 111 .8 +948 1548 .8 +948 506 1 +948 805 .8 +948 1441 1 +948 525 .8 +948 917 .6 +948 751 1 +948 103 .8 +948 323 .8 +948 801 1 +948 1126 .8 +948 429 .8 +948 987 .6 +948 187 .6 +948 992 .6 +948 328 1 +948 658 .8 +948 2861 .8 +948 2521 1 +948 1089 1 +948 19 .8 +948 1816 .8 +948 17 .6 +948 385 .8 +948 1278 1 +948 794 .6 +948 1047 .8 +948 207 1 +948 2439 .8 +948 850 .8 +948 209 1 +948 206 .8 +948 375 1 +948 1579 1 +948 1562 1 +6376 6376 .6 +6376 4855 1 +1756 943 1 +1756 1756 .6 +1756 1837 .8 +1756 1931 .8 +1756 2188 .8 +1756 101 1 +1756 2190 1 +1376 1376 1 +6377 6377 1 +4697 4697 1 +6378 789 .8 +6378 506 1 +6379 6379 1 +1161 1809 1 +1161 1147 1 +1161 1373 .8 +5008 716 1 +5008 4129 .8 +5008 116 .8 +5008 1107 .8 +3677 3677 .8 +3677 1028 .8 +60 60 .6 +60 791 1 +60 328 1 +60 646 1 +5721 1386 .6 +6380 6380 .6 +3897 3897 .8 +3897 1988 1 +3897 349 1 +3897 2670 .6 +3897 66 .8 +3897 716 .8 +3897 4152 .8 +4515 4515 1 +1894 435 .8 +1894 318 .8 +1894 1996 .8 +1894 436 1 +1894 1086 .8 +1894 2284 .8 +1894 209 .8 +1894 1616 .8 +1894 434 1 +1894 316 .8 +1894 46 1 +1894 438 .8 +1894 1447 .8 +1894 30 1 +1894 440 1 +1894 432 .8 +1894 1436 .8 +1894 437 .8 +1894 719 1 +1894 4643 .8 +1894 2210 .8 +1894 1022 1 +1894 1720 1 +1894 352 1 +1894 1133 .8 +1894 326 1 +1894 95 .8 +1894 431 .8 +1894 441 1 +1894 1160 .8 +1894 439 .6 +1894 1116 1 +6381 46 1 +5318 5318 .8 +5318 126 1 +5318 2913 .8 +5318 642 1 +5318 467 1 +5318 787 1 +5318 1584 .8 +5318 2754 .8 +5318 128 1 +6382 6382 1 +1404 1400 .6 +1404 1404 .8 +1404 174 .8 +1404 466 .6 +1404 1002 .6 +1404 1403 .6 +1404 2555 .6 +1404 4116 .6 +6383 2284 .8 +35 887 .8 +35 1150 .8 +35 32 .8 +35 33 .6 +35 753 .6 +35 25 .8 +35 34 .8 +35 31 1 +35 26 .8 +35 29 1 +35 28 .8 +35 27 .8 +35 71 .8 +35 224 .8 +35 35 .8 +35 3839 .8 +35 2609 .8 +35 3179 .8 +35 807 1 +284 277 .6 +284 1015 .6 +284 647 1 +284 46 1 +284 22 1 +284 285 .8 +284 287 .8 +284 284 .6 +284 1162 .8 +284 193 .8 +284 2246 1 +5157 5157 .6 +6384 6384 .6 +6385 209 1 +5031 5031 .8 +2361 405 1 +2361 400 1 +2361 1711 1 +2361 654 1 +2361 2474 1 +2361 2473 1 +2361 30 1 +2361 1980 1 +2361 2352 1 +2361 813 1 +2361 2467 1 +2361 708 1 +2361 1248 1 +2361 737 1 +2361 192 1 +2361 2466 1 +2361 931 1 +2361 2469 1 +2361 1858 1 +2361 2360 .8 +2361 2361 .8 +2361 1662 1 +2361 1309 1 +2361 188 1 +2361 4591 1 +2361 1770 1 +2361 793 1 +6386 6386 1 +2324 4126 .8 +2324 2249 .8 +2324 2891 .8 +2324 3276 .6 +2324 19 .6 +2324 2503 .8 +2324 6387 .6 +2324 232 .6 +2324 591 .6 +2324 4125 .6 +2324 2941 .6 +2324 841 .6 +2324 1701 .6 +2324 474 .6 +2324 1675 .6 +2324 251 .6 +2324 764 1 +2324 747 1 +2324 3377 .6 +2324 578 .8 +2324 2325 .8 +2324 2326 .8 +2324 1886 .8 +2324 638 .8 +2324 2412 .8 +2324 2324 .6 +6388 6388 .6 +6389 6389 .8 +835 835 .8 +835 736 .8 +835 739 1 +835 740 .8 +835 1627 .8 +835 648 1 +835 142 .8 +835 2376 .8 +835 1644 .8 +835 1689 .6 +835 584 .8 +835 741 .8 +835 834 .6 +835 656 .8 +835 1628 .8 +835 86 .8 +835 91 .8 +835 833 .8 +835 801 .8 +835 84 .8 +835 1690 .8 +835 3186 .8 +835 1692 .8 +835 837 .8 +835 738 .8 +835 1298 .8 +835 1454 1 +835 855 .8 +835 90 .8 +835 3491 .8 +835 859 1 +835 1548 .8 +835 1286 1 +835 318 1 +835 2629 .8 +835 522 .8 +6390 6390 1 +2486 242 1 +2486 1632 1 +2486 5810 .8 +5045 5045 .8 +5045 1634 .8 +1307 1307 .8 +1307 736 1 +1307 1308 .8 +1307 801 .8 +1307 739 1 +1307 142 .8 +1307 648 1 +1307 574 .8 +1307 405 1 +1307 2799 .8 +6391 6391 .8 +860 857 1 +860 175 .6 +860 329 .6 +860 86 .6 +860 141 .6 +860 734 .6 +860 2727 .6 +860 351 .6 +3446 445 1 +3446 2919 .8 +3446 151 1 +3446 1153 1 +3446 747 1 +4397 4397 1 +4397 2923 .8 +4397 2922 .8 +4397 345 1 +4397 327 .8 +6392 6392 .8 +2827 2827 .6 +31 34 .6 +31 46 1 +31 1075 .8 +31 30 1 +31 324 .8 +31 32 .8 +31 328 1 +31 719 1 +31 1020 1 +31 737 .8 +31 29 1 +31 28 .8 +31 26 .8 +31 27 .8 +31 33 .6 +31 638 .8 +31 753 .6 +31 807 .8 +6393 6393 .6 +6393 9 .8 +4196 45 1 +4196 1337 .8 +4196 2798 .8 +4196 4196 .8 +4326 4131 .8 +4353 92 .8 +4353 4379 .8 +2401 328 1 +2401 719 1 +2401 1075 .8 +2401 1087 .8 +2401 326 1 +2401 1117 1 +2401 1401 .8 +2401 30 1 +2401 323 .8 +2401 306 .8 +2401 324 .8 +2401 1020 1 +2401 46 1 +2401 1073 .8 +2401 1104 .8 +2401 1490 1 +6394 6394 .6 +4012 4012 .6 +4012 3477 .8 +6395 6395 .6 +6396 6396 1 +3612 328 1 +3612 30 1 +3612 2877 .8 +3612 46 1 +6397 6397 .8 +3000 35 .8 +3000 178 .8 +3000 177 .8 +3000 1326 1 +4164 4164 .6 +4164 4163 .8 +6398 6398 1 +3330 3099 .6 +653 632 1 +653 1154 .8 +653 175 1 +653 653 .8 +653 30 1 +653 126 1 +653 1742 .6 +653 80 .8 +653 506 1 +653 46 1 +653 438 .8 +653 303 1 +653 431 1 +653 353 1 +653 2014 .6 +653 882 .8 +653 1740 .8 +653 1356 1 +653 805 .8 +653 727 .8 +653 649 1 +653 1847 1 +653 349 1 +653 2226 1 +653 511 1 +653 326 1 +653 1020 1 +653 346 1 +653 719 1 +653 492 .8 +653 1490 1 +653 513 1 +653 1495 1 +653 1416 .8 +653 1930 1 +653 715 .8 +653 577 1 +653 1362 1 +653 711 1 +653 1393 .8 +653 717 1 +653 1871 .6 +653 1741 .8 +653 324 1 +653 2348 1 +653 2464 1 +653 774 1 +653 645 1 +653 348 1 +653 345 1 +653 1753 1 +653 1471 1 +653 2260 1 +653 1869 1 +653 709 1 +653 718 1 +653 1436 1 +653 830 1 +653 1293 1 +5573 578 1 +5573 5573 .6 +5573 431 1 +5573 429 1 +5573 428 1 +5573 612 1 +5573 46 1 +5573 618 1 +5573 720 1 +5573 1247 1 +5573 175 1 +5573 126 1 +5573 1816 1 +5573 1049 1 +6399 6399 1 +6400 6400 1 +6401 6401 .6 +408 408 .6 +6005 6005 .8 +57 59 .8 +57 58 1 +57 50 .8 +57 61 .8 +57 1767 .8 +57 51 1 +57 333 1 +57 331 .8 +57 48 .8 +57 6402 .6 +57 864 .8 +57 2874 .8 +57 337 1 +57 1769 1 +57 861 .8 +57 227 .8 +57 67 1 +57 853 .8 +57 637 1 +57 1766 1 +57 282 1 +57 330 1 +57 57 .8 +57 1988 1 +5495 1492 1 +5495 3935 1 +5495 2831 .8 +6403 6403 .6 +5112 5435 .8 +1565 1278 1 +1565 1991 1 +1565 126 1 +1565 1990 1 +4364 4364 .6 +4364 46 1 +4364 30 1 +4364 677 .6 +4364 328 1 +4364 2879 .6 +4364 1022 1 +4364 90 .6 +4364 856 .8 +4364 348 1 +4364 1227 1 +4364 329 1 +4364 175 1 +4364 286 1 +4364 49 1 +4364 405 1 +6404 6404 .6 +1136 4003 .6 +1136 14 .8 +1136 764 1 +1136 1136 .6 +1136 1554 .8 +6405 1439 .6 +6405 786 1 +6405 715 1 +6405 549 1 +6405 506 1 +6405 536 1 +6405 2251 1 +6405 1326 1 +4800 826 1 +4800 282 1 +4800 328 1 +3579 3579 .8 +3579 3578 .6 +3400 3400 .8 +3400 1816 1 +3400 242 1 +3400 157 .6 +6406 6406 1 +3508 3911 .8 +3508 3508 .6 +525 1993 1 +525 438 1 +525 501 .8 +525 523 .8 +525 2272 .6 +525 1633 .8 +525 791 1 +525 577 1 +525 934 1 +525 174 1 +525 1117 1 +525 34 .8 +525 1927 .8 +525 807 1 +525 525 .8 +525 913 1 +525 350 1 +525 323 1 +525 531 .6 +525 126 1 +525 939 .8 +525 530 .8 +525 2512 .8 +525 391 .8 +525 1314 1 +525 1441 1 +525 171 1 +525 2271 1 +525 949 1 +525 977 .8 +525 1436 .8 +525 469 1 +525 714 1 +525 1495 1 +525 242 .8 +525 780 .8 +525 545 .8 +525 712 1 +525 893 1 +525 336 .8 +525 547 .8 +525 912 1 +525 1 .8 +525 2 .8 +525 1004 .8 +525 1001 1 +525 492 1 +525 1352 .8 +525 2246 1 +525 3405 .8 +525 4581 .8 +525 328 1 +525 460 .8 +525 511 1 +525 513 .8 +525 1831 .6 +525 2173 .8 +525 1851 1 +525 1968 1 +6407 6407 .6 +6408 6408 .6 +953 14 .8 +953 827 1 +953 858 1 +953 739 1 +953 736 1 +953 1548 .8 +953 1797 .8 +953 863 .6 +953 718 .6 +953 40 .6 +6409 6410 .8 +1958 1957 1 +1958 67 1 +1958 74 1 +1958 1283 1 +1958 48 .8 +1958 70 .8 +1958 1764 1 +1958 234 .8 +6411 6411 .6 +6412 6412 .8 +6412 1187 .8 +6412 578 1 +6412 802 1 +1000 3740 .8 +1000 1407 .6 +1000 584 1 +1000 1406 .6 +1000 1521 .8 +1000 242 .8 +1000 1835 .8 +1000 438 .8 +1000 2568 .6 +1000 2747 .6 +1000 1694 .8 +1000 142 1 +1000 739 1 +1000 736 1 +1000 46 1 +1000 2749 .8 +1000 523 .8 +1000 1000 .8 +1000 961 .8 +1000 2013 .6 +1000 9 .8 +1000 681 .6 +1000 2965 .6 +1000 525 .8 +1000 4432 1 +1000 241 .8 +1000 864 .8 +1000 194 .8 +1000 934 1 +1000 2141 .8 +1000 1943 .6 +1000 837 .8 +784 438 .8 +784 1022 1 +784 3099 .8 +784 65 1 +784 886 .8 +784 887 .8 +784 883 .8 +784 1411 .6 +784 1211 .8 +784 108 .8 +784 1641 .8 +784 113 .8 +784 6413 .8 +784 1113 .8 +784 1984 .6 +784 1882 .6 +784 1216 .6 +784 1110 .6 +784 1112 .8 +784 3615 .6 +784 1605 .8 +784 1114 .6 +784 104 .8 +784 1065 .8 +784 2757 .8 +784 2501 .6 +784 3240 .6 +784 878 .6 +784 492 .6 +784 1338 .6 +784 1643 .8 +784 342 .6 +784 527 .8 +784 4037 .6 +784 232 .6 +784 1126 1 +784 579 .8 +784 1111 .8 +784 258 .6 +3348 3348 .6 +3348 2452 1 +3348 1991 1 +3045 3045 .6 +326 328 1 +326 719 1 +326 466 .8 +326 1073 .8 +326 30 1 +326 735 .8 +326 1087 .8 +326 306 .8 +326 1072 .8 +326 1434 .8 +326 1400 .6 +326 2972 .6 +326 2401 .8 +326 645 .8 +326 468 .8 +326 324 .8 +326 1075 .8 +326 1074 .8 +326 623 .8 +326 1020 1 +326 1117 1 +326 174 .8 +326 2101 .8 +326 511 .8 +326 934 .8 +326 1313 .8 +326 2102 .8 +326 1084 .6 +326 577 .8 +326 1433 .6 +326 1082 .8 +326 1633 .8 +326 1401 .8 +326 323 .8 +326 345 1 +326 2103 .8 +326 797 .8 +326 1436 .8 +326 558 .8 +326 349 .8 +326 352 1 +326 350 .8 +326 1079 .8 +326 668 .8 +326 1086 .8 +326 1719 .6 +326 1076 .6 +326 652 .8 +326 858 1 +326 1428 .8 +326 642 1 +326 1123 1 +326 305 1 +326 46 1 +326 325 .8 +326 2971 .6 +326 3307 .6 +326 40 .6 +326 3262 .6 +326 3612 .6 +326 846 .6 +326 1759 .8 +326 327 .8 +326 2402 .8 +326 677 .6 +326 878 .8 +326 2588 .6 +326 3569 .6 +326 1637 .8 +326 3517 .6 +326 1081 .8 +326 1100 .8 +326 1021 .8 +326 1860 .6 +326 1085 .6 +326 3649 .8 +326 1753 1 +326 1022 .8 +326 438 .6 +326 2078 .8 +326 436 1 +326 379 .6 +326 1160 .8 +326 2626 .8 +326 286 1 +326 1023 .8 +326 104 .8 +326 92 .8 +326 555 1 +326 739 1 +326 1116 1 +326 764 1 +326 746 1 +326 647 1 +326 506 1 +326 353 1 +326 1430 1 +326 4214 1 +326 1661 .8 +326 2536 .6 +4085 3101 .6 +4085 4085 .8 +2189 286 1 +2189 943 1 +2189 2189 .8 +2189 578 .6 +2189 1755 1 +2189 1756 .8 +2189 1931 .8 +2189 101 1 +6414 6414 1 +6415 6415 .6 +6416 3189 .6 +6416 30 1 +6416 46 1 +6417 6417 .8 +4582 4582 1 +4582 1416 .6 +2218 316 1 +2218 303 1 +2218 304 1 +1202 1202 1 +6292 6292 .6 +6292 825 1 +6292 126 1 +6292 522 1 +6292 286 1 +6292 121 1 +6292 1476 1 +6292 1957 1 +6292 175 1 +6292 644 1 +6292 1280 1 +2031 2031 1 +2031 1451 1 +2031 1992 .8 +2031 1898 .8 +2031 1994 .8 +2031 1995 .8 +2031 1628 .8 +2031 2032 .6 +2031 1339 .8 +1966 418 .6 +1966 2578 .6 +1966 328 1 +1966 1586 .8 +1966 184 .8 +1966 1775 .8 +1966 165 1 +6418 6418 .6 +3509 2134 .6 +3509 1168 .6 +3509 469 1 +6419 6419 1 +6420 6420 1 +6421 6421 .6 +593 126 1 +593 593 .6 +593 597 .8 +593 1992 .8 +593 251 .6 +593 197 .8 +593 48 .8 +593 2020 .6 +593 914 .8 +593 1602 .6 +593 556 .8 +593 801 1 +593 564 .8 +593 791 1 +593 63 .6 +593 858 1 +593 1921 .8 +593 1585 .8 +593 2420 1 +593 3296 .8 +593 1819 .6 +593 961 .6 +593 214 .8 +593 1486 .8 +593 2211 .6 +593 1756 .8 +593 1880 .6 +593 44 1 +593 586 .8 +593 1165 .8 +593 1172 .8 +593 108 .8 +593 658 .8 +593 528 .8 +593 4163 .8 +593 757 .6 +593 599 .6 +593 703 .6 +593 429 1 +593 712 .8 +593 919 .8 +593 19 .8 +593 1047 .8 +593 904 .8 +593 322 .8 +593 2141 .8 +593 524 .8 +593 943 1 +593 274 1 +593 362 .8 +593 1415 .8 +593 594 .8 +593 2021 .8 +593 954 .6 +593 958 .8 +593 953 .8 +593 89 .6 +593 644 1 +593 45 1 +593 329 1 +593 971 .8 +593 805 1 +593 3652 .6 +593 469 .8 +593 613 .6 +593 841 .8 +593 959 .8 +593 103 .8 +593 207 1 +593 1650 .6 +593 1072 .8 +593 804 .8 +593 718 .8 +593 157 .6 +593 580 .8 +593 598 .8 +593 846 1 +593 939 .8 +593 34 .8 +593 917 .8 +593 751 1 +593 1393 .8 +593 93 .6 +593 1167 1 +593 987 .8 +593 633 .6 +593 610 1 +593 995 .6 +593 1660 .8 +593 242 .8 +593 357 .8 +593 996 .8 +593 261 .8 +593 255 .8 +593 1091 .8 +593 2412 .6 +593 246 .6 +593 997 .6 +593 631 .6 +593 2185 .6 +593 596 .8 +593 928 .6 +593 2522 .6 +593 1545 1 +593 985 .6 +593 793 .6 +593 17 .6 +593 606 .6 +593 766 .6 +593 2405 .8 +593 46 1 +593 1399 .6 +593 926 .8 +593 1278 1 +593 18 .8 +593 3028 .6 +593 349 1 +593 348 1 +593 711 .8 +593 2377 .8 +593 110 .8 +593 893 1 +593 934 1 +593 4892 .8 +593 6 .8 +593 162 1 +593 1190 1 +593 3312 .6 +593 2824 .8 +593 399 .8 +593 617 .6 +593 620 .6 +593 2732 .8 +593 619 .6 +593 1494 .8 +593 20 .6 +593 1849 .6 +593 328 1 +593 525 .8 +593 2745 .6 +593 585 .6 +593 23 .6 +593 1154 .8 +593 1405 .6 +593 3218 .6 +593 891 .6 +593 418 .6 +593 3809 .6 +593 1774 .6 +593 80 .8 +593 1779 .6 +593 773 .8 +593 1187 1 +593 1163 .6 +593 208 1 +593 2193 .6 +593 2182 .8 +593 62 .8 +3067 46 1 +3067 3068 .8 +3067 2622 .8 +3067 3066 .6 +3067 5971 1 +3067 609 .8 +3067 424 .6 +6422 6422 .6 +1655 1655 1 +1655 329 1 +1655 46 1 +1655 353 1 +1655 3099 .8 +1655 126 1 +1655 30 1 +1655 1898 .8 +1655 1451 .8 +1655 175 1 +1655 506 1 +1655 1315 .8 +1655 1809 1 +6423 6423 .8 +724 592 .6 +724 724 .6 +724 972 .6 +724 251 .6 +724 1216 .6 +222 222 .6 +222 214 .6 +222 2225 .8 +222 225 .8 +6424 6424 .6 +472 472 .8 +425 424 1 +425 118 1 +425 770 1 +425 22 1 +425 112 1 +425 425 1 +425 1124 1 +425 426 1 +425 427 1 +425 423 .8 +425 3758 .8 +425 640 1 +425 273 1 +425 1171 1 +425 2721 .8 +425 1520 .8 +425 1177 1 +425 3770 1 +425 2004 1 +425 764 1 +425 1123 1 +425 2521 1 +425 2420 1 +425 282 1 +425 1723 1 +425 1231 1 +1356 735 .8 +1356 1616 .8 +1356 468 .8 +1356 623 .8 +1356 934 .8 +1356 1313 .8 +1356 577 .8 +1356 30 1 +1356 1633 .8 +1356 1079 .8 +1356 1020 1 +1356 1075 .8 +1356 349 .8 +1356 46 1 +1356 1074 1 +1356 511 .8 +1356 1476 .8 +1356 829 .8 +1356 791 .8 +1356 34 .6 +1356 2761 .8 +1356 1925 1 +1356 481 .8 +1356 1353 .8 +1356 937 .8 +1356 174 1 +1356 1360 .8 +1356 3178 .6 +1356 2382 .8 +1356 808 .8 +1356 1851 1 +1356 712 1 +1356 2347 1 +6425 6425 .8 +3277 3277 .6 +6426 6426 1 +2498 2498 .8 +2498 30 1 +2498 1309 1 +2498 1798 .8 +2498 46 1 +2498 2497 .8 +2498 2762 .8 +2498 673 1 +2498 1493 .8 +2498 1848 1 +2498 1492 1 +2498 2904 .8 +2498 3625 .8 +2498 2902 1 +2498 2252 1 +2498 126 1 +3705 3705 .8 +3705 682 .8 +3705 3702 .8 +3705 2227 .8 +3705 722 .8 +3705 3704 .8 +3705 3703 .6 +3705 1519 1 +3705 1108 .8 +3705 5118 .8 +2066 2066 .6 +2066 4019 .8 +1819 248 .6 +1819 1692 .8 +1819 528 .6 +1819 597 .8 +1819 593 .6 +1819 1813 .8 +1819 996 .6 +1819 1998 .6 +1819 34 .8 +945 431 1 +945 258 .6 +6427 6427 1 +997 997 .6 +997 429 1 +997 30 1 +997 643 1 +997 2205 .8 +997 46 1 +997 431 1 +997 1823 .8 +997 2207 .8 +997 2208 .8 +997 428 .8 +997 983 .8 +997 2883 .8 +997 248 .6 +997 2561 .8 +997 525 .8 +997 523 .8 +997 1497 .8 +997 3292 .8 +997 2091 .8 +997 430 .8 +997 579 .8 +997 356 .8 +997 393 .8 +997 739 1 +997 764 1 +997 1301 .8 +997 329 1 +997 322 .8 +997 846 1 +997 362 .8 +997 1483 .6 +997 858 1 +997 1586 1 +997 282 1 +997 246 .8 +997 442 .8 +997 328 1 +997 613 .8 +997 773 .8 +997 1816 1 +997 646 1 +997 2786 .6 +997 3401 .6 +997 1625 .6 +997 19 1 +997 316 1 +997 4107 .8 +997 3010 .6 +997 694 .8 +997 379 1 +997 863 .8 +997 853 .8 +997 3092 .8 +997 425 1 +997 1028 1 +997 2522 .8 +997 214 .8 +997 597 .8 +997 524 .8 +997 438 .8 +997 599 .8 +997 996 .8 +997 633 .8 +997 1163 .8 +997 242 .8 +997 6428 .6 +997 1042 .6 +997 1034 .8 +997 631 .6 +997 2782 .8 +997 234 .6 +997 513 .8 +997 418 .8 +997 2259 .8 +997 2780 .8 +997 4101 .8 +997 62 1 +997 1830 .8 +997 708 .8 +997 2803 1 +997 1554 1 +997 2227 1 +997 2233 .8 +997 619 .8 +997 1893 1 +997 162 1 +997 610 1 +997 703 .8 +997 2673 .8 +997 1545 .8 +997 5722 .8 +997 722 1 +997 2416 .8 +2407 2406 .8 +2407 2407 .6 +2407 2405 .8 +2407 30 1 +2407 565 .6 +2407 2410 .6 +2407 960 .6 +1881 1881 .6 +1881 65 1 +1881 784 .8 +1881 792 1 +1881 108 .8 +1881 2135 .8 +1881 22 1 +1881 1879 .6 +1881 2456 .8 +1881 1110 .8 +1881 1880 .6 +1881 107 .6 +1881 45 .8 +1881 3501 1 +1881 4456 .8 +1881 2226 1 +1881 461 .6 +1219 746 1 +1219 652 1 +1219 2453 .8 +1219 659 1 +1219 2457 .8 +1219 747 1 +1219 1214 .8 +1219 2459 .8 +1219 748 1 +1219 2289 .8 +1219 1218 .8 +1219 1205 .6 +1219 2454 .8 +1219 749 1 +1219 2460 .8 +1219 3249 .6 +1219 1695 .6 +1219 647 1 +1219 71 .8 +1219 48 .8 +1219 67 1 +1364 2464 1 +1364 774 1 +1364 711 1 +1364 1364 .8 +1364 2462 .8 +1364 2348 1 +1364 2890 1 +1364 2463 .8 +1364 1869 1 +6429 6429 .6 +5035 5035 .6 +6322 708 .8 +1936 1117 1 +1936 841 .8 +1936 1936 .6 +1936 1167 .6 +1936 822 .6 +1936 934 .8 +1936 2327 .6 +1936 4539 .6 +1936 292 .8 +1936 13 .8 +1936 579 .8 +1936 121 1 +5795 1978 1 +6430 6430 .6 +6214 6213 1 +6214 6214 1 +1699 739 1 +1699 1699 .8 +1699 3192 .8 +1699 741 1 +1699 6096 .8 +1699 126 1 +604 2432 .6 +604 438 .6 +604 46 1 +604 1151 .8 +604 1047 .8 +604 242 .8 +604 533 .8 +604 536 .6 +604 739 1 +604 714 1 +604 857 1 +604 860 .6 +604 584 1 +604 286 1 +604 328 1 +604 175 1 +604 157 .6 +604 595 .8 +604 345 .8 +604 525 .8 +604 214 .8 +604 316 1 +604 4217 .6 +604 2412 .6 +604 1159 .6 +604 895 .6 +604 138 .6 +604 996 .8 +604 1060 .6 +604 1390 .6 +604 297 .8 +604 1154 .6 +604 121 1 +604 4878 .6 +604 6431 .6 +604 1302 .6 +604 6432 .6 +604 5954 .6 +604 6425 .6 +604 4266 .6 +604 2426 .8 +604 4210 .6 +604 3032 .6 +604 94 .6 +604 4844 .6 +604 19 .8 +604 3910 .6 +604 6130 .6 +604 1164 .6 +604 898 .6 +604 1556 .6 +604 4880 .6 +604 514 .8 +604 4879 .6 +604 44 1 +604 3509 .6 +604 5306 .6 +604 4942 .6 +604 3008 .6 +604 4622 .6 +604 449 .6 +604 448 .6 +604 1828 .6 +604 452 .6 +604 6433 .6 +604 999 .6 +604 394 .8 +604 617 .6 +604 658 .8 +604 3402 .6 +604 5083 .6 +604 3297 .6 +604 17 .6 +604 215 1 +604 329 1 +604 3433 .8 +604 2075 .6 +604 2865 .8 +604 722 .6 +604 2866 .6 +604 2768 .8 +604 4883 .8 +604 1908 .8 +604 172 1 +604 929 .6 +604 2036 .6 +604 6434 .6 +604 4895 .8 +604 3070 .6 +604 362 .8 +604 2979 .6 +604 125 .8 +604 4434 .6 +604 5448 .6 +604 4273 .6 +604 1467 .8 +604 1471 1 +604 2687 .6 +604 4899 .6 +604 402 .6 +604 3797 .8 +604 3822 .6 +604 1068 1 +604 1959 .6 +604 6435 .6 +604 3409 .6 +604 2777 .6 +604 6436 .6 +604 5840 .8 +604 782 1 +604 63 1 +6437 6437 .6 +631 630 .8 +21 21 .6 +21 126 1 +21 1430 1 +21 46 1 +21 30 1 +21 15 .6 +21 2634 .6 +21 757 .6 +21 1849 .6 +21 563 .6 +21 6076 .6 +21 1049 .8 +21 614 .8 +21 4189 .6 +21 20 .6 +21 2141 .8 +21 1190 1 +21 1814 .6 +21 242 1 +21 703 .6 +21 107 .6 +21 1064 .6 +21 622 .6 +21 3319 .6 +21 617 .6 +21 2745 .6 +21 93 .6 +21 580 .8 +21 788 .8 +3069 112 1 +3069 3070 .8 +2561 2561 .8 +6438 974 .8 +6438 1472 .8 +6438 3427 .6 +6438 2615 .8 +6438 729 .8 +6438 110 .8 +6438 1133 1 +6438 842 .6 +6438 434 1 +6438 1192 .6 +3484 1575 .8 +3484 1781 .8 +3484 610 1 +4995 4995 .8 +4995 1025 .8 +4871 4871 1 +4871 126 .6 +3187 3187 .6 +3187 3188 .6 +4009 2303 .6 +4009 34 .6 +4408 345 .8 +4408 2922 .8 +4408 4067 .8 +6439 6439 .8 +1171 1171 1 +1171 640 1 +1171 22 1 +1171 2949 1 +1171 2521 1 +1171 764 1 +1171 1230 .8 +1171 282 1 +1171 1228 .6 +1171 2420 1 +1171 424 1 +1171 273 1 +1171 1122 1 +1171 1126 1 +1171 1123 1 +1171 770 1 +1171 46 1 +1171 1125 .8 +1171 1177 1 +1171 359 .6 +1171 869 1 +1171 425 1 +1171 1068 1 +1171 4697 .8 +1171 649 1 +1171 2823 1 +1171 3770 1 +1171 1430 1 +1171 598 .8 +1171 1723 1 +1171 3807 .8 +1171 1231 1 +1171 65 .8 +1171 118 1 +1171 562 1 +1171 1124 1 +1171 647 1 +1171 5002 .6 +1171 2861 1 +1171 251 .6 +1171 1047 .6 +1171 488 .6 +1171 1303 .6 +1171 1494 .6 +1171 1190 .6 +1171 3385 .8 +1171 696 .8 +1171 1009 .8 +1171 2441 1 +1171 2845 .8 +1171 3387 1 +1171 1229 1 +1171 4990 .8 +1171 4696 1 +1171 850 1 +6440 6440 1 +1345 2757 .8 +1345 784 .8 +1345 119 1 +1345 282 1 +1345 1134 1 +1345 1345 .6 +1345 624 .8 +1345 2478 .8 +4020 4020 .6 +4020 1398 1 +5001 5001 .6 +5001 5000 .6 +5358 5358 1 +1621 1620 .8 +1621 1621 .6 +6441 1915 1 +6441 316 1 +6441 111 .8 +6441 174 1 +6441 439 .8 +6441 1515 .8 +6441 680 .8 +3537 45 1 +3537 3537 .8 +3537 943 1 +3537 2190 1 +3537 261 .6 +3537 157 .8 +3537 1931 .8 +3537 1756 .8 +3537 2188 1 +3537 1755 1 +3537 1741 1 +3537 2787 .8 +1654 1306 .8 +1654 739 1 +1654 142 1 +1654 3117 .8 +1654 837 .8 +1654 926 .8 +1654 30 1 +1654 779 .8 +6442 6442 .8 +6442 326 1 +6442 324 1 +6442 30 1 +6442 561 .8 +6442 4071 .8 +6443 1027 .8 +6443 467 1 +6443 1765 .8 +6443 1041 .8 +6443 649 1 +6443 1596 1 +6443 1594 1 +6443 3276 .6 +6443 1189 .8 +6443 3319 .8 +6443 982 .8 +6443 1427 .8 +6443 1361 1 +6443 809 .8 +6443 4003 .6 +6443 1779 .8 +6443 3742 .8 +6443 53 1 +6443 329 1 +4724 385 .8 +2 2 .8 +2 3 1 +2 1 .8 +6444 6444 .8 +6445 6445 .6 +4386 4386 .8 +4386 643 1 +4386 2318 .8 +4386 2317 .8 +4386 1497 .8 +4386 118 1 +4386 770 1 +4386 22 1 +4386 332 1 +4386 49 1 +4386 424 1 +4386 426 1 +4386 112 1 +4396 137 1 +4396 4396 .8 +6446 6446 1 +6446 747 1 +6446 126 1 +1842 1928 .6 +1842 1658 .8 +1842 2614 .8 +1842 990 .8 +1842 2272 .6 +1842 933 .6 +1842 735 1 +1842 323 1 +6447 6447 1 +856 856 .8 +856 837 .8 +856 1454 .8 +856 97 .8 +856 1692 .8 +856 855 .8 +856 286 1 +856 739 1 +856 792 .8 +856 789 .8 +856 1690 .8 +856 4142 .8 +856 142 1 +856 1799 1 +856 329 1 +856 584 .8 +856 86 .8 +856 84 .8 +856 859 1 +856 3054 .8 +856 2239 1 +856 3053 .8 +1934 1934 1 +1934 810 1 +1934 1626 .8 +1934 1609 .8 +1934 923 .6 +1934 1216 .8 +1934 1079 .8 +1934 905 .8 +1934 1627 .8 +1934 1391 1 +1934 841 .8 +1934 1628 .8 +1934 1026 .8 +1934 42 1 +1934 948 .6 +1934 972 .6 +1934 1629 1 +1934 1201 .8 +1934 922 .8 +1934 1298 .8 +1934 1630 .6 +1934 277 .8 +1934 617 .8 +1934 1631 .8 +1934 853 .8 +1934 795 .8 +1934 1632 1 +1934 806 .6 +1934 1633 .8 +1934 1634 .8 +1934 1635 .8 +1934 982 .8 +1934 1638 .6 +1934 548 .8 +1934 225 .8 +1934 1087 .8 +1934 1637 .8 +1934 439 .8 +1934 1360 1 +1934 1636 .8 +1934 1639 .8 +1934 680 .8 +1934 878 .8 +1934 1019 .6 +1934 1640 .8 +1934 1174 .6 +1934 251 .6 +1934 1641 .8 +1934 263 .8 +1934 1642 .8 +1934 1183 .8 +1934 1643 1 +1934 23 .6 +1934 1644 .6 +1934 1645 .8 +1934 1646 .8 +1934 61 .8 +1934 90 .8 +1934 1647 .8 +1934 958 .8 +1934 1648 1 +1934 1622 .8 +1934 141 .8 +1934 1650 .8 +1934 357 .8 +1934 1566 .8 +1934 1187 .8 +1934 1651 .8 +1934 1652 1 +1934 1653 .8 +1934 1064 .8 +1934 96 .8 +1934 1655 1 +1934 1656 .8 +1934 1585 .8 +1934 98 .8 +1934 1657 .8 +1934 988 .8 +1934 1368 .8 +1934 1658 .8 +1934 91 .8 +1934 1394 .8 +1934 1601 .8 +1934 1352 .8 +1934 1027 .8 +1934 1659 .8 +1934 681 .8 +1934 1660 .8 +1934 1661 .8 +1934 1662 .8 +1934 298 .8 +1934 1182 .6 +1934 785 .8 +1934 587 .8 +1934 1663 .8 +3750 1037 .8 +972 972 .6 +972 1047 .8 +972 67 .8 +972 19 .8 +972 2072 .8 +972 531 .6 +972 34 .8 +972 1172 .8 +972 836 .8 +972 89 .6 +972 528 .8 +972 724 .6 +972 1302 .6 +972 1301 .8 +972 757 .6 +972 956 .6 +972 4122 .6 +972 841 .8 +972 846 1 +972 1703 .6 +972 518 .6 +972 623 .8 +972 1415 .6 +972 712 .8 +972 923 .6 +972 598 .8 +972 319 .8 +972 429 1 +972 1927 .8 +972 1019 .6 +972 1281 1 +972 2021 .6 +972 305 1 +972 22 1 +972 3126 .6 +1520 2721 .8 +1520 425 1 +1520 118 1 +1520 22 1 +1520 424 1 +1520 427 1 +1520 426 1 +1520 1124 1 +1520 112 1 +1520 2722 .8 +1520 3072 .8 +6448 323 1 +6448 1842 1 +6448 1850 1 +6449 6449 .8 +6449 1046 .8 +6450 6450 .6 +6451 6451 .6 +6452 879 .8 +6452 505 .8 +1023 4329 .8 +1023 1428 .8 +1023 2652 .8 +1023 1546 .8 +1023 738 .8 +1023 30 1 +1023 1123 1 +1023 22 1 +1023 327 .8 +1023 1020 1 +1023 1799 1 +1023 3017 .8 +1023 1720 1 +1023 352 1 +1023 326 .8 +1023 436 1 +1023 95 .8 +1023 801 .8 +1023 318 1 +1023 286 1 +1023 1022 1 +1023 104 .8 +1023 92 1 +1023 1496 .8 +1023 739 1 +1023 2238 1 +1023 1027 .8 +1023 1898 .8 +1023 1682 .8 +1023 1119 .8 +1023 1687 .8 +1023 5244 .6 +1023 751 1 +1023 103 .8 +1023 5490 .8 +1023 1686 .8 +1023 921 1 +1023 394 1 +1023 895 .8 +6453 6453 .6 +6453 610 .8 +1844 2614 .8 +1844 1353 .8 +1844 1495 1 +1844 30 1 +1844 2883 .8 +1844 579 .8 +1844 1658 .8 +1844 3442 .6 +1844 9 .8 +1844 126 1 +1844 735 1 +1844 791 1 +1844 1024 .8 +1844 46 1 +1844 807 .8 +1844 939 .8 +1844 577 1 +1844 1166 .8 +1844 774 1 +1844 949 1 +1844 172 1 +1844 780 .8 +1844 171 1 +1844 719 1 +1844 1752 1 +1844 1847 1 +1844 950 .6 +1844 174 .8 +1844 103 .8 +1844 1840 .8 +1844 157 .8 +1844 856 1 +2637 2635 .8 +2637 1892 1 +2637 907 1 +2637 1288 .8 +46 46 1 +46 719 1 +46 30 .8 +46 1075 .8 +46 1518 .8 +46 13 .8 +46 1022 .8 +46 438 .8 +46 435 .8 +46 303 .8 +46 431 1 +46 95 .8 +46 1894 .8 +46 1996 .8 +46 318 1 +46 1720 .8 +46 352 1 +46 439 .6 +46 305 .8 +46 738 .8 +46 440 1 +46 316 1 +46 1447 1 +46 2210 .6 +46 4643 .8 +46 1160 .8 +46 434 .8 +46 441 .8 +46 432 .8 +46 286 .8 +46 736 .8 +46 883 .8 +46 1477 .6 +46 324 1 +46 701 .8 +46 2715 .8 +46 2553 .6 +46 1086 .8 +46 436 .8 +46 2078 .6 +46 1892 .8 +46 437 .8 +46 443 .8 +46 351 .8 +46 1123 1 +46 642 .8 +46 467 .8 +46 468 .8 +46 326 1 +46 645 .8 +46 4066 .8 +46 1993 1 +46 22 1 +46 429 1 +46 1799 .8 +46 320 .6 +46 1583 1 +46 780 .6 +46 329 1 +46 445 .8 +46 506 1 +46 1116 1 +46 2002 .8 +46 428 .8 +46 1162 .8 +46 1847 .8 +46 934 1 +46 1647 .8 +46 446 .8 +46 1818 .8 +46 3136 .6 +46 577 1 +46 5 1 +46 647 1 +46 844 .6 +46 513 .8 +46 1024 .8 +46 405 .8 +46 714 1 +46 2216 .8 +46 943 1 +46 1270 .8 +46 643 1 +46 882 .8 +46 712 .8 +46 523 .8 +46 511 .8 +46 172 1 +46 525 .8 +46 859 .8 +46 353 1 +46 328 1 +46 1068 1 +73 73 .8 +73 1764 .8 +3029 3029 .6 +3029 46 1 +4077 4077 .6 +4077 1411 .6 +4077 438 .8 +4077 46 1 +4077 44 .8 +4077 431 1 +4077 995 .6 +4077 4076 .6 +4077 30 1 +4077 385 .8 +4077 784 .8 +4077 286 1 +4077 714 .8 +4077 1337 .8 +4077 858 1 +1568 1568 .6 +1568 1278 1 +1568 126 1 +1568 1108 .8 +1568 718 .8 +1568 674 .8 +1568 3210 .8 +1568 2902 1 +3573 45 1 +3573 13 1 +3573 1336 1 +3573 1660 .6 +3573 2610 .8 +453 2749 .6 +453 584 .6 +453 1407 .6 +453 5197 .6 +453 2013 .6 +453 2965 .6 +453 449 .6 +453 524 .6 +453 241 .6 +453 450 .6 +453 452 .6 +453 448 .6 +453 4997 .6 +453 1674 .6 +453 2782 .6 +453 157 .6 +6454 6454 .8 +941 524 .6 +3006 350 1 +3006 352 1 +3006 2076 1 +3006 3786 .8 +3006 4148 1 +3006 4694 .8 +3006 3572 .8 +6455 6455 1 +3481 3481 .6 +3481 4679 .8 +3481 634 .8 +3481 1781 .8 +526 1065 1 +526 1371 .8 +194 194 .6 +194 1450 .8 +194 2171 .6 +194 126 1 +194 1609 .8 +194 274 .8 +194 624 .8 +194 629 .8 +194 286 1 +194 30 1 +194 1641 .8 +194 1571 .8 +194 49 1 +194 577 1 +194 764 1 +194 191 .8 +194 45 1 +194 289 .6 +194 3598 .6 +194 3408 .6 +194 572 1 +194 2549 .6 +194 1312 .8 +194 92 1 +194 167 1 +194 3565 .6 +194 2615 .8 +194 4220 .6 +194 165 .8 +194 241 1 +194 584 1 +194 1000 .8 +194 1909 .8 +194 1533 .8 +194 2160 .6 +194 121 1 +194 329 1 +194 336 .8 +194 2917 .6 +194 3601 .6 +194 5094 .6 +194 3252 .8 +194 332 1 +194 282 1 +194 331 1 +194 457 .8 +194 637 1 +194 1515 .6 +194 1200 1 +194 603 .8 +194 166 .8 +194 295 .8 +194 3250 .6 +194 67 .8 +194 175 .8 +194 3102 .8 +194 4983 .8 +194 739 .8 +194 918 .8 +194 3599 .8 +194 2292 .6 +194 1175 .8 +194 2550 .8 +194 710 1 +194 46 1 +194 193 .8 +194 1768 1 +194 627 .8 +194 1023 .8 +194 2729 .8 +194 1449 .8 +194 1448 .6 +194 5095 .6 +194 2314 .8 +194 379 .8 +194 385 .8 +194 1211 .8 +194 4653 .6 +194 65 1 +194 2548 .6 +194 805 .8 +194 2051 .8 +194 328 1 +194 770 1 +194 2831 .6 +194 1126 .8 +194 168 .8 +194 333 .8 +194 48 .6 +779 1418 .8 +779 780 .8 +779 346 1 +779 892 .8 +779 2482 1 +779 3112 .8 +779 610 1 +779 2939 .8 +779 1391 .8 +779 2126 .8 +779 3288 .8 +779 2125 .8 +779 1654 .8 +779 349 1 +779 2144 .8 +779 1373 .8 +779 128 1 +779 1586 1 +779 1649 .6 +779 3675 .6 +779 3424 .6 +779 2254 1 +779 6128 .8 +779 5010 .6 +779 880 1 +3429 3429 1 +3429 4166 1 +3429 2232 1 +3429 1910 1 +3429 46 1 +3429 506 1 +3429 445 1 +3429 432 1 +3429 2 1 +3429 373 1 +3429 1171 1 +3429 2231 1 +3429 597 .8 +3429 3428 .8 +3429 709 .8 +3429 708 .8 +3429 1654 1 +3429 324 1 +3429 438 1 +6456 6456 .6 +6457 6457 .8 +6457 4386 .8 +6457 770 1 +6457 22 1 +6457 426 1 +6457 424 1 +6458 6458 1 +2587 2587 .8 +2587 351 .8 +2587 2076 1 +2587 2586 .6 +6459 1750 .8 +1674 1674 .6 +1674 1673 .6 +1674 449 .8 +1674 452 .8 +1674 450 .8 +1674 451 .8 +1674 448 .6 +1674 657 .8 +1674 3465 .6 +1674 4997 .6 +1674 453 .6 +1865 1218 .8 +1865 1127 1 +1865 652 1 +1865 747 1 +1865 110 1 +1865 1499 1 +1865 138 .6 +1865 1222 1 +6460 6460 1 +1237 44 1 +1237 1236 .6 +1237 431 1 +1237 435 1 +1237 4 .8 +1237 1244 1 +1237 491 .8 +1237 1893 .8 +1237 4775 .6 +1237 1407 .6 +1237 1393 .8 +1237 2141 .6 +1237 531 .6 +1237 4674 .8 +1237 2232 1 +1237 486 .8 +1237 1908 1 +1237 639 1 +1237 1910 .8 +1237 1906 .8 +1237 577 1 +1237 1352 .8 +1237 790 .8 +1237 5072 .6 +1237 1668 .8 +1237 3095 .6 +1237 1842 .6 +1237 221 .6 +1237 2246 1 +1237 1512 .8 +1237 737 .8 +1237 623 .8 +1237 1245 .8 +1237 2898 .6 +1237 1825 .6 +1237 1630 .6 +1237 1830 .8 +1237 2240 .8 +1237 2350 .8 +1237 597 .8 +1237 1237 .8 +1237 1514 .8 +1237 632 .8 +1237 2706 .6 +1237 5512 .6 +1237 5327 .6 +1237 2707 1 +1237 2970 .6 +1237 2235 1 +1237 983 .8 +1237 2020 .8 +2145 2145 .8 +2990 2482 1 +2990 2990 .6 +2990 126 1 +2990 1418 .8 +2990 780 .8 +2428 2427 1 +2428 1653 .8 +2428 865 .8 +1897 1897 .8 +1897 1896 .8 +4270 4270 .6 +1351 1351 .8 +1351 853 .8 +1351 623 .8 +1351 1370 .8 +1351 1775 .8 +5959 5959 .6 +6461 6461 1 +6462 6462 1 +6463 30 1 +6463 46 1 +1393 1244 1 +1393 1237 1 +1393 5785 .6 +1393 759 .8 +1393 531 .6 +1393 268 1 +1393 3316 .6 +1393 922 .6 +1393 349 1 +1393 632 .8 +1393 1738 .8 +1393 988 .6 +1393 938 .6 +1393 335 .8 +1393 1154 .6 +1393 54 .6 +1393 98 .6 +1393 888 .8 +1393 653 .8 +1393 776 .8 +1393 80 .6 +1393 6008 .6 +1393 1741 .8 +1393 597 .8 +1393 1740 .8 +1393 1388 .8 +1393 1277 .6 +6464 1047 .8 +4527 2214 1 +1519 1519 .8 +1519 806 .8 +1519 2377 .8 +6465 6465 1 +5554 5554 .6 +5554 1313 1 +5554 30 1 +5554 46 1 +6466 6466 .8 +6467 6467 .6 +6467 642 1 +1650 1914 .6 +1650 588 .8 +1650 19 .8 +1650 1650 .8 +1650 988 .6 +1650 3103 .8 +1650 94 .8 +1650 144 .8 +1650 1521 .8 +1650 1000 .8 +1650 322 .6 +1650 199 .6 +1650 246 .6 +1650 613 .6 +1650 209 1 +1650 242 .6 +1650 1496 .6 +1650 157 .8 +1650 809 .6 +1650 1549 .8 +1650 3087 .6 +1650 703 .6 +1650 3433 .6 +1650 787 1 +1650 1154 .8 +1650 2141 .8 +1650 89 .6 +1650 62 .8 +1650 682 .8 +1650 3609 .6 +1650 2777 .6 +1650 812 .6 +1650 642 1 +1650 1963 .6 +1650 1153 .6 +1650 625 .6 +1650 1142 .8 +1650 6468 .6 +1650 2754 .8 +1650 802 1 +3880 3880 .6 +3880 2807 1 +3880 1529 1 +3880 708 .8 +3880 2803 1 +3880 30 1 +3880 46 1 +3880 9 .8 +675 675 .6 +675 673 1 +675 893 1 +675 671 .8 +675 672 1 +675 116 .8 +675 2193 .6 +675 925 .8 +6469 2355 .8 +6469 274 .8 +2638 727 .8 +2638 443 1 +2638 437 1 +2638 30 1 +2638 353 1 +2638 782 .8 +2638 3982 .8 +2638 1049 1 +2274 62 1 +2274 92 .8 +2274 1378 1 +2274 893 1 +2274 295 1 +2274 711 .8 +2274 22 1 +2274 1126 1 +2274 2570 .8 +2274 882 1 +2274 45 1 +2274 469 1 +2274 751 1 +2274 2803 1 +2274 67 .8 +2274 2774 1 +2274 519 .8 +2274 1369 1 +561 273 .8 +561 353 1 +561 1052 .8 +561 561 .8 +1417 1417 .8 +1417 1418 .8 +1417 3288 .8 +1417 2482 .8 +1417 1391 .8 +1417 1517 .8 +1417 789 .8 +1417 1416 .8 +1417 2125 .8 +1417 780 .8 +1104 30 1 +1104 719 1 +1104 328 1 +1104 2401 .8 +6470 6471 1 +437 437 1 +437 209 .8 +437 2078 .8 +437 443 .8 +437 46 1 +437 438 .8 +437 1447 1 +437 30 1 +437 1718 .6 +437 1123 1 +437 439 .8 +437 318 .8 +437 1894 1 +437 2210 1 +437 352 1 +437 1720 1 +437 1086 .8 +437 431 1 +437 435 .8 +437 1996 .8 +437 577 .8 +437 1160 .8 +437 440 1 +437 4191 .8 +437 1860 .6 +437 93 .6 +437 434 .8 +437 1181 .6 +437 1892 .8 +437 858 1 +437 2553 .8 +437 2290 1 +437 316 1 +437 1477 .6 +437 2068 .8 +437 2002 .6 +437 433 1 +437 314 .6 +437 584 .8 +437 506 1 +437 1162 .8 +437 441 1 +437 2725 .8 +437 1834 .8 +437 445 1 +437 2323 .8 +437 1835 .8 +437 512 .8 +437 582 .8 +437 550 .8 +437 394 .8 +437 429 1 +437 2216 .8 +437 639 1 +437 80 .8 +437 1642 .8 +437 215 1 +437 943 1 +1581 438 .8 +1581 46 1 +1581 1123 1 +1581 1996 .8 +990 1100 .8 +990 1400 .6 +990 1002 1 +990 30 1 +990 46 1 +990 174 .8 +990 324 1 +990 719 1 +990 1404 .8 +990 121 1 +990 1754 1 +990 466 .8 +990 467 .8 +990 286 .8 +990 1133 .8 +990 329 1 +990 298 .8 +990 4371 .6 +990 1663 .8 +990 2555 .8 +990 1101 .8 +990 1927 .6 +990 8 .8 +990 1211 .8 +990 304 1 +990 1047 .6 +990 2614 .8 +990 1001 1 +990 307 .8 +990 1928 .6 +990 1020 1 +990 301 .8 +990 1658 .8 +990 1436 1 +990 171 1 +990 172 1 +990 915 .8 +990 2272 .6 +990 1842 .8 +990 934 1 +990 438 .8 +990 348 1 +990 2891 .8 +990 2271 .8 +990 350 1 +990 1841 .8 +990 735 1 +990 623 .8 +990 512 .8 +990 1840 .6 +990 712 1 +990 829 .8 +990 349 1 +990 577 1 +990 844 .6 +990 780 .8 +990 524 .8 +990 511 1 +990 305 1 +990 1752 .8 +990 1495 1 +990 1847 1 +990 791 1 +990 523 .8 +990 3269 .6 +990 1589 .8 +990 1893 .8 +990 810 .8 +990 1049 1 +990 939 .8 +990 1938 .6 +990 1645 .8 +990 807 .8 +990 1004 .8 +990 2226 1 +990 892 .6 +990 346 1 +990 525 .8 +990 4583 .8 +990 2450 1 +990 1588 .6 +990 126 1 +990 492 1 +990 1851 1 +990 620 .8 +990 303 1 +990 718 .8 +990 513 .8 +990 1529 .8 +990 982 .8 +990 2302 .6 +990 1075 1 +990 532 .8 +990 2974 .8 +990 1850 .8 +990 843 .8 +990 1817 .8 +990 4581 .8 +990 4179 .8 +990 2556 .8 +990 1384 .6 +990 2149 .8 +990 728 1 +4069 2318 .8 +4069 310 1 +4069 4069 .6 +6472 6472 .6 +6472 2512 .6 +1943 1000 .8 +1943 715 1 +1943 553 .8 +6473 6473 1 +6474 6474 .6 +6475 6475 .6 +2698 2002 .8 +2698 306 .8 +2698 1162 .8 +2698 95 .8 +2698 305 1 +2698 46 1 +2698 303 1 +2698 432 .8 +2698 304 1 +2698 2697 1 +620 620 .6 +620 593 .8 +620 492 1 +620 712 .8 +620 830 1 +620 2450 1 +620 346 .8 +620 715 .8 +620 2251 .8 +620 780 .8 +3149 3149 .8 +3149 87 .6 +3149 4395 .8 +3149 1179 .8 +3149 2363 .6 +3149 841 .6 +3149 5490 .8 +1366 1366 .8 +1366 289 .6 +1084 1084 .8 +1084 328 1 +1084 326 1 +1084 2994 .8 +1084 1371 1 +1084 1753 1 +6476 6476 1 +4144 4144 .6 +4144 234 .8 +110 1590 .6 +110 1499 .8 +110 1127 1 +110 652 1 +110 105 .8 +110 1218 .8 +110 108 .8 +110 1862 .8 +110 2453 .8 +110 659 1 +110 290 1 +110 764 1 +110 1122 .8 +110 2289 .8 +110 377 .8 +110 2456 .6 +110 2454 .8 +110 2455 .6 +110 1212 .8 +110 1210 .8 +110 110 .8 +110 349 .8 +110 348 .8 +110 3642 .8 +110 46 1 +110 3335 .6 +110 1123 1 +110 1222 .8 +110 1117 1 +110 1993 .8 +110 325 .8 +110 351 .8 +110 1604 .6 +110 1020 1 +110 424 .8 +110 324 .8 +110 137 .8 +110 2458 .8 +110 2457 .8 +110 1479 1 +110 2461 .8 +110 584 .8 +110 747 1 +110 1605 .8 +110 2378 .8 +110 4395 .6 +110 79 .8 +110 1214 .8 +110 746 1 +110 748 1 +110 2459 .8 +110 836 .6 +110 1219 .8 +110 1213 .8 +110 1205 .6 +110 1751 .6 +110 749 1 +110 1215 .6 +110 743 1 +110 2460 .8 +110 3338 .6 +110 2501 .8 +110 175 .8 +110 3749 .6 +110 3147 .6 +110 3216 .6 +110 121 .8 +110 1434 .8 +110 209 .8 +110 1921 .8 +110 22 1 +110 2278 .8 +110 118 .8 +110 1075 .8 +110 858 .8 +110 1847 .8 +110 2320 .6 +110 1247 1 +110 5127 .8 +110 577 .8 +110 647 1 +110 1603 .8 +110 112 .8 +110 326 1 +110 346 .6 +110 3644 .6 +110 3725 .8 +110 3645 .8 +110 1189 .8 +110 1497 .8 +110 3396 .8 +110 1206 .6 +110 1201 .8 +110 3217 .6 +110 376 .8 +110 994 .6 +110 1170 .6 +110 1070 .8 +110 593 .8 +110 1910 .8 +6477 6477 .6 +4671 442 .8 +4671 232 .6 +6478 6478 .6 +1797 1797 .6 +1797 2538 .8 +4749 4349 .8 +4749 1586 .8 +4749 2291 1 +2295 751 .8 +2295 2164 .8 +2295 2523 .6 +2295 928 .6 +4322 4322 .8 +4322 165 1 +5270 4539 .8 +5270 46 1 +5270 225 .8 +5969 5969 .8 +29 29 .8 +29 32 .8 +29 33 .6 +29 31 1 +29 26 .8 +29 28 .8 +29 27 .8 +29 3241 .8 +6479 6479 .6 +6480 6480 .8 +6481 813 1 +6482 6482 .6 +2367 2267 1 +2367 3285 1 +2367 2367 1 +2367 2368 1 +2367 2365 1 +1937 2879 .8 +1937 1752 .8 +1858 1858 .6 +1858 1856 1 +1858 1855 .8 +1858 126 1 +1858 46 1 +1858 4 .8 +1858 1065 1 +1858 428 1 +1858 431 1 +1858 717 1 +1858 429 1 +1858 1223 .8 +1858 3063 .6 +1858 5702 .6 +1383 1383 .8 +1383 45 1 +1383 2134 .6 +1383 261 .8 +1383 1397 .8 +1383 552 .8 +1383 773 .8 +1383 891 .6 +1383 3455 .6 +1383 597 .8 +1383 4208 .6 +1683 1683 .8 +1683 651 .8 +1683 2543 .8 +1683 2544 .8 +5332 5331 .8 +5332 5332 .8 +5524 5524 .8 +5524 148 .8 +5524 46 1 +6483 6483 .6 +158 158 .6 +6484 6484 .6 +6485 6485 .8 +6486 1912 1 +6486 1369 .6 +3201 3201 .6 +207 207 .8 +207 209 1 +207 210 1 +207 1549 .8 +207 2745 .6 +207 715 1 +207 2687 .6 +207 206 .8 +207 6487 .8 +207 4124 .8 +2314 2314 1 +2314 295 1 +2314 165 .8 +2314 3250 .8 +2314 603 .8 +2314 1450 .8 +2314 167 1 +2314 3565 .8 +2314 1646 1 +2314 2274 1 +4688 4688 .6 +4688 677 .6 +4688 30 1 +4688 46 1 +4688 2891 .8 +6488 6488 .6 +5490 5490 .8 +5490 1023 .8 +5490 1123 1 +5490 352 1 +5490 3100 .8 +5490 1898 .8 +5490 841 .6 +5490 3149 .6 +5490 1179 .8 +5490 92 .8 +5490 175 1 +5490 329 1 +5490 4353 .8 +5490 784 .8 +5490 1692 .8 +5490 126 1 +5490 579 .8 +5490 759 .8 +5490 46 1 +5490 166 .8 +5490 1761 .8 +5490 45 1 +1012 142 .8 +1012 669 .8 +1012 1430 1 +1012 649 1 +1012 328 1 +1012 1930 1 +1012 1637 .8 +1012 512 .8 +1012 475 .8 +1012 2662 .8 +1012 861 .8 +2722 1520 .6 +2722 2721 .6 +2722 22 1 +2722 3072 1 +2722 2722 .8 +2823 2823 1 +2823 1177 1 +2823 3770 1 +2823 764 1 +2823 1171 1 +2823 640 1 +2823 770 1 +2823 869 1 +2823 2949 1 +2823 22 1 +2823 282 1 +2823 1230 1 +2823 359 .6 +2823 1123 1 +2823 1122 1 +2823 2521 1 +2823 1723 1 +2823 598 .8 +2823 424 1 +2823 1231 1 +2823 837 .8 +2823 3807 1 +2823 2420 1 +2823 273 1 +2823 1068 1 +6489 1961 .8 +2154 3547 .8 +2154 1068 1 +6490 6490 .6 +1737 1737 .6 +1737 148 1 +1737 1912 .8 +3501 107 .6 +3501 65 .8 +2913 2913 .8 +2913 126 1 +2913 1662 .8 +2913 1580 .8 +2913 1568 .8 +2913 1278 1 +2913 2746 .8 +2913 718 .8 +2913 584 .8 +2913 3761 .8 +2913 5318 .8 +2913 1668 1 +2913 128 1 +2913 457 1 +2913 672 .8 +2913 2762 .8 +2913 1065 .8 +2913 787 .8 +2913 1492 .8 +2913 5495 .8 +2913 2902 .8 +2913 788 .8 +2913 2754 .8 +2913 4221 .8 +2913 779 1 +573 362 .6 +573 928 .6 +573 1021 1 +573 578 .8 +573 703 .6 +573 1091 .6 +6491 6491 .6 +6491 1351 .8 +4226 2340 1 +4226 2339 1 +5076 1406 .6 +1512 1512 .8 +1512 1548 .8 +1512 34 1 +1512 2076 1 +1512 1313 1 +1512 830 1 +1512 904 .8 +1512 303 1 +1512 929 .6 +1512 4795 .8 +1512 556 .8 +1512 577 1 +1512 934 1 +1512 349 1 +1512 813 1 +1512 23 .6 +1512 2246 1 +1512 1175 1 +1512 193 .8 +1512 4057 .6 +1512 46 1 +1512 328 1 +1512 1899 .6 +1512 1237 .8 +1512 3407 .6 +1512 1145 .8 +1512 3403 .6 +1512 1847 1 +1512 888 .8 +1512 2792 .6 +1512 1586 .8 +1512 892 .8 +1512 1183 .6 +1512 1982 .6 +1512 188 .6 +1512 1418 .8 +1512 1085 1 +1512 610 1 +1512 1773 .6 +1512 791 .8 +1512 1510 .8 +1512 1782 .8 +1512 1734 .6 +1512 919 .8 +1512 3915 .8 +1512 124 .6 +1512 230 .8 +1512 1752 .8 +1512 1636 .6 +6492 1562 1 +6492 1579 1 +6493 6493 1 +800 148 1 +800 2517 1 +800 118 1 +800 126 1 +800 286 .6 +800 714 1 +800 647 1 +800 582 1 +800 327 .8 +6494 6494 1 +6495 6495 .6 +302 302 .8 +1774 1774 .6 +1774 3482 1 +1774 1178 .8 +1774 1662 .8 +1774 904 .8 +1774 207 .8 +1774 776 1 +1774 403 .6 +4257 4257 .8 +4257 5268 .6 +4257 1823 .6 +4257 428 1 +4257 3742 .8 +4257 4253 .8 +4257 4258 .8 +4257 1974 1 +4257 46 1 +4257 863 .8 +6496 6496 1 +4231 1386 .6 +4231 1379 .6 +4231 5725 .6 +4231 4230 .6 +863 863 .6 +863 801 1 +863 1823 .6 +863 739 1 +863 84 .8 +863 1635 .8 +863 142 1 +863 3292 .8 +863 46 1 +863 324 1 +863 855 1 +863 792 1 +863 1308 .8 +863 837 .8 +863 91 .8 +863 736 1 +863 429 1 +863 802 1 +863 1000 .8 +863 2751 .8 +863 584 1 +863 286 1 +863 714 1 +863 126 1 +863 860 1 +863 4519 .6 +863 30 1 +863 175 1 +863 1659 .8 +863 86 .8 +863 857 1 +863 853 .8 +863 643 1 +863 3293 .6 +863 3291 .6 +863 718 .8 +863 618 1 +863 1067 .8 +863 2781 .6 +863 3647 .8 +863 292 1 +863 3742 .6 +863 1974 1 +1101 1101 .6 +1101 1616 .8 +1101 46 1 +1101 30 1 +1101 1002 .8 +1101 1100 .8 +1101 328 1 +1101 934 .8 +1101 791 .6 +1101 735 .8 +1101 172 .8 +1101 1075 .8 +1101 595 .8 +1101 326 1 +1101 719 1 +1101 324 1 +1101 344 .8 +1101 2600 .6 +1101 990 .6 +3413 3413 1 +3413 597 .8 +3413 714 1 +3413 1579 1 +3413 1052 .8 +6497 6497 .8 +6498 6498 .6 +1352 577 1 +1352 2246 1 +1352 659 1 +1352 523 .8 +1352 2208 .8 +1352 469 .8 +1352 858 1 +1352 983 1 +1352 274 1 +1352 525 .8 +1352 193 1 +1352 624 1 +1352 2550 .8 +1352 1352 .6 +1352 623 .8 +1352 627 1 +1352 194 .8 +1352 893 1 +1352 1154 .8 +1352 1246 1 +1352 547 .8 +1352 793 .8 +1352 621 1 +1352 2986 1 +4493 112 1 +4117 4117 .6 +4117 584 1 +4117 1407 .6 +6499 6499 .6 +4150 746 1 +4150 2460 1 +4150 749 1 +4150 2289 .8 +4150 659 1 +4150 747 1 +4150 290 1 +4150 1479 1 +4150 748 1 +4150 4150 .6 +4150 1671 .6 +4150 1499 1 +4150 652 1 +4150 1218 .8 +4150 108 .8 +4150 1862 .8 +4150 2453 .8 +4150 377 .8 +4150 2455 .8 +4150 1212 .8 +4150 3642 .8 +4150 46 1 +4150 1222 1 +4150 137 1 +4150 2457 .8 +4150 1605 .8 +4150 1214 .8 +4150 2459 1 +4150 1219 .8 +4150 1213 1 +4150 2501 .8 +4150 647 1 +4150 4485 .8 +4150 714 .8 +4150 3725 .8 +4150 3645 .8 +6500 1512 .8 +6500 604 .8 +6500 1747 .8 +6501 6502 1 +1453 1453 .6 +1453 351 .8 +1453 1126 1 +4583 4183 1 +4583 1020 1 +4583 522 1 +4583 649 1 +4583 2855 1 +4583 30 1 +4583 858 1 +4583 990 1 +4583 349 1 +4583 2226 1 +4583 1012 1 +4583 1742 1 +4583 511 1 +4583 326 1 +1927 1927 .6 +1927 172 1 +1927 1133 .8 +1927 645 .8 +1927 638 .8 +1927 30 1 +1927 1663 .8 +1927 1616 1 +1927 1437 .8 +1927 3172 .8 +1927 807 .8 +6503 6503 .8 +6504 6504 .6 +401 397 .6 +401 401 .8 +401 3112 1 +401 4911 1 +401 597 .8 +401 594 .8 +4182 4182 .8 +2600 2600 .6 +2600 587 .6 +2600 1167 .8 +2600 323 1 +2600 46 1 +2600 1101 .8 +2600 353 1 +2600 30 1 +2600 22 1 +2600 352 1 +3084 3084 .6 +3084 2593 .6 +881 881 .8 +881 843 .8 +881 2002 .8 +881 882 .8 +881 878 .8 +881 877 .8 +881 306 .8 +881 844 .6 +6505 6505 .6 +5494 577 1 +2196 2729 .8 +2196 1411 .6 +2196 2195 .8 +1123 1123 1 +1123 282 1 +1123 1122 1 +1985 1984 .6 +1985 576 .8 +1600 1600 .8 +1600 1595 .8 +1600 1234 .8 +6278 2210 .8 +6278 6278 .8 +2850 1653 .8 +2970 2970 .6 +2970 1978 .8 +2970 1238 1 +2970 597 .8 +2970 625 .6 +2970 1237 .8 +3437 3437 .8 +6506 126 1 +6506 1117 1 +3318 912 .8 +6507 6507 .6 +6508 1199 .8 +6508 6508 .6 +581 1190 .8 +581 580 .8 +581 19 .8 +581 579 .8 +581 214 .6 +581 703 .6 +581 2002 .8 +581 362 .6 +581 1162 1 +581 581 .8 +581 96 .8 +581 2615 .8 +581 2611 .8 +6509 442 .6 +6509 429 1 +6509 2207 .8 +6509 6509 .6 +6509 1123 1 +6509 151 .8 +6509 4671 .6 +2522 2522 .6 +2522 46 1 +2522 431 1 +2522 439 .8 +2522 271 .8 +2522 1899 .6 +2522 584 1 +2522 5785 .8 +2522 959 .8 +2522 6021 .6 +2522 5928 .8 +2522 632 .8 +2522 429 1 +2522 997 .6 +2522 261 .8 +2522 593 .8 +2522 3402 .8 +2522 44 1 +2522 428 1 +2522 1060 .6 +2522 1237 1 +2522 4729 .8 +5206 5206 .6 +5206 1142 .8 +3064 1195 .8 +3064 22 1 +3064 426 1 +3064 424 1 +3064 285 .8 +3064 3064 .6 +1579 296 1 +1579 943 1 +1579 1052 .8 +1579 1562 .8 +1579 3024 .8 +1798 1798 .8 +1798 30 1 +1798 1915 .8 +1798 1133 .8 +1798 827 1 +1798 328 1 +1798 1917 .8 +1798 286 1 +1798 908 .6 +1798 1932 .8 +1798 1633 .8 +1798 1604 .6 +1798 1754 1 +1798 46 1 +1798 1454 .8 +1798 345 1 +1798 2184 .8 +1798 1062 .8 +1798 1815 .6 +1798 1216 .6 +1798 90 .8 +1798 1752 .8 +1798 1314 1 +1798 1961 .6 +1798 1929 .8 +1798 1602 .6 +1798 514 .8 +1798 647 1 +1798 1090 .6 +1798 3172 .8 +1798 831 .8 +1798 528 .6 +1798 1083 .8 +1798 1179 .8 +1798 1937 .8 +1798 892 .6 +1798 3476 .8 +1798 60 .6 +1798 910 .8 +1798 9 .8 +1798 1076 .6 +1798 712 .8 +1798 2171 1 +1798 1356 .8 +1798 171 1 +1798 2531 .8 +1798 956 .6 +1798 379 1 +1798 1440 .8 +1798 912 .8 +1798 918 1 +1798 791 1 +1798 346 .8 +1798 949 1 +1798 513 .8 +1798 1091 .6 +1798 525 .8 +1798 2270 .6 +1798 1471 1 +1798 522 1 +1798 2985 .8 +1798 3802 .8 +3217 994 .6 +3217 110 .8 +3217 376 .6 +3217 1590 .6 +3217 1170 .6 +3217 3217 .6 +1060 1060 .6 +1060 5928 .8 +1060 604 .6 +1060 996 .8 +1060 261 .6 +1060 1153 .6 +1060 157 .6 +1060 214 .8 +1060 545 .8 +1060 438 .8 +1060 536 .8 +1060 736 1 +1060 46 1 +1060 2522 .6 +1060 431 1 +1060 597 .8 +1060 556 .8 +1060 985 .6 +1060 2134 .6 +1060 3807 .8 +1060 638 1 +1060 1809 .6 +1060 399 .8 +1060 751 1 +1060 2143 .8 +1060 1211 1 +1060 764 .8 +1060 316 1 +1060 98 .8 +1060 89 .6 +1060 121 1 +6510 6510 .6 +4712 22 1 +6511 6511 .8 +5764 919 .8 +6512 6512 .8 +6513 6513 1 +2248 2248 .6 +2248 326 1 +2248 352 1 +2248 30 1 +2248 46 1 +2248 40 .6 +2248 1021 .8 +2248 1860 .8 +2248 829 .8 +2248 1915 .8 +2248 1546 .8 +2248 1434 .8 +2248 827 .8 +2248 918 .6 +2248 1720 1 +2248 1022 1 +2248 1081 .8 +2248 430 .8 +2248 65 .8 +2248 791 .8 +2248 282 .8 +2248 1616 .8 +2248 784 .8 +2248 33 .6 +2248 121 .8 +2248 719 1 +2248 1075 1 +2248 438 .6 +2248 325 1 +2248 501 .8 +2248 2247 .8 +2248 1798 .6 +2248 434 1 +2248 112 1 +2248 165 1 +6284 6284 .6 +1639 1639 .6 +1639 1020 1 +1639 328 1 +1639 46 1 +1639 30 1 +1639 719 1 +1639 737 .8 +1639 112 1 +1639 172 1 +1639 934 1 +1639 797 .8 +1639 791 .8 +1639 2064 .6 +1639 22 1 +1639 303 1 +1639 736 .8 +1639 468 .8 +1639 577 1 +1639 324 1 +1639 764 1 +6514 6514 .6 +1552 46 1 +1552 353 1 +1552 438 .8 +1552 121 1 +1552 1545 .8 +1552 506 1 +1552 431 1 +1552 714 1 +1552 157 .8 +1552 3402 .8 +1552 623 .8 +1552 22 1 +1552 642 1 +1552 1564 .8 +1552 167 .8 +1552 175 1 +1552 329 1 +1552 6515 .6 +1689 1689 .6 +1689 648 1 +1689 2376 .8 +1689 736 1 +1689 738 .8 +1689 1690 .8 +1689 739 1 +1689 741 .8 +1689 84 .8 +1689 1053 .8 +1689 833 .8 +1689 1176 1 +1689 142 .8 +1689 789 .8 +1689 740 .8 +1689 656 .8 +1689 46 1 +1689 86 .8 +1689 801 .8 +1689 1635 .8 +1689 835 .8 +1689 1298 .8 +1689 91 .8 +1689 106 .8 +1689 1628 .8 +1689 97 .8 +1689 837 .8 +1689 3077 .8 +1689 3541 .8 +1689 1627 .8 +1689 834 .8 +1689 1640 .8 +2350 2350 .6 +2350 399 .8 +2350 3856 .8 +2350 235 .6 +2350 1754 1 +2350 780 .8 +2350 1968 .8 +2350 2173 .8 +2350 346 .8 +2350 326 1 +2350 922 .8 +2350 271 .8 +2350 522 .8 +2350 719 1 +2350 349 1 +2350 624 1 +2350 3282 .6 +2350 802 1 +6516 6516 1 +2435 2435 .6 +2435 328 1 +2435 719 1 +2435 30 1 +2435 577 1 +2435 326 1 +2435 735 1 +2435 623 .8 +2435 468 1 +2435 466 .8 +2435 797 .8 +2435 1754 1 +2435 1847 1 +2435 915 .8 +2435 791 .8 +2435 1117 1 +2435 645 1 +2435 46 1 +2435 324 1 +2435 1075 1 +2435 1798 .6 +2435 1860 .8 +2435 1020 1 +2435 121 1 +2435 1434 1 +2435 934 1 +2435 174 .8 +2435 804 .6 +2435 323 .8 +2435 172 1 +2435 1490 1 +2435 126 1 +2435 1652 1 +2435 1309 1 +2435 805 1 +2435 807 1 +2435 119 1 +2435 2434 .8 +6517 6517 1 +1695 1219 .8 +1695 739 1 +1695 3249 .8 +1695 46 1 +1695 1695 .8 +1695 142 .8 +1695 22 1 +1695 855 .8 +1695 97 .8 +1695 647 1 +1695 736 .8 +1695 856 .8 +1695 837 .8 +1695 6518 .6 +1695 329 1 +2348 711 1 +2348 774 1 +2348 2348 .6 +2348 2464 1 +2348 898 .8 +6519 6519 .8 +6519 46 1 +6519 385 .8 +6520 6520 .6 +6521 6521 .6 +385 385 .8 +385 430 .8 +385 1172 .8 +385 2333 .8 +385 1211 .8 +385 387 .8 +385 3133 .8 +385 3132 .8 +3668 1211 .8 +3668 1176 1 +3668 764 1 +6522 6522 .8 +3542 3186 .8 +3542 3861 .8 +290 290 1 +290 659 1 +290 652 1 +290 286 1 +290 1127 1 +290 1499 .8 +290 1218 .8 +290 105 .8 +290 764 1 +290 137 1 +290 2458 .8 +290 2457 .8 +290 747 1 +290 79 .8 +290 1479 1 +290 748 1 +290 1214 .8 +290 746 1 +290 749 1 +290 743 1 +290 1210 .8 +290 647 1 +290 1070 1 +2331 540 .8 +2331 310 1 +2331 1411 .8 +2331 729 .8 +6523 6523 1 +6524 6524 .6 +6525 857 1 +6525 385 .8 +6525 46 1 +1845 1845 .6 +1845 1846 .8 +1845 1490 1 +1845 937 1 +1845 1492 .8 +1845 780 .8 +799 65 1 +799 34 1 +799 799 .6 +799 2503 .8 +6526 6526 .6 +2234 429 1 +2234 2092 1 +6527 6527 .6 +6528 6528 .6 +2521 1230 1 +2521 764 1 +2521 282 1 +2521 22 1 +2521 1126 .8 +2521 770 1 +2521 1122 1 +2521 598 .8 +2521 3807 1 +2521 1123 1 +2521 640 1 +2521 1723 1 +2521 1231 1 +2521 273 1 +2521 1171 1 +2521 2420 1 +2521 3770 1 +2521 3204 1 +2521 1125 1 +2521 4697 1 +2521 2949 1 +2521 2861 1 +6529 121 1 +6529 34 .6 +6529 584 1 +6530 6530 .8 +4903 4903 .6 +4903 261 .8 +4903 157 .8 +3644 3644 .6 +3644 1218 .8 +3644 377 .8 +3644 110 .8 +3644 2278 .8 +3644 2461 .8 +3644 647 1 +3644 46 1 +3644 659 1 +3644 747 1 +6531 328 1 +409 603 1 +409 6532 1 +409 165 1 +3887 2214 1 +3887 802 1 +923 923 .6 +923 3237 .8 +923 262 .6 +923 1139 .6 +923 528 .8 +923 1517 1 +923 987 .6 +923 19 .8 +923 993 .8 +923 972 .6 +923 258 .8 +923 1899 .6 +923 271 .8 +923 1303 .8 +923 864 1 +923 2616 .8 +923 211 1 +923 103 .8 +923 613 .6 +923 587 .8 +923 524 .8 +923 917 .8 +5306 3177 .8 +2207 1823 .6 +2207 429 .8 +2207 2069 .8 +2207 2091 .8 +2207 442 .8 +2207 720 .8 +2207 2236 1 +4804 4804 1 +4804 126 1 +6533 6533 1 +3416 3416 .6 +3416 597 .8 +3416 708 .8 +3416 2790 .8 +3416 1153 .8 +3416 1363 .8 +3416 1971 .6 +3416 461 1 +3416 3420 1 +3416 1636 1 +3416 2832 .8 +3416 807 1 +3416 1974 1 +5240 5240 .8 +6534 6534 .6 +1368 1368 .8 +1368 3986 .8 +1368 3427 .8 +1368 261 .8 +1368 400 1 +1368 773 .6 +1368 701 1 +1368 3446 .6 +1368 597 .8 +1368 2969 .8 +1368 124 .8 +1368 781 1 +6535 6535 .8 +3802 3754 .8 +3802 30 1 +3802 1309 1 +3802 1798 .8 +3802 3802 .6 +3802 1072 .8 +3802 2404 1 +718 5438 .8 +718 739 1 +718 84 .8 +718 1692 .8 +718 674 .8 +718 736 1 +718 855 1 +718 648 1 +718 837 .8 +718 142 1 +718 1165 .8 +718 584 1 +718 863 .8 +718 9 .8 +718 141 .8 +718 1490 .8 +718 1108 .8 +718 3491 .8 +718 90 .8 +718 835 .8 +718 1640 .8 +718 329 1 +718 1502 .8 +718 2918 .8 +718 792 1 +718 438 .8 +718 1568 .8 +718 3210 .8 +718 2141 .8 +718 643 1 +718 740 .8 +718 1053 .8 +718 988 .8 +718 30 1 +718 1286 .8 +718 2629 .8 +718 8 .8 +718 106 .8 +718 1298 .8 +718 4700 .6 +718 789 .8 +718 3119 .6 +718 701 .8 +718 859 1 +718 2681 .8 +718 157 .8 +718 703 .8 +718 536 .8 +718 912 .8 +718 1519 .8 +718 2902 1 +718 3587 .8 +718 801 .8 +718 1278 1 +718 3541 .8 +718 525 .8 +718 712 .8 +718 22 1 +718 786 .8 +718 1849 .6 +718 1000 .8 +718 963 .8 +718 2739 .8 +718 346 .8 +718 1001 .8 +718 492 1 +718 53 .8 +718 3814 .6 +718 1051 .8 +718 990 .8 +718 399 .8 +718 1586 .8 +718 1622 .8 +718 2746 .8 +718 1851 1 +718 2251 .8 +718 4194 .6 +718 2743 .8 +718 716 1 +6536 6536 .6 +265 710 1 +265 126 1 +265 4966 .8 +265 5023 1 +265 19 .6 +265 225 .8 +265 232 .6 +265 1246 1 +265 1430 1 +265 297 1 +265 234 .6 +265 251 .6 +265 3776 .8 +265 271 .8 +265 258 .8 +265 2333 .6 +265 144 1 +265 956 .6 +265 98 .6 +265 1451 .8 +265 945 .8 +265 965 .6 +265 788 .8 +265 240 .8 +265 1089 1 +265 328 1 +265 2865 .8 +265 1827 .8 +265 786 .8 +265 23 .6 +265 552 .6 +1847 1847 1 +1847 1162 .8 +1847 1167 .6 +93 434 1 +93 46 1 +93 738 .8 +93 1447 .8 +93 440 1 +93 319 .8 +93 328 1 +93 2652 .8 +93 1720 .8 +93 760 .6 +93 4344 .6 +93 384 .6 +93 280 .6 +93 6022 .6 +93 4071 .6 +93 4083 .8 +93 4862 .6 +93 1607 .6 +93 3407 .6 +93 2568 .6 +93 163 .6 +93 2527 .6 +93 1216 .6 +93 1730 .6 +93 540 .6 +93 1311 .6 +93 1041 .6 +93 361 .6 +93 244 .6 +93 1188 .6 +93 70 .6 +93 1192 .6 +93 246 .6 +93 904 .6 +93 1585 .6 +93 489 .6 +93 2411 .6 +93 893 .8 +93 240 .8 +93 1393 .8 +93 804 .8 +93 531 .6 +93 922 .6 +93 2931 .6 +93 1854 .6 +93 613 .8 +93 751 .6 +93 705 .6 +93 2506 .6 +93 1685 .6 +93 2334 .6 +93 316 1 +93 104 1 +93 258 .8 +93 1894 1 +93 5862 .8 +93 19 1 +93 436 1 +93 439 1 +93 3033 .6 +93 1070 .6 +93 1998 .6 +93 703 .6 +93 461 .6 +93 438 .8 +93 399 .8 +93 65 1 +6537 6537 .6 +6538 6538 .6 +6539 632 .6 +622 6540 .6 +622 4895 .8 +6541 6542 .6 +6543 497 1 +6544 172 1 +6544 224 .8 +6544 1190 .8 +6544 1150 .8 +6544 165 1 +6544 6545 .6 +6544 1569 .8 +6546 6546 .8 +6546 643 1 +6547 6547 .6 +1126 22 1 +1126 297 .8 +1126 1122 1 +1126 883 .8 +1126 1211 .8 +1126 598 .8 +1126 770 1 +1126 1453 .8 +1126 784 .8 +1126 2874 .8 +1126 282 1 +1126 2521 1 +1126 2261 .8 +1126 640 1 +1126 1171 1 +1126 2420 1 +1126 273 1 +1126 2949 1 +1126 4697 1 +1126 1723 1 +1126 2845 .8 +1126 2861 .8 +1126 137 1 +1126 1230 1 +1126 1280 .8 +1126 1068 .8 +1126 3770 1 +1126 2004 .8 +1126 271 .8 +1126 4200 .6 +1126 4633 .6 +1126 3399 1 +1126 1560 1 +1126 2573 .8 +1126 2572 .8 +1126 4696 1 +1126 3027 .8 +1126 4382 .6 +1126 849 .8 +1126 848 1 +1126 2198 1 +1564 4057 .8 +1564 1564 .6 +1564 346 .8 +1564 1545 .8 +1564 1552 .8 +2785 3807 1 +2785 1122 1 +2785 1123 1 +2785 273 1 +2785 1171 1 +2785 2420 1 +2785 1723 1 +2785 3770 1 +2785 4547 1 +2785 4696 1 +2785 2785 .6 +2785 1177 1 +2785 1231 1 +2785 640 1 +2785 424 1 +2785 2949 1 +2785 1126 1 +2785 598 1 +2785 647 1 +2785 1127 1 +2785 30 1 +2785 708 .8 +2785 125 .8 +2785 328 1 +2785 719 1 +2785 67 1 +2785 604 .8 +2785 830 1 +2785 335 1 +2785 2352 .8 +2785 2136 .8 +2785 189 .8 +2785 597 .8 +2785 2774 .8 +6548 6548 .6 +1127 1127 .8 +1127 290 1 +1127 659 1 +1127 652 1 +1127 2454 .8 +1127 1218 .8 +1127 105 .8 +1127 110 .8 +1127 2457 .8 +1127 137 1 +1127 1479 1 +1127 79 .8 +1127 747 1 +1127 746 1 +1127 748 1 +1127 1214 .8 +1127 1605 .8 +1127 749 1 +1127 647 1 +1127 2453 1 +1127 1212 .8 +1127 2278 .8 +1127 2289 .8 +1127 2461 .8 +1127 1210 .8 +1127 764 1 +1127 1222 1 +1127 296 1 +1127 858 1 +1127 1499 .8 +1127 2458 .8 +1127 1213 1 +1127 2460 1 +1127 872 1 +1127 297 1 +1127 19 1 +1127 954 .6 +6549 6549 1 +6549 1104 1 +6550 6550 .6 +6551 658 .8 +6551 167 .8 diff --git a/gascent.py b/gascent.py new file mode 100644 index 0000000000000000000000000000000000000000..cbe733fa882b9aa5d78b94f852e4d77446a7b541 --- /dev/null +++ b/gascent.py @@ -0,0 +1,897 @@ +import time +import random + +import numpy as np +import networkx as nx +import matplotlib.pyplot as plt +import matplotlib.lines as mlines + + +PLOTS_PATH = 'plots/' + + +class GA: + def __init__(self, W, b_vec, a_budget=None, initial_a="uniform", iters=1000, lrate=10, seed=5, verbose=False, **pars): + self.W = W + self.N = W.shape[0] + + self.max_iters, self.learning_rate = iters, lrate * a_budget / self.N + assert a_budget is not None + self.a_max = a_budget + self.backtracking_done = 0 + self.conv = None + self.atol, self.rtol = 1e-10, 1e-8 + self.always_project = True + self.verbose = verbose + + # Initialize allocations + if type(initial_a) == np.ndarray: + self.a = initial_a[:, None] + assert self.a.shape == (self.N, 1) + print("Initial 'a' from previous 'a'") + elif initial_a == "random": + np.random.seed(seed) + self.a = np.random.random((self.N, 1)) * self.a_max / self.N + elif initial_a == "uniform": + self.a = np.ones((self.N, 1)) * self.a_max / self.N + elif initial_a == "zeros": + self.a = np.zeros((self.N, 1)) + self.always_project = False + else: + raise Exception("Initial a-allocation '" + str(initial_a) + "' not understood.") + + # assert np.isclose(np.mean(b_vec), pars['b']), str(np.mean(b_vec)) + " " + str(pars['b']) + if len(b_vec.shape) == 1: + self.b = b_vec[:, None] + elif len(b_vec.shape) == 2 and b_vec.shape[1] == 1: + self.b = b_vec + else: + raise Exception("'b' must be a column vector, but b.shape = "+str(b_vec.shape)) + + self.initialize(**pars) + self.project_a() + + def initialize(self, **pars): + self.L = np.diagflat(np.sum(self.W, axis=0)) - self.W + + def execute(self): + """ + Perform gradient ascent. + :return: (optimal allocations, vote share, opinions vector, n of iterations) + """ + X, x = self.compute_x() + + for i in range(self.max_iters): + prev_a, prev_X = np.copy(self.a), X + + grad_X = self.compute_gradient() + self.a += grad_X * self.learning_rate + self.project_a() + + X, x = self.compute_x() + + if np.allclose(prev_a, self.a, rtol=self.rtol, atol=self.atol): + break + else: + self.adapt_step(X, prev_X, prev_a, i) + + if i + 1 >= self.max_iters: + self.conv = False + print('Max iterations reached: {:d}, backtracking: {:d}'.format(i + 1, self.backtracking_done)) + else: + self.conv = True + + return self.a[:, 0], X, x, i + + def project_a(self): + if self.always_project or np.sum(self.a) > self.a_max: + # self.a = self.a - (np.sum(self.a) - self.a_max) * np.ones((self.N, 1)) / self.N + # + # if self.a[self.a < 0].any(): + # a_subs = np.sum(self.a[self.a < 0]) + # self.a[self.a >= 0] = self.a[self.a >= 0] + a_subs / len(self.a[self.a >= 0].T) + # self.a[self.a < 0] = 0 + + n = len(self.a) + a_desc = np.sort(self.a[:, 0])[::-1] + a_csum = np.cumsum(a_desc) - self.a_max + ids = np.arange(n) + 1.0 + cond = (a_desc - a_csum / ids) > 0.0 + rho = ids[cond][-1] + theta = a_csum[cond][-1] / float(rho) + a_proj = np.maximum(self.a - theta, 0.0) + + self.a = a_proj + assert np.isclose(self.a_max, np.sum(self.a)), str((self.a_max, np.sum(self.a))) + + def compute_x(self): + self.inv_Lab = np.linalg.inv(self.L + np.diagflat(self.a + self.b)) + x = np.array(np.matmul(self.inv_Lab, self.a).T) + X = np.sum(x) / self.N + + return X, x[0, :] + + def compute_gradient(self): + return self.a_max * np.sum(np.matmul(self.inv_Lab, np.diagflat(np.matmul(self.inv_Lab, self.b))), + axis=0).T / self.N + + def adapt_step(self, X, prev_X, prev_a, i): + if X < prev_X: + self.learning_rate /= 2 + self.a = prev_a + if i < int(self.max_iters / 2): + self.backtracking_done = 1 + else: + self.backtracking_done = 2 + if self.verbose: + print("Backtracking at iteration {:d}, learning rate halved to {:f}".format(i, self.learning_rate)) + # elif i in ( + # int(self.iters / 2), int(self.iters * 3 / 4), int(self.iters * 7 / 8), int(self.iters * 15 / 16)): + # self.learning_rate *= 2 + + +class DebugGA(GA): + def initialize(self, **pars): + super().initialize(**pars) + + self.start_time = time.time() + + self.X_vec = np.zeros(self.max_iters + 1) + self.i = 0 + + print("L:\n", self.L, "\na vector:\n", self.a.T, "\nb_vector:\n", self.b) + + self.fig, (self.ax1, self.ax2) = plt.subplots(1, 2, figsize=(10, 5)) + + def compute_x(self): + print("Step " + str(self.i)) + + X, x = super().compute_x() + self.X_vec[self.i] = X + self.i += 1 + + return X, x + + def execute(self): + a, X, x, i = super().execute() + print('Backtracked: ' + str(self.backtracking_done)) + fig = self.report() + return a, X, x, i + + def report(self): + print("total a", np.sum(self.a) / self.N) + print("Elapsed time:", time.time() - self.start_time) + print("Time per step", (time.time() - self.start_time) / self.i) + print("") + + ax1, ax2 = self.ax1, self.ax2 + + # Plot individual allocations + if self.ax1 is not None: + if not np.allclose(self.b[:, 0], 0): + ax1.bar(range(len(self.a)), self.b[:, 0], label="b", color="C0") + ax1.bar(range(len(self.a)), self.a[:, 0], label="a", color="C1") + ax1.set(ylabel=r"$a_n$") # , ylim=[0, max(b)]) + + # Plot X_vec + ax2.plot(range(1, self.i), self.X_vec[:self.i - 1], marker="v", color="green") + ax2.set( + title=r"$X_0$:" + " {:.4f}, ".format(self.X_vec[0]) + r"$X_{\mathrm{GA}}$:" + " {:.4f}, ".format( + self.X_vec[self.i - 1]), + # +r"$X_{\mathrm{ana}}$:"+" {:.4f}, ".format(X_ana_net)+r"$X_{ana\,mf}$" + " {:.4f}".format(X_ana), + xlabel="t", ylabel="X") + + +def project_a_and_compute_x(a, b, a_max, L, N): + a = a - (np.sum(a) - a_max) * np.ones((N, 1)) / N + + if a[a < 0].any(): + a_subs = np.sum(a[a < 0]) + a[a >= 0] = a[a >= 0] + a_subs / len(a[a >= 0].T) + a[a < 0] = 0 + + inv_Lab = np.linalg.inv(L + np.diagflat(a + b)) + x = np.array(np.matmul(inv_Lab, a).T) + X = np.sum(x) / N + + return a, X, x[0, :], inv_Lab + + +def gascent(W, b, pars): + N = W.shape[0] + L = np.diagflat(np.sum(W, axis=0)) - W + iters, learning_rate = pars['iters'], pars["lrate"] * pars['a'] + a_max = pars['a'] * N + + a = np.ones((N, 1)) * a_max / N + # a = np.random.random((N, 1)) * a_max / N + a, X, x, inv_Lab = project_a_and_compute_x(a, b, a_max, L, N) + + backtracking_done = False + for i in range(iters): + prev_a, prev_X = np.copy(a), X + + grad_X = a_max * np.sum(np.matmul(inv_Lab, np.diagflat(np.matmul(inv_Lab, b))), axis=0) / N + a += grad_X.T * learning_rate + + a, X, x, inv_Lab = project_a_and_compute_x(a, b, a_max, L, N) + + if np.allclose(prev_a, a): + break + else: + if X < prev_X: + learning_rate /= 2 + a = prev_a + backtracking_done = True + + if i + 1 == iters: + print('Max iterations reached: ' + str(iters) + ", pars: " + str(pars)) + return a[:, 0], X, np.NaN + + print('Backtracked: ' + str(backtracking_done)) + return a[:, 0], X, x + + +def debug_gascent_bimodal(W, pars, iters=1000, partial_b=None, axes=None): + from python.mfield_bimodal import analytical_optimisation + start_time = time.time() + + N = W.shape[0] + learning_rate = pars['lrate'] + a_max, b_max = pars['a'] * N, pars['b'] + + cut = int(np.ceil(pars['rho'] * N)) + + def project_to_2D(vec): + return np.array([np.mean(vec[:cut]), np.mean(vec[cut:])]) + + if partial_b is None: + b = np.ones((N, 1)) + b[:cut] *= pars['beta'] * b_max / pars['rho'] + b[cut:] *= (1 - pars['beta']) * b_max / (1 - pars['rho']) + else: + b = np.zeros((N, 1)) + b[:partial_b] = np.full((partial_b, 1), b_max * N / partial_b) + + if partial_b == 2: + w = W.toarray() + plt.plot(w[0]) + plt.plot(w[1]) + plt.show() + + L = np.diagflat(np.sum(W, axis=0)) - W + + a = np.zeros((N, 1)) + # a = np.random.random((N, 1)) * a_max / N # np.ones((N, 1)) + # a = np.ones((N, 1)) * a_max / N / (1 - pars['rho']) + + a_vec = np.zeros((iters + 1, 2)) + a_cut = np.zeros((iters + 1, 2)) + X_vec = np.zeros(iters + 1) + grad_X_vec = np.zeros((iters, 2)) + + a_vec[0] = project_to_2D(a) + a, X_vec[0], x, inv_Lab = project_a_and_compute_x(a, b, a_max, L, N) + a_cut[0] = project_to_2D(a) + + print("L:\n", L, "\ninv_Lab:\n", inv_Lab, "\na vector:\n", a.T, "\nb_vector:\n", b.T, "\nx vector:\n", x) + + for i in range(iters): + print("Step " + str(i)) + prev_a = np.copy(a) + + grad_X = np.sum(np.matmul(inv_Lab, np.diagflat(np.matmul(inv_Lab, b))), axis=0) / N * a_max + a += grad_X.T * learning_rate + + grad_X_vec[i] = project_to_2D(grad_X) + + a_vec[i + 1] = project_to_2D(a) + a, X_vec[i + 1], x, inv_Lab = project_a_and_compute_x(a, b, a_max, L, N) + a_cut[i + 1] = project_to_2D(a) + + if np.allclose(prev_a, a): + print("Convergence with ", a_cut[i + 1]) + break + else: + if X_vec[i + 1] < X_vec[i]: + learning_rate /= 2 + a = prev_a + + if i + 1 == iters: + print('Max iterations reached: ' + str(iters)) + # print(a.T) + + a1, a1_var = np.mean(a[:cut]), np.std(a[:cut]) + alpha_exp = a1 * pars['rho'] / pars['a'] + alpha_exp_var = a1_var * pars['rho'] / pars['a'] + a_var = (np.std(a[:cut]) + np.std(a[cut:])) / 2 # / pars['a'] + + print("total a", np.sum(a) / N, "std", a_var) + print("alpha_exp", alpha_exp, "pm", alpha_exp_var) + print("alpha_exp_norm", alpha_exp / pars['rho']) + print("grad direction", learning_rate * np.mean(grad_X[0, :int(np.ceil(pars['rho'] * N))]), + learning_rate * np.mean(grad_X[0, int(np.ceil(pars['rho'] * N)):])) + + # ANALYTIC + alpha_ana, X_ana = analytical_optimisation(pars) + + L = np.diagflat(np.sum(W, axis=0)) - W + ana = np.ones((N, 1)) + ana[:cut] = ana[:cut] * alpha_ana * pars['a'] / pars['rho'] + ana[cut:] = ana[cut:] * (1 - alpha_ana) * pars['a'] / (1 - pars['rho']) + b = np.ones((N, 1)) + b[:cut] *= pars['beta'] * pars['b'] / pars['rho'] + b[cut:] *= (1 - pars['beta']) * pars['b'] / (1 - pars['rho']) + # print(a.shape,b.shape,L.shape) + inv_Lab = np.linalg.inv(L + np.diagflat(ana + b)) + X_ana_net = 1 / N * np.sum(np.matmul(inv_Lab, ana)) + print("alpha_ana/rho", alpha_ana / pars['rho'], "X_ana", X_ana_net) + print("") + print("Elapsed time:", time.time() - start_time) + print("Time per step", (time.time() - start_time) / i) + print("X_GA^0:", X_vec[0]) + print("X_GA^*:", X_vec[i]) + + # ------------------------ + # -------- PLOTS + # ------------------------ + if axes is None: + fig, (ax2, ax1) = plt.subplots(1, 2, figsize=(2 * 3.5, 3)) + else: + fig, ax = plt.subplots(1, 2, figsize=(2 * 2.75, 2)) + (ax2, ax1) = axes + fig2, ax3 = plt.subplots(figsize=(3.5, 3)) + fig3, ax4 = plt.subplots(figsize=(20, 5)) + # fig, ((ax2, ax1), (ax3, ax4)) = plt.subplots(2, 2, figsize=(5.5, 5.5)) + # fig, (ax2, ax1, ax3) = plt.subplots(1, 3, figsize=(11, 2.75)) + + print("a1 std:", np.std(a[:cut]), "a2 std:", np.std(a[cut:])) + ax4.boxplot([a[:cut, 0], a[cut:, 0]], + labels=[r'$d_1$', r'$d_2$']) # r'Low degree nodes', r'High degree nodes']) # , $d_2$']) + ax4.grid(), ax4.set( + ylabel=r"Node allocations within the same $k$") # Distribution of node allocations for $k\in K$") + + # a[::2], b[1::2] = 0, 0 + ax1.bar(range(len(a)), a[:, 0], label=r"$w_{ai}^{\mathrm{GA}}$", color="C1") + # ax1.bar(range(len(a)), b[:, 0], label=r"$b_i$") + ax1.plot(ana, label=r"$w_{ai}^{\mathrm{ana}}$", color="green") + ax1.set(xlabel=r"low degree nodes $\qquad$ high degree nodes", + ylabel=r"Node allocations, $w_{ai}$") # , ylabel=r"Individual node allocations, $w_{ai}$") + ax1.legend() + + ax2.semilogx(range(1, i + 1), X_vec[1:i + 1], marker=".") + ax2.set( # title= # r"$X^0_{\mathrm{GA}}$:" + " {:.4f}, ".format(X_vec[0]) + + # r"$X_{\mathrm{GA}}^*$:" + " {:.4f}, ".format( + # X_vec[i]) + r"$X_{\mathrm{ana}}$:" + " {:.4f}, ".format(X_ana_net) + r"$X_{\mathrm{ana}}^{mf}:$" + " {:.4f}".format( + # X_ana), + xlabel="t", + ylabel=r"Vote share, $X_{\mathrm{GA}}$") # , ylabel=r"Evolving vote share, $X_{\mathrm{GA}}^t$") + # ax2.plot(X_vec[:i + 1], marker=".") + # ax2.set(title=r"$X_{\mathrm{GA}}$:" + " {:.4f}, ".format(X_vec[i]) + r"$X_{\mathrm{ana}}$:" + " {:.4f}, ".format( + # X_ana_net) + r"$X_{ana\,mf}$" + " {:.4f}".format(X_ana), xlabel="t", ylabel="X") + + for j in range(i): + # ax3.arrow(0, 0, a_vec[j, 0], a_vec[j, 1]) + ax3.arrow(a_vec[j, 0], a_vec[j, 1], a_cut[j, 0] - a_vec[j, 0], a_cut[j, 1] - a_vec[j, 1], color="red") + ax3.arrow(a_cut[j, 0], a_cut[j, 1], a_vec[j + 1, 0] - a_cut[j, 0], a_vec[j + 1, 1] - a_cut[j, 1]) + ax3.plot(a_vec[:i + 1, 0], a_vec[:i + 1, 1], marker="X", ls='') + ax3.plot(a_cut[:i + 1, 0], a_cut[:i + 1, 1], marker="X", ls='') + ax3.plot([0, pars['a'] / pars['rho']], [pars['a'] / (1 - pars['rho']), 0]) + # ax3.set(title=r"$\alpha_{\mathrm{GA}}$:" + " {:.4f}, ".format(alpha_exp) + r"$\alpha_{\mathrm{ana}}$:" + " {:.4f}, ".format( + # alpha_ana) + r"$\beta$:" + " {:.1f}".format(pars["beta"])) + ax3.set( + # title=r"$\overline{a1}$:" + " {:.4f}, ".format(a_cut[i, 0]) + r"$\overline{a2}$:" + " {:.4f}".format(a_cut[i, 1]), + xlim=[0, 1.1 * max(np.max(a_vec), np.max(a_cut))], + ylim=[0, 1.1 * max(np.max(a_vec), np.max(a_cut))], # xlim=[0, max(a_vec[:, 0]) + 0.05], + xlabel=r'Mean allocation to $d_1$', # low degree nodes', #$\overline{a}_{i:d_i=d_1}$', + ylabel=r'Mean allocation to $d_2$') # high degree nodes')#, $\overline{a}_{i:d_i=d_2}$') + # ax3.set_aspect("equal") + + legends = [] + legends.append(mlines.Line2D([], [], color='C1', marker='X', label=r"$w_a^{t}$", ls="")) + legends.append(mlines.Line2D([], [], color='C0', marker='X', label=r"$w_a+\mu\nabla_{w_a}X$", ls="")) + legends.append(mlines.Line2D([], [], color='black', marker='', label=r"$\mu\nabla_{w_a}X$", ls="solid")) + legends.append(mlines.Line2D([], [], color='red', marker='', label=r"projection", ls="solid")) + ax3.legend(handles=legends) + + # for j in range(i): + # ax4.arrow(0, 0, learning_rate * grad_X_vec[j, 0], learning_rate * grad_X_vec[j, 1]) + # ax4.plot(learning_rate * grad_X_vec[:i, 0], learning_rate * grad_X_vec[:i, 1], marker="X") + # ax4.plot([learning_rate * np.min(grad_X_vec), learning_rate * np.max(grad_X_vec)], + # [learning_rate * np.min(grad_X_vec), learning_rate * np.max(grad_X_vec)]) + # ax4.set(title=r"$\nabla_{a1}X$" + ": {:.4f}, ".format(grad_X_vec[i, 0]) + r"$\nabla_{a2}X$" + ": {:.4f}".format( + # grad_X_vec[i, 1]), xlabel=r"$\nabla_{a1}X$", ylabel=r"$\nabla_{a2}X$") + # # ax4.set_xlim(left=0), ax4.set_ylim(bottom=0) + # ax4.set_aspect("equal") + + if axes is None: + fig.tight_layout() + fig.savefig(PLOTS_PATH + "debug_bimodal.eps") + fig.show() + + fig2.tight_layout() + fig2.savefig(PLOTS_PATH + "debug_bimodal2.eps") + fig2.show() + + +def debug_gascent_regular(W, pars): + iters = pars['iters'] + start_time = time.time() + + N = W.shape[0] + cut = random.sample(range(N), int(np.ceil(pars['rho'] * N))) + rest = set(range(N)).difference(set(cut)) + rest, cut = np.array(list(rest)), np.array(cut) + + learning_rate = pars['lrate'] + a_max, b_max = pars['a'] * N, pars['b'] + b = np.zeros((N, 1)) + b[cut] = b_max / pars['rho'] + + L = np.diagflat(np.sum(W, axis=0)) - W + print("L") + print(L) + + a_vec = np.zeros((iters + 1, 2)) + a = np.random.random((N, 1)) * a_max / N + a[a < 0] = 0 + a_vec[0] = np.array([np.mean(a[cut]), np.mean(a[rest])]) + + a_cut = np.zeros((iters + 1, 2)) + a = a - (np.sum(a) - a_max) * np.ones((N, 1)) / N + a_cut[0] = np.array([np.mean(a[cut]), np.mean(a[rest])]) + + inv_Lab = np.linalg.inv(L + np.diagflat(a + b)) + print(inv_Lab) + print("a vector") + print(a.T) + print("b_vector") + print(b.T) + print("x vector") + print(np.matmul(inv_Lab, a).T) + + X_vec = np.zeros(iters + 1) + X_vec[0] = 1 / N * np.sum(np.matmul(inv_Lab, a)) + + grad_X_vec = np.zeros((iters, 2)) + + for i in range(iters): + print("Step " + str(i)) + prev_a = np.copy(a) + + grad_X = np.sum(np.matmul(inv_Lab, np.diagflat(np.matmul(inv_Lab, b))), axis=0) / N * a_max + grad_X_vec[i] = [np.mean(grad_X[0, cut]), np.mean(grad_X[0, rest])] + a += grad_X.T * learning_rate + a_vec[i + 1] = [np.mean(a[cut]), np.mean(a[rest])] + + # Plane projection + a = a - (np.sum(a) - a_max) * np.ones((N, 1)) / N + + # Non-negativity constraint + a_subs = np.sum(a[a < 0]) + a[a >= 0] = a[a >= 0] + a_subs / len(a[a >= 0].T) + a[a < 0] = 0 + + a_cut[i + 1] = np.array([np.mean(a[cut]), np.mean(a[rest])]) + + inv_Lab = np.linalg.inv(L + np.diagflat(a + b)) + X_vec[i + 1] = 1 / N * np.sum(np.matmul(inv_Lab, a)) + + if np.allclose(prev_a, a): + print("Convergence with ", a_cut[i + 1]) + break + else: + if X_vec[i + 1] < X_vec[i]: + learning_rate /= 2 + a = prev_a + + if i + 1 == iters: + print('Max iterations reached: ' + str(iters)) + # print(a.T) + + a1 = np.mean(a[rest]) + alpha_exp = a1 * pars['rho'] / pars['a'] + print("total a", np.sum(a) / N) + print("alpha_exp", alpha_exp) + print("alpha_exp_norm", alpha_exp / pars['rho']) + print("grad direction", learning_rate * np.mean(grad_X[0, cut]), learning_rate * np.mean(grad_X[0, rest])) + + # ANALYTIC + # alpha_ana, X_ana = analytical_optimisation(pars) + # + # L = np.diagflat(np.sum(W, axis=0)) - W + # ana = np.ones((N, 1)) + # ana[rest] = ana[rest] * alpha_ana * pars['a'] / pars['rho'] + # ana[cut] = ana[cut] * (1 - alpha_ana) * pars['a'] / (1 - pars['rho']) + # b = np.ones((N, 1)) + # b[:int(np.ceil(pars['rho'] * N))] *= pars['beta'] * pars['b'] / pars['rho'] + # b[int(np.ceil(pars['rho'] * N)):] *= (1 - pars['beta']) * pars['b'] / (1 - pars['rho']) + # # print(a.shape,b.shape,L.shape) + # inv_Lab = np.linalg.inv(L + np.diagflat(ana + b)) + # X_ana_net = 1 / N * np.sum(np.matmul(inv_Lab, ana)) + # print("alpha_ana/rho", alpha_ana / pars['rho'], "X_ana", X_ana_net) + print("Elapsed time:", time.time() - start_time) + print("Time per step", (time.time() - start_time) / i) + + # PLOTS + fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(10, 10)) + ax1.bar(range(len(a)), b[:, 0], label="b") + ax1.bar(range(len(a)), a[:, 0], label="a") + ax1.set(title=r"$\alpha_{\mathrm{GA}}$:" + " {:.4f}, ".format(alpha_exp), + # +r"$\alpha_{\mathrm{ana}}$:"+" {:.4f}".format(alpha_ana), + ylabel=r"$a_n$", ylim=[0, max(a)]) + + ax2.semilogx(range(1, i + 2), X_vec[:i + 1], marker=".") + ax2.set(title=r"$X_{\mathrm{GA}}-X_0$:" + " {:.4f}, ".format(X_vec[i] - X_vec[0]), + # +r"$X_{\mathrm{ana}}$:"+" {:.4f}, ".format(X_ana_net)+r"$X_{ana\,mf}$" + " {:.4f}".format(X_ana), + xlabel="t", ylabel="X") + + for j in range(i): + ax3.arrow(a_vec[j, 0], a_vec[j, 1], a_cut[j, 0] - a_vec[j, 0], a_cut[j, 1] - a_vec[j, 1], color="red") + ax3.arrow(a_cut[j, 0], a_cut[j, 1], a_vec[j + 1, 0] - a_cut[j, 0], a_vec[j + 1, 1] - a_cut[j, 1]) + ax3.plot(a_vec[:i + 1, 0], a_vec[:i + 1, 1], marker="X", ls='') + ax3.plot(a_cut[:i + 1, 0], a_cut[:i + 1, 1], marker="X", ls='') + ax3.plot([0, pars['a'] / pars['rho']], [pars['a'] / (1 - pars['rho']), 0]) + ax3.set(xlim=[0, max(np.max(a_vec), np.max(a_cut))], ylim=[0, max(np.max(a_vec), np.max(a_cut))], + xlabel=r'$\overline{a_1}$', ylabel=r'$\overline{a_2}$') + ax3.set_aspect("equal") + + if False: + w = W.toarray() + w_neighbours = np.sum(w[cut], axis=0)[rest] + a_neighbours = [] + for i in range(N - 1): + a_i = a[rest] + a_i = a_i[w_neighbours == i] + if len(a_i) != 0: + a_neighbours.append(a_i) + else: + break + w_neighbours = np.sum(w[cut], axis=0)[cut] + a_neighboursB = [] + for j in range(N - 1): + a_i = a[cut] + a_i = a_i[w_neighbours == j] + if len(a_i) != 0: + a_neighboursB.append(a_i) + else: + break + ax4.boxplot(a_neighboursB[::-1] + a_neighbours[::-1], + labels=["B" + str(j) for j in range(j - 1, -1, -1)] + list(range(i - 1, -1, -1))) + ax4.set(xlabel=r"n of B-controlled neighbours", ylabel=r"$w_{ai}$") + else: + lengths = nx.single_source_shortest_path_length(G, 0) + box_data = np.empty(list(lengths.values())[-1] + 1, dtype=list) + for i, el in enumerate(box_data): + box_data[i] = [] + for key in lengths.keys(): + box_data[lengths[key]].append(a[key]) + ax4.boxplot(box_data, labels=range(len(box_data))) # , + # labels=["B" + str(j) for j in range(j - 1, -1, -1)] + list(range(i - 1, -1, -1))) + ax4.set(xlabel=r"Distance to B-controlled node", ylabel=r"$w_{ai}$", ylim=0) + + fig.savefig(PLOTS_PATH + "debug_regular.eps") + fig.show() + + # plt.plot(np.sum(w[cut], axis=0)) + # plt.show() + + +def debug_gascent_powerlaw(W, b, pars, seq): + start_time = time.time() + + N = W.shape[0] + learning_rate, iters = pars['lrate'] * pars['a'], pars['iters'] + a_max, b_max = pars['a'] * N, pars['b'] + + L = np.diagflat(np.sum(W, axis=0)) - W + print("L") + print(L) + + a = np.random.random((N, 1)) * a_max / N + # a[a < 0] = 0 + # a = np.zeros((N, 1)) + a = a - (np.sum(a) - a_max) * np.ones((N, 1)) / N + + inv_Lab = np.linalg.inv(L + np.diagflat(a + b)) + print(inv_Lab) + print("a vector") + print(a.T) + print("b_vector") + print(b.T) + print("x vector") + print(np.matmul(inv_Lab, a).T) + + X_vec = np.zeros(iters + 1) + X_vec[0] = 1 / N * np.sum(np.matmul(inv_Lab, a)) + + backtracked = False + for i in range(iters): + print("Step " + str(i)) + prev_a = np.copy(a) + + grad_X = np.sum(np.matmul(inv_Lab, np.diagflat(np.matmul(inv_Lab, b))), axis=0) / N # * a_max + a += grad_X.T * learning_rate + print(grad_X[:, :2]) + + # Plane projection + a = a - (np.sum(a) - a_max) * np.ones((N, 1)) / N + + # Non-negativity constraint + a_subs = np.sum(a[a < 0]) + a[a >= 0] = a[a >= 0] + a_subs / len(a[a >= 0].T) + a[a < 0] = 0 + + inv_Lab = np.linalg.inv(L + np.diagflat(a + b)) + X_vec[i + 1] = 1 / N * np.sum(np.matmul(inv_Lab, a)) + + if np.allclose(prev_a, a): + print("Convergence") + break + else: + if X_vec[i + 1] < X_vec[i]: + learning_rate /= 2 + a = prev_a + backtracked = True + + if i + 1 == iters: + print('Max iterations reached: ' + str(iters)) + if backtracked: + print('Backtracked') + # print(a.T) + + print("total a", np.sum(a) / N) + print("Elapsed time:", time.time() - start_time) + print("Time per step", (time.time() - start_time) / i) + + # PLOTS + + seq = np.array(seq) + sort_ind = np.argsort(seq) + seq = seq[sort_ind] + a = a[sort_ind] + b = b[sort_ind] + # print(a) + print(seq) + + fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(10, 10)) + ax1.bar(range(len(a)), b[:, 0], label="b") + ax1.bar(range(len(a)), a[:, 0], label="a") + ax1.set(ylabel=r"$a_n$") # , ylim=[0, max(b)]) + ax3.bar(range(len(a)), a[:, 0], label="a", color="C1") + ax3.bar(range(len(a)), b[:, 0], label="b", color="C0") + ax3.set(ylabel=r"$a_n$") # , ylim=[0, max(b)]) + + ax2.semilogx(range(1, i + 1), X_vec[1:i + 1], marker=".") + ax2.set(title=r"$X_0$:" + " {:.4f}, ".format(X_vec[0]) + r"$X_{\mathrm{GA}}$:" + " {:.4f}, ".format(X_vec[i]), + # +r"$X_{\mathrm{ana}}$:"+" {:.4f}, ".format(X_ana_net)+r"$X_{ana\,mf}$" + " {:.4f}".format(X_ana), + xlabel="t", ylabel="X") + + ax4.scatter(seq, a, color="C1") + ax4.scatter(seq, b, color="C0") + ax4.set(xlabel='k', ylabel=r'$a_n$', title="beta = {:f} k".format(pars['beta'])) + + fig.savefig(PLOTS_PATH + "debug_powerlaw.eps") + fig.show() + + return a + + +def test_debug_regular(): + pars = { + "rho": 0.005, + 'k0': 3, + 'k1': 30, + 'a': 2, + 'b': 8, + 'beta': 1, + + 'N': 50, + 'lrate': 25, + } + + N = pars['N'] + if False: + seq = [pars['k0'] for _ in range(int(N * pars['rho']))] + [pars['k1'] for _ in + range(int(N * (1 - pars['rho'])))] + G = nx.random_degree_sequence_graph(seq, tries=20) + else: + # G = nx.fast_gnp_random_graph(N, np.log(N) / N * 2) + G = nx.random_regular_graph(pars['k0'], pars['N']) + + W = nx.adj_matrix(G, range(N)) + print("W.shape", W.shape) + + debug_gascent_regular(W, pars) + + +def test_path(): + pars = { + 'a': 1, 'b': 1, + 'N': 91, + 'iters': 10000, + 'lrate': 5, + } + # 'N': 151, + # 'iters': 15000, + # 'lrate': 5, + # } + + N = pars['N'] + # G = nx.fast_gnp_random_graph(N, np.log(N) / N / 2) + G = nx.path_graph(N) + W = nx.adj_matrix(G) + + b = np.zeros((N, 1)) + b[int(N / 2)] = pars['b'] * N + # b = np.ones((N, 1)) * pars['b'] + # b = np.ones((N, 1)) * pars['b']/2 + # b[int(N / 2)] += pars['b'] * N/2 + + a = debug_gascent(W, b, pars) + + # now = time.time() + # a = gascent(W, b, pars) + # print("Elapsed time: " + str(time.time() - now)) + + +def test_debug_bimodal(axes=None): + import matplotlib + matplotlib.rcParams['text.usetex'] = True + + pars = { + 'N': 200, 'k0': 2, 'k1': 6, 'rho': 0.5, + 'beta': 0.8, 'a': 1, 'b': 4, + 'iters': 1000, 'lrate': 3, + 'seed': 3, + } + seq = [pars['k0'] for _ in range(int(pars['N'] * pars['rho']))] + [pars['k1'] for _ in + range(int(pars['N'] * (1 - pars['rho'])))] + G = nx.random_degree_sequence_graph(seq, tries=20, seed=pars['seed']) + if not nx.is_connected(G): + raise Exception("Graph not connected") + W = nx.adj_matrix(G) + + debug_gascent_bimodal(W, pars, axes=axes) + + +def test_debu_star(): + pars = { + 'a': 2, 'b': 1, + 'N': 10000, + 'iters': 10, + 'lrate': 5, + } + + N = pars['N'] + G = nx.star_graph(N - 1) + W = nx.adj_matrix(G) + # print(W) + # raise Exception("caca") + + # b = np.zeros((N, 1)) + # b[0] = pars['b'] * N + + b = np.ones((N, 1)) * pars['b'] * N / (N - 1) + b[0] = 0 + + # b = np.ones((N, 1)) * pars['b']/2 + # b[int(N / 2)] += pars['b'] * N/2 + + a = debug_gascent(W, b, pars) + + # now = time.time() + # a = gascent(W, b, pars) + # print("Elapsed time: " + str(time.time() - now)) + + return a + + +def test_debu_powerlaw(): + pars = { + 'a': 1, 'b': 1, + 'N': 500, 'gamma': 2.5, 'beta': -1, + 'iters': 10000, 'lrate': 50, + } + + # W, seq, rhos, b = create_power_network(pars) + N = W.shape[0] + + rhos = np.bincount(seq) / N + + # def beta_allocation(k, beta): + # return k ** -beta / rhos[k] + # # return beta*k / rhos[k] + # beta_allocations = [0 if n == 0 else beta_allocation(k, pars['beta']) for k, n in enumerate(rhos)] + # norm_beta = sum(beta_allocations) + # + # b = np.zeros((N, 1)) + # for i, k in enumerate(seq): + # b[i] = beta_allocations[k] * pars['b'] / norm_beta + + b = b * pars['b'] + a = debug_gascent_powerlaw(W, b, pars, seq) + + # now = time.time() + # a = gascent(W, b, pars) + # print("Elapsed time: " + str(time.time() - now)) + + +def test_zealot_GA(): + N = 100 + pars = { + 'a': 1 / 8, + 'q': 0.45, 'rho': 0.2, "q_periphery": 0, + 'N': N, 'network': 'complete', + 'iters': 200, 'lrate': 2000, + } + + N = pars['N'] + G = nx.complete_graph(N) + W = nx.adj_matrix(G) + + b = np.zeros((N, 1)) + + # initial_a = np.zeros(N) + # initial_a[:int(N*pars['rho'])] = 15.625 + ga = DebugZealotGA(W, b, a_budget=pars['a'] * pars['N'], **pars) # , initial_a="zeros") # , initial_a=initial_a) + + print("Running gradient ascent...") + fig = ga.execute() + + fig.savefig(PLOTS_PATH + "debug_zealots.eps") + fig.show() + + print("Allocations to zealots:", np.mean(ga.a[ga.q > 0])) + print("Allocation to normal agents:", np.mean(ga.a[ga.q == 0])) + + return ga + + # now = time.time() + # a = gascent(W, b, pars) + # print("Elapsed time: " + str(time.time() - now)) + + +def test_biased_A_B(a_rel_budget=1/8): + N = 100 + pars = { + 'a': a_rel_budget, + 'q': 0.45, 'rho': (0.2, 0.7, 0.1), "q_periphery": 0.6, + 'N': N, 'network': 'complete', + 'iters': 200, 'lrate': 2000, + } + + G = nx.complete_graph(N) + W = nx.adj_matrix(G) + b = np.ones((N, 1)) / 8 + + # initial_a = np.zeros(N) + # initial_a[:int(N*pars['rho'])] = 15.625 + # ga = DebugZealotGA(W, b, pars) # , initial_a="zeros") # , initial_a=initial_a) + ga = ZealotGA(W, b, a_budget=pars['a'] * pars['N'], **pars) + + print("Running gradient ascent...") + fig = ga.execute() + + # fig.savefig(PLOTS_PATH + "debug_zealots.eps") + # fig.show() + + print("Allocation to B-biased:", np.mean(ga.a[ga.q > 0])) + print("Allocation to normal agents:", np.mean(ga.a[ga.q == 0])) + print("Allocation to A-biased:", np.mean(ga.a[ga.q < 0])) + + return ga + + # now = time.time() + # a = gascent(W, b, pars) + # print("Elapsed time: " + str(time.time() - now)) + + +if __name__ == "__main__": + # test_debug_bimodal() + # test_debug_regular() + # test_debug_path() + # a = test_debu_star() + # a = test_debu_powerlaw() + # ga = test_zealot_GA() + ga = test_biased_A_B(a_rel_budget=0.006) diff --git a/general_GA_avoidance.py b/general_GA_avoidance.py new file mode 100644 index 0000000000000000000000000000000000000000..9b5c217a5f2a4d6553960308fe7de754ffba1467 --- /dev/null +++ b/general_GA_avoidance.py @@ -0,0 +1,2943 @@ +"""File for generating all experiments, results and plots for the paper: +'Shadowing, shielding and degree dependence: A comparison between discrete and continuous influence maximisation'.""" + +import warnings +import pickle +import json + +import numpy as np +import networkx as nx +from scipy.stats import entropy, kendalltau, spearmanr, pearsonr, linregress, gmean +import pandas as pd +import matplotlib as mpl +import matplotlib.pyplot as plt +import seaborn as sns +# import matplotlib.lines as mlines +# from sklearn.linear_model import LinearRegression + +from python.utils import DATA_PATH, PLOTS_PATH, create_range, std_errors +from python.networks import Network +from python.hpc_experiments import SUB_DATA_PATH, create_name, load_data, load_networks + +MULTIPLIER = 8 +ALLO_GROUP_LABELS = (r"$\mathbf{H} \; (w_{ai} \geq " + str(MULTIPLIER) + r"\langle w_a\rangle)$", + r"$\mathbf{A} \; (w_{ai} \geq \langle w_a\rangle)$", + r"$\mathbf{V} \; (w_{ai} < \langle w_a\rangle)$", + r"$\mathbf{Z} \; (w_{ai} = 0$)",) +NEIGH_GROUP_LABELS = (r"$\mathbf{T}_b$", r"$\mathbf{N}_b$", r"$\mathbf{R}$") +ALLO_GROUP_COLOURS = ("red", "orange", "yellow", "green") +NEIGH_GROUP_COLOURS = plt.cm.get_cmap("viridis")(np.linspace(0, 0.95, 3)) +DISCRETE_COLOR = "purple" +K_X_LABEL = r'$K$ (for a discrete controller)' + +FI = 1.618 +ELINEWIDTH = 1 +mpl.rcParams['text.usetex'] = True + + +def get_allo_label(group, short=False): + labels = ((r"\mathbf{H}", r"(w_{ai} \geq " + str(MULTIPLIER) + r"\langle w_a\rangle)"), + (r"\mathbf{A}", r"(w_{ai} \geq \langle w_a\rangle)"), + (r"\mathbf{V}", r"(w_{ai} < \langle w_a\rangle)"), + (r"\mathbf{Z}", r"(w_{ai} = 0)"),) + if short: + return "$" + labels[group][0] + "$" + else: + return "$" + labels[group][0] + r" \; " + labels[group][1] + "$" + + +def get_neigh_label(group, short=False): + labels = ((r"\mathbf{T}_b",), + (r"\mathbf{N}_b", r"(i \notin \mathbf{T}_b \;|\; (\exists j \in \mathbf{T}_b \;|\; w_{ij} > 0))"), + # \notin \mathbf{T}_b \;|\; (\exists j \in \mathbf{T}_b \;|\; w_{ij} > 0))"), + (r"\mathbf{R}",)) + if short: + return "$" + labels[group][0] + "$" + else: + return "$" + labels[group][0] + r" \; " + labels[group][1] + "$" + + +def compute_average_targeted_degree(allocations, degrees): + return sum([allocation * degrees[i] for i, allocation in enumerate(allocations)]) / sum(allocations) + + +def flatten(list_of_lists): + return [item for sublist in list_of_lists for item in sublist] + + +def compute_a_analytical_small_budget(seq, b_vec, a, b, verbose=False): + intercept = (a + b) / 2 + slope = (a / b - 1) / 2 + a_vec = intercept + slope * b_vec + # print("a_vec =", intercept, "+", slope, "b_vec") + if slope >= 0: + return a_vec + elif slope < 0: + if verbose: + print("Analytical first-order approximation is degree-dependent.") + while np.any(a_vec < 0): + broken_nodes = a_vec <= 0 + # print(np.sum(a_vec > 0), b, np.sum(b_vec[a_vec > 0])/np.sum(a_vec > 0), np.sum(seq[a_vec > 0])/np.sum(a_vec > 0)) + k_slope = (-(a + b) / 2 * np.sum(a_vec > 0) + a * len(b_vec) - slope * np.sum(b_vec[a_vec > 0])) / np.sum( + seq[a_vec > 0]) + # print("k_intercept", k_intercept) + a_vec = intercept + slope * b_vec + seq * k_slope + a_vec[broken_nodes] = 0 + assert np.isclose(a, np.mean(a_vec)) + return a_vec + + +def compute_a_analytical_big_budget(b_vec, a, b, verbose=False): + a_vec = (a + b) * np.sqrt(b_vec) / np.sum(np.sqrt(b_vec)) * len(b_vec) - b_vec + while np.any(a_vec < 0): + broken_nodes = a_vec <= 0 + a_vec = (a + np.sum(b_vec[a_vec > 0]) / len(b_vec)) * np.sqrt(b_vec) / np.sum(np.sqrt(b_vec[a_vec > 0])) * len( + b_vec) - b_vec + a_vec[broken_nodes] = 0 + assert np.isclose(a, np.mean(a_vec)), str(a) + " != " + str(np.mean(a_vec)) + return a_vec + + +def compute_distances(G, b, seq, a=None): + node_list = np.array(G.nodes) + N = len(node_list) + max_degree = int(np.max(seq)) + + unweighted_dists = [] + unweighted_dists_plus_degrees = [] + if a is not None: + a_mean = np.mean(a) + weighted_dists = [] + weighted_dists_plus_repetitions = [[], []] + weighted_dists_plus_degrees = [] + + for node in range(N): + closest_distance = 9999 + closest_b_node = None + distances = nx.single_source_shortest_path_length(G, node_list[node]) + for b_node in range(N): + if b[b_node] > 0: + if distances[node_list[b_node]] < closest_distance: + closest_distance = distances[node_list[b_node]] + repetitions = 1 + closest_b_node = b_node + if closest_distance == 0: + break + elif distances[node_list[b_node]] == closest_distance: + repetitions += 1 + + while len(unweighted_dists) < closest_distance + 1: + unweighted_dists.append(0) + unweighted_dists[closest_distance] += 1 + + while len(unweighted_dists_plus_degrees) < closest_distance + 1: + unweighted_dists_plus_degrees.append(np.zeros(max_degree + 1)) + unweighted_dists_plus_degrees[closest_distance][int(seq[node])] += 1 + + if a is not None: + a_value = a[node] + if closest_distance > 1 and a_value > 10 * a_mean: + print("Outlier! Allocation {:f}, distance {:d},".format(a_value, closest_distance), + " degree {:.0f}, repetitions {:d}.".format(seq[node], repetitions)) + while len(weighted_dists) < closest_distance + 1: + weighted_dists.append([]) + weighted_dists[closest_distance].append(a_value) + + if a_value > 0: + while len(weighted_dists_plus_degrees) < closest_distance + 2: + weighted_dists_plus_degrees.append(np.zeros(max_degree + 1)) + weighted_dists_plus_degrees[closest_distance + 1][int(seq[node])] += 1 + weighted_dists_plus_degrees[0][int(seq[closest_b_node])] += 1 + + while len(weighted_dists_plus_repetitions[0]) < closest_distance + 1: + weighted_dists_plus_repetitions[0].append([]) + while len(weighted_dists_plus_repetitions[1]) < closest_distance + 1: + weighted_dists_plus_repetitions[1].append([]) + if repetitions == 1: + weighted_dists_plus_repetitions[0][closest_distance].append(a_value) + else: + weighted_dists_plus_repetitions[1][closest_distance].append(a_value) + + return_values = (unweighted_dists, unweighted_dists_plus_degrees) + if a is not None: + return_values += (weighted_dists, weighted_dists_plus_degrees, weighted_dists_plus_repetitions) + return return_values + + # avg_distances[i] = 0 + # for b_node in range(1, pars['N']): + # weighted_distance = 0 + # if b[b_node - 1] > 0: + # distances = nx.single_source_shortest_path_length(net.G, b_node) + # for node in distances: + # weighted_distance += a[node - 1] * distances[node] + # weighted_distance /= np.sum(a) + # avg_distances[i] += b[b_node - 1] * weighted_distance + # avg_distances[i] /= np.sum(b) + + +def divide_into_allocation_groups(allocations, n_groups=4, group_criterion="mean", + **pars): # criterion = (mean, std, N_allo, cutoff) + N = len(allocations) + if group_criterion == "mean": + a_mean = np.mean(allocations) + mask_H = allocations >= MULTIPLIER * a_mean + mask_A = np.logical_and(allocations >= a_mean, allocations < a_mean * MULTIPLIER) + if n_groups == 3: + mask_V = allocations < a_mean + masks = (mask_H, mask_A, mask_V) + elif n_groups == 4: + # mask_3 = np.logical_and(allocations < a_mean, allocations > a_mean / MULTIPLIER) + # mask_4 = allocations < a_mean / MULTIPLIER + mask_V = np.logical_and(allocations < a_mean, allocations > 0) + mask_Z = allocations == 0 + masks = (mask_H, mask_A, mask_V, mask_Z) + else: + raise Exception("n_groups not understood: " + str(n_groups)) + + elif group_criterion == "std": + a_mean = np.mean(allocations) + a_std = np.std(allocations) + + mask_H = allocations >= a_mean + MULTIPLIER * a_std + mask_A = np.logical_and(allocations >= a_mean, allocations < a_mean + a_std * MULTIPLIER) + if n_groups == 3: + mask_V = allocations < a_mean + masks = (mask_H, mask_A, mask_V) + elif n_groups == 4: + mask_V = np.logical_and(allocations < a_mean, allocations >= a_mean - a_std * MULTIPLIER) + mask_Z = allocations < a_mean - a_std * MULTIPLIER + masks = (mask_H, mask_A, mask_V, mask_Z) + else: + raise Exception("n_groups not understood: " + str(n_groups)) + + elif group_criterion == "cutoff": + a_mean = gmean(allocations[allocations > 0]) + # a_mean = np.e**np.mean(np.log(allocations[allocations>0])) + + sorted_indices = np.argsort(allocations)[::-1] + sorted_allocations = allocations[sorted_indices] + # relative_diff = 1 - allocations[1:] / allocations[:-1] + for i in range(N - 5): + if 1 - sorted_allocations[i + 10] / sorted_allocations[i] < 0.1: + break + for j in range(N - 5): + if 1 - sorted_allocations[j + 10] / sorted_allocations[j] < 0.01: + break + # mask_1 = np.logical_and(np.arange(N)[np.argsort(sorted_indices)] < i, allocations >= a_mean) + mask_H = np.arange(N)[np.argsort(sorted_indices)] < i + # mask_1 = np.logical_and(np.arange(N) < i, allocations >= a_mean) + mask_A = np.logical_and(np.arange(N)[np.argsort(sorted_indices)] >= i, + np.arange(N)[np.argsort(sorted_indices)] < j) + if n_groups == 3: + # mask_3 = allocations < a_mean + mask_V = np.arange(N)[np.argsort(sorted_indices)] >= j + masks = (mask_H, mask_A, mask_V) + elif n_groups == 4: + # mask_3 = np.logical_and(allocations < a_mean, allocations > 0) + mask_V = np.logical_and(np.arange(N)[np.argsort(sorted_indices)] >= j, allocations > 0) + mask_Z = allocations == 0 + masks = (mask_H, mask_A, mask_V, mask_Z) + else: + raise Exception("n_groups not understood: " + str(n_groups)) + + else: + raise Exception("criterion not understood: " + str(group_criterion)) + + group_sizes = [np.sum(mask) for mask in masks] + # print("group sizes", group_sizes) + assert np.sum(group_sizes) == len(allocations), "{:d} != {:d}".format(np.sum(group_sizes), len( + allocations)) + "\ngroups 1-2: {:s}" + str( + np.arange(N)[np.logical_and(mask_H, mask_A)]) + "\ngroups 2-3: {:s}" + str( + np.arange(N)[np.logical_and(mask_A, mask_V)]) + "\ngroups 3-4: {:s}" + str( + np.arange(N)[np.logical_and(mask_V, mask_Z)]) + return masks + + # a_cumsum = np.cumsum(a_agg_mean) + # indices_1 = a_cumsum < pars['N'] * a_agg_mean_mean * 0.1 + # print(np.sum(indices_1)) + # indices_1 = np.arange(int(pars['N'] * 0.03)) # pars['N_allocations']) + # indices_2 = np.logical_and(pars['N'] * a_agg_mean_mean * 0.1 < a_cumsum, a_cumsum < pars['N'] * a_agg_mean_mean * 0.5) + # indices_2 = np.arange(int(pars['N'] * 0.03), int(pars['N'] * 0.3)) # pars['N_allocations'], int(pars['N'] / 2)) + # indices_3 = a_cumsum > pars['N'] * a_agg_mean_mean * 0.5 + # indices_3 = np.arange(int(pars['N'] * 0.3), pars['N']) # int(pars['N'] / 2), pars['N']) + + +def divide_into_neighbouring_groups(allocations, W, n_groups=3): + if type(W) != np.ndarray: + W = W.toarray() + mask_b = allocations > 0 + n_neighbours = np.squeeze(np.sum(W[mask_b], axis=0)) + if n_groups == 3: + mask_Nb = np.logical_and(n_neighbours > 0, np.logical_not(mask_b)) + mask_R = np.logical_not(mask_b + mask_Nb) + masks = (mask_b, mask_Nb, mask_R) + elif n_groups == 4: + mask_NNb = np.logical_and(n_neighbours > 1, np.logical_not(mask_b)) + mask_Nb = np.logical_and(n_neighbours == 1, np.logical_not(mask_b)) + # mask_Nb = np.logical_and(np.logical_and(n_neighbours > 0, n_neighbours <= 2), np.logical_not(mask_b)) + mask_R = np.logical_not(mask_b + mask_NNb + mask_Nb) + masks = (mask_b, mask_NNb, mask_Nb, mask_R) + else: + raise Exception("n_groups not understood: " + str(n_groups)) + + group_sizes = [np.sum(mask) for mask in masks] + # print("group sizes", group_sizes) + assert np.sum(group_sizes) == len(allocations), "{:d} != {:d}".format(np.sum(group_sizes), len(allocations)) + return masks + + +# PRINT FUNCTIONS +def print_topology(ax, pars, print_variable="allocations"): + nets = load_networks(**pars) + + degree_stats = {"max": [], "mean": [], "assor": []} + for net in nets: + print("degree seq", np.unique(net.seq, return_counts=True)) + degree_stats["max"].append(max(net.seq)) + degree_stats["mean"].append(np.mean(net.seq)) + degree_stats["assor"].append(nx.degree_assortativity_coefficient(net.G)) + + for key, val in degree_stats.items(): + print("mean {:s}: {:f} +- {:f}".format(key, np.mean(val), np.std(val) / np.sqrt(len(val)))) + + +def print_a_disc_vs_deg(ax, pars, print_variable="degrees"): # ("degrees", "nodes") + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, networks = load_data(pars) + + if print_variable == "degrees": + for l in range(pars['n_nets']): + gain = networks[l].mean_a / np.sum(aes_disc[l] > 0) + if False: + def get_props_vs_k(seq, a): + seq_vals, idx, counts = np.unique(seq, return_inverse=True, return_counts=True) + sum_aes = np.bincount(idx, weights=a) + return seq_vals, sum_aes / counts + # print(seq_vals) : ['User0' 'User1' 'User2' 'User3' 'User4'] + # print(mean_aes) : [ 0.45 0.55 0.55 0.435 0.81666667] + # ax2.bar(seq_vals, np.ones_like(seq_vals) * pars['gain'], color="C4", alpha=0.2) + + seq, a = get_props_vs_k(seqs[l][bs[l] > 0], aes_disc[l][bs[l] > 0]) + ax.bar(range(len(a)), a / gain / pars['N'], color="purple", + # ax.plot(seq, a / gain / pars['N'], color="purple", + label=r"$b_i\neq0$") # , ls='', marker="o", markersize=2) # alpha=0.3) + print("Average targeted degrees: (a_k:b_k>0)", compute_average_targeted_degree(a, seq)) + + seq, a = get_props_vs_k(seqs[l][bs[l] == 0], aes_disc[l][bs[l] == 0]) + ax.bar(range(len(a)), a / gain / pars['N'], color="C2", + # ax.plot(seq, a / gain / pars['N'], color="C2", + label=r"$b_i=0$") # , ls='', marker="o", markersize=2) # alpha=0.3) + print("Average targeted degrees: (a_k:b_k=0)", compute_average_targeted_degree(a, seq)) + ax.set(ylim=[0, 1]) + ax.margins(x=0.0) + else: + seq_vals, idx, counts = np.unique(seqs[l], return_inverse=True, return_counts=True) + sum_aes = np.bincount(idx, weights=aes_disc[l]) + ax.bar(seq_vals, counts, color="grey") + ax.bar(seq_vals, sum_aes / gain / pars['N'], color="green") + ax.margins(x=0.0) + ax.set_yscale("log") + elif print_variable == "nodes": + if pars['network'] != "email": + raise Exception("Discrete allocations only implemented for email network") + if False: + for l in range(len(bs)): + seq = seqs[l][aes_disc[l] > 0] + b = bs[l][aes_disc[l] > 0] + seq_with = np.copy(seq) + seq_with[b == 0] = 0 + seq_without = np.copy(seq) + seq_without[b > 0] = 0 + gain = nets[l].mean_b / pars['N_allocations'] + step = pars['N'] / pars['N_allocations'] + ax.bar(np.arange(0, pars['N'], step), seq_with, color="C2", label=r"$b_i={:.1e}$".format(gain), + width=step) + ax.bar(np.arange(0, pars['N'], step), seq_without, color="C3", label=r"$b_i=0$", width=step) + ax.plot(seqs[l]) + # seq_with = seq[b<0] + # seq_without = seq[b==0] + # ax.bar(range(len(seq_with)), seq_with, color="C2", label=r"$a_k:b_k>0$") # alpha=0.3)) + # ax.bar(range(len(seq_with), len(seq_with) + len(seq_without)), seq_without, color="C3", + # label=r"$a_k:b_k=0$") # alpha=0.3) + n_ticks = 10 + tick_step = step * pars['N_allocations'] / n_ticks + ax.xaxis.set( + ticks=[]) # ticks=np.arange(0, pars['N'], tick_step), ticklabels=np.arange(0, pars['N_allocations'], int(pars['N_allocations']/n_ticks))) + else: + seqs_with = np.zeros(pars['N']) + seqs_without = np.zeros(pars['N']) + for l in range(len(bs)): + # seq = np.copy(seqs[l]) + # seq[aes_disc[l] == 0] = 0 + # seq_with = np.copy(seq) + # seq_without = np.copy(seq) + # seq_with[bs[l] == 0] = 0 + # seq_without[bs[l] > 0] = 0 + + # seq_with = np.zeros(pars['N']) + # seq_with[aes_disc[l]] + seqs_with[np.logical_and(aes_disc[l] > 0, bs[l] > 0)] += 1 + seqs_without[np.logical_and(aes_disc[l] > 0, bs[l] == 0)] += 1 + print(np.argmax(bs[l]), np.argmax(aes_disc[l])) + # seq_without = np.zeros(pars['N']) + + # ax.bar(np.arange(pars['N']), seq_with, color="purple", label=r"$b_i\neq0$") # , width=step) + # ax.bar(np.arange(pars['N']), seq_without, color="C1", label=r"$b_i=0$") # , width=step) + alphas = seqs_with + seqs_without + colours = 1 - seqs_with / alphas + alphas /= np.max(alphas) + # norm = mpl.colors.Normalize(vmin=0, vmax=k_max) + # colors = [plt.cm.cool(el) for el in colours] + for i in range(pars['N']): + # ax.bar(i, seqs[l][i], color=plt.cm.winter(colours[i]), alpha=alphas[i]) + ax.bar(i, seqs[l][i], alpha=alphas[i]) + ax.plot(seqs[l], linewidth=0.4) + + # for i, k in enumerate(seq): + # if k != 0: + # x_min = i + # break + # for i, k in enumerate(seq[::-1]): + # if k != 0: + # x_max = pars['N'] - 1 - i + # break + # ax.set(xlim=[x_min-1, x_max+1]) + # ax.xaxis.set(ticks=[]) + # ax.margins(x=0) + else: + raise Exception("print variable " + print_variable + " not understood.") + + # ax.set(xlabel='Node degree, k', title="") + ax.set(xlabel='Nodes targeted by the A-controller', title="") + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + if pars['axespar'] is not None: + if pars[pars['axespar']] == pars['axesarray'][0]: + ax.set(ylabel='Node degree, k') + + if pars['multiaxespar'] is not None: + if pars[pars['multiaxespar']] == pars['multiaxesarray'][0]: + ax.set(title=r"$a= {:s}\, b$".format(str(pars['bmul']))) + # ax.legend() + # pass + # ax.grid() + # plt.show() + + +def print_a_vs_deg(ax, pars, print_variable="allocations"): # (allocations, x, ) + ls = ("--", "-.", "solid", (0, (3, 5, 1, 5, 1, 5)), ":") + lw = 0.7 + + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, nets = load_data(pars) + + n_nets = len(nets) + n_deg = int(np.max(seqs)) + 1 + if print_variable == "groups": + n_groups = 4 + boxes = np.zeros((n_nets, n_deg, n_groups)) + for l, net in enumerate(nets): + if convs[l]: + masks = divide_into_allocation_groups(aes[l], n_groups, **pars) + for i in range(net.N): + for k, mask in enumerate(masks): + if mask[i]: + boxes[l, int(seqs[l][i]), k] += 1 + else: + print(l, "NOT CONVERGED") + + boxes0 = np.sum(boxes, axis=0) + tots = np.sum(boxes0, axis=1) + boxes = boxes0 / tots[:, None] + + for k in range(n_groups): + k = n_groups - k - 1 + + errors = np.zeros(n_deg) + for j in range(n_deg): + if not np.isnan(boxes0[j, k]): + count_j = int(boxes0[j, k]) + errors[j] = np.std([1] * count_j + [0] * (int(tots[j]) - count_j)) / np.sqrt(tots[j]) + + # boxes[:, k] + np.sum(boxes[:, k + 1:] + ax.bar(range(n_deg), boxes[:, k] + np.sum(boxes[:, :k], axis=1), color=ALLO_GROUP_COLOURS[k], + label=get_allo_label(k), yerr=errors, error_kw={"elinewidth": 0.5}) + + ax.set(ylabel=r"$P(\mathbf{G} \;|\; d_i)$", xlim=[0.5, n_deg + 0.5], ylim=[0, 1]) + ax.legend(loc="upper left") + if pars['network'] == "conf": + ax.set_xscale("log") + + elif print_variable == "boxplot": + boxes = [[] for _ in range(int(np.max(seqs[0])) + 1)] + for l in range(pars['n_nets']): + for i in range(pars['N']): + boxes[int(seqs[l][i])].append(aes[l][i]) + + # labels = np.array([str(i) for i in np.arange(len(boxes))]) + # labels[::2] = "" + # ax.boxplot(boxes, sym=".", labels=labels) + + labels = np.array([str(i) for i, el in enumerate(boxes) if len(el) > 1]) + labels[:40:2] = "" + # ax.boxplot([el for el in boxes if len(el) > 1], labels=labels, flierprops=dict(marker='.', markersize=1), + # positions=[i for i, el in enumerate(boxes) if len(el) > 1]) + + # ax.violinplot([el for el in boxes if len(el)>1]) + ax.errorbar(range(len(boxes)), [np.mean(box) if box else np.nan for box in boxes], markersize=3, + yerr=[np.std(box) / np.sqrt(len(box)) if box else np.nan for box in boxes], ls="", marker="o") + # ax.errorbar(range(len(boxes)), [np.median(box) if box else 0 for box in boxes], + # yerr=[[np.quantile(box, quant) if box else 0 for box in boxes] for quant in (0.25, 0.75)]) + # ax.plot(range(len(boxes)), [np.median(box) if box else None for box in boxes]) + # ax.plot(range(len(boxes)), [np.quantile(box, 0.25) if box else None for box in boxes]) + # ax.plot(range(len(boxes)), [np.quantile(box, 0.75) if box else None for box in boxes]) + + ax.set(ylim=-0.001, ylabel=r"Allocation strength, $w_{ai}$") + + elif print_variable == "correlations": + n_groups = 4 + boxes = np.zeros((n_nets, n_deg, n_groups)) + for l, net in enumerate(nets): + if convs[l]: + masks = divide_into_allocation_groups(aes[l], n_groups, **pars) + for i in range(net.N): + for k, mask in enumerate(masks): + if mask[i]: + boxes[l, int(seqs[l][i]), k] += 1 + else: + print(l, "NOT CONVERGED") + + boxes1 = boxes / np.sum(boxes, axis=2)[..., None] # For Kendall Tau + + # correlation coefficients + print("\n\nCORRELATIONS OF PROBABILITIES") + mask = np.logical_not(np.isnan(boxes[:, 0])) + size = len(boxes[:, 0][mask]) + for k in range(n_groups): + print("") + print(get_allo_label(k)) + print(kendalltau(boxes[:, k][mask], range(size), nan_policy="omit")) + taus = np.array([kendalltau(box[:, k][mask], range(size), nan_policy="omit") for box in boxes1]) + print(taus) + print("Kendall taus:", np.mean(taus, axis=0), np.std(taus, axis=0)) + print("Weighted taus:", np.sum(taus[:, 0] * np.log(taus[:, 1])) / np.sum(np.log(taus[:, 1]))) + print(spearmanr(boxes[:, k][mask], range(size), nan_policy="omit")) + # print("pearson", pearsonr(boxes[:, k][mask], np.unique(seqs[0]))) + # print(boxes[:, k][mask], np.unique(seqs[0])) + print("linregress", linregress(np.unique(seqs), boxes[:, k][mask])) + + # With error-bars + # boxes /= np.sum(boxes, axis=2)[:, :, None] + # boxes_mean = np.mean(boxes, axis=0) + # boxes_std = np.std(boxes, axis=0) + # ax.bar(range(len(boxes_mean)), boxes_mean[:, 0], yerr=boxes_std[:, 0]) + # ax.bar(range(len(boxes_mean)), boxes_mean[:, 1], yerr=boxes_std[:, 1], bottom=boxes_mean[:, 0]) + # ax.bar(ind, boxes_mean[:, 2], yerr=boxes_std[:, 2], bottom=boxes_mean[:, 0]+boxes_mean[:, 1]) + + print("\nINTRA-GROUP CORRELATIONS") + boxes = [[] for _ in range(n_groups + 1)] + for l, net in enumerate(nets): + if convs[l]: + a_mean = np.mean(aes[l]) + # indices = np.argsort(aes[l])[::-1] + for i in range(net.N): + if aes[l, i] > MULTIPLIER * a_mean: + boxes[0].append((int(seqs[l][i]), aes[l, i])) + elif a_mean < aes[l, i] < MULTIPLIER * a_mean: + boxes[1].append((int(seqs[l][i]), aes[l, i])) + elif 0 < aes[l, i] < a_mean: + boxes[2].append((int(seqs[l][i]), aes[l, i])) + else: + boxes[3].append((int(seqs[l][i]), aes[l, i])) + boxes[4].append((int(seqs[l][i]), aes_disc[l, i])) + else: + print(l, "NOT CONVERGED") + + all_points = np.array(flatten([box for box in boxes[:-1]])) + boxes.append(all_points) + boxes.append([(k, np.mean(all_points[:, 1][all_points[:, 0] == k])) for k in np.unique(all_points[:, 0])]) + legend = [get_allo_label(k) for k in range(n_groups)] + ["DISC", "ALL", "ALL_K"] + for i in range(len(boxes)): + box = np.array(boxes[i]) + print("") + print(legend[i]) + print(kendalltau(box[:, 0], box[:, 1])) + print(spearmanr(box[:, 0], box[:, 1])) + print("pearson", pearsonr(box[:, 0], box[:, 1])) + + elif print_variable == "discrete": + n_deg = int(np.max(seqs)) + 1 + boxes = np.zeros((n_nets, n_deg, 4)) + if True: + for l, net in enumerate(nets): + masks = divide_into_allocation_groups(aes[l], **pars) + for i in range(net.N): + for k, mask in enumerate(masks[:2]): + if mask[i]: + boxes[l, int(seqs[l][i]), k] += 1 + if aes_disc[l, i] > 0: + boxes[l, int(seqs[l][i]), 3] += 1 + + masks = divide_into_neighbouring_groups(net.b[:, 0], net.W) + for degree in nets[l].seq[masks[1]]: + boxes[l, degree, 2] += 1 + + boxes = np.sum(boxes, axis=0) + # boxes /= boxes[..., 0][:, None] + # boxes /= np.sum(boxes, axis=1)[:, None] + boxes /= np.sum(boxes, axis=0)[None, :] + + ind = np.arange(n_deg) + # width = 0.45 + # ax.bar(ind + width / 2, boxes[:, 1], width, color="red", label=r"Continuous IM, "+ALLO_GROUP_LABELS[0]) + # ax.bar(ind - width / 2, boxes[:, 3], width, color=DISCRETE_COLOR, label=r"Discrete IM, $w_{ai}=g$") + + ax.plot(ind, boxes[:, 0], color=ALLO_GROUP_COLOURS[0], + label=r"Continuous IM, " + get_allo_label(0, short=True), ls=ls[0], linewidth=lw) + ax.plot(ind, boxes[:, 1], color=ALLO_GROUP_COLOURS[1], + label=r"Continuous IM, " + get_allo_label(1, short=True), ls=ls[2], linewidth=lw) + ax.plot(ind, boxes[:, 3], color=DISCRETE_COLOR, label=r"Discrete IM, $\mathbf{T}_a$", ls=ls[1], + linewidth=lw) + ax.plot(ind, boxes[:, 2], color="b", label=r"Neighbours of $\mathbf{T}_b$ ($\mathbf{N}_b$)", ls=ls[-1], + linewidth=lw) + + ax.set(ylim=0) + + for i in (1, 3): + print("group", i, np.sum([d * p for d, p in enumerate(boxes[:, i])])) + + else: # For including the three groups at once in this plot + for l in range(pars['n_nets']): + a_mean = np.mean(aes[l]) + # indices = np.argsort(aes[l])[::-1] + for i in range(N): + if aes[l, i] < a_mean: + # if i in indices[:int(N*0.03)]: # pars['N_allocations']]: + boxes[l, int(seqs[l][i]), 2] += 1 + elif aes[l, i] < 3 * a_mean: + # elif i in indices[int(N*0.03):int(N*0.3)]: # pars['N_allocations']:int(N/2)]: + boxes[l, int(seqs[l][i]), 1] += 1 + else: + boxes[l, int(seqs[l][i]), 0] += 1 + if aes_disc[l, i] > 0: + boxes[l, int(seqs[l][i]), 3] += 1 + # if i in indices[:pars['N_allocations']]: + # boxes[l, int(seqs[l][i]), 1] += 1 + + boxes = np.sum(boxes, axis=0) + # boxes /= np.sum(boxes, axis=1)[:, None] + # boxes /= np.sum(boxes, axis=0)[None, :] + boxes[:, :3] /= np.sum(boxes[:, :3]) + boxes[:, 3] /= np.sum(boxes[:, 3]) + width = 0.45 + ind = np.arange(n_deg) + ax.bar(ind - width / 2, boxes[..., 0], width, color="red", label=r"Continuous IM, $w_{ai}>3 \bar{w_a}$") + ax.bar(ind - width / 2, boxes[..., 1], width, bottom=boxes[:, 0], color="orange", + label=r"Continuous IM, $w_{ai}> \bar{w_a}$") + ax.bar(ind - width / 2, boxes[..., 2], width, bottom=boxes[:, 0] + boxes[:, 1], color="yellow", + label=r"Continuous IM, $w_{ai}< \bar{w_a}$") + ax.bar(ind + width / 2, boxes[..., 3], width, color="green", label=r"Discrete IM, $w_{ai}>0$") + + ax.set(ylabel=r"$P(d_i)$", xlim=[0.5, n_deg + 0.5]) + ax.legend() + + # boxes /= np.sum(boxes, axis=2)[:, :, None] + # boxes_mean = np.mean(boxes, axis=0) + # boxes_std = np.std(boxes, axis=0) + # ax.bar(range(len(boxes_mean)), boxes_mean[:, 0], yerr=boxes_std[:, 0]) + # ax.bar(range(len(boxes_mean)), boxes_mean[:, 1], yerr=boxes_std[:, 1], bottom=boxes_mean[:, 0]) + # ax.bar(range(len(boxes_mean)), boxes_mean[:, 2], yerr=boxes_std[:, 2], bottom=boxes_mean[:, 0]+boxes_mean[:, 1]) + + elif print_variable == "discrete_degree": + n_deg = int(np.max(seqs)) + 1 + boxes = np.zeros((pars['n_nets'], n_deg, 4)) + for l, net in enumerate(nets): + masks = np.argsort(aes[l])[::-1] + for i in range(net.N): + boxes[l, int(seqs[l][i]), 0] += 1 + if aes_disc[l, i] > 0: + boxes[l, int(seqs[l][i]), 3] += 1 + if i in masks[:pars['N_allocations']]: + boxes[l, int(seqs[l][i]), 1] += 1 + + boxes = np.sum(boxes, axis=0) + boxes /= boxes[..., 0][:, None] + # boxes /= np.sum(boxes, axis=1)[:, None] + # boxes /= np.sum(boxes, axis=0)[None, :] + ind = np.arange(n_deg) + ax.bar(ind, boxes[..., 0], color="lightgrey") + ax.bar(ind, boxes[..., 3], color=DISCRETE_COLOR, label=r"Discrete IM, $w_{ai}>0$") + ax.set(ylabel=r"$P(w_{ai}=g \;|\; d_i)$", xlim=[0.5, n_deg + 0.5], ylim=[0, 1]) + # ax.legend() + + elif print_variable == "shielding": + boxes = np.zeros((n_nets, n_deg, 4)) + for l, net in enumerate(nets): + seq = net.seq + neigh_masks = divide_into_neighbouring_groups(net.b[:, 0], net.W) + allo_masks = divide_into_allocation_groups(net.a) + for i in range(net.N): + boxes[l, int(seqs[l][i]), 0] += 1 + if neigh_masks[1][i]: + boxes[l, int(seq[i]), 1] += 1 + if allo_masks[1][i]: + boxes[l, int(seq[i]), 3] += 1 + # if aes_disc[l, i] > 0: + # boxes[l, int(seqs[l][i]), 2] += 1 + + boxes0 = np.sum(boxes, axis=0) + boxes = boxes0 / boxes0[..., 0][:, None] + # boxes = np.nan_to_num(boxes) + ind = np.arange(n_deg)[np.logical_not(np.isnan(boxes[:, 0]))] + # ax.bar(range(n_deg), np.sum(boxes, axis=1), color="lightgrey") + # ax.plot(ind, boxes[:, 1][ind], color="blue", label=get_neigh_label(1), linewidth=linewidth, ls=ls[0]) + + errors = np.zeros((n_deg, 2)) + for j in range(n_deg): + if not np.isnan(boxes0[j, 0]) and not np.isnan(boxes0[j, 1]): + errors[j, 0] = np.std( + [1] * int(boxes0[j, 1]) + [0] * (int(boxes0[j, 0]) - int(boxes0[j, 1]))) / np.sqrt(boxes0[j, 0]) + errors[j, 1] = np.std( + [1] * int(boxes0[j, 3]) + [0] * (int(boxes0[j, 0]) - int(boxes0[j, 3]))) / np.sqrt(boxes0[j, 0]) + + style_dic = {"linewidth": lw, "elinewidth": 0.01, "capsize": 0.01} # , "ecolor": "grey"} + ax.errorbar(ind, boxes[:, 1][ind], yerr=errors[:, 0][ind], color=NEIGH_GROUP_COLOURS[1], + label=get_neigh_label(1, short=True), ls=ls[0], **style_dic) + # ax.plot(ind, boxes[:, 2][ind], color=DISCRETE_COLOR, label=r"$\mathbf{T}_a$", linewidth=lw, ls=ls[1]) + # ax.plot(ind, boxes[:, 3][ind], color=ALLO_GROUP_COLOURS[1], label=get_allo_label(1), linewidth=lw, ls=ls[2]) + ax.errorbar(ind, boxes[:, 3][ind], yerr=errors[:, 1][ind], color=ALLO_GROUP_COLOURS[1], + label=get_allo_label(1, short=True), ls=ls[2], **style_dic) + # ax.fill_between(ind, boxes[:,1][ind], color="blue", alpha=0.5) + # ax.fill_between(ind, boxes[:,2][ind], color=DISCRETE_COLOR, alpha=0.5) + + ax.set(ylabel=r"$P(\; \cdot \;|\; d_i)$", xlim=[0.5, n_deg + 0.5], ylim=[0, 1]) + if pars["network"] == "ba": + # ax.set_xscale("log") + ax.set(xlim=[5, 100]) + # ax.set(ylabel=r"$P(" + NEIGH_GROUP_LABELS[1][1:-1] + " \;|\; d_i)$", xlim=[0.5, n_deg + 0.5], ylim=[0, 1]) + ax.legend(loc="upper right", ncol=2) + + elif print_variable == "allocations": + # FITTING + alphas = np.zeros((pars['n_nets'], 2)) + for l in range(pars['n_nets']): + if all((print_variable == "allocations", aes is not None, aes_disc is not None)): + print("Average targeted degrees: (A)", compute_average_targeted_degree(aes[l], seqs[l]), + # "(A_disc)", compute_average_targeted_degree(aes_disc[l], seqs[l]), + "(B)", compute_average_targeted_degree(bs[l], seqs[l])) + if pars['b_allocation'] == "linear": + fitting_a = {} + for i, k in enumerate(seqs[l]): + if aes[l, i] >= 0: + if int(k) not in fitting_a: + fitting_a[int(k)] = [aes[l, i]] + else: + fitting_a[int(k)].append(aes[l, i]) + + sort_k = np.sort(list(fitting_a.keys())) + fitting_a = [np.mean(fitting_a[k]) for k in sort_k] # if k < len(fitting_a)] + alphas[l] = np.polyfit(sort_k, fitting_a, 1) + elif pars['b_allocation'] == "powerlaw": + # reg = LinearRegression().fit(np.log(seqs[l]).reshape(-1, 1), np.log(aes[l])) + # alphas[l] = (reg.coef_, reg.intercept_) + # print(reg.score(np.log(seqs[l]), np.log(aes[l]))) + alphas[l] = np.polyfit(np.log(seqs[l]), np.log(aes[l]), 1) + + for l in range(pars['n_nets']): + if aes_disc is not None: + seq_vals, idx, counts = np.unique(seqs[l], return_inverse=True, return_counts=True) + sum_aes = np.bincount(idx, weights=aes_disc[l]) + mean_aes = sum_aes / counts + # print(seq_vals) : ['User0' 'User1' 'User2' 'User3' 'User4'] + # print(mean_aes) : [ 0.45 0.55 0.55 0.435 0.81666667] + # ax2.bar(seq_vals, np.ones_like(seq_vals) * pars['gain'], color="C4", alpha=0.2) + if pars['b_allocation'] == "discrete": + ax.plot(seq_vals, mean_aes, color="C2", label=r"$a_{disc}$", ls='', marker="o", + markersize=2) # alpha=0.3) + else: + ax.plot(seq_vals, mean_aes, color="C2", label=r"$a_{disc}$", ls='', marker="o", + markersize=2) # alpha=0.3) + if convs is not None and aes is not None: + if convs[l]: + if pars['b_allocation'] == "powerlaw": + # ax.loglog([1, np.max(seqs[l])], + # [np.e ** alphas[l, 1], np.e ** alphas[l, 1] * seqs[l, -1] ** alphas[l, 0]], + # color="C1", ls="solid", marker="", linewidth=0.4) + ax.plot(seqs[l], aes[l], color="C1", ls="", marker="o", markersize=2, label=r"$a_i$") + # ax.loglog(seqs[l], bs[l], color="C0", ls="", marker="o", markersize=2, label=r"$b_i$") + # ax.loglog(seqs[l], bs[l] / pars['bmul'], color="C0", ls="", marker="o", markersize=2) + else: + if pars['b_allocation'] == "linear": + # ax.plot([0, seqs[l, i_star - 1]], [alphas[l, 1], alphas[l, 1] + seqs[l, i_star - 1] * alphas[l, 0]], + # color="C1", ls="solid", marker="", linewidth=0.4) + ax.plot([0, sort_k[-1]], [alphas[l, 1], alphas[l, 1] + sort_k[-1] * alphas[l, 0]], + color="C1", ls="solid", marker="", linewidth=0.4) + elif pars['b_allocation'] in ("sin", "Amajor"): + if nets[l].mean_a + nets[l].mean_b > np.mean(seqs[l]): + a_vec = compute_a_analytical_big_budget(bs[l], a=nets.mean_a, b=nets.mean_b) + else: + a_vec = compute_a_analytical_small_budget(seqs[l], bs[l], a=nets.mean_a, b=nets.mean_b) + ax.plot(seqs[l], a_vec, color="C1", ls="solid", marker="", linewidth=0.4) + ax.plot(seqs[l], bs[l], color="C0", ls="solid", marker="", linewidth=0.4) + ax.plot(seqs[l], aes[l], color="C1", ls="", marker="o", markersize=0.5, label=r"$a_i$") + + # ax.plot(seqs[l], bs[l] / pars['bmul'], color="C0", ls="", marker="o", markersize=0.5, label=r"$b_i \cdot r$") + if pars['b_allocation'] != "discrete": + ax.plot(seqs[l], bs[l], color="C0", ls="", marker="o", markersize=0.5, label=r"$b_i$") + + elif print_variable == "x": + for l, net in enumerate(nets): + ax.plot(seqs[l], xs[l], ls="", marker="o", markersize=2) + else: + raise Exception("Print variable '" + print_variable + "' not understood.") + + title = "" + if pars['b_allocation'] == 'powerlaw' and aes is not None: + title = r"$a_k \propto k^{" + "{:.3f}".format(np.mean(alphas[:, 0])) + r"}, b_k \propto k^{" + "{:.3f}".format( + pars['beta']) + r"}$" # + ", r = {:.1f}".format(1 / pars['bmul']) + elif pars['b_allocation'] == "linear": + title = r"$\beta\!= {:.3f}$".format(pars['beta']) + if print_variable == "allocations": + # title += r", $\alpha\!= " + "{:.3f}$".format(np.mean(alphas[:, 0])) + # corr = np.corrcoef(aes[l], bs[l]) + # print(corr) + # title += r", $R_{ab}\!= $" + " {:.2f}".format(corr[0, 1]) + # if Xs is not None: + # title += ", X = {:.3f} ".format(np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + # if "add_discrete" in pars: + # if pars['add_discrete']: + # title += r", $X_{disc}$" + " = {:.3f} ".format( + # np.mean(Xs_disc)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + ax.set(ylabel="Per-node allocations") + elif print_variable == "x": + ax.set(ylabel=r"Per-node vote share, $x_i$") + if Xs is not None: + title += r", $X_{GA}\!=$" + "{:.4f} ".format(np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + elif pars['b_allocation'] in ("sin", "Amajor"): + ax.set(ylim=0) + + ax.set(xlabel='Node degree, $d_i$', title=title) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + if print_variable == 'allocations' and pars['bmul'] == 10: + ax.legend() + # ax.grid() + + return boxes[:, (1, 3)] + + +def print_a_vs_b(ax, pars, print_variable=None): + aes, bs, seqs, Xs, xs, convs, _, _, _, nets = load_data(pars) + assert len(nets) == 1 + a, b = nets[0].mean_a, nets[0].mean_b + + k_max = seqs[0, -1] + if pars['network'] in ('email', 'ba'): + norm = mpl.colors.LogNorm(vmin=1, vmax=k_max) + else: + norm = mpl.colors.Normalize(vmin=1, vmax=k_max) + + # alphas = np.zeros((len(aes), 2)) + for l in range(len(aes)): + a_vec, b_vec = aes[l], bs[l] + if convs[l]: + # b_max = np.max(bs[l]) + # b_star = b_max + # for i, a_i in enumerate(aes[l]): + # if np.isclose(a_i, 0) and b[i] < b_star: + # b_star = b[i] + # print("Cut point at b* = {:.2f}".format(b_star)) + # fitting_a = a[b < b_star] + # fitting_b = b[b < b_star] + # fitting_a = a_vec[a_vec > 0] + # fitting_b = b_vec[a_vec > 0] + # b_star = np.max(fitting_b) + # alphas[l] = np.polyfit(fitting_b, fitting_a, 1) + + # colors = np.array([plt.cm.cool(np.log(int(k)) / np.log(k_max)) for k in seqs[l]]) + ax.scatter(b_vec, a_vec, c=seqs[l], marker="o", s=0.5, norm=norm, cmap=plt.cm.get_cmap("cool")) + # ax.plot([0, b_star], [alphas[l, 1], alphas[l, 1] + b_star * alphas[l, 0]], color="C1", ls="solid", + # marker="", linewidth=0.4) + + if pars['b_allocation'] == "random": + b_max = 2 * b + elif pars['b_allocation'] == "discrete": + b_max = np.max(bs) + + low_budget_label = r"$w^L_{ai} \; (w_{ai}\!+\!w_{bi}\!\ll\!d_i)$" + high_budget_label = r"$w^H_{ai} \; (w_{ai}\!+\!w_{bi}\!\gg\!d_i)$" + lw = 1.5 + color = "k" + assert len(bs) == 1 + + ana = [] + # Low budget limit + if (a + b) < np.mean(seqs[0]) * 1.1: + intercept_ana = (a + b) / 2 + bi_coeff_ana = (a / b - 1) / 2 + if a >= 0.99 * b: + ax.plot([0, b_max], [intercept_ana, intercept_ana + b_max * bi_coeff_ana], color=color, ls="solid", + marker="", linewidth=lw, label=low_budget_label) + ana.append([intercept_ana, intercept_ana + b_max * bi_coeff_ana]) + elif pars['b_allocation'] == "random": + b_artif = np.array([]) + seq_artif = np.array([]) + for d in seqs[0]: + b_artif = np.append(b_artif, np.linspace(0, b_max, 100)) + seq_artif = np.append(seq_artif, [d] * 100) + a_ana = compute_a_analytical_small_budget(seq_artif, b_artif, a, b) + ana.append(a_ana) + for d in np.unique(seqs[0]): + if d % 6 == 1: + mask = np.logical_and(seq_artif == d, a_ana > 0) + color2 = plt.cm.get_cmap("cool")(norm(d)) + ax.plot(b_artif[mask], a_ana[mask], color=color2, ls="solid", marker="", linewidth=1.0) + ax.plot([0], [0], color=plt.cm.get_cmap("cool")(norm(25)), ls="solid", marker="", linewidth=1.0, + label=low_budget_label) + elif pars['b_allocation'] == "discrete": + a_ana = compute_a_analytical_small_budget(seqs[0], bs[0], a, b) + ax.plot(bs[0], a_ana, color=color, ls="solid", marker="", linewidth=1.0, label=low_budget_label) + + # High budget limit + if (a + b) > np.mean(seqs[0]) * 0.9: + if pars['b_allocation'] == "random": + b_ana = np.linspace(0, b_max, 100) + a_ana = compute_a_analytical_big_budget(b_ana, a, b) + ax.plot(b_ana, a_ana, color=color, ls="--", marker="", linewidth=lw, label=high_budget_label) + elif pars['b_allocation'] == "discrete": + b_ana = bs[0] + a_ana = compute_a_analytical_big_budget(b_ana, a, b) + ax.plot([0, b_max], [np.min(a_ana), np.max(a_ana)], color=color, ls="--", marker="", linewidth=lw, + label=high_budget_label) + ana.append(a_ana) + + if pars['b_allocation'] == "random": + if pars['bmul'] < 1.1: + ax.set(ylim=[0, 2 * a], xlim=[0, b_max]) + else: + ax.set(ylim=0) + ax.margins(x=0.0, y=0.0) + ax.legend(columnspacing=0.01, handletextpad=0.3, loc="lower right" if pars["bmul"] == 0.1 or pars["kabmul"]==10 else "upper right") + + # title = r"$a={:.2f},\ b={:.2f}$".format(a, b) + title = "" + xlabel = r"$w_{bi}$" + if pars['axespar'] == 'kabmul': + kabmul = pars['kabmul'] + if kabmul == 1: + kabmul = "" + title += r"$\langle w_{a} \rangle+\langle w_b \rangle= " + str(kabmul) + r"\,\langle d \rangle$" + elif pars['axespar'] == "bva": + xlabel += r"$b_i$" + r"$\quad(a= {:.1f}\, b)$".format(a / b) + + ylabel = r"$w_{ai}$" + if pars['multiaxespar'] == "kabmul": + ylabel += r"$\quad(a+b= {:.1f})$".format(a + b) + elif pars['multiaxespar'] == "bmul": + # ylabel += r"$\quad(\,\mathcal{B}_a/\mathcal{B}_b=" + str(1 / pars['bmul']) + r"\,)$" + bmul = 1 / pars['bmul'] + if np.isclose(bmul, int(bmul)): + bmul = int(bmul) + ylabel = r"$\mathcal{B}_a/\mathcal{B}_b=" + str(bmul) + r"$" + "\n" + r" $w_{ai}$" + + ax.set(title=title, xlabel=xlabel, ylabel=ylabel) + # ax.grid() + + if pars['axespar'] is not None and pars[pars['axespar']] == pars['axesarray'][-1]: + from mpl_toolkits.axes_grid1 import make_axes_locatable + # cax, _ = matplotlib.colorbar.make_axes(ax) + divider = make_axes_locatable(ax) + cax = divider.append_axes("right", size="5%", pad=0.05) + cb = mpl.colorbar.ColorbarBase(cax, cmap=plt.cm.get_cmap('cool'), norm=norm) + cb.set_label('$d_i$') + + return aes[0], bs[0], seqs[0], ana + + +def print_Fa_vs_a(ax, pars, print_variable=None): + from scipy.stats import gaussian_kde, entropy + + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, nets = load_data(pars) + + # factor = 0.2 + + for l in range(len(aes)): + a, b = aes[l], bs[l] + + if pars['b_allocation'] != "discrete": + x = np.linspace(0., np.max([np.max(a), np.max(aes_disc[l]), np.max(b)]), 200) + + # density = gaussian_kde(aes_disc, bw_method=factor) + density = gaussian_kde(aes_disc) + # density.covariance_factor = lambda: .01 + # density._compute_covariance() + ax.plot(x, density(x), label=r"$a_{disc}$", color="C2") + # a_disc_index = entropy(density(x)) + + # density = gaussian_kde(b, bw_method=factor) + density = gaussian_kde(b) + ax.plot(x, density(x), label="b", color="C0") + # a_disc_index = entropy(density(x)) + + title = "" + else: + x = np.linspace(0., np.max(a), 200) + n_a_nodes = int(nets.mean_a * pars['N'] / pars['gain']) + n_b_nodes = int(nets.mean_b * pars['N'] / pars['gain']) + title = r"$N_{a} = " + "{:d}, ".format(n_a_nodes) + r"N_{b} = " + "{:d}$\n".format(n_b_nodes) + + if convs[l]: + # density = gaussian_kde(a, bw_method=factor) + density = gaussian_kde(a) + ax.plot(x, density(x), label="a", color="C1") + # a_index = entropy(density(x)) + else: + ax.plot([0], [0], label="Not converged") + + a_index = entropy(a) + a_disc_index = entropy(aes_disc[l]) + b_index = entropy(b) + title += r"$H_{a}:" + "{:.2f}, ".format(a_index) + "H_{adisc}:" + "{:.2f}, ".format( + a_disc_index) + "H_{b}:" + "{:.2f}$".format(b_index) # + "\ncacafuti" + + ax.set(title=title, xlabel=r"$a$", ylabel=r"$F(a)$") + # ax.grid() + ax.legend() + + # xs = np.linspace(0, 8, 200) + # density.covariance_factor = lambda: .25 + # density._compute_covariance() + # plt.plot(xs, density(xs)) + # plt.show() + + +def print_a_vs_nodes(ax, pars, print_variable=None): + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, networks = load_data(pars) + + aes_sorted = np.zeros((pars['n_nets'], len(aes[0]))) + for l in range(pars['n_nets']): + print("deg of B-targets", seqs[l][~np.isclose(bs[l], 0)]) + indices = np.argsort(aes[l])[::-1] + # indices = np.arange(pars['N']) + # indices = np.arange(len(b))[np.logical_or(aes[l] > np.mean(aes[l]), aes_disc[l] > 0)] + aes_sorted[l] = aes[l][indices] + if not convs[l]: + warnings.warn(str(l) + " NOT CONVERGED") + + x_axis = np.arange(pars['N']) + if False: # pars['n_nets'] == 1: + for l in range(pars['n_nets']): + ax.bar(x_axis, bs[l][indices], color="C0", label=r"$w_{bi}$") # ,\; H:{:.2f}$".format(b_index)) + # if pars['add_discrete']: + # ax.bar(x_axis, aes_disc[l][indices], color="C2", label=r"$w_{ai}^{\mathrm{disc}}$") + + aes_agg = np.mean(aes_sorted, axis=0) # a_agg_std = np.std(a_agg, axis=0) + masks = divide_into_allocation_groups(aes_agg, n_groups=4, **pars) # , criterion="std") + sizes = [np.sum(mask) for mask in masks] + + # ax.bar(x_axis[indices_1], a_agg_mean[indices_1], yerr=a_agg_std[indices_1], color="red", label=r"$w_{ai}$") + for k, mask in enumerate(masks): + if np.any(mask): + ax.bar(x_axis[mask], aes_agg[mask], color=ALLO_GROUP_COLOURS[k], + label="$|$" + get_allo_label(k, short=True) + "$|={:d}$".format(sizes[k])) + else: + ax.bar(-100, aes_agg[0], color=ALLO_GROUP_COLOURS[k], + label="$|$" + get_allo_label(k, short=True) + "$|={:d}$".format(sizes[k])) + + # ax.plot(x_axis[:-1], 1 - a_agg_mean[1:] / a_agg_mean[:-1], color="k", label="difference") + + # ax.plot(x_axis, a_agg_mean + a_agg_std, color="grey", linewidth=0.1) + # ax.plot(x_axis, a_agg_mean - a_agg_std, color="grey", linewidth=0.1) + # ax.plot(x_axis, a_agg_mean, color="k", linewidth=0.1) + + if True: # pars['N_allocations'] < 40: + ax.set_yscale("log") + ax.set(xlim=[x_axis[0] - int(len(x_axis) / 50), x_axis[-1]], ylim=[0.03, 10]) + print("lowest values", aes_agg[-10:]) + # ax.set(xlim=[1100, 1133]) # [0, 30]) # [0, max(aes[0])]) + # ax.margins(x=0.0) + + if len(pars['axesarray']) > 1: + ax.set(title="N allocations = " + str(pars['N_allocations'])) + # ax.set(xlabel=r"Nodes (sorted by degree, ascending)", ylabel=r"Allocation strength, $w_{ai},\; w_{bi}$") + ax.set(xlabel=r"$i$ (sorted by $w_{ai}$, descending)", ylabel=r"Allocation strength, $w_{ai}$") # ,\; w_{bi}$") + # ax.grid() + ax.legend() + + # ax.margins(x=0.0) + + def compute_mean_std(vec): + print("a_mean", np.mean(vec), "a_std", np.std(vec), "a_std/a_mean", np.std(vec) / np.mean(vec)) + + compute_mean_std(aes_sorted) + compute_mean_std(aes_agg[masks[2]]) + + return aes_agg + + +def print_graph(ax, pars, print_variable=None): + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, nets = load_data(pars) + + for l in range(pars['n_nets']): + if convs[l]: + net = nets[l] + node_list = np.array(net.G.nodes) + a, b = net.a, net.b[:, 0] + + if pars['b_allocation'] == "discrete": + pos = nx.spring_layout(net.G) + opponent_true = np.flatnonzero(b) + opponent_false = np.where(b < 0.1)[0] + norm = mpl.colors.Normalize(vmin=0, vmax=np.max(a)) + nx.draw_networkx_nodes(net.G, pos, nodelist=node_list(opponent_true), node_shape="s", + cmap=plt.cm.get_cmap("Oranges"), norm=norm, node_color=a[opponent_true], ax=ax) + nx.draw_networkx_nodes(net.G, pos, nodelist=node_list(opponent_false), node_shape="o", + cmap=plt.cm.get_cmap("Oranges"), norm=norm, node_color=a[opponent_false], ax=ax) + nx.draw_networkx_edges(net.G, pos, ax=ax, edge_color="grey", cmap=plt.cm.get_cmap("Oranges"), vmin=0, + vmax=2) + ax.set_axis_off() + else: + if False: + log_a = np.array([np.log(a_el) if a_el > 0 else np.log(0.002) for a_el in a]) + nx.draw(net.G, node_color=log_a, ax=ax, edge_color="grey", cmap=plt.cm.get_cmap("Oranges")) + else: + nx.draw(net.G, node_color=a, ax=ax, edge_color="grey", cmap=plt.cm.get_cmap("Oranges")) + # vmin=np.log(0.002), vmax=np.log(2)) + else: + ax.plot([0], [0], label="Not converged") + + # title += r"$H_{a}:" + "{:.2f}, ".format(a_index) + "H_{b}:" + "{:.2f}$".format( + # b_index) # + "H_{adisc}:" + "{:.2f}, ".format(a_disc_index) + + +def print_avg_vs_r(ax, pars, print_variable="allocations"): + colors = plt.cm.get_cmap("winter")(np.linspace(0, 1, len(pars['linesarray']))) + for j, linesval in enumerate(create_range(pars, "lines")): + avg_degrees = np.zeros(len(pars['axisarray'])) + for i, val in enumerate(create_range(pars)): + print(pars['axispar'], i, val) + aes, bs, seqs, Xs, xs, convs, nets = load_data(pars) + + for l in range(len(aes)): + if i == 0 and l == 0: + b_avg_degree = compute_average_targeted_degree(bs[l], seqs[l]) + if convs is not None: + if convs[l]: + avg_degrees[i] = compute_average_targeted_degree(aes[l], seqs[l]) + else: + print("NOT CONVERGED") + + axis_vec = np.array(list(create_range(pars)))[::-1] + + if print_variable == "allocations": + if pars['b_allocation'] == "powerlaw": + ax.semilogx(axis_vec, avg_degrees, color=colors[j], marker=".", markersize=2, + label=r"$\beta\!=\!{:.1f}".format(linesval) + r", \langle k\rangle_b =" + "{:.1f}".format( + b_avg_degree) + "$") + else: + if pars['b_allocation'] == "linear": + pass + # ax.plot([0, sort_k[-1]], [alphas[l, 1], alphas[l, 1] + sort_k[-1] * alphas[l, 0]], + # color="C1", ls="solid", marker="", linewidth=0.4) + elif pars['b_allocation'] == "sin": + # ax.plot(seqs[l], ((nets.mean_a / nets.mean_b - 1) * bs[l] + nets[l].mean_a + nets[l].mean_b) / 2, + ax.plot(seqs[l], + ((nets[l].mean_a / nets[l].mean_b - 1) * bs[l] + nets[l].mean_a + nets[l].mean_b) / 2, + color="C1", ls="solid", marker="", linewidth=0.4) + ax.plot(seqs[l], aes[l], color="C1", ls="", marker="o", markersize=0.5, label=r"$a_i$") + # ax.plot(seqs[l], bs[l] / pars['bmul'], color="C0", ls="", marker="o", markersize=2, label=r"$b_i \cdot r$") + ax.plot(seqs[l], bs[l], color="C0", ls="", marker="o", markersize=0.5, label=r"$b_i$") + elif print_variable == "x": + ax.plot(seqs[l], xs[l], ls="", marker="o", markersize=2) + else: + raise Exception("Print variable '" + print_variable + "' not understood.") + + if pars['b_allocation'] == 'powerlaw': + # title = r"$\langle k\rangle_b =" + "{:.3f}".format(b_avg_degree) + "$" + ax.set(ylabel=r"Average A-targeted node degree, $\langle k\rangle_a$") # $\sum_i a_i\,k_i / \sum_i a_i$") + # elif pars['b_allocation'] == "linear": + # title = r"$\beta\!= {:.3f}$".format(pars['beta']) + # if print_variable == "allocations": + # title += r", $\alpha\!= " + "{:.3f}$".format(np.mean(alphas[:, 0])) + # # corr = np.corrcoef(aes[l], bs[l]) + # # print(corr) + # # title += r", $R_{ab}\!= $" + " {:.2f}".format(corr[0, 1]) + # # if Xs is not None: + # # title += ", X = {:.3f} ".format(np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + # ax.set(ylabel="Per-node allocations") + # elif print_variable == "x": + # ax.set(ylabel=r"Per-node vote share, $x_i$") + # if Xs is not None: + # title += r", $X_{GA}\!=$" + "{:.4f} ".format( + # np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + # elif pars['b_allocation'] == "sin": + # title = "" + # ax.set(ylim=0) + # else: + # raise Exception("B allocation '" + str(pars['b_allocation']) + "' not understood.") + # + ax.set(xlabel='Budget ratio, $r=a_{max}/b_{max}$') + ax.margins(x=0.0, y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + if print_variable == 'allocations': + ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def print_avg_vs_beta(ax, pars, print_variable="allocations"): + colors = plt.cm.get_cmap("winter")(np.linspace(0, 1, len(pars['linesarray'])))[::-1] + for j, linesval in enumerate(create_range(pars, "lines")): + print("\nXXXX bmul ", j, linesval) + avg_a_degrees = np.zeros(len(pars['axisarray'])) + avg_b_degrees = np.zeros(len(pars['axisarray'])) + for i, val in enumerate(create_range(pars)): + print(pars['axispar'], i, val) + aes, bs, seqs, Xs, xs, convs, _, _, nets = load_data(pars) + + for l in range(len(aes)): + avg_b_degrees[i] = compute_average_targeted_degree(bs[l], seqs[l]) + if convs is not None: + if convs[l]: + avg_a_degrees[i] = compute_average_targeted_degree(aes[l], seqs[l]) + else: + print("NOT CONVERGED") + + axis_vec = np.array(list(create_range(pars))) + + if print_variable == "allocations": + if pars['b_allocation'] == "powerlaw": + ax.plot(axis_vec, avg_a_degrees, color=colors[j], marker=".", markersize=3, + label=r"$\langle k\rangle_a,r\!=\!" + str(1 / linesval) + r"$") + if j == len(colors) - 1: + ax.plot(axis_vec, avg_b_degrees, color="orange", marker=".", markersize=3, ls="--", + label=r"$\langle k\rangle_b$") # , + else: + if pars['b_allocation'] == "linear": + pass + # ax.plot([0, sort_k[-1]], [alphas[l, 1], alphas[l, 1] + sort_k[-1] * alphas[l, 0]], + # color="C1", ls="solid", marker="", linewidth=0.4) + elif pars['b_allocation'] == "sin": + # ax.plot(seqs[l], ((nets[l].mean_a / nets[l].mean_b - 1) * bs[l] + nets[l].mean_a + nets[l].mean_b) / 2, + ax.plot(seqs[l], + ((nets[l].mean_a / nets[l].mean_a - 1) * bs[l] + nets[l].mean_a + nets[l].mean_b) / 2, + color="C1", ls="solid", marker="", linewidth=0.4) + ax.plot(seqs[l], aes[l], color="C1", ls="", marker="o", markersize=0.5, label=r"$a_i$") + # ax.plot(seqs[l], bs[l] / pars['bmul'], color="C0", ls="", marker="o", markersize=2, label=r"$b_i \cdot r$") + ax.plot(seqs[l], bs[l], color="C0", ls="", marker="o", markersize=0.5, label=r"$b_i$") + elif print_variable == "x": + ax.plot(seqs[l], xs[l], ls="", marker="o", markersize=2) + else: + raise Exception("Print variable '" + print_variable + "' not understood.") + + if pars['b_allocation'] == 'powerlaw': + # title = r"$\langle k\rangle_b =" + "{:.3f}".format(b_avg_degree) + "$" + ax.set(ylabel=r"Average targeted node degree") # $\sum_i a_i\,k_i / \sum_i a_i$") + # elif pars['b_allocation'] == "linear": + # title = r"$\beta\!= {:.3f}$".format(pars['beta']) + # if print_variable == "allocations": + # title += r", $\alpha\!= " + "{:.3f}$".format(np.mean(alphas[:, 0])) + # # corr = np.corrcoef(aes[l], bs[l]) + # # print(corr) + # # title += r", $R_{ab}\!= $" + " {:.2f}".format(corr[0, 1]) + # # if Xs is not None: + # # title += ", X = {:.3f} ".format(np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + # ax.set(ylabel="Per-node allocations") + # elif print_variable == "x": + # ax.set(ylabel=r"Per-node vote share, $x_i$") + # if Xs is not None: + # title += r", $X_{GA}\!=$" + "{:.4f} ".format( + # np.mean(Xs)) # + r"$\pm$" + "{:.3f}".format(np.std(Xs)) + # elif pars['b_allocation'] == "sin": + # title = "" + # ax.set(ylim=0) + # else: + # raise Exception("B allocation '" + str(pars['b_allocation']) + "' not understood.") + # + ax.set(xlabel=r'Power-law exponent of B-allocations, $\beta$', ylim=0) + ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + if print_variable == 'allocations': + # ax.legend(ncol=2) + ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def print_entropy_vs_N_b(ax, pars, print_variable="entropy"): + a_entropies = np.zeros((len(pars['linesarray']), len(pars['axisarray']), 2)) + a_disc_entropies = np.zeros(len(pars['axisarray'])) + X_improvements = np.zeros((len(pars['linesarray']), len(pars['axisarray']), 2)) + for j, linesval in enumerate(create_range(pars, "lines")): + for i, val in enumerate(create_range(pars)): + print("\n", pars['axispar'], i, val) + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, _, nets = load_data(pars) + + a_disc_entropies[i] = np.mean([entropy(a_disc) for a_disc in aes_disc]) + if convs is not None: + if np.all(convs): + entropies = [entropy(a) for a in aes] + a_entropies[j, i] = (np.mean(entropies), np.std(entropies)) + improvements = (Xs - Xs_disc) / Xs_disc * 100 + # improvements = (Xs - Xs_disc) / (Xs_disc - nets[l].mean_a/ (nets[l].mean_a + nets[l].mean_b)) * 100 + # improvements = (Xs - Xs_disc) / nets[l].mean_b * (nets[l].mean_a + nets[l].mean_b) + # improvements = [(x - xd) / xd if xd < 0.5 else (x - xd) / (1-xd) for x, xd in zip(Xs, Xs_disc)] + X_improvements[j, i] = (np.mean(improvements), np.std(improvements)) + print("Xs", np.mean(Xs), "+-", np.std(Xs)) + print("Xdisc", np.mean(Xs_disc), "+-", np.std(Xs_disc)) + else: + print("NOT CONVERGED", convs) + + axis_vec = np.array(pars['axisarray']) + colors = plt.cm.get_cmap("winter")(np.linspace(0, 0.8, len(pars['linesarray']))) + markers = ["s", "D", "o", "x"] + labels = ["unif", r"$\mathcal{B}_a/\mathcal{B}_b=$", "discrete"] + elinewidth = 1 + if print_variable == "entropy": + max_ent = entropy(np.ones(pars['N'])) + # ax.plot(axis_vec, np.ones_like(axis_vec) * entropy(np.ones(pars['N'])), label=labels[0], color="purple") + for j, linesval in enumerate(create_range(pars, "lines")): + if np.isclose(1 / linesval, int(1 / linesval)): + label = str(int(1 / linesval)) + else: + label = str(1 / linesval) + # ax.errorbar(axis_vec, a_entropies[:, 0], yerr=a_entropies[:, 1], label=labels[1] + " " + label, + print("\n", list(zip(axis_vec, a_entropies[j, :, 0] / max_ent))) + ax.errorbar(axis_vec, a_entropies[j, :, 0] / max_ent, label=labels[1] + label, color=colors[j], ls="", + yerr=a_entropies[j, :, 1] / max_ent / np.sqrt(pars['n_nets']), marker=markers[j], + ecolor="k", elinewidth=elinewidth) + ax.plot(axis_vec, a_disc_entropies / max_ent, label=labels[2], color=DISCRETE_COLOR, ls="--") + ax.set(ylabel=r"Entropy of allocations, $H$", ylim=[0, 1]) + ax.legend() # loc="right") + elif print_variable == "improvement": + for j, linesval in enumerate(create_range(pars, "lines")): + linesval = 1 / linesval + if np.isclose(linesval, int(linesval)): + linesval = int(linesval) + ax.errorbar(axis_vec, X_improvements[j, :, 0], yerr=X_improvements[j, :, 1] / np.sqrt(pars['n_nets']), + color=colors[j], ecolor="k", ls='', marker=markers[j], label=labels[1] + str(linesval), + elinewidth=elinewidth) + ax.set_ylabel(r"$(X^{\mathrm{con}}-X^{\mathrm{dis}})/X^{\mathrm{dis}} \; [\%]$") + ax.set(ylim=[0, 27.5]) + ax.legend() # loc="upper center") + else: + raise ValueError("Print variable '" + print_variable + "' not understood.") + + ax.set(xlabel=K_X_LABEL) + ax.set_xscale("log") + + # ax.margins(x=0.0) # , y=0.0) + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # if print_variable == 'allocations': + # ax.legend(ncol=2) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + return a_entropies, a_disc_entropies, X_improvements + + +def print_perturbations(ax, pars, print_variable="allocations"): + # colors = plt.cm.get_cmap("winter")(np.linspace(0, 0.8, len(pars['linesarray']))) + n_nets = pars['n_nets'] + axis_vec = np.array(pars['axisarray']) + print("x axis:", axis_vec) + + ls = ["", "solid"] # [":", "solid"] + cs = ["C0", "C1"] + # markers = ["s", "D", "o"], markersize = 5 + markers = [",", "v", "o", "s", "D"] + markersize = 6 + + for j, linesval in enumerate(create_range(pars, "lines")): + Xs_num = np.zeros((len(axis_vec), n_nets)) + Xs_ana = np.zeros((len(axis_vec), n_nets)) + for i, axisval in enumerate(create_range(pars)): + aes, bs, seqs, Xs, xs, convs, _, _, _, nets = load_data(pars) + + Xs_num[i] = Xs - 0.5 + Xs_ana[i] = nets[0].mean_b / 4 / nets[0].N * np.sum((1 - bs / nets[0].mean_b) ** 2 / seqs, axis=1) + # print(Xs_num[i], Xs_ana[i]) + + # if np.isclose(1 / linesval, int(1 / linesval)): + # label = str(int(1 / linesval)) + # else: + # label = str(1 / linesval) + linesval = "" + + ax.errorbar(axis_vec, np.mean(Xs_ana, axis=1), markersize=markersize, marker=markers[0], ls=ls[1], ecolor="k", + fillstyle='none', yerr=std_errors(Xs_ana, axis=1), label="analytical", color=cs[0]) + ax.errorbar(axis_vec, np.mean(Xs_num, axis=1), markersize=markersize, marker=markers[1], ls=ls[0], + yerr=std_errors(Xs_num, axis=1), ecolor="k", label="numerical", color=cs[1]) + + # ax.set(title="end: {:s}".format(pars['end']), + # ax.set(xlabel="Number of perturbations, $n$", ylabel=r"$\Delta X$") + ax.set(xlabel="Degree of perturbated nodes, $d_p$", ylabel=r"$\Delta X$", ylim=1e-4) + ax.legend() # ncol=2) + ax.set_xscale("log"), ax.set_yscale("log") + # ax.set_facecolor("whitesmoke") + + # ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def print_correlations(ax, pars, print_variable="allocations"): + if pars['end'] == "periphery" and pars["network"] == "email": + warnings.warn( + "Periphery targeting on email network, only one network is used as there is no randomness in the process. NOTE THAT THE NETWORK NUMBER REMAIN AT 1 FROM ON (this should be corrected in future versions)") + pars['n_nets'] = 1 + else: + print(pars['end'], pars['network']) + corrs_cont = np.zeros((len(pars['linesarray']), len(pars['axisarray']), pars['n_nets'], 3)) + corrs_disc = np.zeros((len(pars['linesarray']), len(pars['axisarray']), pars['n_nets'], 3)) + corrs_shield = np.zeros((len(pars['linesarray']), len(pars['axisarray']), pars['n_nets'], 3)) + for j, linesval in enumerate(create_range(pars, "lines")): + for i, val in enumerate(create_range(pars)): + print("\n", pars['axispar'], i, val) + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, _, nets = load_data(pars) + + aes_shield = np.zeros_like(aes) + for l, net in enumerate(nets): + mask_neigh = divide_into_neighbouring_groups(net.b[:, 0], net.W.toarray()) + mask_shield = mask_neigh[1][net.sort_ind] + aes_shield[l][mask_shield] = net.mean_a * net.N / np.sum(mask_shield) + + degrees = np.unique(seqs[0]) + + def obtain_correlations(points): + points = [np.mean(points[seqs[0] == k]) for k in degrees] + return kendalltau(degrees, points)[0], spearmanr(degrees, points)[0], pearsonr(degrees, points)[0] + + # corrs_disc[j, i] = [obtain_correlations(a_disc) for a_disc in aes_disc] + if np.all(convs): + corrs_cont[j, i] = [obtain_correlations(a) for a in aes] + corrs_shield[j, i] = [obtain_correlations(a) for a in aes_shield] + else: + corrs_cont[j, i] = [obtain_correlations(a) for a in aes] + corrs_shield[j, i] = [obtain_correlations(a) for a in aes_shield] + warnings.warn("NOT CONVERGED") + + axis_vec = np.array(pars['axisarray']) + colors = plt.cm.get_cmap("winter")(np.linspace(0, 0.8, len(pars['linesarray']))) + markers = ["s", "D", "o", "x", "v"] + labels = ["unif", r"$\mathcal{B}_a/\mathcal{B}_b=$", "discrete"] + elinewidth = 1 + + ax.axhline(color="k", linewidth=0.8) + plot_pars = {"elinewidth": elinewidth, "ls": "", "ecolor": "k"} + for j, linesval in enumerate(create_range(pars, "lines")): + corr_cont_mean = np.mean(corrs_cont[j, :, :, 0], axis=1) + print("Correlations continuous regime", corr_cont_mean) + if len(colors) == 1: + if pars['n_nets'] == 1: + ax.plot(axis_vec, corr_cont_mean, label="optimal", color="orange", marker=markers[4], ls="") + ax.plot(axis_vec, np.mean(corrs_shield[j, :, :, 0], axis=1), marker=markers[2], label="shielding", + color=NEIGH_GROUP_COLOURS[1], ls="") + else: + ax.errorbar(axis_vec, corr_cont_mean, label="optimal", color="orange", + yerr=std_errors(corrs_cont[j, :, :, 0], axis=1), marker=markers[4], **plot_pars) + # ax.errorbar(axis_vec, np.mean(corrs_disc[j, :, :, 0], axis=1), marker=markers[1], label="discrete IM", + # yerr=std_errors(corrs_disc[j, :, :, 0], axis=1), color=DISCRETE_COLOR, **plot_pars) + ax.errorbar(axis_vec, np.mean(corrs_shield[j, :, :, 0], axis=1), marker=markers[2], label="shielding", + yerr=std_errors(corrs_shield[j, :, :, 0], axis=1), color=NEIGH_GROUP_COLOURS[1], + **plot_pars) + else: + linesval = 1 / linesval + if np.isclose(linesval, int(linesval)): + linesval = int(linesval) + ax.errorbar(axis_vec, corr_cont_mean, color=colors[j], marker=markers[j], + yerr=std_errors(corrs_cont[j, :, :, 0], axis=1), label=labels[1] + str(linesval), **plot_pars) + + # ax.plot(axis_vec, corrs_cont[j, :, 1], ls="", marker=markers[1], label="spearman", color="orange") + # ax.plot(axis_vec, corrs_cont[j, :, 2], ls="", marker=markers[2], label="pearson", color="orange") + # ax.plot(axis_vec, corrs_disc[j, :, 0], ls="", marker=markers[1], label="discrete IM", color=DISCRETE_COLOR) + # ax.plot(axis_vec, corrs_disc[j, :, 1], ls="", marker=markers[1], color="green") + # ax.plot(axis_vec, corrs_disc[j, :, 2], ls="", marker=markers[2], color="green") + + ax.set(xlabel=K_X_LABEL, ylabel=r"Correlation $\tau\,(w_{ai},d_i)$") + if pars['end'] == "middle": + ax.legend(loc="lower right") # ncol=2) # loc="right") + else: + ax.legend() # ncol=2) # loc="right") + + if len(colors) == 1: + ax.set(ylim=[-0.55, 1]) + else: + ax.set(ylim=[-1, 1]) + if pars['end'] == "periphery": + ax.legend(loc="upper left") + + ax.set_xscale("log") + if pars["end"] == "middle": + ax.set(title="Opponent targets randomly") + elif pars["end"] in ("low", "periphery"): + ax.set(title="Opponent targets periphery") + + # ax.margins(x=0.0) # , y=0.0) + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # ax.legend(ncol=2, loc='center left', bbox_to_anchor=(1, 0.5)) + ax.yaxis.grid() + + return corrs_cont, corrs_shield + + +def print_specific_distance_to_b(ax, pars, print_variable="disc"): # (discrete, discrete_degree, continuous) + aes, bs, seqs, Xs, xs, convs, aes_disc, _, _, nets = load_data(pars) + + weighted_distances = [] + for l in range(pars['n_nets']): + if all((not pars['add_continuous'], pars['add_discrete'], print_variable not in ( + "discrete", "discrete_degree"))): + print_variable = "discrete" + + net, b, seq = nets[l], nets[l].b[:, 0], nets[l].seq + + if print_variable in ("continuous", "allocations") or not pars['add_discrete']: + if print_variable not in ("continuous", "allocations"): + print_variable = "continuous" + if convs is not None: + if convs[l]: + a = net.a + else: + raise Exception("GA has not converged.") + elif print_variable in ("discrete", "discrete_degree"): + a = net.a_disc + else: + raise Exception("Print variable " + print_variable + " not understood.") + + uw_dists, uw_dists_degree, w_dists, w_dists_degree, w_dists_repetitions = compute_distances(net.G, b, seq, a) + weighted_distances.append(w_dists) + + print("Degree of B-allocations: ", seq[b > 0]) + if print_variable == "discrete": + n_nodes = len(a > 0) + distances = [np.sum(np.array(el) > 0) for el in weighted_distances] + print(distances[1], uw_dists[1], n_nodes) + order_para = distances[1] / uw_dists[1] + order_potential = min([n_nodes / uw_dists[1], 1.0]) + print("Shielding done:", order_para, "Shielding potential:", order_potential) + + if print_variable == 'discrete': + ax.bar(range(len(uw_dists)), uw_dists, color="grey") + ax.bar(range(len(weighted_distances)), distances, color="green") + ax.set_yscale("log") + elif print_variable == "discrete_degree": + # print(np.array(distances_plus_degrees)) + # norm = mpl.colors.LogNorm() + print("Degrees of first-neighbours", uw_dists_degree[1]) + ticks = np.arange(-1, len(w_dists_degree) - 1) + if pars['N_allocations'] > 1: + w_dists_degree = [dist / np.max(dist) if np.max(dist) > 0 else dist for dist in w_dists_degree] + + ax.imshow(np.array(w_dists_degree).T, cmap='Blues') # , norm=norm) + ax.xaxis.set(ticks=range(len(ticks)), ticklabels=ticks) + ax.set(ylabel="Degree of target") + elif print_variable == "continuous": + if True: + max_dist = np.max([len(el) for el in weighted_distances]) + + mean_dist = [np.mean(flatten([wd_l[d] if d < len(wd_l) else [] for wd_l in weighted_distances])) for d in + range(max_dist)] + std_dist = [np.std(flatten([wd_l[d] if d < len(wd_l) else [] for wd_l in weighted_distances])) for d in + range(max_dist)] + # mean_dist = [np.mean(el) for el in weighted_distances] + # std_dist = [np.std(el) for el in weighted_distances] + ax.bar(range(1, len(mean_dist[1:]) + 1), mean_dist[1:], yerr=std_dist[1:], color="C1") + ax.set(ylabel=r"Link strength, $w_{ai}$", ylim=0) + else: + weighted_distances = flatten( + zip(w_dists_repetitions[0], w_dists_repetitions[1])) + labels = flatten(zip(range(len(w_dists_repetitions[0])), + range(len(w_dists_repetitions[1])))) + ax.boxplot(weighted_distances, labels=labels) + elif print_variable == "allocations": + max_dist = np.max([len(el) for el in weighted_distances]) + weighted_dists = [flatten([wd_l[d] if d < len(wd_l) else [] for wd_l in weighted_distances]) for d in + range(max_dist)][1:] + + x = flatten([[k] * len(box) for k, box in enumerate(weighted_dists)]) + y = flatten(weighted_dists) + sns.boxenplot(x, y, ax=ax, showfliers=False) # jitter=0.45, size=1 + + ax.xaxis.set(ticklabels=range(1, max_dist + 1)) + # ax.xaxis.set(ticks=range(-1, max_dist+1), ticklabels=) + ax.set(ylabel=r"$w_{ai}$") + + # ax.violinplot(weighted_dists[1:], widths=1, showextrema=False) # showmeans=True + if pars['bmul'] == 1: + ax.set(ylim=[0.04, 10.1]) # [0, 10] + ax.set_yscale("log") + else: + raise Exception("Print variable " + print_variable + " not understood.") + + ax.set(xlabel=r'Distance to opponent', + title="$K={:d}$".format(pars['N_allocations'])) # + "(for a discrete controller)") + ax.margins(x=0.0) + + return x, y + + +def print_general_distance_to_b(ax, pars, print_variable="allocations"): + ax.axhline(color="k") + colors = plt.cm.get_cmap("winter")(np.linspace(0, 1, len(pars['linesarray']))) + for j, linesval in enumerate(create_range(pars, "lines")): + if pars['add_discrete']: + type_of_exp = "HillClimb" + else: + type_of_exp = "GA" + fname = create_name(level="data", type_of_experiment=type_of_exp, distances=True, **pars) + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + print("Distance data loaded from " + fname) + + avg_distances = data['avg_distances'] + unweighted_distances = data['unweighted_distances'] + + except FileNotFoundError: + print("Distances data " + fname + " not found. Running experiments...") + + avg_distances = np.zeros((len(pars['axisarray']), pars['n_nets'])) + unweighted_distances = np.empty((len(pars['axisarray']), pars['n_nets']), dtype=list) + for i, val in enumerate(create_range(pars)): + # print(pars['axispar']) + # pars['gain'] *= pars['bmul'] + # if np.isclose(pars['gain'], int(pars['gain'])): + # pars['gain'] = int(pars['gain']) + print("\n", pars['axispar'], i, pars[pars['axispar']]) + + aes, bs, seqs, Xs, xs, convs, aes_disc, _, _, networks = load_data(pars) + + for l in range(len(bs)): + net = networks[l] + node_list = np.array(net.G.nodes) + _, sort_ind = net.sort_by_degree(type_of_experiment=None) + unsort_ind = np.argsort(sort_ind) + + if not pars['add_discrete']: + if convs is not None: + if convs[l]: + a, b = aes[l][unsort_ind], bs[l][unsort_ind] + else: + a, b = aes_disc[l][unsort_ind], bs[l][unsort_ind] + + # avg_distances[i] = 0 + # for b_node in range(1, pars['N']): + # weighted_distance = 0 + # if b[b_node - 1] > 0: + # distances = nx.single_source_shortest_path_length(net.G, b_node) + # for node in distances: + # weighted_distance += a[node - 1] * distances[node] + # weighted_distance /= np.sum(a) + # avg_distances[i] += b[b_node - 1] * weighted_distance + # avg_distances[i] /= np.sum(b) + + avg_distances[i, l] = 0 + tot_a = 0 + # print("In!!!") + unweighted_distances[i, l] = [] + # tot_dist = 0 + for a_node, a_value in enumerate(a): + closest_distance = 9999 + distances = nx.single_source_shortest_path_length(net.G, node_list[a_node]) + for b_node in range(pars['N']): + if b[b_node] > 0 and distances[node_list[b_node]] < closest_distance: + closest_distance = distances[node_list[b_node]] + if closest_distance == 0: + break + if closest_distance > 0: + # if not pars['add_discrete']: + avg_distances[i, l] += a_value * closest_distance + tot_a += a_value + # elif a_value > 0: + # avg_distances += closest_distance + # tot_a += 1 + unweighted_distances[i, l].append(closest_distance) + # tot_dist += 1 + # unweighted_distances[i, l] /= tot_dist # len(a) + avg_distances[i, l] /= tot_a # np.sum(a) + # avg_distances[i, l] /= unweighted_distance + + data = {'avg_distances': avg_distances, 'unweighted_distances': unweighted_distances} + + print("Saving model in " + fname + "\n----------------------------------------------\n") + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + + mean_unweighted = np.zeros_like(unweighted_distances) + std_unweighted = np.zeros_like(unweighted_distances) + for i in range(unweighted_distances.shape[0]): + for l in range(unweighted_distances.shape[1]): + if unweighted_distances[i, l] is not None: + mean_unweighted[i, l] = np.mean(unweighted_distances[i, l]) + std_unweighted[i, l] = np.std(unweighted_distances[i, l]) + # print(unweighted_distances) + # print(avg_distances) + # print(mean_unweighted) + # print(std_unweighted) + expressions = (avg_distances - mean_unweighted) / std_unweighted + + # axis_vec = np.array(list(create_range(pars))) + axis_vec = pars[ + 'axisarray'] # [int(pars['N'] * compute_a_from_amul(net, pars) / gain) for gain in pars['axisarray']] + + if np.isclose(1 / linesval, int(1 / linesval)): + label = str(int(1 / linesval)) + else: + label = str(1 / linesval) + # ax.semilogx(axis_vec, avg_distances, color=colors[j], marker=".", markersize=2, + ax.semilogx(axis_vec, np.mean(expressions, axis=1), color=colors[j], marker=".", markersize=2, + label=r"$a/b\!=\!" + label + "$") # r"$b\!=\!" + str(linesval) + "\,a$") + + # ax.semilogx(axis_vec, unweighted_distances, color="C1", label="avg") + + ax.set(ylabel=r"Average distance to opponent, $D$") + ax.legend() # loc="right") + ax.set(xlabel=r'N of B-targeted nodes (discrete)') # , ylim=0) + ax.margins(x=0.0) + + +def print_shialdowing_disc(ax, pars, print_variable="allocations"): + n_nets = pars['n_nets'] + axis_vec = np.array(pars['axisarray']) + colors = plt.cm.get_cmap("winter")(np.linspace(0, 0.8, len(pars['linesarray']))) + symbols = ["s", "D", "o", "x", "v"] + markersize = 5 + elinewidth = 1 + + normalised_degree = True + + reference_strat = np.zeros((3, len(pars['linesarray']), len(pars['axisarray']), n_nets)) + for j, linesval in enumerate(create_range(pars, "lines")): + shialdowing = np.zeros((len(pars['axisarray']), 2)) + for i, val in enumerate(create_range(pars)): + print("\n", pars['axispar'], i, val) + N_allo = pars['N_allocations'] + + _, bs, seqs, Xs, xs, convs, aes_d, Xs_disc, _, nets = load_data(pars) + + shadowings = [np.sum(np.logical_and(aes_d[l] > 0, bs[l] > 0)) / N_allo for l in range(n_nets)] + if print_variable == "degrees": + degrees = [seqs[l][aes_d[l] > 0] for l in range(n_nets)] + shialdowing[i, 0] = np.mean(degrees) + shialdowing[i, 1] = np.std(degrees) + + assert pars['network'] == "email", "High/lo-degree nodes only implemented for email network!" + sorted_seq, _ = nets[0].sort_by_degree(type_of_experiment=None) + reference_strat[0, :, i] = np.mean(sorted_seq[::-1][:N_allo]) + reference_strat[1, :, i] = np.mean(sorted_seq[:N_allo]) + + if normalised_degree: + shialdowing[i, 0] = (shialdowing[i, 0] - reference_strat[1, 0, i, 0]) / ( + reference_strat[0, 0, i, 0] - reference_strat[1, 0, i, 0]) + shialdowing[i, 1] = shialdowing[i, 1] / (reference_strat[0, 0, i, 0] - reference_strat[1, 0, i, 0]) + + def compute_overlap(array1, array2): + assert len(array1) == len(array2) + overlap = 0 + for el in array1: + founds = array2 == el + if np.any(founds): + overlap += 1 + array2 = np.delete(array2, founds.argmax()) + return overlap / len(array1) + + high_overlaps = [compute_overlap(degs, sorted_seq[::-1][:N_allo]) for degs in degrees] + low_overlaps = [compute_overlap(degs, sorted_seq[:N_allo]) for degs in degrees] + print("high overlaps: ", np.mean(high_overlaps), np.std(high_overlaps) / np.sqrt(n_nets)) + print("low overlaps: ", np.mean(low_overlaps), np.std(low_overlaps) / np.sqrt(n_nets)) + elif print_variable == "shadowing": + shialdowing[i, 0] = np.mean(shadowings) + shialdowing[i, 1] = np.std(shadowings) + elif print_variable == "shielding": + shieldings = np.zeros(n_nets) + for l, net in enumerate(nets): + b, a, W, N = net.b[:, 0], net.a_disc, net.W.toarray(), net.N + + mask_b, mask_b_neighbours, mask_rest = divide_into_neighbouring_groups(b, W) + + n_nodes = int(N_allo * (1 - shadowings[l])) + assert np.isclose(n_nodes, N_allo * (1 - shadowings[l])) + a_b_neighbours = np.sum(np.logical_and(a > 0, mask_b_neighbours)) + + # Shielding in targeting high- and low-degree nodes (baselines) + high_b_neighbours, m = 0, 0 + indices_b, indices_neighbours = np.arange(N)[mask_b], np.arange(N)[mask_b_neighbours] + for index in net.sort_ind[::-1]: + if m == n_nodes: + break + if index in indices_neighbours: + high_b_neighbours += 1 + if index not in indices_b: + m += 1 + low_b_neighbours, m = 0, 0 + for index in net.sort_ind: + if m == n_nodes: + break + if index in indices_neighbours: + low_b_neighbours += 1 + if index not in indices_b: + m += 1 + + # print("a_b_neighbours", a_b_neighbours, "N_b_neighbours", np.sum(mask_b_neighbours), "n_nodes", + # n_nodes, "high degree", int(high_b_neighbours * np.sum(mask_b_neighbours))) + + if shadowings[l] < 1: + # den = min([n_nodes, N_b_neighbours]) + den = N_allo * (1 - shadowings[l]) + shieldings[l] = a_b_neighbours / den + reference_strat[0, j, i, l] = high_b_neighbours / den + reference_strat[1, j, i, l] = low_b_neighbours / den + else: + shieldings[l] = np.NaN + reference_strat[:, j, i, l] = np.NaN + + shialdowing[i, 0] = np.nanmean(shieldings) + shialdowing[i, 1] = np.nanstd(shieldings) + else: + raise Exception("Print variable {:s} not understood.".format(print_variable)) + + if np.isclose(1 / linesval, int(1 / linesval)): + label = str(int(1 / linesval)) + else: + label = str(1 / linesval) + + ax.errorbar(axis_vec, shialdowing[:, 0], yerr=shialdowing[:, 1] / np.sqrt(n_nets), color=colors[j], ecolor="k", + ls='', label=r"$r\!=\!" + label + "$", marker=symbols[j], elinewidth=elinewidth, + markersize=markersize) # , fillstyle='none') label=r"$\mathcal{B}_a/\mathcal{B}_b\!=\!" + print(shialdowing[:, 0]) + + if print_variable == "degrees": + low_deg = reference_strat[1, 0, :, 0] + print("Mean degree", np.mean(shialdowing[:, 0] * (reference_strat[0, 0, :, 0] - low_deg) + low_deg)) + + if print_variable == "shadowing": + ax.errorbar(axis_vec, axis_vec / pars['N'], color="purple", ls='', markersize=markersize, + marker=symbols[len(pars['linesarray'])], label=r"$\phi_R$") + ax.set_ylabel(r"$\phi = P(i\in\mathbf{T}_a \;|\; i\in\mathbf{T}_b)$") + ax.legend(ncol=2, columnspacing=0.01, handletextpad=0.01) + ax.set(ylim=[0, 1]) + elif print_variable == "shielding": + ax.errorbar(axis_vec, np.nanmean(reference_strat[0], axis=(0, 2)), marker=symbols[len(pars['linesarray']) + 1], + yerr=std_errors(reference_strat[0], axis=(0, 2), nan=True), color="purple", + elinewidth=elinewidth, label=r"$\Pi_H$", ecolor="k", ls='', markersize=markersize) + # ax.errorbar(axis_vec, np.nanmean(reference_strat[1], axis=(0, 2)), elinewidth=elinewidth, label=r"$\Pi_H$", + # yerr=np.nanstd(reference_strat[1], axis=(0, 2)) / np.sqrt(n_nets), color="purple", + # marker=symbols[len(pars['linesarray']) + 1], ecolor="k", ls='', markersize=markersize) + # ax.errorbar(axis_vec, np.nanmean(reference_strat[3], axis=(0, 2)), marker=symbols[len(pars['linesarray'])], + # yerr=np.std_errors(reference_strat[3], axis=(0, 2), nan=True), color="purple", + # elinewidth=elinewidth, label=r"$\Pi_S$", ecolor="k", ls='', markersize=markersize) + ax.set_ylabel(r"$\Pi=P(i\in\mathbf{N}_b \;|\; i\in(\mathbf{T}_a\cup \neg\mathbf{T}_b))$") + ax.legend(loc='upper left', columnspacing=0.01, handletextpad=0.01) + ax.set(ylim=[0, 1]) + elif print_variable == "degrees": + if not normalised_degree: + ax.errorbar(axis_vec, reference_strat[0, 0, :, 0], color="purple", ls='', markersize=markersize, + marker=symbols[len(pars['linesarray'])], label=r"high degree") + ax.errorbar(axis_vec, reference_strat[1, 0, :, 0], color="purple", ls='', markersize=markersize, + marker=symbols[len(pars['linesarray']) + 1], label=r"low degree") + else: + ax.set(ylim=[0, 1]) + ax.set_ylabel(r"$\delta$") + # r"$\tilde{\langle d\rangle}_{\mathcal{T}_a}$") # (\langle d \rangle_{\mathcal{T}_a} - \langle d \rangle_L)/(\langle d \rangle_H - \langle d \rangle_L)$") + ax.legend(loc="lower left", ncol=2, columnspacing=0.01, handletextpad=0.01) + + ax.set(xlabel=K_X_LABEL) + ax.set_xscale("log") + + # ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def print_general_shielding_cont(ax, pars, print_variable="allocations"): + n_nets = pars['n_nets'] + axis_vec = np.array(pars['axisarray']) + # colors = plt.cm.get_cmap("winter")(np.linspace(0, 0.8, len(pars['linesarray']))) + # markers = ["x", "+", ".", "s", "D"], markersize = 8 + markers = ["s", "D", "o"] + markersize = 5 + + for j, linesval in enumerate(create_range(pars, "lines")): + shialdowing = np.zeros((len(pars['axisarray']), n_nets, 3)) + for i, val in enumerate(create_range(pars)): + print("\n", pars['axispar'], i, val) + + aes, bs, seqs, Xs, xs, convs, _, _, _, nets = load_data(pars) + + for l, net in enumerate(nets): + masks = divide_into_neighbouring_groups(net.b[:, 0], net.W.toarray()) + shialdowing[i, l] = np.array([np.mean(net.a[mask]) for mask in masks]) / np.mean(net.a) + + if False: + if np.isclose(1 / linesval, int(1 / linesval)): + label = str(int(1 / linesval)) + else: + label = str(1 / linesval) + + ax.errorbar(axis_vec, np.mean(shialdowing[..., 1] / shialdowing[..., 2], axis=1), markersize=markersize, + yerr=np.std(shialdowing[..., 1] / shialdowing[..., 2], axis=1) / np.sqrt(n_nets), + marker=markers[j], + color=colors[j], ecolor="k", ls='', label=r"$\mathcal{B}_a/\mathcal{B}_b\!=\!" + label + "$") + else: + for k, (g_label, color) in enumerate( + zip(NEIGH_GROUP_LABELS, plt.cm.get_cmap("viridis")(np.linspace(0, 0.95, 3)))): + ax.errorbar(axis_vec, np.mean(shialdowing[..., k], axis=1), marker=markers[k], markersize=markersize, + yerr=np.std(shialdowing[..., k], axis=1) / np.sqrt(n_nets), color=color, ecolor="k", ls='', + label=g_label, elinewidth=ELINEWIDTH) # , fillstyle='none') + + # ax.set_ylabel(r"$\langle w_{a} \rangle$") + ax.set_ylabel(r"$\langle w_{a} \rangle_{\mathbf{S}} \;/\; \langle w_{a} \rangle$") + ax.set(xlabel=K_X_LABEL, ylim=[1e-2, 4e2]) + ax.set(title=r"$\mathcal{B}_a/\mathcal{B}_b =" + str(1 / pars['bmul']) + "$") + if pars['bmul'] == 1: + ax.legend() # ncol=2) + ax.set_xscale("log") + ax.set_yscale("log") + # ax.set_facecolor("whitesmoke") + print(np.mean(shialdowing, axis=1)) + + # ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + return shialdowing + + +def print_cont_shielding(ax, pars, print_variable="allocations"): + n_nets = pars['n_nets'] + n_neigh_groups = 3 + n_allo_groups = 4 + + if n_neigh_groups == 3: + group_labels = NEIGH_GROUP_LABELS + elif n_neigh_groups == 4: + group_labels = (r"$w_{bi}>0$", r"$\mathbf{N}_b+$", r"$\mathbf{N}_b$", r"Rest") + else: + raise Exception("Number of neighbouring groups not understood: " + str(n_neigh_groups)) + + if print_variable == "boxplot": + boxes = np.zeros((pars['n_nets'], n_neigh_groups, n_allo_groups)) + + aes, bs, seqs, Xs, xs, convs, _, _, _, nets = load_data(pars) + + group_allo_sizes = np.zeros((n_nets, n_allo_groups)) + group_neigh_sizes = np.zeros((n_nets, n_neigh_groups)) + for l in range(n_nets): + b, a, W = nets[l].b[:, 0], nets[l].a, nets[l].W.toarray() + + masks_neighbouring_groups = divide_into_neighbouring_groups(b, W, n_groups=n_neigh_groups) + group_neigh_sizes[l] = np.array([np.sum(mask) for mask in masks_neighbouring_groups]) + + if convs[l]: + masks_allo = divide_into_allocation_groups(a, n_allo_groups, **pars) + group_allo_sizes = np.array([np.sum(mask) for mask in masks_allo]) + + for m, mask_neigh in enumerate(masks_neighbouring_groups): + for k, mask_allo in enumerate(masks_allo): + boxes[l, m, k] = np.sum(np.logical_and(mask_allo, mask_neigh)) + else: + print(l, "NOT CONVERGED") + + print("group allo sizes", group_allo_sizes) + print("aggregaed group allo sizes", np.mean(group_allo_sizes, axis=0), np.mean(group_neigh_sizes, axis=0)) + + if False: + boxes /= np.sum(boxes, axis=1)[:, None] + + for k in range(n_allo_groups): + ax.bar(range(3), boxes[:, k], bottom=np.sum(boxes[:, k + 1:], axis=1), color=ALLO_GROUP_COLOURS[k], + label=get[k][:12] + "$") + + ax.xaxis.set(ticks=[0, 1, 2], ticklabels=group_labels) + else: + # boxes = np.sum(boxes, axis=0) + for l in range(len(boxes)): + boxes[l] /= np.sum(boxes[l], axis=0)[None:] + + for k in range(n_neigh_groups): + means = np.mean(boxes, axis=0) + errors = std_errors(boxes, axis=0) + print(boxes.shape, means.shape, errors.shape) + ax.bar(range(n_allo_groups), means[k, :], bottom=np.sum(means[:k, :], axis=0), yerr=errors[k, :], + color=NEIGH_GROUP_COLOURS[k], label=group_labels[k]) + + ax.xaxis.set(ticks=range(n_allo_groups), ticklabels=[label[:12] + "$" for label in ALLO_GROUP_LABELS]) + + ax.set(ylim=[0, 1], ylabel=r"$P(\mathbf{S} \;|\; \mathbf{G})$") # \;|\; \mathbf{F})$") + ax.legend(loc="center right") + + return boxes + + elif print_variable == "allocations": + boxes = [[] for _ in range(n_neigh_groups)] + boxes_allo = [[] for _ in range(n_neigh_groups)] + + aes, bs, seqs, Xs, xs, convs, _, _, _, nets = load_data(pars) + + group_neigh_sizes = np.zeros((n_nets, n_neigh_groups)) + for l in range(n_nets): + b, a, W = nets[l].b[:, 0], nets[l].a, nets[l].W.toarray() + + masks_neighbouring_groups = divide_into_neighbouring_groups(b, W, n_groups=n_neigh_groups) + group_neigh_sizes[l] = np.array([np.sum(mask) for mask in masks_neighbouring_groups]) + + if convs[l]: + masks_allo_groups = divide_into_allocation_groups(a, n_groups=n_allo_groups) + allo_groups = np.full(len(a), "") + for k, mask_allo in enumerate(masks_allo_groups): + allo_groups[mask_allo] = ALLO_GROUP_LABELS[k][10] # GROUP_LABELS[k][:12] + "$" + for m, mask_neigh in enumerate(masks_neighbouring_groups): + boxes[m].extend(a[mask_neigh]) + boxes_allo[m].extend(allo_groups[mask_neigh]) + else: + print(l, "NOT CONVERGED") + + print("aggregated group sizes", np.mean(group_neigh_sizes, axis=0)) + + # ax.bar(range(3), [np.mean(box) for box in boxes], yerr=[np.std(box) for box in boxes]) + # ax.violinplot(boxes, widths=1, showmedians=True, showextrema=False) + + x = flatten([[k] * len(box) for k, box in enumerate(boxes)]) + y = flatten(boxes) + hue = flatten(boxes_allo) + categories = ["H", "A", "V", "Z"] + data = pd.DataFrame({"x": x, "y": y, "G": pd.Categorical(hue, categories=categories, ordered=True)}) + # sns.catplot(x="x", y="y", hue="G", kind="strip", size=1, jitter=0.45, ax=ax, data=data) + sns.stripplot(x=x, y="y", hue="G", size=1, jitter=0.4, ax=ax, data=data, + palette={categories[k]: ALLO_GROUP_COLOURS[k] for k in range(n_allo_groups)}) + # sns.stripplot(x, y, hue=hue, size=1, jitter=0.45, ax=ax) + + ax.xaxis.set(ticks=range(n_neigh_groups), ticklabels=group_labels) + # ax.set(ylabel=r"$\langle w_{ai} \rangle_{\mathbf{C}}$") # , ylim=[0, 3]) # \;|\; \mathbf{F})$") + ax.set(ylabel=r"$w_{ai}$") # , ylim=[0, 3]) # \;|\; \mathbf{F})$") + ax.set_facecolor("whitesmoke") + + # ax.margins(x=0.0) # , y=0.0) + + # legends = [ + # mlines.Line2D([], [], color='C1', marker="o", label=r"$a_i$", ls="", markersize=2), + # mlines.Line2D([], [], color='C0', marker="o", label=r"$b_i \cdot r$", ls="", markersize=2), + # ] + # ax.legend(handles=legends) + # ax.legend(loc='center left', bbox_to_anchor=(1, 0.5)) + # ax.grid() + + +def print_multi_axes(pars, print_func, print_variable="allocations", figsize=(2.5, 2.5), create_name_func=create_name, + letter_labels=False, **sharing): + if pars['network'] == "email": + print(pars['N']) + G = Network(pars['network'], **pars) + pars['N'] = G.N + + n_subplots = (len(pars['multiaxesarray']), len(pars['axesarray'])) + print("\n\nXXXXXXXXXXXXXXXX\n\n", print_func.__name__, n_subplots, "n nets", pars['n_nets']) + + fig, axes = plt.subplots(n_subplots[0], n_subplots[1], squeeze=False, + figsize=(figsize[0] * n_subplots[1], figsize[1] * n_subplots[0]), **sharing) + labels = "abcdefghijklmnopqrstuvwxyz" + outs = [] + for i, el_multi in enumerate(create_range(pars, level="multiaxes")): + for j, el_axes in enumerate(create_range(pars, level="axes")): + print(f"\n\n*** Experiments with {pars['axespar']} = {el_axes} ({i}, {j})") + ax = axes[i][j] + + outs.append(print_func(ax, pars, print_variable=print_variable)) + + if j > 0 or (n_subplots[0] == 1 and i > 0): + ax.set(ylabel="") + + if i != 0: + ax.set(title="") + # if i < n_subplots[0] - 1: + # ax.set(xlabel="") + + if letter_labels: + if print_func == print_a_vs_b: + x, y = 0.1, 0.9 + if j == 2 and i == 1: + x = 0.2 + elif print_func == print_specific_distance_to_b: + x, y = 0.05, 0.9 + if j == 0: + x = 0.15 + elif print_func.__name__ == "print_X_gap": + x, y = 0.07, 0.95 + if j == 1 and pars['network'] in ("email", "advogato"): + x, y = 0.17, 0.9 + elif print_func.__name__ == "print_performance_iters": + x, y = 0.46, 0.94 + if j == 2: + x = 0.6 + else: + raise Exception("letter labels not implemented for this printing function") + + ax.text(x, y, r"\textbf{" + labels[i * n_subplots[1] + j] + r"}", horizontalalignment='center', + verticalalignment='center', transform=ax.transAxes) + + plotname = create_name_func(level="plot", print_func=print_func, print_variable=print_variable, **pars) + + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + return axes, outs + + +# RESULT FUNCTIONS +def result_bpower_avg_degree(): + pars = { + 'amul': 'akdegree%3', + 'axispar': 'beta', 'axisarray': np.linspace(-2, 2.5, 37), + # 'axispar': 'beta', 'axisarray': np.linspace(-1.5, 1.5, 25), + 'linespar': 'bmul', 'linesarray': [0.01, 0.1, 0.5, 1.0, 2.0, 10.0, 100], + 'axespar': None, 'axesarray': [None], + 'multiaxespar': None, 'multiaxesarray': [None], + 'b_allocation': 'powerlaw', # in 'random', # 'sin', # 'powerlaw', 'linear' + + 'network': 'email', + 'iters': 60000, 'lrate': 50, + } + for i, val in enumerate(pars['axisarray']): + if val == -0.5: + pars['axisarray'][i] = -0.49 + if val == 0.5: + pars['axisarray'][i] = 0.49 + if val == 1.0: + pars['axisarray'][i] = 0.99 + if val == 1.5: + pars['axisarray'][i] = 1.49 + + if pars['network'] != "email": + pars['N'] = 200 + pars['n_nets'] = 1 + pars['net'] = 'ba' # 'conf' + pars['gamma'] = 2.1 # For scale-free conf model + pars['m'] = 1 # For Barabasi-Albert network + + if pars['b_allocation'] in ["random", "randn"]: + pars['axespar'] = 'bmul' + pars['axesarray'] = np.power(20, np.array([1, 0, -1.0])) # 0, -1])), + pars['multiaxespar'] = 'beta' + pars['multiaxesarray'] = [0] + + # print_multi_axes(pars, print_avg_targeted_degree_vs_bmul) + print_multi_axes(pars, print_avg_vs_beta, figsize=(4.5, 2.5)) + + +def result_network_topology(network="email", n_nets=1, end="middle", **kwargs): + pars = {'network': network, 'n_nets': n_nets, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': end, 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + } + for key, val in kwargs.items(): + pars[key] = val + + print_multi_axes(pars, print_topology, figsize=(FI * 2.5, 2.5)) + + +def result_introductory_example(network="email", end="middle", n_nets=1, min_iters_since_change=100, N_allocations=16, + iters=200000, include_a_vs_nodes=True, include_shielding=False, include_G_vs_S=True, + include_a_vs_deg=False, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': end, 'N_allocations': N_allocations, + + # Parameter ranges + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + # 'axespar': 'N_allocations', 'axesarray': [1, 2, 4, 8, 16, 32, 64], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'disc_iters': 200, 'min_iters_since_change': min_iters_since_change, + 'add_continuous': True, 'iters': iters, 'lrate': 50, 'initial_a': 'random', + + # Plotting parameters + 'group_criterion': "mean", + } + for key, val in kwargs.items(): + pars[key] = val + + # print_multi_axes(pars, print_graph, figsize=(30, 30)) + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="continuous") + + if include_a_vs_deg: + print_multi_axes(pars, print_a_vs_deg, figsize=(4.5, 2.5), print_variable="boxplot") + if include_G_vs_S: + print_multi_axes(pars, print_cont_shielding, figsize=(3, 2.5), print_variable="boxplot") + if include_a_vs_nodes: + pars['n_nets'] = 1 + print_multi_axes(pars, print_a_vs_nodes, figsize=(3, 2.5)) + pars['n_nets'] = n_nets + if pars['network'] == "email" and pars["end"] == "middle": + pars['n_nets'] = 60 + # print_multi_axes(pars, print_a_vs_deg, figsize=(4.5, 2.5), print_variable="groups") + if include_shielding: + print_multi_axes(pars, print_a_vs_deg, figsize=(3, 2.5), print_variable="shielding") + + pars['n_nets'] = n_nets + # print_multi_axes(pars, print_cont_shielding, figsize=(3, 2.5)) + pars['add_discrete'] = True + # print_multi_axes(pars, print_a_vs_deg, figsize=(4.5, 2.5), print_variable="correlations") + # print_multi_axes(pars, print_a_vs_deg, figsize=(4.5, 2.5), print_variable="discrete") + # print_multi_axes(pars, print_a_vs_deg, figsize=(4.5, 2.5), print_variable="discrete_degree") + + +def result_entropy_vs_N(network="email", end="middle", n_nets=1, min_iters_since_change=100, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'axispar': 'N_allocations', + 'axisarray': [1, 2, 4, 8, 16, 32, 64, 128, 256, 512], # 1024], + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'end': end, # 'bmul': 1.0, + 'linespar': 'bmul', 'linesarray': [0.1, 1, 10], + # 'linespar': 'bmul', 'linesarray': [0.01, 1, 100], + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 2, 'initial_a': 'random', 'min_iters_since_change': min_iters_since_change, + 'add_continuous': True, 'iters': 200000, 'lrate': 50, + } + for key, val in kwargs.items(): + pars[key] = val + + if pars['network'] == "classroom": + pars['axisarray'] = [round(el / 1133 * pars['N']) for el in (8, 16, 32, 64, 128, 256, 512)] + + # print_multi_axes(pars, print_entropy_vs_N_b, figsize=(3, 2.5), print_variable="entropy") + print_multi_axes(pars, print_entropy_vs_N_b, figsize=(3, 2.5), print_variable="improvement") + + +def result_correlations(network="email", n_nets=1, min_iters_since_change=100, initial_a_disc="random", + plot_array=False, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'axispar': 'N_allocations', 'axisarray': [1, 2, 4, 8, 16, 32, 64, 128, 256], + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'bmul': 1, + 'linespar': 'None', 'linesarray': [None], # 'linespar': 'bmul', 'linesarray': [0.1, 1, 10], + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'disc_iters': 200, 'initial_a_disc': initial_a_disc, + 'min_iters_since_change': min_iters_since_change, + 'add_continuous': True, 'iters': 200000, 'lrate': 50, + } + for key, val in kwargs.items(): + pars[key] = val + + if pars['network'] == "classroom": + pars['axisarray'] = [round(el / 1133 * pars['N']) for el in (8, 16, 32, 64, 128, 256, 512)] + elif pars['network'] == "advogato": + pars['axisarray'] = [round(el / 1133 * pars['N']) for el in (1, 2, 4, 8, 16, 32, 64, 256)] + + if plot_array: + pars['axespar'] = "end" + pars['axesarray'] = ["middle", "periphery"] + print_multi_axes(pars, print_correlations, figsize=(3, 2.5), sharey=True) + else: + # print_multi_axes(pars, print_general_distance_to_b, figsize=(3, 2.5)) + pars['end'] = "middle" + print_multi_axes(pars, print_correlations, figsize=(3, 2.5), sharey=True) + if pars['network'] != "advogato": + pars['end'] = "periphery" + print_multi_axes(pars, print_correlations, figsize=(3, 2.5)) + + +def result_specific_shielding_continuous(network="email", end="middle", n_nets=1, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + # 'N_allocations_a': "over_shielding", + 'kabmul': 1 / 30, 'bmul': 1, + 'b_allocation': 'discrete', 'end': end, 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], # [4, 3, 2, 1], # [32], # [256, 32, 4], + 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'add_continuous': True, 'iters': 60000, 'lrate': 50, + } + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + print_multi_axes(pars, print_cont_shielding, figsize=(3, 2.5), print_variable="boxplot") + + +def result_general_shielding_continuous(network, end, n_nets=1, min_iters_since_change=100, plot_array=False, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'axispar': 'N_allocations', 'axisarray': [1, 2, 4, 8, 16, 32, 64, 128, 256, 512], + 'linespar': 'None', 'linesarray': [None], # [0.01, 1, 100], + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'end': end, + 'axespar': None, 'axesarray': [None], # 0.1], # 1, 10], + 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'initial_a': 'random', 'min_iters_since_change': min_iters_since_change, + 'add_continuous': True, 'iters': 30000, 'lrate': 50, + } + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + if pars['network'] == "classroom": + pars['axisarray'] = [round(el / 1133 * pars['N']) for el in (8, 16, 32, 64, 128, 256, 512)] + elif pars['network'] == "advogato": + pars['axisarray'] = [round(el / 1133 * pars['N']) for el in (1, 2, 4, 8, 16, 32, 64, 256)] + + if plot_array: + pars['axespar'] = "bmul" + pars['axesarray'] = [1, 10] + print_multi_axes(pars, print_general_shielding_cont, figsize=(3, 2.5), sharey=True) + else: + # print_multi_axes(pars, print_general_distance_to_b, figsize=(3, 2.5)) + pars['bmul'] = 1 + print_multi_axes(pars, print_general_shielding_cont, figsize=(3, 2.5), sharey=True) + if pars['network'] != "advogato": + pars['bmul'] = 10 + print_multi_axes(pars, print_general_shielding_cont, figsize=(3, 2.5)) + + +def result_linear_nodes(network="email", letter_labels=False, bmul=0.1, multiaxes=False, figsize=(3, 2.5), **kwargs): + pars = { + 'network': network, 'n_nets': 1, # random + 'axespar': 'kabmul', 'axesarray': [0.1, 1, 10], + 'multiaxespar': 'bmul' if multiaxes else None, 'multiaxesarray': [0.1, 10] if multiaxes else None, 'bmul': bmul, + # 'multiaxespar': 'bmul', 'multiaxesarray': [0.01, 100], + 'b_allocation': 'random', # in ['random', 'sin', 'powerlaw', 'linear', 'discrete', 'randn'] + # 'b_allocation': 'discrete', 'end': 'middle', 'N_allocations': 32, + + 'add_continuous': True, 'iters': 60000, 'lrate': 50, 'add_discrete': False, + } + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + if pars['b_allocation'] == "powerlaw": + pars['axespar'] = 'beta' + pars['axesarray'] = [-1.5, 1.5] + # pars['axesarray'] = [-2.0, -1.0, -0.25, 0.25, 1.0, 2.0] + + axes, outs, = print_multi_axes(pars, print_a_vs_b, figsize=figsize, letter_labels=letter_labels) + + return outs, axes + + +def result_perturbation_exploitation(): + pars = { + 'network': 'email', 'n_nets': 15, 'N': 1133, + 'kabmul': 1 / 30, 'bmul': 1.0, + # 'axispar': 'n_perturbations', 'axisarray': [4, 8, 16, 32, 64, 128, 256], + 'axispar': 'end', 'axisarray': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], + # 'linespar': 'end', 'linesarray': ["low", "high"], + 'linespar': 'n_perturbations', 'linesarray': [20], + 'axespar': None, 'axesarray': [None], + 'multiaxespar': None, 'multiaxesarray': [None], + 'b_allocation': 'randlin', # 'n_perturbations': 100, # 'end': 'high', + + 'add_continuous': True, 'iters': 60000, 'lrate': 50, + 'add_discrete': False, + } + + print_multi_axes(pars, print_perturbations, figsize=(FI * 3, 2.5), sharey=True) + + +def result_discrete(): + pars = { + # Experiment setting + 'kabmul': 1 / 30, "end": "middle", + # 'axespar': None, 'axesarray': [None], 'bmul': 1.0, + 'axespar': 'bmul', 'axesarray': np.array([10, 1.0, 0.1]), + 'multiaxespar': 'N_allocations', "multiaxesarray": [363, 36, 3], + # 'multiaxespar': None, "multiaxesarray": [None], 'N_allocations': 363, + 'b_allocation': 'discrete', # in ['random', 'sin', 'powerlaw', 'linear', 'discrete', 'randn'] + + # Network parameters + 'network': 'email', 'n_nets': 1, + + # Experiment parameters + 'add_discrete': True, 'disc_iters': 2000, 'min_iters_since_change': 1000, + 'add_continuous': False, 'initial_a': 'random', + } + + print_multi_axes(pars, print_a_disc_vs_deg, figsize=(3, 2.5), print_variable="nodes") + + +def result_general_shielding_discrete(): + pars = { + # Experiment setting + 'network': 'email', 'n_nets': 1, + 'N_allocations_a': 363, + 'axispar': 'gain', 'axisarray': [2, 100], + # 'axisarray': [2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 32, 35, 40, 45, 50, 60, 70, 85, 100], + # 'axisarray': [1, 2, 3, 4, 5, 6, 7, 25, 35, 45, 50, 60, 70, 100], + 'amul': 'akdegree%30', 'b_allocation': 'discrete', 'end': 'high', + 'linespar': 'bmul', 'linesarray': [0.01, 1, 100], # [0.01, 0.1, 0.5, 1.0, 2.0, 10.0, 100], + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 2000, 'initial_a': 'random', + # 'add_discrete': True, 'disc_iters': 100, 'initial_a': 'random', 'gain_adjustment': True, 'iters': 60000, 'lrate': 50, + } + # pars = { + # # Experiment setting + # 'N_allocations_a': 363, "end": "middle", + # 'axespar': 'bmul', 'axesarray': np.array([10, 1.0, 0.1]), + # 'multiaxespar': 'N_allocations', "multiaxesarray": [363, 36], + # # 'multiaxespar': None, "multiaxesarray": [None], 'N_allocations': 363, + # 'b_allocation': 'discrete', # in ['random', 'sin', 'powerlaw', 'linear', 'discrete', 'randn'] + # + # # Network parameters + # 'network': 'email', + # 'N': 200, 'n_nets': 1, + # 'net': 'ba', # 'conf' # 'gamma': 2.1, # For scale-free conf model # 'm': 1, # For Barabasi-Albert network + + # Experiment parameters + # 'add_discrete': True, 'disc_iters': 200, 'initial_a': 'random', + # } + + print_multi_axes(pars, print_general_distance_to_b, figsize=(3, 2.5), print_variable="nodes") + + +def results_distance_continuous(network="email", end="middle", n_nets=1, letter_labels=True, figsize=(3,2.5), **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + # 'N_allocations_a': "over_shielding", + 'kabmul': 1 / 30, 'bmul': 1, + 'b_allocation': 'discrete', 'end': end, + 'axespar': None, 'axesarray': [None], # [1], # [4, 3, 2, 1], # [4, 32, 256], + 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'disc_iters': 20000, 'initial_a': 'random', 'min_iters_since_change': 10000, + 'add_continuous': True, 'iters': 60000, 'lrate': 50, + } + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + # print_multi_axes(pars, print_a_vs_nodes, figsize=(3, 2.5)) + # print_multi_axes(pars, print_a_disc_vs_deg, figsize=(3, 2.5), print_variable="degrees") + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="continuous") + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="discrete") + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 15), print_variable="discrete_degree") + # print_multi_axes(pars, print_cont_shielding, figsize=(3, 2.5)) + + # pars['N_allocations'] = 4 + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="allocations") + # pars['N_allocations'] = 32 + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="allocations") + # pars['N_allocations'] = 256 + # print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 2.5), print_variable="allocations") + + pars['axespar'] = "N_allocations" + pars['axesarray'] = [4, 32, 256] + axes, outs = print_multi_axes(pars, print_specific_distance_to_b, figsize=figsize, print_variable="allocations", + sharey=True, letter_labels=letter_labels) + return outs, axes + + +def result_shielding_prop_to_k(): + pars = { + # Experiment setting + 'kabmul': 1 / 30, "end": "middle", + 'axespar': None, 'axesarray': [None], 'bmul': 1.0, + # 'axespar': 'bmul', 'axesarray': np.array([10, 1.0, 0.1]), + # 'multiaxespar': 'N_allocations', "multiaxesarray": [363, 36, 3], + 'multiaxespar': None, "multiaxesarray": [None], 'N_allocations': 1, + 'b_allocation': 'discrete', # in ['random', 'sin', 'powerlaw', 'linear', 'discrete', 'randn'] + + # Network parameters + 'network': 'email', + 'N': 200, 'n_nets': 10, + 'net': 'ba', # 'conf' # 'gamma': 2.1, # For scale-free conf model # 'm': 1, # For Barabasi-Albert network + + # Experiment parameters + 'add_discrete': True, 'disc_iters': 20000, 'initial_a': 'random', 'min_iters_since_change': 10000, + 'add_continuous': False, + } + + # print_multi_axes(pars, print_a_disc_vs_deg, figsize=(3, 2.5), print_variable="nodes") + print_multi_axes(pars, print_specific_distance_to_b, figsize=(3, 10)) + + +def result_shialdowing(network="email", end="middle", n_nets=1, min_iters_since_change=100, **kwargs): + pars = { + # Experiment setting + 'network': network, 'n_nets': n_nets, + 'axispar': 'N_allocations', 'axisarray': [1, 2, 4, 8, 16, 32, 64, 128, 256], + 'linespar': 'bmul', 'linesarray': [0.1, 1, 10], + 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'end': end, # 'bmul': 1.0, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 200, 'initial_a': 'random', + 'min_iters_since_change': min_iters_since_change, + 'add_continuous': False, 'iters': 60000, 'lrate': 50, + } + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + else: + warnings.warn("Parameter {:s} multiply defined.".format(key)) + + figsize = (3, 2.5) # (FI * 2.5, 2.5) + print(n_nets) + # print_multi_axes(pars, print_shialdowing_disc, figsize=figsize, print_variable="shadowing") + print_multi_axes(pars, print_shialdowing_disc, figsize=figsize, print_variable="shielding") + print_multi_axes(pars, print_shialdowing_disc, figsize=figsize, print_variable="degrees") + + +def result_nash(): + fig, axes = plt.subplots(1, 2, figsize=(2 * FI * 2.5, 2.5)) + colors = {"a": "orange", "b": "blue"} + markers = {"a": "x", "b": "+"} + + def print_entropy(ax, case, controller): + # fname = DATA_PATH + "Nash_Schuh/NashResults_Case{:d}{:s}.csv".format(case, controller) + # vec = pd.read_csv(fname, header=None, sep=";").values + fname = DATA_PATH + "Nash_Schuh/Case{:d}_1_P{:s}.csv".format(case, controller) + vec = pd.read_csv(fname, header=None, sep=",").values + print(case, controller, vec.shape) + # max_ent = entropy(np.ones(len(vec))) + # ax.semilogx(np.ones(vec.shape[1]) * max_ent) + # ax.semilogx([entropy(iter_vec) for iter_vec in vec.T]) # max_ent - + # ax.set(ylim=[6.95, 7.035]) + # ax.loglog(range(1, vec.shape[1] + 1), [max_ent - entropy(iter_vec) for iter_vec in vec.T], + # label=r"$w^{iter}_" + controller + "$", color=colors[controller]) + # ax.semilogx(range(1,vec.shape[1]+1), vec.T, label=r"$w^{iter}_" + controller + "$", color=colors[controller], linewidth=0.2) + ax.semilogy(range(1, vec.shape[1] + 1), np.std(vec, axis=0) / np.mean(vec, axis=0), ls="", + marker=markers[controller], + label=r"$w^{iter}_" + controller + "$", color=colors[controller]) + # ax.set(ylim=1e-8) + ax.legend() + if case == 2: + xlabel = '' + elif case == 1: + xlabel = str(5) + ax.set(xlabel=r"iterations", title=r"$\mathcal{B}_a = " + xlabel + r"\;\mathcal{B}_b$") + # ax.semilogx([max_ent - entropy(iter_vec) for iter_vec in vec.T]) + + # axes[0].set(ylim=[0, 0.005]) + # axes[1].set(ylim=[0, 0.09]) + # axes[0].set(ylabel=r"$H(unif) - H(w)$") + axes[0].set(ylabel=r"std($w$) / $\langle w\rangle$") + + print_entropy(axes[1], 1, "a") + print_entropy(axes[1], 1, "b") + print_entropy(axes[0], 2, "a") + print_entropy(axes[0], 2, "b") + + plotname = PLOTS_PATH + SUB_DATA_PATH + "print_nash.eps" + + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + return axes + + +def fig1_scirep(**kwargs): + pars = { + # Experiments setting + 'network': 'email', 'n_nets': 1, 'N': 1133, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': "middle", 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': True, 'disc_iters': 2, 'min_iters_since_change': 11330, + 'add_continuous': True, 'iters': 200000, 'lrate': 50, 'initial_a': 'random', + + # Plotting parameters + 'group_criterion': "mean", + } + + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + G = Network(pars['network'], **pars) + pars['N'] = G.N + + fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 2.5)) + + aes = print_a_vs_nodes(ax1, pars) + + pars['n_nets'] = 15 + pars['axispar'] = 'N_allocations' + pars['axisarray'] = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512] + pars['linespar'] = 'bmul' + pars['linesarray'] = [0.1, 1, 10] + + print_entropy_vs_N_b(ax2, pars, print_variable="entropy") + a_entropies, a_disc_entropies, X_improvements = print_entropy_vs_N_b(ax3, pars, print_variable="improvement") + + x, y = 0.06, 0.9 + ax1.text(x, y, r"\textbf{a}", horizontalalignment='center', verticalalignment='center', transform=ax1.transAxes) + ax2.text(x, y, r"\textbf{b}", horizontalalignment='center', verticalalignment='center', transform=ax2.transAxes) + ax3.text(x, y, r"\textbf{c}", horizontalalignment='center', verticalalignment='center', transform=ax3.transAxes) + + plotname = PLOTS_PATH + SUB_DATA_PATH + "Fig_1.eps" + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + return {'1a': aes.tolist(), '1b': {"cont": a_entropies.tolist(), "disc": a_disc_entropies.tolist()}, + '1c': {"mean": X_improvements[:, :, 0].tolist(), "std": X_improvements[:, :, 1].tolist()}}, ax1 + + +def fig4_scirep(figsize=(9,2.5), **kwargs): + pars = { + # Experiments setting + 'n_nets': 1, 'N': 1133, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': "middle", 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'add_continuous': True, 'iters': 200000, 'lrate': 50, 'initial_a': 'random', + + # Plotting parameters + 'group_criterion': "mean", + } + + for key, val in kwargs.items(): + if key not in pars: + pars[key] = val + + G = Network(pars['network'], **pars) + pars['N'] = G.N + + fig = plt.figure(figsize=figsize) + ax1 = fig.add_subplot(1, 3, 1) + ax2 = fig.add_subplot(1, 3, 2) + ax3 = fig.add_subplot(1, 3, 3, sharey=ax2) + + boxes = print_cont_shielding(ax1, pars, print_variable="boxplot") + + pars['n_nets'] = 15 + pars['axispar'] = 'N_allocations' + pars['axisarray'] = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512] + pars['linespar'] = None + pars['linesarray'] = [None] + + shialdowing1 = print_general_shielding_cont(ax2, pars) + pars['bmul'] = 10 + shialdowing10 = print_general_shielding_cont(ax3, pars) + + x, y = 0.15, 0.9 + ax1.text(x, y, r"\textbf{a}", horizontalalignment='center', verticalalignment='center', transform=ax1.transAxes) + ax2.text(x, y, r"\textbf{b}", horizontalalignment='center', verticalalignment='center', transform=ax2.transAxes) + ax3.text(x, y, r"\textbf{c}", horizontalalignment='center', verticalalignment='center', transform=ax3.transAxes) + + plotname = PLOTS_PATH + SUB_DATA_PATH + "Fig_4.eps" + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + return {'4a': boxes.tolist(), '4b': shialdowing1.tolist(), "4c": shialdowing10.tolist()}, ax1 + + +def fig5_scirep(figsize=(9,2.5)): # **kwargs): + pars = { + # Experiments setting + 'network': 'email', 'n_nets': 60, 'N': 1133, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': "middle", 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'add_continuous': True, 'iters': 200000, 'lrate': 50, 'initial_a': 'random', + + # Plotting parameters + 'group_criterion': "mean", + } + + if pars['network'] == "email": + # pars['n_nets'] = 60 + pars['n_nets'] = 15 + G = Network(pars['network'], **pars) + pars['N'] = G.N + else: + pars['n_nets'] = 125 + + fig = plt.figure(figsize=figsize) + ax1 = fig.add_subplot(1, 3, 1) + ax2 = fig.add_subplot(1, 3, 2) + ax3 = fig.add_subplot(1, 3, 3, sharey=ax2) + + boxes = print_a_vs_deg(ax1, pars, print_variable="shielding") + + pars['n_nets'] = 15 + pars['axispar'] = 'N_allocations' + pars['axisarray'] = [1, 2, 4, 8, 16, 32, 64, 128, 256] + pars['linespar'] = None + pars['linesarray'] = [None] + + corrs_cont, corrs_shield = print_correlations(ax2, pars) + pars['end'] = "periphery" + per_cont, per_shield = print_correlations(ax3, pars) + ax3.set(ylabel="") + # ax3.yaxis.set(ticklabels=[]) + + x, y = 0.1, 0.9 + ax1.text(0.1, 0.7, r"\textbf{a}", horizontalalignment='center', verticalalignment='center', transform=ax1.transAxes) + ax2.text(x, y, r"\textbf{b}", horizontalalignment='center', verticalalignment='center', transform=ax2.transAxes) + ax3.text(x, y, r"\textbf{c}", horizontalalignment='center', verticalalignment='center', transform=ax3.transAxes) + + plotname = PLOTS_PATH + SUB_DATA_PATH + "Fig_5.eps" + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + return {"5a": boxes.tolist(), "5b": {"corr_cont": corrs_cont.tolist(), "corr_shield": corrs_shield.tolist()}, + "5c": {"corr_cont": per_cont.tolist(), "corr_shield": per_shield.tolist()}} + + +def main_text(): + hyper_pars = {"network": "email", "end": "middle", "N": 1133} + pars = complete_hyper_params(hyper_pars) + d = {} + + d["fig1"], _ = fig1_scirep() + + if True: # w_ai vs w_bi + outs, _ = result_linear_nodes(letter_labels=True, **pars) + d2 = {} + for letter, out in zip(["a", "b", "c"], outs): + d2["2" + letter] = {"w_ai": out[0].tolist(), "w_bi": out[1].tolist(), "d_i": out[2].tolist(), + "w_ai^ana": [wana.tolist() if type(wana) == np.ndarray else wana for wana in out[3]]} + d["fig2"] = d2 + + if True: # dist continuous + outs, _ = results_distance_continuous(letter_labels=True, **pars) + d["fig3"] = {"3" + letter: {"x": out[0], "y": out[1]} for letter, out in zip(["a", "b", "c"], outs)} + + d["fig4"], _ = fig4_scirep(**pars) + d["fig5"] = fig5_scirep() + + return d + + +def suppl_materials(): + hyper_pars = {"network": "email", "end": "middle", "N": 1133, } + pars = complete_hyper_params({"network": "email", "end": "middle", "N": 1133, }) + + # S2: Allocation distribution for other K + if False: + result_introductory_example(include_G_vs_S=False, N_allocations=8, **pars) + result_introductory_example(include_G_vs_S=False, N_allocations=16, **pars) + result_introductory_example(include_G_vs_S=False, N_allocations=32, **pars) + + # S5: Optimal allocations vs weighted degree + if False: + result_introductory_example(include_a_vs_nodes=False, include_G_vs_S=False, include_a_vs_deg=True, **pars) + hyper_pars["end"] = "periphery" + pars = complete_hyper_params(hyper_pars) + result_introductory_example(include_a_vs_nodes=False, include_G_vs_S=False, include_a_vs_deg=True, **pars) + + # result_linear_nodes(letter_labels=True, bmul=10, **hyper_pars) + # result_shialdowing(**hyper_pars) + + # Other networks + for network in ("classroom",): # "advogato", "classroom", "ba", "conf"): + hyper_pars["network"] = network + + hyper_pars["N_allocations"] = 16 + if hyper_pars["network"] == "advogato": + hyper_pars["seed"] = 1 + elif "seed" in hyper_pars: + del hyper_pars["seed"] + pars = complete_hyper_params(hyper_pars) + result_introductory_example(include_G_vs_S=False, **pars) + + if 'seed' in pars: + del pars['seed'] + # result_entropy_vs_N(**pars) + # result_general_shielding_continuous(**pars) + # result_correlations(**pars) + + +def abstract(): + hyper_pars = {"network": "email", "end": "middle", "N": 1133} + pars1 = complete_hyper_params(hyper_pars) + + pars = { + # Experiments setting + 'network': 'email', 'n_nets': 1, 'N': 1133, + 'kabmul': 1 / 30, 'bmul': 1.0, 'b_allocation': 'discrete', 'end': "middle", 'N_allocations': 16, + 'axespar': None, 'axesarray': [None], 'multiaxespar': None, 'multiaxesarray': [None], + + # Methods parameters + 'add_discrete': False, 'add_continuous': True, 'iters': 200000, 'lrate': 50, 'initial_a': 'random', + + # Plotting parameters + 'group_criterion': "mean", + } + + for key, val in pars1.items(): + if key not in pars: + pars[key] = val + + G = Network(pars['network'], **pars) + pars['N'] = G.N + + fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(9, 2.5)) + + print_a_vs_nodes(ax1, pars) + print_cont_shielding(ax3, pars, print_variable="boxplot") + + # pars['N_allocations'] = 4 + # print_specific_distance_to_b(ax3, pars, print_variable="allocations") + + pars['kabmul'], pars['bmul'] = 0.1, 0.1 + pars['b_allocation'] = 'random' + print_a_vs_b(ax2, pars) + + plotname = PLOTS_PATH + SUB_DATA_PATH + "abstract.png" + fig.tight_layout() + fig.savefig(plotname) + print("\nFigure saved in " + plotname) + fig.show() + + +def thesis(): + hyper_pars = {"network": "email", "end": "middle", "N": 1133} + pars = complete_hyper_params(hyper_pars) + + result_linear_nodes(letter_labels=True, multiaxes=True, figsize=(2.7, 2.5), **pars) + results_distance_continuous(letter_labels=True, figsize=(2.5, 2.5), **pars) + fig4_scirep(figsize=(7.5, 2.5), **pars) + fig5_scirep(figsize=(7.5, 2.5)) + result_perturbation_exploitation() + + +def other_experiments(): + hyper_params = { + "network": "email", + # "network": "random", "p": 0.01, + # "network": "ba", "m": 5, + # "network": "conf", "gamma": 3, 'dmin':5, + # "end": "middle", # "low" + # "end": "low", + "end": "periphery", + # "initial_a_disc": "cont", + "N": 1133, + } + + hyper_params = complete_hyper_params(hyper_params) + + # result_network_topology(**hyper_pars) + # result_introductory_example(**hyper_pars) + # result_entropy_vs_N(**hyper_pars) + + # result_bsin() + # result_linear_nodes(**hyper_pars) + # result_perturbation_exploitation() + + # results_distance_continuous(**hyper_pars) + # result_specific_shielding_continuous(**hyper_pars) + # result_general_shielding_continuous(plot_array=True, **hyper_pars) + + result_correlations(plot_array=True, **hyper_params) + + # result_discrete() + # result_shialdowing(**hyper_pars) + # result_shielding_prop_to_k() + # result_general_shielding_discrete() + + # result_nash() + + # result_bpower_avg_degree() + + +def complete_hyper_params(hyper_pars): + if hyper_pars["network"] == "advogato": + hyper_pars['N'] = 5054 + hyper_pars['iters'] = 2000 + elif hyper_pars["network"] == "classroom": + hyper_pars["N"] = 128 + elif hyper_pars["network"] == "ba": + hyper_pars["m"] = 5 + hyper_pars["N"] = 1133 + elif hyper_pars["network"] == "conf": + hyper_pars["gamma"] = 3 + hyper_pars['dmin'] = 5 + hyper_pars["N"] = 1133 + + if hyper_pars['network'] in ("classroom", "advogato") and "N_allocations" in hyper_pars: + hyper_pars["N_allocations"] = round(hyper_pars["N_allocations"] / 1133 * hyper_pars['N']) + + if hyper_pars['end'] == "periphery": + hyper_pars["n_nets"] = 1 + if "initial_a_disc" not in hyper_pars: + hyper_pars["min_iters_since_change"] = 11330 + elif hyper_pars["initial_a_disc"] == "cont": + hyper_pars["min_iters_since_change"] = 1133 + elif hyper_pars["network"] in ("random",) or hyper_pars["end"] == "low": + hyper_pars["n_nets"] = 10 + hyper_pars["min_iters_since_change"] = 1000 + elif hyper_pars["network"] == "advogato": + hyper_pars["n_nets"] = 5 + hyper_pars["iters"] = 2000 + else: + hyper_pars["n_nets"] = 15 + hyper_pars["min_iters_since_change"] = 11330 + + return hyper_pars + + +if __name__ == "__main__": + # main_text() + # suppl_materials() + # abstract() + thesis() + + # other_experiments() diff --git a/hillclimb.py b/hillclimb.py new file mode 100644 index 0000000000000000000000000000000000000000..6350346c551aaa2cccb2961d9ade8f74949aec0a --- /dev/null +++ b/hillclimb.py @@ -0,0 +1,150 @@ +import time + +import numpy as np +import matplotlib.pyplot as plt + +PLOTS_PATH = 'plots/' + + +class HillClimber: + def __init__(self, W, b_vec, n_nodes, gain, initial_a_disc="random", **pars): + self.W = W + self.N = W.shape[0] + self.L = np.diagflat(np.sum(self.W, axis=0)) - self.W + self.seq = np.squeeze(np.array(np.sum(self.W, axis=1))) + + self.gain = gain + self.n_nodes = n_nodes + if self.n_nodes > self.N: + raise Exception( + "There are more nodes for discrete allocation ({:d}) than nodes in the network ({:d}).".format( + self.n_nodes, self.N)) + self.best_degrees = [] # For the greedy initialization + + # Initialize allocations + self.b = b_vec + if type(initial_a_disc) == np.ndarray: + if len(np.unique(initial_a_disc)) == 2: + assert sum(initial_a_disc > 0) == n_nodes + self.a_ind = set(np.arange(self.N)[initial_a_disc > 0]) + print("Initial 'a' from previous 'a'") + else: + assert np.isclose(np.sum(initial_a_disc), n_nodes * gain) + self.a_ind = set(np.argsort(initial_a_disc)[:n_nodes]) + print("Initial 'a' from continuous 'a'") + elif initial_a_disc == "random": + self.a_ind = set(np.random.choice(self.N, self.n_nodes, replace=False)) + elif initial_a_disc == "zeros": + X = self.greedy() + print("Hill climbing initialized with greedy algorithm (X={:f})".format(X)) + else: + raise Exception("Initial a-allocation '" + str(initial_a_disc) + "' not understood.") + + def produce_a_vec(self): + # self.a = np.zeros((self.N, 1)) + self.a = np.zeros(self.N) + self.a[list(self.a_ind)] = self.gain + self.a = self.a[:, None] + + def greedy(self): + self.a_ind = set() + self.produce_a_vec() + + degree_dic = {} + for j, degree in enumerate(self.seq): + if degree not in degree_dic: + degree_dic[degree] = [] + degree_dic[degree].append(j) + + for k in range(self.n_nodes): + best_i, best_X, best_degree = None, -1, None + # for i, a_i in enumerate(self.a): + # if np.isclose(a_i, 0): + # self.a[i] = self.gain + # X, x = self.compute_x() + # if X > best_X: + # best_X = X + # best_i = i + # self.a[i] = 0 + for degree, indices in degree_dic.items(): + i = np.random.choice(indices) + self.a[i] = self.gain + X, x = self.compute_x(produce_a_vec=False) + if X > best_X: + best_X = X + best_i = i + best_degree = degree + self.a[i] = 0 + + self.a[best_i] = self.gain + self.a_ind.add(best_i) + degree_dic[best_degree].remove(best_i) + print(k, best_degree) + self.best_degrees.append(best_degree) + if not degree_dic[best_degree]: + del degree_dic[best_degree] + + assert len(self.a_ind) == self.n_nodes + fig, ax = plt.subplots() + ax.plot(self.best_degrees) + fig.show() + return best_X + + def execute(self, min_iters, min_iters_since_change=1, starting_iters=0, starting_iters_since_change=0, **pars): + X, x = self.compute_x() + no_a_ind = set(np.arange(self.N)).difference(self.a_ind) + + if self.n_nodes > 1: + i = starting_iters + iters_since_change = starting_iters_since_change + # weights = self.seq / np.sum(self.seq) + while i < min_iters or iters_since_change < min_iters_since_change: + # new_ind = np.random.randint(self.N) + # while new_ind in self.a_ind: + # new_ind = np.random.choice(self.N, replace=False, p=weights) + + ind_untargeted = np.random.choice(list(no_a_ind)) + ind_targeted = np.random.choice(list(self.a_ind)) + self.a_ind.remove(ind_targeted) + self.a_ind.add(ind_untargeted) + + new_X, new_x = self.compute_x() + + if new_X > X: + X, x = new_X, new_x + no_a_ind.remove(ind_untargeted) + no_a_ind.add(ind_targeted) + iters_since_change = 0 + else: + self.a_ind.remove(ind_untargeted) + self.a_ind.add(ind_targeted) + iters_since_change += 1 + + i += 1 + + print("Hill climbing finished after {:.0f} iterations. Iterations since last change: {:.0f}".format(i, + iters_since_change)) + else: + print("Discrete setting with a single node, performing greedy algorithm.") + max_j = -1 + for j in range(self.N): + self.a_ind = set([j]) + new_X, new_x = self.compute_x() + if new_X > X: + X, x = new_X, new_x + max_j = j + self.a_ind = set([max_j]) + i, iters_since_change = 999999, 999999 + + self.produce_a_vec() + return self.a[:, 0], X, x, i, iters_since_change + + def compute_x(self, produce_a_vec=True): + if produce_a_vec: + self.produce_a_vec() + inv_Lab = np.linalg.inv(self.L + np.diagflat(self.a + self.b)) + x = np.array(np.matmul(inv_Lab, self.a).T) + X = np.sum(x) / self.N + + return X, x[0, :] + diff --git a/hpc_experiments.py b/hpc_experiments.py new file mode 100644 index 0000000000000000000000000000000000000000..0d751118f0dab5db66382d1b9bf47de212310932 --- /dev/null +++ b/hpc_experiments.py @@ -0,0 +1,582 @@ +import warnings +import pickle +import ast +import argparse +from functools import reduce + +import numpy as np +import pandas as pd + +from python.utils import DATA_PATH, PLOTS_PATH +from python.networks import Network, compute_gain_nnodes + +SUB_DATA_PATH = "general_GA_avoidance/" + + +def create_name(level=None, type_of_experiment=None, print_func=None, distances=False, + print_variable=None, **pars): # level= {data, deprec, plot} + if level is None: + fname = "" + elif level in ("data", "deprec"): + fname = DATA_PATH + SUB_DATA_PATH + elif level == "plot": + fname = PLOTS_PATH + SUB_DATA_PATH + else: + raise Exception("level value '" + level + "' not understood.") + + if level in ("data", "deprec"): + if type_of_experiment is not None: + fname += type_of_experiment + "-" + else: + raise Exception("'type of experiment' not defined.") + + if level is not None: + fname += pars['network'] + + if level == "plot": + fname += "-" + print_func.__name__ + + print_variable_dict = {"allocations": "", "x": "x", "entropy": "H", "improvement": "X", "degrees": "deg", + "nodes": "node", "discrete": "disc", "continuous": "cont", "discrete_degree": "discdeg", + "boxplot": "box", "shielding": "shield"} + if print_variable in print_variable_dict: + fname += print_variable_dict[print_variable] + else: + warnings.warn("Print variable " + print_variable + " not in name dictionary.") + + if pars['network'] == "conf": + fname += "-gamma{:.2f}".format(pars['gamma']) + + allocation_dict = {"powerlaw": '-bpower', "sin": "-bsin", "Amajor": "-bAmajor", "random": "-brand", + "randn": "-brandn", "discrete": "-bdisc", "linear": "", "randlin": "-brandlin"} + fname += allocation_dict[pars['b_allocation']] + + if level in ("data", "deprec") or (level == "plot" and 'bmul' not in pars.values()): + fname += "-bmul{:.1f}".format(pars['bmul']) + + if pars['b_allocation'] in ['linear', 'powerlaw', 'sin'] and (level != "plot" or 'beta' not in pars.values()): + fname += "-beta{:.5f}".format(pars['beta']) + elif pars['b_allocation'] in ("discrete", "randlin") and (level != "plot" or 'end' not in pars.values()): + fname += "-end" + str(pars["end"]) + + if pars['b_allocation'] == "randlin" and (level != "plot" or 'n_perturbations' not in pars.values()): + fname += "-n{:d}".format(pars['n_perturbations']) + + if level == "deprec" and type_of_experiment == "GA": + fname += "-iters{:d}".format(pars['iters']) + + if level in ("data", "deprec"): + if distances: + fname += "-dist_to_b" + if type_of_experiment == "HillClimb" or pars['b_allocation'] == "discrete": + if "initial_a_disc" in pars and type_of_experiment == "HillClimb": + if pars['initial_a_disc'] != "random": + fname += "-" + pars['initial_a_disc'] + if "gain" in pars: + fname += "-gain" + str(pars["gain"]) + elif "N_allocations" in pars: + fname += "-N_allo{:d}".format(pars['N_allocations']) + if "N_allocations_a" in pars: + fname += "-N_allo_a" + str(pars['N_allocations_a']) + elif not distances: + raise Exception("Discrete allocations not properly defined.") + elif level == "plot": + if "add_discrete" in pars: + if pars['add_discrete'] or pars['b_allocation'] == "discrete": + if "gain" in pars: + fname += "-gain" + str(pars["gain"]) + elif "N_allocations" in pars and 'N_allocations' not in pars.values(): + fname += "-N_allo{:d}".format(pars['N_allocations']) + if "N_allocations_a" in pars: + fname += "-N_allo_a" + str(pars['N_allocations_a']) + elif 'gain' not in pars.values() and 'N_allocations' not in pars.values(): + raise Exception("Discrete allocations not properly defined.") + if pars['add_discrete']: + if "initial_a_disc" in pars: + if pars['initial_a_disc'] != "random": + fname += "-" + pars['initial_a_disc'] + fname += "-disc_iters_change{:d}".format(pars["min_iters_since_change"]) + else: + raise Exception("Level '" + level + "' not understood.") + + if level == "plot" and pars['n_nets'] > 1: + fname += "-n_nets{:d}".format(pars['n_nets']) + + if pars['network'] not in ("email", "advogato", "classroom"): + fname += "-N{:d}".format(pars['N']) + if pars['network'] == "random": + fname += "-p{:.2f}".format(pars["p"]) + elif pars['network'] == "scale-free": + if pars['net'] == "ba": + fname += "-m{:d}".format(pars['m']) + elif pars['net'] == "conf": + fname += "-gamm{:.1f}".format(pars['gamma']) + else: + raise Exception("Network type '" + pars['net'] + "' not understood.") + + if 'kabmul' in pars: + if level != "plot" or pars['kabmul'] not in pars.values(): + fname += "-kabmul{:.3f}".format(pars['kabmul']) + else: + if level in ["data", "deprec"] or (level == "plot" and pars['amul'][8] != '%'): + fname += "-{:s}".format(pars['amul']) + else: + fname += "-akdegree{:d}".format(int(pars['amul'][9:])) + + if 'seed' in pars: + fname += "-seed{:d}".format(pars['seed']) + + if level is None: + return fname + elif level in ("data", "deprec"): + return fname + ".pkl" + elif level == "plot": + return fname + ".eps" + else: + return Exception("level value '" + level + "' not understood.") + + +def compute_a_from_amul(mean_degree, amul): + if type(amul) in (float, np.float, np.float64): + return mean_degree * amul + elif amul == 'akdegree': + return mean_degree + elif amul[8] == '%': + return mean_degree / int(amul[9:]) + elif amul[8] == "X": + return mean_degree * int(amul[9:]) + else: + raise Exception("Pars 'amul' " + amul + " not understood.") + + +def load_networks(seed=5, **pars): + fname = DATA_PATH + "network_DB" + columns = ["type", "net_pars", "N", "edge_list", "seed"] + try: + network_DB = pd.read_csv(fname) + network_DB["net_pars"] = network_DB["net_pars"].apply(lambda x: ast.literal_eval(x)) + network_DB["edge_list"] = network_DB["edge_list"].apply(lambda x: ast.literal_eval(x)) + network_DB["node_order"] = network_DB["node_order"].apply(lambda x: ast.literal_eval(x)) + except FileNotFoundError: + print("Network database not found at '" + fname + "', creating new one...") + network_DB = pd.DataFrame(columns=columns) + + networks = [] + for l in range(pars['n_nets']): + if pars['network'] != "conf": + net = Network(network_class=pars['network'], seed=seed + l, **pars) + if pars['network'] == "email": + assert pars['N'] == net.N == 1133 + elif pars['network'] == "advogato": + assert pars['N'] == net.N == 5054 + elif pars['network'] == "classroom": + assert pars['N'] == net.N == 128 + else: + row_vals = {"type": pars['network'], "N": pars['N'], "seed": seed + l, + "net_pars": Network.extract_network_pars(pars['network'], **pars)} + conditions = reduce(np.logical_and, [network_DB[key] == value for key, value in row_vals.items()]) + row = network_DB[conditions] + if len(row) > 1: + raise Exception("Error: Network values duplicated.") + elif len(row) == 1: + print("Network loaded from DB") + adjlist = row["edge_list"].values[0] + net = Network(network_class=pars['network'], seed=row_vals["seed"], adjlist=adjlist, + node_order=row["node_order"].values[0], **pars) + else: + net = Network(network_class=pars['network'], seed=row_vals["seed"], **pars) + + row_vals["edge_list"] = net.get_edge_list() + row_vals["construction_data"] = net.construction_graph_data + row_vals["node_order"] = list(net.G.nodes) # TODO: this is a horrible fix + for col in row_vals.keys(): + if col not in network_DB.columns: + network_DB[col] = None + for col in network_DB.columns: + if col not in row_vals: + row_vals[col] = None + network_DB.loc[len(network_DB)] = row_vals + network_DB.to_csv(fname) + # if pars['n_nets'] > 1: + # print("-----\nNetwork " + str(l)) + + if 'kabmul' in pars: + pars['amul'] = pars['kabmul'] / (1 + pars['bmul']) + net.mean_a = compute_a_from_amul(np.mean(net.seq), pars['amul']) + # print(net.mean_a, np.mean(net.seq), pars['amul']) + net.mean_b = net.mean_a * pars['bmul'] + output = net.allocate_b(pars['b_allocation'], **pars) + networks.append(net) + + return networks + + +def run_experiments(networks, type_of_experiment, **pars): # type_of_experiment = {"GA", "HillClimb"} + N, n_nets = networks[0].N, len(networks) + aes, bs, seqs = np.zeros((n_nets, N)), np.zeros((n_nets, N)), np.zeros((n_nets, N)) + Xs, xs = np.zeros(n_nets), np.zeros((n_nets, N)) + + if type_of_experiment == "GA": + convs = np.full(n_nets, False) + if "debug" in pars: + if pars['debug']: + Xs_v_iters = np.zeros((n_nets, pars['iters'] + 1)) + elif type_of_experiment == "HillClimb": + best_degrees = [] + iters_since_changes = [] + iterations = [] + if "initial_a_disc" in pars: + a_ini = pars['initial_a_disc'] + else: + a_ini = None + + for l, net in enumerate(networks): + if n_nets > 1: + print("-----\nNetwork " + str(l)) + + if type_of_experiment == "GA": + print("Performing gradient ascent...") + _, Xs[l], convs[l], i = net.gradient_ascent(**pars) + if "debug" in pars: + if pars['debug']: + Xs_v_iters[l] = net.ga.X_vec + print("Gradient ascent converged after {:d} iterations.".format(i)) + + elif type_of_experiment == "HillClimb": + print("Performing hill climbing algorithm. Min iterations:", pars["disc_iters"], + ", min iterations since change:", pars['min_iters_since_change']) + + gain, n_nodes = compute_gain_nnodes(net, **pars) + if a_ini == "cont": + pars['initial_a_disc'] = net.a + assert pars['add_continuous'], "HillClimb initial 'a' from GA but GA experiment not set." + + _, Xs[l], _, iters, iters_since_change = net.hill_climbing(n_nodes, gain=gain, min_iters=pars['disc_iters'], + **pars) + best_degrees.append(net.hc.best_degrees) + iters_since_changes.append(iters_since_change) + iterations.append(iters) + else: + raise Exception("Type of experiment '" + type_of_experiment + "' not understood.") + + seqs[l], aes[l], bs[l], xs[l] = net.sort_by_degree(type_of_experiment) + + if type_of_experiment == "GA": + extras = {"convs": convs} + if "debug" in pars: + if pars['debug']: + extras["Xs_v_iters"] = Xs_v_iters + elif type_of_experiment == "HillClimb": + extras = {"best_degrees": best_degrees, "iters_since_change": iters_since_changes, "iterations": iterations} + else: + raise Exception("Type of experiment '" + type_of_experiment + "' not understood.") + + return aes, bs, seqs, Xs, xs, extras + + +def extend_experiments(aes, bs, seqs, Xs, xs, others, networks, type_of_experiment, previous_iters, **pars): + n_nets, previous_n_nets = len(networks), len(seqs) + if type_of_experiment == "HillClimb": + i_since_changes, iters = others["iters_since_change"], others["iterations"] + print("Iterations:", iters, "Iterations since last change:", i_since_changes) + disc_iters, min_i_since_change = pars['disc_iters'], pars['min_iters_since_change'] + + # Rerunning previous experiments with more iterations + rerun = False + for l in range(np.min([previous_n_nets, n_nets])): + net = networks[l] + _, sort_ind = net.sort_by_degree(type_of_experiment=None) + unsort_ind = np.argsort(sort_ind) # For unordering ordered seqs, aes, and bs + + if type_of_experiment == "GA": + # TODO: fix extension of GA algorithm to include previous max iterations + if False: # not others['convs'][l] and (pars1['iters'] < pars['iters']): + print("Re-running GA on net {:d} (iterations: {:.0f})".format(l, previous_iters)) + rerun = True + pars['initial_a'] = aes[l][unsort_ind] + + _, Xs[l], others['convs'][l], i = net.gradient_ascent(**pars) + seqs[l], aes[l], bs[l], xs[l] = net.sort_by_degree(type_of_experiment) + + elif type_of_experiment == "HillClimb": + if iters[l] < disc_iters or i_since_changes[l] < min_i_since_change: + print("Rerunning hill climbing algorithm on net {:d}".format(l) + + " (iterations: {:.0f} <= {:.0f},".format(iters[l], disc_iters) + + " iters since change: {:.0f} <= {:.0f})".format(i_since_changes[l], min_i_since_change)) + rerun = True + a_ini = aes[l][unsort_ind] + gain, n_nodes = compute_gain_nnodes(net, **pars) + _, Xs[l], _, iters[l], i_since_changes[l] = net.hill_climbing(n_nodes, gain, min_iters=disc_iters, + initial_a_disc=a_ini, iters=iters[l], + i_since_change=i_since_changes[l], + min_iters_since_change=min_i_since_change) + seqs[l], aes[l], bs[l], xs[l] = net.sort_by_degree(type_of_experiment) + else: + raise Exception("Type of experiment {:s} not understood.".format(type_of_experiment)) + if rerun and type_of_experiment == "HillClimb": + others["iters_since_change"], others["iterations"] = i_since_changes, iters + + # Extending number of networks + if previous_n_nets < n_nets: + print("Extending number of networks from {:d} to {:d}...".format(previous_n_nets, n_nets)) + + aes2, bs2, seqs2, Xs2, xs2, others2 = run_experiments(networks[previous_n_nets:], type_of_experiment, **pars) + Xs = np.append(Xs, Xs2) + aes, bs, xs, seqs = [np.concatenate([el1, el2]) for el1, el2 in + zip([aes, bs, xs, seqs], [aes2, bs2, xs2, seqs2])] + for key in others.keys(): + if key in others2: + others[key] = np.append(others[key], others2[key]) + + return aes, bs, seqs, Xs, xs, others, rerun + + +def load_experiments(networks, type_of_experiment, **pars): + fname = create_name(level="data", type_of_experiment=type_of_experiment, **pars) + + def save_data(aes, bs, seqs, Xs, xs, others, **pars): + data = {'pars': pars, 'allocations': (aes, bs, seqs), 'Xs': Xs, 'xs': xs, 'others': others} + print("Saving model in " + fname + "\n----------------------------------------------\n") + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + print(type_of_experiment + " data loaded from " + fname) + + pars1, (aes, bs, seqs), Xs, xs, others = data['pars'], data['allocations'], data["Xs"], data['xs'], data[ + 'others'] + + if "debug" in pars and type_of_experiment == "GA": + if pars['debug'] and "Xs_v_iters" not in others: + print("Problem with data not run with enough level of detail!") + raise FileNotFoundError + + # Check that previous network settings are the same as the new ones (as network loading is not implemented) + n_nets, previous_n_nets = len(networks), len(seqs) + for l in range(np.min([n_nets, previous_n_nets])): + net = networks[l] + _, sort_ind = net.sort_by_degree(type_of_experiment=None) + unsort_ind = np.argsort(sort_ind) + net.allocate_a(aes[l][unsort_ind], type_of_experiment=type_of_experiment) + networks[l].allocate_b(bs[l][unsort_ind], **pars) + assert np.allclose(networks[l].seq[sort_ind], seqs[l]) + # assert np.allclose(networks[l].b[sort_ind][:, 0], bs[l]), str(np.arange(net.N)[networks[l].b[:, 0] > 0]) + " " + str(np.arange(net.N)[bs[l][unsort_ind] > 0]) + # seqs[l][networks[l].b[sort_ind][:, 0] > 0]) + " " + str(seqs[l][bs[l] > 0]) + # networks[l].seq[networks[l].b[:, 0] > 0]) + " " + str(seqs[l][bs[l] > 0]) + + aes, bs, seqs, Xs, xs, others, rerun = extend_experiments(aes, bs, seqs, Xs, xs, others, networks, + type_of_experiment, pars1['iters'], **pars) + + if rerun or previous_n_nets < n_nets: + save_data(aes, bs, seqs, Xs, xs, others, **pars) + + # Reduce extension if previous_nets > pars['n_nets'] + aes, bs, seqs, Xs, xs = aes[:n_nets], bs[:n_nets], seqs[:n_nets], Xs[:n_nets], xs[:n_nets] + for key in others.keys(): + others[key] = others[key][:n_nets] + + except FileNotFoundError: + print(type_of_experiment + " data " + fname + " not found. Running experiments...") + aes, bs, seqs, Xs, xs, others = run_experiments(networks, type_of_experiment, **pars) + save_data(aes, bs, seqs, Xs, xs, others, **pars) + + return aes, bs, seqs, Xs, xs, others + + +def load_data(pars): + networks = load_networks(**pars) + + if pars['add_continuous']: + aes, bs, seqs, Xs, xs, others = load_experiments(networks, "GA", **pars) + if "debug" in pars: + if pars["debug"]: + # TODO: This is very dirty. This data should be returned via 'return', which should include either a dictionary or a bespoke object + pars["Xs_v_iters"] = others["Xs_v_iters"] + else: + aes, Xs, xs, others = None, None, None, {} + others['convs'] = [None] * pars['n_nets'] + + if "add_discrete" in pars: + if pars["add_discrete"]: + aes_disc, bs_disc, seqs, Xs_disc, xs_disc, _ = load_experiments(networks, "HillClimb", **pars) + if aes is not None: + pass + # assert np.all(bs == bs_disc), str(bs)+str(bs_disc) + else: + bs = bs_disc + else: + aes_disc, Xs_disc, xs_disc = None, None, None + else: + aes_disc, Xs_disc, xs_disc = None, None, None + + return aes, bs, seqs, Xs, xs, others['convs'], aes_disc, Xs_disc, xs_disc, networks + + +def run_HPC_experiments(): + parser = argparse.ArgumentParser(description='Perform experiment') + parser.add_argument('--bmul', type=float, default=1.0, metavar='bmul', help="multiplication factor of B's budget.") + # 'linespar': 'bmul', 'linesarray': [0.01, 1, 100], + parser.add_argument('--N_allo', type=int, default=1, metavar='N_allo', + help='number of nodes targeted by discrete controllers') + parser.add_argument('--network', choices=["email", "ba", "conf", "random", "advogato"], default="email", + metavar='network', help='Network topology.') + parser.add_argument('--n_nets', type=int, default=1, metavar='n_nets', + help='Number of instances of the experiment.') + # 'axispar': 'N_allocations', 'axisarray': [1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024], + parser.add_argument("--end", choices=["low", "middle", "high", "periphery"], default="middle", metavar="end", + help="Nodes targeted by a discrete passive opponent.") + parser.add_argument("--add_disc", type=bool, default=True, metavar="add_disc", help="Perform hill-climbing.") + parser.add_argument("--seed", type=int, default=-1, metavar="seed", help="Seed (-1 == ignore).") + args = parser.parse_args() + + pars = { + # Experiment setting + 'network': args.network, 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'N': 1133, + 'n_nets': args.n_nets, 'bmul': args.bmul, 'N_allocations': args.N_allo, 'end': args.end, + + # Methods parameters + 'add_discrete': args.add_disc, 'disc_iters': 22660, 'initial_a': 'random', 'min_iters_since_change': 1133, + 'add_continuous': True, 'iters': 2000, 'lrate': 50, + } + + if pars["network"] == "random": + pars["p"] = 0.01 + elif pars['network'] == "ba": + pars["m"] = 5 + elif pars['network'] == "conf": + pars["gamma"] = 3 + pars["dmin"] = 5 + elif pars['network'] == "advogato": + pars['N'] = 5054 + + if pars['network'] in ("classroom", "advogato"): + pars["N_allocations"] = round(pars['N_allocations'] / 1133 * pars['N']) + + if args.seed != -1: + pars['seed'] = args.seed + + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, _ = load_data(pars) + + +def test_HPC_experiments(): + pars = { + # Experiment setting + 'network': "advogato", 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'N': 1133, 'seed': 8, + 'n_nets': 1, 'bmul': 1.0, 'N_allocations': 16, 'end': "middle", + + # Methods parameters + 'add_discrete': False, 'disc_iters': 22660, 'initial_a': 'random', 'min_iters_since_change': 11330, + 'add_continuous': False, 'iters': 20000, 'lrate': 50, + } + + if pars["network"] == "random": + pars["p"] = 0.01 + elif pars['network'] == "ba": + pars["m"] = 5 + elif pars['network'] == "conf": + pars["gamma"] = 3 + pars["dmin"] = 5 + elif pars['network'] == "advogato": + pars['N'] = 5054 + + aes, bs, seqs, Xs, xs, convs, aes_disc, Xs_disc, xs_disc, _ = load_data(pars) + + +def join_HPC_experiments(type_of_experiment, N_allo, bmul=1.0): + pars = { + # Experiment setting + 'network': "advogato", 'kabmul': 1 / 30, 'b_allocation': 'discrete', 'N': 5054, + 'n_nets': 5, 'bmul': bmul, 'N_allocations': N_allo, 'end': "middle", + + # Methods parameters + 'add_discrete': False, 'disc_iters': 22660, 'initial_a': 'random', 'min_iters_since_change': 1133, + 'add_continuous': False, 'iters': 2000, 'lrate': 50, + } + + if type_of_experiment == "GA": + pars['add_continuous'] = True + elif type_of_experiment == "HillClimb": + pars['add_discrete'] = True + + fname = create_name(level="data", type_of_experiment=type_of_experiment, **pars) + + def save_data(aes, bs, seqs, Xs, xs, others, **pars): + data = {'pars': pars, 'allocations': (aes, bs, seqs), 'Xs': Xs, 'xs': xs, 'others': others} + print("Saving model in ", fname, "\n----------------------------------------------\n") + with open(fname, 'wb') as f: + pickle.dump(data, f, pickle.HIGHEST_PROTOCOL) + + try: + with open(fname, 'rb') as f: + data = pickle.load(f) + print(type_of_experiment + " data loaded from " + fname) + + if "debug" in pars: + if pars['debug'] and "Xs_v_iters" not in data['others']: + print("Problem with data not run with enough level of detail!") + raise FileNotFoundError + + except FileNotFoundError: + print(type_of_experiment + " data " + fname + " not found. Gathering seeds...") + + n_nets = pars['n_nets'] + pars['n_nets'] = 1 + + aes, bs, seqs, Xs, xs, others = [], [], [], [], [], [] + for seed in range(1, n_nets + 1): + pars['seed'] = seed + fname = create_name(level="data", type_of_experiment=type_of_experiment, **pars) + + with open(fname, 'rb') as f: + data = pickle.load(f) + print(type_of_experiment + " data loaded from", fname) + + for key in pars: + if (type_of_experiment == "GA" and key not in ("add_discrete", "min_iters_since_change")) or ( + type_of_experiment == "HillClimb" and key not in ("add_continuous", "iters")): + assert pars[key] == data['pars'][key], str(key) + ": " + str(pars[key]) + ", " + str( + data['pars'][key]) + + aes.append(data['allocations'][0][0, :]) + assert aes[-1].ndim == 1 + bs.append(data['allocations'][1][0, :]) + assert bs[-1].ndim == 1 + seqs.append(data['allocations'][2][0, :]) + assert seqs[-1].ndim == 1 + Xs.append(data['Xs']) + xs.append(data['xs']) + others.append(data['others']) + + pars['n_nets'] = n_nets + del pars['seed'] + aes, bs, seqs, Xs, xs = np.array(aes), np.array(bs), np.array(seqs), np.array(Xs), np.array(xs) + + all_others = {} + for key in others[1].keys(): + for other in others: + if key not in all_others: + all_others[key] = [other[key]] + else: + all_others[key].append(other[key]) + all_others[key] = np.array(all_others[key]) + + fname = create_name(level="data", type_of_experiment=type_of_experiment, **pars) + save_data(aes, bs, seqs, Xs, xs, all_others, **pars) + + +if __name__ == "__main__": + # run_HPC_experiments() + # test_HPC_experiments() + + # For continuous experiments with bmul=1.0 + # for n_allo in (4, 9, 18, 36, 71, 143, 285, 571, 1142): + # join_HPC_experiments("GA", n_allo) + + # For constructive + # join_HPC_experiments("GA", N_allo=71, bmul=0.1) + # join_HPC_experiments("GA", N_allo=71, bmul=10.0) + join_HPC_experiments("HillClimb", N_allo=71, bmul=0.1) + join_HPC_experiments("HillClimb", N_allo=71, bmul=1.0) + join_HPC_experiments("HillClimb", N_allo=71, bmul=10.0) diff --git a/networks.py b/networks.py new file mode 100644 index 0000000000000000000000000000000000000000..9378bd14f339e212d650101318768c8aff3cabf5 --- /dev/null +++ b/networks.py @@ -0,0 +1,473 @@ +import warnings +import random +import numpy as np +import networkx as nx +import pandas as pd +import matplotlib as mpl +import matplotlib.pyplot as plt + +from python.utils import PLOTS_PATH +from python.gascent import GA, DebugGA +from python.hillclimb import HillClimber + +import os + +dirname = os.path.dirname(__file__) +EMAIL_PATH = os.path.join(dirname, "datasets/ia-email-univ/email.txt") +ADVOGATO_PATH = os.path.join(dirname, "datasets/soc-advogato/soc-advogato.edges") +CLASSROOM_PATH = os.path.join(dirname, "datasets/classroom/Friendship-network_data_2013.csv") + +mpl.rcParams['text.usetex'] = True + + +def get_highest_nodes(seq, n, end): + if end == "high": + sorted_indices = np.argsort(seq)[::-1] + d_star = seq[sorted_indices][n - 1] + chosen_indices = sorted_indices[seq[sorted_indices] > d_star] + elif end == "low": + sorted_indices = np.argsort(seq) + d_star = seq[sorted_indices][n - 1] + chosen_indices = sorted_indices[seq[sorted_indices] < d_star] + else: + raise Exception("end {:s} not understood.".format(end)) + + chosen_indices = np.append(chosen_indices, random.sample( + list(sorted_indices[seq[sorted_indices] == d_star]), n - len(chosen_indices))) + + return chosen_indices + + +def build_graph(network_class, seed, **pars): + if "N" in pars: + N = pars['N'] + else: + raise Exception("Number of nodes N not specified!") + + net_pars = {} + if network_class == "complete": + G = nx.complete_graph(N) + elif network_class == "bipartite": + G = nx.complete_bipartite_graph(int(N * pars['rho']), int(N * (1 - pars['rho']))) + elif network_class == 'ba': + G = nx.barabasi_albert_graph(N, pars['m'], seed=seed) + elif network_class == 'conf': + fails = 0 + while True: + try: + # seq = np.array(nx.utils.powerlaw_sequence(N, pars['gamma'], seed=seed), dtype=int) + + # nx.utils.zipf_rv(alpha=pars['gamma'], xmin=pars['dmin'], seed=seed) + # print([k for k in np.arange(np.sum(seq == 1))]) + + seq = [nx.utils.zipf_rv(alpha=pars['gamma'], xmin=pars['dmin'], seed=seed + k) for k in range(N)] + print(max(seq), np.mean(seq), np.unique(seq, return_counts=True)) + # G = nx.random_degree_sequence_graph(seq) # , tries=50) + G = nx.configuration_model(seq, seed=seed) + if not nx.is_connected(G): + raise nx.exception.NetworkXError("Graph not connected") + break + except (nx.exception.NetworkXError, nx.exception.NetworkXUnfeasible) as err: + print(err) + seed += 100 + fails += 1 + G = nx.Graph(G) # remove parallel edges + G.remove_edges_from(nx.selfloop_edges(G)) + net_pars["fails"] = fails + elif network_class == "regular": + G = nx.random_regular_graph(pars['kdegree'], N, seed=seed) + # G = nx.fast_gnp_random_graph(pars['N'], 2 * pars['kdegree'] / (pars['N'] - 1)) + elif network_class == "small-world": + G = nx.connected_watts_strogatz_graph(N, pars['kdegree'], pars['p'], seed=seed) + elif network_class == "email": + edges = pd.read_csv(EMAIL_PATH, sep='\s+').values.tolist() + G = nx.Graph(edges) + for (u, v) in nx.selfloop_edges(G): + G.remove_edge(u, v) + # print("N of nodes: " + str(G.number_of_nodes()) + ", N of edges: " + str(G.number_of_edges())) + elif network_class == "advogato": + G = nx.read_weighted_edgelist(ADVOGATO_PATH, comments="%") # , create_using=nx.DiGraph) + for i, (u, v) in enumerate(nx.selfloop_edges(G)): + G.remove_edge(u, v) + G = G.subgraph(max(nx.connected_components(G), key=len)) + elif network_class == "classroom": + G = nx.read_edgelist(CLASSROOM_PATH) # , create_using=nx.DiGraph) + G = G.subgraph(max(nx.connected_components(G), key=len)) + elif network_class == "random": + G = nx.fast_gnp_random_graph(N, pars['p'], seed=seed) + else: + raise Exception("Network class '" + network_class + "' not understood.") + + assert nx.is_connected(G), "Graph not connected" + return G, net_pars + + +def compute_gain_nnodes(net, controller="A", **pars): + if controller == "A": + budget = net.mean_a * net.N + elif controller == "B": + budget = net.mean_b * net.N + else: + raise Exception("Controller {:s} not understood.".format(controller)) + + if 'N_allocations_a' in pars and controller == "A": + if type(pars['N_allocations_a']) == int: + n_nodes = pars['N_allocations_a'] + elif pars['N_allocations_a'] in ("full_shielding", "over_shielding"): + n_neighbours = np.squeeze(np.sum(net.W[net.b[:, 0] > 0], axis=0)) + mask_Nb = np.logical_and(n_neighbours > 0, net.b[:, 0] == 0) + n_nodes = np.sum(mask_Nb) + if pars['N_allocations_a'] == "over_shielding": + n_nodes = int(n_nodes * 1.5) + else: + raise Exception("Parameter N_allocations_a not understood.") + gain = budget / n_nodes + print("Allocations from the A-controller:", n_nodes, "gain:", gain) + elif 'gain' in pars: + n_nodes = int(budget / pars['gain']) + if 'gain_adjustment' in pars: + if pars['gain_adjustment']: + gain = budget / n_nodes + print("Gain adjusted to the new value", gain) + else: + gain = pars['gain'] + else: + warnings.warn("Gain adjustment not defined for these experiments (!)") + gain = pars['gain'] + elif 'N_allocations' in pars: + n_nodes = pars['N_allocations'] + gain = budget / n_nodes + else: + raise Exception("Discrete allocations not completely defined.") + + return gain, n_nodes + + +# TODO: THERE SHOULD BE AN ABSTRACT NETWORK CLASS AND CHILDREN CORRESPONDING TO SPECIFIC NETWORK TYPES +class Network: + def __init__(self, network_class, seed=5, adjlist=None, node_order=None, **pars): + if adjlist is None: + self.G, self.construction_graph_data = build_graph(network_class, seed, **pars) + else: + self.G = nx.parse_adjlist(adjlist) + if network_class != "conf": + self.W = nx.adjacency_matrix(self.G) # , range(1, pars['N']+1)) + else: + # print(type(node_order), len(node_order), node_order) + # self.W = nx.adjacency_matrix(self.G, node_order) + # print("nodes", self.G.nodes) + # print("edges", self.G.edges) + self.W = nx.adjacency_matrix(self.G) # , nodelist=np.arange(pars['N'])) + self.L = np.diagflat(np.sum(self.W, axis=0)) - self.W + self.N = self.W.shape[0] + if "N" in pars: + assert self.N == pars['N'], "{:d} != {:d}".format(self.N, pars['N']) + self.seq = np.squeeze(np.array(np.sum(self.W, axis=1))) + self.sort_ind = None + if network_class != "email": + print(network_class, " network with mean degree", np.mean(self.seq), "max degree", np.max(self.seq)) + + self.sample = None + self.seed = seed + self.mean_b = None + self.b = None + + self.mean_a = None + self.a = None + self.ga = None + self.x, self.X = None, None + + self.a_disc, self.x_disc = None, None + self.hc = None + + def allocate_a(self, a_vec, type_of_experiment): + assert type(a_vec) == np.ndarray + assert len(a_vec) == self.N + assert np.isclose(np.mean(a_vec), self.mean_a), "{:f} {:f}".format(np.mean(a_vec), self.mean_a) + # if len(a_vec.shape) == 1: + # a_vec = a_vec[:, None] + if type_of_experiment == "GA": + self.a = a_vec + elif type_of_experiment == "HillClimb": + self.a_disc = a_vec + else: + raise Exception("Type of experiment {:s} not understood.".format(type_of_experiment)) + + def allocate_b(self, allocation_type, **pars): # 'b' is the mean allocation given by the B-controller + assert self.mean_b is not None + random.seed(self.seed) + np.random.seed(self.seed) + + if type(allocation_type) == np.ndarray: + self.b = allocation_type + assert len(self.b) == self.N + assert np.isclose(np.mean(self.b), self.mean_b), "{:f} {:f}".format(np.mean(self.b), self.mean_b) + if len(self.b.shape) == 1: + self.b = self.b[:, None] + else: + if allocation_type in ("linear", "powerlaw", "sin", "Amajor", "random", "randn"): + self.allocate_b_wrt_func(allocation_type, **pars) + elif allocation_type == 'discrete': + if 'gain' in pars: + n_nodes = int(self.mean_b * self.N / pars['gain']) + elif 'N_allocations' in pars: + n_nodes = pars['N_allocations'] + else: + raise Exception("Discrete allocations not completely defined.") + self.allocate_b_discrete(n_nodes=n_nodes, end=pars['end']) + elif allocation_type == "randlin": + self.allocate_uniform_b_with_perturbations(pars['n_perturbations'], pars['end']) + + else: + raise Exception("B allocation '" + str(allocation_type) + "' not understood.") + if 'share_of_uniform' in pars: + self.partially_allocate_b_uniformly(pars['share_of_uniform']) + + assert np.isclose(np.mean(self.b), 1), str(np.mean(self.b)) + " != 1" + assert np.all(self.b >= 0), str(self.b[self.b < 0]) + self.b = self.b * self.mean_b + + def allocate_b_wrt_func(self, allocation_type, beta=None, **pars): + assert beta is not None or allocation_type in ("random", "randn") + + def beta_allocation(k): + if allocation_type == "linear": + return k * beta + if allocation_type == "powerlaw": + return k ** beta + elif allocation_type == "sin": + assert 0 < beta <= 1 + return 1 + beta * np.sin(k / np.max(self.seq) * 8 * np.pi) + elif allocation_type == "Amajor": + assert 0 < beta <= 1 + return 1 + beta * (np.sin(k / np.max(self.seq) * 8.8 * np.pi) + np.sin( + k / np.max(self.seq) * 11 * np.pi) + np.sin(k / np.max(self.seq) * 13.2 * np.pi)) / 3 + elif allocation_type == "random": + return random.random() + elif allocation_type == "randn": + allocation = 1 + np.random.rand() + elif allocation_type == "randlin": + allocation = 1 + 0.005 * np.abs(k - beta) * np.random.randn() + else: + raise Exception("B allocation '" + str(allocation_type) + "' not understood.") + if allocation < 0: + allocation = 0 + elif allocation > 2: + allocation = 2 + return allocation + + b = np.zeros((self.N, 1)) + random.seed(self.seed) + for j, k in enumerate(self.seq): + b[j] = beta_allocation(k) + + # Re-scaling + if allocation_type in ("linear",): # "randlin"): + # Shift (keeping slope) + self.b = b + (self.N - np.sum(b)) / self.N + + while np.any(self.b < 0): + broken_nodes = self.b <= 0 + self.b += (self.N - np.sum(self.b[self.b > 0])) / np.sum(self.b > 0) + self.b[broken_nodes] = 0 + else: + # Re-scale + self.b = b / np.sum(b) * self.N + + def allocate_uniform_b_with_perturbations(self, n_perturbations, degree): + if type(degree) == "string": + if degree in ("low, high"): + indices = get_highest_nodes(self.seq, 2 * n_perturbations, degree) + else: + raise ValueError("value not understood: " + degree) + elif type(degree) == int: + indices = np.arange(self.N)[self.seq == degree] + else: + ValueError("Error with degree of type: " + str(type(degree))) + assert 2 * n_perturbations <= len(indices), "{:d} {:d}".format(n_perturbations, len(indices)) + + self.b = np.ones((self.N, 1)) + for j in range(n_perturbations): + i1, i2 = np.random.choice(indices, 2, replace=False) + indices = indices[np.logical_not(np.logical_or(indices == i1, indices == i2))] + + perturbation = 1 # 0.3 * np.random.randn() + assert perturbation <= 1, "Perturbation too big: " + str(perturbation) + self.b[i1] += perturbation + self.b[i2] -= perturbation + + def partially_allocate_b_uniformly(self, share): + self.sample = np.random.choice(self.N, int(share * self.N), replace=False) + bs = np.sum(self.b[self.sample]) + self.b[self.sample] = bs / int(share * self.N) + + def allocate_b_discrete(self, n_nodes, end): # end= {'low' degree, 'high' degree, 'middle' = random} + b = np.zeros((self.N, 1)) + + if end == "middle": + b[random.sample(range(self.N), n_nodes)] = 1 + else: + if end == "high": + sorted_indices = np.argsort(self.seq)[::-1] + d_star = self.seq[sorted_indices][n_nodes - 1] + chosen_indices = sorted_indices[self.seq[sorted_indices] > d_star] + elif end == "low": + sorted_indices = np.argsort(self.seq) + d_star = self.seq[sorted_indices][n_nodes - 1] + chosen_indices = sorted_indices[self.seq[sorted_indices] < d_star] + + if end in ("high", "low"): + chosen_indices = np.append(chosen_indices, random.sample( + list(sorted_indices[self.seq[sorted_indices] == d_star]), n_nodes - len(chosen_indices))) + elif end == "periphery": + max_neigh_degs = np.zeros(self.N) + for i in range(self.N): + max_neigh_degs[i] = np.max(self.W[i] * self.seq) + sorted_ind = np.argsort(max_neigh_degs) + # sorted_neigh_degs = max_neigh_degs[sorted_ind] + chosen_indices = sorted_ind[:n_nodes] + # print("degree of nodes", self.seq[chosen_indices]) + print("max degree of neighbours", max_neigh_degs[chosen_indices]) + d_star = np.max(self.seq[chosen_indices]) + else: + raise Exception("end {:s} not understood.".format(end)) + + b[chosen_indices] = 1 + print("Discrete b allocation with {:d} nodes, cut degree {:d} ({:s})".format(n_nodes, d_star, end)) + + self.b = b / np.sum(b) * self.N + + def gradient_ascent(self, debug=False, **pars): + if 'seed' not in pars: + pars['seed'] = self.seed + + if not debug: + self.ga = GA(self.W, self.b, a_budget=self.mean_a * self.N, **pars) + else: + if pars['initial_a'] == "random_disc": + gain, n_nodes = compute_gain_nnodes(self, **pars) + a = np.zeros(self.N) + np.random.seed(self.seed) + a[np.random.choice(self.N, n_nodes, replace=False)] = gain + pars['initial_a'] = a + self.ga = DebugGA(self.W, self.b, a_budget=self.mean_a * self.N, **pars) + self.a, self.X, self.x, i = self.ga.execute() + return self.a, self.X, self.ga.conv, i + + def hill_climbing(self, n_nodes, gain, min_iters, **pars): + self.hc = HillClimber(self.W, self.b, n_nodes, gain, **pars) + self.a_disc, X, self.x_disc, iters, i_since_change = self.hc.execute(min_iters, **pars) + assert np.isclose(np.mean(self.a_disc), self.mean_a) + return self.a_disc, X, self.x_disc, iters, i_since_change + + def sort_by_degree(self, type_of_experiment="GA"): + if self.sort_ind is None: + self.sort_ind = np.argsort(self.seq) + if type_of_experiment == "GA": + return self.seq[self.sort_ind], self.a[self.sort_ind], self.b[self.sort_ind, 0], self.x[self.sort_ind] + elif type_of_experiment == "HillClimb": + return self.seq[self.sort_ind], self.a_disc[self.sort_ind], self.b[self.sort_ind, 0], self.x_disc[ + self.sort_ind] + else: + return self.seq[self.sort_ind], self.sort_ind + + def get_edge_list(self): + return list(nx.generate_adjlist(self.G)) + + @staticmethod + def extract_network_pars(network_class, **pars): + net_pars = {} + if network_class == 'ba': + net_pars["m"] = pars['m'] + elif network_class == 'conf': + net_pars["gamma"] = pars['gamma'] + elif network_class == "regular": + net_pars["kdegree"] = pars["kdegree"] + elif network_class == "small-world": + net_pars["kdegree"] = pars['kdegree'] + net_pars["p"] = pars['p'] + elif network_class == "random": + net_pars["p"] = pars['p'] + elif network_class != "email": + raise Exception("Network class '" + network_class + "' not understood.") + + return net_pars + + +def create_regular_network(pars): + G = nx.random_regular_graph(pars['kdegree'], pars['N']) + # G = nx.fast_gnp_random_graph(pars['N'], 2 * pars['kdegree'] / (pars['N'] - 1)) + if not nx.is_connected(G): + raise Exception("Graph not connected") + W = nx.adjacency_matrix(G) + L = np.diagflat(np.sum(W, axis=0)) - W + N = W.shape[0] + + return W, L, N + + +if __name__ == "__main__": + pars = { + 'N': 1133, + 'p': 0.01, # For random graph + 'gamma': 3, 'dmin': 5, # For scale-free conf model + 'm': 5, # For Barabasi-Albert network + } + + # network_type = "email" + # network_type = "advogato" + network_type = "classroom" + + # network_type = "random" + # network_type = "bamean" + # network_type = "conf" + + if network_type in ("random", "ba", "conf"): + n_seeds = 15 + else: + n_seeds = 1 + + if network_type == "advogato": + pars['N'] = 5054 + elif network_type == "classroom": + pars["N"] = 128 + + for k in range(n_seeds): + seed = 6 + k + net = Network(network_type, seed=seed, **pars) + print(net.N) + print("degrees (max, mean, seq)", max(net.seq), np.mean(net.seq), np.unique(net.seq, return_counts=True)) + print("assortativity", nx.degree_assortativity_coefficient(net.G)) + + if True: + if False: + fig, ax = plt.subplots(figsize=(1.618 * 2.5, 2.5)) + ax.hist(net.seq, bins=range(int(np.max(net.seq)) + 1), color="purple") + ax.set_yscale("log") + ax.set(xlabel="Node degree", ylabel="Count") + ax.margins(x=0.0) + + fig.tight_layout() + fig.savefig(PLOTS_PATH + network_type + "_degree_dist.eps") + else: + print("Directed?", nx.is_directed(net.G)) + fig, ax = plt.subplots(figsize=(3, 2.5)) + ax.bar(range(net.N), sorted(net.seq)[::-1], color="purple") + ax.set_yscale("log") + ax.set(xlabel=r"$i$ (sorted by $d_{i}$, descending)", ylabel=r"Weighted degree, $d_{i}$") + ax.set(xlim=[-10, net.N + 9]) + fig.tight_layout() + fig.savefig(PLOTS_PATH + network_type + "_degree_dist_nodes.png") + + fig.show() + else: + fig, ax = plt.subplots(figsize=(10, 5)) + + net.mean_b = 1 + net.allocate_b("randlin", n_perturbations=10, end=1) + # print(np.unique()) + + ax.scatter(net.seq, net.b) + + ax.set(ylim=0) + fig.show() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..edc3e4f124fc4d8ba31c89004659cab689913f2e --- /dev/null +++ b/requirements.txt @@ -0,0 +1,15 @@ +cycler==0.10.0 +decorator==4.4.2 +kiwisolver==1.2.0 +matplotlib==3.2.2 +mpmath==1.1.0 +networkx==2.4 +numpy==1.19.0 +pandas==1.0.5 +pyparsing==2.4.7 +python-dateutil==2.8.1 +pytz==2020.1 +scipy==1.5.1 +seaborn==0.10.1 +six==1.15.0 +sympy==1.6.2 diff --git a/utils.py b/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..f6f8157ad2c944e457e2c570492ad140df62c8c7 --- /dev/null +++ b/utils.py @@ -0,0 +1,74 @@ +import numpy as np +import networkx as nx + +import os +dirname = os.path.dirname(__file__) +DATA_PATH = os.path.join(dirname, 'simulation_data/') +PLOTS_PATH = os.path.join(dirname, 'plots/') + + +def std_errors(array, axis=0, confidence=False, nan=False): + if type(axis) in (tuple, list): + n_dim_averaged = sum(array.shape[ax] for ax in axis) + else: + n_dim_averaged = array.shape[axis] + + if nan: + errors = np.nanstd(array, axis=axis) / np.sqrt(n_dim_averaged) + else: + errors = np.std(array, axis=axis) / np.sqrt(n_dim_averaged) + + if confidence: + return 2 * errors + else: + return errors + + +def create_range(pars, level='axis'): + if level == "axis": + if pars[level + "par"] in ("rho", "beta") and level + "array" not in pars: + for el in np.linspace(pars[level + "min"], pars[level + "max"], pars[level + 'length']): + pars[pars[level + 'par']] = el + yield el + elif pars[level + 'par'] == "k1": + for rho in np.linspace(1 / pars['N'], (pars['N'] - 1) / pars['N'], pars['N'] - 1): + num = (pars['kdegree'] - rho * pars['k0']) / (1 - rho) + if num < 28 + 7 * pars['k0'] and np.isclose(np.mod(num, 1), 0): + seq = [pars['k0'] for _ in range(int(pars['N'] * rho))] + [int(num) for _ in + range(int(pars['N'] * (1 - rho)))] + if nx.is_graphical(seq): + pars['k1'] = int(num) + pars['rho'] = rho + if 'betamul' in list(pars): + pars['alpha'] = rho + (1 - rho) * (1 - pars['betamul']) + pars['beta'] = pars['betamul'] * rho + yield (int(num), rho) + elif level + "array" in pars: + for el in pars[level + 'array']: + pars[pars[level + 'par']] = el + yield el + else: + raise Exception("Axis parameter not understood: " + pars[level + "par"]) + elif level == "lines": + if level + "array" in pars: + for el in pars[level + 'array']: + if pars[level + 'par'] is not None: + pars[pars[level + 'par']] = el + yield el + else: + raise Exception("Lines parameter '{:s}' not understood.".format(pars[level + 'par'])) + elif level == "axes" or level == "multiaxes": + if pars[level + "par"] == "ab": + for el in np.power(10.0, np.array([-1, 0, 1])): + pars['a'], pars['b'] = el, el + yield el + elif level + "array" in pars: + for el in pars[level + 'array']: + if pars[level + 'par'] is not None: + pars[pars[level + 'par']] = el + yield el + else: + raise Exception("Axes par '{:s}' not understood".format(pars[level + "par"])) + else: + raise Exception("Level '{:s}' not understood.".format(level)) +