diff --git a/docs/data_structures_and_algorithms/nanodegree_outline.md b/docs/data_structures_and_algorithms/nanodegree_outline.md
new file mode 100644
index 0000000..2506026
--- /dev/null
+++ b/docs/data_structures_and_algorithms/nanodegree_outline.md
@@ -0,0 +1,38 @@
+---
+sidebar_label: 'Nanodegree Outline'
+sidebar_position: 1
+---
+
+# Data Structures and Algorithms Nanodegree
+
+[Syllabus](https://d20vrrgs8k4bvw.cloudfront.net/documents/en-US/Enterprise+Syllabi/Generic/Udacity+Enterprise+Syllabus+Data+Structures+%26+Algorithms+nd256.pdf)
+
+[Noted course in Google Drive](https://docs.google.com/document/d/199eoKlppeCCv1WBt3c3A9RntoR3O2xtduDcYYN6mVYk/edit?usp=sharing)
+
+## Introduction
+Start with a warm welcome to the program by refreshing your Python skills and learning about problem solving and efficiency!
+
+### Project: [Unscramble Computer Science Problems](https://learn.udacity.com/nanodegrees/nd256/parts/41f9d398-7fa4-48e7-96de-88c163e8fba6/lessons/4f281aec-fbff-45f5-9044-ab5caf4cc5b6/concepts/0fd3dae5-41ca-4597-a4a4-d3842129fd65)
+
+### Source code: [vnk8071/unscramble_computer_science_problems](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/unscramble_computer_science_problems)
+
+## Data Structures
+Learn about the core data structures used in programming.
+
+### Project: [Show Me the Data Structures](https://learn.udacity.com/nanodegrees/nd256/parts/cd0328/lessons/2d9a942c-bcc4-4954-9d65-954b5ab3066f/concepts/07869251-2f07-4202-a00a-0d53922e7f26)
+
+### Source code: [vnk8071/show_me_the_data_structures](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/show_me_the_data_structures)
+
+## Basic Algorithms
+Learn about the basic algorithms used in programming.
+
+### Project: [Problems vs. Algorithms](https://learn.udacity.com/nanodegrees/nd256/parts/cd1887/lessons/032713d7-07e0-468f-8393-7b34bf2899e7/concepts/93275178-63ff-4666-88a3-e66e6e29eb2f)
+
+### Source code: [vnk8071/problems_vs_algorithms](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/problems_vs_algorithms)
+
+## Advanced Algorithms
+Learn about the advanced algorithms used in programming.
+
+### Project: [Route Planner](https://learn.udacity.com/nanodegrees/nd256/parts/cd1888/lessons/dc2487e4-aa4a-4301-a0eb-71a99728d78b/concepts/90577506-dfd3-40b7-9696-e1a3369db256)
+
+### Source code: [vnk8071/route_planner](https://github.com/vnk8071/machine-learning-in-production/tree/main/projects/route_planner)
diff --git a/docs/data_structures_and_algorithms/problems_vs_algorithms.md b/docs/data_structures_and_algorithms/problems_vs_algorithms.md
new file mode 100644
index 0000000..c02a597
--- /dev/null
+++ b/docs/data_structures_and_algorithms/problems_vs_algorithms.md
@@ -0,0 +1,76 @@
+---
+sidebar_label: 'Problems vs. Algorithms'
+sidebar_position: 4
+---
+
+# Problems vs. Algorithms
+
+## Data Structure Questions
+
+For this project, you will answer the seven questions laid out in the next sections. The questions cover a variety of topics related to the basic algorithms you've learned in this course. You will write up a clean and efficient answer in Python, as well as a text explanation of the efficiency of your code and your design choices.
+
+## Problem 1: Square Root of an Integer
+
+Find the square root of the integer without using any Python library. You have to find the floor value of the square root.
+
+For example if the given number is 16, then the answer would be 4.
+
+If the given number is 27, the answer would be 5 because sqrt(5) = 5.196 whose floor value is 5.
+
+The expected time complexity is O(log(n))
+
+Code in `problem_1.py` and explanation in `explanation_problem_1.md`
+
+## Problem 2: Search in a Rotated Sorted Array
+
+You are given a sorted array which is rotated at some random pivot point.
+
+Example: [0, 1, 2, 4, 5, 6, 7] might become [4, 5, 6, 7, 0, 1, 2]
+
+You are given a target value to search. If found in the array return its index, otherwise return -1.
+
+You can assume there are no duplicates in the array and your algorithm's runtime complexity must be in the order of O(log n).
+
+Example:
+
+Input: nums = [4, 5, 6, 7, 0, 1, 2], target = 0, Output: 4
+
+Code in `problem_2.py` and explanation in `explanation_problem_2.md`
+
+## Problem 3: Rearrange Array Digits
+
+Rearrange Array Elements so as to form two number such that their sum is maximum. Return these two numbers. You can assume that all array elements are in the range [0, 9]. The number of digits in both the numbers cannot differ by more than 1. You're not allowed to use any sorting function that Python provides and the expected time complexity is O(nlog(n)).
+
+For example, the input [1, 2, 3, 4, 5] will return 531, 42.
+
+Code in `problem_3.py` and explanation in `explanation_problem_3.md`
+
+## Problem 4: Sort 0, 1, 2
+
+Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal. You're not allowed to use any sorting function that Python provides.
+
+Note: O(n) does not necessarily mean single-traversal. For e.g. if you traverse the array twice, that would still be an O(n) solution but it will not count as single traversal.
+
+Code in `problem_4.py` and explanation in `explanation_problem_4.md`
+
+## Problem 5: Autocomplete with Tries
+
+We've learned about Tries earlier in this course, its time to implement one. Implement a trie with insert, search, and startsWith methods.
+
+Code in `problem_5.py` and explanation in `explanation_problem_5.md`
+
+## Problem 6: Unsorted Integer Array
+
+In this problem, we will look for smallest and largest integer from a list of unsorted integers. The code should run in O(n) time. Do not use Python's inbuilt functions to find min and max.
+
+Code in `problem_6.py` and explanation in `explanation_problem_6.md`
+
+## Problem 7: Request Routing in a Web Server with a Trie
+
+For this exercise we are going to implement an HTTPRouter like you would find in a typical web server using the Trie data structure we learned previously.
+
+There are many different implementations of HTTP Routers such as regular expressions or simple string matching, but the Trie is an excellent and very efficient data structure for this purpose.
+
+The purpose of an HTTP Router is to take a URL path like "/", "/about", or "/blog/2019-01-15/my-awesome-post" and figure out what content to return. In a dynamic web server, the content will often come from a block of code called a handler.
+
+Code in `problem_7.py` and explanation in `explanation_problem_7.md`
diff --git a/docs/data_structures_and_algorithms/route_planner.md b/docs/data_structures_and_algorithms/route_planner.md
new file mode 100644
index 0000000..3ba9810
--- /dev/null
+++ b/docs/data_structures_and_algorithms/route_planner.md
@@ -0,0 +1,50 @@
+---
+sidebar_label: 'Route Planner'
+sidebar_position: 5
+---
+
+# Route Planner
+
+## Introduction
+
+This is a simple route planner that uses the A* algorithm to find the shortest path between two points on a grid. The grid is represented as a 2D array of 0s and 1s, where 0s represent open cells and 1s represent obstacles.
+
+## Path Finder
+
+This Python program implements a path finder that finds the shortest path between two nodes in a graph space. The graph space is represented by nodes and lines, where each node has an id, x and y coordinates, and each line connects two nodes.
+
+## Classes
+
+The program consists of several classes:
+
+1. `GraphNode`: Represents a node in the graph. It has an id, x and y coordinates, and a list of nodes it is connected to.
+
+2. `PriorityQueue`: A priority queue that stores nodes and their total distances. It allows adding or updating a node, and removing the node with the smallest total distance.
+
+3. `GraphSpace`: Represents a graph space that contains nodes and lines. It allows finding linked nodes for a given node.
+
+4. `PathFinder`: Finds the shortest path between two nodes in a graph space. It uses the A* search algorithm to find the shortest path.
+
+## Methods
+
+The main methods in the `PathFinder` class are:
+
+1. `calculate_distance(from_xy, to_xy)`: Calculates the Euclidean distance between two points.
+
+2. `initialize_goal(goal_id)` and `initialize_origin(origin_id)`: Initialize the goal and origin nodes respectively.
+
+3. `add_to_frontier(from_node, to_node)`: Adds a node to the frontier, or updates its total distance if it is already in the frontier.
+
+4. `get_route_ids()`: Returns the ids of the nodes in the shortest path.
+
+5. `find_shortest_path(origin_id, goal_id)`: Finds the shortest path between two nodes.
+
+## Usage
+
+The main function `shortest_path(map_object, start, goal)` takes a map object and the ids of the start and goal nodes, and returns the shortest path between the start and goal nodes. The map object should have `intersections` and `roads` attributes, where `intersections` is a dictionary of node ids to (x, y) coordinates, and `roads` is a list of lists, where each sublist contains the ids of nodes that a node is connected to.
+
+## Time and Space Complexity
+
+The time complexity of the `find_shortest_path` method is O(n log n), where n is the number of nodes in the graph. This is because it uses a priority queue to keep track of the nodes to visit next, and each insertion operation in a priority queue takes log n time.
+
+The space complexity is O(n), where n is the number of nodes in the graph. This is because it needs to store all nodes in the graph space, and in the worst case, all nodes could be added to the priority queue.
diff --git a/docs/data_structures_and_algorithms/show_me_the_data_structures.md b/docs/data_structures_and_algorithms/show_me_the_data_structures.md
new file mode 100644
index 0000000..247903c
--- /dev/null
+++ b/docs/data_structures_and_algorithms/show_me_the_data_structures.md
@@ -0,0 +1,51 @@
+---
+sidebar_label: 'Show Me the Data Structures'
+sidebar_position: 3
+---
+
+# Show me the data structures
+
+## Data Structure Questions
+
+For this project, you will answer the six questions laid out in the next sections. The questions cover a variety of topics related to the data structures you've learned in this course. You will write up a clean and efficient answer in Python, as well as a text explanation of the efficiency of your code and your design choices.
+
+## Problem 1: Least Recently Used Cache
+
+A Least Recently Used (LRU) Cache is a type of cache in which we remove the least recently used entry when the cache memory reaches its limit. For the current problem, consider both get and set operations as an use operation.
+
+Your job is to use an appropriate data structure to implement a LRU cache which has the following methods:
+
+- `set(key, value)`: set the value if the key is not present in the cache. If the cache is at capacity, remove the oldest entry.
+- `get(key)`: return the value if the key is present in the cache, otherwise return -1.
+
+Code in `problem_1.py` and explanation in `explanation_problem_1.md`
+
+## Problem 2: File Recursion
+
+For this problem, the goal is to write code for finding all files under a directory (and all directories beneath it) that end with ".c"
+
+Code in `problem_2.py` and explanation in `explanation_problem_2.md`
+
+## Problem 3: Huffman Coding
+
+Huffman coding is a compression algorithm that can be used to compress lists of characters. The algorithm uses a binary tree to assign variable-length codes to each character. The more frequent the character, the shorter the code used to represent it. The binary tree is constructed in such a way that the code assigned to each character is the prefix of any other code assigned to any other character.
+
+Code in `problem_3.py` and explanation in `explanation_problem_3.md`
+
+## Problem 4: Active Directory
+
+In Windows Active Directory, a group can consist of user(s) and group(s) themselves. We can construct this hierarchy as such. Where User is represented by str representing their ids.
+
+Code in `problem_4.py` and explanation in `explanation_problem_4.md`
+
+## Problem 5: Blockchain
+
+A Blockchain is a sequential chain of records, similar to a linked list. Each block contains some information and how it is connected related to the other blocks in the chain. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data. For our blockchain, we will be using a SHA-256 hash, the Greenwich Mean Time when the block was created, and text strings as the data.
+
+Code in `problem_5.py` and explanation in `explanation_problem_5.md`
+
+## Problem 6: Union and Intersection of Two Linked Lists
+
+Your task for this problem is to fill out the union and intersection functions. The union of two sets A and B is the set of elements which are in A, in B, or in both A and B. The intersection of two sets A and B, denoted by A ∩ B, is the set of all objects that are members of both the sets A and B.
+
+Code in `problem_6.py` and explanation in `explanation_problem_6.md`
diff --git a/docs/data_structures_and_algorithms/unscramble_computer_science_problems.md b/docs/data_structures_and_algorithms/unscramble_computer_science_problems.md
new file mode 100644
index 0000000..94fa95c
--- /dev/null
+++ b/docs/data_structures_and_algorithms/unscramble_computer_science_problems.md
@@ -0,0 +1,206 @@
+---
+sidebar_label: 'Unscramble Computer Science Problems'
+sidebar_position: 2
+---
+
+# Investigating Texts and Calls
+
+## Project Overview
+
+In this project, you will complete five tasks based on a fabricated set of calls and texts exchanged during September 2016. You will use Python to analyze and answer questions about the texts and calls contained in the dataset. Lastly, you will perform run time analysis of your solution and determine its efficiency.
+
+## About the data
+
+The text and call data are provided in csv files.
+The text data `(text.csv)` has the following columns: sending telephone number (string), receiving telephone number (string), timestamp of text message (string).
+The call data `(call.csv)` has the following columns: calling telephone number (string), receiving telephone number (string), start timestamp of telephone call (string), duration of telephone call in seconds (string)
+
+All telephone numbers are 10 or 11 numerical digits long. Each telephone number starts with a code indicating the location and/or type of the telephone number. There are three different kinds of telephone numbers, each with a different format:
+
+- Fixed lines start with an area code enclosed in brackets. The area codes vary in length but always begin with 0. Example: "(022)40840621".
+- Mobile numbers have no parentheses, but have a space in the middle of the number to help readability. The mobile code of a mobile number is its first four digits and they always start with 7, 8 or 9. Example: "93412 66159".
+- Telemarketers' numbers have no parentheses or space, but start with the code 140. Example: "1402316533".
+
+## Task 0
+
+What is the first record of texts and what is the last record of calls?
+
+>Print messages:
+"First record of texts, `incoming number` texts `answering number` at time `time>`"
+"Last record of calls, `incoming number` calls `answering number` at time `time`, lasting `during` seconds"
+
+```python
+python Task0.py
+```
+
+Output:
+
+```python
+First record of texts, 97424 22395 texts 90365 06212 at time 01-09-2016 06:03:22
+Last record of calls, 98447 62998 calls (080)46304537 at time 30-09-2016 23:57:15, lasting 2151 seconds
+```
+
+## Task 1
+
+How many different telephone numbers are there in the records?
+
+>Print a message:
+"There are `count` different telephone numbers in the records."
+
+```python
+python Task1.py
+```
+
+Output:
+
+```python
+There are 570 different telephone numbers in the records.
+```
+
+## Task 2
+
+Which telephone number spent the longest time on the phone during the period? Don't forget that time spent answering a call is also time spent on the phone.
+
+>Print a message:
+"`telephone number` spent the longest time, `total time` seconds, on the phone during September 2016.".
+
+```python
+python Task2.py
+```
+
+Output:
+
+```python
+(080)33251027 spent the longest time, 90456 seconds, on the phone during September 2016.
+```
+
+## Task 3
+
+(080) is the area code for fixed line telephones in Bangalore. Fixed line numbers include parentheses, so Bangalore numbers have the form (080)xxxxxxx.
+
+Part A: Find all of the area codes and mobile prefixes called by people in Bangalore. In other words, the calls were initiated by "(080)" area code to the following area codes and mobile prefixes:
+
+- Fixed lines start with an area code enclosed in brackets. The area codes vary in length but always begin with 0.
+- Mobile numbers have no parentheses, but have a space in the middle of the number to help readability. The prefix of a mobile number is its first four digits, and they always start with 7, 8 or 9.
+- Telemarketers' numbers have no parentheses or space, but they start with the area code 140.
+
+>Print the answer as part of a message:
+"The numbers called by people in Bangalore have codes:"
+ `list of codes`
+The list of codes should be print out one per line in lexicographic order with no duplicates.
+
+Part B: What percentage of calls from fixed lines in Bangalore are made to fixed lines also in Bangalore? In other words, of all the calls made from a number starting with "(080)", what percentage of these calls were made to a number also starting with "(080)"?
+
+>Print the answer as a part of a message::
+"`percentage` percent of calls from fixed lines in Bangalore are calls
+to other fixed lines in Bangalore."
+The percentage should have 2 decimal digits
+
+```python
+Part A:
+The numbers called by people in Bangalore have codes:
+(022)
+(040)
+(04344)
+(044)
+(04546)
+(0471)
+(080)
+(0821)
+7406
+7795
+7813
+7829
+8151
+8152
+8301
+8431
+8714
+9008
+9019
+9035
+9036
+9241
+9242
+9341
+9342
+9343
+9400
+9448
+9449
+9526
+9656
+9738
+9740
+9741
+9742
+9844
+9845
+9900
+9961
+----------------------------------------
+Part B:
+24.81 percent of calls from fixed lines in Bangalore are calls to other fixed lines in Bangalore.
+```
+
+## Task 4
+
+The telephone company want to identify numbers that might be doing telephone marketing. Create a set of possible telemarketers: these are numbers that make outgoing calls but never send texts, receive texts or receive incoming calls.
+
+>Print a message:
+"These numbers could be telemarketers: "
+`list of numbers`
+The list of numbers should be print out one per line in lexicographic order with no duplicates.
+
+```python
+python Task4.py
+```
+
+Output:
+
+```python
+These numbers could be telemarketers:
+(022)37572285
+(022)65548497
+(022)68535788
+(022)69042431
+(040)30429041
+(044)22020822
+(0471)2171438
+(0471)6579079
+(080)20383942
+(080)25820765
+(080)31606520
+(080)40362016
+(080)60463379
+(080)60998034
+(080)62963633
+(080)64015211
+(080)69887826
+(0821)3257740
+1400481538
+1401747654
+1402316533
+1403072432
+1403579926
+1404073047
+1404368883
+1404787681
+1407539117
+1408371942
+1408409918
+1408672243
+1409421631
+1409668775
+1409994233
+74064 66270
+78291 94593
+87144 55014
+90351 90193
+92414 69419
+94495 03761
+97404 30456
+97407 84573
+97442 45192
+99617 25274
+```
diff --git a/projects/problems_vs_algorithms/README.md b/projects/problems_vs_algorithms/README.md
new file mode 100644
index 0000000..6d92303
--- /dev/null
+++ b/projects/problems_vs_algorithms/README.md
@@ -0,0 +1,71 @@
+# Problems vs. Algorithms
+
+## Data Structure Questions
+
+For this project, you will answer the seven questions laid out in the next sections. The questions cover a variety of topics related to the basic algorithms you've learned in this course. You will write up a clean and efficient answer in Python, as well as a text explanation of the efficiency of your code and your design choices.
+
+## Problem 1: Square Root of an Integer
+
+Find the square root of the integer without using any Python library. You have to find the floor value of the square root.
+
+For example if the given number is 16, then the answer would be 4.
+
+If the given number is 27, the answer would be 5 because sqrt(5) = 5.196 whose floor value is 5.
+
+The expected time complexity is O(log(n))
+
+Code in `problem_1.py` and explanation in `explanation_problem_1.md`
+
+## Problem 2: Search in a Rotated Sorted Array
+
+You are given a sorted array which is rotated at some random pivot point.
+
+Example: [0, 1, 2, 4, 5, 6, 7] might become [4, 5, 6, 7, 0, 1, 2]
+
+You are given a target value to search. If found in the array return its index, otherwise return -1.
+
+You can assume there are no duplicates in the array and your algorithm's runtime complexity must be in the order of O(log n).
+
+Example:
+
+Input: nums = [4, 5, 6, 7, 0, 1, 2], target = 0, Output: 4
+
+Code in `problem_2.py` and explanation in `explanation_problem_2.md`
+
+## Problem 3: Rearrange Array Digits
+
+Rearrange Array Elements so as to form two number such that their sum is maximum. Return these two numbers. You can assume that all array elements are in the range [0, 9]. The number of digits in both the numbers cannot differ by more than 1. You're not allowed to use any sorting function that Python provides and the expected time complexity is O(nlog(n)).
+
+For example, the input [1, 2, 3, 4, 5] will return 531, 42.
+
+Code in `problem_3.py` and explanation in `explanation_problem_3.md`
+
+## Problem 4: Sort 0, 1, 2
+
+Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal. You're not allowed to use any sorting function that Python provides.
+
+Note: O(n) does not necessarily mean single-traversal. For e.g. if you traverse the array twice, that would still be an O(n) solution but it will not count as single traversal.
+
+Code in `problem_4.py` and explanation in `explanation_problem_4.md`
+
+## Problem 5: Autocomplete with Tries
+
+We've learned about Tries earlier in this course, its time to implement one. Implement a trie with insert, search, and startsWith methods.
+
+Code in `problem_5.py` and explanation in `explanation_problem_5.md`
+
+## Problem 6: Unsorted Integer Array
+
+In this problem, we will look for smallest and largest integer from a list of unsorted integers. The code should run in O(n) time. Do not use Python's inbuilt functions to find min and max.
+
+Code in `problem_6.py` and explanation in `explanation_problem_6.md`
+
+## Problem 7: Request Routing in a Web Server with a Trie
+
+For this exercise we are going to implement an HTTPRouter like you would find in a typical web server using the Trie data structure we learned previously.
+
+There are many different implementations of HTTP Routers such as regular expressions or simple string matching, but the Trie is an excellent and very efficient data structure for this purpose.
+
+The purpose of an HTTP Router is to take a URL path like "/", "/about", or "/blog/2019-01-15/my-awesome-post" and figure out what content to return. In a dynamic web server, the content will often come from a block of code called a handler.
+
+Code in `problem_7.py` and explanation in `explanation_problem_7.md`
diff --git a/projects/problems_vs_algorithms/explanation_problem1.md b/projects/problems_vs_algorithms/explanation_problem1.md
new file mode 100644
index 0000000..2f4b7ed
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem1.md
@@ -0,0 +1,5 @@
+# Square Root of an Integer
+
+The sqrt function uses a binary search algorithm to find the square root of a number, which has a time complexity of O(log n), where n is the input number. This is because with each iteration, the binary search algorithm halves the search space.
+
+The space complexity of the sqrt function is O(1), which means it uses a constant amount of space. This is because the space used does not change with the size of the input number, it only uses a few integer variables to store the intermediate results.
diff --git a/projects/problems_vs_algorithms/explanation_problem2.md b/projects/problems_vs_algorithms/explanation_problem2.md
new file mode 100644
index 0000000..f6107fa
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem2.md
@@ -0,0 +1,9 @@
+# Rotated Array Search
+
+The rotated_array_search function uses a binary search algorithm, which has a time complexity of O(log n), where n is the size of the input list. This is because with each iteration, the binary search algorithm halves the search space.
+
+The space complexity of the rotated_array_search function is O(1), which means it uses a constant amount of space. This is because the space used does not change with the size of the input list, it only uses a few integer variables to store the intermediate results.
+
+The linear_search function has a time complexity of O(n), where n is the size of the input list. This is because in the worst-case scenario, it needs to iterate over each element in the list.
+
+The space complexity of the linear_search function is also O(1), as it only uses a couple of variables and does not depend on the size of the input list.
diff --git a/projects/problems_vs_algorithms/explanation_problem3.md b/projects/problems_vs_algorithms/explanation_problem3.md
new file mode 100644
index 0000000..5ae2a17
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem3.md
@@ -0,0 +1,5 @@
+# Rearrange Array Elements
+
+The rearrange_digits function has a time complexity of O(n log n), where n is the size of the input list. This is due to the use of the sorted function, which in Python uses a sorting algorithm called Timsort that has a worst-case time complexity of O(n log n). The subsequent for loop has a time complexity of O(n), but since O(n log n) is the dominant term, it's the one we use to express the overall time complexity.
+
+The space complexity of the rearrange_digits function is O(n), because the sorted function returns a new list that contains all of the elements from the input list. The rest of the function only uses a constant amount of space to store the two output numbers and the loop index and value, so the overall space complexity is determined by the space required for the sorted list.
diff --git a/projects/problems_vs_algorithms/explanation_problem4.md b/projects/problems_vs_algorithms/explanation_problem4.md
new file mode 100644
index 0000000..ae5f172
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem4.md
@@ -0,0 +1,5 @@
+# Sort 0, 1, 2
+
+The sort_012 function has a time complexity of O(n), where n is the size of the input list. This is because the function traverses the list once, performing a constant amount of work for each element.
+
+The space complexity of the sort_012 function is O(1), which means it uses a constant amount of space. This is because the space used does not change with the size of the input list, it only uses a few integer variables to store the intermediate results.
diff --git a/projects/problems_vs_algorithms/explanation_problem5.md b/projects/problems_vs_algorithms/explanation_problem5.md
new file mode 100644
index 0000000..c5705f4
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem5.md
@@ -0,0 +1,29 @@
+# Trie Data Structure
+
+## The `TrieNode` class has different time and space complexities for different operations
+
+1. `__init__` operation:
+ - Time complexity: O(1), as it simply initializes a new node with an empty dictionary and a couple of boolean/None values.
+ - Space complexity: O(1), as it uses a constant amount of space to store the initialized values.
+
+2. `insert` operation:
+ - Time complexity: O(1), as it simply adds a new entry to the dictionary.
+ - Space complexity: O(1), as it only creates a single new `TrieNode`.
+
+3. `suffixes` operation:
+ - Time complexity: O(n), where n is the total number of nodes in the subtree rooted at this node. This is because it needs to traverse all nodes in the subtree to find all suffixes.
+ - Space complexity: O(m), where m is the total number of complete words in the subtree. This is because it needs to store all complete words in the `suffixes` list. In the worst case, every node in the subtree is a complete word, so m could be as large as n.
+
+## The `Trie` class has different time and space complexities for different operations
+
+1. `insert` operation:
+ - Time complexity: O(m), where m is the length of the word being inserted. This is because we're simply iterating over the word and inserting each character into the trie.
+ - Space complexity: O(m). In the worst case, if the word doesn't share any prefix with the words already in the trie, we need to add m new nodes to the trie.
+
+2. `find` operation:
+ - Time complexity: O(m), where m is the length of the word being searched for. This is because we're simply iterating over the word and traversing the trie.
+ - Space complexity: O(1). We're not using any additional space that scales with the size of the input.
+
+3. `suffixes` operation:
+ - Time complexity: O(n), where n is the total number of characters in all words stored in the trie. This is because in the worst case, we might need to traverse the entire trie to find all suffixes.
+ - Space complexity: O(n). In the worst case, we might need to store all characters in the trie in the `suffixes` list.
diff --git a/projects/problems_vs_algorithms/explanation_problem6.md b/projects/problems_vs_algorithms/explanation_problem6.md
new file mode 100644
index 0000000..9e0991f
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem6.md
@@ -0,0 +1,5 @@
+# Get Min Max
+
+The get_min_max function has a time complexity of O(n), where n is the size of the input list. This is because the function traverses the list once, checking each value to see if it's the new minimum or maximum.
+
+The space complexity of the get_min_max function is O(1), which means it uses a constant amount of space. This is because the space used does not change with the size of the input list, it only uses two integer variables to store the minimum and maximum values.
diff --git a/projects/problems_vs_algorithms/explanation_problem7.md b/projects/problems_vs_algorithms/explanation_problem7.md
new file mode 100644
index 0000000..0a7cbdb
--- /dev/null
+++ b/projects/problems_vs_algorithms/explanation_problem7.md
@@ -0,0 +1,33 @@
+# Router Traversal and Lookup
+
+## The `RouteTrie` class has different time and space complexities for different operations
+
+1. `insert` operation:
+ - Time complexity: O(m), where m is the number of parts in the path. This is because we're simply iterating over the path and inserting each part into the trie.
+ - Space complexity: O(m). In the worst case, if the path doesn't share any prefix with the paths already in the trie, we need to add m new nodes to the trie.
+
+2. `find` operation:
+ - Time complexity: O(m), where m is the number of parts in the path being searched for. This is because we're simply iterating over the path and traversing the trie.
+ - Space complexity: O(1). We're not using any additional space that scales with the size of the input.
+
+3. `_split_path` operation:
+ - Time complexity: O(m), where m is the length of the path string. This is because we need to iterate over the string to split it into parts.
+ - Space complexity: O(m). The `split` function returns a new list that contains all of the parts of the path, so we need an amount of space proportional to the size of the path to store this list.
+
+## The `Router` class has different time and space complexities for different operations
+
+1. `__init__` operation:
+ - Time complexity: O(1), as it simply initializes a new `RouteTrie`.
+ - Space complexity: O(1), as it uses a constant amount of space to store the `RouteTrie`.
+
+2. `add_handler` operation:
+ - Time complexity: O(m), where m is the number of parts in the path. This is because it needs to split the path and insert it into the `RouteTrie`.
+ - Space complexity: O(m). In the worst case, if the path doesn't share any prefix with the paths already in the trie, we need to add m new nodes to the trie.
+
+3. `lookup` operation:
+ - Time complexity: O(m), where m is the number of parts in the path being searched for. This is because it needs to find the path in the `RouteTrie`.
+ - Space complexity: O(1). We're not using any additional space that scales with the size of the input.
+
+4. `split_path` operation:
+ - Time complexity: O(m), where m is the length of the path string. This is because we need to iterate over the string to split it into parts.
+ - Space complexity: O(m). The `split` function returns a new list that contains all of the parts of the path, so we need an amount of space proportional to the size of the path to store this list.
diff --git a/projects/problems_vs_algorithms/problem1.py b/projects/problems_vs_algorithms/problem1.py
new file mode 100644
index 0000000..bfe47a5
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem1.py
@@ -0,0 +1,46 @@
+def sqrt(number):
+ """
+ Calculate the floored square root of a number
+
+ Args:
+ number(int): Number to find the floored squared root
+ Returns:
+ int: Floored Square Root
+ """
+ if number < 0:
+ return None
+ if number == 0 or number == 1:
+ return number
+ start = 1
+ end = number
+ while start <= end:
+ middle = (start + end) // 2
+ if middle * middle == number:
+ return middle
+ elif middle * middle < number:
+ start = middle + 1
+ result = middle
+ else:
+ end = middle - 1
+ return result
+
+
+# Test Cases 1
+assert 3 == sqrt(9), "Test Case 1 Failed, expected 3"
+assert 4 == sqrt(16), "Test Case 3 Failed, expected 4"
+
+# Test Cases 2
+assert 0 == sqrt(0), "Test Case 2 Failed, expected 0"
+assert 1 == sqrt(1), "Test Case 4 Failed, expected 1"
+
+# Test Cases 3
+assert 5 == sqrt(27), "Test Case 5 Failed, expected 5"
+assert 5 == sqrt(30), "Test Case 6 Failed, expected 5"
+
+# Edge Cases 1
+assert 100 == sqrt(10003), "Test Case 7 Failed, expected 100"
+
+# Edge Cases 2
+assert None is sqrt(-1), "Test Case 8 Failed, expected None"
+
+print("All test cases passed!")
diff --git a/projects/problems_vs_algorithms/problem2.py b/projects/problems_vs_algorithms/problem2.py
new file mode 100644
index 0000000..ab30a92
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem2.py
@@ -0,0 +1,88 @@
+def rotated_array_search(input_list, number):
+ """
+ Find the index by searching in a rotated sorted array
+
+ Args:
+ input_list(array), number(int): Input array to search and the target
+
+ Returns:
+ int: Index or -1
+ """
+
+ def binary_search(start_index, end_index):
+ """Binary search in a rotated sorted array
+
+ Args:
+ start_index(int), end_index(int): Start and end index of the array
+
+ Returns:
+ int: Index or -1"""
+ while start_index <= end_index:
+ middle_index = (start_index + end_index) // 2
+ middle_value = input_list[middle_index]
+ if middle_value == number:
+ return middle_index
+ elif input_list[start_index] <= middle_value:
+ if input_list[start_index] <= number < middle_value:
+ end_index = middle_index - 1
+ else:
+ start_index = middle_index + 1
+ else:
+ if middle_value < number <= input_list[end_index]:
+ start_index = middle_index + 1
+ else:
+ end_index = middle_index - 1
+ return -1
+
+ start_index = 0
+ end_index = len(input_list) - 1
+
+ return binary_search(start_index, end_index)
+
+
+def linear_search(input_list, number):
+ """Linear search in a list
+
+ Args:
+ input_list(array), number(int): Input array to search and the target
+
+ Returns:
+ int: Index or -1
+ """
+ for index, element in enumerate(input_list):
+ if element == number:
+ return index
+ return -1
+
+
+def test_function(test_case):
+ input_list = test_case[0]
+ number = test_case[1]
+ if linear_search(
+ input_list,
+ number) == rotated_array_search(
+ input_list,
+ number):
+ print("Pass")
+ else:
+ print("Fail")
+
+
+# Test Cases 1
+test_function([[6, 7, 8, 9, 10, 1, 2, 3, 4], 6])
+test_function([[6, 7, 8, 9, 10, 1, 2, 3, 4], 1])
+
+# Test Cases 2
+test_function([[6, 7, 8, 1, 2, 3, 4], 8])
+test_function([[6, 7, 8, 1, 2, 3, 4], 1])
+
+# Test Cases 3
+test_function([[6, 7, 8, 1, 2, 3, 4], 10])
+
+# Edge Cases 1
+test_function([[], 10])
+
+# Edge Cases 2
+test_function([[1], 10])
+
+print("All test cases passed!")
diff --git a/projects/problems_vs_algorithms/problem3.py b/projects/problems_vs_algorithms/problem3.py
new file mode 100644
index 0000000..9346180
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem3.py
@@ -0,0 +1,47 @@
+def rearrange_digits(input_list):
+ """
+ Rearrange Array Elements so as to form two number such that their sum is maximum.
+
+ Args:
+ input_list(list): Input List
+ Returns:
+ (int),(int): Two maximum sums
+ """
+ if not input_list or len(input_list) < 2:
+ return [0, 0]
+ first_number = 0
+ second_number = 0
+ sorted_list = sorted(input_list, reverse=True)
+ for index, value in enumerate(sorted_list):
+ if index % 2 == 0:
+ first_number = first_number * 10 + value
+ else:
+ second_number = second_number * 10 + value
+ return [first_number, second_number]
+
+
+def test_function(test_case):
+ output = rearrange_digits(test_case[0])
+ solution = test_case[1]
+ if sum(output) == sum(solution):
+ print("Pass")
+ else:
+ print("Fail")
+
+
+# Test Cases 1
+test_function([[1, 2, 3, 4, 5], [542, 31]])
+
+# Test Cases 2
+test_function([[4, 6, 2, 5, 9, 8], [964, 852]])
+
+# Test Cases 3
+test_function([[0, 0], [0, 0]])
+
+# Edge Cases 1
+test_function([[], [0, 0]])
+
+# Edge Cases 2
+test_function([[1], [0, 0]])
+
+print("All test cases passed!")
diff --git a/projects/problems_vs_algorithms/problem4.py b/projects/problems_vs_algorithms/problem4.py
new file mode 100644
index 0000000..2a08614
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem4.py
@@ -0,0 +1,55 @@
+def sort_012(input_list):
+ """
+ Given an input array consisting on only 0, 1, and 2, sort the array in a single traversal.
+
+ Args:
+ input_list(list): List to be sorted
+ """
+ current_index = 0
+ start_index = 0
+ end_index = len(input_list) - 1
+ while current_index <= end_index:
+ if input_list[current_index] == 0:
+ input_list[start_index], input_list[current_index] = (
+ input_list[current_index],
+ input_list[start_index],
+ )
+ start_index += 1
+ current_index += 1
+ elif input_list[current_index] == 2:
+ input_list[end_index], input_list[current_index] = (
+ input_list[current_index],
+ input_list[end_index],
+ )
+ end_index -= 1
+ else:
+ current_index += 1
+ return input_list
+
+
+def test_function(test_case):
+ sorted_array = sort_012(test_case)
+ if sorted_array == sorted(test_case):
+ print("Pass")
+ else:
+ print("Fail")
+
+
+# Test Cases 1
+test_function([0, 0, 2, 2, 2, 1, 1, 1, 2, 0, 2])
+
+# Test Cases 2
+test_function([2, 1, 2, 0, 0, 2, 1, 0, 1, 0, 0, 2, 2,
+ 2, 1, 2, 0, 0, 0, 2, 1, 0, 2, 0, 0, 1])
+
+# Test Cases 3
+test_function([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2])
+
+# Edge Cases 1
+test_function([0])
+test_function([0, 1, 2])
+
+# Edge Cases 2
+test_function([])
+
+print("All test cases passed!")
diff --git a/projects/problems_vs_algorithms/problem5.ipynb b/projects/problems_vs_algorithms/problem5.ipynb
new file mode 100644
index 0000000..760da0b
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem5.ipynb
@@ -0,0 +1,171 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Building a Trie in Python\n",
+ "\n",
+ "Before we start let us reiterate the key components of a Trie or Prefix Tree. A trie is a tree-like data structure that stores a dynamic set of strings. Tries are commonly used to facilitate operations like predictive text or autocomplete features on mobile phones or web search.\n",
+ "\n",
+ "Before we move into the autocomplete function we need to create a working trie for storing strings. We will create two classes:\n",
+ "* A `Trie` class that contains the root node (empty string)\n",
+ "* A `TrieNode` class that exposes the general functionality of the Trie, like inserting a word or finding the node which represents a prefix.\n",
+ "\n",
+ "Give it a try by implementing the `TrieNode` and `Trie` classes below!"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Finding Suffixes\n",
+ "\n",
+ "Now that we have a functioning Trie, we need to add the ability to list suffixes to implement our autocomplete feature. To do that, we need to implement a new function on the `TrieNode` object that will return all complete word suffixes that exist below it in the trie. For example, if our Trie contains the words `[\"fun\", \"function\", \"factory\"]` and we ask for suffixes from the `f` node, we would expect to receive `[\"un\", \"unction\", \"actory\"]` back from `node.suffixes()`.\n",
+ "\n",
+ "Using the code you wrote for the `TrieNode` above, try to add the suffixes function below. (Hint: recurse down the trie, collecting suffixes as you go.)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class TrieNode:\n",
+ " def __init__(self):\n",
+ " ## Initialize this node in the Trie\n",
+ " self.children = {}\n",
+ " self.is_word = False\n",
+ " self.word = None\n",
+ " \n",
+ " def insert(self, char):\n",
+ " ## Add a child node in this Trie\n",
+ " self.children[char] = TrieNode()\n",
+ "\n",
+ " \n",
+ " def suffixes(self, suffix = ''):\n",
+ " ## Recursive function that collects the suffix for \n",
+ " ## all complete words below this point\n",
+ " suffixes = []\n",
+ " for char, node in self.children.items():\n",
+ " if node.is_word:\n",
+ " suffixes.append(suffix + char)\n",
+ " suffixes.extend(node.suffixes(suffix + char))\n",
+ " return suffixes\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "class Trie:\n",
+ " def __init__(self):\n",
+ " self.root = TrieNode()\n",
+ " \n",
+ " def insert(self, word):\n",
+ " current_node = self.root\n",
+ " for char in word:\n",
+ " if char not in current_node.children:\n",
+ " current_node.insert(char)\n",
+ " current_node = current_node.children[char]\n",
+ " current_node.is_word = True\n",
+ " current_node.word = word\n",
+ " \n",
+ " def find(self, word):\n",
+ " current_node = self.root\n",
+ " for char in word:\n",
+ " if char not in current_node.children:\n",
+ " return False\n",
+ " current_node = current_node.children[char]\n",
+ " return current_node\n",
+ " \n",
+ " def suffixes(self, prefix):\n",
+ " self.root.suffixes(prefix)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 24,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "MyTrie = Trie()\n",
+ "wordList = [\n",
+ " \"ant\", \"anthology\", \"antagonist\", \"antonym\", \n",
+ " \"fun\", \"function\", \"factory\", \n",
+ " \"trie\", \"trigger\", \"trigonometry\", \"tripod\"\n",
+ "]\n",
+ "for word in wordList:\n",
+ " MyTrie.insert(word)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.jupyter.widget-view+json": {
+ "model_id": "20607424c5014838998f513c47c6e0e0",
+ "version_major": 2,
+ "version_minor": 0
+ },
+ "text/plain": [
+ "interactive(children=(Text(value='', description='prefix'), Output()), _dom_classes=('widget-interact',))"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "from ipywidgets import widgets\n",
+ "from IPython.display import display\n",
+ "from ipywidgets import interact\n",
+ "\n",
+ "def f(prefix):\n",
+ " if prefix != '':\n",
+ " prefixNode = MyTrie.find(prefix)\n",
+ " if prefixNode:\n",
+ " print('\\n'.join(prefixNode.suffixes()))\n",
+ " else:\n",
+ " print(prefix + \" not found\")\n",
+ " else:\n",
+ " print('')\n",
+ "interact(f,prefix='');"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "ds1",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.10.13"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/projects/problems_vs_algorithms/problem6.py b/projects/problems_vs_algorithms/problem6.py
new file mode 100644
index 0000000..5731f3b
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem6.py
@@ -0,0 +1,43 @@
+import random
+
+
+def get_min_max(ints):
+ """
+ Return a tuple(min, max) out of list of unsorted integers.
+
+ Args:
+ ints(list): list of integers containing one or more integers
+ """
+ if not ints or len(ints) < 2:
+ return None
+ min_value = ints[0]
+ max_value = ints[0]
+ for value in ints:
+ if value < min_value:
+ min_value = value
+ if value > max_value:
+ max_value = value
+ return min_value, max_value
+
+
+# Example Test Case of Ten Integers
+
+l = [i for i in range(0, 10)] # a list containing 0 - 9
+random.shuffle(l)
+
+# Test Cases 1
+print("Pass" if ((0, 9) == get_min_max(l)) else "Fail")
+
+# Test Cases 2
+print("Pass" if ((0, 0) == get_min_max([0, 0])) else "Fail")
+
+# Test Cases 3
+print("Pass" if ((3, 7) == get_min_max([3, 7])) else "Fail")
+
+# Edge Cases 1
+print("Pass" if (None is get_min_max([])) else "Fail")
+
+# Edge Cases 2
+print("Pass" if (None is get_min_max(None)) else "Fail")
+
+print("All test cases passed!")
diff --git a/projects/problems_vs_algorithms/problem7.py b/projects/problems_vs_algorithms/problem7.py
new file mode 100644
index 0000000..f06a515
--- /dev/null
+++ b/projects/problems_vs_algorithms/problem7.py
@@ -0,0 +1,103 @@
+# A RouteTrie will store our routes and their associated handlers
+class RouteTrie:
+ def __init__(self, root_handler, invalid_handler):
+ # Initialize the trie with an root node and a handler, this is the root
+ # path or home page node
+ self.root = RouteTrieNode(root_handler)
+ self.invalid_handler = invalid_handler
+
+ def insert(self, path, handler):
+ # Similar to our previous example you will want to recursively add nodes
+ # Make sure you assign the handler to only the leaf (deepest) node of
+ # this path
+ current_node = self.root
+ for part in path:
+ if part not in current_node.children:
+ current_node.children[part] = RouteTrieNode()
+ current_node = current_node.children[part]
+ current_node.handler = handler
+
+ def find(self, path):
+ # Starting at the root, navigate the Trie to find a match for this path
+ # Return the handler for a match, or None for no match
+ path_parts = self._split_path(path)
+ current_node = self.root
+ for part in path_parts:
+ if part not in current_node.children:
+ return self.invalid_handler
+ current_node = current_node.children[part]
+ return current_node.handler
+
+ def _split_path(self, path):
+ # you need to split the path into parts for
+ # both the add_handler and loopup functions,
+ # so it should be placed in a function here
+ path = path.strip("/")
+ return path.split("/") if path else []
+
+
+# A RouteTrieNode will be similar to our autocomplete TrieNode... with one
+# additional element, a handler.
+class RouteTrieNode:
+ def __init__(self, handler=None):
+ # Initialize the node with children as before, plus a handler
+ self.children = {}
+ self.handler = handler
+
+
+# The Router class will wrap the Trie and handle
+class Router:
+ def __init__(self, root_handler, invalid_handler):
+ # Create a new RouteTrie for holding our routes
+ # You could also add a handler for 404 page not found responses as
+ # well!
+ self.root = RouteTrie(root_handler, invalid_handler)
+
+ def add_handler(self, path, handler):
+ # Add a handler for a path
+ # You will need to split the path and pass the pass parts
+ # as a list to the RouteTrie
+ self.root.insert(self.split_path(path), handler)
+
+ def lookup(self, path):
+ # lookup path (by parts) and return the associated handler
+ # you can return None if it's not found or
+ # return the "not found" handler if you added one
+ # bonus points if a path works with and without a trailing slash
+ # e.g. /about and /about/ both return the /about handler
+ return self.root.find(path)
+
+ def split_path(self, path):
+ # you need to split the path into parts for
+ # both the add_handler and loopup functions,
+ # so it should be placed in a function here
+ return self.root._split_path(path)
+
+
+# create the router and add a route
+router = Router(
+ root_handler="root handler", invalid_handler="not found handler"
+) # remove the 'not found handler' if you did not implement this
+router.add_handler(path="/home/about", handler="about handler") # add a route
+
+# Test Cases 1
+print(router.lookup("/")) # should print 'root handler'
+
+# Test Cases 2
+print(
+ router.lookup("/home")
+) # should print 'not found handler' or None if you did not implement one
+
+# Test Cases 3
+print(router.lookup("/home/about")) # should print 'about handler'
+
+# Edge Cases 1
+# should print 'about handler' or None if you did not handle trailing slashes
+print(router.lookup("/home/about/"))
+
+# Edge Cases 2
+print(
+ router.lookup("/home/about/me")
+) # should print 'not found handler' or None if you did not implement one
+
+print("All test cases passed!")
diff --git a/projects/route_planner/README.md b/projects/route_planner/README.md
new file mode 100644
index 0000000..5b1a642
--- /dev/null
+++ b/projects/route_planner/README.md
@@ -0,0 +1,45 @@
+# Route Planner
+
+## Introduction
+
+This is a simple route planner that uses the A* algorithm to find the shortest path between two points on a grid. The grid is represented as a 2D array of 0s and 1s, where 0s represent open cells and 1s represent obstacles.
+
+## Path Finder
+
+This Python program implements a path finder that finds the shortest path between two nodes in a graph space. The graph space is represented by nodes and lines, where each node has an id, x and y coordinates, and each line connects two nodes.
+
+## Classes
+
+The program consists of several classes:
+
+1. `GraphNode`: Represents a node in the graph. It has an id, x and y coordinates, and a list of nodes it is connected to.
+
+2. `PriorityQueue`: A priority queue that stores nodes and their total distances. It allows adding or updating a node, and removing the node with the smallest total distance.
+
+3. `GraphSpace`: Represents a graph space that contains nodes and lines. It allows finding linked nodes for a given node.
+
+4. `PathFinder`: Finds the shortest path between two nodes in a graph space. It uses the A* search algorithm to find the shortest path.
+
+## Methods
+
+The main methods in the `PathFinder` class are:
+
+1. `calculate_distance(from_xy, to_xy)`: Calculates the Euclidean distance between two points.
+
+2. `initialize_goal(goal_id)` and `initialize_origin(origin_id)`: Initialize the goal and origin nodes respectively.
+
+3. `add_to_frontier(from_node, to_node)`: Adds a node to the frontier, or updates its total distance if it is already in the frontier.
+
+4. `get_route_ids()`: Returns the ids of the nodes in the shortest path.
+
+5. `find_shortest_path(origin_id, goal_id)`: Finds the shortest path between two nodes.
+
+## Usage
+
+The main function `shortest_path(map_object, start, goal)` takes a map object and the ids of the start and goal nodes, and returns the shortest path between the start and goal nodes. The map object should have `intersections` and `roads` attributes, where `intersections` is a dictionary of node ids to (x, y) coordinates, and `roads` is a list of lists, where each sublist contains the ids of nodes that a node is connected to.
+
+## Time and Space Complexity
+
+The time complexity of the `find_shortest_path` method is O(n log n), where n is the number of nodes in the graph. This is because it uses a priority queue to keep track of the nodes to visit next, and each insertion operation in a priority queue takes log n time.
+
+The space complexity is O(n), where n is the number of nodes in the graph. This is because it needs to store all nodes in the graph space, and in the worst case, all nodes could be added to the priority queue.
diff --git a/projects/route_planner/helpers.py b/projects/route_planner/helpers.py
new file mode 100644
index 0000000..8d6996d
--- /dev/null
+++ b/projects/route_planner/helpers.py
@@ -0,0 +1,102 @@
+import pickle
+import random
+
+import networkx as nx
+from plotly.graph_objs import *
+from plotly.offline import init_notebook_mode, iplot, plot
+
+init_notebook_mode(connected=True)
+
+
+class Map:
+ def __init__(self, G):
+ self._graph = G
+ self.intersections = nx.get_node_attributes(G, "pos")
+ self.roads = [list(G[node]) for node in G.nodes()]
+
+ def save(self, filename):
+ with open(filename, "wb") as f:
+ pickle.dump(self._graph, f)
+
+
+def load_map(name):
+ with open(name, "rb") as f:
+ G = pickle.load(f)
+ return Map(G)
+
+
+def show_map(M, start=None, goal=None, path=None):
+ G = M._graph
+ pos = nx.get_node_attributes(G, "pos")
+ edge_trace = Scatter(
+ x=[],
+ y=[],
+ line=Line(
+ width=0.5,
+ color="#888"),
+ hoverinfo="none",
+ mode="lines")
+
+ for edge in G.edges():
+ x0, y0 = G.node[edge[0]]["pos"]
+ x1, y1 = G.node[edge[1]]["pos"]
+ edge_trace["x"] += [x0, x1, None]
+ edge_trace["y"] += [y0, y1, None]
+
+ node_trace = Scatter(
+ x=[],
+ y=[],
+ text=[],
+ mode="markers",
+ hoverinfo="text",
+ marker=Marker(
+ showscale=False,
+ # colorscale options
+ # 'Greys' | 'Greens' | 'Bluered' | 'Hot' | 'Picnic' | 'Portland' |
+ # Jet' | 'RdBu' | 'Blackbody' | 'Earth' | 'Electric' | 'YIOrRd' |
+ # 'YIGnBu'
+ colorscale="Hot",
+ reversescale=True,
+ color=[],
+ size=10,
+ colorbar=dict(
+ thickness=15,
+ title="Node Connections",
+ xanchor="left",
+ titleside="right",
+ ),
+ line=dict(width=2),
+ ),
+ )
+ for node in G.nodes():
+ x, y = G.node[node]["pos"]
+ node_trace["x"].append(x)
+ node_trace["y"].append(y)
+
+ for node, adjacencies in enumerate(G.adjacency_list()):
+ color = 0
+ if path and node in path:
+ color = 2
+ if node == start:
+ color = 3
+ elif node == goal:
+ color = 1
+ # node_trace['marker']['color'].append(len(adjacencies))
+ node_trace["marker"]["color"].append(color)
+ node_info = "Intersection " + str(node)
+ node_trace["text"].append(node_info)
+
+ fig = Figure(
+ data=Data([edge_trace, node_trace]),
+ layout=Layout(
+ title=" Network graph made with Python",
+ titlefont=dict(size=16),
+ showlegend=False,
+ hovermode="closest",
+ margin=dict(b=20, l=5, r=5, t=40),
+ xaxis=XAxis(showgrid=False, zeroline=False, showticklabels=False),
+ yaxis=YAxis(showgrid=False, zeroline=False, showticklabels=False),
+ ),
+ )
+
+ iplot(fig)
diff --git a/projects/route_planner/map-10.pickle b/projects/route_planner/map-10.pickle
new file mode 100644
index 0000000..0d817ec
Binary files /dev/null and b/projects/route_planner/map-10.pickle differ
diff --git a/projects/route_planner/map-40.pickle b/projects/route_planner/map-40.pickle
new file mode 100644
index 0000000..b44e1b2
Binary files /dev/null and b/projects/route_planner/map-40.pickle differ
diff --git a/projects/route_planner/project_notebook.ipynb b/projects/route_planner/project_notebook.ipynb
new file mode 100644
index 0000000..1336243
--- /dev/null
+++ b/projects/route_planner/project_notebook.ipynb
@@ -0,0 +1,2463 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {
+ "collapsed": true
+ },
+ "source": [
+ "# Implementing a Route Planner\n",
+ "In this project you will use A\\* search to implement a \"Google-maps\" style route planning algorithm."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 18,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The autoreload extension is already loaded. To reload it, use:\n",
+ " %reload_ext autoreload\n"
+ ]
+ }
+ ],
+ "source": [
+ "# Run this cell first!\n",
+ "\n",
+ "from helpers import Map, load_map, show_map\n",
+ "from student_code import shortest_path\n",
+ "\n",
+ "%load_ext autoreload\n",
+ "%autoreload 2"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Map Basics"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "data": [
+ {
+ "hoverinfo": "none",
+ "line": {
+ "color": "#888",
+ "width": 0.5
+ },
+ "mode": "lines",
+ "type": "scatter",
+ "x": [
+ 0.7798606835438107,
+ 0.46247219371675075,
+ null,
+ 0.7798606835438107,
+ 0.8820353070895344,
+ null,
+ 0.7798606835438107,
+ 0.49016747075266875,
+ null,
+ 0.7647837074641568,
+ 0.8325506249953353,
+ null,
+ 0.7647837074641568,
+ 0.7076566826610747,
+ null,
+ 0.7647837074641568,
+ 0.7155217893995438,
+ null,
+ 0.7155217893995438,
+ 0.8325506249953353,
+ null,
+ 0.7155217893995438,
+ 0.7076566826610747,
+ null,
+ 0.7076566826610747,
+ 0.49016747075266875,
+ null,
+ 0.7076566826610747,
+ 0.8325506249953353,
+ null,
+ 0.49016747075266875,
+ 0.46247219371675075,
+ null,
+ 0.11622158839385677,
+ 0.1285377678230034,
+ null
+ ],
+ "y": [
+ 0.6922727646627362,
+ 0.6258061621642713,
+ null,
+ 0.6922727646627362,
+ 0.6791919587749445,
+ null,
+ 0.6922727646627362,
+ 0.5464878695400415,
+ null,
+ 0.3252670836724646,
+ 0.02310946309985762,
+ null,
+ 0.3252670836724646,
+ 0.3278339270610988,
+ null,
+ 0.3252670836724646,
+ 0.20026498027300055,
+ null,
+ 0.20026498027300055,
+ 0.02310946309985762,
+ null,
+ 0.20026498027300055,
+ 0.3278339270610988,
+ null,
+ 0.3278339270610988,
+ 0.5464878695400415,
+ null,
+ 0.3278339270610988,
+ 0.02310946309985762,
+ null,
+ 0.5464878695400415,
+ 0.6258061621642713,
+ null,
+ 0.11236327488812581,
+ 0.3285840695698353,
+ null
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "marker": {
+ "color": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ "colorbar": {
+ "thickness": 15,
+ "title": "Node Connections",
+ "titleside": "right",
+ "xanchor": "left"
+ },
+ "colorscale": "Hot",
+ "line": {
+ "width": 2
+ },
+ "reversescale": true,
+ "showscale": false,
+ "size": 10
+ },
+ "mode": "markers",
+ "text": [
+ "Intersection 0",
+ "Intersection 1",
+ "Intersection 2",
+ "Intersection 3",
+ "Intersection 4",
+ "Intersection 5",
+ "Intersection 6",
+ "Intersection 7",
+ "Intersection 8",
+ "Intersection 9"
+ ],
+ "type": "scatter",
+ "x": [
+ 0.7798606835438107,
+ 0.7647837074641568,
+ 0.7155217893995438,
+ 0.7076566826610747,
+ 0.8325506249953353,
+ 0.49016747075266875,
+ 0.8820353070895344,
+ 0.46247219371675075,
+ 0.11622158839385677,
+ 0.1285377678230034
+ ],
+ "y": [
+ 0.6922727646627362,
+ 0.3252670836724646,
+ 0.20026498027300055,
+ 0.3278339270610988,
+ 0.02310946309985762,
+ 0.5464878695400415,
+ 0.6791919587749445,
+ 0.6258061621642713,
+ 0.11236327488812581,
+ 0.3285840695698353
+ ]
+ }
+ ],
+ "layout": {
+ "hovermode": "closest",
+ "margin": {
+ "b": 20,
+ "l": 5,
+ "r": 5,
+ "t": 40
+ },
+ "showlegend": false,
+ "title": " Network graph made with Python",
+ "titlefont": {
+ "size": 16
+ },
+ "xaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ },
+ "yaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ }
+ }
+ },
+ "text/html": [
+ "
"
+ ],
+ "text/vnd.plotly.v1+html": [
+ "
"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "map_10 = load_map('map-10.pickle')\n",
+ "show_map(map_10)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "The map above (run the code cell if you don't see it) shows a disconnected network of 10 intersections. The two intersections on the left are connected to each other but they are not connected to the rest of the road network. On the graph above, the edge between 2 nodes(intersections) represents a literal straight road not just an abstract connection of 2 cities.\n",
+ "\n",
+ "These `Map` objects have two properties you will want to use to implement A\\* search: `intersections` and `roads`\n",
+ "\n",
+ "**Intersections**\n",
+ "\n",
+ "The `intersections` are represented as a dictionary. \n",
+ "\n",
+ "In this example, there are 10 intersections, each identified by an x,y coordinate. The coordinates are listed below. You can hover over each dot in the map above to see the intersection number."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{0: [0.7798606835438107, 0.6922727646627362],\n",
+ " 1: [0.7647837074641568, 0.3252670836724646],\n",
+ " 2: [0.7155217893995438, 0.20026498027300055],\n",
+ " 3: [0.7076566826610747, 0.3278339270610988],\n",
+ " 4: [0.8325506249953353, 0.02310946309985762],\n",
+ " 5: [0.49016747075266875, 0.5464878695400415],\n",
+ " 6: [0.8820353070895344, 0.6791919587749445],\n",
+ " 7: [0.46247219371675075, 0.6258061621642713],\n",
+ " 8: [0.11622158839385677, 0.11236327488812581],\n",
+ " 9: [0.1285377678230034, 0.3285840695698353]}"
+ ]
+ },
+ "execution_count": 3,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "map_10.intersections"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "**Roads**\n",
+ "\n",
+ "The `roads` property is a list where, if `i` is an intersection, `roads[i]` contains a list of the intersections that intersection `i` connects to."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[7, 6, 5]"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# this shows that intersection 0 connects to intersections 7, 6, and 5\n",
+ "map_10.roads[0] "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "[[7, 6, 5],\n",
+ " [4, 3, 2],\n",
+ " [4, 3, 1],\n",
+ " [5, 4, 1, 2],\n",
+ " [1, 2, 3],\n",
+ " [7, 0, 3],\n",
+ " [0],\n",
+ " [0, 5],\n",
+ " [9],\n",
+ " [8]]"
+ ]
+ },
+ "execution_count": 5,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "# This shows the full connectivity of the map\n",
+ "map_10.roads"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "data": [
+ {
+ "hoverinfo": "none",
+ "line": {
+ "color": "#888",
+ "width": 0.5
+ },
+ "mode": "lines",
+ "type": "scatter",
+ "x": [
+ 0.7801603911549438,
+ 0.740625863119245,
+ null,
+ 0.7801603911549438,
+ 0.583993110207876,
+ null,
+ 0.7801603911549438,
+ 0.640952694324525,
+ null,
+ 0.7801603911549438,
+ 0.6435799740880603,
+ null,
+ 0.7801603911549438,
+ 0.607698913404794,
+ null,
+ 0.5249831588690298,
+ 0.3073865727705063,
+ null,
+ 0.5249831588690298,
+ 0.640952694324525,
+ null,
+ 0.5249831588690298,
+ 0.7482655725962591,
+ null,
+ 0.5249831588690298,
+ 0.5572917679006295,
+ null,
+ 0.5249831588690298,
+ 0.6243437191127235,
+ null,
+ 0.5249831588690298,
+ 0.4238357358399233,
+ null,
+ 0.5249831588690298,
+ 0.719569201584275,
+ null,
+ 0.5249831588690298,
+ 0.607698913404794,
+ null,
+ 0.5249831588690298,
+ 0.4582523173083307,
+ null,
+ 0.5249831588690298,
+ 0.313999018186756,
+ null,
+ 0.8085335344099086,
+ 0.6315322816286787,
+ null,
+ 0.8085335344099086,
+ 0.740625863119245,
+ null,
+ 0.8085335344099086,
+ 0.8252497121120052,
+ null,
+ 0.8085335344099086,
+ 0.8860336256842246,
+ null,
+ 0.8085335344099086,
+ 0.8551947714242674,
+ null,
+ 0.8085335344099086,
+ 0.6824813442515916,
+ null,
+ 0.8085335344099086,
+ 0.7353838928272886,
+ null,
+ 0.2599134798656856,
+ 0.3073865727705063,
+ null,
+ 0.2599134798656856,
+ 0.4238357358399233,
+ null,
+ 0.2599134798656856,
+ 0.4582523173083307,
+ null,
+ 0.2599134798656856,
+ 0.25311953895059136,
+ null,
+ 0.2599134798656856,
+ 0.313999018186756,
+ null,
+ 0.7353838928272886,
+ 0.6315322816286787,
+ null,
+ 0.7353838928272886,
+ 0.740625863119245,
+ null,
+ 0.7353838928272886,
+ 0.8252497121120052,
+ null,
+ 0.7353838928272886,
+ 0.8860336256842246,
+ null,
+ 0.7353838928272886,
+ 0.8551947714242674,
+ null,
+ 0.7353838928272886,
+ 0.6824813442515916,
+ null,
+ 0.09088671576431506,
+ 0.17440205342790494,
+ null,
+ 0.09088671576431506,
+ 0.12939557977525573,
+ null,
+ 0.09088671576431506,
+ 0.04580558670435442,
+ null,
+ 0.313999018186756,
+ 0.3073865727705063,
+ null,
+ 0.313999018186756,
+ 0.4238357358399233,
+ null,
+ 0.313999018186756,
+ 0.4582523173083307,
+ null,
+ 0.313999018186756,
+ 0.25311953895059136,
+ null,
+ 0.6824813442515916,
+ 0.6315322816286787,
+ null,
+ 0.6824813442515916,
+ 0.740625863119245,
+ null,
+ 0.6824813442515916,
+ 0.47415009287034726,
+ null,
+ 0.6824813442515916,
+ 0.8252497121120052,
+ null,
+ 0.6824813442515916,
+ 0.8860336256842246,
+ null,
+ 0.6824813442515916,
+ 0.8551947714242674,
+ null,
+ 0.20128789391122526,
+ 0.1332965908314021,
+ null,
+ 0.20128789391122526,
+ 0.021423673670808885,
+ null,
+ 0.20128789391122526,
+ 0.04580558670435442,
+ null,
+ 0.8551947714242674,
+ 0.740625863119245,
+ null,
+ 0.8551947714242674,
+ 0.8252497121120052,
+ null,
+ 0.8551947714242674,
+ 0.8860336256842246,
+ null,
+ 0.7581736589784409,
+ 0.640952694324525,
+ null,
+ 0.7581736589784409,
+ 0.7482655725962591,
+ null,
+ 0.7581736589784409,
+ 0.5572917679006295,
+ null,
+ 0.7581736589784409,
+ 0.6243437191127235,
+ null,
+ 0.7581736589784409,
+ 0.9363713903322148,
+ null,
+ 0.7581736589784409,
+ 0.719569201584275,
+ null,
+ 0.7581736589784409,
+ 0.607698913404794,
+ null,
+ 0.7581736589784409,
+ 0.9112422509614865,
+ null,
+ 0.25311953895059136,
+ 0.3073865727705063,
+ null,
+ 0.25311953895059136,
+ 0.4238357358399233,
+ null,
+ 0.25311953895059136,
+ 0.4582523173083307,
+ null,
+ 0.4813859169876731,
+ 0.3345284735051981,
+ null,
+ 0.4813859169876731,
+ 0.583993110207876,
+ null,
+ 0.4813859169876731,
+ 0.640952694324525,
+ null,
+ 0.4813859169876731,
+ 0.6435799740880603,
+ null,
+ 0.4813859169876731,
+ 0.47415009287034726,
+ null,
+ 0.4813859169876731,
+ 0.607698913404794,
+ null,
+ 0.9112422509614865,
+ 0.7482655725962591,
+ null,
+ 0.9112422509614865,
+ 0.9363713903322148,
+ null,
+ 0.9112422509614865,
+ 0.719569201584275,
+ null,
+ 0.04580558670435442,
+ 0.1332965908314021,
+ null,
+ 0.04580558670435442,
+ 0.021423673670808885,
+ null,
+ 0.04580558670435442,
+ 0.12939557977525573,
+ null,
+ 0.4582523173083307,
+ 0.3073865727705063,
+ null,
+ 0.4582523173083307,
+ 0.640952694324525,
+ null,
+ 0.4582523173083307,
+ 0.5572917679006295,
+ null,
+ 0.4582523173083307,
+ 0.6243437191127235,
+ null,
+ 0.4582523173083307,
+ 0.4238357358399233,
+ null,
+ 0.4582523173083307,
+ 0.607698913404794,
+ null,
+ 0.12939557977525573,
+ 0.3345284735051981,
+ null,
+ 0.12939557977525573,
+ 0.021423673670808885,
+ null,
+ 0.607698913404794,
+ 0.583993110207876,
+ null,
+ 0.607698913404794,
+ 0.640952694324525,
+ null,
+ 0.607698913404794,
+ 0.6435799740880603,
+ null,
+ 0.607698913404794,
+ 0.5572917679006295,
+ null,
+ 0.607698913404794,
+ 0.6243437191127235,
+ null,
+ 0.607698913404794,
+ 0.719569201584275,
+ null,
+ 0.719569201584275,
+ 0.640952694324525,
+ null,
+ 0.719569201584275,
+ 0.7482655725962591,
+ null,
+ 0.719569201584275,
+ 0.5572917679006295,
+ null,
+ 0.719569201584275,
+ 0.6243437191127235,
+ null,
+ 0.719569201584275,
+ 0.9363713903322148,
+ null,
+ 0.8860336256842246,
+ 0.8252497121120052,
+ null,
+ 0.4238357358399233,
+ 0.3073865727705063,
+ null,
+ 0.4238357358399233,
+ 0.5572917679006295,
+ null,
+ 0.47415009287034726,
+ 0.6315322816286787,
+ null,
+ 0.47415009287034726,
+ 0.3345284735051981,
+ null,
+ 0.47415009287034726,
+ 0.34509802713919313,
+ null,
+ 0.26253385360950576,
+ 0.17972981733780147,
+ null,
+ 0.26253385360950576,
+ 0.17440205342790494,
+ null,
+ 0.26253385360950576,
+ 0.34509802713919313,
+ null,
+ 0.9363713903322148,
+ 0.7482655725962591,
+ null,
+ 0.6243437191127235,
+ 0.583993110207876,
+ null,
+ 0.6243437191127235,
+ 0.640952694324525,
+ null,
+ 0.6243437191127235,
+ 0.7482655725962591,
+ null,
+ 0.6243437191127235,
+ 0.5572917679006295,
+ null,
+ 0.5572917679006295,
+ 0.583993110207876,
+ null,
+ 0.5572917679006295,
+ 0.640952694324525,
+ null,
+ 0.5572917679006295,
+ 0.7482655725962591,
+ null,
+ 0.7482655725962591,
+ 0.640952694324525,
+ null,
+ 0.6435799740880603,
+ 0.6315322816286787,
+ null,
+ 0.6435799740880603,
+ 0.740625863119245,
+ null,
+ 0.6435799740880603,
+ 0.583993110207876,
+ null,
+ 0.6435799740880603,
+ 0.640952694324525,
+ null,
+ 0.34509802713919313,
+ 0.17972981733780147,
+ null,
+ 0.34509802713919313,
+ 0.3345284735051981,
+ null,
+ 0.34509802713919313,
+ 0.17440205342790494,
+ null,
+ 0.021423673670808885,
+ 0.1332965908314021,
+ null,
+ 0.640952694324525,
+ 0.583993110207876,
+ null,
+ 0.17440205342790494,
+ 0.17972981733780147,
+ null,
+ 0.740625863119245,
+ 0.6315322816286787,
+ null
+ ],
+ "y": [
+ 0.49474860768712914,
+ 0.68128520136847,
+ null,
+ 0.49474860768712914,
+ 0.42704536740474663,
+ null,
+ 0.49474860768712914,
+ 0.3232711412508066,
+ null,
+ 0.49474860768712914,
+ 0.5488515965193208,
+ null,
+ 0.49474860768712914,
+ 0.362322730884702,
+ null,
+ 0.14953665513987202,
+ 0.09186645974288632,
+ null,
+ 0.14953665513987202,
+ 0.3232711412508066,
+ null,
+ 0.14953665513987202,
+ 0.12631654071213483,
+ null,
+ 0.14953665513987202,
+ 0.2083567880838434,
+ null,
+ 0.14953665513987202,
+ 0.21665962402659544,
+ null,
+ 0.14953665513987202,
+ 0.026771817842421997,
+ null,
+ 0.14953665513987202,
+ 0.13985272363426526,
+ null,
+ 0.14953665513987202,
+ 0.362322730884702,
+ null,
+ 0.14953665513987202,
+ 0.1735506267461867,
+ null,
+ 0.14953665513987202,
+ 0.01876171413125327,
+ null,
+ 0.7696330846542071,
+ 0.7311657634689946,
+ null,
+ 0.7696330846542071,
+ 0.68128520136847,
+ null,
+ 0.7696330846542071,
+ 0.9532681441921305,
+ null,
+ 0.7696330846542071,
+ 0.891868301175821,
+ null,
+ 0.7696330846542071,
+ 0.9011339078096633,
+ null,
+ 0.7696330846542071,
+ 0.8016111783687677,
+ null,
+ 0.7696330846542071,
+ 0.8089961609345658,
+ null,
+ 0.14485659826020547,
+ 0.09186645974288632,
+ null,
+ 0.14485659826020547,
+ 0.026771817842421997,
+ null,
+ 0.14485659826020547,
+ 0.1735506267461867,
+ null,
+ 0.14485659826020547,
+ 0.10321622277398101,
+ null,
+ 0.14485659826020547,
+ 0.01876171413125327,
+ null,
+ 0.8089961609345658,
+ 0.7311657634689946,
+ null,
+ 0.8089961609345658,
+ 0.68128520136847,
+ null,
+ 0.8089961609345658,
+ 0.9532681441921305,
+ null,
+ 0.8089961609345658,
+ 0.891868301175821,
+ null,
+ 0.8089961609345658,
+ 0.9011339078096633,
+ null,
+ 0.8089961609345658,
+ 0.8016111783687677,
+ null,
+ 0.7222846879290787,
+ 0.9528527425842739,
+ null,
+ 0.7222846879290787,
+ 0.690016328140396,
+ null,
+ 0.7222846879290787,
+ 0.5886703168399895,
+ null,
+ 0.01876171413125327,
+ 0.09186645974288632,
+ null,
+ 0.01876171413125327,
+ 0.026771817842421997,
+ null,
+ 0.01876171413125327,
+ 0.1735506267461867,
+ null,
+ 0.01876171413125327,
+ 0.10321622277398101,
+ null,
+ 0.8016111783687677,
+ 0.7311657634689946,
+ null,
+ 0.8016111783687677,
+ 0.68128520136847,
+ null,
+ 0.8016111783687677,
+ 0.7353428557575755,
+ null,
+ 0.8016111783687677,
+ 0.9532681441921305,
+ null,
+ 0.8016111783687677,
+ 0.891868301175821,
+ null,
+ 0.8016111783687677,
+ 0.9011339078096633,
+ null,
+ 0.43196344222361227,
+ 0.3996510641743197,
+ null,
+ 0.43196344222361227,
+ 0.4666482714834408,
+ null,
+ 0.43196344222361227,
+ 0.5886703168399895,
+ null,
+ 0.9011339078096633,
+ 0.68128520136847,
+ null,
+ 0.9011339078096633,
+ 0.9532681441921305,
+ null,
+ 0.9011339078096633,
+ 0.891868301175821,
+ null,
+ 0.24026772497187532,
+ 0.3232711412508066,
+ null,
+ 0.24026772497187532,
+ 0.12631654071213483,
+ null,
+ 0.24026772497187532,
+ 0.2083567880838434,
+ null,
+ 0.24026772497187532,
+ 0.21665962402659544,
+ null,
+ 0.24026772497187532,
+ 0.13022993020357043,
+ null,
+ 0.24026772497187532,
+ 0.13985272363426526,
+ null,
+ 0.24026772497187532,
+ 0.362322730884702,
+ null,
+ 0.24026772497187532,
+ 0.1839028760606296,
+ null,
+ 0.10321622277398101,
+ 0.09186645974288632,
+ null,
+ 0.10321622277398101,
+ 0.026771817842421997,
+ null,
+ 0.10321622277398101,
+ 0.1735506267461867,
+ null,
+ 0.5006237737207431,
+ 0.6569436279895382,
+ null,
+ 0.5006237737207431,
+ 0.42704536740474663,
+ null,
+ 0.5006237737207431,
+ 0.3232711412508066,
+ null,
+ 0.5006237737207431,
+ 0.5488515965193208,
+ null,
+ 0.5006237737207431,
+ 0.7353428557575755,
+ null,
+ 0.5006237737207431,
+ 0.362322730884702,
+ null,
+ 0.1839028760606296,
+ 0.12631654071213483,
+ null,
+ 0.1839028760606296,
+ 0.13022993020357043,
+ null,
+ 0.1839028760606296,
+ 0.13985272363426526,
+ null,
+ 0.5886703168399895,
+ 0.3996510641743197,
+ null,
+ 0.5886703168399895,
+ 0.4666482714834408,
+ null,
+ 0.5886703168399895,
+ 0.690016328140396,
+ null,
+ 0.1735506267461867,
+ 0.09186645974288632,
+ null,
+ 0.1735506267461867,
+ 0.3232711412508066,
+ null,
+ 0.1735506267461867,
+ 0.2083567880838434,
+ null,
+ 0.1735506267461867,
+ 0.21665962402659544,
+ null,
+ 0.1735506267461867,
+ 0.026771817842421997,
+ null,
+ 0.1735506267461867,
+ 0.362322730884702,
+ null,
+ 0.690016328140396,
+ 0.6569436279895382,
+ null,
+ 0.690016328140396,
+ 0.4666482714834408,
+ null,
+ 0.362322730884702,
+ 0.42704536740474663,
+ null,
+ 0.362322730884702,
+ 0.3232711412508066,
+ null,
+ 0.362322730884702,
+ 0.5488515965193208,
+ null,
+ 0.362322730884702,
+ 0.2083567880838434,
+ null,
+ 0.362322730884702,
+ 0.21665962402659544,
+ null,
+ 0.362322730884702,
+ 0.13985272363426526,
+ null,
+ 0.13985272363426526,
+ 0.3232711412508066,
+ null,
+ 0.13985272363426526,
+ 0.12631654071213483,
+ null,
+ 0.13985272363426526,
+ 0.2083567880838434,
+ null,
+ 0.13985272363426526,
+ 0.21665962402659544,
+ null,
+ 0.13985272363426526,
+ 0.13022993020357043,
+ null,
+ 0.891868301175821,
+ 0.9532681441921305,
+ null,
+ 0.026771817842421997,
+ 0.09186645974288632,
+ null,
+ 0.026771817842421997,
+ 0.2083567880838434,
+ null,
+ 0.7353428557575755,
+ 0.7311657634689946,
+ null,
+ 0.7353428557575755,
+ 0.6569436279895382,
+ null,
+ 0.7353428557575755,
+ 0.8800306496459869,
+ null,
+ 0.9768234503830939,
+ 0.999395685828547,
+ null,
+ 0.9768234503830939,
+ 0.9528527425842739,
+ null,
+ 0.9768234503830939,
+ 0.8800306496459869,
+ null,
+ 0.13022993020357043,
+ 0.12631654071213483,
+ null,
+ 0.21665962402659544,
+ 0.42704536740474663,
+ null,
+ 0.21665962402659544,
+ 0.3232711412508066,
+ null,
+ 0.21665962402659544,
+ 0.12631654071213483,
+ null,
+ 0.21665962402659544,
+ 0.2083567880838434,
+ null,
+ 0.2083567880838434,
+ 0.42704536740474663,
+ null,
+ 0.2083567880838434,
+ 0.3232711412508066,
+ null,
+ 0.2083567880838434,
+ 0.12631654071213483,
+ null,
+ 0.12631654071213483,
+ 0.3232711412508066,
+ null,
+ 0.5488515965193208,
+ 0.7311657634689946,
+ null,
+ 0.5488515965193208,
+ 0.68128520136847,
+ null,
+ 0.5488515965193208,
+ 0.42704536740474663,
+ null,
+ 0.5488515965193208,
+ 0.3232711412508066,
+ null,
+ 0.8800306496459869,
+ 0.999395685828547,
+ null,
+ 0.8800306496459869,
+ 0.6569436279895382,
+ null,
+ 0.8800306496459869,
+ 0.9528527425842739,
+ null,
+ 0.4666482714834408,
+ 0.3996510641743197,
+ null,
+ 0.3232711412508066,
+ 0.42704536740474663,
+ null,
+ 0.9528527425842739,
+ 0.999395685828547,
+ null,
+ 0.68128520136847,
+ 0.7311657634689946,
+ null
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "marker": {
+ "color": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
+ ],
+ "colorbar": {
+ "thickness": 15,
+ "title": "Node Connections",
+ "titleside": "right",
+ "xanchor": "left"
+ },
+ "colorscale": "Hot",
+ "line": {
+ "width": 2
+ },
+ "reversescale": true,
+ "showscale": false,
+ "size": 10
+ },
+ "mode": "markers",
+ "text": [
+ "Intersection 0",
+ "Intersection 1",
+ "Intersection 2",
+ "Intersection 3",
+ "Intersection 4",
+ "Intersection 5",
+ "Intersection 6",
+ "Intersection 7",
+ "Intersection 8",
+ "Intersection 9",
+ "Intersection 10",
+ "Intersection 11",
+ "Intersection 12",
+ "Intersection 13",
+ "Intersection 14",
+ "Intersection 15",
+ "Intersection 16",
+ "Intersection 17",
+ "Intersection 18",
+ "Intersection 19",
+ "Intersection 20",
+ "Intersection 21",
+ "Intersection 22",
+ "Intersection 23",
+ "Intersection 24",
+ "Intersection 25",
+ "Intersection 26",
+ "Intersection 27",
+ "Intersection 28",
+ "Intersection 29",
+ "Intersection 30",
+ "Intersection 31",
+ "Intersection 32",
+ "Intersection 33",
+ "Intersection 34",
+ "Intersection 35",
+ "Intersection 36",
+ "Intersection 37",
+ "Intersection 38",
+ "Intersection 39"
+ ],
+ "type": "scatter",
+ "x": [
+ 0.7801603911549438,
+ 0.5249831588690298,
+ 0.8085335344099086,
+ 0.2599134798656856,
+ 0.7353838928272886,
+ 0.09088671576431506,
+ 0.313999018186756,
+ 0.6824813442515916,
+ 0.20128789391122526,
+ 0.8551947714242674,
+ 0.7581736589784409,
+ 0.25311953895059136,
+ 0.4813859169876731,
+ 0.9112422509614865,
+ 0.04580558670435442,
+ 0.4582523173083307,
+ 0.12939557977525573,
+ 0.607698913404794,
+ 0.719569201584275,
+ 0.8860336256842246,
+ 0.4238357358399233,
+ 0.8252497121120052,
+ 0.47415009287034726,
+ 0.26253385360950576,
+ 0.9363713903322148,
+ 0.6243437191127235,
+ 0.5572917679006295,
+ 0.7482655725962591,
+ 0.6435799740880603,
+ 0.34509802713919313,
+ 0.021423673670808885,
+ 0.640952694324525,
+ 0.17440205342790494,
+ 0.1332965908314021,
+ 0.583993110207876,
+ 0.3073865727705063,
+ 0.740625863119245,
+ 0.3345284735051981,
+ 0.17972981733780147,
+ 0.6315322816286787
+ ],
+ "y": [
+ 0.49474860768712914,
+ 0.14953665513987202,
+ 0.7696330846542071,
+ 0.14485659826020547,
+ 0.8089961609345658,
+ 0.7222846879290787,
+ 0.01876171413125327,
+ 0.8016111783687677,
+ 0.43196344222361227,
+ 0.9011339078096633,
+ 0.24026772497187532,
+ 0.10321622277398101,
+ 0.5006237737207431,
+ 0.1839028760606296,
+ 0.5886703168399895,
+ 0.1735506267461867,
+ 0.690016328140396,
+ 0.362322730884702,
+ 0.13985272363426526,
+ 0.891868301175821,
+ 0.026771817842421997,
+ 0.9532681441921305,
+ 0.7353428557575755,
+ 0.9768234503830939,
+ 0.13022993020357043,
+ 0.21665962402659544,
+ 0.2083567880838434,
+ 0.12631654071213483,
+ 0.5488515965193208,
+ 0.8800306496459869,
+ 0.4666482714834408,
+ 0.3232711412508066,
+ 0.9528527425842739,
+ 0.3996510641743197,
+ 0.42704536740474663,
+ 0.09186645974288632,
+ 0.68128520136847,
+ 0.6569436279895382,
+ 0.999395685828547,
+ 0.7311657634689946
+ ]
+ }
+ ],
+ "layout": {
+ "hovermode": "closest",
+ "margin": {
+ "b": 20,
+ "l": 5,
+ "r": 5,
+ "t": 40
+ },
+ "showlegend": false,
+ "title": " Network graph made with Python",
+ "titlefont": {
+ "size": 16
+ },
+ "xaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ },
+ "yaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ }
+ }
+ },
+ "text/html": [
+ "
"
+ ],
+ "text/vnd.plotly.v1+html": [
+ "
"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# map_40 is a bigger map than map_10\n",
+ "map_40 = load_map('map-40.pickle')\n",
+ "show_map(map_40)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Advanced Visualizations\n",
+ "\n",
+ "The map above shows a network of roads which spans 40 different intersections (labeled 0 through 39). \n",
+ "\n",
+ "The `show_map` function which generated this map also takes a few optional parameters which might be useful for visualizaing the output of the search algorithm you will write.\n",
+ "\n",
+ "* `start` - The \"start\" node for the search algorithm.\n",
+ "* `goal` - The \"goal\" node.\n",
+ "* `path` - An array of integers which corresponds to a valid sequence of intersection visits on the map."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "data": {
+ "application/vnd.plotly.v1+json": {
+ "data": [
+ {
+ "hoverinfo": "none",
+ "line": {
+ "color": "#888",
+ "width": 0.5
+ },
+ "mode": "lines",
+ "type": "scatter",
+ "x": [
+ 0.7801603911549438,
+ 0.740625863119245,
+ null,
+ 0.7801603911549438,
+ 0.583993110207876,
+ null,
+ 0.7801603911549438,
+ 0.640952694324525,
+ null,
+ 0.7801603911549438,
+ 0.6435799740880603,
+ null,
+ 0.7801603911549438,
+ 0.607698913404794,
+ null,
+ 0.5249831588690298,
+ 0.3073865727705063,
+ null,
+ 0.5249831588690298,
+ 0.640952694324525,
+ null,
+ 0.5249831588690298,
+ 0.7482655725962591,
+ null,
+ 0.5249831588690298,
+ 0.5572917679006295,
+ null,
+ 0.5249831588690298,
+ 0.6243437191127235,
+ null,
+ 0.5249831588690298,
+ 0.4238357358399233,
+ null,
+ 0.5249831588690298,
+ 0.719569201584275,
+ null,
+ 0.5249831588690298,
+ 0.607698913404794,
+ null,
+ 0.5249831588690298,
+ 0.4582523173083307,
+ null,
+ 0.5249831588690298,
+ 0.313999018186756,
+ null,
+ 0.8085335344099086,
+ 0.6315322816286787,
+ null,
+ 0.8085335344099086,
+ 0.740625863119245,
+ null,
+ 0.8085335344099086,
+ 0.8252497121120052,
+ null,
+ 0.8085335344099086,
+ 0.8860336256842246,
+ null,
+ 0.8085335344099086,
+ 0.8551947714242674,
+ null,
+ 0.8085335344099086,
+ 0.6824813442515916,
+ null,
+ 0.8085335344099086,
+ 0.7353838928272886,
+ null,
+ 0.2599134798656856,
+ 0.3073865727705063,
+ null,
+ 0.2599134798656856,
+ 0.4238357358399233,
+ null,
+ 0.2599134798656856,
+ 0.4582523173083307,
+ null,
+ 0.2599134798656856,
+ 0.25311953895059136,
+ null,
+ 0.2599134798656856,
+ 0.313999018186756,
+ null,
+ 0.7353838928272886,
+ 0.6315322816286787,
+ null,
+ 0.7353838928272886,
+ 0.740625863119245,
+ null,
+ 0.7353838928272886,
+ 0.8252497121120052,
+ null,
+ 0.7353838928272886,
+ 0.8860336256842246,
+ null,
+ 0.7353838928272886,
+ 0.8551947714242674,
+ null,
+ 0.7353838928272886,
+ 0.6824813442515916,
+ null,
+ 0.09088671576431506,
+ 0.17440205342790494,
+ null,
+ 0.09088671576431506,
+ 0.12939557977525573,
+ null,
+ 0.09088671576431506,
+ 0.04580558670435442,
+ null,
+ 0.313999018186756,
+ 0.3073865727705063,
+ null,
+ 0.313999018186756,
+ 0.4238357358399233,
+ null,
+ 0.313999018186756,
+ 0.4582523173083307,
+ null,
+ 0.313999018186756,
+ 0.25311953895059136,
+ null,
+ 0.6824813442515916,
+ 0.6315322816286787,
+ null,
+ 0.6824813442515916,
+ 0.740625863119245,
+ null,
+ 0.6824813442515916,
+ 0.47415009287034726,
+ null,
+ 0.6824813442515916,
+ 0.8252497121120052,
+ null,
+ 0.6824813442515916,
+ 0.8860336256842246,
+ null,
+ 0.6824813442515916,
+ 0.8551947714242674,
+ null,
+ 0.20128789391122526,
+ 0.1332965908314021,
+ null,
+ 0.20128789391122526,
+ 0.021423673670808885,
+ null,
+ 0.20128789391122526,
+ 0.04580558670435442,
+ null,
+ 0.8551947714242674,
+ 0.740625863119245,
+ null,
+ 0.8551947714242674,
+ 0.8252497121120052,
+ null,
+ 0.8551947714242674,
+ 0.8860336256842246,
+ null,
+ 0.7581736589784409,
+ 0.640952694324525,
+ null,
+ 0.7581736589784409,
+ 0.7482655725962591,
+ null,
+ 0.7581736589784409,
+ 0.5572917679006295,
+ null,
+ 0.7581736589784409,
+ 0.6243437191127235,
+ null,
+ 0.7581736589784409,
+ 0.9363713903322148,
+ null,
+ 0.7581736589784409,
+ 0.719569201584275,
+ null,
+ 0.7581736589784409,
+ 0.607698913404794,
+ null,
+ 0.7581736589784409,
+ 0.9112422509614865,
+ null,
+ 0.25311953895059136,
+ 0.3073865727705063,
+ null,
+ 0.25311953895059136,
+ 0.4238357358399233,
+ null,
+ 0.25311953895059136,
+ 0.4582523173083307,
+ null,
+ 0.4813859169876731,
+ 0.3345284735051981,
+ null,
+ 0.4813859169876731,
+ 0.583993110207876,
+ null,
+ 0.4813859169876731,
+ 0.640952694324525,
+ null,
+ 0.4813859169876731,
+ 0.6435799740880603,
+ null,
+ 0.4813859169876731,
+ 0.47415009287034726,
+ null,
+ 0.4813859169876731,
+ 0.607698913404794,
+ null,
+ 0.9112422509614865,
+ 0.7482655725962591,
+ null,
+ 0.9112422509614865,
+ 0.9363713903322148,
+ null,
+ 0.9112422509614865,
+ 0.719569201584275,
+ null,
+ 0.04580558670435442,
+ 0.1332965908314021,
+ null,
+ 0.04580558670435442,
+ 0.021423673670808885,
+ null,
+ 0.04580558670435442,
+ 0.12939557977525573,
+ null,
+ 0.4582523173083307,
+ 0.3073865727705063,
+ null,
+ 0.4582523173083307,
+ 0.640952694324525,
+ null,
+ 0.4582523173083307,
+ 0.5572917679006295,
+ null,
+ 0.4582523173083307,
+ 0.6243437191127235,
+ null,
+ 0.4582523173083307,
+ 0.4238357358399233,
+ null,
+ 0.4582523173083307,
+ 0.607698913404794,
+ null,
+ 0.12939557977525573,
+ 0.3345284735051981,
+ null,
+ 0.12939557977525573,
+ 0.021423673670808885,
+ null,
+ 0.607698913404794,
+ 0.583993110207876,
+ null,
+ 0.607698913404794,
+ 0.640952694324525,
+ null,
+ 0.607698913404794,
+ 0.6435799740880603,
+ null,
+ 0.607698913404794,
+ 0.5572917679006295,
+ null,
+ 0.607698913404794,
+ 0.6243437191127235,
+ null,
+ 0.607698913404794,
+ 0.719569201584275,
+ null,
+ 0.719569201584275,
+ 0.640952694324525,
+ null,
+ 0.719569201584275,
+ 0.7482655725962591,
+ null,
+ 0.719569201584275,
+ 0.5572917679006295,
+ null,
+ 0.719569201584275,
+ 0.6243437191127235,
+ null,
+ 0.719569201584275,
+ 0.9363713903322148,
+ null,
+ 0.8860336256842246,
+ 0.8252497121120052,
+ null,
+ 0.4238357358399233,
+ 0.3073865727705063,
+ null,
+ 0.4238357358399233,
+ 0.5572917679006295,
+ null,
+ 0.47415009287034726,
+ 0.6315322816286787,
+ null,
+ 0.47415009287034726,
+ 0.3345284735051981,
+ null,
+ 0.47415009287034726,
+ 0.34509802713919313,
+ null,
+ 0.26253385360950576,
+ 0.17972981733780147,
+ null,
+ 0.26253385360950576,
+ 0.17440205342790494,
+ null,
+ 0.26253385360950576,
+ 0.34509802713919313,
+ null,
+ 0.9363713903322148,
+ 0.7482655725962591,
+ null,
+ 0.6243437191127235,
+ 0.583993110207876,
+ null,
+ 0.6243437191127235,
+ 0.640952694324525,
+ null,
+ 0.6243437191127235,
+ 0.7482655725962591,
+ null,
+ 0.6243437191127235,
+ 0.5572917679006295,
+ null,
+ 0.5572917679006295,
+ 0.583993110207876,
+ null,
+ 0.5572917679006295,
+ 0.640952694324525,
+ null,
+ 0.5572917679006295,
+ 0.7482655725962591,
+ null,
+ 0.7482655725962591,
+ 0.640952694324525,
+ null,
+ 0.6435799740880603,
+ 0.6315322816286787,
+ null,
+ 0.6435799740880603,
+ 0.740625863119245,
+ null,
+ 0.6435799740880603,
+ 0.583993110207876,
+ null,
+ 0.6435799740880603,
+ 0.640952694324525,
+ null,
+ 0.34509802713919313,
+ 0.17972981733780147,
+ null,
+ 0.34509802713919313,
+ 0.3345284735051981,
+ null,
+ 0.34509802713919313,
+ 0.17440205342790494,
+ null,
+ 0.021423673670808885,
+ 0.1332965908314021,
+ null,
+ 0.640952694324525,
+ 0.583993110207876,
+ null,
+ 0.17440205342790494,
+ 0.17972981733780147,
+ null,
+ 0.740625863119245,
+ 0.6315322816286787,
+ null
+ ],
+ "y": [
+ 0.49474860768712914,
+ 0.68128520136847,
+ null,
+ 0.49474860768712914,
+ 0.42704536740474663,
+ null,
+ 0.49474860768712914,
+ 0.3232711412508066,
+ null,
+ 0.49474860768712914,
+ 0.5488515965193208,
+ null,
+ 0.49474860768712914,
+ 0.362322730884702,
+ null,
+ 0.14953665513987202,
+ 0.09186645974288632,
+ null,
+ 0.14953665513987202,
+ 0.3232711412508066,
+ null,
+ 0.14953665513987202,
+ 0.12631654071213483,
+ null,
+ 0.14953665513987202,
+ 0.2083567880838434,
+ null,
+ 0.14953665513987202,
+ 0.21665962402659544,
+ null,
+ 0.14953665513987202,
+ 0.026771817842421997,
+ null,
+ 0.14953665513987202,
+ 0.13985272363426526,
+ null,
+ 0.14953665513987202,
+ 0.362322730884702,
+ null,
+ 0.14953665513987202,
+ 0.1735506267461867,
+ null,
+ 0.14953665513987202,
+ 0.01876171413125327,
+ null,
+ 0.7696330846542071,
+ 0.7311657634689946,
+ null,
+ 0.7696330846542071,
+ 0.68128520136847,
+ null,
+ 0.7696330846542071,
+ 0.9532681441921305,
+ null,
+ 0.7696330846542071,
+ 0.891868301175821,
+ null,
+ 0.7696330846542071,
+ 0.9011339078096633,
+ null,
+ 0.7696330846542071,
+ 0.8016111783687677,
+ null,
+ 0.7696330846542071,
+ 0.8089961609345658,
+ null,
+ 0.14485659826020547,
+ 0.09186645974288632,
+ null,
+ 0.14485659826020547,
+ 0.026771817842421997,
+ null,
+ 0.14485659826020547,
+ 0.1735506267461867,
+ null,
+ 0.14485659826020547,
+ 0.10321622277398101,
+ null,
+ 0.14485659826020547,
+ 0.01876171413125327,
+ null,
+ 0.8089961609345658,
+ 0.7311657634689946,
+ null,
+ 0.8089961609345658,
+ 0.68128520136847,
+ null,
+ 0.8089961609345658,
+ 0.9532681441921305,
+ null,
+ 0.8089961609345658,
+ 0.891868301175821,
+ null,
+ 0.8089961609345658,
+ 0.9011339078096633,
+ null,
+ 0.8089961609345658,
+ 0.8016111783687677,
+ null,
+ 0.7222846879290787,
+ 0.9528527425842739,
+ null,
+ 0.7222846879290787,
+ 0.690016328140396,
+ null,
+ 0.7222846879290787,
+ 0.5886703168399895,
+ null,
+ 0.01876171413125327,
+ 0.09186645974288632,
+ null,
+ 0.01876171413125327,
+ 0.026771817842421997,
+ null,
+ 0.01876171413125327,
+ 0.1735506267461867,
+ null,
+ 0.01876171413125327,
+ 0.10321622277398101,
+ null,
+ 0.8016111783687677,
+ 0.7311657634689946,
+ null,
+ 0.8016111783687677,
+ 0.68128520136847,
+ null,
+ 0.8016111783687677,
+ 0.7353428557575755,
+ null,
+ 0.8016111783687677,
+ 0.9532681441921305,
+ null,
+ 0.8016111783687677,
+ 0.891868301175821,
+ null,
+ 0.8016111783687677,
+ 0.9011339078096633,
+ null,
+ 0.43196344222361227,
+ 0.3996510641743197,
+ null,
+ 0.43196344222361227,
+ 0.4666482714834408,
+ null,
+ 0.43196344222361227,
+ 0.5886703168399895,
+ null,
+ 0.9011339078096633,
+ 0.68128520136847,
+ null,
+ 0.9011339078096633,
+ 0.9532681441921305,
+ null,
+ 0.9011339078096633,
+ 0.891868301175821,
+ null,
+ 0.24026772497187532,
+ 0.3232711412508066,
+ null,
+ 0.24026772497187532,
+ 0.12631654071213483,
+ null,
+ 0.24026772497187532,
+ 0.2083567880838434,
+ null,
+ 0.24026772497187532,
+ 0.21665962402659544,
+ null,
+ 0.24026772497187532,
+ 0.13022993020357043,
+ null,
+ 0.24026772497187532,
+ 0.13985272363426526,
+ null,
+ 0.24026772497187532,
+ 0.362322730884702,
+ null,
+ 0.24026772497187532,
+ 0.1839028760606296,
+ null,
+ 0.10321622277398101,
+ 0.09186645974288632,
+ null,
+ 0.10321622277398101,
+ 0.026771817842421997,
+ null,
+ 0.10321622277398101,
+ 0.1735506267461867,
+ null,
+ 0.5006237737207431,
+ 0.6569436279895382,
+ null,
+ 0.5006237737207431,
+ 0.42704536740474663,
+ null,
+ 0.5006237737207431,
+ 0.3232711412508066,
+ null,
+ 0.5006237737207431,
+ 0.5488515965193208,
+ null,
+ 0.5006237737207431,
+ 0.7353428557575755,
+ null,
+ 0.5006237737207431,
+ 0.362322730884702,
+ null,
+ 0.1839028760606296,
+ 0.12631654071213483,
+ null,
+ 0.1839028760606296,
+ 0.13022993020357043,
+ null,
+ 0.1839028760606296,
+ 0.13985272363426526,
+ null,
+ 0.5886703168399895,
+ 0.3996510641743197,
+ null,
+ 0.5886703168399895,
+ 0.4666482714834408,
+ null,
+ 0.5886703168399895,
+ 0.690016328140396,
+ null,
+ 0.1735506267461867,
+ 0.09186645974288632,
+ null,
+ 0.1735506267461867,
+ 0.3232711412508066,
+ null,
+ 0.1735506267461867,
+ 0.2083567880838434,
+ null,
+ 0.1735506267461867,
+ 0.21665962402659544,
+ null,
+ 0.1735506267461867,
+ 0.026771817842421997,
+ null,
+ 0.1735506267461867,
+ 0.362322730884702,
+ null,
+ 0.690016328140396,
+ 0.6569436279895382,
+ null,
+ 0.690016328140396,
+ 0.4666482714834408,
+ null,
+ 0.362322730884702,
+ 0.42704536740474663,
+ null,
+ 0.362322730884702,
+ 0.3232711412508066,
+ null,
+ 0.362322730884702,
+ 0.5488515965193208,
+ null,
+ 0.362322730884702,
+ 0.2083567880838434,
+ null,
+ 0.362322730884702,
+ 0.21665962402659544,
+ null,
+ 0.362322730884702,
+ 0.13985272363426526,
+ null,
+ 0.13985272363426526,
+ 0.3232711412508066,
+ null,
+ 0.13985272363426526,
+ 0.12631654071213483,
+ null,
+ 0.13985272363426526,
+ 0.2083567880838434,
+ null,
+ 0.13985272363426526,
+ 0.21665962402659544,
+ null,
+ 0.13985272363426526,
+ 0.13022993020357043,
+ null,
+ 0.891868301175821,
+ 0.9532681441921305,
+ null,
+ 0.026771817842421997,
+ 0.09186645974288632,
+ null,
+ 0.026771817842421997,
+ 0.2083567880838434,
+ null,
+ 0.7353428557575755,
+ 0.7311657634689946,
+ null,
+ 0.7353428557575755,
+ 0.6569436279895382,
+ null,
+ 0.7353428557575755,
+ 0.8800306496459869,
+ null,
+ 0.9768234503830939,
+ 0.999395685828547,
+ null,
+ 0.9768234503830939,
+ 0.9528527425842739,
+ null,
+ 0.9768234503830939,
+ 0.8800306496459869,
+ null,
+ 0.13022993020357043,
+ 0.12631654071213483,
+ null,
+ 0.21665962402659544,
+ 0.42704536740474663,
+ null,
+ 0.21665962402659544,
+ 0.3232711412508066,
+ null,
+ 0.21665962402659544,
+ 0.12631654071213483,
+ null,
+ 0.21665962402659544,
+ 0.2083567880838434,
+ null,
+ 0.2083567880838434,
+ 0.42704536740474663,
+ null,
+ 0.2083567880838434,
+ 0.3232711412508066,
+ null,
+ 0.2083567880838434,
+ 0.12631654071213483,
+ null,
+ 0.12631654071213483,
+ 0.3232711412508066,
+ null,
+ 0.5488515965193208,
+ 0.7311657634689946,
+ null,
+ 0.5488515965193208,
+ 0.68128520136847,
+ null,
+ 0.5488515965193208,
+ 0.42704536740474663,
+ null,
+ 0.5488515965193208,
+ 0.3232711412508066,
+ null,
+ 0.8800306496459869,
+ 0.999395685828547,
+ null,
+ 0.8800306496459869,
+ 0.6569436279895382,
+ null,
+ 0.8800306496459869,
+ 0.9528527425842739,
+ null,
+ 0.4666482714834408,
+ 0.3996510641743197,
+ null,
+ 0.3232711412508066,
+ 0.42704536740474663,
+ null,
+ 0.9528527425842739,
+ 0.999395685828547,
+ null,
+ 0.68128520136847,
+ 0.7311657634689946,
+ null
+ ]
+ },
+ {
+ "hoverinfo": "text",
+ "marker": {
+ "color": [
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 3,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0,
+ 0,
+ 2,
+ 0,
+ 0
+ ],
+ "colorbar": {
+ "thickness": 15,
+ "title": "Node Connections",
+ "titleside": "right",
+ "xanchor": "left"
+ },
+ "colorscale": "Hot",
+ "line": {
+ "width": 2
+ },
+ "reversescale": true,
+ "showscale": false,
+ "size": 10
+ },
+ "mode": "markers",
+ "text": [
+ "Intersection 0",
+ "Intersection 1",
+ "Intersection 2",
+ "Intersection 3",
+ "Intersection 4",
+ "Intersection 5",
+ "Intersection 6",
+ "Intersection 7",
+ "Intersection 8",
+ "Intersection 9",
+ "Intersection 10",
+ "Intersection 11",
+ "Intersection 12",
+ "Intersection 13",
+ "Intersection 14",
+ "Intersection 15",
+ "Intersection 16",
+ "Intersection 17",
+ "Intersection 18",
+ "Intersection 19",
+ "Intersection 20",
+ "Intersection 21",
+ "Intersection 22",
+ "Intersection 23",
+ "Intersection 24",
+ "Intersection 25",
+ "Intersection 26",
+ "Intersection 27",
+ "Intersection 28",
+ "Intersection 29",
+ "Intersection 30",
+ "Intersection 31",
+ "Intersection 32",
+ "Intersection 33",
+ "Intersection 34",
+ "Intersection 35",
+ "Intersection 36",
+ "Intersection 37",
+ "Intersection 38",
+ "Intersection 39"
+ ],
+ "type": "scatter",
+ "x": [
+ 0.7801603911549438,
+ 0.5249831588690298,
+ 0.8085335344099086,
+ 0.2599134798656856,
+ 0.7353838928272886,
+ 0.09088671576431506,
+ 0.313999018186756,
+ 0.6824813442515916,
+ 0.20128789391122526,
+ 0.8551947714242674,
+ 0.7581736589784409,
+ 0.25311953895059136,
+ 0.4813859169876731,
+ 0.9112422509614865,
+ 0.04580558670435442,
+ 0.4582523173083307,
+ 0.12939557977525573,
+ 0.607698913404794,
+ 0.719569201584275,
+ 0.8860336256842246,
+ 0.4238357358399233,
+ 0.8252497121120052,
+ 0.47415009287034726,
+ 0.26253385360950576,
+ 0.9363713903322148,
+ 0.6243437191127235,
+ 0.5572917679006295,
+ 0.7482655725962591,
+ 0.6435799740880603,
+ 0.34509802713919313,
+ 0.021423673670808885,
+ 0.640952694324525,
+ 0.17440205342790494,
+ 0.1332965908314021,
+ 0.583993110207876,
+ 0.3073865727705063,
+ 0.740625863119245,
+ 0.3345284735051981,
+ 0.17972981733780147,
+ 0.6315322816286787
+ ],
+ "y": [
+ 0.49474860768712914,
+ 0.14953665513987202,
+ 0.7696330846542071,
+ 0.14485659826020547,
+ 0.8089961609345658,
+ 0.7222846879290787,
+ 0.01876171413125327,
+ 0.8016111783687677,
+ 0.43196344222361227,
+ 0.9011339078096633,
+ 0.24026772497187532,
+ 0.10321622277398101,
+ 0.5006237737207431,
+ 0.1839028760606296,
+ 0.5886703168399895,
+ 0.1735506267461867,
+ 0.690016328140396,
+ 0.362322730884702,
+ 0.13985272363426526,
+ 0.891868301175821,
+ 0.026771817842421997,
+ 0.9532681441921305,
+ 0.7353428557575755,
+ 0.9768234503830939,
+ 0.13022993020357043,
+ 0.21665962402659544,
+ 0.2083567880838434,
+ 0.12631654071213483,
+ 0.5488515965193208,
+ 0.8800306496459869,
+ 0.4666482714834408,
+ 0.3232711412508066,
+ 0.9528527425842739,
+ 0.3996510641743197,
+ 0.42704536740474663,
+ 0.09186645974288632,
+ 0.68128520136847,
+ 0.6569436279895382,
+ 0.999395685828547,
+ 0.7311657634689946
+ ]
+ }
+ ],
+ "layout": {
+ "hovermode": "closest",
+ "margin": {
+ "b": 20,
+ "l": 5,
+ "r": 5,
+ "t": 40
+ },
+ "showlegend": false,
+ "title": " Network graph made with Python",
+ "titlefont": {
+ "size": 16
+ },
+ "xaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ },
+ "yaxis": {
+ "showgrid": false,
+ "showticklabels": false,
+ "zeroline": false
+ }
+ }
+ },
+ "text/html": [
+ "
"
+ ],
+ "text/vnd.plotly.v1+html": [
+ "
"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "# run this code, note the effect of including the optional\n",
+ "# parameters in the function call.\n",
+ "show_map(map_40, start=5, goal=34, path=[5,16,37,12,34])"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Writing your algorithm\n",
+ "You should open the file `student_code.py` in another tab and work on your algorithm there. Do that by selecting `File > Open` and then selecting the appropriate file.\n",
+ "\n",
+ "The algorithm you write will be responsible for generating a `path` like the one passed into `show_map` above. In fact, when called with the same map, start and goal, as above you algorithm should produce the path `[5, 16, 37, 12, 34]`\n",
+ "\n",
+ "```bash\n",
+ "> shortest_path(map_40, 5, 34)\n",
+ "[5, 16, 37, 12, 34]\n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "great! Your code works for these inputs!\n"
+ ]
+ }
+ ],
+ "source": [
+ "path = shortest_path(map_40, 5, 34)\n",
+ "if path == [5, 16, 37, 12, 34]:\n",
+ " print(\"great! Your code works for these inputs!\")\n",
+ "else:\n",
+ " print(\"something is off, your code produced the following:\")\n",
+ " print(path)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "### Testing your Code\n",
+ "If the code below produces no errors, your algorithm is behaving correctly. You are almost ready to submit! Before you submit, go through the following submission checklist:\n",
+ "\n",
+ "**Submission Checklist**\n",
+ "\n",
+ "1. Does my code pass all tests?\n",
+ "2. Does my code implement `A*` search and not some other search algorithm?\n",
+ "3. Do I use an **admissible heuristic** to direct search efforts towards the goal?\n",
+ "4. Do I use data structures which avoid unnecessarily slow lookups?\n",
+ "\n",
+ "When you can answer \"yes\" to all of these questions, submit by pressing the Submit button in the lower right!"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {
+ "collapsed": true
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "All tests pass! Congratulations!\n"
+ ]
+ }
+ ],
+ "source": [
+ "from test import test\n",
+ "\n",
+ "test(shortest_path)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.8.18"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/projects/route_planner/requirements.txt b/projects/route_planner/requirements.txt
new file mode 100644
index 0000000..01d16bc
--- /dev/null
+++ b/projects/route_planner/requirements.txt
@@ -0,0 +1,2 @@
+networkx==1.11
+plotly==2.0.15
diff --git a/projects/route_planner/student_code.py b/projects/route_planner/student_code.py
new file mode 100644
index 0000000..4cf9ea8
--- /dev/null
+++ b/projects/route_planner/student_code.py
@@ -0,0 +1,230 @@
+import math
+
+
+class GraphNode:
+ """A node in a graph. It has an id, x and y coordinates, and a list of
+ nodes it is connected to.
+ """
+
+ def __init__(self, node_id, x, y):
+ self.id = node_id
+ self.x = x
+ self.y = y
+ self.reset()
+
+ def reset(self):
+ """Reset the node to its initial state."""
+ self.via = None
+ self.visited = False
+ self.distance_to_goal = float("inf")
+ self.distance_to_origin = float("inf")
+
+ @property
+ def total_distance_to_goal(self):
+ """The total distance to the goal. It is the sum of the distance to
+ the origin and the distance to the goal."""
+ return self.distance_to_origin + self.distance_to_goal
+
+
+class PriorityQueue:
+ """A priority queue that stores nodes and their total distances. It
+ allows adding or updating a node, and removing the node with the
+ smallest total distance.
+ """
+
+ def __init__(self):
+ self.nodes = {}
+
+ def add_or_update(self, node_id, total_distance):
+ """Add a node to the queue, or update its total distance if it is
+ already in the queue.
+
+ Args:
+ node_id: The id of the node.
+ total_distance: The total distance to the node.
+ """
+ self.nodes[node_id] = total_distance
+
+ def remove(self):
+ """Remove the node with the smallest total distance from the queue.
+
+ Returns:
+ The id of the node with the smallest total distance, or None if
+ the queue is empty.
+ """
+ if not self.nodes:
+ return None
+
+ node_id = min(self.nodes, key=self.nodes.get)
+ del self.nodes[node_id]
+ return node_id
+
+
+class GraphSpace:
+ """A graph space that contains nodes and lines. It allows finding
+ linked nodes for a given node.
+ """
+
+ def __init__(self, nodes, lines):
+ self.nodes = {
+ node_id: GraphNode(node_id, pos[0], pos[1])
+ for node_id, pos in nodes.items()
+ }
+ self.lines = {line_id: nodes for line_id, nodes in enumerate(lines)}
+
+ def find_linked_nodes(self, node_id):
+ """Find the ids of nodes that are linked to the given node.
+
+ Args:
+ node_id: The id of the node.
+
+ Returns:
+ A list of ids of nodes that are linked to the given node.
+ """
+ return self.lines.get(node_id, [])
+
+
+class PathFinder:
+ """A path finder that finds the shortest path between two nodes in a
+ graph space.
+ """
+
+ def __init__(self, space):
+ self.space = space
+ self.frontier = PriorityQueue()
+ self.goal = None
+ self.origin = None
+
+ def calculate_distance(self, from_xy, to_xy):
+ """Calculate the distance between two points.
+
+ Args:
+ from_xy: The x and y coordinates of the first point.
+ to_xy: The x and y coordinates of the second point.
+
+ Returns:
+ The distance between the two points.
+ """
+ diff_x = math.fabs(from_xy[0] - to_xy[0])
+ diff_y = math.fabs(from_xy[1] - to_xy[1])
+ return math.sqrt(diff_x**2 + diff_y**2)
+
+ def initialize_goal(self, goal_id):
+ """Initialize the goal node.
+
+ Args:
+ goal_id: The id of the goal node.
+ """
+ self.goal = self.space.nodes[goal_id]
+ self.goal.distance_to_goal = 0
+
+ def initialize_origin(self, origin_id):
+ """Initialize the origin node.
+
+ Args:
+ origin_id: The id of the origin node.
+ """
+ self.origin = self.space.nodes[origin_id]
+ self.origin.distance_to_origin = 0
+
+ def add_to_frontier(self, from_node, to_node):
+ """Add a node to the frontier, or update its total distance if it is
+ already in the frontier.
+
+ Args:
+ from_node: The node from which the edge to the node is.
+ to_node: The node to add to the frontier.
+ """
+ if to_node.visited:
+ return
+
+ distance_to_node = (
+ 0
+ if from_node is None
+ else (
+ self.calculate_distance(
+ (from_node.x, from_node.y), (to_node.x, to_node.y)
+ )
+ + from_node.distance_to_origin
+ )
+ )
+
+ if distance_to_node < to_node.distance_to_origin:
+ to_node.distance_to_origin = distance_to_node
+ to_node.via = from_node
+
+ if math.isinf(to_node.distance_to_goal):
+ to_node.distance_to_goal = (
+ self.calculate_distance(
+ (to_node.x, to_node.y), (self.goal.x, self.goal.y)
+ )
+ * 0.9
+ )
+
+ self.frontier.add_or_update(to_node.id, to_node.total_distance_to_goal)
+
+ def get_route_ids(self):
+ """Get the ids of the nodes in the shortest path.
+
+ Returns:
+ A list of the ids of the nodes in the shortest path.
+ """
+ route = []
+ node = self.goal
+ while node is not None:
+ route.append(node.id)
+ node = node.via
+ return list(reversed(route))
+
+ def find_shortest_path(self, origin_id, goal_id):
+ """Find the shortest path between two nodes.
+
+ Args:
+ origin_id: The id of the origin node.
+ goal_id: The id of the goal node.
+
+ Returns:
+ A list of the ids of the nodes in the shortest path, or None if
+ no path is found.
+ """
+ if origin_id not in self.space.nodes or goal_id not in self.space.nodes:
+ return None
+
+ if origin_id == goal_id:
+ return [origin_id]
+
+ self.initialize_origin(origin_id)
+ self.initialize_goal(goal_id)
+ self.add_to_frontier(None, self.origin)
+
+ return self._find_shortest_path()
+
+ def _find_shortest_path(self):
+ """Find the shortest path between two nodes.
+
+ Returns:
+ A list of the ids of the nodes in the shortest path, or None if
+ no path is found.
+ """
+ active_node_id = self.frontier.remove()
+
+ if active_node_id is None:
+ return None
+ if active_node_id == self.goal.id:
+ return self.get_route_ids()
+
+ active_node = self.space.nodes[active_node_id]
+ active_node.visited = True
+
+ for linked_id in self.space.find_linked_nodes(active_node_id):
+ linked_node = self.space.nodes.get(linked_id)
+ if linked_node is not None:
+ self.add_to_frontier(active_node, linked_node)
+
+ return self._find_shortest_path()
+
+
+def shortest_path(map_object, start, goal):
+ space = GraphSpace(map_object.intersections, map_object.roads)
+ finder = PathFinder(space)
+ return finder.find_shortest_path(start, goal)
diff --git a/projects/route_planner/test.py b/projects/route_planner/test.py
new file mode 100644
index 0000000..1442846
--- /dev/null
+++ b/projects/route_planner/test.py
@@ -0,0 +1,25 @@
+from helpers import load_map
+
+MAP_40_ANSWERS = [
+ (5, 34, [5, 16, 37, 12, 34]),
+ (5, 5, [5]),
+ (8, 24, [8, 14, 16, 37, 12, 17, 10, 24])
+]
+
+
+def test(shortest_path_function):
+ map_40 = load_map('map-40.pickle')
+ correct = 0
+ for start, goal, answer_path in MAP_40_ANSWERS:
+ path = shortest_path_function(map_40, start, goal)
+ if path == answer_path:
+ correct += 1
+ else:
+ print("For start:", start,
+ "Goal: ", goal,
+ "Your path:", path,
+ "Correct: ", answer_path)
+ if correct == len(MAP_40_ANSWERS):
+ print("All tests pass! Congratulations!")
+ else:
+ print("You passed", correct, "/", len(MAP_40_ANSWERS), "test cases")
diff --git a/projects/show_me_the_data_structures/README.md b/projects/show_me_the_data_structures/README.md
new file mode 100644
index 0000000..c6fe7af
--- /dev/null
+++ b/projects/show_me_the_data_structures/README.md
@@ -0,0 +1,46 @@
+# Show me the data structures
+
+## Data Structure Questions
+
+For this project, you will answer the six questions laid out in the next sections. The questions cover a variety of topics related to the data structures you've learned in this course. You will write up a clean and efficient answer in Python, as well as a text explanation of the efficiency of your code and your design choices.
+
+## Problem 1: Least Recently Used Cache
+
+A Least Recently Used (LRU) Cache is a type of cache in which we remove the least recently used entry when the cache memory reaches its limit. For the current problem, consider both get and set operations as an use operation.
+
+Your job is to use an appropriate data structure to implement a LRU cache which has the following methods:
+
+- `set(key, value)`: set the value if the key is not present in the cache. If the cache is at capacity, remove the oldest entry.
+- `get(key)`: return the value if the key is present in the cache, otherwise return -1.
+
+Code in `problem_1.py` and explanation in `explanation_problem_1.md`
+
+## Problem 2: File Recursion
+
+For this problem, the goal is to write code for finding all files under a directory (and all directories beneath it) that end with ".c"
+
+Code in `problem_2.py` and explanation in `explanation_problem_2.md`
+
+## Problem 3: Huffman Coding
+
+Huffman coding is a compression algorithm that can be used to compress lists of characters. The algorithm uses a binary tree to assign variable-length codes to each character. The more frequent the character, the shorter the code used to represent it. The binary tree is constructed in such a way that the code assigned to each character is the prefix of any other code assigned to any other character.
+
+Code in `problem_3.py` and explanation in `explanation_problem_3.md`
+
+## Problem 4: Active Directory
+
+In Windows Active Directory, a group can consist of user(s) and group(s) themselves. We can construct this hierarchy as such. Where User is represented by str representing their ids.
+
+Code in `problem_4.py` and explanation in `explanation_problem_4.md`
+
+## Problem 5: Blockchain
+
+A Blockchain is a sequential chain of records, similar to a linked list. Each block contains some information and how it is connected related to the other blocks in the chain. Each block contains a cryptographic hash of the previous block, a timestamp, and transaction data. For our blockchain, we will be using a SHA-256 hash, the Greenwich Mean Time when the block was created, and text strings as the data.
+
+Code in `problem_5.py` and explanation in `explanation_problem_5.md`
+
+## Problem 6: Union and Intersection of Two Linked Lists
+
+Your task for this problem is to fill out the union and intersection functions. The union of two sets A and B is the set of elements which are in A, in B, or in both A and B. The intersection of two sets A and B, denoted by A ∩ B, is the set of all objects that are members of both the sets A and B.
+
+Code in `problem_6.py` and explanation in `explanation_problem_6.md`
diff --git a/projects/show_me_the_data_structures/explanation_problem1.md b/projects/show_me_the_data_structures/explanation_problem1.md
new file mode 100644
index 0000000..a1d0e89
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem1.md
@@ -0,0 +1,10 @@
+# Least Recently Used (LRU) Cache
+
+Time Complexity:
+
+- `get(key)`: The time complexity is O(1) because it uses a dictionary (hashmap) to retrieve the value associated with a key.
+- `set(key, value)`: The time complexity is O(1) for setting a new key-value pair in the dictionary. However, when the capacity of the cache is exceeded, the oldest item (first item in the dictionary) is removed, which takes O(n) time because it involves creating a list of keys and accessing the first one.
+
+Space Complexity: The space complexity is O(n), where n is the capacity of the cache. This is because a dictionary is used to store the key-value pairs, and the size of the dictionary is at most the capacity of the cache.
+
+However, the current implementation does not fully satisfy the requirements of an LRU Cache. In an LRU Cache, the get operation should also update the "recently used" status of the key. The set operation, when the capacity is exceeded, should remove the least recently used item, not just the oldest item. To achieve this, a combination of a doubly linked list (to keep track of the order of usage) and a dictionary (for O(1) access) is typically used. This would still maintain the O(1) time complexity for get and set operations, and O(n) space complexity.
diff --git a/projects/show_me_the_data_structures/explanation_problem2.md b/projects/show_me_the_data_structures/explanation_problem2.md
new file mode 100644
index 0000000..ba63fcd
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem2.md
@@ -0,0 +1,5 @@
+# Finds all files with a given suffix in a specified directory and its subdirectories.
+
+Time Complexity: The time complexity of the function is O(n), where n is the total number of files and directories in the specified path. This is because the function uses os.walk(), which generates the file names in a directory tree by walking the tree either top-down or bottom-up. For each directory in the tree rooted at directory top (including top itself), it produces a 3-tuple (dirpath, dirnames, filenames). The function then checks each file name to see if it ends with the specified suffix.
+
+Space Complexity: The space complexity of the function is also O(n), where n is the total number of files and directories in the specified path. This is because os.walk() generates a list of 3-tuples, and the function creates a list of file paths. In the worst-case scenario (every file has the specified suffix), the list of file paths will have as many elements as there are files.
diff --git a/projects/show_me_the_data_structures/explanation_problem3.md b/projects/show_me_the_data_structures/explanation_problem3.md
new file mode 100644
index 0000000..185514f
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem3.md
@@ -0,0 +1,11 @@
+# Huffman Encoding and Decoding
+
+Time Complexity:
+
+- `huffman_encoding(data)`: The time complexity is O(n log n), where n is the number of unique characters in the data. This is because the function uses a priority queue (implemented as a heap) to build the Huffman tree. Inserting an element into a heap takes O(log n) time, and we do this for each unique character.
+- `huffman_decoding(data, tree)`: The time complexity is O(m), where m is the length of the encoded data. This is because we traverse the Huffman tree for each bit in the encoded data.
+
+Space Complexity:
+
+- `huffman_encoding(data)`: The space complexity is O(n), where n is the number of unique characters in the data. This is because we create a node for each unique character and store these nodes in a heap. In addition, we create a dictionary to store the Huffman codes.
+- `huffman_decoding(data, tree)`: The space complexity is O(n), where n is the number of unique characters in the data. This is because we need to store the Huffman tree. The decoded data also takes up space, but its size is equivalent to the original data, so it doesn't increase the space complexity.
diff --git a/projects/show_me_the_data_structures/explanation_problem4.md b/projects/show_me_the_data_structures/explanation_problem4.md
new file mode 100644
index 0000000..9bbc1dd
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem4.md
@@ -0,0 +1,5 @@
+# Group that represents a group of users
+
+Time Complexity: The time complexity of the is_user_in_group(user, group) function is O(n), where n is the total number of users and groups. This is because in the worst-case scenario, the function needs to check each user in each group and subgroup. The function uses recursion to traverse all groups and subgroups.
+
+Space Complexity: The space complexity of the is_user_in_group(user, group) function is also O(n), where n is the total number of groups. This is because in the worst-case scenario, the function will have to recurse through each group and subgroup, which will add to the call stack. The depth of the recursion equals the depth of the group hierarchy, which in the worst case can be as large as the number of groups.
diff --git a/projects/show_me_the_data_structures/explanation_problem5.md b/projects/show_me_the_data_structures/explanation_problem5.md
new file mode 100644
index 0000000..22e69e5
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem5.md
@@ -0,0 +1,11 @@
+# blockchain with the ability to append new blocks
+
+Time Complexity:
+
+- `Block.__init__(self, timestamp, data, previous_hash)`: The time complexity is O(1) because it only involves assigning values to instance variables and calculating a hash, which is a constant-time operation for fixed-size inputs.
+- `BlockChain.append(self, data)`: The time complexity is O(1) because it involves creating a new block and appending it to the list of blocks, both of which are constant-time operations.
+
+Space Complexity:
+
+- `Block.__init__(self, timestamp, data, previous_hash)`: The space complexity is O(1) because it only involves storing a fixed number of instance variables.
+- `BlockChain.append(self, data)`: The space complexity is O(n), where n is the number of blocks in the blockchain. This is because each block is stored in a list, and the size of the list grows linearly with the number of blocks.
diff --git a/projects/show_me_the_data_structures/explanation_problem6.md b/projects/show_me_the_data_structures/explanation_problem6.md
new file mode 100644
index 0000000..c44385c
--- /dev/null
+++ b/projects/show_me_the_data_structures/explanation_problem6.md
@@ -0,0 +1,14 @@
+# inked list and provides functions to find the union and intersection of two linked lists
+
+Time Complexity:
+
+- `LinkedList.append(value)`: The time complexity is O(n), where n is the number of nodes in the linked list. This is because in the worst-case scenario, the function needs to traverse the entire list to find the last node.
+- `LinkedList.size()`: The time complexity is O(n), where n is the number of nodes in the linked list. This is because the function needs to traverse the entire list to count the nodes.
+- `convert_to_set(linked_list)`: The time complexity is O(n), where n is the number of nodes in the linked list. This is because the function needs to traverse the entire list to add each node to the set.
+- `union(list_1, list_2)` and `intersection(list_1, list_2)`: The time complexity is O(n + m), where n and m are the number of nodes in list_1 and list_2, respectively. This is because the functions need to convert each list to a set and then iterate over the sets.
+
+Space Complexity:
+
+- `LinkedList.append(value) and LinkedList.size()`: The space complexity is O(1) because these functions only use a constant amount of space to store temporary variables.
+- `convert_to_set(linked_list)`: The space complexity is O(n), where n is the number of nodes in the linked list. This is because the function creates a set that contains all the nodes in the list.
+- `union(list_1, list_2)` and `intersection(list_1, list_2)`: The space complexity is O(n + m), where n and m are the number of nodes in list_1 and list_2, respectively. This is because the functions create a new linked list to store the result, and the size of the result can be up to n + m nodes.
diff --git a/projects/show_me_the_data_structures/problem1.py b/projects/show_me_the_data_structures/problem1.py
new file mode 100644
index 0000000..6b7eb06
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem1.py
@@ -0,0 +1,74 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 1
+Code by: KhoiVN
+Date: 04/01/2024
+"""
+
+
+class LRUCache(object):
+
+ def __init__(self, capacity):
+ # Initialize class variables
+ if not isinstance(capacity, int) or capacity < 0:
+ self.capacity = 0
+ else:
+ self.capacity = capacity
+ self.lru_cache = {}
+
+ def __repr__(self):
+ return f"LRUCache({self.lru_cache})"
+
+ def get(self, key):
+ return self.lru_cache.get(key, -1)
+
+ def set(self, key, value):
+ self.lru_cache[key] = value
+ if len(self.lru_cache) > self.capacity and self.capacity != 0:
+ self.lru_cache.pop(list(self.lru_cache.keys())[0])
+
+
+our_cache = LRUCache(5)
+
+our_cache.set(1, 1)
+our_cache.set(2, 2)
+our_cache.set(3, 3)
+our_cache.set(4, 4)
+
+print(our_cache)
+
+# Test Case 1
+print("Test Case 1", our_cache)
+assert our_cache.get(1) == 1
+assert our_cache.get(2) == 2
+assert our_cache.get(9) == -1
+
+our_cache.set(5, 5)
+our_cache.set(6, 6)
+
+# Test Case 2
+print("Test Case 2", our_cache)
+assert our_cache.get(4) == 4
+
+# Test Case 3
+print("Test Case 3", our_cache)
+assert our_cache.get(1) == -1
+assert our_cache.get(3) == 3
+assert our_cache.get(100) == -1
+
+# Edge Test Case 1
+our_cache = LRUCache(0)
+print("Edge Test Case 1.1", our_cache)
+assert our_cache.get(1) == -1
+
+our_cache = LRUCache(100)
+print("Edge Test Case 1.2", our_cache)
+assert our_cache.get(1) == -1
+
+# Edge Case 2
+our_cache = LRUCache(None)
+print("Edge Test Case 2", our_cache)
+assert our_cache.get(1) == -1
+
+print("All test cases pass")
diff --git a/projects/show_me_the_data_structures/problem2.py b/projects/show_me_the_data_structures/problem2.py
new file mode 100644
index 0000000..4ffafa1
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem2.py
@@ -0,0 +1,73 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 2
+Code by: KhoiVN
+Date: 04/01/2024
+"""
+
+import os
+
+
+def find_files(suffix, path):
+ """
+ Find all files beneath path with file name suffix.
+
+ Note that a path may contain further subdirectories
+ and those subdirectories may also contain further subdirectories.
+
+ There are no limit to the depth of the subdirectories can be.
+
+ Args:
+ suffix(str): suffix if the file name to be found
+ path(str): path of the file system
+
+ Returns:
+ suffix_path_list(list): a list of paths
+ """
+ suffix_path_list = []
+
+ if not os.path.isdir(path):
+ return suffix_path_list
+
+ list_walk_directory = list(os.walk(path))
+
+ for directory in list_walk_directory:
+ for file in directory[2]:
+ if file.endswith(suffix):
+ suffix_path_list.append(os.path.join(directory[0], file))
+ return suffix_path_list
+
+
+# Test Case 1
+test_case_1 = find_files(".c", "./testdir")
+assert sorted(test_case_1) == sorted(
+ [
+ "./testdir/subdir1/a.c",
+ "./testdir/subdir3/subsubdir1/b.c",
+ "./testdir/t1.c",
+ "./testdir/subdir5/a.c",
+ ]
+), f"Test Case 1 Failed, expected {test_case_1}"
+
+# Test Case 2
+test_case_2 = find_files(".c", "./testdir/subdir1")
+assert sorted(test_case_2) == sorted(
+ ["./testdir/subdir1/a.c"]
+), f"Test Case 2 Failed, expected {test_case_2}"
+
+# Test Case 3
+test_case_3 = find_files(".c", "./testdir/subdir3/subsubdir1")
+assert sorted(test_case_3) == sorted(
+ ["./testdir/subdir3/subsubdir1/b.c"]
+), f"Test Case 3 Failed, expected {test_case_3}"
+
+# Edge Case 1
+edge_case_1 = find_files(".", "./testdir/subdir5")
+assert sorted(edge_case_1) == [], f"Edge Case 1 Failed, expected {edge_case_1}"
+
+# Edge Case 2
+edge_case_2 = find_files("c", "./testdir/s")
+assert sorted(edge_case_2) == [], f"Edge Case 2 Failed, expected {edge_case_2}"
+
+print("All test cases passed!")
diff --git a/projects/show_me_the_data_structures/problem3.py b/projects/show_me_the_data_structures/problem3.py
new file mode 100644
index 0000000..cec3a82
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem3.py
@@ -0,0 +1,131 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 3
+Code by: KhoiVN
+Date: 04/01/2024
+"""
+
+import sys
+import heapq
+from collections import Counter
+
+
+class Node:
+ def __init__(self, value=None, freq=0, left=None, right=None):
+ self.value = value
+ self.freq = freq
+ self.left = left
+ self.right = right
+
+ def __lt__(self, other):
+ return self.freq < other.freq
+
+ def build_code(self, prefix="", code={}):
+ if self.value:
+ code[self.value] = prefix
+ if self.left:
+ self.left.build_code(prefix + "0", code)
+ if self.right:
+ self.right.build_code(prefix + "1", code)
+ return code
+
+ def encode_data(self, data):
+ return "".join([self.build_code()[char] for char in data])
+
+ def __repr__(self) -> str:
+ return f"Node({self.value}, {self.freq})"
+
+
+def huffman_encoding(data="AAAAAAABBBCCCCCCCDDEEEEEE"):
+ if not data or len(data) == 0:
+ return "", None
+ counter = Counter(data)
+ if len(counter) == 1:
+ return "0" * len(data), Node(None, len(data))
+ list_node = [Node(value, freq) for value, freq in counter.items()]
+ heapq.heapify(list_node)
+
+ while len(list_node) > 1:
+ left = heapq.heappop(list_node)
+ right = heapq.heappop(list_node)
+ parent = Node(None, left.freq + right.freq, left, right)
+ heapq.heappush(list_node, parent)
+
+ tree = list_node[0]
+ code = tree.encode_data(data)
+
+ return code, tree
+
+
+def huffman_decoding(data, tree):
+ result = ""
+ node = tree
+ for bit in data:
+ if bit == "0":
+ node = node.left
+ else:
+ node = node.right
+ if node.value:
+ result += node.value
+ node = tree
+ return result
+
+
+code, tree = huffman_encoding("AAAAAAABBBCCCCCCCDDEEEEEE")
+
+# Test Case 1
+assert (
+ code == "1010101010101000100100111111111111111000000010101010101"
+), f"Test Case 1 Failed, expected {code}"
+assert tree.value is None, f"Test Case 1 Failed, expected {tree.value}"
+
+
+result = huffman_decoding(code, tree)
+# Test Case 2
+assert result == "AAAAAAABBBCCCCCCCDDEEEEEE", f"Test Case 2 Failed, expected {result}"
+assert len(result) == 25, f"Test Case 2 Failed, expected {len(result)}"
+
+# Test Case 3
+assert huffman_encoding("") == (
+ "", None), "Test Case 3 Failed, expected ('', None)"
+assert huffman_decoding("", None) == "", "Test Case 3 Failed, expected ''"
+
+
+# Edge Case 1
+assert huffman_encoding(None) == (
+ "", None), "Edge Case 1 Failed, expected ('', None)"
+assert huffman_decoding("", None) == "", "Edge Case 1 Failed, expected ''"
+
+# Edge Case 2
+assert huffman_encoding("A" * 10)[0] == "0" * \
+ 10, "Edge Case 2 Failed, expected '0'*10"
+assert huffman_decoding("0" * 0, Node(None, 0)
+ ) == "", "Edge Case 2 Failed, expected ''"
+
+print("All test cases passed!")
+
+if __name__ == "__main__":
+ codes = {}
+
+ a_great_sentence = "The bird is the word"
+
+ print("The size of the data is: {}\n".format(
+ sys.getsizeof(a_great_sentence)))
+ print("The content of the data is: {}\n".format(a_great_sentence))
+
+ encoded_data, tree = huffman_encoding(a_great_sentence)
+
+ print(
+ "The size of the encoded data is: {}\n".format(
+ sys.getsizeof(int(encoded_data, base=2))
+ )
+ )
+ print("The content of the encoded data is: {}\n".format(encoded_data))
+
+ decoded_data = huffman_decoding(encoded_data, tree)
+
+ print(
+ "The size of the decoded data is: {}\n".format(
+ sys.getsizeof(decoded_data)))
+ print("The content of the encoded data is: {}\n".format(decoded_data))
diff --git a/projects/show_me_the_data_structures/problem4.py b/projects/show_me_the_data_structures/problem4.py
new file mode 100644
index 0000000..8dc4025
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem4.py
@@ -0,0 +1,80 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 4
+Code by: KhoiVN
+Date: 05/01/2024
+"""
+
+
+class Group(object):
+ def __init__(self, _name):
+ self.name = _name
+ self.groups = []
+ self.users = []
+
+ def add_group(self, group):
+ self.groups.append(group)
+
+ def add_user(self, user):
+ self.users.append(user)
+
+ def get_groups(self):
+ return self.groups
+
+ def get_users(self):
+ return self.users
+
+ def get_name(self):
+ return self.name
+
+
+parent = Group("parent")
+child = Group("child")
+sub_child = Group("subchild")
+
+sub_child_user = "sub_child_user"
+sub_child.add_user(sub_child_user)
+
+child.add_group(sub_child)
+parent.add_group(child)
+
+
+def is_user_in_group(user, group):
+ """
+ Return True if user is in the group, False otherwise.
+
+ Args:
+ user(str): user name/id
+ group(class:Group): group to check user membership against
+ """
+ if not isinstance(group, Group):
+ return False
+ if user in group.get_users():
+ return True
+ for sub_group in group.get_groups():
+ if is_user_in_group(user, sub_group):
+ return True
+ return False
+
+
+# Test Case 1
+assert is_user_in_group(sub_child_user, parent), "Test Case 1 Failed"
+assert is_user_in_group(sub_child_user, child), "Test Case 1 Failed"
+
+# Test Case 2
+assert is_user_in_group(None, parent) == False, "Test Case 2 Failed"
+assert is_user_in_group("", parent) == False, "Test Case 2 Failed"
+
+# Test Case 3
+assert is_user_in_group("sub_child_user", parent), "Test Case 3 Failed"
+assert is_user_in_group("sub_child_user", sub_child), "Test Case 3 Failed"
+
+# Edge Case 1
+assert is_user_in_group("sub_child_user", None) == False, "Edge Case 1 Failed"
+assert is_user_in_group("sub_child_user", "") == False, "Edge Case 1 Failed"
+
+# Edge Case 2
+assert is_user_in_group("sub_child_user", parent), "Edge Case 2 Failed"
+
+print("All test cases passed!")
diff --git a/projects/show_me_the_data_structures/problem5.py b/projects/show_me_the_data_structures/problem5.py
new file mode 100644
index 0000000..9bd2318
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem5.py
@@ -0,0 +1,115 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 5
+Code by: KhoiVN
+Date: 05/01/2024
+"""
+
+import hashlib
+import time
+
+
+class Block:
+
+ def __init__(self, timestamp, data, previous_hash):
+ self.timestamp = timestamp
+ self.data = data
+ self.previous_hash = previous_hash
+ self.hash = self.calc_hash()
+
+ def calc_hash(self):
+ sha = hashlib.sha256()
+ hash_str = self.data.encode("utf-8")
+ sha.update(hash_str)
+ return sha.hexdigest()
+
+ def __repr__(self):
+ return (
+ f"Block({self.timestamp}, {self.data}, {self.previous_hash}, {self.hash})"
+ )
+
+
+class BlockChain:
+ def __init__(self):
+ self.head = None
+ self.tail = None
+ self.block = []
+
+ def append(self, data):
+ if self.block:
+ previous_hash = self.block[-1].hash
+ else:
+ previous_hash = None
+
+ block = Block(time.time(), data, previous_hash)
+ self.block.append(block)
+
+ def __repr__(self):
+ return f"BlockChain({self.block})"
+
+
+# Add your own test cases: include at least three test cases
+# and two of them must include edge cases, such as null, empty or very
+# large values
+
+block_chain = BlockChain()
+block_chain.append("Algorithms")
+block_chain.append("Data Structures")
+block_chain.append("KhoiVN")
+
+# Test Case 1
+assert (
+ block_chain.block[0].data == "Algorithms"
+), f"Test Case 1 Failed, expected {block_chain.block[0].data}"
+assert (
+ block_chain.block[1].data == "Data Structures"
+), f"Test Case 1 Failed, expected {block_chain.block[1].data}"
+assert (
+ block_chain.block[2].data == "KhoiVN"
+), f"Test Case 1 Failed, expected {block_chain.block[2].data}"
+
+# Test Case 2
+assert (
+ block_chain.block[0].previous_hash is None
+), f"Test Case 2 Failed, expected {block_chain.block[0].previous_hash}"
+assert (
+ block_chain.block[1].previous_hash
+ == "3c34d938281ebe9c3c41c91c11178d9527cd460911135a01f553bcc9b4fc859d"
+), f"Test Case 2 Failed, expected {block_chain.block[1].previous_hash}"
+assert (
+ block_chain.block[2].previous_hash
+ == "21692e8647432d796d4aa5d60544feb7c120954721795c19adebfbc8f13516bb"
+), f"Test Case 2 Failed, expected {block_chain.block[2].previous_hash}"
+
+# Test Case 3
+assert (
+ block_chain.block[0].timestamp < block_chain.block[1].timestamp
+), f"Test Case 3 Failed, expected {block_chain.block[0].timestamp} < {block_chain.block[1].timestamp}"
+assert (
+ block_chain.block[1].timestamp < block_chain.block[2].timestamp
+), f"Test Case 3 Failed, expected {block_chain.block[1].timestamp} < {block_chain.block[2].timestamp}"
+
+# Edge Test Case 1
+block_chain = BlockChain()
+block_chain.append("")
+block_chain.append("")
+assert (
+ block_chain.block[0].data == ""
+), f"Edge Test Case 1 Failed, expected {block_chain.block[0].data}"
+assert (
+ block_chain.block[1].data == ""
+), f"Edge Test Case 1 Failed, expected {block_chain.block[1].data}"
+
+# Edge Test Case 2
+block_chain = BlockChain()
+block_chain.append("A" * 10**6)
+block_chain.append("B" * 10**6)
+assert (
+ block_chain.block[0].data == "A" * 10**6
+), f"Edge Test Case 2 Failed, expected {block_chain.block[0].data}"
+assert (
+ block_chain.block[1].data == "B" * 10**6
+), f"Edge Test Case 2 Failed, expected {block_chain.block[1].data}"
+
+print("All test cases passed!")
diff --git a/projects/show_me_the_data_structures/problem6.py b/projects/show_me_the_data_structures/problem6.py
new file mode 100644
index 0000000..800e2d5
--- /dev/null
+++ b/projects/show_me_the_data_structures/problem6.py
@@ -0,0 +1,158 @@
+"""
+Course: Data Structures & Algorithms
+Core: Data Structures
+Problem: 6
+Code by: KhoiVN
+Date: 05/01/2024
+"""
+
+
+class Node:
+ def __init__(self, value):
+ self.value = value
+ self.next = None
+
+ def __repr__(self):
+ return str(self.value)
+
+
+class LinkedList:
+ def __init__(self):
+ self.head = None
+
+ def __str__(self):
+ cur_head = self.head
+ out_string = ""
+ while cur_head:
+ out_string += str(cur_head.value) + " -> "
+ cur_head = cur_head.next
+ return out_string
+
+ def append(self, value):
+
+ if self.head is None:
+ self.head = Node(value)
+ return
+
+ node = self.head
+ while node.next:
+ node = node.next
+
+ node.next = Node(value)
+
+ def size(self):
+ size = 0
+ node = self.head
+ while node:
+ size += 1
+ node = node.next
+
+ return size
+
+
+def convert_to_set(linked_list):
+ current = linked_list.head
+ node_set = set()
+
+ while current:
+ node_set.add(current.value)
+ current = current.next
+
+ return node_set
+
+
+def union(list_1, list_2):
+ linked_list = LinkedList()
+ list_1 = convert_to_set(list_1)
+ list_2 = convert_to_set(list_2)
+ for item in list_1:
+ linked_list.append(item)
+ for item in list_2:
+ linked_list.append(item)
+ return linked_list
+
+
+def intersection(list_1, list_2):
+ linked_list = LinkedList()
+ list_1 = convert_to_set(list_1)
+ list_2 = convert_to_set(list_2)
+ for item in list_1:
+ if item in list_2:
+ linked_list.append(item)
+ return linked_list
+
+
+# Test case 1
+
+linked_list_1 = LinkedList()
+linked_list_2 = LinkedList()
+
+element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 21]
+element_2 = [6, 32, 4, 9, 6, 1, 11, 21, 1]
+
+for i in element_1:
+ linked_list_1.append(i)
+
+for i in element_2:
+ linked_list_2.append(i)
+
+print(union(linked_list_1, linked_list_2))
+print(intersection(linked_list_1, linked_list_2))
+
+# Test case 2
+
+linked_list_3 = LinkedList()
+linked_list_4 = LinkedList()
+
+element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 23]
+element_2 = [1, 7, 8, 9, 11, 21, 1]
+
+for i in element_1:
+ linked_list_3.append(i)
+
+for i in element_2:
+ linked_list_4.append(i)
+
+print(union(linked_list_3, linked_list_4))
+print(intersection(linked_list_3, linked_list_4))
+
+
+# Test Case 3
+assert union(linked_list_1, linked_list_2).size() == 14
+assert union(linked_list_3, linked_list_4).size() == 13
+assert intersection(linked_list_1, linked_list_2).size() == 3
+assert intersection(linked_list_3, linked_list_4).size() == 0
+
+# Edge Case 1
+linked_list_5 = LinkedList()
+linked_list_6 = LinkedList()
+
+element_1 = [3, 2, 4, 35, 6, 65, 6, 4, 3, 21]
+element_2 = []
+
+for i in element_1:
+ linked_list_5.append(i)
+
+for i in element_2:
+ linked_list_6.append(i)
+
+assert union(linked_list_5, linked_list_6).size() == 7
+assert intersection(linked_list_5, linked_list_6).size() == 0
+
+# Edge Case 2
+linked_list_7 = LinkedList()
+linked_list_8 = LinkedList()
+
+element_1 = []
+element_2 = []
+
+for i in element_1:
+ linked_list_7.append(i)
+
+for i in element_2:
+ linked_list_8.append(i)
+
+assert union(linked_list_7, linked_list_8).size() == 0
+assert intersection(linked_list_7, linked_list_8).size() == 0
+
+print("All test cases passed!")
diff --git a/projects/show_me_the_data_structures/testdir/subdir1/a.c b/projects/show_me_the_data_structures/testdir/subdir1/a.c
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir1/a.h b/projects/show_me_the_data_structures/testdir/subdir1/a.h
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir2/.gitkeep b/projects/show_me_the_data_structures/testdir/subdir2/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir3/subsubdir1/b.c b/projects/show_me_the_data_structures/testdir/subdir3/subsubdir1/b.c
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir3/subsubdir1/b.h b/projects/show_me_the_data_structures/testdir/subdir3/subsubdir1/b.h
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir4/.gitkeep b/projects/show_me_the_data_structures/testdir/subdir4/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir5/a.c b/projects/show_me_the_data_structures/testdir/subdir5/a.c
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/subdir5/a.h b/projects/show_me_the_data_structures/testdir/subdir5/a.h
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/t1.c b/projects/show_me_the_data_structures/testdir/t1.c
new file mode 100644
index 0000000..e69de29
diff --git a/projects/show_me_the_data_structures/testdir/t1.h b/projects/show_me_the_data_structures/testdir/t1.h
new file mode 100644
index 0000000..e69de29
diff --git a/projects/unscramble_computer_science_problems/Analysis.txt b/projects/unscramble_computer_science_problems/Analysis.txt
new file mode 100644
index 0000000..b25f91f
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Analysis.txt
@@ -0,0 +1,73 @@
+# Analysis Big O Notation
+
+Read calls.txt and texts.txt required O(n) time to read the file and store the data into a list.
+
+Task 0:
+Prints the first and last element of a list of size n
+
+> O(n) - Linear Time
+
+Task 1:
+For each element in a list of size n, add into set if not already in set. Then print the set.
+Creating the set of unique telephone numbers: The for loop iterates over each text and call, which is 2n iterations in total.
+For each iteration, it performs four add operations to the set.
+The add operation in a set in Python is O(1).
+Therefore, the total complexity of this part is O(2n) * O(1) = O(n).
+
+> O(n) - Linear Time
+
+Task 2:
+
+1.Sorting the calls:
+The sorted function in Python uses a sorting algorithm called Timsort, which has a worst-case and average time complexity of O(n log n).
+Therefore, the complexity of this part is O(n log n).
+
+2.Printing the call with the longest duration:
+This operation is O(1) because it's a single operation that doesn't depend on the size of the input.
+
+> O(n log n) - Linearithmic Time
+
+Task 3:
+
+1.Creating the set of Bangalore calls:
+The first for loop iterates over each call, which is n iterations in total.
+For each iteration, it performs an add operation to the set if the condition is met.
+The add operation in a set in Python is O(1).
+Therefore, the total complexity of this part is O(n) * O(1) = O(n).
+
+2.Sorting the set of Bangalore calls:
+The sorted function in Python uses a sorting algorithm called Timsort, which has a worst-case and average time complexity of O(n log n).
+Therefore, the complexity of this part is O(n log n).
+
+3.Printing the sorted Bangalore calls:
+This operation is O(n) because it iterates over each number in the sorted list.
+
+4.Counting the calls from and to Bangalore:
+The second for loop also iterates over each call, which is n iterations in total.
+For each iteration, it performs a couple of condition checks and increment operations, which are O(1).
+Therefore, the total complexity of this part is O(n) * O(1) = O(n).
+
+5.Calculating and printing the percentage:
+These operations are O(1) because they are single operations that don't depend on the size of the input.
+
+> O(n log n) - Linearithmic Time
+
+Task 4:
+
+Creating the sets of possible telemarketers and avoid telemarketers:
+The for loops iterate over each call and text, which is 2n iterations in total.
+For each iteration, it performs an add operation to the set if the condition is met.
+The add operation in a set in Python is O(1).
+Therefore, the total complexity of this part is O(2n) * O(1) = O(n).
+
+Subtracting the sets of avoid telemarketers from possible telemarketers:
+The subtraction operation in a set in Python is O(len(possible_telemarketers)). In the worst case, this is O(n).
+
+Sorting the set of telemarketers:
+The sorted function in Python uses a sorting algorithm called Timsort, which has a worst-case and average time complexity of O(n log n).
+Therefore, the complexity of this part is O(n log n).
+
+Printing the sorted telemarketers:
+This operation is O(n) because it iterates over each number in the sorted list.
+
+> O(n log n) - Linearithmic Time
diff --git a/projects/unscramble_computer_science_problems/README.md b/projects/unscramble_computer_science_problems/README.md
new file mode 100644
index 0000000..353c5dd
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/README.md
@@ -0,0 +1,201 @@
+# Investigating Texts and Calls
+
+## Project Overview
+
+In this project, you will complete five tasks based on a fabricated set of calls and texts exchanged during September 2016. You will use Python to analyze and answer questions about the texts and calls contained in the dataset. Lastly, you will perform run time analysis of your solution and determine its efficiency.
+
+## About the data
+
+The text and call data are provided in csv files.
+The text data `(text.csv)` has the following columns: sending telephone number (string), receiving telephone number (string), timestamp of text message (string).
+The call data `(call.csv)` has the following columns: calling telephone number (string), receiving telephone number (string), start timestamp of telephone call (string), duration of telephone call in seconds (string)
+
+All telephone numbers are 10 or 11 numerical digits long. Each telephone number starts with a code indicating the location and/or type of the telephone number. There are three different kinds of telephone numbers, each with a different format:
+
+- Fixed lines start with an area code enclosed in brackets. The area codes vary in length but always begin with 0. Example: "(022)40840621".
+- Mobile numbers have no parentheses, but have a space in the middle of the number to help readability. The mobile code of a mobile number is its first four digits and they always start with 7, 8 or 9. Example: "93412 66159".
+- Telemarketers' numbers have no parentheses or space, but start with the code 140. Example: "1402316533".
+
+## Task 0
+
+What is the first record of texts and what is the last record of calls?
+
+>Print messages:
+"First record of texts, texts at time "
+"Last record of calls, calls at time , lasting seconds"
+
+```python
+python Task0.py
+```
+
+Output:
+
+```python
+First record of texts, 97424 22395 texts 90365 06212 at time 01-09-2016 06:03:22
+Last record of calls, 98447 62998 calls (080)46304537 at time 30-09-2016 23:57:15, lasting 2151 seconds
+```
+
+## Task 1
+
+How many different telephone numbers are there in the records?
+
+>Print a message:
+"There are different telephone numbers in the records."
+
+```python
+python Task1.py
+```
+
+Output:
+
+```python
+There are 570 different telephone numbers in the records.
+```
+
+## Task 2
+
+Which telephone number spent the longest time on the phone during the period? Don't forget that time spent answering a call is also time spent on the phone.
+
+>Print a message:
+" spent the longest time, seconds, on the phone during September 2016.".
+
+```python
+python Task2.py
+```
+
+Output:
+
+```python
+(080)33251027 spent the longest time, 90456 seconds, on the phone during September 2016.
+```
+
+## Task 3
+
+(080) is the area code for fixed line telephones in Bangalore. Fixed line numbers include parentheses, so Bangalore numbers have the form (080)xxxxxxx.
+
+Part A: Find all of the area codes and mobile prefixes called by people in Bangalore. In other words, the calls were initiated by "(080)" area code to the following area codes and mobile prefixes:
+
+- Fixed lines start with an area code enclosed in brackets. The area codes vary in length but always begin with 0.
+- Mobile numbers have no parentheses, but have a space in the middle of the number to help readability. The prefix of a mobile number is its first four digits, and they always start with 7, 8 or 9.
+- Telemarketers' numbers have no parentheses or space, but they start with the area code 140.
+
+>Print the answer as part of a message:
+"The numbers called by people in Bangalore have codes:"
+
+The list of codes should be print out one per line in lexicographic order with no duplicates.
+
+Part B: What percentage of calls from fixed lines in Bangalore are made to fixed lines also in Bangalore? In other words, of all the calls made from a number starting with "(080)", what percentage of these calls were made to a number also starting with "(080)"?
+
+>Print the answer as a part of a message::
+" percent of calls from fixed lines in Bangalore are calls
+to other fixed lines in Bangalore."
+The percentage should have 2 decimal digits
+
+```python
+Part A:
+The numbers called by people in Bangalore have codes:
+(022)
+(040)
+(04344)
+(044)
+(04546)
+(0471)
+(080)
+(0821)
+7406
+7795
+7813
+7829
+8151
+8152
+8301
+8431
+8714
+9008
+9019
+9035
+9036
+9241
+9242
+9341
+9342
+9343
+9400
+9448
+9449
+9526
+9656
+9738
+9740
+9741
+9742
+9844
+9845
+9900
+9961
+----------------------------------------
+Part B:
+24.81 percent of calls from fixed lines in Bangalore are calls to other fixed lines in Bangalore.
+```
+
+## Task 4
+
+The telephone company want to identify numbers that might be doing telephone marketing. Create a set of possible telemarketers: these are numbers that make outgoing calls but never send texts, receive texts or receive incoming calls.
+
+>Print a message:
+"These numbers could be telemarketers: "
+
+The list of numbers should be print out one per line in lexicographic order with no duplicates.
+
+```python
+python Task4.py
+```
+
+Output:
+
+```python
+These numbers could be telemarketers:
+(022)37572285
+(022)65548497
+(022)68535788
+(022)69042431
+(040)30429041
+(044)22020822
+(0471)2171438
+(0471)6579079
+(080)20383942
+(080)25820765
+(080)31606520
+(080)40362016
+(080)60463379
+(080)60998034
+(080)62963633
+(080)64015211
+(080)69887826
+(0821)3257740
+1400481538
+1401747654
+1402316533
+1403072432
+1403579926
+1404073047
+1404368883
+1404787681
+1407539117
+1408371942
+1408409918
+1408672243
+1409421631
+1409668775
+1409994233
+74064 66270
+78291 94593
+87144 55014
+90351 90193
+92414 69419
+94495 03761
+97404 30456
+97407 84573
+97442 45192
+99617 25274
+```
diff --git a/projects/unscramble_computer_science_problems/Task0.py b/projects/unscramble_computer_science_problems/Task0.py
new file mode 100644
index 0000000..e738a45
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Task0.py
@@ -0,0 +1,28 @@
+"""
+Course: Data Structures & Algorithms
+Core: Introduction to Data Structures
+Task: 0
+Code by: KhoiVN
+Date: 29/01/2024
+"""
+
+import csv
+
+
+TEXT_DATA = "texts.csv"
+CALL_DATA = "calls.csv"
+
+with open(TEXT_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ texts = list(reader)
+
+with open(CALL_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ calls = list(reader)
+
+
+print(
+ f"First record of texts, {texts[0][0]} texts {texts[0][1]} at time {texts[0][2]}")
+print(
+ f"Last record of calls, {calls[-1][0]} calls {calls[-1][1]} at time {calls[-1][2]}, lasting {calls[-1][3]} seconds"
+)
diff --git a/projects/unscramble_computer_science_problems/Task1.py b/projects/unscramble_computer_science_problems/Task1.py
new file mode 100644
index 0000000..0d6a2ac
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Task1.py
@@ -0,0 +1,32 @@
+"""
+Course: Data Structures & Algorithms
+Core: Introduction to Data Structures
+Task: 1
+Code by: KhoiVN
+Date: 29/01/2024
+"""
+
+import csv
+
+TEXT_DATA = "texts.csv"
+CALL_DATA = "calls.csv"
+
+with open(TEXT_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ texts = list(reader)
+
+with open(CALL_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ calls = list(reader)
+
+
+count_unique_telephone_numbers = set()
+for text, call in zip(texts, calls):
+ count_unique_telephone_numbers.add(text[0])
+ count_unique_telephone_numbers.add(text[1])
+ count_unique_telephone_numbers.add(call[0])
+ count_unique_telephone_numbers.add(call[1])
+
+print(
+ f"There are {len(count_unique_telephone_numbers)} different telephone numbers in the records."
+)
diff --git a/projects/unscramble_computer_science_problems/Task2.py b/projects/unscramble_computer_science_problems/Task2.py
new file mode 100644
index 0000000..6e64d49
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Task2.py
@@ -0,0 +1,31 @@
+"""
+Course: Data Structures & Algorithms
+Core: Introduction to Data Structures
+Task: 2
+Code by: KhoiVN
+Date: 29/01/2024
+"""
+
+import csv
+from collections import defaultdict
+
+
+CALL_DATA = "calls.csv"
+
+with open(CALL_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ calls = list(reader)
+
+
+total_duration_calls = defaultdict(int)
+for call in calls:
+ total_duration_calls[call[0]] += int(call[3])
+ total_duration_calls[call[1]] += int(call[3])
+
+max_duration_call = sorted(
+ total_duration_calls.items(), key=lambda x: x[1], reverse=True
+)[0]
+
+print(
+ f"{max_duration_call[0]} spent the longest time, {max_duration_call[1]} seconds, on the phone during September 2016."
+)
diff --git a/projects/unscramble_computer_science_problems/Task3.py b/projects/unscramble_computer_science_problems/Task3.py
new file mode 100644
index 0000000..37acf1d
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Task3.py
@@ -0,0 +1,54 @@
+"""
+Course: Data Structures & Algorithms
+Core: Introduction to Data Structures
+Task: 3
+Code by: KhoiVN
+Date: 29/01/2024
+"""
+
+import csv
+
+CALL_DATA = "calls.csv"
+
+with open(CALL_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ calls = list(reader)
+
+
+bangalore_number_calles = set()
+
+for call in calls:
+ if call[0].startswith("(080)"):
+ if call[1].startswith("("):
+ bangalore_number_calles.add(call[1][: call[1].find(")") + 1])
+ elif call[1].startswith("140"):
+ bangalore_number_calles.add(call[1][:3])
+ elif (
+ call[1].startswith("7")
+ or call[1].startswith("8")
+ or call[1].startswith("9")
+ ):
+ bangalore_number_calles.add(call[1][:4])
+
+print("Part A:")
+print("The numbers called by people in Bangalore have codes:")
+
+sorted_bangalore_number_calles = sorted(bangalore_number_calles)
+for number_call in sorted_bangalore_number_calles:
+ print(number_call)
+
+print("----------------------------------------")
+print("Part B:")
+
+count_calling = 0
+count_receiving = 0
+
+for call in calls:
+ if call[0].startswith("(080)"):
+ count_calling += 1
+ if call[1].startswith("(080)"):
+ count_receiving += 1
+
+print(
+ f"{round(count_receiving/count_calling*100, 2)} percent of calls from fixed lines in Bangalore are calls to other fixed lines in Bangalore."
+)
diff --git a/projects/unscramble_computer_science_problems/Task4.py b/projects/unscramble_computer_science_problems/Task4.py
new file mode 100644
index 0000000..0e44952
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/Task4.py
@@ -0,0 +1,39 @@
+"""
+Course: Data Structures & Algorithms
+Core: Introduction to Data Structures
+Task: 4
+Code by: KhoiVN
+Date: 29/01/2024
+"""
+
+import csv
+
+TEXT_DATA = "texts.csv"
+CALL_DATA = "calls.csv"
+
+with open(TEXT_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ texts = list(reader)
+
+with open(CALL_DATA, "r", encoding="utf-8") as f:
+ reader = csv.reader(f)
+ calls = list(reader)
+
+
+possible_telemarketers = set()
+avoid_telemarketers = set()
+
+for call in calls:
+ possible_telemarketers.add(call[0])
+ avoid_telemarketers.add(call[1])
+
+for text in texts:
+ avoid_telemarketers.add(text[0])
+ avoid_telemarketers.add(text[1])
+
+telemarketers = possible_telemarketers.difference(avoid_telemarketers)
+sorted_telemarketers = sorted(telemarketers)
+
+print("These numbers could be telemarketers: ")
+for telemarketer in sorted_telemarketers:
+ print(telemarketer)
diff --git a/projects/unscramble_computer_science_problems/calls.csv b/projects/unscramble_computer_science_problems/calls.csv
new file mode 100644
index 0000000..31fb01c
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/calls.csv
@@ -0,0 +1,5213 @@
+78130 00821,98453 94494,01-09-2016 06:01:12,186
+78298 91466,(022)28952819,01-09-2016 06:01:59,2093
+97424 22395,(022)47410783,01-09-2016 06:03:51,1975
+93427 40118,(080)33118033,01-09-2016 06:11:23,1156
+90087 42537,(080)35121497,01-09-2016 06:17:26,573
+97427 87999,(04344)322628,01-09-2016 06:19:28,2751
+(080)45291968,90365 06212,01-09-2016 06:30:36,9
+78132 18081,77956 90632,01-09-2016 06:39:03,3043
+98453 46196,94005 06213,01-09-2016 06:40:20,2457
+78290 99865,89071 31755,01-09-2016 06:46:56,9
+(04344)228249,(080)43901222,01-09-2016 06:50:04,2329
+(080)62164823,74066 93594,01-09-2016 06:52:07,300
+(0821)6141380,90366 69257,01-09-2016 06:54:44,2147
+98446 66723,83019 53227,01-09-2016 06:56:16,129
+90088 09624,93434 31551,01-09-2016 06:57:44,133
+93427 56500,98447 12671,01-09-2016 07:03:45,29
+(040)26738737,90194 00845,01-09-2016 07:12:39,94
+(080)67362492,(04344)316423,01-09-2016 07:24:45,2258
+90192 87313,(080)33251027,01-09-2016 07:28:01,110
+97421 07528,97399 92703,01-09-2016 07:30:50,2918
+78130 00821,98453 94494,01-09-2016 07:31:20,1560
+(080)69245029,(044)49481100,01-09-2016 07:34:19,9
+(044)30727085,92414 22596,01-09-2016 07:39:09,725
+92421 09526,(080)69150162,01-09-2016 07:39:12,88
+98440 65896,(080)47459867,01-09-2016 07:42:15,544
+(022)47410783,93412 26084,01-09-2016 07:50:38,96
+(080)47459867,98440 65896,01-09-2016 08:08:59,2147
+97427 87999,(04344)322628,01-09-2016 08:19:28,324
+(080)23802940,98445 71741,01-09-2016 08:22:10,502
+97380 60551,81524 55552,01-09-2016 08:44:27,650
+90197 38885,98445 85687,01-09-2016 08:46:34,430
+96566 40412,90352 50054,01-09-2016 08:49:56,150
+97447 92655,(022)39006198,01-09-2016 09:17:16,163
+78136 54214,(0471)6537077,01-09-2016 09:18:55,160
+(080)46304537,99003 88572,01-09-2016 09:20:15,97
+98444 63396,(022)46574732,01-09-2016 09:20:54,84
+90355 94399,97391 99665,01-09-2016 09:24:24,2099
+89071 50880,(04546)388977,01-09-2016 09:29:24,9
+78298 91466,(022)28952819,01-09-2016 09:31:49,247
+99003 47921,98444 95768,01-09-2016 09:36:19,836
+92415 66985,(080)43685310,01-09-2016 09:37:18,9
+(080)67362492,(04344)316423,01-09-2016 09:39:50,726
+(080)32255824,(080)62164823,01-09-2016 09:57:10,12
+99002 80226,90085 20915,01-09-2016 10:01:50,609
+(080)35986130,97402 57057,01-09-2016 10:04:06,9
+(080)30270642,97380 86781,01-09-2016 10:04:25,581
+97410 27512,(080)41712046,01-09-2016 10:13:08,198
+(044)49481100,(080)69245029,01-09-2016 10:15:06,385
+(022)62120910,98447 12671,01-09-2016 10:15:24,9
+1408371942,81529 57063,01-09-2016 10:17:21,46
+(080)29435303,(080)43685310,01-09-2016 10:25:39,236
+95264 40233,98440 68457,01-09-2016 10:28:48,692
+97403 88244,(022)46574732,01-09-2016 10:31:04,2177
+(080)34121098,81513 36123,01-09-2016 10:35:25,763
+78293 38561,(080)21129907,01-09-2016 10:35:55,3172
+97422 22278,98446 66723,01-09-2016 10:38:22,140
+97380 60551,90365 51029,01-09-2016 10:43:38,511
+(080)22816760,90088 09624,01-09-2016 10:59:24,2564
+95264 40233,98440 68457,01-09-2016 11:04:27,1219
+78138 93826,90359 99240,01-09-2016 11:09:40,762
+97385 29751,(022)30044349,01-09-2016 11:16:04,807
+81510 47188,90355 10919,01-09-2016 11:19:00,216
+90084 16988,98449 60656,01-09-2016 11:26:37,169
+(080)46772413,(04344)211113,01-09-2016 11:29:20,2418
+90082 61126,90366 69257,01-09-2016 11:44:22,2617
+92415 66985,(080)43685310,01-09-2016 11:53:33,81
+(033)25441815,94489 82688,01-09-2016 11:59:05,645
+87140 67779,89072 39789,01-09-2016 12:05:08,2106
+94497 44333,97385 70012,01-09-2016 12:15:43,46
+(022)62120910,97411 71155,01-09-2016 12:16:43,135
+(011)68486606,(080)32255824,01-09-2016 12:19:21,1686
+94005 20878,(080)49328664,01-09-2016 12:20:15,151
+(044)27523585,93432 24657,01-09-2016 12:23:44,1306
+(080)62164823,(080)32255824,01-09-2016 12:25:18,3884
+92415 91418,94489 72078,01-09-2016 12:29:45,2064
+1408409918,98448 72117,01-09-2016 12:33:48,54
+97449 50000,78295 78750,01-09-2016 12:45:19,1740
+(080)64765396,98448 88411,01-09-2016 13:24:27,2647
+97407 84573,97386 20071,01-09-2016 13:26:37,1281
+(044)25144377,78993 89387,01-09-2016 13:26:39,2392
+87146 31956,(080)68104927,01-09-2016 13:30:16,374
+92411 96415,93435 21961,01-09-2016 13:30:36,341
+94487 29969,97419 41164,01-09-2016 13:33:45,501
+(080)35121497,90351 35947,01-09-2016 13:37:37,115
+(04344)322628,90355 10919,01-09-2016 13:40:02,1005
+(080)43685310,95263 76972,01-09-2016 13:40:44,9
+81524 55552,(0821)2135265,01-09-2016 13:41:21,486
+90197 24124,99612 41256,01-09-2016 13:46:16,100
+(0824)6366719,94497 77615,01-09-2016 13:57:16,1061
+81519 62015,93430 54160,01-09-2016 14:08:36,2443
+97416 18084,(044)27641880,01-09-2016 14:14:39,3598
+97385 29751,(022)30044349,01-09-2016 14:16:05,807
+95266 42732,(080)45291968,01-09-2016 14:22:24,726
+90366 69257,90082 61126,01-09-2016 14:23:12,2497
+94005 20878,(080)49328664,01-09-2016 14:23:45,150
+94486 40312,(044)48154960,01-09-2016 14:29:23,494
+97391 99665,90368 72970,01-09-2016 14:41:04,2306
+98446 78140,(080)35538852,01-09-2016 14:52:56,490
+(080)43215621,(080)47459867,01-09-2016 14:56:12,695
+98454 07778,93412 66159,01-09-2016 14:56:21,759
+90359 79636,70121 27677,01-09-2016 15:09:12,28
+77956 90632,(0821)3537229,01-09-2016 15:09:21,733
+93428 11808,96565 52272,01-09-2016 15:24:56,2826
+90194 00845,(040)26738737,01-09-2016 15:34:21,3401
+(080)23802940,98445 71741,01-09-2016 15:46:58,1040
+(022)30044349,97385 29751,01-09-2016 15:50:47,185
+74066 31484,98454 90038,01-09-2016 16:00:37,96
+78298 91466,97380 60551,01-09-2016 16:11:02,390
+99003 88572,(080)46304537,01-09-2016 16:17:01,3348
+1409994233,(080)64436158,01-09-2016 16:21:24,33
+90196 73585,(044)49868415,01-09-2016 16:37:49,115
+97424 22395,90357 25284,01-09-2016 16:43:47,180
+78138 56841,93416 07259,01-09-2016 16:59:05,2098
+99007 06998,(0821)3602212,01-09-2016 17:14:28,504
+98448 87878,90366 36573,01-09-2016 17:15:21,519
+(080)45547058,84319 52539,01-09-2016 17:15:28,974
+92421 09526,(080)69150162,01-09-2016 17:16:19,575
+93427 56500,98447 12671,01-09-2016 17:21:03,3063
+98444 63396,(022)46574732,01-09-2016 17:22:23,1325
+(0824)6366719,94497 77615,01-09-2016 17:31:26,251
+84312 48999,94485 80091,01-09-2016 17:39:03,3007
+97380 86781,(080)30270642,01-09-2016 17:39:17,1346
+98440 65896,(080)47459867,01-09-2016 17:39:50,2287
+95269 20533,97449 50000,01-09-2016 17:42:06,2111
+(0471)2953539,(022)44927512,01-09-2016 17:49:10,950
+(080)64765396,98448 88411,01-09-2016 17:55:31,941
+77956 90632,92411 96415,01-09-2016 17:57:10,1983
+97447 92655,87149 75762,01-09-2016 18:14:17,222
+84319 52539,(080)45547058,01-09-2016 18:16:20,659
+90192 87313,(080)33251027,01-09-2016 18:18:39,9
+90359 52497,(0824)2145844,01-09-2016 18:19:36,418
+90359 91512,94492 23068,01-09-2016 18:20:14,2826
+(080)23802940,98445 71741,01-09-2016 18:27:19,2554
+(04344)211113,(080)46772413,01-09-2016 18:27:49,692
+98454 90038,74066 31484,01-09-2016 18:33:48,688
+78290 99865,89071 31755,01-09-2016 18:40:58,782
+(040)36649724,97426 64618,01-09-2016 19:00:52,16
+98440 68457,95264 40233,01-09-2016 19:02:39,2566
+93427 56500,(044)24037112,01-09-2016 19:03:02,2543
+(0471)6537077,78136 54214,01-09-2016 19:09:27,212
+93412 66159,94499 20763,01-09-2016 19:10:35,1192
+(080)34932254,81513 36123,01-09-2016 19:14:39,643
+(080)60068611,99001 95783,01-09-2016 19:24:00,579
+97404 30456,(040)25325254,01-09-2016 19:37:31,441
+(080)68104927,87146 31956,01-09-2016 19:50:08,134
+97386 20071,(040)66729318,01-09-2016 19:54:46,1864
+94480 64700,(080)32828889,01-09-2016 20:06:51,158
+99007 06998,(0821)3602212,01-09-2016 20:17:16,1654
+97429 02055,(044)41581342,01-09-2016 20:25:49,161
+78134 03625,(044)69775060,01-09-2016 20:26:56,464
+(022)34715405,74298 18325,01-09-2016 20:30:45,128
+95267 70383,(080)34121098,01-09-2016 20:39:49,926
+90366 36573,97425 12708,01-09-2016 20:42:12,2202
+81513 30231,(080)30231886,01-09-2016 20:43:43,239
+78130 00821,98453 94494,01-09-2016 20:48:05,9
+(080)43685310,92415 66985,01-09-2016 20:52:05,619
+(080)43562014,(040)34008657,01-09-2016 21:03:36,887
+(080)46566171,(080)40395498,01-09-2016 21:13:18,938
+81510 47188,90355 10919,01-09-2016 21:16:23,158
+92414 22596,(080)32647101,01-09-2016 21:20:55,569
+90082 61126,90366 69257,01-09-2016 21:23:35,391
+(022)30044349,97385 29751,01-09-2016 21:23:46,492
+97427 87999,(04344)322628,01-09-2016 21:27:58,393
+78295 65598,84313 45689,01-09-2016 21:37:54,1748
+98444 95768,90194 08626,01-09-2016 21:40:50,278
+(0821)6141380,(080)22816760,01-09-2016 21:47:31,575
+97425 79921,(0471)2953539,01-09-2016 21:48:22,146
+93412 66159,98454 07778,01-09-2016 21:49:23,710
+(0471)2953539,(022)44927512,01-09-2016 21:59:55,2049
+97403 09983,97406 06245,01-09-2016 22:03:30,1025
+(022)34715405,97448 02140,01-09-2016 22:08:40,1061
+(022)34715405,97448 02140,01-09-2016 22:15:48,57
+98444 95768,99003 47921,01-09-2016 22:19:46,9
+(080)20227149,(080)39991213,01-09-2016 22:19:58,942
+90352 50054,97389 12538,01-09-2016 22:26:17,54
+99001 95783,98459 20681,01-09-2016 22:30:02,194
+(080)60068611,99001 95783,01-09-2016 22:30:50,148
+(080)45687418,93414 19669,01-09-2016 22:52:11,2119
+97419 90520,(08214175)358,01-09-2016 22:54:15,213
+90366 69257,90082 61126,01-09-2016 23:09:29,65
+94485 80091,84312 48999,01-09-2016 23:12:20,224
+(080)65275591,98442 73671,01-09-2016 23:23:04,39
+97427 87999,(04344)322628,01-09-2016 23:37:04,698
+(080)32390650,(080)43562014,01-09-2016 23:41:26,1058
+93428 98469,(080)66044294,01-09-2016 23:50:46,161
+98444 72482,98446 78140,02-09-2016 06:02:29,621
+99617 25274,(040)66729318,02-09-2016 06:04:22,135
+(080)44050207,97416 18084,02-09-2016 06:08:43,635
+90199 67471,94482 22716,02-09-2016 06:11:35,2644
+78293 91304,98448 86633,02-09-2016 06:15:34,79
+98454 90038,74066 31484,02-09-2016 06:18:37,610
+90194 08626,(080)68104927,02-09-2016 06:32:54,250
+98440 02823,81515 42171,02-09-2016 06:36:05,203
+90361 52679,94486 40312,02-09-2016 06:39:11,73
+(022)34715405,74298 18325,02-09-2016 06:45:25,734
+97385 70012,97424 53609,02-09-2016 06:50:14,2822
+95266 42732,(080)45291968,02-09-2016 06:56:36,2329
+93412 26084,(022)47410783,02-09-2016 07:01:36,708
+93426 76415,(080)20123809,02-09-2016 07:04:13,2161
+78136 42599,97399 92703,02-09-2016 07:09:51,63
+94001 07403,90368 72970,02-09-2016 07:16:14,1141
+94495 34273,(080)39991213,02-09-2016 07:29:49,165
+(080)69245029,(044)49481100,02-09-2016 08:07:32,103
+94489 72078,92415 91418,02-09-2016 08:27:04,184
+(0471)2953539,97425 79921,02-09-2016 08:30:11,50
+78293 91304,98448 86633,02-09-2016 08:30:31,1736
+(080)43215621,(080)47459867,02-09-2016 08:32:17,637
+(022)34715405,97448 02140,02-09-2016 08:40:35,3225
+90192 87313,(080)33251027,02-09-2016 08:48:42,1200
+(04344)615310,93430 54160,02-09-2016 09:00:20,187
+92424 51984,78299 99223,02-09-2016 09:09:02,906
+81525 12041,90356 11723,02-09-2016 09:38:18,1134
+93427 40118,(080)33118033,02-09-2016 09:39:47,170
+98447 62998,(080)46304537,02-09-2016 10:00:02,976
+81519 62015,93430 54160,02-09-2016 10:01:55,42
+90359 99240,94491 55790,02-09-2016 10:04:52,285
+90352 50054,96566 40412,02-09-2016 10:05:58,9
+90355 10919,(04344)322628,02-09-2016 10:07:37,680
+98442 73671,(080)69245029,02-09-2016 10:10:35,742
+94487 29969,97419 41164,02-09-2016 10:21:22,98
+93427 40118,(080)33118033,02-09-2016 10:27:51,108
+97390 23922,99004 86250,02-09-2016 10:28:06,3963
+95262 44233,99004 86250,02-09-2016 10:35:11,1934
+(080)46772413,(04344)211113,02-09-2016 10:39:35,2615
+1408371942,93412 66159,02-09-2016 10:45:20,677
+97399 92703,97421 07528,02-09-2016 10:48:56,3560
+87144 42283,98458 13389,02-09-2016 10:55:10,58
+87146 58071,97414 97237,02-09-2016 10:57:16,809
+97403 49292,98445 33687,02-09-2016 11:03:19,82
+90365 06212,81513 30231,02-09-2016 11:30:26,202
+78295 48262,(080)46221576,02-09-2016 11:32:44,398
+84319 52539,(080)45547058,02-09-2016 11:42:59,1651
+(0821)3774599,94499 20763,02-09-2016 11:48:58,64
+78293 38561,(080)21129907,02-09-2016 11:54:29,2016
+(080)47999451,74064 33807,02-09-2016 12:00:19,169
+(040)26738737,90194 00845,02-09-2016 12:01:45,395
+98445 71741,(080)23802940,02-09-2016 12:03:20,158
+(022)28952819,(080)25863765,02-09-2016 12:10:00,1039
+94489 82688,(033)25441815,02-09-2016 12:13:02,145
+97424 22395,90357 25284,02-09-2016 12:21:42,151
+(080)22816760,90088 09624,02-09-2016 12:25:10,181
+(080)20123809,93426 76415,02-09-2016 12:28:12,3055
+94480 64700,90088 09624,02-09-2016 12:29:32,189
+74064 66270,(080)47999451,02-09-2016 12:37:23,2981
+(04344)649705,94005 20878,02-09-2016 12:37:59,3579
+90198 03659,74065 10917,02-09-2016 12:38:38,2721
+81522 26166,97414 62784,02-09-2016 12:41:06,673
+(022)30044349,97385 29751,02-09-2016 12:54:36,106
+94489 72078,92415 91418,02-09-2016 13:01:22,557
+97414 62784,98449 60656,02-09-2016 13:10:24,180
+94480 64700,90088 09624,02-09-2016 13:22:29,655
+(080)60062475,83013 85044,02-09-2016 13:25:38,433
+(080)62164823,74066 93594,02-09-2016 13:32:14,235
+1400481538,(022)29303640,02-09-2016 13:32:55,24
+97380 60551,90365 51029,02-09-2016 13:32:59,646
+93418 82576,94489 95536,02-09-2016 13:38:47,2328
+93427 56500,98447 12671,02-09-2016 13:49:26,89
+78133 71458,70127 59322,02-09-2016 13:55:04,1040
+(0471)2953539,(022)44927512,02-09-2016 14:04:38,31
+(080)30270642,97380 86781,02-09-2016 14:08:13,515
+(040)26738737,(080)21652896,02-09-2016 14:13:54,995
+98445 27876,(080)32390650,02-09-2016 14:18:12,174
+78290 99865,89071 31755,02-09-2016 14:20:48,1809
+99009 32475,78138 56841,02-09-2016 14:31:46,734
+93412 66159,98454 07778,02-09-2016 14:35:11,133
+(080)26097534,(080)39755879,02-09-2016 14:38:57,317
+(080)21652896,(040)26738737,02-09-2016 14:57:22,77
+92414 22596,(044)30727085,02-09-2016 15:02:38,851
+90197 24124,99612 41256,02-09-2016 15:04:34,128
+(08214175)358,97419 90520,02-09-2016 15:16:10,1909
+98440 02823,81515 42171,02-09-2016 15:20:03,318
+90355 94399,98452 19037,02-09-2016 15:25:11,711
+(04344)228249,(080)43901222,02-09-2016 15:28:31,2001
+92423 51078,(080)25863765,02-09-2016 15:31:51,2255
+1407539117,(040)20512985,02-09-2016 15:39:52,13
+94497 44333,90087 42537,02-09-2016 15:42:09,70
+(04344)615310,(080)69104549,02-09-2016 15:46:45,621
+98442 73671,(080)65275591,02-09-2016 15:48:48,848
+(080)43206415,99612 41256,02-09-2016 15:50:49,312
+94497 77615,(0824)6366719,02-09-2016 15:51:26,734
+93432 65750,(080)20123809,02-09-2016 15:51:57,2327
+(044)48154960,89071 32787,02-09-2016 15:57:46,644
+98445 85687,90197 38885,02-09-2016 16:13:11,138
+90198 03659,74065 10917,02-09-2016 16:15:53,1426
+97385 29751,(022)30044349,02-09-2016 16:23:38,375
+78295 60375,83015 22251,02-09-2016 16:34:01,602
+90365 06212,(080)45291968,02-09-2016 16:36:17,2833
+94492 23068,90359 91512,02-09-2016 16:40:15,393
+98445 85687,90197 38885,02-09-2016 16:46:16,2488
+(022)40840621,97393 52893,02-09-2016 16:53:38,31
+93432 24657,(044)27523585,02-09-2016 16:57:59,176
+90355 10919,81510 47188,02-09-2016 17:10:53,9
+90194 00845,(040)26738737,02-09-2016 17:15:20,747
+(080)43562014,(040)34008657,02-09-2016 17:29:19,1900
+(080)23802940,98445 71741,02-09-2016 17:31:15,31
+90199 67471,90351 49472,02-09-2016 17:56:29,3061
+(022)39006198,97447 92655,02-09-2016 17:58:37,2663
+97406 06245,93428 11808,02-09-2016 17:59:24,73
+90084 16988,93422 47940,02-09-2016 18:10:04,886
+70127 59322,78133 71458,02-09-2016 18:10:23,586
+93432 65750,92425 27794,02-09-2016 18:10:35,2118
+(022)40840621,97393 52893,02-09-2016 18:16:51,573
+97403 09983,97406 06245,02-09-2016 18:17:41,144
+(04344)228249,(080)43901222,02-09-2016 18:23:24,249
+78138 93826,96569 95359,02-09-2016 18:36:53,923
+(022)68535788,(080)65023950,02-09-2016 18:38:26,881
+(022)30044349,97385 29751,02-09-2016 18:38:56,699
+(080)22759842,(080)43562014,02-09-2016 18:39:34,855
+90355 94399,97391 99665,02-09-2016 18:45:10,543
+97429 02055,(044)41581342,02-09-2016 18:54:06,1126
+78295 60375,83015 22251,02-09-2016 19:11:23,830
+(080)62164823,(022)22288051,02-09-2016 19:13:43,630
+90365 51029,97380 60551,02-09-2016 19:27:51,348
+(022)44927512,(0471)2953539,02-09-2016 19:35:49,102
+(0821)6141380,78139 24512,02-09-2016 19:37:20,2581
+83015 22251,(011)21017178,02-09-2016 19:44:25,563
+(080)68104927,90194 08626,02-09-2016 19:51:12,1026
+(022)38214945,(080)25863765,02-09-2016 19:54:45,227
+(080)47459867,(080)61123756,02-09-2016 19:59:35,767
+81525 12041,90356 11723,02-09-2016 20:05:26,190
+(080)46702492,(080)44046839,02-09-2016 20:18:20,165
+97386 20071,94499 20763,02-09-2016 20:19:53,630
+95263 76972,84319 39746,02-09-2016 20:26:22,3038
+(080)21129907,78293 38561,02-09-2016 20:30:09,3864
+(080)46772413,(04344)211113,02-09-2016 20:44:32,864
+98457 75681,(022)38214945,02-09-2016 20:45:33,235
+(080)62164823,(022)22288051,02-09-2016 20:46:02,141
+92423 51078,78134 03625,02-09-2016 20:49:26,203
+94495 34273,(080)39991213,02-09-2016 20:50:13,1270
+97424 22395,90357 25284,02-09-2016 21:01:47,1615
+98454 07778,97421 07528,02-09-2016 21:01:55,525
+(080)48462898,90199 67471,02-09-2016 21:08:04,1005
+(022)34715405,74298 18325,02-09-2016 21:15:48,81
+81510 47188,(080)41095396,02-09-2016 21:46:21,85
+(080)62164823,(022)22288051,02-09-2016 21:50:22,1733
+98458 13389,87144 42283,02-09-2016 21:53:29,440
+(080)35986130,93432 65750,02-09-2016 21:55:57,147
+78138 93826,90359 99240,02-09-2016 21:55:58,183
+(080)43685310,92415 66985,02-09-2016 22:11:57,35
+(022)38214945,98457 75681,02-09-2016 22:17:52,2389
+(022)38214945,98457 75681,02-09-2016 22:24:12,1287
+99009 32475,78138 56841,02-09-2016 22:25:26,1014
+97429 02055,81510 47188,02-09-2016 22:26:06,9
+90355 94399,98452 19037,02-09-2016 22:32:08,59
+(080)45687418,93414 19669,02-09-2016 22:37:17,471
+95263 76972,84319 39746,02-09-2016 22:37:32,72
+(022)66911540,93426 88474,02-09-2016 22:53:27,3329
+98446 66723,83019 53227,02-09-2016 22:54:59,2803
+93415 21881,(0821)4753474,02-09-2016 22:57:43,2170
+90197 69887,99610 89720,02-09-2016 23:14:10,129
+(080)46304537,98447 62998,02-09-2016 23:15:52,944
+97406 93118,(040)69695864,02-09-2016 23:34:09,194
+77956 90632,(0821)3537229,02-09-2016 23:39:20,828
+90193 20957,97420 86635,02-09-2016 23:47:26,717
+97429 02055,(044)41581342,02-09-2016 23:56:36,726
+(04344)615310,(080)69104549,02-09-2016 23:57:05,1174
+92423 51078,(080)25863765,03-09-2016 06:01:58,3519
+98447 12671,(022)62120910,03-09-2016 06:02:59,2128
+97406 74488,90358 98099,03-09-2016 06:17:36,58
+87146 31956,97384 69866,03-09-2016 06:17:44,432
+(080)60463379,93412 40385,03-09-2016 06:31:10,2251
+(080)20383942,81517 73746,03-09-2016 06:41:56,2348
+89078 69605,77950 18278,03-09-2016 06:47:23,754
+78293 91304,98448 86633,03-09-2016 06:58:34,131
+94489 72078,92415 91418,03-09-2016 07:02:47,23
+(04344)322628,90355 10919,03-09-2016 07:07:43,269
+74066 93594,(080)62164823,03-09-2016 07:16:41,130
+98440 68457,95264 40233,03-09-2016 07:31:28,253
+98445 27876,(080)32390650,03-09-2016 07:32:23,263
+87146 31956,97384 69866,03-09-2016 07:39:31,1629
+93412 26084,(022)47410783,03-09-2016 07:41:18,3332
+78136 54214,(0471)6537077,03-09-2016 07:41:37,504
+(0471)2953539,(022)44927512,03-09-2016 07:51:03,44
+81522 26166,97414 62784,03-09-2016 07:51:30,223
+90355 10919,(04344)322628,03-09-2016 07:54:32,3381
+90351 35947,(080)35121497,03-09-2016 07:59:03,176
+99003 47921,98444 95768,03-09-2016 08:01:08,3444
+(080)44076727,97415 99182,03-09-2016 08:10:22,561
+(080)43562014,(080)32390650,03-09-2016 08:14:42,65
+(080)60068611,99001 95783,03-09-2016 08:15:35,3928
+99610 89720,90197 69887,03-09-2016 08:25:28,2268
+(0471)2953539,(022)44927512,03-09-2016 08:30:00,1253
+(022)47410783,93412 26084,03-09-2016 08:44:16,166
+97380 60551,90365 51029,03-09-2016 09:03:07,673
+90355 94399,98452 19037,03-09-2016 09:03:44,153
+(080)35986130,78130 36804,03-09-2016 09:04:14,1458
+(080)47459867,98440 65896,03-09-2016 09:11:45,9
+78293 38561,(080)21129907,03-09-2016 09:16:50,1105
+99001 95783,(080)60068611,03-09-2016 09:21:04,2149
+(022)21884607,90083 59148,03-09-2016 09:25:42,329
+90192 87313,78139 24512,03-09-2016 09:27:02,908
+(0821)3537229,77956 90632,03-09-2016 09:29:01,236
+89078 69605,77950 18278,03-09-2016 09:33:36,102
+96566 40412,90352 50054,03-09-2016 09:37:39,154
+95267 70383,(080)34121098,03-09-2016 09:52:30,185
+93428 98469,(080)66044294,03-09-2016 10:08:26,130
+90356 11723,81525 12041,03-09-2016 10:17:33,113
+(04344)322628,90355 10919,03-09-2016 10:51:24,1135
+(080)46304537,98447 62998,03-09-2016 10:51:51,76
+(080)32390650,98445 27876,03-09-2016 11:00:27,126
+81517 73746,94497 77615,03-09-2016 11:04:52,633
+99003 88572,(080)46304537,03-09-2016 11:10:10,198
+98446 66723,83019 53227,03-09-2016 11:14:06,2198
+(080)69609453,(080)25863765,03-09-2016 11:20:36,2389
+98446 78140,98444 72482,03-09-2016 11:28:43,898
+(080)35121497,90087 42537,03-09-2016 11:32:33,269
+97391 99665,90368 72970,03-09-2016 11:34:18,143
+97403 88244,(022)46574732,03-09-2016 11:38:11,1961
+99007 06998,84314 00609,03-09-2016 11:43:43,1911
+90194 00845,97416 17124,03-09-2016 11:43:53,264
+97380 60551,78298 91466,03-09-2016 11:45:43,3141
+89071 32787,(044)48154960,03-09-2016 12:00:33,9
+(022)65548497,(080)49899148,03-09-2016 12:01:48,676
+(022)38214945,(080)25863765,03-09-2016 12:01:51,3929
+(080)61123756,(080)47459867,03-09-2016 12:03:26,20
+(080)48462898,90199 67471,03-09-2016 12:07:21,2793
+1409668775,(044)49868415,03-09-2016 12:19:19,299
+90088 09624,94480 64700,03-09-2016 12:25:31,925
+70121 27677,90359 79636,03-09-2016 12:29:07,3536
+(040)26738737,90194 00845,03-09-2016 12:41:44,404
+98447 62998,(080)46304537,03-09-2016 13:10:16,1211
+94489 72078,92415 91418,03-09-2016 13:17:28,766
+(080)62164823,(022)22288051,03-09-2016 13:23:16,197
+74298 85702,(0471)4255177,03-09-2016 13:25:28,1882
+97385 70012,94497 44333,03-09-2016 13:30:37,9
+(080)46304537,98447 62998,03-09-2016 13:32:15,199
+87146 31956,97384 69866,03-09-2016 13:34:17,246
+1409994233,(0471)2062514,03-09-2016 13:35:50,952
+78298 91466,(022)28952819,03-09-2016 13:46:09,176
+97389 12538,90352 50054,03-09-2016 13:54:20,67
+90359 52497,97390 23922,03-09-2016 13:56:25,975
+(080)35986130,(080)44389098,03-09-2016 14:06:33,280
+90197 69887,99610 89720,03-09-2016 14:07:20,2246
+97399 92703,78136 42599,03-09-2016 14:09:48,9
+(080)45291968,95266 42732,03-09-2016 14:15:24,201
+97424 22395,90357 25284,03-09-2016 14:16:01,947
+(080)34121098,81513 36123,03-09-2016 14:27:26,9
+(080)62164823,(080)32255824,03-09-2016 14:33:20,80
+(080)41203315,(080)61419142,03-09-2016 14:34:31,681
+(044)30727085,92414 22596,03-09-2016 14:48:40,209
+78136 54214,(0471)6537077,03-09-2016 15:00:14,122
+(080)20227149,(080)64047472,03-09-2016 15:10:30,202
+97402 57057,(080)45547058,03-09-2016 15:21:40,171
+(04344)649705,94005 20878,03-09-2016 15:24:33,65
+94485 80091,84312 48999,03-09-2016 15:41:22,1035
+(080)43562014,(040)34008657,03-09-2016 15:43:59,1130
+(022)44927512,(0471)2953539,03-09-2016 15:51:55,547
+90193 16567,(04344)649705,03-09-2016 15:58:57,885
+(022)44927512,(0471)2953539,03-09-2016 15:59:26,89
+97410 27512,(080)41712046,03-09-2016 16:15:05,9
+90365 51029,94499 38099,03-09-2016 16:30:56,1002
+(080)48462898,90199 67471,03-09-2016 16:35:09,87
+90082 61126,90366 69257,03-09-2016 16:53:33,25
+(044)45838604,(0821)4816394,03-09-2016 16:53:40,9
+99001 95783,89076 36757,03-09-2016 16:53:56,67
+97390 23922,90359 52497,03-09-2016 16:58:35,143
+(022)47410783,93412 26084,03-09-2016 17:00:19,95
+(022)68535788,(080)65023950,03-09-2016 17:06:31,219
+78298 91466,(022)28952819,03-09-2016 17:24:13,657
+94002 85593,(080)65023950,03-09-2016 17:25:22,161
+1409994233,(080)32255824,03-09-2016 17:27:39,54
+(04344)322628,97427 87999,03-09-2016 17:38:49,177
+97425 92186,94482 95223,03-09-2016 17:48:58,144
+94001 62063,(080)33251027,03-09-2016 17:52:51,28
+92424 51984,(04344)617351,03-09-2016 18:03:13,1655
+95269 20533,97449 50000,03-09-2016 18:10:08,9
+97403 09983,90198 03659,03-09-2016 18:20:43,2369
+(044)45416964,92425 27794,03-09-2016 18:25:22,1560
+(040)69695864,97406 93118,03-09-2016 18:33:15,167
+92415 91418,(080)48462898,03-09-2016 18:56:00,966
+1408672243,(044)41581342,03-09-2016 19:04:08,13
+93412 66159,98454 07778,03-09-2016 19:09:54,699
+97399 92703,97421 07528,03-09-2016 19:10:27,24
+90359 91512,94492 23068,03-09-2016 19:20:07,823
+78298 91466,97380 60551,03-09-2016 19:21:46,153
+97385 70012,97424 53609,03-09-2016 19:28:24,538
+90365 06212,(080)45291968,03-09-2016 19:40:06,62
+(080)62164823,(080)32255824,03-09-2016 19:40:59,1381
+(080)43562014,(080)22759842,03-09-2016 19:43:07,9
+97415 99182,(080)44076727,03-09-2016 19:48:02,564
+(080)32255824,(080)62164823,03-09-2016 19:51:25,60
+(080)45547058,84319 52539,03-09-2016 19:53:50,292
+97427 87999,(04344)322628,03-09-2016 20:07:56,138
+(080)68739140,98440 65896,03-09-2016 20:10:07,2322
+92415 66985,(080)43685310,03-09-2016 20:10:15,222
+(080)43562014,(080)22759842,03-09-2016 20:16:57,3363
+78299 99223,92424 51984,03-09-2016 20:18:17,9
+(080)37913009,90355 49499,03-09-2016 20:20:26,594
+99001 95783,98459 20681,03-09-2016 20:23:28,2235
+(080)32638303,98458 94162,03-09-2016 20:52:38,885
+(080)46304537,84313 80377,03-09-2016 20:52:51,815
+(0471)2953539,(022)44927512,03-09-2016 20:53:11,3271
+97385 29751,(022)30044349,03-09-2016 20:57:57,2521
+(080)35121497,90351 35947,03-09-2016 21:03:05,738
+(080)60062475,81524 55552,03-09-2016 21:07:58,226
+(080)43215621,(080)47459867,03-09-2016 21:24:37,93
+98453 46196,(04344)228249,03-09-2016 21:28:33,811
+(080)39755879,(080)26097534,03-09-2016 21:36:43,2445
+(080)33251027,94001 62063,03-09-2016 21:47:16,272
+(040)66729318,97386 20071,03-09-2016 21:51:29,1055
+78295 48262,70121 27677,03-09-2016 21:59:05,206
+(080)32390650,98445 27876,03-09-2016 22:08:43,3376
+(0471)2225098,97406 06245,03-09-2016 22:09:22,9
+84313 80377,(080)46304537,03-09-2016 22:19:31,3056
+(080)49328664,94005 20878,03-09-2016 22:35:05,3543
+81522 26166,97414 62784,03-09-2016 22:44:48,3200
+97418 46131,(080)33277651,03-09-2016 22:49:53,91
+93432 65750,(080)20123809,03-09-2016 22:54:51,1138
+97406 06245,(0471)2225098,03-09-2016 22:55:46,515
+96566 40412,90352 50054,03-09-2016 23:02:42,1073
+81513 36123,(080)34121098,03-09-2016 23:03:10,1087
+92424 51984,78299 99223,03-09-2016 23:07:54,2534
+90192 30758,(080)64431120,03-09-2016 23:13:18,1406
+74066 31484,98454 90038,03-09-2016 23:18:16,80
+99007 06998,(0821)3602212,03-09-2016 23:18:59,609
+(080)47459867,98440 65896,03-09-2016 23:40:50,406
+74066 31484,98454 90038,04-09-2016 06:01:21,3089
+97446 95253,97428 35959,04-09-2016 06:12:11,153
+99617 25274,(040)66729318,04-09-2016 06:15:55,729
+97429 02055,(044)41581342,04-09-2016 06:17:30,355
+93427 56500,98447 12671,04-09-2016 06:25:57,32
+(080)64047472,(080)20227149,04-09-2016 06:27:34,493
+(022)68535788,(080)65023950,04-09-2016 06:30:29,9
+(0821)3537229,77956 90632,04-09-2016 06:37:40,60
+78295 48262,(080)46221576,04-09-2016 06:37:41,196
+98440 68457,95264 40233,04-09-2016 06:51:27,33
+83019 53227,98446 66723,04-09-2016 06:58:21,443
+(080)68104927,87146 31956,04-09-2016 07:11:37,2082
+90365 51029,97380 60551,04-09-2016 07:16:23,39
+97380 86781,(080)30270642,04-09-2016 07:23:47,205
+(080)31982490,93434 31551,04-09-2016 07:29:01,2732
+(080)30231886,81513 30231,04-09-2016 07:29:55,3135
+(04546)388977,89071 50880,04-09-2016 07:34:25,526
+(080)32638303,98458 94162,04-09-2016 07:41:23,1147
+(080)68104927,87146 31956,04-09-2016 07:45:04,2672
+(040)26738737,(080)21652896,04-09-2016 07:48:14,535
+74066 93594,(080)62164823,04-09-2016 07:49:48,801
+81524 55552,97380 60551,04-09-2016 07:59:51,713
+(080)37913009,90355 49499,04-09-2016 08:08:36,2886
+93432 24657,(044)27523585,04-09-2016 08:09:28,120
+94489 82688,(033)25441815,04-09-2016 08:12:13,573
+98441 32533,70129 62374,04-09-2016 08:15:29,622
+(080)67426410,(080)31863188,04-09-2016 08:22:44,1677
+98454 07778,93412 66159,04-09-2016 08:26:18,365
+(080)46772413,(04344)211113,04-09-2016 08:43:42,413
+90088 09624,93434 31551,04-09-2016 08:45:52,1116
+90087 42537,(080)35121497,04-09-2016 08:49:57,92
+(080)22759842,(04546)267875,04-09-2016 09:01:50,162
+(080)64819785,74066 93594,04-09-2016 09:02:44,248
+97385 29751,(022)30044349,04-09-2016 09:07:03,68
+92423 51078,78134 03625,04-09-2016 09:31:44,3036
+98444 95768,99003 47921,04-09-2016 09:38:02,283
+92415 91418,(080)48462898,04-09-2016 09:41:20,251
+(040)66729318,97386 20071,04-09-2016 09:42:53,95
+99610 89720,90197 69887,04-09-2016 09:43:28,1382
+(080)62963633,98443 99204,04-09-2016 09:53:14,950
+98446 66723,97422 22278,04-09-2016 09:53:47,665
+(080)62963633,98443 99204,04-09-2016 09:54:16,9
+94488 97308,(080)21697299,04-09-2016 09:56:26,9
+(040)66729318,(080)66857551,04-09-2016 09:57:48,407
+(080)64819785,74066 93594,04-09-2016 09:59:19,2643
+98444 72482,98446 78140,04-09-2016 10:05:33,612
+94488 97308,(080)21697299,04-09-2016 10:16:24,775
+93428 98469,(080)66044294,04-09-2016 10:16:55,9
+93410 98013,78295 60375,04-09-2016 10:21:36,698
+93427 56500,98447 12671,04-09-2016 10:23:19,228
+(080)40929452,77956 55474,04-09-2016 10:25:53,3248
+98454 07778,93412 66159,04-09-2016 10:29:11,1086
+98440 71648,(080)27498339,04-09-2016 10:40:14,4308
+98458 94162,(080)32638303,04-09-2016 10:45:26,83
+87140 67779,89072 39789,04-09-2016 10:45:53,3942
+1408672243,(044)38044356,04-09-2016 10:47:32,58
+98444 16192,(022)28765220,04-09-2016 10:52:00,88
+(080)45547058,97402 57057,04-09-2016 10:54:20,563
+(080)43562014,(040)34008657,04-09-2016 11:04:32,284
+(044)27641880,97416 18084,04-09-2016 11:10:51,279
+(080)43685310,(080)29435303,04-09-2016 11:11:56,211
+90193 20957,97420 86635,04-09-2016 11:17:55,3187
+78293 91304,98448 86633,04-09-2016 11:18:09,625
+99612 41256,(080)43206415,04-09-2016 11:19:09,1138
+90368 72970,94001 07403,04-09-2016 11:21:24,946
+(080)60068611,99001 95783,04-09-2016 11:35:06,3616
+(022)39006198,97447 92655,04-09-2016 11:46:40,864
+(080)65023950,94002 85593,04-09-2016 11:46:50,1099
+84319 52539,(080)45547058,04-09-2016 11:47:47,148
+99001 95783,98459 20681,04-09-2016 11:47:54,1635
+(040)36649724,97426 64618,04-09-2016 12:01:13,656
+(080)45687418,93414 19669,04-09-2016 12:04:09,88
+(080)25863765,92423 51078,04-09-2016 12:23:04,178
+90351 90193,78299 36192,04-09-2016 12:24:17,205
+90356 11723,(044)69775060,04-09-2016 12:45:25,833
+1400481538,(08214175)358,04-09-2016 12:49:16,98
+97406 74488,90358 98099,04-09-2016 13:00:26,1793
+97448 02140,(022)34715405,04-09-2016 13:04:14,9
+90193 20957,97420 86635,04-09-2016 13:04:45,2415
+(022)66911540,90193 61937,04-09-2016 13:10:06,192
+90193 61937,(022)66911540,04-09-2016 13:22:13,915
+92428 82401,97385 29751,04-09-2016 13:39:06,136
+90088 09624,(080)22816760,04-09-2016 13:43:22,222
+74066 93594,(080)62164823,04-09-2016 13:48:13,368
+90368 72970,94001 07403,04-09-2016 14:05:32,430
+94497 77615,(0824)6366719,04-09-2016 14:06:58,513
+99009 32475,(011)47486239,04-09-2016 14:12:06,1031
+92411 96415,77956 90632,04-09-2016 14:22:08,744
+93418 82576,94489 95536,04-09-2016 14:27:02,439
+(080)23802940,98445 71741,04-09-2016 14:29:10,457
+97416 29480,94489 72078,04-09-2016 14:55:55,2184
+(080)21697299,94488 97308,04-09-2016 14:56:15,3274
+(080)35986130,(080)44389098,04-09-2016 15:01:17,45
+97421 07528,97399 92703,04-09-2016 15:07:39,1986
+94482 95223,97425 92186,04-09-2016 15:09:39,2300
+90356 11723,81525 12041,04-09-2016 15:20:06,476
+(022)38214945,94006 62384,04-09-2016 15:35:54,128
+98453 94494,78130 00821,04-09-2016 15:36:01,754
+94005 20878,(080)49328664,04-09-2016 15:37:17,114
+98440 02823,81515 42171,04-09-2016 15:41:27,224
+93416 07259,78132 18081,04-09-2016 15:44:34,671
+96565 52272,93428 11808,04-09-2016 15:46:07,3133
+93434 31551,(080)31982490,04-09-2016 15:46:20,537
+1408409918,97425 12708,04-09-2016 16:05:48,56
+(080)45291968,90365 06212,04-09-2016 16:11:14,2806
+78130 00821,98453 94494,04-09-2016 16:11:43,2672
+99003 47921,98444 95768,04-09-2016 16:15:41,710
+1408371942,(080)40395498,04-09-2016 16:23:10,35
+90088 09624,93434 31551,04-09-2016 16:24:58,714
+98453 46196,94005 06213,04-09-2016 16:26:40,633
+(022)69042431,(011)68486606,04-09-2016 16:29:26,3636
+(080)64015211,92429 86621,04-09-2016 16:36:20,380
+94005 20878,(080)49328664,04-09-2016 16:41:20,226
+98446 66723,97422 22278,04-09-2016 16:46:04,107
+98444 42212,97393 04671,04-09-2016 16:54:13,1758
+(022)38214945,(080)25863765,04-09-2016 16:56:29,906
+90085 20915,99002 80226,04-09-2016 17:01:37,39
+77956 90632,78132 18081,04-09-2016 17:04:16,745
+97424 21092,90351 35947,04-09-2016 17:11:19,88
+(044)30727085,92414 22596,04-09-2016 17:13:08,192
+(080)29483476,90368 95100,04-09-2016 17:20:49,2391
+97386 37259,(080)33251027,04-09-2016 17:30:09,556
+(0821)4753474,97404 90013,04-09-2016 17:36:53,562
+(080)35538852,98446 78140,04-09-2016 17:40:39,96
+94006 62384,(022)38214945,04-09-2016 17:44:35,198
+78295 60375,83015 22251,04-09-2016 17:47:43,9
+(044)41581342,97429 02055,04-09-2016 17:50:58,207
+90197 38885,98445 85687,04-09-2016 17:57:59,2118
+94492 23068,90359 91512,04-09-2016 18:01:52,2712
+94480 64700,90088 09624,04-09-2016 18:07:35,2151
+(080)47459867,98440 65896,04-09-2016 18:09:54,3023
+94480 64700,90088 09624,04-09-2016 18:10:22,3013
+(080)26097534,(080)39755879,04-09-2016 18:21:01,181
+(040)69695864,97406 93118,04-09-2016 18:22:14,9
+(080)20123809,93426 76415,04-09-2016 18:24:33,95
+(044)25144377,78993 89387,04-09-2016 18:26:07,1271
+(04344)228249,98453 46196,04-09-2016 18:34:21,2251
+90088 09624,(080)22816760,04-09-2016 18:40:37,174
+(04344)617351,92424 51984,04-09-2016 18:46:18,452
+(080)32638303,98458 94162,04-09-2016 18:49:52,307
+77956 90632,(0821)3537229,04-09-2016 18:52:20,2964
+94489 82688,(033)25441815,04-09-2016 18:57:35,343
+97403 09983,97406 06245,04-09-2016 19:04:23,775
+97424 21092,(080)69609453,04-09-2016 19:08:49,1127
+(080)60068611,99001 95783,04-09-2016 19:14:02,128
+(040)34008657,(080)43562014,04-09-2016 19:28:52,2485
+1400481538,(080)41095396,04-09-2016 19:43:43,73
+(0821)4753474,97404 90013,04-09-2016 19:43:48,65
+(080)43562014,(080)32390650,04-09-2016 19:55:23,3201
+97416 17124,90194 00845,04-09-2016 19:55:31,1736
+94005 20878,(080)49328664,04-09-2016 19:59:42,367
+98453 46196,(04344)228249,04-09-2016 20:00:50,174
+97403 49292,98445 33687,04-09-2016 20:14:27,139
+94489 72078,(080)46937416,04-09-2016 20:15:16,504
+97421 07528,97399 92703,04-09-2016 20:18:44,265
+78138 56841,93416 07259,04-09-2016 20:22:49,9
+(022)65548497,(080)49899148,04-09-2016 20:26:23,455
+93423 23000,78133 10302,04-09-2016 20:31:23,1157
+99009 32475,78138 56841,04-09-2016 20:34:51,1187
+90193 61937,(022)66911540,04-09-2016 20:38:53,72
+97406 06245,97403 09983,04-09-2016 20:38:54,925
+93420 59147,90357 17994,04-09-2016 20:45:18,152
+(022)45444747,92426 65661,04-09-2016 20:46:20,1785
+98454 07778,93412 66159,04-09-2016 20:51:28,1069
+(080)20227149,(080)39991213,04-09-2016 21:04:06,2424
+97380 60551,78298 91466,04-09-2016 21:08:54,640
+(044)48154960,89071 32787,04-09-2016 21:16:27,277
+93412 66159,98454 07778,04-09-2016 21:17:51,734
+(080)26097534,(080)39755879,04-09-2016 21:22:26,536
+94001 62063,(080)33251027,04-09-2016 21:23:36,1017
+(080)43685310,92415 66985,04-09-2016 21:23:48,111
+97403 49292,98445 33687,04-09-2016 21:33:38,936
+84314 00609,99007 06998,04-09-2016 21:35:23,3530
+81522 26166,97414 62784,04-09-2016 21:55:49,62
+92426 72402,97416 29480,04-09-2016 21:59:29,988
+97416 17124,90194 00845,04-09-2016 22:01:43,599
+90352 50054,97389 12538,04-09-2016 22:34:39,526
+(080)61123756,(080)47459867,04-09-2016 22:34:48,229
+97414 62784,81522 26166,04-09-2016 22:39:32,3250
+98442 33257,95262 44233,04-09-2016 22:42:00,173
+81510 47188,90355 10919,04-09-2016 22:42:44,472
+93426 76415,(080)20123809,04-09-2016 22:44:58,1226
+(022)39006198,97447 92655,04-09-2016 22:58:35,607
+90365 06212,97424 22395,04-09-2016 23:23:28,875
+98442 33257,95262 44233,04-09-2016 23:26:30,1981
+97380 60551,97414 35000,04-09-2016 23:28:17,1149
+97403 49292,93435 98939,04-09-2016 23:31:48,155
+94497 77615,(0824)6366719,04-09-2016 23:40:13,861
+(080)47459867,(080)61123756,04-09-2016 23:40:24,430
+97429 02055,(044)41581342,04-09-2016 23:43:36,198
+90359 52497,(0824)2145844,04-09-2016 23:50:15,420
+74066 31484,98454 90038,04-09-2016 23:59:42,9
+(080)35121497,90351 35947,04-09-2016 23:59:46,2239
+78295 65598,84313 45689,05-09-2016 06:06:39,94
+(080)47459867,(080)61123756,05-09-2016 06:09:41,2999
+97385 29751,(022)30044349,05-09-2016 06:11:27,1024
+(080)47999451,74064 33807,05-09-2016 06:33:38,503
+(022)21884607,90083 59148,05-09-2016 06:39:45,499
+(080)47459867,(080)61123756,05-09-2016 06:40:14,2663
+(022)69042431,(011)68486606,05-09-2016 06:42:09,1180
+(080)66044294,93428 98469,05-09-2016 06:47:48,2135
+89071 32787,(044)48154960,05-09-2016 07:04:44,204
+93412 66159,98454 07778,05-09-2016 07:05:35,9
+94488 97308,(080)21697299,05-09-2016 07:39:13,341
+(080)45547058,84319 52539,05-09-2016 07:40:15,216
+97419 41164,94487 29969,05-09-2016 07:40:20,10
+(044)49481100,(080)69245029,05-09-2016 07:49:18,220
+95266 42732,(080)45291968,05-09-2016 08:05:59,143
+78299 99223,92424 51984,05-09-2016 08:06:40,1130
+90088 09624,93434 31551,05-09-2016 08:19:43,744
+(080)49796269,(080)33251027,05-09-2016 08:40:18,2812
+96565 52272,93428 11808,05-09-2016 08:40:28,49
+(080)47459867,(080)43215621,05-09-2016 08:41:23,3412
+(044)69775060,78134 03625,05-09-2016 08:47:00,47
+97399 92703,97421 07528,05-09-2016 08:48:53,1162
+97416 29480,92426 72402,05-09-2016 08:49:00,9
+1403072432,(0824)2321654,05-09-2016 09:01:41,93
+(080)22759842,(080)43562014,05-09-2016 09:03:16,1026
+96569 95359,(080)69564399,05-09-2016 09:07:27,826
+90351 90193,78299 36192,05-09-2016 09:17:25,1730
+90356 11723,(044)69775060,05-09-2016 09:17:36,195
+97386 20071,(040)66729318,05-09-2016 09:22:16,1087
+(080)39755879,(080)26097534,05-09-2016 09:30:15,1239
+99002 80226,90085 20915,05-09-2016 09:35:36,496
+94482 95223,97425 92186,05-09-2016 09:54:47,829
+(080)25863765,(022)38214945,05-09-2016 09:57:40,828
+94002 85593,(080)65023950,05-09-2016 10:25:05,762
+87146 31956,97384 69866,05-09-2016 10:28:09,344
+78136 42599,97399 92703,05-09-2016 10:30:50,3016
+93428 11808,96565 52272,05-09-2016 10:47:41,1393
+98445 71741,(080)23802940,05-09-2016 10:53:51,563
+99009 32475,(011)47486239,05-09-2016 10:54:56,268
+97399 92703,78136 42599,05-09-2016 10:57:26,3043
+(0471)6537077,78136 54214,05-09-2016 11:00:14,9
+(080)41712046,97410 27512,05-09-2016 11:12:52,799
+(080)25863765,(022)28952819,05-09-2016 11:25:04,18
+(040)36649724,97426 64618,05-09-2016 11:26:05,72
+(080)49328664,94005 20878,05-09-2016 11:44:29,163
+90368 72970,94001 07403,05-09-2016 11:56:36,875
+92411 96415,97406 74488,05-09-2016 11:56:49,912
+87146 31956,(080)68104927,05-09-2016 12:06:38,950
+(040)69695864,97406 93118,05-09-2016 12:13:14,147
+(080)35987804,74062 28875,05-09-2016 12:17:52,234
+78295 48262,(080)46221576,05-09-2016 12:18:21,171
+90351 35947,97424 21092,05-09-2016 12:19:13,183
+(04344)649705,94005 20878,05-09-2016 12:28:37,1584
+(0471)2953539,(022)44927512,05-09-2016 12:32:44,11
+(044)48154960,89071 32787,05-09-2016 12:36:55,426
+97391 99665,90355 94399,05-09-2016 12:40:47,83
+90193 61937,(022)66911540,05-09-2016 13:11:45,3449
+70127 59322,78133 71458,05-09-2016 13:15:53,3101
+(080)35121497,90087 42537,05-09-2016 13:18:45,278
+99007 06998,(0821)3602212,05-09-2016 13:20:13,236
+97385 35042,93418 41992,05-09-2016 13:21:45,641
+78295 60375,93410 98013,05-09-2016 13:29:41,328
+95263 76972,84319 39746,05-09-2016 13:36:04,2192
+(080)23802940,98445 71741,05-09-2016 13:36:18,2570
+78293 91304,98448 86633,05-09-2016 13:45:12,1220
+97385 29751,(022)30044349,05-09-2016 13:46:46,2472
+93418 41992,98440 65896,05-09-2016 14:06:15,2343
+(080)25863765,92423 51078,05-09-2016 14:31:11,2659
+97385 29751,92428 82401,05-09-2016 14:35:19,171
+78132 18081,77956 90632,05-09-2016 14:35:34,12
+(022)47410783,97424 22395,05-09-2016 14:35:56,1324
+78293 38561,(080)21129907,05-09-2016 14:43:31,154
+95263 76972,(080)62342282,05-09-2016 14:44:52,730
+(022)62120910,97411 71155,05-09-2016 14:48:42,3392
+90355 10919,81510 47188,05-09-2016 14:56:09,239
+92428 82401,97385 29751,05-09-2016 15:03:38,809
+97447 92655,87149 75762,05-09-2016 15:04:32,1990
+(080)69564399,78135 69048,05-09-2016 15:05:45,340
+99612 41256,(080)43206415,05-09-2016 15:12:43,3055
+97446 95253,97428 35959,05-09-2016 15:19:14,153
+(04344)322628,97427 87999,05-09-2016 15:25:01,15
+(022)40840621,97393 52893,05-09-2016 15:25:28,2462
+74066 93594,(080)62164823,05-09-2016 15:28:19,277
+90194 08626,(080)68104927,05-09-2016 15:29:34,184
+1402316533,(044)41581342,05-09-2016 15:37:16,61
+99617 25274,(040)66729318,05-09-2016 16:02:14,192
+(04344)316423,(080)67362492,05-09-2016 16:03:48,1406
+90084 16988,93422 47940,05-09-2016 16:05:14,2711
+92411 96415,97406 74488,05-09-2016 16:09:05,2605
+93412 66159,98454 07778,05-09-2016 16:12:04,3055
+97449 50000,95269 20533,05-09-2016 16:25:11,150
+97402 57057,(080)45547058,05-09-2016 16:25:47,1026
+(0471)6537077,78136 54214,05-09-2016 16:28:16,3586
+94005 20878,(04344)649705,05-09-2016 16:37:02,2166
+(080)43901222,(04344)228249,05-09-2016 16:37:18,751
+78130 36804,(080)35986130,05-09-2016 16:49:59,947
+78295 48262,(080)46221576,05-09-2016 16:50:17,3501
+95267 70383,(080)34121098,05-09-2016 17:04:04,665
+(0471)2953539,74292 23928,05-09-2016 17:06:45,3058
+98445 85687,90197 38885,05-09-2016 17:11:37,567
+90198 03659,74065 10917,05-09-2016 17:14:25,1256
+(080)34121098,95267 70383,05-09-2016 17:26:56,1072
+98442 73671,(080)69245029,05-09-2016 17:32:48,719
+98454 07778,93412 66159,05-09-2016 17:38:00,295
+78136 42599,97399 92703,05-09-2016 17:39:20,733
+(080)49328664,94005 20878,05-09-2016 18:12:07,66
+93432 24657,(044)27523585,05-09-2016 18:16:35,262
+98459 20681,99001 95783,05-09-2016 18:18:27,489
+94489 82688,(033)25441815,05-09-2016 18:26:11,2507
+1402316533,(080)69245029,05-09-2016 18:27:09,319
+94499 46077,97426 64618,05-09-2016 18:33:27,252
+92426 72402,97416 29480,05-09-2016 18:36:31,130
+98442 73671,(080)69245029,05-09-2016 18:37:33,219
+(080)34121098,81513 36123,05-09-2016 18:40:16,9
+(080)22759842,(080)43562014,05-09-2016 18:40:29,341
+90192 87313,(080)33251027,05-09-2016 18:42:44,166
+83013 02552,94499 46077,05-09-2016 18:47:41,733
+(080)66044294,93428 98469,05-09-2016 18:53:23,193
+81513 36123,(080)34121098,05-09-2016 18:55:18,626
+78298 02848,99001 95783,05-09-2016 18:56:29,596
+(080)64765396,98448 88411,05-09-2016 19:00:28,87
+99004 86250,95262 44233,05-09-2016 19:00:59,783
+93432 65750,92425 27794,05-09-2016 19:02:28,355
+81520 43406,(040)69695864,05-09-2016 19:24:48,636
+(080)49796269,(080)33251027,05-09-2016 19:30:57,247
+(080)35121497,90087 42537,05-09-2016 19:31:51,2515
+93435 98939,97403 49292,05-09-2016 19:35:12,321
+90193 61937,(022)66911540,05-09-2016 19:38:39,2321
+78295 60375,93410 98013,05-09-2016 19:39:17,48
+97393 52893,(022)40840621,05-09-2016 19:41:17,1295
+97447 92655,(022)39006198,05-09-2016 19:47:38,1476
+92421 09526,89076 36757,05-09-2016 19:50:42,71
+90368 72970,94001 07403,05-09-2016 19:54:19,118
+97406 74488,(080)68739140,05-09-2016 20:00:09,1119
+(04344)228249,(080)43901222,05-09-2016 20:05:47,168
+(0821)4753474,97404 90013,05-09-2016 20:09:48,78
+(044)27523585,93432 24657,05-09-2016 20:13:09,595
+74065 10917,90198 03659,05-09-2016 20:20:21,1070
+97442 45192,(044)49868415,05-09-2016 20:20:36,3425
+(080)32828889,94480 64700,05-09-2016 20:40:56,780
+(044)30727085,92414 22596,05-09-2016 20:45:12,409
+95266 42732,(080)45291968,05-09-2016 20:48:10,1876
+90196 73585,(044)49868415,05-09-2016 20:57:44,3149
+99003 47921,98444 95768,05-09-2016 21:00:28,445
+(080)43685310,84312 48999,05-09-2016 21:03:16,63
+(022)22288051,(080)62164823,05-09-2016 21:04:30,1820
+93432 65750,92425 27794,05-09-2016 21:08:13,450
+97380 60551,78298 91466,05-09-2016 21:08:42,61
+74298 85702,(0471)4255177,05-09-2016 21:11:50,1547
+90082 61126,90366 69257,05-09-2016 21:42:34,19
+87144 42283,98458 13389,05-09-2016 21:55:14,696
+(044)69775060,90356 11723,05-09-2016 21:55:53,215
+(080)33251027,(080)49796269,05-09-2016 21:58:19,9
+70127 59322,78133 71458,05-09-2016 22:11:43,1398
+99610 89720,90197 69887,05-09-2016 22:22:31,785
+(080)64765396,98448 88411,05-09-2016 22:46:47,811
+70127 59322,78133 71458,05-09-2016 22:47:42,818
+94492 23068,90359 91512,05-09-2016 22:49:20,119
+(04344)649705,90193 16567,05-09-2016 22:53:10,165
+(044)27523585,93432 24657,05-09-2016 22:54:22,233
+97429 02055,81510 47188,05-09-2016 22:58:57,147
+90194 00845,97416 17124,05-09-2016 23:09:21,954
+90193 16567,(04344)649705,05-09-2016 23:13:59,547
+(080)47459867,98440 65896,05-09-2016 23:14:57,66
+90197 24124,99612 41256,05-09-2016 23:23:48,758
+92411 96415,77956 90632,05-09-2016 23:27:10,1087
+78136 54214,(0471)6537077,05-09-2016 23:28:34,9
+(080)33251027,94001 62063,05-09-2016 23:34:06,98
+98447 62998,(080)46304537,05-09-2016 23:37:12,9
+(080)47459867,(080)61123756,05-09-2016 23:49:24,1917
+(080)32647101,92414 22596,05-09-2016 23:54:51,9
+(080)66857551,(040)66729318,05-09-2016 23:58:37,167
+78130 00821,98453 94494,06-09-2016 06:07:20,1023
+81525 12041,90356 11723,06-09-2016 06:08:41,834
+90198 03659,74065 10917,06-09-2016 06:25:23,2220
+78136 54214,(0471)6537077,06-09-2016 06:37:38,3305
+(080)35987804,(044)68407232,06-09-2016 06:47:02,939
+78133 10302,93423 23000,06-09-2016 06:47:29,2011
+99002 80226,90085 20915,06-09-2016 06:48:31,36
+97425 92186,94482 95223,06-09-2016 06:51:09,56
+94480 64700,(080)32828889,06-09-2016 07:03:28,185
+(080)69245029,(044)49481100,06-09-2016 07:16:41,586
+92423 51078,(080)25863765,06-09-2016 07:24:14,2416
+(080)69150162,92421 09526,06-09-2016 07:25:49,768
+94480 64700,90088 09624,06-09-2016 07:37:24,765
+(080)49796269,(080)33251027,06-09-2016 07:43:12,205
+98453 46196,(04344)228249,06-09-2016 07:50:05,765
+(080)64765396,92415 49633,06-09-2016 08:02:16,168
+98448 88411,(080)64765396,06-09-2016 08:09:33,142
+(0821)3537229,77956 90632,06-09-2016 08:20:44,128
+74292 23928,(0471)2953539,06-09-2016 08:35:19,520
+98446 66723,97422 22278,06-09-2016 08:37:49,2361
+98444 63396,(022)46574732,06-09-2016 08:43:14,361
+90359 79636,70121 27677,06-09-2016 08:43:50,234
+93432 65750,92425 27794,06-09-2016 08:53:11,692
+93414 19669,(080)45687418,06-09-2016 08:53:42,99
+93427 56500,(044)24037112,06-09-2016 09:04:27,881
+70121 27677,78295 48262,06-09-2016 09:12:02,2501
+(080)34121098,95267 70383,06-09-2016 09:12:32,2475
+74292 23928,(0471)2953539,06-09-2016 09:13:15,216
+(080)69104549,98448 87878,06-09-2016 09:14:57,2602
+78295 48262,(080)46221576,06-09-2016 09:30:14,184
+74066 31484,98454 90038,06-09-2016 09:31:44,49
+97390 23922,90359 52497,06-09-2016 09:33:40,145
+(080)32647101,92414 22596,06-09-2016 09:33:50,1275
+90366 69257,(0821)6141380,06-09-2016 09:40:37,1020
+98444 95768,90194 08626,06-09-2016 09:46:47,129
+93434 31551,90088 09624,06-09-2016 09:50:23,637
+90368 95100,(080)29483476,06-09-2016 09:53:16,369
+97449 50000,78295 78750,06-09-2016 09:58:46,85
+94489 72078,92415 91418,06-09-2016 10:01:38,860
+(0821)4816394,77956 90632,06-09-2016 10:10:11,473
+98453 94494,78130 00821,06-09-2016 10:19:52,108
+97421 07528,97399 92703,06-09-2016 10:30:34,207
+78138 93826,90359 99240,06-09-2016 10:30:55,52
+81515 65055,(080)61419142,06-09-2016 10:45:28,273
+(080)45547058,84319 52539,06-09-2016 10:46:56,792
+81517 73746,94497 77615,06-09-2016 11:07:20,66
+(044)69775060,90356 11723,06-09-2016 11:11:05,2882
+(044)48154960,89071 32787,06-09-2016 11:39:51,747
+98444 95768,99003 47921,06-09-2016 11:42:26,33
+(080)35987804,(044)68407232,06-09-2016 11:46:10,738
+92415 66985,(080)43685310,06-09-2016 11:48:49,175
+(080)22816760,90088 09624,06-09-2016 11:49:33,96
+97380 60551,97380 86781,06-09-2016 11:56:27,1426
+98446 78140,98444 72482,06-09-2016 11:56:51,2993
+97391 99665,90355 94399,06-09-2016 12:04:29,893
+99617 25274,(040)66729318,06-09-2016 12:06:02,101
+84313 80377,(080)46304537,06-09-2016 12:23:31,3625
+94497 44333,97385 70012,06-09-2016 12:26:51,169
+94487 29969,97419 41164,06-09-2016 12:46:10,202
+(080)46304537,84313 80377,06-09-2016 12:49:16,91
+(080)25863765,(022)38214945,06-09-2016 12:49:37,107
+90083 59148,(022)21884607,06-09-2016 13:13:05,1950
+(0471)6537077,78136 54214,06-09-2016 13:25:30,751
+90362 07317,92413 38675,06-09-2016 13:26:00,2281
+(044)25144377,78993 89387,06-09-2016 13:29:04,2988
+(080)41336994,97406 93118,06-09-2016 13:33:23,185
+97395 95120,94490 65627,06-09-2016 13:35:54,140
+97385 70012,97424 53609,06-09-2016 13:43:34,2365
+93430 54160,(04344)615310,06-09-2016 13:50:10,1003
+(022)38214945,(080)65647085,06-09-2016 14:03:09,86
+97416 18084,(044)27641880,06-09-2016 14:19:21,222
+(080)41095396,81510 47188,06-09-2016 14:35:24,9
+78295 60375,93410 98013,06-09-2016 14:35:37,1864
+(080)44357306,90199 91061,06-09-2016 14:50:28,1022
+98447 62998,(080)46304537,06-09-2016 14:54:51,494
+(080)32647101,92414 22596,06-09-2016 14:55:14,239
+(080)21129907,78293 38561,06-09-2016 15:11:18,3050
+99007 06998,84314 00609,06-09-2016 15:14:25,2253
+78293 91304,98448 86633,06-09-2016 15:18:17,20
+(08214175)358,97419 90520,06-09-2016 15:18:56,605
+(080)43685310,84312 48999,06-09-2016 15:22:07,274
+90083 59148,(022)21884607,06-09-2016 15:22:42,2818
+(080)45291968,95266 42732,06-09-2016 15:23:11,3571
+87140 67779,89072 39789,06-09-2016 15:25:35,2947
+98448 88411,(080)64765396,06-09-2016 15:32:22,452
+(0471)2171438,83019 53227,06-09-2016 15:35:20,535
+90361 52679,94486 40312,06-09-2016 15:44:34,654
+92411 96415,97406 74488,06-09-2016 15:46:00,563
+94499 46077,97426 64618,06-09-2016 16:01:27,205
+(022)47410783,97424 22395,06-09-2016 16:04:09,2267
+81513 36123,(080)34121098,06-09-2016 16:13:07,239
+(080)61123756,(080)47459867,06-09-2016 16:16:42,146
+97429 02055,(044)41581342,06-09-2016 16:21:25,746
+97426 64618,(040)36649724,06-09-2016 16:26:19,2049
+98444 95768,99003 47921,06-09-2016 16:32:45,752
+(044)22020822,90366 69257,06-09-2016 16:40:28,975
+1409994233,87146 31956,06-09-2016 16:43:39,1011
+94001 62063,(080)33251027,06-09-2016 16:47:44,1677
+(080)61123756,(080)47459867,06-09-2016 16:59:20,787
+77956 90632,(0821)3537229,06-09-2016 17:04:21,49
+(080)34932254,81513 36123,06-09-2016 17:15:25,9
+(022)47410783,97424 22395,06-09-2016 17:17:34,778
+94489 95536,94492 23068,06-09-2016 17:31:09,144
+(080)45687418,(080)64436158,06-09-2016 17:34:54,1176
+98444 63396,(022)46574732,06-09-2016 17:35:15,2125
+99001 95783,98459 20681,06-09-2016 17:35:48,51
+(044)22020822,90366 69257,06-09-2016 17:35:54,692
+97399 92703,78136 42599,06-09-2016 17:40:45,1267
+93430 54160,(04344)615310,06-09-2016 17:46:03,429
+97420 86635,90193 20957,06-09-2016 17:48:33,119
+(080)41095396,81510 47188,06-09-2016 17:51:09,2448
+77956 55474,(044)30360652,06-09-2016 17:55:11,3079
+(080)61123756,(080)47459867,06-09-2016 17:57:32,87
+78132 18081,77956 90632,06-09-2016 18:00:40,79
+90355 94399,98452 19037,06-09-2016 18:19:31,768
+(080)26097534,(080)39755879,06-09-2016 18:20:56,3824
+92423 51078,78134 03625,06-09-2016 18:32:02,3209
+(080)62164823,74066 93594,06-09-2016 18:32:07,89
+99612 41256,(080)43206415,06-09-2016 18:36:08,477
+93412 26084,(022)47410783,06-09-2016 18:41:45,686
+92414 22596,(080)32647101,06-09-2016 18:42:37,1110
+(04344)322628,97427 87999,06-09-2016 18:46:38,166
+92421 64236,(080)35538852,06-09-2016 18:50:17,717
+(044)22020822,90366 69257,06-09-2016 19:01:59,119
+90088 09624,94480 64700,06-09-2016 19:12:32,2155
+97446 95253,97428 35959,06-09-2016 19:26:19,85
+(022)66911540,93426 88474,06-09-2016 19:28:41,1081
+98440 65896,(080)47459867,06-09-2016 19:52:57,107
+90355 49499,(080)37913009,06-09-2016 20:00:21,1953
+(022)38214945,(080)25863765,06-09-2016 20:00:58,905
+94495 03761,(04546)267875,06-09-2016 20:12:39,445
+(022)38214945,94006 62384,06-09-2016 20:15:24,98
+81513 30231,(080)30231886,06-09-2016 20:21:58,133
+(022)28765220,98444 16192,06-09-2016 20:25:26,203
+97429 02055,(044)41581342,06-09-2016 20:25:49,1734
+78133 71458,70127 59322,06-09-2016 20:31:04,1355
+(04546)267875,(044)38044356,06-09-2016 20:32:35,2246
+90088 09624,(080)22816760,06-09-2016 20:34:05,1492
+90355 10919,(04344)322628,06-09-2016 20:54:50,202
+97406 93118,(080)41336994,06-09-2016 20:55:25,513
+(080)33251027,90192 87313,06-09-2016 21:02:27,3111
+93432 24657,(044)27523585,06-09-2016 21:03:51,1123
+90366 69257,(0821)6141380,06-09-2016 21:05:43,2183
+99009 32475,(011)47486239,06-09-2016 21:14:11,1447
+98459 20681,99001 95783,06-09-2016 21:14:17,50
+(0821)4753474,(080)49328664,06-09-2016 21:14:31,407
+81513 36123,(080)34121098,06-09-2016 21:20:18,3076
+92421 64236,(080)35538852,06-09-2016 21:22:24,696
+97414 62784,81522 26166,06-09-2016 21:39:32,15
+(080)61123756,(080)47459867,06-09-2016 21:54:43,570
+99002 80226,90085 20915,06-09-2016 21:58:05,138
+77956 55474,(044)30360652,06-09-2016 22:04:47,146
+90088 09624,94480 64700,06-09-2016 22:22:01,341
+98453 46196,(04344)228249,06-09-2016 22:26:05,1355
+94497 77615,(0824)6366719,06-09-2016 22:40:16,3499
+98448 87878,90366 36573,06-09-2016 22:42:49,356
+81510 47188,97429 02055,06-09-2016 22:49:43,2192
+78295 48262,70121 27677,06-09-2016 22:52:18,256
+(044)24037112,93427 56500,06-09-2016 22:53:57,1182
+93418 82576,94489 95536,06-09-2016 22:56:22,1051
+90084 16988,93422 47940,06-09-2016 23:07:32,187
+81522 26166,(080)46566171,06-09-2016 23:13:15,802
+90194 08626,(080)68104927,06-09-2016 23:20:14,933
+(044)41581342,97429 02055,06-09-2016 23:33:18,541
+97385 70012,97424 53609,06-09-2016 23:34:34,53
+(044)27641880,97416 18084,06-09-2016 23:44:00,80
+(022)62120910,98447 12671,06-09-2016 23:48:04,1230
+97422 22278,98446 66723,07-09-2016 06:06:36,1047
+93412 26084,(022)47410783,07-09-2016 06:34:06,42
+81519 62015,93430 54160,07-09-2016 06:42:33,1066
+94488 97308,(080)21697299,07-09-2016 06:42:33,941
+(080)20123809,93426 76415,07-09-2016 06:42:46,205
+(044)49481100,(080)69245029,07-09-2016 06:47:55,9
+(04344)316423,(080)67362492,07-09-2016 06:48:58,98
+(022)40840621,97393 52893,07-09-2016 06:59:54,342
+98444 63396,(022)46574732,07-09-2016 07:16:56,670
+(080)46221576,78295 48262,07-09-2016 07:27:05,121
+98454 07778,93412 66159,07-09-2016 07:30:03,1967
+90365 51029,94499 38099,07-09-2016 07:32:58,307
+90352 50054,96566 40412,07-09-2016 07:42:01,3658
+90084 16988,93422 47940,07-09-2016 07:45:50,232
+98444 95768,99003 47921,07-09-2016 07:56:08,18
+(080)21652896,(040)26738737,07-09-2016 07:58:57,255
+97427 87999,(04344)322628,07-09-2016 08:07:31,9
+(0471)2225098,97406 06245,07-09-2016 08:11:58,1058
+95269 20533,97449 50000,07-09-2016 08:21:48,190
+93435 21961,92411 96415,07-09-2016 08:21:54,704
+(080)45291968,90365 06212,07-09-2016 08:30:54,196
+(022)60273083,97418 59299,07-09-2016 08:37:10,2631
+94495 34273,(080)39991213,07-09-2016 08:45:22,9
+93412 66159,98454 07778,07-09-2016 08:50:14,126
+(080)46772413,(04344)211113,07-09-2016 08:53:31,331
+97386 37259,78290 31269,07-09-2016 08:54:30,1777
+(04344)211113,(080)46772413,07-09-2016 08:59:35,396
+90365 06212,81513 30231,07-09-2016 09:04:48,594
+90197 24124,99612 41256,07-09-2016 09:07:11,214
+(080)69609453,(080)25863765,07-09-2016 09:10:51,111
+93427 56500,(044)24037112,07-09-2016 09:24:58,3036
+(080)22759842,(080)43562014,07-09-2016 09:27:13,2756
+94001 62063,(080)33251027,07-09-2016 09:32:27,123
+(080)30270642,97380 86781,07-09-2016 09:55:24,169
+97429 02055,(044)41581342,07-09-2016 10:18:42,150
+(080)60062475,83013 85044,07-09-2016 10:21:23,89
+(080)46566171,(080)40395498,07-09-2016 10:24:01,3558
+93430 54160,(04344)615310,07-09-2016 10:37:58,507
+95267 70383,97414 62027,07-09-2016 10:45:43,158
+78298 02848,99001 95783,07-09-2016 10:47:58,727
+(080)22816760,(0821)6141380,07-09-2016 10:59:33,849
+90365 06212,81513 30231,07-09-2016 11:05:51,754
+78134 03625,(044)69775060,07-09-2016 11:11:05,134
+97410 27512,(080)41712046,07-09-2016 11:13:21,2463
+94006 62384,(022)38214945,07-09-2016 11:21:30,3067
+89076 07067,90089 69682,07-09-2016 11:33:56,9
+97380 60551,78298 91466,07-09-2016 11:34:56,949
+90088 09624,93434 31551,07-09-2016 11:38:51,248
+98445 85687,90197 38885,07-09-2016 11:39:40,170
+98448 87878,90366 36573,07-09-2016 11:48:56,2345
+90355 49499,(080)37913009,07-09-2016 11:54:11,2196
+(040)69695864,97406 93118,07-09-2016 12:06:41,46
+(011)68486606,(080)32255824,07-09-2016 12:08:09,1787
+(044)25144377,78993 89387,07-09-2016 12:11:57,887
+78295 48262,70121 27677,07-09-2016 12:14:25,255
+90361 52679,94486 40312,07-09-2016 12:15:47,256
+97419 90520,(08214175)358,07-09-2016 12:31:14,1150
+98444 95768,99003 47921,07-09-2016 12:33:23,360
+90351 90193,78299 36192,07-09-2016 12:35:04,609
+78136 54214,(0471)6537077,07-09-2016 12:36:26,121
+(022)66911540,90193 61937,07-09-2016 12:41:18,236
+95263 76972,84319 39746,07-09-2016 12:44:42,380
+(080)45547058,97402 57057,07-09-2016 12:55:24,131
+92424 51984,78299 99223,07-09-2016 13:03:12,9
+(080)26097534,(080)39755879,07-09-2016 13:03:33,274
+92411 96415,97406 74488,07-09-2016 13:28:49,580
+90197 38885,98445 85687,07-09-2016 13:31:11,774
+78293 38561,(080)21129907,07-09-2016 13:54:35,202
+93426 76415,(080)20123809,07-09-2016 13:54:45,655
+97399 92703,97421 07528,07-09-2016 13:56:58,117
+(04344)649705,94005 20878,07-09-2016 13:59:20,3490
+93427 56500,(044)24037112,07-09-2016 14:13:59,265
+(022)30044349,97385 29751,07-09-2016 14:26:18,184
+(044)69775060,81525 12041,07-09-2016 14:31:20,181
+90197 38885,98445 85687,07-09-2016 14:32:10,2281
+78136 54214,(0471)6537077,07-09-2016 14:32:24,215
+93420 59147,90357 17994,07-09-2016 14:37:28,781
+(022)39006198,97447 92655,07-09-2016 14:51:13,1279
+98444 95768,99003 47921,07-09-2016 14:52:51,3142
+97448 02140,(022)34715405,07-09-2016 15:02:50,679
+94499 46077,97426 64618,07-09-2016 15:07:32,2616
+1408409918,(04546)218519,07-09-2016 15:11:10,42
+78293 91304,98448 86633,07-09-2016 15:22:36,1395
+93416 07259,78132 18081,07-09-2016 15:32:39,9
+92414 22596,(080)32647101,07-09-2016 15:39:07,59
+1407539117,94491 29500,07-09-2016 16:05:22,263
+(080)43562014,(080)32390650,07-09-2016 16:23:13,2015
+99003 47921,98444 95768,07-09-2016 16:32:38,2742
+(0821)4816394,(044)45838604,07-09-2016 16:34:29,3221
+93414 19669,(080)45687418,07-09-2016 16:34:38,84
+92411 96415,97406 74488,07-09-2016 16:40:55,2356
+94497 44333,97385 70012,07-09-2016 16:46:53,629
+90088 09624,94480 64700,07-09-2016 16:49:43,2363
+84313 80377,(080)46304537,07-09-2016 17:10:31,625
+90368 72970,97391 99665,07-09-2016 17:30:10,264
+(080)69150162,92421 09526,07-09-2016 17:30:27,554
+(022)38214945,(080)65647085,07-09-2016 17:32:11,511
+97390 23922,90359 52497,07-09-2016 17:34:22,9
+94495 34273,(080)39991213,07-09-2016 17:35:53,1045
+(080)31863188,(080)67426410,07-09-2016 17:38:36,811
+96569 95359,(080)69564399,07-09-2016 17:42:24,147
+97403 09983,97406 06245,07-09-2016 17:45:57,210
+97424 53609,97385 70012,07-09-2016 17:53:09,116
+97424 53609,97385 70012,07-09-2016 17:54:42,486
+97424 21092,(080)69609453,07-09-2016 17:57:18,142
+97424 22395,(022)47410783,07-09-2016 17:59:47,2752
+(022)21884607,90083 59148,07-09-2016 18:17:34,83
+97424 22395,(022)29303640,07-09-2016 18:17:58,282
+1402316533,(04344)212961,07-09-2016 18:25:01,57
+92428 82401,97385 29751,07-09-2016 18:28:33,1442
+70121 27677,78295 48262,07-09-2016 18:30:01,393
+97447 92655,(022)39006198,07-09-2016 18:36:59,60
+97389 12538,90352 50054,07-09-2016 18:44:01,727
+(080)32679828,90196 73585,07-09-2016 18:47:55,724
+93432 65750,(080)20123809,07-09-2016 18:56:06,106
+(04546)267875,(044)38044356,07-09-2016 19:06:44,117
+98458 13389,87144 42283,07-09-2016 19:13:39,881
+(080)69150162,92421 09526,07-09-2016 19:20:59,1164
+(080)62164823,(080)32255824,07-09-2016 19:26:25,81
+(080)48462898,90199 67471,07-09-2016 19:26:59,954
+97389 12538,90352 50054,07-09-2016 19:27:01,455
+90356 11723,(044)69775060,07-09-2016 19:47:13,1359
+(0824)2022081,(04344)654396,07-09-2016 19:47:17,1538
+(080)25863765,92423 51078,07-09-2016 19:48:16,115
+99612 41256,90197 24124,07-09-2016 19:49:41,24
+(080)29435303,(080)43685310,07-09-2016 19:58:32,150
+98445 27876,(080)32390650,07-09-2016 20:20:39,1678
+92414 22596,(080)32647101,07-09-2016 20:21:52,616
+(080)68739140,97406 74488,07-09-2016 20:25:27,987
+90197 24124,99612 41256,07-09-2016 20:37:26,1206
+(044)27523585,93432 24657,07-09-2016 20:44:40,172
+90359 79636,99001 23133,07-09-2016 20:54:40,58
+(080)25863765,(022)38214945,07-09-2016 21:02:53,84
+97380 60551,90365 51029,07-09-2016 21:20:38,190
+93428 98469,(080)66044294,07-09-2016 21:25:42,861
+97424 21092,(080)69609453,07-09-2016 21:31:18,89
+87144 42283,98458 13389,07-09-2016 21:37:40,1486
+(044)27523585,93432 24657,07-09-2016 21:41:04,32
+93426 76415,(080)20123809,07-09-2016 21:41:43,3326
+(080)66857551,(040)66729318,07-09-2016 21:45:33,579
+87146 31956,(080)68104927,07-09-2016 21:58:28,649
+(080)30270642,97380 86781,07-09-2016 22:01:29,158
+81513 30231,(080)30231886,07-09-2016 22:05:28,158
+94482 95223,(080)45291968,07-09-2016 22:06:35,648
+94485 80091,84312 48999,07-09-2016 22:09:45,3222
+(080)33251027,94001 62063,07-09-2016 22:33:08,66
+93427 40118,(080)33118033,07-09-2016 22:37:34,3002
+(080)31982490,95267 70383,07-09-2016 22:42:46,204
+89071 50880,(04546)388977,07-09-2016 22:55:39,4617
+74298 85702,(0471)4255177,07-09-2016 22:58:27,291
+(040)69695864,97406 93118,07-09-2016 22:58:40,100
+90366 36573,98448 87878,07-09-2016 23:04:45,945
+74066 93594,(080)62164823,07-09-2016 23:19:59,692
+78295 48262,(080)46221576,07-09-2016 23:21:15,2910
+94487 29969,97419 41164,07-09-2016 23:28:40,1107
+(080)46221576,78295 48262,07-09-2016 23:29:15,112
+(080)37913009,90355 49499,07-09-2016 23:34:39,105
+74065 10917,90198 03659,07-09-2016 23:40:26,47
+(044)49481100,(080)69245029,07-09-2016 23:53:28,14
+93426 76415,(080)20123809,08-09-2016 06:03:39,9
+97390 23922,99004 86250,08-09-2016 06:07:03,314
+(080)64015211,92429 86621,08-09-2016 06:14:53,239
+89071 50880,(04546)388977,08-09-2016 06:24:22,908
+(040)69695864,81520 43406,08-09-2016 06:31:32,2158
+98454 90038,93415 21881,08-09-2016 06:36:26,3526
+98444 95768,99003 47921,08-09-2016 06:40:07,801
+(080)43562014,(040)34008657,08-09-2016 06:41:13,2090
+(080)45547058,84319 52539,08-09-2016 06:44:19,2644
+97389 12538,90352 50054,08-09-2016 06:47:30,440
+97399 92703,97421 07528,08-09-2016 06:55:28,460
+98447 62998,(080)46304537,08-09-2016 06:55:41,820
+99003 88572,(080)46304537,08-09-2016 07:03:13,555
+74064 66270,(080)47999451,08-09-2016 07:12:55,3184
+92426 72402,97416 29480,08-09-2016 07:17:30,2486
+94488 97308,(080)21697299,08-09-2016 07:32:55,810
+93418 41992,98440 65896,08-09-2016 07:37:39,2438
+97424 22395,90357 25284,08-09-2016 07:39:03,2561
+78138 93826,90359 99240,08-09-2016 07:58:37,103
+(080)43562014,(040)34008657,08-09-2016 08:08:35,214
+(022)66911540,90193 61937,08-09-2016 08:12:44,1246
+93427 56500,(044)24037112,08-09-2016 08:22:37,1457
+(044)48154960,89071 32787,08-09-2016 08:22:59,9
+(022)38214945,98457 75681,08-09-2016 08:23:14,91
+(080)60068611,99001 95783,08-09-2016 08:23:56,3482
+97410 27512,(080)41712046,08-09-2016 08:32:41,451
+96569 95359,(080)69564399,08-09-2016 08:34:51,2681
+(022)34715405,74298 18325,08-09-2016 08:44:57,810
+95262 44233,97393 04671,08-09-2016 09:06:05,184
+(044)69775060,90356 11723,08-09-2016 09:14:10,55
+97414 62027,95267 70383,08-09-2016 09:31:01,9
+89071 50880,(04546)388977,08-09-2016 09:39:56,1217
+90198 03659,97403 09983,08-09-2016 09:44:08,85
+(022)65548497,(080)49899148,08-09-2016 09:44:45,1063
+(080)33251027,94001 62063,08-09-2016 09:56:00,2290
+(080)45687418,93414 19669,08-09-2016 10:03:02,9
+81510 47188,(080)41095396,08-09-2016 10:03:23,416
+(080)69564399,96569 95359,08-09-2016 10:05:28,111
+(080)45291968,94482 95223,08-09-2016 10:11:10,1440
+(080)32647101,92414 22596,08-09-2016 10:13:32,3204
+(080)45547058,97402 57057,08-09-2016 10:23:15,192
+97447 92655,(022)39006198,08-09-2016 10:26:06,316
+(080)46304537,99003 88572,08-09-2016 10:30:24,721
+94497 44333,90087 42537,08-09-2016 10:30:54,214
+92424 51984,(04344)617351,08-09-2016 10:30:57,703
+99009 32475,(011)47486239,08-09-2016 10:36:41,9
+90359 52497,97390 23922,08-09-2016 10:39:05,2815
+(080)69887826,(080)32390650,08-09-2016 10:42:29,902
+(080)43562014,(080)32390650,08-09-2016 10:43:21,861
+(080)43685310,92415 66985,08-09-2016 10:52:39,94
+90087 42537,(080)35121497,08-09-2016 10:53:19,38
+99612 41256,(080)43206415,08-09-2016 10:54:35,2507
+97393 52893,(022)40840621,08-09-2016 11:02:11,987
+94497 44333,97385 70012,08-09-2016 11:04:49,447
+(080)32255824,(080)62164823,08-09-2016 11:15:27,2130
+(080)35121497,90087 42537,08-09-2016 11:21:32,3140
+(080)40362016,94491 29500,08-09-2016 11:25:31,624
+1407539117,(044)41581342,08-09-2016 11:29:45,66
+93428 11808,96565 52272,08-09-2016 11:30:48,358
+(080)32647101,92414 22596,08-09-2016 11:33:45,2674
+(080)46304537,98447 62998,08-09-2016 11:37:59,280
+90193 16567,(04344)649705,08-09-2016 11:46:16,173
+(080)45687418,93414 19669,08-09-2016 11:50:59,100
+84312 48999,(080)43685310,08-09-2016 11:52:16,754
+(080)24444677,(0821)6141380,08-09-2016 11:52:18,2869
+93434 31551,90088 09624,08-09-2016 11:59:31,203
+90198 03659,74065 10917,08-09-2016 12:04:04,37
+93427 56500,(044)24037112,08-09-2016 12:12:13,125
+90355 49499,(080)37913009,08-09-2016 12:23:20,9
+97420 86635,90193 20957,08-09-2016 12:24:54,16
+(080)22816760,90088 09624,08-09-2016 12:26:57,189
+97380 60551,81524 55552,08-09-2016 12:31:12,9
+98446 66723,83019 53227,08-09-2016 12:39:39,1518
+92424 51984,(04344)617351,08-09-2016 12:45:07,1136
+98444 72482,98446 78140,08-09-2016 12:51:08,2745
+94001 07403,90368 72970,08-09-2016 12:52:48,686
+98459 20681,(080)35538852,08-09-2016 13:04:08,9
+93422 47940,90084 16988,08-09-2016 13:10:14,41
+97414 62784,98449 60656,08-09-2016 13:12:58,2174
+97385 35042,93418 41992,08-09-2016 13:17:56,9
+70127 59322,78133 71458,08-09-2016 13:24:30,638
+(022)21884607,90083 59148,08-09-2016 13:26:25,1073
+(080)46304537,98447 62998,08-09-2016 13:31:32,1556
+84312 48999,94485 80091,08-09-2016 13:36:42,69
+97424 22395,(022)47410783,08-09-2016 13:37:33,631
+93435 98939,97403 49292,08-09-2016 13:47:19,518
+90365 06212,81513 30231,08-09-2016 14:04:03,1349
+98453 46196,(04344)228249,08-09-2016 14:08:50,32
+97380 60551,78298 91466,08-09-2016 14:17:52,201
+1408371942,93423 23000,08-09-2016 14:22:16,101
+90355 94399,98452 19037,08-09-2016 14:28:27,851
+97425 92186,94482 95223,08-09-2016 14:29:25,957
+95266 42732,(080)45291968,08-09-2016 14:36:54,1975
+97389 12538,90352 50054,08-09-2016 14:52:02,1222
+93428 98469,(080)66044294,08-09-2016 14:54:37,736
+93415 21881,(0821)4753474,08-09-2016 15:01:33,9
+97415 99182,(080)44076727,08-09-2016 15:14:06,197
+94489 82688,(033)25441815,08-09-2016 15:17:59,904
+90084 16988,93422 47940,08-09-2016 15:18:17,890
+74066 31484,98454 90038,08-09-2016 15:24:45,2666
+94006 62384,(022)38214945,08-09-2016 15:25:51,3057
+(080)34121098,81513 36123,08-09-2016 15:27:51,302
+(080)46221576,78295 48262,08-09-2016 15:32:41,166
+(0824)2022081,84311 10322,08-09-2016 15:32:44,2594
+90366 69257,(0821)6141380,08-09-2016 15:36:11,189
+(080)49796269,(080)33251027,08-09-2016 15:40:32,75
+97424 22395,(022)47410783,08-09-2016 15:45:22,241
+(080)45291968,90365 06212,08-09-2016 15:47:29,263
+(080)32638303,98458 94162,08-09-2016 16:08:03,1539
+98440 02823,81515 42171,08-09-2016 16:09:38,9
+(080)49328664,94005 20878,08-09-2016 16:10:34,483
+97415 99182,97393 04671,08-09-2016 16:16:00,963
+94486 40312,(044)48154960,08-09-2016 16:19:18,254
+98442 73671,(080)69245029,08-09-2016 16:24:01,218
+94005 06213,98453 46196,08-09-2016 16:46:56,174
+(080)62164823,(022)22288051,08-09-2016 16:55:14,9
+(022)47410783,93412 26084,08-09-2016 17:18:45,1042
+81525 12041,90356 11723,08-09-2016 17:27:12,368
+92411 96415,97406 74488,08-09-2016 17:27:38,304
+99006 60463,99003 88572,08-09-2016 17:29:03,1706
+94491 55790,(080)24444677,08-09-2016 17:30:23,2478
+95269 20533,97449 50000,08-09-2016 17:45:01,693
+93423 23000,98458 13389,08-09-2016 17:54:20,133
+90197 69887,99610 89720,08-09-2016 18:01:33,751
+97414 62784,81522 26166,08-09-2016 18:07:53,396
+98453 94494,78130 00821,08-09-2016 18:15:44,3677
+(080)69564399,96569 95359,08-09-2016 18:22:29,9
+(080)35987804,78295 20931,08-09-2016 18:23:29,783
+95269 20533,97449 50000,08-09-2016 18:31:14,832
+78132 18081,93416 07259,08-09-2016 18:52:13,918
+90365 06212,81513 30231,08-09-2016 18:54:26,129
+(022)34715405,97448 02140,08-09-2016 18:54:50,3246
+95262 44233,97393 04671,08-09-2016 18:55:24,762
+(022)46574732,97403 88244,08-09-2016 19:07:26,735
+78136 42599,97399 92703,08-09-2016 19:13:57,303
+1409421631,(0471)2953539,08-09-2016 19:18:31,10
+(04344)228249,(080)43901222,08-09-2016 19:24:22,2293
+78130 00821,98453 94494,08-09-2016 19:25:03,868
+(080)64431120,90192 30758,08-09-2016 19:39:23,131
+1401747654,87144 42283,08-09-2016 19:46:53,493
+81520 43406,(040)69695864,08-09-2016 20:00:28,1035
+97424 21092,(080)69609453,08-09-2016 20:17:56,945
+97416 29480,92426 72402,08-09-2016 20:19:07,153
+(044)41581342,97429 02055,08-09-2016 20:19:47,772
+(0821)3602212,99007 06998,08-09-2016 20:25:49,1040
+90355 94399,98452 19037,08-09-2016 20:35:40,238
+90359 52497,97390 23922,08-09-2016 21:10:13,108
+93432 65750,(080)20123809,08-09-2016 21:57:19,2056
+94499 46077,97426 64618,08-09-2016 21:58:06,317
+98447 62998,(080)46304537,08-09-2016 21:58:34,2515
+81520 43406,(040)69695864,08-09-2016 22:01:08,136
+98447 62998,(080)46304537,08-09-2016 22:01:44,36
+(080)46304537,98447 62998,08-09-2016 22:03:40,300
+(080)34121098,95267 70383,08-09-2016 22:09:41,1228
+(022)68535788,(080)65023950,08-09-2016 22:10:39,666
+(080)41712046,97410 27512,08-09-2016 22:11:30,817
+(040)66729318,(080)66857551,08-09-2016 22:24:26,2310
+81525 12041,99610 89720,08-09-2016 22:26:12,869
+(044)69775060,90356 11723,08-09-2016 22:32:56,2668
+77956 90632,78132 18081,08-09-2016 22:42:23,353
+98456 86153,90197 24124,08-09-2016 22:53:17,2192
+81510 47188,(080)41095396,08-09-2016 23:04:17,1427
+(080)30231886,81513 30231,08-09-2016 23:16:45,613
+87146 31956,97384 69866,08-09-2016 23:24:09,9
+97449 50000,78295 78750,08-09-2016 23:25:46,237
+98442 33257,95262 44233,08-09-2016 23:28:11,234
+92423 51078,78134 03625,08-09-2016 23:28:27,73
+81520 43406,92421 64236,08-09-2016 23:31:13,621
+90352 50054,96566 40412,08-09-2016 23:34:25,9
+97447 92655,87149 75762,08-09-2016 23:38:11,2772
+78298 91466,(022)28952819,08-09-2016 23:40:12,1253
+(080)35986130,78130 36804,08-09-2016 23:52:30,3025
+81519 62015,93430 54160,09-09-2016 06:00:24,233
+92423 51078,78134 03625,09-09-2016 06:01:11,325
+(022)30044349,97385 29751,09-09-2016 06:02:36,646
+90193 61937,(022)66911540,09-09-2016 06:08:14,155
+77950 18278,89078 69605,09-09-2016 06:15:06,161
+(0821)3602212,99007 06998,09-09-2016 06:16:02,707
+(080)32679828,90196 73585,09-09-2016 06:23:20,2163
+81525 12041,90356 11723,09-09-2016 06:42:49,74
+(04344)322628,97427 87999,09-09-2016 06:44:09,126
+98440 68457,95264 40233,09-09-2016 06:50:40,20
+78293 38561,(080)21129907,09-09-2016 06:56:06,576
+(080)30231886,81513 30231,09-09-2016 06:56:22,693
+(080)34932254,81513 36123,09-09-2016 06:58:53,608
+(044)49481100,(080)69245029,09-09-2016 07:01:09,141
+78134 03625,92423 51078,09-09-2016 07:05:38,1006
+92411 96415,97406 74488,09-09-2016 07:19:26,416
+98444 63396,(022)46574732,09-09-2016 07:44:06,349
+92423 51078,(080)25863765,09-09-2016 07:50:11,2091
+(080)49328664,94005 20878,09-09-2016 08:04:04,1866
+99001 95783,(080)60068611,09-09-2016 08:05:44,3294
+(080)69609453,(080)25863765,09-09-2016 08:08:42,1646
+97406 06245,(0471)2225098,09-09-2016 08:11:21,2219
+98440 65896,(080)47459867,09-09-2016 08:21:51,204
+92424 51984,(04344)617351,09-09-2016 08:30:13,693
+(080)35538852,98459 20681,09-09-2016 08:47:24,532
+(080)68739140,97406 74488,09-09-2016 09:09:34,580
+90359 79636,70121 27677,09-09-2016 09:09:52,158
+99006 60463,99003 88572,09-09-2016 09:12:15,570
+(044)69775060,78134 03625,09-09-2016 09:16:50,192
+78295 48262,70121 27677,09-09-2016 09:23:29,3376
+98454 07778,97421 07528,09-09-2016 09:28:33,3243
+78299 99223,92424 51984,09-09-2016 09:38:51,87
+(04546)388977,89071 50880,09-09-2016 09:48:04,2836
+93412 66159,98454 07778,09-09-2016 09:52:35,114
+97427 87999,(04344)322628,09-09-2016 09:52:38,765
+97446 95253,97428 35959,09-09-2016 10:04:54,1069
+77956 55474,(044)30360652,09-09-2016 10:11:45,2548
+78290 99865,89071 31755,09-09-2016 10:24:35,2703
+70129 62374,98441 32533,09-09-2016 10:30:40,2325
+(080)67362492,(04344)316423,09-09-2016 10:33:15,2093
+92411 96415,97406 74488,09-09-2016 10:49:02,190
+(080)43685310,84312 48999,09-09-2016 10:59:13,681
+90351 35947,(080)35121497,09-09-2016 11:06:08,802
+94005 20878,(080)49328664,09-09-2016 11:08:31,3605
+99003 47921,98444 95768,09-09-2016 11:13:54,203
+97399 92703,78136 42599,09-09-2016 11:19:20,120
+(080)46772413,(04344)211113,09-09-2016 11:31:35,2706
+97424 53609,97385 70012,09-09-2016 11:39:11,860
+89071 32787,(044)48154960,09-09-2016 11:52:52,255
+(022)44927512,(0471)2953539,09-09-2016 12:04:35,187
+94001 62063,(080)33251027,09-09-2016 12:07:18,71
+70127 59322,78133 71458,09-09-2016 12:17:03,839
+95263 76972,(080)62342282,09-09-2016 12:19:17,1273
+(044)49868415,90196 73585,09-09-2016 12:22:53,1121
+70121 27677,90359 79636,09-09-2016 12:28:15,3054
+(022)39006198,97447 92655,09-09-2016 12:32:01,3497
+98444 72482,98446 78140,09-09-2016 12:44:14,69
+78295 60375,93410 98013,09-09-2016 12:46:36,308
+92428 82401,97385 29751,09-09-2016 12:49:38,940
+1404787681,99613 05278,09-09-2016 13:03:37,50
+70127 59322,78133 71458,09-09-2016 13:06:02,210
+74292 23928,(0471)2953539,09-09-2016 13:07:31,584
+98448 88411,(080)64765396,09-09-2016 13:11:20,1263
+90197 69887,99610 89720,09-09-2016 13:17:21,1523
+90351 35947,(080)35121497,09-09-2016 13:18:48,888
+(080)29435303,(080)43685310,09-09-2016 13:38:26,3199
+98446 78140,(080)35538852,09-09-2016 13:51:01,168
+87146 31956,83019 39880,09-09-2016 13:56:55,57
+97403 09983,97406 06245,09-09-2016 13:57:05,1989
+94005 20878,(04344)649705,09-09-2016 14:03:24,2398
+(080)49328664,94005 20878,09-09-2016 14:15:25,684
+90355 10919,81510 47188,09-09-2016 14:21:53,1805
+90359 52497,(0824)2145844,09-09-2016 14:29:28,2120
+(080)33251027,(080)49796269,09-09-2016 14:33:32,1226
+92415 91418,94489 72078,09-09-2016 14:35:33,46
+(044)41581342,97429 02055,09-09-2016 14:41:37,80
+89078 69605,77950 18278,09-09-2016 14:43:29,854
+97421 07528,97399 92703,09-09-2016 14:45:26,631
+98440 65896,98446 78140,09-09-2016 14:46:02,957
+87140 67779,89072 39789,09-09-2016 14:47:35,163
+(080)35121497,90087 42537,09-09-2016 14:47:54,9
+99001 95783,98459 20681,09-09-2016 14:48:59,2443
+(080)22759842,(080)43562014,09-09-2016 14:50:16,883
+(080)35538852,98459 20681,09-09-2016 14:56:45,153
+98459 20681,(080)35538852,09-09-2016 14:58:30,233
+97424 53609,97385 70012,09-09-2016 15:06:22,2444
+95269 20533,97449 50000,09-09-2016 15:09:43,781
+78136 54214,(0471)6537077,09-09-2016 15:30:11,2172
+97391 99665,90368 72970,09-09-2016 15:34:26,2514
+(080)34121098,95267 70383,09-09-2016 15:36:58,2282
+(080)46772413,(04344)211113,09-09-2016 15:40:52,2177
+(0471)6537077,78136 54214,09-09-2016 15:50:37,193
+(044)45416964,92425 27794,09-09-2016 15:51:31,129
+89071 31755,78290 99865,09-09-2016 15:58:15,267
+97385 29751,(022)30044349,09-09-2016 16:06:37,118
+(080)60998034,81517 73746,09-09-2016 16:13:32,3049
+87144 42283,98458 13389,09-09-2016 16:14:19,2643
+98448 86633,78293 91304,09-09-2016 16:23:21,1166
+98444 63396,(022)46574732,09-09-2016 16:29:53,2150
+(0821)2135265,81524 55552,09-09-2016 16:39:33,321
+97391 99665,90355 94399,09-09-2016 16:41:36,862
+78136 42599,97399 92703,09-09-2016 16:49:04,144
+(022)21884607,90083 59148,09-09-2016 16:53:05,1113
+90088 09624,94480 64700,09-09-2016 16:54:45,132
+90352 50054,96566 40412,09-09-2016 16:57:02,3053
+97402 57057,(080)45547058,09-09-2016 17:07:31,2073
+78295 48262,70121 27677,09-09-2016 17:10:43,9
+(040)69695864,97406 93118,09-09-2016 17:15:16,2870
+(080)45291968,94482 95223,09-09-2016 17:18:49,2323
+97399 92703,97421 07528,09-09-2016 17:21:41,292
+97389 12538,90352 50054,09-09-2016 17:21:41,712
+95266 42732,(080)45291968,09-09-2016 17:21:42,2583
+(080)68104927,87146 31956,09-09-2016 17:27:22,2224
+(04344)649705,90193 16567,09-09-2016 17:29:31,2499
+(080)45291968,90365 06212,09-09-2016 17:29:39,3832
+93432 65750,(080)20123809,09-09-2016 17:32:55,38
+92415 91418,(080)48462898,09-09-2016 17:36:30,1422
+97425 92186,94482 95223,09-09-2016 17:38:13,229
+(022)44927512,(0471)2953539,09-09-2016 17:39:19,229
+74066 93594,(080)62164823,09-09-2016 17:39:22,120
+99001 95783,78298 02848,09-09-2016 17:52:20,279
+99612 41256,90197 24124,09-09-2016 17:54:00,154
+1409421631,97420 63582,09-09-2016 18:00:15,55
+90084 16988,98449 60656,09-09-2016 18:00:16,3282
+(080)39755879,90355 94399,09-09-2016 18:13:29,532
+90196 73585,(044)49868415,09-09-2016 18:24:40,3130
+97449 50000,78295 78750,09-09-2016 18:25:16,770
+97390 23922,99004 86250,09-09-2016 18:30:35,328
+92414 22596,(044)30727085,09-09-2016 18:32:36,61
+(04344)228249,98453 46196,09-09-2016 18:41:45,1495
+99007 06998,(0821)3602212,09-09-2016 18:43:36,583
+93430 54160,(04344)615310,09-09-2016 18:52:31,998
+81522 26166,(080)46566171,09-09-2016 18:55:27,9
+98458 13389,87144 42283,09-09-2016 19:01:20,101
+90197 69887,99610 89720,09-09-2016 19:01:51,110
+(080)33277651,97418 46131,09-09-2016 19:05:53,189
+(022)32517986,(080)21129907,09-09-2016 19:06:18,140
+78138 56841,93416 07259,09-09-2016 19:09:20,56
+93435 98939,97403 49292,09-09-2016 19:10:08,863
+(080)46304537,98447 62998,09-09-2016 19:21:00,9
+(080)62963633,98443 99204,09-09-2016 19:22:42,426
+93432 24657,(044)27523585,09-09-2016 19:23:45,642
+90355 10919,81510 47188,09-09-2016 19:41:17,274
+74066 31484,98454 90038,09-09-2016 19:47:11,109
+92426 72402,97416 29480,09-09-2016 19:52:08,1928
+(080)22759842,(080)43562014,09-09-2016 19:54:36,345
+(080)35121497,90351 35947,09-09-2016 19:59:51,74
+(080)46702492,(080)44046839,09-09-2016 20:04:13,1716
+(08214175)358,97419 90520,09-09-2016 20:06:16,1901
+87149 75762,97447 92655,09-09-2016 20:08:33,103
+98453 46196,(04344)228249,09-09-2016 20:14:02,117
+97385 70012,97424 53609,09-09-2016 20:15:03,173
+(0471)2225098,97406 06245,09-09-2016 20:22:20,451
+93428 98469,(080)66044294,09-09-2016 20:24:13,2451
+(080)64765396,98448 88411,09-09-2016 20:49:11,935
+(0821)4753474,97404 90013,09-09-2016 21:01:57,339
+(080)45547058,84319 52539,09-09-2016 21:03:56,200
+(04344)228249,98453 46196,09-09-2016 21:05:47,9
+98445 27876,(080)32390650,09-09-2016 21:07:57,749
+92428 82401,97385 29751,09-09-2016 21:13:17,1894
+99007 06998,84314 00609,09-09-2016 21:16:44,100
+95267 70383,97414 62027,09-09-2016 21:23:49,289
+94482 95223,97425 92186,09-09-2016 21:29:10,25
+97406 74488,92411 96415,09-09-2016 21:41:45,1078
+90088 09624,(080)22816760,09-09-2016 21:41:49,519
+(08214175)358,97419 90520,09-09-2016 21:49:38,119
+74066 93594,(080)62164823,09-09-2016 21:51:08,241
+(022)38214945,(080)65647085,09-09-2016 21:55:08,245
+90194 00845,(040)26738737,09-09-2016 21:55:16,303
+90359 79636,70121 27677,09-09-2016 22:01:13,616
+(044)27641880,97416 18084,09-09-2016 22:01:20,810
+81520 43406,(040)69695864,09-09-2016 22:02:47,2767
+90088 09624,94480 64700,09-09-2016 22:04:18,387
+98440 68457,95264 40233,09-09-2016 22:09:47,2067
+97404 90013,(0821)4753474,09-09-2016 22:12:43,1026
+81510 47188,90355 10919,09-09-2016 22:13:05,212
+90197 69887,99610 89720,09-09-2016 22:19:17,939
+(044)49868415,98447 63400,09-09-2016 22:27:33,9
+97403 88244,(022)46574732,09-09-2016 22:28:03,2566
+74066 93594,78136 65840,09-09-2016 22:33:38,9
+78136 54214,(0471)6537077,09-09-2016 22:36:33,87
+(04344)316423,(080)67362492,09-09-2016 22:44:26,562
+(080)69245029,(044)49481100,09-09-2016 22:45:00,170
+98445 85687,90197 38885,09-09-2016 22:47:10,180
+92421 09526,(080)69150162,09-09-2016 22:57:13,2250
+99004 86250,95262 44233,09-09-2016 23:03:21,3581
+97425 12708,90366 36573,09-09-2016 23:05:37,2631
+94492 23068,90359 91512,09-09-2016 23:11:19,9
+77956 90632,78132 18081,09-09-2016 23:13:32,740
+97406 93118,(040)69695864,09-09-2016 23:17:50,211
+78130 00821,98453 94494,09-09-2016 23:19:20,61
+87144 42283,98458 13389,09-09-2016 23:20:26,785
+97406 74488,92411 96415,09-09-2016 23:22:22,215
+99003 47921,98444 95768,09-09-2016 23:35:28,30
+97403 09983,97406 06245,09-09-2016 23:41:58,2554
+90084 16988,98449 60656,09-09-2016 23:43:27,128
+99001 95783,98459 20681,09-09-2016 23:45:17,63
+(022)66911540,93426 88474,09-09-2016 23:58:54,287
+93415 21881,98454 90038,10-09-2016 06:06:03,1986
+90084 16988,93422 47940,10-09-2016 06:14:32,139
+70121 27677,78295 48262,10-09-2016 06:23:31,2073
+99612 41256,(080)43206415,10-09-2016 06:31:46,620
+(080)43685310,(080)29435303,10-09-2016 06:34:35,800
+(080)43562014,(080)22759842,10-09-2016 06:44:10,973
+(022)28952819,(080)25863765,10-09-2016 06:44:51,595
+(080)62164823,(022)22288051,10-09-2016 06:51:20,336
+83019 39880,87146 31956,10-09-2016 06:54:16,189
+92426 72402,97416 29480,10-09-2016 07:08:19,122
+(044)30727085,92414 22596,10-09-2016 07:17:43,2680
+(080)22816760,90088 09624,10-09-2016 07:18:47,183
+97422 22278,98446 66723,10-09-2016 07:34:41,268
+(0821)3602212,99007 06998,10-09-2016 07:49:40,524
+(0471)4255177,74298 85702,10-09-2016 07:56:14,970
+99001 95783,78298 02848,10-09-2016 07:57:24,137
+(080)41712046,97410 27512,10-09-2016 08:01:51,253
+98440 65896,(080)47459867,10-09-2016 08:09:24,391
+99007 06998,(0821)3602212,10-09-2016 08:19:02,2483
+95262 44233,97393 04671,10-09-2016 08:23:18,9
+84319 52539,(080)45547058,10-09-2016 08:26:05,1514
+(04344)615310,93430 54160,10-09-2016 08:30:52,811
+(044)49868415,90196 73585,10-09-2016 08:34:21,181
+97419 90520,(08214175)358,10-09-2016 08:35:55,3495
+74065 10917,90198 03659,10-09-2016 08:37:31,837
+87146 31956,(080)68104927,10-09-2016 08:56:03,31
+97414 97237,87146 58071,10-09-2016 09:10:25,1117
+98444 95768,90194 08626,10-09-2016 09:22:59,2380
+97380 60551,78298 91466,10-09-2016 09:26:12,2775
+1408672243,99007 06998,10-09-2016 09:48:22,51
+1408672243,81522 26166,10-09-2016 10:17:00,10
+90356 11723,81525 12041,10-09-2016 10:24:11,347
+(022)21884607,90083 59148,10-09-2016 10:32:13,579
+(080)47999451,74064 33807,10-09-2016 10:47:37,1130
+(022)66911540,(080)25863765,10-09-2016 10:57:38,2242
+(080)43685310,(080)29435303,10-09-2016 11:08:18,2781
+(04546)388977,89071 50880,10-09-2016 11:10:39,49
+97421 07528,97399 92703,10-09-2016 11:19:52,53
+(044)20550065,84319 52539,10-09-2016 11:36:13,697
+(080)43215621,(080)32647101,10-09-2016 11:57:07,129
+(080)66044294,93428 98469,10-09-2016 12:09:26,225
+83013 02552,94499 46077,10-09-2016 12:16:08,9
+(040)69695864,97406 93118,10-09-2016 12:30:12,909
+90355 94399,97391 99665,10-09-2016 12:37:12,131
+(080)41203315,(080)61419142,10-09-2016 12:38:16,2637
+97389 12538,90352 50054,10-09-2016 12:57:39,272
+97406 06245,97403 09983,10-09-2016 12:57:58,447
+(044)27641880,97416 18084,10-09-2016 13:01:36,323
+(080)44076727,97415 99182,10-09-2016 13:08:26,830
+78138 56841,93416 07259,10-09-2016 13:11:40,219
+(080)21652896,(040)26738737,10-09-2016 13:20:14,702
+(080)35538852,98446 78140,10-09-2016 13:22:38,2192
+97403 49292,93435 98939,10-09-2016 13:23:13,64
+95267 70383,(080)34121098,10-09-2016 13:42:31,59
+94001 07403,90368 72970,10-09-2016 13:44:34,2432
+(080)39991213,94495 34273,10-09-2016 14:03:51,3461
+90368 72970,94001 07403,10-09-2016 14:12:20,1914
+99009 32475,(011)47486239,10-09-2016 14:14:43,375
+84311 10322,(0824)2022081,10-09-2016 14:29:00,922
+90192 87313,78139 24512,10-09-2016 14:40:12,209
+(044)27523585,93432 24657,10-09-2016 14:44:12,821
+(080)69150162,92421 09526,10-09-2016 14:47:49,839
+(080)61419142,(080)41203315,10-09-2016 15:11:28,3247
+(080)21652896,(040)26738737,10-09-2016 15:11:37,24
+94485 80091,84312 48999,10-09-2016 15:11:38,570
+(080)66044294,93428 98469,10-09-2016 15:13:44,1849
+(080)41712046,97410 27512,10-09-2016 15:21:58,2655
+97391 99665,90368 72970,10-09-2016 15:22:50,164
+99006 60463,99003 88572,10-09-2016 15:32:13,1714
+93427 56500,(044)24037112,10-09-2016 15:49:06,3316
+1409668775,(080)23802940,10-09-2016 16:07:27,77
+99001 95783,78298 02848,10-09-2016 16:15:59,162
+90199 67471,90351 49472,10-09-2016 16:29:01,9
+1407539117,90365 82019,10-09-2016 16:33:05,71
+(044)27523585,93432 24657,10-09-2016 16:52:02,473
+90192 87313,(080)33251027,10-09-2016 16:52:57,526
+98453 94494,78130 00821,10-09-2016 17:18:24,183
+1400481538,(080)32828889,10-09-2016 17:20:21,881
+(080)32638303,98458 94162,10-09-2016 17:32:15,2112
+99002 80226,90085 20915,10-09-2016 17:33:34,3384
+1404073047,98454 59941,10-09-2016 17:35:27,40
+97422 22278,(080)63623429,10-09-2016 17:43:57,976
+87144 42283,98458 13389,10-09-2016 17:50:14,9
+(044)30727085,92414 22596,10-09-2016 18:19:22,2575
+81510 47188,90355 10919,10-09-2016 18:22:04,692
+77956 90632,(0821)3537229,10-09-2016 18:22:25,75
+90365 06212,(080)45291968,10-09-2016 18:24:49,176
+93412 26084,(022)47410783,10-09-2016 18:34:15,163
+(080)33251027,(080)49796269,10-09-2016 18:35:46,142
+(044)49481100,(080)69245029,10-09-2016 18:37:45,306
+98458 13389,87144 42283,10-09-2016 18:41:23,3685
+97416 18084,(044)27641880,10-09-2016 18:50:16,2854
+(0471)2953539,(022)44927512,10-09-2016 18:50:21,937
+(040)69695864,97406 93118,10-09-2016 18:52:23,200
+90365 51029,94499 38099,10-09-2016 18:54:18,3424
+94480 64700,(080)32828889,10-09-2016 18:55:49,79
+99001 95783,78298 02848,10-09-2016 19:00:15,987
+78138 56841,99009 32475,10-09-2016 19:04:12,2420
+97414 62784,98449 60656,10-09-2016 19:07:09,295
+(080)65275591,98442 73671,10-09-2016 19:12:19,721
+84319 52539,(044)20550065,10-09-2016 19:35:19,223
+90359 52497,97390 23922,10-09-2016 19:35:45,1239
+1408371942,93436 09781,10-09-2016 19:47:23,221
+(022)47410783,93412 26084,10-09-2016 19:54:44,754
+98440 65896,(080)47459867,10-09-2016 20:01:13,948
+(080)43685310,84312 48999,10-09-2016 20:08:59,2498
+(080)68104927,87146 31956,10-09-2016 20:11:04,9
+(022)22288051,(080)62164823,10-09-2016 20:33:49,1927
+90359 52497,(0824)2145844,10-09-2016 20:41:56,739
+94497 77615,(0824)6366719,10-09-2016 20:44:39,104
+92414 22596,(080)32647101,10-09-2016 21:05:05,94
+78138 93826,96569 95359,10-09-2016 21:10:49,123
+90197 38885,98445 85687,10-09-2016 21:13:29,840
+98453 94494,78130 00821,10-09-2016 21:15:02,831
+97418 46131,(080)33277651,10-09-2016 21:16:01,872
+90359 52497,(0824)2145844,10-09-2016 21:18:42,155
+(080)47459867,(080)43215621,10-09-2016 21:27:27,174
+(080)21652896,(040)26738737,10-09-2016 21:34:45,2244
+78136 42599,97399 92703,10-09-2016 21:39:13,1092
+(080)26097534,(080)39755879,10-09-2016 21:44:30,171
+94491 55790,90359 99240,10-09-2016 21:44:48,932
+78298 91466,97380 60551,10-09-2016 21:48:45,159
+93412 26084,(022)47410783,10-09-2016 21:48:47,2577
+97415 99182,(080)44076727,10-09-2016 21:49:12,54
+78298 02848,99001 95783,10-09-2016 21:49:50,31
+(044)25144377,78993 89387,10-09-2016 22:02:29,225
+99004 86250,95262 44233,10-09-2016 22:07:15,319
+98443 72004,78132 18081,10-09-2016 22:11:46,657
+(080)45291968,94482 95223,10-09-2016 22:12:20,1215
+87149 75762,97447 92655,10-09-2016 22:13:42,1065
+(080)49328664,94005 20878,10-09-2016 22:15:09,59
+(04344)649705,94005 20878,10-09-2016 22:18:20,158
+94480 64700,90088 09624,10-09-2016 22:23:18,2429
+(022)21884607,90083 59148,10-09-2016 22:25:37,891
+94482 95223,(080)45291968,10-09-2016 22:27:51,186
+(080)41336994,97406 93118,10-09-2016 22:29:23,29
+(080)34121098,95267 70383,10-09-2016 22:45:01,1381
+(022)39006198,97447 92655,10-09-2016 22:47:12,296
+(022)39006198,97447 92655,10-09-2016 22:47:34,1390
+78298 91466,97380 60551,10-09-2016 22:48:07,589
+97416 17124,90194 00845,10-09-2016 22:53:04,416
+90085 20915,99002 80226,10-09-2016 22:53:55,2002
+90365 51029,94499 38099,10-09-2016 22:58:48,2982
+98452 19037,90355 94399,10-09-2016 23:02:47,931
+93412 66159,98454 07778,10-09-2016 23:07:05,1383
+(080)29435303,(080)43685310,10-09-2016 23:09:54,39
+(080)29435303,(080)43685310,10-09-2016 23:14:16,431
+(080)69104549,98448 87878,10-09-2016 23:23:08,273
+94489 82688,(033)25441815,10-09-2016 23:23:35,759
+(080)66857551,(040)66729318,10-09-2016 23:30:19,1408
+(080)48462898,90199 67471,10-09-2016 23:31:50,284
+(04344)649705,94005 20878,10-09-2016 23:42:28,310
+97385 70012,94497 44333,10-09-2016 23:46:25,592
+(022)45444747,92426 65661,10-09-2016 23:52:52,2512
+(04344)228249,(080)43901222,10-09-2016 23:57:16,106
+98440 65896,(080)47459867,10-09-2016 23:58:25,2059
+(080)33251027,94001 62063,11-09-2016 06:14:26,1020
+94491 55790,90359 99240,11-09-2016 06:15:20,2343
+97416 29480,92426 72402,11-09-2016 06:16:40,345
+90088 09624,94480 64700,11-09-2016 06:20:57,3695
+97380 60551,81524 55552,11-09-2016 06:21:39,3148
+(080)32390650,98445 27876,11-09-2016 06:34:15,864
+(022)46574732,97403 88244,11-09-2016 06:40:03,1049
+93434 31551,90088 09624,11-09-2016 06:45:15,179
+94480 64700,90088 09624,11-09-2016 06:50:56,241
+81513 30231,(080)30231886,11-09-2016 06:57:27,1172
+(0471)6579079,(080)23180345,11-09-2016 07:01:14,70
+78133 71458,70127 59322,11-09-2016 07:03:46,36
+(080)32390650,98445 27876,11-09-2016 07:06:37,17
+98456 86153,90197 24124,11-09-2016 07:10:15,1009
+(022)28952819,78298 91466,11-09-2016 07:12:10,149
+90198 03659,74065 10917,11-09-2016 07:12:36,12
+(080)49796269,(080)33251027,11-09-2016 07:22:42,1052
+84319 52539,(080)45547058,11-09-2016 07:24:22,201
+(0471)2225098,97406 06245,11-09-2016 07:24:30,924
+90355 10919,(04344)322628,11-09-2016 07:35:46,94
+97425 79921,(0471)2953539,11-09-2016 07:40:06,309
+(080)35986130,93432 65750,11-09-2016 07:46:10,2559
+74064 66270,(080)47999451,11-09-2016 07:49:04,805
+98457 75681,(022)38214945,11-09-2016 08:02:33,875
+(044)24037112,93427 56500,11-09-2016 08:04:48,802
+(080)64047472,(080)20227149,11-09-2016 08:10:22,244
+99612 41256,90197 24124,11-09-2016 08:34:05,2980
+(080)49328664,94005 20878,11-09-2016 08:50:33,109
+84311 10322,90359 79636,11-09-2016 08:54:40,269
+97429 02055,(044)41581342,11-09-2016 08:59:27,173
+95269 20533,97449 50000,11-09-2016 09:04:02,3652
+93422 47940,90084 16988,11-09-2016 09:05:58,189
+93416 07259,78138 56841,11-09-2016 09:06:55,65
+90355 10919,(04344)322628,11-09-2016 09:08:08,9
+81513 36123,(080)34121098,11-09-2016 09:10:05,137
+(080)61123756,(080)47459867,11-09-2016 09:10:15,3355
+98454 90038,74066 31484,11-09-2016 09:23:27,623
+97399 92703,97421 07528,11-09-2016 09:26:26,665
+(04546)267875,(080)22759842,11-09-2016 09:43:35,3188
+(080)35538852,98446 78140,11-09-2016 09:47:14,797
+97404 90013,(0821)4753474,11-09-2016 09:50:36,3556
+98444 95768,99003 47921,11-09-2016 09:51:33,527
+78298 02848,99001 95783,11-09-2016 09:51:37,920
+97385 29751,(022)30044349,11-09-2016 10:11:38,1086
+77956 90632,(0821)3537229,11-09-2016 10:20:50,2584
+92426 72402,97416 29480,11-09-2016 10:23:42,2896
+1404787681,98448 87878,11-09-2016 10:30:55,76
+78134 03625,(044)69775060,11-09-2016 10:35:10,788
+90366 36573,98448 87878,11-09-2016 10:46:15,2867
+(022)62120910,98447 12671,11-09-2016 10:49:13,628
+98449 60656,90084 16988,11-09-2016 10:54:11,3087
+90088 09624,94480 64700,11-09-2016 11:00:21,19
+(080)69245029,(044)49481100,11-09-2016 11:08:10,937
+92414 22596,(080)32647101,11-09-2016 11:09:56,272
+97418 46131,(080)33277651,11-09-2016 11:19:37,4232
+87146 31956,97384 69866,11-09-2016 11:21:04,42
+94480 64700,90088 09624,11-09-2016 11:32:44,936
+97380 60551,81524 55552,11-09-2016 11:33:37,641
+(080)32390650,(080)43562014,11-09-2016 11:35:45,1993
+(011)68486606,(080)32255824,11-09-2016 11:42:04,418
+90197 38885,98445 85687,11-09-2016 11:44:23,2124
+(080)25863765,92423 51078,11-09-2016 11:55:18,973
+(080)62963633,98443 99204,11-09-2016 12:03:52,340
+98440 65896,(080)47459867,11-09-2016 12:07:43,206
+(0471)6537077,78136 54214,11-09-2016 12:10:28,201
+98446 66723,97422 22278,11-09-2016 12:15:12,44
+98440 65896,93418 41992,11-09-2016 12:28:15,421
+98446 78140,98444 72482,11-09-2016 12:31:50,107
+(080)45291968,94482 95223,11-09-2016 12:35:44,137
+90192 30758,(080)64431120,11-09-2016 12:37:32,55
+99612 41256,(080)43206415,11-09-2016 12:49:55,1499
+74066 31484,98454 90038,11-09-2016 12:50:43,2904
+94497 44333,97385 70012,11-09-2016 12:53:43,2106
+90082 61126,90366 69257,11-09-2016 12:59:21,2356
+90355 94399,98452 19037,11-09-2016 13:04:16,213
+(011)68486606,(080)32255824,11-09-2016 13:05:44,9
+84312 48999,(080)43685310,11-09-2016 13:15:26,875
+(080)22759842,(04546)267875,11-09-2016 13:17:04,152
+97424 21092,98451 87493,11-09-2016 13:20:12,42
+(033)25441815,94489 82688,11-09-2016 13:21:19,9
+90197 24124,99612 41256,11-09-2016 13:25:18,577
+94001 07403,90368 72970,11-09-2016 13:48:29,1159
+70121 27677,78295 48262,11-09-2016 13:50:43,91
+81522 26166,(080)46566171,11-09-2016 13:53:27,1801
+(044)69775060,90356 11723,11-09-2016 14:00:44,112
+92414 22596,(080)32647101,11-09-2016 14:11:40,1414
+(080)43215621,(080)47459867,11-09-2016 14:14:07,23
+94480 64700,(080)32828889,11-09-2016 14:27:32,1119
+90082 61126,90366 69257,11-09-2016 14:29:56,116
+90366 36573,97425 12708,11-09-2016 14:30:42,87
+90355 94399,98452 19037,11-09-2016 14:34:56,1387
+97414 62027,95267 70383,11-09-2016 14:38:17,154
+93430 54160,(04344)615310,11-09-2016 14:46:30,97
+94497 77615,(0824)6366719,11-09-2016 14:48:26,1504
+97406 93118,(040)69695864,11-09-2016 14:49:41,169
+(044)30727085,92414 22596,11-09-2016 14:52:31,1170
+93434 31551,90088 09624,11-09-2016 14:58:54,158
+94497 77615,(0824)6366719,11-09-2016 15:05:38,1945
+90083 59148,(022)21884607,11-09-2016 15:10:37,584
+(044)27523585,93432 24657,11-09-2016 15:11:45,1014
+1402316533,97446 95253,11-09-2016 15:17:56,74
+(080)22816760,(0821)6141380,11-09-2016 15:19:29,948
+(080)62164823,(080)32255824,11-09-2016 15:30:21,9
+81513 36123,(080)34121098,11-09-2016 15:37:31,1062
+93432 65750,(080)20123809,11-09-2016 15:37:52,852
+98440 71648,(080)27498339,11-09-2016 15:46:21,156
+97424 22395,90357 25284,11-09-2016 15:49:52,4141
+74292 23928,(0471)2953539,11-09-2016 15:50:23,159
+78298 02848,99001 95783,11-09-2016 16:08:51,2811
+(080)62342282,95263 76972,11-09-2016 16:12:16,3728
+(080)32828889,94480 64700,11-09-2016 16:13:25,82
+78298 91466,97380 60551,11-09-2016 16:13:27,224
+98444 16192,(022)28765220,11-09-2016 16:27:53,45
+98454 90038,93415 21881,11-09-2016 16:33:27,1735
+78136 42599,97399 92703,11-09-2016 16:35:23,729
+97402 57057,(080)45547058,11-09-2016 16:35:52,429
+(080)41712046,97410 27512,11-09-2016 16:53:14,135
+97380 60551,90365 51029,11-09-2016 17:02:21,825
+78138 93826,96569 95359,11-09-2016 17:02:46,267
+95262 44233,99004 86250,11-09-2016 17:13:49,218
+(022)38214945,98457 75681,11-09-2016 17:14:08,4106
+98440 68457,95264 40233,11-09-2016 17:28:40,2443
+93432 65750,92425 27794,11-09-2016 17:38:41,462
+81522 26166,97414 62784,11-09-2016 17:42:55,160
+1409421631,(080)63559298,11-09-2016 18:07:09,46
+97406 06245,93428 11808,11-09-2016 18:07:58,1039
+(022)21884607,90083 59148,11-09-2016 18:11:48,78
+(0821)6141380,90366 69257,11-09-2016 18:15:01,2374
+90192 30758,(080)64431120,11-09-2016 18:17:35,99
+92411 96415,93435 21961,11-09-2016 18:28:39,9
+(04344)316423,(080)67362492,11-09-2016 18:44:10,2594
+(080)35121497,90087 42537,11-09-2016 19:02:46,3270
+94489 72078,92415 91418,11-09-2016 19:05:52,1286
+(04344)322628,97427 87999,11-09-2016 19:34:14,2690
+(040)66729318,97386 20071,11-09-2016 19:35:11,9
+78138 56841,93416 07259,11-09-2016 19:35:30,752
+92423 51078,78134 03625,11-09-2016 19:35:55,95
+(080)32828889,94480 64700,11-09-2016 19:40:13,78
+(080)35987804,74062 28875,11-09-2016 19:40:52,3691
+(033)25441815,(0471)6537077,11-09-2016 19:43:03,1536
+98445 42844,99617 74886,11-09-2016 19:58:48,77
+(0824)6366719,94497 77615,11-09-2016 20:12:40,2653
+90359 79636,70121 27677,11-09-2016 20:20:25,17
+94487 29969,97419 41164,11-09-2016 20:21:25,273
+78136 65840,74066 93594,11-09-2016 20:23:46,122
+97406 74488,90358 98099,11-09-2016 20:23:58,360
+(04344)322628,90355 10919,11-09-2016 20:26:44,1019
+(080)66857551,(040)66729318,11-09-2016 20:38:06,1196
+97399 92703,78136 42599,11-09-2016 20:51:59,208
+78295 48262,70121 27677,11-09-2016 20:54:28,3265
+99003 47921,98444 95768,11-09-2016 21:00:01,618
+(080)62164823,(080)32255824,11-09-2016 21:00:44,128
+(022)40840621,97393 52893,11-09-2016 21:04:47,245
+98440 02823,81515 42171,11-09-2016 21:19:17,220
+90365 51029,97380 60551,11-09-2016 21:32:07,206
+90197 38885,98445 85687,11-09-2016 21:33:55,709
+98444 95768,99003 47921,11-09-2016 21:34:57,168
+(080)62164823,(080)32255824,11-09-2016 21:35:25,2217
+(080)35538852,98459 20681,11-09-2016 21:42:20,9
+(044)49481100,(080)69245029,11-09-2016 21:50:36,27
+99007 06998,(0821)3602212,11-09-2016 21:50:39,716
+89071 31755,78290 99865,11-09-2016 22:02:01,258
+93418 82576,94489 95536,11-09-2016 22:12:11,644
+(022)32517986,(080)21129907,11-09-2016 22:13:21,77
+(080)49796269,(080)33251027,11-09-2016 22:29:23,296
+(080)62342282,95263 76972,11-09-2016 22:30:21,9
+98442 73671,(080)69245029,11-09-2016 22:46:12,2070
+99612 41256,90197 24124,11-09-2016 23:11:16,174
+90082 61126,90366 69257,11-09-2016 23:22:41,55
+(04344)228249,(080)43901222,11-09-2016 23:28:03,101
+94492 23068,90359 91512,11-09-2016 23:29:12,300
+(04344)649705,94005 20878,11-09-2016 23:37:42,115
+99007 06998,(0821)3602212,11-09-2016 23:50:27,1037
+(080)25863765,92423 51078,12-09-2016 06:04:25,88
+78290 99865,89071 31755,12-09-2016 06:06:37,1288
+78295 20931,(080)35987804,12-09-2016 06:08:57,245
+84314 00609,99007 06998,12-09-2016 06:21:52,914
+(080)34121098,81513 36123,12-09-2016 06:27:01,887
+98458 13389,87144 42283,12-09-2016 06:33:04,270
+78295 65598,84313 45689,12-09-2016 06:36:58,170
+94497 44333,97385 70012,12-09-2016 06:40:38,833
+94497 44333,97385 70012,12-09-2016 06:43:21,745
+90365 06212,(080)45291968,12-09-2016 06:53:31,553
+(080)45687418,93414 19669,12-09-2016 06:58:04,221
+95262 44233,97393 04671,12-09-2016 06:58:08,151
+92424 51984,78299 99223,12-09-2016 06:58:47,948
+(080)45291968,95266 42732,12-09-2016 07:18:26,2040
+(080)32647101,92414 22596,12-09-2016 07:24:31,504
+(080)45687418,93414 19669,12-09-2016 07:24:38,663
+(080)65023950,94002 85593,12-09-2016 07:25:09,2718
+90197 24124,99612 41256,12-09-2016 07:34:13,546
+(080)40362016,94491 29500,12-09-2016 07:37:14,72
+74066 93594,(080)62164823,12-09-2016 07:40:10,2503
+(080)40929452,77956 55474,12-09-2016 07:41:04,728
+93427 40118,(080)33118033,12-09-2016 07:50:34,150
+94488 97308,(080)21697299,12-09-2016 08:02:38,476
+(044)41581342,97429 02055,12-09-2016 08:10:58,34
+(080)29435303,(080)43685310,12-09-2016 08:14:34,821
+97449 50000,78295 78750,12-09-2016 08:20:02,891
+(0821)3257740,97420 86635,12-09-2016 08:27:53,932
+84311 10322,(0824)2022081,12-09-2016 08:33:12,71
+(040)69695864,97406 93118,12-09-2016 08:38:29,1870
+(080)35538852,98446 78140,12-09-2016 08:59:25,2114
+97402 57057,(080)45547058,12-09-2016 08:59:58,17
+74066 93594,(080)62164823,12-09-2016 09:01:00,971
+(080)41336994,97406 93118,12-09-2016 09:04:16,306
+(080)43562014,(080)22759842,12-09-2016 09:04:18,1971
+97403 49292,93435 98939,12-09-2016 09:09:34,3365
+99007 06998,(0821)3602212,12-09-2016 09:11:41,283
+97380 60551,90365 51029,12-09-2016 09:14:50,2693
+(080)43215621,(080)47459867,12-09-2016 09:31:15,103
+90351 35947,(080)35121497,12-09-2016 09:37:20,1279
+90366 36573,98448 87878,12-09-2016 09:43:06,872
+(080)32390650,(080)43562014,12-09-2016 09:46:32,599
+97385 70012,94497 44333,12-09-2016 10:17:02,1906
+94480 64700,(080)32828889,12-09-2016 10:17:59,1945
+97414 35000,97380 60551,12-09-2016 10:18:29,126
+(080)46772413,(04344)211113,12-09-2016 10:18:31,161
+(080)45547058,84319 52539,12-09-2016 10:26:36,3022
+94005 20878,(080)49328664,12-09-2016 10:35:56,67
+78136 54214,(0471)6537077,12-09-2016 10:37:07,1989
+98449 60656,90084 16988,12-09-2016 10:45:39,3127
+98454 07778,93412 66159,12-09-2016 10:45:49,1197
+93426 76415,(080)20123809,12-09-2016 10:57:25,2156
+78298 91466,97380 60551,12-09-2016 11:03:22,733
+78132 18081,93416 07259,12-09-2016 11:11:08,60
+97429 02055,81510 47188,12-09-2016 11:12:53,400
+84312 48999,(080)43685310,12-09-2016 11:22:20,710
+93426 76415,(080)20123809,12-09-2016 11:24:30,1528
+97447 92655,(022)39006198,12-09-2016 11:25:26,268
+90085 20915,99002 80226,12-09-2016 11:29:13,999
+(080)32390650,98445 27876,12-09-2016 11:34:01,2117
+90197 69887,99610 89720,12-09-2016 11:37:48,452
+78295 65598,84313 45689,12-09-2016 11:40:04,2950
+83015 22251,(011)21017178,12-09-2016 11:40:45,216
+93432 65750,(080)20123809,12-09-2016 11:57:59,910
+78132 18081,77956 90632,12-09-2016 12:05:22,337
+(080)22816760,(0821)6141380,12-09-2016 12:24:00,752
+90368 72970,97391 99665,12-09-2016 12:24:49,2734
+97447 92655,(022)39006198,12-09-2016 12:27:21,104
+90359 52497,(0824)2145844,12-09-2016 12:32:46,40
+(022)38214945,98457 75681,12-09-2016 12:35:45,146
+98444 95768,99003 47921,12-09-2016 12:40:57,2579
+99003 88572,(080)46304537,12-09-2016 12:44:49,2240
+97393 04671,95262 44233,12-09-2016 12:54:56,156
+(04344)228249,98453 46196,12-09-2016 13:00:41,133
+(080)44389098,(080)35986130,12-09-2016 13:22:42,76
+(080)32390650,(080)43562014,12-09-2016 13:26:29,100
+70121 27677,78295 48262,12-09-2016 13:34:16,421
+(080)32828889,94480 64700,12-09-2016 13:42:23,648
+(080)47459867,98440 65896,12-09-2016 13:43:46,2694
+(080)33251027,90192 87313,12-09-2016 13:50:08,1036
+93412 66159,98454 07778,12-09-2016 13:52:18,1697
+99610 89720,90197 69887,12-09-2016 13:56:19,2473
+78293 38561,(080)21129907,12-09-2016 14:03:57,1535
+81517 73746,94497 77615,12-09-2016 14:12:29,74
+94499 38099,90365 51029,12-09-2016 14:14:59,3650
+(080)31606520,99004 86250,12-09-2016 14:19:20,2991
+90194 00845,97416 17124,12-09-2016 14:21:53,9
+(080)69564399,78135 69048,12-09-2016 14:24:20,245
+(044)69775060,81525 12041,12-09-2016 14:34:02,166
+84314 00609,99007 06998,12-09-2016 14:38:16,103
+84311 10322,(0824)2022081,12-09-2016 14:50:49,1361
+(080)35121497,90351 35947,12-09-2016 14:51:09,177
+78290 99865,89071 31755,12-09-2016 15:01:49,755
+(04344)615310,(080)69104549,12-09-2016 15:02:04,504
+(080)32390650,(080)43562014,12-09-2016 15:03:55,58
+74066 31484,98454 90038,12-09-2016 15:07:12,599
+92415 91418,94489 72078,12-09-2016 15:12:13,553
+97424 22395,(022)29303640,12-09-2016 15:25:19,10
+90088 09624,94480 64700,12-09-2016 15:25:49,866
+99007 06998,84314 00609,12-09-2016 15:26:11,1883
+1401747654,(080)22748361,12-09-2016 15:26:35,100
+98447 12671,93427 56500,12-09-2016 16:03:27,60
+(04344)316423,(080)67362492,12-09-2016 16:10:17,117
+95267 70383,(080)34121098,12-09-2016 16:14:19,2632
+(080)40362016,94491 29500,12-09-2016 16:22:50,856
+(080)46221576,78295 48262,12-09-2016 16:25:22,50
+97410 27512,(080)41712046,12-09-2016 16:40:01,3989
+97422 22278,(080)63623429,12-09-2016 16:53:36,995
+97424 22395,(022)29303640,12-09-2016 16:58:19,232
+98447 62998,(080)46304537,12-09-2016 17:04:10,14
+92423 51078,(080)44076727,12-09-2016 17:10:16,804
+98454 90038,93415 21881,12-09-2016 17:28:01,846
+93428 11808,96565 52272,12-09-2016 17:37:54,209
+97403 49292,93435 98939,12-09-2016 17:40:01,2441
+97399 92703,97421 07528,12-09-2016 17:50:13,9
+90351 35947,(080)35121497,12-09-2016 17:54:06,872
+1402316533,78290 30467,12-09-2016 17:57:15,66
+95262 44233,97393 04671,12-09-2016 18:07:53,2592
+1400481538,(080)69104549,12-09-2016 18:09:14,10
+99610 89720,90197 69887,12-09-2016 18:16:32,2418
+97380 60551,97414 35000,12-09-2016 18:23:57,187
+90197 69887,99610 89720,12-09-2016 18:28:56,3026
+(080)62164823,(022)22288051,12-09-2016 18:29:04,184
+90192 87313,78139 24512,12-09-2016 18:29:13,1158
+(080)45291968,94482 95223,12-09-2016 18:37:45,2107
+99003 88572,99006 60463,12-09-2016 18:47:08,104
+(044)41581342,97429 02055,12-09-2016 18:48:41,292
+(080)20123809,93432 65750,12-09-2016 18:49:20,1909
+77956 90632,78132 18081,12-09-2016 18:53:07,225
+1401747654,(080)26008340,12-09-2016 18:54:08,102
+(0471)2225098,97406 06245,12-09-2016 18:57:56,173
+90199 67471,94482 22716,12-09-2016 18:59:06,2746
+1404368883,(080)22759842,12-09-2016 19:04:44,13
+(022)47410783,97424 22395,12-09-2016 19:07:34,824
+90199 67471,90351 49472,12-09-2016 19:25:03,441
+98448 88411,(080)64765396,12-09-2016 19:33:46,2565
+94485 80091,84312 48999,12-09-2016 19:47:06,3406
+98448 86633,78293 91304,12-09-2016 19:53:23,3400
+97399 92703,97421 07528,12-09-2016 19:54:52,160
+(080)31606520,99004 86250,12-09-2016 20:00:05,135
+97442 45192,(044)49868415,12-09-2016 20:19:19,773
+90351 49472,90199 67471,12-09-2016 20:21:38,447
+98445 27876,(080)32390650,12-09-2016 20:24:37,175
+90087 42537,(080)35121497,12-09-2016 20:34:47,9
+94006 62384,(022)38214945,12-09-2016 20:39:25,98
+97447 92655,(022)39006198,12-09-2016 20:49:36,299
+94480 64700,90088 09624,12-09-2016 20:56:33,528
+(080)45291968,90365 06212,12-09-2016 21:00:05,39
+78136 54214,(0471)6537077,12-09-2016 21:06:12,1225
+(080)25863765,(022)66911540,12-09-2016 21:06:38,862
+90368 72970,97391 99665,12-09-2016 21:14:35,3261
+(080)35121497,90087 42537,12-09-2016 21:31:32,91
+78293 38561,(080)21129907,12-09-2016 21:33:22,47
+94487 29969,97419 41164,12-09-2016 21:35:17,120
+(080)21697299,94488 97308,12-09-2016 21:36:18,1349
+90084 16988,93422 47940,12-09-2016 21:38:00,2729
+93427 40118,(080)33118033,12-09-2016 21:40:54,225
+96569 95359,(080)69564399,12-09-2016 21:40:57,2293
+84319 52539,(080)45547058,12-09-2016 21:43:30,9
+99007 06998,(0821)3602212,12-09-2016 21:48:30,760
+94491 55790,(080)24444677,12-09-2016 21:55:00,2945
+97386 20071,94499 20763,12-09-2016 21:59:43,592
+97406 93118,(040)69695864,12-09-2016 22:04:52,460
+(080)32255824,(080)62164823,12-09-2016 22:12:39,756
+93427 56500,98447 12671,12-09-2016 22:12:58,136
+(080)46221576,78295 48262,12-09-2016 22:16:04,716
+(080)69104549,(04344)615310,12-09-2016 22:26:18,46
+93434 31551,90088 09624,12-09-2016 22:44:13,1006
+93427 56500,(044)24037112,12-09-2016 22:59:47,557
+90199 67471,90351 49472,12-09-2016 23:12:16,3192
+(022)44927512,(0471)2953539,12-09-2016 23:14:19,1156
+94485 80091,84312 48999,12-09-2016 23:18:45,2807
+93412 26084,(022)47410783,12-09-2016 23:24:40,3778
+(022)22288051,(080)62164823,12-09-2016 23:34:39,28
+84311 10322,(0824)2022081,12-09-2016 23:53:49,120
+98446 66723,83019 53227,13-09-2016 06:03:29,9
+(0821)4816394,77956 90632,13-09-2016 06:03:37,958
+(080)41712046,97410 27512,13-09-2016 06:04:40,2598
+(080)33251027,90192 87313,13-09-2016 06:09:31,32
+81522 26166,97414 62784,13-09-2016 06:11:17,879
+74298 18325,(022)34715405,13-09-2016 06:15:21,692
+(080)35538852,98459 20681,13-09-2016 06:20:36,2865
+90085 20915,99002 80226,13-09-2016 06:20:39,94
+97416 17124,90194 00845,13-09-2016 06:33:48,1273
+(080)61419142,81515 65055,13-09-2016 06:41:05,2417
+78298 02848,99001 95783,13-09-2016 06:41:18,666
+(022)62120910,98447 12671,13-09-2016 06:42:16,326
+(044)24037112,93427 56500,13-09-2016 06:46:33,312
+90193 61937,(022)66911540,13-09-2016 06:54:02,758
+(080)62164823,(080)32255824,13-09-2016 06:54:28,2279
+99612 41256,90197 24124,13-09-2016 06:58:05,1027
+(0824)6366719,94497 77615,13-09-2016 06:58:17,49
+(080)46304537,84313 80377,13-09-2016 06:59:03,32
+95267 70383,97414 62027,13-09-2016 07:03:24,1056
+94005 20878,(080)49328664,13-09-2016 07:04:16,688
+92411 96415,93435 21961,13-09-2016 07:08:42,1635
+90199 67471,90351 49472,13-09-2016 07:09:00,209
+(04546)218519,(080)46304537,13-09-2016 07:27:23,811
+77956 55474,(044)30360652,13-09-2016 07:30:33,176
+81522 26166,(080)46566171,13-09-2016 07:31:31,38
+(044)45416964,92425 27794,13-09-2016 07:38:15,733
+(04546)267875,(044)38044356,13-09-2016 07:38:33,1194
+94489 82688,(033)25441815,13-09-2016 07:39:02,1023
+(080)35538852,98459 20681,13-09-2016 07:41:18,661
+(080)35987804,74062 28875,13-09-2016 07:52:07,2328
+95266 42732,(080)45291968,13-09-2016 07:54:14,626
+(044)30727085,92414 22596,13-09-2016 07:57:25,214
+97414 97237,(080)34492744,13-09-2016 07:59:00,3460
+98459 20681,99001 95783,13-09-2016 08:04:15,283
+(022)66911540,90193 61937,13-09-2016 08:07:46,87
+90087 42537,(080)35121497,13-09-2016 08:11:31,755
+99003 88572,99006 60463,13-09-2016 08:13:01,2158
+94480 64700,90088 09624,13-09-2016 08:15:37,673
+87140 67779,89072 39789,13-09-2016 08:31:43,679
+97424 22395,90357 25284,13-09-2016 08:32:08,1068
+(080)62164823,(022)22288051,13-09-2016 08:33:11,1429
+78993 89387,(044)25144377,13-09-2016 08:35:18,2800
+97393 52893,(022)40840621,13-09-2016 08:38:40,2803
+94005 20878,(04344)649705,13-09-2016 08:51:16,654
+70129 62374,98441 32533,13-09-2016 09:06:56,22
+90192 87313,(080)33251027,13-09-2016 09:10:44,342
+90365 51029,94499 38099,13-09-2016 09:13:52,1353
+94482 95223,97425 92186,13-09-2016 09:18:33,127
+1407539117,99004 86250,13-09-2016 09:23:00,646
+70121 27677,78295 48262,13-09-2016 09:29:04,707
+(080)41095396,81510 47188,13-09-2016 09:30:10,790
+(04344)322628,90355 10919,13-09-2016 09:30:54,3596
+(080)29435303,(080)43685310,13-09-2016 09:38:37,1575
+97420 86635,90193 20957,13-09-2016 09:43:58,169
+(080)31982490,93434 31551,13-09-2016 09:44:21,9
+97393 52893,(022)40840621,13-09-2016 09:44:49,826
+(044)30727085,92414 22596,13-09-2016 09:51:53,2597
+(080)35538852,98446 78140,13-09-2016 09:52:04,3297
+(022)40840621,97393 52893,13-09-2016 09:58:43,288
+(080)40929452,77956 55474,13-09-2016 10:12:04,202
+99003 88572,(080)46304537,13-09-2016 10:14:48,354
+(080)62164823,74066 93594,13-09-2016 10:18:10,1131
+98445 42844,99617 74886,13-09-2016 10:24:19,224
+87146 31956,97384 69866,13-09-2016 10:26:05,133
+92428 82401,97385 29751,13-09-2016 10:30:31,363
+97414 35000,97380 60551,13-09-2016 10:40:18,66
+97380 60551,78298 91466,13-09-2016 10:40:28,169
+97406 93118,(040)69695864,13-09-2016 10:49:41,1011
+(04546)267875,(044)38044356,13-09-2016 10:55:09,86
+93430 54160,(04344)615310,13-09-2016 10:56:54,1194
+90089 69682,89076 07067,13-09-2016 10:57:32,124
+92415 91418,94489 72078,13-09-2016 10:59:56,901
+90193 16567,(04344)649705,13-09-2016 11:01:45,2665
+(080)62164823,(022)22288051,13-09-2016 11:02:53,718
+1408672243,(0821)3774599,13-09-2016 11:02:56,15
+(080)20227149,(080)64047472,13-09-2016 11:11:57,2925
+90355 94399,97391 99665,13-09-2016 11:28:40,110
+81513 30231,(080)30231886,13-09-2016 11:30:10,919
+(022)39006198,97447 92655,13-09-2016 11:33:21,558
+81513 30231,(080)30231886,13-09-2016 11:39:52,894
+(080)41336994,97406 93118,13-09-2016 11:48:50,2907
+(080)39991213,94495 34273,13-09-2016 11:52:50,868
+97406 06245,93428 11808,13-09-2016 12:22:19,1529
+90193 20957,97420 86635,13-09-2016 12:25:16,1003
+(044)45416964,92425 27794,13-09-2016 12:32:47,2290
+99001 95783,(080)60068611,13-09-2016 12:33:10,1064
+74066 93594,(080)62164823,13-09-2016 12:36:12,230
+(022)22288051,(080)62164823,13-09-2016 12:42:21,1291
+(080)31606520,99004 86250,13-09-2016 12:46:14,403
+97390 23922,90359 52497,13-09-2016 12:47:11,996
+94492 23068,90359 91512,13-09-2016 12:48:28,708
+(080)66044294,93428 98469,13-09-2016 12:56:29,548
+94499 38099,90365 51029,13-09-2016 12:57:11,1889
+95269 20533,97449 50000,13-09-2016 13:08:52,890
+98459 20681,(080)35538852,13-09-2016 13:09:42,114
+81519 62015,93430 54160,13-09-2016 13:13:28,2567
+(04344)322628,97427 87999,13-09-2016 13:13:41,558
+78133 71458,70127 59322,13-09-2016 13:24:54,156
+(080)43685310,92415 66985,13-09-2016 13:27:13,320
+94480 64700,90088 09624,13-09-2016 13:40:06,1315
+90352 50054,96566 40412,13-09-2016 13:47:19,123
+78138 56841,93416 07259,13-09-2016 13:58:49,1012
+97416 29480,92426 72402,13-09-2016 14:01:29,2398
+97414 62784,98449 60656,13-09-2016 14:02:38,106
+(080)33251027,94001 62063,13-09-2016 14:04:36,2046
+94497 44333,97385 70012,13-09-2016 14:04:56,1901
+90366 69257,(0821)6141380,13-09-2016 14:11:41,78
+97406 74488,90358 98099,13-09-2016 14:12:24,9
+97406 93118,(080)41336994,13-09-2016 14:15:32,2883
+97427 87999,(04344)322628,13-09-2016 14:16:11,43
+90351 35947,(080)35121497,13-09-2016 14:18:27,1153
+81525 12041,90356 11723,13-09-2016 14:23:52,3763
+97414 97237,(080)34492744,13-09-2016 14:30:36,4270
+93414 19669,(080)45687418,13-09-2016 14:32:44,2237
+97410 27512,(080)41712046,13-09-2016 14:36:09,1096
+(080)44076727,97415 99182,13-09-2016 14:48:10,461
+97424 53609,97385 70012,13-09-2016 14:50:32,2718
+(080)62164823,(022)22288051,13-09-2016 14:59:29,790
+(080)37913009,90355 49499,13-09-2016 15:09:04,497
+90199 67471,94482 22716,13-09-2016 15:10:01,81
+93434 31551,(080)31982490,13-09-2016 15:14:54,667
+90197 24124,99612 41256,13-09-2016 15:16:29,692
+87146 31956,(080)68104927,13-09-2016 15:17:04,1266
+(080)32390650,(080)43562014,13-09-2016 15:19:26,139
+90088 09624,94480 64700,13-09-2016 15:20:36,927
+94005 20878,(080)49328664,13-09-2016 15:22:00,1342
+(04344)649705,94005 20878,13-09-2016 15:30:41,2529
+97391 99665,90368 72970,13-09-2016 15:31:04,108
+(080)46702492,(080)44046839,13-09-2016 15:36:47,201
+(080)66044294,93428 98469,13-09-2016 15:45:00,233
+1402316533,95267 64394,13-09-2016 15:56:04,44
+81522 26166,90194 00845,13-09-2016 15:56:10,1980
+(080)23802940,98445 71741,13-09-2016 15:59:27,589
+90193 16567,(04344)649705,13-09-2016 16:09:32,661
+(080)32647101,92414 22596,13-09-2016 16:11:06,803
+99001 95783,98459 20681,13-09-2016 16:13:27,851
+(044)49481100,(080)69245029,13-09-2016 16:24:25,9
+87146 31956,(080)68104927,13-09-2016 16:30:08,1982
+1402316533,97404 63904,13-09-2016 16:35:09,900
+(022)21884607,90083 59148,13-09-2016 16:38:32,331
+(044)41581342,97429 02055,13-09-2016 16:41:12,9
+90368 72970,94001 07403,13-09-2016 16:44:51,390
+90082 61126,90366 69257,13-09-2016 16:50:32,35
+96565 52272,93428 11808,13-09-2016 16:57:04,859
+93432 24657,(044)27523585,13-09-2016 17:02:41,176
+81522 26166,(080)46566171,13-09-2016 17:04:32,3255
+93435 98939,97403 49292,13-09-2016 17:26:01,1951
+(022)28952819,(080)25863765,13-09-2016 17:31:04,230
+78299 99223,92424 51984,13-09-2016 17:31:33,232
+87149 75762,97447 92655,13-09-2016 17:53:20,130
+92428 82401,97385 29751,13-09-2016 17:53:57,3816
+98453 46196,94005 06213,13-09-2016 17:57:44,450
+99004 86250,95262 44233,13-09-2016 18:07:04,895
+(080)64819785,74066 93594,13-09-2016 18:15:16,118
+90359 79636,99001 23133,13-09-2016 18:26:06,2945
+95267 70383,97414 62027,13-09-2016 18:34:15,1068
+95262 44233,97393 04671,13-09-2016 18:41:38,1669
+90351 49472,90199 67471,13-09-2016 19:24:14,1429
+(080)62164823,74066 93594,13-09-2016 19:36:28,88
+(080)21652896,(040)26738737,13-09-2016 19:46:11,2137
+99003 88572,(080)46304537,13-09-2016 19:48:58,29
+97414 35000,97380 60551,13-09-2016 19:58:11,655
+(044)24037112,93427 56500,13-09-2016 19:58:33,29
+92424 51984,(04344)617351,13-09-2016 19:59:39,2216
+97380 60551,78298 91466,13-09-2016 20:04:16,875
+90366 69257,90082 61126,13-09-2016 20:04:57,1151
+81510 47188,97429 02055,13-09-2016 20:07:45,9
+(044)45838604,(0821)4816394,13-09-2016 20:10:18,481
+(080)34121098,81513 36123,13-09-2016 20:16:36,3193
+97406 74488,92411 96415,13-09-2016 20:24:43,248
+94482 95223,(080)45291968,13-09-2016 20:29:53,928
+(04546)267875,(044)38044356,13-09-2016 20:31:26,295
+96569 95359,78138 93826,13-09-2016 20:36:25,148
+98454 07778,93412 66159,13-09-2016 20:44:52,112
+93418 82576,94489 95536,13-09-2016 20:45:20,3849
+98440 65896,98446 78140,13-09-2016 20:48:15,586
+98448 87878,(080)69104549,13-09-2016 20:54:19,2122
+(080)46304537,84313 80377,13-09-2016 20:54:24,575
+93432 65750,92425 27794,13-09-2016 21:04:32,31
+(022)38214945,94006 62384,13-09-2016 21:05:05,152
+(033)25441815,94489 82688,13-09-2016 21:05:41,2661
+97385 29751,(022)30044349,13-09-2016 21:09:26,9
+97386 37259,78290 31269,13-09-2016 21:12:37,269
+90197 24124,99612 41256,13-09-2016 21:14:43,926
+(080)43685310,84312 48999,13-09-2016 21:31:25,156
+90193 61937,(022)66911540,13-09-2016 21:31:48,188
+87149 75762,97447 92655,13-09-2016 21:46:31,388
+(080)21129907,78293 38561,13-09-2016 21:54:41,751
+(080)32255824,(080)62164823,13-09-2016 21:58:43,2008
+84319 52539,(080)45547058,13-09-2016 22:19:09,72
+97385 29751,92428 82401,13-09-2016 22:19:10,1040
+(080)32390650,98445 27876,13-09-2016 22:22:57,403
+98441 32533,70129 62374,13-09-2016 22:25:52,93
+(080)25863765,(022)66911540,13-09-2016 22:29:00,599
+(04546)267875,(044)38044356,13-09-2016 22:29:35,740
+94491 55790,90359 99240,13-09-2016 22:34:42,206
+92411 96415,97406 74488,13-09-2016 22:36:46,115
+(022)47410783,93412 26084,13-09-2016 22:37:49,1435
+(080)39755879,90355 94399,13-09-2016 22:39:16,106
+(080)69104549,(04344)615310,13-09-2016 22:42:30,880
+98447 12671,93427 56500,13-09-2016 22:43:23,1640
+97399 92703,97421 07528,13-09-2016 22:44:18,24
+90355 49499,(080)37913009,13-09-2016 22:44:31,636
+(080)43562014,(040)34008657,13-09-2016 22:47:02,1131
+(080)20123809,93426 76415,13-09-2016 22:53:32,630
+(080)44046839,(080)62342282,13-09-2016 22:54:11,955
+(0471)6537077,78136 54214,13-09-2016 23:04:35,142
+(0824)2022081,(04344)654396,13-09-2016 23:06:40,1105
+98453 86521,93410 56456,13-09-2016 23:09:24,542
+93435 21961,92411 96415,13-09-2016 23:19:32,1222
+99007 06998,(0821)3602212,13-09-2016 23:35:04,142
+81522 26166,(080)46566171,13-09-2016 23:37:44,89
+(04344)615310,98454 07778,13-09-2016 23:38:26,729
+97427 87999,(04344)322628,13-09-2016 23:39:43,193
+98453 46196,94005 06213,13-09-2016 23:50:30,9
+(0471)2953539,(022)44927512,13-09-2016 23:52:12,61
+(022)34715405,74298 18325,13-09-2016 23:56:13,1349
+78130 00821,98453 94494,14-09-2016 06:00:23,417
+90192 30758,(080)64431120,14-09-2016 06:06:17,2449
+93435 21961,92411 96415,14-09-2016 06:17:02,2019
+(08214175)358,97419 90520,14-09-2016 06:21:55,1852
+81522 26166,97414 62784,14-09-2016 06:22:26,175
+(0821)3537229,77956 90632,14-09-2016 06:22:53,1765
+77950 18278,89078 69605,14-09-2016 06:24:36,69
+97419 90520,(08214175)358,14-09-2016 06:25:51,11
+78136 42599,97399 92703,14-09-2016 06:32:48,1304
+98444 72482,98446 78140,14-09-2016 06:57:25,2446
+94499 38099,90365 51029,14-09-2016 06:58:09,178
+94491 05266,94495 34273,14-09-2016 07:08:07,1104
+(080)27498339,98440 71648,14-09-2016 07:14:06,208
+97393 04671,95262 44233,14-09-2016 07:17:32,2792
+90194 00845,97416 17124,14-09-2016 07:18:58,54
+97415 99182,(080)44076727,14-09-2016 07:19:33,132
+97419 41164,94487 29969,14-09-2016 07:24:25,95
+81525 12041,90356 11723,14-09-2016 07:24:48,9
+(080)41336994,97406 93118,14-09-2016 07:30:10,9
+90355 10919,81510 47188,14-09-2016 07:33:58,730
+99001 95783,(080)60068611,14-09-2016 07:44:06,267
+(080)20383942,81517 73746,14-09-2016 07:59:52,9
+(022)38214945,(080)25863765,14-09-2016 08:06:21,1388
+(080)32638303,98458 94162,14-09-2016 08:11:33,3147
+(080)32255824,(080)62164823,14-09-2016 08:24:07,1272
+97425 79921,(0471)2953539,14-09-2016 08:31:36,158
+97390 23922,90359 52497,14-09-2016 08:32:42,1075
+90083 59148,(022)21884607,14-09-2016 08:33:18,160
+97447 92655,(022)39006198,14-09-2016 08:43:49,3243
+94486 40312,90361 52679,14-09-2016 09:30:09,858
+(080)68104927,90194 08626,14-09-2016 09:39:36,3511
+(080)21129907,78293 38561,14-09-2016 09:40:55,125
+97403 09983,97406 06245,14-09-2016 09:42:25,841
+77950 18278,89078 69605,14-09-2016 09:44:26,9
+90351 49472,90199 67471,14-09-2016 09:51:27,1535
+(080)37913009,90355 49499,14-09-2016 10:13:29,167
+(080)45291968,94482 95223,14-09-2016 10:21:15,9
+97425 92186,94482 95223,14-09-2016 10:25:50,1628
+78290 99865,89071 31755,14-09-2016 10:32:56,42
+(080)62164823,74066 93594,14-09-2016 10:33:23,21
+90197 24124,98456 86153,14-09-2016 10:41:51,662
+(080)40929452,77956 55474,14-09-2016 10:48:58,9
+97404 90013,(0821)4753474,14-09-2016 10:56:54,108
+97426 64618,(040)36649724,14-09-2016 11:05:56,101
+(044)24037112,93427 56500,14-09-2016 11:09:07,688
+(080)61123756,(080)47459867,14-09-2016 11:12:43,129
+97403 09983,90198 03659,14-09-2016 11:24:37,159
+98452 19037,90355 94399,14-09-2016 11:26:03,1085
+(080)24444677,(0821)6141380,14-09-2016 11:30:55,912
+87144 42283,98458 13389,14-09-2016 11:41:07,78
+97418 46131,(080)33277651,14-09-2016 11:44:00,759
+97385 29751,(022)30044349,14-09-2016 11:46:33,164
+94489 72078,(080)46937416,14-09-2016 11:49:55,743
+98445 33687,97403 49292,14-09-2016 11:54:32,60
+(080)25863765,(022)38214945,14-09-2016 11:56:12,117
+90197 38885,98445 85687,14-09-2016 11:58:16,9
+97418 46131,(080)33277651,14-09-2016 12:05:26,198
+95264 40233,98440 68457,14-09-2016 12:12:02,1371
+95267 70383,(080)34121098,14-09-2016 12:21:19,2330
+(080)21697299,94488 97308,14-09-2016 12:22:00,2915
+(040)26738737,(080)21652896,14-09-2016 12:25:38,725
+89071 50880,(04546)388977,14-09-2016 12:32:06,282
+(080)39755879,(080)26097534,14-09-2016 13:04:14,2356
+(080)30270642,97380 86781,14-09-2016 13:22:38,26
+97393 52893,(022)40840621,14-09-2016 13:22:42,589
+78295 48262,(080)46221576,14-09-2016 13:25:02,2876
+97416 29480,92426 72402,14-09-2016 13:26:11,879
+94006 62384,(022)38214945,14-09-2016 13:26:24,303
+99002 80226,90085 20915,14-09-2016 13:30:08,3019
+(044)69775060,81525 12041,14-09-2016 13:32:46,81
+98448 88411,(080)64765396,14-09-2016 13:37:15,399
+87140 67779,89072 39789,14-09-2016 13:40:01,1382
+(0821)4753474,97404 90013,14-09-2016 13:59:36,880
+78295 20931,(080)35987804,14-09-2016 14:00:52,157
+90368 72970,94001 07403,14-09-2016 14:09:49,655
+(080)32647101,92414 22596,14-09-2016 14:15:01,764
+99003 88572,99006 60463,14-09-2016 14:19:33,221
+(044)45838604,(0821)4816394,14-09-2016 14:39:33,834
+(080)41095396,81510 47188,14-09-2016 14:45:18,271
+94001 62063,(080)33251027,14-09-2016 14:48:48,211
+95267 70383,97414 62027,14-09-2016 14:53:06,395
+84312 48999,94485 80091,14-09-2016 15:01:24,1154
+93412 66159,94499 20763,14-09-2016 15:03:19,818
+(022)21884607,90083 59148,14-09-2016 15:12:51,756
+97406 93118,(040)69695864,14-09-2016 15:38:58,2308
+92411 96415,97406 74488,14-09-2016 15:42:05,3031
+97424 53609,97385 70012,14-09-2016 15:48:56,24
+78298 91466,97380 60551,14-09-2016 15:51:56,1915
+94480 64700,90088 09624,14-09-2016 15:52:48,289
+74298 85702,(0471)4255177,14-09-2016 16:11:29,3236
+98448 88411,(080)64765396,14-09-2016 16:14:33,1001
+78298 02848,99001 95783,14-09-2016 16:39:28,3054
+(080)46304537,98447 62998,14-09-2016 16:44:42,3184
+(022)22288051,(080)62164823,14-09-2016 16:54:34,121
+(080)64819785,74066 93594,14-09-2016 17:02:24,98
+97414 97237,87146 58071,14-09-2016 17:20:12,2157
+92411 96415,93435 21961,14-09-2016 17:23:23,2784
+97385 29751,92428 82401,14-09-2016 17:30:04,9
+(080)43215621,(080)47459867,14-09-2016 17:32:21,717
+(044)25144377,78993 89387,14-09-2016 17:32:34,202
+78298 02848,99001 95783,14-09-2016 17:44:50,102
+96565 52272,93428 11808,14-09-2016 17:46:42,60
+(0824)2022081,84311 10322,14-09-2016 17:51:23,274
+90356 11723,(044)69775060,14-09-2016 17:58:27,273
+94005 20878,(04344)649705,14-09-2016 18:03:51,887
+95263 76972,84319 39746,14-09-2016 18:14:55,1842
+98444 95768,99003 47921,14-09-2016 18:19:37,2098
+97380 60551,78298 91466,14-09-2016 18:21:12,820
+(080)21697299,94488 97308,14-09-2016 18:29:12,764
+(022)34715405,97448 02140,14-09-2016 18:29:51,9
+94480 64700,(080)32828889,14-09-2016 18:32:50,89
+70127 59322,78133 71458,14-09-2016 18:36:36,487
+(080)62164823,74066 93594,14-09-2016 18:41:44,3747
+97403 49292,93435 98939,14-09-2016 18:59:27,3641
+78133 71458,70127 59322,14-09-2016 19:16:27,1848
+(044)30727085,92414 22596,14-09-2016 19:30:33,32
+(022)34715405,74298 18325,14-09-2016 19:32:32,495
+93428 11808,96565 52272,14-09-2016 19:34:28,463
+98448 87878,90366 36573,14-09-2016 19:36:06,112
+(080)24444677,94491 55790,14-09-2016 19:40:26,629
+93412 26084,(022)47410783,14-09-2016 19:47:26,579
+(040)36649724,97426 64618,14-09-2016 19:52:00,353
+(080)34121098,81513 36123,14-09-2016 19:57:38,3229
+(080)47459867,(080)43215621,14-09-2016 19:57:55,545
+(044)45416964,92425 27794,14-09-2016 20:13:51,509
+93426 76415,(080)20123809,14-09-2016 20:17:36,925
+98453 46196,94005 06213,14-09-2016 20:24:18,126
+98448 86633,78293 91304,14-09-2016 20:28:10,145
+(044)49481100,(080)69245029,14-09-2016 20:33:36,81
+97414 62784,98449 60656,14-09-2016 20:35:39,86
+(080)68739140,97406 74488,14-09-2016 20:40:49,3225
+97418 46131,97448 02140,14-09-2016 21:07:50,607
+(022)30044349,97385 29751,14-09-2016 21:17:05,467
+99617 25274,(040)66729318,14-09-2016 21:18:25,35
+78293 91304,98448 86633,14-09-2016 21:19:44,329
+81524 55552,97380 60551,14-09-2016 21:31:24,2728
+95269 20533,97449 50000,14-09-2016 21:43:37,703
+(04344)228249,(080)43901222,14-09-2016 21:56:18,1470
+97414 97237,87146 58071,14-09-2016 22:00:35,51
+(044)25144377,78993 89387,14-09-2016 22:22:50,156
+(080)35121497,90087 42537,14-09-2016 22:24:36,53
+78299 99223,92424 51984,14-09-2016 22:28:56,2278
+(080)43562014,(040)34008657,14-09-2016 22:42:24,1079
+90366 69257,90082 61126,14-09-2016 22:43:01,1126
+(080)30270642,97380 86781,14-09-2016 22:51:12,3298
+(080)62963633,98443 99204,14-09-2016 22:54:54,2416
+(0471)6537077,78136 54214,14-09-2016 22:55:09,2122
+99610 89720,90197 69887,14-09-2016 22:57:29,549
+90088 09624,(080)22816760,14-09-2016 22:57:38,2486
+99007 06998,84314 00609,14-09-2016 22:57:45,90
+(04344)649705,90193 16567,14-09-2016 23:05:30,203
+97421 07528,97399 92703,14-09-2016 23:12:32,87
+(040)66729318,97386 20071,14-09-2016 23:28:29,2437
+98445 85687,90197 38885,14-09-2016 23:45:50,2171
+97414 62784,81522 26166,15-09-2016 06:00:16,224
+87146 31956,83019 39880,15-09-2016 06:01:48,9
+(0821)6141380,90366 69257,15-09-2016 06:02:06,734
+97424 53609,97385 70012,15-09-2016 06:04:33,115
+78136 42599,97399 92703,15-09-2016 06:10:32,81
+(080)35986130,78130 36804,15-09-2016 06:16:12,110
+90355 94399,97391 99665,15-09-2016 06:32:31,642
+90359 52497,97390 23922,15-09-2016 06:39:18,2158
+92414 22596,(044)30727085,15-09-2016 06:41:25,362
+84319 52539,(080)45547058,15-09-2016 06:41:40,1613
+94480 64700,(080)32828889,15-09-2016 06:45:51,138
+77950 18278,89078 69605,15-09-2016 06:51:13,2191
+92426 72402,97416 29480,15-09-2016 06:51:49,92
+98440 68457,95264 40233,15-09-2016 06:57:54,140
+90366 69257,90082 61126,15-09-2016 06:58:31,151
+97422 22278,(080)63623429,15-09-2016 06:59:16,2646
+92425 27794,93432 65750,15-09-2016 07:12:00,156
+97403 49292,93435 98939,15-09-2016 07:28:41,1082
+99002 80226,90085 20915,15-09-2016 07:36:56,229
+(044)27523585,93432 24657,15-09-2016 07:51:48,236
+(080)30270642,97380 86781,15-09-2016 08:06:43,3172
+89071 50880,(04546)388977,15-09-2016 08:14:36,1550
+(022)39006198,97447 92655,15-09-2016 08:30:21,3410
+97399 92703,97421 07528,15-09-2016 08:39:43,1260
+90359 52497,97390 23922,15-09-2016 08:39:49,710
+(044)30727085,92414 22596,15-09-2016 08:42:30,2572
+(080)64431120,90192 30758,15-09-2016 08:45:34,1191
+70129 62374,98441 32533,15-09-2016 08:46:22,1049
+99001 95783,98459 20681,15-09-2016 08:47:59,2125
+94482 95223,(080)45291968,15-09-2016 08:50:12,9
+90083 59148,(022)21884607,15-09-2016 09:03:29,3088
+(022)38214945,(080)65647085,15-09-2016 09:06:53,261
+(040)34008657,(080)43562014,15-09-2016 09:14:07,26
+(044)27523585,93432 24657,15-09-2016 09:19:14,2851
+74065 10917,90198 03659,15-09-2016 09:28:03,790
+98448 87878,90366 36573,15-09-2016 09:32:21,68
+(080)43562014,(080)22759842,15-09-2016 09:38:59,9
+90198 03659,74065 10917,15-09-2016 09:51:49,70
+92411 96415,77956 90632,15-09-2016 09:54:19,596
+98448 86633,78293 91304,15-09-2016 10:14:04,9
+(080)62164823,(080)32255824,15-09-2016 10:15:22,937
+97418 46131,97448 02140,15-09-2016 10:42:40,2749
+84319 39746,95263 76972,15-09-2016 10:46:31,335
+1402316533,92428 82401,15-09-2016 10:49:47,72
+95262 44233,98442 33257,15-09-2016 10:55:37,1300
+87146 31956,83019 39880,15-09-2016 11:17:26,98
+97390 23922,90359 52497,15-09-2016 11:21:29,233
+90356 11723,(044)69775060,15-09-2016 11:27:00,34
+98454 90038,74066 31484,15-09-2016 11:30:55,267
+97428 35959,97446 95253,15-09-2016 11:31:32,9
+94489 72078,92415 91418,15-09-2016 11:35:36,3222
+97421 07528,98454 07778,15-09-2016 12:04:00,268
+(080)69609453,(080)25863765,15-09-2016 12:07:26,634
+92414 22596,(080)32647101,15-09-2016 12:11:59,2423
+98446 66723,83019 53227,15-09-2016 12:32:37,2850
+98458 13389,87144 42283,15-09-2016 12:40:59,837
+90352 50054,97389 12538,15-09-2016 12:42:14,1641
+97416 17124,90194 00845,15-09-2016 12:53:14,848
+93432 24657,(044)27523585,15-09-2016 12:59:26,241
+95267 70383,(080)34121098,15-09-2016 13:02:32,75
+90365 06212,(080)45291968,15-09-2016 13:08:18,273
+99001 95783,(080)60068611,15-09-2016 13:10:51,188
+90084 16988,93422 47940,15-09-2016 13:11:26,9
+(022)47410783,93412 26084,15-09-2016 13:13:32,96
+93423 23000,78133 10302,15-09-2016 13:15:31,346
+78135 69048,(011)21017178,15-09-2016 13:17:58,798
+(080)43215621,(080)32647101,15-09-2016 13:19:49,1166
+(080)20227149,(080)64047472,15-09-2016 13:31:05,2122
+(080)33251027,94001 62063,15-09-2016 13:35:01,687
+97447 92655,87149 75762,15-09-2016 13:36:33,115
+94497 44333,97385 70012,15-09-2016 13:48:33,2316
+98459 20681,99001 95783,15-09-2016 13:50:33,3660
+(022)46574732,97403 88244,15-09-2016 14:07:31,685
+78993 89387,(044)25144377,15-09-2016 14:12:36,2866
+(011)21017178,83015 22251,15-09-2016 14:19:01,156
+1404787681,(080)32679828,15-09-2016 14:20:44,917
+78295 48262,(080)46221576,15-09-2016 14:22:09,179
+(044)69775060,90356 11723,15-09-2016 14:22:55,2239
+93432 65750,92425 27794,15-09-2016 14:26:57,823
+(080)45291968,90365 06212,15-09-2016 14:29:46,182
+97429 02055,(044)41581342,15-09-2016 14:37:01,1873
+78134 03625,(044)69775060,15-09-2016 14:46:13,766
+97385 70012,94497 44333,15-09-2016 14:49:48,117
+78138 93826,90359 99240,15-09-2016 14:50:41,943
+97416 29480,92426 72402,15-09-2016 15:00:06,595
+70121 27677,90359 79636,15-09-2016 15:06:05,30
+97424 21092,(080)69609453,15-09-2016 15:10:45,11
+78130 00821,98453 94494,15-09-2016 15:11:33,296
+(080)22816760,(0821)6141380,15-09-2016 15:19:19,1024
+(080)62963633,98443 99204,15-09-2016 15:23:43,169
+(044)24037112,93427 56500,15-09-2016 15:31:47,44
+1408371942,98447 63400,15-09-2016 15:39:17,25
+(080)35538852,92421 64236,15-09-2016 15:42:11,3086
+(0471)2225098,97406 06245,15-09-2016 15:46:17,166
+(04344)322628,90355 10919,15-09-2016 15:47:25,65
+89071 32787,(044)48154960,15-09-2016 15:53:19,994
+96566 40412,90352 50054,15-09-2016 15:54:40,112
+98448 87878,(080)69104549,15-09-2016 16:02:38,1406
+97427 87999,(04344)322628,15-09-2016 16:05:22,198
+(080)32255824,(080)62164823,15-09-2016 16:05:54,299
+90087 42537,(080)35121497,15-09-2016 16:22:58,1563
+(044)69775060,78134 03625,15-09-2016 16:27:41,704
+(080)33277651,97418 46131,15-09-2016 16:43:27,105
+(080)32638303,98458 94162,15-09-2016 16:49:52,523
+(080)32828889,94480 64700,15-09-2016 16:57:26,977
+90193 20957,97420 86635,15-09-2016 17:06:02,119
+90083 59148,(022)21884607,15-09-2016 17:10:27,103
+77956 90632,78132 18081,15-09-2016 17:11:11,772
+81510 47188,90355 10919,15-09-2016 17:12:00,3164
+70121 27677,90359 79636,15-09-2016 17:14:41,478
+94495 34273,(080)39991213,15-09-2016 17:22:48,131
+90084 16988,93422 47940,15-09-2016 17:23:31,155
+97380 60551,81524 55552,15-09-2016 17:26:24,184
+97386 20071,94499 20763,15-09-2016 17:29:56,9
+90365 06212,81513 30231,15-09-2016 17:30:03,1588
+(022)38214945,98457 75681,15-09-2016 17:53:05,2686
+98457 75681,(022)38214945,15-09-2016 17:57:22,2596
+81524 55552,(0821)2135265,15-09-2016 17:58:49,805
+98448 87878,90366 36573,15-09-2016 18:01:13,2082
+90085 20915,99002 80226,15-09-2016 18:11:39,508
+(080)69245029,(044)49481100,15-09-2016 18:17:06,457
+98446 66723,97422 22278,15-09-2016 18:22:37,2696
+(080)33251027,(080)49796269,15-09-2016 18:22:52,1144
+97418 46131,97448 02140,15-09-2016 18:26:14,1140
+93427 56500,98447 12671,15-09-2016 18:29:52,200
+90359 79636,99001 23133,15-09-2016 18:33:28,510
+98457 75681,(022)38214945,15-09-2016 18:36:28,1935
+78295 60375,93410 98013,15-09-2016 18:41:05,814
+90351 49472,90199 67471,15-09-2016 18:43:34,1841
+98454 07778,(04344)615310,15-09-2016 18:44:02,89
+97425 79921,(0471)2953539,15-09-2016 18:45:35,3598
+(080)46304537,98447 62998,15-09-2016 18:56:19,88
+(044)25144377,78993 89387,15-09-2016 19:18:50,461
+(080)45687418,93414 19669,15-09-2016 19:36:09,559
+97424 22395,90357 25284,15-09-2016 19:36:56,1038
+98453 94494,78130 00821,15-09-2016 19:56:52,1047
+98447 12671,(022)62120910,15-09-2016 20:03:38,264
+98446 78140,98444 72482,15-09-2016 20:06:00,1006
+78295 48262,70121 27677,15-09-2016 20:06:12,259
+81525 12041,90356 11723,15-09-2016 20:10:36,150
+97406 93118,(040)69695864,15-09-2016 20:13:11,652
+(080)30270642,97380 86781,15-09-2016 20:20:54,1290
+78130 00821,98453 94494,15-09-2016 20:35:57,1097
+(080)33251027,(080)49796269,15-09-2016 20:37:49,227
+81510 47188,90355 10919,15-09-2016 20:38:15,919
+94495 03761,(04546)267875,15-09-2016 20:43:37,222
+(080)41203315,(080)61419142,15-09-2016 20:51:24,2293
+(080)20383942,81517 73746,15-09-2016 20:52:19,1589
+81513 30231,(080)30231886,15-09-2016 20:54:51,123
+90087 42537,(080)35121497,15-09-2016 21:00:28,4084
+70127 59322,78133 71458,15-09-2016 21:06:03,87
+(040)34008657,(080)43562014,15-09-2016 21:11:17,2171
+92423 51078,78134 03625,15-09-2016 21:12:18,81
+84311 10322,90359 79636,15-09-2016 21:16:03,2639
+97414 97237,(080)34492744,15-09-2016 21:27:43,253
+90089 69682,89076 07067,15-09-2016 21:28:41,3232
+(080)68739140,97406 74488,15-09-2016 21:30:54,181
+(080)43685310,92415 66985,15-09-2016 21:33:23,297
+90365 06212,(080)45291968,15-09-2016 21:41:40,348
+(080)37913009,90355 49499,15-09-2016 21:44:29,52
+99003 88572,99006 60463,15-09-2016 21:48:29,739
+90194 08626,(080)68104927,15-09-2016 21:52:19,922
+90359 99240,94491 55790,15-09-2016 22:21:33,178
+(080)39755879,90355 94399,15-09-2016 22:31:05,179
+(0471)6579079,(080)23180345,15-09-2016 22:36:52,3139
+90085 20915,99002 80226,15-09-2016 22:37:26,88
+(080)44357306,90199 91061,15-09-2016 22:48:21,52
+(080)62342282,95263 76972,15-09-2016 22:52:46,9
+92415 91418,(080)48462898,15-09-2016 22:55:21,2422
+99002 80226,90085 20915,15-09-2016 23:01:24,1140
+93415 21881,(0821)4753474,15-09-2016 23:01:33,2385
+98457 75681,(022)38214945,15-09-2016 23:04:18,153
+(080)22759842,(080)43562014,15-09-2016 23:07:16,859
+97419 90520,(08214175)358,15-09-2016 23:07:27,98
+93427 40118,(080)33118033,15-09-2016 23:09:00,431
+(080)41712046,97410 27512,15-09-2016 23:10:22,151
+90366 36573,98448 87878,15-09-2016 23:15:32,611
+98446 66723,83019 53227,15-09-2016 23:17:05,17
+94482 95223,(080)45291968,15-09-2016 23:23:06,9
+94486 40312,90361 52679,15-09-2016 23:33:02,715
+81519 62015,93430 54160,15-09-2016 23:37:28,1955
+(080)45547058,84319 52539,16-09-2016 06:25:14,443
+(080)45547058,97402 57057,16-09-2016 06:29:48,55
+(080)60062475,81524 55552,16-09-2016 06:31:02,882
+(080)37913009,90355 49499,16-09-2016 06:32:54,698
+(04344)322628,97427 87999,16-09-2016 06:38:19,665
+94001 62063,(080)33251027,16-09-2016 06:40:11,3545
+(022)30044349,97385 29751,16-09-2016 06:41:31,310
+97429 02055,81510 47188,16-09-2016 06:47:11,1088
+97418 46131,97448 02140,16-09-2016 07:10:15,468
+(080)44046839,(080)62342282,16-09-2016 07:14:37,1089
+87146 31956,97384 69866,16-09-2016 07:15:19,144
+93430 54160,81519 62015,16-09-2016 07:18:37,747
+90085 20915,99002 80226,16-09-2016 07:22:20,213
+74066 31484,98454 90038,16-09-2016 07:25:01,73
+(080)32828889,94480 64700,16-09-2016 07:25:05,726
+89078 69605,77950 18278,16-09-2016 07:35:55,181
+90359 52497,(0824)2145844,16-09-2016 07:51:03,1831
+(080)43562014,(040)34008657,16-09-2016 08:04:12,331
+87140 67779,89072 39789,16-09-2016 08:06:35,2746
+(080)41203315,(080)61419142,16-09-2016 08:08:36,629
+98444 42212,97393 04671,16-09-2016 08:21:23,3044
+(080)31863188,(080)67426410,16-09-2016 08:22:32,61
+78295 48262,70121 27677,16-09-2016 08:25:08,824
+98457 75681,(022)38214945,16-09-2016 08:36:37,860
+(080)33251027,(080)49796269,16-09-2016 08:42:01,9
+90355 94399,97391 99665,16-09-2016 08:42:08,457
+(080)47459867,98440 65896,16-09-2016 08:44:02,1477
+89071 31755,78290 99865,16-09-2016 08:58:41,226
+97425 92186,94482 95223,16-09-2016 09:10:24,236
+93432 24657,(044)27523585,16-09-2016 09:12:55,9
+99612 41256,90197 24124,16-09-2016 09:20:55,515
+87144 42283,98458 13389,16-09-2016 09:27:48,1250
+(080)40362016,94491 29500,16-09-2016 09:28:12,1031
+94001 07403,90368 72970,16-09-2016 09:33:05,2132
+98442 33257,95262 44233,16-09-2016 09:35:06,170
+93432 24657,(044)27523585,16-09-2016 09:36:26,147
+(080)35121497,90087 42537,16-09-2016 09:37:28,981
+97380 60551,78298 91466,16-09-2016 09:37:33,660
+(080)20383942,81517 73746,16-09-2016 09:55:06,2430
+78298 91466,(022)28952819,16-09-2016 10:01:55,63
+94495 03761,(04546)267875,16-09-2016 10:19:35,9
+99001 95783,78298 02848,16-09-2016 10:19:48,2177
+(044)27641880,97416 18084,16-09-2016 10:22:58,779
+93426 76415,(080)20123809,16-09-2016 10:23:18,690
+(04344)322628,97427 87999,16-09-2016 10:30:44,1614
+(080)45547058,97402 57057,16-09-2016 10:34:27,958
+93432 65750,(080)20123809,16-09-2016 10:35:47,1611
+(0471)6537077,78136 54214,16-09-2016 10:36:35,467
+97425 79921,(0471)2953539,16-09-2016 10:40:19,978
+94488 97308,(080)21697299,16-09-2016 10:41:24,132
+94001 62063,(080)33251027,16-09-2016 10:43:44,311
+81515 65055,(080)61419142,16-09-2016 10:49:17,2167
+90088 09624,93434 31551,16-09-2016 11:00:05,362
+(022)28952819,78298 91466,16-09-2016 11:00:46,756
+(080)25863765,(022)28952819,16-09-2016 11:10:16,977
+78298 91466,97380 60551,16-09-2016 11:14:07,1567
+90355 10919,81510 47188,16-09-2016 11:33:24,250
+(040)66729318,(080)66857551,16-09-2016 11:36:52,1074
+1404073047,98445 27876,16-09-2016 11:37:06,86
+(080)39755879,(080)26097534,16-09-2016 11:50:32,619
+(080)61123756,98448 86633,16-09-2016 11:51:00,9
+97406 93118,(040)69695864,16-09-2016 11:55:32,155
+97429 02055,81510 47188,16-09-2016 12:11:00,2903
+(080)46772413,(04344)211113,16-09-2016 12:23:32,9
+(0821)3537229,77956 90632,16-09-2016 12:31:29,32
+98458 94162,(080)32638303,16-09-2016 12:36:33,1026
+97410 27512,(080)41712046,16-09-2016 12:36:45,1248
+98453 46196,(04344)228249,16-09-2016 12:46:55,391
+89071 31755,78290 99865,16-09-2016 12:53:18,996
+(080)25820765,(080)23413513,16-09-2016 13:06:08,159
+(080)44046839,(080)62342282,16-09-2016 13:07:52,953
+(080)43685310,92415 66985,16-09-2016 13:11:20,62
+96569 95359,78138 93826,16-09-2016 13:16:58,3821
+(080)46702492,(080)44046839,16-09-2016 13:17:18,1182
+(080)20227149,(080)39991213,16-09-2016 13:18:58,9
+99006 60463,99003 88572,16-09-2016 13:41:07,151
+(080)46221576,78295 48262,16-09-2016 13:43:00,352
+94001 07403,90368 72970,16-09-2016 13:45:10,2499
+92414 22596,(080)32647101,16-09-2016 13:46:11,914
+98448 86633,78293 91304,16-09-2016 13:49:02,144
+(044)38044356,(04546)267875,16-09-2016 13:59:02,110
+98446 66723,83019 53227,16-09-2016 14:02:04,496
+99004 86250,95262 44233,16-09-2016 14:07:20,971
+98445 85687,90197 38885,16-09-2016 14:07:35,111
+(080)41095396,81510 47188,16-09-2016 14:14:15,977
+94006 62384,(022)38214945,16-09-2016 14:17:35,1566
+78132 18081,98443 72004,16-09-2016 14:23:07,1356
+(080)43215621,(080)47459867,16-09-2016 14:24:12,1023
+(044)41581342,97429 02055,16-09-2016 14:27:54,2397
+95266 42732,(080)45291968,16-09-2016 14:28:16,909
+(0821)3257740,97420 86635,16-09-2016 14:33:12,196
+99612 41256,90197 24124,16-09-2016 14:50:51,2558
+(080)61419142,81515 65055,16-09-2016 14:51:24,287
+81520 43406,(040)69695864,16-09-2016 15:05:53,2168
+98453 94494,78130 00821,16-09-2016 15:21:27,1194
+95267 70383,97414 62027,16-09-2016 15:37:43,551
+81519 62015,93430 54160,16-09-2016 15:41:53,9
+(080)43215621,(080)47459867,16-09-2016 15:46:53,1156
+92423 51078,78134 03625,16-09-2016 15:56:05,2521
+(044)41581342,97429 02055,16-09-2016 15:56:54,9
+(04344)228249,98453 46196,16-09-2016 16:12:13,252
+(080)21652896,(040)26738737,16-09-2016 16:25:09,2613
+93427 56500,98447 12671,16-09-2016 16:29:48,40
+97449 50000,78295 78750,16-09-2016 16:37:05,910
+97386 20071,(040)66729318,16-09-2016 16:39:52,2965
+93432 24657,(044)27523585,16-09-2016 16:40:18,2264
+(022)62120910,97411 71155,16-09-2016 16:41:33,23
+92424 51984,78299 99223,16-09-2016 16:44:48,2896
+94499 38099,90365 51029,16-09-2016 16:45:07,255
+98444 95768,99003 47921,16-09-2016 16:46:46,62
+(080)49796269,(080)33251027,16-09-2016 16:52:43,80
+(080)47459867,98440 65896,16-09-2016 16:54:11,637
+99003 88572,(080)46304537,16-09-2016 17:12:12,1014
+97422 22278,98446 66723,16-09-2016 17:14:16,958
+(022)46574732,98444 63396,16-09-2016 17:19:37,38
+97421 07528,97399 92703,16-09-2016 17:24:53,869
+97404 90013,(0821)4753474,16-09-2016 17:25:25,470
+94485 80091,84312 48999,16-09-2016 17:26:22,9
+99006 60463,99003 88572,16-09-2016 17:31:20,63
+(080)45291968,95266 42732,16-09-2016 17:34:23,809
+(080)43562014,(080)32390650,16-09-2016 17:48:55,14
+78290 99865,89071 31755,16-09-2016 17:50:02,1309
+74066 93594,78136 65840,16-09-2016 18:01:26,454
+(0821)3257740,97420 86635,16-09-2016 18:05:52,424
+98446 66723,83019 53227,16-09-2016 18:09:14,784
+97385 35042,93418 41992,16-09-2016 18:28:48,153
+(080)20123809,93426 76415,16-09-2016 18:37:27,1092
+90355 94399,98452 19037,16-09-2016 18:55:27,216
+(080)45291968,94482 95223,16-09-2016 19:01:45,438
+93435 21961,92411 96415,16-09-2016 19:06:34,1535
+99612 41256,90197 24124,16-09-2016 19:06:45,37
+1408371942,81529 57063,16-09-2016 19:10:58,10
+94006 62384,(022)38214945,16-09-2016 19:13:00,2269
+90366 69257,(0821)6141380,16-09-2016 19:14:45,198
+99612 41256,90197 24124,16-09-2016 19:40:39,653
+90192 30758,(080)64431120,16-09-2016 19:46:36,3273
+95262 44233,99004 86250,16-09-2016 19:47:47,789
+92413 38675,90362 07317,16-09-2016 19:48:59,850
+78293 38561,(080)21129907,16-09-2016 19:58:10,278
+(080)63623429,97422 22278,16-09-2016 20:00:20,9
+99002 80226,90085 20915,16-09-2016 20:10:16,93
+98454 07778,93412 66159,16-09-2016 20:10:48,207
+(04344)322628,97427 87999,16-09-2016 20:36:52,2983
+(080)31982490,95267 70383,16-09-2016 20:43:28,1386
+(080)60463379,93412 40385,16-09-2016 20:45:22,1045
+90197 38885,98445 85687,16-09-2016 20:46:16,288
+98454 90038,93415 21881,16-09-2016 20:58:57,865
+93422 47940,94488 97308,16-09-2016 21:05:33,1587
+99001 95783,78298 02848,16-09-2016 21:06:20,266
+97418 46131,97448 02140,16-09-2016 21:12:24,2361
+97416 17124,90194 00845,16-09-2016 21:48:39,160
+81510 47188,97429 02055,16-09-2016 22:14:56,2403
+96569 95359,78138 93826,16-09-2016 22:15:04,9
+90355 94399,98452 19037,16-09-2016 22:15:47,41
+78993 89387,(080)21652896,16-09-2016 22:22:15,196
+74064 66270,(080)47999451,16-09-2016 22:25:52,170
+(080)47459867,98440 65896,16-09-2016 22:26:09,1352
+93418 41992,98440 65896,16-09-2016 22:31:50,141
+(080)35121497,90087 42537,16-09-2016 22:38:50,320
+97403 49292,93435 98939,16-09-2016 22:39:45,2500
+(080)43685310,84312 48999,16-09-2016 22:51:56,223
+94488 97308,(080)21697299,16-09-2016 22:52:43,1100
+(080)39991213,94495 34273,16-09-2016 23:01:28,446
+97393 52893,(022)40840621,16-09-2016 23:03:44,949
+78130 00821,98453 94494,16-09-2016 23:15:28,74
+(080)21652896,(040)26738737,16-09-2016 23:16:49,68
+(022)45444747,92426 65661,16-09-2016 23:18:26,21
+(080)43562014,(040)34008657,16-09-2016 23:29:26,3871
+99004 86250,95262 44233,16-09-2016 23:49:39,648
+78136 65840,74066 93594,16-09-2016 23:51:34,9
+(040)26738737,90194 00845,17-09-2016 06:01:12,696
+87146 31956,97384 69866,17-09-2016 06:02:05,9
+84313 45689,78295 65598,17-09-2016 06:03:44,89
+97424 22395,(022)29303640,17-09-2016 06:12:34,224
+94499 38099,90365 51029,17-09-2016 06:24:37,901
+78295 48262,(080)46221576,17-09-2016 06:46:46,2427
+99001 95783,(080)60068611,17-09-2016 06:52:31,218
+78132 18081,93416 07259,17-09-2016 06:52:44,115
+(022)34715405,97448 02140,17-09-2016 06:57:39,475
+97429 02055,(044)41581342,17-09-2016 07:10:35,876
+(080)24444677,(0821)6141380,17-09-2016 07:27:31,2641
+(080)40362016,94491 29500,17-09-2016 07:40:18,85
+98448 86633,78293 91304,17-09-2016 07:40:20,43
+90082 61126,90366 69257,17-09-2016 07:42:51,158
+87146 31956,(080)68104927,17-09-2016 07:46:43,9
+78993 89387,(044)25144377,17-09-2016 08:03:22,2024
+97414 62784,81522 26166,17-09-2016 08:05:40,890
+(080)64431120,(080)60068611,17-09-2016 08:11:44,9
+(044)27641880,97416 18084,17-09-2016 08:14:10,579
+(080)39991213,94495 34273,17-09-2016 08:17:51,819
+(080)66955387,97380 60551,17-09-2016 08:30:28,2647
+(044)49868415,90196 73585,17-09-2016 08:44:21,3739
+92421 09526,(080)69150162,17-09-2016 08:47:22,214
+97442 45192,(044)49868415,17-09-2016 08:49:31,1913
+97414 97237,(080)34492744,17-09-2016 08:53:35,74
+92414 22596,(080)32647101,17-09-2016 08:58:23,663
+97385 29751,(022)30044349,17-09-2016 08:59:18,85
+97402 57057,(080)45547058,17-09-2016 09:02:27,1192
+98458 13389,87144 42283,17-09-2016 09:03:06,123
+(080)45291968,90365 06212,17-09-2016 09:07:59,849
+97385 70012,94497 44333,17-09-2016 09:28:27,175
+(080)60068611,99001 95783,17-09-2016 09:37:20,2234
+90352 50054,97389 12538,17-09-2016 09:48:38,2352
+94489 72078,(080)46937416,17-09-2016 09:55:16,867
+78135 69048,(080)21129907,17-09-2016 10:03:00,2705
+83019 39880,87146 31956,17-09-2016 10:03:26,581
+90196 73585,(044)49868415,17-09-2016 10:06:04,244
+97425 92186,94482 95223,17-09-2016 10:30:36,2034
+97402 57057,(080)45547058,17-09-2016 10:32:28,346
+70121 27677,90359 79636,17-09-2016 10:38:04,3664
+90368 72970,94001 07403,17-09-2016 10:52:04,784
+(022)62120910,97411 71155,17-09-2016 10:55:26,1101
+98457 75681,(022)38214945,17-09-2016 10:56:26,1551
+(022)40840621,97393 52893,17-09-2016 11:08:00,181
+(080)61419142,(080)41203315,17-09-2016 11:11:28,9
+(080)31982490,93434 31551,17-09-2016 11:28:06,1989
+97389 12538,90352 50054,17-09-2016 11:30:13,46
+94490 65627,97395 95120,17-09-2016 11:31:32,112
+(044)25144377,78993 89387,17-09-2016 11:53:42,864
+(022)45444747,92426 65661,17-09-2016 11:55:40,149
+(080)35987804,(044)68407232,17-09-2016 11:56:33,633
+97447 92655,(022)39006198,17-09-2016 12:05:04,2338
+(022)32517986,(080)21129907,17-09-2016 12:27:36,201
+95266 42732,(080)45291968,17-09-2016 12:38:30,91
+70127 59322,78133 71458,17-09-2016 12:41:15,101
+87144 42283,98458 13389,17-09-2016 12:53:27,573
+1404073047,93439 85886,17-09-2016 12:56:53,35
+98454 90038,93415 21881,17-09-2016 13:04:27,1051
+(080)32647101,92414 22596,17-09-2016 13:05:59,755
+1409421631,(022)32517986,17-09-2016 13:06:19,87
+90366 69257,90082 61126,17-09-2016 13:09:13,65
+(080)46304537,99003 88572,17-09-2016 13:11:38,104
+90352 50054,97389 12538,17-09-2016 13:21:52,678
+84312 48999,(080)43685310,17-09-2016 13:26:00,712
+78295 20931,(080)35987804,17-09-2016 13:27:32,885
+(080)68104927,90194 08626,17-09-2016 13:29:59,167
+(044)41581342,97429 02055,17-09-2016 13:33:20,2036
+(080)32390650,98445 27876,17-09-2016 13:36:56,1025
+92423 51078,(080)25863765,17-09-2016 13:37:10,9
+(080)66857551,(040)66729318,17-09-2016 13:43:21,35
+93435 21961,92411 96415,17-09-2016 13:55:02,3237
+99001 95783,98459 20681,17-09-2016 14:05:56,126
+92414 22596,(080)32647101,17-09-2016 14:12:11,2984
+78295 48262,70121 27677,17-09-2016 14:13:43,1669
+(0471)2953539,74292 23928,17-09-2016 14:30:24,2159
+94492 23068,90359 91512,17-09-2016 14:50:06,2636
+(080)43685310,92415 66985,17-09-2016 14:59:15,166
+93422 47940,90084 16988,17-09-2016 14:59:41,103
+(080)46702492,(080)44046839,17-09-2016 15:16:08,1766
+90088 09624,93434 31551,17-09-2016 15:26:16,118
+97391 99665,90368 72970,17-09-2016 15:34:20,976
+94005 20878,(080)49328664,17-09-2016 15:37:58,1660
+98444 95768,90194 08626,17-09-2016 15:45:08,23
+93427 56500,98447 12671,17-09-2016 15:54:04,725
+89071 32787,(044)48154960,17-09-2016 15:54:13,119
+92426 65661,(022)45444747,17-09-2016 16:07:06,325
+74066 31484,98454 90038,17-09-2016 16:11:10,562
+(080)39755879,90355 94399,17-09-2016 16:11:15,949
+(080)43562014,(080)22759842,17-09-2016 16:25:39,1128
+(080)20227149,(080)39991213,17-09-2016 16:46:38,9
+90088 09624,(080)22816760,17-09-2016 16:48:00,708
+92426 72402,97416 29480,17-09-2016 16:49:59,1190
+1408371942,70121 77245,17-09-2016 16:51:47,578
+70121 27677,78295 48262,17-09-2016 17:01:44,997
+94490 65627,97395 95120,17-09-2016 17:05:57,30
+90355 10919,81510 47188,17-09-2016 17:23:09,971
+87146 31956,97384 69866,17-09-2016 17:31:44,705
+(022)21884607,90083 59148,17-09-2016 17:33:18,152
+90359 52497,(0824)2145844,17-09-2016 17:44:42,19
+(044)24037112,93427 56500,17-09-2016 17:57:02,1098
+95267 70383,(080)34121098,17-09-2016 17:57:32,638
+81525 12041,90356 11723,17-09-2016 18:00:25,1109
+92425 27794,93432 65750,17-09-2016 18:00:45,3065
+97410 27512,(080)41712046,17-09-2016 18:10:43,1104
+(080)31606520,99004 86250,17-09-2016 18:19:07,847
+93428 98469,(080)66044294,17-09-2016 18:19:38,621
+90355 94399,97391 99665,17-09-2016 18:29:53,2501
+99007 06998,(0821)3602212,17-09-2016 18:36:59,831
+90193 20957,97420 86635,17-09-2016 18:41:36,3578
+1401747654,(044)38044356,17-09-2016 18:47:36,847
+1402316533,97406 74488,17-09-2016 18:51:48,37
+97406 74488,90358 98099,17-09-2016 18:57:28,627
+98444 72482,98446 78140,17-09-2016 18:58:02,110
+97385 35042,93418 41992,17-09-2016 19:00:51,3376
+97419 41164,94487 29969,17-09-2016 19:06:12,282
+90087 42537,(080)35121497,17-09-2016 19:15:30,9
+1409668775,97399 92703,17-09-2016 19:24:57,96
+97414 97237,87146 58071,17-09-2016 19:27:56,1554
+94488 97308,(080)21697299,17-09-2016 19:31:16,48
+(080)35986130,93432 65750,17-09-2016 19:41:38,451
+92423 51078,78134 03625,17-09-2016 19:56:37,75
+(04546)218519,(080)46304537,17-09-2016 20:01:08,734
+98447 12671,93427 56500,17-09-2016 20:10:36,1919
+81520 43406,(040)69695864,17-09-2016 20:17:34,158
+99007 06998,84314 00609,17-09-2016 20:28:34,910
+(080)33251027,94001 62063,17-09-2016 20:40:14,863
+97384 69866,87146 31956,17-09-2016 20:53:09,2897
+(044)41581342,97429 02055,17-09-2016 20:55:01,116
+97418 46131,97448 02140,17-09-2016 20:58:37,123
+97424 22395,(022)47410783,17-09-2016 21:21:25,33
+(044)45416964,92425 27794,17-09-2016 21:27:01,229
+97415 99182,97393 04671,17-09-2016 21:42:59,460
+93415 21881,98454 90038,17-09-2016 21:45:20,190
+95267 70383,97414 62027,17-09-2016 21:59:07,301
+(080)21697299,94488 97308,17-09-2016 22:13:06,820
+81513 30231,90365 06212,17-09-2016 22:13:54,31
+(080)20227149,(080)39991213,17-09-2016 22:15:33,9
+(022)68535788,(080)65023950,17-09-2016 22:15:45,836
+(044)69775060,78134 03625,17-09-2016 22:18:31,108
+(044)69775060,78134 03625,17-09-2016 22:19:34,548
+(04344)322628,90355 10919,17-09-2016 22:28:33,306
+95262 44233,97393 04671,17-09-2016 22:35:40,622
+97380 60551,81524 55552,17-09-2016 22:38:38,1507
+90359 79636,70121 27677,17-09-2016 22:41:36,2389
+(080)32255824,(080)62164823,17-09-2016 22:48:41,9
+90356 11723,(044)69775060,17-09-2016 22:51:05,2218
+(044)27523585,93432 24657,17-09-2016 23:12:24,605
+(080)62164823,(080)32255824,17-09-2016 23:12:40,117
+92415 66985,(080)43685310,17-09-2016 23:16:06,435
+94480 64700,(080)32828889,17-09-2016 23:18:23,116
+90198 03659,74065 10917,17-09-2016 23:38:29,2256
+(04344)228249,(080)43901222,17-09-2016 23:42:32,860
+92421 64236,(080)35538852,17-09-2016 23:46:35,10
+90193 61937,(022)66911540,17-09-2016 23:57:05,233
+(080)43685310,(080)29435303,17-09-2016 23:58:32,245
+92415 66985,(080)43685310,18-09-2016 06:10:30,88
+(040)26738737,90194 00845,18-09-2016 06:13:30,56
+99003 88572,(080)46304537,18-09-2016 06:13:48,2572
+95263 76972,84319 39746,18-09-2016 06:17:17,964
+(080)39991213,94495 34273,18-09-2016 06:18:15,1743
+(044)27641880,97416 18084,18-09-2016 06:19:31,868
+78133 71458,70127 59322,18-09-2016 06:20:51,9
+97447 92655,(022)39006198,18-09-2016 06:27:48,2554
+(022)66911540,(080)25863765,18-09-2016 06:41:57,746
+98440 65896,98446 78140,18-09-2016 06:46:30,532
+81510 47188,90355 10919,18-09-2016 06:48:26,150
+(044)38044356,(04546)267875,18-09-2016 06:51:24,3133
+(044)45838604,(0821)4816394,18-09-2016 07:11:40,912
+97446 95253,97428 35959,18-09-2016 07:13:46,347
+97380 60551,78298 91466,18-09-2016 07:15:57,2589
+98453 46196,94005 06213,18-09-2016 07:21:13,2042
+77956 55474,(044)30360652,18-09-2016 07:42:21,167
+81522 26166,97414 62784,18-09-2016 08:01:22,637
+97390 23922,90359 52497,18-09-2016 08:13:32,1763
+97447 92655,87149 75762,18-09-2016 08:22:58,533
+(022)21884607,90083 59148,18-09-2016 08:24:05,2892
+97416 29480,92426 72402,18-09-2016 08:36:52,188
+(0824)6366719,94497 77615,18-09-2016 08:45:44,3373
+(04344)228249,(080)43901222,18-09-2016 08:55:58,1012
+78293 91304,98448 86633,18-09-2016 09:05:18,115
+(0471)6537077,78136 54214,18-09-2016 09:17:12,156
+93422 47940,90084 16988,18-09-2016 09:17:21,1849
+90083 59148,(022)21884607,18-09-2016 09:23:35,1272
+(080)67362492,(04344)316423,18-09-2016 09:25:25,558
+90087 42537,(080)35121497,18-09-2016 09:26:25,244
+84313 80377,(080)46304537,18-09-2016 09:44:42,518
+1407539117,(080)44050207,18-09-2016 09:47:23,75
+78295 48262,70121 27677,18-09-2016 10:04:52,133
+78295 60375,93410 98013,18-09-2016 10:07:28,533
+1404073047,93431 90470,18-09-2016 10:12:31,90
+1409421631,95263 76972,18-09-2016 10:16:57,116
+1408672243,90196 73585,18-09-2016 10:19:44,41
+(080)64819785,74066 93594,18-09-2016 10:20:03,3238
+92415 66985,(080)43685310,18-09-2016 10:26:29,11
+(0471)2953539,74292 23928,18-09-2016 10:26:53,139
+92423 51078,(080)25863765,18-09-2016 10:33:52,2896
+78295 48262,(080)46221576,18-09-2016 10:46:01,2232
+(022)66911540,93426 88474,18-09-2016 10:50:29,1717
+(080)68104927,90194 08626,18-09-2016 10:51:36,1549
+78295 65598,84313 45689,18-09-2016 10:55:49,9
+94495 34273,(080)39991213,18-09-2016 10:56:48,110
+(080)44076727,97415 99182,18-09-2016 11:00:24,19
+97414 97237,87146 58071,18-09-2016 11:03:55,9
+97429 02055,(044)41581342,18-09-2016 11:13:37,181
+(080)45687418,93414 19669,18-09-2016 11:24:59,9
+93415 21881,(0821)4753474,18-09-2016 11:27:23,2783
+94499 38099,90365 51029,18-09-2016 11:28:13,1224
+90359 79636,70121 27677,18-09-2016 11:29:54,648
+98454 90038,74066 31484,18-09-2016 11:30:10,100
+1402316533,97385 70012,18-09-2016 11:34:34,28
+78130 00821,98453 94494,18-09-2016 11:37:07,408
+(080)39991213,94495 34273,18-09-2016 11:44:30,353
+78295 48262,(080)46221576,18-09-2016 12:14:52,664
+78135 69048,(011)21017178,18-09-2016 12:17:02,63
+98445 42844,(044)48154960,18-09-2016 12:28:09,3019
+(080)21129907,78293 38561,18-09-2016 12:32:28,777
+90088 09624,94480 64700,18-09-2016 12:33:45,323
+90194 00845,97416 17124,18-09-2016 12:36:25,129
+90359 52497,97390 23922,18-09-2016 12:38:18,522
+(080)34121098,81513 36123,18-09-2016 12:46:50,127
+(044)27641880,97416 18084,18-09-2016 12:49:16,534
+97426 64618,90086 21082,18-09-2016 12:49:55,83
+1409668775,94487 29969,18-09-2016 12:58:59,10
+(080)37913009,90355 49499,18-09-2016 13:06:49,60
+90088 09624,(080)22816760,18-09-2016 13:22:31,738
+(04546)267875,(044)38044356,18-09-2016 13:28:18,37
+(080)43685310,92415 66985,18-09-2016 13:36:49,764
+(080)47999451,74064 33807,18-09-2016 13:40:23,87
+90197 38885,98445 85687,18-09-2016 13:43:03,68
+94001 62063,(080)33251027,18-09-2016 13:45:28,869
+(080)41712046,97410 27512,18-09-2016 13:51:02,975
+99003 47921,98444 95768,18-09-2016 13:58:26,1748
+98440 68457,95264 40233,18-09-2016 14:00:59,217
+99006 60463,99003 88572,18-09-2016 14:01:30,180
+90197 24124,99612 41256,18-09-2016 14:04:13,1052
+(04546)218519,(080)46304537,18-09-2016 14:04:18,1881
+84319 52539,(044)20550065,18-09-2016 14:07:33,65
+77956 55474,(044)30360652,18-09-2016 14:11:28,329
+78293 91304,98448 86633,18-09-2016 14:18:31,392
+(080)32679828,(044)64005505,18-09-2016 14:23:38,3023
+(080)64431120,(080)60068611,18-09-2016 14:24:37,2914
+(080)45291968,94482 95223,18-09-2016 14:36:26,4104
+93412 26084,(022)47410783,18-09-2016 14:53:31,294
+97447 92655,87149 75762,18-09-2016 15:01:19,1369
+(080)21129907,78293 38561,18-09-2016 15:03:15,1472
+97403 09983,97406 06245,18-09-2016 15:04:13,136
+(080)27498339,98440 71648,18-09-2016 15:12:27,176
+98445 27876,(080)32390650,18-09-2016 15:12:51,855
+(0821)4753474,97404 90013,18-09-2016 15:17:45,261
+(04344)228249,98453 46196,18-09-2016 15:28:46,2215
+87149 75762,97447 92655,18-09-2016 15:37:02,2341
+98453 94494,78130 00821,18-09-2016 15:37:54,1441
+(080)30231886,81513 30231,18-09-2016 15:40:54,1131
+92424 51984,(04344)617351,18-09-2016 15:41:48,3824
+(080)61123756,98448 86633,18-09-2016 15:43:19,357
+98442 33257,95262 44233,18-09-2016 15:44:25,375
+89071 50880,(04546)388977,18-09-2016 15:50:38,2441
+(080)33251027,94001 62063,18-09-2016 15:54:21,3201
+97425 92186,94482 95223,18-09-2016 15:54:22,3681
+(080)33251027,97386 37259,18-09-2016 16:01:01,2308
+99003 88572,(080)46304537,18-09-2016 16:01:39,54
+(080)40362016,94491 29500,18-09-2016 16:04:33,977
+(0821)3537229,77956 90632,18-09-2016 16:09:23,223
+98447 12671,(022)62120910,18-09-2016 16:14:16,462
+(080)44389098,(080)35986130,18-09-2016 16:15:39,2408
+(044)27523585,93432 24657,18-09-2016 16:21:50,118
+94001 62063,(080)33251027,18-09-2016 16:27:21,2219
+(080)43562014,(080)32390650,18-09-2016 16:29:13,39
+(080)47459867,(080)61123756,18-09-2016 16:29:28,408
+74292 23928,(0471)2953539,18-09-2016 16:35:52,26
+90087 42537,(080)35121497,18-09-2016 16:36:39,33
+93427 40118,(080)33118033,18-09-2016 16:39:50,59
+95262 44233,97393 04671,18-09-2016 16:41:50,472
+(080)24444677,(0821)6141380,18-09-2016 16:52:04,1277
+99003 47921,98444 95768,18-09-2016 17:03:49,1343
+(080)43685310,(080)29435303,18-09-2016 17:18:36,654
+98445 71741,(080)23802940,18-09-2016 17:26:38,1305
+(080)45291968,95266 42732,18-09-2016 17:34:18,216
+74066 31484,98454 90038,18-09-2016 17:37:43,132
+98454 90038,74066 31484,18-09-2016 17:39:31,189
+99006 60463,99003 88572,18-09-2016 17:42:39,144
+93412 66159,98454 07778,18-09-2016 17:48:43,912
+1403072432,90198 03659,18-09-2016 17:58:34,52
+(080)20227149,(080)39991213,18-09-2016 18:03:10,73
+(080)66044294,93428 98469,18-09-2016 18:20:07,86
+(022)28765220,98444 16192,18-09-2016 18:26:14,82
+90355 94399,97391 99665,18-09-2016 18:34:57,607
+99004 86250,95262 44233,18-09-2016 18:41:41,3457
+(04344)228249,98453 46196,18-09-2016 18:53:37,97
+(080)67362492,(04344)316423,18-09-2016 19:19:15,128
+97403 49292,93435 98939,18-09-2016 19:25:10,9
+90366 69257,90082 61126,18-09-2016 19:29:21,206
+(080)49796269,(080)33251027,18-09-2016 19:33:47,9
+74065 10917,90198 03659,18-09-2016 19:34:44,2444
+92424 51984,(04344)617351,18-09-2016 19:36:03,907
+1409668775,78295 60375,18-09-2016 19:38:47,938
+98445 27876,(080)32390650,18-09-2016 19:41:04,2361
+97385 70012,97424 53609,18-09-2016 19:59:01,89
+93418 41992,98440 65896,18-09-2016 20:00:24,2677
+97385 70012,94497 44333,18-09-2016 20:01:08,1099
+(080)61123756,(080)47459867,18-09-2016 20:03:18,2539
+81522 26166,97380 86781,18-09-2016 20:09:32,2172
+95266 42732,(080)45291968,18-09-2016 20:24:48,1128
+(080)60068611,99001 95783,18-09-2016 20:32:22,2639
+(080)32828889,94480 64700,18-09-2016 20:51:59,311
+97380 60551,81524 55552,18-09-2016 21:35:14,2547
+98459 20681,99001 95783,18-09-2016 21:39:13,134
+93415 21881,98454 90038,18-09-2016 21:39:49,1104
+(080)43562014,(040)34008657,18-09-2016 21:43:04,958
+(044)38044356,(04546)267875,18-09-2016 22:02:50,646
+(044)27641880,97416 18084,18-09-2016 22:09:59,1255
+78136 42599,97399 92703,18-09-2016 22:24:45,663
+(0471)2953539,74292 23928,18-09-2016 22:28:16,2201
+94001 62063,(080)33251027,18-09-2016 22:30:27,2619
+92415 91418,(080)48462898,18-09-2016 22:44:58,424
+93428 98469,(080)66044294,18-09-2016 22:58:52,9
+90365 51029,94499 38099,18-09-2016 23:05:35,552
+94491 55790,90359 99240,18-09-2016 23:06:39,1054
+77956 90632,(0821)4816394,18-09-2016 23:09:52,336
+(080)60998034,81517 73746,18-09-2016 23:10:07,288
+90192 30758,(080)64431120,18-09-2016 23:24:42,129
+(0821)3602212,99007 06998,18-09-2016 23:26:58,745
+(080)66857551,(040)66729318,18-09-2016 23:30:18,9
+81513 30231,(080)30231886,18-09-2016 23:31:00,93
+90366 69257,(0821)6141380,18-09-2016 23:34:33,19
+(080)44357306,90199 91061,18-09-2016 23:38:11,13
+78293 91304,98448 86633,18-09-2016 23:39:41,3850
+(080)66857551,(040)66729318,18-09-2016 23:44:32,84
+90087 42537,(080)35121497,18-09-2016 23:47:13,162
+90196 73585,(044)49868415,18-09-2016 23:51:18,718
+90355 94399,98452 19037,18-09-2016 23:55:31,190
+90193 20957,97420 86635,19-09-2016 06:00:18,3574
+78295 48262,70121 27677,19-09-2016 06:00:42,1167
+90193 61937,(022)66911540,19-09-2016 06:14:11,193
+92415 66985,(080)43685310,19-09-2016 06:19:54,286
+78298 02848,99001 95783,19-09-2016 06:27:43,1050
+(0471)2953539,97425 79921,19-09-2016 06:31:34,327
+97406 06245,(0471)2225098,19-09-2016 06:34:17,2455
+90199 91061,97414 15280,19-09-2016 06:38:56,293
+94482 95223,(080)45291968,19-09-2016 06:48:47,3461
+94495 34273,(080)39991213,19-09-2016 06:52:39,2798
+(04344)615310,93430 54160,19-09-2016 06:57:52,165
+97385 70012,97424 53609,19-09-2016 07:00:01,133
+(0821)6141380,90366 69257,19-09-2016 07:01:48,557
+(080)62164823,(080)32255824,19-09-2016 07:05:26,805
+99003 88572,99006 60463,19-09-2016 07:06:59,413
+(0824)6366719,94497 77615,19-09-2016 07:14:31,117
+97415 99182,(080)44076727,19-09-2016 07:18:45,97
+70129 62374,98441 32533,19-09-2016 07:30:16,4065
+(04344)228249,(080)43901222,19-09-2016 07:33:09,1881
+93410 98013,78295 60375,19-09-2016 07:47:43,93
+(080)41336994,97406 93118,19-09-2016 07:57:04,1029
+(080)25820765,(080)23413513,19-09-2016 08:02:55,178
+70121 27677,78295 48262,19-09-2016 08:09:33,2095
+98448 87878,90366 36573,19-09-2016 08:13:26,2050
+(080)46221576,78295 48262,19-09-2016 08:13:48,104
+(080)43685310,95263 76972,19-09-2016 08:15:39,2884
+(080)43901222,(04344)228249,19-09-2016 08:20:55,621
+94002 85593,(080)65023950,19-09-2016 08:30:57,140
+(080)22816760,90088 09624,19-09-2016 08:31:16,499
+99007 06998,(0821)3602212,19-09-2016 08:33:20,256
+70129 62374,98441 32533,19-09-2016 08:36:48,3182
+(080)35986130,(080)44389098,19-09-2016 08:38:16,915
+90087 42537,(080)35121497,19-09-2016 08:51:35,986
+(080)32828889,94480 64700,19-09-2016 09:24:07,2962
+(080)45291968,95266 42732,19-09-2016 09:27:32,702
+94002 85593,(080)65023950,19-09-2016 09:29:10,984
+97385 70012,94497 44333,19-09-2016 09:40:35,224
+90193 20957,97420 86635,19-09-2016 09:41:58,2023
+74065 10917,90198 03659,19-09-2016 09:53:31,36
+(080)69150162,92421 09526,19-09-2016 10:04:22,674
+(04546)267875,(080)22759842,19-09-2016 10:05:20,130
+90361 52679,94486 40312,19-09-2016 10:07:07,228
+98453 46196,(04344)228249,19-09-2016 10:19:51,820
+(080)43685310,(080)29435303,19-09-2016 10:27:34,1783
+90359 99240,94491 55790,19-09-2016 10:34:08,212
+87144 42283,98458 13389,19-09-2016 10:35:40,1555
+(04344)615310,(080)69104549,19-09-2016 10:47:48,186
+96565 52272,93428 11808,19-09-2016 11:00:23,1972
+92423 51078,(080)44076727,19-09-2016 11:09:51,201
+70129 62374,98441 32533,19-09-2016 11:14:08,2997
+97390 23922,99004 86250,19-09-2016 11:16:26,1063
+89071 31755,78290 99865,19-09-2016 11:16:37,1755
+(080)22816760,(0821)6141380,19-09-2016 11:18:44,2249
+(022)40840621,97393 52893,19-09-2016 11:32:04,527
+(040)26738737,90194 00845,19-09-2016 11:34:16,9
+87144 42283,98458 13389,19-09-2016 11:40:40,20
+97403 09983,90198 03659,19-09-2016 11:41:18,20
+97403 49292,93435 98939,19-09-2016 11:43:08,2788
+97425 92186,94482 95223,19-09-2016 11:45:16,2066
+97380 60551,97414 35000,19-09-2016 11:46:51,88
+77956 90632,78132 18081,19-09-2016 11:47:06,144
+93428 11808,96565 52272,19-09-2016 11:49:15,165
+93428 11808,96565 52272,19-09-2016 11:50:15,938
+1400481538,97420 86635,19-09-2016 12:00:59,73
+90355 10919,81524 55552,19-09-2016 12:01:29,1537
+97391 99665,90368 72970,19-09-2016 12:05:15,35
+97416 18084,(044)27641880,19-09-2016 12:08:20,881
+(044)69775060,90356 11723,19-09-2016 12:12:45,421
+81515 65055,(080)61419142,19-09-2016 12:16:45,664
+97424 21092,98451 87493,19-09-2016 12:41:05,2590
+(080)35986130,(080)44389098,19-09-2016 12:45:21,674
+(080)31606520,99004 86250,19-09-2016 12:56:25,1958
+(080)33251027,90192 87313,19-09-2016 13:16:03,2236
+90193 20957,97420 86635,19-09-2016 13:48:24,97
+81522 26166,(080)46566171,19-09-2016 13:55:26,2767
+(080)25863765,(022)28952819,19-09-2016 14:15:54,2614
+94001 07403,90368 72970,19-09-2016 14:35:53,99
+97390 23922,99004 86250,19-09-2016 14:50:26,2442
+(080)34121098,95267 70383,19-09-2016 14:57:22,456
+97391 99665,90355 94399,19-09-2016 15:04:34,569
+(022)66911540,93426 88474,19-09-2016 15:05:01,726
+93432 24657,(044)27523585,19-09-2016 15:11:09,880
+92423 51078,(080)44076727,19-09-2016 15:13:58,119
+(080)69564399,96569 95359,19-09-2016 15:18:04,360
+94489 72078,92415 91418,19-09-2016 15:18:23,507
+(080)35538852,98446 78140,19-09-2016 15:18:49,85
+(080)30270642,97380 86781,19-09-2016 15:34:33,227
+90193 16567,(04344)649705,19-09-2016 15:35:24,106
+93432 65750,92425 27794,19-09-2016 15:43:28,257
+94001 62063,(080)33251027,19-09-2016 15:51:36,2629
+96566 40412,90352 50054,19-09-2016 16:07:35,187
+93434 31551,(080)31982490,19-09-2016 16:16:53,72
+(022)44927512,(0471)2953539,19-09-2016 16:17:29,857
+97447 92655,87149 75762,19-09-2016 16:31:00,2191
+1408371942,94486 48123,19-09-2016 16:34:00,64
+97406 06245,(0471)2225098,19-09-2016 16:41:56,250
+81522 26166,90194 00845,19-09-2016 16:48:58,1164
+78291 94593,(080)23413513,19-09-2016 16:49:14,201
+98458 13389,87144 42283,19-09-2016 16:55:04,859
+(044)38044356,(04546)267875,19-09-2016 17:03:16,695
+92411 96415,97406 74488,19-09-2016 17:20:15,127
+(080)45291968,95266 42732,19-09-2016 17:20:43,344
+78130 00821,98453 94494,19-09-2016 17:28:00,87
+84312 48999,94485 80091,19-09-2016 17:30:11,257
+70127 59322,78133 71458,19-09-2016 17:41:45,290
+94491 55790,90359 99240,19-09-2016 17:41:48,989
+97403 49292,93435 98939,19-09-2016 17:48:06,90
+94497 77615,(0824)6366719,19-09-2016 17:52:56,1285
+(044)69775060,90356 11723,19-09-2016 17:53:36,151
+97406 06245,(0471)2225098,19-09-2016 17:54:49,475
+(080)30270642,97380 86781,19-09-2016 18:02:15,471
+(044)49481100,(080)69245029,19-09-2016 18:14:08,127
+84319 42810,97447 92655,19-09-2016 18:15:26,499
+(080)32828889,94480 64700,19-09-2016 18:18:26,68
+(080)44076727,97415 99182,19-09-2016 18:19:46,165
+94499 38099,90365 51029,19-09-2016 18:36:32,2028
+90366 36573,98448 87878,19-09-2016 18:43:07,833
+95263 76972,(080)62342282,19-09-2016 18:58:51,330
+(022)34715405,97448 02140,19-09-2016 19:02:20,1191
+90351 49472,90199 67471,19-09-2016 19:10:52,790
+70127 59322,78133 71458,19-09-2016 19:11:03,748
+98445 33687,97403 49292,19-09-2016 19:12:08,900
+92414 69419,(080)23802940,19-09-2016 19:18:47,2759
+(080)69887826,(080)32390650,19-09-2016 19:32:41,63
+90084 16988,93422 47940,19-09-2016 19:44:12,2005
+(022)28952819,(080)25863765,19-09-2016 19:44:29,867
+81522 26166,97414 62784,19-09-2016 19:50:02,591
+90197 38885,98445 85687,19-09-2016 19:56:24,850
+90089 69682,89076 07067,19-09-2016 19:56:40,36
+(040)66729318,97386 20071,19-09-2016 20:04:02,144
+98446 78140,(080)35538852,19-09-2016 20:08:02,200
+(044)48154960,89071 32787,19-09-2016 20:22:53,1462
+(044)41581342,97429 02055,19-09-2016 20:24:35,3055
+97403 09983,97406 06245,19-09-2016 20:34:39,1114
+84311 10322,(0824)2022081,19-09-2016 20:40:11,254
+92415 66985,(080)43685310,19-09-2016 21:07:23,1773
+90366 69257,90082 61126,19-09-2016 21:23:40,171
+84313 80377,(080)46304537,19-09-2016 21:29:41,586
+93432 24657,(044)27523585,19-09-2016 21:30:26,175
+(080)68104927,90194 08626,19-09-2016 21:34:40,200
+(022)22288051,(080)62164823,19-09-2016 21:37:07,2562
+97391 99665,90368 72970,19-09-2016 21:45:01,524
+(080)69245029,(044)49481100,19-09-2016 22:01:06,1259
+(080)32679828,(044)64005505,19-09-2016 22:33:16,1023
+92426 72402,97416 29480,19-09-2016 22:39:33,1764
+96566 40412,90352 50054,19-09-2016 22:39:53,118
+(080)45687418,93414 19669,19-09-2016 22:46:31,915
+90193 16567,(04344)649705,19-09-2016 22:55:11,1273
+98454 07778,97421 07528,19-09-2016 22:55:23,9
+74065 10917,90198 03659,19-09-2016 22:58:36,672
+93435 98939,97403 49292,19-09-2016 23:14:33,257
+(0471)6537077,78136 54214,19-09-2016 23:17:31,3014
+(080)49328664,94005 20878,19-09-2016 23:19:59,3502
+92425 27794,(044)45416964,19-09-2016 23:24:45,1328
+90087 42537,(080)35121497,19-09-2016 23:34:07,1023
+94497 44333,97385 70012,19-09-2016 23:36:00,527
+97402 57057,(080)45547058,19-09-2016 23:55:55,195
+(0471)2225098,97406 06245,19-09-2016 23:59:08,277
+96566 40412,90352 50054,19-09-2016 23:59:30,9
+97380 60551,97414 35000,20-09-2016 06:05:52,3146
+90084 16988,93422 47940,20-09-2016 06:26:26,3630
+(04546)267875,(044)38044356,20-09-2016 06:28:59,2167
+(080)25863765,(022)38214945,20-09-2016 06:41:54,708
+(0821)4753474,93415 21881,20-09-2016 06:47:56,3783
+(080)43562014,(080)32390650,20-09-2016 06:52:36,119
+70121 27677,78295 48262,20-09-2016 06:53:25,310
+(080)31863188,(080)67426410,20-09-2016 06:54:02,121
+81517 73746,94497 77615,20-09-2016 07:11:18,60
+90355 94399,97391 99665,20-09-2016 07:14:29,725
+(080)48462898,90199 67471,20-09-2016 07:15:48,707
+98446 66723,83019 53227,20-09-2016 07:23:10,187
+98448 87878,90366 36573,20-09-2016 07:26:54,1755
+97414 35000,97380 60551,20-09-2016 07:27:54,165
+(080)23802940,98445 71741,20-09-2016 07:34:45,71
+(080)61123756,98448 86633,20-09-2016 07:46:40,954
+90197 69887,99610 89720,20-09-2016 07:48:02,1404
+(080)43562014,(080)32390650,20-09-2016 07:50:29,146
+97429 02055,(044)41581342,20-09-2016 07:58:32,198
+(080)25863765,(022)66911540,20-09-2016 07:59:04,2015
+(080)22759842,(04546)267875,20-09-2016 07:59:17,100
+(044)27523585,93432 24657,20-09-2016 08:01:16,361
+(080)64431120,90192 30758,20-09-2016 08:20:09,240
+(080)21697299,94488 97308,20-09-2016 08:28:38,1617
+90192 30758,(080)64431120,20-09-2016 08:31:31,218
+97415 99182,(080)44076727,20-09-2016 08:31:51,809
+87146 31956,83019 39880,20-09-2016 08:34:58,152
+78130 00821,98453 94494,20-09-2016 08:50:24,782
+77950 18278,89078 69605,20-09-2016 08:59:04,1255
+90351 49472,90199 67471,20-09-2016 09:03:22,755
+(080)39755879,90355 94399,20-09-2016 09:08:55,834
+(080)20383942,81517 73746,20-09-2016 09:12:41,3214
+98444 95768,99003 47921,20-09-2016 09:17:57,209
+77956 90632,92411 96415,20-09-2016 09:35:02,107
+97390 23922,99004 86250,20-09-2016 09:46:25,2464
+90365 51029,94499 38099,20-09-2016 09:49:58,805
+90366 69257,(0821)6141380,20-09-2016 10:05:34,1177
+90359 79636,99001 23133,20-09-2016 10:09:04,317
+90197 38885,98445 85687,20-09-2016 10:10:49,38
+98447 62998,(080)46304537,20-09-2016 10:18:25,9
+(080)49796269,(080)33251027,20-09-2016 11:17:35,46
+(080)33251027,(080)49796269,20-09-2016 11:25:25,3127
+90365 06212,(080)45291968,20-09-2016 11:32:37,2885
+(080)33118033,93427 40118,20-09-2016 11:36:15,9
+(044)48154960,89071 32787,20-09-2016 11:43:08,2766
+(080)64765396,92415 49633,20-09-2016 11:57:39,1610
+(080)43901222,(04344)228249,20-09-2016 12:19:58,91
+90365 51029,94499 38099,20-09-2016 12:28:32,217
+(04344)228249,98453 46196,20-09-2016 12:30:25,1026
+97403 09983,97406 06245,20-09-2016 12:34:16,1082
+95269 20533,97449 50000,20-09-2016 12:40:26,1327
+81524 55552,90355 10919,20-09-2016 12:47:08,122
+90085 20915,99002 80226,20-09-2016 13:00:56,2203
+(080)25863765,(022)66911540,20-09-2016 13:08:30,9
+(044)25144377,78993 89387,20-09-2016 13:09:50,2918
+(080)64765396,98448 88411,20-09-2016 13:23:18,2171
+(04546)267875,(080)22759842,20-09-2016 13:40:15,1389
+(022)68535788,(080)65023950,20-09-2016 13:44:01,110
+98454 90038,93415 21881,20-09-2016 13:49:21,103
+94001 62063,(080)33251027,20-09-2016 13:50:29,1357
+(080)29483476,90368 95100,20-09-2016 13:51:58,1021
+93412 66159,98454 07778,20-09-2016 14:06:40,179
+74066 31484,98454 90038,20-09-2016 14:13:54,1976
+94002 85593,(080)65023950,20-09-2016 14:25:26,9
+(080)25863765,(022)66911540,20-09-2016 14:29:42,2151
+97390 23922,90359 52497,20-09-2016 14:33:44,2886
+97386 37259,(080)33251027,20-09-2016 14:34:36,3117
+96566 40412,90352 50054,20-09-2016 14:35:19,236
+74066 93594,78136 65840,20-09-2016 14:40:49,2735
+98446 66723,97422 22278,20-09-2016 14:41:12,1177
+(080)35538852,98446 78140,20-09-2016 14:46:53,9
+78290 99865,89071 31755,20-09-2016 14:57:11,120
+(080)47459867,(080)61123756,20-09-2016 15:05:37,820
+(080)34121098,95267 70383,20-09-2016 15:06:17,3355
+(080)47459867,(080)61123756,20-09-2016 15:06:48,149
+90356 11723,(044)69775060,20-09-2016 15:16:54,2256
+98444 16192,(022)28765220,20-09-2016 15:17:19,829
+(080)41712046,97410 27512,20-09-2016 15:20:39,75
+97424 22395,(022)29303640,20-09-2016 15:30:20,41
+96565 52272,93428 11808,20-09-2016 15:33:19,401
+90352 50054,96566 40412,20-09-2016 15:35:09,923
+98453 94494,78130 00821,20-09-2016 15:38:47,3701
+(080)46772413,(04344)211113,20-09-2016 15:43:52,2175
+93428 11808,96565 52272,20-09-2016 15:53:07,9
+(080)45291968,95266 42732,20-09-2016 15:54:47,138
+99003 88572,(080)46304537,20-09-2016 15:58:35,490
+(040)30429041,(080)39169481,20-09-2016 16:05:01,584
+70121 27677,78295 48262,20-09-2016 16:19:27,1072
+95263 76972,84319 39746,20-09-2016 16:25:55,641
+97403 49292,93435 98939,20-09-2016 16:49:36,2666
+92424 51984,(04344)617351,20-09-2016 16:51:44,162
+95263 76972,(080)62342282,20-09-2016 16:58:17,368
+(080)43562014,(080)32390650,20-09-2016 16:59:04,2768
+92428 82401,97385 29751,20-09-2016 17:00:22,187
+(080)43206415,99612 41256,20-09-2016 17:01:14,137
+98453 46196,(04344)228249,20-09-2016 17:01:22,102
+98445 85687,90197 38885,20-09-2016 17:09:28,1431
+(080)26097534,(080)39755879,20-09-2016 17:13:27,97
+(080)22759842,(080)43562014,20-09-2016 17:14:08,9
+(080)32638303,98458 94162,20-09-2016 17:16:39,89
+94495 03761,(04546)267875,20-09-2016 17:32:13,1163
+90199 67471,90351 49472,20-09-2016 17:41:14,520
+(080)34121098,81513 36123,20-09-2016 17:44:16,610
+(080)43562014,(080)22759842,20-09-2016 17:49:40,886
+90366 69257,(0821)6141380,20-09-2016 17:50:31,2030
+97424 21092,(080)69609453,20-09-2016 18:01:44,9
+81524 55552,97380 60551,20-09-2016 18:17:22,2858
+(080)32638303,98458 94162,20-09-2016 18:20:09,805
+98440 65896,98446 78140,20-09-2016 18:22:22,144
+(044)41581342,97429 02055,20-09-2016 18:28:15,2112
+98454 07778,93412 66159,20-09-2016 18:33:49,581
+94480 64700,90088 09624,20-09-2016 18:34:22,646
+90088 09624,93434 31551,20-09-2016 18:35:27,139
+90359 91512,94492 23068,20-09-2016 19:05:41,328
+(044)30727085,92414 22596,20-09-2016 19:10:41,120
+98446 66723,97422 22278,20-09-2016 19:18:55,168
+93416 07259,78138 56841,20-09-2016 19:21:45,2460
+87149 75762,97447 92655,20-09-2016 19:31:44,890
+94489 95536,94492 23068,20-09-2016 19:35:19,47
+90087 42537,(080)35121497,20-09-2016 19:51:06,265
+(080)31863188,(080)67426410,20-09-2016 20:03:56,1804
+97424 53609,97385 70012,20-09-2016 20:18:10,975
+81522 26166,90194 00845,20-09-2016 20:27:45,99
+(011)68486606,(080)32255824,20-09-2016 21:08:58,26
+78295 48262,(080)46221576,20-09-2016 21:12:04,85
+(080)20227149,(080)39991213,20-09-2016 21:12:10,257
+90359 91512,94492 23068,20-09-2016 21:13:37,1100
+(080)45547058,84319 52539,20-09-2016 21:14:56,1952
+90194 00845,97416 17124,20-09-2016 21:33:22,46
+99006 60463,99003 88572,20-09-2016 21:37:49,202
+97386 37259,(080)33251027,20-09-2016 21:41:32,265
+95267 70383,97414 62027,20-09-2016 21:54:22,435
+98440 65896,(080)47459867,20-09-2016 21:58:30,135
+90083 59148,(022)21884607,20-09-2016 22:02:59,837
+(033)25441815,94489 82688,20-09-2016 22:06:06,903
+94499 38099,90365 51029,20-09-2016 22:12:04,377
+97447 92655,(022)39006198,20-09-2016 22:54:30,1340
+(022)38214945,(080)25863765,20-09-2016 23:19:27,3731
+99003 88572,(080)46304537,20-09-2016 23:21:32,816
+83019 39880,87146 31956,20-09-2016 23:32:40,875
+(080)64015211,92429 86621,20-09-2016 23:33:24,175
+(080)66955387,97380 60551,20-09-2016 23:46:23,524
+98440 65896,93418 41992,20-09-2016 23:55:41,2575
+(080)35121497,90087 42537,20-09-2016 23:56:57,139
+(080)67362492,(04344)316423,21-09-2016 06:15:43,678
+97380 86781,(080)30270642,21-09-2016 06:17:28,3658
+(080)47459867,(080)61123756,21-09-2016 06:20:08,153
+(080)47459867,(080)61123756,21-09-2016 06:22:49,769
+90084 16988,98449 60656,21-09-2016 06:53:09,495
+(080)45291968,94482 95223,21-09-2016 06:54:58,40
+(080)65275591,98442 73671,21-09-2016 06:58:49,406
+70129 62374,98441 32533,21-09-2016 07:05:38,1124
+(080)39991213,94495 34273,21-09-2016 07:35:12,9
+(080)46221576,78295 48262,21-09-2016 07:46:25,171
+90193 16567,(04344)649705,21-09-2016 07:51:15,24
+95264 40233,98440 68457,21-09-2016 07:52:13,1374
+(044)49481100,(080)69245029,21-09-2016 07:58:04,507
+(044)49868415,90196 73585,21-09-2016 08:13:18,2691
+93432 24657,(044)27523585,21-09-2016 08:14:35,2233
+(022)34715405,97448 02140,21-09-2016 08:35:40,635
+(080)39991213,94495 34273,21-09-2016 08:44:32,788
+92415 66985,(080)43685310,21-09-2016 08:46:12,2580
+(022)46574732,97403 88244,21-09-2016 08:46:13,87
+93426 76415,(080)20123809,21-09-2016 09:07:39,319
+98454 90038,93415 21881,21-09-2016 09:09:44,1861
+93427 56500,98447 12671,21-09-2016 09:11:11,726
+(022)28765220,98444 16192,21-09-2016 09:18:33,203
+90351 35947,97424 21092,21-09-2016 09:18:48,132
+90197 69887,99610 89720,21-09-2016 09:19:13,107
+98457 75681,(022)38214945,21-09-2016 09:40:38,96
+(080)47459867,98440 65896,21-09-2016 09:45:08,43
+97390 23922,90359 52497,21-09-2016 10:00:24,351
+(080)30231886,81513 30231,21-09-2016 10:00:53,4062
+(080)29483476,90368 95100,21-09-2016 10:05:19,40
+93434 31551,(080)31982490,21-09-2016 10:09:51,626
+(040)26738737,90194 00845,21-09-2016 10:18:38,671
+(080)33251027,97386 37259,21-09-2016 10:19:10,2579
+(080)69150162,92421 09526,21-09-2016 10:30:14,532
+92411 96415,93435 21961,21-09-2016 10:34:37,9
+97422 22278,98446 66723,21-09-2016 10:48:06,222
+(022)34715405,74298 18325,21-09-2016 10:51:52,260
+98446 66723,97422 22278,21-09-2016 10:53:55,600
+(04344)322628,90355 10919,21-09-2016 10:56:07,117
+(080)47459867,98440 65896,21-09-2016 10:56:40,2598
+90355 49499,(080)37913009,21-09-2016 10:57:37,186
+94499 20763,93412 66159,21-09-2016 11:03:00,3003
+(080)34932254,81513 36123,21-09-2016 11:05:44,3136
+(080)21129907,78293 38561,21-09-2016 11:20:53,1938
+(080)32255824,(080)62164823,21-09-2016 11:21:38,1148
+97393 52893,(022)40840621,21-09-2016 11:28:36,537
+90354 08732,94499 20763,21-09-2016 11:30:10,1238
+98443 72004,78132 18081,21-09-2016 11:35:17,231
+74065 10917,90198 03659,21-09-2016 11:46:50,580
+81510 47188,(080)41095396,21-09-2016 11:48:24,157
+(0824)2022081,84311 10322,21-09-2016 11:49:46,2414
+81525 12041,99610 89720,21-09-2016 11:50:46,913
+78298 91466,97380 60551,21-09-2016 11:54:21,2791
+(04344)211113,(080)46772413,21-09-2016 11:54:41,3124
+93432 24657,(044)27523585,21-09-2016 11:58:46,2542
+94497 44333,97385 70012,21-09-2016 12:09:58,193
+97414 97237,87146 58071,21-09-2016 12:13:46,9
+92415 91418,94489 72078,21-09-2016 12:20:37,39
+94005 20878,(080)49328664,21-09-2016 12:22:05,2828
+99002 80226,90085 20915,21-09-2016 12:26:54,289
+90359 79636,70121 27677,21-09-2016 12:34:05,124
+77956 90632,(0821)3537229,21-09-2016 12:34:58,2550
+97420 86635,90193 20957,21-09-2016 12:39:18,2017
+98440 71648,(080)27498339,21-09-2016 12:46:31,664
+(080)29483476,90368 95100,21-09-2016 13:01:48,748
+(080)46702492,(080)44046839,21-09-2016 13:11:13,799
+97380 86781,(080)30270642,21-09-2016 13:15:52,41
+(080)32255824,(080)62164823,21-09-2016 13:24:41,113
+97446 95253,97428 35959,21-09-2016 13:25:22,1734
+(080)46304537,98447 62998,21-09-2016 13:27:15,1108
+94489 95536,94492 23068,21-09-2016 13:36:51,723
+(080)22759842,(080)43562014,21-09-2016 13:40:50,308
+90365 06212,(080)45291968,21-09-2016 13:45:45,732
+98440 65896,(080)47459867,21-09-2016 14:07:19,2383
+74066 31484,98454 90038,21-09-2016 14:15:20,9
+(080)69245029,(044)49481100,21-09-2016 14:33:20,260
+98453 86521,93410 56456,21-09-2016 14:45:49,2540
+97380 60551,81524 55552,21-09-2016 14:46:24,1033
+93420 59147,90357 17994,21-09-2016 14:48:06,169
+94486 40312,(044)48154960,21-09-2016 14:48:40,805
+95267 70383,97414 62027,21-09-2016 14:51:46,1969
+98457 75681,(022)38214945,21-09-2016 14:56:15,4459
+(080)62164823,74066 93594,21-09-2016 14:58:30,1920
+(080)29435303,(080)43685310,21-09-2016 15:00:04,316
+84312 48999,(080)43685310,21-09-2016 15:00:08,936
+92415 91418,(080)48462898,21-09-2016 15:06:18,1082
+97425 92186,94482 95223,21-09-2016 15:14:03,591
+(022)66911540,90193 61937,21-09-2016 15:18:57,181
+99001 95783,78298 02848,21-09-2016 15:31:08,30
+(080)20383942,81517 73746,21-09-2016 15:35:38,2076
+95263 76972,84319 39746,21-09-2016 15:39:39,94
+98447 62998,(080)46304537,21-09-2016 15:43:57,2554
+90355 10919,81524 55552,21-09-2016 15:46:21,208
+(080)62164823,74066 93594,21-09-2016 15:59:27,1694
+90359 52497,(0824)2145844,21-09-2016 16:05:30,233
+97406 06245,(0471)2225098,21-09-2016 16:06:11,887
+(044)48154960,89071 32787,21-09-2016 16:11:49,504
+90082 61126,90366 69257,21-09-2016 16:14:54,885
+1408409918,(022)38214945,21-09-2016 16:22:12,24
+97419 90520,(08214175)358,21-09-2016 16:30:17,122
+(04344)322628,97427 87999,21-09-2016 16:31:13,402
+97384 69866,87146 31956,21-09-2016 16:33:47,29
+97406 74488,90358 98099,21-09-2016 16:41:06,305
+(080)43215621,(080)47459867,21-09-2016 16:58:39,180
+94480 64700,(080)32828889,21-09-2016 16:58:55,139
+97403 49292,98445 33687,21-09-2016 17:20:32,3379
+98448 86633,78293 91304,21-09-2016 17:25:14,214
+97448 02140,(022)34715405,21-09-2016 17:26:09,9
+84313 80377,(080)46304537,21-09-2016 17:29:42,129
+98444 72482,98446 78140,21-09-2016 17:36:00,538
+90199 91061,97414 15280,21-09-2016 18:03:42,1295
+93420 59147,90357 17994,21-09-2016 18:04:38,763
+81515 65055,(080)61419142,21-09-2016 18:12:36,1718
+87144 42283,98458 13389,21-09-2016 18:18:02,1409
+87149 75762,97447 92655,21-09-2016 18:43:45,9
+90355 94399,98452 19037,21-09-2016 18:51:32,897
+78136 65840,74066 93594,21-09-2016 18:52:30,2239
+97424 21092,(080)69609453,21-09-2016 19:01:58,75
+84313 80377,(080)46304537,21-09-2016 19:02:01,1782
+94482 95223,97425 92186,21-09-2016 19:27:16,27
+(080)43562014,(080)32390650,21-09-2016 19:45:00,689
+98458 13389,87144 42283,21-09-2016 19:45:23,265
+(022)39006198,97447 92655,21-09-2016 19:50:38,1001
+78136 54214,(0471)6537077,21-09-2016 19:55:37,551
+(080)27498339,98440 71648,21-09-2016 19:55:43,209
+(080)43562014,(040)34008657,21-09-2016 19:59:00,115
+(080)62164823,(080)32255824,21-09-2016 20:07:09,1351
+81513 30231,(080)30231886,21-09-2016 20:11:55,2836
+94491 55790,90359 99240,21-09-2016 20:15:08,3575
+(022)38214945,98457 75681,21-09-2016 20:15:11,585
+93435 98939,97403 49292,21-09-2016 20:17:12,2769
+94497 77615,(0824)6366719,21-09-2016 20:20:22,3068
+81513 30231,(080)30231886,21-09-2016 20:26:27,9
+97429 02055,(044)41581342,21-09-2016 20:31:42,228
+(080)33251027,90192 87313,21-09-2016 20:35:37,4086
+(080)30270642,97380 86781,21-09-2016 20:37:14,202
+97449 50000,95269 20533,21-09-2016 20:54:08,2938
+(080)69564399,96569 95359,21-09-2016 20:59:00,670
+98444 72482,98446 78140,21-09-2016 21:00:59,2653
+84319 39746,95263 76972,21-09-2016 21:42:46,2175
+97384 69866,87146 31956,21-09-2016 21:44:57,9
+90192 30758,(080)64431120,21-09-2016 21:48:57,355
+98440 65896,(080)47459867,21-09-2016 21:49:24,67
+94488 97308,(080)21697299,21-09-2016 21:51:13,26
+98454 90038,74066 31484,21-09-2016 22:11:53,2249
+90084 16988,93422 47940,21-09-2016 22:12:17,3274
+98446 78140,98444 72482,21-09-2016 22:30:25,1032
+(080)45291968,90365 06212,21-09-2016 22:31:26,3223
+92426 72402,97416 29480,21-09-2016 22:36:03,40
+92425 27794,(044)45416964,21-09-2016 22:41:57,307
+(080)40362016,94491 29500,21-09-2016 22:44:59,2023
+(080)32390650,(080)43562014,21-09-2016 22:45:10,168
+90351 35947,(080)35121497,21-09-2016 22:54:08,532
+(0821)4753474,97404 90013,21-09-2016 22:57:12,49
+(080)62164823,(022)22288051,21-09-2016 23:05:18,608
+(080)32679828,90196 73585,21-09-2016 23:11:56,2677
+90193 16567,(04344)649705,21-09-2016 23:13:10,920
+99610 89720,90197 69887,21-09-2016 23:15:48,78
+70121 27677,90359 79636,21-09-2016 23:17:17,258
+97427 87999,(04344)322628,21-09-2016 23:40:57,745
+90198 03659,74065 10917,21-09-2016 23:41:33,777
+74066 93594,(080)62164823,21-09-2016 23:45:20,132
+92413 38675,90362 07317,21-09-2016 23:56:00,2424
+(080)35986130,93432 65750,22-09-2016 06:00:51,2441
+(080)33251027,90192 87313,22-09-2016 06:03:46,328
+98453 94494,78130 00821,22-09-2016 06:04:23,2342
+94482 95223,(080)45291968,22-09-2016 06:08:35,2134
+(080)68104927,90194 08626,22-09-2016 06:08:48,214
+92423 51078,(080)25863765,22-09-2016 06:22:12,9
+(080)35986130,(080)44389098,22-09-2016 06:26:48,44
+81524 55552,(080)60062475,22-09-2016 06:27:42,452
+93435 98939,97403 49292,22-09-2016 06:31:31,363
+99004 86250,95262 44233,22-09-2016 06:47:51,176
+99002 80226,90085 20915,22-09-2016 06:48:51,2025
+90355 94399,97391 99665,22-09-2016 06:55:54,151
+98448 86633,78293 91304,22-09-2016 07:05:49,758
+(044)69775060,78134 03625,22-09-2016 07:09:14,292
+97403 49292,93435 98939,22-09-2016 07:12:29,146
+98444 95768,90194 08626,22-09-2016 07:21:07,561
+(044)20550065,84319 52539,22-09-2016 07:32:32,274
+(080)32390650,(080)43562014,22-09-2016 07:34:33,3136
+74065 10917,90198 03659,22-09-2016 07:36:22,214
+90355 10919,81510 47188,22-09-2016 07:46:02,1309
+90368 95100,(080)29483476,22-09-2016 07:58:52,223
+(080)29483476,90368 95100,22-09-2016 08:09:07,827
+98453 46196,(04344)228249,22-09-2016 08:11:50,853
+99612 41256,90197 24124,22-09-2016 08:12:54,3072
+92414 22596,(080)32647101,22-09-2016 08:16:21,236
+96566 40412,90352 50054,22-09-2016 08:17:31,110
+(04344)316423,(080)67362492,22-09-2016 08:19:59,973
+78132 18081,77956 90632,22-09-2016 08:44:18,225
+(080)43562014,(080)22759842,22-09-2016 08:57:13,903
+90352 50054,97389 12538,22-09-2016 09:05:06,649
+(080)69245029,(044)49481100,22-09-2016 09:13:45,3146
+(044)25144377,78993 89387,22-09-2016 09:17:15,555
+(080)32679828,90196 73585,22-09-2016 09:22:20,140
+(080)49328664,94005 20878,22-09-2016 09:33:26,790
+(080)20123809,93426 76415,22-09-2016 09:38:56,46
+98445 33687,97403 49292,22-09-2016 09:45:30,137
+(022)30044349,97385 29751,22-09-2016 09:53:26,66
+(04546)388977,89071 50880,22-09-2016 09:54:21,1123
+93435 98939,97403 49292,22-09-2016 09:55:48,2476
+92411 96415,93435 21961,22-09-2016 10:04:24,26
+97386 20071,94499 20763,22-09-2016 10:26:33,300
+97380 60551,97380 86781,22-09-2016 10:49:12,2715
+97406 74488,92411 96415,22-09-2016 10:53:18,2227
+94495 34273,(080)39991213,22-09-2016 10:56:10,113
+90199 67471,94482 22716,22-09-2016 11:01:09,1075
+(0471)2953539,(022)44927512,22-09-2016 11:02:49,309
+93432 65750,(080)20123809,22-09-2016 11:04:12,1949
+(0821)3602212,99007 06998,22-09-2016 11:05:34,755
+97425 92186,94482 95223,22-09-2016 11:15:11,536
+(04344)649705,94005 20878,22-09-2016 11:15:26,1003
+(040)69695864,97406 93118,22-09-2016 11:17:32,304
+94489 82688,(033)25441815,22-09-2016 11:18:26,767
+90352 50054,97389 12538,22-09-2016 11:26:16,2959
+99001 95783,98459 20681,22-09-2016 11:26:49,278
+84319 52539,(080)45547058,22-09-2016 11:41:52,552
+(022)37572285,(080)61135674,22-09-2016 11:42:02,260
+92423 51078,(080)25863765,22-09-2016 11:50:03,863
+(0824)2022081,84311 10322,22-09-2016 11:58:23,484
+(080)47459867,(080)61123756,22-09-2016 11:58:38,3270
+(044)69775060,78134 03625,22-09-2016 12:09:37,2692
+81510 47188,97429 02055,22-09-2016 12:17:43,70
+1409994233,97426 78238,22-09-2016 12:20:57,216
+90365 06212,81513 30231,22-09-2016 12:26:58,50
+81513 36123,(080)34932254,22-09-2016 12:38:28,95
+97406 06245,(0471)2225098,22-09-2016 12:40:43,105
+(080)62164823,74066 93594,22-09-2016 12:42:17,879
+97449 50000,78295 78750,22-09-2016 12:45:18,1766
+90193 16567,(04344)649705,22-09-2016 12:47:00,2610
+(022)29303640,97424 22395,22-09-2016 12:48:06,171
+(080)32390650,98445 27876,22-09-2016 13:05:23,1758
+81520 43406,(040)69695864,22-09-2016 13:17:42,833
+94489 95536,90359 91512,22-09-2016 13:19:20,2688
+92423 51078,78134 03625,22-09-2016 13:21:20,644
+(080)35538852,92421 64236,22-09-2016 13:21:36,182
+(080)64819785,74066 93594,22-09-2016 13:29:27,536
+70127 59322,78133 71458,22-09-2016 13:41:19,625
+90351 35947,97424 21092,22-09-2016 13:49:37,1340
+97386 37259,(080)33251027,22-09-2016 13:53:52,1161
+92423 51078,(080)25863765,22-09-2016 13:58:32,1014
+(080)40929452,77956 55474,22-09-2016 13:59:31,285
+(080)44357306,90199 91061,22-09-2016 14:02:42,643
+(080)26097534,(080)39755879,22-09-2016 14:07:07,623
+(04344)322628,97427 87999,22-09-2016 14:16:30,503
+(040)26738737,(080)21652896,22-09-2016 14:28:41,2932
+(080)45547058,97402 57057,22-09-2016 14:42:09,499
+94495 34273,(080)39991213,22-09-2016 14:49:28,156
+94499 20763,97386 20071,22-09-2016 14:49:40,103
+94497 44333,97385 70012,22-09-2016 14:53:04,59
+(080)35987804,74062 28875,22-09-2016 15:04:51,3465
+90368 72970,94001 07403,22-09-2016 15:07:23,9
+(080)41095396,81510 47188,22-09-2016 15:13:46,1737
+(044)48154960,89071 32787,22-09-2016 15:26:37,269
+78133 71458,70127 59322,22-09-2016 15:32:25,111
+98453 46196,(04344)228249,22-09-2016 15:37:13,72
+(011)68486606,(080)32255824,22-09-2016 15:44:09,184
+97424 22395,(022)29303640,22-09-2016 15:50:27,869
+(044)30727085,92414 22596,22-09-2016 15:50:47,1801
+78135 69048,(011)21017178,22-09-2016 15:51:42,51
+(0821)2135265,81524 55552,22-09-2016 16:03:17,601
+81513 36123,(080)34121098,22-09-2016 16:08:06,3707
+(04344)615310,(080)69104549,22-09-2016 16:12:58,9
+(022)44927512,(0471)2953539,22-09-2016 16:19:33,2001
+98454 90038,74066 31484,22-09-2016 16:20:19,661
+84311 10322,(0824)2022081,22-09-2016 16:21:30,147
+(080)46304537,98447 62998,22-09-2016 16:23:36,2432
+(044)27641880,97416 18084,22-09-2016 16:35:09,3434
+98440 65896,(080)47459867,22-09-2016 16:41:24,239
+(080)44076727,97415 99182,22-09-2016 16:49:02,533
+81513 30231,90365 06212,22-09-2016 16:49:43,3159
+78138 93826,90359 99240,22-09-2016 16:58:00,148
+98447 62998,(080)46304537,22-09-2016 16:59:33,648
+99007 06998,(0821)3602212,22-09-2016 17:01:32,9
+(044)24037112,93427 56500,22-09-2016 17:02:05,3061
+96569 95359,78138 93826,22-09-2016 17:13:00,9
+84313 80377,(080)46304537,22-09-2016 17:15:02,221
+(080)30270642,97380 86781,22-09-2016 17:24:15,1192
+97393 04671,95262 44233,22-09-2016 17:29:25,196
+(080)25863765,(022)28952819,22-09-2016 17:38:21,120
+(022)30044349,97385 29751,22-09-2016 17:42:20,101
+95267 70383,(080)34121098,22-09-2016 17:47:46,956
+99612 41256,90197 24124,22-09-2016 17:47:47,262
+98441 32533,70129 62374,22-09-2016 17:51:37,70
+90082 61126,90366 69257,22-09-2016 18:07:18,682
+97380 60551,81524 55552,22-09-2016 18:11:40,578
+97386 37259,78290 31269,22-09-2016 18:11:59,1630
+1403072432,(0821)3537229,22-09-2016 18:19:05,280
+99001 95783,78298 02848,22-09-2016 18:22:58,854
+77956 90632,78132 18081,22-09-2016 18:28:43,10
+97424 22395,(022)47410783,22-09-2016 18:42:30,1011
+77956 90632,92411 96415,22-09-2016 18:48:00,1099
+98444 63396,(022)46574732,22-09-2016 18:59:38,264
+87146 31956,(080)68104927,22-09-2016 19:07:17,116
+(044)48154960,89071 32787,22-09-2016 19:12:19,181
+99006 60463,99003 88572,22-09-2016 19:15:58,222
+(080)45291968,95266 42732,22-09-2016 19:21:34,656
+95266 42732,(080)45291968,22-09-2016 19:22:31,628
+(040)66729318,(080)66857551,22-09-2016 19:27:32,116
+(080)32255824,(080)62164823,22-09-2016 19:32:22,752
+90359 79636,70121 27677,22-09-2016 19:35:46,661
+(04546)267875,(044)38044356,22-09-2016 19:40:01,291
+97426 64618,90086 21082,22-09-2016 20:07:24,216
+81525 12041,90356 11723,22-09-2016 20:15:05,743
+97427 87999,(04344)322628,22-09-2016 20:26:03,2064
+99009 32475,(011)47486239,22-09-2016 20:29:01,2830
+90355 10919,(04344)322628,22-09-2016 20:29:20,139
+(0821)6141380,(080)22816760,22-09-2016 20:38:52,953
+(080)44046839,(080)46702492,22-09-2016 20:53:43,697
+(080)49796269,(080)33251027,22-09-2016 20:59:08,581
+78132 18081,77956 90632,22-09-2016 21:01:39,111
+92411 96415,97406 74488,22-09-2016 21:04:39,184
+78132 18081,93416 07259,22-09-2016 21:19:07,160
+(080)60062475,83013 85044,22-09-2016 21:26:52,9
+(022)66911540,90193 61937,22-09-2016 21:26:56,1826
+(022)28952819,(080)25863765,22-09-2016 21:37:52,1402
+87140 67779,89072 39789,22-09-2016 21:38:01,548
+97427 87999,(04344)322628,22-09-2016 22:06:22,593
+97419 90520,(08214175)358,22-09-2016 22:06:37,692
+90355 94399,98452 19037,22-09-2016 22:23:32,1080
+90199 91061,(080)44357306,22-09-2016 22:23:44,932
+94489 82688,(033)25441815,22-09-2016 22:24:27,442
+(080)20123809,93426 76415,22-09-2016 22:30:00,2473
+97380 60551,97380 86781,22-09-2016 22:31:32,9
+87146 31956,83019 39880,22-09-2016 22:32:51,455
+94006 62384,(022)38214945,22-09-2016 22:41:58,192
+(0824)2145844,90359 52497,22-09-2016 22:42:29,2487
+97424 21092,98451 87493,22-09-2016 22:44:59,183
+90192 30758,(080)64431120,22-09-2016 23:00:57,2900
+97384 69866,87146 31956,22-09-2016 23:06:29,270
+97391 99665,90355 94399,22-09-2016 23:10:52,1066
+96569 95359,(080)69564399,22-09-2016 23:15:47,9
+98446 66723,97422 22278,22-09-2016 23:22:37,9
+74065 10917,90198 03659,22-09-2016 23:29:21,228
+94497 44333,97385 70012,22-09-2016 23:36:03,550
+70121 27677,78295 48262,22-09-2016 23:39:54,2212
+97424 53609,97385 70012,22-09-2016 23:40:50,1343
+(033)25441815,94489 82688,22-09-2016 23:47:54,1989
+(080)49328664,94005 20878,22-09-2016 23:59:24,623
+90351 35947,(080)35121497,23-09-2016 06:02:28,3893
+97410 27512,(080)41712046,23-09-2016 06:06:03,139
+(080)66857551,(040)66729318,23-09-2016 06:09:16,633
+90351 35947,(080)35121497,23-09-2016 06:24:06,2031
+90192 87313,(080)33251027,23-09-2016 06:33:40,893
+97385 29751,(022)30044349,23-09-2016 06:35:06,82
+70121 27677,90359 79636,23-09-2016 06:35:14,1222
+(0821)3602212,99007 06998,23-09-2016 06:53:10,107
+94499 46077,83013 02552,23-09-2016 06:54:14,785
+94492 23068,90359 91512,23-09-2016 07:06:11,675
+(08214175)358,97419 90520,23-09-2016 07:06:57,694
+92423 51078,78134 03625,23-09-2016 07:13:07,123
+97386 37259,78290 31269,23-09-2016 07:20:21,2107
+93428 11808,96565 52272,23-09-2016 07:20:51,172
+98447 62998,(080)46304537,23-09-2016 07:26:43,78
+90365 51029,94499 38099,23-09-2016 07:28:10,339
+(022)66911540,(080)25863765,23-09-2016 07:34:06,129
+81525 12041,90356 11723,23-09-2016 07:39:14,9
+(080)32647101,92414 22596,23-09-2016 07:57:44,1073
+(080)32255824,(080)62164823,23-09-2016 07:58:36,298
+99001 95783,(080)60068611,23-09-2016 08:15:24,253
+97424 22395,(022)47410783,23-09-2016 08:18:40,1057
+90368 72970,97391 99665,23-09-2016 08:19:27,84
+90083 59148,(022)21884607,23-09-2016 08:21:03,1110
+97406 74488,92411 96415,23-09-2016 08:22:08,37
+(0821)6141380,78139 24512,23-09-2016 08:23:01,2520
+78993 89387,(044)25144377,23-09-2016 08:24:44,46
+97418 46131,97448 02140,23-09-2016 08:34:53,599
+(080)32255824,(080)62164823,23-09-2016 08:40:44,848
+98458 13389,87144 42283,23-09-2016 08:44:54,230
+74065 10917,90198 03659,23-09-2016 08:52:01,410
+94491 55790,90359 99240,23-09-2016 09:06:05,2360
+92428 82401,97385 29751,23-09-2016 09:09:50,159
+92425 27794,93432 65750,23-09-2016 09:11:45,1166
+97414 35000,97380 60551,23-09-2016 09:18:53,920
+(080)65275591,98442 73671,23-09-2016 09:19:37,34
+90351 49472,90199 67471,23-09-2016 09:28:07,691
+90366 69257,(0821)6141380,23-09-2016 09:28:29,2737
+(0821)3602212,99007 06998,23-09-2016 09:33:02,211
+(080)60062475,81524 55552,23-09-2016 09:49:32,73
+77956 90632,92411 96415,23-09-2016 10:09:21,155
+84319 52539,(080)45547058,23-09-2016 10:11:00,177
+89071 50880,(04546)388977,23-09-2016 10:15:55,188
+97403 09983,97406 06245,23-09-2016 10:24:11,1799
+93428 98469,(080)66044294,23-09-2016 10:25:47,2175
+(080)44046839,(080)62342282,23-09-2016 10:27:29,2785
+99007 06998,84314 00609,23-09-2016 10:29:22,1345
+90351 35947,(080)35121497,23-09-2016 10:31:58,211
+(033)25441815,94489 82688,23-09-2016 10:37:32,85
+(0471)6537077,78136 54214,23-09-2016 10:38:10,1003
+(080)43215621,(080)32647101,23-09-2016 11:04:56,2311
+98454 07778,93412 66159,23-09-2016 11:08:20,275
+90192 87313,(080)33251027,23-09-2016 11:19:13,9
+90087 42537,(080)35121497,23-09-2016 11:21:01,3004
+97386 20071,94499 20763,23-09-2016 11:30:21,87
+97406 06245,97403 09983,23-09-2016 11:32:35,2015
+(080)47459867,98440 65896,23-09-2016 11:32:36,26
+(04546)218519,(080)46304537,23-09-2016 11:38:36,995
+(044)41581342,97429 02055,23-09-2016 11:43:51,2708
+(0824)6366719,94497 77615,23-09-2016 11:45:34,144
+(04344)617351,92424 51984,23-09-2016 11:46:57,2505
+97385 29751,92428 82401,23-09-2016 11:48:29,639
+81510 47188,90355 10919,23-09-2016 11:51:43,279
+(080)35987804,74062 28875,23-09-2016 12:02:19,2111
+(080)39991213,94495 34273,23-09-2016 12:05:24,699
+98442 33257,95262 44233,23-09-2016 12:06:53,1159
+98448 87878,(080)69104549,23-09-2016 12:07:38,876
+90355 10919,81524 55552,23-09-2016 12:11:13,141
+93434 31551,(080)31982490,23-09-2016 12:12:29,9
+(0824)2145844,90359 52497,23-09-2016 12:12:44,228
+98453 46196,(04344)228249,23-09-2016 12:16:41,230
+99002 80226,90085 20915,23-09-2016 12:21:55,2484
+94489 72078,92415 91418,23-09-2016 12:25:51,950
+97389 12538,90352 50054,23-09-2016 12:28:26,147
+94480 64700,(080)32828889,23-09-2016 13:01:06,2493
+95262 44233,97393 04671,23-09-2016 13:14:47,727
+81524 55552,(0821)2135265,23-09-2016 13:30:42,681
+(080)22816760,90088 09624,23-09-2016 13:35:52,39
+90192 30758,(080)64431120,23-09-2016 13:47:09,1348
+(044)41581342,97429 02055,23-09-2016 13:50:11,290
+87144 55014,(080)21129907,23-09-2016 14:06:03,576
+97422 22278,98446 66723,23-09-2016 14:06:25,933
+(080)49796269,(080)33251027,23-09-2016 14:11:47,51
+97390 23922,90359 52497,23-09-2016 14:38:59,314
+(080)21697299,94488 97308,23-09-2016 14:48:45,824
+1404073047,98447 81877,23-09-2016 15:06:41,73
+97406 74488,90358 98099,23-09-2016 15:20:18,1849
+77956 90632,78132 18081,23-09-2016 15:24:00,63
+(04546)388977,89071 50880,23-09-2016 15:43:18,46
+78138 56841,93416 07259,23-09-2016 15:50:53,2928
+(044)38044356,(04546)267875,23-09-2016 15:52:32,1865
+(080)33251027,(080)49796269,23-09-2016 16:06:14,270
+93412 66159,98454 07778,23-09-2016 16:08:29,247
+(044)38044356,(04546)267875,23-09-2016 16:09:47,1121
+94497 44333,97385 70012,23-09-2016 16:14:32,843
+(0471)2225098,97406 06245,23-09-2016 16:19:48,764
+95262 44233,97393 04671,23-09-2016 16:22:15,3407
+(080)46304537,84313 80377,23-09-2016 16:28:59,249
+(080)33251027,97386 37259,23-09-2016 16:43:01,2093
+74064 66270,(080)47999451,23-09-2016 16:44:38,2688
+84319 52539,(080)45547058,23-09-2016 16:46:10,1006
+(022)30044349,97385 29751,23-09-2016 16:48:11,922
+(080)60068611,99001 95783,23-09-2016 16:51:41,9
+1408371942,78130 36804,23-09-2016 16:53:43,16
+(080)35121497,90087 42537,23-09-2016 16:56:35,160
+(080)25863765,(022)66911540,23-09-2016 16:57:04,184
+94482 95223,97425 92186,23-09-2016 17:01:57,9
+(022)34715405,97448 02140,23-09-2016 17:02:36,224
+(0821)3602212,99007 06998,23-09-2016 17:14:50,2255
+78295 60375,93410 98013,23-09-2016 17:18:42,2745
+97406 74488,92411 96415,23-09-2016 17:25:12,2015
+(080)29435303,(080)43685310,23-09-2016 17:25:52,289
+93416 07259,78138 56841,23-09-2016 17:32:45,76
+(040)34008657,(080)43562014,23-09-2016 17:35:02,418
+93423 23000,78133 10302,23-09-2016 17:47:23,1035
+1404368883,98442 73671,23-09-2016 17:50:04,10
+81524 55552,(080)60062475,23-09-2016 17:53:33,642
+(080)43562014,(080)22759842,23-09-2016 17:57:25,684
+92411 96415,93435 21961,23-09-2016 17:57:50,566
+(080)60068611,99001 95783,23-09-2016 18:04:43,812
+84319 52539,(080)45547058,23-09-2016 18:06:46,142
+(080)62963633,98443 99204,23-09-2016 18:09:24,19
+84314 00609,99007 06998,23-09-2016 18:20:52,789
+1408672243,97392 29513,23-09-2016 18:36:56,10
+(04344)228249,(080)43901222,23-09-2016 18:40:44,1503
+97425 79921,(0471)2953539,23-09-2016 18:52:04,120
+(0471)2953539,(022)44927512,23-09-2016 18:53:43,2052
+94482 95223,97425 92186,23-09-2016 19:07:47,307
+90368 72970,97391 99665,23-09-2016 19:13:38,386
+93432 65750,92425 27794,23-09-2016 19:16:59,2248
+87146 31956,97384 69866,23-09-2016 19:20:47,605
+(080)44389098,(080)35986130,23-09-2016 19:22:14,1125
+(080)64015211,92429 86621,23-09-2016 19:28:21,1011
+90085 20915,99002 80226,23-09-2016 19:38:43,374
+(080)46304537,98447 62998,23-09-2016 19:38:59,1720
+90194 00845,(040)26738737,23-09-2016 19:51:43,411
+99001 95783,(080)60068611,23-09-2016 19:52:02,1477
+(044)27523585,93432 24657,23-09-2016 19:55:56,619
+(044)27641880,97416 18084,23-09-2016 20:02:05,9
+99002 80226,90085 20915,23-09-2016 20:24:23,792
+90361 52679,94486 40312,23-09-2016 20:25:47,9
+98442 73671,(080)69245029,23-09-2016 20:25:52,92
+74066 31484,98454 90038,23-09-2016 20:38:51,9
+97385 29751,92428 82401,23-09-2016 20:42:32,67
+81525 12041,90356 11723,23-09-2016 20:51:54,1025
+90368 72970,94001 07403,23-09-2016 21:03:25,9
+99612 41256,(080)43206415,23-09-2016 21:05:52,405
+99612 41256,(080)43206415,23-09-2016 21:06:31,541
+(080)32255824,(080)62164823,23-09-2016 21:12:05,2288
+(04344)228249,98453 46196,23-09-2016 21:16:30,9
+(022)47410783,93412 26084,23-09-2016 21:17:12,832
+(080)66857551,(040)66729318,23-09-2016 21:37:58,433
+93412 66159,98454 07778,23-09-2016 21:40:35,80
+(080)35121497,90087 42537,23-09-2016 21:43:37,2403
+90197 24124,99612 41256,23-09-2016 21:45:30,133
+94006 62384,(022)38214945,23-09-2016 21:46:01,1842
+98448 87878,90366 36573,23-09-2016 21:46:08,29
+94489 82688,(033)25441815,23-09-2016 22:08:08,105
+97416 18084,(044)27641880,23-09-2016 22:15:16,706
+81525 12041,90356 11723,23-09-2016 22:17:49,536
+90359 99240,94491 55790,23-09-2016 22:21:09,125
+(04344)322628,90355 10919,23-09-2016 22:22:59,2463
+90365 51029,94499 38099,23-09-2016 22:24:11,859
+(080)61419142,(080)41203315,23-09-2016 23:12:40,892
+97385 70012,94497 44333,23-09-2016 23:16:30,236
+90193 61937,(022)66911540,23-09-2016 23:22:23,9
+98449 60656,90084 16988,23-09-2016 23:39:02,1696
+(080)64819785,74066 93594,23-09-2016 23:46:06,59
+97426 64618,(040)36649724,24-09-2016 06:03:46,730
+99007 06998,84314 00609,24-09-2016 06:24:03,1985
+90192 87313,78139 24512,24-09-2016 06:33:25,946
+(080)22759842,(080)43562014,24-09-2016 06:50:28,317
+97416 17124,90194 00845,24-09-2016 06:51:45,610
+74065 10917,90198 03659,24-09-2016 06:57:28,138
+(022)28952819,78298 91466,24-09-2016 06:59:00,2367
+92425 27794,93432 65750,24-09-2016 07:00:02,2453
+(080)33251027,(080)49796269,24-09-2016 07:11:26,124
+(04344)316423,(080)67362492,24-09-2016 07:24:12,46
+98452 19037,90355 94399,24-09-2016 07:38:21,3509
+89071 31755,78290 99865,24-09-2016 07:58:15,467
+78135 69048,(080)21129907,24-09-2016 07:58:34,2350
+(04344)322628,97427 87999,24-09-2016 08:19:09,788
+(080)40395498,(080)46566171,24-09-2016 08:24:47,302
+94486 40312,90361 52679,24-09-2016 08:25:54,161
+(04344)615310,93430 54160,24-09-2016 08:31:16,609
+(04344)228249,98453 46196,24-09-2016 08:32:04,1205
+97415 99182,(080)44076727,24-09-2016 08:48:27,3130
+94005 20878,(080)49328664,24-09-2016 08:51:59,45
+98444 16192,(022)28765220,24-09-2016 08:55:01,2466
+78293 38561,(080)21129907,24-09-2016 08:57:17,2931
+87146 31956,97384 69866,24-09-2016 09:04:03,96
+97380 60551,90365 51029,24-09-2016 09:12:47,322
+94497 77615,(0824)6366719,24-09-2016 09:15:48,530
+97424 22395,(022)29303640,24-09-2016 09:18:26,148
+96566 40412,90352 50054,24-09-2016 09:19:08,106
+97447 92655,(022)39006198,24-09-2016 09:32:31,102
+96566 40412,90352 50054,24-09-2016 09:37:09,2151
+90366 69257,(0821)6141380,24-09-2016 09:37:17,2518
+90199 67471,90351 49472,24-09-2016 09:46:45,17
+(04344)322628,90355 10919,24-09-2016 09:56:07,60
+77956 55474,(080)40929452,24-09-2016 09:56:55,85
+84311 10322,(0824)2022081,24-09-2016 09:59:54,532
+90361 52679,94486 40312,24-09-2016 10:03:10,762
+94480 64700,(080)32828889,24-09-2016 10:03:44,572
+92428 82401,97385 29751,24-09-2016 10:06:50,82
+81510 47188,90355 10919,24-09-2016 10:09:58,899
+78295 48262,(080)46221576,24-09-2016 10:23:16,2300
+78993 89387,(080)21652896,24-09-2016 10:34:02,787
+(080)20227149,(080)39991213,24-09-2016 10:42:04,674
+(080)32679828,90196 73585,24-09-2016 11:00:04,114
+(080)41336994,97406 93118,24-09-2016 11:14:47,228
+99001 95783,78298 02848,24-09-2016 11:17:48,1995
+78138 93826,96569 95359,24-09-2016 11:24:40,112
+81520 43406,(040)69695864,24-09-2016 11:33:02,2759
+74066 31484,98454 90038,24-09-2016 11:39:52,131
+97385 70012,97424 53609,24-09-2016 11:47:10,2261
+87146 31956,(080)68104927,24-09-2016 11:52:18,2635
+(0471)6537077,78136 54214,24-09-2016 11:54:44,2311
+(080)26097534,(080)39755879,24-09-2016 11:57:36,422
+97448 02140,(022)34715405,24-09-2016 12:06:02,9
+(080)21697299,94488 97308,24-09-2016 12:08:10,103
+98454 07778,93412 66159,24-09-2016 12:09:52,9
+97406 06245,97403 09983,24-09-2016 12:10:16,3063
+74065 10917,90198 03659,24-09-2016 12:10:59,435
+89078 69605,77950 18278,24-09-2016 12:12:01,3081
+(0471)6537077,78136 54214,24-09-2016 12:12:32,1017
+(080)29483476,90368 95100,24-09-2016 12:13:11,1937
+(0471)6579079,(080)23180345,24-09-2016 12:17:47,460
+92423 51078,(080)25863765,24-09-2016 12:26:21,713
+(080)66044294,93428 98469,24-09-2016 12:29:16,117
+90355 49499,(080)37913009,24-09-2016 12:29:34,3131
+97385 70012,94497 44333,24-09-2016 12:29:52,9
+(0471)6537077,78136 54214,24-09-2016 12:37:03,419
+(080)22759842,(080)43562014,24-09-2016 12:39:54,730
+(080)32828889,94480 64700,24-09-2016 12:48:19,1211
+94005 20878,(04344)649705,24-09-2016 12:56:10,57
+78298 91466,(022)28952819,24-09-2016 13:01:31,3027
+1409668775,81519 62015,24-09-2016 13:18:59,95
+(080)41095396,81510 47188,24-09-2016 13:21:12,146
+70121 27677,78295 48262,24-09-2016 13:25:26,192
+1403072432,97414 15280,24-09-2016 13:48:31,80
+(080)47459867,98440 65896,24-09-2016 13:49:23,9
+1409994233,(080)64819785,24-09-2016 14:00:12,42
+97415 99182,(080)44076727,24-09-2016 14:02:17,158
+97425 79921,(0471)2953539,24-09-2016 14:03:21,612
+90359 79636,70121 27677,24-09-2016 14:10:50,380
+97424 22395,90357 25284,24-09-2016 14:11:38,407
+97429 02055,(044)41581342,24-09-2016 14:15:21,706
+(040)36649724,(022)28765220,24-09-2016 14:26:51,2804
+90083 59148,(022)21884607,24-09-2016 14:36:44,381
+78138 93826,96569 95359,24-09-2016 14:39:03,2448
+(080)29435303,(080)43685310,24-09-2016 14:39:42,380
+(044)45416964,92425 27794,24-09-2016 14:41:51,1201
+(080)32255824,(080)62164823,24-09-2016 14:56:01,3041
+(04344)228249,98453 46196,24-09-2016 15:01:28,884
+84311 10322,(0824)2022081,24-09-2016 15:08:10,2337
+84314 00609,99007 06998,24-09-2016 15:12:16,3852
+(080)32828889,94480 64700,24-09-2016 15:17:36,477
+92414 22596,(044)30727085,24-09-2016 15:20:22,838
+(04344)322628,97427 87999,24-09-2016 15:37:57,907
+(080)33251027,97386 37259,24-09-2016 15:41:47,2626
+(080)43685310,(080)29435303,24-09-2016 15:45:20,2731
+90368 72970,94001 07403,24-09-2016 15:46:52,275
+78298 02848,99001 95783,24-09-2016 15:53:09,930
+98453 46196,(04344)228249,24-09-2016 15:55:07,9
+97410 27512,(080)41712046,24-09-2016 15:57:53,98
+(080)32638303,98458 94162,24-09-2016 15:57:58,1672
+95267 70383,97414 62027,24-09-2016 16:00:57,968
+(022)46574732,97403 88244,24-09-2016 16:02:33,138
+(080)62164823,74066 93594,24-09-2016 16:02:56,205
+(04344)615310,93430 54160,24-09-2016 16:08:13,290
+99001 95783,78298 02848,24-09-2016 16:12:02,1427
+78295 48262,(080)46221576,24-09-2016 16:14:00,1547
+(080)69887826,(080)32390650,24-09-2016 16:18:25,134
+97421 07528,97399 92703,24-09-2016 16:19:15,770
+90196 73585,(044)49868415,24-09-2016 16:21:11,22
+90194 00845,(040)26738737,24-09-2016 16:30:06,274
+70129 62374,98441 32533,24-09-2016 16:30:16,3257
+1403579926,92428 82401,24-09-2016 16:30:22,551
+95267 70383,(080)34121098,24-09-2016 16:35:57,473
+(080)44050207,97416 18084,24-09-2016 16:36:25,625
+97380 60551,78298 91466,24-09-2016 16:37:16,211
+78298 91466,97380 60551,24-09-2016 16:38:48,85
+90197 38885,98445 85687,24-09-2016 16:40:53,135
+90361 52679,94486 40312,24-09-2016 16:41:22,740
+90193 16567,(04344)649705,24-09-2016 16:46:51,9
+(080)43685310,95263 76972,24-09-2016 16:48:36,296
+(080)49796269,(080)33251027,24-09-2016 16:51:59,641
+84311 10322,90359 79636,24-09-2016 17:07:44,982
+93412 66159,94499 20763,24-09-2016 17:14:44,860
+(080)68739140,97406 74488,24-09-2016 17:16:16,1369
+95262 44233,97393 04671,24-09-2016 17:17:32,1056
+(080)33251027,(080)49796269,24-09-2016 17:30:02,2291
+98454 90038,74066 31484,24-09-2016 17:33:48,2656
+78295 48262,(080)46221576,24-09-2016 17:45:24,3521
+90357 25284,97424 22395,24-09-2016 17:48:43,105
+90359 79636,70121 27677,24-09-2016 17:50:24,3197
+(080)32638303,98458 94162,24-09-2016 17:54:20,130
+89071 31755,78290 99865,24-09-2016 17:56:56,1208
+(022)38214945,94006 62384,24-09-2016 18:01:14,234
+97406 06245,(0471)2225098,24-09-2016 18:03:01,2415
+94489 82688,(033)25441815,24-09-2016 18:06:03,9
+(080)46304537,99003 88572,24-09-2016 18:17:53,298
+(080)32828889,94480 64700,24-09-2016 18:21:18,844
+(0821)6141380,90366 69257,24-09-2016 18:33:39,418
+92424 51984,(04344)617351,24-09-2016 18:36:41,811
+(080)35987804,78295 20931,24-09-2016 18:39:53,1913
+77956 90632,78132 18081,24-09-2016 18:41:49,377
+97418 46131,(080)33277651,24-09-2016 18:52:01,2711
+(080)25820765,(080)23413513,24-09-2016 18:56:48,2408
+78133 71458,70127 59322,24-09-2016 19:01:52,3302
+93415 21881,98454 90038,24-09-2016 19:06:49,1826
+78138 56841,93416 07259,24-09-2016 19:19:07,846
+(04546)218519,97380 60551,24-09-2016 19:21:01,2199
+(044)27641880,97416 18084,24-09-2016 19:21:45,309
+(022)38214945,94006 62384,24-09-2016 19:22:43,9
+(04344)211113,(080)46772413,24-09-2016 19:24:31,324
+93415 21881,98454 90038,24-09-2016 19:25:01,2346
+98440 68457,95264 40233,24-09-2016 19:25:52,766
+96569 95359,(080)69564399,24-09-2016 19:27:58,972
+99007 06998,84314 00609,24-09-2016 19:30:30,310
+97414 62784,98449 60656,24-09-2016 19:31:20,381
+78138 93826,90359 99240,24-09-2016 19:35:49,73
+(080)41336994,97406 93118,24-09-2016 19:44:14,146
+98440 02823,81515 42171,24-09-2016 19:52:04,81
+(080)46221576,78295 48262,24-09-2016 19:55:57,448
+(080)45291968,94482 95223,24-09-2016 20:03:06,935
+97449 50000,95269 20533,24-09-2016 20:10:46,20
+(080)45687418,93414 19669,24-09-2016 20:16:01,2564
+99001 95783,98459 20681,24-09-2016 20:19:29,228
+90351 35947,(080)35121497,24-09-2016 20:26:28,40
+(04344)615310,(080)69104549,24-09-2016 20:34:53,487
+(080)35121497,90087 42537,24-09-2016 20:37:11,390
+(080)60062475,81524 55552,24-09-2016 20:40:03,2135
+70121 27677,78295 48262,24-09-2016 20:40:22,900
+97427 87999,(04344)322628,24-09-2016 20:44:44,802
+(022)66911540,90193 61937,24-09-2016 20:46:55,732
+90368 72970,97391 99665,24-09-2016 20:49:55,124
+93434 31551,(080)31982490,24-09-2016 21:06:11,973
+90194 00845,97416 17124,24-09-2016 21:10:22,568
+(080)21697299,94488 97308,24-09-2016 21:12:00,543
+(080)60068611,99001 95783,24-09-2016 21:14:49,797
+(04344)211113,(080)46772413,24-09-2016 21:28:07,163
+97386 37259,78290 31269,24-09-2016 21:39:54,64
+98442 73671,(080)69245029,24-09-2016 22:06:42,599
+98440 68457,95264 40233,24-09-2016 22:09:35,660
+(080)25863765,(022)38214945,24-09-2016 22:11:54,154
+(080)62164823,(022)22288051,24-09-2016 22:13:20,9
+99007 06998,84314 00609,24-09-2016 22:13:41,2413
+93427 40118,(080)33118033,24-09-2016 22:21:45,676
+90197 69887,99610 89720,24-09-2016 22:26:21,9
+(080)35538852,98446 78140,24-09-2016 22:37:36,981
+(022)38214945,98457 75681,24-09-2016 22:41:41,1512
+97424 53609,90197 69887,24-09-2016 22:48:29,203
+92421 64236,(080)35538852,24-09-2016 23:06:23,817
+99003 47921,98444 95768,24-09-2016 23:14:08,166
+94488 97308,(080)21697299,24-09-2016 23:19:44,344
+92428 82401,97385 29751,24-09-2016 23:22:47,3729
+90355 49499,(080)37913009,24-09-2016 23:40:07,27
+(022)21884607,90083 59148,24-09-2016 23:41:20,3011
+98440 65896,93418 41992,24-09-2016 23:47:57,690
+97385 35042,93418 41992,24-09-2016 23:50:32,2014
+97425 79921,(0471)2953539,25-09-2016 06:04:36,2995
+98440 65896,(080)47459867,25-09-2016 06:28:07,3017
+92415 91418,(080)48462898,25-09-2016 06:30:10,96
+90082 61126,90366 69257,25-09-2016 06:37:01,658
+97424 22395,90357 25284,25-09-2016 06:37:51,1521
+(0824)2022081,(04344)654396,25-09-2016 07:04:14,793
+93418 82576,94489 95536,25-09-2016 07:06:05,906
+(022)46574732,97403 88244,25-09-2016 07:06:24,200
+93427 56500,98447 12671,25-09-2016 07:11:09,937
+92414 22596,(080)32647101,25-09-2016 07:17:13,166
+99004 86250,95262 44233,25-09-2016 07:21:47,69
+90352 50054,96566 40412,25-09-2016 07:26:30,141
+90193 16567,(04344)649705,25-09-2016 07:31:40,698
+90351 49472,90199 67471,25-09-2016 07:32:11,388
+97385 29751,(022)30044349,25-09-2016 07:35:46,224
+(022)46574732,97403 88244,25-09-2016 07:44:28,146
+(080)43562014,(040)34008657,25-09-2016 07:56:10,2349
+90356 11723,81525 12041,25-09-2016 07:56:37,985
+90356 11723,(044)69775060,25-09-2016 07:58:19,259
+78136 42599,97399 92703,25-09-2016 07:59:00,129
+(080)45291968,95266 42732,25-09-2016 08:05:02,2547
+(04344)316423,(080)67362492,25-09-2016 08:15:13,1012
+(0824)6366719,94497 77615,25-09-2016 08:19:10,250
+(080)44076727,97415 99182,25-09-2016 08:29:11,1593
+90359 52497,(0824)2145844,25-09-2016 08:37:37,3237
+(080)37913009,90355 49499,25-09-2016 09:03:58,2844
+97418 59299,(022)60273083,25-09-2016 09:05:26,110
+90194 08626,(080)68104927,25-09-2016 09:10:33,318
+90351 49472,90199 67471,25-09-2016 09:35:31,1974
+90193 16567,(04344)649705,25-09-2016 09:36:19,199
+1400481538,(044)25144377,25-09-2016 09:41:38,42
+83015 22251,(011)21017178,25-09-2016 09:48:38,223
+97386 37259,(080)33251027,25-09-2016 09:51:07,583
+(080)62164823,74066 93594,25-09-2016 10:06:38,404
+(04344)649705,90193 16567,25-09-2016 10:28:00,207
+97421 07528,98454 07778,25-09-2016 10:29:07,537
+97427 87999,(04344)322628,25-09-2016 10:31:28,555
+98441 32533,70129 62374,25-09-2016 10:33:59,119
+93427 56500,(044)24037112,25-09-2016 10:37:33,9
+(080)43215621,(080)47459867,25-09-2016 10:41:25,730
+92428 82401,97385 29751,25-09-2016 10:43:08,119
+(080)44357306,90199 91061,25-09-2016 11:07:56,949
+94499 46077,83013 02552,25-09-2016 11:15:08,110
+97386 37259,78290 31269,25-09-2016 11:30:48,310
+(080)33251027,90192 87313,25-09-2016 11:36:37,2029
+90197 69887,99610 89720,25-09-2016 11:42:28,61
+(04546)388977,89071 50880,25-09-2016 11:51:52,914
+(080)32638303,98458 94162,25-09-2016 12:26:59,2146
+97386 37259,78290 31269,25-09-2016 12:29:03,3370
+99001 95783,(080)60068611,25-09-2016 12:32:02,3439
+(0471)6579079,(080)23180345,25-09-2016 12:37:11,128
+94492 23068,90359 91512,25-09-2016 12:40:13,1491
+78295 20931,(080)35987804,25-09-2016 12:47:30,9
+(080)69887826,(080)32390650,25-09-2016 13:06:51,1354
+(080)46304537,98447 62998,25-09-2016 13:07:00,326
+98445 27876,(080)32390650,25-09-2016 13:12:29,212
+(080)32255824,(080)62164823,25-09-2016 13:24:07,469
+98444 95768,99003 47921,25-09-2016 13:25:43,63
+84312 48999,94485 80091,25-09-2016 13:34:50,550
+92415 66985,(080)43685310,25-09-2016 13:39:00,436
+97419 41164,94487 29969,25-09-2016 13:45:55,2025
+93432 65750,92425 27794,25-09-2016 13:48:21,15
+74065 10917,90198 03659,25-09-2016 13:48:36,363
+(0471)2953539,(022)44927512,25-09-2016 13:50:34,1820
+93428 98469,(080)66044294,25-09-2016 14:10:34,555
+83013 02552,94499 46077,25-09-2016 14:15:01,376
+90357 25284,97424 22395,25-09-2016 14:19:36,2608
+97386 37259,78290 31269,25-09-2016 14:30:59,170
+(080)49328664,(0821)4753474,25-09-2016 14:41:48,913
+98447 12671,93427 56500,25-09-2016 15:19:25,36
+(080)66955387,97380 60551,25-09-2016 15:35:10,3202
+99617 25274,(040)66729318,25-09-2016 15:40:51,361
+99009 32475,(011)47486239,25-09-2016 15:43:23,267
+94499 38099,90365 51029,25-09-2016 15:45:54,498
+97414 35000,97380 60551,25-09-2016 15:47:06,523
+94005 20878,(080)49328664,25-09-2016 15:56:12,451
+(080)32255824,(080)62164823,25-09-2016 15:58:40,119
+(080)46221576,78295 48262,25-09-2016 16:10:29,201
+81513 30231,(080)30231886,25-09-2016 16:14:56,148
+93412 26084,(022)47410783,25-09-2016 16:20:11,184
+98454 07778,93412 66159,25-09-2016 16:21:38,187
+81513 30231,(080)30231886,25-09-2016 16:27:49,2863
+(080)46772413,(04344)211113,25-09-2016 16:34:29,184
+(044)41581342,97429 02055,25-09-2016 16:35:54,2278
+93432 24657,(044)27523585,25-09-2016 16:38:16,2565
+99612 41256,(080)43206415,25-09-2016 16:38:59,682
+98452 19037,90355 94399,25-09-2016 16:42:02,455
+(022)44927512,(0471)2953539,25-09-2016 16:43:45,2436
+74064 66270,(080)47999451,25-09-2016 16:57:14,67
+(0824)6366719,94497 77615,25-09-2016 17:01:34,159
+97406 06245,97403 09983,25-09-2016 17:21:33,158
+(0471)2225098,97406 06245,25-09-2016 17:24:25,47
+84319 42810,97447 92655,25-09-2016 17:32:05,81
+90352 50054,97389 12538,25-09-2016 17:33:50,1243
+(022)39006198,97447 92655,25-09-2016 17:36:56,468
+81520 43406,(040)69695864,25-09-2016 17:43:59,90
+98457 75681,(022)38214945,25-09-2016 17:46:08,452
+(080)43215621,(080)47459867,25-09-2016 17:46:23,302
+78295 20931,(080)35987804,25-09-2016 18:07:27,2763
+(0471)2953539,(022)44927512,25-09-2016 18:09:13,668
+99003 88572,99006 60463,25-09-2016 18:11:59,713
+97399 92703,97421 07528,25-09-2016 18:16:35,20
+92411 96415,77956 90632,25-09-2016 18:18:57,3844
+(080)32647101,92414 22596,25-09-2016 18:23:15,1045
+94497 44333,97385 70012,25-09-2016 18:26:31,2602
+92425 27794,93432 65750,25-09-2016 18:27:06,998
+1409421631,90192 87313,25-09-2016 18:53:48,32
+(022)68535788,(080)65023950,25-09-2016 19:08:00,1155
+97416 29480,92426 72402,25-09-2016 19:13:23,49
+(080)41712046,97410 27512,25-09-2016 19:17:23,55
+78138 93826,96569 95359,25-09-2016 19:20:59,462
+93432 65750,92425 27794,25-09-2016 19:35:43,15
+95269 20533,97449 50000,25-09-2016 19:36:40,156
+(080)69245029,(044)49481100,25-09-2016 19:37:02,134
+(080)68739140,97406 74488,25-09-2016 19:45:58,666
+78290 99865,89071 31755,25-09-2016 19:50:02,12
+(04344)649705,94005 20878,25-09-2016 20:11:38,1050
+(0824)6366719,94497 77615,25-09-2016 20:11:47,156
+93432 24657,(044)27523585,25-09-2016 20:16:05,108
+97380 60551,78298 91466,25-09-2016 20:20:31,3283
+92424 51984,78299 99223,25-09-2016 20:21:14,9
+93432 24657,(044)27523585,25-09-2016 20:34:13,109
+(080)34932254,81513 36123,25-09-2016 20:43:58,1782
+(080)48462898,90199 67471,25-09-2016 20:44:03,162
+97395 95120,94490 65627,25-09-2016 21:01:39,9
+94001 07403,90368 72970,25-09-2016 21:05:25,1211
+97380 60551,(080)66955387,25-09-2016 21:17:25,549
+(04344)615310,93430 54160,25-09-2016 21:22:24,47
+97389 12538,90352 50054,25-09-2016 21:25:03,1840
+98453 46196,94005 06213,25-09-2016 21:34:49,1920
+(04344)228249,(080)43901222,25-09-2016 21:44:54,187
+90355 94399,97391 99665,25-09-2016 21:58:07,1857
+(0821)4753474,97404 90013,25-09-2016 21:58:24,73
+(044)49481100,(080)69245029,25-09-2016 22:07:14,32
+99007 06998,84314 00609,25-09-2016 22:10:35,2748
+97415 99182,(080)44076727,25-09-2016 22:21:13,81
+98457 75681,(022)38214945,25-09-2016 22:24:16,1705
+77956 90632,78132 18081,25-09-2016 22:25:13,14
+(080)64765396,98448 88411,25-09-2016 22:45:04,345
+94497 44333,97385 70012,25-09-2016 22:50:41,973
+98446 78140,(080)35538852,25-09-2016 22:55:15,164
+90355 94399,97391 99665,25-09-2016 23:08:21,139
+93432 24657,(044)27523585,25-09-2016 23:13:04,2025
+98453 46196,94005 06213,25-09-2016 23:27:46,239
+77956 90632,(0821)4816394,25-09-2016 23:34:07,1242
+(044)45416964,92425 27794,25-09-2016 23:37:59,148
+94482 95223,97425 92186,25-09-2016 23:39:13,2824
+93415 21881,98454 90038,25-09-2016 23:52:22,1425
+90192 87313,78139 24512,25-09-2016 23:56:50,78
+(080)37913009,90355 49499,26-09-2016 06:01:39,74
+97391 99665,90368 72970,26-09-2016 06:08:11,2329
+90193 61937,(022)66911540,26-09-2016 06:13:16,1902
+78136 65840,74066 93594,26-09-2016 06:14:37,105
+(080)20227149,(080)39991213,26-09-2016 06:25:10,181
+(022)30044349,97385 29751,26-09-2016 06:34:27,3031
+90365 06212,(080)45291968,26-09-2016 06:35:35,9
+(044)69775060,78134 03625,26-09-2016 06:38:10,25
+(0821)4753474,97404 90013,26-09-2016 06:39:25,9
+98453 86521,93410 56456,26-09-2016 06:43:36,10
+(080)29435303,(080)43685310,26-09-2016 06:44:22,2262
+94486 40312,(044)48154960,26-09-2016 06:46:04,151
+93416 07259,78138 56841,26-09-2016 06:48:54,1098
+74298 18325,(022)34715405,26-09-2016 06:49:08,50
+90355 49499,(080)37913009,26-09-2016 06:52:22,1936
+(044)24037112,93427 56500,26-09-2016 07:14:38,1689
+(080)20123809,93426 76415,26-09-2016 07:17:06,335
+95263 76972,84319 39746,26-09-2016 07:20:26,451
+95264 40233,98440 68457,26-09-2016 07:23:17,1778
+98440 65896,(080)47459867,26-09-2016 07:25:37,75
+74066 93594,(080)62164823,26-09-2016 07:29:56,1072
+97419 41164,94487 29969,26-09-2016 07:34:01,73
+99612 41256,(080)43206415,26-09-2016 07:34:23,3774
+78135 69048,(080)21129907,26-09-2016 07:44:33,100
+98458 94162,(080)32638303,26-09-2016 07:50:54,197
+93426 76415,(080)20123809,26-09-2016 07:52:06,9
+89078 69605,77950 18278,26-09-2016 07:59:08,475
+(04546)388977,89071 50880,26-09-2016 08:10:36,125
+(0821)3537229,77956 90632,26-09-2016 08:19:09,2324
+90356 11723,(044)69775060,26-09-2016 08:24:15,244
+94480 64700,90088 09624,26-09-2016 08:34:10,505
+(0821)3257740,97420 86635,26-09-2016 08:36:31,625
+94001 62063,(080)33251027,26-09-2016 08:37:38,172
+(022)66911540,93426 88474,26-09-2016 08:38:34,182
+90193 20957,97420 86635,26-09-2016 08:52:33,2034
+94005 20878,(080)49328664,26-09-2016 09:06:00,651
+84313 80377,(080)46304537,26-09-2016 09:08:57,43
+(04546)267875,(044)38044356,26-09-2016 09:10:10,153
+(022)38214945,98457 75681,26-09-2016 09:19:28,1800
+92424 51984,78299 99223,26-09-2016 09:26:38,860
+(044)49481100,(080)69245029,26-09-2016 09:29:52,2588
+(080)25863765,(022)66911540,26-09-2016 09:35:02,9
+(080)33277651,97418 46131,26-09-2016 09:35:34,620
+(080)67362492,(04344)316423,26-09-2016 09:35:36,169
+(080)67362492,(04344)316423,26-09-2016 09:46:19,2808
+(080)44046839,(080)62342282,26-09-2016 09:48:04,202
+98444 16192,(022)28765220,26-09-2016 09:48:07,863
+(033)25441815,(0471)6537077,26-09-2016 09:49:55,267
+(080)62164823,74066 93594,26-09-2016 10:00:08,212
+81522 26166,97414 62784,26-09-2016 10:13:12,391
+(080)60068611,99001 95783,26-09-2016 10:22:34,515
+90356 11723,(044)69775060,26-09-2016 10:24:26,309
+(080)35986130,93432 65750,26-09-2016 10:41:31,994
+98440 02823,81515 42171,26-09-2016 10:43:54,2404
+93427 40118,(080)33118033,26-09-2016 10:52:15,454
+70121 27677,90359 79636,26-09-2016 10:52:41,912
+77956 90632,92411 96415,26-09-2016 11:01:15,248
+93434 31551,(080)31982490,26-09-2016 11:03:11,881
+99004 86250,95262 44233,26-09-2016 11:03:49,97
+87146 31956,97384 69866,26-09-2016 11:04:40,907
+97393 52893,(022)40840621,26-09-2016 11:12:58,103
+97385 70012,94497 44333,26-09-2016 11:17:58,2363
+90197 38885,98445 85687,26-09-2016 11:24:48,2193
+90197 24124,99612 41256,26-09-2016 11:25:22,2629
+(044)38044356,(04546)267875,26-09-2016 11:26:01,9
+(080)43685310,84312 48999,26-09-2016 11:42:54,337
+94497 44333,97385 70012,26-09-2016 11:58:22,288
+(080)41336994,97406 93118,26-09-2016 12:03:26,1744
+(0471)6537077,(080)34121098,26-09-2016 12:03:58,885
+(044)27523585,93432 24657,26-09-2016 12:17:02,318
+(044)25144377,78993 89387,26-09-2016 12:35:27,9
+90355 49499,(080)37913009,26-09-2016 12:35:28,1336
+97419 41164,94487 29969,26-09-2016 12:40:32,2493
+93427 56500,(044)24037112,26-09-2016 12:44:01,9
+90359 52497,(0824)2145844,26-09-2016 12:56:09,507
+93428 11808,96565 52272,26-09-2016 13:00:05,309
+(080)62164823,(022)22288051,26-09-2016 13:05:43,288
+97414 62784,81522 26166,26-09-2016 13:09:54,347
+81515 42171,98440 02823,26-09-2016 13:13:09,131
+93412 26084,(022)47410783,26-09-2016 13:13:16,62
+81510 47188,90355 10919,26-09-2016 13:14:43,1200
+(022)69042431,(011)68486606,26-09-2016 13:21:38,103
+1408371942,77950 18278,26-09-2016 13:29:31,10
+(080)44357306,90199 91061,26-09-2016 13:31:59,901
+(04344)615310,(080)69104549,26-09-2016 13:36:04,9
+(022)69042431,(011)68486606,26-09-2016 13:41:52,904
+99001 95783,(080)60068611,26-09-2016 13:42:46,237
+93418 82576,94489 95536,26-09-2016 13:44:55,155
+(080)35986130,78130 36804,26-09-2016 13:53:47,102
+98444 95768,90194 08626,26-09-2016 13:55:16,4378
+92424 51984,78299 99223,26-09-2016 13:59:11,567
+(080)64431120,90192 30758,26-09-2016 14:00:56,139
+99009 32475,78138 56841,26-09-2016 14:08:56,204
+(04344)211113,(080)46772413,26-09-2016 14:17:44,284
+98444 63396,(022)46574732,26-09-2016 14:24:09,357
+90368 72970,97391 99665,26-09-2016 14:37:04,1598
+89071 50880,(04546)388977,26-09-2016 14:40:36,813
+(0824)6366719,94497 77615,26-09-2016 14:41:55,1769
+90352 50054,97389 12538,26-09-2016 14:48:05,649
+99612 41256,(080)43206415,26-09-2016 14:51:14,3058
+(080)45547058,84319 52539,26-09-2016 14:52:07,1562
+90368 72970,97391 99665,26-09-2016 15:01:43,630
+97380 60551,97380 86781,26-09-2016 15:13:01,3639
+1403072432,(011)21017178,26-09-2016 15:17:33,34
+94482 95223,(080)45291968,26-09-2016 15:19:02,520
+(080)29483476,90368 95100,26-09-2016 15:20:59,168
+81510 47188,97429 02055,26-09-2016 15:26:19,2788
+78138 93826,96569 95359,26-09-2016 15:36:08,933
+93435 98939,97403 49292,26-09-2016 15:43:30,1385
+(0821)3602212,99007 06998,26-09-2016 15:48:52,131
+93416 07259,78132 18081,26-09-2016 15:48:55,1795
+98445 85687,90197 38885,26-09-2016 15:50:11,2717
+78298 02848,99001 95783,26-09-2016 15:50:52,988
+(080)63623429,97422 22278,26-09-2016 16:08:16,2529
+87144 42283,98458 13389,26-09-2016 16:11:30,2802
+96565 52272,93428 11808,26-09-2016 16:14:13,403
+(04344)649705,94005 20878,26-09-2016 16:17:24,79
+(0821)4753474,93415 21881,26-09-2016 16:20:41,422
+(080)69150162,92421 09526,26-09-2016 16:25:24,541
+(04344)322628,90355 10919,26-09-2016 16:41:03,927
+74066 93594,(080)62164823,26-09-2016 16:43:56,9
+98447 12671,(022)62120910,26-09-2016 16:44:25,1740
+94487 29969,97419 41164,26-09-2016 16:49:39,1072
+1403072432,87146 31956,26-09-2016 16:52:29,165
+97399 92703,78136 42599,26-09-2016 16:54:11,108
+97390 23922,90359 52497,26-09-2016 16:56:29,12
+(022)68535788,(080)65023950,26-09-2016 16:59:14,768
+(080)45291968,94482 95223,26-09-2016 17:13:26,143
+90365 51029,97380 60551,26-09-2016 17:24:37,242
+94001 07403,90368 72970,26-09-2016 17:39:11,152
+81510 47188,97429 02055,26-09-2016 17:42:32,1315
+(080)43562014,(080)22759842,26-09-2016 17:44:33,265
+97424 21092,(080)69609453,26-09-2016 17:48:39,558
+98445 33687,97403 49292,26-09-2016 17:53:37,2331
+95263 76972,84319 39746,26-09-2016 17:55:28,2579
+1400481538,(080)43562014,26-09-2016 17:59:42,24
+(022)66911540,93426 88474,26-09-2016 18:00:44,2189
+99004 86250,95262 44233,26-09-2016 18:07:42,2544
+74065 10917,90198 03659,26-09-2016 18:12:15,193
+(04546)218519,(080)46304537,26-09-2016 18:12:28,112
+90365 06212,(080)45291968,26-09-2016 18:13:44,716
+(080)64765396,98448 88411,26-09-2016 18:23:17,223
+97415 99182,(080)44076727,26-09-2016 18:35:12,115
+(022)22288051,(080)62164823,26-09-2016 18:37:06,1489
+(080)23802940,98445 71741,26-09-2016 18:41:14,2492
+(080)23802940,98445 71741,26-09-2016 18:41:25,863
+(044)45416964,92425 27794,26-09-2016 18:51:27,1407
+90192 30758,(080)64431120,26-09-2016 18:56:07,9
+90366 69257,(0821)6141380,26-09-2016 19:01:06,9
+(022)38214945,98457 75681,26-09-2016 19:15:00,1031
+(080)64431120,90192 30758,26-09-2016 19:16:07,65
+1407539117,97402 57057,26-09-2016 19:21:30,51
+93428 98469,(080)66044294,26-09-2016 19:40:49,778
+97406 74488,92411 96415,26-09-2016 19:52:00,306
+90359 52497,97390 23922,26-09-2016 19:55:51,2549
+(080)33251027,90192 87313,26-09-2016 20:02:39,290
+(04344)228249,(080)43901222,26-09-2016 20:22:57,107
+90366 36573,97425 12708,26-09-2016 20:24:53,211
+90192 87313,(080)33251027,26-09-2016 20:45:59,809
+74066 93594,(080)62164823,26-09-2016 20:46:51,2468
+(080)62164823,74066 93594,26-09-2016 20:49:38,140
+(022)22288051,(080)62164823,26-09-2016 20:50:03,1954
+92421 09526,(080)69150162,26-09-2016 20:51:13,3130
+(04344)228249,98453 46196,26-09-2016 21:02:09,911
+90088 09624,93434 31551,26-09-2016 21:06:44,3259
+99007 06998,84314 00609,26-09-2016 21:08:04,106
+90198 03659,74065 10917,26-09-2016 21:14:02,808
+78295 20931,(080)35987804,26-09-2016 21:14:15,232
+(080)47459867,(080)43215621,26-09-2016 21:18:59,2768
+94480 64700,(080)32828889,26-09-2016 21:21:29,2900
+(044)41581342,97429 02055,26-09-2016 21:24:25,208
+90192 87313,(080)33251027,26-09-2016 21:32:42,1294
+93430 54160,(04344)615310,26-09-2016 21:37:25,151
+(04344)322628,90355 10919,26-09-2016 21:41:28,212
+90359 52497,(0824)2145844,26-09-2016 21:48:35,826
+(080)27498339,98440 71648,26-09-2016 22:02:54,202
+90197 24124,99612 41256,26-09-2016 22:05:08,169
+78293 91304,98448 86633,26-09-2016 22:11:45,121
+94480 64700,90088 09624,26-09-2016 22:12:46,730
+98447 62998,(080)46304537,26-09-2016 22:31:32,2574
+81524 55552,97380 60551,26-09-2016 22:31:33,77
+81513 30231,(080)30231886,26-09-2016 22:42:54,939
+90085 20915,99002 80226,26-09-2016 22:46:13,515
+90197 24124,99612 41256,26-09-2016 22:50:28,43
+97418 46131,97448 02140,26-09-2016 22:59:57,100
+95267 70383,(080)34121098,26-09-2016 23:01:26,551
+78298 91466,97380 60551,26-09-2016 23:03:42,795
+(080)46772413,(04344)211113,26-09-2016 23:08:52,147
+(0821)6141380,90366 69257,26-09-2016 23:13:22,3273
+94497 77615,(0824)6366719,26-09-2016 23:32:35,1027
+78295 65598,84313 45689,26-09-2016 23:41:01,3608
+(080)46221576,78295 48262,26-09-2016 23:47:21,1207
+99001 95783,78298 02848,26-09-2016 23:48:06,2777
+90198 03659,74065 10917,26-09-2016 23:48:48,2177
+97386 37259,(080)33251027,26-09-2016 23:50:22,1546
+97399 92703,78136 42599,26-09-2016 23:52:21,9
+90197 38885,98445 85687,26-09-2016 23:54:12,2532
+97380 60551,97414 35000,27-09-2016 06:04:34,28
+94495 34273,(080)39991213,27-09-2016 06:12:37,338
+98440 68457,95264 40233,27-09-2016 06:12:47,1418
+(044)30727085,92414 22596,27-09-2016 06:18:01,132
+(04344)228249,98453 46196,27-09-2016 06:31:16,1298
+(080)47459867,(080)43215621,27-09-2016 06:32:15,625
+97447 92655,87149 75762,27-09-2016 06:33:16,1201
+90196 73585,(044)49868415,27-09-2016 06:53:25,95
+(040)26738737,90194 00845,27-09-2016 07:04:26,805
+(080)69564399,96569 95359,27-09-2016 07:29:25,549
+97406 74488,92411 96415,27-09-2016 07:31:31,45
+(040)34008657,(080)43562014,27-09-2016 07:33:14,3227
+(080)35987804,78295 20931,27-09-2016 07:36:04,330
+(080)20123809,93432 65750,27-09-2016 07:38:59,2752
+(080)43685310,92415 66985,27-09-2016 07:46:58,1289
+(04344)228249,98453 46196,27-09-2016 08:10:53,85
+(022)34715405,74298 18325,27-09-2016 08:15:15,696
+90194 00845,97416 17124,27-09-2016 08:18:16,1019
+83019 39880,87146 31956,27-09-2016 08:27:43,3315
+(080)21652896,(040)26738737,27-09-2016 08:30:38,123
+(080)64765396,92415 49633,27-09-2016 08:35:04,371
+90365 51029,94499 38099,27-09-2016 08:39:58,28
+97449 50000,95269 20533,27-09-2016 08:47:40,587
+(080)43562014,(080)22759842,27-09-2016 09:01:05,256
+(0824)2145844,90359 52497,27-09-2016 09:06:05,250
+98446 78140,98444 72482,27-09-2016 09:30:31,2918
+90362 07317,92413 38675,27-09-2016 09:37:47,24
+90351 35947,(080)35121497,27-09-2016 09:43:05,70
+93435 98939,97403 49292,27-09-2016 09:51:57,239
+97419 90520,(08214175)358,27-09-2016 09:56:33,1115
+90355 10919,81510 47188,27-09-2016 09:59:49,9
+90355 10919,81524 55552,27-09-2016 10:00:29,2380
+98457 75681,(022)38214945,27-09-2016 10:02:08,428
+97386 37259,(080)33251027,27-09-2016 10:07:18,1569
+74065 10917,90198 03659,27-09-2016 10:08:29,9
+(080)69245029,(044)49481100,27-09-2016 10:10:50,165
+97427 87999,(04344)322628,27-09-2016 10:14:51,3172
+(080)69564399,96569 95359,27-09-2016 10:27:16,790
+(022)47410783,93412 26084,27-09-2016 10:30:02,133
+97406 74488,90358 98099,27-09-2016 10:31:32,9
+74066 93594,(080)62164823,27-09-2016 10:40:05,1447
+98447 62998,(080)46304537,27-09-2016 10:49:13,853
+99612 41256,90197 24124,27-09-2016 10:54:06,784
+90196 73585,(044)49868415,27-09-2016 10:59:03,2242
+87146 31956,(080)68104927,27-09-2016 11:03:20,115
+78130 00821,98453 94494,27-09-2016 11:04:26,90
+98444 95768,99003 47921,27-09-2016 11:09:11,97
+98457 75681,(022)38214945,27-09-2016 11:13:31,93
+99007 06998,(0821)3602212,27-09-2016 11:22:36,223
+98459 20681,(080)35538852,27-09-2016 11:22:49,479
+(011)21017178,83015 22251,27-09-2016 11:24:59,215
+93430 54160,(04344)615310,27-09-2016 11:26:15,2166
+(080)63623429,97422 22278,27-09-2016 11:34:07,183
+96565 52272,93428 11808,27-09-2016 11:36:40,202
+(080)43685310,95263 76972,27-09-2016 11:42:27,115
+(0471)2953539,97425 79921,27-09-2016 11:45:29,743
+(080)34121098,95267 70383,27-09-2016 11:48:53,3148
+93435 98939,97403 49292,27-09-2016 11:50:14,85
+94487 29969,97419 41164,27-09-2016 11:56:59,689
+(044)24037112,93427 56500,27-09-2016 12:01:06,930
+81510 47188,(080)41095396,27-09-2016 12:02:23,3079
+98441 32533,70129 62374,27-09-2016 12:02:53,781
+97385 70012,94497 44333,27-09-2016 12:04:33,9
+90084 16988,93422 47940,27-09-2016 12:10:50,47
+93427 56500,98447 12671,27-09-2016 12:18:30,1395
+(080)22816760,90088 09624,27-09-2016 12:19:03,1840
+(080)22816760,90088 09624,27-09-2016 12:21:50,411
+(080)45687418,93414 19669,27-09-2016 12:24:34,3405
+(080)46772413,(04344)211113,27-09-2016 12:29:48,584
+97427 87999,(04344)322628,27-09-2016 12:30:37,751
+(080)33251027,97386 37259,27-09-2016 12:32:44,9
+93432 65750,(080)20123809,27-09-2016 12:46:06,169
+(022)28952819,(080)25863765,27-09-2016 12:46:45,799
+(080)22816760,90088 09624,27-09-2016 12:48:45,2072
+98454 90038,93415 21881,27-09-2016 12:54:17,799
+97414 62027,95267 70383,27-09-2016 13:05:23,977
+90359 52497,(0824)2145844,27-09-2016 13:35:17,2951
+99002 80226,90085 20915,27-09-2016 13:36:23,674
+(022)28765220,98444 16192,27-09-2016 13:38:34,1094
+(080)45547058,84319 52539,27-09-2016 13:41:09,89
+(022)30044349,97385 29751,27-09-2016 13:42:22,309
+97446 95253,97428 35959,27-09-2016 13:59:30,9
+94489 95536,94492 23068,27-09-2016 14:06:12,3233
+97399 92703,97421 07528,27-09-2016 14:10:39,1189
+95264 40233,98440 68457,27-09-2016 14:19:25,204
+(040)26738737,90194 00845,27-09-2016 14:22:40,4385
+78293 38561,(080)21129907,27-09-2016 14:30:51,744
+(04546)267875,(044)38044356,27-09-2016 14:33:27,81
+(080)43685310,(080)29435303,27-09-2016 14:39:02,9
+98453 46196,(04344)228249,27-09-2016 14:45:11,2910
+90355 49499,(080)37913009,27-09-2016 14:47:21,165
+97406 74488,92411 96415,27-09-2016 14:53:45,9
+(080)44389098,(080)35986130,27-09-2016 14:56:06,431
+(080)48462898,90199 67471,27-09-2016 14:58:09,94
+97393 52893,(022)40840621,27-09-2016 15:08:27,29
+93412 26084,(022)47410783,27-09-2016 15:25:19,190
+78133 10302,93423 23000,27-09-2016 15:31:00,1967
+90355 10919,81524 55552,27-09-2016 15:42:48,3967
+(080)68104927,90194 08626,27-09-2016 15:52:53,868
+96569 95359,(080)69564399,27-09-2016 15:53:44,485
+(080)22816760,(0821)6141380,27-09-2016 15:54:51,242
+96569 95359,78138 93826,27-09-2016 16:01:07,1343
+90351 35947,(080)35121497,27-09-2016 16:07:43,129
+97424 53609,97385 70012,27-09-2016 16:17:27,2360
+94480 64700,(080)32828889,27-09-2016 16:28:44,798
+(080)32390650,(080)43562014,27-09-2016 16:35:46,1596
+90368 72970,94001 07403,27-09-2016 16:39:24,1411
+(080)69564399,96569 95359,27-09-2016 16:39:47,9
+97391 99665,90368 72970,27-09-2016 16:46:37,1322
+90351 35947,97424 21092,27-09-2016 16:50:07,3407
+98457 75681,(022)38214945,27-09-2016 16:53:46,580
+(080)46702492,(080)44046839,27-09-2016 17:12:58,3887
+90366 36573,98448 87878,27-09-2016 17:30:01,605
+97425 92186,94482 95223,27-09-2016 17:39:39,148
+97406 93118,(040)69695864,27-09-2016 17:45:16,194
+(080)62164823,(080)32255824,27-09-2016 17:51:20,292
+95267 70383,(080)34121098,27-09-2016 17:51:29,2328
+97380 60551,81524 55552,27-09-2016 17:51:32,2824
+97421 07528,97399 92703,27-09-2016 18:02:51,635
+90088 09624,94480 64700,27-09-2016 18:03:35,33
+(080)45291968,90365 06212,27-09-2016 18:07:03,205
+1409994233,97416 29480,27-09-2016 18:17:57,332
+97422 22278,(080)63623429,27-09-2016 18:23:33,1629
+(022)47410783,93412 26084,27-09-2016 18:24:13,9
+(080)34121098,95267 70383,27-09-2016 18:33:27,34
+(080)45291968,90365 06212,27-09-2016 18:37:01,326
+93416 07259,78138 56841,27-09-2016 19:03:41,146
+(080)43215621,(080)47459867,27-09-2016 19:07:00,146
+97385 29751,(022)30044349,27-09-2016 19:23:13,732
+98440 65896,(080)47459867,27-09-2016 19:23:48,987
+93432 65750,(080)20123809,27-09-2016 19:24:26,432
+98440 71648,(080)27498339,27-09-2016 19:24:48,107
+(0821)2135265,81524 55552,27-09-2016 19:25:05,895
+(033)25441815,94489 82688,27-09-2016 19:26:14,735
+(04344)649705,90193 16567,27-09-2016 19:38:28,319
+94482 95223,(080)45291968,27-09-2016 19:40:17,1121
+(080)20383942,81517 73746,27-09-2016 19:49:37,109
+78293 38561,(080)21129907,27-09-2016 20:03:20,770
+93432 65750,(080)35986130,27-09-2016 20:05:11,158
+97425 92186,94482 95223,27-09-2016 20:05:45,367
+78138 56841,93416 07259,27-09-2016 20:08:12,61
+(080)62164823,(080)32255824,27-09-2016 20:13:29,2628
+90194 00845,97416 17124,27-09-2016 20:30:16,2457
+97416 29480,92426 72402,27-09-2016 20:31:53,1985
+97416 18084,(044)27641880,27-09-2016 20:40:52,113
+(0471)2225098,97406 06245,27-09-2016 20:41:27,3965
+(080)44050207,97416 18084,27-09-2016 20:43:45,1895
+98454 90038,74066 31484,27-09-2016 21:06:43,1496
+93432 65750,(080)20123809,27-09-2016 21:12:13,2605
+97380 60551,78298 91466,27-09-2016 21:13:06,1228
+97403 88244,(022)46574732,27-09-2016 21:22:25,171
+87144 42283,98458 13389,27-09-2016 21:22:34,9
+97386 37259,(080)33251027,27-09-2016 21:23:53,687
+(080)48462898,90199 67471,27-09-2016 21:24:57,4193
+81522 26166,(080)46566171,27-09-2016 21:25:45,812
+74064 66270,(080)47999451,27-09-2016 21:27:45,33
+(080)25863765,(022)28952819,27-09-2016 21:27:49,2297
+97410 27512,(080)41712046,27-09-2016 21:30:29,187
+90362 07317,92413 38675,27-09-2016 21:36:41,1068
+90194 00845,97416 17124,27-09-2016 21:48:37,573
+97415 99182,(080)44076727,27-09-2016 21:52:28,709
+(022)22288051,(080)62164823,27-09-2016 21:54:48,3091
+(0471)2953539,74292 23928,27-09-2016 21:58:33,70
+96569 95359,78138 93826,27-09-2016 22:02:47,3392
+78993 89387,(080)21652896,27-09-2016 22:03:06,158
+90087 42537,(080)35121497,27-09-2016 22:14:02,4328
+78138 93826,90359 99240,27-09-2016 22:24:18,777
+94006 62384,(022)38214945,27-09-2016 22:38:55,117
+90351 35947,97424 21092,27-09-2016 22:39:58,361
+97429 02055,81510 47188,27-09-2016 22:41:53,9
+(080)43562014,(080)22759842,27-09-2016 22:47:01,595
+(080)35987804,(044)68407232,27-09-2016 23:01:01,1252
+97402 57057,(080)45547058,27-09-2016 23:05:47,124
+81515 65055,(080)61419142,27-09-2016 23:15:21,56
+97422 22278,98446 66723,27-09-2016 23:28:47,1267
+(0471)2953539,97425 79921,27-09-2016 23:30:42,24
+98453 46196,94005 06213,27-09-2016 23:43:13,1239
+93428 11808,96565 52272,27-09-2016 23:47:32,829
+(080)64047472,(080)20227149,27-09-2016 23:56:40,819
+90366 36573,97425 12708,27-09-2016 23:58:30,208
+99009 32475,81519 62015,28-09-2016 06:09:15,499
+(080)22759842,(080)43562014,28-09-2016 06:18:06,2079
+90085 20915,99002 80226,28-09-2016 06:22:36,75
+77956 90632,(0821)3537229,28-09-2016 06:31:45,399
+97380 60551,97414 35000,28-09-2016 06:37:53,2144
+97448 02140,(022)34715405,28-09-2016 06:38:03,66
+(080)44046839,(080)62342282,28-09-2016 06:42:40,73
+93427 56500,(044)24037112,28-09-2016 06:43:48,4207
+78298 91466,(022)28952819,28-09-2016 06:51:24,2120
+90198 03659,74065 10917,28-09-2016 06:55:38,741
+94001 62063,(080)33251027,28-09-2016 06:56:32,205
+(080)69609453,97424 21092,28-09-2016 07:01:51,1193
+(040)66729318,(080)66857551,28-09-2016 07:03:01,175
+(080)43562014,(080)22759842,28-09-2016 07:09:27,260
+97415 99182,(080)44076727,28-09-2016 07:18:34,3422
+99610 89720,90197 69887,28-09-2016 07:30:57,9
+(011)21017178,83015 22251,28-09-2016 07:43:26,771
+99003 88572,(080)46304537,28-09-2016 07:55:18,491
+(044)49481100,(080)69245029,28-09-2016 08:06:39,2086
+74292 23928,(0471)2953539,28-09-2016 08:12:48,3465
+93412 26084,(022)47410783,28-09-2016 08:31:13,3626
+90351 49472,90199 67471,28-09-2016 08:31:21,2231
+90197 24124,99612 41256,28-09-2016 08:34:23,9
+90366 69257,90082 61126,28-09-2016 08:35:52,966
+93427 56500,98447 12671,28-09-2016 08:54:48,46
+78298 02848,99001 95783,28-09-2016 08:57:53,3585
+90366 69257,90082 61126,28-09-2016 09:00:51,931
+92411 96415,97406 74488,28-09-2016 09:04:03,218
+94489 82688,(033)25441815,28-09-2016 09:05:11,1054
+(080)41712046,97410 27512,28-09-2016 09:09:40,9
+92424 51984,78299 99223,28-09-2016 09:13:15,984
+(044)24037112,93427 56500,28-09-2016 09:14:03,651
+(080)27498339,98440 71648,28-09-2016 09:18:11,1006
+(04546)218519,(080)46304537,28-09-2016 09:18:36,139
+90198 03659,74065 10917,28-09-2016 09:19:25,2072
+(080)32679828,(044)64005505,28-09-2016 09:20:07,850
+94489 82688,(033)25441815,28-09-2016 09:27:03,1999
+94488 97308,(080)21697299,28-09-2016 09:32:22,451
+92415 91418,94489 72078,28-09-2016 09:37:44,204
+(080)45291968,95266 42732,28-09-2016 09:39:22,209
+97385 70012,94497 44333,28-09-2016 09:48:49,4123
+(080)43215621,(080)47459867,28-09-2016 09:58:11,3370
+92411 96415,97406 74488,28-09-2016 10:00:20,814
+93432 65750,(080)20123809,28-09-2016 10:00:50,2822
+(080)67362492,(04344)316423,28-09-2016 10:08:24,1086
+99001 95783,98459 20681,28-09-2016 10:10:46,89
+(044)49868415,90196 73585,28-09-2016 10:11:00,2587
+74066 31484,98454 90038,28-09-2016 10:13:42,1614
+90365 06212,97424 22395,28-09-2016 10:31:24,212
+(0824)2022081,(04344)654396,28-09-2016 10:35:47,183
+89071 31755,78290 99865,28-09-2016 10:40:39,761
+97414 62784,81522 26166,28-09-2016 11:04:23,706
+90357 25284,97424 22395,28-09-2016 11:06:10,1008
+(080)30231886,81513 30231,28-09-2016 11:10:20,123
+97425 92186,94482 95223,28-09-2016 11:12:00,3139
+94482 95223,97425 92186,28-09-2016 11:23:40,2832
+(04546)218519,(080)46304537,28-09-2016 11:26:56,9
+99001 95783,(080)60068611,28-09-2016 11:26:56,2653
+97410 27512,(080)41712046,28-09-2016 11:39:49,349
+81510 47188,90355 10919,28-09-2016 11:44:25,3390
+92414 22596,(080)32647101,28-09-2016 12:00:54,558
+(080)60463379,93412 40385,28-09-2016 12:03:19,2860
+(080)32390650,98445 27876,28-09-2016 12:04:16,639
+84312 48999,94485 80091,28-09-2016 12:36:19,78
+81515 65055,(080)61419142,28-09-2016 12:38:18,447
+90368 72970,94001 07403,28-09-2016 12:41:26,1728
+93430 54160,(04344)615310,28-09-2016 12:42:53,18
+90087 42537,(080)35121497,28-09-2016 12:43:39,213
+97380 60551,81524 55552,28-09-2016 12:57:50,790
+1404073047,78993 92058,28-09-2016 13:07:57,47
+(080)45547058,97402 57057,28-09-2016 13:09:02,1033
+(080)41336994,97406 93118,28-09-2016 13:17:24,216
+84312 48999,(080)43685310,28-09-2016 13:18:02,944
+(080)44046839,(080)62342282,28-09-2016 13:18:21,636
+94482 95223,97425 92186,28-09-2016 13:18:43,2595
+95264 40233,98440 68457,28-09-2016 13:20:05,555
+(080)32255824,(080)62164823,28-09-2016 13:22:09,243
+84311 10322,(0824)2022081,28-09-2016 13:26:26,1378
+81522 26166,97414 62784,28-09-2016 13:29:15,1605
+97426 64618,90086 21082,28-09-2016 13:33:36,144
+92424 51984,(04344)617351,28-09-2016 13:34:07,2465
+94001 07403,90368 72970,28-09-2016 14:06:54,1593
+94002 85593,(080)65023950,28-09-2016 14:11:58,964
+97424 22395,(022)29303640,28-09-2016 14:20:36,759
+98453 94494,78130 00821,28-09-2016 14:21:15,176
+93427 40118,(080)33118033,28-09-2016 14:21:16,170
+92426 72402,97416 29480,28-09-2016 14:29:46,622
+(04344)322628,97427 87999,28-09-2016 14:40:22,61
+92411 96415,93435 21961,28-09-2016 14:42:55,22
+87144 42283,98458 13389,28-09-2016 14:43:47,182
+92428 82401,97385 29751,28-09-2016 14:44:38,85
+98454 90038,74066 31484,28-09-2016 14:45:22,9
+(080)27498339,98440 71648,28-09-2016 14:48:41,326
+(044)69775060,90356 11723,28-09-2016 14:55:39,176
+(040)66729318,(080)66857551,28-09-2016 14:57:56,3438
+92415 91418,(080)48462898,28-09-2016 15:01:47,1393
+97424 22395,(022)47410783,28-09-2016 15:03:42,134
+(040)26738737,90194 00845,28-09-2016 15:18:11,1931
+81522 26166,97414 62784,28-09-2016 15:26:06,1147
+98445 85687,90197 38885,28-09-2016 15:34:12,265
+97420 86635,90193 20957,28-09-2016 15:36:02,732
+(080)32255824,(080)62164823,28-09-2016 15:36:21,1301
+97399 92703,97421 07528,28-09-2016 15:39:00,99
+97421 07528,97399 92703,28-09-2016 15:39:26,805
+84313 80377,(080)46304537,28-09-2016 15:40:03,3367
+(022)46574732,97403 88244,28-09-2016 15:42:06,3195
+78138 93826,96569 95359,28-09-2016 15:42:33,698
+94489 72078,92415 91418,28-09-2016 15:42:48,97
+90351 35947,(080)35121497,28-09-2016 15:47:07,3373
+(0471)6579079,(080)23180345,28-09-2016 15:52:01,842
+(080)35121497,90351 35947,28-09-2016 15:53:41,2112
+97425 79921,(0471)2953539,28-09-2016 15:59:26,470
+(080)43206415,99612 41256,28-09-2016 16:01:00,233
+(080)39755879,90355 94399,28-09-2016 16:06:44,200
+(0821)3602212,99007 06998,28-09-2016 16:12:08,84
+98448 87878,90366 36573,28-09-2016 16:13:03,476
+(080)40929452,77956 55474,28-09-2016 16:26:05,3297
+78293 38561,(080)21129907,28-09-2016 16:51:52,814
+(080)33251027,94001 62063,28-09-2016 16:54:36,2778
+97385 70012,94497 44333,28-09-2016 16:56:15,9
+(080)30270642,97380 86781,28-09-2016 16:56:54,1004
+98454 07778,93412 66159,28-09-2016 17:04:40,2669
+92423 51078,(080)44076727,28-09-2016 17:04:50,1263
+97416 17124,90194 00845,28-09-2016 17:09:18,198
+70129 62374,98441 32533,28-09-2016 17:09:30,309
+92423 51078,(080)25863765,28-09-2016 17:21:31,110
+(080)41712046,97410 27512,28-09-2016 17:23:34,226
+98445 42844,(044)48154960,28-09-2016 17:39:46,451
+81515 42171,98440 02823,28-09-2016 17:41:03,2396
+99612 41256,90197 24124,28-09-2016 17:41:11,74
+1409994233,94491 29500,28-09-2016 17:44:02,74
+(044)30727085,92414 22596,28-09-2016 17:44:19,686
+93427 56500,(044)24037112,28-09-2016 17:53:02,149
+98444 95768,99003 47921,28-09-2016 17:56:11,896
+(080)43562014,(080)22759842,28-09-2016 17:57:45,16
+97385 29751,92428 82401,28-09-2016 18:20:40,781
+(022)28765220,98444 16192,28-09-2016 18:29:57,917
+78293 38561,(080)21129907,28-09-2016 18:32:25,2094
+78295 60375,83015 22251,28-09-2016 18:45:01,927
+(080)34932254,81513 36123,28-09-2016 18:45:36,649
+93434 31551,(080)31982490,28-09-2016 18:48:55,612
+(080)43215621,(080)47459867,28-09-2016 19:06:18,744
+96566 40412,90352 50054,28-09-2016 19:25:01,1787
+(080)45547058,97402 57057,28-09-2016 19:26:35,1097
+(044)27641880,97416 18084,28-09-2016 19:28:38,2514
+92426 72402,97416 29480,28-09-2016 19:40:22,723
+89071 50880,(04546)388977,28-09-2016 19:47:04,373
+90196 73585,(044)49868415,28-09-2016 19:52:34,667
+89078 69605,77950 18278,28-09-2016 20:05:01,961
+(080)20227149,(080)64047472,28-09-2016 20:09:49,135
+(080)35121497,90087 42537,28-09-2016 20:14:43,3400
+78993 89387,(080)21652896,28-09-2016 20:31:58,1151
+78993 89387,(044)25144377,28-09-2016 20:37:24,9
+95263 76972,84319 39746,28-09-2016 20:37:25,736
+90359 79636,99001 23133,28-09-2016 20:41:27,1254
+90085 20915,99002 80226,28-09-2016 20:43:30,1198
+93426 76415,(080)20123809,28-09-2016 20:48:05,233
+(04344)615310,(080)69104549,28-09-2016 21:03:04,1167
+(022)47410783,93412 26084,28-09-2016 21:16:52,9
+(080)45291968,95266 42732,28-09-2016 21:17:06,642
+98444 72482,98446 78140,28-09-2016 21:27:01,3224
+90351 49472,90199 67471,28-09-2016 21:37:25,1630
+74066 93594,(080)62164823,28-09-2016 21:41:49,742
+98452 19037,90355 94399,28-09-2016 21:43:13,2820
+(080)69245029,(044)49481100,28-09-2016 21:49:28,1807
+97380 60551,78298 91466,28-09-2016 21:59:35,942
+87149 75762,97447 92655,28-09-2016 22:05:28,3448
+78295 60375,93410 98013,28-09-2016 22:09:07,1015
+93434 31551,90088 09624,28-09-2016 22:20:34,592
+98452 19037,90355 94399,28-09-2016 22:23:00,513
+97429 02055,81510 47188,28-09-2016 22:31:09,2468
+81513 36123,(080)34121098,28-09-2016 22:36:02,805
+99001 95783,78298 02848,28-09-2016 22:44:23,2518
+98453 46196,94005 06213,28-09-2016 22:46:51,869
+(0471)4255177,74298 85702,28-09-2016 22:47:12,9
+(080)45291968,95266 42732,28-09-2016 23:08:25,710
+(080)69104549,98448 87878,28-09-2016 23:23:22,501
+(080)69887826,(080)32390650,28-09-2016 23:26:10,115
+90087 42537,(080)35121497,28-09-2016 23:28:43,989
+74066 31484,98454 90038,28-09-2016 23:28:55,2570
+(080)64047472,(080)20227149,28-09-2016 23:36:08,495
+96569 95359,(080)69564399,28-09-2016 23:51:35,518
+93428 11808,97406 06245,28-09-2016 23:54:30,774
+90355 49499,(080)37913009,28-09-2016 23:56:20,345
+90198 03659,74065 10917,28-09-2016 23:56:51,193
+78299 99223,92424 51984,29-09-2016 06:00:58,1214
+(080)25863765,(022)28952819,29-09-2016 06:01:03,852
+93430 54160,81519 62015,29-09-2016 06:03:06,4053
+(080)35986130,(080)44389098,29-09-2016 06:11:44,1888
+(044)69775060,78134 03625,29-09-2016 06:14:12,360
+99003 47921,98444 95768,29-09-2016 06:19:29,50
+90366 69257,90082 61126,29-09-2016 06:42:15,208
+90351 90193,78299 36192,29-09-2016 06:44:14,190
+89071 32787,(044)48154960,29-09-2016 06:46:25,114
+78299 99223,92424 51984,29-09-2016 06:49:26,49
+97447 92655,(022)39006198,29-09-2016 06:53:49,2442
+(080)69150162,92421 09526,29-09-2016 06:58:06,842
+(080)41203315,(080)61419142,29-09-2016 07:05:12,2109
+94495 34273,(080)39991213,29-09-2016 07:12:20,2360
+(080)29435303,(080)43685310,29-09-2016 07:16:24,128
+93412 66159,94499 20763,29-09-2016 07:18:01,128
+(022)28952819,(080)25863765,29-09-2016 07:20:42,1692
+(080)44046839,(080)62342282,29-09-2016 07:21:41,2891
+(080)35538852,92421 64236,29-09-2016 07:22:13,102
+(022)38214945,(080)65647085,29-09-2016 07:22:41,2982
+98445 85687,90197 38885,29-09-2016 07:35:51,2181
+74292 23928,(0471)2953539,29-09-2016 07:36:41,215
+(080)43901222,(04344)228249,29-09-2016 07:43:12,2223
+92421 09526,(080)69150162,29-09-2016 08:06:34,769
+97399 92703,97421 07528,29-09-2016 08:15:27,318
+93432 65750,(080)35986130,29-09-2016 08:18:45,9
+(044)20550065,84319 52539,29-09-2016 08:34:05,138
+98454 90038,74066 31484,29-09-2016 08:49:59,657
+(080)43685310,92415 66985,29-09-2016 09:00:29,2896
+97385 70012,97424 53609,29-09-2016 09:27:09,865
+97384 69866,87146 31956,29-09-2016 09:28:39,57
+94489 72078,92415 91418,29-09-2016 09:30:23,2504
+1404073047,(044)30360652,29-09-2016 09:31:34,100
+93430 54160,(04344)615310,29-09-2016 09:38:22,888
+(080)37913009,90355 49499,29-09-2016 09:40:31,80
+77956 90632,(0821)3537229,29-09-2016 09:42:10,580
+78136 54214,(0471)6537077,29-09-2016 09:49:33,120
+99006 60463,99003 88572,29-09-2016 10:11:38,638
+(04344)615310,(080)69104549,29-09-2016 10:16:39,452
+90192 87313,78139 24512,29-09-2016 10:21:59,112
+(080)68739140,97406 74488,29-09-2016 10:23:27,1917
+(04344)615310,(080)69104549,29-09-2016 10:25:53,1819
+(04344)228249,98453 46196,29-09-2016 10:32:07,3290
+(080)34121098,(0471)6537077,29-09-2016 10:47:44,1241
+93435 98939,97403 49292,29-09-2016 10:56:59,90
+(080)35986130,(080)44389098,29-09-2016 11:04:33,3839
+92415 91418,(080)48462898,29-09-2016 11:18:07,1968
+89071 31755,78290 99865,29-09-2016 11:22:17,68
+93410 98013,78295 60375,29-09-2016 11:23:02,2639
+74298 85702,(0471)4255177,29-09-2016 11:27:18,59
+97410 27512,(080)41712046,29-09-2016 11:34:41,2434
+92426 72402,97416 29480,29-09-2016 11:40:07,632
+90089 69682,89076 07067,29-09-2016 11:54:32,210
+97390 23922,90359 52497,29-09-2016 12:00:50,666
+98444 72482,98446 78140,29-09-2016 12:01:41,154
+98440 65896,(080)47459867,29-09-2016 12:02:03,2545
+(080)62342282,(080)44046839,29-09-2016 12:02:08,231
+90194 00845,(040)26738737,29-09-2016 12:12:23,87
+92414 22596,(044)30727085,29-09-2016 12:23:23,197
+(080)60068611,99001 95783,29-09-2016 12:27:23,27
+99003 88572,(080)46304537,29-09-2016 12:32:13,824
+97406 74488,92411 96415,29-09-2016 12:33:13,169
+(044)45416964,92425 27794,29-09-2016 12:39:30,938
+(0824)2145844,90359 52497,29-09-2016 12:58:53,100
+70121 27677,78295 48262,29-09-2016 13:04:16,903
+97406 06245,97403 09983,29-09-2016 13:22:08,2220
+(0471)2225098,97406 06245,29-09-2016 13:50:26,220
+98444 72482,98446 78140,29-09-2016 13:59:16,2776
+89071 31755,78290 99865,29-09-2016 14:00:55,902
+94491 55790,90359 99240,29-09-2016 14:04:36,732
+93435 98939,97403 49292,29-09-2016 14:07:37,991
+87146 31956,83019 39880,29-09-2016 14:13:39,1562
+70127 59322,78133 71458,29-09-2016 14:19:03,3469
+97389 12538,90352 50054,29-09-2016 14:41:26,174
+97414 62784,98449 60656,29-09-2016 14:42:38,72
+77950 18278,89078 69605,29-09-2016 14:49:23,511
+99003 88572,99006 60463,29-09-2016 14:54:27,93
+81513 36123,(080)34121098,29-09-2016 15:01:53,1336
+(080)69609453,(080)25863765,29-09-2016 15:05:21,261
+(080)44046839,(080)62342282,29-09-2016 15:06:42,9
+(080)41336994,97406 93118,29-09-2016 15:11:07,2487
+81513 36123,(080)34121098,29-09-2016 15:11:20,142
+90198 03659,74065 10917,29-09-2016 15:12:50,152
+94488 97308,(080)21697299,29-09-2016 15:19:25,213
+78290 99865,89071 31755,29-09-2016 15:21:26,2035
+(0471)4255177,74298 85702,29-09-2016 15:25:33,2326
+92425 27794,(044)45416964,29-09-2016 15:25:48,893
+98458 13389,87144 42283,29-09-2016 15:26:11,122
+97424 53609,97385 70012,29-09-2016 15:28:41,2786
+1403579926,97381 67759,29-09-2016 15:35:39,10
+99612 41256,(080)43206415,29-09-2016 15:46:38,4514
+97380 60551,78298 91466,29-09-2016 15:58:48,678
+90352 50054,96566 40412,29-09-2016 16:12:35,710
+90356 11723,(044)69775060,29-09-2016 16:22:45,179
+90199 67471,94482 22716,29-09-2016 16:30:21,9
+87146 31956,97384 69866,29-09-2016 16:33:09,77
+97385 29751,(022)30044349,29-09-2016 16:42:31,133
+(080)26097534,(080)39755879,29-09-2016 16:45:44,179
+97424 53609,97385 70012,29-09-2016 16:50:35,273
+1407539117,97443 06352,29-09-2016 16:53:10,45
+(080)40362016,94491 29500,29-09-2016 16:57:29,23
+90365 51029,94499 38099,29-09-2016 16:57:45,498
+(080)35121497,90351 35947,29-09-2016 17:05:11,113
+99004 86250,95262 44233,29-09-2016 17:10:38,374
+97403 09983,97406 06245,29-09-2016 17:18:15,1931
+(080)25863765,(022)38214945,29-09-2016 17:20:41,950
+1408672243,83040 21802,29-09-2016 17:25:32,46
+(080)30270642,97380 86781,29-09-2016 17:30:01,369
+90355 94399,97391 99665,29-09-2016 17:33:45,213
+1403579926,83013 85044,29-09-2016 17:41:33,106
+(080)35538852,98446 78140,29-09-2016 17:42:07,604
+93434 31551,(080)31982490,29-09-2016 17:50:55,109
+(044)30360652,77956 55474,29-09-2016 17:57:05,2966
+97422 22278,98446 66723,29-09-2016 18:00:40,300
+78293 38561,(080)21129907,29-09-2016 18:04:19,533
+97403 09983,97406 06245,29-09-2016 18:06:50,104
+1409421631,90351 35947,29-09-2016 18:08:47,10
+97404 90013,(0821)4753474,29-09-2016 18:09:20,17
+(080)68104927,87146 31956,29-09-2016 18:10:50,969
+98454 90038,74066 31484,29-09-2016 18:17:37,1614
+(080)35121497,90351 35947,29-09-2016 18:23:43,19
+(08214175)358,97419 90520,29-09-2016 18:29:27,1118
+(044)48154960,89071 32787,29-09-2016 18:30:59,3489
+87149 75762,97447 92655,29-09-2016 18:45:13,1192
+(080)25863765,(022)28952819,29-09-2016 19:01:19,48
+97404 30456,(040)25325254,29-09-2016 19:02:40,349
+78290 99865,89071 31755,29-09-2016 19:13:56,26
+93428 11808,96565 52272,29-09-2016 19:30:52,874
+90088 09624,(080)22816760,29-09-2016 19:36:11,50
+(080)46772413,(04344)211113,29-09-2016 19:51:11,111
+90359 79636,70121 27677,29-09-2016 19:51:49,75
+92415 66985,(080)43685310,29-09-2016 19:55:59,129
+90366 69257,90082 61126,29-09-2016 20:07:46,1193
+98448 87878,90366 36573,29-09-2016 20:10:34,958
+(0821)3257740,97420 86635,29-09-2016 20:13:51,128
+98448 88411,(080)64765396,29-09-2016 20:15:51,612
+78295 48262,(080)46221576,29-09-2016 20:30:54,2756
+94005 20878,(04344)649705,29-09-2016 20:32:19,142
+90359 52497,(0824)2145844,29-09-2016 20:41:20,1000
+95267 70383,(080)34121098,29-09-2016 20:52:15,978
+94499 46077,97426 64618,29-09-2016 20:54:02,895
+98442 73671,(080)69245029,29-09-2016 21:09:57,880
+92414 22596,(080)32647101,29-09-2016 21:11:20,492
+94486 40312,(044)48154960,29-09-2016 21:13:08,141
+90351 35947,(080)35121497,29-09-2016 21:13:09,910
+92428 82401,97385 29751,29-09-2016 21:28:21,437
+92411 96415,93435 21961,29-09-2016 21:30:05,379
+78298 91466,(022)28952819,29-09-2016 21:41:44,91
+97416 17124,90194 00845,29-09-2016 21:43:42,443
+(080)45291968,90365 06212,29-09-2016 21:48:18,246
+(080)22759842,(080)43562014,29-09-2016 21:49:20,9
+(080)62164823,(022)22288051,29-09-2016 21:50:50,752
+97446 95253,97428 35959,29-09-2016 22:00:50,1213
+90192 87313,(080)33251027,29-09-2016 22:11:34,2717
+98441 32533,70129 62374,29-09-2016 22:12:13,1218
+(080)43215621,(080)47459867,29-09-2016 22:19:22,433
+93435 31225,87141 37314,29-09-2016 22:23:51,756
+(044)27641880,97416 18084,29-09-2016 22:30:16,519
+98448 88411,(080)64765396,29-09-2016 22:36:51,149
+94485 80091,84312 48999,29-09-2016 22:45:17,258
+97427 87999,(04344)322628,29-09-2016 22:45:32,2615
+90197 69887,99610 89720,29-09-2016 22:52:41,98
+97380 60551,90365 51029,29-09-2016 23:04:58,429
+(044)49868415,98447 63400,29-09-2016 23:33:59,132
+97429 02055,81510 47188,29-09-2016 23:35:30,2439
+98453 94494,78130 00821,29-09-2016 23:40:05,1251
+(080)66044294,93428 98469,29-09-2016 23:41:05,9
+94480 64700,90088 09624,29-09-2016 23:45:39,2224
+93422 47940,90084 16988,29-09-2016 23:50:46,980
+70121 27677,90359 79636,29-09-2016 23:55:22,475
+92425 27794,93432 65750,29-09-2016 23:57:49,2234
+93428 11808,97406 06245,29-09-2016 23:59:21,30
+(040)26738737,90194 00845,30-09-2016 06:13:32,2339
+98445 85687,90197 38885,30-09-2016 06:29:13,334
+(080)63623429,97422 22278,30-09-2016 06:49:26,1126
+90359 79636,70121 27677,30-09-2016 06:53:08,1152
+(044)49481100,(080)69245029,30-09-2016 06:56:07,3550
+97449 50000,95269 20533,30-09-2016 07:17:21,1049
+89071 50880,(04546)388977,30-09-2016 07:19:08,831
+(033)25441815,94489 82688,30-09-2016 07:29:24,3011
+90197 38885,98445 85687,30-09-2016 07:34:57,2797
+93434 31551,90088 09624,30-09-2016 07:36:03,2880
+89078 69605,77950 18278,30-09-2016 07:36:40,62
+97406 06245,97403 09983,30-09-2016 07:37:19,230
+97425 79921,(0471)2953539,30-09-2016 07:43:09,9
+98458 94162,(080)32638303,30-09-2016 07:43:34,1931
+97416 17124,90194 00845,30-09-2016 07:43:54,1485
+97384 69866,87146 31956,30-09-2016 07:49:04,30
+(011)21017178,83015 22251,30-09-2016 07:53:20,316
+90192 87313,(080)33251027,30-09-2016 07:56:50,2559
+93412 66159,98454 07778,30-09-2016 08:05:03,832
+93432 65750,92425 27794,30-09-2016 08:12:29,103
+92411 96415,93435 21961,30-09-2016 08:15:49,734
+92411 96415,97406 74488,30-09-2016 08:18:06,1188
+(080)69245029,(044)49481100,30-09-2016 08:18:33,2911
+(080)45291968,95266 42732,30-09-2016 08:27:37,912
+96565 52272,93428 11808,30-09-2016 08:27:44,108
+(080)31606520,99004 86250,30-09-2016 08:28:58,3710
+(044)27641880,97416 18084,30-09-2016 08:32:33,686
+84313 80377,(080)46304537,30-09-2016 08:35:31,486
+97449 50000,95269 20533,30-09-2016 08:48:34,94
+98453 94494,78130 00821,30-09-2016 08:51:40,33
+(080)49328664,94005 20878,30-09-2016 08:56:08,67
+93410 98013,78295 60375,30-09-2016 08:59:03,243
+98440 68457,95264 40233,30-09-2016 08:59:28,227
+97418 46131,97448 02140,30-09-2016 09:06:09,688
+(040)34008657,(080)43562014,30-09-2016 09:13:18,814
+87144 42283,98458 13389,30-09-2016 09:21:43,459
+92424 51984,78299 99223,30-09-2016 09:21:45,3080
+78295 65598,84313 45689,30-09-2016 09:23:57,1486
+90352 50054,96566 40412,30-09-2016 09:30:27,1095
+90194 08626,(080)68104927,30-09-2016 09:30:39,230
+81525 12041,90356 11723,30-09-2016 09:32:49,219
+92425 27794,93432 65750,30-09-2016 09:33:06,542
+70121 27677,78295 48262,30-09-2016 09:33:11,2978
+92415 91418,94489 72078,30-09-2016 09:36:30,1843
+(022)21884607,90083 59148,30-09-2016 09:39:11,512
+97393 52893,(022)40840621,30-09-2016 09:46:58,170
+(022)34715405,97448 02140,30-09-2016 09:48:03,2602
+90197 38885,98445 85687,30-09-2016 09:50:16,3931
+94482 95223,(080)45291968,30-09-2016 09:51:23,2285
+(080)43562014,(080)22759842,30-09-2016 09:51:26,2612
+1400481538,95269 55869,30-09-2016 10:01:54,34
+(080)33251027,97386 37259,30-09-2016 10:03:14,9
+1408371942,(080)63442225,30-09-2016 10:10:01,49
+98457 75681,(022)38214945,30-09-2016 10:15:57,450
+90351 90193,78299 36192,30-09-2016 10:17:13,115
+(080)31606520,99004 86250,30-09-2016 10:18:31,2555
+(080)33251027,(080)49796269,30-09-2016 10:23:33,1384
+(04344)649705,90193 16567,30-09-2016 10:26:10,640
+(080)21697299,94488 97308,30-09-2016 10:34:06,393
+(040)34008657,(080)43562014,30-09-2016 10:35:42,59
+(080)66955387,97380 60551,30-09-2016 10:49:24,775
+99001 95783,98459 20681,30-09-2016 10:55:45,477
+90352 50054,97389 12538,30-09-2016 11:01:56,638
+90087 42537,(080)35121497,30-09-2016 11:15:48,2601
+(04344)649705,94005 20878,30-09-2016 11:26:26,2692
+77950 18278,89078 69605,30-09-2016 11:28:12,940
+97448 02140,(022)34715405,30-09-2016 11:32:10,562
+(022)34715405,74298 18325,30-09-2016 11:34:49,1438
+(04344)316423,(080)67362492,30-09-2016 11:38:51,1210
+(080)46702492,(080)44046839,30-09-2016 11:42:03,1323
+(080)39991213,94495 34273,30-09-2016 11:54:33,2703
+(080)34932254,81513 36123,30-09-2016 11:57:39,292
+(080)43562014,(080)22759842,30-09-2016 12:04:27,220
+(080)40929452,77956 55474,30-09-2016 12:04:33,1950
+94497 44333,97385 70012,30-09-2016 12:05:13,1667
+90082 61126,90366 69257,30-09-2016 12:05:54,761
+(080)25863765,(022)28952819,30-09-2016 12:07:24,1234
+78293 91304,98448 86633,30-09-2016 12:10:20,225
+97399 92703,97421 07528,30-09-2016 12:32:15,588
+94482 95223,(080)45291968,30-09-2016 12:36:10,1665
+90355 10919,(04344)322628,30-09-2016 12:53:20,810
+93427 56500,(044)24037112,30-09-2016 12:59:09,106
+78295 48262,70121 27677,30-09-2016 13:02:33,963
+(080)20123809,93432 65750,30-09-2016 13:03:16,142
+77956 90632,78132 18081,30-09-2016 13:09:06,1099
+97429 02055,81510 47188,30-09-2016 13:12:38,176
+(080)35121497,90351 35947,30-09-2016 13:18:42,704
+90359 79636,70121 27677,30-09-2016 13:19:40,244
+90193 20957,97420 86635,30-09-2016 13:30:06,2221
+98458 94162,(080)32638303,30-09-2016 13:39:31,1162
+(080)35986130,(080)44389098,30-09-2016 13:40:43,733
+(080)43685310,92415 66985,30-09-2016 13:48:49,9
+(044)49481100,(080)69245029,30-09-2016 13:55:54,112
+(0471)2953539,97425 79921,30-09-2016 14:07:10,3167
+(080)35121497,90351 35947,30-09-2016 14:12:00,162
+97421 07528,97399 92703,30-09-2016 14:29:04,1893
+97403 49292,93435 98939,30-09-2016 14:33:19,9
+(080)46702492,(080)44046839,30-09-2016 14:35:41,2691
+98454 07778,93412 66159,30-09-2016 14:43:59,104
+98458 94162,(080)32638303,30-09-2016 14:46:48,51
+90359 79636,99001 23133,30-09-2016 14:47:21,265
+87146 31956,83019 39880,30-09-2016 14:58:04,385
+95267 70383,97414 62027,30-09-2016 15:02:02,2343
+(080)41712046,97410 27512,30-09-2016 15:09:30,227
+1407539117,98459 44682,30-09-2016 15:23:18,26
+99001 95783,(080)60068611,30-09-2016 15:27:02,291
+97406 74488,90358 98099,30-09-2016 15:30:29,187
+(080)64431120,(080)60068611,30-09-2016 15:31:10,253
+97399 92703,78136 42599,30-09-2016 15:50:23,986
+90194 00845,97416 17124,30-09-2016 15:50:46,836
+94497 77615,(0824)6366719,30-09-2016 15:52:20,349
+(080)60062475,81524 55552,30-09-2016 16:04:54,2662
+(022)38214945,(080)25863765,30-09-2016 16:11:36,2059
+81517 73746,94497 77615,30-09-2016 16:17:05,1271
+(080)64431120,90192 30758,30-09-2016 16:17:24,2578
+97449 50000,95269 20533,30-09-2016 16:25:06,114
+(080)68104927,87146 31956,30-09-2016 16:27:10,675
+90087 42537,(080)35121497,30-09-2016 16:27:46,119
+98442 73671,(080)69245029,30-09-2016 16:32:28,301
+93427 56500,(044)24037112,30-09-2016 16:37:12,639
+(080)46304537,99003 88572,30-09-2016 16:46:32,735
+(080)49796269,(080)33251027,30-09-2016 16:51:49,1144
+78138 56841,93416 07259,30-09-2016 16:52:59,121
+(033)25441815,94489 82688,30-09-2016 17:02:25,1758
+70129 62374,98441 32533,30-09-2016 17:08:53,2238
+78133 10302,93423 23000,30-09-2016 17:27:19,638
+78298 91466,97380 60551,30-09-2016 17:28:53,225
+94497 77615,(0824)6366719,30-09-2016 17:34:18,1583
+90198 03659,97403 09983,30-09-2016 17:38:37,1076
+97386 20071,94499 20763,30-09-2016 17:42:40,81
+1409421631,(080)29435303,30-09-2016 17:43:09,87
+97421 07528,97399 92703,30-09-2016 17:46:07,723
+94495 34273,(080)39991213,30-09-2016 17:47:42,1246
+(080)39755879,(080)26097534,30-09-2016 17:49:24,2496
+94488 97308,(080)21697299,30-09-2016 17:57:46,2723
+94485 80091,84312 48999,30-09-2016 18:05:59,9
+(080)21697299,94488 97308,30-09-2016 18:07:44,599
+(080)47459867,98440 65896,30-09-2016 18:13:11,1072
+93427 56500,(044)24037112,30-09-2016 18:22:04,93
+(080)35986130,78130 36804,30-09-2016 18:28:24,790
+1402316533,90357 17994,30-09-2016 18:28:42,62
+(080)43685310,(080)29435303,30-09-2016 18:33:28,112
+(080)46304537,98447 62998,30-09-2016 18:35:55,2892
+97399 92703,78136 42599,30-09-2016 18:43:45,2918
+94488 97308,(080)21697299,30-09-2016 18:46:14,305
+(022)34715405,97448 02140,30-09-2016 18:51:47,66
+(022)37572285,(080)61135674,30-09-2016 19:00:35,928
+98446 78140,(080)35538852,30-09-2016 19:05:27,655
+94001 07403,90368 72970,30-09-2016 19:08:22,11
+90356 11723,81525 12041,30-09-2016 19:30:31,79
+98458 94162,(080)32638303,30-09-2016 19:34:49,54
+(022)66911540,(080)25863765,30-09-2016 19:36:25,96
+92425 27794,93432 65750,30-09-2016 19:39:06,185
+94480 64700,90088 09624,30-09-2016 19:39:57,3351
+94495 34273,(080)39991213,30-09-2016 19:40:47,107
+98453 46196,(04344)228249,30-09-2016 19:52:49,17
+(022)28952819,(080)25863765,30-09-2016 20:05:12,691
+(044)24037112,93427 56500,30-09-2016 20:20:18,537
+(080)45547058,84319 52539,30-09-2016 20:28:05,1829
+99003 47921,98444 95768,30-09-2016 20:33:25,1166
+97424 22395,(022)29303640,30-09-2016 20:40:10,2467
+95267 70383,97414 62027,30-09-2016 20:40:24,3178
+98449 60656,90084 16988,30-09-2016 20:43:11,256
+(080)44046839,(080)62342282,30-09-2016 20:49:51,385
+77956 90632,78132 18081,30-09-2016 20:50:26,1332
+98446 78140,98444 72482,30-09-2016 20:50:52,462
+(044)49481100,(080)69245029,30-09-2016 20:59:45,463
+(022)21884607,90083 59148,30-09-2016 21:13:54,48
+70129 62374,98441 32533,30-09-2016 21:15:02,2534
+97424 21092,98451 87493,30-09-2016 21:22:13,643
+(080)45687418,93414 19669,30-09-2016 21:23:20,812
+97429 02055,81510 47188,30-09-2016 21:24:11,349
+84314 00609,99007 06998,30-09-2016 21:33:03,582
+93435 98939,97403 49292,30-09-2016 21:50:35,98
+87146 31956,97384 69866,30-09-2016 21:53:05,795
+(080)45291968,90365 06212,30-09-2016 22:12:55,1754
+(080)62164823,(080)32255824,30-09-2016 22:21:26,793
+98440 68457,95264 40233,30-09-2016 22:25:23,481
+(080)67362492,(04344)316423,30-09-2016 22:30:29,74
+(044)41581342,97429 02055,30-09-2016 22:32:51,525
+97389 12538,90352 50054,30-09-2016 22:43:00,1117
+78295 60375,93410 98013,30-09-2016 22:45:57,152
+97380 60551,78298 91466,30-09-2016 22:56:02,1068
+90083 59148,(022)21884607,30-09-2016 22:56:17,358
+(022)38214945,(080)65647085,30-09-2016 23:03:11,106
+(022)40840621,97393 52893,30-09-2016 23:14:47,1518
+(080)62164823,74066 93594,30-09-2016 23:41:07,741
+70129 62374,98441 32533,30-09-2016 23:42:28,1338
+98444 95768,99003 47921,30-09-2016 23:44:46,161
+95267 70383,(080)34121098,30-09-2016 23:49:32,914
+90368 95100,(080)29483476,30-09-2016 23:54:15,1288
+98447 62998,(080)46304537,30-09-2016 23:57:15,2151
diff --git a/projects/unscramble_computer_science_problems/texts.csv b/projects/unscramble_computer_science_problems/texts.csv
new file mode 100644
index 0000000..ae15791
--- /dev/null
+++ b/projects/unscramble_computer_science_problems/texts.csv
@@ -0,0 +1,9072 @@
+97424 22395,90365 06212,01-09-2016 06:03:22
+94489 72078,92415 91418,01-09-2016 06:05:35
+81520 43406,92421 64236,01-09-2016 06:09:34
+97389 12538,90352 50054,01-09-2016 06:09:39
+81515 42171,98440 02823,01-09-2016 06:13:30
+78132 18081,77956 90632,01-09-2016 06:19:37
+90352 50054,97389 12538,01-09-2016 06:30:42
+90359 99240,94491 55790,01-09-2016 06:32:59
+78295 65598,84313 45689,01-09-2016 06:34:46
+93412 66159,98454 07778,01-09-2016 06:36:15
+78295 65598,84313 45689,01-09-2016 06:52:55
+84319 39746,95263 76972,01-09-2016 06:53:16
+90082 61126,90366 69257,01-09-2016 06:55:34
+97393 04671,95262 44233,01-09-2016 06:57:16
+97414 15280,90199 91061,01-09-2016 06:59:50
+78133 10302,93423 23000,01-09-2016 07:02:44
+78295 65598,84313 45689,01-09-2016 07:06:34
+78132 18081,77956 90632,01-09-2016 07:08:47
+94489 72078,92415 91418,01-09-2016 07:08:56
+97421 07528,90083 59148,01-09-2016 07:18:24
+78295 78750,97449 50000,01-09-2016 07:18:45
+99009 32475,78138 56841,01-09-2016 07:21:25
+77956 90632,92411 96415,01-09-2016 07:35:14
+97391 99665,90368 72970,01-09-2016 07:41:29
+93435 31225,87141 37314,01-09-2016 07:44:10
+83019 39880,87146 31956,01-09-2016 07:46:35
+98446 78140,98440 65896,01-09-2016 07:47:36
+78299 99223,92424 51984,01-09-2016 07:49:36
+97391 99665,90368 72970,01-09-2016 07:52:09
+90192 87313,78139 24512,01-09-2016 07:54:13
+99612 41256,90197 24124,01-09-2016 07:58:04
+94001 07403,90368 72970,01-09-2016 08:06:05
+94482 95223,97425 92186,01-09-2016 08:27:37
+95269 20533,97449 50000,01-09-2016 08:29:52
+94499 20763,97386 20071,01-09-2016 08:30:45
+74066 93594,78136 65840,01-09-2016 08:31:25
+97391 99665,90355 94399,01-09-2016 08:40:53
+70121 27677,83012 37742,01-09-2016 08:41:02
+94497 44333,90087 42537,01-09-2016 08:46:32
+78295 48262,81515 65055,01-09-2016 08:46:36
+98454 07778,93412 66159,01-09-2016 08:48:22
+92413 79027,74060 75431,01-09-2016 08:51:32
+94486 40312,97424 60171,01-09-2016 09:02:12
+98448 72117,93436 09781,01-09-2016 09:12:20
+78138 56841,99009 32475,01-09-2016 09:19:31
+93435 21961,92411 96415,01-09-2016 09:25:38
+97414 62784,98449 60656,01-09-2016 09:38:44
+98441 32533,93410 98013,01-09-2016 09:40:12
+81510 47188,97429 02055,01-09-2016 09:41:17
+98440 68457,95264 40233,01-09-2016 09:47:51
+78132 18081,77956 90632,01-09-2016 09:50:08
+90198 03659,97403 09983,01-09-2016 09:52:46
+90082 61126,90366 69257,01-09-2016 09:54:14
+90359 91512,94492 23068,01-09-2016 09:55:10
+99006 60463,99003 88572,01-09-2016 09:57:50
+97416 29480,94489 72078,01-09-2016 10:00:51
+93410 98013,78295 60375,01-09-2016 10:03:55
+90359 91512,94492 23068,01-09-2016 10:04:59
+94497 44333,97385 70012,01-09-2016 10:07:59
+98458 13389,93423 23000,01-09-2016 10:10:02
+90362 07317,92413 38675,01-09-2016 10:11:10
+90359 52497,97390 23922,01-09-2016 10:22:21
+97421 07528,98454 07778,01-09-2016 10:22:32
+93432 65750,92425 27794,01-09-2016 10:22:51
+78295 48262,70121 27677,01-09-2016 10:26:41
+93436 09781,98448 72117,01-09-2016 10:34:09
+97447 92655,97404 63904,01-09-2016 10:36:38
+93418 82576,94489 95536,01-09-2016 10:41:57
+97421 07528,90083 59148,01-09-2016 10:42:09
+93410 98013,78295 60375,01-09-2016 10:42:31
+78133 10302,93423 23000,01-09-2016 10:42:40
+90194 00845,97416 17124,01-09-2016 10:47:58
+97426 75324,78138 56841,01-09-2016 10:51:11
+95269 20533,97449 50000,01-09-2016 10:54:52
+93410 56456,98453 86521,01-09-2016 10:56:01
+98449 60656,90084 16988,01-09-2016 11:01:30
+92411 96415,78993 92058,01-09-2016 11:04:04
+92424 51984,78299 99223,01-09-2016 11:04:13
+97406 74488,92411 96415,01-09-2016 11:04:50
+93436 09781,98448 72117,01-09-2016 11:04:55
+97422 22278,98446 66723,01-09-2016 11:12:09
+90197 69887,97424 53609,01-09-2016 11:12:16
+90359 99240,94491 55790,01-09-2016 11:21:11
+74294 40351,98440 02823,01-09-2016 11:22:11
+97389 12538,90352 50054,01-09-2016 11:28:41
+94480 64700,90088 09624,01-09-2016 11:29:09
+97421 07528,90083 59148,01-09-2016 11:35:10
+97380 86781,81522 26166,01-09-2016 11:36:37
+90084 16988,98449 60656,01-09-2016 11:38:01
+92421 64236,81520 43406,01-09-2016 11:38:22
+97390 23922,90359 52497,01-09-2016 11:42:18
+90084 16988,93422 47940,01-09-2016 11:42:50
+81525 12041,90356 11723,01-09-2016 11:55:22
+93423 23000,98458 13389,01-09-2016 11:57:04
+97406 74488,90358 98099,01-09-2016 11:59:57
+97385 70012,97424 53609,01-09-2016 12:00:05
+98448 72117,93436 09781,01-09-2016 12:04:41
+84314 16122,94499 20763,01-09-2016 12:11:56
+98440 65896,78295 65598,01-09-2016 12:12:02
+97391 99665,90355 94399,01-09-2016 12:14:18
+99003 88572,99006 60463,01-09-2016 12:15:25
+94489 72078,92415 91418,01-09-2016 12:17:56
+90359 99240,94491 55790,01-09-2016 12:18:33
+97399 92703,78136 42599,01-09-2016 12:21:27
+97425 92186,94482 95223,01-09-2016 12:21:27
+97391 99665,90368 72970,01-09-2016 12:25:30
+90366 36573,97425 12708,01-09-2016 12:33:14
+90197 24124,99612 41256,01-09-2016 12:33:57
+98444 95768,99003 47921,01-09-2016 12:37:01
+81519 62015,99009 32475,01-09-2016 12:47:02
+94488 97308,93422 47940,01-09-2016 12:47:05
+92428 82401,97385 29751,01-09-2016 12:48:17
+97385 29751,92428 82401,01-09-2016 12:48:33
+97403 09983,90198 03659,01-09-2016 13:02:11
+90194 00845,97416 17124,01-09-2016 13:02:26
+90366 69257,90082 61126,01-09-2016 13:10:05
+98448 72117,93436 09781,01-09-2016 13:14:50
+93418 41992,81525 78007,01-09-2016 13:18:06
+94480 64700,90088 09624,01-09-2016 13:23:19
+97380 60551,81524 55552,01-09-2016 13:25:52
+98440 65896,78295 65598,01-09-2016 13:26:39
+77956 90632,92411 96415,01-09-2016 13:28:19
+97412 66065,94006 62384,01-09-2016 13:28:42
+93418 41992,81525 78007,01-09-2016 13:34:20
+97393 04671,98444 42212,01-09-2016 13:40:45
+98446 78140,98444 72482,01-09-2016 13:44:53
+97414 62784,98449 60656,01-09-2016 13:45:45
+89071 31755,78290 99865,01-09-2016 13:50:55
+94487 29969,97419 41164,01-09-2016 13:54:01
+90354 08732,94499 20763,01-09-2016 13:57:25
+90084 16988,93422 47940,01-09-2016 14:06:23
+97414 15280,90199 91061,01-09-2016 14:11:06
+93410 98013,78295 60375,01-09-2016 14:13:04
+78295 60375,93410 98013,01-09-2016 14:21:22
+70129 62374,98441 32533,01-09-2016 14:28:14
+97412 66065,94006 62384,01-09-2016 14:33:04
+99009 32475,78138 56841,01-09-2016 14:36:09
+78138 56841,99009 32475,01-09-2016 14:38:54
+81517 73746,94497 77615,01-09-2016 14:41:19
+87146 31956,83019 39880,01-09-2016 14:44:27
+95264 40233,98440 68457,01-09-2016 14:46:01
+98440 65896,93418 41992,01-09-2016 14:48:04
+97424 21092,98451 87493,01-09-2016 14:54:31
+93423 23000,98458 13389,01-09-2016 14:57:03
+93418 41992,81525 78007,01-09-2016 14:58:23
+78295 48262,70121 27677,01-09-2016 15:00:55
+93418 41992,81525 78007,01-09-2016 15:11:08
+94499 20763,93412 66159,01-09-2016 15:17:06
+97416 17124,90194 00845,01-09-2016 15:17:31
+97385 70012,97424 53609,01-09-2016 15:20:28
+81520 43406,92421 64236,01-09-2016 15:24:03
+94499 20763,84314 16122,01-09-2016 15:27:15
+97421 07528,90083 59148,01-09-2016 15:31:35
+94490 65627,97395 95120,01-09-2016 15:34:13
+94006 62384,99616 15114,01-09-2016 15:35:13
+90367 90080,74066 93594,01-09-2016 15:37:03
+98444 95768,99003 47921,01-09-2016 15:38:46
+90359 52497,97390 23922,01-09-2016 15:46:27
+93410 56456,98453 86521,01-09-2016 15:47:57
+98445 33687,97403 49292,01-09-2016 16:01:18
+93410 98013,98441 32533,01-09-2016 16:03:14
+78295 48262,81515 65055,01-09-2016 16:03:45
+97390 23922,90359 52497,01-09-2016 16:04:43
+97426 75324,78138 56841,01-09-2016 16:05:38
+90358 98099,97406 74488,01-09-2016 16:05:55
+97424 22395,90365 06212,01-09-2016 16:09:18
+94499 20763,90354 08732,01-09-2016 16:10:06
+97390 23922,90359 52497,01-09-2016 16:16:25
+98448 86633,78293 91304,01-09-2016 16:17:59
+78295 60375,93410 98013,01-09-2016 16:21:07
+83012 37742,70121 27677,01-09-2016 16:22:27
+90088 09624,93434 31551,01-09-2016 16:23:21
+97391 99665,90368 72970,01-09-2016 16:24:44
+93412 66159,98454 07778,01-09-2016 16:25:43
+93422 47940,90084 16988,01-09-2016 16:29:46
+98451 87493,97424 21092,01-09-2016 16:30:24
+78299 99223,92424 51984,01-09-2016 16:32:31
+93422 47940,90084 16988,01-09-2016 16:32:49
+93418 82576,94489 95536,01-09-2016 16:54:08
+78136 65840,74066 93594,01-09-2016 16:59:53
+97385 29751,92428 82401,01-09-2016 17:03:14
+92411 96415,97406 74488,01-09-2016 17:07:08
+90359 91512,94492 23068,01-09-2016 17:09:07
+90083 59148,97421 07528,01-09-2016 17:21:05
+98448 87878,90366 36573,01-09-2016 17:21:35
+87141 37314,93435 31225,01-09-2016 17:22:06
+78295 60375,93410 98013,01-09-2016 17:22:12
+98440 65896,78295 65598,01-09-2016 17:22:35
+78295 60375,93410 98013,01-09-2016 17:30:03
+99006 60463,99003 88572,01-09-2016 17:33:41
+77950 18278,89078 69605,01-09-2016 17:51:15
+97386 20071,94499 20763,01-09-2016 17:55:20
+97416 17124,90194 00845,01-09-2016 18:00:42
+90197 69887,97424 53609,01-09-2016 18:03:20
+81513 30231,90365 06212,01-09-2016 18:09:40
+99003 88572,99006 60463,01-09-2016 18:18:39
+90084 16988,93422 47940,01-09-2016 18:20:15
+93423 23000,98458 13389,01-09-2016 18:21:39
+99610 89720,90197 69887,01-09-2016 18:28:51
+98453 86521,93410 56456,01-09-2016 18:31:42
+97385 70012,94497 44333,01-09-2016 18:37:32
+98440 65896,93418 41992,01-09-2016 18:37:33
+98449 60656,97414 62784,01-09-2016 18:42:55
+81525 12041,90356 11723,01-09-2016 18:49:22
+78295 48262,81515 65055,01-09-2016 19:00:34
+87141 73076,78290 30467,01-09-2016 19:09:56
+81519 62015,99009 32475,01-09-2016 19:11:43
+81517 73746,94497 77615,01-09-2016 19:14:14
+90084 16988,98449 60656,01-09-2016 19:17:18
+78138 56841,99009 32475,01-09-2016 19:17:32
+98449 60656,90084 16988,01-09-2016 19:18:27
+90084 16988,98449 60656,01-09-2016 19:26:28
+93427 56500,98447 12671,01-09-2016 19:29:14
+98440 02823,81515 42171,01-09-2016 19:35:30
+78290 30467,87141 73076,01-09-2016 19:39:29
+98458 13389,93423 23000,01-09-2016 19:43:41
+90365 06212,81513 30231,01-09-2016 19:52:16
+70121 27677,90359 79636,01-09-2016 19:53:22
+97406 74488,90358 98099,01-09-2016 19:55:21
+97424 53609,90197 69887,01-09-2016 19:58:06
+84314 16122,94499 20763,01-09-2016 20:00:29
+94497 44333,97385 70012,01-09-2016 20:00:47
+94499 38099,90365 51029,01-09-2016 20:05:47
+74066 93594,78136 65840,01-09-2016 20:06:09
+78290 30467,87141 73076,01-09-2016 20:12:08
+92413 38675,90362 07317,01-09-2016 20:12:56
+97385 70012,94497 44333,01-09-2016 20:21:17
+78138 56841,97426 75324,01-09-2016 20:21:29
+97416 29480,94489 72078,01-09-2016 20:23:29
+98444 72482,98446 78140,01-09-2016 20:23:34
+97425 12708,90366 36573,01-09-2016 20:33:58
+98448 86633,78293 91304,01-09-2016 20:34:05
+81525 78007,93418 41992,01-09-2016 20:38:26
+98458 13389,93423 23000,01-09-2016 20:39:24
+99617 74886,98445 42844,01-09-2016 20:45:18
+93435 21961,92411 96415,01-09-2016 20:45:35
+98458 13389,93423 23000,01-09-2016 20:45:39
+99003 47921,98444 95768,01-09-2016 20:47:30
+77950 18278,89078 69605,01-09-2016 20:51:11
+94489 72078,92415 91418,01-09-2016 20:56:17
+94486 40312,97424 60171,01-09-2016 20:58:40
+94491 55790,90359 99240,01-09-2016 21:04:56
+97395 95120,94490 65627,01-09-2016 21:06:15
+90359 79636,84311 10322,01-09-2016 21:06:37
+94497 44333,97385 70012,01-09-2016 21:14:40
+97389 12538,90352 50054,01-09-2016 21:19:25
+95262 44233,98442 33257,01-09-2016 21:21:37
+98448 72117,93436 09781,01-09-2016 21:26:44
+90366 36573,98448 87878,01-09-2016 21:27:26
+92415 91418,94489 72078,01-09-2016 21:31:46
+97389 12538,90352 50054,01-09-2016 21:33:59
+89078 69605,77950 18278,01-09-2016 21:54:49
+98446 78140,98444 72482,01-09-2016 21:59:26
+90359 52497,97390 23922,01-09-2016 22:01:04
+90083 59148,97421 07528,01-09-2016 22:08:14
+78132 18081,98443 72004,01-09-2016 22:08:56
+90084 16988,93422 47940,01-09-2016 22:09:52
+97393 04671,98444 42212,01-09-2016 22:18:44
+97395 95120,94490 65627,01-09-2016 22:24:23
+94499 38099,90365 51029,01-09-2016 22:28:01
+90083 59148,97421 07528,01-09-2016 22:29:40
+90366 69257,90082 61126,01-09-2016 22:39:09
+84319 39746,95263 76972,01-09-2016 22:40:11
+78295 65598,84313 45689,01-09-2016 22:40:59
+90351 35947,97424 21092,01-09-2016 22:45:17
+92428 82401,97385 29751,01-09-2016 22:48:03
+97416 29480,94489 72078,01-09-2016 22:51:48
+97389 12538,90352 50054,01-09-2016 22:52:27
+90357 17994,93420 59147,01-09-2016 22:54:49
+78295 60375,83015 22251,01-09-2016 22:56:10
+95264 40233,98440 68457,01-09-2016 22:56:17
+97393 04671,97415 99182,01-09-2016 22:56:33
+78295 48262,81515 65055,01-09-2016 23:04:02
+78136 65840,74066 93594,01-09-2016 23:05:33
+90084 16988,93422 47940,01-09-2016 23:07:20
+97391 99665,90368 72970,01-09-2016 23:10:14
+78136 65840,74066 93594,01-09-2016 23:14:00
+77950 18278,89078 69605,01-09-2016 23:16:23
+74066 93594,78136 65840,01-09-2016 23:24:16
+95267 70383,97414 62027,01-09-2016 23:29:11
+96566 40412,90352 50054,01-09-2016 23:29:22
+92414 22596,93421 63491,01-09-2016 23:31:46
+97406 93118,98453 46196,01-09-2016 23:38:22
+99617 74886,98445 42844,01-09-2016 23:44:27
+97393 04671,98444 42212,01-09-2016 23:46:24
+90359 99240,78138 93826,01-09-2016 23:47:07
+90359 99240,94491 55790,01-09-2016 23:50:50
+97390 23922,99004 86250,01-09-2016 23:55:28
+81526 05544,99612 41256,01-09-2016 23:56:09
+97425 12708,90366 36573,01-09-2016 23:57:28
+78139 24512,90192 87313,01-09-2016 23:58:00
+90365 06212,81513 30231,02-09-2016 06:00:17
+89078 69605,77950 18278,02-09-2016 06:02:33
+78132 18081,77956 90632,02-09-2016 06:03:13
+90352 50054,97389 12538,02-09-2016 06:03:49
+81515 42171,98440 02823,02-09-2016 06:05:51
+84319 39746,95263 76972,02-09-2016 06:20:29
+90351 35947,97424 21092,02-09-2016 06:23:29
+92411 96415,97406 74488,02-09-2016 06:30:15
+97380 60551,81524 55552,02-09-2016 06:30:37
+78138 56841,97426 75324,02-09-2016 06:31:58
+94489 72078,97416 29480,02-09-2016 06:36:23
+93412 66159,94499 20763,02-09-2016 06:45:17
+98452 19037,90355 94399,02-09-2016 06:49:44
+83019 39880,87146 31956,02-09-2016 06:59:27
+92411 96415,97406 74488,02-09-2016 06:59:27
+93418 82576,94489 95536,02-09-2016 07:03:48
+78138 56841,97426 75324,02-09-2016 07:09:52
+93410 56456,98453 86521,02-09-2016 07:22:44
+98449 60656,97414 62784,02-09-2016 07:24:49
+97425 92186,94482 95223,02-09-2016 07:26:22
+97425 12708,90366 36573,02-09-2016 07:35:46
+90359 52497,97390 23922,02-09-2016 07:36:39
+99009 32475,78138 56841,02-09-2016 07:37:18
+78139 24512,90192 87313,02-09-2016 07:43:37
+74060 75431,92413 79027,02-09-2016 07:48:37
+78136 42599,97399 92703,02-09-2016 07:51:28
+93418 82576,94489 95536,02-09-2016 08:01:51
+97446 95253,97428 35959,02-09-2016 08:04:01
+97393 04671,97415 99182,02-09-2016 08:06:47
+93420 59147,90357 17994,02-09-2016 08:09:50
+93436 09781,98448 72117,02-09-2016 08:12:40
+78993 92058,92411 96415,02-09-2016 08:16:26
+94491 55790,90359 99240,02-09-2016 08:20:58
+83019 53227,98446 66723,02-09-2016 08:25:33
+89078 69605,77950 18278,02-09-2016 08:29:12
+98452 19037,90355 94399,02-09-2016 08:33:12
+92424 51984,78299 99223,02-09-2016 08:33:18
+93435 21961,92411 96415,02-09-2016 08:35:09
+93416 07259,78132 18081,02-09-2016 08:38:48
+97391 99665,94488 97308,02-09-2016 08:46:10
+84313 45689,78295 65598,02-09-2016 08:49:35
+98448 87878,90366 36573,02-09-2016 08:50:39
+99004 86250,97390 23922,02-09-2016 08:53:30
+98458 13389,93423 23000,02-09-2016 08:55:13
+93432 65750,92425 27794,02-09-2016 09:02:44
+74066 93594,78136 65840,02-09-2016 09:14:17
+98458 13389,93423 23000,02-09-2016 09:15:41
+94489 72078,92415 91418,02-09-2016 09:15:44
+93422 47940,90084 16988,02-09-2016 09:18:41
+78295 60375,93410 98013,02-09-2016 09:19:11
+94497 44333,90087 42537,02-09-2016 09:21:03
+93423 23000,98458 13389,02-09-2016 09:29:50
+97425 92186,94482 95223,02-09-2016 09:34:06
+99004 86250,97390 23922,02-09-2016 09:34:48
+97414 15280,90199 91061,02-09-2016 09:34:53
+94492 23068,94489 95536,02-09-2016 09:41:50
+90193 20957,97420 86635,02-09-2016 09:42:23
+98441 32533,70129 62374,02-09-2016 09:47:14
+98444 72482,98446 78140,02-09-2016 09:48:32
+98445 33687,97403 49292,02-09-2016 09:55:09
+90084 16988,93422 47940,02-09-2016 09:57:28
+93423 23000,98458 13389,02-09-2016 10:07:41
+97424 53609,90197 69887,02-09-2016 10:11:06
+97391 99665,90368 72970,02-09-2016 10:14:03
+97446 95253,97428 35959,02-09-2016 10:15:56
+78295 65598,98440 65896,02-09-2016 10:19:03
+81515 65055,78295 48262,02-09-2016 10:20:57
+97391 99665,94488 97308,02-09-2016 10:23:08
+96565 52272,93428 11808,02-09-2016 10:33:10
+90366 36573,97425 12708,02-09-2016 10:36:09
+97395 95120,94490 65627,02-09-2016 10:40:17
+97420 86635,90193 20957,02-09-2016 10:40:58
+94486 40312,97424 60171,02-09-2016 10:45:12
+89078 69605,77950 18278,02-09-2016 10:48:16
+90194 00845,97416 17124,02-09-2016 10:52:30
+97424 21092,90351 35947,02-09-2016 10:53:50
+74066 93594,78136 65840,02-09-2016 10:55:06
+93435 31225,87141 37314,02-09-2016 10:57:43
+92413 38675,90362 07317,02-09-2016 11:01:18
+81520 43406,92421 64236,02-09-2016 11:03:59
+94490 65627,97395 95120,02-09-2016 11:12:52
+98441 32533,93410 98013,02-09-2016 11:20:35
+97391 99665,94488 97308,02-09-2016 11:23:26
+90197 24124,99612 41256,02-09-2016 11:24:40
+81515 42171,98440 02823,02-09-2016 11:25:19
+90194 00845,97416 17124,02-09-2016 11:26:18
+94488 97308,97391 99665,02-09-2016 11:27:53
+97391 99665,90355 94399,02-09-2016 11:35:17
+97380 60551,90365 51029,02-09-2016 11:39:37
+97393 04671,97415 99182,02-09-2016 11:42:45
+98445 33687,97403 49292,02-09-2016 11:54:24
+94491 55790,90359 99240,02-09-2016 11:56:17
+93410 98013,78295 60375,02-09-2016 12:00:29
+93410 98013,98441 32533,02-09-2016 12:08:39
+97426 75324,78138 56841,02-09-2016 12:19:31
+97411 71155,98443 99204,02-09-2016 12:22:41
+97391 99665,94488 97308,02-09-2016 12:33:28
+93422 47940,90084 16988,02-09-2016 12:38:41
+90088 09624,93434 31551,02-09-2016 12:42:23
+94489 72078,97416 29480,02-09-2016 12:51:29
+99616 15114,94006 62384,02-09-2016 12:51:59
+97403 49292,98445 33687,02-09-2016 12:54:59
+93422 47940,90084 16988,02-09-2016 12:55:14
+98445 33687,97403 49292,02-09-2016 12:56:12
+95262 44233,98442 33257,02-09-2016 12:57:25
+83015 22251,78295 60375,02-09-2016 13:01:09
+78133 10302,93423 23000,02-09-2016 13:02:04
+99610 89720,90197 69887,02-09-2016 13:02:24
+94499 20763,84314 16122,02-09-2016 13:03:14
+98444 72482,98446 78140,02-09-2016 13:03:25
+74060 75431,92413 79027,02-09-2016 13:05:14
+93410 98013,78295 60375,02-09-2016 13:10:38
+97412 66065,94006 62384,02-09-2016 13:11:30
+97385 70012,94497 44333,02-09-2016 13:15:11
+90354 08732,94499 20763,02-09-2016 13:19:32
+94486 40312,97424 60171,02-09-2016 13:20:05
+92411 96415,97406 74488,02-09-2016 13:37:09
+98454 90038,90359 52497,02-09-2016 13:43:01
+78993 92058,92411 96415,02-09-2016 13:44:46
+78136 65840,74066 93594,02-09-2016 13:46:26
+97425 92186,94482 95223,02-09-2016 13:47:57
+97424 21092,90351 35947,02-09-2016 13:51:53
+77956 90632,92411 96415,02-09-2016 13:54:08
+98445 42844,99617 74886,02-09-2016 13:59:38
+93420 59147,90357 17994,02-09-2016 14:01:17
+94495 34273,94491 05266,02-09-2016 14:05:23
+94480 64700,90088 09624,02-09-2016 14:05:29
+94491 55790,90359 99240,02-09-2016 14:13:07
+78133 10302,93423 23000,02-09-2016 14:13:23
+97385 70012,94497 44333,02-09-2016 14:14:18
+93434 31551,90088 09624,02-09-2016 14:18:09
+84313 45689,78295 65598,02-09-2016 14:20:34
+90083 59148,97421 07528,02-09-2016 14:26:45
+98444 72482,98446 78140,02-09-2016 14:35:05
+97385 29751,92428 82401,02-09-2016 14:45:21
+78138 56841,99009 32475,02-09-2016 14:46:42
+81520 43406,92421 64236,02-09-2016 14:48:54
+98449 60656,97414 62784,02-09-2016 14:58:19
+90368 72970,94001 07403,02-09-2016 14:59:27
+97424 21092,90351 35947,02-09-2016 15:00:11
+78139 24512,90192 87313,02-09-2016 15:03:32
+93436 09781,98448 72117,02-09-2016 15:17:25
+81515 65055,78295 48262,02-09-2016 15:32:17
+83019 53227,98446 66723,02-09-2016 15:33:30
+90366 69257,90082 61126,02-09-2016 15:36:44
+93412 66159,94499 20763,02-09-2016 15:42:03
+90359 79636,99001 23133,02-09-2016 15:42:09
+98441 32533,70129 62374,02-09-2016 15:43:15
+90351 35947,97424 21092,02-09-2016 15:44:03
+93420 59147,90357 17994,02-09-2016 15:45:27
+94482 95223,97425 92186,02-09-2016 15:45:58
+97424 21092,90351 35947,02-09-2016 15:46:12
+94489 72078,97416 29480,02-09-2016 15:48:52
+90199 91061,97414 15280,02-09-2016 15:50:46
+90351 35947,97424 21092,02-09-2016 15:55:42
+94001 07403,90368 72970,02-09-2016 15:55:46
+99610 89720,81525 12041,02-09-2016 15:56:16
+94488 97308,97391 99665,02-09-2016 15:59:28
+98448 72117,93436 09781,02-09-2016 16:03:45
+94480 64700,90088 09624,02-09-2016 16:04:35
+90193 20957,97420 86635,02-09-2016 16:08:25
+98444 42212,97393 04671,02-09-2016 16:15:36
+98449 60656,90084 16988,02-09-2016 16:17:58
+98458 13389,93423 23000,02-09-2016 16:23:55
+93421 63491,92414 22596,02-09-2016 16:28:07
+92411 96415,77956 90632,02-09-2016 16:32:31
+78295 65598,84313 45689,02-09-2016 16:34:16
+97391 99665,94488 97308,02-09-2016 16:35:13
+97416 17124,90194 00845,02-09-2016 16:35:34
+97421 07528,97399 92703,02-09-2016 16:40:36
+93422 47940,90084 16988,02-09-2016 16:42:13
+94492 23068,94489 95536,02-09-2016 16:43:36
+94482 95223,97425 92186,02-09-2016 16:45:48
+97414 15280,90199 91061,02-09-2016 16:45:57
+84311 10322,90359 79636,02-09-2016 16:46:18
+94497 77615,81517 73746,02-09-2016 16:46:55
+78295 60375,93410 98013,02-09-2016 16:50:39
+94497 77615,81517 73746,02-09-2016 16:54:12
+97391 99665,90368 72970,02-09-2016 16:59:26
+97393 04671,98444 42212,02-09-2016 17:00:16
+95262 44233,98442 33257,02-09-2016 17:12:44
+90365 51029,94499 38099,02-09-2016 17:24:01
+97425 92186,94482 95223,02-09-2016 17:30:40
+90192 87313,78139 24512,02-09-2016 17:34:49
+95262 44233,97393 04671,02-09-2016 17:35:50
+97424 53609,90197 69887,02-09-2016 17:41:39
+74066 93594,78136 65840,02-09-2016 17:41:39
+93436 09781,98448 72117,02-09-2016 17:44:00
+90359 52497,97390 23922,02-09-2016 17:45:51
+95264 40233,98440 68457,02-09-2016 17:46:23
+93435 21961,92411 96415,02-09-2016 17:47:43
+96566 40412,90352 50054,02-09-2016 17:49:05
+97425 12708,90366 36573,02-09-2016 17:51:44
+94489 72078,97416 29480,02-09-2016 17:53:28
+97393 04671,95262 44233,02-09-2016 17:59:31
+78295 65598,98440 65896,02-09-2016 18:03:58
+90355 94399,98452 19037,02-09-2016 18:14:19
+94497 44333,97385 70012,02-09-2016 18:17:40
+78290 31269,97386 37259,02-09-2016 18:18:09
+92411 96415,97406 74488,02-09-2016 18:18:48
+78295 60375,83015 22251,02-09-2016 18:29:42
+97404 63904,97447 92655,02-09-2016 18:30:33
+99009 32475,78138 56841,02-09-2016 18:30:59
+70121 27677,83012 37742,02-09-2016 18:31:05
+99001 85033,74066 93594,02-09-2016 18:35:01
+97448 02140,97418 46131,02-09-2016 18:41:54
+78138 56841,97426 75324,02-09-2016 18:42:45
+97424 53609,90197 69887,02-09-2016 18:43:15
+92421 64236,81520 43406,02-09-2016 18:44:13
+81525 78007,93418 41992,02-09-2016 18:44:37
+84313 45689,78295 65598,02-09-2016 18:46:56
+97424 21092,90351 35947,02-09-2016 18:48:41
+74294 40351,98440 02823,02-09-2016 18:49:07
+99009 32475,81519 62015,02-09-2016 18:49:15
+99006 60463,99003 88572,02-09-2016 18:50:27
+93422 47940,90084 16988,02-09-2016 18:57:14
+93420 59147,90357 17994,02-09-2016 18:57:42
+93420 59147,90357 17994,02-09-2016 18:58:47
+78132 18081,77956 90632,02-09-2016 19:03:04
+92425 27794,93432 65750,02-09-2016 19:20:06
+81517 73746,94497 77615,02-09-2016 19:21:20
+93418 41992,81525 78007,02-09-2016 19:23:19
+94482 95223,97425 92186,02-09-2016 19:32:09
+98448 72117,93436 09781,02-09-2016 19:36:10
+99004 86250,97390 23922,02-09-2016 19:36:44
+90359 79636,70121 27677,02-09-2016 19:36:55
+99001 23133,90359 79636,02-09-2016 19:42:59
+90194 08626,98444 95768,02-09-2016 19:48:43
+92414 22596,93421 63491,02-09-2016 19:57:10
+90199 91061,97414 15280,02-09-2016 19:57:20
+81526 05544,99612 41256,02-09-2016 20:00:03
+97385 70012,94497 44333,02-09-2016 20:02:54
+97406 06245,97403 09983,02-09-2016 20:11:14
+94482 95223,97425 92186,02-09-2016 20:17:30
+99003 88572,99006 60463,02-09-2016 20:20:19
+94487 29969,97419 41164,02-09-2016 20:29:42
+87141 73076,78290 30467,02-09-2016 20:31:20
+94489 72078,97416 29480,02-09-2016 20:37:10
+93418 82576,94489 95536,02-09-2016 20:39:57
+93418 41992,81525 78007,02-09-2016 20:43:53
+98453 86521,93410 56456,02-09-2016 20:48:09
+78138 56841,97426 75324,02-09-2016 20:50:06
+98449 60656,90084 16988,02-09-2016 20:50:34
+93420 59147,90357 17994,02-09-2016 20:59:02
+89078 69605,77950 18278,02-09-2016 21:06:36
+90367 90080,74066 93594,02-09-2016 21:14:12
+78295 48262,70121 27677,02-09-2016 21:14:35
+94005 06213,98453 46196,02-09-2016 21:19:06
+81510 47188,97429 02055,02-09-2016 21:26:58
+93418 41992,97385 35042,02-09-2016 21:31:02
+97385 70012,97424 53609,02-09-2016 21:39:41
+98449 60656,90084 16988,02-09-2016 21:51:22
+98446 78140,98444 72482,02-09-2016 21:54:20
+97416 29480,94489 72078,02-09-2016 21:55:05
+94006 62384,99616 15114,02-09-2016 21:55:31
+78290 31269,97386 37259,02-09-2016 21:58:50
+90084 16988,98449 60656,02-09-2016 22:01:23
+92411 96415,97406 74488,02-09-2016 22:04:12
+81515 42171,98440 02823,02-09-2016 22:13:29
+94487 29969,97419 41164,02-09-2016 22:13:47
+98458 13389,93423 23000,02-09-2016 22:21:30
+98458 13389,93423 23000,02-09-2016 22:22:33
+90365 51029,97380 60551,02-09-2016 22:28:58
+92421 64236,81520 43406,02-09-2016 22:34:08
+97406 74488,92411 96415,02-09-2016 22:38:44
+98458 13389,93423 23000,02-09-2016 22:41:09
+90357 17994,93420 59147,02-09-2016 22:42:12
+94480 64700,90088 09624,02-09-2016 22:42:20
+90359 79636,70121 27677,02-09-2016 22:45:56
+90193 20957,97420 86635,02-09-2016 22:48:53
+78295 60375,93410 98013,02-09-2016 22:51:43
+93418 41992,81525 78007,02-09-2016 22:52:35
+93423 23000,78133 10302,02-09-2016 22:54:18
+99009 32475,78138 56841,02-09-2016 22:56:10
+99001 95783,89076 36757,02-09-2016 23:05:32
+90194 00845,97416 17124,02-09-2016 23:12:23
+81520 43406,92421 64236,02-09-2016 23:15:16
+97419 41164,94487 29969,02-09-2016 23:15:52
+97414 15280,90199 91061,02-09-2016 23:17:42
+94487 29969,97419 41164,02-09-2016 23:18:35
+97386 20071,94499 20763,02-09-2016 23:24:17
+94497 44333,97385 70012,02-09-2016 23:25:07
+93420 59147,90357 17994,02-09-2016 23:29:11
+90087 42537,94497 44333,02-09-2016 23:30:22
+97426 75324,78138 56841,02-09-2016 23:34:00
+81524 55552,97380 60551,02-09-2016 23:45:46
+99612 41256,81526 05544,02-09-2016 23:50:49
+97390 23922,90359 52497,02-09-2016 23:51:24
+98447 12671,93427 56500,02-09-2016 23:58:17
+84311 10322,90359 79636,02-09-2016 23:58:23
+99003 47921,98444 95768,02-09-2016 23:59:23
+98440 65896,93418 41992,02-09-2016 23:59:56
+90198 03659,97403 09983,03-09-2016 06:06:15
+97416 17124,90194 00845,03-09-2016 06:13:21
+93435 21961,92411 96415,03-09-2016 06:18:14
+90365 51029,97380 60551,03-09-2016 06:20:48
+78299 36192,94006 62384,03-09-2016 06:23:48
+87146 31956,83019 39880,03-09-2016 06:25:45
+95269 20533,97449 50000,03-09-2016 06:27:34
+93410 98013,98441 32533,03-09-2016 06:28:46
+93412 66159,98454 07778,03-09-2016 06:30:21
+90358 98099,97406 74488,03-09-2016 06:37:25
+74066 93594,78136 65840,03-09-2016 06:39:27
+97426 75324,78138 56841,03-09-2016 06:40:57
+97391 99665,90368 72970,03-09-2016 06:42:17
+97403 09983,90198 03659,03-09-2016 06:45:00
+97424 53609,90197 69887,03-09-2016 06:45:21
+97389 12538,90352 50054,03-09-2016 06:46:25
+97395 95120,94490 65627,03-09-2016 06:47:45
+98448 72117,93436 09781,03-09-2016 06:52:02
+93410 98013,78295 60375,03-09-2016 06:53:21
+95264 40233,98440 68457,03-09-2016 06:53:23
+93418 41992,97385 35042,03-09-2016 06:57:36
+94485 80091,84312 48999,03-09-2016 07:00:06
+90359 99240,94491 55790,03-09-2016 07:04:07
+81525 78007,93418 41992,03-09-2016 07:04:56
+83019 39880,87146 31956,03-09-2016 07:06:52
+97403 09983,90198 03659,03-09-2016 07:09:04
+98454 07778,93412 66159,03-09-2016 07:14:10
+93418 41992,81525 78007,03-09-2016 07:14:59
+90082 61126,90366 69257,03-09-2016 07:29:52
+97380 60551,90365 51029,03-09-2016 07:38:28
+97393 04671,95262 44233,03-09-2016 07:39:15
+90351 35947,97424 21092,03-09-2016 07:41:21
+90356 11723,81525 12041,03-09-2016 07:55:33
+98451 87493,97424 21092,03-09-2016 07:56:59
+97414 15280,90199 91061,03-09-2016 07:58:37
+98451 87493,97424 21092,03-09-2016 08:02:09
+93418 41992,97385 35042,03-09-2016 08:03:41
+97390 23922,90359 52497,03-09-2016 08:18:38
+90359 79636,84311 10322,03-09-2016 08:19:55
+97424 53609,97385 70012,03-09-2016 08:20:07
+94490 65627,97395 95120,03-09-2016 08:20:41
+92413 38675,90362 07317,03-09-2016 08:22:57
+98449 60656,97414 62784,03-09-2016 08:24:58
+84314 16122,94499 20763,03-09-2016 08:25:31
+94006 62384,99616 15114,03-09-2016 08:29:52
+93423 23000,98458 13389,03-09-2016 08:31:34
+90362 07317,92413 38675,03-09-2016 08:35:47
+87146 31956,83019 39880,03-09-2016 08:42:27
+83019 53227,98446 66723,03-09-2016 08:46:15
+97414 62784,98449 60656,03-09-2016 09:07:37
+95269 20533,97449 50000,03-09-2016 09:09:19
+90352 50054,96566 40412,03-09-2016 09:15:48
+99004 86250,97390 23922,03-09-2016 09:23:42
+81525 12041,99610 89720,03-09-2016 09:24:39
+81519 62015,99009 32475,03-09-2016 09:27:21
+81515 65055,78295 48262,03-09-2016 09:32:44
+70129 62374,98441 32533,03-09-2016 09:34:06
+97395 95120,94490 65627,03-09-2016 09:38:56
+84314 16122,94499 20763,03-09-2016 09:39:48
+98448 72117,93436 09781,03-09-2016 09:48:28
+94488 97308,97391 99665,03-09-2016 09:49:54
+78290 31269,97386 37259,03-09-2016 09:50:21
+78133 10302,93423 23000,03-09-2016 09:51:00
+98445 42844,99617 74886,03-09-2016 09:52:58
+81525 78007,93418 41992,03-09-2016 09:58:58
+98444 42212,97393 04671,03-09-2016 09:59:16
+99009 32475,78138 56841,03-09-2016 10:18:16
+90366 36573,97425 12708,03-09-2016 10:21:28
+78295 78750,97449 50000,03-09-2016 10:28:13
+97380 60551,81524 55552,03-09-2016 10:34:05
+90359 91512,94492 23068,03-09-2016 10:37:41
+90199 91061,97414 15280,03-09-2016 10:47:43
+97416 29480,94489 72078,03-09-2016 10:48:01
+97414 15280,90199 91061,03-09-2016 10:48:32
+92421 09526,89076 36757,03-09-2016 10:52:58
+93420 59147,90357 17994,03-09-2016 11:04:21
+98447 12671,93427 56500,03-09-2016 11:19:39
+94488 97308,97391 99665,03-09-2016 11:26:45
+90366 69257,90082 61126,03-09-2016 11:32:00
+94495 34273,94491 05266,03-09-2016 11:32:06
+93420 59147,90357 17994,03-09-2016 11:41:21
+97449 50000,95269 20533,03-09-2016 11:41:54
+94480 64700,90088 09624,03-09-2016 11:41:58
+97380 60551,97414 35000,03-09-2016 11:42:12
+94497 44333,90087 42537,03-09-2016 11:48:01
+90366 69257,90082 61126,03-09-2016 11:51:29
+90355 10919,81524 55552,03-09-2016 11:52:37
+97424 53609,97385 70012,03-09-2016 11:58:06
+93422 47940,94488 97308,03-09-2016 12:02:29
+81515 65055,78295 48262,03-09-2016 12:02:33
+92413 38675,90362 07317,03-09-2016 12:04:25
+93420 59147,90357 17994,03-09-2016 12:05:35
+92411 96415,78993 92058,03-09-2016 12:07:49
+99617 74886,98445 42844,03-09-2016 12:09:40
+97391 99665,94488 97308,03-09-2016 12:19:36
+83019 53227,98446 66723,03-09-2016 12:28:47
+94499 46077,83013 02552,03-09-2016 12:29:17
+98448 72117,93436 09781,03-09-2016 12:30:57
+98454 07778,97421 07528,03-09-2016 12:32:30
+98454 07778,97421 07528,03-09-2016 12:37:29
+94499 20763,97386 20071,03-09-2016 12:39:25
+90368 72970,97391 99665,03-09-2016 12:41:40
+78298 02848,99001 95783,03-09-2016 12:43:56
+70121 27677,83012 37742,03-09-2016 12:50:07
+95264 40233,98440 68457,03-09-2016 12:50:22
+93428 11808,96565 52272,03-09-2016 12:57:01
+97414 15280,90199 91061,03-09-2016 12:58:29
+94487 29969,97419 41164,03-09-2016 13:01:48
+94485 80091,84312 48999,03-09-2016 13:03:04
+94491 55790,90359 99240,03-09-2016 13:08:56
+92421 64236,81520 43406,03-09-2016 13:10:23
+78136 42599,97399 92703,03-09-2016 13:14:12
+92424 51984,78299 99223,03-09-2016 13:19:08
+94499 20763,97386 20071,03-09-2016 13:19:33
+90359 79636,70121 27677,03-09-2016 13:20:23
+97380 86781,97380 60551,03-09-2016 13:22:35
+94497 44333,97385 70012,03-09-2016 13:24:01
+98440 02823,81515 42171,03-09-2016 13:24:53
+98448 72117,93436 09781,03-09-2016 13:29:21
+97403 49292,98445 33687,03-09-2016 13:30:14
+70121 27677,90359 79636,03-09-2016 13:38:06
+90367 90080,74066 93594,03-09-2016 13:40:54
+97425 12708,90366 36573,03-09-2016 13:42:56
+97425 92186,94482 95223,03-09-2016 13:45:51
+93436 09781,98448 72117,03-09-2016 13:47:16
+94499 20763,97386 20071,03-09-2016 13:50:53
+92411 96415,97406 74488,03-09-2016 13:52:32
+89078 69605,77950 18278,03-09-2016 13:58:43
+90198 03659,97403 09983,03-09-2016 14:03:50
+97389 12538,90352 50054,03-09-2016 14:08:59
+90359 99240,94491 55790,03-09-2016 14:09:08
+99610 89720,90197 69887,03-09-2016 14:12:15
+84313 45689,78295 65598,03-09-2016 14:13:38
+78138 56841,99009 32475,03-09-2016 14:16:34
+94006 62384,99616 15114,03-09-2016 14:20:45
+94480 31371,97426 25297,03-09-2016 14:25:48
+98449 60656,97414 62784,03-09-2016 14:25:57
+92414 22596,93421 63491,03-09-2016 14:35:32
+70121 27677,90359 79636,03-09-2016 14:38:52
+94495 34273,94491 05266,03-09-2016 14:45:21
+90357 17994,93420 59147,03-09-2016 14:47:10
+83019 53227,98446 66723,03-09-2016 14:49:02
+89078 69605,77950 18278,03-09-2016 14:49:14
+84314 00609,99007 06998,03-09-2016 14:52:21
+87149 57915,92428 82401,03-09-2016 14:52:49
+95269 20533,97449 50000,03-09-2016 14:57:55
+74066 93594,90367 90080,03-09-2016 15:07:05
+97385 70012,94497 44333,03-09-2016 15:10:18
+97385 29751,92428 82401,03-09-2016 15:15:00
+90359 91512,94492 23068,03-09-2016 15:15:40
+90193 20957,97420 86635,03-09-2016 15:19:53
+97424 60171,94486 40312,03-09-2016 15:19:55
+92415 91418,94489 72078,03-09-2016 15:27:35
+94495 34273,94491 05266,03-09-2016 15:28:40
+98440 65896,93418 41992,03-09-2016 15:30:00
+90197 69887,97424 53609,03-09-2016 15:37:11
+98444 95768,99003 47921,03-09-2016 15:42:44
+98446 78140,98440 65896,03-09-2016 15:44:44
+92421 64236,81520 43406,03-09-2016 15:56:21
+90359 52497,97390 23922,03-09-2016 16:00:46
+97415 99182,97393 04671,03-09-2016 16:04:58
+95262 44233,98442 33257,03-09-2016 16:15:40
+90367 90080,74066 93594,03-09-2016 16:21:57
+78290 31269,97386 37259,03-09-2016 16:26:30
+93436 09781,98448 72117,03-09-2016 16:28:26
+99007 06998,84314 00609,03-09-2016 16:30:26
+81524 55552,97380 60551,03-09-2016 16:30:55
+81520 43406,92421 64236,03-09-2016 16:35:36
+94495 34273,94491 05266,03-09-2016 16:36:25
+90083 59148,97421 07528,03-09-2016 16:37:30
+99004 86250,97390 23922,03-09-2016 16:41:03
+98454 90038,90359 52497,03-09-2016 16:43:41
+97424 53609,97385 70012,03-09-2016 16:47:07
+97424 21092,98451 87493,03-09-2016 16:47:10
+99616 15114,94006 62384,03-09-2016 16:49:56
+97421 07528,90083 59148,03-09-2016 16:52:33
+92413 79027,74060 75431,03-09-2016 16:53:45
+92411 96415,97406 74488,03-09-2016 16:55:58
+93427 56500,98447 12671,03-09-2016 16:56:13
+90359 91512,94492 23068,03-09-2016 17:00:32
+92411 96415,93435 21961,03-09-2016 17:01:59
+97393 04671,95262 44233,03-09-2016 17:03:19
+98454 07778,93412 66159,03-09-2016 17:12:15
+97386 20071,94499 20763,03-09-2016 17:13:14
+78132 18081,77956 90632,03-09-2016 17:16:45
+98440 02823,81515 42171,03-09-2016 17:17:28
+93420 59147,90357 17994,03-09-2016 17:17:45
+90359 52497,97390 23922,03-09-2016 17:26:32
+94490 65627,97395 95120,03-09-2016 17:31:29
+98445 42844,99617 74886,03-09-2016 17:47:24
+94491 05266,94495 34273,03-09-2016 17:55:16
+90359 79636,70121 27677,03-09-2016 17:59:04
+97403 09983,97406 06245,03-09-2016 18:09:08
+78139 24512,90192 87313,03-09-2016 18:09:47
+81515 65055,78295 48262,03-09-2016 18:11:18
+97411 71155,98443 99204,03-09-2016 18:13:24
+93427 56500,98447 12671,03-09-2016 18:24:52
+97393 04671,97415 99182,03-09-2016 18:30:04
+81525 12041,99610 89720,03-09-2016 18:32:31
+94495 34273,94491 05266,03-09-2016 18:32:38
+96566 40412,90352 50054,03-09-2016 18:39:08
+97393 04671,97415 99182,03-09-2016 18:46:33
+97425 92186,94482 95223,03-09-2016 18:47:41
+90366 69257,90082 61126,03-09-2016 19:00:10
+90082 61126,90366 69257,03-09-2016 19:09:43
+78138 56841,97426 75324,03-09-2016 19:14:05
+97424 60171,94486 40312,03-09-2016 19:14:46
+92411 96415,97406 74488,03-09-2016 19:19:08
+92415 91418,94489 72078,03-09-2016 19:21:51
+98449 60656,97414 62784,03-09-2016 19:22:47
+97424 21092,98451 87493,03-09-2016 19:38:55
+93418 41992,81525 78007,03-09-2016 19:43:02
+98446 78140,98444 72482,03-09-2016 19:43:05
+77950 18278,89078 69605,03-09-2016 19:56:04
+99009 32475,81519 62015,03-09-2016 19:57:39
+94482 95223,97425 92186,03-09-2016 20:00:34
+98444 95768,99003 47921,03-09-2016 20:03:23
+93434 31551,90088 09624,03-09-2016 20:06:12
+92421 09526,89076 36757,03-09-2016 20:12:16
+97426 75324,78138 56841,03-09-2016 20:16:27
+97391 99665,90355 94399,03-09-2016 20:17:58
+90352 50054,97389 12538,03-09-2016 20:18:44
+93422 47940,90084 16988,03-09-2016 20:18:45
+81515 65055,78295 48262,03-09-2016 20:22:34
+97424 21092,98451 87493,03-09-2016 20:24:41
+78295 48262,70121 27677,03-09-2016 20:25:09
+97424 21092,98451 87493,03-09-2016 20:33:44
+92421 64236,81520 43406,03-09-2016 20:40:49
+98441 32533,70129 62374,03-09-2016 20:41:06
+93427 56500,98447 12671,03-09-2016 20:41:39
+90192 87313,78139 24512,03-09-2016 20:49:16
+90359 52497,97390 23922,03-09-2016 20:53:06
+90352 50054,97389 12538,03-09-2016 20:57:01
+78295 60375,93410 98013,03-09-2016 20:58:17
+81525 12041,90356 11723,03-09-2016 20:59:07
+84312 48999,94485 80091,03-09-2016 21:06:14
+92411 96415,97406 74488,03-09-2016 21:11:55
+98446 78140,98440 65896,03-09-2016 21:14:33
+90363 85738,99610 89720,03-09-2016 21:16:38
+81515 65055,78295 48262,03-09-2016 21:18:43
+93423 23000,98458 13389,03-09-2016 21:21:13
+83019 53227,98446 66723,03-09-2016 21:23:08
+94499 20763,97386 20071,03-09-2016 21:29:20
+97416 17124,90194 00845,03-09-2016 21:29:39
+99001 85033,74066 93594,03-09-2016 21:33:29
+98440 02823,81515 42171,03-09-2016 21:34:50
+90083 59148,97421 07528,03-09-2016 21:37:47
+94489 95536,94492 23068,03-09-2016 21:40:33
+78290 31269,97386 37259,03-09-2016 21:42:42
+93410 56456,98453 86521,03-09-2016 21:46:06
+98440 65896,98446 78140,03-09-2016 21:49:03
+97426 75324,78138 56841,03-09-2016 21:53:17
+97403 49292,98445 33687,03-09-2016 21:55:51
+98442 33257,95262 44233,03-09-2016 22:05:19
+99007 06998,84314 00609,03-09-2016 22:06:59
+78295 65598,98440 65896,03-09-2016 22:07:16
+95269 20533,97449 50000,03-09-2016 22:08:18
+78138 56841,97426 75324,03-09-2016 22:11:58
+97424 53609,90197 69887,03-09-2016 22:14:54
+70121 27677,90359 79636,03-09-2016 22:16:20
+97425 92186,94482 95223,03-09-2016 22:29:02
+90359 99240,94491 55790,03-09-2016 22:31:52
+93435 31225,87141 37314,03-09-2016 22:34:21
+99001 95783,89076 36757,03-09-2016 22:37:22
+90358 98099,97406 74488,03-09-2016 22:38:54
+94499 20763,93412 66159,03-09-2016 22:41:44
+98448 87878,90366 36573,03-09-2016 22:44:27
+90084 16988,98449 60656,03-09-2016 22:50:49
+97449 50000,95269 20533,03-09-2016 23:07:36
+92425 27794,93432 65750,03-09-2016 23:09:09
+92413 79027,74060 75431,03-09-2016 23:12:07
+93435 31225,87141 37314,03-09-2016 23:12:58
+97416 29480,94489 72078,03-09-2016 23:13:49
+78139 24512,90192 87313,03-09-2016 23:15:08
+99612 41256,90197 24124,03-09-2016 23:17:21
+97391 99665,90368 72970,03-09-2016 23:22:02
+90084 16988,93422 47940,03-09-2016 23:22:26
+93418 41992,81525 78007,03-09-2016 23:22:43
+90359 79636,70121 27677,03-09-2016 23:26:54
+98449 60656,97414 62784,03-09-2016 23:39:50
+90362 07317,92413 38675,03-09-2016 23:42:21
+90365 06212,81513 30231,03-09-2016 23:43:01
+99009 32475,78138 56841,03-09-2016 23:47:13
+92411 96415,97406 74488,03-09-2016 23:55:16
+97380 60551,81524 55552,03-09-2016 23:56:43
+94488 97308,93422 47940,04-09-2016 06:01:52
+97412 66065,94006 62384,04-09-2016 06:02:01
+93435 31225,87141 37314,04-09-2016 06:09:27
+90194 00845,97416 17124,04-09-2016 06:10:15
+78290 30467,87141 73076,04-09-2016 06:17:48
+98449 60656,90084 16988,04-09-2016 06:22:41
+98458 13389,93423 23000,04-09-2016 06:23:43
+99612 41256,90197 24124,04-09-2016 06:25:54
+97391 99665,90368 72970,04-09-2016 06:27:07
+83019 53227,98446 66723,04-09-2016 06:41:07
+92413 38675,90362 07317,04-09-2016 06:41:52
+74060 75431,92413 79027,04-09-2016 06:43:08
+97391 99665,94488 97308,04-09-2016 06:50:05
+90088 09624,94480 64700,04-09-2016 06:50:57
+90359 52497,97390 23922,04-09-2016 06:51:50
+98446 78140,98444 72482,04-09-2016 06:52:47
+90087 42537,94497 44333,04-09-2016 06:57:30
+89072 39789,87140 67779,04-09-2016 07:00:52
+92411 96415,97406 74488,04-09-2016 07:01:56
+96566 40412,90352 50054,04-09-2016 07:03:08
+81522 26166,97414 62784,04-09-2016 07:04:37
+98449 60656,97414 62784,04-09-2016 07:05:25
+90359 79636,84311 10322,04-09-2016 07:07:17
+94491 05266,94495 34273,04-09-2016 07:10:35
+98441 32533,93410 98013,04-09-2016 07:15:52
+92411 96415,78993 92058,04-09-2016 07:16:06
+97446 95253,97428 35959,04-09-2016 07:28:08
+94497 77615,81517 73746,04-09-2016 07:41:41
+93420 59147,90357 17994,04-09-2016 07:43:26
+94480 64700,90088 09624,04-09-2016 07:44:31
+90197 24124,99612 41256,04-09-2016 07:47:35
+90082 61126,90366 69257,04-09-2016 07:53:39
+90359 79636,70121 27677,04-09-2016 08:02:27
+90359 79636,70121 27677,04-09-2016 08:02:28
+99617 74886,98445 42844,04-09-2016 08:03:07
+90194 00845,97416 17124,04-09-2016 08:08:25
+98444 72482,98446 78140,04-09-2016 08:11:52
+94497 44333,97385 70012,04-09-2016 08:13:41
+97414 62784,98449 60656,04-09-2016 08:31:34
+93418 41992,97385 35042,04-09-2016 08:34:56
+98448 72117,93436 09781,04-09-2016 08:43:28
+90359 99240,78138 93826,04-09-2016 08:43:34
+90366 36573,97425 12708,04-09-2016 08:48:37
+93420 59147,90357 17994,04-09-2016 08:48:54
+78138 56841,93416 07259,04-09-2016 08:53:26
+78133 10302,93423 23000,04-09-2016 08:56:21
+93423 23000,98458 13389,04-09-2016 09:01:34
+90361 52679,90359 91512,04-09-2016 09:06:10
+78138 56841,99009 32475,04-09-2016 09:08:05
+81510 47188,97429 02055,04-09-2016 09:09:33
+97414 15280,90199 91061,04-09-2016 09:11:04
+90359 79636,84311 10322,04-09-2016 09:17:14
+93432 65750,92425 27794,04-09-2016 09:18:35
+93436 09781,98448 72117,04-09-2016 09:29:01
+90365 51029,94499 38099,04-09-2016 09:31:28
+93423 23000,78133 10302,04-09-2016 09:35:48
+92411 96415,93435 21961,04-09-2016 09:41:53
+95264 40233,98440 68457,04-09-2016 09:42:21
+97416 17124,90194 00845,04-09-2016 09:43:59
+78295 65598,84313 45689,04-09-2016 09:44:12
+81517 73746,94497 77615,04-09-2016 09:46:08
+98440 65896,78295 65598,04-09-2016 09:46:33
+97391 99665,90368 72970,04-09-2016 09:50:53
+94495 34273,94491 05266,04-09-2016 09:52:06
+90084 16988,93422 47940,04-09-2016 09:56:01
+93436 09781,98448 72117,04-09-2016 09:58:10
+78290 31269,97386 37259,04-09-2016 10:00:00
+78139 24512,90192 87313,04-09-2016 10:00:17
+97385 70012,94497 44333,04-09-2016 10:00:47
+97416 17124,90194 00845,04-09-2016 10:10:01
+92421 64236,81520 43406,04-09-2016 10:13:20
+84314 16122,94499 20763,04-09-2016 10:15:17
+93427 56500,98447 12671,04-09-2016 10:16:04
+90359 52497,98454 90038,04-09-2016 10:18:10
+98456 86153,90197 24124,04-09-2016 10:19:48
+90366 69257,90082 61126,04-09-2016 10:22:45
+78133 71458,70127 59322,04-09-2016 10:25:32
+90192 87313,78139 24512,04-09-2016 10:25:54
+99003 88572,99006 60463,04-09-2016 10:32:14
+81526 05544,99612 41256,04-09-2016 10:32:24
+98453 86521,93410 56456,04-09-2016 10:34:43
+90198 03659,97403 09983,04-09-2016 10:37:30
+97391 99665,90368 72970,04-09-2016 10:39:29
+90361 52679,90359 91512,04-09-2016 10:41:13
+93410 98013,98441 32533,04-09-2016 10:43:07
+92411 96415,77956 90632,04-09-2016 10:47:38
+94492 23068,94489 95536,04-09-2016 10:50:57
+94487 29969,97419 41164,04-09-2016 10:51:38
+90359 91512,94492 23068,04-09-2016 10:52:52
+97424 60171,94486 40312,04-09-2016 10:56:21
+98448 72117,93436 09781,04-09-2016 10:56:51
+90083 59148,97421 07528,04-09-2016 10:56:54
+97403 49292,98445 33687,04-09-2016 10:59:57
+97447 92655,97404 63904,04-09-2016 11:00:15
+90192 87313,78139 24512,04-09-2016 11:01:52
+97391 99665,94488 97308,04-09-2016 11:02:32
+97424 53609,90197 69887,04-09-2016 11:03:33
+78133 71458,70127 59322,04-09-2016 11:04:04
+98448 86633,78293 91304,04-09-2016 11:05:57
+98458 13389,93423 23000,04-09-2016 11:20:17
+98445 42844,99617 74886,04-09-2016 11:30:17
+94499 20763,90354 08732,04-09-2016 11:31:12
+90354 08732,94499 20763,04-09-2016 11:34:38
+90083 59148,97421 07528,04-09-2016 11:34:57
+92414 22596,93421 63491,04-09-2016 11:35:59
+78290 30467,87141 73076,04-09-2016 11:37:52
+97386 37259,78290 31269,04-09-2016 11:40:40
+92414 22596,93421 63491,04-09-2016 11:49:29
+94489 72078,92415 91418,04-09-2016 11:58:33
+90197 24124,99612 41256,04-09-2016 12:06:51
+92421 09526,89076 36757,04-09-2016 12:07:05
+97391 99665,94488 97308,04-09-2016 12:09:50
+97424 53609,97385 70012,04-09-2016 12:11:22
+94497 44333,97385 70012,04-09-2016 12:15:17
+97414 62784,98449 60656,04-09-2016 12:17:44
+93410 98013,78295 60375,04-09-2016 12:17:56
+90083 59148,97421 07528,04-09-2016 12:21:47
+98445 42844,99617 74886,04-09-2016 12:27:33
+97424 21092,90351 35947,04-09-2016 12:27:59
+78295 60375,93410 98013,04-09-2016 12:29:07
+81525 78007,93418 41992,04-09-2016 12:29:52
+97403 09983,90198 03659,04-09-2016 12:56:51
+97384 69866,87146 31956,04-09-2016 13:05:49
+94495 34273,94491 05266,04-09-2016 13:08:12
+97447 92655,97404 63904,04-09-2016 13:10:26
+98456 86153,90197 24124,04-09-2016 13:11:06
+97416 17124,90194 00845,04-09-2016 13:16:20
+94495 34273,94491 05266,04-09-2016 13:17:48
+92415 91418,94489 72078,04-09-2016 13:18:18
+98458 13389,93423 23000,04-09-2016 13:21:08
+98442 33257,95262 44233,04-09-2016 13:24:46
+90087 42537,94497 44333,04-09-2016 13:36:02
+87141 73076,78290 30467,04-09-2016 13:36:10
+90359 79636,84311 10322,04-09-2016 13:39:23
+78295 48262,70121 27677,04-09-2016 13:43:03
+92414 22596,93421 63491,04-09-2016 13:45:34
+94499 20763,84314 16122,04-09-2016 13:46:31
+90083 59148,97421 07528,04-09-2016 13:46:33
+90359 91512,94492 23068,04-09-2016 13:47:22
+98446 78140,98440 65896,04-09-2016 13:48:55
+90356 11723,81525 12041,04-09-2016 13:50:42
+95262 44233,97393 04671,04-09-2016 13:51:49
+94492 23068,90359 91512,04-09-2016 13:57:27
+89078 69605,77950 18278,04-09-2016 14:02:46
+78295 60375,93410 98013,04-09-2016 14:04:34
+81522 26166,90194 00845,04-09-2016 14:20:10
+81525 78007,93418 41992,04-09-2016 14:20:28
+78136 42599,97399 92703,04-09-2016 14:31:20
+90192 87313,78139 24512,04-09-2016 14:40:52
+98451 87493,97424 21092,04-09-2016 14:49:24
+97406 74488,92411 96415,04-09-2016 14:52:11
+98453 86521,93410 56456,04-09-2016 14:52:16
+78295 65598,84313 45689,04-09-2016 14:54:25
+90355 94399,98452 19037,04-09-2016 15:00:43
+90359 99240,94491 55790,04-09-2016 15:05:50
+93420 59147,90357 17994,04-09-2016 15:21:35
+90359 79636,84311 10322,04-09-2016 15:21:37
+78295 78750,97449 50000,04-09-2016 15:21:59
+97385 29751,92428 82401,04-09-2016 15:21:59
+90084 16988,93422 47940,04-09-2016 15:27:33
+90368 72970,97391 99665,04-09-2016 15:27:49
+97399 92703,78136 42599,04-09-2016 15:31:24
+90082 61126,90366 69257,04-09-2016 15:32:51
+97421 07528,90083 59148,04-09-2016 15:35:44
+90351 35947,97424 21092,04-09-2016 15:42:55
+81524 55552,90355 10919,04-09-2016 15:43:06
+90082 61126,90366 69257,04-09-2016 15:53:34
+93422 47940,90084 16988,04-09-2016 15:53:39
+94489 72078,92415 91418,04-09-2016 15:53:49
+98447 12671,93427 56500,04-09-2016 15:57:44
+94482 95223,97425 92186,04-09-2016 16:00:54
+78295 60375,93410 98013,04-09-2016 16:05:04
+97380 60551,78298 91466,04-09-2016 16:06:07
+97391 99665,94488 97308,04-09-2016 16:06:30
+81515 42171,98440 02823,04-09-2016 16:22:40
+94487 29969,97419 41164,04-09-2016 16:24:38
+97391 99665,90368 72970,04-09-2016 16:24:45
+93435 31225,87141 37314,04-09-2016 16:26:44
+97421 07528,90083 59148,04-09-2016 16:27:21
+93423 23000,78133 10302,04-09-2016 16:28:12
+78295 78750,97449 50000,04-09-2016 16:29:32
+90192 87313,78139 24512,04-09-2016 16:29:38
+90366 69257,90082 61126,04-09-2016 16:29:54
+93420 59147,90357 17994,04-09-2016 16:34:48
+98445 42844,99617 74886,04-09-2016 16:39:37
+94006 62384,99616 15114,04-09-2016 16:43:36
+90357 17994,93420 59147,04-09-2016 16:43:45
+97421 07528,90083 59148,04-09-2016 16:46:56
+78133 10302,93423 23000,04-09-2016 16:49:47
+97406 74488,92411 96415,04-09-2016 16:57:24
+81525 12041,90356 11723,04-09-2016 17:04:02
+90351 35947,97424 21092,04-09-2016 17:04:47
+94489 72078,97416 29480,04-09-2016 17:05:27
+78295 60375,93410 98013,04-09-2016 17:06:09
+90359 52497,97390 23922,04-09-2016 17:08:30
+81515 65055,78295 48262,04-09-2016 17:09:57
+95264 40233,98440 68457,04-09-2016 17:10:42
+94488 97308,97391 99665,04-09-2016 17:16:11
+70121 27677,90359 79636,04-09-2016 17:20:34
+90197 69887,97424 53609,04-09-2016 17:20:49
+94497 77615,81517 73746,04-09-2016 17:21:18
+97393 04671,97415 99182,04-09-2016 17:22:17
+98453 46196,94005 06213,04-09-2016 17:27:35
+93436 09781,98448 72117,04-09-2016 17:27:39
+70121 27677,78295 48262,04-09-2016 17:28:56
+94488 97308,97391 99665,04-09-2016 17:29:09
+93410 56456,98453 86521,04-09-2016 17:38:02
+92421 64236,81520 43406,04-09-2016 17:40:42
+78295 65598,98440 65896,04-09-2016 17:42:07
+93436 09781,98448 72117,04-09-2016 17:50:08
+99612 41256,90197 24124,04-09-2016 17:55:00
+78290 30467,87141 73076,04-09-2016 18:00:43
+98454 07778,97421 07528,04-09-2016 18:02:47
+90358 98099,97406 74488,04-09-2016 18:02:59
+90083 59148,97421 07528,04-09-2016 18:09:21
+90355 94399,98452 19037,04-09-2016 18:10:41
+87141 73076,78290 30467,04-09-2016 18:14:58
+97391 99665,94488 97308,04-09-2016 18:16:44
+94492 23068,90359 91512,04-09-2016 18:23:34
+97424 21092,90351 35947,04-09-2016 18:25:21
+97447 92655,84319 42810,04-09-2016 18:25:56
+90367 90080,74066 93594,04-09-2016 18:26:52
+98445 42844,99617 74886,04-09-2016 18:36:48
+98454 07778,93412 66159,04-09-2016 18:37:39
+97424 53609,90197 69887,04-09-2016 18:42:05
+97380 60551,81524 55552,04-09-2016 18:44:32
+90357 17994,93420 59147,04-09-2016 18:50:34
+97386 37259,78290 31269,04-09-2016 18:58:25
+81522 26166,90194 00845,04-09-2016 19:17:08
+90197 69887,97424 53609,04-09-2016 19:18:24
+93435 21961,92411 96415,04-09-2016 19:23:16
+97411 71155,98443 99204,04-09-2016 19:24:39
+94490 65627,97395 95120,04-09-2016 19:36:40
+90194 00845,97416 17124,04-09-2016 19:39:05
+84311 10322,90359 79636,04-09-2016 19:47:22
+92421 64236,81520 43406,04-09-2016 19:50:27
+90359 79636,84311 10322,04-09-2016 19:52:09
+98449 60656,97414 62784,04-09-2016 19:58:47
+84314 00609,99007 06998,04-09-2016 19:59:45
+90357 17994,93420 59147,04-09-2016 20:01:16
+90368 72970,97391 99665,04-09-2016 20:08:20
+92421 09526,89076 36757,04-09-2016 20:12:21
+78138 56841,99009 32475,04-09-2016 20:12:44
+98453 86521,93410 56456,04-09-2016 20:16:39
+97411 71155,98443 99204,04-09-2016 20:20:13
+93418 41992,97385 35042,04-09-2016 20:23:28
+92411 96415,78993 92058,04-09-2016 20:31:18
+94491 55790,90359 99240,04-09-2016 20:35:12
+96565 52272,93428 11808,04-09-2016 20:40:04
+98440 65896,78295 65598,04-09-2016 20:40:34
+81519 62015,99009 32475,04-09-2016 20:41:04
+99001 95783,89076 36757,04-09-2016 20:41:10
+78138 56841,99009 32475,04-09-2016 20:41:57
+94486 40312,97424 60171,04-09-2016 20:41:57
+97416 29480,94489 72078,04-09-2016 20:56:14
+78993 92058,92411 96415,04-09-2016 20:57:07
+97395 95120,94490 65627,04-09-2016 21:03:35
+94489 95536,93418 82576,04-09-2016 21:07:20
+78295 48262,81515 65055,04-09-2016 21:12:09
+90362 07317,92413 38675,04-09-2016 21:19:08
+90366 36573,97425 12708,04-09-2016 21:20:07
+83015 22251,78295 60375,04-09-2016 21:22:02
+90355 94399,97391 99665,04-09-2016 21:24:18
+92411 96415,77956 90632,04-09-2016 21:24:52
+94489 72078,92415 91418,04-09-2016 21:34:04
+93410 56456,98453 86521,04-09-2016 21:44:56
+97393 04671,97415 99182,04-09-2016 21:45:20
+81522 26166,97414 62784,04-09-2016 21:48:47
+99616 15114,94006 62384,04-09-2016 21:50:04
+78295 65598,98440 65896,04-09-2016 21:54:23
+89078 69605,77950 18278,04-09-2016 22:00:01
+93418 82576,94489 95536,04-09-2016 22:00:16
+94488 97308,93422 47940,04-09-2016 22:01:15
+90352 50054,97389 12538,04-09-2016 22:01:50
+90366 36573,98448 87878,04-09-2016 22:03:05
+94495 34273,94491 05266,04-09-2016 22:06:19
+97385 70012,94497 44333,04-09-2016 22:11:41
+94499 20763,84314 16122,04-09-2016 22:12:20
+97393 04671,98444 42212,04-09-2016 22:13:16
+97411 71155,98443 99204,04-09-2016 22:16:44
+94489 72078,97416 29480,04-09-2016 22:17:21
+78132 18081,77956 90632,04-09-2016 22:24:54
+78295 78750,97449 50000,04-09-2016 22:32:50
+87141 73076,78290 30467,04-09-2016 22:33:11
+90357 17994,93420 59147,04-09-2016 22:42:16
+90354 08732,94499 20763,04-09-2016 22:43:26
+97416 17124,90194 00845,04-09-2016 22:47:10
+98458 13389,93423 23000,04-09-2016 22:48:47
+94499 20763,90354 08732,04-09-2016 22:55:06
+81520 43406,92421 64236,04-09-2016 22:56:42
+97424 53609,97385 70012,04-09-2016 23:00:23
+81526 05544,99612 41256,04-09-2016 23:05:16
+90088 09624,93434 31551,04-09-2016 23:06:53
+90359 52497,97390 23922,04-09-2016 23:07:40
+99617 74886,98445 42844,04-09-2016 23:11:00
+97406 06245,97403 09983,04-09-2016 23:11:31
+94486 40312,97424 60171,04-09-2016 23:18:51
+92415 91418,94489 72078,04-09-2016 23:20:25
+92414 22596,93421 63491,04-09-2016 23:22:02
+97391 99665,90355 94399,04-09-2016 23:22:11
+98451 87493,97424 21092,04-09-2016 23:24:37
+99009 32475,81519 62015,04-09-2016 23:25:57
+90197 69887,99610 89720,04-09-2016 23:28:49
+94490 65627,97395 95120,04-09-2016 23:29:32
+99616 15114,94006 62384,04-09-2016 23:42:54
+97424 21092,90351 35947,04-09-2016 23:43:18
+97390 23922,99004 86250,04-09-2016 23:47:57
+92421 64236,81520 43406,04-09-2016 23:54:40
+77956 90632,78132 18081,05-09-2016 06:02:38
+92428 82401,97385 29751,05-09-2016 06:09:27
+78133 10302,93423 23000,05-09-2016 06:18:44
+94001 07403,90368 72970,05-09-2016 06:26:38
+97446 95253,97428 35959,05-09-2016 06:34:59
+97421 07528,90083 59148,05-09-2016 06:36:00
+90355 94399,98452 19037,05-09-2016 06:37:02
+97449 50000,78295 78750,05-09-2016 06:42:34
+97395 95120,94490 65627,05-09-2016 06:44:30
+98448 86633,78293 91304,05-09-2016 06:52:27
+93418 41992,97385 35042,05-09-2016 06:56:24
+98449 60656,97414 62784,05-09-2016 06:59:09
+74066 31484,98454 90038,05-09-2016 07:04:23
+93410 98013,98441 32533,05-09-2016 07:07:26
+98440 65896,98446 78140,05-09-2016 07:12:52
+99007 06998,84314 00609,05-09-2016 07:23:36
+74066 93594,78136 65840,05-09-2016 07:24:12
+96566 40412,90352 50054,05-09-2016 07:25:44
+92415 91418,94489 72078,05-09-2016 07:27:11
+90359 79636,70121 27677,05-09-2016 07:32:58
+90359 52497,98454 90038,05-09-2016 07:33:56
+97386 37259,78290 31269,05-09-2016 07:37:11
+83015 22251,78295 60375,05-09-2016 07:48:24
+92421 09526,89076 36757,05-09-2016 07:56:00
+98444 72482,98446 78140,05-09-2016 08:12:11
+97411 71155,98443 99204,05-09-2016 08:16:14
+81517 73746,94497 77615,05-09-2016 08:16:32
+97412 66065,94006 62384,05-09-2016 08:17:32
+98447 12671,93427 56500,05-09-2016 08:17:57
+78290 30467,87141 73076,05-09-2016 08:19:17
+90356 11723,81525 12041,05-09-2016 08:20:47
+93436 09781,98448 72117,05-09-2016 08:27:31
+99004 86250,97390 23922,05-09-2016 08:35:06
+78136 42599,97399 92703,05-09-2016 08:37:08
+90355 94399,98452 19037,05-09-2016 08:37:20
+93435 21961,92411 96415,05-09-2016 08:40:18
+98444 42212,97393 04671,05-09-2016 08:41:46
+90197 69887,99610 89720,05-09-2016 08:44:21
+78299 99223,92424 51984,05-09-2016 08:45:48
+93422 47940,90084 16988,05-09-2016 08:48:51
+93418 41992,97385 35042,05-09-2016 08:50:17
+90368 72970,97391 99665,05-09-2016 08:55:39
+92421 09526,89076 36757,05-09-2016 08:58:41
+70121 27677,90359 79636,05-09-2016 09:00:09
+99009 32475,78138 56841,05-09-2016 09:00:41
+98453 86521,93410 56456,05-09-2016 09:01:27
+81526 05544,99612 41256,05-09-2016 09:02:00
+94006 62384,97412 66065,05-09-2016 09:03:03
+83012 37742,70121 27677,05-09-2016 09:03:38
+90194 00845,81522 26166,05-09-2016 09:09:42
+90192 87313,78139 24512,05-09-2016 09:12:46
+81515 42171,98440 02823,05-09-2016 09:21:10
+84312 48999,94485 80091,05-09-2016 09:31:02
+97391 99665,94488 97308,05-09-2016 09:31:50
+97391 99665,90368 72970,05-09-2016 09:34:23
+90357 17994,93420 59147,05-09-2016 09:35:15
+90199 91061,97414 15280,05-09-2016 09:41:26
+97395 95120,94490 65627,05-09-2016 09:42:29
+98449 60656,97414 62784,05-09-2016 09:44:10
+83019 53227,98446 66723,05-09-2016 09:53:13
+90088 09624,93434 31551,05-09-2016 09:55:41
+94001 07403,90368 72970,05-09-2016 09:58:27
+87141 73076,78290 30467,05-09-2016 10:00:30
+94005 06213,98453 46196,05-09-2016 10:03:35
+99616 15114,94006 62384,05-09-2016 10:03:56
+93435 31225,87141 37314,05-09-2016 10:04:03
+90197 24124,99612 41256,05-09-2016 10:06:27
+87141 37314,93435 31225,05-09-2016 10:06:52
+97406 06245,97403 09983,05-09-2016 10:13:57
+78295 48262,70121 27677,05-09-2016 10:16:07
+97422 22278,98446 66723,05-09-2016 10:24:23
+93435 21961,92411 96415,05-09-2016 10:26:23
+92411 96415,97406 74488,05-09-2016 10:30:37
+93422 47940,90084 16988,05-09-2016 10:31:59
+78138 56841,97426 75324,05-09-2016 10:37:38
+87146 31956,83019 39880,05-09-2016 10:43:22
+84312 48999,94485 80091,05-09-2016 10:46:43
+92421 64236,81520 43406,05-09-2016 10:48:02
+90355 94399,97391 99665,05-09-2016 10:49:21
+84312 48999,94485 80091,05-09-2016 10:53:23
+90082 61126,90366 69257,05-09-2016 10:55:11
+78295 78750,97449 50000,05-09-2016 10:56:09
+90087 42537,94497 44333,05-09-2016 10:57:04
+74066 93594,78136 65840,05-09-2016 10:58:34
+90356 11723,81525 12041,05-09-2016 10:59:29
+90359 79636,70121 27677,05-09-2016 11:01:29
+99004 86250,97390 23922,05-09-2016 11:03:21
+90359 79636,99001 23133,05-09-2016 11:06:13
+99610 89720,81525 12041,05-09-2016 11:11:32
+78295 48262,81515 65055,05-09-2016 11:30:31
+93422 47940,90084 16988,05-09-2016 11:33:04
+78139 24512,90192 87313,05-09-2016 11:35:18
+93421 63491,92414 22596,05-09-2016 11:35:35
+90365 51029,97380 60551,05-09-2016 11:39:03
+99001 23133,90359 79636,05-09-2016 11:40:03
+93410 56456,98453 86521,05-09-2016 11:40:36
+81515 42171,98440 02823,05-09-2016 11:45:27
+97424 53609,97385 70012,05-09-2016 11:46:14
+99003 47921,98444 95768,05-09-2016 11:48:58
+96565 52272,93428 11808,05-09-2016 11:49:30
+78299 99223,92424 51984,05-09-2016 11:50:14
+90359 91512,90361 52679,05-09-2016 11:53:54
+93418 41992,81525 78007,05-09-2016 11:58:24
+95269 20533,97449 50000,05-09-2016 12:08:09
+90359 79636,84311 10322,05-09-2016 12:09:09
+97395 95120,94490 65627,05-09-2016 12:12:13
+94497 44333,90087 42537,05-09-2016 12:12:50
+97447 92655,97404 63904,05-09-2016 12:21:02
+84312 48999,94485 80091,05-09-2016 12:25:23
+87146 31956,83019 39880,05-09-2016 12:31:11
+98444 95768,99003 47921,05-09-2016 12:32:01
+97425 92186,94482 95223,05-09-2016 12:32:09
+94482 95223,97425 92186,05-09-2016 12:35:31
+97385 70012,94497 44333,05-09-2016 12:42:27
+99610 89720,90197 69887,05-09-2016 12:48:39
+94492 23068,90359 91512,05-09-2016 12:48:52
+97391 99665,90368 72970,05-09-2016 12:53:58
+84312 48999,94485 80091,05-09-2016 12:54:21
+97421 07528,90083 59148,05-09-2016 12:56:27
+90088 09624,93434 31551,05-09-2016 12:59:09
+98454 07778,93412 66159,05-09-2016 13:00:01
+93418 41992,97385 35042,05-09-2016 13:00:48
+94006 62384,99616 15114,05-09-2016 13:03:26
+98442 33257,95262 44233,05-09-2016 13:05:36
+99003 88572,99006 60463,05-09-2016 13:08:47
+97390 23922,90359 52497,05-09-2016 13:18:29
+78295 48262,81515 65055,05-09-2016 13:24:05
+90083 59148,97421 07528,05-09-2016 13:25:43
+93423 23000,98458 13389,05-09-2016 13:26:28
+84313 45689,78295 65598,05-09-2016 13:26:38
+90366 36573,97425 12708,05-09-2016 13:29:39
+98449 60656,90084 16988,05-09-2016 13:32:38
+97395 95120,94490 65627,05-09-2016 13:35:42
+99003 47921,98444 95768,05-09-2016 13:35:59
+78295 60375,93410 98013,05-09-2016 13:36:09
+92415 91418,94489 72078,05-09-2016 13:50:06
+90352 50054,96566 40412,05-09-2016 14:00:51
+87141 37314,93435 31225,05-09-2016 14:01:05
+90359 91512,94492 23068,05-09-2016 14:04:07
+83019 53227,98446 66723,05-09-2016 14:04:50
+74294 40351,98440 02823,05-09-2016 14:05:30
+97385 35042,93418 41992,05-09-2016 14:07:31
+97424 53609,90197 69887,05-09-2016 14:10:25
+81520 43406,92421 64236,05-09-2016 14:13:45
+90351 35947,97424 21092,05-09-2016 14:19:00
+78295 48262,81515 65055,05-09-2016 14:22:12
+90362 07317,92413 38675,05-09-2016 14:23:29
+93410 56456,98453 86521,05-09-2016 14:24:34
+93423 23000,78133 10302,05-09-2016 14:34:35
+93410 98013,78295 60375,05-09-2016 14:34:49
+78295 48262,81515 65055,05-09-2016 14:38:09
+99617 74886,98445 42844,05-09-2016 14:39:21
+92411 96415,97406 74488,05-09-2016 14:40:52
+78136 42599,97399 92703,05-09-2016 14:48:40
+78290 30467,87141 73076,05-09-2016 14:52:46
+97391 99665,94488 97308,05-09-2016 14:57:45
+90088 09624,93434 31551,05-09-2016 15:00:00
+98444 42212,97393 04671,05-09-2016 15:00:46
+97380 60551,97414 35000,05-09-2016 15:02:43
+83019 39880,87146 31956,05-09-2016 15:06:12
+97393 04671,97415 99182,05-09-2016 15:14:51
+81524 55552,97380 60551,05-09-2016 15:18:54
+98449 60656,90084 16988,05-09-2016 15:22:12
+94001 07403,90368 72970,05-09-2016 15:34:11
+90359 91512,94492 23068,05-09-2016 15:35:21
+77950 18278,89078 69605,05-09-2016 15:36:14
+94489 72078,92415 91418,05-09-2016 15:40:39
+97426 75324,78138 56841,05-09-2016 15:40:46
+95267 70383,97414 62027,05-09-2016 15:41:56
+81522 26166,97380 86781,05-09-2016 15:42:53
+77956 90632,78132 18081,05-09-2016 15:44:29
+81515 65055,78295 48262,05-09-2016 15:49:17
+93435 31225,87141 37314,05-09-2016 15:51:50
+98454 07778,93412 66159,05-09-2016 15:53:31
+81525 78007,93418 41992,05-09-2016 15:56:11
+92411 96415,97406 74488,05-09-2016 16:04:31
+92411 96415,77956 90632,05-09-2016 16:08:59
+94491 55790,90359 99240,05-09-2016 16:09:57
+83019 53227,98446 66723,05-09-2016 16:17:18
+81524 55552,97380 60551,05-09-2016 16:18:14
+98452 19037,90355 94399,05-09-2016 16:23:53
+93422 47940,90084 16988,05-09-2016 16:28:47
+96566 40412,90352 50054,05-09-2016 16:29:15
+94495 34273,94491 05266,05-09-2016 16:31:03
+97399 92703,78136 42599,05-09-2016 16:42:02
+97385 70012,94497 44333,05-09-2016 16:42:27
+95264 40233,98440 68457,05-09-2016 16:49:21
+93410 56456,98453 86521,05-09-2016 16:54:14
+94001 07403,90368 72970,05-09-2016 16:58:19
+94492 23068,90359 91512,05-09-2016 17:00:02
+81517 73746,94497 77615,05-09-2016 17:07:10
+78993 92058,92411 96415,05-09-2016 17:07:30
+78295 48262,70121 27677,05-09-2016 17:08:03
+78295 48262,81515 65055,05-09-2016 17:08:19
+83013 02552,94499 46077,05-09-2016 17:12:04
+90083 59148,97421 07528,05-09-2016 17:27:39
+98440 02823,81515 42171,05-09-2016 17:29:29
+92414 22596,93421 63491,05-09-2016 17:35:30
+97385 70012,94497 44333,05-09-2016 17:37:31
+94489 72078,97416 29480,05-09-2016 17:40:00
+98449 60656,97414 62784,05-09-2016 17:44:30
+97449 50000,95269 20533,05-09-2016 17:45:35
+93410 98013,98441 32533,05-09-2016 17:51:17
+78290 30467,87141 73076,05-09-2016 17:54:27
+97406 74488,90358 98099,05-09-2016 17:56:38
+92411 96415,97406 74488,05-09-2016 17:57:11
+97406 74488,92411 96415,05-09-2016 18:05:14
+95264 40233,98440 68457,05-09-2016 18:07:20
+87141 37314,93435 31225,05-09-2016 18:09:59
+78290 31269,97386 37259,05-09-2016 18:13:01
+93432 65750,92425 27794,05-09-2016 18:24:04
+92424 51984,78299 99223,05-09-2016 18:31:32
+99616 15114,94006 62384,05-09-2016 18:32:24
+90359 91512,94492 23068,05-09-2016 18:37:47
+78138 56841,99009 32475,05-09-2016 18:38:27
+97391 99665,90368 72970,05-09-2016 18:39:14
+90084 16988,98449 60656,05-09-2016 18:44:36
+90368 72970,97391 99665,05-09-2016 18:44:40
+97406 06245,97403 09983,05-09-2016 18:44:50
+94006 62384,99616 15114,05-09-2016 18:50:58
+90084 16988,93422 47940,05-09-2016 18:51:58
+97424 21092,98451 87493,05-09-2016 18:52:24
+98445 42844,99617 74886,05-09-2016 18:54:31
+93410 98013,98441 32533,05-09-2016 19:00:58
+93428 11808,97406 06245,05-09-2016 19:01:42
+98448 86633,78293 91304,05-09-2016 19:02:25
+97390 23922,99004 86250,05-09-2016 19:03:48
+87146 31956,83019 39880,05-09-2016 19:28:48
+78138 56841,99009 32475,05-09-2016 19:32:40
+90359 52497,97390 23922,05-09-2016 19:33:44
+97403 49292,93435 98939,05-09-2016 19:38:29
+97380 60551,78298 91466,05-09-2016 19:38:41
+78295 65598,84313 45689,05-09-2016 19:40:31
+78993 92058,92411 96415,05-09-2016 19:40:48
+78295 65598,98440 65896,05-09-2016 19:43:12
+94001 07403,90368 72970,05-09-2016 19:47:59
+97424 21092,98451 87493,05-09-2016 19:51:05
+94485 80091,84312 48999,05-09-2016 19:55:00
+97403 09983,90198 03659,05-09-2016 19:56:53
+94491 05266,94495 34273,05-09-2016 19:57:01
+94005 06213,98453 46196,05-09-2016 20:00:43
+81513 30231,90365 06212,05-09-2016 20:03:03
+97448 02140,97418 46131,05-09-2016 20:06:40
+93432 65750,92425 27794,05-09-2016 20:11:58
+97385 35042,93418 41992,05-09-2016 20:12:05
+98458 13389,93423 23000,05-09-2016 20:16:02
+81524 55552,97380 60551,05-09-2016 20:17:15
+90365 51029,97380 60551,05-09-2016 20:34:20
+96566 40412,90352 50054,05-09-2016 20:36:07
+94485 80091,84312 48999,05-09-2016 20:36:34
+94490 65627,97395 95120,05-09-2016 20:38:16
+93436 09781,98448 72117,05-09-2016 20:39:46
+98448 86633,78293 91304,05-09-2016 20:45:28
+78133 10302,93423 23000,05-09-2016 20:47:04
+97414 62784,98449 60656,05-09-2016 20:49:41
+90366 69257,90082 61126,05-09-2016 20:49:59
+90359 79636,70121 27677,05-09-2016 20:55:31
+99616 15114,94006 62384,05-09-2016 21:00:07
+78138 56841,97426 75324,05-09-2016 21:02:10
+90198 03659,97403 09983,05-09-2016 21:08:01
+97425 92186,94482 95223,05-09-2016 21:08:22
+97421 07528,98454 07778,05-09-2016 21:09:22
+98454 07778,93412 66159,05-09-2016 21:17:15
+81517 73746,94497 77615,05-09-2016 21:21:28
+90355 10919,81524 55552,05-09-2016 21:26:38
+97414 62784,98449 60656,05-09-2016 21:32:56
+78138 56841,99009 32475,05-09-2016 21:44:39
+97419 41164,94487 29969,05-09-2016 21:51:14
+90359 91512,94492 23068,05-09-2016 21:51:35
+90365 51029,97380 60551,05-09-2016 21:53:19
+98440 02823,81515 42171,05-09-2016 21:54:51
+97385 70012,94497 44333,05-09-2016 21:55:22
+78295 48262,70121 27677,05-09-2016 21:56:28
+98454 07778,93412 66159,05-09-2016 21:58:21
+81525 12041,90356 11723,05-09-2016 21:59:56
+97414 15280,90199 91061,05-09-2016 22:05:24
+97428 35959,97446 95253,05-09-2016 22:21:56
+97393 04671,95262 44233,05-09-2016 22:23:57
+94489 72078,97416 29480,05-09-2016 22:31:24
+99007 06998,84314 00609,05-09-2016 22:35:05
+93428 11808,96565 52272,05-09-2016 22:35:14
+90088 09624,94480 64700,05-09-2016 22:36:19
+94499 20763,90354 08732,05-09-2016 22:36:31
+90358 98099,97406 74488,05-09-2016 22:40:38
+94489 72078,97416 29480,05-09-2016 22:49:31
+81519 62015,99009 32475,05-09-2016 22:54:35
+90352 50054,97389 12538,05-09-2016 23:03:40
+99009 32475,78138 56841,05-09-2016 23:10:12
+97447 92655,97404 63904,05-09-2016 23:10:48
+92415 91418,94489 72078,05-09-2016 23:13:11
+90359 99240,94491 55790,05-09-2016 23:28:20
+94499 20763,97386 20071,05-09-2016 23:29:17
+94006 62384,99616 15114,05-09-2016 23:29:41
+78295 60375,93410 98013,05-09-2016 23:31:38
+87140 67779,89072 39789,05-09-2016 23:34:31
+98441 32533,70129 62374,05-09-2016 23:35:56
+78133 10302,93423 23000,05-09-2016 23:35:58
+78290 31269,97386 37259,05-09-2016 23:37:34
+98453 86521,93410 56456,05-09-2016 23:43:44
+98453 46196,94005 06213,05-09-2016 23:45:09
+89071 31755,78290 99865,05-09-2016 23:50:40
+83015 22251,78295 60375,05-09-2016 23:57:32
+97424 53609,97385 70012,05-09-2016 23:58:11
+78295 65598,98440 65896,06-09-2016 06:04:53
+81520 43406,92421 64236,06-09-2016 06:08:01
+94489 95536,94492 23068,06-09-2016 06:09:55
+94491 55790,90359 99240,06-09-2016 06:19:29
+90359 91512,94492 23068,06-09-2016 06:21:08
+94482 95223,97425 92186,06-09-2016 06:22:32
+81517 73746,94497 77615,06-09-2016 06:25:56
+78295 48262,70121 27677,06-09-2016 06:33:49
+94499 20763,93412 66159,06-09-2016 06:34:49
+94497 44333,97385 70012,06-09-2016 06:35:36
+90365 51029,94499 38099,06-09-2016 06:40:39
+97385 70012,97424 53609,06-09-2016 06:41:26
+90366 69257,90082 61126,06-09-2016 06:43:16
+90354 08732,94499 20763,06-09-2016 06:45:25
+97421 07528,97399 92703,06-09-2016 06:45:28
+98441 32533,70129 62374,06-09-2016 06:49:20
+93410 56456,98453 86521,06-09-2016 06:59:28
+92421 64236,81520 43406,06-09-2016 06:59:47
+97424 60171,94486 40312,06-09-2016 07:06:55
+90366 69257,90082 61126,06-09-2016 07:08:02
+93422 47940,90084 16988,06-09-2016 07:15:17
+78290 31269,97386 37259,06-09-2016 07:22:50
+97416 17124,90194 00845,06-09-2016 07:22:55
+92411 96415,97406 74488,06-09-2016 07:29:09
+74066 31484,98454 90038,06-09-2016 07:34:27
+92413 38675,90362 07317,06-09-2016 07:36:21
+81510 47188,97429 02055,06-09-2016 07:37:54
+98448 72117,93436 09781,06-09-2016 07:38:26
+97425 92186,94482 95223,06-09-2016 07:39:03
+93418 41992,97385 35042,06-09-2016 07:39:57
+98440 68457,95264 40233,06-09-2016 07:43:37
+77956 90632,92411 96415,06-09-2016 07:44:33
+98449 60656,90084 16988,06-09-2016 07:45:34
+98446 78140,98444 72482,06-09-2016 07:45:49
+78138 56841,99009 32475,06-09-2016 07:51:47
+94499 20763,90354 08732,06-09-2016 07:54:16
+97403 09983,90198 03659,06-09-2016 07:55:08
+90355 94399,98452 19037,06-09-2016 08:08:57
+99616 15114,94006 62384,06-09-2016 08:09:03
+94487 29969,97419 41164,06-09-2016 08:09:51
+90194 00845,97416 17124,06-09-2016 08:13:37
+97385 35042,93418 41992,06-09-2016 08:19:45
+90359 79636,70121 27677,06-09-2016 08:22:05
+93436 09781,98448 72117,06-09-2016 08:34:39
+74066 93594,78136 65840,06-09-2016 08:35:34
+84314 16122,94499 20763,06-09-2016 08:39:05
+97425 12708,90366 36573,06-09-2016 08:46:56
+94489 72078,92415 91418,06-09-2016 08:50:45
+84313 45689,78295 65598,06-09-2016 08:51:40
+78136 65840,74066 93594,06-09-2016 08:54:16
+90365 51029,94499 38099,06-09-2016 09:01:10
+78993 92058,92411 96415,06-09-2016 09:02:23
+98444 72482,98446 78140,06-09-2016 09:03:28
+98448 72117,93436 09781,06-09-2016 09:04:27
+90366 36573,97425 12708,06-09-2016 09:11:39
+78136 65840,74066 93594,06-09-2016 09:18:30
+98444 42212,97393 04671,06-09-2016 09:19:18
+97414 62784,98449 60656,06-09-2016 09:19:20
+81524 55552,97380 60551,06-09-2016 09:20:45
+78295 48262,70121 27677,06-09-2016 09:21:15
+90359 91512,94489 95536,06-09-2016 09:21:18
+90358 98099,97406 74488,06-09-2016 09:38:11
+78133 10302,93423 23000,06-09-2016 09:44:30
+94489 72078,97416 29480,06-09-2016 09:45:57
+90352 50054,97389 12538,06-09-2016 09:52:44
+97385 35042,93418 41992,06-09-2016 09:53:16
+77950 18278,89078 69605,06-09-2016 09:54:52
+92411 96415,78993 92058,06-09-2016 09:58:19
+94480 64700,90088 09624,06-09-2016 10:01:23
+81524 55552,97380 60551,06-09-2016 10:04:22
+84313 45689,78295 65598,06-09-2016 10:09:30
+99006 60463,99003 88572,06-09-2016 10:11:28
+94491 55790,90359 99240,06-09-2016 10:14:05
+90082 61126,90366 69257,06-09-2016 10:16:09
+95264 40233,98440 68457,06-09-2016 10:16:16
+93436 09781,98448 72117,06-09-2016 10:21:51
+94497 77615,81517 73746,06-09-2016 10:24:41
+94485 80091,84312 48999,06-09-2016 10:25:47
+83015 22251,78295 60375,06-09-2016 10:28:29
+83012 37742,70121 27677,06-09-2016 10:32:30
+98454 90038,90359 52497,06-09-2016 10:47:03
+90354 08732,94499 20763,06-09-2016 10:49:56
+78138 56841,97426 75324,06-09-2016 10:50:36
+97449 50000,78295 78750,06-09-2016 10:52:26
+78295 48262,70121 27677,06-09-2016 10:54:04
+98445 33687,97403 49292,06-09-2016 11:02:59
+90351 35947,97424 21092,06-09-2016 11:03:46
+70121 27677,90359 79636,06-09-2016 11:04:07
+97380 60551,90365 51029,06-09-2016 11:10:32
+83019 53227,98446 66723,06-09-2016 11:23:00
+81526 05544,99612 41256,06-09-2016 11:23:40
+97421 07528,90083 59148,06-09-2016 11:24:37
+90359 99240,94491 55790,06-09-2016 11:28:46
+98442 33257,95262 44233,06-09-2016 11:38:54
+94480 64700,90088 09624,06-09-2016 11:42:39
+81525 78007,93418 41992,06-09-2016 11:43:32
+93427 56500,98447 12671,06-09-2016 11:45:38
+78299 99223,92424 51984,06-09-2016 11:45:40
+97421 07528,90083 59148,06-09-2016 11:47:38
+93410 56456,98453 86521,06-09-2016 11:50:12
+98453 46196,94005 06213,06-09-2016 11:51:04
+84314 16122,94499 20763,06-09-2016 11:54:33
+84314 16122,94499 20763,06-09-2016 12:02:33
+77950 18278,89078 69605,06-09-2016 12:03:19
+97419 41164,94487 29969,06-09-2016 12:05:54
+81525 78007,93418 41992,06-09-2016 12:07:32
+98449 60656,97414 62784,06-09-2016 12:14:57
+70121 27677,78295 48262,06-09-2016 12:20:10
+98444 72482,98446 78140,06-09-2016 12:22:06
+92424 51984,78299 99223,06-09-2016 12:25:19
+90088 09624,93434 31551,06-09-2016 12:26:53
+94491 55790,90359 99240,06-09-2016 12:36:38
+99004 86250,97390 23922,06-09-2016 12:38:01
+97391 99665,90368 72970,06-09-2016 12:39:19
+98446 78140,98440 65896,06-09-2016 12:40:14
+97420 86635,90193 20957,06-09-2016 12:45:16
+98440 65896,78295 65598,06-09-2016 12:49:57
+90359 52497,97390 23922,06-09-2016 12:50:28
+74060 75431,92413 79027,06-09-2016 12:53:23
+90359 91512,94489 95536,06-09-2016 12:55:37
+94482 95223,97425 92186,06-09-2016 12:59:11
+90194 00845,97416 17124,06-09-2016 13:03:34
+90352 50054,97389 12538,06-09-2016 13:04:30
+98451 87493,97424 21092,06-09-2016 13:05:15
+98440 65896,98446 78140,06-09-2016 13:06:44
+97406 74488,90358 98099,06-09-2016 13:08:30
+99616 15114,94006 62384,06-09-2016 13:11:21
+90362 07317,92413 38675,06-09-2016 13:18:00
+90088 09624,94480 64700,06-09-2016 13:18:36
+90359 79636,70121 27677,06-09-2016 13:19:19
+97415 99182,97393 04671,06-09-2016 13:19:29
+97424 53609,90197 69887,06-09-2016 13:19:32
+77950 18278,89078 69605,06-09-2016 13:27:37
+84314 16122,94499 20763,06-09-2016 13:30:13
+95269 20533,97449 50000,06-09-2016 13:36:52
+98448 87878,90366 36573,06-09-2016 13:43:05
+97424 21092,90351 35947,06-09-2016 13:46:52
+89076 36757,99001 95783,06-09-2016 13:52:18
+92414 22596,93421 63491,06-09-2016 13:56:24
+90198 03659,97403 09983,06-09-2016 13:57:52
+90359 52497,97390 23922,06-09-2016 13:58:44
+98446 66723,97422 22278,06-09-2016 14:02:19
+99617 74886,98445 42844,06-09-2016 14:03:50
+78295 60375,83015 22251,06-09-2016 14:11:26
+97393 04671,97415 99182,06-09-2016 14:11:51
+90356 11723,81525 12041,06-09-2016 14:12:50
+98453 86521,93410 56456,06-09-2016 14:13:55
+81515 65055,78295 48262,06-09-2016 14:20:12
+92415 91418,94489 72078,06-09-2016 14:25:00
+90082 61126,90366 69257,06-09-2016 14:25:04
+94497 77615,81517 73746,06-09-2016 14:27:12
+78138 56841,99009 32475,06-09-2016 14:34:22
+90356 11723,81525 12041,06-09-2016 14:35:18
+70121 27677,90359 79636,06-09-2016 14:37:41
+93412 66159,94499 20763,06-09-2016 14:43:34
+84313 45689,78295 65598,06-09-2016 14:46:10
+93418 41992,81525 78007,06-09-2016 15:01:02
+81526 05544,99612 41256,06-09-2016 15:05:12
+93410 56456,98453 86521,06-09-2016 15:05:12
+94492 23068,90359 91512,06-09-2016 15:07:48
+90197 69887,99610 89720,06-09-2016 15:11:45
+93410 98013,98441 32533,06-09-2016 15:13:18
+98454 07778,93412 66159,06-09-2016 15:18:52
+90359 52497,97390 23922,06-09-2016 15:21:54
+77950 18278,89078 69605,06-09-2016 15:22:54
+99009 32475,78138 56841,06-09-2016 15:23:50
+93410 56456,98453 86521,06-09-2016 15:23:52
+97395 95120,94490 65627,06-09-2016 15:24:59
+90358 98099,97406 74488,06-09-2016 15:25:18
+99009 32475,78138 56841,06-09-2016 15:25:46
+94499 38099,90365 51029,06-09-2016 15:26:19
+81526 05544,99612 41256,06-09-2016 15:28:58
+87149 57915,92428 82401,06-09-2016 15:29:04
+93436 09781,98448 72117,06-09-2016 15:30:05
+92424 51984,78299 99223,06-09-2016 15:32:03
+93418 41992,97385 35042,06-09-2016 15:32:16
+97380 60551,78298 91466,06-09-2016 15:33:12
+81515 65055,78295 48262,06-09-2016 15:39:49
+90084 16988,93422 47940,06-09-2016 15:44:43
+90194 08626,98444 95768,06-09-2016 15:45:20
+94497 44333,90087 42537,06-09-2016 15:46:34
+90359 91512,94492 23068,06-09-2016 15:54:46
+97406 74488,92411 96415,06-09-2016 15:54:56
+94497 44333,97385 70012,06-09-2016 15:55:00
+93434 31551,90088 09624,06-09-2016 15:57:33
+90351 35947,97424 21092,06-09-2016 15:58:00
+99009 32475,81519 62015,06-09-2016 16:01:10
+97419 41164,94487 29969,06-09-2016 16:06:43
+94499 20763,97386 20071,06-09-2016 16:06:50
+94492 23068,90359 91512,06-09-2016 16:18:31
+70121 27677,83012 37742,06-09-2016 16:23:51
+77950 18278,89078 69605,06-09-2016 16:26:57
+99004 86250,97390 23922,06-09-2016 16:29:56
+78295 65598,84313 45689,06-09-2016 16:32:15
+97424 53609,97385 70012,06-09-2016 16:35:49
+97406 74488,90358 98099,06-09-2016 16:36:55
+83019 39880,87146 31956,06-09-2016 16:39:23
+90367 90080,74066 93594,06-09-2016 16:47:40
+94489 72078,97416 29480,06-09-2016 16:48:02
+98440 02823,81515 42171,06-09-2016 16:48:15
+78299 99223,92424 51984,06-09-2016 16:48:58
+98441 32533,70129 62374,06-09-2016 16:49:25
+98441 32533,93410 98013,06-09-2016 16:51:50
+98458 13389,93423 23000,06-09-2016 16:53:47
+93410 98013,78295 60375,06-09-2016 16:53:56
+98448 86633,78293 91304,06-09-2016 16:59:55
+90355 94399,97391 99665,06-09-2016 17:03:28
+97426 75324,78138 56841,06-09-2016 17:09:31
+98454 07778,93412 66159,06-09-2016 17:10:52
+94005 06213,98453 46196,06-09-2016 17:14:39
+90088 09624,93434 31551,06-09-2016 17:15:26
+97385 70012,97424 53609,06-09-2016 17:16:53
+93434 31551,90088 09624,06-09-2016 17:20:10
+81515 42171,98440 02823,06-09-2016 17:20:28
+97449 50000,95269 20533,06-09-2016 17:27:21
+98440 65896,78295 65598,06-09-2016 17:31:36
+97416 17124,90194 00845,06-09-2016 17:34:26
+90365 51029,97380 60551,06-09-2016 17:37:57
+93416 07259,78132 18081,06-09-2016 17:44:58
+97412 66065,94006 62384,06-09-2016 17:46:14
+97416 29480,94489 72078,06-09-2016 17:48:33
+81515 42171,98440 02823,06-09-2016 17:50:19
+78295 60375,83015 22251,06-09-2016 17:52:43
+94489 95536,93418 82576,06-09-2016 17:59:29
+98446 66723,83019 53227,06-09-2016 18:06:36
+90362 07317,92413 38675,06-09-2016 18:08:02
+93427 56500,98447 12671,06-09-2016 18:09:13
+97426 75324,78138 56841,06-09-2016 18:14:18
+78295 65598,98440 65896,06-09-2016 18:22:19
+94492 23068,94489 95536,06-09-2016 18:27:22
+90359 91512,94489 95536,06-09-2016 18:27:27
+97386 37259,78290 31269,06-09-2016 18:27:43
+97391 99665,94488 97308,06-09-2016 18:28:23
+81519 62015,99009 32475,06-09-2016 18:33:30
+98446 78140,98440 65896,06-09-2016 18:38:14
+81519 62015,99009 32475,06-09-2016 18:39:03
+93422 47940,90084 16988,06-09-2016 18:40:19
+98454 07778,93412 66159,06-09-2016 18:40:37
+94491 55790,90359 99240,06-09-2016 18:42:49
+94489 72078,97416 29480,06-09-2016 18:48:09
+92424 51984,78299 99223,06-09-2016 18:52:43
+94491 55790,90359 99240,06-09-2016 18:59:40
+97391 99665,94488 97308,06-09-2016 19:00:23
+97421 07528,90083 59148,06-09-2016 19:02:05
+90084 16988,93422 47940,06-09-2016 19:04:51
+94495 34273,94491 05266,06-09-2016 19:05:29
+81517 73746,94497 77615,06-09-2016 19:17:36
+98444 95768,99003 47921,06-09-2016 19:26:29
+81522 26166,97380 86781,06-09-2016 19:27:55
+97403 09983,90198 03659,06-09-2016 19:42:05
+97421 07528,97399 92703,06-09-2016 19:50:03
+97424 53609,97385 70012,06-09-2016 19:52:25
+97416 29480,94489 72078,06-09-2016 20:26:01
+90084 16988,98449 60656,06-09-2016 20:27:34
+98458 13389,93423 23000,06-09-2016 20:32:43
+97393 04671,97415 99182,06-09-2016 20:34:46
+93418 41992,97385 35042,06-09-2016 20:35:10
+98442 33257,95262 44233,06-09-2016 20:36:55
+94497 44333,97385 70012,06-09-2016 20:44:08
+97424 60171,94486 40312,06-09-2016 20:44:37
+98444 95768,99003 47921,06-09-2016 20:45:13
+70121 27677,78295 48262,06-09-2016 20:55:13
+94489 72078,97416 29480,06-09-2016 20:58:18
+90357 17994,93420 59147,06-09-2016 21:08:48
+94485 80091,84312 48999,06-09-2016 21:08:52
+97390 23922,90359 52497,06-09-2016 21:10:20
+97403 09983,90198 03659,06-09-2016 21:13:35
+90199 91061,97414 15280,06-09-2016 21:14:30
+97380 60551,90365 51029,06-09-2016 21:15:05
+98440 02823,81515 42171,06-09-2016 21:18:05
+90367 90080,74066 93594,06-09-2016 21:20:39
+97386 20071,94499 20763,06-09-2016 21:26:11
+93421 63491,92414 22596,06-09-2016 21:26:53
+90368 72970,97391 99665,06-09-2016 21:35:45
+81517 73746,94497 77615,06-09-2016 21:41:42
+81520 43406,92421 64236,06-09-2016 21:45:43
+93418 41992,81525 78007,06-09-2016 21:49:20
+90368 72970,94001 07403,06-09-2016 21:49:36
+98444 42212,97393 04671,06-09-2016 22:02:13
+93436 09781,98448 72117,06-09-2016 22:02:27
+98454 07778,93412 66159,06-09-2016 22:09:36
+97424 21092,90351 35947,06-09-2016 22:10:14
+97403 49292,98445 33687,06-09-2016 22:11:28
+98449 60656,90084 16988,06-09-2016 22:20:28
+98440 65896,98446 78140,06-09-2016 22:21:18
+92421 09526,89076 36757,06-09-2016 22:21:32
+94006 62384,99616 15114,06-09-2016 22:25:37
+97421 07528,90083 59148,06-09-2016 22:36:05
+97424 53609,90197 69887,06-09-2016 22:36:07
+97406 74488,90358 98099,06-09-2016 22:38:48
+98446 66723,83019 53227,06-09-2016 22:41:11
+90366 69257,90082 61126,06-09-2016 22:43:32
+98446 78140,98444 72482,06-09-2016 22:45:31
+90366 69257,90082 61126,06-09-2016 22:49:58
+93410 56456,98453 86521,06-09-2016 22:56:11
+98453 86521,93410 56456,06-09-2016 22:59:59
+78290 30467,87141 73076,06-09-2016 23:02:54
+90361 52679,90359 91512,06-09-2016 23:04:29
+97421 07528,98454 07778,06-09-2016 23:08:53
+98442 33257,95262 44233,06-09-2016 23:09:46
+97385 70012,94497 44333,06-09-2016 23:14:17
+83015 22251,78295 60375,06-09-2016 23:18:12
+94492 23068,90359 91512,06-09-2016 23:30:20
+90365 06212,97424 22395,06-09-2016 23:34:41
+98453 46196,94005 06213,06-09-2016 23:34:47
+97390 23922,90359 52497,06-09-2016 23:36:03
+89076 07067,93421 63491,06-09-2016 23:38:06
+78295 65598,98440 65896,06-09-2016 23:38:15
+93423 23000,98458 13389,06-09-2016 23:40:45
+97424 53609,97385 70012,06-09-2016 23:40:56
+93421 63491,92414 22596,06-09-2016 23:42:11
+93410 98013,98441 32533,06-09-2016 23:45:01
+93418 41992,97385 35042,06-09-2016 23:55:33
+98452 19037,90355 94399,06-09-2016 23:57:05
+90193 20957,97420 86635,06-09-2016 23:57:51
+92411 96415,77956 90632,07-09-2016 06:04:14
+94485 80091,84312 48999,07-09-2016 06:07:09
+70121 27677,83012 37742,07-09-2016 06:11:14
+81520 43406,92421 64236,07-09-2016 06:13:10
+78295 48262,81515 65055,07-09-2016 06:13:59
+94492 23068,90359 91512,07-09-2016 06:14:00
+87141 73076,78290 30467,07-09-2016 06:14:21
+92414 22596,93421 63491,07-09-2016 06:17:18
+94489 95536,93418 82576,07-09-2016 06:17:25
+92425 27794,93432 65750,07-09-2016 06:22:08
+97424 60171,94486 40312,07-09-2016 06:36:40
+94497 44333,90087 42537,07-09-2016 06:38:25
+90366 69257,90082 61126,07-09-2016 06:39:50
+97391 99665,90355 94399,07-09-2016 06:52:39
+94497 44333,90087 42537,07-09-2016 06:57:59
+97424 22395,90365 06212,07-09-2016 07:04:48
+98449 60656,97414 62784,07-09-2016 07:15:38
+78295 60375,83015 22251,07-09-2016 07:19:51
+99001 23133,90359 79636,07-09-2016 07:27:34
+90088 09624,94480 64700,07-09-2016 07:28:13
+98448 87878,90366 36573,07-09-2016 07:29:05
+93422 47940,90084 16988,07-09-2016 07:32:30
+98453 86521,93410 56456,07-09-2016 07:34:49
+92415 91418,94489 72078,07-09-2016 07:36:31
+98456 86153,90197 24124,07-09-2016 07:45:49
+90366 36573,98448 87878,07-09-2016 07:49:45
+94485 80091,84312 48999,07-09-2016 07:50:14
+74066 93594,78136 65840,07-09-2016 07:50:25
+98446 78140,98440 65896,07-09-2016 07:50:58
+97391 99665,90368 72970,07-09-2016 07:51:01
+89076 36757,99001 95783,07-09-2016 07:51:06
+90359 79636,70121 27677,07-09-2016 07:53:01
+93434 31551,90088 09624,07-09-2016 07:58:02
+97426 75324,78138 56841,07-09-2016 08:02:15
+78295 48262,70121 27677,07-09-2016 08:08:49
+78295 65598,98440 65896,07-09-2016 08:18:01
+90359 91512,94492 23068,07-09-2016 08:20:33
+90359 79636,70121 27677,07-09-2016 08:21:40
+90083 59148,97421 07528,07-09-2016 08:29:45
+90368 72970,97391 99665,07-09-2016 08:29:51
+90359 52497,97390 23922,07-09-2016 08:32:45
+78295 60375,93410 98013,07-09-2016 08:35:03
+97399 92703,78136 42599,07-09-2016 08:40:47
+94497 44333,90087 42537,07-09-2016 08:45:20
+94499 38099,90365 51029,07-09-2016 08:54:10
+74060 75431,97390 23922,07-09-2016 09:10:55
+90199 91061,97414 15280,07-09-2016 09:11:58
+84313 45689,78295 65598,07-09-2016 09:13:35
+90197 69887,97424 53609,07-09-2016 09:21:40
+94499 20763,90354 08732,07-09-2016 09:34:03
+97399 92703,78136 42599,07-09-2016 09:34:35
+90087 42537,94497 44333,07-09-2016 09:38:09
+78295 60375,93410 98013,07-09-2016 09:46:50
+93412 66159,98454 07778,07-09-2016 09:49:25
+94491 55790,90359 99240,07-09-2016 09:50:11
+94492 23068,90359 91512,07-09-2016 09:52:32
+98454 07778,93412 66159,07-09-2016 09:53:04
+98440 68457,95264 40233,07-09-2016 09:53:16
+94480 64700,90088 09624,07-09-2016 09:54:43
+93410 98013,78295 60375,07-09-2016 09:56:06
+94480 64700,90088 09624,07-09-2016 10:00:42
+97390 23922,99004 86250,07-09-2016 10:03:42
+90359 79636,84311 10322,07-09-2016 10:04:06
+92411 96415,77956 90632,07-09-2016 10:13:00
+81526 05544,99612 41256,07-09-2016 10:15:59
+97424 53609,97385 70012,07-09-2016 10:24:05
+97406 74488,90358 98099,07-09-2016 10:26:16
+97412 66065,94006 62384,07-09-2016 10:28:32
+94491 05266,94495 34273,07-09-2016 10:36:10
+99009 32475,81519 62015,07-09-2016 10:39:46
+90355 94399,97391 99665,07-09-2016 10:40:13
+98444 42212,97393 04671,07-09-2016 10:42:54
+98444 95768,99003 47921,07-09-2016 10:44:47
+92411 96415,97406 74488,07-09-2016 10:49:35
+81520 43406,92421 64236,07-09-2016 10:54:12
+90194 00845,81522 26166,07-09-2016 10:57:02
+94489 72078,92415 91418,07-09-2016 11:00:45
+83019 39880,87146 31956,07-09-2016 11:17:22
+94006 62384,97412 66065,07-09-2016 11:18:58
+97446 95253,97428 35959,07-09-2016 11:31:32
+90359 91512,94492 23068,07-09-2016 11:32:34
+99006 60463,99003 88572,07-09-2016 11:35:55
+94487 29969,97419 41164,07-09-2016 11:36:32
+97422 22278,98446 66723,07-09-2016 11:37:02
+97426 75324,78138 56841,07-09-2016 11:43:19
+74060 75431,92413 79027,07-09-2016 11:47:19
+78136 42599,97399 92703,07-09-2016 11:50:56
+74066 31484,98454 90038,07-09-2016 11:55:16
+94497 44333,90087 42537,07-09-2016 11:55:44
+95264 40233,98440 68457,07-09-2016 11:56:49
+90084 16988,98449 60656,07-09-2016 12:00:33
+92414 22596,93421 63491,07-09-2016 12:05:01
+81519 62015,99009 32475,07-09-2016 12:07:16
+90358 98099,97406 74488,07-09-2016 12:08:34
+81525 78007,93418 41992,07-09-2016 12:09:26
+90359 79636,84311 10322,07-09-2016 12:14:24
+90352 50054,97389 12538,07-09-2016 12:14:37
+97414 62784,98449 60656,07-09-2016 12:16:47
+93418 41992,97385 35042,07-09-2016 12:23:57
+97403 09983,97406 06245,07-09-2016 12:27:34
+98446 66723,83019 53227,07-09-2016 12:29:05
+98440 68457,95264 40233,07-09-2016 12:29:32
+90359 91512,94492 23068,07-09-2016 12:32:29
+98445 33687,97403 49292,07-09-2016 12:34:13
+84311 10322,90359 79636,07-09-2016 12:35:56
+97391 99665,90368 72970,07-09-2016 12:37:33
+96566 40412,90352 50054,07-09-2016 12:41:33
+81520 43406,92421 64236,07-09-2016 12:42:57
+92425 27794,93432 65750,07-09-2016 12:43:17
+93418 82576,94489 95536,07-09-2016 12:43:32
+93435 31225,87141 37314,07-09-2016 12:51:15
+99617 74886,98445 42844,07-09-2016 12:54:41
+97421 07528,98454 07778,07-09-2016 13:20:37
+92424 51984,78299 99223,07-09-2016 13:21:13
+97414 62784,98449 60656,07-09-2016 13:22:53
+94485 80091,84312 48999,07-09-2016 13:24:37
+98441 32533,70129 62374,07-09-2016 13:29:27
+93420 59147,90357 17994,07-09-2016 13:29:57
+94489 95536,93418 82576,07-09-2016 13:30:40
+87146 31956,83019 39880,07-09-2016 13:30:58
+97420 86635,90193 20957,07-09-2016 13:37:49
+94499 20763,93412 66159,07-09-2016 13:39:08
+87146 31956,83019 39880,07-09-2016 13:41:14
+87141 37314,93435 31225,07-09-2016 13:42:55
+93435 21961,92411 96415,07-09-2016 13:44:26
+92415 91418,94489 72078,07-09-2016 13:44:28
+78132 18081,77956 90632,07-09-2016 13:50:56
+93410 56456,98453 86521,07-09-2016 13:57:17
+84319 39746,95263 76972,07-09-2016 14:03:35
+92415 91418,94489 72078,07-09-2016 14:05:19
+92411 96415,97406 74488,07-09-2016 14:08:20
+97406 06245,97403 09983,07-09-2016 14:18:31
+81524 55552,97380 60551,07-09-2016 14:21:57
+97403 09983,97406 06245,07-09-2016 14:32:18
+78132 18081,77956 90632,07-09-2016 14:34:45
+90194 00845,97416 17124,07-09-2016 14:40:46
+94489 95536,94492 23068,07-09-2016 14:44:11
+78993 92058,92411 96415,07-09-2016 14:44:57
+93412 66159,98454 07778,07-09-2016 14:47:39
+78290 30467,87141 73076,07-09-2016 14:47:58
+78138 56841,97426 75324,07-09-2016 14:50:04
+97385 70012,94497 44333,07-09-2016 14:54:12
+97390 23922,90359 52497,07-09-2016 14:55:00
+90088 09624,94480 64700,07-09-2016 14:55:51
+93423 23000,98458 13389,07-09-2016 14:59:13
+90362 07317,92413 38675,07-09-2016 15:07:49
+83015 22251,78295 60375,07-09-2016 15:14:21
+97424 60171,94486 40312,07-09-2016 15:14:21
+78133 71458,70127 59322,07-09-2016 15:18:02
+93410 98013,78295 60375,07-09-2016 15:22:10
+94495 34273,94491 05266,07-09-2016 15:24:28
+74060 75431,97390 23922,07-09-2016 15:25:34
+90359 91512,94492 23068,07-09-2016 15:28:53
+98445 42844,99617 74886,07-09-2016 15:30:52
+97424 21092,90351 35947,07-09-2016 15:36:42
+90367 90080,74066 93594,07-09-2016 15:36:55
+90356 11723,81525 12041,07-09-2016 15:38:38
+97447 92655,97404 63904,07-09-2016 15:43:39
+98444 95768,99003 47921,07-09-2016 15:48:23
+92424 51984,78299 99223,07-09-2016 15:57:53
+93412 66159,98454 07778,07-09-2016 15:58:09
+93422 47940,90084 16988,07-09-2016 15:58:42
+87146 31956,83019 39880,07-09-2016 15:59:00
+90362 07317,92413 38675,07-09-2016 16:06:02
+90357 17994,93420 59147,07-09-2016 16:06:13
+78138 56841,97426 75324,07-09-2016 16:16:27
+90366 69257,90082 61126,07-09-2016 16:18:49
+97419 41164,94487 29969,07-09-2016 16:20:20
+90082 61126,90366 69257,07-09-2016 16:21:00
+90199 91061,97414 15280,07-09-2016 16:22:10
+93420 59147,90357 17994,07-09-2016 16:31:28
+98446 66723,97422 22278,07-09-2016 16:31:43
+98440 02823,81515 42171,07-09-2016 16:36:06
+81524 55552,97380 60551,07-09-2016 16:36:56
+78295 48262,70121 27677,07-09-2016 16:43:00
+97380 60551,90365 51029,07-09-2016 16:43:14
+89078 69605,77950 18278,07-09-2016 16:48:51
+93423 23000,78133 10302,07-09-2016 16:57:52
+81520 43406,92421 64236,07-09-2016 16:58:09
+97416 17124,90194 00845,07-09-2016 17:02:07
+97414 15280,90199 91061,07-09-2016 17:07:37
+93422 47940,90084 16988,07-09-2016 17:08:39
+90084 16988,93422 47940,07-09-2016 17:09:56
+97406 74488,92411 96415,07-09-2016 17:11:23
+90354 08732,94499 20763,07-09-2016 17:14:57
+93410 98013,78295 60375,07-09-2016 17:16:09
+93410 98013,78295 60375,07-09-2016 17:20:46
+97406 74488,92411 96415,07-09-2016 17:27:33
+81519 62015,99009 32475,07-09-2016 17:28:50
+90084 16988,93422 47940,07-09-2016 17:30:41
+92411 96415,78993 92058,07-09-2016 17:41:38
+94489 72078,97416 29480,07-09-2016 17:42:04
+94006 62384,97412 66065,07-09-2016 17:43:20
+97399 92703,78136 42599,07-09-2016 17:47:12
+90359 99240,94491 55790,07-09-2016 17:48:17
+74066 93594,78136 65840,07-09-2016 17:49:08
+94490 65627,97395 95120,07-09-2016 17:50:06
+97446 95253,97428 35959,07-09-2016 17:50:44
+94006 62384,99616 15114,07-09-2016 17:52:42
+94499 20763,90354 08732,07-09-2016 17:56:32
+93427 56500,98447 12671,07-09-2016 17:57:28
+90365 51029,97380 60551,07-09-2016 17:57:29
+84314 16122,94499 20763,07-09-2016 17:57:58
+92415 91418,94489 72078,07-09-2016 18:01:56
+84313 45689,78295 65598,07-09-2016 18:04:18
+78136 42599,97399 92703,07-09-2016 18:04:21
+97424 53609,90197 69887,07-09-2016 18:07:27
+92411 96415,78993 92058,07-09-2016 18:12:00
+99003 47921,98444 95768,07-09-2016 18:17:56
+90359 99240,94491 55790,07-09-2016 18:19:19
+93423 23000,78133 10302,07-09-2016 18:31:05
+97449 50000,95269 20533,07-09-2016 18:40:43
+99001 95783,78298 02848,07-09-2016 18:48:14
+84314 00609,99007 06998,07-09-2016 18:55:02
+78295 48262,70121 27677,07-09-2016 18:57:07
+97411 71155,98443 99204,07-09-2016 19:02:29
+94487 29969,97419 41164,07-09-2016 19:10:29
+92411 96415,97406 74488,07-09-2016 19:19:44
+81517 73746,94497 77615,07-09-2016 19:20:25
+97389 12538,90352 50054,07-09-2016 19:22:25
+93432 65750,92425 27794,07-09-2016 19:27:20
+97390 23922,90359 52497,07-09-2016 19:29:47
+78139 24512,90192 87313,07-09-2016 19:31:44
+93427 56500,98447 12671,07-09-2016 19:35:15
+90365 06212,97424 22395,07-09-2016 19:35:15
+87141 37314,93435 31225,07-09-2016 19:37:35
+81525 78007,93418 41992,07-09-2016 19:40:53
+93422 47940,90084 16988,07-09-2016 19:48:49
+97386 37259,78290 31269,07-09-2016 19:49:23
+70121 27677,78295 48262,07-09-2016 19:51:06
+94488 97308,97391 99665,07-09-2016 19:55:08
+81525 12041,90356 11723,07-09-2016 19:56:02
+97419 41164,94487 29969,07-09-2016 19:58:29
+90197 69887,97424 53609,07-09-2016 20:05:15
+92414 22596,93421 63491,07-09-2016 20:17:55
+90365 51029,94499 38099,07-09-2016 20:24:32
+81520 43406,92421 64236,07-09-2016 20:28:02
+90368 72970,94001 07403,07-09-2016 20:36:29
+78133 10302,93423 23000,07-09-2016 20:36:50
+99006 60463,99003 88572,07-09-2016 20:40:39
+78132 18081,77956 90632,07-09-2016 20:41:32
+92411 96415,78993 92058,07-09-2016 20:43:02
+77950 18278,89078 69605,07-09-2016 20:43:12
+90358 98099,97406 74488,07-09-2016 20:43:14
+93423 23000,78133 10302,07-09-2016 20:52:07
+81517 73746,94497 77615,07-09-2016 20:57:32
+97420 86635,90193 20957,07-09-2016 20:59:03
+90192 87313,78139 24512,07-09-2016 21:01:30
+98452 19037,90355 94399,07-09-2016 21:02:01
+94488 97308,97391 99665,07-09-2016 21:05:26
+94499 20763,84314 16122,07-09-2016 21:12:20
+94491 55790,90359 99240,07-09-2016 21:14:34
+78993 92058,92411 96415,07-09-2016 21:19:57
+95264 40233,98440 68457,07-09-2016 21:21:36
+90359 52497,97390 23922,07-09-2016 21:22:03
+90082 61126,90366 69257,07-09-2016 21:26:42
+90088 09624,93434 31551,07-09-2016 21:31:40
+94492 23068,90359 91512,07-09-2016 21:32:31
+84313 45689,78295 65598,07-09-2016 21:32:54
+78290 31269,97386 37259,07-09-2016 21:36:59
+95262 44233,98442 33257,07-09-2016 21:37:04
+97393 04671,95262 44233,07-09-2016 21:40:03
+81515 42171,98440 02823,07-09-2016 21:41:57
+98447 12671,93427 56500,07-09-2016 21:49:46
+92413 79027,74060 75431,07-09-2016 21:50:20
+87141 37314,93435 31225,07-09-2016 21:51:27
+78138 56841,99009 32475,07-09-2016 21:56:03
+97412 66065,94006 62384,07-09-2016 21:56:14
+81524 55552,97380 60551,07-09-2016 21:56:14
+90088 09624,93434 31551,07-09-2016 22:02:00
+98444 72482,98446 78140,07-09-2016 22:06:40
+90352 50054,97389 12538,07-09-2016 22:12:50
+92421 64236,81520 43406,07-09-2016 22:12:53
+97403 09983,90198 03659,07-09-2016 22:14:03
+97395 95120,94490 65627,07-09-2016 22:16:17
+92411 96415,77956 90632,07-09-2016 22:17:08
+81526 05544,99612 41256,07-09-2016 22:18:02
+90355 10919,81524 55552,07-09-2016 22:20:17
+93421 63491,92414 22596,07-09-2016 22:24:35
+93415 21881,98454 90038,07-09-2016 22:24:53
+90359 52497,97390 23922,07-09-2016 22:26:11
+70121 27677,83012 37742,07-09-2016 22:32:49
+78295 48262,70121 27677,07-09-2016 22:34:49
+90355 94399,98452 19037,07-09-2016 22:42:23
+84313 45689,78295 65598,07-09-2016 22:43:10
+92413 38675,90362 07317,07-09-2016 22:49:33
+98454 07778,93412 66159,07-09-2016 22:54:29
+93420 59147,90357 17994,07-09-2016 22:55:17
+77956 90632,78132 18081,07-09-2016 23:00:39
+98458 13389,93423 23000,07-09-2016 23:11:18
+97424 21092,90351 35947,07-09-2016 23:11:27
+90365 51029,97380 60551,07-09-2016 23:12:04
+97391 99665,94488 97308,07-09-2016 23:13:15
+94490 65627,97395 95120,07-09-2016 23:14:17
+90359 79636,84311 10322,07-09-2016 23:22:06
+90083 59148,97421 07528,07-09-2016 23:22:23
+90197 69887,97424 53609,07-09-2016 23:22:34
+98440 65896,78295 65598,07-09-2016 23:29:20
+90359 99240,94491 55790,07-09-2016 23:30:28
+97414 15280,90199 91061,07-09-2016 23:40:15
+94489 72078,92415 91418,07-09-2016 23:43:27
+92425 27794,93432 65750,07-09-2016 23:44:53
+92411 96415,77956 90632,07-09-2016 23:48:03
+94495 34273,94491 05266,07-09-2016 23:48:37
+90193 20957,97420 86635,07-09-2016 23:49:49
+90368 72970,97391 99665,07-09-2016 23:49:57
+78295 65598,84313 45689,07-09-2016 23:50:19
+77950 18278,89078 69605,07-09-2016 23:54:16
+97420 86635,90193 20957,07-09-2016 23:55:24
+78136 65840,74066 93594,08-09-2016 06:09:39
+89076 07067,93421 63491,08-09-2016 06:12:46
+93423 23000,98458 13389,08-09-2016 06:13:58
+92411 96415,78993 92058,08-09-2016 06:18:58
+97415 99182,97393 04671,08-09-2016 06:21:39
+94482 95223,97425 92186,08-09-2016 06:25:50
+90084 16988,98449 60656,08-09-2016 06:26:33
+92421 64236,81520 43406,08-09-2016 06:29:27
+98445 42844,99617 74886,08-09-2016 06:30:47
+90198 03659,97403 09983,08-09-2016 06:31:02
+92413 79027,74060 75431,08-09-2016 06:36:54
+97424 53609,90197 69887,08-09-2016 06:38:38
+99616 15114,94006 62384,08-09-2016 06:43:38
+84311 10322,90359 79636,08-09-2016 06:47:39
+78136 65840,74066 93594,08-09-2016 06:48:47
+94006 62384,99616 15114,08-09-2016 06:51:19
+94499 38099,90365 51029,08-09-2016 06:59:43
+90365 06212,81513 30231,08-09-2016 06:59:57
+97406 06245,97403 09983,08-09-2016 07:01:36
+94495 34273,94491 05266,08-09-2016 07:13:46
+77956 90632,78132 18081,08-09-2016 07:22:56
+90368 72970,97391 99665,08-09-2016 07:24:36
+93423 23000,78133 10302,08-09-2016 07:24:43
+90194 00845,97416 17124,08-09-2016 07:26:41
+90199 91061,97414 15280,08-09-2016 07:33:00
+98441 32533,93410 98013,08-09-2016 07:37:08
+94499 20763,90354 08732,08-09-2016 07:43:45
+98458 13389,93423 23000,08-09-2016 07:46:44
+94499 20763,90354 08732,08-09-2016 07:49:15
+97424 53609,90197 69887,08-09-2016 07:54:50
+98440 68457,95264 40233,08-09-2016 07:55:11
+94489 95536,93418 82576,08-09-2016 07:57:42
+97425 92186,94482 95223,08-09-2016 07:58:13
+90365 51029,97380 60551,08-09-2016 08:03:25
+81515 42171,98440 02823,08-09-2016 08:06:36
+94499 20763,90354 08732,08-09-2016 08:11:26
+98446 78140,98444 72482,08-09-2016 08:34:01
+78299 99223,92424 51984,08-09-2016 08:36:01
+90355 94399,98452 19037,08-09-2016 08:37:15
+94492 23068,94489 95536,08-09-2016 08:39:20
+98449 60656,90084 16988,08-09-2016 08:43:46
+81525 12041,90356 11723,08-09-2016 08:48:49
+98453 46196,94005 06213,08-09-2016 08:55:08
+92411 96415,77956 90632,08-09-2016 08:55:32
+97421 07528,90083 59148,08-09-2016 08:59:03
+94006 62384,97412 66065,08-09-2016 09:07:02
+93410 98013,78295 60375,08-09-2016 09:07:26
+97424 21092,98451 87493,08-09-2016 09:07:51
+93421 63491,92414 22596,08-09-2016 09:10:16
+94491 55790,90359 99240,08-09-2016 09:10:34
+78295 65598,84313 45689,08-09-2016 09:10:50
+81517 73746,94497 77615,08-09-2016 09:12:44
+94490 65627,97395 95120,08-09-2016 09:14:17
+90359 52497,97390 23922,08-09-2016 09:18:20
+81515 65055,78295 48262,08-09-2016 09:28:44
+97406 74488,92411 96415,08-09-2016 09:37:26
+78295 65598,98440 65896,08-09-2016 09:37:29
+94497 44333,97385 70012,08-09-2016 09:38:50
+97385 70012,97424 53609,08-09-2016 09:40:38
+97411 71155,98443 99204,08-09-2016 09:43:05
+99001 95783,89076 36757,08-09-2016 09:48:09
+70121 27677,78295 48262,08-09-2016 09:49:56
+78132 18081,77956 90632,08-09-2016 09:55:40
+90351 49472,90199 67471,08-09-2016 09:58:09
+93436 09781,98448 72117,08-09-2016 10:09:37
+94491 55790,90359 99240,08-09-2016 10:09:38
+78295 60375,83015 22251,08-09-2016 10:14:21
+90359 79636,84311 10322,08-09-2016 10:15:34
+92428 82401,97385 29751,08-09-2016 10:19:41
+74066 31484,98454 90038,08-09-2016 10:26:14
+94488 97308,97391 99665,08-09-2016 10:29:14
+94492 23068,90359 91512,08-09-2016 10:30:37
+97391 99665,94488 97308,08-09-2016 10:35:14
+95264 40233,98440 68457,08-09-2016 10:37:18
+90199 91061,97414 15280,08-09-2016 10:39:01
+94495 34273,94491 05266,08-09-2016 10:45:43
+93428 11808,96565 52272,08-09-2016 10:49:05
+84313 45689,78295 65598,08-09-2016 10:49:49
+70121 27677,90359 79636,08-09-2016 10:51:09
+97421 07528,90083 59148,08-09-2016 10:57:47
+97406 74488,92411 96415,08-09-2016 11:00:26
+98445 42844,99617 74886,08-09-2016 11:03:32
+89078 69605,77950 18278,08-09-2016 11:08:43
+93418 41992,97385 35042,08-09-2016 11:12:23
+99610 89720,90197 69887,08-09-2016 11:13:09
+90083 59148,97421 07528,08-09-2016 11:28:31
+78298 02848,99001 95783,08-09-2016 11:29:08
+94480 31371,97426 25297,08-09-2016 11:30:14
+90366 69257,90082 61126,08-09-2016 11:30:52
+97384 69866,87146 31956,08-09-2016 11:40:23
+83015 22251,78295 60375,08-09-2016 11:40:44
+92424 51984,78299 99223,08-09-2016 11:40:53
+98446 78140,98440 65896,08-09-2016 11:41:40
+93434 31551,90088 09624,08-09-2016 11:43:01
+78138 56841,97426 75324,08-09-2016 11:44:40
+90197 24124,99612 41256,08-09-2016 11:44:44
+92411 96415,97406 74488,08-09-2016 11:47:45
+98440 65896,78295 65598,08-09-2016 11:48:40
+97386 37259,78290 31269,08-09-2016 11:48:43
+99617 74886,98445 42844,08-09-2016 11:54:04
+92411 96415,97406 74488,08-09-2016 11:59:57
+97424 60171,94486 40312,08-09-2016 12:03:19
+94489 72078,97416 29480,08-09-2016 12:06:28
+94499 38099,90365 51029,08-09-2016 12:08:39
+78138 56841,97426 75324,08-09-2016 12:10:53
+81522 26166,90194 00845,08-09-2016 12:13:57
+97424 21092,90351 35947,08-09-2016 12:18:01
+98458 13389,93423 23000,08-09-2016 12:18:29
+97385 70012,94497 44333,08-09-2016 12:20:15
+97446 95253,97428 35959,08-09-2016 12:33:54
+97406 74488,90358 98099,08-09-2016 12:37:07
+93434 31551,90088 09624,08-09-2016 12:38:36
+92421 64236,81520 43406,08-09-2016 12:42:14
+90193 20957,97420 86635,08-09-2016 12:46:47
+98440 65896,98446 78140,08-09-2016 12:47:58
+94482 95223,97425 92186,08-09-2016 12:51:25
+84314 16122,94499 20763,08-09-2016 12:57:07
+99009 32475,81519 62015,08-09-2016 12:57:38
+97424 53609,90197 69887,08-09-2016 13:05:59
+97424 53609,97385 70012,08-09-2016 13:07:19
+99001 95783,89076 36757,08-09-2016 13:09:39
+93436 09781,98448 72117,08-09-2016 13:11:17
+97391 99665,90368 72970,08-09-2016 13:11:48
+99610 89720,90197 69887,08-09-2016 13:16:29
+94489 72078,92415 91418,08-09-2016 13:24:01
+96565 52272,93428 11808,08-09-2016 13:26:43
+94497 77615,81517 73746,08-09-2016 13:26:52
+90365 51029,97380 60551,08-09-2016 13:27:36
+98448 72117,93436 09781,08-09-2016 13:28:23
+81517 73746,94497 77615,08-09-2016 13:29:52
+92411 96415,77956 90632,08-09-2016 13:38:06
+94499 20763,97386 20071,08-09-2016 13:44:29
+94492 23068,90359 91512,08-09-2016 13:44:40
+90351 35947,97424 21092,08-09-2016 13:45:33
+93420 59147,90357 17994,08-09-2016 13:46:32
+84312 48999,94485 80091,08-09-2016 13:47:29
+98451 87493,97424 21092,08-09-2016 13:53:09
+90194 00845,97416 17124,08-09-2016 13:57:52
+90366 36573,98448 87878,08-09-2016 14:03:40
+90357 17994,93420 59147,08-09-2016 14:03:56
+92414 22596,93421 63491,08-09-2016 14:06:15
+90083 59148,97421 07528,08-09-2016 14:10:41
+90197 69887,99610 89720,08-09-2016 14:12:08
+94490 65627,97395 95120,08-09-2016 14:16:48
+94482 95223,97425 92186,08-09-2016 14:20:04
+90352 50054,97389 12538,08-09-2016 14:24:50
+97424 53609,97385 70012,08-09-2016 14:31:53
+97385 70012,97424 53609,08-09-2016 14:35:53
+90359 79636,70121 27677,08-09-2016 14:37:02
+93423 23000,78133 10302,08-09-2016 14:37:26
+99610 89720,90197 69887,08-09-2016 14:42:31
+97380 60551,81524 55552,08-09-2016 14:53:49
+94499 20763,90354 08732,08-09-2016 14:57:31
+93418 41992,97385 35042,08-09-2016 14:58:52
+92421 64236,81520 43406,08-09-2016 15:05:30
+93410 56456,98453 86521,08-09-2016 15:07:50
+97416 29480,94489 72078,08-09-2016 15:12:56
+98445 42844,99617 74886,08-09-2016 15:20:11
+78133 71458,70127 59322,08-09-2016 15:25:40
+90357 17994,93420 59147,08-09-2016 15:30:54
+97406 74488,92411 96415,08-09-2016 15:31:35
+87141 37314,93435 31225,08-09-2016 15:33:44
+97416 29480,94489 72078,08-09-2016 15:34:29
+97391 99665,94488 97308,08-09-2016 15:34:41
+93434 31551,90088 09624,08-09-2016 15:37:27
+89076 36757,92421 09526,08-09-2016 15:39:58
+81519 62015,99009 32475,08-09-2016 15:46:16
+93427 56500,98447 12671,08-09-2016 15:47:38
+98440 02823,81515 42171,08-09-2016 15:52:58
+94499 20763,90354 08732,08-09-2016 15:59:14
+94492 23068,94489 95536,08-09-2016 16:00:39
+94488 97308,97391 99665,08-09-2016 16:01:14
+98449 60656,97414 62784,08-09-2016 16:08:41
+97424 53609,90197 69887,08-09-2016 16:09:00
+94489 95536,93418 82576,08-09-2016 16:10:12
+92414 22596,93421 63491,08-09-2016 16:10:18
+90359 99240,94491 55790,08-09-2016 16:16:50
+90194 00845,81522 26166,08-09-2016 16:20:42
+94489 72078,92415 91418,08-09-2016 16:20:53
+93412 66159,98454 07778,08-09-2016 16:21:15
+97391 99665,90368 72970,08-09-2016 16:23:46
+94006 62384,99616 15114,08-09-2016 16:24:02
+77956 90632,78132 18081,08-09-2016 16:25:33
+97385 29751,92428 82401,08-09-2016 16:31:04
+78295 48262,81515 65055,08-09-2016 16:45:32
+99612 41256,90197 24124,08-09-2016 16:45:52
+90355 94399,97391 99665,08-09-2016 16:46:26
+97395 95120,94490 65627,08-09-2016 16:52:06
+94497 44333,97385 70012,08-09-2016 16:52:06
+97449 50000,78295 78750,08-09-2016 16:54:35
+96565 52272,93428 11808,08-09-2016 16:57:51
+98449 60656,90084 16988,08-09-2016 17:00:40
+90083 59148,97421 07528,08-09-2016 17:04:04
+87141 73076,78290 30467,08-09-2016 17:07:01
+97416 17124,90194 00845,08-09-2016 17:17:44
+93421 63491,92414 22596,08-09-2016 17:20:14
+94491 55790,90359 99240,08-09-2016 17:20:19
+84311 10322,90359 79636,08-09-2016 17:26:38
+94499 20763,97386 20071,08-09-2016 17:28:05
+90368 72970,97391 99665,08-09-2016 17:28:38
+94489 72078,92415 91418,08-09-2016 17:34:17
+90362 07317,92413 38675,08-09-2016 17:37:01
+97446 95253,97428 35959,08-09-2016 17:39:01
+84314 16122,94499 20763,08-09-2016 17:39:36
+98444 42212,97393 04671,08-09-2016 17:43:21
+94490 65627,97395 95120,08-09-2016 17:44:48
+74294 40351,98440 02823,08-09-2016 17:48:07
+93432 65750,92425 27794,08-09-2016 17:49:10
+92415 91418,94489 72078,08-09-2016 17:50:10
+78138 56841,97426 75324,08-09-2016 17:51:51
+94001 07403,90368 72970,08-09-2016 17:51:56
+93422 47940,94488 97308,08-09-2016 17:54:43
+81525 78007,93418 41992,08-09-2016 17:55:17
+92415 91418,94489 72078,08-09-2016 17:56:22
+90084 16988,93422 47940,08-09-2016 17:59:29
+90357 17994,93420 59147,08-09-2016 18:00:53
+90199 91061,97414 15280,08-09-2016 18:02:19
+99004 86250,97390 23922,08-09-2016 18:04:24
+93435 31225,87141 37314,08-09-2016 18:08:47
+98444 95768,99003 47921,08-09-2016 18:10:15
+78295 60375,93410 98013,08-09-2016 18:17:32
+90366 36573,98448 87878,08-09-2016 18:27:22
+81520 43406,92421 64236,08-09-2016 18:31:22
+78136 65840,74066 93594,08-09-2016 18:31:48
+81525 12041,90356 11723,08-09-2016 18:33:59
+99616 15114,94006 62384,08-09-2016 18:36:02
+92413 38675,90362 07317,08-09-2016 18:39:37
+92413 79027,74060 75431,08-09-2016 18:41:49
+94499 20763,90354 08732,08-09-2016 18:41:52
+98441 32533,70129 62374,08-09-2016 18:43:12
+94489 72078,97416 29480,08-09-2016 18:45:49
+94489 95536,94492 23068,08-09-2016 18:49:48
+84312 48999,94485 80091,08-09-2016 18:54:42
+98442 33257,95262 44233,08-09-2016 18:56:22
+78295 65598,84313 45689,08-09-2016 18:57:24
+90082 61126,90366 69257,08-09-2016 19:01:52
+94497 44333,97385 70012,08-09-2016 19:26:57
+97403 49292,98445 33687,08-09-2016 19:28:49
+99610 89720,90197 69887,08-09-2016 19:37:36
+98454 07778,97421 07528,08-09-2016 19:38:59
+99009 32475,81519 62015,08-09-2016 19:41:18
+84311 10322,90359 79636,08-09-2016 19:44:27
+99001 23133,90359 79636,08-09-2016 19:44:59
+78295 48262,81515 65055,08-09-2016 19:54:58
+89071 31755,78290 99865,08-09-2016 19:55:24
+97399 92703,97421 07528,08-09-2016 19:57:50
+90361 52679,90359 91512,08-09-2016 20:05:44
+90363 85738,99610 89720,08-09-2016 20:08:21
+98441 32533,93410 98013,08-09-2016 20:09:02
+95269 20533,97449 50000,08-09-2016 20:18:33
+92414 22596,93421 63491,08-09-2016 20:25:12
+84313 45689,78295 65598,08-09-2016 20:27:34
+70121 27677,78295 48262,08-09-2016 20:34:53
+90359 52497,97390 23922,08-09-2016 20:35:55
+90192 87313,78139 24512,08-09-2016 20:36:15
+70121 27677,90359 79636,08-09-2016 20:42:22
+93412 66159,94499 20763,08-09-2016 20:47:25
+81510 47188,97429 02055,08-09-2016 20:48:18
+97406 74488,92411 96415,08-09-2016 20:55:57
+90194 00845,97416 17124,08-09-2016 21:01:58
+94485 80091,84312 48999,08-09-2016 21:03:38
+81515 65055,78295 48262,08-09-2016 21:05:15
+97425 92186,94482 95223,08-09-2016 21:06:18
+83015 22251,78295 60375,08-09-2016 21:07:44
+96565 52272,93428 11808,08-09-2016 21:09:09
+92413 38675,90362 07317,08-09-2016 21:17:49
+97386 20071,94499 20763,08-09-2016 21:19:40
+78138 56841,97426 75324,08-09-2016 21:21:10
+87146 31956,83019 39880,08-09-2016 21:24:24
+94499 38099,90365 51029,08-09-2016 21:24:35
+90352 50054,97389 12538,08-09-2016 21:26:39
+81525 78007,93418 41992,08-09-2016 21:35:39
+92411 96415,77956 90632,08-09-2016 21:37:45
+94497 77615,81517 73746,08-09-2016 21:43:19
+78295 65598,98440 65896,08-09-2016 21:46:39
+90362 07317,92413 38675,08-09-2016 21:47:49
+93435 21961,92411 96415,08-09-2016 21:54:48
+94497 77615,81517 73746,08-09-2016 21:59:19
+94001 07403,90368 72970,08-09-2016 22:05:30
+97391 99665,90368 72970,08-09-2016 22:07:34
+94487 29969,97419 41164,08-09-2016 22:08:39
+97380 60551,97414 35000,08-09-2016 22:18:40
+93423 23000,98458 13389,08-09-2016 22:19:56
+90192 87313,78139 24512,08-09-2016 22:20:20
+90351 35947,97424 21092,08-09-2016 22:22:12
+94499 20763,90354 08732,08-09-2016 22:25:09
+87146 31956,83019 39880,08-09-2016 22:35:23
+93423 23000,98458 13389,08-09-2016 22:38:07
+78295 78750,97449 50000,08-09-2016 22:44:30
+94497 44333,97385 70012,08-09-2016 22:51:03
+93412 66159,94499 20763,08-09-2016 22:52:08
+96566 40412,90352 50054,08-09-2016 22:53:27
+90192 87313,78139 24512,08-09-2016 22:59:13
+92413 79027,74060 75431,08-09-2016 23:00:03
+94492 23068,94489 95536,08-09-2016 23:00:31
+90358 98099,97406 74488,08-09-2016 23:01:37
+93420 59147,90357 17994,08-09-2016 23:03:06
+74060 75431,92413 79027,08-09-2016 23:05:10
+93423 23000,78133 10302,08-09-2016 23:09:06
+90357 17994,93420 59147,08-09-2016 23:20:57
+78130 00821,98453 94494,08-09-2016 23:24:00
+97380 60551,78298 91466,08-09-2016 23:24:03
+74066 93594,78136 65840,08-09-2016 23:26:56
+78136 42599,97399 92703,08-09-2016 23:27:38
+97426 75324,78138 56841,08-09-2016 23:33:09
+97416 17124,90194 00845,08-09-2016 23:33:28
+70121 27677,83012 37742,08-09-2016 23:35:29
+98444 72482,98446 78140,08-09-2016 23:36:36
+94486 40312,97424 60171,08-09-2016 23:37:17
+98458 13389,93423 23000,08-09-2016 23:38:31
+97424 53609,90197 69887,08-09-2016 23:48:01
+98440 65896,78295 65598,08-09-2016 23:51:23
+81520 43406,92421 64236,08-09-2016 23:53:45
+97424 53609,90197 69887,09-09-2016 06:02:55
+97414 62784,98449 60656,09-09-2016 06:03:26
+90359 99240,94491 55790,09-09-2016 06:07:08
+95262 44233,98442 33257,09-09-2016 06:08:52
+90084 16988,93422 47940,09-09-2016 06:11:44
+90356 11723,81525 12041,09-09-2016 06:13:55
+98445 42844,99617 74886,09-09-2016 06:18:12
+90358 98099,97406 74488,09-09-2016 06:20:39
+97420 86635,90193 20957,09-09-2016 06:23:46
+97384 69866,87146 31956,09-09-2016 06:25:14
+93420 59147,90357 17994,09-09-2016 06:36:07
+78132 18081,77956 90632,09-09-2016 06:38:08
+97391 99665,94488 97308,09-09-2016 06:38:58
+97406 74488,92411 96415,09-09-2016 06:40:10
+81519 62015,99009 32475,09-09-2016 06:41:30
+97391 99665,90368 72970,09-09-2016 06:42:09
+78295 65598,98440 65896,09-09-2016 06:46:02
+92413 79027,74060 75431,09-09-2016 06:53:05
+81526 05544,99612 41256,09-09-2016 06:54:54
+97414 62784,98449 60656,09-09-2016 06:55:01
+77950 18278,89078 69605,09-09-2016 06:55:57
+99612 41256,81526 05544,09-09-2016 06:57:07
+78138 56841,99009 32475,09-09-2016 07:05:04
+99001 95783,89076 36757,09-09-2016 07:09:02
+97419 41164,94487 29969,09-09-2016 07:15:27
+74060 75431,92413 79027,09-09-2016 07:31:50
+70121 27677,90359 79636,09-09-2016 07:31:55
+94499 20763,84314 16122,09-09-2016 07:31:58
+99001 23133,90359 79636,09-09-2016 07:38:03
+93412 66159,94499 20763,09-09-2016 07:40:10
+98440 02823,81515 42171,09-09-2016 07:43:03
+97424 22395,90365 06212,09-09-2016 07:46:07
+97391 99665,94488 97308,09-09-2016 07:49:34
+98448 72117,93436 09781,09-09-2016 07:57:30
+90199 91061,97414 15280,09-09-2016 07:58:39
+98453 86521,93410 56456,09-09-2016 07:59:18
+90359 79636,84311 10322,09-09-2016 08:02:01
+93423 23000,78133 10302,09-09-2016 08:02:34
+94497 77615,81517 73746,09-09-2016 08:05:46
+90084 16988,98449 60656,09-09-2016 08:07:20
+78295 60375,93410 98013,09-09-2016 08:08:01
+90359 79636,70121 27677,09-09-2016 08:11:26
+94490 65627,97395 95120,09-09-2016 08:11:42
+92415 91418,94489 72078,09-09-2016 08:14:19
+97446 95253,97428 35959,09-09-2016 08:17:23
+84312 48999,94485 80091,09-09-2016 08:24:17
+90361 52679,90359 91512,09-09-2016 08:25:15
+92414 22596,93421 63491,09-09-2016 08:26:01
+94489 95536,93418 82576,09-09-2016 08:28:13
+93436 09781,98448 72117,09-09-2016 08:37:02
+94488 97308,93422 47940,09-09-2016 08:37:02
+93436 09781,98448 72117,09-09-2016 08:37:58
+90359 79636,84311 10322,09-09-2016 08:43:34
+93410 98013,98441 32533,09-09-2016 08:43:59
+92428 82401,97385 29751,09-09-2016 08:48:51
+94006 62384,99616 15114,09-09-2016 08:49:30
+97395 95120,94490 65627,09-09-2016 08:52:54
+84313 45689,78295 65598,09-09-2016 08:53:22
+97385 35042,93418 41992,09-09-2016 08:54:17
+95262 44233,98442 33257,09-09-2016 09:04:50
+96566 40412,90352 50054,09-09-2016 09:13:49
+90352 50054,97389 12538,09-09-2016 09:14:37
+78295 78750,97449 50000,09-09-2016 09:16:36
+97385 70012,94497 44333,09-09-2016 09:20:00
+97424 53609,90197 69887,09-09-2016 09:22:30
+89078 69605,77950 18278,09-09-2016 09:24:29
+84312 48999,94485 80091,09-09-2016 09:37:57
+89078 69605,77950 18278,09-09-2016 09:39:07
+78139 24512,90192 87313,09-09-2016 09:43:35
+93410 98013,98441 32533,09-09-2016 09:45:46
+93416 07259,78132 18081,09-09-2016 09:56:47
+97385 35042,93418 41992,09-09-2016 09:57:28
+81524 55552,97380 60551,09-09-2016 10:02:51
+92414 22596,93421 63491,09-09-2016 10:03:43
+94488 97308,97391 99665,09-09-2016 10:05:02
+78139 24512,90192 87313,09-09-2016 10:05:52
+87141 73076,78290 30467,09-09-2016 10:06:06
+92411 96415,97406 74488,09-09-2016 10:08:39
+98445 42844,99617 74886,09-09-2016 10:11:22
+98448 72117,93436 09781,09-09-2016 10:12:25
+78295 78750,97449 50000,09-09-2016 10:21:45
+90084 16988,93422 47940,09-09-2016 10:24:24
+78290 30467,87141 73076,09-09-2016 10:26:57
+81524 55552,97380 60551,09-09-2016 10:27:30
+78138 56841,97426 75324,09-09-2016 10:28:28
+99009 32475,78138 56841,09-09-2016 10:30:37
+99003 47921,98444 95768,09-09-2016 10:34:07
+97414 62784,98449 60656,09-09-2016 10:34:19
+94488 97308,97391 99665,09-09-2016 10:36:05
+81517 73746,94497 77615,09-09-2016 10:37:53
+97424 21092,90351 35947,09-09-2016 10:39:17
+93412 66159,94499 20763,09-09-2016 10:39:24
+97426 75324,78138 56841,09-09-2016 10:41:25
+93412 66159,98454 07778,09-09-2016 10:41:26
+77956 90632,78132 18081,09-09-2016 10:43:54
+78133 71458,70127 59322,09-09-2016 10:44:49
+97385 70012,94497 44333,09-09-2016 10:47:29
+98440 68457,95264 40233,09-09-2016 10:50:19
+94489 95536,93418 82576,09-09-2016 10:59:53
+94489 72078,97416 29480,09-09-2016 11:00:24
+97424 21092,90351 35947,09-09-2016 11:06:49
+98446 78140,98440 65896,09-09-2016 11:12:57
+97428 35959,97446 95253,09-09-2016 11:14:55
+89078 69605,77950 18278,09-09-2016 11:18:15
+90192 87313,78139 24512,09-09-2016 11:21:39
+95269 20533,97449 50000,09-09-2016 11:24:31
+94006 62384,99616 15114,09-09-2016 11:29:43
+78295 48262,70121 27677,09-09-2016 11:37:03
+90084 16988,98449 60656,09-09-2016 11:39:04
+90365 51029,94499 38099,09-09-2016 11:40:10
+99610 89720,90197 69887,09-09-2016 11:40:13
+94499 20763,97386 20071,09-09-2016 11:40:21
+81524 55552,97380 60551,09-09-2016 11:41:29
+90083 59148,97421 07528,09-09-2016 11:46:34
+90192 87313,78139 24512,09-09-2016 11:47:08
+90356 11723,81525 12041,09-09-2016 11:53:42
+99616 15114,94006 62384,09-09-2016 11:54:11
+97449 50000,95269 20533,09-09-2016 11:55:18
+94488 97308,93422 47940,09-09-2016 12:11:14
+90088 09624,93434 31551,09-09-2016 12:16:48
+90083 59148,97421 07528,09-09-2016 12:17:22
+84311 10322,90359 79636,09-09-2016 12:22:43
+90084 16988,98449 60656,09-09-2016 12:23:36
+97421 07528,90083 59148,09-09-2016 12:24:24
+97403 09983,97406 06245,09-09-2016 12:26:01
+94495 34273,94491 05266,09-09-2016 12:32:10
+98452 19037,90355 94399,09-09-2016 12:39:28
+94480 64700,90088 09624,09-09-2016 12:41:10
+93421 63491,92414 22596,09-09-2016 12:41:59
+90359 52497,97390 23922,09-09-2016 12:42:16
+90366 36573,98448 87878,09-09-2016 12:44:53
+90198 03659,97403 09983,09-09-2016 12:46:29
+97380 60551,81524 55552,09-09-2016 12:47:08
+98440 68457,95264 40233,09-09-2016 12:49:41
+78295 60375,93410 98013,09-09-2016 12:51:15
+97414 15280,90199 91061,09-09-2016 12:54:46
+81522 26166,90194 00845,09-09-2016 12:55:31
+97419 41164,94487 29969,09-09-2016 12:55:58
+98454 07778,93412 66159,09-09-2016 12:57:20
+78138 56841,99009 32475,09-09-2016 12:58:44
+90197 24124,99612 41256,09-09-2016 12:59:01
+93412 66159,98454 07778,09-09-2016 13:01:36
+98453 86521,93410 56456,09-09-2016 13:05:28
+93418 41992,97385 35042,09-09-2016 13:06:36
+89072 39789,87140 67779,09-09-2016 13:14:35
+93418 41992,81525 78007,09-09-2016 13:19:25
+98445 33687,97403 49292,09-09-2016 13:21:54
+97421 07528,90083 59148,09-09-2016 13:26:54
+97416 17124,90194 00845,09-09-2016 13:29:05
+81519 62015,99009 32475,09-09-2016 13:29:25
+98441 32533,70129 62374,09-09-2016 13:32:52
+94497 44333,90087 42537,09-09-2016 13:35:39
+98444 95768,99003 47921,09-09-2016 13:44:47
+94488 97308,93422 47940,09-09-2016 13:44:56
+92424 51984,78299 99223,09-09-2016 13:45:53
+93418 41992,81525 78007,09-09-2016 13:56:23
+93412 66159,98454 07778,09-09-2016 14:05:54
+97424 21092,90351 35947,09-09-2016 14:14:39
+97424 21092,98451 87493,09-09-2016 14:16:07
+93420 59147,90357 17994,09-09-2016 14:17:59
+90368 72970,97391 99665,09-09-2016 14:25:09
+93432 65750,92425 27794,09-09-2016 14:28:16
+74060 75431,92413 79027,09-09-2016 14:40:15
+90088 09624,93434 31551,09-09-2016 14:45:39
+93423 23000,78133 10302,09-09-2016 14:51:14
+90198 03659,97403 09983,09-09-2016 14:52:07
+78295 60375,83015 22251,09-09-2016 14:53:54
+94489 95536,94492 23068,09-09-2016 14:55:09
+97447 92655,97404 63904,09-09-2016 15:00:07
+98440 68457,95264 40233,09-09-2016 15:00:18
+97385 35042,93418 41992,09-09-2016 15:05:16
+90088 09624,93434 31551,09-09-2016 15:10:19
+97424 21092,90351 35947,09-09-2016 15:13:21
+97421 07528,98454 07778,09-09-2016 15:14:20
+97380 60551,90365 51029,09-09-2016 15:15:09
+90193 20957,97420 86635,09-09-2016 15:19:17
+90084 16988,98449 60656,09-09-2016 15:21:33
+98442 33257,95262 44233,09-09-2016 15:26:43
+93410 56456,98453 86521,09-09-2016 15:33:34
+93412 66159,94499 20763,09-09-2016 15:35:07
+78132 18081,77956 90632,09-09-2016 15:35:56
+92415 91418,94489 72078,09-09-2016 15:42:58
+92413 38675,90362 07317,09-09-2016 15:48:22
+97424 21092,98451 87493,09-09-2016 15:52:14
+81515 65055,78295 48262,09-09-2016 15:54:31
+98442 33257,95262 44233,09-09-2016 15:54:40
+90197 69887,99610 89720,09-09-2016 15:58:59
+98453 86521,93410 56456,09-09-2016 16:04:16
+97424 21092,90351 35947,09-09-2016 16:04:20
+97414 15280,90199 91061,09-09-2016 16:06:52
+94497 44333,97385 70012,09-09-2016 16:09:52
+92411 96415,97406 74488,09-09-2016 16:14:42
+96566 40412,90352 50054,09-09-2016 16:21:39
+99617 74886,98445 42844,09-09-2016 16:26:09
+97391 99665,90368 72970,09-09-2016 16:26:34
+81515 65055,78295 48262,09-09-2016 16:28:52
+92414 22596,93421 63491,09-09-2016 16:29:37
+94492 23068,94489 95536,09-09-2016 16:31:36
+97393 04671,98444 42212,09-09-2016 16:31:44
+90358 98099,97406 74488,09-09-2016 16:36:16
+90083 59148,97421 07528,09-09-2016 16:36:25
+98448 72117,93436 09781,09-09-2016 16:39:11
+93410 98013,98441 32533,09-09-2016 16:41:26
+90083 59148,97421 07528,09-09-2016 16:46:19
+78295 48262,81515 65055,09-09-2016 16:47:49
+98444 42212,97393 04671,09-09-2016 16:52:07
+70121 27677,83012 37742,09-09-2016 16:57:09
+94499 38099,90365 51029,09-09-2016 16:58:00
+94006 62384,97412 66065,09-09-2016 16:58:32
+93427 56500,98447 12671,09-09-2016 17:00:54
+94005 06213,98453 46196,09-09-2016 17:03:47
+93423 23000,98458 13389,09-09-2016 17:05:16
+99009 32475,81519 62015,09-09-2016 17:07:21
+94499 20763,97386 20071,09-09-2016 17:11:17
+94487 29969,97419 41164,09-09-2016 17:16:55
+94001 07403,90368 72970,09-09-2016 17:17:03
+81526 05544,99612 41256,09-09-2016 17:20:05
+92424 51984,78299 99223,09-09-2016 17:20:06
+78295 48262,70121 27677,09-09-2016 17:25:59
+98448 72117,93436 09781,09-09-2016 17:26:03
+98453 86521,93410 56456,09-09-2016 17:26:12
+97424 21092,90351 35947,09-09-2016 17:29:35
+94486 40312,97424 60171,09-09-2016 17:34:30
+78295 60375,93410 98013,09-09-2016 17:35:01
+90088 09624,93434 31551,09-09-2016 17:36:28
+90197 24124,99612 41256,09-09-2016 17:44:26
+81525 78007,93418 41992,09-09-2016 17:47:49
+97416 29480,94489 72078,09-09-2016 17:55:10
+98445 42844,99617 74886,09-09-2016 17:58:52
+97389 12538,90352 50054,09-09-2016 17:59:09
+90194 00845,97416 17124,09-09-2016 18:04:30
+93415 21881,98454 90038,09-09-2016 18:08:23
+98453 86521,93410 56456,09-09-2016 18:28:40
+90356 11723,81525 12041,09-09-2016 18:31:39
+98444 42212,97393 04671,09-09-2016 18:33:44
+90368 72970,97391 99665,09-09-2016 18:33:56
+97420 86635,90193 20957,09-09-2016 18:37:57
+97449 50000,95269 20533,09-09-2016 18:41:15
+97424 22395,90365 06212,09-09-2016 18:41:53
+94492 23068,90359 91512,09-09-2016 18:52:53
+92413 79027,74060 75431,09-09-2016 19:05:28
+95262 44233,98442 33257,09-09-2016 19:05:47
+97389 12538,90352 50054,09-09-2016 19:13:26
+81517 73746,94497 77615,09-09-2016 19:15:14
+97403 09983,90198 03659,09-09-2016 19:15:58
+94006 62384,99616 15114,09-09-2016 19:20:31
+93421 63491,92414 22596,09-09-2016 19:22:35
+94489 72078,97416 29480,09-09-2016 19:23:21
+98440 02823,81515 42171,09-09-2016 19:27:10
+70121 27677,78295 48262,09-09-2016 19:30:59
+92411 96415,97406 74488,09-09-2016 19:34:17
+97390 23922,90359 52497,09-09-2016 19:36:04
+90362 07317,92413 38675,09-09-2016 19:39:44
+78133 71458,70127 59322,09-09-2016 19:46:45
+90355 94399,97391 99665,09-09-2016 19:51:10
+90362 07317,92413 38675,09-09-2016 19:59:29
+93412 66159,98454 07778,09-09-2016 20:02:39
+93418 41992,81525 78007,09-09-2016 20:08:47
+94480 64700,90088 09624,09-09-2016 20:15:49
+83015 22251,78295 60375,09-09-2016 20:16:47
+97425 12708,90366 36573,09-09-2016 20:17:48
+97424 60171,94486 40312,09-09-2016 20:19:23
+92415 91418,94489 72078,09-09-2016 20:32:22
+90361 52679,90359 91512,09-09-2016 20:32:30
+99007 06998,84314 00609,09-09-2016 20:37:20
+97406 74488,90358 98099,09-09-2016 20:40:00
+78295 60375,93410 98013,09-09-2016 20:42:19
+98448 86633,78293 91304,09-09-2016 20:42:30
+90083 59148,97421 07528,09-09-2016 20:42:59
+99617 74886,98445 42844,09-09-2016 20:43:34
+92411 96415,97406 74488,09-09-2016 20:44:40
+90194 00845,97416 17124,09-09-2016 20:44:53
+90365 51029,94499 38099,09-09-2016 20:46:34
+83015 22251,78295 60375,09-09-2016 20:47:54
+97428 35959,97446 95253,09-09-2016 20:48:52
+90194 08626,98444 95768,09-09-2016 20:52:53
+99003 47921,98444 95768,09-09-2016 20:59:05
+90366 36573,97425 12708,09-09-2016 21:01:35
+94482 95223,97425 92186,09-09-2016 21:02:31
+90082 61126,90366 69257,09-09-2016 21:08:26
+97385 70012,97424 53609,09-09-2016 21:10:57
+90193 20957,97420 86635,09-09-2016 21:17:38
+97421 07528,90083 59148,09-09-2016 21:17:39
+92428 82401,97385 29751,09-09-2016 21:23:45
+93420 59147,90357 17994,09-09-2016 21:23:59
+97416 17124,90194 00845,09-09-2016 21:27:18
+90084 16988,93422 47940,09-09-2016 21:28:10
+97390 23922,90359 52497,09-09-2016 21:35:46
+98441 32533,93410 98013,09-09-2016 21:43:27
+83019 53227,98446 66723,09-09-2016 21:46:30
+94499 20763,90354 08732,09-09-2016 21:49:52
+92411 96415,78993 92058,09-09-2016 21:50:32
+97415 99182,97393 04671,09-09-2016 21:52:07
+93410 98013,98441 32533,09-09-2016 21:52:28
+78290 30467,87141 73076,09-09-2016 21:55:12
+90351 35947,97424 21092,09-09-2016 21:57:02
+90359 91512,94492 23068,09-09-2016 22:01:27
+98453 86521,93410 56456,09-09-2016 22:03:51
+97414 62784,98449 60656,09-09-2016 22:05:02
+83019 53227,98446 66723,09-09-2016 22:10:52
+92425 27794,93432 65750,09-09-2016 22:14:59
+98454 07778,93412 66159,09-09-2016 22:24:14
+98442 33257,95262 44233,09-09-2016 22:25:53
+99004 86250,97390 23922,09-09-2016 22:27:31
+95262 44233,98442 33257,09-09-2016 22:31:25
+90365 51029,94499 38099,09-09-2016 22:35:26
+78298 91466,97380 60551,09-09-2016 22:35:33
+98454 90038,90359 52497,09-09-2016 22:37:28
+81525 12041,90356 11723,09-09-2016 22:43:47
+97391 99665,90368 72970,09-09-2016 22:45:32
+78290 30467,87141 73076,09-09-2016 22:45:37
+98449 60656,90084 16988,09-09-2016 22:46:05
+90194 00845,97416 17124,09-09-2016 22:46:20
+94488 97308,97391 99665,09-09-2016 22:46:23
+98440 65896,78295 65598,09-09-2016 22:51:13
+97391 99665,90368 72970,09-09-2016 22:56:29
+84314 16122,94499 20763,09-09-2016 22:57:22
+97424 53609,97385 70012,09-09-2016 23:06:06
+98440 65896,93418 41992,09-09-2016 23:07:09
+93418 41992,81525 78007,09-09-2016 23:13:34
+98440 65896,78295 65598,09-09-2016 23:14:24
+90366 36573,97425 12708,09-09-2016 23:16:00
+90366 69257,90082 61126,09-09-2016 23:32:21
+98440 68457,95264 40233,09-09-2016 23:45:36
+98441 32533,70129 62374,09-09-2016 23:48:12
+97414 62784,98449 60656,09-09-2016 23:49:06
+90354 08732,94499 20763,09-09-2016 23:50:13
+90083 59148,97421 07528,09-09-2016 23:53:26
+97414 15280,90199 91061,09-09-2016 23:54:32
+97416 29480,94489 72078,09-09-2016 23:56:11
+92411 96415,77956 90632,09-09-2016 23:58:48
+87146 31956,83019 39880,10-09-2016 06:05:27
+98458 13389,93423 23000,10-09-2016 06:06:34
+92415 91418,94489 72078,10-09-2016 06:08:58
+78290 31269,97386 37259,10-09-2016 06:13:03
+93410 98013,78295 60375,10-09-2016 06:14:18
+93410 98013,78295 60375,10-09-2016 06:14:24
+77956 90632,78132 18081,10-09-2016 06:14:50
+78295 60375,83015 22251,10-09-2016 06:22:26
+93436 09781,98448 72117,10-09-2016 06:24:38
+98440 68457,95264 40233,10-09-2016 06:26:44
+90199 91061,97414 15280,10-09-2016 06:29:11
+90359 91512,94492 23068,10-09-2016 06:35:57
+99616 15114,94006 62384,10-09-2016 06:37:02
+98440 65896,78295 65598,10-09-2016 06:37:14
+98441 32533,93410 98013,10-09-2016 06:41:17
+98452 19037,90355 94399,10-09-2016 06:43:00
+98453 46196,94005 06213,10-09-2016 06:45:24
+77956 90632,92411 96415,10-09-2016 06:50:29
+93421 63491,92414 22596,10-09-2016 07:02:36
+97424 22395,90365 06212,10-09-2016 07:06:13
+78295 60375,93410 98013,10-09-2016 07:08:03
+98449 60656,90084 16988,10-09-2016 07:08:14
+97421 07528,90083 59148,10-09-2016 07:14:28
+98440 68457,95264 40233,10-09-2016 07:16:06
+92411 96415,78993 92058,10-09-2016 07:18:27
+98440 65896,78295 65598,10-09-2016 07:18:30
+78993 92058,92411 96415,10-09-2016 07:18:49
+78295 48262,81515 65055,10-09-2016 07:26:28
+97425 92186,94482 95223,10-09-2016 07:29:38
+77950 18278,89078 69605,10-09-2016 07:35:57
+97390 23922,90359 52497,10-09-2016 07:45:21
+78295 60375,93410 98013,10-09-2016 07:59:26
+97390 23922,90359 52497,10-09-2016 08:01:22
+97425 12708,90366 36573,10-09-2016 08:11:32
+94489 72078,97416 29480,10-09-2016 08:14:26
+90359 79636,70121 27677,10-09-2016 08:21:39
+89078 69605,77950 18278,10-09-2016 08:28:11
+87146 31956,83019 39880,10-09-2016 08:32:30
+97385 70012,94497 44333,10-09-2016 08:33:31
+97426 75324,78138 56841,10-09-2016 08:35:33
+94486 40312,97424 60171,10-09-2016 08:53:20
+94005 06213,98453 46196,10-09-2016 08:58:14
+97414 15280,90199 91061,10-09-2016 09:07:18
+84313 45689,78295 65598,10-09-2016 09:13:27
+90084 16988,93422 47940,10-09-2016 09:23:54
+98458 13389,93423 23000,10-09-2016 09:24:23
+78290 31269,97386 37259,10-09-2016 09:26:48
+93436 09781,98448 72117,10-09-2016 09:26:55
+94487 29969,97419 41164,10-09-2016 09:35:21
+98448 87878,90366 36573,10-09-2016 09:35:29
+78136 42599,97399 92703,10-09-2016 09:36:42
+81524 55552,97380 60551,10-09-2016 09:47:29
+94499 20763,84314 16122,10-09-2016 09:48:14
+90368 72970,97391 99665,10-09-2016 09:48:48
+93421 63491,92414 22596,10-09-2016 09:58:53
+78138 56841,99009 32475,10-09-2016 10:04:41
+97406 74488,90358 98099,10-09-2016 10:10:40
+78138 56841,99009 32475,10-09-2016 10:18:06
+90356 11723,81525 12041,10-09-2016 10:20:16
+93412 66159,98454 07778,10-09-2016 10:22:42
+90356 11723,81525 12041,10-09-2016 10:24:34
+97426 75324,78138 56841,10-09-2016 10:27:38
+90083 59148,97421 07528,10-09-2016 10:27:44
+93432 65750,92425 27794,10-09-2016 10:34:27
+97389 12538,90352 50054,10-09-2016 10:46:25
+97385 70012,97424 53609,10-09-2016 10:46:42
+99616 15114,94006 62384,10-09-2016 10:47:21
+78295 65598,84313 45689,10-09-2016 10:54:16
+93428 11808,96565 52272,10-09-2016 10:59:07
+70129 62374,98441 32533,10-09-2016 11:00:41
+78290 31269,97386 37259,10-09-2016 11:01:47
+93418 82576,94489 95536,10-09-2016 11:02:26
+90356 11723,81525 12041,10-09-2016 11:03:40
+94489 72078,97416 29480,10-09-2016 11:04:41
+98445 42844,99617 74886,10-09-2016 11:07:47
+78295 60375,93410 98013,10-09-2016 11:10:01
+97416 29480,94489 72078,10-09-2016 11:11:45
+81513 30231,90365 06212,10-09-2016 11:17:52
+92425 27794,93432 65750,10-09-2016 11:21:48
+93418 41992,81525 78007,10-09-2016 11:23:52
+90083 59148,97421 07528,10-09-2016 11:24:15
+97380 60551,81524 55552,10-09-2016 11:32:55
+84319 39746,95263 76972,10-09-2016 11:39:35
+99617 74886,98445 42844,10-09-2016 11:40:42
+97425 92186,94482 95223,10-09-2016 11:48:57
+94499 20763,84314 16122,10-09-2016 12:03:57
+87149 57915,92428 82401,10-09-2016 12:13:09
+99007 06998,84314 00609,10-09-2016 12:13:40
+93423 23000,98458 13389,10-09-2016 12:21:03
+98448 72117,93436 09781,10-09-2016 12:21:36
+90193 20957,97420 86635,10-09-2016 12:22:15
+90359 52497,97390 23922,10-09-2016 12:24:48
+98445 42844,99617 74886,10-09-2016 12:26:02
+90356 11723,81525 12041,10-09-2016 12:32:48
+93418 82576,94489 95536,10-09-2016 12:38:16
+90365 51029,94499 38099,10-09-2016 12:45:47
+81522 26166,97380 86781,10-09-2016 12:47:39
+92413 38675,90362 07317,10-09-2016 12:50:27
+97424 53609,97385 70012,10-09-2016 13:00:06
+90354 08732,94499 20763,10-09-2016 13:03:11
+97406 74488,92411 96415,10-09-2016 13:04:20
+93420 59147,90357 17994,10-09-2016 13:05:35
+98440 02823,81515 42171,10-09-2016 13:06:45
+84311 10322,90359 79636,10-09-2016 13:07:08
+94482 95223,97425 92186,10-09-2016 13:11:43
+78136 65840,74066 93594,10-09-2016 13:20:46
+90359 91512,94489 95536,10-09-2016 13:21:02
+97424 53609,97385 70012,10-09-2016 13:22:52
+97415 99182,97393 04671,10-09-2016 13:30:45
+93410 56456,98453 86521,10-09-2016 13:31:58
+97385 35042,93418 41992,10-09-2016 13:35:44
+98440 02823,81515 42171,10-09-2016 13:35:53
+98445 42844,99617 74886,10-09-2016 13:41:18
+94005 06213,98453 46196,10-09-2016 13:42:16
+97406 74488,92411 96415,10-09-2016 13:44:01
+74060 75431,97390 23922,10-09-2016 13:44:54
+93418 41992,81525 78007,10-09-2016 13:47:58
+97393 04671,97415 99182,10-09-2016 13:51:32
+94490 65627,97395 95120,10-09-2016 13:53:41
+90197 69887,99610 89720,10-09-2016 14:05:29
+94006 62384,97412 66065,10-09-2016 14:09:09
+94480 64700,90088 09624,10-09-2016 14:10:57
+74066 31484,98454 90038,10-09-2016 14:14:11
+78295 65598,98440 65896,10-09-2016 14:14:20
+94489 72078,97416 29480,10-09-2016 14:15:51
+99003 88572,99006 60463,10-09-2016 14:22:31
+90082 61126,90366 69257,10-09-2016 14:25:26
+98454 90038,74066 31484,10-09-2016 14:25:57
+98453 86521,93410 56456,10-09-2016 14:30:27
+93418 41992,81525 78007,10-09-2016 14:34:16
+81524 55552,97380 60551,10-09-2016 14:34:17
+94480 64700,90088 09624,10-09-2016 14:36:54
+94480 31371,97426 25297,10-09-2016 14:42:46
+89076 36757,99001 95783,10-09-2016 14:49:15
+98446 66723,97422 22278,10-09-2016 14:50:18
+83015 22251,78295 60375,10-09-2016 14:52:00
+93412 66159,98454 07778,10-09-2016 15:00:03
+94488 97308,93422 47940,10-09-2016 15:02:04
+74066 93594,90367 90080,10-09-2016 15:06:40
+90359 79636,70121 27677,10-09-2016 15:10:19
+81520 43406,92421 64236,10-09-2016 15:14:18
+78295 65598,84313 45689,10-09-2016 15:14:28
+94499 20763,97386 20071,10-09-2016 15:19:30
+93432 65750,92425 27794,10-09-2016 15:23:54
+97421 07528,98454 07778,10-09-2016 15:25:50
+98453 86521,93410 56456,10-09-2016 15:29:11
+98446 78140,98440 65896,10-09-2016 15:29:24
+93412 66159,94499 20763,10-09-2016 15:55:33
+97424 21092,90351 35947,10-09-2016 16:01:46
+74066 31484,98454 90038,10-09-2016 16:03:18
+97419 41164,94487 29969,10-09-2016 16:04:10
+97389 12538,90352 50054,10-09-2016 16:07:36
+84313 45689,78295 65598,10-09-2016 16:20:36
+90199 91061,97414 15280,10-09-2016 16:27:21
+93423 23000,78133 10302,10-09-2016 16:31:14
+90356 11723,81525 12041,10-09-2016 16:31:22
+97419 41164,94487 29969,10-09-2016 16:34:03
+97420 86635,90193 20957,10-09-2016 16:35:45
+78295 60375,93410 98013,10-09-2016 16:37:26
+78139 24512,90192 87313,10-09-2016 16:48:16
+78295 65598,98440 65896,10-09-2016 16:48:24
+97386 20071,94499 20763,10-09-2016 16:48:38
+97426 75324,78138 56841,10-09-2016 16:48:58
+94497 77615,81517 73746,10-09-2016 16:50:08
+90365 06212,97424 22395,10-09-2016 16:54:13
+98446 78140,98440 65896,10-09-2016 17:01:55
+97415 99182,97393 04671,10-09-2016 17:04:19
+98453 86521,93410 56456,10-09-2016 17:08:02
+90197 24124,99612 41256,10-09-2016 17:11:04
+98458 13389,93423 23000,10-09-2016 17:14:28
+90193 20957,97420 86635,10-09-2016 17:17:43
+97424 53609,90197 69887,10-09-2016 17:18:43
+78295 78750,97449 50000,10-09-2016 17:18:49
+90359 99240,94491 55790,10-09-2016 17:20:11
+93423 23000,98458 13389,10-09-2016 17:24:47
+94486 40312,97424 60171,10-09-2016 17:30:52
+94492 23068,90359 91512,10-09-2016 17:32:43
+93410 56456,98453 86521,10-09-2016 17:35:12
+78295 78750,97449 50000,10-09-2016 17:35:57
+92413 38675,90362 07317,10-09-2016 17:37:42
+94495 34273,94491 05266,10-09-2016 17:37:54
+97415 99182,97393 04671,10-09-2016 17:38:16
+97390 23922,90359 52497,10-09-2016 17:38:31
+97384 69866,87146 31956,10-09-2016 17:43:48
+93428 11808,96565 52272,10-09-2016 17:45:20
+97406 74488,92411 96415,10-09-2016 17:47:06
+81510 47188,97429 02055,10-09-2016 17:47:37
+97448 02140,97418 46131,10-09-2016 17:55:32
+78299 99223,92424 51984,10-09-2016 18:00:33
+84312 48999,94485 80091,10-09-2016 18:01:37
+83019 39880,87146 31956,10-09-2016 18:13:14
+98446 78140,98440 65896,10-09-2016 18:14:05
+97425 12708,90366 36573,10-09-2016 18:18:15
+94486 40312,97424 60171,10-09-2016 18:20:54
+98453 86521,93410 56456,10-09-2016 18:22:12
+92411 96415,78993 92058,10-09-2016 18:23:07
+70121 27677,90359 79636,10-09-2016 18:24:48
+98451 87493,97424 21092,10-09-2016 18:28:49
+78295 65598,98440 65896,10-09-2016 18:32:10
+90358 98099,97406 74488,10-09-2016 18:32:28
+81524 55552,90355 10919,10-09-2016 18:34:14
+94490 65627,97395 95120,10-09-2016 18:35:30
+90357 17994,93420 59147,10-09-2016 18:39:18
+97428 35959,97446 95253,10-09-2016 18:43:09
+92411 96415,93435 21961,10-09-2016 18:43:51
+90365 51029,97380 60551,10-09-2016 18:56:41
+81520 43406,92421 64236,10-09-2016 18:57:02
+78136 65840,74066 93594,10-09-2016 18:57:18
+97391 99665,90368 72970,10-09-2016 19:01:54
+90359 91512,94489 95536,10-09-2016 19:05:30
+97424 21092,98451 87493,10-09-2016 19:07:22
+97386 20071,94499 20763,10-09-2016 19:08:53
+97446 95253,97428 35959,10-09-2016 19:12:49
+97406 74488,92411 96415,10-09-2016 19:13:30
+98449 60656,97414 62784,10-09-2016 19:16:25
+90358 98099,97406 74488,10-09-2016 19:17:09
+98440 65896,78295 65598,10-09-2016 19:22:53
+94488 97308,97391 99665,10-09-2016 19:25:21
+97414 15280,90199 91061,10-09-2016 19:26:16
+90351 35947,97424 21092,10-09-2016 19:31:00
+93412 66159,98454 07778,10-09-2016 19:33:34
+97385 35042,93418 41992,10-09-2016 19:33:36
+90197 69887,97424 53609,10-09-2016 19:40:37
+74060 75431,92413 79027,10-09-2016 19:41:58
+90087 42537,94497 44333,10-09-2016 19:45:46
+92413 38675,90362 07317,10-09-2016 19:50:21
+98440 65896,78295 65598,10-09-2016 20:04:36
+90351 35947,97424 21092,10-09-2016 20:13:36
+97393 04671,97415 99182,10-09-2016 20:15:45
+94480 64700,90088 09624,10-09-2016 20:16:37
+81515 65055,78295 48262,10-09-2016 20:27:07
+74066 31484,98454 90038,10-09-2016 20:27:07
+98440 65896,78295 65598,10-09-2016 20:29:21
+94489 95536,94492 23068,10-09-2016 20:33:35
+98448 72117,93436 09781,10-09-2016 20:40:43
+90088 09624,94480 64700,10-09-2016 20:46:49
+93418 41992,97385 35042,10-09-2016 20:51:11
+95264 40233,98440 68457,10-09-2016 20:52:41
+97395 95120,94490 65627,10-09-2016 20:53:27
+99616 15114,94006 62384,10-09-2016 20:54:02
+90351 35947,97424 21092,10-09-2016 20:59:21
+97414 15280,90199 91061,10-09-2016 21:00:05
+97425 12708,90366 36573,10-09-2016 21:17:06
+99001 95783,89076 36757,10-09-2016 21:17:08
+90197 69887,99610 89720,10-09-2016 21:19:44
+97424 21092,90351 35947,10-09-2016 21:26:04
+90088 09624,93434 31551,10-09-2016 21:29:03
+97414 62784,98449 60656,10-09-2016 21:29:34
+90359 52497,97390 23922,10-09-2016 21:29:47
+93434 31551,90088 09624,10-09-2016 21:33:06
+90368 72970,97391 99665,10-09-2016 21:36:08
+98444 72482,98446 78140,10-09-2016 21:45:23
+97420 86635,90193 20957,10-09-2016 21:45:59
+90083 59148,97421 07528,10-09-2016 21:52:03
+93434 31551,90088 09624,10-09-2016 21:55:00
+92411 96415,97406 74488,10-09-2016 22:06:04
+93410 98013,78295 60375,10-09-2016 22:09:00
+98452 19037,90355 94399,10-09-2016 22:22:32
+90357 17994,93420 59147,10-09-2016 22:23:48
+90088 09624,93434 31551,10-09-2016 22:24:28
+97395 95120,94490 65627,10-09-2016 22:35:43
+97390 23922,90359 52497,10-09-2016 22:42:48
+84312 48999,94485 80091,10-09-2016 22:46:13
+84313 45689,78295 65598,10-09-2016 22:49:28
+93423 23000,98458 13389,10-09-2016 22:51:29
+97421 07528,90083 59148,10-09-2016 22:53:52
+92428 82401,97385 29751,10-09-2016 22:56:33
+92421 09526,89076 36757,10-09-2016 23:05:57
+90366 69257,90082 61126,10-09-2016 23:08:10
+97391 99665,90368 72970,10-09-2016 23:10:10
+97449 50000,78295 78750,10-09-2016 23:14:56
+78295 60375,93410 98013,10-09-2016 23:19:23
+90359 99240,94491 55790,10-09-2016 23:25:47
+93422 47940,90084 16988,10-09-2016 23:36:30
+93434 31551,90088 09624,10-09-2016 23:37:00
+94497 44333,90087 42537,10-09-2016 23:40:13
+78290 31269,97386 37259,10-09-2016 23:41:12
+97403 09983,90198 03659,10-09-2016 23:46:15
+97425 92186,94482 95223,10-09-2016 23:48:58
+92413 38675,90362 07317,10-09-2016 23:51:20
+81525 78007,93418 41992,10-09-2016 23:52:17
+78133 10302,93423 23000,10-09-2016 23:53:47
+98444 42212,97393 04671,10-09-2016 23:55:07
+97391 99665,94488 97308,10-09-2016 23:55:47
+94497 44333,90087 42537,10-09-2016 23:58:00
+97414 62784,98449 60656,11-09-2016 06:04:40
+98445 42844,99617 74886,11-09-2016 06:10:02
+90354 08732,94499 20763,11-09-2016 06:10:14
+92411 96415,78993 92058,11-09-2016 06:14:20
+98454 90038,90359 52497,11-09-2016 06:23:30
+81519 62015,99009 32475,11-09-2016 06:26:13
+98440 65896,98446 78140,11-09-2016 06:29:27
+98441 32533,93410 98013,11-09-2016 06:39:15
+74060 75431,92413 79027,11-09-2016 06:42:42
+97426 75324,78138 56841,11-09-2016 06:44:17
+95262 44233,98442 33257,11-09-2016 06:44:28
+99004 86250,97390 23922,11-09-2016 06:47:20
+94491 55790,90359 99240,11-09-2016 07:02:37
+94492 23068,90359 91512,11-09-2016 07:09:07
+90365 51029,97380 60551,11-09-2016 07:09:22
+97415 99182,97393 04671,11-09-2016 07:19:24
+90199 91061,97414 15280,11-09-2016 07:19:51
+93418 41992,81525 78007,11-09-2016 07:26:41
+99617 74886,98445 42844,11-09-2016 07:33:45
+90359 79636,70121 27677,11-09-2016 07:35:14
+90365 51029,97380 60551,11-09-2016 07:36:10
+97421 07528,98454 07778,11-09-2016 07:37:25
+94005 06213,98453 46196,11-09-2016 07:40:08
+97424 60171,94486 40312,11-09-2016 07:45:09
+98448 87878,90366 36573,11-09-2016 07:50:59
+97395 95120,94490 65627,11-09-2016 07:51:42
+97391 99665,94488 97308,11-09-2016 07:56:54
+94499 20763,97386 20071,11-09-2016 07:57:32
+98440 68457,95264 40233,11-09-2016 08:03:07
+78295 65598,84313 45689,11-09-2016 08:06:47
+99617 74886,98445 42844,11-09-2016 08:14:01
+93420 59147,90357 17994,11-09-2016 08:15:09
+90192 87313,78139 24512,11-09-2016 08:16:48
+98444 42212,97393 04671,11-09-2016 08:19:05
+97424 53609,97385 70012,11-09-2016 08:20:10
+92413 38675,90362 07317,11-09-2016 08:20:58
+90352 50054,97389 12538,11-09-2016 08:23:15
+93421 63491,92414 22596,11-09-2016 08:27:10
+98440 02823,81515 42171,11-09-2016 08:28:52
+97391 99665,90355 94399,11-09-2016 08:32:18
+90359 91512,94489 95536,11-09-2016 08:32:26
+94486 40312,97424 60171,11-09-2016 08:33:56
+90088 09624,93434 31551,11-09-2016 08:40:34
+90088 09624,93434 31551,11-09-2016 08:40:56
+98447 12671,93427 56500,11-09-2016 08:42:55
+98441 32533,93410 98013,11-09-2016 08:48:16
+95264 40233,98440 68457,11-09-2016 08:49:52
+90356 11723,81525 12041,11-09-2016 08:49:52
+90352 50054,97389 12538,11-09-2016 08:51:25
+97411 71155,98443 99204,11-09-2016 08:53:26
+98440 02823,81515 42171,11-09-2016 08:54:42
+94489 72078,92415 91418,11-09-2016 08:55:07
+93423 23000,78133 10302,11-09-2016 08:55:21
+78295 65598,98440 65896,11-09-2016 08:57:02
+97385 70012,97424 53609,11-09-2016 08:58:55
+97403 09983,97406 06245,11-09-2016 09:05:12
+97386 20071,94499 20763,11-09-2016 09:05:33
+97403 09983,90198 03659,11-09-2016 09:05:51
+78133 10302,93423 23000,11-09-2016 09:06:30
+78136 65840,74066 93594,11-09-2016 09:12:32
+99003 47921,98444 95768,11-09-2016 09:22:23
+87141 73076,78290 30467,11-09-2016 09:23:12
+90192 87313,78139 24512,11-09-2016 09:25:01
+92414 22596,93421 63491,11-09-2016 09:37:33
+78993 92058,92411 96415,11-09-2016 09:40:41
+90198 03659,97403 09983,11-09-2016 09:43:45
+78138 56841,99009 32475,11-09-2016 09:43:51
+98449 60656,97414 62784,11-09-2016 09:45:11
+98440 68457,95264 40233,11-09-2016 09:58:56
+97425 12708,90366 36573,11-09-2016 09:58:57
+81522 26166,97380 86781,11-09-2016 10:07:00
+90359 91512,94492 23068,11-09-2016 10:08:46
+78299 99223,92424 51984,11-09-2016 10:09:29
+97385 70012,94497 44333,11-09-2016 10:11:11
+78993 92058,92411 96415,11-09-2016 10:12:08
+90357 17994,93420 59147,11-09-2016 10:14:39
+97415 99182,97393 04671,11-09-2016 10:16:31
+97419 41164,94487 29969,11-09-2016 10:17:09
+99617 74886,98445 42844,11-09-2016 10:32:18
+97424 21092,90351 35947,11-09-2016 10:35:57
+78295 60375,83015 22251,11-09-2016 10:38:30
+94497 77615,81517 73746,11-09-2016 10:47:27
+94480 31371,97426 25297,11-09-2016 10:50:25
+97414 62784,98449 60656,11-09-2016 10:53:45
+94495 34273,94491 05266,11-09-2016 10:55:26
+78299 99223,92424 51984,11-09-2016 10:56:22
+97416 29480,94489 72078,11-09-2016 10:57:29
+93422 47940,90084 16988,11-09-2016 10:58:11
+98458 13389,93423 23000,11-09-2016 10:59:04
+93423 23000,98458 13389,11-09-2016 11:02:02
+92424 51984,78299 99223,11-09-2016 11:03:52
+81517 73746,94497 77615,11-09-2016 11:14:09
+78295 60375,93410 98013,11-09-2016 11:18:21
+97424 53609,90197 69887,11-09-2016 11:29:32
+98451 87493,97424 21092,11-09-2016 11:31:14
+94006 62384,97412 66065,11-09-2016 11:31:25
+97421 07528,98454 07778,11-09-2016 11:35:30
+97391 99665,90368 72970,11-09-2016 11:36:42
+90194 00845,97416 17124,11-09-2016 11:42:33
+98445 33687,97403 49292,11-09-2016 11:45:25
+84311 10322,90359 79636,11-09-2016 11:45:43
+90367 90080,74066 93594,11-09-2016 11:49:33
+81519 62015,99009 32475,11-09-2016 11:50:43
+97425 12708,90366 36573,11-09-2016 11:53:48
+90357 17994,93420 59147,11-09-2016 11:55:49
+81515 65055,78295 48262,11-09-2016 11:56:40
+94497 44333,90087 42537,11-09-2016 11:58:00
+92415 91418,94489 72078,11-09-2016 12:04:51
+90084 16988,93422 47940,11-09-2016 12:11:07
+98444 42212,97393 04671,11-09-2016 12:19:12
+81517 73746,94497 77615,11-09-2016 12:19:18
+97447 92655,84319 42810,11-09-2016 12:19:45
+87146 31956,83019 39880,11-09-2016 12:24:16
+92414 22596,93421 63491,11-09-2016 12:40:51
+97399 92703,78136 42599,11-09-2016 12:42:27
+97385 35042,93418 41992,11-09-2016 12:43:09
+70121 27677,83012 37742,11-09-2016 12:45:33
+93410 56456,98453 86521,11-09-2016 12:45:58
+90359 52497,97390 23922,11-09-2016 12:48:57
+97449 50000,95269 20533,11-09-2016 12:50:22
+97391 99665,94488 97308,11-09-2016 12:50:56
+70129 62374,98441 32533,11-09-2016 12:54:48
+99001 23133,90359 79636,11-09-2016 12:55:11
+94006 62384,97412 66065,11-09-2016 13:01:45
+94497 44333,90087 42537,11-09-2016 13:03:28
+77950 18278,89078 69605,11-09-2016 13:07:58
+98446 78140,98444 72482,11-09-2016 13:12:54
+97385 35042,93418 41992,11-09-2016 13:20:38
+94488 97308,97391 99665,11-09-2016 13:21:07
+92413 38675,90362 07317,11-09-2016 13:28:43
+97426 75324,78138 56841,11-09-2016 13:30:58
+98454 90038,90359 52497,11-09-2016 13:32:58
+78295 48262,81515 65055,11-09-2016 13:39:41
+94480 64700,90088 09624,11-09-2016 13:48:01
+97446 95253,97428 35959,11-09-2016 13:50:35
+93418 41992,81525 78007,11-09-2016 13:55:46
+94488 97308,93422 47940,11-09-2016 14:01:02
+98440 65896,93418 41992,11-09-2016 14:10:07
+98449 60656,90084 16988,11-09-2016 14:14:47
+87141 73076,78290 30467,11-09-2016 14:17:18
+97399 92703,78136 42599,11-09-2016 14:20:31
+87149 57915,92428 82401,11-09-2016 14:33:45
+94491 55790,90359 99240,11-09-2016 14:35:30
+90198 03659,97403 09983,11-09-2016 14:38:08
+95264 40233,98440 68457,11-09-2016 14:39:42
+93420 59147,90357 17994,11-09-2016 14:42:43
+97415 99182,97393 04671,11-09-2016 14:48:13
+94489 95536,93418 82576,11-09-2016 14:49:05
+78295 78750,97449 50000,11-09-2016 14:54:05
+90359 79636,99001 23133,11-09-2016 14:54:37
+84314 16122,94499 20763,11-09-2016 14:56:19
+87146 31956,83019 39880,11-09-2016 15:03:09
+97385 70012,97424 53609,11-09-2016 15:14:07
+94492 23068,94489 95536,11-09-2016 15:14:41
+90359 79636,84311 10322,11-09-2016 15:16:54
+97380 60551,78298 91466,11-09-2016 15:18:14
+97406 74488,90358 98099,11-09-2016 15:19:15
+97421 07528,90083 59148,11-09-2016 15:20:59
+90367 90080,74066 93594,11-09-2016 15:21:48
+90362 07317,92413 38675,11-09-2016 15:28:04
+98453 86521,93410 56456,11-09-2016 15:30:29
+97421 07528,90083 59148,11-09-2016 15:33:19
+81525 12041,90356 11723,11-09-2016 15:35:15
+97412 66065,94006 62384,11-09-2016 15:40:09
+90351 35947,97424 21092,11-09-2016 15:41:43
+84313 45689,78295 65598,11-09-2016 15:46:57
+83019 39880,87146 31956,11-09-2016 15:49:35
+99003 88572,99006 60463,11-09-2016 15:51:17
+89076 07067,93421 63491,11-09-2016 15:54:30
+94497 44333,97385 70012,11-09-2016 15:57:16
+81526 05544,99612 41256,11-09-2016 16:15:34
+98441 32533,93410 98013,11-09-2016 16:15:36
+78132 18081,77956 90632,11-09-2016 16:27:12
+90088 09624,93434 31551,11-09-2016 16:27:59
+93432 65750,92425 27794,11-09-2016 16:34:19
+97380 60551,90365 51029,11-09-2016 16:36:00
+93422 47940,90084 16988,11-09-2016 16:36:50
+90362 07317,92413 38675,11-09-2016 16:37:02
+97447 92655,97404 63904,11-09-2016 16:38:11
+99001 95783,89076 36757,11-09-2016 16:41:11
+97426 75324,78138 56841,11-09-2016 16:49:23
+93435 31225,87141 37314,11-09-2016 16:50:11
+90352 50054,97389 12538,11-09-2016 16:58:02
+90365 51029,97380 60551,11-09-2016 17:01:08
+93436 09781,98448 72117,11-09-2016 17:02:01
+97421 07528,90083 59148,11-09-2016 17:10:12
+92415 91418,94489 72078,11-09-2016 17:24:49
+97422 22278,98446 66723,11-09-2016 17:26:41
+78295 78750,97449 50000,11-09-2016 17:26:53
+81520 43406,92421 64236,11-09-2016 17:27:34
+78136 42599,97399 92703,11-09-2016 17:31:31
+98444 95768,99003 47921,11-09-2016 17:36:42
+97391 99665,90355 94399,11-09-2016 17:40:22
+90365 51029,94499 38099,11-09-2016 17:44:05
+90359 52497,97390 23922,11-09-2016 17:50:05
+92413 38675,90362 07317,11-09-2016 17:55:42
+95264 40233,98440 68457,11-09-2016 17:59:48
+84314 16122,94499 20763,11-09-2016 18:03:22
+97406 74488,92411 96415,11-09-2016 18:03:58
+94499 20763,93412 66159,11-09-2016 18:11:17
+94497 44333,90087 42537,11-09-2016 18:16:19
+99001 23133,90359 79636,11-09-2016 18:18:32
+90365 51029,94499 38099,11-09-2016 18:21:34
+98445 33687,97403 49292,11-09-2016 18:21:43
+93412 66159,98454 07778,11-09-2016 18:25:29
+97391 99665,90368 72970,11-09-2016 18:28:59
+94491 55790,90359 99240,11-09-2016 18:33:53
+81520 43406,92421 64236,11-09-2016 18:37:02
+98441 32533,70129 62374,11-09-2016 19:02:58
+92413 79027,74060 75431,11-09-2016 19:13:55
+90359 52497,98454 90038,11-09-2016 19:18:04
+84314 00609,99007 06998,11-09-2016 19:19:12
+94499 20763,97386 20071,11-09-2016 19:22:20
+97421 07528,98454 07778,11-09-2016 19:24:45
+74066 31484,98454 90038,11-09-2016 19:28:15
+90357 17994,93420 59147,11-09-2016 19:34:06
+97414 15280,90199 91061,11-09-2016 19:36:18
+78993 92058,92411 96415,11-09-2016 19:37:41
+78295 65598,98440 65896,11-09-2016 19:41:12
+81513 30231,90365 06212,11-09-2016 19:51:16
+74060 75431,97390 23922,11-09-2016 19:55:40
+94495 34273,94491 05266,11-09-2016 19:56:38
+78133 10302,93423 23000,11-09-2016 20:03:56
+87146 31956,83019 39880,11-09-2016 20:09:39
+84319 42810,97447 92655,11-09-2016 20:14:30
+97406 74488,90358 98099,11-09-2016 20:19:24
+93410 56456,98453 86521,11-09-2016 20:26:25
+93421 63491,92414 22596,11-09-2016 20:27:44
+78138 56841,99009 32475,11-09-2016 20:33:52
+99004 86250,97390 23922,11-09-2016 20:34:54
+93423 23000,78133 10302,11-09-2016 20:35:50
+92425 27794,93432 65750,11-09-2016 20:37:17
+78993 92058,92411 96415,11-09-2016 20:40:48
+90365 06212,81513 30231,11-09-2016 20:48:09
+94489 72078,97416 29480,11-09-2016 20:53:27
+78295 78750,97449 50000,11-09-2016 20:59:37
+94499 20763,84314 16122,11-09-2016 20:59:50
+92421 64236,81520 43406,11-09-2016 21:02:30
+97414 62784,98449 60656,11-09-2016 21:04:50
+98453 46196,94005 06213,11-09-2016 21:06:07
+90083 59148,97421 07528,11-09-2016 21:18:11
+94499 20763,84314 16122,11-09-2016 21:22:26
+93436 09781,98448 72117,11-09-2016 21:35:56
+93436 09781,98448 72117,11-09-2016 21:44:26
+87146 31956,83019 39880,11-09-2016 21:47:45
+78295 60375,93410 98013,11-09-2016 21:50:12
+97385 70012,94497 44333,11-09-2016 21:57:33
+98454 07778,97421 07528,11-09-2016 22:05:29
+98446 78140,98444 72482,11-09-2016 22:05:33
+94482 95223,97425 92186,11-09-2016 22:06:50
+81515 65055,78295 48262,11-09-2016 22:14:54
+99009 32475,78138 56841,11-09-2016 22:15:53
+99616 15114,94006 62384,11-09-2016 22:20:09
+97424 21092,98451 87493,11-09-2016 22:21:55
+90192 87313,78139 24512,11-09-2016 22:22:52
+78136 42599,97399 92703,11-09-2016 22:23:41
+81525 12041,90356 11723,11-09-2016 22:26:57
+78132 18081,98443 72004,11-09-2016 22:32:35
+94492 23068,90359 91512,11-09-2016 22:35:26
+90359 91512,94492 23068,11-09-2016 22:38:42
+78139 24512,90192 87313,11-09-2016 22:40:37
+70121 27677,78295 48262,11-09-2016 22:43:46
+83019 53227,98446 66723,11-09-2016 22:50:44
+81517 73746,94497 77615,11-09-2016 22:51:24
+98449 60656,90084 16988,11-09-2016 22:54:50
+97421 07528,98454 07778,11-09-2016 22:57:43
+97421 07528,98454 07778,11-09-2016 22:57:44
+97446 95253,97428 35959,11-09-2016 22:58:47
+81515 65055,78295 48262,11-09-2016 23:01:21
+98458 13389,93423 23000,11-09-2016 23:03:47
+74066 93594,78136 65840,11-09-2016 23:05:57
+89078 69605,77950 18278,11-09-2016 23:07:11
+92421 09526,89076 36757,11-09-2016 23:07:27
+74060 75431,97390 23922,11-09-2016 23:12:44
+81524 55552,97380 60551,11-09-2016 23:20:06
+97393 04671,95262 44233,11-09-2016 23:27:26
+94490 65627,97395 95120,11-09-2016 23:36:46
+97380 60551,81524 55552,11-09-2016 23:38:24
+97393 04671,97415 99182,11-09-2016 23:44:09
+99006 60463,99003 88572,11-09-2016 23:48:01
+92414 22596,93421 63491,11-09-2016 23:50:24
+92414 22596,93421 63491,11-09-2016 23:50:37
+97395 95120,94490 65627,11-09-2016 23:54:30
+70129 62374,98441 32533,11-09-2016 23:57:20
+93423 23000,78133 10302,11-09-2016 23:57:33
+97426 75324,78138 56841,11-09-2016 23:59:16
+90355 94399,98452 19037,12-09-2016 06:04:17
+97385 35042,93418 41992,12-09-2016 06:06:27
+89078 69605,77950 18278,12-09-2016 06:08:39
+98442 33257,95262 44233,12-09-2016 06:12:44
+89076 07067,93421 63491,12-09-2016 06:13:05
+94497 77615,81517 73746,12-09-2016 06:13:31
+94489 95536,93418 82576,12-09-2016 06:15:06
+93432 65750,92425 27794,12-09-2016 06:19:46
+96566 40412,90352 50054,12-09-2016 06:24:19
+94482 95223,97425 92186,12-09-2016 06:24:47
+94485 80091,84312 48999,12-09-2016 06:36:40
+78290 30467,87141 73076,12-09-2016 06:43:13
+94497 44333,90087 42537,12-09-2016 06:43:22
+98458 13389,93423 23000,12-09-2016 06:44:18
+90084 16988,98449 60656,12-09-2016 06:44:24
+93412 66159,94499 20763,12-09-2016 06:47:36
+90084 16988,98449 60656,12-09-2016 06:49:06
+90199 91061,97414 15280,12-09-2016 06:55:52
+92424 51984,78299 99223,12-09-2016 07:03:02
+90365 51029,94499 38099,12-09-2016 07:05:58
+74060 75431,97390 23922,12-09-2016 07:12:49
+90197 69887,99610 89720,12-09-2016 07:14:04
+90194 00845,81522 26166,12-09-2016 07:17:15
+97406 74488,92411 96415,12-09-2016 07:19:02
+84311 10322,90359 79636,12-09-2016 07:20:00
+90192 87313,78139 24512,12-09-2016 07:21:40
+93436 09781,98448 72117,12-09-2016 07:29:04
+90084 16988,93422 47940,12-09-2016 07:31:18
+84313 45689,78295 65598,12-09-2016 07:32:27
+90359 79636,70121 27677,12-09-2016 07:32:43
+92421 64236,81520 43406,12-09-2016 07:33:20
+93418 41992,81525 78007,12-09-2016 07:45:15
+78132 18081,77956 90632,12-09-2016 07:47:51
+97385 70012,97424 53609,12-09-2016 07:53:44
+90368 72970,97391 99665,12-09-2016 07:59:35
+98448 72117,93436 09781,12-09-2016 08:00:17
+98451 87493,97424 21092,12-09-2016 08:10:28
+93423 23000,78133 10302,12-09-2016 08:11:30
+98445 42844,99617 74886,12-09-2016 08:14:37
+93435 31225,87141 37314,12-09-2016 08:15:49
+97384 69866,87146 31956,12-09-2016 08:18:00
+97395 95120,94490 65627,12-09-2016 08:19:47
+93418 41992,81525 78007,12-09-2016 08:23:03
+90084 16988,98449 60656,12-09-2016 08:25:20
+98445 42844,99617 74886,12-09-2016 08:27:24
+81520 43406,92421 64236,12-09-2016 08:29:57
+81515 65055,78295 48262,12-09-2016 08:32:17
+90355 94399,98452 19037,12-09-2016 08:36:23
+93410 98013,78295 60375,12-09-2016 08:41:46
+90368 72970,97391 99665,12-09-2016 08:41:59
+99007 06998,84314 00609,12-09-2016 08:44:08
+90088 09624,93434 31551,12-09-2016 08:45:28
+70121 27677,90359 79636,12-09-2016 08:45:29
+93435 31225,87141 37314,12-09-2016 08:46:47
+96566 40412,90352 50054,12-09-2016 08:47:20
+97399 92703,78136 42599,12-09-2016 08:51:11
+84319 42810,97447 92655,12-09-2016 08:52:38
+70121 27677,90359 79636,12-09-2016 08:53:59
+92413 38675,90362 07317,12-09-2016 08:59:53
+90362 07317,92413 38675,12-09-2016 09:02:08
+98448 72117,93436 09781,12-09-2016 09:03:05
+90197 24124,99612 41256,12-09-2016 09:03:17
+98440 68457,95264 40233,12-09-2016 09:06:17
+90197 69887,99610 89720,12-09-2016 09:09:08
+93436 09781,98448 72117,12-09-2016 09:15:16
+94497 44333,97385 70012,12-09-2016 09:16:25
+87141 37314,93435 31225,12-09-2016 09:16:57
+90356 11723,81525 12041,12-09-2016 09:21:39
+97414 62784,98449 60656,12-09-2016 09:22:36
+94499 20763,90354 08732,12-09-2016 09:24:12
+84314 16122,94499 20763,12-09-2016 09:25:22
+97393 04671,97415 99182,12-09-2016 09:28:13
+89078 69605,77950 18278,12-09-2016 09:28:19
+83019 39880,87146 31956,12-09-2016 09:28:40
+98440 65896,98446 78140,12-09-2016 09:29:25
+93436 09781,98448 72117,12-09-2016 09:35:46
+81524 55552,97380 60551,12-09-2016 09:36:48
+97380 60551,81524 55552,12-09-2016 09:44:17
+78295 60375,93410 98013,12-09-2016 09:45:50
+98454 07778,93412 66159,12-09-2016 09:47:38
+90359 52497,97390 23922,12-09-2016 09:51:01
+97428 35959,97446 95253,12-09-2016 09:52:55
+92411 96415,97406 74488,12-09-2016 09:59:00
+95264 40233,98440 68457,12-09-2016 10:00:42
+94489 72078,97416 29480,12-09-2016 10:03:44
+97424 22395,90365 06212,12-09-2016 10:04:39
+94487 29969,97419 41164,12-09-2016 10:05:20
+92424 51984,78299 99223,12-09-2016 10:05:48
+74066 93594,90367 90080,12-09-2016 10:06:24
+97385 29751,92428 82401,12-09-2016 10:18:31
+78290 31269,97386 37259,12-09-2016 10:21:45
+83015 22251,78295 60375,12-09-2016 10:23:31
+99003 88572,99006 60463,12-09-2016 10:24:14
+84314 16122,94499 20763,12-09-2016 10:27:19
+97385 70012,97424 53609,12-09-2016 10:36:06
+78138 56841,97426 75324,12-09-2016 10:43:52
+74060 75431,97390 23922,12-09-2016 10:46:59
+89071 31755,78290 99865,12-09-2016 10:47:38
+83019 53227,98446 66723,12-09-2016 10:48:58
+94499 38099,90365 51029,12-09-2016 10:49:00
+90361 52679,90359 91512,12-09-2016 10:54:07
+98448 86633,78293 91304,12-09-2016 10:55:40
+93412 66159,98454 07778,12-09-2016 10:57:10
+90361 52679,90359 91512,12-09-2016 11:03:58
+81520 43406,92421 64236,12-09-2016 11:17:50
+94489 95536,94492 23068,12-09-2016 11:17:52
+97421 07528,98454 07778,12-09-2016 11:20:04
+93421 63491,92414 22596,12-09-2016 11:30:21
+94489 72078,97416 29480,12-09-2016 11:30:40
+94487 29969,97419 41164,12-09-2016 11:31:22
+99003 47921,98444 95768,12-09-2016 11:38:15
+97386 20071,94499 20763,12-09-2016 11:41:32
+94499 38099,90365 51029,12-09-2016 11:43:04
+97391 99665,90368 72970,12-09-2016 11:43:44
+90358 98099,97406 74488,12-09-2016 11:47:37
+94491 05266,94495 34273,12-09-2016 11:47:59
+97419 41164,94487 29969,12-09-2016 11:49:10
+81525 12041,90356 11723,12-09-2016 11:58:51
+83015 22251,78295 60375,12-09-2016 11:59:56
+94499 20763,93412 66159,12-09-2016 12:05:11
+81522 26166,97380 86781,12-09-2016 12:06:41
+92413 79027,74060 75431,12-09-2016 12:06:43
+90084 16988,98449 60656,12-09-2016 12:08:55
+93436 09781,98448 72117,12-09-2016 12:11:41
+94480 64700,90088 09624,12-09-2016 12:24:28
+77950 18278,89078 69605,12-09-2016 12:27:28
+93423 23000,78133 10302,12-09-2016 12:27:44
+77956 90632,92411 96415,12-09-2016 12:30:01
+84311 10322,90359 79636,12-09-2016 12:34:09
+97424 53609,90197 69887,12-09-2016 12:42:06
+97424 21092,90351 35947,12-09-2016 12:47:56
+99003 88572,99006 60463,12-09-2016 12:54:23
+93421 63491,92414 22596,12-09-2016 12:55:46
+78136 65840,74066 93594,12-09-2016 12:56:50
+84311 10322,90359 79636,12-09-2016 13:04:38
+78295 48262,81515 65055,12-09-2016 13:12:45
+90357 17994,93420 59147,12-09-2016 13:17:05
+78295 48262,70121 27677,12-09-2016 13:19:58
+96565 52272,93428 11808,12-09-2016 13:22:48
+78295 65598,98440 65896,12-09-2016 13:27:12
+98454 07778,93412 66159,12-09-2016 13:30:42
+97390 23922,90359 52497,12-09-2016 13:36:58
+93410 56456,98453 86521,12-09-2016 13:40:38
+97391 99665,94488 97308,12-09-2016 13:40:59
+97447 92655,84319 42810,12-09-2016 13:43:39
+97426 75324,78138 56841,12-09-2016 13:46:24
+78138 56841,97426 75324,12-09-2016 13:47:39
+90357 17994,93420 59147,12-09-2016 13:50:27
+90192 87313,78139 24512,12-09-2016 13:50:35
+95264 40233,98440 68457,12-09-2016 13:56:56
+97421 07528,90083 59148,12-09-2016 13:57:04
+97412 66065,94006 62384,12-09-2016 14:03:47
+99007 06998,84314 00609,12-09-2016 14:11:24
+90199 91061,97414 15280,12-09-2016 14:11:55
+81522 26166,90194 00845,12-09-2016 14:12:23
+93432 65750,92425 27794,12-09-2016 14:12:23
+90083 59148,97421 07528,12-09-2016 14:26:21
+90359 79636,70121 27677,12-09-2016 14:30:26
+90352 50054,97389 12538,12-09-2016 14:32:56
+97424 60171,94486 40312,12-09-2016 14:44:09
+90351 35947,97424 21092,12-09-2016 14:45:57
+90362 07317,92413 38675,12-09-2016 14:51:19
+97391 99665,94488 97308,12-09-2016 15:00:01
+97424 53609,90197 69887,12-09-2016 15:01:37
+94492 23068,94489 95536,12-09-2016 15:03:43
+90199 91061,97414 15280,12-09-2016 15:06:20
+81519 62015,99009 32475,12-09-2016 15:12:18
+97399 92703,78136 42599,12-09-2016 15:12:57
+81520 43406,92421 64236,12-09-2016 15:20:49
+92413 38675,90362 07317,12-09-2016 15:22:23
+90359 79636,70121 27677,12-09-2016 15:24:44
+94487 29969,97419 41164,12-09-2016 15:25:19
+97416 29480,94489 72078,12-09-2016 15:26:21
+98446 66723,97422 22278,12-09-2016 15:27:21
+94499 38099,90365 51029,12-09-2016 15:29:16
+84313 45689,78295 65598,12-09-2016 15:30:10
+93410 98013,78295 60375,12-09-2016 15:34:05
+94487 29969,97419 41164,12-09-2016 15:36:09
+90352 50054,97389 12538,12-09-2016 15:36:27
+93436 09781,98448 72117,12-09-2016 15:37:09
+94490 65627,97395 95120,12-09-2016 15:38:32
+92411 96415,97406 74488,12-09-2016 15:57:47
+90355 94399,97391 99665,12-09-2016 16:00:00
+99004 86250,97390 23922,12-09-2016 16:01:53
+94485 80091,84312 48999,12-09-2016 16:03:23
+90367 90080,74066 93594,12-09-2016 16:16:45
+90197 24124,99612 41256,12-09-2016 16:16:46
+94489 72078,97416 29480,12-09-2016 16:18:43
+78295 65598,84313 45689,12-09-2016 16:19:55
+90351 35947,97424 21092,12-09-2016 16:20:05
+94480 64700,90088 09624,12-09-2016 16:24:28
+81515 42171,98440 02823,12-09-2016 16:26:14
+92424 51984,78299 99223,12-09-2016 16:27:25
+98454 07778,93412 66159,12-09-2016 16:30:34
+94499 20763,84314 16122,12-09-2016 16:33:37
+94487 29969,97419 41164,12-09-2016 16:35:13
+97414 62784,98449 60656,12-09-2016 16:44:16
+94499 20763,93412 66159,12-09-2016 16:49:55
+97403 09983,90198 03659,12-09-2016 16:51:46
+97391 99665,90368 72970,12-09-2016 16:54:57
+81515 65055,78295 48262,12-09-2016 16:56:56
+90082 61126,90366 69257,12-09-2016 17:07:12
+84313 45689,78295 65598,12-09-2016 17:09:20
+78133 10302,93423 23000,12-09-2016 17:11:36
+94492 23068,94489 95536,12-09-2016 17:13:14
+90359 99240,94491 55790,12-09-2016 17:17:49
+94006 62384,99616 15114,12-09-2016 17:26:56
+90365 51029,94499 38099,12-09-2016 17:30:08
+77956 90632,92411 96415,12-09-2016 17:31:33
+90362 07317,92413 38675,12-09-2016 17:33:43
+97424 60171,94486 40312,12-09-2016 17:35:23
+94485 80091,84312 48999,12-09-2016 17:42:28
+92411 96415,97406 74488,12-09-2016 17:46:52
+92415 91418,94489 72078,12-09-2016 17:48:53
+90354 08732,94499 20763,12-09-2016 17:53:02
+90087 42537,94497 44333,12-09-2016 17:54:20
+97424 21092,90351 35947,12-09-2016 17:55:51
+90355 94399,98452 19037,12-09-2016 18:03:21
+93412 66159,94499 20763,12-09-2016 18:06:43
+92421 09526,89076 36757,12-09-2016 18:10:26
+97390 23922,90359 52497,12-09-2016 18:12:50
+94489 72078,92415 91418,12-09-2016 18:21:55
+97395 95120,94490 65627,12-09-2016 18:23:51
+78299 99223,92424 51984,12-09-2016 18:25:48
+92411 96415,97406 74488,12-09-2016 18:26:00
+94492 23068,90359 91512,12-09-2016 18:27:04
+84314 00609,99007 06998,12-09-2016 18:34:18
+94495 34273,94491 05266,12-09-2016 18:34:48
+97419 41164,94487 29969,12-09-2016 18:36:13
+81524 55552,90355 10919,12-09-2016 18:36:14
+97416 29480,94489 72078,12-09-2016 18:40:25
+90359 91512,94492 23068,12-09-2016 18:47:35
+97424 21092,98451 87493,12-09-2016 18:48:21
+90352 50054,96566 40412,12-09-2016 18:53:37
+78295 65598,98440 65896,12-09-2016 18:59:23
+90365 51029,94499 38099,12-09-2016 19:02:19
+94492 23068,90359 91512,12-09-2016 19:03:29
+98440 65896,98446 78140,12-09-2016 19:05:49
+97414 62784,98449 60656,12-09-2016 19:11:25
+90359 79636,84311 10322,12-09-2016 19:12:40
+87141 73076,78290 30467,12-09-2016 19:13:20
+84313 45689,78295 65598,12-09-2016 19:16:23
+97403 09983,97406 06245,12-09-2016 19:17:24
+97406 74488,90358 98099,12-09-2016 19:17:37
+78290 31269,97386 37259,12-09-2016 19:22:21
+90088 09624,94480 64700,12-09-2016 19:24:06
+99001 95783,89076 36757,12-09-2016 19:28:49
+90352 50054,97389 12538,12-09-2016 19:36:46
+90359 52497,97390 23922,12-09-2016 19:41:20
+93416 07259,78132 18081,12-09-2016 19:43:57
+97419 41164,94487 29969,12-09-2016 19:48:58
+98442 33257,95262 44233,12-09-2016 19:48:58
+93434 31551,90088 09624,12-09-2016 19:49:30
+98448 72117,93436 09781,12-09-2016 19:52:47
+97390 23922,90359 52497,12-09-2016 20:03:43
+81519 62015,99009 32475,12-09-2016 20:03:55
+98444 42212,97393 04671,12-09-2016 20:12:59
+81517 73746,94497 77615,12-09-2016 20:14:55
+93420 59147,90357 17994,12-09-2016 20:15:20
+98440 65896,98446 78140,12-09-2016 20:16:49
+94492 23068,90359 91512,12-09-2016 20:17:48
+92414 22596,93421 63491,12-09-2016 20:23:35
+90087 42537,94497 44333,12-09-2016 20:25:20
+70121 27677,90359 79636,12-09-2016 20:26:02
+94492 23068,90359 91512,12-09-2016 20:32:56
+97386 37259,78290 31269,12-09-2016 20:35:16
+78295 48262,70121 27677,12-09-2016 20:44:09
+83015 22251,78295 60375,12-09-2016 20:44:58
+94486 40312,97424 60171,12-09-2016 20:48:53
+98452 19037,90355 94399,12-09-2016 20:53:44
+94499 20763,84314 16122,12-09-2016 21:04:43
+99616 15114,94006 62384,12-09-2016 21:15:47
+98452 19037,90355 94399,12-09-2016 21:17:23
+89072 39789,87140 67779,12-09-2016 21:20:32
+98454 07778,93412 66159,12-09-2016 21:24:07
+99610 89720,81525 12041,12-09-2016 21:25:18
+97447 92655,97404 63904,12-09-2016 21:25:33
+94489 95536,93418 82576,12-09-2016 21:25:51
+98454 07778,93412 66159,12-09-2016 21:27:26
+94492 23068,94489 95536,12-09-2016 21:29:12
+97386 20071,94499 20763,12-09-2016 21:29:35
+94488 97308,97391 99665,12-09-2016 21:34:26
+78138 56841,99009 32475,12-09-2016 21:35:04
+84313 45689,78295 65598,12-09-2016 21:35:37
+90361 52679,90359 91512,12-09-2016 21:38:24
+97393 04671,97415 99182,12-09-2016 21:39:28
+97422 22278,98446 66723,12-09-2016 21:44:01
+90355 94399,97391 99665,12-09-2016 21:51:02
+94006 62384,97412 66065,12-09-2016 21:51:13
+90084 16988,98449 60656,12-09-2016 21:52:29
+70121 27677,78295 48262,12-09-2016 21:53:26
+78136 42599,97399 92703,12-09-2016 21:56:27
+94499 38099,90365 51029,12-09-2016 22:01:20
+94489 72078,97416 29480,12-09-2016 22:08:14
+95262 44233,97393 04671,12-09-2016 22:14:20
+78295 48262,81515 65055,12-09-2016 22:14:42
+90351 35947,97424 21092,12-09-2016 22:17:43
+99612 41256,81526 05544,12-09-2016 22:18:00
+74066 93594,78136 65840,12-09-2016 22:18:09
+90362 07317,92413 38675,12-09-2016 22:33:55
+98442 33257,95262 44233,12-09-2016 22:37:50
+94499 46077,83013 02552,12-09-2016 22:44:07
+94499 20763,84314 16122,12-09-2016 22:45:19
+97416 17124,90194 00845,12-09-2016 22:46:41
+90365 51029,94499 38099,12-09-2016 22:47:56
+93423 23000,98458 13389,12-09-2016 22:54:31
+78138 56841,97426 75324,12-09-2016 23:03:00
+90359 79636,70121 27677,12-09-2016 23:07:30
+98440 65896,78295 65598,12-09-2016 23:17:48
+94480 64700,90088 09624,12-09-2016 23:19:04
+90355 10919,81524 55552,12-09-2016 23:19:28
+94489 95536,93418 82576,12-09-2016 23:21:35
+94499 38099,90365 51029,12-09-2016 23:22:09
+97421 07528,90083 59148,12-09-2016 23:30:49
+94480 31371,97426 25297,12-09-2016 23:35:02
+90358 98099,97406 74488,12-09-2016 23:38:53
+98458 13389,93423 23000,12-09-2016 23:39:09
+78298 91466,97380 60551,12-09-2016 23:53:25
+81520 43406,92421 64236,12-09-2016 23:54:04
+97425 92186,94482 95223,12-09-2016 23:55:46
+92411 96415,97406 74488,12-09-2016 23:58:09
+90365 51029,97380 60551,13-09-2016 06:00:43
+97403 49292,98445 33687,13-09-2016 06:08:05
+81526 05544,99612 41256,13-09-2016 06:08:39
+94001 07403,90368 72970,13-09-2016 06:12:39
+94497 77615,81517 73746,13-09-2016 06:15:45
+99003 47921,98444 95768,13-09-2016 06:17:59
+97415 99182,97393 04671,13-09-2016 06:20:40
+97419 41164,94487 29969,13-09-2016 06:24:36
+90368 72970,94001 07403,13-09-2016 06:30:18
+94482 95223,97425 92186,13-09-2016 06:30:53
+99001 95783,89076 36757,13-09-2016 06:34:32
+92414 22596,93421 63491,13-09-2016 06:38:06
+78295 65598,98440 65896,13-09-2016 06:40:57
+74066 31484,98454 90038,13-09-2016 06:44:39
+78138 56841,97426 75324,13-09-2016 06:45:11
+98453 86521,93410 56456,13-09-2016 06:45:19
+81520 43406,92421 64236,13-09-2016 06:45:22
+93421 63491,92414 22596,13-09-2016 06:46:45
+97389 12538,90352 50054,13-09-2016 06:51:04
+90198 03659,97403 09983,13-09-2016 06:51:53
+81520 43406,92421 64236,13-09-2016 06:53:50
+98440 65896,78295 65598,13-09-2016 06:58:56
+93410 98013,78295 60375,13-09-2016 07:00:15
+92413 79027,74060 75431,13-09-2016 07:01:57
+90357 17994,93420 59147,13-09-2016 07:05:41
+97421 07528,90083 59148,13-09-2016 07:07:44
+92424 51984,78299 99223,13-09-2016 07:16:32
+93423 23000,98458 13389,13-09-2016 07:16:37
+93423 23000,98458 13389,13-09-2016 07:20:33
+98446 66723,97422 22278,13-09-2016 07:21:19
+92411 96415,78993 92058,13-09-2016 07:22:58
+81520 43406,92421 64236,13-09-2016 07:25:07
+92411 96415,97406 74488,13-09-2016 07:29:18
+98446 78140,98440 65896,13-09-2016 07:30:06
+97416 29480,94489 72078,13-09-2016 07:32:32
+97448 02140,97418 46131,13-09-2016 07:32:41
+94492 23068,94489 95536,13-09-2016 07:33:44
+94497 77615,81517 73746,13-09-2016 07:33:57
+90194 00845,97416 17124,13-09-2016 07:50:26
+87146 31956,83019 39880,13-09-2016 07:52:25
+94006 62384,99616 15114,13-09-2016 07:56:09
+94497 77615,81517 73746,13-09-2016 07:57:02
+99003 47921,98444 95768,13-09-2016 07:58:24
+78299 99223,92424 51984,13-09-2016 07:59:00
+94006 62384,97412 66065,13-09-2016 08:05:00
+78295 78750,97449 50000,13-09-2016 08:13:51
+90356 11723,81525 12041,13-09-2016 08:16:38
+97399 92703,78136 42599,13-09-2016 08:21:15
+94005 06213,98453 46196,13-09-2016 08:24:33
+97385 70012,94497 44333,13-09-2016 08:25:27
+90362 07317,92413 38675,13-09-2016 08:28:35
+81525 78007,93418 41992,13-09-2016 08:30:56
+99003 47921,98444 95768,13-09-2016 08:32:31
+94499 20763,90354 08732,13-09-2016 08:33:47
+77950 18278,89078 69605,13-09-2016 08:34:44
+99001 23133,90359 79636,13-09-2016 08:36:39
+90194 00845,97416 17124,13-09-2016 08:43:18
+98444 42212,97393 04671,13-09-2016 08:50:35
+90365 51029,97380 60551,13-09-2016 08:53:41
+90359 99240,94491 55790,13-09-2016 08:54:47
+90359 79636,84311 10322,13-09-2016 08:56:47
+98440 65896,93418 41992,13-09-2016 08:57:19
+94489 72078,92415 91418,13-09-2016 09:12:06
+90084 16988,93422 47940,13-09-2016 09:12:33
+97380 60551,81524 55552,13-09-2016 09:18:48
+94499 20763,90354 08732,13-09-2016 09:27:09
+98440 02823,81515 42171,13-09-2016 09:27:33
+78132 18081,98443 72004,13-09-2016 09:34:25
+81510 47188,97429 02055,13-09-2016 09:35:04
+94499 20763,84314 16122,13-09-2016 09:38:28
+97416 29480,94489 72078,13-09-2016 09:39:26
+90366 69257,90082 61126,13-09-2016 09:43:06
+92413 79027,74060 75431,13-09-2016 09:47:00
+93410 98013,78295 60375,13-09-2016 09:51:14
+94491 55790,90359 99240,13-09-2016 09:51:29
+94491 05266,94495 34273,13-09-2016 09:52:50
+98454 07778,93412 66159,13-09-2016 09:58:10
+90358 98099,97406 74488,13-09-2016 10:00:39
+97421 07528,97399 92703,13-09-2016 10:04:29
+99003 88572,99006 60463,13-09-2016 10:04:31
+92421 64236,81520 43406,13-09-2016 10:11:57
+94491 55790,90359 99240,13-09-2016 10:19:07
+94499 20763,84314 16122,13-09-2016 10:19:47
+99001 23133,90359 79636,13-09-2016 10:19:54
+78295 60375,93410 98013,13-09-2016 10:21:59
+94499 38099,90365 51029,13-09-2016 10:26:37
+97391 99665,90368 72970,13-09-2016 10:28:19
+94006 62384,97412 66065,13-09-2016 10:32:53
+97393 04671,97415 99182,13-09-2016 10:41:23
+90192 87313,78139 24512,13-09-2016 10:43:57
+81525 78007,93418 41992,13-09-2016 10:44:37
+94487 29969,97419 41164,13-09-2016 10:49:23
+97420 86635,90193 20957,13-09-2016 10:49:39
+70121 27677,78295 48262,13-09-2016 10:52:59
+97391 99665,90368 72970,13-09-2016 10:53:59
+90362 07317,92413 38675,13-09-2016 11:01:52
+81524 55552,90355 10919,13-09-2016 11:02:42
+78993 92058,92411 96415,13-09-2016 11:05:36
+90359 91512,94492 23068,13-09-2016 11:06:14
+93410 56456,98453 86521,13-09-2016 11:08:24
+89078 69605,77950 18278,13-09-2016 11:18:23
+98453 86521,93410 56456,13-09-2016 11:23:17
+97385 70012,97424 53609,13-09-2016 11:28:27
+94006 62384,99616 15114,13-09-2016 11:30:09
+97393 04671,97415 99182,13-09-2016 11:31:59
+90368 72970,97391 99665,13-09-2016 11:50:49
+93422 47940,90084 16988,13-09-2016 11:51:23
+83015 22251,78295 60375,13-09-2016 11:57:45
+93410 98013,78295 60375,13-09-2016 12:10:53
+97415 99182,97393 04671,13-09-2016 12:17:30
+98454 07778,93412 66159,13-09-2016 12:18:42
+81515 42171,98440 02823,13-09-2016 12:21:37
+93435 31225,87141 37314,13-09-2016 12:29:35
+81515 42171,98440 02823,13-09-2016 12:31:23
+94489 72078,97416 29480,13-09-2016 12:46:23
+97421 07528,98454 07778,13-09-2016 12:47:51
+78130 00821,98453 94494,13-09-2016 12:50:09
+93418 41992,81525 78007,13-09-2016 12:54:16
+83019 39880,87146 31956,13-09-2016 12:57:44
+90368 72970,97391 99665,13-09-2016 13:01:55
+90087 42537,94497 44333,13-09-2016 13:10:41
+90366 69257,90082 61126,13-09-2016 13:13:48
+70129 62374,98441 32533,13-09-2016 13:20:16
+94492 23068,94489 95536,13-09-2016 13:28:45
+98452 19037,90355 94399,13-09-2016 13:35:24
+94499 20763,97386 20071,13-09-2016 13:37:31
+99003 88572,99006 60463,13-09-2016 13:39:26
+94499 38099,90365 51029,13-09-2016 13:40:02
+90082 61126,90366 69257,13-09-2016 13:41:02
+99004 86250,97390 23922,13-09-2016 13:42:11
+97403 09983,90198 03659,13-09-2016 13:47:38
+92411 96415,78993 92058,13-09-2016 13:51:57
+90365 51029,94499 38099,13-09-2016 13:55:08
+94487 29969,97419 41164,13-09-2016 13:59:20
+93412 66159,98454 07778,13-09-2016 14:00:26
+90359 52497,97390 23922,13-09-2016 14:05:38
+74294 40351,98440 02823,13-09-2016 14:05:38
+99007 06998,84314 00609,13-09-2016 14:09:33
+78138 56841,97426 75324,13-09-2016 14:19:11
+97446 95253,97428 35959,13-09-2016 14:27:33
+93418 41992,97385 35042,13-09-2016 14:29:11
+97406 74488,92411 96415,13-09-2016 14:30:27
+94480 64700,90088 09624,13-09-2016 14:34:44
+97393 04671,95262 44233,13-09-2016 14:36:26
+93428 11808,97406 06245,13-09-2016 14:36:55
+90084 16988,93422 47940,13-09-2016 14:42:48
+90359 99240,94491 55790,13-09-2016 14:45:03
+97421 07528,98454 07778,13-09-2016 14:50:21
+93418 41992,81525 78007,13-09-2016 14:52:26
+95269 20533,97449 50000,13-09-2016 14:56:25
+99009 32475,78138 56841,13-09-2016 14:58:33
+97390 23922,99004 86250,13-09-2016 15:02:02
+77956 90632,92411 96415,13-09-2016 15:06:05
+98445 42844,99617 74886,13-09-2016 15:10:08
+90359 79636,70121 27677,13-09-2016 15:16:17
+90352 50054,97389 12538,13-09-2016 15:24:08
+92411 96415,77956 90632,13-09-2016 15:27:55
+90365 51029,94499 38099,13-09-2016 15:28:57
+81517 73746,94497 77615,13-09-2016 15:32:44
+93418 82576,94489 95536,13-09-2016 15:34:25
+94480 64700,90088 09624,13-09-2016 15:35:24
+93428 11808,96565 52272,13-09-2016 15:36:50
+99617 74886,98445 42844,13-09-2016 15:36:51
+90366 69257,90082 61126,13-09-2016 15:37:58
+98444 95768,99003 47921,13-09-2016 15:39:59
+98440 65896,98446 78140,13-09-2016 15:42:38
+74060 75431,92413 79027,13-09-2016 15:45:08
+90357 17994,93420 59147,13-09-2016 15:59:32
+94492 23068,90359 91512,13-09-2016 16:01:24
+93415 21881,98454 90038,13-09-2016 16:04:09
+92428 82401,97385 29751,13-09-2016 16:12:52
+78290 30467,87141 73076,13-09-2016 16:18:47
+90366 69257,90082 61126,13-09-2016 16:19:30
+81526 05544,99612 41256,13-09-2016 16:19:38
+95269 20533,97449 50000,13-09-2016 16:24:59
+92411 96415,77956 90632,13-09-2016 16:26:02
+77956 90632,92411 96415,13-09-2016 16:34:23
+93427 56500,98447 12671,13-09-2016 16:37:39
+97384 69866,87146 31956,13-09-2016 16:38:54
+97391 99665,90368 72970,13-09-2016 16:39:47
+97385 29751,92428 82401,13-09-2016 16:40:43
+94491 55790,90359 99240,13-09-2016 16:45:29
+97393 04671,97415 99182,13-09-2016 16:48:41
+99001 95783,89076 36757,13-09-2016 16:54:42
+78133 10302,93423 23000,13-09-2016 16:55:21
+99003 47921,98444 95768,13-09-2016 16:56:11
+93435 21961,92411 96415,13-09-2016 16:56:25
+94486 40312,97424 60171,13-09-2016 16:57:17
+97385 70012,94497 44333,13-09-2016 17:03:12
+93410 56456,98453 86521,13-09-2016 17:05:51
+97386 37259,78290 31269,13-09-2016 17:06:42
+97393 04671,97415 99182,13-09-2016 17:08:43
+98446 78140,98440 65896,13-09-2016 17:14:54
+97384 69866,87146 31956,13-09-2016 17:21:53
+93436 09781,98448 72117,13-09-2016 17:31:17
+94499 20763,90354 08732,13-09-2016 17:32:51
+78299 99223,92424 51984,13-09-2016 17:35:26
+78299 99223,92424 51984,13-09-2016 17:37:19
+97414 62784,98449 60656,13-09-2016 17:38:39
+87141 73076,78290 30467,13-09-2016 17:40:03
+98458 13389,93423 23000,13-09-2016 17:43:10
+90193 20957,97420 86635,13-09-2016 17:45:07
+94499 46077,83013 02552,13-09-2016 17:46:36
+94006 62384,97412 66065,13-09-2016 17:46:46
+98446 78140,98440 65896,13-09-2016 17:51:22
+78139 24512,90192 87313,13-09-2016 17:52:25
+93418 41992,81525 78007,13-09-2016 18:10:53
+90356 11723,81525 12041,13-09-2016 18:12:46
+90352 50054,97389 12538,13-09-2016 18:18:21
+98441 32533,70129 62374,13-09-2016 18:20:25
+90366 69257,90082 61126,13-09-2016 18:21:24
+78299 99223,92424 51984,13-09-2016 18:21:54
+97428 35959,97446 95253,13-09-2016 18:22:58
+90192 87313,78139 24512,13-09-2016 18:26:48
+97380 86781,97380 60551,13-09-2016 18:29:04
+90351 35947,97424 21092,13-09-2016 18:38:46
+97391 99665,90355 94399,13-09-2016 18:40:20
+78132 18081,98443 72004,13-09-2016 18:45:41
+93435 31225,87141 37314,13-09-2016 18:47:26
+90365 51029,94499 38099,13-09-2016 18:49:34
+92411 96415,97406 74488,13-09-2016 18:49:57
+90356 11723,81525 12041,13-09-2016 18:52:48
+97390 23922,90359 52497,13-09-2016 18:54:34
+97385 29751,92428 82401,13-09-2016 18:57:32
+97420 86635,90193 20957,13-09-2016 18:58:37
+94492 23068,94489 95536,13-09-2016 19:01:50
+90358 98099,97406 74488,13-09-2016 19:04:07
+93434 31551,90088 09624,13-09-2016 19:13:27
+94005 06213,98453 46196,13-09-2016 19:15:07
+78130 00821,98453 94494,13-09-2016 19:16:15
+93428 11808,96565 52272,13-09-2016 19:17:53
+83015 22251,78295 60375,13-09-2016 19:17:59
+78295 60375,93410 98013,13-09-2016 19:19:12
+81513 30231,90365 06212,13-09-2016 19:20:21
+97403 09983,90198 03659,13-09-2016 19:23:52
+84314 16122,94499 20763,13-09-2016 19:29:13
+90355 94399,97391 99665,13-09-2016 19:31:13
+78139 24512,90192 87313,13-09-2016 19:34:33
+90356 11723,81525 12041,13-09-2016 19:39:12
+99610 89720,90197 69887,13-09-2016 19:48:49
+83019 53227,98446 66723,13-09-2016 19:49:12
+78295 60375,93410 98013,13-09-2016 19:55:22
+89078 69605,77950 18278,13-09-2016 19:58:44
+97399 92703,78136 42599,13-09-2016 20:00:12
+93432 65750,92425 27794,13-09-2016 20:03:25
+90359 91512,94492 23068,13-09-2016 20:04:42
+92414 22596,93421 63491,13-09-2016 20:06:24
+94489 72078,97416 29480,13-09-2016 20:08:04
+99004 86250,97390 23922,13-09-2016 20:08:24
+99001 23133,90359 79636,13-09-2016 20:16:17
+93422 47940,90084 16988,13-09-2016 20:17:43
+78993 92058,92411 96415,13-09-2016 20:20:25
+78295 60375,83015 22251,13-09-2016 20:21:48
+78290 31269,97386 37259,13-09-2016 20:28:42
+78138 56841,97426 75324,13-09-2016 20:31:20
+98449 60656,90084 16988,13-09-2016 20:37:55
+92413 38675,90362 07317,13-09-2016 20:39:41
+97380 60551,90365 51029,13-09-2016 20:40:08
+93434 31551,90088 09624,13-09-2016 20:45:53
+93434 31551,90088 09624,13-09-2016 20:51:35
+93412 66159,98454 07778,13-09-2016 20:52:13
+98440 02823,81515 42171,13-09-2016 20:54:06
+90193 20957,97420 86635,13-09-2016 21:02:16
+93423 23000,78133 10302,13-09-2016 21:04:57
+90352 50054,97389 12538,13-09-2016 21:10:47
+97447 92655,97404 63904,13-09-2016 21:11:32
+83019 39880,87146 31956,13-09-2016 21:16:54
+98449 60656,90084 16988,13-09-2016 21:22:40
+90352 50054,96566 40412,13-09-2016 21:25:33
+97406 74488,90358 98099,13-09-2016 21:28:34
+97425 92186,94482 95223,13-09-2016 21:30:23
+98448 86633,78293 91304,13-09-2016 21:45:27
+97424 21092,90351 35947,13-09-2016 21:50:47
+93423 23000,78133 10302,13-09-2016 21:51:28
+97424 21092,98451 87493,13-09-2016 21:55:25
+94492 23068,90359 91512,13-09-2016 21:58:26
+97399 92703,78136 42599,13-09-2016 22:04:43
+93436 09781,98448 72117,13-09-2016 22:07:19
+94480 64700,90088 09624,13-09-2016 22:09:26
+90359 91512,94492 23068,13-09-2016 22:13:59
+81525 12041,90356 11723,13-09-2016 22:21:31
+93421 63491,92414 22596,13-09-2016 22:25:16
+81525 78007,93418 41992,13-09-2016 22:32:29
+94482 95223,97425 92186,13-09-2016 22:33:01
+90083 59148,97421 07528,13-09-2016 22:37:24
+98444 72482,98446 78140,13-09-2016 22:37:33
+93436 09781,98448 72117,13-09-2016 22:47:25
+83015 22251,78295 60375,13-09-2016 22:51:07
+98452 19037,90355 94399,13-09-2016 22:55:54
+81517 73746,94497 77615,13-09-2016 23:02:12
+95262 44233,98442 33257,13-09-2016 23:05:54
+77950 18278,89078 69605,13-09-2016 23:07:42
+97416 29480,94489 72078,13-09-2016 23:11:56
+97380 60551,78298 91466,13-09-2016 23:16:22
+81515 42171,98440 02823,13-09-2016 23:20:51
+97406 74488,92411 96415,13-09-2016 23:21:29
+97415 99182,97393 04671,13-09-2016 23:22:51
+98444 95768,99003 47921,13-09-2016 23:23:47
+98453 46196,94005 06213,13-09-2016 23:25:07
+94482 95223,97425 92186,13-09-2016 23:26:15
+98440 02823,81515 42171,13-09-2016 23:26:35
+97389 12538,90352 50054,13-09-2016 23:28:03
+93434 31551,90088 09624,13-09-2016 23:28:25
+93428 11808,96565 52272,13-09-2016 23:29:53
+78993 92058,92411 96415,13-09-2016 23:29:58
+92411 96415,97406 74488,13-09-2016 23:38:08
+78295 60375,93410 98013,13-09-2016 23:40:38
+90365 51029,97380 60551,13-09-2016 23:54:57
+93412 66159,94499 20763,14-09-2016 06:00:16
+78295 48262,70121 27677,14-09-2016 06:01:16
+97424 53609,90197 69887,14-09-2016 06:07:44
+90193 20957,97420 86635,14-09-2016 06:11:36
+97414 62784,98449 60656,14-09-2016 06:22:29
+77956 90632,78132 18081,14-09-2016 06:32:08
+94005 06213,98453 46196,14-09-2016 06:38:18
+98449 60656,97414 62784,14-09-2016 06:48:42
+94499 20763,84314 16122,14-09-2016 06:54:54
+98447 12671,93427 56500,14-09-2016 06:59:01
+93412 66159,98454 07778,14-09-2016 07:03:27
+92424 51984,78299 99223,14-09-2016 07:15:05
+97386 37259,78290 31269,14-09-2016 07:17:44
+90359 91512,94492 23068,14-09-2016 07:19:00
+97403 09983,90198 03659,14-09-2016 07:20:37
+89076 36757,99001 95783,14-09-2016 07:27:48
+94006 62384,99616 15114,14-09-2016 07:41:29
+78299 99223,92424 51984,14-09-2016 07:43:14
+98458 13389,93423 23000,14-09-2016 07:44:27
+97406 74488,92411 96415,14-09-2016 07:46:21
+90359 79636,84311 10322,14-09-2016 07:50:20
+94489 72078,97416 29480,14-09-2016 07:53:01
+92414 22596,93421 63491,14-09-2016 07:54:11
+93434 31551,90088 09624,14-09-2016 07:54:35
+78295 65598,84313 45689,14-09-2016 07:57:25
+97395 95120,94490 65627,14-09-2016 07:57:53
+83015 22251,78295 60375,14-09-2016 07:58:13
+98454 07778,93412 66159,14-09-2016 08:01:40
+90365 51029,94499 38099,14-09-2016 08:19:39
+77950 18278,89078 69605,14-09-2016 08:20:11
+94489 95536,94492 23068,14-09-2016 08:26:42
+90082 61126,90366 69257,14-09-2016 08:31:31
+90084 16988,93422 47940,14-09-2016 08:34:34
+99009 32475,78138 56841,14-09-2016 08:35:45
+90351 35947,97424 21092,14-09-2016 08:41:24
+83015 22251,78295 60375,14-09-2016 08:44:04
+90358 98099,97406 74488,14-09-2016 08:44:58
+98441 32533,70129 62374,14-09-2016 08:47:08
+97447 92655,97404 63904,14-09-2016 08:48:25
+93412 66159,94499 20763,14-09-2016 08:51:53
+78138 56841,97426 75324,14-09-2016 08:53:19
+98440 02823,81515 42171,14-09-2016 08:56:48
+97425 12708,90366 36573,14-09-2016 08:56:54
+89076 36757,99001 95783,14-09-2016 08:58:37
+98445 42844,99617 74886,14-09-2016 08:59:52
+93418 82576,94489 95536,14-09-2016 09:06:50
+97421 07528,90083 59148,14-09-2016 09:11:33
+78295 65598,84313 45689,14-09-2016 09:17:45
+90357 17994,93420 59147,14-09-2016 09:18:56
+74294 40351,98440 02823,14-09-2016 09:19:07
+97395 95120,94490 65627,14-09-2016 09:19:15
+90197 24124,99612 41256,14-09-2016 09:23:15
+93434 31551,90088 09624,14-09-2016 09:32:35
+78295 60375,93410 98013,14-09-2016 09:43:00
+97391 99665,94488 97308,14-09-2016 09:53:09
+78295 48262,70121 27677,14-09-2016 09:57:55
+97424 60171,94486 40312,14-09-2016 10:01:11
+98444 72482,98446 78140,14-09-2016 10:03:08
+94482 95223,97425 92186,14-09-2016 10:06:02
+98444 42212,97393 04671,14-09-2016 10:06:09
+97380 60551,81524 55552,14-09-2016 10:06:34
+98451 87493,97424 21092,14-09-2016 10:08:38
+78136 42599,97399 92703,14-09-2016 10:09:09
+90352 50054,97389 12538,14-09-2016 10:14:06
+97391 99665,94488 97308,14-09-2016 10:18:01
+94482 95223,97425 92186,14-09-2016 10:22:48
+94491 55790,90359 99240,14-09-2016 10:23:12
+94491 05266,94495 34273,14-09-2016 10:23:46
+94499 20763,90354 08732,14-09-2016 10:26:29
+90356 11723,81525 12041,14-09-2016 10:39:06
+94499 38099,90365 51029,14-09-2016 10:42:10
+97424 53609,97385 70012,14-09-2016 10:47:04
+93418 41992,97385 35042,14-09-2016 10:48:26
+97426 75324,78138 56841,14-09-2016 10:50:17
+93410 98013,78295 60375,14-09-2016 10:54:51
+90358 98099,97406 74488,14-09-2016 10:58:15
+90358 98099,97406 74488,14-09-2016 10:58:28
+94492 23068,90359 91512,14-09-2016 11:07:58
+97406 74488,90358 98099,14-09-2016 11:10:25
+98449 60656,90084 16988,14-09-2016 11:16:12
+95267 70383,97414 62027,14-09-2016 11:25:34
+94489 72078,92415 91418,14-09-2016 11:25:37
+81517 73746,94497 77615,14-09-2016 11:26:50
+84311 10322,90359 79636,14-09-2016 11:30:45
+97395 95120,94490 65627,14-09-2016 11:37:50
+94497 44333,97385 70012,14-09-2016 11:41:26
+94499 20763,84314 16122,14-09-2016 11:42:03
+97424 21092,98451 87493,14-09-2016 11:46:01
+78139 24512,90192 87313,14-09-2016 12:00:19
+97406 06245,97403 09983,14-09-2016 12:02:04
+98442 33257,95262 44233,14-09-2016 12:02:29
+93418 41992,97385 35042,14-09-2016 12:03:36
+93416 07259,78132 18081,14-09-2016 12:11:27
+98454 07778,93412 66159,14-09-2016 12:23:13
+93428 11808,96565 52272,14-09-2016 12:24:28
+94497 44333,97385 70012,14-09-2016 12:27:47
+97403 49292,93435 98939,14-09-2016 12:28:13
+97421 07528,90083 59148,14-09-2016 12:28:30
+84311 10322,90359 79636,14-09-2016 12:33:47
+97391 99665,90368 72970,14-09-2016 12:37:14
+77950 18278,89078 69605,14-09-2016 12:46:10
+93427 56500,98447 12671,14-09-2016 12:47:54
+94491 05266,94495 34273,14-09-2016 12:52:19
+89078 69605,77950 18278,14-09-2016 12:55:10
+78299 99223,92424 51984,14-09-2016 13:00:21
+78290 30467,87141 73076,14-09-2016 13:10:27
+98444 95768,99003 47921,14-09-2016 13:21:05
+97406 06245,97403 09983,14-09-2016 13:31:11
+90362 07317,92413 38675,14-09-2016 13:31:16
+94489 72078,97416 29480,14-09-2016 13:34:15
+98447 12671,93427 56500,14-09-2016 13:34:53
+94499 20763,97386 20071,14-09-2016 13:35:11
+98452 19037,90355 94399,14-09-2016 13:38:18
+83012 37742,70121 27677,14-09-2016 13:41:47
+84314 16122,94499 20763,14-09-2016 13:42:21
+98441 32533,93410 98013,14-09-2016 13:46:45
+90351 35947,97424 21092,14-09-2016 13:49:29
+97403 49292,98445 33687,14-09-2016 13:50:07
+93418 41992,81525 78007,14-09-2016 13:55:05
+78132 18081,77956 90632,14-09-2016 13:56:08
+97389 12538,90352 50054,14-09-2016 14:00:05
+98440 68457,95264 40233,14-09-2016 14:01:42
+98444 72482,98446 78140,14-09-2016 14:04:05
+97425 12708,90366 36573,14-09-2016 14:15:43
+90197 69887,97424 53609,14-09-2016 14:17:28
+83019 39880,87146 31956,14-09-2016 14:19:02
+94492 23068,90359 91512,14-09-2016 14:22:46
+97426 75324,78138 56841,14-09-2016 14:23:01
+98448 72117,93436 09781,14-09-2016 14:24:34
+90362 07317,92413 38675,14-09-2016 14:28:19
+93418 41992,81525 78007,14-09-2016 14:32:27
+94497 44333,97385 70012,14-09-2016 14:33:03
+92424 51984,78299 99223,14-09-2016 14:41:59
+90357 17994,93420 59147,14-09-2016 14:42:04
+92411 96415,93435 21961,14-09-2016 14:42:22
+94492 23068,90359 91512,14-09-2016 14:43:55
+98446 78140,98440 65896,14-09-2016 14:48:02
+90088 09624,94480 64700,14-09-2016 14:50:55
+94492 23068,90359 91512,14-09-2016 14:52:47
+98440 02823,81515 42171,14-09-2016 14:57:10
+97380 60551,90365 51029,14-09-2016 14:58:46
+90198 03659,97403 09983,14-09-2016 15:00:46
+94006 62384,99616 15114,14-09-2016 15:02:57
+87141 73076,78290 30467,14-09-2016 15:03:42
+98442 33257,95262 44233,14-09-2016 15:10:40
+90197 69887,97424 53609,14-09-2016 15:20:02
+70121 27677,83012 37742,14-09-2016 15:26:18
+93418 41992,97385 35042,14-09-2016 15:28:12
+99001 23133,90359 79636,14-09-2016 15:37:01
+90366 36573,97425 12708,14-09-2016 15:41:04
+90351 35947,97424 21092,14-09-2016 15:41:32
+93410 98013,98441 32533,14-09-2016 15:47:56
+97406 74488,90358 98099,14-09-2016 15:48:35
+84312 48999,94485 80091,14-09-2016 15:50:14
+98446 66723,97422 22278,14-09-2016 15:51:00
+97419 41164,94487 29969,14-09-2016 15:52:26
+78290 30467,87141 73076,14-09-2016 15:58:04
+94489 72078,97416 29480,14-09-2016 15:58:27
+78299 36192,94006 62384,14-09-2016 15:59:58
+90351 35947,97424 21092,14-09-2016 16:05:07
+97424 53609,90197 69887,14-09-2016 16:10:24
+97389 12538,90352 50054,14-09-2016 16:16:43
+99001 95783,89076 36757,14-09-2016 16:23:10
+94480 64700,90088 09624,14-09-2016 16:24:18
+94491 05266,94495 34273,14-09-2016 16:35:35
+90197 24124,99612 41256,14-09-2016 16:37:59
+93416 07259,78132 18081,14-09-2016 16:41:16
+94499 20763,84314 16122,14-09-2016 16:45:29
+90198 03659,97403 09983,14-09-2016 16:53:26
+94485 80091,84312 48999,14-09-2016 16:59:07
+93428 11808,97406 06245,14-09-2016 17:04:15
+90197 69887,97424 53609,14-09-2016 17:06:42
+93436 09781,98448 72117,14-09-2016 17:12:26
+90358 98099,97406 74488,14-09-2016 17:14:10
+97404 63904,97447 92655,14-09-2016 17:26:03
+78993 92058,92411 96415,14-09-2016 17:29:35
+90362 07317,92413 38675,14-09-2016 17:29:39
+99617 74886,98445 42844,14-09-2016 17:31:14
+93410 98013,98441 32533,14-09-2016 17:31:16
+94491 55790,90359 99240,14-09-2016 17:33:59
+90361 52679,90359 91512,14-09-2016 17:34:52
+81517 73746,94497 77615,14-09-2016 17:35:03
+90352 50054,96566 40412,14-09-2016 17:46:14
+99001 95783,89076 36757,14-09-2016 17:48:07
+90366 36573,97425 12708,14-09-2016 18:00:19
+97449 50000,78295 78750,14-09-2016 18:07:52
+81515 42171,98440 02823,14-09-2016 18:08:51
+84313 45689,78295 65598,14-09-2016 18:17:05
+98458 13389,93423 23000,14-09-2016 18:19:42
+90359 52497,97390 23922,14-09-2016 18:30:22
+90366 36573,98448 87878,14-09-2016 18:31:43
+90194 00845,81522 26166,14-09-2016 18:32:16
+99610 89720,90197 69887,14-09-2016 18:34:43
+70121 27677,90359 79636,14-09-2016 18:35:22
+93423 23000,98458 13389,14-09-2016 18:35:51
+90083 59148,97421 07528,14-09-2016 18:36:56
+90197 24124,99612 41256,14-09-2016 18:37:44
+97447 92655,97404 63904,14-09-2016 18:42:01
+99006 60463,99003 88572,14-09-2016 18:44:44
+98441 32533,93410 98013,14-09-2016 18:50:24
+97421 07528,90083 59148,14-09-2016 18:50:40
+97424 22395,90365 06212,14-09-2016 18:52:05
+70121 27677,90359 79636,14-09-2016 18:53:31
+97425 12708,90366 36573,14-09-2016 18:59:08
+90193 20957,97420 86635,14-09-2016 19:02:40
+97380 60551,81524 55552,14-09-2016 19:14:32
+78993 92058,92411 96415,14-09-2016 19:24:16
+97393 04671,97415 99182,14-09-2016 19:27:28
+78130 00821,98453 94494,14-09-2016 19:34:08
+94489 95536,93418 82576,14-09-2016 19:34:47
+99006 60463,99003 88572,14-09-2016 19:34:59
+90192 87313,78139 24512,14-09-2016 19:37:37
+97416 29480,94489 72078,14-09-2016 19:41:21
+97447 92655,84319 42810,14-09-2016 19:50:21
+93423 23000,78133 10302,14-09-2016 19:54:52
+74066 31484,98454 90038,14-09-2016 19:56:51
+90359 99240,94491 55790,14-09-2016 19:59:44
+97424 21092,90351 35947,14-09-2016 20:02:03
+90358 98099,97406 74488,14-09-2016 20:03:14
+90084 16988,93422 47940,14-09-2016 20:07:46
+98447 12671,93427 56500,14-09-2016 20:08:06
+94499 46077,83013 02552,14-09-2016 20:13:28
+90356 11723,81525 12041,14-09-2016 20:13:52
+99612 41256,90197 24124,14-09-2016 20:18:00
+81517 73746,94497 77615,14-09-2016 20:19:36
+97399 92703,78136 42599,14-09-2016 20:21:22
+98445 42844,99617 74886,14-09-2016 20:30:09
+90358 98099,97406 74488,14-09-2016 20:33:11
+94499 20763,93412 66159,14-09-2016 20:36:22
+83012 37742,70121 27677,14-09-2016 20:45:29
+94485 80091,84312 48999,14-09-2016 20:50:55
+94489 72078,97416 29480,14-09-2016 20:52:17
+90084 16988,93422 47940,14-09-2016 20:58:50
+90356 11723,81525 12041,14-09-2016 20:59:30
+90366 36573,97425 12708,14-09-2016 21:00:07
+97424 53609,97385 70012,14-09-2016 21:01:01
+93410 56456,98453 86521,14-09-2016 21:03:52
+98452 19037,90355 94399,14-09-2016 21:05:46
+94499 20763,97386 20071,14-09-2016 21:09:09
+94497 44333,97385 70012,14-09-2016 21:11:00
+98451 87493,97424 21092,14-09-2016 21:14:41
+97385 70012,97424 53609,14-09-2016 21:15:34
+94489 72078,97416 29480,14-09-2016 21:16:40
+90192 87313,78139 24512,14-09-2016 21:20:31
+97449 50000,95269 20533,14-09-2016 21:26:53
+78133 10302,93423 23000,14-09-2016 21:27:18
+97390 23922,90359 52497,14-09-2016 21:30:49
+90367 90080,74066 93594,14-09-2016 21:32:48
+93423 23000,78133 10302,14-09-2016 21:35:39
+90083 59148,97421 07528,14-09-2016 21:39:43
+97390 23922,90359 52497,14-09-2016 21:41:41
+78136 65840,74066 93594,14-09-2016 21:47:01
+97390 23922,99004 86250,14-09-2016 21:47:54
+98449 60656,97414 62784,14-09-2016 21:55:38
+81515 65055,78295 48262,14-09-2016 21:59:27
+81519 62015,99009 32475,14-09-2016 21:59:59
+97406 74488,90358 98099,14-09-2016 22:09:14
+97385 29751,92428 82401,14-09-2016 22:11:03
+94001 07403,90368 72970,14-09-2016 22:15:12
+93434 31551,90088 09624,14-09-2016 22:18:12
+81520 43406,92421 64236,14-09-2016 22:20:09
+94497 44333,97385 70012,14-09-2016 22:20:56
+99610 89720,90197 69887,14-09-2016 22:22:56
+97422 22278,98446 66723,14-09-2016 22:23:33
+97403 49292,98445 33687,14-09-2016 22:25:07
+97424 53609,97385 70012,14-09-2016 22:25:55
+78136 42599,97399 92703,14-09-2016 22:30:09
+98454 07778,93412 66159,14-09-2016 22:38:06
+93421 63491,92414 22596,14-09-2016 22:38:33
+93410 56456,98453 86521,14-09-2016 22:45:35
+93412 66159,98454 07778,14-09-2016 22:47:08
+97391 99665,90368 72970,14-09-2016 22:47:14
+97389 12538,90352 50054,14-09-2016 22:48:21
+90359 52497,97390 23922,14-09-2016 22:55:35
+94492 23068,90359 91512,14-09-2016 22:56:07
+90363 85738,99610 89720,14-09-2016 22:57:40
+92414 22596,93421 63491,14-09-2016 22:59:23
+97380 60551,78298 91466,14-09-2016 23:00:17
+90362 07317,92413 38675,14-09-2016 23:00:43
+97385 70012,94497 44333,14-09-2016 23:06:55
+90368 72970,97391 99665,14-09-2016 23:07:04
+97414 62784,98449 60656,14-09-2016 23:09:16
+93422 47940,90084 16988,14-09-2016 23:13:02
+94487 29969,97419 41164,14-09-2016 23:29:13
+78295 48262,81515 65055,14-09-2016 23:31:39
+90361 52679,90359 91512,14-09-2016 23:32:45
+81520 43406,92421 64236,14-09-2016 23:35:24
+98456 86153,90197 24124,14-09-2016 23:35:45
+92411 96415,77956 90632,14-09-2016 23:36:02
+94487 29969,97419 41164,14-09-2016 23:39:02
+90366 36573,98448 87878,14-09-2016 23:40:54
+99009 32475,78138 56841,14-09-2016 23:48:58
+94497 77615,81517 73746,14-09-2016 23:50:17
+97390 23922,99004 86250,14-09-2016 23:55:49
+93434 31551,90088 09624,15-09-2016 06:04:17
+78295 60375,93410 98013,15-09-2016 06:06:33
+90084 16988,93422 47940,15-09-2016 06:06:55
+94499 20763,97386 20071,15-09-2016 06:20:55
+90355 94399,97391 99665,15-09-2016 06:24:35
+92414 22596,93421 63491,15-09-2016 06:35:21
+94499 20763,97386 20071,15-09-2016 06:36:59
+93410 98013,78295 60375,15-09-2016 06:41:29
+98444 95768,99003 47921,15-09-2016 06:44:55
+92411 96415,97406 74488,15-09-2016 06:44:57
+81519 62015,99009 32475,15-09-2016 06:45:21
+87146 31956,83019 39880,15-09-2016 06:48:00
+70121 27677,90359 79636,15-09-2016 06:49:56
+97414 62784,98449 60656,15-09-2016 06:51:57
+83019 39880,87146 31956,15-09-2016 06:52:29
+97446 95253,97428 35959,15-09-2016 06:52:41
+98445 42844,99617 74886,15-09-2016 06:58:24
+97424 21092,98451 87493,15-09-2016 06:58:36
+78295 60375,93410 98013,15-09-2016 07:02:36
+78295 48262,70121 27677,15-09-2016 07:08:50
+97386 37259,78290 31269,15-09-2016 07:15:10
+90356 11723,81525 12041,15-09-2016 07:15:27
+84319 39746,95263 76972,15-09-2016 07:16:42
+97399 92703,78136 42599,15-09-2016 07:17:04
+90365 51029,94499 38099,15-09-2016 07:17:56
+97447 92655,97404 63904,15-09-2016 07:19:31
+90355 94399,98452 19037,15-09-2016 07:21:20
+94006 62384,97412 66065,15-09-2016 07:29:50
+97424 60171,94486 40312,15-09-2016 07:30:49
+78295 48262,81515 65055,15-09-2016 07:36:14
+92411 96415,77956 90632,15-09-2016 07:43:36
+83019 53227,98446 66723,15-09-2016 07:44:42
+84311 10322,90359 79636,15-09-2016 07:47:20
+99001 95783,89076 36757,15-09-2016 07:47:26
+97403 09983,90198 03659,15-09-2016 07:48:43
+92424 51984,78299 99223,15-09-2016 07:59:06
+99004 86250,97390 23922,15-09-2016 07:59:20
+87146 31956,83019 39880,15-09-2016 08:09:49
+97393 04671,97415 99182,15-09-2016 08:13:13
+98444 95768,99003 47921,15-09-2016 08:19:02
+97386 20071,94499 20763,15-09-2016 08:22:01
+94480 31371,97426 25297,15-09-2016 08:27:21
+98440 68457,95264 40233,15-09-2016 08:29:53
+99009 32475,78138 56841,15-09-2016 08:35:10
+90359 91512,94492 23068,15-09-2016 08:37:37
+92428 82401,97385 29751,15-09-2016 08:39:04
+93423 23000,98458 13389,15-09-2016 08:40:37
+93422 47940,94488 97308,15-09-2016 08:44:41
+90359 52497,97390 23922,15-09-2016 08:46:22
+90194 00845,97416 17124,15-09-2016 08:48:11
+97385 70012,97424 53609,15-09-2016 08:49:26
+94006 62384,99616 15114,15-09-2016 08:52:31
+98440 65896,78295 65598,15-09-2016 08:55:20
+97426 75324,78138 56841,15-09-2016 08:57:57
+90197 69887,97424 53609,15-09-2016 08:58:45
+97424 53609,90197 69887,15-09-2016 09:05:19
+81526 05544,99612 41256,15-09-2016 09:12:41
+90192 87313,78139 24512,15-09-2016 09:18:22
+78138 56841,97426 75324,15-09-2016 09:20:33
+87149 57915,92428 82401,15-09-2016 09:21:43
+94499 20763,97386 20071,15-09-2016 09:26:06
+99612 41256,81526 05544,15-09-2016 09:26:46
+94491 05266,94495 34273,15-09-2016 09:27:02
+97421 07528,90083 59148,15-09-2016 09:34:58
+92411 96415,97406 74488,15-09-2016 09:38:05
+94497 44333,97385 70012,15-09-2016 09:42:38
+97424 21092,90351 35947,15-09-2016 09:46:52
+98447 12671,93427 56500,15-09-2016 09:47:34
+99009 32475,81519 62015,15-09-2016 10:09:44
+93427 56500,98447 12671,15-09-2016 10:15:39
+97385 29751,92428 82401,15-09-2016 10:15:59
+98446 78140,98440 65896,15-09-2016 10:19:29
+93423 23000,78133 10302,15-09-2016 10:27:39
+90197 69887,97424 53609,15-09-2016 10:30:33
+97414 62784,98449 60656,15-09-2016 10:33:09
+97385 70012,97424 53609,15-09-2016 10:34:12
+97425 92186,94482 95223,15-09-2016 10:35:35
+90355 10919,81524 55552,15-09-2016 10:37:45
+92414 22596,93421 63491,15-09-2016 10:38:37
+97416 17124,90194 00845,15-09-2016 10:42:19
+97415 99182,97393 04671,15-09-2016 10:45:25
+98452 19037,90355 94399,15-09-2016 10:45:46
+81520 43406,92421 64236,15-09-2016 10:48:42
+90352 50054,97389 12538,15-09-2016 10:49:50
+98453 86521,93410 56456,15-09-2016 11:00:51
+94490 65627,97395 95120,15-09-2016 11:01:04
+90359 99240,94491 55790,15-09-2016 11:01:23
+98441 32533,70129 62374,15-09-2016 11:09:22
+84319 42810,97447 92655,15-09-2016 11:09:46
+90197 69887,99610 89720,15-09-2016 11:15:46
+81517 73746,94497 77615,15-09-2016 11:17:10
+98444 72482,98446 78140,15-09-2016 11:20:15
+92428 82401,97385 29751,15-09-2016 11:20:17
+97416 29480,94489 72078,15-09-2016 11:23:41
+93423 23000,98458 13389,15-09-2016 11:25:31
+92424 51984,78299 99223,15-09-2016 11:25:36
+89076 36757,99001 95783,15-09-2016 11:25:55
+98448 72117,93436 09781,15-09-2016 11:39:26
+97406 06245,97403 09983,15-09-2016 11:40:07
+90365 51029,94499 38099,15-09-2016 11:46:38
+99004 86250,97390 23922,15-09-2016 11:50:35
+95264 40233,98440 68457,15-09-2016 11:50:58
+97424 60171,94486 40312,15-09-2016 11:51:43
+99001 95783,89076 36757,15-09-2016 11:52:27
+90197 69887,97424 53609,15-09-2016 11:53:09
+90197 24124,99612 41256,15-09-2016 11:53:46
+90365 51029,94499 38099,15-09-2016 11:54:10
+98452 19037,90355 94399,15-09-2016 11:55:53
+97419 41164,94487 29969,15-09-2016 11:57:06
+90359 79636,70121 27677,15-09-2016 11:59:20
+93423 23000,98458 13389,15-09-2016 12:01:17
+94492 23068,90359 91512,15-09-2016 12:05:14
+78295 65598,98440 65896,15-09-2016 12:06:01
+98448 72117,93436 09781,15-09-2016 12:11:12
+98444 95768,99003 47921,15-09-2016 12:12:09
+98446 78140,98444 72482,15-09-2016 12:12:13
+90366 69257,90082 61126,15-09-2016 12:12:16
+94480 31371,97426 25297,15-09-2016 12:16:04
+94489 72078,97416 29480,15-09-2016 12:26:00
+84311 10322,90359 79636,15-09-2016 12:33:54
+97406 06245,97403 09983,15-09-2016 12:46:11
+92413 38675,90362 07317,15-09-2016 12:49:40
+97406 74488,92411 96415,15-09-2016 13:00:56
+92411 96415,93435 21961,15-09-2016 13:06:21
+90194 00845,97416 17124,15-09-2016 13:21:09
+90359 79636,99001 23133,15-09-2016 13:22:58
+99003 47921,98444 95768,15-09-2016 13:24:50
+99610 89720,90197 69887,15-09-2016 13:32:39
+90354 08732,94499 20763,15-09-2016 13:38:38
+94499 20763,97386 20071,15-09-2016 13:44:14
+97419 41164,94487 29969,15-09-2016 13:45:41
+97389 12538,90352 50054,15-09-2016 13:46:38
+98446 78140,98440 65896,15-09-2016 13:47:13
+90368 72970,94001 07403,15-09-2016 13:49:12
+97424 21092,98451 87493,15-09-2016 13:52:44
+90084 16988,98449 60656,15-09-2016 13:53:52
+78136 65840,74066 93594,15-09-2016 13:54:37
+93421 63491,92414 22596,15-09-2016 13:54:38
+99617 74886,98445 42844,15-09-2016 13:54:47
+97403 09983,97406 06245,15-09-2016 14:00:02
+99616 15114,94006 62384,15-09-2016 14:02:24
+74060 75431,92413 79027,15-09-2016 14:06:36
+90193 20957,97420 86635,15-09-2016 14:06:45
+98446 66723,97422 22278,15-09-2016 14:15:40
+77956 90632,78132 18081,15-09-2016 14:24:08
+95269 20533,97449 50000,15-09-2016 14:24:19
+99617 74886,98445 42844,15-09-2016 14:34:53
+97391 99665,90368 72970,15-09-2016 14:37:52
+90365 51029,94499 38099,15-09-2016 14:40:06
+70121 27677,90359 79636,15-09-2016 14:42:59
+97422 22278,98446 66723,15-09-2016 14:45:07
+97380 60551,97414 35000,15-09-2016 14:49:15
+84312 48999,94485 80091,15-09-2016 14:50:43
+83015 22251,78295 60375,15-09-2016 14:55:13
+97403 09983,90198 03659,15-09-2016 14:57:20
+95262 44233,98442 33257,15-09-2016 14:58:44
+98442 33257,95262 44233,15-09-2016 14:59:10
+81515 65055,78295 48262,15-09-2016 14:59:45
+92424 51984,78299 99223,15-09-2016 15:00:08
+83015 22251,78295 60375,15-09-2016 15:07:32
+99616 15114,94006 62384,15-09-2016 15:08:00
+97425 92186,94482 95223,15-09-2016 15:09:34
+93422 47940,90084 16988,15-09-2016 15:13:52
+84319 39746,95263 76972,15-09-2016 15:14:57
+89078 69605,77950 18278,15-09-2016 15:20:20
+81517 73746,94497 77615,15-09-2016 15:21:43
+98446 66723,83019 53227,15-09-2016 15:22:11
+94490 65627,97395 95120,15-09-2016 15:25:20
+78138 56841,97426 75324,15-09-2016 15:26:15
+92424 51984,78299 99223,15-09-2016 15:31:49
+98441 32533,70129 62374,15-09-2016 15:38:48
+94489 72078,97416 29480,15-09-2016 15:41:39
+99610 89720,90197 69887,15-09-2016 15:50:10
+97421 07528,98454 07778,15-09-2016 16:01:28
+94499 20763,97386 20071,15-09-2016 16:02:02
+94497 77615,81517 73746,15-09-2016 16:04:37
+95264 40233,98440 68457,15-09-2016 16:05:17
+93435 21961,92411 96415,15-09-2016 16:19:31
+97404 63904,97447 92655,15-09-2016 16:21:13
+90362 07317,92413 38675,15-09-2016 16:22:26
+89076 36757,99001 95783,15-09-2016 16:25:44
+78290 30467,87141 73076,15-09-2016 16:29:26
+94491 55790,90359 99240,15-09-2016 16:30:46
+99009 32475,78138 56841,15-09-2016 16:33:44
+98442 33257,95262 44233,15-09-2016 16:39:46
+97414 15280,90199 91061,15-09-2016 16:41:22
+78295 60375,83015 22251,15-09-2016 16:42:15
+97393 04671,95262 44233,15-09-2016 16:42:19
+96565 52272,93428 11808,15-09-2016 16:49:36
+98453 86521,93410 56456,15-09-2016 16:53:44
+97390 23922,90359 52497,15-09-2016 16:53:59
+89071 31755,78290 99865,15-09-2016 16:56:35
+94497 44333,97385 70012,15-09-2016 16:58:19
+90352 50054,97389 12538,15-09-2016 16:58:56
+98444 42212,97393 04671,15-09-2016 17:00:27
+90358 98099,97406 74488,15-09-2016 17:14:52
+98444 95768,99003 47921,15-09-2016 17:17:11
+93428 11808,96565 52272,15-09-2016 17:17:52
+84314 00609,99007 06998,15-09-2016 17:20:59
+98448 87878,90366 36573,15-09-2016 17:21:20
+94499 46077,83013 02552,15-09-2016 17:21:59
+78139 24512,90192 87313,15-09-2016 17:22:28
+78139 24512,90192 87313,15-09-2016 17:28:52
+93410 98013,78295 60375,15-09-2016 17:37:45
+98440 65896,78295 65598,15-09-2016 17:42:15
+98452 19037,90355 94399,15-09-2016 17:44:00
+94482 95223,97425 92186,15-09-2016 17:46:09
+90351 35947,97424 21092,15-09-2016 17:47:33
+78138 56841,97426 75324,15-09-2016 18:07:06
+87141 37314,93435 31225,15-09-2016 18:07:19
+92411 96415,77956 90632,15-09-2016 18:09:51
+97416 29480,94489 72078,15-09-2016 18:13:58
+92425 27794,93432 65750,15-09-2016 18:15:01
+94497 44333,90087 42537,15-09-2016 18:19:11
+78132 18081,77956 90632,15-09-2016 18:22:45
+97412 66065,94006 62384,15-09-2016 18:24:01
+93418 41992,97385 35042,15-09-2016 18:24:16
+90359 79636,84311 10322,15-09-2016 18:26:35
+93418 82576,94489 95536,15-09-2016 18:32:08
+90358 98099,97406 74488,15-09-2016 18:35:55
+98458 13389,93423 23000,15-09-2016 18:36:48
+81520 43406,92421 64236,15-09-2016 18:39:01
+78993 92058,92411 96415,15-09-2016 18:40:08
+98441 32533,70129 62374,15-09-2016 18:54:54
+97395 95120,94490 65627,15-09-2016 18:54:59
+94482 95223,97425 92186,15-09-2016 18:56:47
+90359 52497,97390 23922,15-09-2016 18:57:34
+97414 15280,90199 91061,15-09-2016 18:59:57
+90359 91512,94492 23068,15-09-2016 19:16:13
+92414 22596,93421 63491,15-09-2016 19:18:02
+92411 96415,78993 92058,15-09-2016 19:40:07
+97390 23922,90359 52497,15-09-2016 19:40:32
+94488 97308,97391 99665,15-09-2016 19:49:47
+93436 09781,98448 72117,15-09-2016 19:56:14
+81515 42171,98440 02823,15-09-2016 19:57:37
+93435 31225,87141 37314,15-09-2016 20:00:19
+94480 64700,90088 09624,15-09-2016 20:00:55
+94487 29969,97419 41164,15-09-2016 20:03:01
+90356 11723,81525 12041,15-09-2016 20:06:35
+90362 07317,92413 38675,15-09-2016 20:10:14
+97424 22395,90365 06212,15-09-2016 20:11:04
+97406 74488,90358 98099,15-09-2016 20:12:30
+98446 66723,97422 22278,15-09-2016 20:15:38
+97447 92655,97404 63904,15-09-2016 20:36:25
+99006 60463,99003 88572,15-09-2016 20:36:46
+90359 99240,94491 55790,15-09-2016 20:38:27
+97391 99665,90355 94399,15-09-2016 20:39:34
+98444 42212,97393 04671,15-09-2016 20:43:43
+92421 64236,81520 43406,15-09-2016 20:45:57
+81520 43406,92421 64236,15-09-2016 20:47:42
+98440 65896,78295 65598,15-09-2016 20:48:39
+94492 23068,90359 91512,15-09-2016 20:52:47
+94489 95536,93418 82576,15-09-2016 20:56:26
+81517 73746,94497 77615,15-09-2016 20:58:19
+81522 26166,97380 86781,15-09-2016 20:59:50
+78295 60375,83015 22251,15-09-2016 20:59:58
+98453 86521,93410 56456,15-09-2016 21:06:16
+98440 65896,98446 78140,15-09-2016 21:12:39
+99003 47921,98444 95768,15-09-2016 21:15:18
+90088 09624,94480 64700,15-09-2016 21:20:02
+90088 09624,94480 64700,15-09-2016 21:20:02
+97391 99665,90368 72970,15-09-2016 21:29:55
+78299 99223,92424 51984,15-09-2016 21:32:21
+99610 89720,90197 69887,15-09-2016 21:34:42
+98449 60656,97414 62784,15-09-2016 21:36:51
+98441 32533,93410 98013,15-09-2016 21:37:04
+90358 98099,97406 74488,15-09-2016 21:38:28
+94005 06213,98453 46196,15-09-2016 21:45:52
+97414 62784,98449 60656,15-09-2016 21:51:47
+97412 66065,94006 62384,15-09-2016 21:51:57
+90359 52497,97390 23922,15-09-2016 21:52:29
+97424 21092,98451 87493,15-09-2016 22:07:42
+90088 09624,94480 64700,15-09-2016 22:12:46
+93423 23000,98458 13389,15-09-2016 22:16:13
+90359 79636,70121 27677,15-09-2016 22:19:21
+98444 95768,99003 47921,15-09-2016 22:23:25
+90359 79636,84311 10322,15-09-2016 22:25:08
+93415 21881,98454 90038,15-09-2016 22:31:22
+90082 61126,90366 69257,15-09-2016 22:31:32
+97412 66065,94006 62384,15-09-2016 22:35:24
+96565 52272,93428 11808,15-09-2016 22:41:43
+90359 91512,94489 95536,15-09-2016 22:44:08
+94499 20763,93412 66159,15-09-2016 22:45:38
+97385 70012,97424 53609,15-09-2016 22:47:39
+98446 78140,98440 65896,15-09-2016 22:48:35
+70121 27677,78295 48262,15-09-2016 22:50:07
+94485 80091,84312 48999,15-09-2016 22:55:53
+97425 12708,90366 36573,15-09-2016 23:04:41
+92411 96415,78993 92058,15-09-2016 23:07:58
+90357 17994,93420 59147,15-09-2016 23:14:55
+98452 19037,90355 94399,15-09-2016 23:18:16
+97424 60171,94486 40312,15-09-2016 23:19:39
+78138 56841,97426 75324,15-09-2016 23:22:42
+78993 92058,92411 96415,15-09-2016 23:24:39
+81522 26166,90194 00845,15-09-2016 23:30:19
+94487 29969,97419 41164,15-09-2016 23:32:18
+94495 34273,94491 05266,15-09-2016 23:35:10
+94499 46077,83013 02552,15-09-2016 23:36:31
+97416 17124,90194 00845,15-09-2016 23:38:25
+78295 65598,98440 65896,15-09-2016 23:38:29
+98448 86633,78293 91304,15-09-2016 23:41:36
+98454 07778,93412 66159,15-09-2016 23:42:54
+98446 78140,98440 65896,15-09-2016 23:45:21
+97406 74488,92411 96415,15-09-2016 23:53:10
+93410 98013,78295 60375,15-09-2016 23:56:15
+98452 19037,90355 94399,16-09-2016 06:02:00
+90082 61126,90366 69257,16-09-2016 06:06:47
+93435 21961,92411 96415,16-09-2016 06:08:06
+90194 00845,97416 17124,16-09-2016 06:08:25
+93436 09781,98448 72117,16-09-2016 06:08:41
+78299 99223,92424 51984,16-09-2016 06:17:41
+81517 73746,94497 77615,16-09-2016 06:18:33
+93412 66159,94499 20763,16-09-2016 06:19:17
+97419 41164,94487 29969,16-09-2016 06:25:57
+98440 02823,81515 42171,16-09-2016 06:30:02
+93423 23000,78133 10302,16-09-2016 06:35:43
+94491 05266,94495 34273,16-09-2016 06:51:24
+78138 56841,99009 32475,16-09-2016 07:01:07
+93421 63491,92414 22596,16-09-2016 07:02:04
+78295 48262,81515 65055,16-09-2016 07:04:35
+89078 69605,77950 18278,16-09-2016 07:06:43
+97446 95253,97428 35959,16-09-2016 07:07:28
+98448 72117,93436 09781,16-09-2016 07:08:25
+97414 62027,95267 70383,16-09-2016 07:14:40
+94490 65627,97395 95120,16-09-2016 07:16:48
+97390 23922,90359 52497,16-09-2016 07:18:13
+99003 88572,99006 60463,16-09-2016 07:19:08
+92415 91418,94489 72078,16-09-2016 07:21:16
+94499 20763,90354 08732,16-09-2016 07:22:03
+84311 10322,90359 79636,16-09-2016 07:22:22
+94491 05266,94495 34273,16-09-2016 07:25:08
+89071 31755,78290 99865,16-09-2016 07:34:57
+83019 53227,98446 66723,16-09-2016 07:38:18
+93428 11808,96565 52272,16-09-2016 07:40:00
+99001 23133,90359 79636,16-09-2016 07:42:55
+92414 22596,93421 63491,16-09-2016 07:47:42
+93436 09781,98448 72117,16-09-2016 07:49:02
+78299 99223,92424 51984,16-09-2016 07:59:24
+70129 62374,98441 32533,16-09-2016 08:01:16
+98449 60656,90084 16988,16-09-2016 08:03:53
+97385 70012,94497 44333,16-09-2016 08:19:45
+97406 74488,92411 96415,16-09-2016 08:24:41
+94488 97308,97391 99665,16-09-2016 08:27:33
+90359 99240,94491 55790,16-09-2016 08:30:32
+99001 85033,74066 93594,16-09-2016 08:31:14
+84313 45689,78295 65598,16-09-2016 08:31:21
+97414 15280,90199 91061,16-09-2016 08:37:42
+97391 99665,90368 72970,16-09-2016 08:38:57
+99006 60463,99003 88572,16-09-2016 08:48:55
+98451 87493,97424 21092,16-09-2016 08:53:40
+97391 99665,94488 97308,16-09-2016 08:53:42
+90084 16988,93422 47940,16-09-2016 08:54:09
+97425 12708,90366 36573,16-09-2016 08:55:21
+90358 98099,97406 74488,16-09-2016 09:04:42
+93427 56500,98447 12671,16-09-2016 09:06:36
+97425 92186,94482 95223,16-09-2016 09:06:37
+84311 10322,90359 79636,16-09-2016 09:08:38
+90358 98099,97406 74488,16-09-2016 09:09:17
+93418 82576,94489 95536,16-09-2016 09:10:04
+98442 33257,95262 44233,16-09-2016 09:10:25
+90359 52497,97390 23922,16-09-2016 09:11:44
+97425 92186,94482 95223,16-09-2016 09:22:25
+78133 10302,93423 23000,16-09-2016 09:32:17
+95264 40233,98440 68457,16-09-2016 09:45:16
+74066 93594,78136 65840,16-09-2016 09:50:52
+84311 10322,90359 79636,16-09-2016 09:51:39
+90352 50054,97389 12538,16-09-2016 09:52:42
+81517 73746,94497 77615,16-09-2016 09:52:58
+78295 78750,97449 50000,16-09-2016 09:52:58
+97380 60551,78298 91466,16-09-2016 09:53:18
+93422 47940,90084 16988,16-09-2016 09:53:22
+94499 20763,84314 16122,16-09-2016 09:56:25
+78295 78750,97449 50000,16-09-2016 09:58:54
+97414 15280,90199 91061,16-09-2016 10:02:08
+94488 97308,97391 99665,16-09-2016 10:03:43
+81520 43406,92421 64236,16-09-2016 10:04:12
+78290 31269,97386 37259,16-09-2016 10:11:08
+97395 95120,94490 65627,16-09-2016 10:15:47
+78993 92058,92411 96415,16-09-2016 10:19:09
+98440 65896,93418 41992,16-09-2016 10:29:00
+90365 51029,94499 38099,16-09-2016 10:36:06
+90365 51029,94499 38099,16-09-2016 10:41:59
+90199 91061,97414 15280,16-09-2016 10:42:11
+97403 09983,90198 03659,16-09-2016 10:48:38
+98453 86521,93410 56456,16-09-2016 10:48:48
+97449 50000,95269 20533,16-09-2016 10:50:09
+96566 40412,90352 50054,16-09-2016 10:50:57
+93418 41992,97385 35042,16-09-2016 10:55:59
+97393 04671,95262 44233,16-09-2016 10:57:59
+92413 79027,74060 75431,16-09-2016 10:59:47
+92414 22596,93421 63491,16-09-2016 11:10:38
+90359 79636,70121 27677,16-09-2016 11:17:17
+97447 92655,97404 63904,16-09-2016 11:21:09
+81520 43406,92421 64236,16-09-2016 11:23:06
+97424 21092,98451 87493,16-09-2016 11:24:09
+78290 31269,97386 37259,16-09-2016 11:32:59
+96566 40412,90352 50054,16-09-2016 11:36:13
+97393 04671,98444 42212,16-09-2016 11:39:50
+89076 36757,99001 95783,16-09-2016 11:40:30
+93420 59147,90357 17994,16-09-2016 11:51:43
+97395 95120,94490 65627,16-09-2016 11:52:52
+83019 53227,98446 66723,16-09-2016 11:53:06
+97447 92655,84319 42810,16-09-2016 11:54:00
+77950 18278,89078 69605,16-09-2016 11:56:54
+90352 50054,97389 12538,16-09-2016 11:56:59
+90357 17994,93420 59147,16-09-2016 12:03:25
+99612 41256,81526 05544,16-09-2016 12:09:33
+90352 50054,97389 12538,16-09-2016 12:12:11
+95269 20533,97449 50000,16-09-2016 12:20:14
+98454 90038,90359 52497,16-09-2016 12:22:49
+90359 91512,90361 52679,16-09-2016 12:25:35
+98453 86521,93410 56456,16-09-2016 12:27:23
+90199 91061,97414 15280,16-09-2016 12:28:58
+99007 06998,84314 00609,16-09-2016 12:29:04
+90357 17994,93420 59147,16-09-2016 12:29:11
+84311 10322,90359 79636,16-09-2016 12:30:57
+93422 47940,90084 16988,16-09-2016 12:53:30
+81524 55552,97380 60551,16-09-2016 12:58:38
+98449 60656,97414 62784,16-09-2016 13:02:03
+92421 09526,89076 36757,16-09-2016 13:10:08
+90365 51029,94499 38099,16-09-2016 13:18:22
+93412 66159,94499 20763,16-09-2016 13:21:15
+90352 50054,97389 12538,16-09-2016 13:21:51
+92424 51984,78299 99223,16-09-2016 13:24:35
+94499 20763,90354 08732,16-09-2016 13:25:44
+94492 23068,94489 95536,16-09-2016 13:26:22
+98445 42844,99617 74886,16-09-2016 13:26:48
+78295 65598,98440 65896,16-09-2016 13:28:08
+92428 82401,97385 29751,16-09-2016 13:36:44
+87141 73076,78290 30467,16-09-2016 13:37:40
+99610 89720,90197 69887,16-09-2016 13:46:09
+93423 23000,78133 10302,16-09-2016 13:50:11
+94489 72078,97416 29480,16-09-2016 13:53:58
+98453 86521,93410 56456,16-09-2016 13:54:10
+84313 45689,78295 65598,16-09-2016 13:57:39
+83019 39880,87146 31956,16-09-2016 13:59:50
+92413 38675,90362 07317,16-09-2016 14:02:05
+94489 72078,97416 29480,16-09-2016 14:04:18
+97424 21092,98451 87493,16-09-2016 14:12:55
+78138 56841,97426 75324,16-09-2016 14:14:33
+81515 65055,78295 48262,16-09-2016 14:15:06
+98448 87878,90366 36573,16-09-2016 14:15:53
+98449 60656,90084 16988,16-09-2016 14:16:58
+93418 41992,81525 78007,16-09-2016 14:18:29
+94499 38099,90365 51029,16-09-2016 14:19:59
+94488 97308,97391 99665,16-09-2016 14:23:47
+92413 38675,90362 07317,16-09-2016 14:24:27
+98454 90038,90359 52497,16-09-2016 14:26:05
+98440 65896,98446 78140,16-09-2016 14:29:44
+87146 31956,83019 39880,16-09-2016 14:30:54
+97425 92186,94482 95223,16-09-2016 14:32:24
+98446 66723,97422 22278,16-09-2016 14:38:23
+70121 27677,90359 79636,16-09-2016 14:42:28
+81525 12041,99610 89720,16-09-2016 14:45:29
+90354 08732,94499 20763,16-09-2016 14:48:36
+98440 65896,98446 78140,16-09-2016 14:56:29
+92425 27794,93432 65750,16-09-2016 15:01:17
+74294 40351,98440 02823,16-09-2016 15:01:51
+97424 22395,90365 06212,16-09-2016 15:09:01
+98453 86521,93410 56456,16-09-2016 15:21:26
+90351 35947,97424 21092,16-09-2016 15:25:11
+94001 07403,90368 72970,16-09-2016 15:29:47
+94497 77615,81517 73746,16-09-2016 15:30:05
+98440 65896,78295 65598,16-09-2016 15:33:16
+97403 49292,98445 33687,16-09-2016 15:37:37
+78295 65598,84313 45689,16-09-2016 15:39:45
+93428 11808,96565 52272,16-09-2016 15:45:24
+94489 95536,94492 23068,16-09-2016 15:46:05
+97406 06245,97403 09983,16-09-2016 15:49:40
+97386 37259,78290 31269,16-09-2016 15:55:30
+90197 69887,97424 53609,16-09-2016 15:56:36
+99001 95783,89076 36757,16-09-2016 16:02:39
+98452 19037,90355 94399,16-09-2016 16:02:41
+97414 62784,98449 60656,16-09-2016 16:03:19
+90359 99240,94491 55790,16-09-2016 16:03:53
+93418 82576,94489 95536,16-09-2016 16:05:51
+93434 31551,90088 09624,16-09-2016 16:07:22
+97416 29480,94489 72078,16-09-2016 16:07:52
+90361 52679,90359 91512,16-09-2016 16:08:11
+97391 99665,90368 72970,16-09-2016 16:09:29
+97403 09983,90198 03659,16-09-2016 16:14:44
+93412 66159,98454 07778,16-09-2016 16:18:17
+81520 43406,92421 64236,16-09-2016 16:18:45
+90368 72970,97391 99665,16-09-2016 16:32:37
+93420 59147,90357 17994,16-09-2016 16:36:42
+92411 96415,93435 21961,16-09-2016 16:37:27
+78138 56841,97426 75324,16-09-2016 16:37:48
+98440 65896,78295 65598,16-09-2016 16:38:17
+93410 56456,98453 86521,16-09-2016 16:44:50
+99617 74886,98445 42844,16-09-2016 16:48:02
+99009 32475,78138 56841,16-09-2016 16:53:58
+90194 00845,97416 17124,16-09-2016 16:55:25
+83015 22251,78295 60375,16-09-2016 17:16:21
+93422 47940,94488 97308,16-09-2016 17:17:39
+90082 61126,90366 69257,16-09-2016 17:26:03
+90366 69257,90082 61126,16-09-2016 17:36:08
+78299 99223,92424 51984,16-09-2016 17:47:32
+97391 99665,94488 97308,16-09-2016 17:48:05
+78295 60375,93410 98013,16-09-2016 17:51:41
+97390 23922,90359 52497,16-09-2016 17:57:54
+70121 27677,90359 79636,16-09-2016 17:59:25
+97424 53609,90197 69887,16-09-2016 18:01:22
+90351 35947,97424 21092,16-09-2016 18:02:39
+97425 92186,94482 95223,16-09-2016 18:04:28
+81525 78007,93418 41992,16-09-2016 18:05:38
+99009 32475,78138 56841,16-09-2016 18:06:02
+93435 31225,87141 37314,16-09-2016 18:06:54
+97406 74488,90358 98099,16-09-2016 18:08:09
+77950 18278,89078 69605,16-09-2016 18:12:56
+84313 45689,78295 65598,16-09-2016 18:17:09
+93423 23000,98458 13389,16-09-2016 18:22:42
+95267 70383,97414 62027,16-09-2016 18:22:48
+97425 12708,90366 36573,16-09-2016 18:24:15
+93410 98013,78295 60375,16-09-2016 18:27:34
+94491 55790,90359 99240,16-09-2016 18:32:21
+90359 79636,84311 10322,16-09-2016 18:35:12
+94497 77615,81517 73746,16-09-2016 18:40:32
+98440 65896,98446 78140,16-09-2016 18:43:27
+97391 99665,94488 97308,16-09-2016 18:47:02
+78295 48262,81515 65055,16-09-2016 18:54:21
+87146 31956,83019 39880,16-09-2016 18:55:10
+90365 51029,97380 60551,16-09-2016 18:57:19
+87146 31956,83019 39880,16-09-2016 19:00:12
+98456 86153,90197 24124,16-09-2016 19:05:31
+94489 72078,97416 29480,16-09-2016 19:05:40
+78295 60375,83015 22251,16-09-2016 19:07:34
+94499 20763,84314 16122,16-09-2016 19:09:41
+94006 62384,97412 66065,16-09-2016 19:11:20
+98449 60656,97414 62784,16-09-2016 19:12:49
+93434 31551,90088 09624,16-09-2016 19:18:19
+94490 65627,97395 95120,16-09-2016 19:20:46
+93418 41992,81525 78007,16-09-2016 19:21:40
+93412 66159,98454 07778,16-09-2016 19:32:41
+97403 09983,90198 03659,16-09-2016 19:37:12
+78130 00821,98453 94494,16-09-2016 19:37:34
+98447 12671,93427 56500,16-09-2016 19:38:27
+97391 99665,94488 97308,16-09-2016 19:43:30
+90359 99240,78138 93826,16-09-2016 19:51:30
+90193 20957,97420 86635,16-09-2016 19:58:20
+98444 95768,99003 47921,16-09-2016 20:01:40
+97390 23922,90359 52497,16-09-2016 20:08:54
+90199 91061,97414 15280,16-09-2016 20:11:24
+94491 55790,90359 99240,16-09-2016 20:13:52
+92411 96415,97406 74488,16-09-2016 20:20:44
+90359 91512,94492 23068,16-09-2016 20:22:55
+92428 82401,97385 29751,16-09-2016 20:26:32
+74066 31484,98454 90038,16-09-2016 20:27:05
+78295 78750,97449 50000,16-09-2016 20:28:50
+74060 75431,92413 79027,16-09-2016 20:30:35
+97448 02140,97418 46131,16-09-2016 20:32:15
+94487 29969,97419 41164,16-09-2016 20:33:19
+92411 96415,97406 74488,16-09-2016 20:41:35
+90197 69887,97424 53609,16-09-2016 20:49:12
+70121 27677,78295 48262,16-09-2016 20:50:56
+78139 24512,90192 87313,16-09-2016 20:50:57
+98446 78140,98440 65896,16-09-2016 21:00:36
+84311 10322,90359 79636,16-09-2016 21:02:29
+99001 23133,90359 79636,16-09-2016 21:02:54
+94482 95223,97425 92186,16-09-2016 21:13:57
+94497 44333,97385 70012,16-09-2016 21:18:50
+78295 65598,98440 65896,16-09-2016 21:20:34
+90193 20957,97420 86635,16-09-2016 21:20:55
+94489 95536,93418 82576,16-09-2016 21:26:08
+94487 29969,97419 41164,16-09-2016 21:26:45
+94497 44333,97385 70012,16-09-2016 21:31:21
+90197 24124,99612 41256,16-09-2016 21:31:24
+97422 22278,98446 66723,16-09-2016 21:37:14
+90084 16988,93422 47940,16-09-2016 21:38:22
+97406 74488,92411 96415,16-09-2016 21:50:06
+78293 91304,98448 86633,16-09-2016 21:51:32
+90083 59148,97421 07528,16-09-2016 21:55:43
+93410 98013,98441 32533,16-09-2016 22:05:26
+97390 23922,90359 52497,16-09-2016 22:06:34
+70129 62374,98441 32533,16-09-2016 22:08:29
+89078 69605,77950 18278,16-09-2016 22:11:50
+94489 72078,97416 29480,16-09-2016 22:21:56
+97421 07528,97399 92703,16-09-2016 22:29:32
+90352 50054,97389 12538,16-09-2016 22:35:47
+74066 93594,90367 90080,16-09-2016 22:37:10
+97421 07528,98454 07778,16-09-2016 22:38:26
+94491 55790,90359 99240,16-09-2016 22:40:11
+97421 07528,90083 59148,16-09-2016 22:42:13
+97406 74488,90358 98099,16-09-2016 22:47:55
+93422 47940,90084 16988,16-09-2016 22:47:59
+94489 72078,92415 91418,16-09-2016 23:01:52
+98451 87493,97424 21092,16-09-2016 23:06:03
+81510 47188,97429 02055,16-09-2016 23:08:00
+93410 98013,98441 32533,16-09-2016 23:10:40
+89078 69605,77950 18278,16-09-2016 23:20:26
+97385 70012,97424 53609,16-09-2016 23:25:30
+78299 99223,92424 51984,16-09-2016 23:26:05
+94487 29969,97419 41164,16-09-2016 23:28:14
+94491 05266,94495 34273,16-09-2016 23:29:46
+78295 60375,83015 22251,16-09-2016 23:44:04
+78138 56841,99009 32475,16-09-2016 23:44:34
+94489 72078,97416 29480,16-09-2016 23:46:55
+97420 86635,90193 20957,16-09-2016 23:47:58
+93418 41992,81525 78007,16-09-2016 23:48:40
+97416 17124,90194 00845,16-09-2016 23:48:52
+81517 73746,94497 77615,16-09-2016 23:49:10
+98454 07778,93412 66159,16-09-2016 23:49:54
+92414 22596,93421 63491,16-09-2016 23:52:49
+97416 17124,90194 00845,16-09-2016 23:55:42
+98454 07778,93412 66159,17-09-2016 06:01:55
+90198 03659,97403 09983,17-09-2016 06:08:49
+98448 86633,78293 91304,17-09-2016 06:16:51
+78993 92058,92411 96415,17-09-2016 06:18:25
+98451 87493,97424 21092,17-09-2016 06:23:47
+83019 39880,87146 31956,17-09-2016 06:24:37
+90351 35947,97424 21092,17-09-2016 06:31:47
+92411 96415,78993 92058,17-09-2016 06:38:56
+87146 31956,83019 39880,17-09-2016 06:43:08
+81515 65055,78295 48262,17-09-2016 06:43:52
+94489 72078,97416 29480,17-09-2016 06:47:19
+90351 35947,97424 21092,17-09-2016 06:49:16
+98442 33257,95262 44233,17-09-2016 06:50:27
+81525 12041,90356 11723,17-09-2016 06:50:49
+90357 17994,93420 59147,17-09-2016 06:53:00
+78136 42599,97399 92703,17-09-2016 06:54:00
+97449 50000,95269 20533,17-09-2016 06:57:00
+94491 55790,90359 99240,17-09-2016 06:58:14
+94497 44333,97385 70012,17-09-2016 06:58:37
+90358 98099,97406 74488,17-09-2016 07:01:36
+94485 80091,84312 48999,17-09-2016 07:06:08
+94497 44333,97385 70012,17-09-2016 07:11:18
+94490 65627,97395 95120,17-09-2016 07:36:50
+70129 62374,98441 32533,17-09-2016 07:37:41
+90362 07317,92413 38675,17-09-2016 07:43:45
+90366 69257,90082 61126,17-09-2016 07:44:12
+98444 72482,98446 78140,17-09-2016 07:45:13
+97385 35042,93418 41992,17-09-2016 07:45:41
+84314 00609,99007 06998,17-09-2016 07:46:44
+77956 90632,92411 96415,17-09-2016 07:47:47
+98446 78140,98440 65896,17-09-2016 07:49:47
+93432 65750,92425 27794,17-09-2016 07:51:35
+81520 43406,92421 64236,17-09-2016 07:55:39
+78295 78750,97449 50000,17-09-2016 08:01:21
+78295 65598,98440 65896,17-09-2016 08:06:40
+97415 99182,97393 04671,17-09-2016 08:07:59
+92424 51984,78299 99223,17-09-2016 08:08:19
+78295 48262,81515 65055,17-09-2016 08:10:14
+84314 16122,94499 20763,17-09-2016 08:14:20
+94489 95536,93418 82576,17-09-2016 08:14:40
+92413 38675,90362 07317,17-09-2016 08:15:13
+97406 74488,92411 96415,17-09-2016 08:24:13
+78132 18081,77956 90632,17-09-2016 08:26:18
+90366 69257,90082 61126,17-09-2016 08:27:55
+97390 23922,90359 52497,17-09-2016 08:29:10
+97386 20071,94499 20763,17-09-2016 08:30:45
+95269 20533,97449 50000,17-09-2016 08:35:33
+97447 92655,97404 63904,17-09-2016 08:39:52
+97412 66065,94006 62384,17-09-2016 08:42:50
+87141 73076,78290 30467,17-09-2016 08:47:26
+78295 65598,84313 45689,17-09-2016 08:54:45
+94491 05266,94495 34273,17-09-2016 08:56:35
+90366 36573,97425 12708,17-09-2016 09:02:41
+94480 31371,97426 25297,17-09-2016 09:08:06
+81520 43406,92421 64236,17-09-2016 09:24:08
+94497 77615,81517 73746,17-09-2016 09:26:41
+78136 42599,97399 92703,17-09-2016 09:28:17
+83019 39880,87146 31956,17-09-2016 09:35:11
+94499 20763,93412 66159,17-09-2016 09:35:31
+90355 94399,98452 19037,17-09-2016 09:37:35
+97424 21092,90351 35947,17-09-2016 09:43:53
+90088 09624,93434 31551,17-09-2016 09:48:43
+81522 26166,97380 86781,17-09-2016 09:49:57
+98441 32533,93410 98013,17-09-2016 09:51:56
+78138 56841,97426 75324,17-09-2016 09:54:29
+97424 53609,90197 69887,17-09-2016 09:56:53
+98453 86521,93410 56456,17-09-2016 09:57:24
+90358 98099,97406 74488,17-09-2016 10:01:08
+83012 37742,70121 27677,17-09-2016 10:03:30
+92411 96415,77956 90632,17-09-2016 10:07:23
+90193 20957,97420 86635,17-09-2016 10:10:25
+97424 53609,90197 69887,17-09-2016 10:11:36
+90365 51029,97380 60551,17-09-2016 10:12:38
+78295 48262,81515 65055,17-09-2016 10:13:00
+94488 97308,97391 99665,17-09-2016 10:16:30
+97424 60171,94486 40312,17-09-2016 10:17:56
+97424 21092,98451 87493,17-09-2016 10:20:24
+92421 09526,89076 36757,17-09-2016 10:22:23
+90359 52497,97390 23922,17-09-2016 10:25:47
+87149 57915,92428 82401,17-09-2016 10:37:27
+90351 35947,97424 21092,17-09-2016 10:38:02
+77956 90632,92411 96415,17-09-2016 10:38:56
+97425 12708,90366 36573,17-09-2016 10:46:10
+90352 50054,97389 12538,17-09-2016 10:52:54
+98445 42844,99617 74886,17-09-2016 10:55:40
+81520 43406,92421 64236,17-09-2016 10:55:59
+78295 60375,93410 98013,17-09-2016 11:04:01
+94497 77615,81517 73746,17-09-2016 11:08:35
+98449 60656,97414 62784,17-09-2016 11:11:01
+78132 18081,77956 90632,17-09-2016 11:13:28
+97391 99665,90368 72970,17-09-2016 11:14:44
+92421 64236,81520 43406,17-09-2016 11:18:56
+90352 50054,96566 40412,17-09-2016 11:25:00
+97380 60551,90365 51029,17-09-2016 11:26:47
+97412 66065,94006 62384,17-09-2016 11:28:50
+93410 98013,78295 60375,17-09-2016 11:29:31
+90088 09624,94480 64700,17-09-2016 11:32:17
+97421 07528,98454 07778,17-09-2016 11:44:26
+90355 94399,98452 19037,17-09-2016 11:46:33
+97424 21092,98451 87493,17-09-2016 11:47:49
+97424 53609,97385 70012,17-09-2016 11:53:09
+93416 07259,78132 18081,17-09-2016 11:53:36
+92428 82401,97385 29751,17-09-2016 11:53:56
+94492 23068,94489 95536,17-09-2016 12:02:14
+93423 23000,98458 13389,17-09-2016 12:09:26
+98454 07778,93412 66159,17-09-2016 12:10:43
+97416 29480,94489 72078,17-09-2016 12:16:53
+94499 20763,90354 08732,17-09-2016 12:20:10
+98440 68457,95264 40233,17-09-2016 12:24:50
+84314 16122,94499 20763,17-09-2016 12:25:07
+98441 32533,93410 98013,17-09-2016 12:26:35
+97385 70012,97424 53609,17-09-2016 12:33:10
+78295 65598,98440 65896,17-09-2016 12:39:27
+97380 86781,97380 60551,17-09-2016 12:41:09
+97403 09983,97406 06245,17-09-2016 12:42:09
+93427 56500,98447 12671,17-09-2016 12:53:41
+97424 60171,94486 40312,17-09-2016 12:56:19
+95264 40233,98440 68457,17-09-2016 12:57:07
+93423 23000,98458 13389,17-09-2016 12:58:55
+94492 23068,94489 95536,17-09-2016 12:59:03
+93420 59147,90357 17994,17-09-2016 12:59:50
+92415 91418,94489 72078,17-09-2016 13:08:39
+94487 29969,97419 41164,17-09-2016 13:10:48
+98447 12671,93427 56500,17-09-2016 13:11:03
+93423 23000,78133 10302,17-09-2016 13:13:59
+97403 09983,90198 03659,17-09-2016 13:21:40
+94499 20763,84314 16122,17-09-2016 13:22:45
+98444 42212,97393 04671,17-09-2016 13:25:09
+98445 42844,99617 74886,17-09-2016 13:30:12
+90197 69887,99610 89720,17-09-2016 13:31:58
+81517 73746,94497 77615,17-09-2016 13:32:34
+81522 26166,90194 00845,17-09-2016 13:41:39
+97420 86635,90193 20957,17-09-2016 13:43:41
+93421 63491,92414 22596,17-09-2016 13:46:20
+98446 78140,98440 65896,17-09-2016 13:50:23
+90359 52497,97390 23922,17-09-2016 14:00:57
+90357 17994,93420 59147,17-09-2016 14:21:55
+94006 62384,99616 15114,17-09-2016 14:22:04
+94491 55790,90359 99240,17-09-2016 14:29:54
+97416 17124,90194 00845,17-09-2016 14:31:40
+97421 07528,90083 59148,17-09-2016 14:32:28
+98440 65896,98446 78140,17-09-2016 14:33:48
+93418 41992,97385 35042,17-09-2016 14:34:21
+70129 62374,98441 32533,17-09-2016 14:40:47
+99004 86250,97390 23922,17-09-2016 14:44:23
+90359 79636,84311 10322,17-09-2016 14:45:44
+95264 40233,98440 68457,17-09-2016 14:46:33
+97391 99665,90368 72970,17-09-2016 14:52:10
+90192 87313,78139 24512,17-09-2016 14:54:08
+90366 36573,97425 12708,17-09-2016 14:54:26
+78299 36192,94006 62384,17-09-2016 14:57:48
+84314 16122,94499 20763,17-09-2016 15:03:08
+90351 35947,97424 21092,17-09-2016 15:11:44
+92421 64236,81520 43406,17-09-2016 15:16:33
+90357 17994,93420 59147,17-09-2016 15:22:04
+98448 72117,93436 09781,17-09-2016 15:25:32
+77950 18278,89078 69605,17-09-2016 15:25:38
+81525 12041,90356 11723,17-09-2016 15:35:34
+95262 44233,97393 04671,17-09-2016 15:41:29
+90365 51029,97380 60551,17-09-2016 15:42:22
+97389 12538,90352 50054,17-09-2016 15:44:15
+93410 56456,98453 86521,17-09-2016 15:48:17
+97391 99665,90368 72970,17-09-2016 15:53:49
+78295 65598,98440 65896,17-09-2016 15:54:12
+90359 91512,94489 95536,17-09-2016 15:57:33
+97414 15280,90199 91061,17-09-2016 15:58:22
+90366 69257,90082 61126,17-09-2016 16:00:27
+94006 62384,99616 15114,17-09-2016 16:07:35
+97406 74488,92411 96415,17-09-2016 16:07:58
+78993 92058,92411 96415,17-09-2016 16:10:39
+92411 96415,77956 90632,17-09-2016 16:18:56
+98453 86521,93410 56456,17-09-2016 16:27:19
+98449 60656,90084 16988,17-09-2016 16:35:18
+94491 55790,90359 99240,17-09-2016 16:38:35
+98444 42212,97393 04671,17-09-2016 16:40:22
+97424 22395,90365 06212,17-09-2016 16:42:37
+92411 96415,97406 74488,17-09-2016 16:46:04
+92414 22596,93421 63491,17-09-2016 16:48:48
+94499 20763,93412 66159,17-09-2016 16:49:51
+97416 17124,90194 00845,17-09-2016 16:54:46
+90366 69257,90082 61126,17-09-2016 17:06:49
+94499 20763,93412 66159,17-09-2016 17:17:26
+78295 65598,98440 65896,17-09-2016 17:18:14
+89078 69605,77950 18278,17-09-2016 17:18:48
+92414 22596,93421 63491,17-09-2016 17:19:20
+89076 36757,99001 95783,17-09-2016 17:24:31
+93423 23000,98458 13389,17-09-2016 17:30:24
+78136 65840,74066 93594,17-09-2016 17:31:17
+94499 20763,97386 20071,17-09-2016 17:32:55
+78295 48262,81515 65055,17-09-2016 17:35:27
+92421 64236,81520 43406,17-09-2016 17:35:38
+98454 07778,97421 07528,17-09-2016 17:46:49
+98449 60656,97414 62784,17-09-2016 17:48:17
+83019 53227,98446 66723,17-09-2016 17:50:22
+93418 41992,81525 78007,17-09-2016 17:55:27
+84311 10322,90359 79636,17-09-2016 17:56:07
+90352 50054,97389 12538,17-09-2016 17:57:52
+98440 65896,98446 78140,17-09-2016 17:58:18
+84314 16122,94499 20763,17-09-2016 18:01:11
+90365 51029,94499 38099,17-09-2016 18:09:42
+90368 72970,97391 99665,17-09-2016 18:11:09
+90197 69887,97424 53609,17-09-2016 18:11:50
+97385 70012,97424 53609,17-09-2016 18:24:46
+92411 96415,97406 74488,17-09-2016 18:25:11
+78993 92058,92411 96415,17-09-2016 18:25:33
+97380 60551,90365 51029,17-09-2016 18:26:02
+90352 50054,97389 12538,17-09-2016 18:27:38
+90357 17994,93420 59147,17-09-2016 18:30:54
+94001 07403,90368 72970,17-09-2016 18:41:56
+93423 23000,78133 10302,17-09-2016 18:42:14
+94487 29969,97419 41164,17-09-2016 18:44:27
+98441 32533,70129 62374,17-09-2016 18:45:00
+92411 96415,97406 74488,17-09-2016 18:45:32
+81522 26166,97380 86781,17-09-2016 18:48:49
+78133 10302,93423 23000,17-09-2016 18:49:41
+78295 60375,93410 98013,17-09-2016 18:54:06
+99612 41256,90197 24124,17-09-2016 18:56:01
+78295 65598,98440 65896,17-09-2016 18:56:46
+98454 07778,97421 07528,17-09-2016 19:01:36
+98449 60656,90084 16988,17-09-2016 19:06:41
+98440 65896,78295 65598,17-09-2016 19:07:20
+98444 95768,99003 47921,17-09-2016 19:17:06
+92413 38675,90362 07317,17-09-2016 19:18:45
+98440 65896,78295 65598,17-09-2016 19:18:58
+90359 52497,97390 23922,17-09-2016 19:22:22
+93427 56500,98447 12671,17-09-2016 19:23:24
+90359 91512,90361 52679,17-09-2016 19:29:02
+90357 17994,93420 59147,17-09-2016 19:34:51
+94491 55790,90359 99240,17-09-2016 19:39:09
+97416 17124,90194 00845,17-09-2016 19:39:14
+94499 20763,84314 16122,17-09-2016 19:46:51
+99612 41256,90197 24124,17-09-2016 20:01:45
+90352 50054,97389 12538,17-09-2016 20:07:32
+90357 17994,93420 59147,17-09-2016 20:10:47
+84312 48999,94485 80091,17-09-2016 20:11:24
+97385 35042,93418 41992,17-09-2016 20:20:07
+90197 69887,97424 53609,17-09-2016 20:41:01
+97403 49292,98445 33687,17-09-2016 20:41:05
+97406 93118,98453 46196,17-09-2016 20:48:02
+94499 38099,90365 51029,17-09-2016 20:50:47
+98452 19037,90355 94399,17-09-2016 20:52:10
+98454 90038,90359 52497,17-09-2016 20:52:42
+96565 52272,93428 11808,17-09-2016 20:56:33
+87141 73076,78290 30467,17-09-2016 20:57:28
+98444 42212,97393 04671,17-09-2016 20:57:46
+90361 52679,90359 91512,17-09-2016 21:01:26
+99009 32475,81519 62015,17-09-2016 21:03:01
+78299 99223,92424 51984,17-09-2016 21:09:19
+97391 99665,90368 72970,17-09-2016 21:14:33
+81515 42171,98440 02823,17-09-2016 21:16:58
+94488 97308,97391 99665,17-09-2016 21:23:13
+97380 60551,90365 51029,17-09-2016 21:25:09
+90359 91512,94492 23068,17-09-2016 21:26:27
+93422 47940,94488 97308,17-09-2016 21:27:54
+94499 38099,90365 51029,17-09-2016 21:30:59
+97416 29480,94489 72078,17-09-2016 21:35:22
+93422 47940,90084 16988,17-09-2016 21:37:21
+92413 79027,74060 75431,17-09-2016 21:42:18
+93432 65750,92425 27794,17-09-2016 21:47:37
+84314 16122,94499 20763,17-09-2016 21:50:50
+78290 31269,97386 37259,17-09-2016 22:00:59
+78295 60375,93410 98013,17-09-2016 22:04:39
+96565 52272,93428 11808,17-09-2016 22:05:17
+97395 95120,94490 65627,17-09-2016 22:05:39
+97385 70012,94497 44333,17-09-2016 22:10:42
+92411 96415,78993 92058,17-09-2016 22:12:07
+93410 98013,78295 60375,17-09-2016 22:22:04
+78130 00821,98453 94494,17-09-2016 22:26:49
+81517 73746,94497 77615,17-09-2016 22:27:43
+97380 60551,90365 51029,17-09-2016 22:31:03
+97380 60551,81524 55552,17-09-2016 22:36:16
+93410 98013,98441 32533,17-09-2016 22:36:42
+70121 27677,83012 37742,17-09-2016 22:40:37
+98453 46196,94005 06213,17-09-2016 22:40:51
+92411 96415,78993 92058,17-09-2016 22:40:55
+97395 95120,94490 65627,17-09-2016 22:41:14
+97424 21092,98451 87493,17-09-2016 22:41:17
+94492 23068,90359 91512,17-09-2016 22:45:09
+94489 72078,92415 91418,17-09-2016 22:45:47
+90087 42537,94497 44333,17-09-2016 22:46:08
+93423 23000,98458 13389,17-09-2016 22:47:38
+81525 78007,93418 41992,17-09-2016 22:52:07
+98449 60656,90084 16988,17-09-2016 22:59:35
+89071 31755,78290 99865,17-09-2016 23:07:21
+74066 93594,90367 90080,17-09-2016 23:15:04
+98444 95768,99003 47921,17-09-2016 23:26:26
+98449 60656,90084 16988,17-09-2016 23:33:09
+97399 92703,97421 07528,17-09-2016 23:34:59
+90355 94399,98452 19037,17-09-2016 23:35:44
+97424 21092,98451 87493,17-09-2016 23:38:52
+98448 72117,93436 09781,18-09-2016 06:04:32
+97424 21092,90351 35947,18-09-2016 06:07:05
+97426 75324,78138 56841,18-09-2016 06:07:21
+97390 23922,99004 86250,18-09-2016 06:11:51
+90357 17994,93420 59147,18-09-2016 06:12:19
+78139 24512,90192 87313,18-09-2016 06:14:58
+81525 78007,93418 41992,18-09-2016 06:16:09
+99001 95783,89076 36757,18-09-2016 06:23:07
+83019 53227,98446 66723,18-09-2016 06:33:35
+78295 48262,81515 65055,18-09-2016 06:37:59
+92411 96415,78993 92058,18-09-2016 06:55:28
+92415 91418,94489 72078,18-09-2016 07:00:22
+97425 12708,90366 36573,18-09-2016 07:04:58
+93410 98013,98441 32533,18-09-2016 07:07:00
+99612 41256,81526 05544,18-09-2016 07:09:47
+97386 37259,78290 31269,18-09-2016 07:11:36
+93410 98013,98441 32533,18-09-2016 07:12:54
+98446 78140,98440 65896,18-09-2016 07:13:49
+94497 44333,90087 42537,18-09-2016 07:14:44
+97424 53609,97385 70012,18-09-2016 07:19:19
+90084 16988,93422 47940,18-09-2016 07:25:13
+81524 55552,97380 60551,18-09-2016 07:32:52
+95267 70383,97414 62027,18-09-2016 07:38:44
+81519 62015,99009 32475,18-09-2016 07:38:54
+93410 98013,98441 32533,18-09-2016 07:42:00
+98441 32533,70129 62374,18-09-2016 07:45:07
+78295 65598,84313 45689,18-09-2016 07:57:36
+94480 64700,90088 09624,18-09-2016 07:58:09
+92428 82401,97385 29751,18-09-2016 07:58:36
+78299 36192,94006 62384,18-09-2016 08:04:15
+97424 21092,98451 87493,18-09-2016 08:10:16
+78295 48262,81515 65055,18-09-2016 08:11:01
+98441 32533,93410 98013,18-09-2016 08:12:33
+93418 41992,81525 78007,18-09-2016 08:21:04
+97403 09983,90198 03659,18-09-2016 08:25:05
+98451 87493,97424 21092,18-09-2016 08:26:10
+92411 96415,97406 74488,18-09-2016 08:28:12
+78136 42599,97399 92703,18-09-2016 08:33:42
+93428 11808,96565 52272,18-09-2016 08:33:50
+78295 65598,84313 45689,18-09-2016 08:36:58
+97385 29751,92428 82401,18-09-2016 08:37:40
+97385 70012,97424 53609,18-09-2016 08:40:29
+94489 95536,93418 82576,18-09-2016 08:41:29
+94006 62384,99616 15114,18-09-2016 08:45:23
+90359 52497,97390 23922,18-09-2016 08:46:45
+90365 51029,97380 60551,18-09-2016 08:46:59
+92413 79027,74060 75431,18-09-2016 08:49:28
+78298 02848,99001 95783,18-09-2016 08:50:15
+93434 31551,90088 09624,18-09-2016 08:50:34
+93410 56456,98453 86521,18-09-2016 08:51:44
+97447 92655,97404 63904,18-09-2016 08:53:13
+93418 41992,81525 78007,18-09-2016 09:03:04
+90355 94399,97391 99665,18-09-2016 09:04:39
+90359 52497,97390 23922,18-09-2016 09:04:43
+78139 24512,90192 87313,18-09-2016 09:09:24
+97414 62027,95267 70383,18-09-2016 09:11:52
+93418 41992,81525 78007,18-09-2016 09:14:19
+94006 62384,99616 15114,18-09-2016 09:21:31
+84313 45689,78295 65598,18-09-2016 09:25:56
+81524 55552,97380 60551,18-09-2016 09:33:42
+93410 98013,98441 32533,18-09-2016 09:42:33
+98447 12671,93427 56500,18-09-2016 09:45:52
+90362 07317,92413 38675,18-09-2016 09:50:06
+98454 07778,93412 66159,18-09-2016 09:52:19
+70121 27677,78295 48262,18-09-2016 09:59:40
+74066 93594,90367 90080,18-09-2016 10:00:06
+97390 23922,90359 52497,18-09-2016 10:08:31
+93410 56456,98453 86521,18-09-2016 10:10:13
+94491 55790,90359 99240,18-09-2016 10:29:41
+95262 44233,98442 33257,18-09-2016 10:30:25
+97384 69866,87146 31956,18-09-2016 10:31:05
+98448 72117,93436 09781,18-09-2016 10:33:19
+90083 59148,97421 07528,18-09-2016 10:34:41
+93423 23000,78133 10302,18-09-2016 10:41:17
+97416 17124,90194 00845,18-09-2016 10:47:52
+97412 66065,94006 62384,18-09-2016 10:47:59
+94488 97308,97391 99665,18-09-2016 10:52:02
+93436 09781,98448 72117,18-09-2016 10:53:42
+94495 34273,94491 05266,18-09-2016 10:54:20
+94489 72078,97416 29480,18-09-2016 10:58:35
+97424 53609,90197 69887,18-09-2016 11:01:34
+81525 78007,93418 41992,18-09-2016 11:12:46
+98454 07778,93412 66159,18-09-2016 11:25:32
+90359 79636,99001 23133,18-09-2016 11:27:52
+94487 29969,97419 41164,18-09-2016 11:31:12
+70121 27677,90359 79636,18-09-2016 11:40:40
+97389 12538,90352 50054,18-09-2016 11:43:24
+78295 65598,98440 65896,18-09-2016 11:43:46
+92411 96415,97406 74488,18-09-2016 11:43:48
+94488 97308,97391 99665,18-09-2016 11:44:05
+93410 98013,98441 32533,18-09-2016 11:44:44
+93418 41992,81525 78007,18-09-2016 12:01:18
+97380 60551,90365 51029,18-09-2016 12:07:55
+97415 99182,97393 04671,18-09-2016 12:08:40
+97393 04671,97415 99182,18-09-2016 12:13:19
+90358 98099,97406 74488,18-09-2016 12:15:16
+99006 60463,99003 88572,18-09-2016 12:23:38
+90352 50054,97389 12538,18-09-2016 12:26:52
+90365 51029,94499 38099,18-09-2016 12:28:53
+94488 97308,97391 99665,18-09-2016 12:29:21
+81520 43406,92421 64236,18-09-2016 12:31:34
+97393 04671,97415 99182,18-09-2016 12:32:45
+98440 65896,78295 65598,18-09-2016 12:43:36
+94495 34273,94491 05266,18-09-2016 12:45:02
+92424 51984,78299 99223,18-09-2016 12:47:40
+90354 08732,94499 20763,18-09-2016 12:53:18
+97416 29480,94489 72078,18-09-2016 12:53:57
+97386 20071,94499 20763,18-09-2016 12:54:03
+90088 09624,93434 31551,18-09-2016 12:59:45
+81525 12041,90356 11723,18-09-2016 13:00:43
+78295 65598,98440 65896,18-09-2016 13:00:59
+92411 96415,93435 21961,18-09-2016 13:01:38
+89076 36757,99001 95783,18-09-2016 13:04:13
+74060 75431,97390 23922,18-09-2016 13:04:29
+97393 04671,98444 42212,18-09-2016 13:04:39
+97391 99665,94488 97308,18-09-2016 13:07:30
+94497 44333,97385 70012,18-09-2016 13:11:47
+97380 60551,90365 51029,18-09-2016 13:11:49
+98444 95768,99003 47921,18-09-2016 13:12:17
+94488 97308,97391 99665,18-09-2016 13:20:54
+70121 27677,90359 79636,18-09-2016 13:23:04
+93415 21881,98454 90038,18-09-2016 13:23:05
+90088 09624,94480 64700,18-09-2016 13:25:40
+98446 66723,83019 53227,18-09-2016 13:29:10
+77956 90632,92411 96415,18-09-2016 13:29:39
+97385 35042,93418 41992,18-09-2016 13:38:03
+98449 60656,97414 62784,18-09-2016 13:38:50
+87149 57915,92428 82401,18-09-2016 13:42:28
+97414 62784,98449 60656,18-09-2016 13:43:44
+98442 33257,95262 44233,18-09-2016 13:44:59
+90088 09624,93434 31551,18-09-2016 13:51:01
+93421 63491,92414 22596,18-09-2016 13:59:22
+94492 23068,94489 95536,18-09-2016 14:05:19
+98440 65896,78295 65598,18-09-2016 14:08:28
+90367 90080,74066 93594,18-09-2016 14:14:55
+97416 17124,90194 00845,18-09-2016 14:15:03
+97386 20071,94499 20763,18-09-2016 14:16:59
+87141 37314,93435 31225,18-09-2016 14:18:24
+98446 66723,97422 22278,18-09-2016 14:19:40
+90359 91512,94492 23068,18-09-2016 14:24:51
+94492 23068,94489 95536,18-09-2016 14:26:06
+98453 86521,93410 56456,18-09-2016 14:28:36
+81517 73746,94497 77615,18-09-2016 14:30:32
+97428 35959,97446 95253,18-09-2016 14:32:19
+93421 63491,92414 22596,18-09-2016 14:33:36
+78295 48262,81515 65055,18-09-2016 14:33:48
+84319 39746,95263 76972,18-09-2016 14:40:27
+97447 92655,84319 42810,18-09-2016 14:42:08
+90083 59148,97421 07528,18-09-2016 14:42:44
+81520 43406,92421 64236,18-09-2016 14:46:16
+90361 52679,90359 91512,18-09-2016 14:49:55
+97406 06245,97403 09983,18-09-2016 14:50:37
+78295 60375,83015 22251,18-09-2016 14:57:33
+78295 48262,70121 27677,18-09-2016 15:03:00
+78295 60375,93410 98013,18-09-2016 15:07:38
+89078 69605,77950 18278,18-09-2016 15:09:36
+97406 74488,92411 96415,18-09-2016 15:11:25
+90362 07317,92413 38675,18-09-2016 15:11:51
+83015 22251,78295 60375,18-09-2016 15:13:50
+87146 31956,83019 39880,18-09-2016 15:14:51
+99001 95783,89076 36757,18-09-2016 15:15:01
+78299 36192,94006 62384,18-09-2016 15:22:37
+94499 38099,90365 51029,18-09-2016 15:29:50
+78138 56841,97426 75324,18-09-2016 15:31:28
+92411 96415,78993 92058,18-09-2016 15:33:47
+98446 78140,98440 65896,18-09-2016 15:35:23
+93415 21881,98454 90038,18-09-2016 15:39:20
+90355 94399,98452 19037,18-09-2016 15:39:43
+97395 95120,94490 65627,18-09-2016 15:40:09
+81520 43406,92421 64236,18-09-2016 15:40:30
+97393 04671,95262 44233,18-09-2016 15:43:40
+98451 87493,97424 21092,18-09-2016 15:46:55
+93423 23000,78133 10302,18-09-2016 15:48:17
+94499 20763,97386 20071,18-09-2016 16:01:33
+98440 02823,81515 42171,18-09-2016 16:01:40
+83015 22251,78295 60375,18-09-2016 16:06:09
+97391 99665,90368 72970,18-09-2016 16:08:41
+99616 15114,94006 62384,18-09-2016 16:09:46
+97393 04671,97415 99182,18-09-2016 16:13:56
+92411 96415,97406 74488,18-09-2016 16:21:24
+78139 24512,90192 87313,18-09-2016 16:25:22
+93416 07259,78138 56841,18-09-2016 16:28:10
+97425 92186,94482 95223,18-09-2016 16:30:23
+98448 72117,93436 09781,18-09-2016 16:35:59
+94489 95536,93418 82576,18-09-2016 16:36:14
+90366 36573,97425 12708,18-09-2016 16:36:56
+99610 89720,90197 69887,18-09-2016 16:39:21
+90351 35947,97424 21092,18-09-2016 16:53:14
+98458 13389,93423 23000,18-09-2016 16:53:14
+87149 57915,92428 82401,18-09-2016 16:56:59
+90084 16988,98449 60656,18-09-2016 16:57:53
+83019 53227,98446 66723,18-09-2016 16:59:58
+81522 26166,90194 00845,18-09-2016 17:05:35
+94491 05266,94495 34273,18-09-2016 17:12:22
+93418 41992,81525 78007,18-09-2016 17:14:22
+74066 93594,78136 65840,18-09-2016 17:19:51
+95269 20533,97449 50000,18-09-2016 17:23:20
+78138 56841,99009 32475,18-09-2016 17:23:58
+89078 69605,77950 18278,18-09-2016 17:25:36
+90082 61126,90366 69257,18-09-2016 17:37:20
+94480 64700,90088 09624,18-09-2016 17:38:15
+93420 59147,90357 17994,18-09-2016 17:38:59
+97425 92186,94482 95223,18-09-2016 17:41:15
+90357 17994,93420 59147,18-09-2016 17:43:47
+70129 62374,98441 32533,18-09-2016 17:51:24
+78295 60375,93410 98013,18-09-2016 17:51:30
+90365 06212,81513 30231,18-09-2016 17:53:42
+99616 15114,94006 62384,18-09-2016 18:00:00
+90198 03659,97403 09983,18-09-2016 18:00:27
+93423 23000,78133 10302,18-09-2016 18:03:59
+84313 45689,78295 65598,18-09-2016 18:06:34
+83015 22251,78295 60375,18-09-2016 18:09:30
+97414 62784,98449 60656,18-09-2016 18:12:40
+78993 92058,92411 96415,18-09-2016 18:16:45
+93435 31225,87141 37314,18-09-2016 18:22:05
+94487 29969,97419 41164,18-09-2016 18:26:19
+97425 92186,94482 95223,18-09-2016 18:28:13
+93423 23000,78133 10302,18-09-2016 18:30:57
+98449 60656,90084 16988,18-09-2016 18:31:28
+97406 74488,90358 98099,18-09-2016 18:35:54
+92411 96415,77956 90632,18-09-2016 18:36:33
+78132 18081,77956 90632,18-09-2016 18:38:05
+98444 72482,98446 78140,18-09-2016 18:38:29
+93412 66159,94499 20763,18-09-2016 18:39:30
+78133 10302,93423 23000,18-09-2016 18:44:22
+84319 39746,95263 76972,18-09-2016 18:48:08
+92411 96415,77956 90632,18-09-2016 18:55:57
+98452 19037,90355 94399,18-09-2016 19:04:02
+74294 40351,98440 02823,18-09-2016 19:13:51
+97395 95120,94490 65627,18-09-2016 19:15:12
+97385 35042,93418 41992,18-09-2016 19:15:49
+93418 82576,94489 95536,18-09-2016 19:19:26
+97416 17124,90194 00845,18-09-2016 19:28:59
+78138 56841,99009 32475,18-09-2016 19:30:07
+90356 11723,81525 12041,18-09-2016 19:30:59
+90199 91061,97414 15280,18-09-2016 19:32:06
+78993 92058,92411 96415,18-09-2016 19:33:01
+98447 12671,93427 56500,18-09-2016 19:34:17
+97424 21092,90351 35947,18-09-2016 19:36:56
+90357 17994,93420 59147,18-09-2016 19:47:57
+90084 16988,98449 60656,18-09-2016 19:49:47
+81515 42171,98440 02823,18-09-2016 20:00:18
+93410 98013,78295 60375,18-09-2016 20:08:05
+78295 60375,93410 98013,18-09-2016 20:09:03
+93410 98013,98441 32533,18-09-2016 20:13:02
+97421 07528,97399 92703,18-09-2016 20:16:14
+94499 20763,84314 16122,18-09-2016 20:16:52
+78295 65598,98440 65896,18-09-2016 20:19:52
+97415 99182,97393 04671,18-09-2016 20:24:11
+90358 98099,97406 74488,18-09-2016 20:24:36
+97393 04671,97415 99182,18-09-2016 20:26:00
+98448 72117,93436 09781,18-09-2016 20:27:40
+94497 77615,81517 73746,18-09-2016 20:28:19
+98444 72482,98446 78140,18-09-2016 20:35:23
+90365 51029,94499 38099,18-09-2016 20:38:57
+98444 42212,97393 04671,18-09-2016 20:39:12
+78295 48262,70121 27677,18-09-2016 20:48:46
+84313 45689,78295 65598,18-09-2016 20:53:27
+78132 18081,98443 72004,18-09-2016 20:58:36
+97406 74488,90358 98099,18-09-2016 20:58:42
+93412 66159,98454 07778,18-09-2016 20:59:39
+97419 41164,94487 29969,18-09-2016 21:02:51
+98445 42844,99617 74886,18-09-2016 21:05:55
+92411 96415,97406 74488,18-09-2016 21:07:34
+97424 53609,97385 70012,18-09-2016 21:09:05
+90356 11723,81525 12041,18-09-2016 21:09:33
+84314 16122,94499 20763,18-09-2016 21:10:13
+78295 65598,84313 45689,18-09-2016 21:11:28
+98446 66723,83019 53227,18-09-2016 21:15:09
+90088 09624,93434 31551,18-09-2016 21:16:18
+90083 59148,97421 07528,18-09-2016 21:16:30
+90197 69887,97424 53609,18-09-2016 21:23:43
+97415 99182,97393 04671,18-09-2016 21:25:29
+78295 48262,81515 65055,18-09-2016 21:29:36
+94491 55790,90359 99240,18-09-2016 21:30:26
+97414 62784,98449 60656,18-09-2016 21:31:19
+93435 21961,92411 96415,18-09-2016 21:40:20
+97385 70012,97424 53609,18-09-2016 21:42:26
+92421 64236,81520 43406,18-09-2016 21:49:11
+90365 51029,97380 60551,18-09-2016 21:57:15
+92413 79027,74060 75431,18-09-2016 22:02:12
+98454 90038,74066 31484,18-09-2016 22:03:24
+98440 65896,78295 65598,18-09-2016 22:03:45
+93418 41992,81525 78007,18-09-2016 22:03:53
+94485 80091,84312 48999,18-09-2016 22:04:42
+97393 04671,97415 99182,18-09-2016 22:15:02
+92415 91418,94489 72078,18-09-2016 22:17:27
+90358 98099,97406 74488,18-09-2016 22:17:43
+90366 36573,97425 12708,18-09-2016 22:25:44
+78295 60375,83015 22251,18-09-2016 22:25:55
+74066 31484,98454 90038,18-09-2016 22:27:07
+97391 99665,90368 72970,18-09-2016 22:28:17
+99001 95783,89076 36757,18-09-2016 22:29:47
+97385 35042,93418 41992,18-09-2016 22:32:03
+90199 91061,97414 15280,18-09-2016 22:40:43
+97390 23922,90359 52497,18-09-2016 22:48:22
+97449 50000,95269 20533,18-09-2016 22:48:35
+97421 07528,90083 59148,18-09-2016 22:57:34
+90197 69887,97424 53609,18-09-2016 23:05:24
+97406 74488,90358 98099,18-09-2016 23:13:10
+90366 69257,90082 61126,18-09-2016 23:16:09
+90083 59148,97421 07528,18-09-2016 23:17:20
+97390 23922,90359 52497,18-09-2016 23:17:55
+93423 23000,98458 13389,18-09-2016 23:26:30
+74066 93594,78136 65840,18-09-2016 23:27:58
+94486 40312,97424 60171,18-09-2016 23:34:41
+78993 92058,92411 96415,18-09-2016 23:35:14
+89078 69605,77950 18278,18-09-2016 23:36:16
+81517 73746,94497 77615,18-09-2016 23:37:03
+97425 92186,94482 95223,18-09-2016 23:37:25
+90366 36573,98448 87878,18-09-2016 23:37:37
+90351 49472,90199 67471,18-09-2016 23:45:21
+94485 80091,84312 48999,18-09-2016 23:46:28
+90359 99240,94491 55790,18-09-2016 23:47:06
+97380 60551,78298 91466,18-09-2016 23:49:36
+78295 48262,81515 65055,18-09-2016 23:50:01
+99003 47921,98444 95768,18-09-2016 23:50:12
+83019 53227,98446 66723,18-09-2016 23:52:56
+77956 90632,92411 96415,18-09-2016 23:56:40
+95269 20533,97449 50000,19-09-2016 06:03:43
+90359 91512,94492 23068,19-09-2016 06:07:14
+98453 86521,93410 56456,19-09-2016 06:08:54
+78138 56841,97426 75324,19-09-2016 06:12:44
+92414 22596,93421 63491,19-09-2016 06:14:49
+78295 78750,97449 50000,19-09-2016 06:16:16
+97414 62784,98449 60656,19-09-2016 06:19:53
+90194 00845,97416 17124,19-09-2016 06:21:09
+94497 44333,97385 70012,19-09-2016 06:21:29
+78295 48262,70121 27677,19-09-2016 06:21:32
+90359 52497,97390 23922,19-09-2016 06:23:14
+78295 60375,83015 22251,19-09-2016 06:31:37
+78299 99223,92424 51984,19-09-2016 06:35:15
+93423 23000,78133 10302,19-09-2016 06:41:51
+90366 69257,90082 61126,19-09-2016 06:50:21
+90192 87313,78139 24512,19-09-2016 06:54:29
+87146 31956,83019 39880,19-09-2016 06:57:09
+90084 16988,98449 60656,19-09-2016 06:58:14
+97403 49292,98445 33687,19-09-2016 07:00:56
+90358 98099,97406 74488,19-09-2016 07:07:09
+84314 16122,94499 20763,19-09-2016 07:07:47
+90194 08626,98444 95768,19-09-2016 07:15:28
+81524 55552,97380 60551,19-09-2016 07:17:38
+90352 50054,97389 12538,19-09-2016 07:27:17
+99009 32475,78138 56841,19-09-2016 07:31:46
+97393 04671,95262 44233,19-09-2016 07:36:02
+94006 62384,99616 15114,19-09-2016 07:36:10
+98451 87493,97424 21092,19-09-2016 07:38:38
+97412 66065,94006 62384,19-09-2016 07:38:59
+90194 00845,97416 17124,19-09-2016 07:40:48
+93410 98013,98441 32533,19-09-2016 07:57:08
+92411 96415,97406 74488,19-09-2016 08:10:41
+90366 69257,90082 61126,19-09-2016 08:11:16
+90357 17994,93420 59147,19-09-2016 08:21:01
+99006 60463,99003 88572,19-09-2016 08:25:02
+90365 06212,97424 22395,19-09-2016 08:25:24
+74060 75431,92413 79027,19-09-2016 08:30:28
+92414 22596,93421 63491,19-09-2016 08:31:13
+98453 46196,94005 06213,19-09-2016 08:32:18
+90358 98099,97406 74488,19-09-2016 08:45:14
+78295 78750,97449 50000,19-09-2016 09:04:05
+93410 56456,98453 86521,19-09-2016 09:07:49
+94489 95536,93418 82576,19-09-2016 09:08:12
+98448 87878,90366 36573,19-09-2016 09:09:02
+94488 97308,97391 99665,19-09-2016 09:10:00
+98440 02823,81515 42171,19-09-2016 09:15:14
+93423 23000,78133 10302,19-09-2016 09:19:53
+70121 27677,78295 48262,19-09-2016 09:19:59
+94497 44333,90087 42537,19-09-2016 09:24:44
+97395 95120,94490 65627,19-09-2016 09:25:08
+97406 74488,92411 96415,19-09-2016 09:30:06
+87141 73076,78290 30467,19-09-2016 09:30:34
+95269 20533,97449 50000,19-09-2016 09:36:36
+78295 48262,81515 65055,19-09-2016 09:41:23
+83019 53227,98446 66723,19-09-2016 09:43:26
+97424 21092,98451 87493,19-09-2016 09:46:58
+90197 69887,99610 89720,19-09-2016 09:51:36
+94489 95536,93418 82576,19-09-2016 10:04:50
+97380 86781,97380 60551,19-09-2016 10:07:11
+93436 09781,98448 72117,19-09-2016 10:07:23
+94490 65627,97395 95120,19-09-2016 10:12:33
+81510 47188,97429 02055,19-09-2016 10:14:44
+89076 36757,99001 95783,19-09-2016 10:19:00
+90192 87313,78139 24512,19-09-2016 10:26:34
+97403 09983,90198 03659,19-09-2016 10:31:33
+84314 16122,94499 20763,19-09-2016 10:32:06
+98440 02823,81515 42171,19-09-2016 10:32:51
+74066 31484,98454 90038,19-09-2016 10:32:53
+97393 04671,95262 44233,19-09-2016 10:36:05
+97426 75324,78138 56841,19-09-2016 10:38:15
+97424 21092,90351 35947,19-09-2016 10:48:04
+97424 21092,90351 35947,19-09-2016 10:52:06
+97391 99665,94488 97308,19-09-2016 10:57:46
+97385 35042,93418 41992,19-09-2016 11:00:01
+92415 91418,94489 72078,19-09-2016 11:02:13
+90352 50054,97389 12538,19-09-2016 11:09:01
+98454 90038,90359 52497,19-09-2016 11:15:56
+84314 16122,94499 20763,19-09-2016 11:18:05
+97393 04671,97415 99182,19-09-2016 11:18:47
+90352 50054,97389 12538,19-09-2016 11:19:19
+89076 36757,99001 95783,19-09-2016 11:19:35
+83015 22251,78295 60375,19-09-2016 11:26:05
+89076 36757,99001 95783,19-09-2016 11:26:44
+94499 20763,90354 08732,19-09-2016 11:31:45
+94497 44333,90087 42537,19-09-2016 11:37:52
+97422 22278,98446 66723,19-09-2016 11:38:08
+81520 43406,92421 64236,19-09-2016 11:44:22
+90084 16988,93422 47940,19-09-2016 11:46:07
+78295 48262,81515 65055,19-09-2016 11:47:13
+74294 40351,98440 02823,19-09-2016 11:51:07
+94491 05266,94495 34273,19-09-2016 12:05:05
+90197 24124,99612 41256,19-09-2016 12:27:19
+98453 86521,93410 56456,19-09-2016 12:29:36
+98444 95768,99003 47921,19-09-2016 12:35:58
+99003 88572,99006 60463,19-09-2016 12:45:48
+94489 95536,93418 82576,19-09-2016 12:49:51
+94006 62384,99616 15114,19-09-2016 12:50:16
+97385 35042,93418 41992,19-09-2016 12:53:37
+94499 20763,97386 20071,19-09-2016 12:55:32
+83015 22251,78295 60375,19-09-2016 12:59:17
+97428 35959,97446 95253,19-09-2016 12:59:27
+97395 95120,94490 65627,19-09-2016 13:01:28
+93415 21881,98454 90038,19-09-2016 13:01:32
+97406 74488,90358 98099,19-09-2016 13:01:57
+93418 41992,97385 35042,19-09-2016 13:07:13
+78295 78750,97449 50000,19-09-2016 13:09:35
+97424 60171,94486 40312,19-09-2016 13:09:36
+97385 29751,92428 82401,19-09-2016 13:17:11
+94491 05266,94495 34273,19-09-2016 13:24:31
+81510 47188,97429 02055,19-09-2016 13:33:11
+87149 57915,92428 82401,19-09-2016 13:36:23
+97412 66065,94006 62384,19-09-2016 13:39:50
+81522 26166,90194 00845,19-09-2016 13:40:36
+97424 21092,98451 87493,19-09-2016 13:51:38
+97424 53609,97385 70012,19-09-2016 13:59:40
+92415 91418,94489 72078,19-09-2016 14:01:09
+90362 07317,92413 38675,19-09-2016 14:03:23
+81525 78007,93418 41992,19-09-2016 14:04:41
+93423 23000,98458 13389,19-09-2016 14:06:16
+98458 13389,93423 23000,19-09-2016 14:06:52
+94491 55790,90359 99240,19-09-2016 14:08:16
+94499 20763,93412 66159,19-09-2016 14:22:15
+98442 33257,95262 44233,19-09-2016 14:24:04
+98453 86521,93410 56456,19-09-2016 14:30:52
+92413 79027,74060 75431,19-09-2016 14:34:35
+93434 31551,90088 09624,19-09-2016 14:35:52
+90368 72970,97391 99665,19-09-2016 14:41:59
+92428 82401,97385 29751,19-09-2016 14:43:42
+90194 00845,97416 17124,19-09-2016 14:44:45
+99001 23133,90359 79636,19-09-2016 14:45:08
+98446 66723,97422 22278,19-09-2016 14:45:24
+90355 94399,98452 19037,19-09-2016 14:46:22
+84312 48999,94485 80091,19-09-2016 14:48:50
+99001 95783,89076 36757,19-09-2016 14:53:27
+92424 51984,78299 99223,19-09-2016 14:53:33
+78295 60375,83015 22251,19-09-2016 14:53:36
+97414 15280,90199 91061,19-09-2016 14:55:02
+90358 98099,97406 74488,19-09-2016 14:58:53
+97424 21092,98451 87493,19-09-2016 15:01:20
+70121 27677,83012 37742,19-09-2016 15:05:06
+90356 11723,81525 12041,19-09-2016 15:06:54
+92415 91418,94489 72078,19-09-2016 15:21:14
+94492 23068,90359 91512,19-09-2016 15:30:13
+90359 99240,78138 93826,19-09-2016 15:32:48
+97426 75324,78138 56841,19-09-2016 15:32:58
+98440 65896,98446 78140,19-09-2016 15:34:43
+78295 65598,84313 45689,19-09-2016 15:36:38
+81510 47188,97429 02055,19-09-2016 15:38:18
+90368 72970,97391 99665,19-09-2016 15:45:34
+93434 31551,90088 09624,19-09-2016 15:47:08
+89078 69605,77950 18278,19-09-2016 15:52:12
+93418 41992,97385 35042,19-09-2016 15:52:57
+98445 33687,97403 49292,19-09-2016 15:53:10
+78299 99223,92424 51984,19-09-2016 15:56:04
+98446 78140,98444 72482,19-09-2016 16:01:20
+97393 04671,97415 99182,19-09-2016 16:02:59
+97449 50000,78295 78750,19-09-2016 16:03:15
+94492 23068,90359 91512,19-09-2016 16:04:41
+97446 95253,97428 35959,19-09-2016 16:05:06
+78139 24512,90192 87313,19-09-2016 16:11:21
+90355 94399,98452 19037,19-09-2016 16:12:21
+94495 34273,94491 05266,19-09-2016 16:12:29
+97391 99665,94488 97308,19-09-2016 16:16:01
+93423 23000,78133 10302,19-09-2016 16:20:22
+97424 22395,90365 06212,19-09-2016 16:23:18
+93412 66159,98454 07778,19-09-2016 16:25:33
+98440 68457,95264 40233,19-09-2016 16:34:49
+94490 65627,97395 95120,19-09-2016 16:44:53
+81525 12041,90356 11723,19-09-2016 16:47:49
+78295 60375,93410 98013,19-09-2016 16:49:53
+90083 59148,97421 07528,19-09-2016 16:51:03
+95267 70383,97414 62027,19-09-2016 16:52:46
+93423 23000,78133 10302,19-09-2016 16:55:02
+84313 45689,78295 65598,19-09-2016 16:57:27
+94480 64700,90088 09624,19-09-2016 17:04:42
+81513 30231,90365 06212,19-09-2016 17:05:07
+93418 41992,97385 35042,19-09-2016 17:13:03
+90365 06212,97424 22395,19-09-2016 17:23:35
+92421 64236,81520 43406,19-09-2016 17:26:46
+94488 97308,97391 99665,19-09-2016 17:38:03
+97422 22278,98446 66723,19-09-2016 17:44:20
+97448 02140,97418 46131,19-09-2016 17:46:37
+99006 60463,99003 88572,19-09-2016 17:47:40
+90359 52497,97390 23922,19-09-2016 17:50:21
+81519 62015,99009 32475,19-09-2016 17:51:14
+98453 86521,93410 56456,19-09-2016 18:00:44
+97384 69866,87146 31956,19-09-2016 18:01:31
+84311 10322,90359 79636,19-09-2016 18:11:38
+98441 32533,70129 62374,19-09-2016 18:13:08
+99617 74886,98445 42844,19-09-2016 18:15:28
+78299 99223,92424 51984,19-09-2016 18:19:39
+90357 17994,93420 59147,19-09-2016 18:23:32
+97391 99665,90368 72970,19-09-2016 18:26:14
+97416 17124,90194 00845,19-09-2016 18:28:23
+94499 20763,93412 66159,19-09-2016 18:30:04
+90199 91061,97414 15280,19-09-2016 18:39:57
+90087 42537,94497 44333,19-09-2016 18:43:37
+94489 72078,97416 29480,19-09-2016 18:45:21
+93418 41992,81525 78007,19-09-2016 18:49:28
+92415 91418,94489 72078,19-09-2016 18:50:40
+93422 47940,90084 16988,19-09-2016 19:01:17
+93422 47940,94488 97308,19-09-2016 19:02:58
+98449 60656,90084 16988,19-09-2016 19:12:13
+94491 55790,90359 99240,19-09-2016 19:13:54
+97406 74488,90358 98099,19-09-2016 19:14:02
+97385 70012,94497 44333,19-09-2016 19:20:50
+81520 43406,92421 64236,19-09-2016 19:21:39
+98440 65896,78295 65598,19-09-2016 19:23:26
+97416 17124,90194 00845,19-09-2016 19:23:36
+89076 36757,99001 95783,19-09-2016 19:24:11
+90199 91061,97414 15280,19-09-2016 19:24:21
+98458 13389,93423 23000,19-09-2016 19:26:46
+94006 62384,99616 15114,19-09-2016 19:29:11
+81525 12041,90356 11723,19-09-2016 19:30:05
+90368 72970,97391 99665,19-09-2016 19:43:04
+97421 07528,98454 07778,19-09-2016 19:48:27
+81513 30231,90365 06212,19-09-2016 19:51:13
+78138 56841,99009 32475,19-09-2016 19:59:49
+98445 42844,99617 74886,19-09-2016 20:05:28
+94489 72078,97416 29480,19-09-2016 20:05:44
+93421 63491,92414 22596,19-09-2016 20:06:36
+94499 20763,97386 20071,19-09-2016 20:07:20
+84311 10322,90359 79636,19-09-2016 20:08:49
+81513 30231,90365 06212,19-09-2016 20:13:24
+74066 93594,90367 90080,19-09-2016 20:17:43
+97424 21092,90351 35947,19-09-2016 20:21:37
+70121 27677,78295 48262,19-09-2016 20:22:01
+97403 09983,90198 03659,19-09-2016 20:27:09
+70121 27677,78295 48262,19-09-2016 20:27:37
+98448 87878,90366 36573,19-09-2016 20:27:56
+94491 05266,94495 34273,19-09-2016 20:31:14
+97425 12708,90366 36573,19-09-2016 20:32:48
+90359 52497,97390 23922,19-09-2016 20:33:25
+90368 72970,97391 99665,19-09-2016 20:33:27
+98453 86521,93410 56456,19-09-2016 20:34:05
+78139 24512,90192 87313,19-09-2016 20:39:22
+93436 09781,98448 72117,19-09-2016 20:41:18
+97424 21092,90351 35947,19-09-2016 20:41:39
+92411 96415,77956 90632,19-09-2016 20:48:23
+89076 36757,99001 95783,19-09-2016 20:49:25
+90355 94399,98452 19037,19-09-2016 20:51:34
+90088 09624,94480 64700,19-09-2016 20:53:36
+97424 21092,98451 87493,19-09-2016 21:03:43
+90368 72970,97391 99665,19-09-2016 21:06:33
+81524 55552,97380 60551,19-09-2016 21:06:45
+78295 48262,81515 65055,19-09-2016 21:09:01
+90355 94399,98452 19037,19-09-2016 21:17:25
+97416 17124,90194 00845,19-09-2016 21:25:02
+97421 07528,90083 59148,19-09-2016 21:28:49
+78138 56841,99009 32475,19-09-2016 21:29:15
+92411 96415,93435 21961,19-09-2016 21:30:20
+94487 29969,97419 41164,19-09-2016 21:35:29
+97395 95120,94490 65627,19-09-2016 21:39:26
+95269 20533,97449 50000,19-09-2016 21:47:04
+87141 37314,93435 31225,19-09-2016 21:47:37
+97415 99182,97393 04671,19-09-2016 21:48:43
+97390 23922,90359 52497,19-09-2016 21:49:33
+94489 95536,94492 23068,19-09-2016 21:52:15
+97403 49292,98445 33687,19-09-2016 21:52:25
+99001 85033,74066 93594,19-09-2016 21:53:51
+98446 66723,83019 53227,19-09-2016 21:56:34
+78295 48262,70121 27677,19-09-2016 21:59:41
+74060 75431,92413 79027,19-09-2016 22:04:10
+93418 41992,97385 35042,19-09-2016 22:24:12
+74060 75431,92413 79027,19-09-2016 22:28:52
+97380 60551,97414 35000,19-09-2016 22:38:51
+97415 99182,97393 04671,19-09-2016 22:40:24
+78298 91466,97380 60551,19-09-2016 22:45:30
+87141 37314,93435 31225,19-09-2016 22:46:00
+78132 18081,98443 72004,19-09-2016 22:46:12
+94492 23068,90359 91512,19-09-2016 22:50:20
+93436 09781,98448 72117,19-09-2016 22:50:26
+97419 41164,94487 29969,19-09-2016 22:51:00
+93436 09781,98448 72117,19-09-2016 22:52:54
+81525 12041,90356 11723,19-09-2016 22:56:58
+94486 40312,97424 60171,19-09-2016 23:03:25
+78130 00821,98453 94494,19-09-2016 23:04:02
+97395 95120,94490 65627,19-09-2016 23:04:22
+90352 50054,96566 40412,19-09-2016 23:05:56
+83019 39880,87146 31956,19-09-2016 23:07:50
+94006 62384,99616 15114,19-09-2016 23:07:58
+95269 20533,97449 50000,19-09-2016 23:11:34
+94499 20763,90354 08732,19-09-2016 23:17:41
+94491 55790,90359 99240,19-09-2016 23:22:26
+81524 55552,97380 60551,19-09-2016 23:27:17
+93421 63491,92414 22596,19-09-2016 23:29:04
+99001 95783,89076 36757,19-09-2016 23:31:51
+99009 32475,78138 56841,19-09-2016 23:33:18
+99616 15114,94006 62384,19-09-2016 23:33:30
+95267 70383,97414 62027,19-09-2016 23:49:32
+90083 59148,97421 07528,19-09-2016 23:54:10
+94006 62384,97412 66065,19-09-2016 23:57:17
+81524 55552,97380 60551,19-09-2016 23:58:16
+81522 26166,97380 86781,20-09-2016 06:02:28
+90355 94399,97391 99665,20-09-2016 06:03:01
+83012 37742,70121 27677,20-09-2016 06:08:28
+93416 07259,78138 56841,20-09-2016 06:09:35
+99001 23133,90359 79636,20-09-2016 06:10:33
+94490 65627,97395 95120,20-09-2016 06:18:09
+97380 60551,90365 51029,20-09-2016 06:18:47
+98447 12671,93427 56500,20-09-2016 06:20:04
+97425 12708,90366 36573,20-09-2016 06:21:54
+90194 00845,81522 26166,20-09-2016 06:22:27
+90368 72970,97391 99665,20-09-2016 06:25:35
+99009 32475,78138 56841,20-09-2016 06:27:40
+90354 08732,94499 20763,20-09-2016 06:39:03
+90359 91512,94492 23068,20-09-2016 06:42:18
+93435 21961,92411 96415,20-09-2016 06:43:10
+78993 92058,92411 96415,20-09-2016 06:44:32
+94480 31371,97426 25297,20-09-2016 06:50:43
+92425 27794,93432 65750,20-09-2016 06:51:02
+93422 47940,90084 16988,20-09-2016 06:55:03
+97386 20071,94499 20763,20-09-2016 06:55:29
+90359 91512,94492 23068,20-09-2016 06:58:23
+90355 94399,97391 99665,20-09-2016 07:06:57
+93420 59147,90357 17994,20-09-2016 07:11:24
+99617 74886,98445 42844,20-09-2016 07:11:32
+98448 86633,78293 91304,20-09-2016 07:12:21
+90361 52679,90359 91512,20-09-2016 07:13:15
+97416 29480,94489 72078,20-09-2016 07:14:10
+78133 10302,93423 23000,20-09-2016 07:26:32
+97449 50000,95269 20533,20-09-2016 07:27:10
+99009 32475,78138 56841,20-09-2016 07:33:06
+90352 50054,97389 12538,20-09-2016 07:34:00
+90352 50054,97389 12538,20-09-2016 07:45:50
+94495 34273,94491 05266,20-09-2016 07:46:40
+90365 51029,94499 38099,20-09-2016 08:00:37
+78139 24512,90192 87313,20-09-2016 08:05:40
+98446 78140,98440 65896,20-09-2016 08:15:39
+93410 98013,78295 60375,20-09-2016 08:19:22
+98454 07778,93412 66159,20-09-2016 08:20:01
+94499 20763,90354 08732,20-09-2016 08:21:43
+97424 21092,90351 35947,20-09-2016 08:22:18
+70121 27677,83012 37742,20-09-2016 08:25:14
+98453 86521,93410 56456,20-09-2016 08:27:27
+74066 93594,78136 65840,20-09-2016 08:34:50
+90084 16988,93422 47940,20-09-2016 08:35:00
+70121 27677,83012 37742,20-09-2016 08:36:25
+97447 92655,84319 42810,20-09-2016 08:52:33
+97385 70012,97424 53609,20-09-2016 08:53:03
+99006 60463,99003 88572,20-09-2016 09:00:25
+90088 09624,94480 64700,20-09-2016 09:04:25
+93420 59147,90357 17994,20-09-2016 09:10:34
+97411 71155,98443 99204,20-09-2016 09:10:43
+87141 73076,78290 30467,20-09-2016 09:12:07
+90084 16988,93422 47940,20-09-2016 09:13:57
+81517 73746,94497 77615,20-09-2016 09:15:05
+97393 04671,97415 99182,20-09-2016 09:15:56
+78136 42599,97399 92703,20-09-2016 09:23:04
+95269 20533,97449 50000,20-09-2016 09:24:09
+97416 29480,94489 72078,20-09-2016 09:24:36
+81522 26166,97380 86781,20-09-2016 09:26:06
+78298 02848,99001 95783,20-09-2016 09:28:16
+92411 96415,97406 74488,20-09-2016 09:28:21
+78139 24512,90192 87313,20-09-2016 09:30:36
+89078 69605,77950 18278,20-09-2016 09:31:23
+90365 51029,94499 38099,20-09-2016 09:33:35
+87141 37314,93435 31225,20-09-2016 09:40:52
+94480 31371,97426 25297,20-09-2016 09:47:10
+94499 20763,93412 66159,20-09-2016 09:47:50
+78133 10302,93423 23000,20-09-2016 09:49:52
+81515 65055,78295 48262,20-09-2016 09:52:39
+97395 95120,94490 65627,20-09-2016 09:56:18
+78139 24512,90192 87313,20-09-2016 09:57:46
+78138 56841,97426 75324,20-09-2016 10:01:31
+78295 60375,93410 98013,20-09-2016 10:07:26
+99004 86250,97390 23922,20-09-2016 10:09:14
+90357 17994,93420 59147,20-09-2016 10:12:01
+94492 23068,90359 91512,20-09-2016 10:12:49
+90194 00845,97416 17124,20-09-2016 10:15:11
+93418 41992,97385 35042,20-09-2016 10:23:09
+94495 34273,94491 05266,20-09-2016 10:26:36
+98446 66723,97422 22278,20-09-2016 10:35:18
+94489 72078,97416 29480,20-09-2016 10:40:02
+94499 20763,90354 08732,20-09-2016 10:47:33
+97421 07528,98454 07778,20-09-2016 10:49:07
+83015 22251,78295 60375,20-09-2016 10:53:56
+78136 65840,74066 93594,20-09-2016 10:57:44
+81517 73746,94497 77615,20-09-2016 10:58:21
+90087 42537,94497 44333,20-09-2016 11:01:31
+99617 74886,98445 42844,20-09-2016 11:12:09
+70129 62374,98441 32533,20-09-2016 11:13:44
+97390 23922,99004 86250,20-09-2016 11:14:38
+93412 66159,98454 07778,20-09-2016 11:17:25
+93412 66159,98454 07778,20-09-2016 11:20:59
+93436 09781,98448 72117,20-09-2016 11:21:01
+97412 66065,94006 62384,20-09-2016 11:24:29
+98444 42212,97393 04671,20-09-2016 11:24:35
+97414 15280,90199 91061,20-09-2016 11:27:08
+78295 60375,93410 98013,20-09-2016 11:28:34
+93422 47940,90084 16988,20-09-2016 11:30:54
+94487 29969,97419 41164,20-09-2016 11:31:00
+97406 93118,98453 46196,20-09-2016 11:36:43
+94005 06213,98453 46196,20-09-2016 12:00:16
+78295 65598,84313 45689,20-09-2016 12:07:23
+97420 86635,90193 20957,20-09-2016 12:07:57
+97399 92703,78136 42599,20-09-2016 12:15:29
+94497 44333,97385 70012,20-09-2016 12:17:14
+94487 29969,97419 41164,20-09-2016 12:18:56
+97380 60551,90365 51029,20-09-2016 12:24:24
+93418 41992,97385 35042,20-09-2016 12:24:28
+98453 46196,94005 06213,20-09-2016 12:27:47
+93421 63491,92414 22596,20-09-2016 12:41:25
+83015 22251,78295 60375,20-09-2016 12:42:50
+97393 04671,97415 99182,20-09-2016 12:47:51
+98454 07778,93412 66159,20-09-2016 12:52:25
+94499 46077,83013 02552,20-09-2016 12:54:45
+98453 46196,94005 06213,20-09-2016 12:55:53
+78295 60375,93410 98013,20-09-2016 12:56:16
+99616 15114,94006 62384,20-09-2016 12:57:05
+90352 50054,96566 40412,20-09-2016 13:02:58
+90368 72970,97391 99665,20-09-2016 13:13:18
+97403 49292,98445 33687,20-09-2016 13:13:29
+90355 94399,98452 19037,20-09-2016 13:18:44
+97416 29480,94489 72078,20-09-2016 13:20:45
+81517 73746,94497 77615,20-09-2016 13:21:10
+93416 07259,78138 56841,20-09-2016 13:22:27
+92415 91418,94489 72078,20-09-2016 13:26:25
+87141 37314,93435 31225,20-09-2016 13:26:37
+90359 52497,97390 23922,20-09-2016 13:26:48
+90351 35947,97424 21092,20-09-2016 13:28:33
+94499 38099,90365 51029,20-09-2016 13:31:43
+87141 73076,78290 30467,20-09-2016 13:33:18
+90362 07317,92413 38675,20-09-2016 13:41:09
+97424 53609,90197 69887,20-09-2016 13:41:44
+90362 07317,92413 38675,20-09-2016 13:42:15
+81522 26166,97414 62784,20-09-2016 13:54:30
+94499 20763,84314 16122,20-09-2016 13:56:28
+90192 87313,78139 24512,20-09-2016 14:05:24
+95267 70383,97414 62027,20-09-2016 14:07:14
+93410 98013,78295 60375,20-09-2016 14:14:28
+94491 55790,90359 99240,20-09-2016 14:21:45
+84314 16122,94499 20763,20-09-2016 14:23:37
+78290 30467,87141 73076,20-09-2016 14:28:36
+92415 91418,94489 72078,20-09-2016 14:37:59
+90352 50054,97389 12538,20-09-2016 14:40:35
+93423 23000,98458 13389,20-09-2016 14:42:18
+97420 86635,90193 20957,20-09-2016 14:44:30
+81524 55552,90355 10919,20-09-2016 14:52:11
+99610 89720,90197 69887,20-09-2016 14:56:13
+83019 53227,98446 66723,20-09-2016 14:58:12
+98440 65896,78295 65598,20-09-2016 15:04:24
+93420 59147,90357 17994,20-09-2016 15:15:02
+78299 99223,92424 51984,20-09-2016 15:20:02
+98441 32533,93410 98013,20-09-2016 15:20:26
+97414 62784,98449 60656,20-09-2016 15:21:34
+94497 77615,81517 73746,20-09-2016 15:22:16
+98442 33257,95262 44233,20-09-2016 15:22:22
+98446 78140,98440 65896,20-09-2016 15:39:51
+90358 98099,97406 74488,20-09-2016 15:41:02
+83019 53227,98446 66723,20-09-2016 15:41:08
+90365 51029,94499 38099,20-09-2016 15:42:16
+90192 87313,78139 24512,20-09-2016 15:45:01
+98449 60656,90084 16988,20-09-2016 15:47:19
+90083 59148,97421 07528,20-09-2016 15:48:06
+94492 23068,94489 95536,20-09-2016 15:49:36
+93420 59147,90357 17994,20-09-2016 15:50:50
+99001 95783,78298 02848,20-09-2016 15:57:02
+94491 55790,90359 99240,20-09-2016 16:02:00
+83015 22251,78295 60375,20-09-2016 16:02:33
+97386 37259,78290 31269,20-09-2016 16:03:05
+92425 27794,93432 65750,20-09-2016 16:03:10
+90368 72970,97391 99665,20-09-2016 16:04:18
+94489 72078,92415 91418,20-09-2016 16:11:37
+78295 65598,98440 65896,20-09-2016 16:13:07
+94489 72078,92415 91418,20-09-2016 16:14:12
+97412 66065,94006 62384,20-09-2016 16:21:45
+90358 98099,97406 74488,20-09-2016 16:23:17
+78138 56841,97426 75324,20-09-2016 16:23:22
+97403 09983,90198 03659,20-09-2016 16:25:43
+93421 63491,92414 22596,20-09-2016 16:28:59
+97421 07528,90083 59148,20-09-2016 16:31:26
+90359 99240,94491 55790,20-09-2016 16:32:37
+90199 91061,97414 15280,20-09-2016 16:33:09
+97415 99182,97393 04671,20-09-2016 16:34:09
+97414 62027,95267 70383,20-09-2016 16:37:42
+90193 20957,97420 86635,20-09-2016 16:40:26
+92413 38675,90362 07317,20-09-2016 16:43:19
+97380 86781,81522 26166,20-09-2016 16:43:58
+97389 12538,90352 50054,20-09-2016 16:47:31
+90359 99240,94491 55790,20-09-2016 16:50:19
+92411 96415,78993 92058,20-09-2016 16:52:07
+97385 70012,94497 44333,20-09-2016 16:53:07
+78295 48262,81515 65055,20-09-2016 16:56:39
+94006 62384,99616 15114,20-09-2016 17:08:50
+81515 65055,78295 48262,20-09-2016 17:09:24
+97406 74488,92411 96415,20-09-2016 17:10:38
+93410 98013,98441 32533,20-09-2016 17:16:55
+93410 98013,98441 32533,20-09-2016 17:17:27
+93410 56456,98453 86521,20-09-2016 17:17:57
+99612 41256,81526 05544,20-09-2016 17:18:21
+97380 60551,81524 55552,20-09-2016 17:18:31
+81525 12041,90356 11723,20-09-2016 17:20:48
+98446 66723,83019 53227,20-09-2016 17:34:24
+94005 06213,98453 46196,20-09-2016 17:36:29
+98444 42212,97393 04671,20-09-2016 17:36:54
+92413 38675,90362 07317,20-09-2016 17:43:26
+90365 51029,94499 38099,20-09-2016 17:44:11
+97390 23922,90359 52497,20-09-2016 17:54:41
+94489 72078,92415 91418,20-09-2016 17:56:52
+81513 30231,90365 06212,20-09-2016 17:58:48
+98442 33257,95262 44233,20-09-2016 18:02:27
+90088 09624,94480 64700,20-09-2016 18:03:15
+97424 22395,90365 06212,20-09-2016 18:04:10
+97391 99665,90368 72970,20-09-2016 18:05:09
+97412 66065,94006 62384,20-09-2016 18:08:06
+94497 77615,81517 73746,20-09-2016 18:09:16
+97391 99665,90368 72970,20-09-2016 18:12:20
+90366 36573,97425 12708,20-09-2016 18:12:34
+89076 36757,99001 95783,20-09-2016 18:13:52
+74066 93594,90367 90080,20-09-2016 18:16:24
+94490 65627,97395 95120,20-09-2016 18:17:27
+97385 70012,94497 44333,20-09-2016 18:19:10
+94486 40312,97424 60171,20-09-2016 18:21:56
+87149 57915,92428 82401,20-09-2016 18:33:11
+97385 70012,94497 44333,20-09-2016 18:35:02
+78295 48262,81515 65055,20-09-2016 18:42:05
+94489 72078,97416 29480,20-09-2016 18:45:00
+97403 09983,90198 03659,20-09-2016 18:45:34
+81524 55552,97380 60551,20-09-2016 18:46:56
+97419 41164,94487 29969,20-09-2016 18:47:34
+97424 21092,90351 35947,20-09-2016 18:51:13
+83019 53227,98446 66723,20-09-2016 18:51:46
+98448 87878,90366 36573,20-09-2016 18:56:54
+97421 07528,90083 59148,20-09-2016 19:06:51
+78136 65840,74066 93594,20-09-2016 19:13:58
+97385 70012,97424 53609,20-09-2016 19:16:46
+99006 60463,99003 88572,20-09-2016 19:22:02
+89078 69605,77950 18278,20-09-2016 19:27:16
+98444 72482,98446 78140,20-09-2016 19:27:18
+78136 65840,74066 93594,20-09-2016 19:30:09
+90365 51029,94499 38099,20-09-2016 19:35:41
+93412 66159,98454 07778,20-09-2016 19:38:18
+90359 91512,94492 23068,20-09-2016 19:39:28
+99003 47921,98444 95768,20-09-2016 19:40:16
+98458 13389,93423 23000,20-09-2016 19:41:55
+97414 15280,90199 91061,20-09-2016 19:48:35
+97406 74488,92411 96415,20-09-2016 19:50:57
+98446 66723,97422 22278,20-09-2016 19:51:24
+93434 31551,90088 09624,20-09-2016 19:51:57
+97386 37259,78290 31269,20-09-2016 19:53:04
+90359 52497,97390 23922,20-09-2016 19:54:53
+95264 40233,98440 68457,20-09-2016 19:58:04
+99001 85033,74066 93594,20-09-2016 20:00:52
+97406 74488,90358 98099,20-09-2016 20:05:07
+92414 22596,93421 63491,20-09-2016 20:06:13
+90359 79636,70121 27677,20-09-2016 20:29:40
+90356 11723,81525 12041,20-09-2016 20:30:50
+97416 29480,94489 72078,20-09-2016 20:32:19
+92414 22596,93421 63491,20-09-2016 20:36:48
+93436 09781,98448 72117,20-09-2016 20:38:52
+97390 23922,90359 52497,20-09-2016 20:43:29
+84312 48999,94485 80091,20-09-2016 20:44:17
+97421 07528,98454 07778,20-09-2016 20:52:38
+92413 38675,90362 07317,20-09-2016 20:54:24
+78993 92058,92411 96415,20-09-2016 20:58:11
+90366 36573,97425 12708,20-09-2016 20:59:10
+92411 96415,93435 21961,20-09-2016 21:05:05
+99003 47921,98444 95768,20-09-2016 21:05:23
+90358 98099,97406 74488,20-09-2016 21:07:10
+92413 38675,90362 07317,20-09-2016 21:09:53
+93410 56456,98453 86521,20-09-2016 21:16:07
+97385 35042,93418 41992,20-09-2016 21:19:11
+87141 73076,78290 30467,20-09-2016 21:22:39
+93412 66159,94499 20763,20-09-2016 21:29:09
+99003 47921,98444 95768,20-09-2016 21:33:10
+99612 41256,90197 24124,20-09-2016 21:36:50
+78295 65598,84313 45689,20-09-2016 21:37:22
+98444 42212,97393 04671,20-09-2016 21:37:47
+81525 78007,93418 41992,20-09-2016 21:39:40
+89078 69605,77950 18278,20-09-2016 21:40:51
+94492 23068,90359 91512,20-09-2016 21:44:56
+94001 07403,90368 72970,20-09-2016 21:49:18
+93421 63491,92414 22596,20-09-2016 21:55:07
+94488 97308,97391 99665,20-09-2016 21:58:55
+93415 21881,98454 90038,20-09-2016 22:01:45
+90359 52497,98454 90038,20-09-2016 22:04:27
+96566 40412,90352 50054,20-09-2016 22:08:41
+92411 96415,77956 90632,20-09-2016 22:10:59
+81520 43406,92421 64236,20-09-2016 22:11:09
+98445 33687,97403 49292,20-09-2016 22:11:38
+93423 23000,98458 13389,20-09-2016 22:14:46
+78295 60375,83015 22251,20-09-2016 22:15:16
+81515 65055,78295 48262,20-09-2016 22:15:33
+90088 09624,94480 64700,20-09-2016 22:24:42
+98446 78140,98444 72482,20-09-2016 22:29:46
+81517 73746,94497 77615,20-09-2016 22:34:14
+99004 86250,97390 23922,20-09-2016 22:35:26
+94006 62384,99616 15114,20-09-2016 22:35:43
+97385 70012,97424 53609,20-09-2016 22:37:53
+98454 07778,93412 66159,20-09-2016 22:38:22
+90365 51029,94499 38099,20-09-2016 22:43:10
+74060 75431,92413 79027,20-09-2016 22:44:26
+94492 23068,90359 91512,20-09-2016 22:48:40
+94489 95536,93418 82576,20-09-2016 22:48:49
+98446 78140,98440 65896,20-09-2016 22:56:01
+90351 35947,97424 21092,20-09-2016 22:56:42
+93421 63491,92414 22596,20-09-2016 23:01:02
+94489 95536,93418 82576,20-09-2016 23:02:02
+94489 95536,94492 23068,20-09-2016 23:02:35
+97385 35042,93418 41992,20-09-2016 23:05:17
+94499 20763,84314 16122,20-09-2016 23:05:46
+94499 20763,93412 66159,20-09-2016 23:07:55
+84314 16122,94499 20763,20-09-2016 23:12:42
+78139 24512,90192 87313,20-09-2016 23:15:25
+90361 52679,90359 91512,20-09-2016 23:27:45
+78139 24512,90192 87313,20-09-2016 23:30:05
+90354 08732,94499 20763,20-09-2016 23:32:00
+97390 23922,90359 52497,20-09-2016 23:36:02
+97416 17124,90194 00845,20-09-2016 23:49:55
+97422 22278,98446 66723,20-09-2016 23:58:37
+97380 86781,97380 60551,20-09-2016 23:59:53
+90359 99240,94491 55790,21-09-2016 06:07:32
+90197 24124,99612 41256,21-09-2016 06:09:06
+93418 82576,94489 95536,21-09-2016 06:11:21
+97420 86635,90193 20957,21-09-2016 06:13:04
+94491 55790,90359 99240,21-09-2016 06:14:30
+77950 18278,89078 69605,21-09-2016 06:15:46
+90359 91512,94489 95536,21-09-2016 06:16:11
+98453 46196,94005 06213,21-09-2016 06:29:05
+81525 12041,90356 11723,21-09-2016 06:32:11
+90083 59148,97421 07528,21-09-2016 06:33:41
+90365 06212,81513 30231,21-09-2016 06:35:41
+78295 48262,70121 27677,21-09-2016 06:41:37
+90358 98099,97406 74488,21-09-2016 06:44:16
+90357 17994,93420 59147,21-09-2016 06:44:51
+90368 72970,97391 99665,21-09-2016 06:49:52
+90194 00845,97416 17124,21-09-2016 06:57:55
+97406 93118,98453 46196,21-09-2016 07:04:13
+90366 69257,90082 61126,21-09-2016 07:04:24
+93423 23000,98458 13389,21-09-2016 07:20:22
+98451 87493,97424 21092,21-09-2016 07:22:51
+93435 21961,92411 96415,21-09-2016 07:24:41
+90362 07317,92413 38675,21-09-2016 07:26:10
+94492 23068,90359 91512,21-09-2016 07:33:56
+92415 91418,94489 72078,21-09-2016 07:34:12
+90355 94399,98452 19037,21-09-2016 07:35:31
+94487 29969,97419 41164,21-09-2016 07:37:12
+78295 60375,83015 22251,21-09-2016 07:48:40
+90198 03659,97403 09983,21-09-2016 07:49:33
+99009 32475,78138 56841,21-09-2016 07:55:02
+97393 04671,98444 42212,21-09-2016 07:58:51
+97424 53609,97385 70012,21-09-2016 08:11:00
+97391 99665,94488 97308,21-09-2016 08:12:36
+78993 92058,92411 96415,21-09-2016 08:19:44
+97424 53609,97385 70012,21-09-2016 08:22:08
+94480 31371,97426 25297,21-09-2016 08:22:13
+99616 15114,94006 62384,21-09-2016 08:23:56
+94482 95223,97425 92186,21-09-2016 08:24:08
+90356 11723,81525 12041,21-09-2016 08:34:53
+97426 75324,78138 56841,21-09-2016 08:35:35
+81520 43406,92421 64236,21-09-2016 08:39:18
+90366 36573,97425 12708,21-09-2016 08:40:01
+98458 13389,93423 23000,21-09-2016 08:42:07
+97449 50000,78295 78750,21-09-2016 08:43:57
+94486 40312,97424 60171,21-09-2016 08:45:51
+93410 98013,78295 60375,21-09-2016 08:52:58
+81515 65055,78295 48262,21-09-2016 08:54:27
+84312 48999,94485 80091,21-09-2016 08:54:40
+78138 56841,99009 32475,21-09-2016 08:54:49
+90367 90080,74066 93594,21-09-2016 08:54:58
+78295 65598,84313 45689,21-09-2016 09:08:56
+93434 31551,90088 09624,21-09-2016 09:09:48
+97404 63904,97447 92655,21-09-2016 09:09:48
+93422 47940,90084 16988,21-09-2016 09:23:42
+90359 91512,94492 23068,21-09-2016 09:23:45
+98441 32533,93410 98013,21-09-2016 09:24:17
+92421 09526,89076 36757,21-09-2016 09:28:37
+94489 72078,92415 91418,21-09-2016 09:29:32
+93410 98013,98441 32533,21-09-2016 09:30:23
+90354 08732,94499 20763,21-09-2016 09:30:35
+81517 73746,94497 77615,21-09-2016 09:39:29
+78298 91466,97380 60551,21-09-2016 09:39:54
+97426 75324,78138 56841,21-09-2016 09:40:55
+90352 50054,97389 12538,21-09-2016 09:43:41
+93418 41992,97385 35042,21-09-2016 09:44:33
+83019 39880,87146 31956,21-09-2016 09:45:20
+92413 38675,90362 07317,21-09-2016 09:45:40
+90359 52497,97390 23922,21-09-2016 09:51:08
+93410 98013,98441 32533,21-09-2016 09:56:32
+97424 53609,97385 70012,21-09-2016 10:05:03
+90193 20957,97420 86635,21-09-2016 10:06:30
+90197 69887,97424 53609,21-09-2016 10:10:26
+98440 65896,78295 65598,21-09-2016 10:11:57
+94488 97308,97391 99665,21-09-2016 10:12:04
+97416 29480,94489 72078,21-09-2016 10:16:35
+98442 33257,95262 44233,21-09-2016 10:17:46
+90198 03659,97403 09983,21-09-2016 10:27:06
+97412 66065,94006 62384,21-09-2016 10:31:59
+78299 99223,92424 51984,21-09-2016 10:38:09
+81515 65055,78295 48262,21-09-2016 10:38:25
+90357 17994,93420 59147,21-09-2016 10:39:36
+93418 41992,97385 35042,21-09-2016 10:40:14
+92411 96415,78993 92058,21-09-2016 10:41:06
+90366 69257,90082 61126,21-09-2016 10:43:18
+99001 95783,89076 36757,21-09-2016 10:47:03
+97403 09983,90198 03659,21-09-2016 10:50:20
+90197 24124,99612 41256,21-09-2016 10:53:17
+83019 53227,98446 66723,21-09-2016 10:57:04
+90084 16988,98449 60656,21-09-2016 11:00:17
+97393 04671,98444 42212,21-09-2016 11:06:49
+95262 44233,98442 33257,21-09-2016 11:14:16
+98451 87493,97424 21092,21-09-2016 11:21:27
+97416 29480,94489 72078,21-09-2016 11:22:57
+95264 40233,98440 68457,21-09-2016 11:24:19
+89076 36757,99001 95783,21-09-2016 11:28:34
+78295 48262,70121 27677,21-09-2016 11:31:40
+90362 07317,92413 38675,21-09-2016 11:33:13
+87146 31956,83019 39880,21-09-2016 11:33:43
+97391 99665,90368 72970,21-09-2016 11:36:26
+81525 12041,99610 89720,21-09-2016 11:44:36
+97390 23922,90359 52497,21-09-2016 11:46:36
+93415 21881,98454 90038,21-09-2016 11:48:59
+98449 60656,90084 16988,21-09-2016 11:51:52
+90082 61126,90366 69257,21-09-2016 11:53:26
+97406 74488,92411 96415,21-09-2016 11:53:51
+97393 04671,98444 42212,21-09-2016 11:54:03
+97425 12708,90366 36573,21-09-2016 11:54:08
+94497 77615,81517 73746,21-09-2016 12:03:24
+97424 60171,94486 40312,21-09-2016 12:03:43
+83012 37742,70121 27677,21-09-2016 12:05:55
+98446 78140,98440 65896,21-09-2016 12:07:32
+98449 60656,97414 62784,21-09-2016 12:10:30
+97386 20071,94499 20763,21-09-2016 12:14:00
+94499 38099,90365 51029,21-09-2016 12:19:16
+98452 19037,90355 94399,21-09-2016 12:21:57
+90362 07317,92413 38675,21-09-2016 12:22:08
+94489 72078,97416 29480,21-09-2016 12:33:29
+92428 82401,97385 29751,21-09-2016 12:46:01
+90087 42537,94497 44333,21-09-2016 12:47:46
+94491 05266,94495 34273,21-09-2016 12:51:40
+93418 82576,94489 95536,21-09-2016 12:52:42
+92413 38675,90362 07317,21-09-2016 12:57:30
+78993 92058,92411 96415,21-09-2016 13:05:48
+94499 20763,90354 08732,21-09-2016 13:06:59
+81515 65055,78295 48262,21-09-2016 13:10:34
+84314 16122,94499 20763,21-09-2016 13:10:53
+97420 86635,90193 20957,21-09-2016 13:10:56
+97419 41164,94487 29969,21-09-2016 13:11:15
+77950 18278,89078 69605,21-09-2016 13:17:20
+90359 79636,84311 10322,21-09-2016 13:18:31
+97380 60551,90365 51029,21-09-2016 13:19:32
+93423 23000,78133 10302,21-09-2016 13:20:06
+70121 27677,90359 79636,21-09-2016 13:22:11
+98446 78140,98440 65896,21-09-2016 13:33:57
+70121 27677,83012 37742,21-09-2016 13:35:57
+81524 55552,90355 10919,21-09-2016 13:39:25
+97426 75324,78138 56841,21-09-2016 13:43:04
+97393 04671,98444 42212,21-09-2016 13:45:50
+97416 17124,90194 00845,21-09-2016 13:53:31
+94488 97308,97391 99665,21-09-2016 13:53:57
+97395 95120,94490 65627,21-09-2016 14:01:38
+94497 44333,90087 42537,21-09-2016 14:02:38
+81519 62015,99009 32475,21-09-2016 14:02:58
+97424 21092,90351 35947,21-09-2016 14:04:31
+92428 82401,97385 29751,21-09-2016 14:05:09
+78136 65840,74066 93594,21-09-2016 14:05:55
+74060 75431,92413 79027,21-09-2016 14:07:33
+97399 92703,78136 42599,21-09-2016 14:17:23
+98440 65896,78295 65598,21-09-2016 14:23:25
+94499 20763,90354 08732,21-09-2016 14:24:38
+97411 71155,98443 99204,21-09-2016 14:25:54
+92413 79027,74060 75431,21-09-2016 14:30:31
+93432 65750,92425 27794,21-09-2016 14:31:31
+94480 31371,97426 25297,21-09-2016 14:35:52
+97393 04671,98444 42212,21-09-2016 14:40:17
+98458 13389,93423 23000,21-09-2016 14:42:24
+94490 65627,97395 95120,21-09-2016 14:44:32
+81525 78007,93418 41992,21-09-2016 14:48:33
+98445 42844,99617 74886,21-09-2016 14:50:55
+96566 40412,90352 50054,21-09-2016 14:51:47
+90351 35947,97424 21092,21-09-2016 14:54:05
+90365 51029,94499 38099,21-09-2016 14:58:14
+97386 37259,78290 31269,21-09-2016 15:00:11
+90362 07317,92413 38675,21-09-2016 15:03:43
+94492 23068,90359 91512,21-09-2016 15:20:18
+94499 20763,93412 66159,21-09-2016 15:25:43
+98451 87493,97424 21092,21-09-2016 15:25:45
+99617 74886,98445 42844,21-09-2016 15:29:43
+93436 09781,98448 72117,21-09-2016 15:30:02
+90355 94399,98452 19037,21-09-2016 15:30:14
+81524 55552,97380 60551,21-09-2016 15:41:18
+78295 48262,81515 65055,21-09-2016 15:46:22
+97424 53609,97385 70012,21-09-2016 15:49:49
+90357 17994,93420 59147,21-09-2016 15:56:01
+98444 95768,99003 47921,21-09-2016 16:01:30
+98448 72117,93436 09781,21-09-2016 16:04:21
+97391 99665,94488 97308,21-09-2016 16:13:23
+78138 56841,97426 75324,21-09-2016 16:14:25
+94491 55790,90359 99240,21-09-2016 16:25:09
+78295 60375,83015 22251,21-09-2016 16:25:56
+94489 95536,93418 82576,21-09-2016 16:30:22
+90365 51029,97380 60551,21-09-2016 16:32:40
+97380 60551,97414 35000,21-09-2016 16:33:43
+92411 96415,78993 92058,21-09-2016 16:36:17
+92428 82401,97385 29751,21-09-2016 16:49:18
+90192 87313,78139 24512,21-09-2016 16:51:04
+90366 36573,97425 12708,21-09-2016 16:59:18
+94499 20763,84314 16122,21-09-2016 17:09:03
+93422 47940,94488 97308,21-09-2016 17:11:15
+90356 11723,81525 12041,21-09-2016 17:13:14
+97385 70012,94497 44333,21-09-2016 17:15:09
+87146 31956,83019 39880,21-09-2016 17:20:22
+98447 12671,93427 56500,21-09-2016 17:27:13
+97424 53609,97385 70012,21-09-2016 17:27:14
+93420 59147,90357 17994,21-09-2016 17:29:05
+93410 98013,98441 32533,21-09-2016 17:29:29
+93421 63491,92414 22596,21-09-2016 17:41:44
+98446 66723,97422 22278,21-09-2016 17:44:40
+90362 07317,92413 38675,21-09-2016 17:52:53
+90368 72970,97391 99665,21-09-2016 17:54:09
+92411 96415,78993 92058,21-09-2016 17:56:25
+93418 82576,94489 95536,21-09-2016 18:02:49
+94489 72078,97416 29480,21-09-2016 18:03:58
+98458 13389,93423 23000,21-09-2016 18:15:25
+97426 75324,78138 56841,21-09-2016 18:15:54
+78133 71458,70127 59322,21-09-2016 18:16:43
+98446 78140,98444 72482,21-09-2016 18:22:46
+99001 95783,78298 02848,21-09-2016 18:27:10
+90359 52497,97390 23922,21-09-2016 18:28:07
+78295 78750,97449 50000,21-09-2016 18:28:28
+83015 22251,78295 60375,21-09-2016 18:30:48
+93421 63491,92414 22596,21-09-2016 18:38:46
+90084 16988,98449 60656,21-09-2016 18:41:10
+97421 07528,90083 59148,21-09-2016 18:47:05
+96566 40412,90352 50054,21-09-2016 18:54:59
+90197 69887,97424 53609,21-09-2016 18:58:58
+97403 49292,98445 33687,21-09-2016 19:12:23
+97391 99665,94488 97308,21-09-2016 19:15:42
+98454 07778,93412 66159,21-09-2016 19:17:44
+94006 62384,99616 15114,21-09-2016 19:34:31
+93410 56456,98453 86521,21-09-2016 19:41:33
+81525 78007,93418 41992,21-09-2016 19:43:55
+93423 23000,98458 13389,21-09-2016 19:46:59
+98444 95768,99003 47921,21-09-2016 19:51:13
+97385 29751,92428 82401,21-09-2016 20:01:04
+98454 07778,93412 66159,21-09-2016 20:03:07
+97424 21092,90351 35947,21-09-2016 20:03:25
+84314 00609,99007 06998,21-09-2016 20:20:21
+93423 23000,98458 13389,21-09-2016 20:21:51
+97425 92186,94482 95223,21-09-2016 20:22:08
+87149 57915,92428 82401,21-09-2016 20:24:01
+78138 56841,99009 32475,21-09-2016 20:25:28
+87146 31956,83019 39880,21-09-2016 20:39:31
+98454 90038,90359 52497,21-09-2016 20:39:31
+97395 95120,94490 65627,21-09-2016 20:40:52
+93420 59147,90357 17994,21-09-2016 20:43:00
+90355 94399,97391 99665,21-09-2016 20:46:21
+70129 62374,98441 32533,21-09-2016 20:50:15
+98447 12671,93427 56500,21-09-2016 20:54:52
+90084 16988,93422 47940,21-09-2016 20:58:58
+97403 49292,98445 33687,21-09-2016 21:03:24
+98444 72482,98446 78140,21-09-2016 21:09:00
+92424 51984,78299 99223,21-09-2016 21:09:01
+90083 59148,97421 07528,21-09-2016 21:13:48
+98440 02823,81515 42171,21-09-2016 21:18:35
+90351 35947,97424 21092,21-09-2016 21:19:16
+94487 29969,97419 41164,21-09-2016 21:20:09
+90192 87313,78139 24512,21-09-2016 21:24:05
+90084 16988,98449 60656,21-09-2016 21:30:59
+98454 07778,97421 07528,21-09-2016 21:32:44
+78295 48262,70121 27677,21-09-2016 21:37:54
+99617 74886,98445 42844,21-09-2016 21:38:55
+84314 16122,94499 20763,21-09-2016 21:42:50
+78130 00821,98453 94494,21-09-2016 21:48:56
+94499 20763,90354 08732,21-09-2016 21:54:35
+97414 15280,90199 91061,21-09-2016 21:56:00
+95264 40233,98440 68457,21-09-2016 22:02:46
+98442 33257,95262 44233,21-09-2016 22:04:08
+98453 86521,93410 56456,21-09-2016 22:08:16
+92415 91418,94489 72078,21-09-2016 22:12:59
+78138 56841,99009 32475,21-09-2016 22:13:06
+97391 99665,94488 97308,21-09-2016 22:13:19
+98446 78140,98440 65896,21-09-2016 22:21:13
+92411 96415,78993 92058,21-09-2016 22:29:47
+94490 65627,97395 95120,21-09-2016 22:34:22
+97390 23922,90359 52497,21-09-2016 22:36:05
+94487 29969,97419 41164,21-09-2016 22:49:35
+97385 35042,93418 41992,21-09-2016 22:52:58
+93423 23000,78133 10302,21-09-2016 22:54:59
+81517 73746,94497 77615,21-09-2016 22:55:57
+94499 38099,90365 51029,21-09-2016 23:03:01
+98440 65896,98446 78140,21-09-2016 23:03:52
+90194 08626,98444 95768,21-09-2016 23:04:49
+90359 91512,94489 95536,21-09-2016 23:05:35
+93410 56456,98453 86521,21-09-2016 23:07:47
+97446 95253,97428 35959,21-09-2016 23:08:04
+90083 59148,97421 07528,21-09-2016 23:17:26
+97419 41164,94487 29969,21-09-2016 23:35:41
+93415 21881,98454 90038,21-09-2016 23:37:43
+93436 09781,98448 72117,21-09-2016 23:41:51
+94497 44333,97385 70012,21-09-2016 23:41:57
+90366 36573,97425 12708,21-09-2016 23:43:57
+97449 50000,78295 78750,21-09-2016 23:45:22
+94497 44333,90087 42537,21-09-2016 23:47:19
+94489 72078,97416 29480,21-09-2016 23:48:41
+97426 75324,78138 56841,21-09-2016 23:50:17
+99001 85033,74066 93594,21-09-2016 23:53:14
+90083 59148,97421 07528,21-09-2016 23:57:12
+94499 20763,84314 16122,21-09-2016 23:57:18
+99617 74886,98445 42844,21-09-2016 23:58:01
+81525 12041,90356 11723,21-09-2016 23:58:21
+70129 62374,98441 32533,22-09-2016 06:00:00
+78290 30467,87141 73076,22-09-2016 06:00:36
+93422 47940,90084 16988,22-09-2016 06:03:23
+90359 79636,84311 10322,22-09-2016 06:12:39
+93412 66159,94499 20763,22-09-2016 06:14:14
+95269 20533,97449 50000,22-09-2016 06:16:59
+78290 30467,87141 73076,22-09-2016 06:31:33
+94480 64700,90088 09624,22-09-2016 06:35:52
+93410 98013,78295 60375,22-09-2016 06:37:11
+90366 69257,90082 61126,22-09-2016 06:49:24
+93428 11808,96565 52272,22-09-2016 06:53:31
+94499 20763,97386 20071,22-09-2016 06:56:16
+97393 04671,97415 99182,22-09-2016 06:56:29
+97403 09983,90198 03659,22-09-2016 06:57:57
+92424 51984,78299 99223,22-09-2016 06:58:19
+94491 55790,90359 99240,22-09-2016 07:03:58
+97421 07528,90083 59148,22-09-2016 07:07:32
+92415 91418,94489 72078,22-09-2016 07:08:00
+90357 17994,93420 59147,22-09-2016 07:08:13
+78295 48262,81515 65055,22-09-2016 07:09:07
+97424 60171,94486 40312,22-09-2016 07:10:50
+74060 75431,92413 79027,22-09-2016 07:13:05
+93418 41992,97385 35042,22-09-2016 07:13:11
+97395 95120,94490 65627,22-09-2016 07:16:05
+81513 30231,90365 06212,22-09-2016 07:23:02
+90088 09624,94480 64700,22-09-2016 07:23:42
+98453 86521,93410 56456,22-09-2016 07:25:16
+93418 41992,81525 78007,22-09-2016 07:28:04
+87140 67779,89072 39789,22-09-2016 07:32:53
+84314 16122,94499 20763,22-09-2016 07:40:40
+90084 16988,93422 47940,22-09-2016 07:41:58
+92428 82401,97385 29751,22-09-2016 07:49:48
+98454 07778,93412 66159,22-09-2016 07:53:06
+98446 78140,98440 65896,22-09-2016 07:57:13
+83015 22251,78295 60375,22-09-2016 07:59:15
+70121 27677,83012 37742,22-09-2016 08:02:09
+99617 74886,98445 42844,22-09-2016 08:04:01
+87141 73076,78290 30467,22-09-2016 08:04:43
+78299 99223,92424 51984,22-09-2016 08:09:43
+94491 55790,90359 99240,22-09-2016 08:13:45
+97415 99182,97393 04671,22-09-2016 08:14:06
+98446 66723,97422 22278,22-09-2016 08:18:29
+94489 95536,93418 82576,22-09-2016 08:19:24
+90357 17994,93420 59147,22-09-2016 08:19:48
+97424 60171,94486 40312,22-09-2016 08:28:03
+90359 79636,70121 27677,22-09-2016 08:28:20
+98444 42212,97393 04671,22-09-2016 08:28:44
+77950 18278,89078 69605,22-09-2016 08:28:54
+93423 23000,78133 10302,22-09-2016 08:36:48
+98454 07778,97421 07528,22-09-2016 08:37:50
+97412 66065,94006 62384,22-09-2016 08:39:11
+94485 80091,84312 48999,22-09-2016 08:42:33
+81519 62015,99009 32475,22-09-2016 08:45:40
+98451 87493,97424 21092,22-09-2016 08:49:32
+98453 46196,94005 06213,22-09-2016 08:51:48
+92415 91418,94489 72078,22-09-2016 08:52:01
+99003 47921,98444 95768,22-09-2016 08:56:52
+90359 52497,97390 23922,22-09-2016 08:58:30
+97399 92703,78136 42599,22-09-2016 08:58:44
+97391 99665,90368 72970,22-09-2016 09:00:39
+97390 23922,90359 52497,22-09-2016 09:01:14
+94490 65627,97395 95120,22-09-2016 09:06:15
+84314 16122,94499 20763,22-09-2016 09:13:50
+94492 23068,90359 91512,22-09-2016 09:18:02
+97421 07528,90083 59148,22-09-2016 09:20:33
+98448 72117,93436 09781,22-09-2016 09:33:02
+93423 23000,78133 10302,22-09-2016 09:33:29
+97403 09983,97406 06245,22-09-2016 09:33:40
+94005 06213,98453 46196,22-09-2016 09:34:43
+78295 65598,84313 45689,22-09-2016 09:37:54
+98454 90038,74066 31484,22-09-2016 09:39:46
+95262 44233,98442 33257,22-09-2016 09:45:58
+92413 79027,74060 75431,22-09-2016 09:47:53
+78132 18081,98443 72004,22-09-2016 09:48:32
+98446 66723,83019 53227,22-09-2016 09:50:13
+93418 41992,81525 78007,22-09-2016 09:55:01
+97421 07528,90083 59148,22-09-2016 09:59:44
+94488 97308,97391 99665,22-09-2016 10:04:15
+90087 42537,94497 44333,22-09-2016 10:09:38
+97421 07528,97399 92703,22-09-2016 10:13:45
+90197 24124,99612 41256,22-09-2016 10:13:45
+98452 19037,90355 94399,22-09-2016 10:15:04
+99610 89720,90197 69887,22-09-2016 10:22:32
+90365 51029,94499 38099,22-09-2016 10:23:25
+97414 15280,90199 91061,22-09-2016 10:25:33
+93422 47940,90084 16988,22-09-2016 10:34:39
+90366 36573,97425 12708,22-09-2016 10:42:15
+93423 23000,78133 10302,22-09-2016 10:44:15
+97395 95120,94490 65627,22-09-2016 10:44:59
+78299 99223,92424 51984,22-09-2016 10:48:11
+94489 72078,97416 29480,22-09-2016 10:49:45
+97419 41164,94487 29969,22-09-2016 10:52:09
+98445 33687,97403 49292,22-09-2016 10:57:33
+92411 96415,93435 21961,22-09-2016 11:06:43
+90199 91061,97414 15280,22-09-2016 11:08:54
+78138 56841,97426 75324,22-09-2016 11:12:57
+90352 50054,96566 40412,22-09-2016 11:21:56
+90359 99240,78138 93826,22-09-2016 11:25:18
+94499 20763,93412 66159,22-09-2016 11:27:14
+98454 90038,90359 52497,22-09-2016 11:28:12
+94487 29969,97419 41164,22-09-2016 11:29:10
+70121 27677,78295 48262,22-09-2016 11:35:49
+97414 15280,90199 91061,22-09-2016 11:43:37
+93436 09781,98448 72117,22-09-2016 11:47:10
+98453 46196,94005 06213,22-09-2016 11:47:29
+99001 95783,78298 02848,22-09-2016 11:51:08
+94499 38099,90365 51029,22-09-2016 11:58:38
+98441 32533,93410 98013,22-09-2016 12:00:57
+90366 36573,97425 12708,22-09-2016 12:05:27
+98448 72117,93436 09781,22-09-2016 12:08:55
+98453 86521,93410 56456,22-09-2016 12:12:21
+97416 17124,90194 00845,22-09-2016 12:22:01
+97424 53609,90197 69887,22-09-2016 12:24:31
+97386 37259,78290 31269,22-09-2016 12:33:35
+90351 35947,97424 21092,22-09-2016 12:41:54
+97380 60551,78298 91466,22-09-2016 12:42:40
+97385 35042,93418 41992,22-09-2016 12:42:44
+84311 10322,90359 79636,22-09-2016 12:44:00
+94491 05266,94495 34273,22-09-2016 12:44:03
+74060 75431,97390 23922,22-09-2016 12:44:46
+92424 51984,78299 99223,22-09-2016 12:48:22
+99009 32475,78138 56841,22-09-2016 12:51:57
+90197 24124,99612 41256,22-09-2016 13:03:48
+81515 42171,98440 02823,22-09-2016 13:13:57
+78295 60375,93410 98013,22-09-2016 13:16:18
+94491 05266,94495 34273,22-09-2016 13:16:32
+78290 30467,87141 73076,22-09-2016 13:24:42
+92424 51984,78299 99223,22-09-2016 13:25:53
+98444 42212,97393 04671,22-09-2016 13:30:31
+98453 86521,93410 56456,22-09-2016 13:30:49
+93421 63491,92414 22596,22-09-2016 13:36:03
+97421 07528,90083 59148,22-09-2016 13:37:56
+94480 31371,97426 25297,22-09-2016 13:38:29
+97424 53609,97385 70012,22-09-2016 13:40:38
+81524 55552,97380 60551,22-09-2016 13:40:47
+78138 56841,97426 75324,22-09-2016 13:42:44
+90361 52679,90359 91512,22-09-2016 13:44:34
+83019 39880,87146 31956,22-09-2016 13:45:20
+93427 56500,98447 12671,22-09-2016 13:46:54
+90194 00845,97416 17124,22-09-2016 13:49:27
+78295 65598,98440 65896,22-09-2016 13:50:21
+97449 50000,78295 78750,22-09-2016 13:54:19
+70121 27677,78295 48262,22-09-2016 13:54:25
+92415 91418,94489 72078,22-09-2016 13:55:50
+70121 27677,90359 79636,22-09-2016 13:58:47
+78136 42599,97399 92703,22-09-2016 13:59:28
+92411 96415,97406 74488,22-09-2016 14:05:52
+98446 66723,97422 22278,22-09-2016 14:05:53
+98441 32533,93410 98013,22-09-2016 14:11:53
+93423 23000,78133 10302,22-09-2016 14:14:21
+97424 21092,90351 35947,22-09-2016 14:14:56
+98440 68457,95264 40233,22-09-2016 14:17:51
+84312 48999,94485 80091,22-09-2016 14:24:38
+81524 55552,90355 10919,22-09-2016 14:39:26
+98453 86521,93410 56456,22-09-2016 14:42:45
+98458 13389,93423 23000,22-09-2016 14:43:04
+97424 21092,98451 87493,22-09-2016 14:51:12
+92411 96415,78993 92058,22-09-2016 14:57:01
+93422 47940,90084 16988,22-09-2016 15:06:45
+98453 86521,93410 56456,22-09-2016 15:06:51
+94480 64700,90088 09624,22-09-2016 15:08:46
+84311 10322,90359 79636,22-09-2016 15:11:08
+98440 65896,93418 41992,22-09-2016 15:13:10
+99616 15114,94006 62384,22-09-2016 15:15:42
+78138 56841,97426 75324,22-09-2016 15:16:38
+78295 65598,84313 45689,22-09-2016 15:18:30
+90359 79636,99001 23133,22-09-2016 15:22:29
+90084 16988,93422 47940,22-09-2016 15:25:04
+90359 52497,97390 23922,22-09-2016 15:29:09
+97385 29751,92428 82401,22-09-2016 15:32:57
+74066 93594,78136 65840,22-09-2016 15:34:41
+98441 32533,70129 62374,22-09-2016 15:35:28
+78138 56841,97426 75324,22-09-2016 15:43:23
+94489 72078,92415 91418,22-09-2016 15:44:11
+94485 80091,84312 48999,22-09-2016 15:44:11
+97419 41164,94487 29969,22-09-2016 15:44:50
+94006 62384,99616 15114,22-09-2016 15:47:16
+78132 18081,98443 72004,22-09-2016 15:50:27
+90198 03659,97403 09983,22-09-2016 15:52:13
+98454 07778,93412 66159,22-09-2016 15:54:34
+93434 31551,90088 09624,22-09-2016 15:55:54
+98444 42212,97393 04671,22-09-2016 15:57:16
+78136 42599,97399 92703,22-09-2016 15:57:39
+81515 65055,78295 48262,22-09-2016 15:58:08
+97380 60551,78298 91466,22-09-2016 16:03:06
+78295 48262,81515 65055,22-09-2016 16:05:41
+84314 00609,99007 06998,22-09-2016 16:06:13
+81525 78007,93418 41992,22-09-2016 16:08:57
+97404 63904,97447 92655,22-09-2016 16:11:25
+98442 33257,95262 44233,22-09-2016 16:17:55
+93421 63491,92414 22596,22-09-2016 16:26:06
+92411 96415,77956 90632,22-09-2016 16:26:18
+94492 23068,90359 91512,22-09-2016 16:34:42
+97421 07528,90083 59148,22-09-2016 16:36:36
+90197 69887,97424 53609,22-09-2016 16:40:44
+78298 91466,97380 60551,22-09-2016 16:45:21
+97421 07528,90083 59148,22-09-2016 16:56:11
+78136 65840,74066 93594,22-09-2016 16:56:17
+97391 99665,90355 94399,22-09-2016 16:58:17
+97428 35959,97446 95253,22-09-2016 17:03:56
+94492 23068,94489 95536,22-09-2016 17:08:48
+77950 18278,89078 69605,22-09-2016 17:14:17
+98453 46196,94005 06213,22-09-2016 17:15:30
+97406 74488,90358 98099,22-09-2016 17:16:12
+90359 99240,78138 93826,22-09-2016 17:21:19
+92411 96415,97406 74488,22-09-2016 17:23:47
+90358 98099,97406 74488,22-09-2016 17:32:02
+93428 11808,96565 52272,22-09-2016 17:33:51
+97414 15280,90199 91061,22-09-2016 17:35:27
+78295 65598,84313 45689,22-09-2016 17:37:53
+98449 60656,90084 16988,22-09-2016 17:41:44
+99616 15114,94006 62384,22-09-2016 17:41:51
+94499 20763,93412 66159,22-09-2016 17:47:11
+93420 59147,90357 17994,22-09-2016 17:47:25
+84314 16122,94499 20763,22-09-2016 17:47:47
+84314 16122,94499 20763,22-09-2016 17:50:07
+81515 42171,98440 02823,22-09-2016 17:50:24
+90355 94399,98452 19037,22-09-2016 17:51:06
+98440 68457,95264 40233,22-09-2016 17:56:44
+78299 99223,92424 51984,22-09-2016 18:02:54
+97406 74488,92411 96415,22-09-2016 18:06:55
+98445 42844,99617 74886,22-09-2016 18:06:56
+98440 65896,98446 78140,22-09-2016 18:08:35
+95262 44233,98442 33257,22-09-2016 18:09:23
+92421 64236,81520 43406,22-09-2016 18:09:38
+97395 95120,94490 65627,22-09-2016 18:14:26
+97403 09983,90198 03659,22-09-2016 18:17:20
+97428 35959,97446 95253,22-09-2016 18:22:32
+78132 18081,98443 72004,22-09-2016 18:23:31
+94495 34273,94491 05266,22-09-2016 18:27:50
+94489 72078,97416 29480,22-09-2016 18:29:23
+90359 99240,94491 55790,22-09-2016 18:33:03
+90365 51029,97380 60551,22-09-2016 18:35:18
+93421 63491,92414 22596,22-09-2016 18:43:17
+94001 07403,90368 72970,22-09-2016 18:46:42
+93416 07259,78132 18081,22-09-2016 18:51:02
+97424 21092,98451 87493,22-09-2016 18:56:48
+99617 74886,98445 42844,22-09-2016 18:57:01
+95269 20533,97449 50000,22-09-2016 18:58:16
+92411 96415,78993 92058,22-09-2016 19:00:53
+94492 23068,90359 91512,22-09-2016 19:06:28
+99003 47921,98444 95768,22-09-2016 19:08:11
+93421 63491,92414 22596,22-09-2016 19:13:05
+87146 31956,83019 39880,22-09-2016 19:19:02
+98458 13389,93423 23000,22-09-2016 19:19:25
+95269 20533,97449 50000,22-09-2016 19:20:27
+99003 88572,99006 60463,22-09-2016 19:21:34
+94488 97308,97391 99665,22-09-2016 19:26:02
+87141 37314,93435 31225,22-09-2016 19:30:24
+93436 09781,98448 72117,22-09-2016 19:32:26
+90352 50054,96566 40412,22-09-2016 19:34:21
+99003 47921,98444 95768,22-09-2016 19:35:51
+99001 23133,90359 79636,22-09-2016 19:58:41
+92428 82401,97385 29751,22-09-2016 20:03:22
+97380 60551,90365 51029,22-09-2016 20:11:49
+93434 31551,90088 09624,22-09-2016 20:12:33
+98449 60656,97414 62784,22-09-2016 20:15:55
+99004 86250,97390 23922,22-09-2016 20:21:23
+90351 35947,97424 21092,22-09-2016 20:24:15
+90197 24124,99612 41256,22-09-2016 20:29:18
+97424 60171,94486 40312,22-09-2016 20:32:04
+93436 09781,98448 72117,22-09-2016 20:36:31
+93418 41992,97385 35042,22-09-2016 20:37:25
+90359 79636,70121 27677,22-09-2016 20:41:35
+93410 56456,98453 86521,22-09-2016 20:46:45
+95269 20533,97449 50000,22-09-2016 20:50:15
+89078 69605,77950 18278,22-09-2016 20:52:58
+92421 64236,81520 43406,22-09-2016 20:55:08
+94491 55790,90359 99240,22-09-2016 21:00:00
+92424 51984,78299 99223,22-09-2016 21:00:41
+93435 31225,87141 37314,22-09-2016 21:01:52
+93418 41992,81525 78007,22-09-2016 21:04:51
+94486 40312,97424 60171,22-09-2016 21:05:08
+97425 12708,90366 36573,22-09-2016 21:05:40
+90357 17994,93420 59147,22-09-2016 21:07:24
+99003 47921,98444 95768,22-09-2016 21:09:45
+94489 95536,93418 82576,22-09-2016 21:11:17
+83019 53227,98446 66723,22-09-2016 21:12:08
+93422 47940,90084 16988,22-09-2016 21:16:56
+97393 04671,98444 42212,22-09-2016 21:21:15
+78133 10302,93423 23000,22-09-2016 21:25:43
+94489 72078,97416 29480,22-09-2016 21:39:06
+89076 36757,92421 09526,22-09-2016 21:42:53
+89078 69605,77950 18278,22-09-2016 21:50:18
+78295 60375,83015 22251,22-09-2016 21:51:26
+97390 23922,90359 52497,22-09-2016 21:52:00
+78299 99223,92424 51984,22-09-2016 21:52:38
+97385 35042,93418 41992,22-09-2016 22:01:55
+95262 44233,98442 33257,22-09-2016 22:02:06
+97424 21092,98451 87493,22-09-2016 22:07:52
+90199 91061,97414 15280,22-09-2016 22:12:17
+98440 02823,81515 42171,22-09-2016 22:12:19
+90365 51029,94499 38099,22-09-2016 22:18:08
+97426 75324,78138 56841,22-09-2016 22:20:56
+94497 77615,81517 73746,22-09-2016 22:21:16
+90359 91512,90361 52679,22-09-2016 22:22:03
+89076 36757,99001 95783,22-09-2016 22:22:33
+92424 51984,78299 99223,22-09-2016 22:28:52
+93427 56500,98447 12671,22-09-2016 22:30:13
+97406 74488,90358 98099,22-09-2016 22:33:40
+97414 15280,90199 91061,22-09-2016 22:43:29
+90361 52679,90359 91512,22-09-2016 22:46:08
+84311 10322,90359 79636,22-09-2016 22:46:22
+90084 16988,98449 60656,22-09-2016 22:51:20
+90197 69887,99610 89720,22-09-2016 22:54:46
+96565 52272,93428 11808,22-09-2016 23:00:15
+78295 65598,84313 45689,22-09-2016 23:01:53
+98458 13389,93423 23000,22-09-2016 23:02:03
+97421 07528,98454 07778,22-09-2016 23:02:59
+98449 60656,97414 62784,22-09-2016 23:04:18
+97385 70012,97424 53609,22-09-2016 23:04:44
+97406 74488,90358 98099,22-09-2016 23:05:22
+93421 63491,92414 22596,22-09-2016 23:13:36
+93435 21961,92411 96415,22-09-2016 23:15:29
+94005 06213,98453 46196,22-09-2016 23:19:42
+74294 40351,98440 02823,22-09-2016 23:28:25
+89078 69605,77950 18278,22-09-2016 23:32:34
+83019 53227,98446 66723,22-09-2016 23:35:55
+87141 73076,78290 30467,22-09-2016 23:38:17
+94489 95536,94492 23068,23-09-2016 06:02:21
+81522 26166,97380 86781,23-09-2016 06:04:13
+93434 31551,90088 09624,23-09-2016 06:08:42
+78295 60375,93410 98013,23-09-2016 06:19:07
+98447 12671,93427 56500,23-09-2016 06:23:25
+98446 78140,98440 65896,23-09-2016 06:24:30
+97385 70012,94497 44333,23-09-2016 06:27:17
+97419 41164,94487 29969,23-09-2016 06:32:24
+90083 59148,97421 07528,23-09-2016 06:34:35
+74060 75431,92413 79027,23-09-2016 06:44:54
+78132 18081,98443 72004,23-09-2016 06:45:16
+95269 20533,97449 50000,23-09-2016 06:48:41
+90351 35947,97424 21092,23-09-2016 06:49:40
+78295 60375,93410 98013,23-09-2016 06:56:48
+97406 93118,98453 46196,23-09-2016 06:59:28
+93423 23000,98458 13389,23-09-2016 07:14:56
+90361 52679,90359 91512,23-09-2016 07:20:39
+98444 95768,99003 47921,23-09-2016 07:23:10
+94489 72078,97416 29480,23-09-2016 07:23:17
+87146 31956,83019 39880,23-09-2016 07:27:06
+98448 87878,90366 36573,23-09-2016 07:29:21
+97424 53609,90197 69887,23-09-2016 07:31:05
+94001 07403,90368 72970,23-09-2016 07:41:48
+93436 09781,98448 72117,23-09-2016 07:45:50
+97403 09983,90198 03659,23-09-2016 07:46:31
+81515 65055,78295 48262,23-09-2016 07:48:16
+97414 62784,98449 60656,23-09-2016 07:51:41
+94491 55790,90359 99240,23-09-2016 07:53:29
+93421 63491,92414 22596,23-09-2016 07:54:57
+90359 52497,97390 23922,23-09-2016 07:57:38
+98452 19037,90355 94399,23-09-2016 08:00:27
+90194 08626,98444 95768,23-09-2016 08:04:08
+99610 89720,90197 69887,23-09-2016 08:06:29
+97406 74488,92411 96415,23-09-2016 08:12:42
+93410 98013,78295 60375,23-09-2016 08:14:43
+98444 42212,97393 04671,23-09-2016 08:15:20
+81519 62015,99009 32475,23-09-2016 08:20:47
+90359 91512,94489 95536,23-09-2016 08:22:54
+98446 78140,98440 65896,23-09-2016 08:32:51
+97385 70012,97424 53609,23-09-2016 08:40:44
+94499 20763,93412 66159,23-09-2016 08:46:40
+98449 60656,97414 62784,23-09-2016 08:47:21
+90192 87313,78139 24512,23-09-2016 08:49:07
+97449 50000,95269 20533,23-09-2016 08:50:13
+84314 16122,94499 20763,23-09-2016 08:56:02
+90359 99240,78138 93826,23-09-2016 08:57:47
+90358 98099,97406 74488,23-09-2016 08:59:09
+84313 45689,78295 65598,23-09-2016 08:59:15
+94006 62384,97412 66065,23-09-2016 09:00:34
+78295 48262,70121 27677,23-09-2016 09:01:56
+81525 78007,93418 41992,23-09-2016 09:02:52
+94497 44333,90087 42537,23-09-2016 09:06:28
+97419 41164,94487 29969,23-09-2016 09:17:13
+87141 37314,93435 31225,23-09-2016 09:17:57
+97449 50000,95269 20533,23-09-2016 09:19:20
+92415 91418,94489 72078,23-09-2016 09:20:22
+90197 24124,99612 41256,23-09-2016 09:20:56
+94482 95223,97425 92186,23-09-2016 09:26:54
+78299 99223,92424 51984,23-09-2016 09:34:45
+98448 86633,78293 91304,23-09-2016 09:36:40
+94499 20763,90354 08732,23-09-2016 09:38:43
+78295 65598,84313 45689,23-09-2016 09:40:49
+92424 51984,78299 99223,23-09-2016 09:49:36
+97385 29751,92428 82401,23-09-2016 09:50:31
+97425 92186,94482 95223,23-09-2016 10:12:07
+89078 69605,77950 18278,23-09-2016 10:15:02
+90082 61126,90366 69257,23-09-2016 10:18:31
+90359 79636,70121 27677,23-09-2016 10:23:50
+89078 69605,77950 18278,23-09-2016 10:26:33
+92424 51984,78299 99223,23-09-2016 10:31:50
+90365 51029,97380 60551,23-09-2016 10:44:04
+74066 93594,78136 65840,23-09-2016 11:00:24
+93412 66159,94499 20763,23-09-2016 11:05:44
+74066 93594,78136 65840,23-09-2016 11:06:15
+93422 47940,90084 16988,23-09-2016 11:06:34
+90367 90080,74066 93594,23-09-2016 11:15:09
+97426 75324,78138 56841,23-09-2016 11:30:33
+92411 96415,77956 90632,23-09-2016 11:42:14
+90194 00845,81522 26166,23-09-2016 11:43:57
+98445 42844,99617 74886,23-09-2016 11:44:01
+93420 59147,90357 17994,23-09-2016 11:48:23
+93435 31225,87141 37314,23-09-2016 11:55:12
+97424 53609,90197 69887,23-09-2016 11:57:45
+94499 20763,84314 16122,23-09-2016 11:59:06
+97421 07528,90083 59148,23-09-2016 11:59:51
+94487 29969,97419 41164,23-09-2016 12:04:31
+78295 60375,93410 98013,23-09-2016 12:05:50
+98448 72117,93436 09781,23-09-2016 12:05:52
+93427 56500,98447 12671,23-09-2016 12:08:28
+78133 10302,93423 23000,23-09-2016 12:08:53
+99003 88572,99006 60463,23-09-2016 12:08:59
+97393 04671,97415 99182,23-09-2016 12:09:00
+99001 95783,89076 36757,23-09-2016 12:09:07
+94490 65627,97395 95120,23-09-2016 12:13:31
+90366 69257,90082 61126,23-09-2016 12:13:46
+97422 22278,98446 66723,23-09-2016 12:15:07
+98453 86521,93410 56456,23-09-2016 12:15:21
+98454 90038,74066 31484,23-09-2016 12:18:02
+99003 47921,98444 95768,23-09-2016 12:19:23
+78299 99223,92424 51984,23-09-2016 12:20:34
+90355 94399,97391 99665,23-09-2016 12:34:42
+99003 47921,98444 95768,23-09-2016 12:35:35
+92411 96415,93435 21961,23-09-2016 12:35:39
+94480 31371,97426 25297,23-09-2016 12:36:28
+89076 36757,99001 95783,23-09-2016 12:41:08
+98453 86521,93410 56456,23-09-2016 12:47:11
+98453 86521,93410 56456,23-09-2016 12:47:57
+97447 92655,97404 63904,23-09-2016 12:55:19
+98444 42212,97393 04671,23-09-2016 12:56:06
+97406 74488,90358 98099,23-09-2016 12:58:49
+97425 12708,90366 36573,23-09-2016 13:00:56
+93410 56456,98453 86521,23-09-2016 13:02:32
+93422 47940,90084 16988,23-09-2016 13:03:46
+94482 95223,97425 92186,23-09-2016 13:10:57
+97385 70012,97424 53609,23-09-2016 13:12:10
+97424 22395,90365 06212,23-09-2016 13:16:03
+94499 20763,90354 08732,23-09-2016 13:22:52
+90359 79636,84311 10322,23-09-2016 13:27:22
+92411 96415,97406 74488,23-09-2016 13:30:22
+81520 43406,92421 64236,23-09-2016 13:35:11
+94499 20763,90354 08732,23-09-2016 13:40:09
+90362 07317,92413 38675,23-09-2016 13:40:22
+90351 49472,90199 67471,23-09-2016 13:45:00
+97406 74488,92411 96415,23-09-2016 13:47:43
+78298 02848,99001 95783,23-09-2016 13:49:02
+98454 90038,74066 31484,23-09-2016 13:54:58
+90365 51029,97380 60551,23-09-2016 13:58:41
+99617 74886,98445 42844,23-09-2016 14:03:42
+78138 56841,97426 75324,23-09-2016 14:03:56
+98444 95768,99003 47921,23-09-2016 14:10:11
+93410 98013,78295 60375,23-09-2016 14:13:43
+97385 70012,94497 44333,23-09-2016 14:14:48
+90197 69887,99610 89720,23-09-2016 14:15:43
+97424 53609,97385 70012,23-09-2016 14:18:54
+78133 71458,70127 59322,23-09-2016 14:20:28
+90368 72970,97391 99665,23-09-2016 14:23:17
+99617 74886,98445 42844,23-09-2016 14:27:24
+90355 94399,98452 19037,23-09-2016 14:28:09
+97416 29480,94489 72078,23-09-2016 14:36:00
+90359 52497,97390 23922,23-09-2016 14:37:30
+90199 91061,97414 15280,23-09-2016 14:39:11
+97385 35042,93418 41992,23-09-2016 14:39:16
+98441 32533,70129 62374,23-09-2016 14:40:56
+98453 86521,93410 56456,23-09-2016 14:44:12
+77950 18278,89078 69605,23-09-2016 14:46:43
+92424 51984,78299 99223,23-09-2016 14:47:57
+93418 82576,94489 95536,23-09-2016 15:04:34
+97421 07528,90083 59148,23-09-2016 15:08:08
+90368 72970,97391 99665,23-09-2016 15:09:20
+90354 08732,94499 20763,23-09-2016 15:19:39
+92414 22596,93421 63491,23-09-2016 15:28:55
+83019 39880,87146 31956,23-09-2016 15:32:56
+90366 36573,98448 87878,23-09-2016 15:33:26
+97385 29751,92428 82401,23-09-2016 15:45:01
+93418 82576,94489 95536,23-09-2016 15:46:27
+99003 88572,99006 60463,23-09-2016 15:48:00
+90355 94399,98452 19037,23-09-2016 15:53:06
+92413 38675,90362 07317,23-09-2016 16:00:30
+97386 37259,78290 31269,23-09-2016 16:00:54
+93412 66159,98454 07778,23-09-2016 16:01:32
+97414 62784,98449 60656,23-09-2016 16:02:52
+97391 99665,90368 72970,23-09-2016 16:11:28
+74066 93594,90367 90080,23-09-2016 16:13:30
+92413 79027,74060 75431,23-09-2016 16:16:57
+97416 17124,90194 00845,23-09-2016 16:21:09
+92413 38675,90362 07317,23-09-2016 16:22:33
+90197 69887,97424 53609,23-09-2016 16:38:21
+99612 41256,81526 05544,23-09-2016 16:43:59
+93410 98013,78295 60375,23-09-2016 16:44:01
+78139 24512,90192 87313,23-09-2016 16:53:18
+90198 03659,97403 09983,23-09-2016 16:58:50
+97406 74488,92411 96415,23-09-2016 17:08:11
+98445 42844,99617 74886,23-09-2016 17:09:05
+97420 86635,90193 20957,23-09-2016 17:10:13
+98446 66723,97422 22278,23-09-2016 17:20:13
+97416 29480,94489 72078,23-09-2016 17:22:09
+92411 96415,77956 90632,23-09-2016 17:22:22
+95262 44233,98442 33257,23-09-2016 17:23:26
+81525 12041,90356 11723,23-09-2016 17:26:05
+90359 91512,94492 23068,23-09-2016 17:33:33
+99616 15114,94006 62384,23-09-2016 17:36:47
+94499 20763,84314 16122,23-09-2016 17:38:18
+81515 65055,78295 48262,23-09-2016 17:41:49
+98446 78140,98440 65896,23-09-2016 17:42:31
+92411 96415,97406 74488,23-09-2016 17:49:38
+78295 60375,93410 98013,23-09-2016 17:50:00
+84319 39746,95263 76972,23-09-2016 17:50:27
+92413 79027,74060 75431,23-09-2016 17:51:04
+81519 62015,99009 32475,23-09-2016 17:55:25
+93435 98939,97403 49292,23-09-2016 17:58:34
+93422 47940,90084 16988,23-09-2016 18:00:30
+99610 89720,90197 69887,23-09-2016 18:09:07
+81522 26166,97380 86781,23-09-2016 18:10:11
+99612 41256,81526 05544,23-09-2016 18:12:02
+99617 74886,98445 42844,23-09-2016 18:15:08
+97385 29751,92428 82401,23-09-2016 18:15:59
+93436 09781,98448 72117,23-09-2016 18:16:42
+89076 36757,99001 95783,23-09-2016 18:19:14
+98445 42844,99617 74886,23-09-2016 18:19:25
+98441 32533,93410 98013,23-09-2016 18:24:15
+70121 27677,90359 79636,23-09-2016 18:27:28
+94488 97308,97391 99665,23-09-2016 18:28:49
+97391 99665,90355 94399,23-09-2016 18:30:58
+90192 87313,78139 24512,23-09-2016 18:31:39
+81525 12041,90356 11723,23-09-2016 18:33:37
+94497 77615,81517 73746,23-09-2016 18:40:18
+81515 65055,78295 48262,23-09-2016 18:41:21
+78136 65840,74066 93594,23-09-2016 18:48:14
+90354 08732,94499 20763,23-09-2016 18:53:27
+90087 42537,94497 44333,23-09-2016 18:55:55
+81525 78007,93418 41992,23-09-2016 19:02:16
+81524 55552,97380 60551,23-09-2016 19:03:10
+92421 09526,89076 36757,23-09-2016 19:06:51
+93410 98013,98441 32533,23-09-2016 19:13:54
+92411 96415,97406 74488,23-09-2016 19:16:22
+90363 85738,99610 89720,23-09-2016 19:19:46
+97424 21092,90351 35947,23-09-2016 19:29:12
+95267 70383,97414 62027,23-09-2016 19:31:49
+77950 18278,89078 69605,23-09-2016 19:34:51
+98453 46196,94005 06213,23-09-2016 19:41:48
+93434 31551,90088 09624,23-09-2016 19:42:59
+94480 64700,90088 09624,23-09-2016 19:46:01
+98445 33687,97403 49292,23-09-2016 19:50:47
+90084 16988,93422 47940,23-09-2016 19:51:09
+70121 27677,90359 79636,23-09-2016 20:01:01
+90197 69887,97424 53609,23-09-2016 20:05:50
+97421 07528,90083 59148,23-09-2016 20:07:19
+94006 62384,99616 15114,23-09-2016 20:11:51
+94491 05266,94495 34273,23-09-2016 20:12:02
+94499 20763,97386 20071,23-09-2016 20:17:22
+90084 16988,98449 60656,23-09-2016 20:19:25
+93416 07259,78132 18081,23-09-2016 20:28:11
+81524 55552,97380 60551,23-09-2016 20:30:45
+93435 21961,92411 96415,23-09-2016 20:41:56
+98446 78140,98440 65896,23-09-2016 20:44:28
+97403 09983,97406 06245,23-09-2016 20:46:25
+83012 37742,70121 27677,23-09-2016 20:53:36
+94490 65627,97395 95120,23-09-2016 20:55:20
+95267 70383,97414 62027,23-09-2016 20:58:13
+70129 62374,98441 32533,23-09-2016 21:01:18
+90368 72970,97391 99665,23-09-2016 21:01:20
+90199 91061,97414 15280,23-09-2016 21:01:44
+93435 31225,87141 37314,23-09-2016 21:11:53
+98453 46196,94005 06213,23-09-2016 21:18:59
+94491 05266,94495 34273,23-09-2016 21:21:44
+93435 21961,92411 96415,23-09-2016 21:22:58
+93418 41992,97385 35042,23-09-2016 21:29:25
+90192 87313,78139 24512,23-09-2016 21:29:41
+94497 44333,90087 42537,23-09-2016 21:40:37
+98444 95768,99003 47921,23-09-2016 21:44:54
+94482 95223,97425 92186,23-09-2016 21:45:41
+97416 17124,90194 00845,23-09-2016 21:46:19
+98458 13389,93423 23000,23-09-2016 21:49:02
+90359 52497,97390 23922,23-09-2016 21:54:58
+78136 65840,74066 93594,23-09-2016 22:02:05
+97385 70012,94497 44333,23-09-2016 22:02:09
+78290 31269,97386 37259,23-09-2016 22:02:29
+90356 11723,81525 12041,23-09-2016 22:04:47
+78290 31269,97386 37259,23-09-2016 22:07:36
+97384 69866,87146 31956,23-09-2016 22:07:51
+97380 60551,78298 91466,23-09-2016 22:08:16
+83019 39880,87146 31956,23-09-2016 22:10:17
+89071 31755,78290 99865,23-09-2016 22:16:59
+99003 88572,99006 60463,23-09-2016 22:21:30
+90192 87313,78139 24512,23-09-2016 22:24:09
+78295 60375,83015 22251,23-09-2016 22:25:26
+78295 65598,98440 65896,23-09-2016 22:26:04
+98445 33687,97403 49292,23-09-2016 22:26:27
+74066 93594,78136 65840,23-09-2016 22:28:40
+93420 59147,90357 17994,23-09-2016 22:30:10
+97389 12538,90352 50054,23-09-2016 22:31:37
+90087 42537,94497 44333,23-09-2016 22:34:57
+97447 92655,84319 42810,23-09-2016 22:36:36
+93418 82576,94489 95536,23-09-2016 22:49:58
+97412 66065,94006 62384,23-09-2016 22:53:29
+87149 57915,92428 82401,23-09-2016 22:53:41
+83019 39880,87146 31956,23-09-2016 22:59:49
+94497 44333,97385 70012,23-09-2016 23:19:15
+98446 78140,98444 72482,23-09-2016 23:22:59
+93412 66159,98454 07778,23-09-2016 23:24:24
+97424 60171,94486 40312,23-09-2016 23:24:29
+98453 86521,93410 56456,23-09-2016 23:30:33
+97391 99665,90355 94399,23-09-2016 23:31:32
+97399 92703,78136 42599,23-09-2016 23:33:13
+93421 63491,92414 22596,23-09-2016 23:36:44
+98446 66723,83019 53227,23-09-2016 23:38:34
+81522 26166,90194 00845,23-09-2016 23:38:55
+90359 52497,97390 23922,23-09-2016 23:43:49
+93422 47940,90084 16988,23-09-2016 23:50:10
+87141 73076,78290 30467,23-09-2016 23:53:50
+90359 52497,97390 23922,24-09-2016 06:01:13
+97393 04671,98444 42212,24-09-2016 06:06:47
+78136 42599,97399 92703,24-09-2016 06:09:00
+90359 79636,70121 27677,24-09-2016 06:09:09
+90198 03659,97403 09983,24-09-2016 06:12:08
+90197 69887,99610 89720,24-09-2016 06:16:14
+97380 60551,90365 51029,24-09-2016 06:21:07
+97425 92186,94482 95223,24-09-2016 06:23:38
+97421 07528,90083 59148,24-09-2016 06:24:01
+83019 39880,87146 31956,24-09-2016 06:24:32
+97399 92703,97421 07528,24-09-2016 06:33:47
+97414 62784,98449 60656,24-09-2016 06:35:07
+78138 56841,97426 75324,24-09-2016 06:39:23
+92428 82401,97385 29751,24-09-2016 06:43:27
+98453 46196,94005 06213,24-09-2016 06:46:10
+94480 64700,90088 09624,24-09-2016 06:48:10
+83015 22251,78295 60375,24-09-2016 06:49:13
+87149 57915,92428 82401,24-09-2016 06:55:45
+94485 80091,84312 48999,24-09-2016 06:58:58
+87149 57915,92428 82401,24-09-2016 07:04:19
+90352 50054,97389 12538,24-09-2016 07:08:08
+98458 13389,93423 23000,24-09-2016 07:24:40
+98446 66723,97422 22278,24-09-2016 07:31:40
+97414 62784,98449 60656,24-09-2016 07:40:18
+97399 92703,97421 07528,24-09-2016 07:41:24
+97380 86781,97380 60551,24-09-2016 07:53:15
+94489 95536,94492 23068,24-09-2016 07:58:41
+93420 59147,90357 17994,24-09-2016 08:04:26
+95262 44233,98442 33257,24-09-2016 08:05:40
+90352 50054,97389 12538,24-09-2016 08:06:52
+90194 00845,97416 17124,24-09-2016 08:09:00
+96566 40412,90352 50054,24-09-2016 08:10:20
+97424 53609,97385 70012,24-09-2016 08:13:39
+81520 43406,92421 64236,24-09-2016 08:18:21
+93423 23000,78133 10302,24-09-2016 08:18:46
+93427 56500,98447 12671,24-09-2016 08:20:15
+92424 51984,78299 99223,24-09-2016 08:20:47
+92414 22596,93421 63491,24-09-2016 08:22:39
+92428 82401,97385 29751,24-09-2016 08:25:55
+93418 41992,97385 35042,24-09-2016 08:26:00
+97420 86635,90193 20957,24-09-2016 08:29:12
+81517 73746,94497 77615,24-09-2016 08:29:31
+95262 44233,97393 04671,24-09-2016 08:29:46
+97403 09983,90198 03659,24-09-2016 08:31:43
+98445 33687,97403 49292,24-09-2016 08:33:17
+97406 74488,92411 96415,24-09-2016 08:34:24
+97424 21092,98451 87493,24-09-2016 08:34:37
+98451 87493,97424 21092,24-09-2016 08:38:44
+81517 73746,94497 77615,24-09-2016 08:45:01
+96566 40412,90352 50054,24-09-2016 08:53:57
+97380 60551,90365 51029,24-09-2016 08:54:08
+97406 74488,90358 98099,24-09-2016 08:58:06
+84314 00609,99007 06998,24-09-2016 09:01:58
+98440 65896,98446 78140,24-09-2016 09:02:16
+89076 36757,99001 95783,24-09-2016 09:03:56
+93410 56456,98453 86521,24-09-2016 09:04:56
+92421 64236,81520 43406,24-09-2016 09:09:53
+97390 23922,90359 52497,24-09-2016 09:10:14
+97386 37259,78290 31269,24-09-2016 09:10:53
+90356 11723,81525 12041,24-09-2016 09:12:17
+98451 87493,97424 21092,24-09-2016 09:15:58
+78132 18081,98443 72004,24-09-2016 09:28:09
+98453 86521,93410 56456,24-09-2016 09:33:16
+94490 65627,97395 95120,24-09-2016 09:33:51
+78138 56841,97426 75324,24-09-2016 09:39:18
+97380 60551,81524 55552,24-09-2016 09:42:43
+97406 74488,92411 96415,24-09-2016 09:43:10
+97424 21092,90351 35947,24-09-2016 09:47:40
+95269 20533,97449 50000,24-09-2016 09:49:41
+93410 98013,98441 32533,24-09-2016 09:50:06
+90359 79636,99001 23133,24-09-2016 09:57:14
+93412 66159,98454 07778,24-09-2016 10:02:05
+94488 97308,97391 99665,24-09-2016 10:05:03
+90358 98099,97406 74488,24-09-2016 10:16:51
+93423 23000,98458 13389,24-09-2016 10:31:00
+94005 06213,98453 46196,24-09-2016 10:34:03
+90197 69887,97424 53609,24-09-2016 10:35:38
+97393 04671,97415 99182,24-09-2016 10:35:38
+98441 32533,70129 62374,24-09-2016 10:43:01
+94490 65627,97395 95120,24-09-2016 11:04:11
+90084 16988,93422 47940,24-09-2016 11:09:16
+98446 66723,83019 53227,24-09-2016 11:13:07
+97406 74488,90358 98099,24-09-2016 11:15:34
+98441 32533,70129 62374,24-09-2016 11:21:31
+99610 89720,90197 69887,24-09-2016 11:26:41
+81525 78007,93418 41992,24-09-2016 11:28:01
+77950 18278,89078 69605,24-09-2016 11:29:07
+97424 21092,98451 87493,24-09-2016 11:30:24
+74060 75431,92413 79027,24-09-2016 11:33:13
+87141 73076,78290 30467,24-09-2016 11:37:24
+97385 35042,93418 41992,24-09-2016 11:39:00
+90194 00845,97416 17124,24-09-2016 11:52:10
+90193 20957,97420 86635,24-09-2016 11:53:44
+98444 42212,97393 04671,24-09-2016 11:56:16
+90365 51029,94499 38099,24-09-2016 12:00:15
+97426 75324,78138 56841,24-09-2016 12:00:49
+98446 78140,98440 65896,24-09-2016 12:03:44
+98440 02823,81515 42171,24-09-2016 12:05:11
+90084 16988,98449 60656,24-09-2016 12:10:15
+97420 86635,90193 20957,24-09-2016 12:14:56
+74066 93594,78136 65840,24-09-2016 12:14:58
+81520 43406,92421 64236,24-09-2016 12:23:21
+97416 17124,90194 00845,24-09-2016 12:44:50
+90197 69887,97424 53609,24-09-2016 12:48:03
+90356 11723,81525 12041,24-09-2016 12:49:06
+97385 70012,94497 44333,24-09-2016 13:13:03
+97426 75324,78138 56841,24-09-2016 13:14:09
+95264 40233,98440 68457,24-09-2016 13:14:58
+98453 46196,94005 06213,24-09-2016 13:17:13
+98448 72117,93436 09781,24-09-2016 13:19:07
+98452 19037,90355 94399,24-09-2016 13:22:50
+81519 62015,99009 32475,24-09-2016 13:24:08
+90084 16988,93422 47940,24-09-2016 13:29:20
+93423 23000,98458 13389,24-09-2016 13:30:26
+97385 70012,97424 53609,24-09-2016 13:35:18
+78295 60375,93410 98013,24-09-2016 13:35:34
+94480 64700,90088 09624,24-09-2016 13:36:45
+97403 09983,90198 03659,24-09-2016 13:38:56
+84314 16122,94499 20763,24-09-2016 13:41:41
+95264 40233,98440 68457,24-09-2016 13:43:52
+90352 50054,96566 40412,24-09-2016 13:44:11
+90084 16988,93422 47940,24-09-2016 13:45:08
+90352 50054,97389 12538,24-09-2016 13:46:10
+81524 55552,97380 60551,24-09-2016 13:52:14
+78133 10302,93423 23000,24-09-2016 13:52:47
+90082 61126,90366 69257,24-09-2016 13:54:10
+78138 56841,97426 75324,24-09-2016 14:05:33
+97390 23922,90359 52497,24-09-2016 14:06:27
+78295 78750,97449 50000,24-09-2016 14:20:18
+97391 99665,90355 94399,24-09-2016 14:20:48
+90199 91061,97414 15280,24-09-2016 14:34:30
+98449 60656,90084 16988,24-09-2016 14:35:44
+95269 20533,97449 50000,24-09-2016 14:39:26
+90199 91061,97414 15280,24-09-2016 14:43:38
+90359 99240,94491 55790,24-09-2016 14:48:04
+97390 23922,90359 52497,24-09-2016 14:51:39
+98440 65896,98446 78140,24-09-2016 14:55:52
+78299 99223,92424 51984,24-09-2016 14:56:26
+90359 52497,97390 23922,24-09-2016 15:00:32
+84312 48999,94485 80091,24-09-2016 15:00:40
+94001 07403,90368 72970,24-09-2016 15:03:01
+94489 72078,92415 91418,24-09-2016 15:08:26
+98442 33257,95262 44233,24-09-2016 15:08:33
+70129 62374,98441 32533,24-09-2016 15:08:48
+84314 16122,94499 20763,24-09-2016 15:12:25
+89076 07067,93421 63491,24-09-2016 15:13:28
+78290 31269,97386 37259,24-09-2016 15:13:36
+97411 71155,98443 99204,24-09-2016 15:18:00
+97386 20071,94499 20763,24-09-2016 15:20:14
+97406 74488,92411 96415,24-09-2016 15:23:55
+87141 73076,78290 30467,24-09-2016 15:33:19
+97395 95120,94490 65627,24-09-2016 15:35:07
+90351 35947,97424 21092,24-09-2016 15:35:35
+90365 51029,94499 38099,24-09-2016 15:38:14
+93423 23000,98458 13389,24-09-2016 15:38:34
+94499 20763,90354 08732,24-09-2016 15:38:52
+74066 93594,90367 90080,24-09-2016 15:39:43
+97406 06245,97403 09983,24-09-2016 15:41:07
+98440 65896,93418 41992,24-09-2016 15:41:54
+99001 85033,74066 93594,24-09-2016 15:43:27
+97389 12538,90352 50054,24-09-2016 15:47:46
+78138 56841,99009 32475,24-09-2016 15:54:39
+90355 94399,97391 99665,24-09-2016 15:56:29
+97415 99182,97393 04671,24-09-2016 15:56:32
+90362 07317,92413 38675,24-09-2016 16:35:32
+90084 16988,93422 47940,24-09-2016 16:35:59
+97399 92703,78136 42599,24-09-2016 16:36:21
+94485 80091,84312 48999,24-09-2016 16:36:47
+94490 65627,97395 95120,24-09-2016 16:42:09
+98441 32533,93410 98013,24-09-2016 16:42:31
+96566 40412,90352 50054,24-09-2016 16:43:53
+90359 91512,94492 23068,24-09-2016 16:49:45
+90084 16988,93422 47940,24-09-2016 16:50:20
+92413 38675,90362 07317,24-09-2016 17:03:24
+97380 60551,81524 55552,24-09-2016 17:12:17
+90365 51029,94499 38099,24-09-2016 17:13:38
+78295 48262,81515 65055,24-09-2016 17:14:53
+77950 18278,89078 69605,24-09-2016 17:17:17
+89076 07067,93421 63491,24-09-2016 17:18:33
+84314 00609,99007 06998,24-09-2016 17:26:39
+97386 37259,78290 31269,24-09-2016 17:29:18
+78295 78750,97449 50000,24-09-2016 17:30:34
+78139 24512,90192 87313,24-09-2016 17:31:18
+98449 60656,90084 16988,24-09-2016 17:37:32
+97380 60551,97414 35000,24-09-2016 17:38:03
+77956 90632,78132 18081,24-09-2016 17:45:21
+81517 73746,94497 77615,24-09-2016 17:49:12
+93436 09781,98448 72117,24-09-2016 17:49:20
+90359 52497,97390 23922,24-09-2016 17:54:28
+90199 91061,97414 15280,24-09-2016 18:00:24
+98441 32533,93410 98013,24-09-2016 18:10:47
+98446 78140,98440 65896,24-09-2016 18:16:57
+97416 29480,94489 72078,24-09-2016 18:33:19
+99612 41256,81526 05544,24-09-2016 18:34:43
+90197 69887,99610 89720,24-09-2016 18:36:59
+93435 31225,87141 37314,24-09-2016 18:41:55
+98446 78140,98440 65896,24-09-2016 18:43:09
+94488 97308,93422 47940,24-09-2016 18:46:23
+97395 95120,94490 65627,24-09-2016 18:51:09
+90198 03659,97403 09983,24-09-2016 18:52:26
+87141 73076,78290 30467,24-09-2016 18:54:01
+90194 00845,97416 17124,24-09-2016 18:55:08
+78295 65598,98440 65896,24-09-2016 19:07:56
+97414 62784,98449 60656,24-09-2016 19:10:26
+97416 29480,94489 72078,24-09-2016 19:19:51
+87141 73076,78290 30467,24-09-2016 19:19:58
+99003 88572,99006 60463,24-09-2016 19:25:42
+97391 99665,90368 72970,24-09-2016 19:30:30
+93416 07259,78132 18081,24-09-2016 19:30:49
+97389 12538,90352 50054,24-09-2016 19:34:25
+90192 87313,78139 24512,24-09-2016 19:35:57
+98444 72482,98446 78140,24-09-2016 19:40:32
+97424 21092,90351 35947,24-09-2016 19:51:07
+74294 40351,98440 02823,24-09-2016 19:56:41
+90087 42537,94497 44333,24-09-2016 19:56:51
+98444 95768,99003 47921,24-09-2016 20:01:51
+97385 70012,94497 44333,24-09-2016 20:07:15
+97424 21092,98451 87493,24-09-2016 20:08:11
+87141 73076,78290 30467,24-09-2016 20:08:49
+78290 30467,87141 73076,24-09-2016 20:21:13
+98441 32533,93410 98013,24-09-2016 20:23:11
+90359 99240,94491 55790,24-09-2016 20:33:40
+97421 07528,98454 07778,24-09-2016 20:40:14
+84314 16122,94499 20763,24-09-2016 20:45:52
+97380 60551,90365 51029,24-09-2016 20:46:12
+97414 15280,90199 91061,24-09-2016 20:52:00
+97412 66065,94006 62384,24-09-2016 21:00:49
+90197 24124,99612 41256,24-09-2016 21:01:28
+93436 09781,98448 72117,24-09-2016 21:01:39
+98446 78140,98444 72482,24-09-2016 21:06:24
+70121 27677,90359 79636,24-09-2016 21:07:10
+94489 72078,97416 29480,24-09-2016 21:08:54
+93410 98013,98441 32533,24-09-2016 21:09:45
+94489 95536,94492 23068,24-09-2016 21:16:58
+96566 40412,90352 50054,24-09-2016 21:17:58
+99001 85033,74066 93594,24-09-2016 21:19:29
+90084 16988,98449 60656,24-09-2016 21:25:35
+97404 63904,97447 92655,24-09-2016 21:29:30
+81517 73746,94497 77615,24-09-2016 21:35:11
+87141 73076,78290 30467,24-09-2016 21:37:31
+98440 68457,95264 40233,24-09-2016 21:38:30
+90197 24124,99612 41256,24-09-2016 21:38:41
+98458 13389,93423 23000,24-09-2016 21:52:55
+90197 69887,97424 53609,24-09-2016 21:54:44
+95264 40233,98440 68457,24-09-2016 21:56:50
+90366 69257,90082 61126,24-09-2016 22:03:42
+90084 16988,98449 60656,24-09-2016 22:06:12
+90356 11723,81525 12041,24-09-2016 22:07:16
+90368 72970,94001 07403,24-09-2016 22:09:48
+97391 99665,94488 97308,24-09-2016 22:10:30
+93410 98013,78295 60375,24-09-2016 22:12:45
+94485 80091,84312 48999,24-09-2016 22:17:28
+89071 31755,78290 99865,24-09-2016 22:21:01
+94488 97308,97391 99665,24-09-2016 22:23:26
+94480 64700,90088 09624,24-09-2016 22:27:30
+83015 22251,78295 60375,24-09-2016 22:27:49
+90197 24124,99612 41256,24-09-2016 22:30:37
+92428 82401,97385 29751,24-09-2016 22:32:14
+93418 41992,81525 78007,24-09-2016 22:36:28
+81513 30231,90365 06212,24-09-2016 22:37:51
+97390 23922,90359 52497,24-09-2016 22:40:53
+90352 50054,97389 12538,24-09-2016 22:42:42
+78138 56841,99009 32475,24-09-2016 22:59:37
+78133 10302,93423 23000,24-09-2016 23:02:06
+93418 41992,81525 78007,24-09-2016 23:02:26
+84313 45689,78295 65598,24-09-2016 23:14:14
+94489 72078,97416 29480,24-09-2016 23:15:32
+98449 60656,97414 62784,24-09-2016 23:17:19
+81522 26166,90194 00845,24-09-2016 23:24:00
+98440 68457,95264 40233,24-09-2016 23:36:15
+93410 98013,78295 60375,24-09-2016 23:38:00
+97406 93118,98453 46196,24-09-2016 23:38:01
+78132 18081,77956 90632,24-09-2016 23:40:32
+97385 70012,97424 53609,24-09-2016 23:46:51
+90352 50054,97389 12538,24-09-2016 23:47:45
+90367 90080,74066 93594,24-09-2016 23:52:04
+83012 37742,70121 27677,24-09-2016 23:52:45
+94497 77615,81517 73746,24-09-2016 23:54:09
+81525 78007,93418 41992,24-09-2016 23:58:10
+90193 20957,97420 86635,24-09-2016 23:58:31
+84311 10322,90359 79636,24-09-2016 23:58:38
+98456 86153,90197 24124,24-09-2016 23:58:49
+94499 20763,84314 16122,25-09-2016 06:02:24
+89078 69605,77950 18278,25-09-2016 06:05:06
+97424 53609,97385 70012,25-09-2016 06:23:17
+93410 98013,78295 60375,25-09-2016 06:28:32
+94489 72078,97416 29480,25-09-2016 06:39:18
+94492 23068,94489 95536,25-09-2016 06:41:44
+97380 60551,81524 55552,25-09-2016 06:49:55
+97393 04671,97415 99182,25-09-2016 06:57:10
+90358 98099,97406 74488,25-09-2016 07:06:22
+97424 21092,90351 35947,25-09-2016 07:20:10
+93422 47940,90084 16988,25-09-2016 07:22:07
+93432 65750,92425 27794,25-09-2016 07:25:29
+90358 98099,97406 74488,25-09-2016 07:34:49
+98446 78140,98440 65896,25-09-2016 07:38:15
+97425 12708,90366 36573,25-09-2016 07:39:39
+90355 94399,98452 19037,25-09-2016 07:44:53
+93423 23000,98458 13389,25-09-2016 07:48:17
+70121 27677,78295 48262,25-09-2016 07:51:00
+97421 07528,90083 59148,25-09-2016 07:54:03
+90359 99240,94491 55790,25-09-2016 07:58:07
+90194 08626,98444 95768,25-09-2016 08:01:57
+94489 72078,97416 29480,25-09-2016 08:06:39
+90359 91512,94489 95536,25-09-2016 08:13:06
+98458 13389,93423 23000,25-09-2016 08:14:27
+93410 98013,78295 60375,25-09-2016 08:14:56
+90084 16988,93422 47940,25-09-2016 08:15:50
+97421 07528,90083 59148,25-09-2016 08:16:39
+92411 96415,97406 74488,25-09-2016 08:22:40
+78295 48262,70121 27677,25-09-2016 08:25:36
+94001 07403,90368 72970,25-09-2016 08:25:37
+97414 15280,90199 91061,25-09-2016 08:29:12
+94482 95223,97425 92186,25-09-2016 08:36:22
+74060 75431,92413 79027,25-09-2016 08:37:33
+94490 65627,97395 95120,25-09-2016 08:44:35
+94488 97308,97391 99665,25-09-2016 08:45:30
+93412 66159,94499 20763,25-09-2016 08:47:48
+94489 95536,93418 82576,25-09-2016 08:47:57
+94486 40312,97424 60171,25-09-2016 08:50:10
+95269 20533,97449 50000,25-09-2016 08:54:17
+97424 21092,98451 87493,25-09-2016 08:55:29
+90358 98099,97406 74488,25-09-2016 09:02:41
+84314 16122,94499 20763,25-09-2016 09:06:18
+97449 50000,95269 20533,25-09-2016 09:09:32
+98440 65896,78295 65598,25-09-2016 09:11:06
+92411 96415,97406 74488,25-09-2016 09:14:03
+90355 94399,98452 19037,25-09-2016 09:17:08
+74066 93594,78136 65840,25-09-2016 09:18:36
+98448 72117,93436 09781,25-09-2016 09:19:08
+94480 64700,90088 09624,25-09-2016 09:19:13
+84311 10322,90359 79636,25-09-2016 09:20:37
+92414 22596,93421 63491,25-09-2016 09:22:01
+95269 20533,97449 50000,25-09-2016 09:22:34
+94489 72078,97416 29480,25-09-2016 09:29:28
+84312 48999,94485 80091,25-09-2016 09:42:00
+98453 86521,93410 56456,25-09-2016 09:43:11
+94499 20763,84314 16122,25-09-2016 09:48:21
+93432 65750,92425 27794,25-09-2016 09:49:15
+78295 65598,98440 65896,25-09-2016 09:52:10
+78138 56841,97426 75324,25-09-2016 10:00:58
+97414 15280,90199 91061,25-09-2016 10:01:18
+97421 07528,98454 07778,25-09-2016 10:09:11
+93422 47940,90084 16988,25-09-2016 10:09:20
+78133 71458,70127 59322,25-09-2016 10:11:48
+98453 46196,94005 06213,25-09-2016 10:12:09
+96566 40412,90352 50054,25-09-2016 10:12:13
+94480 64700,90088 09624,25-09-2016 10:18:50
+92411 96415,93435 21961,25-09-2016 10:22:20
+84314 16122,94499 20763,25-09-2016 10:29:52
+90084 16988,98449 60656,25-09-2016 10:34:22
+78136 42599,97399 92703,25-09-2016 10:37:51
+84314 16122,94499 20763,25-09-2016 10:38:52
+90362 07317,92413 38675,25-09-2016 10:47:13
+98440 68457,95264 40233,25-09-2016 10:49:52
+90366 36573,97425 12708,25-09-2016 10:51:48
+93422 47940,90084 16988,25-09-2016 10:55:05
+94006 62384,99616 15114,25-09-2016 10:59:05
+89078 69605,77950 18278,25-09-2016 11:14:50
+84312 48999,94485 80091,25-09-2016 11:17:19
+98456 86153,90197 24124,25-09-2016 11:19:43
+94489 95536,94492 23068,25-09-2016 11:19:53
+90359 91512,94489 95536,25-09-2016 11:22:28
+97425 92186,94482 95223,25-09-2016 11:24:06
+97391 99665,90368 72970,25-09-2016 11:25:38
+90359 99240,94491 55790,25-09-2016 11:33:15
+98444 42212,97393 04671,25-09-2016 11:34:18
+78295 60375,93410 98013,25-09-2016 11:34:34
+97425 92186,94482 95223,25-09-2016 11:45:18
+92424 51984,78299 99223,25-09-2016 11:50:26
+98440 68457,95264 40233,25-09-2016 11:52:20
+90361 52679,90359 91512,25-09-2016 11:53:30
+94489 72078,92415 91418,25-09-2016 11:56:38
+98448 87878,90366 36573,25-09-2016 11:58:30
+90359 52497,97390 23922,25-09-2016 12:02:25
+98447 12671,93427 56500,25-09-2016 12:03:04
+83019 53227,98446 66723,25-09-2016 12:17:54
+81522 26166,90194 00845,25-09-2016 12:28:37
+97406 74488,92411 96415,25-09-2016 12:29:26
+97403 09983,90198 03659,25-09-2016 12:32:54
+97403 09983,97406 06245,25-09-2016 12:33:48
+98458 13389,93423 23000,25-09-2016 12:37:20
+87141 37314,93435 31225,25-09-2016 12:42:17
+98440 65896,78295 65598,25-09-2016 12:45:59
+90087 42537,94497 44333,25-09-2016 12:46:14
+81525 78007,93418 41992,25-09-2016 12:49:09
+92411 96415,97406 74488,25-09-2016 12:57:12
+98448 72117,93436 09781,25-09-2016 12:58:48
+81519 62015,99009 32475,25-09-2016 13:00:19
+98451 87493,97424 21092,25-09-2016 13:02:55
+97415 99182,97393 04671,25-09-2016 13:02:56
+90083 59148,97421 07528,25-09-2016 13:03:33
+97391 99665,90368 72970,25-09-2016 13:14:51
+78138 56841,99009 32475,25-09-2016 13:26:28
+97424 60171,94486 40312,25-09-2016 13:27:47
+97385 35042,93418 41992,25-09-2016 13:36:24
+90357 17994,93420 59147,25-09-2016 13:40:20
+97390 23922,99004 86250,25-09-2016 13:41:49
+97385 70012,94497 44333,25-09-2016 13:42:36
+99004 86250,97390 23922,25-09-2016 13:43:30
+95267 70383,97414 62027,25-09-2016 13:45:05
+97424 22395,90365 06212,25-09-2016 13:48:14
+78136 65840,74066 93594,25-09-2016 13:56:37
+90352 50054,97389 12538,25-09-2016 14:00:42
+99003 88572,99006 60463,25-09-2016 14:10:15
+78295 65598,84313 45689,25-09-2016 14:11:08
+94482 95223,97425 92186,25-09-2016 14:12:57
+98453 86521,93410 56456,25-09-2016 14:17:13
+97424 53609,90197 69887,25-09-2016 14:20:13
+97416 29480,94489 72078,25-09-2016 14:25:08
+98448 72117,93436 09781,25-09-2016 14:28:25
+92414 22596,93421 63491,25-09-2016 14:29:41
+97446 95253,97428 35959,25-09-2016 14:32:32
+99001 95783,89076 36757,25-09-2016 14:35:05
+90359 79636,99001 23133,25-09-2016 14:35:18
+94480 64700,90088 09624,25-09-2016 14:51:12
+81522 26166,97380 86781,25-09-2016 14:55:38
+84314 16122,94499 20763,25-09-2016 14:59:44
+78290 30467,87141 73076,25-09-2016 15:07:14
+97380 60551,81524 55552,25-09-2016 15:10:41
+92421 64236,81520 43406,25-09-2016 15:13:12
+97403 49292,98445 33687,25-09-2016 15:15:35
+93427 56500,98447 12671,25-09-2016 15:15:55
+74294 40351,98440 02823,25-09-2016 15:18:07
+77950 18278,89078 69605,25-09-2016 15:29:28
+78139 24512,90192 87313,25-09-2016 15:31:59
+81517 73746,94497 77615,25-09-2016 15:32:57
+95262 44233,98442 33257,25-09-2016 15:45:49
+97385 35042,93418 41992,25-09-2016 15:49:01
+92413 38675,90362 07317,25-09-2016 15:59:51
+90359 52497,97390 23922,25-09-2016 16:01:41
+94492 23068,90359 91512,25-09-2016 16:02:38
+92414 22596,93421 63491,25-09-2016 16:07:31
+93410 56456,98453 86521,25-09-2016 16:13:56
+93418 82576,94489 95536,25-09-2016 16:25:51
+90192 87313,78139 24512,25-09-2016 16:27:41
+81520 43406,92421 64236,25-09-2016 16:28:18
+78295 65598,84313 45689,25-09-2016 16:34:59
+89078 69605,77950 18278,25-09-2016 16:35:36
+97385 35042,93418 41992,25-09-2016 16:37:54
+98449 60656,97414 62784,25-09-2016 16:52:13
+90359 99240,94491 55790,25-09-2016 16:53:46
+97424 53609,97385 70012,25-09-2016 16:55:20
+98446 66723,97422 22278,25-09-2016 17:01:03
+81515 42171,98440 02823,25-09-2016 17:09:37
+90368 72970,97391 99665,25-09-2016 17:21:23
+90352 50054,96566 40412,25-09-2016 17:22:19
+78295 48262,81515 65055,25-09-2016 17:25:16
+96565 52272,93428 11808,25-09-2016 17:30:02
+92411 96415,93435 21961,25-09-2016 17:31:51
+90365 51029,97380 60551,25-09-2016 17:33:00
+97419 41164,94487 29969,25-09-2016 17:33:08
+78993 92058,92411 96415,25-09-2016 17:39:39
+78295 60375,93410 98013,25-09-2016 17:46:18
+95267 70383,97414 62027,25-09-2016 17:49:06
+97420 86635,90193 20957,25-09-2016 17:50:01
+90368 72970,97391 99665,25-09-2016 17:50:31
+78138 56841,99009 32475,25-09-2016 17:51:17
+96566 40412,90352 50054,25-09-2016 17:52:27
+97393 04671,97415 99182,25-09-2016 17:55:32
+93436 09781,98448 72117,25-09-2016 18:01:32
+92421 64236,81520 43406,25-09-2016 18:02:45
+93427 56500,98447 12671,25-09-2016 18:06:52
+98440 65896,98446 78140,25-09-2016 18:09:17
+97386 20071,94499 20763,25-09-2016 18:16:35
+93422 47940,90084 16988,25-09-2016 18:23:30
+94489 95536,93418 82576,25-09-2016 18:23:57
+98453 86521,93410 56456,25-09-2016 18:24:50
+99610 89720,90197 69887,25-09-2016 18:26:43
+93423 23000,98458 13389,25-09-2016 18:27:36
+93410 98013,78295 60375,25-09-2016 18:27:38
+94497 44333,97385 70012,25-09-2016 18:30:59
+93423 23000,78133 10302,25-09-2016 18:36:56
+98451 87493,97424 21092,25-09-2016 18:39:38
+87141 73076,78290 30467,25-09-2016 18:41:47
+97406 74488,90358 98099,25-09-2016 18:42:10
+90197 69887,97424 53609,25-09-2016 18:44:26
+78133 10302,93423 23000,25-09-2016 18:48:30
+94006 62384,97412 66065,25-09-2016 18:51:03
+81522 26166,97380 86781,25-09-2016 18:51:34
+94486 40312,97424 60171,25-09-2016 18:53:54
+94489 72078,92415 91418,25-09-2016 18:56:31
+90361 52679,90359 91512,25-09-2016 18:57:31
+92428 82401,97385 29751,25-09-2016 19:02:47
+93423 23000,78133 10302,25-09-2016 19:07:46
+97393 04671,97415 99182,25-09-2016 19:14:37
+97385 70012,97424 53609,25-09-2016 19:22:39
+94499 46077,83013 02552,25-09-2016 19:33:07
+99617 74886,98445 42844,25-09-2016 19:37:52
+97403 49292,98445 33687,25-09-2016 19:39:28
+97416 17124,90194 00845,25-09-2016 19:39:46
+87146 31956,83019 39880,25-09-2016 19:40:04
+94497 77615,81517 73746,25-09-2016 19:43:40
+93412 66159,98454 07778,25-09-2016 19:43:40
+81524 55552,97380 60551,25-09-2016 19:45:55
+90362 07317,92413 38675,25-09-2016 19:46:33
+94488 97308,97391 99665,25-09-2016 19:50:56
+78136 42599,97399 92703,25-09-2016 19:51:35
+90352 50054,97389 12538,25-09-2016 19:56:09
+90368 72970,97391 99665,25-09-2016 19:59:58
+78138 56841,99009 32475,25-09-2016 20:03:10
+90359 52497,97390 23922,25-09-2016 20:03:25
+97391 99665,90355 94399,25-09-2016 20:03:52
+92421 64236,81520 43406,25-09-2016 20:08:00
+93423 23000,78133 10302,25-09-2016 20:26:33
+97385 70012,97424 53609,25-09-2016 20:28:09
+70121 27677,90359 79636,25-09-2016 20:32:52
+94499 20763,84314 16122,25-09-2016 20:35:29
+98453 86521,93410 56456,25-09-2016 20:36:56
+81525 12041,99610 89720,25-09-2016 20:41:52
+93435 21961,92411 96415,25-09-2016 20:43:42
+93422 47940,90084 16988,25-09-2016 20:46:47
+90192 87313,78139 24512,25-09-2016 20:47:24
+97403 09983,90198 03659,25-09-2016 20:47:25
+90362 07317,92413 38675,25-09-2016 20:49:21
+78295 65598,98440 65896,25-09-2016 20:52:16
+94482 95223,97425 92186,25-09-2016 20:55:05
+98444 95768,99003 47921,25-09-2016 20:57:02
+99003 47921,98444 95768,25-09-2016 20:59:07
+92413 79027,74060 75431,25-09-2016 20:59:49
+90359 79636,70121 27677,25-09-2016 21:01:51
+78136 42599,97399 92703,25-09-2016 21:03:12
+78295 48262,70121 27677,25-09-2016 21:05:32
+90355 94399,97391 99665,25-09-2016 21:11:56
+99610 89720,90197 69887,25-09-2016 21:12:24
+97386 37259,78290 31269,25-09-2016 21:20:28
+94499 38099,90365 51029,25-09-2016 21:22:05
+90358 98099,97406 74488,25-09-2016 21:33:00
+78299 99223,92424 51984,25-09-2016 21:33:46
+81520 43406,92421 64236,25-09-2016 21:36:15
+94480 64700,90088 09624,25-09-2016 21:36:42
+97385 35042,93418 41992,25-09-2016 21:40:12
+90194 00845,97416 17124,25-09-2016 21:41:03
+97424 22395,90365 06212,25-09-2016 21:48:01
+90351 35947,97424 21092,25-09-2016 21:50:22
+98446 78140,98444 72482,25-09-2016 21:59:31
+90088 09624,93434 31551,25-09-2016 22:03:27
+92424 51984,78299 99223,25-09-2016 22:04:42
+90359 99240,94491 55790,25-09-2016 22:10:39
+97425 92186,94482 95223,25-09-2016 22:14:29
+98449 60656,97414 62784,25-09-2016 22:14:53
+99004 86250,97390 23922,25-09-2016 22:16:00
+94497 77615,81517 73746,25-09-2016 22:22:08
+84311 10322,90359 79636,25-09-2016 22:31:49
+97421 07528,90083 59148,25-09-2016 22:35:20
+90192 87313,78139 24512,25-09-2016 22:36:29
+74060 75431,92413 79027,25-09-2016 22:41:20
+78138 56841,99009 32475,25-09-2016 22:43:32
+93436 09781,98448 72117,25-09-2016 22:43:50
+98453 86521,93410 56456,25-09-2016 22:44:47
+78138 56841,97426 75324,25-09-2016 22:46:56
+78138 56841,97426 75324,25-09-2016 22:47:26
+77956 90632,92411 96415,25-09-2016 22:54:39
+90084 16988,98449 60656,25-09-2016 22:58:13
+93435 31225,87141 37314,25-09-2016 23:00:39
+97424 21092,98451 87493,25-09-2016 23:01:07
+94486 40312,97424 60171,25-09-2016 23:07:03
+93436 09781,98448 72117,25-09-2016 23:07:33
+98448 72117,93436 09781,25-09-2016 23:08:33
+98445 42844,99617 74886,25-09-2016 23:11:14
+78138 56841,97426 75324,25-09-2016 23:13:16
+94499 38099,90365 51029,25-09-2016 23:20:49
+78290 30467,87141 73076,25-09-2016 23:21:05
+90366 36573,97425 12708,25-09-2016 23:24:34
+97380 60551,90365 51029,25-09-2016 23:35:04
+90361 52679,90359 91512,25-09-2016 23:37:56
+78295 48262,81515 65055,25-09-2016 23:47:20
+97415 99182,97393 04671,25-09-2016 23:51:24
+94499 20763,84314 16122,25-09-2016 23:57:56
+99616 15114,94006 62384,25-09-2016 23:59:01
+90365 51029,94499 38099,26-09-2016 06:00:29
+78295 60375,93410 98013,26-09-2016 06:04:28
+97393 04671,97415 99182,26-09-2016 06:04:28
+94499 20763,84314 16122,26-09-2016 06:05:11
+90359 52497,97390 23922,26-09-2016 06:10:26
+94492 23068,90359 91512,26-09-2016 06:15:24
+98453 46196,94005 06213,26-09-2016 06:18:58
+77950 18278,89078 69605,26-09-2016 06:22:56
+97404 63904,97447 92655,26-09-2016 06:24:09
+90194 00845,97416 17124,26-09-2016 06:37:34
+93410 98013,78295 60375,26-09-2016 06:42:01
+97424 21092,98451 87493,26-09-2016 06:50:55
+97414 15280,90199 91061,26-09-2016 06:51:40
+93420 59147,90357 17994,26-09-2016 06:55:05
+94497 44333,97385 70012,26-09-2016 06:57:21
+90351 35947,97424 21092,26-09-2016 06:59:12
+98454 07778,93412 66159,26-09-2016 07:01:11
+97404 63904,97447 92655,26-09-2016 07:09:14
+98448 72117,93436 09781,26-09-2016 07:09:22
+96566 40412,90352 50054,26-09-2016 07:10:14
+97393 04671,97415 99182,26-09-2016 07:18:55
+97406 06245,97403 09983,26-09-2016 07:19:29
+94497 44333,90087 42537,26-09-2016 07:21:01
+94489 95536,93418 82576,26-09-2016 07:23:55
+70121 27677,78295 48262,26-09-2016 07:31:04
+78138 56841,99009 32475,26-09-2016 07:36:49
+98448 72117,93436 09781,26-09-2016 07:46:59
+94492 23068,90359 91512,26-09-2016 07:48:05
+94499 20763,97386 20071,26-09-2016 07:48:13
+99001 23133,90359 79636,26-09-2016 07:49:28
+70129 62374,98441 32533,26-09-2016 07:59:50
+89078 69605,77950 18278,26-09-2016 08:01:53
+89076 36757,99001 95783,26-09-2016 08:02:23
+97424 53609,90197 69887,26-09-2016 08:06:58
+90088 09624,93434 31551,26-09-2016 08:07:50
+93410 98013,78295 60375,26-09-2016 08:10:27
+97393 04671,97415 99182,26-09-2016 08:12:30
+94499 20763,90354 08732,26-09-2016 08:17:54
+97419 41164,94487 29969,26-09-2016 08:21:01
+74294 40351,98440 02823,26-09-2016 08:25:55
+97406 74488,92411 96415,26-09-2016 08:32:07
+94497 77615,81517 73746,26-09-2016 08:35:38
+90367 90080,74066 93594,26-09-2016 08:35:50
+93421 63491,92414 22596,26-09-2016 08:36:06
+92413 79027,74060 75431,26-09-2016 08:36:29
+99003 88572,99006 60463,26-09-2016 08:41:41
+93423 23000,98458 13389,26-09-2016 08:44:10
+94489 95536,94492 23068,26-09-2016 08:51:19
+90087 42537,94497 44333,26-09-2016 08:51:46
+87149 57915,92428 82401,26-09-2016 08:54:28
+87141 37314,93435 31225,26-09-2016 08:54:52
+98444 95768,99003 47921,26-09-2016 08:56:56
+97380 60551,81524 55552,26-09-2016 09:03:35
+90365 51029,94499 38099,26-09-2016 09:07:19
+90082 61126,90366 69257,26-09-2016 09:10:26
+90359 79636,70121 27677,26-09-2016 09:10:32
+94486 40312,97424 60171,26-09-2016 09:12:53
+78290 31269,97386 37259,26-09-2016 09:18:11
+90356 11723,81525 12041,26-09-2016 09:20:41
+78136 65840,74066 93594,26-09-2016 09:22:02
+97399 92703,78136 42599,26-09-2016 09:27:46
+97406 74488,92411 96415,26-09-2016 09:29:06
+93418 82576,94489 95536,26-09-2016 09:31:03
+92411 96415,77956 90632,26-09-2016 09:33:14
+98449 60656,90084 16988,26-09-2016 09:35:32
+99610 89720,90197 69887,26-09-2016 09:36:51
+94492 23068,90359 91512,26-09-2016 09:40:37
+84312 48999,94485 80091,26-09-2016 09:47:26
+98440 02823,81515 42171,26-09-2016 09:49:21
+90368 72970,97391 99665,26-09-2016 09:51:42
+94492 23068,90359 91512,26-09-2016 09:51:52
+78138 56841,97426 75324,26-09-2016 09:52:54
+97380 60551,90365 51029,26-09-2016 09:54:06
+97393 04671,97415 99182,26-09-2016 10:02:06
+97403 09983,90198 03659,26-09-2016 10:11:46
+90088 09624,94480 64700,26-09-2016 10:12:17
+98446 78140,98440 65896,26-09-2016 10:20:25
+97399 92703,78136 42599,26-09-2016 10:24:37
+81520 43406,92421 64236,26-09-2016 10:35:11
+92428 82401,97385 29751,26-09-2016 10:43:24
+97421 07528,90083 59148,26-09-2016 10:49:08
+97385 70012,97424 53609,26-09-2016 10:50:46
+78138 56841,97426 75324,26-09-2016 10:57:27
+74066 93594,78136 65840,26-09-2016 11:01:54
+93422 47940,94488 97308,26-09-2016 11:02:38
+90368 72970,97391 99665,26-09-2016 11:11:02
+97426 75324,78138 56841,26-09-2016 11:16:55
+97449 50000,95269 20533,26-09-2016 11:19:02
+92421 64236,81520 43406,26-09-2016 11:24:13
+84313 45689,78295 65598,26-09-2016 11:27:44
+97385 35042,93418 41992,26-09-2016 11:30:15
+97389 12538,90352 50054,26-09-2016 11:37:46
+94482 95223,97425 92186,26-09-2016 11:41:54
+87141 73076,78290 30467,26-09-2016 11:51:46
+97415 99182,97393 04671,26-09-2016 11:52:58
+84312 48999,94485 80091,26-09-2016 11:54:30
+97416 17124,90194 00845,26-09-2016 11:56:50
+98453 46196,94005 06213,26-09-2016 12:00:20
+99003 88572,99006 60463,26-09-2016 12:02:51
+90356 11723,81525 12041,26-09-2016 12:07:05
+81525 12041,90356 11723,26-09-2016 12:11:45
+90355 10919,81524 55552,26-09-2016 12:14:15
+90193 20957,97420 86635,26-09-2016 12:18:51
+90367 90080,74066 93594,26-09-2016 12:19:00
+97421 07528,90083 59148,26-09-2016 12:19:30
+97403 09983,90198 03659,26-09-2016 12:20:41
+90084 16988,98449 60656,26-09-2016 12:21:05
+94001 07403,90368 72970,26-09-2016 12:22:45
+90358 98099,97406 74488,26-09-2016 12:26:20
+98448 87878,90366 36573,26-09-2016 12:35:11
+97448 02140,97418 46131,26-09-2016 12:35:55
+78133 71458,70127 59322,26-09-2016 12:37:06
+92414 22596,93421 63491,26-09-2016 12:40:01
+97449 50000,95269 20533,26-09-2016 12:45:06
+97416 17124,90194 00845,26-09-2016 12:46:38
+92411 96415,93435 21961,26-09-2016 12:56:04
+94486 40312,97424 60171,26-09-2016 12:57:05
+81515 42171,98440 02823,26-09-2016 12:57:47
+98444 72482,98446 78140,26-09-2016 13:03:11
+97414 62784,98449 60656,26-09-2016 13:04:10
+78295 48262,81515 65055,26-09-2016 13:05:12
+78295 60375,93410 98013,26-09-2016 13:15:38
+93436 09781,98448 72117,26-09-2016 13:18:56
+97385 35042,93418 41992,26-09-2016 13:20:01
+93410 56456,98453 86521,26-09-2016 13:23:42
+90082 61126,90366 69257,26-09-2016 13:27:25
+93435 21961,92411 96415,26-09-2016 13:30:05
+97403 49292,98445 33687,26-09-2016 13:35:01
+98453 86521,93410 56456,26-09-2016 13:36:46
+97449 50000,95269 20533,26-09-2016 13:37:45
+90365 51029,94499 38099,26-09-2016 13:38:39
+90198 03659,97403 09983,26-09-2016 13:41:36
+90199 91061,97414 15280,26-09-2016 13:45:48
+92414 22596,93421 63491,26-09-2016 13:46:56
+92414 22596,93421 63491,26-09-2016 13:49:16
+94489 95536,93418 82576,26-09-2016 13:54:26
+94491 55790,90359 99240,26-09-2016 13:59:37
+90351 35947,97424 21092,26-09-2016 14:12:07
+94482 95223,97425 92186,26-09-2016 14:15:05
+90193 20957,97420 86635,26-09-2016 14:15:59
+84312 48999,94485 80091,26-09-2016 14:16:14
+97391 99665,94488 97308,26-09-2016 14:17:33
+97449 50000,95269 20533,26-09-2016 14:19:12
+78138 56841,97426 75324,26-09-2016 14:30:42
+81525 78007,93418 41992,26-09-2016 14:32:39
+92421 09526,89076 36757,26-09-2016 14:40:13
+84313 45689,78295 65598,26-09-2016 14:43:38
+97380 60551,97414 35000,26-09-2016 14:44:36
+94487 29969,97419 41164,26-09-2016 14:46:47
+97419 41164,94487 29969,26-09-2016 14:52:21
+94487 29969,97419 41164,26-09-2016 14:53:53
+78290 30467,87141 73076,26-09-2016 14:54:11
+97391 99665,90368 72970,26-09-2016 14:54:49
+90355 94399,98452 19037,26-09-2016 14:59:13
+92411 96415,77956 90632,26-09-2016 15:01:41
+90366 69257,90082 61126,26-09-2016 15:01:56
+97424 21092,90351 35947,26-09-2016 15:02:41
+94492 23068,94489 95536,26-09-2016 15:07:06
+98440 02823,81515 42171,26-09-2016 15:08:18
+97414 15280,90199 91061,26-09-2016 15:08:20
+94499 46077,83013 02552,26-09-2016 15:08:46
+98458 13389,93423 23000,26-09-2016 15:32:15
+84313 45689,78295 65598,26-09-2016 15:36:16
+93416 07259,78132 18081,26-09-2016 15:39:58
+98446 66723,83019 53227,26-09-2016 15:45:17
+87149 57915,92428 82401,26-09-2016 15:50:43
+90198 03659,97403 09983,26-09-2016 15:50:46
+97399 92703,78136 42599,26-09-2016 15:56:50
+93420 59147,90357 17994,26-09-2016 16:02:59
+97414 15280,90199 91061,26-09-2016 16:07:29
+97414 15280,90199 91061,26-09-2016 16:19:39
+90355 94399,97391 99665,26-09-2016 16:22:22
+92413 38675,90362 07317,26-09-2016 16:28:45
+98446 78140,98440 65896,26-09-2016 16:29:43
+94497 44333,90087 42537,26-09-2016 16:31:11
+90088 09624,94480 64700,26-09-2016 16:32:08
+94482 95223,97425 92186,26-09-2016 16:32:43
+97389 12538,90352 50054,26-09-2016 16:42:21
+87146 31956,83019 39880,26-09-2016 16:43:24
+93418 41992,81525 78007,26-09-2016 16:44:11
+94499 20763,84314 16122,26-09-2016 16:47:55
+97412 66065,94006 62384,26-09-2016 16:48:15
+94497 44333,90087 42537,26-09-2016 16:48:32
+78139 24512,90192 87313,26-09-2016 16:50:37
+78138 56841,99009 32475,26-09-2016 16:52:09
+97391 99665,90368 72970,26-09-2016 16:54:05
+94487 29969,97419 41164,26-09-2016 16:54:36
+98458 13389,93423 23000,26-09-2016 16:56:45
+90359 99240,94491 55790,26-09-2016 16:59:13
+97380 60551,81524 55552,26-09-2016 16:59:28
+90359 79636,70121 27677,26-09-2016 17:02:05
+77956 90632,92411 96415,26-09-2016 17:04:21
+93410 56456,98453 86521,26-09-2016 17:07:07
+97425 92186,94482 95223,26-09-2016 17:09:44
+99617 74886,98445 42844,26-09-2016 17:10:14
+94497 77615,81517 73746,26-09-2016 17:14:32
+78132 18081,77956 90632,26-09-2016 17:19:09
+94499 20763,84314 16122,26-09-2016 17:25:31
+93410 98013,78295 60375,26-09-2016 17:28:20
+93422 47940,94488 97308,26-09-2016 17:36:43
+97403 09983,97406 06245,26-09-2016 17:38:31
+94490 65627,97395 95120,26-09-2016 17:39:46
+93418 41992,97385 35042,26-09-2016 17:40:02
+83019 39880,87146 31956,26-09-2016 17:41:17
+81526 05544,99612 41256,26-09-2016 17:43:56
+90359 52497,97390 23922,26-09-2016 17:47:32
+97380 86781,97380 60551,26-09-2016 17:48:21
+78295 48262,70121 27677,26-09-2016 17:48:42
+95267 70383,97414 62027,26-09-2016 17:51:13
+78993 92058,92411 96415,26-09-2016 17:54:40
+97424 22395,90365 06212,26-09-2016 17:57:58
+78295 78750,97449 50000,26-09-2016 18:00:46
+78132 18081,77956 90632,26-09-2016 18:02:50
+94499 20763,93412 66159,26-09-2016 18:03:51
+97393 04671,98444 42212,26-09-2016 18:05:28
+97412 66065,94006 62384,26-09-2016 18:09:54
+81519 62015,99009 32475,26-09-2016 18:20:39
+98445 42844,99617 74886,26-09-2016 18:20:45
+78298 91466,97380 60551,26-09-2016 18:22:21
+97421 07528,98454 07778,26-09-2016 18:42:25
+77950 18278,89078 69605,26-09-2016 18:43:37
+98446 66723,83019 53227,26-09-2016 18:43:41
+90359 79636,84311 10322,26-09-2016 18:45:47
+99007 06998,84314 00609,26-09-2016 18:52:46
+74060 75431,92413 79027,26-09-2016 18:53:51
+93412 66159,98454 07778,26-09-2016 19:00:16
+87141 73076,78290 30467,26-09-2016 19:02:54
+99003 88572,99006 60463,26-09-2016 19:03:25
+99616 15114,94006 62384,26-09-2016 19:17:34
+78295 60375,83015 22251,26-09-2016 19:19:19
+97386 20071,94499 20763,26-09-2016 19:24:19
+90359 79636,84311 10322,26-09-2016 19:27:06
+81517 73746,94497 77615,26-09-2016 19:27:08
+93421 63491,92414 22596,26-09-2016 19:32:13
+94499 20763,84314 16122,26-09-2016 19:33:59
+81525 78007,93418 41992,26-09-2016 19:41:23
+78299 99223,92424 51984,26-09-2016 19:43:08
+90359 52497,97390 23922,26-09-2016 19:48:16
+78139 24512,90192 87313,26-09-2016 19:48:55
+93422 47940,94488 97308,26-09-2016 19:55:45
+94489 95536,94492 23068,26-09-2016 19:57:15
+94489 72078,97416 29480,26-09-2016 20:02:03
+90359 79636,99001 23133,26-09-2016 20:06:58
+94487 29969,97419 41164,26-09-2016 20:09:42
+81525 12041,90356 11723,26-09-2016 20:12:40
+93428 11808,96565 52272,26-09-2016 20:15:39
+70121 27677,78295 48262,26-09-2016 20:17:40
+78136 42599,97399 92703,26-09-2016 20:18:53
+94499 20763,90354 08732,26-09-2016 20:20:33
+81517 73746,94497 77615,26-09-2016 20:25:53
+77950 18278,89078 69605,26-09-2016 20:33:58
+97406 06245,97403 09983,26-09-2016 20:34:03
+98440 02823,81515 42171,26-09-2016 20:38:21
+93436 09781,98448 72117,26-09-2016 20:41:00
+94490 65627,97395 95120,26-09-2016 20:43:47
+97424 21092,98451 87493,26-09-2016 20:46:46
+98448 86633,78293 91304,26-09-2016 20:51:43
+74066 93594,78136 65840,26-09-2016 20:53:36
+78132 18081,98443 72004,26-09-2016 20:59:11
+78136 65840,74066 93594,26-09-2016 21:00:42
+84313 45689,78295 65598,26-09-2016 21:01:03
+90194 00845,97416 17124,26-09-2016 21:01:37
+93418 41992,81525 78007,26-09-2016 21:06:49
+98448 72117,93436 09781,26-09-2016 21:09:23
+93427 56500,98447 12671,26-09-2016 21:10:19
+97416 29480,94489 72078,26-09-2016 21:18:53
+97389 12538,90352 50054,26-09-2016 21:20:38
+89078 69605,77950 18278,26-09-2016 21:20:57
+97393 04671,95262 44233,26-09-2016 21:22:33
+94499 20763,97386 20071,26-09-2016 21:27:14
+90358 98099,97406 74488,26-09-2016 21:30:14
+98447 12671,93427 56500,26-09-2016 21:32:43
+93422 47940,90084 16988,26-09-2016 21:32:54
+98454 07778,93412 66159,26-09-2016 21:35:54
+93410 56456,98453 86521,26-09-2016 21:39:57
+92413 38675,90362 07317,26-09-2016 21:44:26
+94489 72078,92415 91418,26-09-2016 21:47:11
+90194 08626,98444 95768,26-09-2016 21:49:17
+97425 12708,90366 36573,26-09-2016 21:58:16
+90088 09624,94480 64700,26-09-2016 22:06:54
+84311 10322,90359 79636,26-09-2016 22:13:13
+97425 12708,90366 36573,26-09-2016 22:14:25
+97447 92655,97404 63904,26-09-2016 22:19:16
+97406 74488,92411 96415,26-09-2016 22:22:32
+93412 66159,98454 07778,26-09-2016 22:25:11
+99009 32475,78138 56841,26-09-2016 22:25:58
+94486 40312,97424 60171,26-09-2016 22:26:14
+97389 12538,90352 50054,26-09-2016 22:29:07
+97399 92703,97421 07528,26-09-2016 22:29:22
+97385 29751,92428 82401,26-09-2016 22:30:54
+97416 29480,94489 72078,26-09-2016 22:34:37
+97391 99665,90355 94399,26-09-2016 22:43:12
+97395 95120,94490 65627,26-09-2016 22:47:04
+97415 99182,97393 04671,26-09-2016 22:47:20
+98440 65896,98446 78140,26-09-2016 22:58:46
+89078 69605,77950 18278,26-09-2016 22:59:08
+78295 48262,81515 65055,26-09-2016 23:01:10
+90084 16988,98449 60656,26-09-2016 23:03:16
+81522 26166,90194 00845,26-09-2016 23:05:08
+90352 50054,97389 12538,26-09-2016 23:05:22
+93423 23000,98458 13389,26-09-2016 23:06:03
+90088 09624,93434 31551,26-09-2016 23:12:11
+87141 37314,93435 31225,26-09-2016 23:16:14
+94495 34273,94491 05266,26-09-2016 23:29:19
+97389 12538,90352 50054,26-09-2016 23:33:31
+78138 56841,99009 32475,26-09-2016 23:37:39
+94489 72078,92415 91418,26-09-2016 23:39:56
+93436 09781,98448 72117,26-09-2016 23:45:31
+77950 18278,89078 69605,26-09-2016 23:47:41
+98448 87878,90366 36573,26-09-2016 23:53:43
+90082 61126,90366 69257,26-09-2016 23:54:58
+97393 04671,97415 99182,26-09-2016 23:58:34
+93435 31225,87141 37314,27-09-2016 06:02:23
+92411 96415,97406 74488,27-09-2016 06:03:38
+94489 95536,93418 82576,27-09-2016 06:05:44
+74066 93594,78136 65840,27-09-2016 06:06:08
+84319 39746,95263 76972,27-09-2016 06:07:25
+97425 92186,94482 95223,27-09-2016 06:09:46
+97448 02140,97418 46131,27-09-2016 06:09:48
+98442 33257,95262 44233,27-09-2016 06:11:08
+94489 95536,93418 82576,27-09-2016 06:13:27
+97424 60171,94486 40312,27-09-2016 06:14:03
+92414 22596,93421 63491,27-09-2016 06:20:13
+90367 90080,74066 93594,27-09-2016 06:21:47
+97385 35042,93418 41992,27-09-2016 06:24:14
+98449 60656,97414 62784,27-09-2016 06:28:17
+94006 62384,97412 66065,27-09-2016 06:29:19
+90359 52497,98454 90038,27-09-2016 06:30:37
+99001 23133,90359 79636,27-09-2016 06:36:56
+99616 15114,94006 62384,27-09-2016 06:38:54
+94489 95536,93418 82576,27-09-2016 06:41:36
+97414 15280,90199 91061,27-09-2016 06:43:50
+90365 51029,97380 60551,27-09-2016 06:44:46
+97391 99665,90368 72970,27-09-2016 06:49:06
+97415 99182,97393 04671,27-09-2016 06:50:44
+90082 61126,90366 69257,27-09-2016 06:54:57
+94001 07403,90368 72970,27-09-2016 07:02:59
+97414 62784,98449 60656,27-09-2016 07:05:19
+97416 29480,94489 72078,27-09-2016 07:08:17
+92411 96415,78993 92058,27-09-2016 07:15:02
+97414 62784,98449 60656,27-09-2016 07:20:02
+78299 99223,92424 51984,27-09-2016 07:24:25
+78299 99223,92424 51984,27-09-2016 07:25:23
+94488 97308,97391 99665,27-09-2016 07:29:02
+99001 95783,89076 36757,27-09-2016 07:34:32
+99001 85033,74066 93594,27-09-2016 07:34:54
+97411 71155,98443 99204,27-09-2016 07:34:54
+78138 56841,99009 32475,27-09-2016 07:36:15
+94491 55790,90359 99240,27-09-2016 07:39:18
+81522 26166,97380 86781,27-09-2016 07:40:58
+92413 38675,90362 07317,27-09-2016 07:43:16
+83019 53227,98446 66723,27-09-2016 07:48:26
+90365 51029,94499 38099,27-09-2016 07:51:18
+98440 02823,81515 42171,27-09-2016 07:52:38
+90359 52497,97390 23922,27-09-2016 07:55:17
+98448 72117,93436 09781,27-09-2016 07:59:46
+90368 72970,97391 99665,27-09-2016 08:00:01
+90359 52497,97390 23922,27-09-2016 08:05:31
+98446 66723,97422 22278,27-09-2016 08:13:15
+97419 41164,94487 29969,27-09-2016 08:24:08
+99616 15114,94006 62384,27-09-2016 08:24:25
+92411 96415,97406 74488,27-09-2016 08:24:47
+81525 12041,99610 89720,27-09-2016 08:26:06
+97424 21092,98451 87493,27-09-2016 08:29:24
+99001 23133,90359 79636,27-09-2016 08:33:16
+93418 41992,97385 35042,27-09-2016 08:33:21
+94490 65627,97395 95120,27-09-2016 08:36:43
+98445 42844,99617 74886,27-09-2016 08:37:21
+94480 64700,90088 09624,27-09-2016 08:42:23
+97420 86635,90193 20957,27-09-2016 08:45:17
+90359 99240,94491 55790,27-09-2016 08:48:26
+89076 36757,99001 95783,27-09-2016 08:49:09
+94491 55790,90359 99240,27-09-2016 08:52:28
+90366 36573,97425 12708,27-09-2016 08:53:55
+97422 22278,98446 66723,27-09-2016 08:56:10
+99009 32475,78138 56841,27-09-2016 08:58:13
+93423 23000,98458 13389,27-09-2016 09:02:49
+94487 29969,97419 41164,27-09-2016 09:06:53
+98449 60656,97414 62784,27-09-2016 09:14:26
+94489 72078,92415 91418,27-09-2016 09:15:39
+81525 12041,90356 11723,27-09-2016 09:17:05
+98440 65896,98446 78140,27-09-2016 09:19:26
+92411 96415,97406 74488,27-09-2016 09:22:50
+98441 32533,70129 62374,27-09-2016 09:27:58
+78295 60375,93410 98013,27-09-2016 09:34:03
+90366 69257,90082 61126,27-09-2016 09:35:27
+94480 64700,90088 09624,27-09-2016 09:44:06
+74294 40351,98440 02823,27-09-2016 09:44:53
+81522 26166,97380 86781,27-09-2016 09:52:33
+97419 41164,94487 29969,27-09-2016 09:57:42
+90366 69257,90082 61126,27-09-2016 09:59:08
+98449 60656,90084 16988,27-09-2016 10:00:02
+90368 72970,97391 99665,27-09-2016 10:01:11
+98444 95768,99003 47921,27-09-2016 10:08:49
+97421 07528,98454 07778,27-09-2016 10:10:54
+94001 07403,90368 72970,27-09-2016 10:16:29
+93412 66159,94499 20763,27-09-2016 10:18:21
+93420 59147,90357 17994,27-09-2016 10:19:10
+97420 86635,90193 20957,27-09-2016 10:23:30
+90359 79636,70121 27677,27-09-2016 10:26:11
+97406 74488,90358 98099,27-09-2016 10:27:34
+90358 98099,97406 74488,27-09-2016 10:38:25
+78299 99223,92424 51984,27-09-2016 10:41:53
+93422 47940,90084 16988,27-09-2016 10:43:21
+93415 21881,98454 90038,27-09-2016 10:45:16
+97416 17124,90194 00845,27-09-2016 10:46:20
+97425 92186,94482 95223,27-09-2016 10:58:21
+96566 40412,90352 50054,27-09-2016 11:04:30
+97390 23922,90359 52497,27-09-2016 11:08:10
+78133 10302,93423 23000,27-09-2016 11:08:49
+87141 37314,93435 31225,27-09-2016 11:16:58
+89076 36757,99001 95783,27-09-2016 11:17:43
+92424 51984,78299 99223,27-09-2016 11:21:40
+94489 72078,97416 29480,27-09-2016 11:23:12
+93423 23000,98458 13389,27-09-2016 11:24:35
+77956 90632,78132 18081,27-09-2016 11:24:42
+98454 07778,93412 66159,27-09-2016 11:28:25
+98449 60656,97414 62784,27-09-2016 11:29:29
+98444 42212,97393 04671,27-09-2016 11:30:47
+97421 07528,90083 59148,27-09-2016 11:33:42
+97406 06245,97403 09983,27-09-2016 11:36:34
+94495 34273,94491 05266,27-09-2016 11:40:36
+81520 43406,92421 64236,27-09-2016 11:42:34
+92411 96415,77956 90632,27-09-2016 11:43:13
+97421 07528,98454 07778,27-09-2016 11:52:43
+78295 78750,97449 50000,27-09-2016 12:00:37
+97395 95120,94490 65627,27-09-2016 12:04:50
+90368 72970,97391 99665,27-09-2016 12:06:47
+94499 20763,84314 16122,27-09-2016 12:09:03
+78295 65598,84313 45689,27-09-2016 12:11:34
+97385 35042,93418 41992,27-09-2016 12:14:00
+98448 87878,90366 36573,27-09-2016 12:27:39
+99003 88572,99006 60463,27-09-2016 12:33:00
+92415 91418,94489 72078,27-09-2016 12:34:41
+99001 23133,90359 79636,27-09-2016 12:41:26
+93412 66159,98454 07778,27-09-2016 12:41:36
+97406 74488,90358 98099,27-09-2016 12:42:56
+78138 56841,99009 32475,27-09-2016 12:43:41
+70121 27677,90359 79636,27-09-2016 12:44:02
+93420 59147,90357 17994,27-09-2016 12:49:28
+90356 11723,81525 12041,27-09-2016 12:51:12
+90192 87313,78139 24512,27-09-2016 12:59:59
+97380 60551,78298 91466,27-09-2016 13:01:04
+83019 39880,87146 31956,27-09-2016 13:03:28
+94480 64700,90088 09624,27-09-2016 13:07:05
+94499 38099,90365 51029,27-09-2016 13:11:28
+97403 09983,90198 03659,27-09-2016 13:15:27
+98445 42844,99617 74886,27-09-2016 13:17:39
+93435 21961,92411 96415,27-09-2016 13:24:14
+97425 92186,94482 95223,27-09-2016 13:24:16
+97422 22278,98446 66723,27-09-2016 13:25:48
+90359 79636,84311 10322,27-09-2016 13:26:32
+74066 93594,78136 65840,27-09-2016 13:30:08
+97389 12538,90352 50054,27-09-2016 13:42:46
+84313 45689,78295 65598,27-09-2016 13:44:40
+98444 95768,99003 47921,27-09-2016 13:48:18
+96565 52272,93428 11808,27-09-2016 13:56:34
+93434 31551,90088 09624,27-09-2016 14:01:13
+98454 07778,93412 66159,27-09-2016 14:04:57
+94488 97308,97391 99665,27-09-2016 14:06:32
+78295 60375,93410 98013,27-09-2016 14:07:25
+95269 20533,97449 50000,27-09-2016 14:30:44
+97425 12708,90366 36573,27-09-2016 14:33:28
+90366 36573,97425 12708,27-09-2016 14:36:35
+97390 23922,90359 52497,27-09-2016 14:41:29
+97421 07528,90083 59148,27-09-2016 14:41:55
+97399 92703,78136 42599,27-09-2016 14:53:39
+98448 87878,90366 36573,27-09-2016 14:54:25
+84312 48999,94485 80091,27-09-2016 14:55:47
+97385 70012,97424 53609,27-09-2016 15:01:45
+99003 88572,99006 60463,27-09-2016 15:08:48
+78295 78750,97449 50000,27-09-2016 15:15:10
+78295 60375,83015 22251,27-09-2016 15:15:33
+90084 16988,98449 60656,27-09-2016 15:17:53
+93421 63491,92414 22596,27-09-2016 15:21:09
+94489 72078,92415 91418,27-09-2016 15:24:12
+94497 77615,81517 73746,27-09-2016 15:28:40
+97380 60551,97380 86781,27-09-2016 15:33:52
+97399 92703,78136 42599,27-09-2016 15:48:23
+90198 03659,97403 09983,27-09-2016 15:54:39
+97380 86781,81522 26166,27-09-2016 15:56:38
+77956 90632,92411 96415,27-09-2016 16:03:29
+97414 15280,90199 91061,27-09-2016 16:09:56
+81520 43406,92421 64236,27-09-2016 16:11:59
+97390 23922,90359 52497,27-09-2016 16:12:48
+94499 20763,90354 08732,27-09-2016 16:14:19
+94489 95536,93418 82576,27-09-2016 16:18:05
+90361 52679,90359 91512,27-09-2016 16:21:42
+90357 17994,93420 59147,27-09-2016 16:28:50
+99617 74886,98445 42844,27-09-2016 16:29:27
+90367 90080,74066 93594,27-09-2016 16:30:31
+93432 65750,92425 27794,27-09-2016 16:34:32
+93418 41992,97385 35042,27-09-2016 16:35:03
+98453 86521,93410 56456,27-09-2016 16:36:30
+98440 65896,98446 78140,27-09-2016 16:38:28
+90359 79636,70121 27677,27-09-2016 16:44:12
+97385 70012,94497 44333,27-09-2016 16:47:01
+78139 24512,90192 87313,27-09-2016 16:47:56
+97403 49292,98445 33687,27-09-2016 16:48:08
+98448 72117,93436 09781,27-09-2016 16:48:16
+83019 39880,87146 31956,27-09-2016 16:55:45
+90194 00845,81522 26166,27-09-2016 16:56:45
+97416 17124,90194 00845,27-09-2016 16:58:25
+90357 17994,93420 59147,27-09-2016 17:02:12
+81525 12041,90356 11723,27-09-2016 17:10:10
+92421 64236,81520 43406,27-09-2016 17:10:26
+97449 50000,78295 78750,27-09-2016 17:15:22
+81515 65055,78295 48262,27-09-2016 17:16:15
+94499 20763,93412 66159,27-09-2016 17:17:16
+90358 98099,97406 74488,27-09-2016 17:31:34
+90197 24124,99612 41256,27-09-2016 17:31:37
+90366 36573,98448 87878,27-09-2016 17:38:00
+93422 47940,90084 16988,27-09-2016 17:43:49
+93410 56456,98453 86521,27-09-2016 17:46:33
+95264 40233,98440 68457,27-09-2016 17:58:40
+78290 31269,97386 37259,27-09-2016 18:00:02
+87141 37314,93435 31225,27-09-2016 18:01:18
+94499 20763,90354 08732,27-09-2016 18:02:58
+90358 98099,97406 74488,27-09-2016 18:07:17
+94006 62384,97412 66065,27-09-2016 18:12:17
+94490 65627,97395 95120,27-09-2016 18:24:06
+97393 04671,95262 44233,27-09-2016 18:24:52
+98446 66723,83019 53227,27-09-2016 19:15:03
+94486 40312,97424 60171,27-09-2016 19:15:05
+97422 22278,98446 66723,27-09-2016 19:15:10
+78295 60375,83015 22251,27-09-2016 19:16:02
+99004 86250,97390 23922,27-09-2016 19:23:40
+94488 97308,97391 99665,27-09-2016 19:23:54
+98441 32533,93410 98013,27-09-2016 19:33:39
+74066 93594,78136 65840,27-09-2016 19:34:09
+97426 75324,78138 56841,27-09-2016 19:37:39
+78295 60375,93410 98013,27-09-2016 19:38:16
+90362 07317,92413 38675,27-09-2016 19:38:41
+99001 95783,89076 36757,27-09-2016 19:40:25
+94487 29969,97419 41164,27-09-2016 19:58:51
+93436 09781,98448 72117,27-09-2016 20:01:35
+98440 65896,78295 65598,27-09-2016 20:02:26
+74066 93594,78136 65840,27-09-2016 20:03:25
+87146 31956,83019 39880,27-09-2016 20:18:05
+89076 36757,99001 95783,27-09-2016 20:18:28
+98441 32533,93410 98013,27-09-2016 20:19:46
+98440 68457,95264 40233,27-09-2016 20:21:00
+97414 97237,87146 58071,27-09-2016 20:25:30
+90351 49472,90199 67471,27-09-2016 20:27:58
+74060 75431,92413 79027,27-09-2016 20:41:19
+74060 75431,97390 23922,27-09-2016 20:42:34
+92411 96415,97406 74488,27-09-2016 20:45:16
+97391 99665,94488 97308,27-09-2016 20:50:08
+93418 41992,97385 35042,27-09-2016 20:51:35
+98454 07778,93412 66159,27-09-2016 21:05:00
+90352 50054,97389 12538,27-09-2016 21:05:04
+98451 87493,97424 21092,27-09-2016 21:07:23
+94491 05266,94495 34273,27-09-2016 21:17:04
+87141 73076,78290 30467,27-09-2016 21:20:51
+90358 98099,97406 74488,27-09-2016 21:22:41
+94489 72078,97416 29480,27-09-2016 21:27:46
+78993 92058,92411 96415,27-09-2016 21:28:03
+97380 60551,78298 91466,27-09-2016 21:28:57
+97393 04671,95262 44233,27-09-2016 21:29:48
+93422 47940,90084 16988,27-09-2016 21:35:21
+90355 10919,81524 55552,27-09-2016 21:35:34
+97391 99665,94488 97308,27-09-2016 21:44:07
+97406 74488,92411 96415,27-09-2016 21:48:43
+97391 99665,94488 97308,27-09-2016 21:54:01
+90366 69257,90082 61126,27-09-2016 21:54:16
+98446 78140,98444 72482,27-09-2016 22:04:41
+81517 73746,94497 77615,27-09-2016 22:04:43
+99001 95783,89076 36757,27-09-2016 22:06:41
+92425 27794,93432 65750,27-09-2016 22:11:24
+77956 90632,92411 96415,27-09-2016 22:17:09
+92411 96415,93435 21961,27-09-2016 22:21:42
+99006 60463,99003 88572,27-09-2016 22:22:34
+92413 38675,90362 07317,27-09-2016 22:24:49
+78295 60375,83015 22251,27-09-2016 22:24:49
+94499 20763,93412 66159,27-09-2016 22:27:35
+94485 80091,84312 48999,27-09-2016 22:29:44
+98446 66723,97422 22278,27-09-2016 22:35:08
+77950 18278,89078 69605,27-09-2016 22:45:50
+99003 88572,99006 60463,27-09-2016 22:52:46
+78136 42599,97399 92703,27-09-2016 23:00:52
+97446 95253,97428 35959,27-09-2016 23:07:52
+99001 23133,90359 79636,27-09-2016 23:26:24
+97426 75324,78138 56841,27-09-2016 23:38:58
+97449 50000,95269 20533,27-09-2016 23:39:25
+78138 56841,97426 75324,27-09-2016 23:40:20
+93427 56500,98447 12671,27-09-2016 23:41:32
+81515 65055,78295 48262,27-09-2016 23:43:11
+81515 65055,78295 48262,27-09-2016 23:43:12
+90194 00845,97416 17124,27-09-2016 23:43:13
+97424 21092,90351 35947,27-09-2016 23:43:24
+99007 06998,84314 00609,27-09-2016 23:43:27
+78295 48262,81515 65055,27-09-2016 23:47:54
+94006 62384,97412 66065,27-09-2016 23:48:21
+81520 43406,92421 64236,27-09-2016 23:50:31
+81520 43406,92421 64236,27-09-2016 23:50:54
+93427 56500,98447 12671,27-09-2016 23:55:02
+90359 99240,94491 55790,27-09-2016 23:57:22
+78295 65598,98440 65896,27-09-2016 23:58:31
+97421 07528,90083 59148,28-09-2016 06:07:01
+94497 44333,97385 70012,28-09-2016 06:08:19
+78295 78750,97449 50000,28-09-2016 06:09:08
+97406 06245,97403 09983,28-09-2016 06:14:18
+90197 24124,99612 41256,28-09-2016 06:14:57
+94497 44333,90087 42537,28-09-2016 06:18:52
+97424 53609,97385 70012,28-09-2016 06:19:24
+97386 37259,78290 31269,28-09-2016 06:21:41
+98445 42844,99617 74886,28-09-2016 06:36:40
+97424 60171,94486 40312,28-09-2016 06:38:28
+97390 23922,90359 52497,28-09-2016 06:41:58
+93412 66159,94499 20763,28-09-2016 06:50:07
+97428 35959,97446 95253,28-09-2016 06:52:09
+98446 66723,97422 22278,28-09-2016 06:53:31
+94489 72078,92415 91418,28-09-2016 06:56:27
+97419 41164,94487 29969,28-09-2016 07:00:48
+98444 42212,97393 04671,28-09-2016 07:02:19
+92411 96415,78993 92058,28-09-2016 07:05:10
+97414 15280,90199 91061,28-09-2016 07:11:39
+98448 86633,78293 91304,28-09-2016 07:13:19
+89076 36757,99001 95783,28-09-2016 07:14:34
+84314 00609,99007 06998,28-09-2016 07:23:28
+93422 47940,94488 97308,28-09-2016 07:23:55
+93434 31551,90088 09624,28-09-2016 07:25:16
+94001 07403,90368 72970,28-09-2016 07:29:47
+78993 92058,92411 96415,28-09-2016 07:32:11
+97399 92703,97421 07528,28-09-2016 07:33:40
+90365 51029,94499 38099,28-09-2016 07:33:59
+84314 16122,94499 20763,28-09-2016 07:36:50
+92428 82401,97385 29751,28-09-2016 07:39:22
+93435 31225,87141 37314,28-09-2016 07:45:06
+90082 61126,90366 69257,28-09-2016 07:45:44
+78993 92058,92411 96415,28-09-2016 07:52:01
+93421 63491,92414 22596,28-09-2016 07:52:18
+98440 65896,98446 78140,28-09-2016 07:54:25
+95269 20533,97449 50000,28-09-2016 07:56:19
+90366 36573,97425 12708,28-09-2016 08:05:23
+90355 94399,98452 19037,28-09-2016 08:06:41
+97406 74488,92411 96415,28-09-2016 08:08:16
+94006 62384,99616 15114,28-09-2016 08:10:03
+90366 36573,97425 12708,28-09-2016 08:14:52
+99001 95783,89076 36757,28-09-2016 08:15:22
+97415 99182,97393 04671,28-09-2016 08:26:13
+90197 69887,97424 53609,28-09-2016 08:26:58
+92424 51984,78299 99223,28-09-2016 08:29:39
+90368 72970,97391 99665,28-09-2016 08:31:29
+90366 69257,90082 61126,28-09-2016 08:35:06
+94491 05266,94495 34273,28-09-2016 08:39:27
+94480 31371,97426 25297,28-09-2016 08:42:47
+97404 63904,97447 92655,28-09-2016 08:46:51
+90192 87313,78139 24512,28-09-2016 08:46:53
+77956 90632,92411 96415,28-09-2016 08:53:09
+81515 65055,78295 48262,28-09-2016 08:56:51
+99006 60463,99003 88572,28-09-2016 08:58:52
+81515 65055,78295 48262,28-09-2016 08:59:41
+92428 82401,97385 29751,28-09-2016 09:02:04
+98444 95768,99003 47921,28-09-2016 09:09:27
+90359 79636,84311 10322,28-09-2016 09:15:36
+92415 91418,94489 72078,28-09-2016 09:18:20
+98452 19037,90355 94399,28-09-2016 09:35:36
+97391 99665,90368 72970,28-09-2016 09:36:48
+93418 41992,81525 78007,28-09-2016 09:37:41
+98449 60656,90084 16988,28-09-2016 09:43:13
+78136 42599,97399 92703,28-09-2016 09:43:45
+87141 73076,78290 30467,28-09-2016 09:45:03
+94492 23068,90359 91512,28-09-2016 09:54:21
+93434 31551,90088 09624,28-09-2016 10:00:13
+93422 47940,90084 16988,28-09-2016 10:01:55
+99009 32475,78138 56841,28-09-2016 10:05:40
+98449 60656,97414 62784,28-09-2016 10:09:54
+99009 32475,78138 56841,28-09-2016 10:10:09
+70121 27677,78295 48262,28-09-2016 10:17:55
+77950 18278,89078 69605,28-09-2016 10:18:01
+93410 56456,98453 86521,28-09-2016 10:20:01
+90359 99240,94491 55790,28-09-2016 10:28:00
+97425 92186,94482 95223,28-09-2016 10:31:06
+90359 99240,78138 93826,28-09-2016 10:31:35
+96565 52272,93428 11808,28-09-2016 10:33:37
+90365 51029,97380 60551,28-09-2016 10:35:37
+78299 99223,92424 51984,28-09-2016 10:35:55
+98451 87493,97424 21092,28-09-2016 10:40:59
+90359 79636,70121 27677,28-09-2016 10:45:33
+97424 21092,98451 87493,28-09-2016 10:47:22
+90197 69887,97424 53609,28-09-2016 10:49:39
+97421 07528,90083 59148,28-09-2016 10:51:18
+74066 31484,98454 90038,28-09-2016 10:54:15
+98445 42844,99617 74886,28-09-2016 10:55:01
+95262 44233,98442 33257,28-09-2016 11:06:57
+89076 36757,99001 95783,28-09-2016 11:10:58
+90197 69887,97424 53609,28-09-2016 11:11:18
+93410 98013,98441 32533,28-09-2016 11:20:16
+90088 09624,94480 64700,28-09-2016 11:21:10
+78299 36192,94006 62384,28-09-2016 11:22:35
+90358 98099,97406 74488,28-09-2016 11:23:51
+94489 72078,92415 91418,28-09-2016 11:28:13
+81524 55552,97380 60551,28-09-2016 11:30:57
+78295 60375,83015 22251,28-09-2016 11:33:02
+78138 56841,99009 32475,28-09-2016 11:34:51
+87141 37314,93435 31225,28-09-2016 11:37:14
+95269 20533,97449 50000,28-09-2016 11:37:19
+98454 90038,74066 31484,28-09-2016 11:41:59
+94489 95536,94492 23068,28-09-2016 11:49:20
+97406 74488,92411 96415,28-09-2016 11:55:22
+97385 35042,93418 41992,28-09-2016 11:58:03
+94499 38099,90365 51029,28-09-2016 12:04:59
+99007 06998,84314 00609,28-09-2016 12:07:18
+99003 88572,99006 60463,28-09-2016 12:08:00
+97419 41164,94487 29969,28-09-2016 12:08:04
+78295 65598,98440 65896,28-09-2016 12:17:58
+90359 91512,94489 95536,28-09-2016 12:20:28
+92413 79027,74060 75431,28-09-2016 12:21:15
+93432 65750,92425 27794,28-09-2016 12:25:00
+97416 17124,90194 00845,28-09-2016 12:44:06
+97393 04671,97415 99182,28-09-2016 12:44:39
+93422 47940,90084 16988,28-09-2016 12:45:50
+92411 96415,97406 74488,28-09-2016 12:46:32
+78132 18081,77956 90632,28-09-2016 12:47:54
+98446 66723,83019 53227,28-09-2016 12:48:29
+94490 65627,97395 95120,28-09-2016 12:49:00
+78295 65598,98440 65896,28-09-2016 12:49:11
+97406 93118,98453 46196,28-09-2016 12:50:40
+93418 41992,81525 78007,28-09-2016 12:52:31
+90357 17994,93420 59147,28-09-2016 12:52:38
+95264 40233,98440 68457,28-09-2016 12:52:53
+94487 29969,97419 41164,28-09-2016 12:55:34
+89078 69605,77950 18278,28-09-2016 13:03:20
+90084 16988,98449 60656,28-09-2016 13:07:04
+97414 62027,95267 70383,28-09-2016 13:09:54
+97447 92655,84319 42810,28-09-2016 13:09:58
+94001 07403,90368 72970,28-09-2016 13:15:14
+93412 66159,98454 07778,28-09-2016 13:19:46
+78290 31269,97386 37259,28-09-2016 13:22:00
+99612 41256,90197 24124,28-09-2016 13:25:47
+70129 62374,98441 32533,28-09-2016 13:31:09
+87146 31956,83019 39880,28-09-2016 13:32:26
+99612 41256,90197 24124,28-09-2016 13:35:46
+97395 95120,94490 65627,28-09-2016 13:39:40
+97399 92703,78136 42599,28-09-2016 13:39:48
+97412 66065,94006 62384,28-09-2016 13:44:54
+78132 18081,98443 72004,28-09-2016 13:45:52
+98440 65896,98446 78140,28-09-2016 13:50:00
+97391 99665,94488 97308,28-09-2016 13:50:11
+97411 71155,98443 99204,28-09-2016 13:56:12
+97393 04671,95262 44233,28-09-2016 14:00:25
+93434 31551,90088 09624,28-09-2016 14:00:52
+94489 72078,97416 29480,28-09-2016 14:13:22
+90087 42537,94497 44333,28-09-2016 14:20:08
+98453 86521,93410 56456,28-09-2016 14:21:14
+87140 67779,89072 39789,28-09-2016 14:28:05
+97424 53609,97385 70012,28-09-2016 14:36:04
+90192 87313,78139 24512,28-09-2016 14:40:49
+92421 64236,81520 43406,28-09-2016 14:42:08
+94480 31371,97426 25297,28-09-2016 14:44:06
+97399 92703,97421 07528,28-09-2016 14:45:34
+78299 99223,92424 51984,28-09-2016 14:52:01
+93423 23000,78133 10302,28-09-2016 14:54:33
+97391 99665,94488 97308,28-09-2016 14:56:26
+92413 79027,74060 75431,28-09-2016 14:57:07
+93410 56456,98453 86521,28-09-2016 14:57:12
+97424 53609,90197 69887,28-09-2016 15:02:54
+98445 33687,97403 49292,28-09-2016 15:03:45
+90357 17994,93420 59147,28-09-2016 15:07:13
+97385 29751,92428 82401,28-09-2016 15:12:08
+83019 39880,87146 31956,28-09-2016 15:13:03
+97406 06245,97403 09983,28-09-2016 15:16:50
+97424 53609,97385 70012,28-09-2016 15:21:20
+94497 77615,81517 73746,28-09-2016 15:21:37
+78993 92058,92411 96415,28-09-2016 15:23:34
+97393 04671,98444 42212,28-09-2016 15:25:31
+90082 61126,90366 69257,28-09-2016 15:35:32
+90197 69887,97424 53609,28-09-2016 15:51:15
+97403 09983,90198 03659,28-09-2016 15:53:15
+78295 65598,98440 65896,28-09-2016 15:59:16
+92411 96415,78993 92058,28-09-2016 15:59:23
+84314 16122,94499 20763,28-09-2016 16:00:20
+90084 16988,93422 47940,28-09-2016 16:06:36
+96565 52272,93428 11808,28-09-2016 16:07:32
+90357 17994,93420 59147,28-09-2016 16:09:15
+99610 89720,90197 69887,28-09-2016 16:12:28
+94006 62384,97412 66065,28-09-2016 16:14:09
+93423 23000,98458 13389,28-09-2016 16:17:21
+87141 73076,78290 30467,28-09-2016 16:26:26
+93421 63491,92414 22596,28-09-2016 16:27:50
+99009 32475,81519 62015,28-09-2016 16:28:30
+97389 12538,90352 50054,28-09-2016 16:30:00
+98449 60656,97414 62784,28-09-2016 16:30:59
+97391 99665,90368 72970,28-09-2016 16:34:10
+81525 78007,93418 41992,28-09-2016 16:43:47
+99001 95783,89076 36757,28-09-2016 16:45:36
+97391 99665,94488 97308,28-09-2016 16:49:12
+98441 32533,93410 98013,28-09-2016 16:49:59
+97428 35959,97446 95253,28-09-2016 16:51:20
+97389 12538,90352 50054,28-09-2016 16:52:39
+93410 98013,78295 60375,28-09-2016 16:53:54
+93423 23000,98458 13389,28-09-2016 16:54:56
+98440 68457,95264 40233,28-09-2016 16:59:41
+94490 65627,97395 95120,28-09-2016 17:01:08
+99009 32475,78138 56841,28-09-2016 17:01:22
+84313 45689,78295 65598,28-09-2016 17:03:43
+90088 09624,93434 31551,28-09-2016 17:11:44
+97424 53609,90197 69887,28-09-2016 17:11:45
+97421 07528,90083 59148,28-09-2016 17:12:47
+90352 50054,96566 40412,28-09-2016 17:25:24
+97414 62784,98449 60656,28-09-2016 17:35:51
+94499 20763,84314 16122,28-09-2016 17:38:33
+78290 31269,97386 37259,28-09-2016 17:42:26
+78295 65598,98440 65896,28-09-2016 18:10:13
+98440 68457,95264 40233,28-09-2016 18:17:46
+98453 86521,93410 56456,28-09-2016 18:23:06
+94497 44333,90087 42537,28-09-2016 18:26:31
+78295 65598,98440 65896,28-09-2016 18:30:01
+97414 62784,98449 60656,28-09-2016 18:37:51
+92421 64236,81520 43406,28-09-2016 18:41:33
+81513 30231,90365 06212,28-09-2016 18:42:51
+90368 72970,97391 99665,28-09-2016 18:42:52
+97424 60171,94486 40312,28-09-2016 18:47:21
+94499 20763,93412 66159,28-09-2016 18:48:27
+97424 53609,97385 70012,28-09-2016 18:50:57
+78138 56841,97426 75324,28-09-2016 18:51:06
+93422 47940,90084 16988,28-09-2016 18:51:13
+98446 66723,97422 22278,28-09-2016 18:52:49
+94491 55790,90359 99240,28-09-2016 18:54:06
+97393 04671,98444 42212,28-09-2016 18:55:58
+97393 04671,97415 99182,28-09-2016 18:57:39
+74060 75431,92413 79027,28-09-2016 19:08:10
+96566 40412,90352 50054,28-09-2016 19:08:20
+97421 07528,90083 59148,28-09-2016 19:08:30
+92414 22596,93421 63491,28-09-2016 19:09:36
+97426 75324,78138 56841,28-09-2016 19:10:00
+98442 33257,95262 44233,28-09-2016 19:15:01
+97416 29480,94489 72078,28-09-2016 19:24:49
+94499 20763,93412 66159,28-09-2016 19:25:56
+90194 00845,97416 17124,28-09-2016 19:26:11
+98442 33257,95262 44233,28-09-2016 19:29:28
+78299 99223,92424 51984,28-09-2016 19:34:53
+78138 56841,97426 75324,28-09-2016 19:38:10
+81522 26166,97380 86781,28-09-2016 19:38:28
+97419 41164,94487 29969,28-09-2016 19:41:55
+92411 96415,97406 74488,28-09-2016 19:44:10
+90084 16988,98449 60656,28-09-2016 19:50:30
+78993 92058,92411 96415,28-09-2016 19:53:37
+90359 91512,94492 23068,28-09-2016 19:54:34
+97424 21092,90351 35947,28-09-2016 20:03:20
+99009 32475,78138 56841,28-09-2016 20:08:11
+78295 60375,83015 22251,28-09-2016 20:09:57
+95269 20533,97449 50000,28-09-2016 20:11:47
+92425 27794,93432 65750,28-09-2016 20:17:25
+90194 08626,98444 95768,28-09-2016 20:18:00
+97424 53609,90197 69887,28-09-2016 20:18:54
+90351 35947,97424 21092,28-09-2016 20:22:13
+93410 56456,98453 86521,28-09-2016 20:24:50
+90084 16988,98449 60656,28-09-2016 20:26:41
+93412 66159,98454 07778,28-09-2016 20:29:59
+97447 92655,84319 42810,28-09-2016 20:31:48
+97393 04671,98444 42212,28-09-2016 20:34:02
+93418 41992,81525 78007,28-09-2016 20:38:16
+93423 23000,98458 13389,28-09-2016 20:38:27
+97389 12538,90352 50054,28-09-2016 20:40:25
+93410 56456,98453 86521,28-09-2016 20:42:32
+90192 87313,78139 24512,28-09-2016 20:43:54
+94480 31371,97426 25297,28-09-2016 20:52:58
+81522 26166,90194 00845,28-09-2016 20:53:55
+97386 20071,94499 20763,28-09-2016 20:56:11
+89078 69605,77950 18278,28-09-2016 20:56:41
+92415 91418,94489 72078,28-09-2016 20:57:40
+94492 23068,94489 95536,28-09-2016 21:03:08
+97416 17124,90194 00845,28-09-2016 21:10:51
+94005 06213,98453 46196,28-09-2016 21:12:24
+90084 16988,98449 60656,28-09-2016 21:13:37
+98440 65896,78295 65598,28-09-2016 21:15:38
+94006 62384,97412 66065,28-09-2016 21:18:36
+97380 60551,90365 51029,28-09-2016 21:26:26
+93422 47940,90084 16988,28-09-2016 21:29:05
+94492 23068,90359 91512,28-09-2016 21:32:24
+98454 90038,90359 52497,28-09-2016 21:34:29
+83019 53227,98446 66723,28-09-2016 21:41:04
+90359 91512,94492 23068,28-09-2016 21:44:08
+81525 12041,90356 11723,28-09-2016 21:45:11
+90365 06212,81513 30231,28-09-2016 21:55:19
+70121 27677,78295 48262,28-09-2016 21:58:39
+90366 36573,97425 12708,28-09-2016 22:01:25
+93423 23000,98458 13389,28-09-2016 22:05:46
+94497 77615,81517 73746,28-09-2016 22:06:11
+78295 65598,98440 65896,28-09-2016 22:07:47
+78139 24512,90192 87313,28-09-2016 22:09:03
+98448 87878,90366 36573,28-09-2016 22:10:37
+94489 72078,92415 91418,28-09-2016 22:26:49
+90365 51029,97380 60551,28-09-2016 22:30:48
+99616 15114,94006 62384,28-09-2016 22:34:55
+74066 93594,90367 90080,28-09-2016 22:35:13
+78290 30467,87141 73076,28-09-2016 22:37:46
+97424 21092,90351 35947,28-09-2016 22:38:14
+98444 95768,90194 08626,28-09-2016 22:39:31
+94489 72078,92415 91418,28-09-2016 22:48:25
+90359 52497,97390 23922,28-09-2016 22:49:47
+94489 72078,97416 29480,28-09-2016 22:54:06
+97421 07528,98454 07778,28-09-2016 22:56:08
+98453 46196,94005 06213,28-09-2016 22:59:19
+78136 65840,74066 93594,28-09-2016 23:01:02
+94492 23068,94489 95536,28-09-2016 23:03:33
+95262 44233,98442 33257,28-09-2016 23:09:58
+97424 21092,98451 87493,28-09-2016 23:10:09
+92411 96415,97406 74488,28-09-2016 23:14:27
+78130 00821,98453 94494,28-09-2016 23:17:00
+97425 92186,94482 95223,28-09-2016 23:17:57
+95262 44233,98442 33257,28-09-2016 23:19:40
+90359 79636,84311 10322,28-09-2016 23:19:45
+81525 12041,99610 89720,28-09-2016 23:24:01
+93423 23000,78133 10302,28-09-2016 23:26:42
+99001 23133,90359 79636,28-09-2016 23:46:01
+90355 94399,98452 19037,28-09-2016 23:46:42
+83019 53227,98446 66723,28-09-2016 23:57:35
+97403 09983,90198 03659,29-09-2016 06:01:32
+92414 22596,93421 63491,29-09-2016 06:02:04
+78295 60375,93410 98013,29-09-2016 06:09:28
+97386 20071,94499 20763,29-09-2016 06:10:19
+81515 65055,78295 48262,29-09-2016 06:13:39
+97416 17124,90194 00845,29-09-2016 06:24:06
+74066 93594,90367 90080,29-09-2016 06:26:30
+98453 46196,94005 06213,29-09-2016 06:29:21
+90359 79636,99001 23133,29-09-2016 06:29:24
+90357 17994,93420 59147,29-09-2016 06:37:21
+90359 52497,97390 23922,29-09-2016 06:42:40
+98444 72482,98446 78140,29-09-2016 06:45:55
+83019 53227,98446 66723,29-09-2016 06:46:19
+97395 95120,94490 65627,29-09-2016 06:56:57
+78295 65598,98440 65896,29-09-2016 06:57:14
+90366 69257,90082 61126,29-09-2016 06:57:33
+92411 96415,97406 74488,29-09-2016 07:01:02
+78133 10302,93423 23000,29-09-2016 07:01:50
+90355 94399,98452 19037,29-09-2016 07:05:20
+78139 24512,90192 87313,29-09-2016 07:09:36
+97447 92655,84319 42810,29-09-2016 07:10:40
+97449 50000,95269 20533,29-09-2016 07:11:49
+93436 09781,98448 72117,29-09-2016 07:14:14
+94006 62384,97412 66065,29-09-2016 07:17:37
+81526 05544,99612 41256,29-09-2016 07:21:26
+78138 56841,99009 32475,29-09-2016 07:22:30
+78293 91304,98448 86633,29-09-2016 07:27:29
+97415 99182,97393 04671,29-09-2016 07:27:55
+90365 51029,97380 60551,29-09-2016 07:31:07
+94499 38099,90365 51029,29-09-2016 07:40:00
+92421 09526,89076 36757,29-09-2016 07:40:49
+93410 98013,98441 32533,29-09-2016 07:42:42
+97384 69866,87146 31956,29-09-2016 07:43:26
+90355 94399,97391 99665,29-09-2016 07:45:52
+93418 82576,94489 95536,29-09-2016 07:50:49
+74066 31484,98454 90038,29-09-2016 08:03:05
+97414 15280,90199 91061,29-09-2016 08:08:10
+93422 47940,90084 16988,29-09-2016 08:10:49
+90359 52497,97390 23922,29-09-2016 08:15:57
+77950 18278,89078 69605,29-09-2016 08:16:16
+87146 31956,83019 39880,29-09-2016 08:16:19
+95262 44233,98442 33257,29-09-2016 08:20:23
+78295 78750,97449 50000,29-09-2016 08:23:05
+94491 05266,94495 34273,29-09-2016 08:26:38
+93418 82576,94489 95536,29-09-2016 08:26:54
+99617 74886,98445 42844,29-09-2016 08:27:04
+90083 59148,97421 07528,29-09-2016 08:35:43
+92411 96415,77956 90632,29-09-2016 08:41:39
+97406 74488,90358 98099,29-09-2016 08:56:16
+95269 20533,97449 50000,29-09-2016 08:57:24
+84313 45689,78295 65598,29-09-2016 09:03:43
+93435 21961,92411 96415,29-09-2016 09:06:29
+98454 07778,97421 07528,29-09-2016 09:06:32
+98440 02823,81515 42171,29-09-2016 09:09:49
+90359 91512,94489 95536,29-09-2016 09:18:37
+97380 60551,90365 51029,29-09-2016 09:19:28
+99006 60463,99003 88572,29-09-2016 09:27:45
+94497 77615,81517 73746,29-09-2016 09:30:07
+97420 86635,90193 20957,29-09-2016 09:30:35
+90088 09624,94480 64700,29-09-2016 09:40:55
+99003 88572,99006 60463,29-09-2016 09:41:03
+81517 73746,94497 77615,29-09-2016 09:43:56
+94499 38099,90365 51029,29-09-2016 09:44:09
+89078 69605,77950 18278,29-09-2016 09:46:49
+90368 72970,97391 99665,29-09-2016 09:48:04
+93432 65750,92425 27794,29-09-2016 09:54:31
+90366 36573,98448 87878,29-09-2016 10:01:48
+90359 52497,97390 23922,29-09-2016 10:04:19
+93432 65750,92425 27794,29-09-2016 10:09:31
+98444 95768,99003 47921,29-09-2016 10:18:42
+98449 60656,90084 16988,29-09-2016 10:18:47
+90087 42537,94497 44333,29-09-2016 10:20:10
+81522 26166,97380 86781,29-09-2016 10:22:10
+90366 69257,90082 61126,29-09-2016 10:24:05
+99001 85033,74066 93594,29-09-2016 10:25:41
+90355 94399,97391 99665,29-09-2016 10:29:41
+90192 87313,78139 24512,29-09-2016 10:30:53
+70121 27677,83012 37742,29-09-2016 10:31:54
+94489 95536,93418 82576,29-09-2016 10:34:01
+93423 23000,78133 10302,29-09-2016 10:35:12
+81522 26166,97380 86781,29-09-2016 10:39:21
+98449 60656,90084 16988,29-09-2016 10:39:33
+90088 09624,94480 64700,29-09-2016 10:44:28
+93418 82576,94489 95536,29-09-2016 10:47:20
+98444 95768,90194 08626,29-09-2016 10:49:11
+90365 51029,97380 60551,29-09-2016 10:53:28
+99616 15114,94006 62384,29-09-2016 10:54:31
+97389 12538,90352 50054,29-09-2016 10:58:20
+97424 21092,90351 35947,29-09-2016 11:07:42
+93410 98013,78295 60375,29-09-2016 11:09:42
+78993 92058,92411 96415,29-09-2016 11:15:17
+98449 60656,97414 62784,29-09-2016 11:16:44
+78295 65598,98440 65896,29-09-2016 11:22:22
+96565 52272,93428 11808,29-09-2016 11:28:43
+90366 69257,90082 61126,29-09-2016 11:33:48
+78295 78750,97449 50000,29-09-2016 11:33:52
+98444 72482,98446 78140,29-09-2016 11:35:53
+97424 53609,90197 69887,29-09-2016 11:35:54
+90352 50054,97389 12538,29-09-2016 11:37:19
+78138 56841,99009 32475,29-09-2016 11:38:14
+77950 18278,89078 69605,29-09-2016 11:39:23
+90357 17994,93420 59147,29-09-2016 11:39:47
+94495 34273,94491 05266,29-09-2016 11:42:21
+94489 72078,92415 91418,29-09-2016 11:46:38
+87141 73076,78290 30467,29-09-2016 11:50:33
+90366 36573,98448 87878,29-09-2016 11:55:37
+98452 19037,90355 94399,29-09-2016 11:57:23
+78138 56841,99009 32475,29-09-2016 11:57:52
+87146 31956,83019 39880,29-09-2016 12:00:51
+94490 65627,97395 95120,29-09-2016 12:02:50
+94497 77615,81517 73746,29-09-2016 12:03:28
+81517 73746,94497 77615,29-09-2016 12:05:14
+98449 60656,97414 62784,29-09-2016 12:07:04
+93410 98013,98441 32533,29-09-2016 12:16:47
+97403 49292,98445 33687,29-09-2016 12:20:17
+94001 07403,90368 72970,29-09-2016 12:21:25
+90359 52497,97390 23922,29-09-2016 12:25:17
+92411 96415,78993 92058,29-09-2016 12:26:19
+98448 87878,90366 36573,29-09-2016 12:31:15
+78138 56841,99009 32475,29-09-2016 12:36:07
+93436 09781,98448 72117,29-09-2016 12:42:06
+83019 53227,98446 66723,29-09-2016 12:43:25
+90355 94399,98452 19037,29-09-2016 12:44:50
+92411 96415,97406 74488,29-09-2016 12:45:20
+70121 27677,90359 79636,29-09-2016 12:47:00
+92421 64236,81520 43406,29-09-2016 12:52:23
+97385 70012,94497 44333,29-09-2016 12:54:21
+90366 69257,90082 61126,29-09-2016 12:56:04
+93423 23000,98458 13389,29-09-2016 13:02:56
+70121 27677,90359 79636,29-09-2016 13:03:22
+90199 91061,97414 15280,29-09-2016 13:03:42
+93435 31225,87141 37314,29-09-2016 13:17:03
+90193 20957,97420 86635,29-09-2016 13:17:14
+90199 91061,97414 15280,29-09-2016 13:21:47
+90351 35947,97424 21092,29-09-2016 13:26:51
+78295 48262,70121 27677,29-09-2016 13:27:27
+97414 62784,98449 60656,29-09-2016 13:27:35
+97421 07528,97399 92703,29-09-2016 13:27:36
+97421 07528,98454 07778,29-09-2016 13:39:59
+84313 45689,78295 65598,29-09-2016 13:44:16
+98448 72117,93436 09781,29-09-2016 13:52:40
+90367 90080,74066 93594,29-09-2016 13:53:49
+90087 42537,94497 44333,29-09-2016 14:08:32
+98440 65896,98446 78140,29-09-2016 14:12:12
+97424 21092,98451 87493,29-09-2016 14:14:23
+90358 98099,97406 74488,29-09-2016 14:14:31
+97385 70012,97424 53609,29-09-2016 14:19:43
+87146 31956,83019 39880,29-09-2016 14:23:10
+97425 12708,90366 36573,29-09-2016 14:23:15
+81525 78007,93418 41992,29-09-2016 14:27:18
+97424 53609,90197 69887,29-09-2016 14:27:27
+78298 02848,99001 95783,29-09-2016 14:28:42
+99003 47921,98444 95768,29-09-2016 14:37:56
+97424 53609,97385 70012,29-09-2016 14:38:32
+97406 74488,90358 98099,29-09-2016 14:42:09
+95269 20533,97449 50000,29-09-2016 14:42:34
+78138 56841,97426 75324,29-09-2016 14:45:52
+99610 89720,90197 69887,29-09-2016 14:53:52
+98448 72117,93436 09781,29-09-2016 14:56:36
+78293 91304,98448 86633,29-09-2016 15:01:18
+97426 75324,78138 56841,29-09-2016 15:16:45
+93436 09781,98448 72117,29-09-2016 15:24:21
+92415 91418,94489 72078,29-09-2016 15:25:25
+98449 60656,90084 16988,29-09-2016 15:27:59
+93423 23000,78133 10302,29-09-2016 15:28:37
+78290 30467,87141 73076,29-09-2016 15:29:49
+90359 91512,94492 23068,29-09-2016 15:30:25
+90368 72970,97391 99665,29-09-2016 15:30:42
+98440 65896,98446 78140,29-09-2016 15:32:21
+92411 96415,77956 90632,29-09-2016 15:33:15
+95262 44233,97393 04671,29-09-2016 15:34:13
+81513 30231,90365 06212,29-09-2016 15:34:23
+90359 99240,94491 55790,29-09-2016 15:37:09
+83019 39880,87146 31956,29-09-2016 15:37:37
+78138 56841,97426 75324,29-09-2016 15:41:41
+96566 40412,90352 50054,29-09-2016 15:43:03
+90359 99240,94491 55790,29-09-2016 15:43:06
+93422 47940,90084 16988,29-09-2016 15:44:19
+98449 60656,90084 16988,29-09-2016 15:47:42
+78295 48262,70121 27677,29-09-2016 15:48:40
+93410 98013,98441 32533,29-09-2016 15:48:47
+90362 07317,92413 38675,29-09-2016 15:48:59
+93420 59147,90357 17994,29-09-2016 15:50:01
+97403 49292,98445 33687,29-09-2016 16:04:42
+90194 00845,97416 17124,29-09-2016 16:05:45
+92428 82401,97385 29751,29-09-2016 16:08:59
+90082 61126,90366 69257,29-09-2016 16:09:17
+97425 12708,90366 36573,29-09-2016 16:12:26
+78139 24512,90192 87313,29-09-2016 16:14:09
+97380 60551,81524 55552,29-09-2016 16:21:27
+94480 64700,90088 09624,29-09-2016 16:22:33
+97395 95120,94490 65627,29-09-2016 16:30:01
+97385 70012,94497 44333,29-09-2016 16:39:44
+90362 07317,92413 38675,29-09-2016 16:40:55
+97393 04671,98444 42212,29-09-2016 16:42:02
+78139 24512,90192 87313,29-09-2016 16:49:58
+90359 79636,70121 27677,29-09-2016 16:52:06
+97395 95120,94490 65627,29-09-2016 16:56:23
+94489 72078,97416 29480,29-09-2016 16:57:11
+97424 53609,90197 69887,29-09-2016 16:59:07
+81515 65055,78295 48262,29-09-2016 17:03:56
+93410 98013,78295 60375,29-09-2016 17:06:12
+97424 53609,97385 70012,29-09-2016 17:08:11
+98454 90038,74066 31484,29-09-2016 17:08:23
+95262 44233,98442 33257,29-09-2016 17:13:38
+98451 87493,97424 21092,29-09-2016 17:28:37
+97426 75324,78138 56841,29-09-2016 17:31:30
+97393 04671,95262 44233,29-09-2016 17:34:00
+94489 95536,93418 82576,29-09-2016 17:38:31
+98449 60656,90084 16988,29-09-2016 17:38:47
+97425 92186,94482 95223,29-09-2016 17:40:54
+92414 22596,93421 63491,29-09-2016 17:45:30
+78295 65598,84313 45689,29-09-2016 17:51:30
+90358 98099,97406 74488,29-09-2016 17:51:43
+97447 92655,97404 63904,29-09-2016 17:53:10
+90359 52497,98454 90038,29-09-2016 17:53:21
+77956 90632,92411 96415,29-09-2016 17:58:14
+98454 07778,93412 66159,29-09-2016 18:02:29
+90083 59148,97421 07528,29-09-2016 18:09:11
+93416 07259,78132 18081,29-09-2016 18:16:26
+98445 33687,97403 49292,29-09-2016 18:18:35
+78295 48262,81515 65055,29-09-2016 18:26:13
+93435 31225,87141 37314,29-09-2016 18:28:34
+94488 97308,93422 47940,29-09-2016 18:31:06
+95262 44233,98442 33257,29-09-2016 18:36:23
+97416 29480,94489 72078,29-09-2016 18:36:58
+81525 78007,93418 41992,29-09-2016 18:39:04
+89078 69605,77950 18278,29-09-2016 18:39:29
+81517 73746,94497 77615,29-09-2016 18:40:13
+90355 94399,98452 19037,29-09-2016 18:40:24
+81524 55552,97380 60551,29-09-2016 18:42:14
+93435 21961,92411 96415,29-09-2016 18:42:50
+93412 66159,94499 20763,29-09-2016 18:49:25
+87141 37314,93435 31225,29-09-2016 18:52:18
+93418 41992,81525 78007,29-09-2016 18:54:51
+97385 70012,94497 44333,29-09-2016 19:00:37
+78133 71458,70127 59322,29-09-2016 19:07:09
+78138 56841,97426 75324,29-09-2016 19:08:33
+90356 11723,81525 12041,29-09-2016 19:13:13
+81519 62015,99009 32475,29-09-2016 19:15:28
+74066 93594,78136 65840,29-09-2016 19:18:13
+90084 16988,98449 60656,29-09-2016 19:18:45
+93435 21961,92411 96415,29-09-2016 19:20:35
+78295 60375,93410 98013,29-09-2016 19:28:07
+78133 71458,70127 59322,29-09-2016 19:31:23
+93427 56500,98447 12671,29-09-2016 19:44:57
+90082 61126,90366 69257,29-09-2016 19:48:20
+98456 86153,90197 24124,29-09-2016 19:51:21
+97406 06245,97403 09983,29-09-2016 19:52:11
+70129 62374,98441 32533,29-09-2016 20:01:37
+92421 64236,81520 43406,29-09-2016 20:02:27
+93423 23000,98458 13389,29-09-2016 20:04:56
+93410 98013,98441 32533,29-09-2016 20:10:32
+78993 92058,92411 96415,29-09-2016 20:16:56
+93422 47940,90084 16988,29-09-2016 20:19:16
+97399 92703,78136 42599,29-09-2016 20:24:06
+74066 93594,78136 65840,29-09-2016 20:24:31
+98446 78140,98440 65896,29-09-2016 20:24:40
+94491 55790,90359 99240,29-09-2016 20:28:11
+97416 29480,94489 72078,29-09-2016 20:36:45
+98446 78140,98440 65896,29-09-2016 20:37:31
+97393 04671,98444 42212,29-09-2016 20:37:38
+98442 33257,95262 44233,29-09-2016 20:39:09
+90352 50054,97389 12538,29-09-2016 20:52:25
+78139 24512,90192 87313,29-09-2016 20:52:38
+97380 60551,90365 51029,29-09-2016 20:53:21
+95262 44233,98442 33257,29-09-2016 20:53:57
+78138 56841,97426 75324,29-09-2016 20:54:06
+97416 17124,90194 00845,29-09-2016 21:01:04
+97393 04671,95262 44233,29-09-2016 21:04:24
+94497 77615,81517 73746,29-09-2016 21:08:02
+92411 96415,78993 92058,29-09-2016 21:12:08
+93418 41992,97385 35042,29-09-2016 21:18:49
+90358 98099,97406 74488,29-09-2016 21:23:47
+81522 26166,97414 62784,29-09-2016 21:29:08
+74066 31484,98454 90038,29-09-2016 21:29:14
+98444 95768,99003 47921,29-09-2016 21:30:25
+94480 64700,90088 09624,29-09-2016 21:40:16
+78295 48262,81515 65055,29-09-2016 21:42:42
+83019 39880,87146 31956,29-09-2016 21:43:18
+78993 92058,92411 96415,29-09-2016 21:43:29
+93410 98013,78295 60375,29-09-2016 21:51:56
+93432 65750,92425 27794,29-09-2016 22:01:14
+95264 40233,98440 68457,29-09-2016 22:01:16
+90359 91512,94492 23068,29-09-2016 22:05:26
+97424 60171,94486 40312,29-09-2016 22:08:34
+97416 17124,90194 00845,29-09-2016 22:09:02
+90365 51029,97380 60551,29-09-2016 22:12:49
+90366 36573,97425 12708,29-09-2016 22:13:25
+87149 57915,92428 82401,29-09-2016 22:17:53
+81519 62015,99009 32475,29-09-2016 22:25:21
+78993 92058,92411 96415,29-09-2016 22:28:51
+90359 99240,78138 93826,29-09-2016 22:30:38
+97406 74488,90358 98099,29-09-2016 22:33:03
+90366 69257,90082 61126,29-09-2016 22:33:25
+93427 56500,98447 12671,29-09-2016 22:34:42
+94492 23068,90359 91512,29-09-2016 22:38:27
+81525 78007,93418 41992,29-09-2016 22:39:55
+98445 42844,99617 74886,29-09-2016 22:41:18
+93420 59147,90357 17994,29-09-2016 22:41:45
+90354 08732,94499 20763,29-09-2016 22:44:07
+87149 57915,92428 82401,29-09-2016 22:44:22
+99617 74886,98445 42844,29-09-2016 22:44:35
+98441 32533,93410 98013,29-09-2016 22:48:26
+92413 38675,90362 07317,29-09-2016 22:52:10
+81522 26166,90194 00845,29-09-2016 22:54:48
+97421 07528,90083 59148,29-09-2016 23:04:42
+74066 93594,78136 65840,29-09-2016 23:05:07
+98446 66723,83019 53227,29-09-2016 23:06:05
+74060 75431,97390 23922,29-09-2016 23:13:14
+97391 99665,90368 72970,29-09-2016 23:16:35
+97386 37259,78290 31269,29-09-2016 23:20:56
+94001 07403,90368 72970,29-09-2016 23:21:31
+93423 23000,78133 10302,29-09-2016 23:21:41
+90197 69887,97424 53609,29-09-2016 23:24:57
+94497 44333,90087 42537,29-09-2016 23:33:05
+90366 36573,98448 87878,29-09-2016 23:34:06
+99610 89720,90197 69887,29-09-2016 23:34:25
+94499 20763,84314 16122,29-09-2016 23:36:12
+94487 29969,97419 41164,29-09-2016 23:46:00
+81525 12041,90356 11723,29-09-2016 23:46:25
+78139 24512,90192 87313,29-09-2016 23:58:54
+78132 18081,77956 90632,30-09-2016 06:02:47
+97385 35042,93418 41992,30-09-2016 06:05:36
+78138 56841,97426 75324,30-09-2016 06:07:04
+90357 17994,93420 59147,30-09-2016 06:10:30
+84311 10322,90359 79636,30-09-2016 06:10:34
+98445 42844,99617 74886,30-09-2016 06:34:50
+78136 42599,97399 92703,30-09-2016 06:36:47
+97390 23922,90359 52497,30-09-2016 06:37:12
+93418 41992,97385 35042,30-09-2016 06:39:37
+97424 21092,98451 87493,30-09-2016 06:41:43
+90359 79636,70121 27677,30-09-2016 06:43:38
+97414 62784,98449 60656,30-09-2016 06:45:30
+90198 03659,97403 09983,30-09-2016 06:48:47
+98446 66723,83019 53227,30-09-2016 06:51:27
+90083 59148,97421 07528,30-09-2016 06:51:55
+98444 95768,99003 47921,30-09-2016 06:52:30
+94499 20763,97386 20071,30-09-2016 06:55:00
+77950 18278,89078 69605,30-09-2016 06:55:14
+90082 61126,90366 69257,30-09-2016 06:57:10
+90351 35947,97424 21092,30-09-2016 06:59:51
+90365 51029,97380 60551,30-09-2016 07:01:34
+98448 86633,78293 91304,30-09-2016 07:02:16
+98440 02823,81515 42171,30-09-2016 07:11:07
+97403 09983,97406 06245,30-09-2016 07:14:41
+92421 64236,81520 43406,30-09-2016 07:16:11
+94006 62384,99616 15114,30-09-2016 07:22:23
+90352 50054,97389 12538,30-09-2016 07:22:53
+93410 56456,98453 86521,30-09-2016 07:29:03
+78132 18081,77956 90632,30-09-2016 07:30:56
+97424 21092,98451 87493,30-09-2016 07:30:59
+92411 96415,97406 74488,30-09-2016 07:34:15
+84319 39746,95263 76972,30-09-2016 07:36:49
+92421 09526,89076 36757,30-09-2016 07:39:09
+97414 62027,95267 70383,30-09-2016 07:44:06
+90355 94399,98452 19037,30-09-2016 07:44:55
+97393 04671,97415 99182,30-09-2016 07:45:09
+94492 23068,90359 91512,30-09-2016 07:52:00
+70129 62374,98441 32533,30-09-2016 07:52:26
+78132 18081,77956 90632,30-09-2016 07:56:49
+83012 37742,70121 27677,30-09-2016 08:02:25
+83012 37742,70121 27677,30-09-2016 08:08:13
+92428 82401,97385 29751,30-09-2016 08:09:17
+94480 64700,90088 09624,30-09-2016 08:10:15
+77950 18278,89078 69605,30-09-2016 08:10:51
+92413 38675,90362 07317,30-09-2016 08:10:53
+93420 59147,90357 17994,30-09-2016 08:18:03
+94497 44333,97385 70012,30-09-2016 08:21:10
+90351 49472,90199 67471,30-09-2016 08:26:30
+92411 96415,78993 92058,30-09-2016 08:28:36
+90362 07317,92413 38675,30-09-2016 08:31:16
+94497 77615,81517 73746,30-09-2016 08:37:34
+97449 50000,78295 78750,30-09-2016 08:37:59
+78298 02848,99001 95783,30-09-2016 08:42:51
+81515 65055,78295 48262,30-09-2016 08:52:16
+92413 38675,90362 07317,30-09-2016 08:58:22
+94006 62384,99616 15114,30-09-2016 08:59:03
+89078 69605,77950 18278,30-09-2016 08:59:33
+98440 68457,95264 40233,30-09-2016 09:01:07
+90359 52497,98454 90038,30-09-2016 09:03:18
+97406 06245,97403 09983,30-09-2016 09:12:49
+98449 60656,97414 62784,30-09-2016 09:14:08
+93436 09781,98448 72117,30-09-2016 09:19:57
+94488 97308,97391 99665,30-09-2016 09:22:41
+74060 75431,92413 79027,30-09-2016 09:23:18
+93423 23000,98458 13389,30-09-2016 09:28:01
+99610 89720,90197 69887,30-09-2016 09:30:02
+90351 49472,90199 67471,30-09-2016 09:30:33
+84313 45689,78295 65598,30-09-2016 09:32:48
+81526 05544,99612 41256,30-09-2016 09:33:05
+97380 60551,81524 55552,30-09-2016 09:36:49
+98446 78140,98444 72482,30-09-2016 09:37:40
+74060 75431,92413 79027,30-09-2016 09:44:29
+78299 99223,92424 51984,30-09-2016 09:49:34
+97391 99665,90355 94399,30-09-2016 09:51:00
+90365 51029,97380 60551,30-09-2016 09:52:39
+97425 12708,90366 36573,30-09-2016 09:53:41
+97391 99665,90368 72970,30-09-2016 09:56:34
+70121 27677,78295 48262,30-09-2016 09:59:45
+98454 07778,93412 66159,30-09-2016 10:00:49
+92411 96415,93435 21961,30-09-2016 10:10:18
+90359 91512,94492 23068,30-09-2016 10:15:54
+78295 48262,81515 65055,30-09-2016 10:27:09
+87141 37314,93435 31225,30-09-2016 10:30:16
+95262 44233,98442 33257,30-09-2016 10:37:44
+99612 41256,81526 05544,30-09-2016 10:40:42
+98453 86521,93410 56456,30-09-2016 10:41:50
+81513 30231,90365 06212,30-09-2016 10:42:08
+90368 72970,97391 99665,30-09-2016 10:44:50
+97449 50000,95269 20533,30-09-2016 10:52:32
+94499 46077,83013 02552,30-09-2016 10:53:03
+94480 64700,90088 09624,30-09-2016 10:55:31
+94499 20763,97386 20071,30-09-2016 11:00:46
+84311 10322,90359 79636,30-09-2016 11:17:58
+98452 19037,90355 94399,30-09-2016 11:21:21
+81525 78007,93418 41992,30-09-2016 11:22:04
+98453 86521,93410 56456,30-09-2016 11:23:23
+98454 07778,93412 66159,30-09-2016 11:25:29
+90359 52497,97390 23922,30-09-2016 11:29:50
+89078 69605,77950 18278,30-09-2016 11:33:03
+94489 95536,93418 82576,30-09-2016 11:33:37
+97424 53609,97385 70012,30-09-2016 11:37:31
+90356 11723,81525 12041,30-09-2016 11:40:49
+92411 96415,97406 74488,30-09-2016 11:44:22
+92428 82401,97385 29751,30-09-2016 11:48:22
+90359 91512,94492 23068,30-09-2016 11:54:08
+97403 49292,98445 33687,30-09-2016 11:54:38
+87141 73076,78290 30467,30-09-2016 12:05:26
+93410 98013,98441 32533,30-09-2016 12:07:04
+97403 09983,90198 03659,30-09-2016 12:08:36
+98453 86521,93410 56456,30-09-2016 12:09:18
+84319 39746,95263 76972,30-09-2016 12:13:32
+99612 41256,81526 05544,30-09-2016 12:16:26
+98454 90038,90359 52497,30-09-2016 12:17:07
+97424 21092,90351 35947,30-09-2016 12:24:22
+98449 60656,90084 16988,30-09-2016 12:27:39
+93422 47940,90084 16988,30-09-2016 12:33:52
+97416 29480,94489 72078,30-09-2016 12:37:57
+97389 12538,90352 50054,30-09-2016 12:38:49
+89078 69605,77950 18278,30-09-2016 12:39:54
+97393 04671,98444 42212,30-09-2016 12:42:46
+98456 86153,90197 24124,30-09-2016 12:49:58
+94487 29969,97419 41164,30-09-2016 12:50:57
+98446 66723,97422 22278,30-09-2016 12:51:39
+94482 95223,97425 92186,30-09-2016 12:52:20
+99001 95783,89076 36757,30-09-2016 12:53:38
+89076 36757,99001 95783,30-09-2016 12:56:42
+78133 10302,93423 23000,30-09-2016 12:57:48
+93423 23000,78133 10302,30-09-2016 13:03:48
+90351 35947,97424 21092,30-09-2016 13:06:02
+98445 42844,99617 74886,30-09-2016 13:14:35
+97422 22278,98446 66723,30-09-2016 13:15:32
+98444 95768,99003 47921,30-09-2016 13:26:36
+97424 22395,90365 06212,30-09-2016 13:28:50
+97380 60551,81524 55552,30-09-2016 13:30:42
+78299 99223,92424 51984,30-09-2016 13:32:59
+94495 34273,94491 05266,30-09-2016 13:33:07
+90084 16988,98449 60656,30-09-2016 13:55:41
+78290 30467,87141 73076,30-09-2016 13:58:39
+90365 51029,97380 60551,30-09-2016 14:00:16
+81517 73746,94497 77615,30-09-2016 14:12:04
+97403 09983,90198 03659,30-09-2016 14:22:12
+93427 56500,98447 12671,30-09-2016 14:24:42
+90359 99240,94491 55790,30-09-2016 14:25:16
+98451 87493,97424 21092,30-09-2016 14:26:45
+98446 66723,97422 22278,30-09-2016 14:31:31
+78295 60375,93410 98013,30-09-2016 14:32:38
+95262 44233,97393 04671,30-09-2016 14:35:59
+97395 95120,94490 65627,30-09-2016 14:36:36
+78133 10302,93423 23000,30-09-2016 14:46:00
+95262 44233,97393 04671,30-09-2016 14:50:29
+87146 31956,83019 39880,30-09-2016 14:51:10
+90366 69257,90082 61126,30-09-2016 14:55:40
+94497 77615,81517 73746,30-09-2016 14:57:16
+97428 35959,97446 95253,30-09-2016 14:58:41
+98449 60656,90084 16988,30-09-2016 14:59:50
+94487 29969,97419 41164,30-09-2016 15:01:24
+70121 27677,90359 79636,30-09-2016 15:03:54
+90359 91512,94492 23068,30-09-2016 15:06:19
+97416 29480,94489 72078,30-09-2016 15:09:59
+94486 40312,97424 60171,30-09-2016 15:10:59
+94492 23068,90359 91512,30-09-2016 15:13:15
+98441 32533,70129 62374,30-09-2016 15:18:36
+99004 86250,97390 23922,30-09-2016 15:20:33
+92413 38675,90362 07317,30-09-2016 15:39:51
+99617 74886,98445 42844,30-09-2016 15:41:09
+81522 26166,97414 62784,30-09-2016 15:43:16
+97414 62784,98449 60656,30-09-2016 15:46:43
+94487 29969,97419 41164,30-09-2016 15:50:31
+99616 15114,94006 62384,30-09-2016 15:56:52
+90351 35947,97424 21092,30-09-2016 15:58:41
+98440 02823,81515 42171,30-09-2016 15:59:32
+97419 41164,94487 29969,30-09-2016 16:02:27
+94488 97308,97391 99665,30-09-2016 16:06:20
+78295 78750,97449 50000,30-09-2016 16:07:31
+98445 33687,97403 49292,30-09-2016 16:10:44
+98452 19037,90355 94399,30-09-2016 16:20:56
+94489 72078,97416 29480,30-09-2016 16:21:57
+94489 95536,94492 23068,30-09-2016 16:23:14
+97416 17124,90194 00845,30-09-2016 16:28:52
+98454 90038,74066 31484,30-09-2016 16:29:35
+84314 16122,94499 20763,30-09-2016 16:30:32
+98442 33257,95262 44233,30-09-2016 16:32:47
+93410 98013,98441 32533,30-09-2016 16:33:38
+93435 31225,87141 37314,30-09-2016 16:33:59
+74066 93594,78136 65840,30-09-2016 16:36:03
+98453 86521,93410 56456,30-09-2016 16:38:41
+93412 66159,98454 07778,30-09-2016 16:39:07
+98440 02823,81515 42171,30-09-2016 16:39:09
+97406 74488,92411 96415,30-09-2016 16:39:53
+92428 82401,97385 29751,30-09-2016 16:41:54
+93418 82576,94489 95536,30-09-2016 16:49:04
+97448 02140,97418 46131,30-09-2016 16:51:15
+97393 04671,95262 44233,30-09-2016 16:56:42
+90359 79636,84311 10322,30-09-2016 17:02:24
+70121 27677,78295 48262,30-09-2016 17:04:26
+97447 92655,97404 63904,30-09-2016 17:15:44
+92414 22596,93421 63491,30-09-2016 17:17:06
+84311 10322,90359 79636,30-09-2016 17:23:57
+90084 16988,93422 47940,30-09-2016 17:27:28
+89078 69605,77950 18278,30-09-2016 17:30:06
+97447 92655,84319 42810,30-09-2016 17:36:55
+81517 73746,94497 77615,30-09-2016 17:39:14
+81515 65055,78295 48262,30-09-2016 17:41:23
+99003 47921,98444 95768,30-09-2016 17:51:39
+98452 19037,90355 94399,30-09-2016 17:51:46
+97385 70012,94497 44333,30-09-2016 17:53:01
+90359 79636,84311 10322,30-09-2016 17:53:14
+94491 05266,94495 34273,30-09-2016 17:58:39
+98454 90038,90359 52497,30-09-2016 17:59:30
+78295 65598,98440 65896,30-09-2016 18:00:48
+97449 50000,95269 20533,30-09-2016 18:01:48
+93412 66159,94499 20763,30-09-2016 18:05:52
+98454 07778,93412 66159,30-09-2016 18:10:13
+81517 73746,94497 77615,30-09-2016 18:17:40
+90359 79636,84311 10322,30-09-2016 18:18:09
+98446 78140,98440 65896,30-09-2016 18:19:42
+84314 00609,99007 06998,30-09-2016 18:20:14
+93422 47940,90084 16988,30-09-2016 18:22:16
+94491 55790,90359 99240,30-09-2016 18:24:46
+97386 20071,94499 20763,30-09-2016 18:25:29
+93418 41992,97385 35042,30-09-2016 18:29:52
+98454 07778,93412 66159,30-09-2016 18:31:57
+92415 91418,94489 72078,30-09-2016 18:41:39
+99001 95783,89076 36757,30-09-2016 19:02:13
+98440 65896,98446 78140,30-09-2016 19:08:14
+94487 29969,97419 41164,30-09-2016 19:09:18
+78136 42599,97399 92703,30-09-2016 19:12:01
+93434 31551,90088 09624,30-09-2016 19:13:46
+90359 91512,94492 23068,30-09-2016 19:17:05
+98449 60656,97414 62784,30-09-2016 19:21:46
+94487 29969,97419 41164,30-09-2016 19:24:32
+92424 51984,78299 99223,30-09-2016 19:24:42
+93416 07259,78138 56841,30-09-2016 19:25:58
+97385 29751,92428 82401,30-09-2016 19:30:14
+98454 07778,93412 66159,30-09-2016 19:38:22
+93412 66159,98454 07778,30-09-2016 19:38:35
+94497 44333,90087 42537,30-09-2016 19:41:06
+94488 97308,97391 99665,30-09-2016 19:50:15
+98451 87493,97424 21092,30-09-2016 19:55:58
+90087 42537,94497 44333,30-09-2016 19:56:18
+90357 17994,93420 59147,30-09-2016 19:58:55
+98440 65896,78295 65598,30-09-2016 20:04:55
+78133 71458,70127 59322,30-09-2016 20:05:03
+94005 06213,98453 46196,30-09-2016 20:07:16
+93412 66159,98454 07778,30-09-2016 20:07:57
+90088 09624,94480 64700,30-09-2016 20:11:46
+78290 30467,87141 73076,30-09-2016 20:12:16
+98449 60656,97414 62784,30-09-2016 20:12:23
+97426 75324,78138 56841,30-09-2016 20:14:59
+97406 74488,90358 98099,30-09-2016 20:20:13
+70121 27677,90359 79636,30-09-2016 20:23:17
+94492 23068,90359 91512,30-09-2016 20:26:10
+97449 50000,78295 78750,30-09-2016 20:26:38
+99616 15114,94006 62384,30-09-2016 20:32:08
+90084 16988,93422 47940,30-09-2016 20:32:43
+74066 31484,98454 90038,30-09-2016 20:37:26
+89071 31755,78290 99865,30-09-2016 20:39:36
+94492 23068,94489 95536,30-09-2016 20:41:55
+78290 31269,97386 37259,30-09-2016 20:42:37
+92411 96415,77956 90632,30-09-2016 20:44:23
+97393 04671,95262 44233,30-09-2016 20:48:30
+84313 45689,78295 65598,30-09-2016 20:51:19
+70121 27677,78295 48262,30-09-2016 20:52:04
+78136 65840,74066 93594,30-09-2016 20:54:53
+98453 46196,94005 06213,30-09-2016 21:04:38
+90083 59148,97421 07528,30-09-2016 21:17:47
+78295 65598,98440 65896,30-09-2016 21:21:51
+93434 31551,90088 09624,30-09-2016 21:22:49
+98446 66723,97422 22278,30-09-2016 21:22:59
+94487 29969,97419 41164,30-09-2016 21:39:32
+94489 72078,97416 29480,30-09-2016 21:40:22
+87146 31956,83019 39880,30-09-2016 21:41:52
+90356 11723,81525 12041,30-09-2016 21:43:37
+90355 94399,97391 99665,30-09-2016 21:44:20
+98444 95768,99003 47921,30-09-2016 21:51:43
+97415 99182,97393 04671,30-09-2016 21:56:07
+94485 80091,84312 48999,30-09-2016 22:10:01
+81519 62015,99009 32475,30-09-2016 22:11:36
+97385 70012,94497 44333,30-09-2016 22:14:54
+93416 07259,78138 56841,30-09-2016 22:15:15
+97416 29480,94489 72078,30-09-2016 22:18:50
+98449 60656,90084 16988,30-09-2016 22:22:22
+92414 22596,93421 63491,30-09-2016 22:23:08
+97420 86635,90193 20957,30-09-2016 22:23:33
+97412 66065,94006 62384,30-09-2016 22:24:28
+94489 72078,92415 91418,30-09-2016 22:29:39
+98445 42844,99617 74886,30-09-2016 22:34:23
+98452 19037,90355 94399,30-09-2016 22:37:35
+93412 66159,98454 07778,30-09-2016 22:42:07
+98448 86633,78293 91304,30-09-2016 22:44:30
+78295 65598,98440 65896,30-09-2016 22:50:24
+90197 24124,99612 41256,30-09-2016 22:51:07
+92411 96415,93435 21961,30-09-2016 22:59:23
+98440 65896,78295 65598,30-09-2016 23:02:47
+81525 78007,93418 41992,30-09-2016 23:03:08
+81520 43406,92421 64236,30-09-2016 23:11:25
+78993 92058,92411 96415,30-09-2016 23:14:19
+94487 29969,97419 41164,30-09-2016 23:20:01
+94499 20763,84314 16122,30-09-2016 23:26:42
+94499 20763,84314 16122,30-09-2016 23:28:07
+99009 32475,78138 56841,30-09-2016 23:38:14
+97395 95120,94490 65627,30-09-2016 23:46:32
+70121 27677,90359 79636,30-09-2016 23:47:05
+87141 73076,78290 30467,30-09-2016 23:51:31
+81526 05544,99612 41256,30-09-2016 23:54:04
+90365 06212,81513 30231,30-09-2016 23:59:06
diff --git a/sidebars.js b/sidebars.js
index 4222d77..b05f262 100644
--- a/sidebars.js
+++ b/sidebars.js
@@ -34,6 +34,13 @@ const sidebars = {
collapsed: true,
items: [{type: 'autogenerated', dirName: 'intermediate_python_projects'}]
},
+ {
+ type: 'category',
+ label: 'Udacity Data Structures and Algorithms Projects',
+ collapsible: true,
+ collapsed: true,
+ items: [{type: 'autogenerated', dirName: 'data_structures_and_algorithms'}]
+ },
{
type: 'category',
label: 'Udacity Intro ML with Pytorch Projects',