├── LICENSE ├── README.md ├── consoleoutput-repeating.py ├── consoleoutput.py ├── firebase.py ├── readout.txt ├── temp-humidity.py └── tempreader ├── bedroom.json ├── output.txt ├── reader.cs └── temp.png /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | {description} 294 | Copyright (C) {year} {fullname} 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | {signature of Ty Coon}, 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | 341 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Raspberry Pi Temperature Monitoring 2 | This is a set of scripts for monitoring ambient room temperature with your Raspberry Pi. 3 | 4 |

5 | ###The full tutorial is available here 6 | 7 | ###Web interface to view results 8 | 9 | Feel free to fork it and use it as a starting point for other weather related projects. 10 | -------------------------------------------------------------------------------- /consoleoutput-repeating.py: -------------------------------------------------------------------------------- 1 | ##Initial file from adafruit tutorials 2 | 3 | import os 4 | import glob 5 | import time 6 | os.system('modprobe w1-gpio') 7 | os.system('modprobe w1-therm') 8 | base_dir = '/sys/bus/w1/devices/' 9 | device_folder = glob.glob(base_dir + '28*')[0] 10 | device_file = device_folder + '/w1_slave' 11 | 12 | def read_temp_raw(): 13 | f = open(device_file, 'r') 14 | lines = f.readlines() 15 | f.close() 16 | return lines 17 | 18 | def read_temp(): 19 | lines = read_temp_raw() 20 | while lines[0].strip()[-3:] != 'YES': 21 | time.sleep(0.2) 22 | lines = read_temp_raw() 23 | equals_pos = lines[1].find('t=') 24 | if equals_pos != -1: 25 | temp_string = lines[1][equals_pos+2:] 26 | temp_c = float(temp_string) / 1000.0 27 | temp_f = temp_c * 9.0 / 5.0 + 32.0 28 | return temp_c, temp_f 29 | 30 | while True: 31 | print(read_temp()) 32 | time.sleep(1) 33 | -------------------------------------------------------------------------------- /consoleoutput.py: -------------------------------------------------------------------------------- 1 | import os 2 | import glob 3 | import time 4 | import subprocess 5 | import calendar 6 | import time 7 | import datetime 8 | 9 | #initialize 10 | os.system('modprobe w1-gpio') 11 | os.system('modprobe w1-therm') 12 | 13 | #device 14 | base_dir = '/sys/bus/w1/devices/' 15 | device_folder = glob.glob(base_dir + '28*')[0] 16 | device_file = device_folder + '/w1_slave' 17 | 18 | # Opens raw device, code changed to reflect issue in Raspian 19 | def read_temp_raw(): 20 | catdata = subprocess.Popen(['cat',device_file], stdout=subprocess.PIPE, stderr=subprocess.PIPE) 21 | out,err = catdata.communicate() 22 | out_decode = out.decode('utf-8') 23 | lines = out_decode.split('\n') 24 | return lines 25 | 26 | # Reads temperature, outputs farenhiet 27 | def read_temp(): 28 | lines = read_temp_raw() 29 | while lines[0].strip()[-3:] != 'YES': 30 | time.sleep(0.2) 31 | lines = read_temp_raw() 32 | equals_pos = lines[1].find('t=') 33 | if equals_pos != -1: 34 | temp_string = lines[1][equals_pos+2:] 35 | temp_c = float(temp_string) / 1000.0 36 | temp_f = temp_c * 9.0 / 5.0 + 32.0 37 | return temp_f 38 | 39 | print str(calendar.timegm(time.gmtime())) + ',' + str(read_temp()) -------------------------------------------------------------------------------- /firebase.py: -------------------------------------------------------------------------------- 1 | import os 2 | import glob 3 | import subprocess 4 | import calendar 5 | import time 6 | import urllib2 7 | import json 8 | 9 | #initialize 10 | os.system('modprobe w1-gpio') 11 | os.system('modprobe w1-therm') 12 | 13 | #device 14 | base_dir = '/sys/bus/w1/devices/' 15 | device_folder = glob.glob(base_dir + '28*')[0] 16 | device_file = device_folder + '/w1_slave' 17 | 18 | # Opens raw device, code changed to reflect issue in Raspian 19 | def read_temp_raw(): 20 | catdata = subprocess.Popen(['cat',device_file], stdout=subprocess.PIPE, stderr=subprocess.PIPE) 21 | out,err = catdata.communicate() 22 | out_decode = out.decode('utf-8') 23 | lines = out_decode.split('\n') 24 | return lines 25 | 26 | # Reads temperature, outputs farenhiet 27 | def read_temp(): 28 | lines = read_temp_raw() 29 | while lines[0].strip()[-3:] != 'YES': 30 | time.sleep(0.2) 31 | lines = read_temp_raw() 32 | equals_pos = lines[1].find('t=') 33 | if equals_pos != -1: 34 | temp_string = lines[1][equals_pos+2:] 35 | temp_c = float(temp_string) / 1000.0 36 | temp_f = temp_c * 9.0 / 5.0 + 32.0 37 | return temp_f 38 | 39 | ## Please add some authentication or a secret here! 40 | url = 'https://yourfirebaseapp.firebaseio.com/readings.json' 41 | 42 | postdata = { 43 | 'date': str(calendar.timegm(time.gmtime())), 44 | 'temp': str(read_temp()) 45 | } 46 | 47 | req = urllib2.Request(url) 48 | req.add_header('Content-Type','application/json') 49 | data = json.dumps(postdata) 50 | 51 | response = urllib2.urlopen(req,data) 52 | 53 | ##uncomment if you want this to repeat: 54 | #while True: 55 | # response = urllib2.urlopen(req,data) 56 | # time.sleep(1) 57 | -------------------------------------------------------------------------------- /readout.txt: -------------------------------------------------------------------------------- 1 | (26.937, 80.48660000000001) 2 | (26.937, 80.48660000000001) 3 | (27.0, 80.6) 4 | (27.0, 80.6) 5 | (27.0, 80.6) 6 | (27.0, 80.6) 7 | (27.0, 80.6) 8 | (27.0, 80.6) 9 | (27.0, 80.6) 10 | (27.0, 80.6) 11 | (27.0, 80.6) 12 | (27.0, 80.6) 13 | (27.0, 80.6) 14 | (27.0, 80.6) 15 | (27.0, 80.6) 16 | (27.0, 80.6) 17 | (27.0, 80.6) 18 | -------------------------------------------------------------------------------- /temp-humidity.py: -------------------------------------------------------------------------------- 1 | import os 2 | import glob 3 | import subprocess 4 | import calendar 5 | import time 6 | import urllib2 7 | import json 8 | import Adafruit_DHT 9 | 10 | #initialize 11 | os.system('modprobe w1-gpio') 12 | os.system('modprobe w1-therm') 13 | sensor = Adafruit_DHT.DHT22 14 | pin = 8 15 | 16 | #Temperature device 17 | base_dir = '/sys/bus/w1/devices/' 18 | device_folder = glob.glob(base_dir + '28*')[0] 19 | device_file = device_folder + '/w1_slave' 20 | 21 | # Opens raw device, code changed to reflect issue in Raspian 22 | def read_temp_raw(): 23 | catdata = subprocess.Popen(['cat',device_file], stdout=subprocess.PIPE, stderr=subprocess.PIPE) 24 | out,err = catdata.communicate() 25 | out_decode = out.decode('utf-8') 26 | lines = out_decode.split('\n') 27 | return lines 28 | 29 | # Reads temperature, outputs farenheit 30 | def read_temp(): 31 | lines = read_temp_raw() 32 | while lines[0].strip()[-3:] != 'YES': 33 | time.sleep(0.2) 34 | lines = read_temp_raw() 35 | equals_pos = lines[1].find('t=') 36 | if equals_pos != -1: 37 | temp_string = lines[1][equals_pos+2:] 38 | temp_c = float(temp_string) / 1000.0 39 | temp_f = temp_c * 9.0 / 5.0 + 32.0 40 | return temp_f 41 | 42 | # Try to grab a sensor reading. Use the read_retry method which will retry up 43 | # to 15 times to get a sensor reading (waiting 2 seconds between each retry). 44 | humidity, temperature = Adafruit_DHT.read_retry(sensor, pin) 45 | 46 | url = 'http://[YOUR WEBSITE]/api/status/' 47 | 48 | postdata = { 49 | 50 | 'tempFahrenheit' : str(read_temp()), 51 | 'tempCelcius' : temperature, 52 | 'humidity' : humidity 53 | } 54 | 55 | req = urllib2.Request(url) 56 | req.add_header('Content-Type','application/json') 57 | data = json.dumps(postdata) 58 | 59 | response = urllib2.urlopen(req,data) 60 | 61 | #add in Azure 62 | url2 = 'http://[YOUR WEBSITE]/api/Reading/' 63 | 64 | postdata = { 65 | 'temp': str(read_temp()) 66 | } 67 | 68 | req2 = urllib2.Request(url2) 69 | req2.add_header('Content-Type','application/json') 70 | data2 = json.dumps(postdata) 71 | 72 | response = urllib2.urlopen(req2,data2) 73 | -------------------------------------------------------------------------------- /tempreader/output.txt: -------------------------------------------------------------------------------- 1 | 1437963721,79.8116 2 | 1437963781,80.375 3 | 1437963841,80.375 4 | 1437963902,80.2616 5 | 1437963961,80.15 6 | 1437964022,80.2616 7 | 1437964081,80.2616 8 | 1437964141,79.925 9 | 1437964187,79.925 10 | 1437964202,79.8116 11 | 1437964261,85.8866 12 | 1437964322,86.0 13 | 1437964381,84.5366 14 | 1437964441,83.75 15 | 1437964501,85.325 16 | 1437964561,87.0116 17 | 1437964622,85.2116 18 | 1437964681,82.2866 19 | 1437964742,80.6 20 | 1437964801,79.3616 21 | 1437964862,78.575 22 | 1437964921,78.125 23 | 1437964981,77.7866 24 | 1437965041,77.5616 25 | 1437965101,77.3366 26 | 1437965162,77.225 27 | 1437965221,77.225 28 | 1437965282,77.1116 29 | 1437965341,77.0 30 | 1437965402,76.775 31 | 1437965461,76.6616 32 | 1437965521,76.6616 33 | 1437965581,76.6616 34 | 1437965642,76.6616 35 | 1437965701,76.55 36 | 1437965762,76.8866 37 | 1437965821,77.5616 38 | 1437965882,77.225 39 | 1437965941,77.0 40 | 1437966001,76.775 41 | 1437966062,76.55 42 | 1437966121,76.4366 43 | 1437966182,76.325 44 | 1437966242,76.2116 45 | 1437966301,76.1 46 | 1437966362,75.9866 47 | 1437966421,75.875 48 | 1437966482,75.7616 49 | 1437966541,75.7616 50 | 1437966601,75.7616 51 | 1437966661,75.7616 52 | 1437966721,75.7616 53 | 1437966782,75.65 54 | 1437966841,75.65 55 | 1437966902,75.65 56 | 1437966961,75.5366 57 | 1437967022,75.5366 58 | 1437967081,75.5366 59 | 1437967141,75.5366 60 | 1437967201,75.5366 61 | 1437967261,75.5366 62 | 1437967321,75.5366 63 | 1437967381,75.5366 64 | 1437967442,75.5366 65 | 1437967501,75.425 66 | 1437967562,75.3116 67 | 1437967621,75.3116 68 | 1437967682,75.2 69 | 1437967741,75.0866 70 | 1437967801,75.0866 71 | 1437967861,75.0866 72 | 1437967921,75.2 73 | 1437967982,75.0866 74 | 1437968041,75.0866 75 | 1437968102,75.0866 76 | 1437968161,74.975 77 | 1437968222,74.8616 78 | 1437968281,74.8616 79 | 1437968342,74.75 80 | 1437968401,74.8616 81 | 1437968461,74.75 82 | 1437968521,74.75 83 | 1437968581,74.525 84 | 1437968642,73.7366 85 | 1437968701,73.2866 86 | 1437968762,73.0616 87 | 1437968821,72.725 88 | 1437968882,72.6116 89 | 1437968941,72.5 90 | 1437969001,72.275 91 | 1437969061,72.1616 92 | 1437969121,72.3866 93 | 1437969182,72.725 94 | 1437969241,72.8366 95 | 1437969302,72.95 96 | 1437969361,72.95 97 | 1437969422,72.95 98 | 1437969481,72.95 99 | 1437969541,72.95 100 | 1437969601,73.0616 101 | 1437969661,73.0616 102 | 1437969722,73.175 103 | 1437969781,73.0616 104 | 1437969841,72.95 105 | 1437969901,72.725 106 | 1437969961,72.6116 107 | 1437970022,72.5 108 | 1437970081,72.3866 109 | 1437970142,72.275 110 | 1437970201,72.1616 111 | 1437970262,72.05 112 | 1437970321,72.05 113 | 1437970381,71.9366 114 | 1437970441,72.6116 115 | 1437970501,72.95 116 | 1437970562,73.175 117 | 1437970621,73.5116 118 | 1437970682,73.625 119 | 1437970741,73.7366 120 | 1437970802,73.85 121 | 1437970861,73.9616 122 | 1437970922,73.9616 123 | 1437970981,74.075 124 | 1437971041,74.075 125 | 1437971101,74.075 126 | 1437971161,74.075 127 | 1437971222,74.075 128 | 1437971281,74.1866 129 | 1437971342,74.1866 130 | 1437971401,74.075 131 | 1437971461,74.1866 132 | 1437971521,74.1866 133 | 1437971581,74.1866 134 | 1437971642,74.1866 135 | 1437971701,74.3 136 | 1437971761,74.3 137 | 1437971821,74.3 138 | 1437971882,74.3 139 | 1437971941,74.3 140 | 1437972001,74.3 141 | 1437972062,74.3 142 | 1437972121,74.3 143 | 1437972182,74.3 144 | 1437972242,74.4116 145 | 1437972301,74.4116 146 | 1437972361,74.4116 147 | 1437972422,74.525 148 | 1437972481,74.4116 149 | 1437972541,74.525 150 | 1437972602,74.525 151 | 1437972661,74.4116 152 | 1437972721,74.525 153 | 1437972782,74.525 154 | 1437972842,74.525 155 | 1437972901,74.525 156 | 1437972962,74.525 157 | 1437973021,74.525 158 | 1437973081,74.525 159 | 1437973141,74.525 160 | 1437973202,74.525 161 | 1437973261,74.525 162 | 1437973321,74.4116 163 | 1437973381,74.4116 164 | 1437973441,74.3 165 | 1437973502,74.3 166 | 1437973561,74.3 167 | 1437973621,74.4116 168 | 1437973682,74.4116 169 | 1437973741,74.4116 170 | 1437973801,74.525 171 | 1437973861,74.525 172 | 1437973921,74.4116 173 | 1437973982,74.525 174 | 1437974041,74.525 175 | 1437974101,74.4116 176 | 1437974161,74.4116 177 | 1437974222,74.525 178 | 1437974281,74.525 179 | 1437974341,74.6366 180 | 1437974401,74.525 181 | 1437974461,74.6366 182 | 1437974522,74.525 183 | 1437974581,74.525 184 | 1437974641,74.525 185 | 1437974701,74.525 186 | 1437974761,74.525 187 | 1437974821,74.4116 188 | 1437974882,74.3 189 | 1437974941,74.3 190 | 1437975002,74.1866 191 | 1437975061,74.1866 192 | 1437975121,74.075 193 | 1437975181,74.075 194 | 1437975241,74.075 195 | 1437975302,74.1866 196 | 1437975361,74.1866 197 | 1437975422,74.3 198 | 1437975481,74.4116 199 | 1437975541,74.525 200 | 1437975601,74.525 201 | 1437975661,74.4116 202 | 1437975722,74.3 203 | 1437975781,74.4116 204 | 1437975842,74.6366 205 | 1437975901,74.75 206 | 1437975962,74.75 207 | 1437976021,74.75 208 | 1437976081,74.6366 209 | 1437976142,74.6366 210 | 1437976201,74.6366 211 | 1437976262,74.6366 212 | 1437976321,74.6366 213 | 1437976381,74.525 214 | 1437976441,74.525 215 | 1437976501,74.525 216 | 1437976562,74.6366 217 | 1437976621,74.75 218 | 1437976682,75.2 219 | 1437976741,75.7616 220 | 1437976802,75.9866 221 | 1437976861,75.7616 222 | 1437976922,75.5366 223 | 1437976981,75.425 224 | 1437977041,75.2 225 | 1437977101,74.975 226 | 1437977161,74.975 227 | 1437977221,74.975 228 | 1437977281,74.8616 229 | 1437977341,74.8616 230 | 1437977401,74.8616 231 | 1437977462,74.75 232 | 1437977521,74.75 233 | 1437977582,74.75 234 | 1437977641,74.6366 235 | 1437977701,74.6366 236 | 1437977761,74.6366 237 | 1437977821,74.6366 238 | 1437977882,74.6366 239 | 1437977941,74.6366 240 | 1437978001,74.6366 241 | 1437978061,74.6366 242 | 1437978121,74.6366 243 | 1437978181,74.6366 244 | 1437978241,74.6366 245 | 1437978302,74.75 246 | 1437978361,74.8616 247 | 1437978422,74.8616 248 | 1437978481,74.75 249 | 1437978542,74.75 250 | 1437978601,74.75 251 | 1437978661,74.6366 252 | 1437978721,74.525 253 | 1437978781,74.4116 254 | 1437978841,74.3 255 | 1437978901,74.3 256 | 1437978962,74.1866 257 | 1437979021,74.075 258 | 1437979082,74.1866 259 | 1437979141,74.1866 260 | 1437979202,74.1866 261 | 1437979261,74.1866 262 | 1437979322,74.1866 263 | 1437979381,74.1866 264 | 1437979441,74.75 265 | 1437979501,75.65 266 | 1437979561,76.6616 267 | 1437979622,76.55 268 | 1437979681,76.1 269 | 1437979742,76.325 270 | 1437979801,76.775 271 | 1437979862,76.325 272 | 1437979921,75.7616 273 | 1437979981,75.425 274 | 1437980041,75.0866 275 | 1437980101,74.975 276 | 1437980162,74.6366 277 | 1437980221,74.525 278 | 1437980282,74.3 279 | 1437980341,74.075 280 | 1437980402,73.85 281 | 1437980461,73.625 282 | 1437980522,73.5116 283 | 1437980581,73.5116 284 | 1437980642,73.2866 285 | 1437980701,73.175 286 | 1437980762,73.0616 287 | 1437980821,72.95 288 | 1437980881,72.8366 289 | 1437980942,72.725 290 | 1437981001,72.6116 291 | 1437981062,72.5 292 | 1437981121,72.5 293 | 1437981182,72.3866 294 | 1437981241,72.275 295 | 1437981301,72.275 296 | 1437981362,72.1616 297 | 1437981421,72.1616 298 | 1437981482,72.05 299 | 1437981541,72.1616 300 | 1437981601,71.9366 301 | 1437981661,71.825 302 | 1437981721,71.7116 303 | 1437981781,71.825 304 | 1437981841,71.7116 305 | 1437981902,71.6 306 | 1437981961,71.6 307 | 1437982022,71.4866 308 | 1437982081,71.375 309 | 1437982142,71.2616 310 | 1437982201,71.2616 311 | 1437982262,71.2616 312 | 1437982381,71.2616 313 | 1437982321,71.2616 314 | 1437982441,71.2616 315 | 1437982502,71.2616 316 | 1437982561,71.375 317 | 1437982621,71.375 318 | 1437982681,71.375 319 | 1437982741,71.375 320 | 1437982802,71.375 321 | 1437982861,71.375 322 | 1437982922,71.375 323 | 1437982981,71.375 324 | 1437983041,71.375 325 | 1437983101,71.375 326 | 1437983161,71.375 327 | 1437983221,71.2616 328 | 1437983281,71.2616 329 | 1437983342,71.2616 330 | 1437983401,71.2616 331 | 1437983462,71.15 332 | 1437983521,71.2616 333 | 1437983582,71.15 334 | 1437983641,71.15 335 | 1437983701,71.0366 336 | 1437983761,71.0366 337 | 1437983821,71.0366 338 | 1437983881,71.0366 339 | 1437983941,71.0366 340 | 1437984002,71.0366 341 | 1437984061,70.925 342 | 1437984122,70.925 343 | 1437984181,70.925 344 | 1437984242,70.925 345 | 1437984301,70.8116 346 | 1437984362,70.8116 347 | 1437984421,70.8116 348 | 1437984481,70.8116 349 | 1437984541,70.8116 350 | 1437984601,70.7 351 | 1437984662,70.7 352 | 1437984721,70.7 353 | 1437984782,70.8116 354 | 1437984841,70.7 355 | 1437984902,70.7 356 | 1437984961,70.5866 357 | 1437985022,70.5866 358 | 1437985081,70.5866 359 | 1437985142,70.5866 360 | 1437985201,70.5866 361 | 1437985261,70.5866 362 | 1437985321,70.475 363 | 1437985381,70.475 364 | 1437985441,70.3616 365 | 1437985501,70.475 366 | 1437985562,70.3616 367 | 1437985621,70.3616 368 | 1437985682,70.3616 369 | 1437985741,70.3616 370 | 1437985802,70.25 371 | 1437985861,70.3616 372 | 1437985922,70.25 373 | 1437985981,70.25 374 | 1437986042,70.25 375 | 1437986101,70.1366 376 | 1437986161,70.1366 377 | 1437986221,70.1366 378 | 1437986281,70.025 379 | 1437986342,70.1366 380 | 1437986401,70.025 381 | 1437986462,70.025 382 | 1437986521,70.025 383 | 1437986582,70.025 384 | 1437986641,70.025 385 | 1437986702,69.9116 386 | 1437986761,69.9116 387 | 1437986822,69.9116 388 | 1437986881,69.9116 389 | 1437986941,69.8 390 | 1437987001,69.8 391 | 1437987061,69.8 392 | 1437987121,69.8 393 | 1437987181,69.6866 394 | 1437987242,69.8 395 | 1437987301,69.6866 396 | 1437987362,69.6866 397 | 1437987421,69.6866 398 | 1437987482,69.575 399 | 1437987541,69.6866 400 | 1437987602,69.575 401 | 1437987661,69.575 402 | 1437987722,69.575 403 | 1437987781,69.575 404 | 1437987841,69.4616 405 | 1437987901,69.4616 406 | 1437987961,69.4616 407 | 1437988022,69.4616 408 | 1437988081,69.4616 409 | 1437988142,69.4616 410 | 1437988201,69.35 411 | 1437988262,69.35 412 | 1437988321,69.35 413 | 1437988382,69.35 414 | 1437988441,69.2366 415 | 1437988501,69.2366 416 | 1437988562,69.2366 417 | 1437988621,69.2366 418 | 1437988682,69.2366 419 | 1437988741,69.2366 420 | 1437988802,69.2366 421 | 1437988861,69.2366 422 | 1437988921,69.125 423 | 1437988981,69.125 424 | 1437989041,69.125 425 | 1437989101,69.125 426 | 1437989161,69.0116 427 | 1437989222,69.0116 428 | 1437989281,68.9 429 | 1437989342,69.0116 430 | 1437989401,68.9 431 | 1437989462,68.9 432 | 1437989521,68.9 433 | 1437989581,68.9 434 | 1437989641,68.9 435 | 1437989701,68.9 436 | 1437989762,68.9 437 | 1437989821,68.7866 438 | 1437989882,68.7866 439 | 1437989941,68.7866 440 | 1437990002,68.7866 441 | 1437990061,68.675 442 | 1437990121,68.675 443 | 1437990181,68.675 444 | 1437990241,68.675 445 | 1437990302,68.5616 446 | 1437990361,68.5616 447 | 1437990421,68.5616 448 | 1437990481,68.5616 449 | 1437990541,68.5616 450 | 1437990601,68.5616 451 | 1437990661,68.5616 452 | 1437990722,68.45 453 | 1437990781,68.45 454 | 1437990842,68.45 455 | 1437990901,68.45 456 | 1437990962,68.3366 457 | 1437991021,68.3366 458 | 1437991081,68.3366 459 | 1437991141,68.3366 460 | 1437991201,68.3366 461 | 1437991261,68.225 462 | 1437991321,68.225 463 | 1437991381,68.225 464 | 1437991441,68.225 465 | 1437991502,68.225 466 | 1437991561,68.1116 467 | 1437991622,68.1116 468 | 1437991681,68.1116 469 | 1437991742,68.1116 470 | 1437991801,68.1116 471 | 1437991862,68.0 472 | 1437991921,68.0 473 | 1437991982,68.0 474 | 1437992041,68.0 475 | 1437992101,67.8866 476 | 1437992161,68.0 477 | 1437992221,67.8866 478 | 1437992281,67.8866 479 | 1437992341,67.8866 480 | 1437992401,67.8866 481 | 1437992461,67.775 482 | 1437992522,67.8866 483 | 1437992581,67.775 484 | 1437992642,67.775 485 | 1437992701,67.6616 486 | 1437992762,67.6616 487 | 1437992821,67.775 488 | 1437992881,67.6616 489 | 1437992941,67.6616 490 | 1437993001,67.6616 491 | 1437993061,67.6616 492 | 1437993121,67.55 493 | 1437993181,67.6616 494 | 1437993241,67.55 495 | 1437993302,67.55 496 | 1437993361,67.55 497 | 1437993422,67.55 498 | 1437993481,67.4366 499 | 1437993542,67.4366 500 | 1437993601,67.4366 501 | 1437993662,67.4366 502 | 1437993721,67.4366 503 | 1437993781,67.4366 504 | 1437993841,67.325 505 | 1437993901,67.325 506 | 1437993962,67.325 507 | 1437994021,67.325 508 | 1437994082,67.325 509 | 1437994141,67.325 510 | 1437994202,67.2116 511 | 1437994261,67.325 512 | 1437994321,67.2116 513 | 1437994381,67.2116 514 | 1437994441,67.2116 515 | 1437994501,67.1 516 | 1437994561,67.1 517 | 1437994621,67.1 518 | 1437994681,67.1 519 | 1437994741,67.1 520 | 1437994801,67.1 521 | 1437994861,66.9866 522 | 1437994921,66.9866 523 | 1437994981,66.9866 524 | 1437995041,66.9866 525 | 1437995102,66.9866 526 | 1437995161,66.9866 527 | 1437995221,66.9866 528 | 1437995281,66.875 529 | 1437995341,66.875 530 | 1437995401,66.875 531 | 1437995461,66.875 532 | 1437995522,66.875 533 | 1437995581,66.7616 534 | 1437995642,66.7616 535 | 1437995701,66.875 536 | 1437995762,66.7616 537 | 1437995821,66.7616 538 | 1437995882,66.7616 539 | 1437995941,66.7616 540 | 1437996002,66.7616 541 | 1437996061,66.65 542 | 1437996121,66.65 543 | 1437996181,66.65 544 | 1437996241,66.65 545 | 1437996301,66.65 546 | 1437996362,66.65 547 | 1437996421,66.5366 548 | 1437996482,66.5366 549 | 1437996541,66.5366 550 | 1437996602,66.5366 551 | 1437996661,66.5366 552 | 1437996722,66.5366 553 | 1437996781,66.425 554 | 1437996842,66.425 555 | 1437996901,66.425 556 | 1437996961,66.425 557 | 1437997021,66.425 558 | 1437997081,66.425 559 | 1437997142,66.425 560 | 1437997201,66.3116 561 | 1437997262,66.3116 562 | 1437997321,66.3116 563 | 1437997382,66.3116 564 | 1437997441,66.3116 565 | 1437997501,66.3116 566 | 1437997562,66.2 567 | 1437997621,66.2 568 | 1437997682,66.2 569 | 1437997741,66.2 570 | 1437997802,66.0866 571 | 1437997861,66.2 572 | 1437997921,66.2 573 | 1437997981,66.2 574 | 1437998041,66.0866 575 | 1437998102,66.0866 576 | 1437998161,66.0866 577 | 1437998222,66.0866 578 | 1437998281,65.975 579 | 1437998342,65.975 580 | 1437998401,65.975 581 | 1437998462,65.975 582 | 1437998521,65.975 583 | 1437998582,65.975 584 | 1437998641,65.8616 585 | 1437998702,65.8616 586 | 1437998761,65.8616 587 | 1437998821,65.8616 588 | 1437998881,65.8616 589 | 1437998941,65.8616 590 | 1437999002,65.8616 591 | 1437999061,65.8616 592 | 1437999122,65.75 593 | 1437999181,65.75 594 | 1437999242,65.75 595 | 1437999301,65.75 596 | 1437999362,65.75 597 | 1437999421,65.75 598 | 1437999481,65.75 599 | 1437999541,65.6366 600 | 1437999601,65.6366 601 | 1437999661,65.6366 602 | 1437999721,65.6366 603 | 1437999782,65.6366 604 | 1437999841,65.525 605 | 1437999902,65.6366 606 | 1437999961,65.525 607 | 1438000022,65.525 608 | 1438000081,65.525 609 | 1438000141,65.525 610 | 1438000201,65.525 611 | 1438000261,65.4116 612 | 1438000321,65.4116 613 | 1438000382,65.4116 614 | 1438000441,65.4116 615 | 1438000502,65.4116 616 | 1438000561,65.4116 617 | 1438000621,65.4116 618 | 1438000681,65.3 619 | 1438000741,65.3 620 | 1438000802,65.3 621 | 1438000861,65.3 622 | 1438000922,65.3 623 | 1438000981,65.3 624 | 1438001042,65.1866 625 | 1438001101,65.1866 626 | 1438001161,65.1866 627 | 1438001221,65.1866 628 | 1438001281,65.1866 629 | 1438001341,65.1866 630 | 1438001401,65.1866 631 | 1438001462,65.1866 632 | 1438001521,65.075 633 | 1438001582,65.075 634 | 1438001641,65.075 635 | 1438001702,65.075 636 | 1438001761,65.075 637 | 1438001822,65.075 638 | 1438001881,65.075 639 | 1438001941,65.075 640 | 1438002001,64.9616 641 | 1438002061,64.9616 642 | 1438002121,64.9616 643 | 1438002181,64.9616 644 | 1438002241,64.9616 645 | 1438002301,64.85 646 | 1438002362,64.85 647 | 1438002421,64.85 648 | 1438002481,64.85 649 | 1438002541,64.85 650 | 1438002601,64.85 651 | 1438002662,64.85 652 | 1438002721,64.85 653 | 1438002781,64.85 654 | 1438002841,64.85 655 | 1438002901,64.7366 656 | 1438002961,64.7366 657 | 1438003021,64.7366 658 | 1438003082,64.7366 659 | 1438003141,64.7366 660 | 1438003202,64.625 661 | 1438003261,64.7366 662 | 1438003322,64.625 663 | 1438003381,64.625 664 | 1438003441,64.625 665 | 1438003501,64.625 666 | 1438003561,64.625 667 | 1438003621,64.625 668 | 1438003681,64.625 669 | 1438003742,64.625 670 | 1438003801,64.625 671 | 1438003861,64.625 672 | 1438003921,64.625 673 | 1438003982,64.5116 674 | 1438004041,64.5116 675 | 1438004101,64.5116 676 | 1438004162,64.625 677 | 1438004221,64.5116 678 | 1438004282,64.5116 679 | 1438004341,64.5116 680 | 1438004402,64.5116 681 | 1438004461,64.5116 682 | 1438004522,64.5116 683 | 1438004581,64.5116 684 | 1438004641,64.5116 685 | 1438004701,64.5116 686 | 1438004761,64.625 687 | 1438004821,64.625 688 | 1438004881,64.625 689 | 1438004941,64.625 690 | 1438005001,64.625 691 | 1438005061,64.625 692 | 1438005121,64.625 693 | 1438005182,64.625 694 | 1438005241,64.7366 695 | 1438005302,64.7366 696 | 1438005361,64.7366 697 | 1438005422,64.7366 698 | 1438005481,64.7366 699 | 1438005541,64.85 700 | 1438005601,64.85 701 | 1438005661,64.85 702 | 1438005721,64.9616 703 | 1438005781,64.9616 704 | 1438005841,65.075 705 | 1438005901,65.075 706 | 1438005962,65.1866 707 | 1438006021,65.4116 708 | 1438006082,65.6366 709 | 1438006141,65.975 710 | 1438006202,66.425 711 | 1438006261,66.7616 712 | 1438006321,67.1 713 | 1438006381,67.4366 714 | 1438006441,67.4366 715 | 1438006501,67.4366 716 | 1438006561,67.325 717 | 1438006621,67.2116 718 | 1438006681,67.1 719 | 1438006742,66.9866 720 | 1438006801,66.7616 721 | 1438006862,66.7616 722 | 1438006921,66.65 723 | 1438006982,66.5366 724 | 1438007041,66.5366 725 | 1438007102,66.425 726 | 1438007161,66.5366 727 | 1438007211,66.5366 728 | 1438007221,66.65 729 | 1438007281,66.65 730 | 1438007341,66.5366 731 | 1438007401,66.5366 732 | 1438007461,66.5366 733 | 1438007522,66.5366 734 | 1438007581,66.5366 735 | 1438007642,66.5366 736 | 1438007701,66.5366 737 | 1438007762,66.5366 738 | 1438007821,66.65 739 | 1438007881,66.65 740 | 1438007942,66.65 741 | 1438008001,66.7616 742 | 1438008062,66.875 743 | 1438008121,66.7616 744 | 1438008182,66.875 745 | 1438008241,66.7616 746 | 1438008301,66.875 747 | 1438008361,66.875 748 | 1438008421,66.875 749 | 1438008481,66.9866 750 | 1438008541,66.9866 751 | 1438008601,66.9866 752 | 1438008661,67.1 753 | 1438008722,67.1 754 | 1438008781,67.1 755 | 1438008842,67.2116 756 | 1438008901,67.2116 757 | 1438008962,67.2116 758 | 1438009021,67.2116 759 | 1438009081,67.325 760 | 1438009142,67.325 761 | 1438009201,67.325 762 | 1438009261,67.4366 763 | 1438009321,67.4366 764 | 1438009381,67.4366 765 | 1438009441,67.4366 766 | 1438009501,67.4366 767 | 1438009561,67.55 768 | 1438009621,67.55 769 | 1438009682,67.55 770 | 1438009741,67.55 771 | 1438009802,67.6616 772 | 1438009861,67.6616 773 | 1438009922,67.6616 774 | 1438009981,67.6616 775 | 1438010041,67.775 776 | 1438010101,67.775 777 | 1438010161,67.775 778 | 1438010221,67.775 779 | 1438010281,67.775 780 | 1438010341,67.775 781 | 1438010401,67.8866 782 | 1438010461,67.8866 783 | 1438010521,67.8866 784 | 1438010582,68.0 785 | 1438010641,68.0 786 | 1438010702,68.1116 787 | 1438010761,68.1116 788 | 1438010821,68.1116 789 | 1438010881,68.1116 790 | 1438010941,68.225 791 | 1438011001,68.225 792 | 1438011061,68.3366 793 | 1438011121,68.3366 794 | 1438011181,68.3366 795 | 1438011241,68.3366 796 | 1438011301,68.45 797 | 1438011362,68.45 798 | 1438011421,68.45 799 | 1438011482,68.45 800 | 1438011541,68.5616 801 | 1438011602,68.5616 802 | 1438011661,68.5616 803 | 1438011721,68.675 804 | 1438011781,68.675 805 | 1438011841,68.675 806 | 1438011901,68.675 807 | 1438011961,68.7866 808 | 1438012022,68.7866 809 | 1438012081,68.7866 810 | 1438012142,68.7866 811 | 1438012201,68.9 812 | 1438012262,68.9 813 | 1438012321,69.0116 814 | 1438012381,69.0116 815 | 1438012441,69.0116 816 | 1438012501,69.0116 817 | 1438012562,69.125 818 | 1438012621,69.125 819 | 1438012682,69.125 820 | 1438012741,69.125 821 | 1438012802,69.125 822 | 1438012861,69.125 823 | 1438012922,69.2366 824 | 1438012981,69.2366 825 | 1438013042,69.2366 826 | 1438013101,69.2366 827 | 1438013162,69.35 828 | 1438013221,69.35 829 | 1438013281,69.35 830 | 1438013341,69.35 831 | 1438013401,69.35 832 | 1438013461,69.4616 833 | 1438013521,69.35 834 | 1438013582,69.4616 835 | 1438013642,69.4616 836 | 1438013701,69.4616 837 | 1438013762,69.4616 838 | 1438013821,69.575 839 | 1438013881,69.575 840 | 1438013941,69.575 841 | 1438014001,69.6866 842 | 1438014061,69.6866 843 | 1438014121,69.8 844 | 1438014182,69.8 845 | 1438014241,69.8 846 | 1438014302,69.8 847 | 1438014361,69.9116 848 | 1438014422,69.9116 849 | 1438014481,69.9116 850 | 1438014542,69.9116 851 | 1438014601,70.025 852 | 1438014661,70.025 853 | 1438014721,70.025 854 | 1438014781,70.025 855 | 1438014841,70.1366 856 | 1438014901,70.1366 857 | 1438014961,70.1366 858 | 1438015021,70.25 859 | 1438015082,70.25 860 | 1438015141,70.25 861 | 1438015202,70.3616 862 | 1438015261,70.3616 863 | 1438015322,70.3616 864 | 1438015381,70.3616 865 | 1438015442,70.475 866 | 1438015501,70.475 867 | 1438015561,70.475 868 | 1438015622,70.475 869 | 1438015681,70.5866 870 | 1438015742,70.5866 871 | 1438015801,70.5866 872 | 1438015862,70.5866 873 | 1438015921,70.5866 874 | 1438015982,70.7 875 | 1438016041,70.7 876 | 1438016101,70.7 877 | 1438016161,70.7 878 | 1438016222,70.7 879 | 1438016281,70.7 880 | 1438016342,70.7 881 | 1438016401,70.8116 882 | 1438016461,70.8116 883 | 1438016522,70.8116 884 | 1438016581,70.8116 885 | 1438016641,70.8116 886 | 1438016701,70.925 887 | 1438016761,70.8116 888 | 1438016822,70.925 889 | 1438016881,70.925 890 | 1438016942,71.0366 891 | 1438017001,71.0366 892 | 1438017062,71.0366 893 | 1438017121,71.0366 894 | 1438017182,71.0366 895 | 1438017241,71.15 896 | 1438017302,71.15 897 | 1438017361,71.15 898 | 1438017421,71.15 899 | 1438017481,71.2616 900 | 1438017541,71.2616 901 | 1438017602,71.375 902 | 1438017661,71.375 903 | 1438017722,71.375 904 | 1438017781,71.375 905 | 1438017842,71.4866 906 | 1438017901,71.4866 907 | 1438017962,71.4866 908 | 1438018021,71.4866 909 | 1438018082,71.6 910 | 1438018141,71.4866 911 | 1438018201,71.6 912 | 1438018261,71.6 913 | 1438018321,71.6 914 | 1438018381,71.6 915 | 1438018441,71.6 916 | 1438018501,71.7116 917 | 1438018561,71.7116 918 | 1438018622,71.7116 919 | 1438018681,71.825 920 | 1438018742,71.7116 921 | 1438018801,71.825 922 | 1438018862,71.7116 923 | 1438018921,71.825 924 | 1438018982,71.7116 925 | 1438019042,71.825 926 | 1438019101,71.825 927 | 1438019162,71.825 928 | 1438019221,71.825 929 | 1438019282,71.9366 930 | 1438019341,71.825 931 | 1438019402,71.825 932 | 1438019461,71.825 933 | 1438019521,71.9366 934 | 1438019581,71.9366 935 | 1438019641,71.9366 936 | 1438019701,71.9366 937 | 1438019761,71.9366 938 | 1438019822,71.9366 939 | 1438019881,71.9366 940 | 1438019942,71.9366 941 | 1438020001,71.9366 942 | 1438020062,71.9366 943 | 1438020121,71.9366 944 | 1438020182,71.9366 945 | 1438020241,71.9366 946 | 1438020302,71.9366 947 | 1438020361,71.9366 948 | 1438020422,71.9366 949 | 1438020481,71.9366 950 | 1438020541,71.9366 951 | 1438020601,71.9366 952 | 1438020661,72.05 953 | 1438020722,72.05 954 | 1438020781,72.05 955 | 1438020842,72.1616 956 | 1438020901,72.1616 957 | 1438020962,72.1616 958 | 1438021021,72.1616 959 | 1438021082,72.275 960 | 1438021141,72.275 961 | 1438021202,72.275 962 | 1438021261,72.3866 963 | 1438021321,72.3866 964 | 1438021381,72.3866 965 | 1438021441,72.5 966 | 1438021502,72.5 967 | 1438021561,72.5 968 | 1438021622,72.5 969 | 1438021681,72.5 970 | 1438021742,72.5 971 | 1438021801,72.5 972 | 1438021861,72.5 973 | 1438021921,72.5 974 | 1438021981,72.3866 975 | 1438022041,72.5 976 | 1438022101,72.5 977 | 1438022162,72.3866 978 | 1438022221,72.5 979 | 1438022282,72.5 980 | 1438022341,72.5 981 | 1438022402,72.5 982 | 1438022461,72.5 983 | 1438022521,72.5 984 | 1438022581,72.5 985 | 1438022641,72.6116 986 | 1438022702,72.5 987 | 1438022761,72.6116 988 | 1438022821,72.6116 989 | 1438022881,72.6116 990 | 1438022941,72.6116 991 | 1438023001,72.6116 992 | 1438023061,72.6116 993 | 1438023122,72.725 994 | 1438023181,72.725 995 | 1438023242,72.725 996 | 1438023301,72.725 997 | 1438023362,72.725 998 | 1438023421,72.725 999 | 1438023482,72.725 1000 | 1438023541,72.725 1001 | 1438023601,72.725 1002 | 1438023661,72.8366 1003 | 1438023721,72.8366 1004 | 1438023781,72.8366 1005 | 1438023841,72.95 1006 | 1438023902,72.95 1007 | 1438023961,72.95 1008 | 1438024022,72.95 1009 | 1438024081,73.0616 1010 | 1438024141,73.0616 1011 | 1438024201,73.0616 1012 | 1438024261,73.0616 1013 | 1438024322,73.0616 1014 | 1438024381,73.0616 1015 | 1438024441,73.0616 1016 | 1438024501,73.175 1017 | 1438024561,73.175 1018 | 1438024621,73.175 1019 | 1438024681,73.2866 1020 | 1438024742,73.2866 1021 | 1438024801,73.2866 1022 | 1438024862,73.4 1023 | 1438024921,73.2866 1024 | 1438024981,73.4 1025 | 1438025041,73.4 1026 | 1438025101,73.4 1027 | 1438025161,73.4 1028 | 1438025221,73.4 1029 | 1438025282,73.5116 1030 | 1438025341,73.5116 1031 | 1438025402,73.5116 1032 | 1438025461,73.5116 1033 | 1438025521,73.5116 1034 | 1438025582,73.5116 1035 | 1438025641,73.5116 1036 | 1438025702,73.625 1037 | 1438025761,73.625 1038 | 1438025822,73.625 1039 | 1438025881,73.625 1040 | 1438025941,73.625 1041 | 1438026001,73.625 1042 | 1438026061,73.625 1043 | 1438026122,73.7366 1044 | 1438026181,73.625 1045 | 1438026242,73.7366 1046 | 1438026301,73.7366 1047 | 1438026362,73.7366 1048 | 1438026421,73.7366 1049 | 1438026481,73.7366 1050 | 1438026541,73.7366 1051 | 1438026601,73.7366 1052 | 1438026661,73.7366 1053 | 1438026721,73.85 1054 | 1438026782,73.85 1055 | 1438026841,73.85 1056 | 1438026902,73.85 1057 | 1438026961,73.9616 1058 | 1438027022,73.9616 1059 | 1438027081,73.9616 1060 | 1438027141,73.9616 1061 | 1438027201,73.9616 1062 | 1438027261,73.9616 1063 | 1438027321,73.9616 1064 | 1438027381,73.9616 1065 | 1438027441,73.9616 1066 | 1438027501,73.9616 1067 | 1438027562,73.9616 1068 | 1438027621,73.9616 1069 | 1438027682,73.9616 1070 | 1438027741,74.075 1071 | 1438027802,74.075 1072 | 1438027861,74.075 1073 | 1438027922,74.075 1074 | 1438027981,74.075 1075 | 1438028041,74.1866 1076 | 1438028101,74.1866 1077 | 1438028161,74.1866 1078 | 1438028222,74.1866 1079 | 1438028281,74.1866 1080 | 1438028342,74.3 1081 | 1438028401,74.3 1082 | 1438028462,74.3 1083 | 1438028521,74.4116 1084 | 1438028582,74.3 1085 | 1438028641,74.4116 1086 | 1438028701,74.4116 1087 | 1438028761,74.4116 1088 | 1438028821,74.525 1089 | 1438028881,74.525 1090 | 1438028941,74.6366 1091 | 1438029002,74.6366 1092 | 1438029061,74.6366 1093 | 1438029122,74.6366 1094 | 1438029181,74.75 1095 | 1438029242,74.75 1096 | 1438029301,74.75 1097 | 1438029361,74.75 1098 | 1438029421,74.75 1099 | 1438029481,74.75 1100 | 1438029541,74.8616 1101 | 1438029601,74.8616 1102 | 1438029661,74.8616 1103 | 1438029721,74.8616 1104 | 1438029782,74.8616 1105 | 1438029841,74.975 1106 | 1438029902,74.975 1107 | 1438029961,74.975 1108 | 1438030022,74.975 1109 | 1438030081,75.0866 1110 | 1438030142,74.975 1111 | 1438030201,74.975 1112 | 1438030261,74.975 1113 | 1438030322,74.975 1114 | 1438030381,74.975 1115 | 1438030442,74.975 1116 | 1438030501,74.975 1117 | 1438030562,75.0866 1118 | 1438030621,74.975 1119 | 1438030681,74.975 1120 | 1438030741,75.0866 1121 | 1438030801,75.0866 1122 | 1438030861,75.0866 1123 | 1438030921,75.0866 1124 | 1438030982,75.0866 1125 | 1438031041,75.0866 1126 | 1438031101,75.0866 1127 | 1438031161,75.0866 1128 | 1438031221,75.0866 1129 | 1438031282,75.0866 1130 | 1438031341,75.0866 1131 | 1438031402,75.2 1132 | 1438031461,75.0866 1133 | 1438031522,75.0866 1134 | 1438031581,75.2 1135 | 1438031642,75.2 1136 | 1438031701,75.2 1137 | 1438031761,75.2 1138 | 1438031821,75.2 1139 | 1438031881,75.2 1140 | 1438031941,75.2 1141 | 1438032001,75.2 1142 | 1438032062,75.3116 1143 | 1438032121,75.3116 1144 | 1438032182,75.3116 1145 | 1438032241,75.425 1146 | 1438032302,75.5366 1147 | 1438032361,75.5366 1148 | 1438032422,75.65 1149 | 1438032481,75.65 1150 | 1438032541,75.65 1151 | 1438032601,75.7616 1152 | 1438032661,75.7616 1153 | 1438032722,75.7616 1154 | 1438032781,75.875 1155 | 1438032842,75.875 1156 | 1438032901,75.875 1157 | 1438032961,75.875 1158 | 1438033021,75.9866 1159 | 1438033081,75.9866 1160 | 1438033141,76.1 1161 | 1438033201,76.1 1162 | 1438033262,76.1 1163 | 1438033321,76.1 1164 | 1438033382,76.2116 1165 | 1438033441,76.325 1166 | 1438033502,76.325 1167 | 1438033561,76.325 1168 | 1438033621,76.325 1169 | 1438033681,76.325 1170 | 1438033741,76.325 1171 | 1438033802,76.325 1172 | 1438033861,76.325 1173 | 1438033921,76.4366 1174 | 1438033981,76.4366 1175 | 1438034041,76.4366 1176 | 1438034101,76.4366 1177 | 1438034161,76.55 1178 | 1438034222,76.4366 1179 | 1438034281,76.55 1180 | 1438034342,76.55 1181 | 1438034401,76.6616 1182 | 1438034462,76.55 1183 | 1438034521,76.6616 1184 | 1438034581,76.55 1185 | 1438034641,76.55 1186 | 1438034701,76.55 1187 | 1438034761,76.55 1188 | 1438034821,76.6616 1189 | 1438034882,76.6616 1190 | 1438034941,76.6616 1191 | 1438035002,76.6616 1192 | 1438035061,76.775 1193 | 1438035122,76.775 1194 | 1438035181,76.775 1195 | 1438035241,76.8866 1196 | 1438035301,76.8866 1197 | 1438035361,76.8866 1198 | 1438035421,76.8866 1199 | 1438035481,77.0 1200 | 1438035542,77.0 1201 | 1438035601,77.0 1202 | 1438035662,77.1116 1203 | 1438035721,77.1116 1204 | 1438035781,77.1116 1205 | 1438035841,77.225 1206 | 1438035901,77.225 1207 | 1438035962,77.225 1208 | 1438036021,77.225 1209 | 1438036082,77.3366 1210 | 1438036141,77.3366 1211 | 1438036202,77.3366 1212 | 1438036261,77.3366 1213 | 1438036322,77.3366 1214 | 1438036382,77.45 1215 | 1438036441,77.45 1216 | 1438036502,77.45 1217 | 1438036561,77.45 1218 | 1438036622,77.5616 1219 | 1438036681,77.5616 1220 | 1438036741,77.5616 1221 | 1438036801,77.675 1222 | 1438036861,77.675 1223 | 1438036921,77.675 1224 | 1438036982,77.675 1225 | 1438037041,77.675 1226 | 1438037102,77.675 1227 | 1438037161,77.675 1228 | 1438037222,77.7866 1229 | 1438037281,77.7866 1230 | 1438037342,77.7866 1231 | 1438037401,77.7866 1232 | 1438037462,77.7866 1233 | 1438037521,77.9 1234 | 1438037581,77.9 1235 | 1438037641,78.0116 1236 | 1438037701,77.9 1237 | 1438037761,78.0116 1238 | 1438037821,78.0116 1239 | 1438037882,78.0116 1240 | 1438037941,78.0116 1241 | 1438038001,78.0116 1242 | 1438038061,78.0116 1243 | 1438038121,78.125 1244 | 1438038182,78.125 1245 | 1438038241,78.125 1246 | 1438038302,78.125 1247 | 1438038361,78.2366 1248 | 1438038421,78.2366 1249 | 1438038481,78.2366 1250 | 1438038541,78.2366 1251 | 1438038601,78.2366 1252 | 1438038661,78.2366 1253 | 1438038722,78.35 1254 | 1438038781,78.35 1255 | 1438038842,78.35 1256 | 1438038901,78.35 1257 | 1438038962,78.35 1258 | 1438039021,78.4616 1259 | 1438039082,78.4616 1260 | 1438039141,78.4616 1261 | 1438039201,78.4616 1262 | 1438039261,78.575 1263 | 1438039321,78.575 1264 | 1438039381,78.6866 1265 | 1438039441,78.6866 1266 | 1438039502,78.6866 1267 | 1438039561,78.6866 1268 | 1438039622,78.6866 1269 | 1438039681,78.6866 1270 | 1438039742,78.8 1271 | 1438039801,78.8 1272 | 1438039861,78.8 1273 | 1438039921,78.8 1274 | 1438039981,78.8 1275 | 1438040041,78.8 1276 | 1438040101,78.9116 1277 | 1438040162,78.9116 1278 | 1438040221,78.9116 1279 | 1438040282,78.9116 1280 | 1438040341,78.9116 1281 | 1438040402,78.9116 1282 | 1438040461,78.9116 1283 | 1438040522,79.025 1284 | 1438040581,79.025 1285 | 1438040642,79.025 1286 | 1438040701,79.025 1287 | 1438040761,79.1366 1288 | 1438040821,79.1366 1289 | 1438040881,79.1366 1290 | 1438040942,79.1366 1291 | 1438041001,79.1366 1292 | 1438041062,79.1366 1293 | 1438041121,79.1366 1294 | 1438041182,79.25 1295 | 1438041241,79.25 1296 | 1438041302,79.25 1297 | 1438041361,79.25 1298 | 1438041421,79.25 1299 | 1438041481,79.25 1300 | 1438041541,79.3616 1301 | 1438041601,79.3616 1302 | 1438041661,79.3616 1303 | 1438041721,79.475 1304 | 1438041781,79.3616 1305 | 1438041841,79.475 1306 | 1438041901,79.475 1307 | 1438041961,79.475 1308 | 1438042022,79.475 1309 | 1438042081,79.475 1310 | 1438042142,79.475 1311 | 1438042201,79.475 1312 | 1438042262,79.5866 1313 | 1438042321,79.5866 1314 | 1438042382,79.5866 1315 | 1438042441,79.5866 1316 | 1438042501,79.5866 1317 | 1438042561,79.7 1318 | 1438042621,79.7 1319 | 1438042681,79.7 1320 | 1438042741,79.7 1321 | 1438042802,79.7 1322 | 1438042861,79.7 1323 | 1438042922,79.8116 1324 | 1438042981,79.7 1325 | 1438043042,79.8116 1326 | 1438043101,79.8116 1327 | 1438043162,79.8116 1328 | 1438043221,79.8116 1329 | 1438043282,79.8116 1330 | 1438043341,79.8116 1331 | 1438043401,79.8116 1332 | 1438043462,79.925 1333 | 1438043521,79.925 1334 | 1438043582,79.925 1335 | 1438043641,79.925 1336 | 1438043702,80.0366 1337 | 1438043761,80.0366 1338 | 1438043822,80.0366 1339 | 1438043881,80.15 1340 | 1438043941,80.0366 1341 | 1438044001,80.15 1342 | 1438044061,80.15 1343 | 1438044121,80.15 1344 | 1438044181,80.15 1345 | 1438044241,80.15 1346 | 1438044301,80.15 1347 | 1438044362,80.2616 1348 | 1438044421,80.2616 1349 | 1438044482,80.2616 1350 | 1438044541,80.2616 1351 | 1438044601,80.2616 1352 | 1438044661,80.2616 1353 | 1438044721,80.2616 1354 | 1438044781,80.375 1355 | 1438044841,80.375 1356 | 1438044902,80.375 1357 | 1438044961,80.375 1358 | 1438045022,80.375 1359 | 1438045081,80.4866 1360 | 1438045142,80.4866 1361 | 1438045201,80.4866 1362 | 1438045261,80.4866 1363 | 1438045321,80.4866 1364 | 1438045381,80.4866 1365 | 1438045441,80.6 1366 | 1438045502,80.4866 1367 | 1438045561,80.6 1368 | 1438045622,80.6 1369 | 1438045681,80.6 1370 | 1438045742,80.6 1371 | 1438045801,80.6 1372 | 1438045862,80.7116 1373 | 1438045921,80.7116 1374 | 1438045981,80.7116 1375 | 1438046041,80.7116 1376 | 1438046101,80.7116 1377 | 1438046162,80.7116 1378 | 1438046221,80.7116 1379 | 1438046282,80.7116 1380 | 1438046341,80.7116 1381 | 1438046402,80.825 1382 | 1438046461,80.9366 1383 | 1438046522,80.9366 1384 | 1438046581,80.9366 1385 | 1438046641,80.9366 1386 | 1438046701,80.9366 1387 | 1438046761,80.9366 1388 | 1438046821,81.05 1389 | 1438046881,81.05 1390 | 1438046942,81.1616 1391 | 1438047001,81.1616 1392 | 1438047062,81.275 1393 | 1438047121,81.275 1394 | 1438047182,81.275 1395 | 1438047241,81.275 1396 | 1438047301,81.275 1397 | 1438047362,81.3866 1398 | 1438047421,81.3866 1399 | 1438047481,81.3866 1400 | 1438047541,81.3866 1401 | 1438047602,81.3866 1402 | 1438047661,81.5 1403 | 1438047722,81.5 1404 | 1438047781,81.5 1405 | 1438047841,81.5 1406 | 1438047901,81.5 1407 | 1438047961,81.6116 1408 | 1438048022,81.6116 1409 | 1438048081,81.6116 1410 | 1438048142,81.6116 1411 | 1438048201,81.725 1412 | 1438048262,81.6116 1413 | 1438048321,81.6116 1414 | 1438048381,81.725 1415 | 1438048441,81.725 1416 | 1438048501,81.725 1417 | 1438048561,81.725 1418 | 1438048621,81.725 1419 | 1438048682,81.725 1420 | 1438048741,81.725 1421 | 1438048801,81.8366 1422 | 1438048861,81.8366 1423 | 1438048921,81.8366 1424 | 1438048982,81.8366 1425 | 1438049041,81.8366 1426 | 1438049102,81.8366 1427 | 1438049161,81.95 1428 | 1438049222,81.95 1429 | 1438049281,81.95 1430 | 1438049342,81.95 1431 | 1438049401,81.95 1432 | 1438049461,81.95 1433 | 1438049521,81.95 1434 | 1438049581,81.95 1435 | 1438049641,81.8366 1436 | 1438049701,81.95 1437 | 1438049762,81.95 1438 | 1438049821,81.8366 1439 | 1438049882,81.8366 1440 | 1438049941,81.95 1441 | 1438050002,81.95 1442 | 1438050061,81.95 1443 | 1438050122,81.95 1444 | 1438050181,81.95 1445 | 1438050241,81.95 1446 | 1438050301,81.95 1447 | 1438050361,81.95 1448 | 1438050421,81.95 1449 | 1438050481,81.95 1450 | 1438050541,81.95 1451 | 1438050601,81.95 1452 | 1438050662,81.95 1453 | 1438050721,81.95 1454 | 1438050782,81.8366 1455 | 1438050841,81.8366 1456 | 1438050901,81.6116 1457 | 1438050961,81.3866 1458 | 1438051021,81.3866 1459 | 1438051081,81.3866 1460 | 1438051141,81.3866 1461 | 1438051202,81.3866 1462 | 1438051261,81.1616 1463 | 1438051322,80.6 1464 | 1438051381,80.0366 1465 | 1438051442,79.3616 1466 | 1438051501,78.9116 1467 | 1438051561,78.4616 1468 | 1438051621,78.125 1469 | 1438051681,77.7866 1470 | 1438051741,77.5616 1471 | 1438051801,77.3366 1472 | 1438051862,77.1116 1473 | 1438051921,77.0 1474 | 1438051982,76.775 1475 | 1438052041,76.6616 1476 | 1438052102,76.55 1477 | 1438052161,76.4366 1478 | 1438052221,76.325 1479 | 1438052281,76.2116 1480 | 1438052341,76.1 1481 | 1438052401,75.9866 1482 | 1438052461,75.875 1483 | 1438052521,75.65 1484 | 1438052581,75.65 1485 | 1438052642,75.5366 1486 | 1438052701,75.5366 1487 | 1438052762,75.3116 1488 | 1438052821,75.3116 1489 | 1438052882,75.2 1490 | 1438052941,75.0866 1491 | 1438053001,74.975 1492 | 1438053061,74.8616 1493 | 1438053121,74.8616 1494 | 1438053182,74.8616 1495 | 1438053241,74.75 1496 | 1438053301,74.525 1497 | 1438053361,74.4116 1498 | 1438053421,74.4116 1499 | 1438053481,74.3 1500 | 1438053541,74.3 1501 | 1438053602,74.1866 1502 | 1438053661,74.1866 1503 | 1438053722,74.075 1504 | 1438053781,73.9616 1505 | 1438053841,73.85 1506 | 1438053901,73.9616 1507 | 1438053961,73.85 1508 | 1438054021,73.7366 1509 | 1438054081,73.625 1510 | 1438054142,73.625 1511 | 1438054201,73.5116 1512 | 1438054262,73.5116 1513 | 1438054321,73.4 1514 | 1438054381,73.4 1515 | 1438054441,73.2866 1516 | 1438054501,73.2866 1517 | 1438054562,73.175 1518 | 1438054621,73.0616 1519 | 1438054682,73.0616 1520 | 1438054741,72.95 1521 | 1438054801,72.8366 1522 | 1438054862,72.95 1523 | 1438054921,72.8366 1524 | 1438054981,72.8366 1525 | 1438055041,72.725 1526 | 1438055101,72.725 1527 | 1438055162,72.6116 1528 | 1438055221,72.5 1529 | 1438055282,72.5 1530 | 1438055341,72.275 1531 | 1438055402,72.275 1532 | 1438055462,72.1616 1533 | 1438055521,72.05 1534 | 1438055582,72.05 1535 | 1438055641,72.05 1536 | 1438055702,72.05 1537 | 1438055761,71.9366 1538 | 1438055821,71.9366 1539 | 1438055881,71.825 1540 | 1438055941,71.7116 1541 | 1438056001,71.7116 1542 | 1438056061,71.6 1543 | 1438056122,71.4866 1544 | 1438056181,71.375 1545 | 1438056241,71.375 1546 | 1438056302,71.2616 1547 | 1438056361,71.2616 1548 | 1438056422,71.2616 1549 | 1438056481,71.15 1550 | 1438056542,71.0366 1551 | 1438056601,71.0366 1552 | 1438056661,71.0366 1553 | 1438056721,71.0366 1554 | 1438056781,70.925 1555 | 1438056842,70.8116 1556 | 1438056901,70.925 1557 | 1438056962,70.8116 1558 | 1438057021,70.8116 1559 | 1438057082,70.5866 1560 | 1438057141,70.7 1561 | 1438057201,70.5866 1562 | 1438057261,70.7 1563 | 1438057321,70.5866 1564 | 1438057382,70.5866 1565 | 1438057441,70.475 1566 | 1438057502,70.475 1567 | 1438057561,71.0366 1568 | 1438057621,71.825 1569 | 1438057681,72.5 1570 | 1438057741,73.0616 1571 | 1438057802,73.5116 1572 | 1438057861,73.7366 1573 | 1438057922,73.9616 1574 | 1438057981,74.1866 1575 | 1438058041,74.4116 1576 | 1438058102,74.525 1577 | 1438058161,74.6366 1578 | 1438058221,74.75 1579 | 1438058281,74.8616 1580 | 1438058341,74.8616 1581 | 1438058402,74.975 1582 | 1438058461,75.0866 1583 | 1438058522,75.0866 1584 | 1438058581,75.2 1585 | 1438058641,75.2 1586 | 1438058701,75.3116 1587 | 1438058761,75.3116 1588 | 1438058821,75.425 1589 | 1438058881,75.425 1590 | 1438058942,75.5366 1591 | 1438059001,75.5366 1592 | 1438059061,75.5366 1593 | 1438059121,75.65 1594 | 1438059181,75.65 1595 | 1438059242,75.65 1596 | 1438059301,75.7616 1597 | 1438059362,75.7616 1598 | 1438059421,75.7616 1599 | 1438059482,75.7616 1600 | 1438059541,75.7616 1601 | 1438059602,75.65 1602 | 1438059661,75.65 1603 | 1438059721,75.65 1604 | 1438059782,75.5366 1605 | 1438059841,75.65 1606 | 1438059902,75.7616 1607 | 1438059961,75.7616 1608 | 1438060022,75.7616 1609 | 1438060081,75.875 1610 | 1438060201,75.9866 1611 | 1438060262,76.1 1612 | 1438060321,76.1 1613 | 1438060381,76.2116 1614 | 1438060442,76.325 1615 | 1438060501,76.325 1616 | 1438060562,76.4366 1617 | 1438060621,76.4366 1618 | 1438060682,76.4366 1619 | 1438060741,76.55 1620 | 1438060801,76.55 1621 | 1438060861,76.55 1622 | 1438060921,76.325 1623 | 1438060982,75.9866 1624 | 1438061041,75.65 1625 | 1438061102,75.3116 1626 | 1438061161,74.975 1627 | 1438061221,74.75 1628 | 1438061282,74.525 1629 | 1438061341,74.3 1630 | 1438061402,74.075 1631 | 1438061461,73.9616 1632 | 1438061522,73.7366 1633 | 1438061581,73.625 1634 | 1438061641,73.5116 1635 | 1438061701,73.2866 1636 | 1438061761,73.175 1637 | 1438061822,73.0616 1638 | 1438061881,73.0616 1639 | 1438061942,72.95 1640 | 1438062001,72.8366 1641 | 1438062062,72.725 1642 | 1438062121,72.6116 1643 | 1438062182,72.5 1644 | 1438062241,72.3866 1645 | 1438062301,72.275 1646 | 1438062362,72.275 1647 | 1438062421,72.275 1648 | 1438062482,72.05 1649 | 1438062541,72.05 1650 | 1438062601,71.9366 1651 | 1438062661,71.825 1652 | 1438062721,71.9366 1653 | 1438062781,71.825 1654 | 1438062841,71.825 1655 | 1438062902,71.7116 1656 | 1438062961,71.7116 1657 | 1438063022,71.6 1658 | 1438063081,71.6 1659 | 1438063142,71.4866 1660 | 1438063201,71.2616 1661 | 1438063261,71.2616 1662 | 1438063321,71.2616 1663 | 1438063381,71.15 1664 | 1438063441,71.0366 1665 | 1438063501,71.15 1666 | 1438063561,71.0366 1667 | 1438063621,71.0366 1668 | 1438063682,71.0366 1669 | 1438063741,71.2616 1670 | 1438063802,71.4866 1671 | 1438063861,71.7116 1672 | 1438063922,71.9366 1673 | 1438063981,72.1616 1674 | 1438064042,72.5 1675 | 1438064101,72.6116 1676 | 1438064162,72.8366 1677 | 1438064221,72.95 1678 | 1438064281,73.175 1679 | 1438064341,73.2866 1680 | 1438064401,73.4 1681 | 1438064461,73.5116 1682 | 1438064521,73.7366 1683 | 1438064582,73.85 1684 | 1438064641,73.9616 1685 | 1438064702,74.075 1686 | 1438064761,74.1866 1687 | 1438064822,74.3 1688 | 1438064881,74.3 1689 | 1438064942,74.3 1690 | 1438065001,74.3 1691 | 1438065062,74.4116 1692 | 1438065121,74.525 1693 | 1438065181,74.525 1694 | 1438065241,74.525 1695 | 1438065301,74.6366 1696 | 1438065361,74.6366 1697 | 1438065421,74.6366 1698 | 1438065482,74.75 1699 | 1438065541,74.75 1700 | 1438065602,74.75 1701 | 1438065661,74.75 1702 | 1438065722,74.8616 1703 | 1438065781,74.8616 1704 | 1438065842,74.975 1705 | 1438065901,74.975 1706 | 1438065961,74.975 1707 | 1438066021,74.975 1708 | 1438066081,75.0866 1709 | 1438066141,75.0866 1710 | 1438066201,75.2 1711 | 1438066261,75.2 1712 | 1438066321,75.2 1713 | 1438066381,75.2 1714 | 1438066442,75.2 1715 | 1438066501,75.2 1716 | 1438066562,75.3116 1717 | 1438066622,75.2 1718 | 1438066681,75.2 1719 | 1438066742,75.3116 1720 | 1438066801,75.3116 1721 | 1438066862,75.3116 1722 | 1438066921,75.3116 1723 | 1438066981,75.2 1724 | 1438067041,75.2 1725 | 1438067101,75.2 1726 | 1438067162,75.3116 1727 | 1438067221,75.2 1728 | 1438067282,75.2 1729 | 1438067341,75.2 1730 | 1438067402,75.2 1731 | 1438067461,75.2 1732 | 1438067522,75.3116 1733 | 1438067581,75.2 1734 | 1438067641,75.3116 1735 | 1438067701,75.2 1736 | 1438067761,75.3116 1737 | 1438067821,75.2 1738 | 1438067882,75.3116 1739 | 1438067941,75.3116 1740 | 1438068002,75.3116 1741 | 1438068061,75.425 1742 | 1438068121,75.3116 1743 | 1438068181,75.3116 1744 | 1438068241,75.3116 1745 | 1438068301,75.3116 1746 | 1438068361,75.3116 1747 | 1438068421,75.3116 1748 | 1438068481,75.3116 1749 | 1438068542,75.3116 1750 | 1438068601,75.3116 1751 | 1438068662,75.3116 1752 | 1438068721,75.3116 1753 | 1438068782,75.3116 1754 | 1438068841,75.3116 1755 | 1438068902,75.3116 1756 | 1438068961,75.3116 1757 | 1438069021,75.3116 1758 | 1438069082,75.3116 1759 | 1438069141,75.3116 1760 | 1438069202,75.3116 1761 | 1438069261,75.3116 1762 | 1438069321,75.3116 1763 | 1438069381,75.3116 1764 | 1438069441,75.3116 1765 | 1438069502,75.3116 1766 | 1438069561,75.3116 1767 | 1438069622,75.3116 1768 | 1438069681,75.3116 1769 | 1438069741,75.3116 1770 | 1438069801,75.3116 1771 | 1438069861,75.3116 1772 | 1438069921,75.2 1773 | 1438069981,75.2 1774 | 1438070041,75.3116 1775 | 1438070101,75.3116 1776 | 1438070162,75.3116 1777 | 1438070222,75.3116 1778 | 1438070281,75.3116 1779 | 1438070342,75.2 1780 | 1438070401,75.2 1781 | 1438070461,75.2 1782 | 1438070522,75.2 1783 | 1438070581,75.2 1784 | 1438070641,75.2 1785 | 1438070701,75.2 1786 | 1438070761,75.3116 1787 | 1438070821,75.3116 1788 | 1438070881,75.3116 1789 | 1438070942,75.2 1790 | 1438071001,75.3116 1791 | 1438071062,75.2 1792 | 1438071121,75.3116 1793 | 1438071181,75.2 1794 | 1438071241,75.2 1795 | 1438071301,75.2 1796 | 1438071361,75.3116 1797 | 1438071421,75.3116 1798 | 1438071482,75.2 1799 | 1438071542,75.2 1800 | 1438071601,75.2 1801 | 1438071662,75.2 1802 | 1438071721,75.2 1803 | 1438071781,75.2 1804 | 1438071841,75.0866 1805 | 1438071901,75.2 1806 | 1438071961,75.2 1807 | 1438072021,75.2 1808 | 1438072081,75.2 1809 | 1438072142,75.2 1810 | 1438072201,75.2 1811 | 1438072262,75.2 1812 | 1438072321,75.2 1813 | 1438072382,75.2 1814 | 1438072441,75.0866 1815 | 1438072501,75.2 1816 | 1438072561,75.2 1817 | 1438072621,75.2 1818 | 1438072681,75.0866 1819 | 1438072741,75.0866 1820 | 1438072801,75.0866 1821 | 1438072861,75.0866 1822 | 1438072922,75.0866 1823 | 1438072981,75.0866 1824 | 1438073042,75.0866 1825 | 1438073101,75.0866 1826 | 1438073162,75.0866 1827 | 1438073221,75.0866 1828 | 1438073282,75.0866 1829 | 1438073341,75.0866 1830 | 1438073402,74.975 1831 | 1438073461,74.975 1832 | 1438073521,74.975 1833 | 1438073582,74.975 1834 | 1438073641,74.975 1835 | 1438073701,74.975 1836 | 1438073762,74.975 1837 | 1438073821,74.975 1838 | 1438073882,74.975 1839 | 1438073941,74.975 1840 | 1438074002,74.975 1841 | 1438074061,74.975 1842 | 1438074122,74.975 1843 | 1438074181,74.975 1844 | 1438074241,74.8616 1845 | 1438074301,74.975 1846 | 1438074361,74.8616 1847 | 1438074421,74.8616 1848 | 1438074481,74.8616 1849 | 1438074541,74.8616 1850 | 1438074601,74.8616 1851 | 1438074662,74.8616 1852 | 1438074721,74.8616 1853 | 1438074782,74.8616 1854 | 1438074841,74.75 1855 | 1438074902,74.8616 1856 | 1438074961,74.8616 1857 | 1438075022,74.75 1858 | 1438075081,74.75 1859 | 1438075142,74.8616 1860 | 1438075201,74.8616 1861 | 1438075261,74.8616 1862 | 1438075321,74.8616 1863 | 1438075381,74.8616 1864 | 1438075441,74.8616 1865 | 1438075501,74.8616 1866 | 1438075561,74.8616 1867 | 1438075621,74.8616 1868 | 1438075681,74.8616 1869 | 1438075741,74.8616 1870 | 1438075802,74.8616 1871 | 1438075861,74.8616 1872 | 1438075922,74.8616 1873 | 1438075981,74.8616 1874 | 1438076042,74.8616 1875 | 1438076101,74.8616 1876 | 1438076161,74.8616 1877 | 1438076221,74.8616 1878 | 1438076281,74.8616 1879 | 1438076341,74.75 1880 | 1438076401,74.75 1881 | 1438076461,74.75 1882 | 1438076521,74.75 1883 | 1438076582,74.75 1884 | 1438076641,74.75 1885 | 1438076702,74.75 1886 | 1438076761,74.75 1887 | 1438076822,74.75 1888 | 1438076881,74.75 1889 | 1438076942,74.75 1890 | 1438077001,74.75 1891 | 1438077061,74.75 1892 | 1438077121,74.75 1893 | 1438077181,74.75 1894 | 1438077241,74.75 1895 | 1438077301,74.75 1896 | 1438077362,74.6366 1897 | 1438077421,74.6366 1898 | 1438077482,74.6366 1899 | 1438077541,74.6366 1900 | 1438077601,74.6366 1901 | 1438077661,74.6366 1902 | 1438077721,74.6366 1903 | 1438077781,74.6366 1904 | 1438077841,74.525 1905 | 1438077902,74.525 1906 | 1438077961,74.525 1907 | 1438078022,74.525 1908 | 1438078081,74.525 1909 | 1438078141,74.525 1910 | 1438078201,74.525 1911 | 1438078261,74.525 1912 | 1438078321,74.525 1913 | 1438078381,74.525 1914 | 1438078442,74.525 1915 | 1438078501,74.525 1916 | 1438078562,74.525 1917 | 1438078621,74.525 1918 | 1438078681,74.525 1919 | 1438078742,74.4116 1920 | 1438078801,74.4116 1921 | 1438078862,74.4116 1922 | 1438078921,74.4116 1923 | 1438078982,74.4116 1924 | 1438079041,74.4116 1925 | 1438079102,74.4116 1926 | 1438079161,74.4116 1927 | 1438079221,74.4116 1928 | 1438079282,74.4116 1929 | 1438079341,74.4116 1930 | 1438079402,74.4116 1931 | 1438079461,74.4116 1932 | 1438079522,74.4116 1933 | 1438079581,74.3 1934 | 1438079642,74.3 1935 | 1438079701,74.3 1936 | 1438079761,74.3 1937 | 1438079821,74.3 1938 | 1438079881,74.3 1939 | 1438079941,74.3 1940 | 1438080001,74.3 1941 | 1438080061,74.3 1942 | 1438080121,74.1866 1943 | 1438080182,74.3 1944 | 1438080241,74.3 1945 | 1438080302,74.3 1946 | 1438080361,74.1866 1947 | 1438080422,74.1866 1948 | 1438080481,74.1866 1949 | 1438080541,74.1866 1950 | 1438080601,74.1866 1951 | 1438080661,74.1866 1952 | 1438080721,74.1866 1953 | 1438080781,74.1866 1954 | 1438080901,74.075 1955 | 1438080962,74.1866 1956 | 1438080841,74.1866 1957 | 1438081021,74.075 1958 | 1438081081,74.075 1959 | 1438081141,74.075 1960 | 1438081202,74.1866 1961 | 1438081261,74.1866 1962 | 1438081322,74.075 1963 | 1438081381,74.075 1964 | 1438081442,74.075 1965 | 1438081501,74.075 1966 | 1438081562,74.075 1967 | 1438081621,74.075 1968 | 1438081682,74.075 1969 | 1438081741,74.075 1970 | 1438081801,74.075 1971 | 1438081861,73.9616 1972 | 1438081921,73.9616 1973 | 1438081981,73.9616 1974 | 1438082041,73.9616 1975 | 1438082102,73.9616 1976 | 1438082161,73.9616 1977 | 1438082222,73.9616 1978 | 1438082281,73.85 1979 | 1438082342,73.85 1980 | 1438082401,73.85 1981 | 1438082461,73.85 1982 | 1438082521,73.85 1983 | 1438082581,73.85 1984 | 1438082641,73.7366 1985 | 1438082701,73.85 1986 | 1438082762,73.7366 1987 | 1438082821,73.7366 1988 | 1438082881,73.7366 1989 | 1438082941,73.7366 1990 | 1438083001,73.7366 1991 | 1438083061,73.7366 1992 | 1438083122,73.7366 1993 | 1438083182,73.7366 1994 | 1438083241,73.7366 1995 | 1438083301,73.7366 1996 | 1438083361,73.7366 1997 | 1438083421,73.7366 1998 | 1438083481,73.7366 1999 | 1438083541,73.7366 2000 | 1438083602,73.7366 2001 | 1438083661,73.7366 2002 | 1438083722,73.625 2003 | 1438083781,73.625 2004 | 1438083842,73.625 2005 | 1438083902,73.625 2006 | 1438083961,73.625 2007 | 1438084022,73.625 2008 | 1438084081,73.5116 2009 | 1438084142,73.625 2010 | 1438084201,73.625 2011 | 1438084261,73.625 2012 | 1438084321,73.5116 2013 | 1438084381,73.5116 2014 | 1438084441,73.5116 2015 | 1438084501,73.625 2016 | 1438084562,73.5116 2017 | 1438084621,73.5116 2018 | 1438084682,73.5116 2019 | 1438084741,73.5116 2020 | 1438084801,73.5116 2021 | 1438084862,73.5116 2022 | 1438084921,73.5116 2023 | 1438084982,73.4 2024 | 1438085041,73.4 2025 | 1438085102,73.4 2026 | 1438085161,73.4 2027 | 1438085222,73.2866 2028 | 1438085281,73.4 2029 | 1438085341,73.2866 2030 | 1438085402,73.2866 2031 | 1438085461,73.2866 2032 | 1438085521,73.4 2033 | 1438085581,73.2866 2034 | 1438085641,73.2866 2035 | 1438085701,73.2866 2036 | 1438085761,73.175 2037 | 1438085822,73.2866 2038 | 1438085881,73.2866 2039 | 1438085942,73.2866 2040 | 1438086001,73.2866 2041 | 1438086062,73.2866 2042 | 1438086121,73.175 2043 | 1438086181,73.2866 2044 | 1438086241,73.2866 2045 | 1438086301,73.175 2046 | 1438086362,73.175 2047 | 1438086421,73.175 2048 | 1438086482,73.175 2049 | 1438086541,73.175 2050 | 1438086602,73.175 2051 | 1438086661,73.175 2052 | 1438086722,73.175 2053 | 1438086782,73.175 2054 | 1438086841,73.0616 2055 | 1438086902,73.0616 2056 | 1438086961,73.0616 2057 | 1438087021,73.0616 2058 | 1438087081,73.175 2059 | 1438087141,73.0616 2060 | 1438087201,73.0616 2061 | 1438087261,73.0616 2062 | 1438087322,73.0616 2063 | 1438087381,73.0616 2064 | 1438087441,73.0616 2065 | 1438087502,73.0616 2066 | 1438087561,72.95 2067 | 1438087622,73.0616 2068 | 1438087681,73.0616 2069 | 1438087741,72.95 2070 | 1438087801,72.95 2071 | 1438087861,72.95 2072 | 1438087921,72.95 2073 | 1438087981,72.95 2074 | 1438088042,72.95 2075 | 1438088101,72.95 2076 | 1438088162,72.95 2077 | 1438088221,72.95 2078 | 1438088282,73.0616 2079 | 1438088341,73.0616 2080 | 1438088402,72.95 2081 | 1438088461,72.95 2082 | 1438088521,72.95 2083 | 1438088581,72.95 2084 | 1438088642,72.95 2085 | 1438088701,72.95 2086 | 1438088762,72.8366 2087 | 1438088821,72.8366 2088 | 1438088882,72.95 2089 | 1438088941,72.95 2090 | 1438089002,72.8366 2091 | 1438089061,72.8366 2092 | 1438089121,72.8366 2093 | 1438089181,72.8366 2094 | 1438089241,72.8366 2095 | 1438089302,72.8366 2096 | 1438089361,72.8366 2097 | 1438089422,72.8366 2098 | 1438089481,72.8366 2099 | 1438089542,72.725 2100 | 1438089601,72.8366 2101 | 1438089662,72.725 2102 | 1438089721,72.725 2103 | 1438089782,72.725 2104 | 1438089841,72.725 2105 | 1438089901,72.725 2106 | 1438089961,72.725 2107 | 1438090021,72.725 2108 | 1438090081,72.6116 2109 | 1438090141,72.725 2110 | 1438090202,72.725 2111 | 1438090261,72.725 2112 | 1438090322,72.6116 2113 | 1438090381,72.6116 2114 | 1438090442,72.6116 2115 | 1438090501,72.6116 2116 | 1438090562,72.6116 2117 | 1438090621,72.6116 2118 | 1438090681,72.6116 2119 | 1438090741,72.6116 2120 | 1438090801,72.6116 2121 | 1438090862,72.725 2122 | 1438090921,72.6116 2123 | 1438090982,72.6116 2124 | 1438091041,72.6116 2125 | 1438091101,72.6116 2126 | 1438091162,72.6116 2127 | 1438091221,72.6116 2128 | 1438091282,72.6116 2129 | 1438091341,72.725 2130 | 1438091401,72.725 2131 | 1438091462,72.725 2132 | 1438091521,72.725 2133 | 1438091582,72.725 2134 | 1438091641,72.725 2135 | 1438091702,72.725 2136 | 1438091761,72.725 2137 | 1438091822,72.725 2138 | 1438091881,72.725 2139 | 1438091942,72.8366 2140 | 1438092001,72.725 2141 | 1438092061,72.8366 2142 | 1438092121,72.8366 2143 | 1438092181,72.8366 2144 | 1438092241,72.8366 2145 | 1438092301,72.8366 2146 | 1438092361,72.8366 2147 | 1438092421,72.95 2148 | 1438092482,72.8366 2149 | 1438092541,72.95 2150 | 1438092602,73.0616 2151 | 1438092661,73.0616 2152 | 1438092722,73.175 2153 | 1438092781,73.0616 2154 | 1438092841,73.175 2155 | 1438092901,73.175 2156 | 1438092961,73.2866 2157 | 1438093021,73.2866 2158 | 1438093081,73.2866 2159 | 1438093141,73.2866 2160 | 1438093201,73.2866 2161 | 1438093262,73.2866 2162 | 1438093321,73.4 2163 | 1438093382,73.5116 2164 | 1438093441,73.4 2165 | 1438093502,73.5116 2166 | 1438093561,73.5116 2167 | 1438093621,73.625 2168 | 1438093681,73.625 2169 | 1438093741,73.625 2170 | 1438093802,73.625 2171 | 1438093861,73.625 2172 | 1438093922,73.625 2173 | 1438093981,73.625 2174 | 1438094042,73.625 2175 | 1438094101,73.625 2176 | 1438094162,73.625 2177 | 1438094221,73.625 2178 | 1438094281,73.625 2179 | 1438094341,73.5116 2180 | 1438094401,73.5116 2181 | 1438094462,73.5116 2182 | 1438094521,73.625 2183 | 1438094582,73.5116 2184 | 1438094642,73.625 2185 | 1438094701,73.625 2186 | 1438094762,73.625 2187 | 1438094821,73.625 2188 | 1438094881,73.625 2189 | 1438094941,73.7366 2190 | 1438095001,73.7366 2191 | 1438095061,73.625 2192 | 1438095121,73.7366 2193 | 1438095181,73.7366 2194 | 1438095241,73.7366 2195 | 1438095302,73.85 2196 | 1438095361,73.85 2197 | 1438095422,73.85 2198 | 1438095481,73.85 2199 | 1438095542,73.85 2200 | 1438095601,73.85 2201 | 1438095661,73.9616 2202 | 1438095721,73.9616 2203 | 1438095781,73.9616 2204 | 1438095841,74.075 2205 | 1438095901,74.075 2206 | 1438095962,74.075 2207 | 1438096021,74.075 2208 | 1438096082,74.1866 2209 | 1438096141,74.1866 2210 | 1438096202,74.3 2211 | 1438096261,74.3 2212 | 1438096321,74.3 2213 | 1438096381,74.3 2214 | 1438096441,74.3 2215 | 1438096502,74.3 2216 | 1438096561,74.3 2217 | 1438096622,74.3 2218 | 1438096681,74.3 2219 | 1438096742,74.4116 2220 | 1438096801,74.4116 2221 | 1438096861,74.4116 2222 | 1438096921,74.4116 2223 | 1438096981,74.4116 2224 | 1438097041,74.525 2225 | 1438097101,74.525 2226 | 1438097162,74.525 2227 | 1438097221,74.525 2228 | 1438097282,74.525 2229 | 1438097341,74.525 2230 | 1438097402,74.525 2231 | 1438097461,74.6366 2232 | 1438097522,74.525 2233 | 1438097581,74.6366 2234 | 1438097642,74.6366 2235 | 1438097701,74.6366 2236 | 1438097761,74.6366 2237 | 1438097821,74.6366 2238 | 1438097881,74.75 2239 | 1438097941,74.75 2240 | 1438098001,74.8616 2241 | 1438098061,74.8616 2242 | 1438098121,74.8616 2243 | 1438098182,74.8616 2244 | 1438098241,74.8616 2245 | 1438098302,74.8616 2246 | 1438098361,74.8616 2247 | 1438098421,74.975 2248 | 1438098481,74.975 2249 | 1438098541,74.975 2250 | 1438098601,74.975 2251 | 1438098661,74.975 2252 | 1438098722,75.0866 2253 | 1438098781,75.0866 2254 | 1438098842,75.0866 2255 | 1438098901,75.0866 2256 | 1438098962,75.0866 2257 | 1438099021,75.2 2258 | 1438099081,75.0866 2259 | 1438099141,75.0866 2260 | 1438099201,75.2 2261 | 1438099261,75.2 2262 | 1438099321,75.2 2263 | 1438099382,75.2 2264 | 1438099441,75.3116 2265 | 1438099502,75.3116 2266 | 1438099561,75.3116 2267 | 1438099622,75.425 2268 | 1438099681,75.425 2269 | 1438099742,75.425 2270 | 1438099801,75.5366 2271 | 1438099862,75.5366 2272 | 1438099921,75.5366 2273 | 1438099982,75.5366 2274 | 1438100041,75.5366 2275 | 1438100101,75.5366 2276 | 1438100161,75.65 2277 | 1438100221,75.65 2278 | 1438100282,75.65 2279 | 1438100341,75.65 2280 | 1438100402,75.65 2281 | 1438100461,75.65 2282 | 1438100522,75.65 2283 | 1438100581,75.7616 2284 | 1438100642,75.7616 2285 | 1438100701,75.7616 2286 | 1438100761,75.7616 2287 | 1438100821,75.7616 2288 | 1438100881,75.7616 2289 | 1438100941,75.7616 2290 | 1438101001,75.7616 2291 | 1438101062,75.7616 2292 | 1438101121,75.875 2293 | 1438101182,75.875 2294 | 1438101241,75.875 2295 | 1438101301,75.875 2296 | 1438101362,75.875 2297 | 1438101421,75.9866 2298 | 1438101481,75.875 2299 | 1438101541,75.875 2300 | 1438101601,75.9866 2301 | 1438101662,76.1 2302 | 1438101721,75.9866 2303 | 1438101782,75.9866 2304 | 1438101842,76.1 2305 | 1438101901,76.1 2306 | 1438101962,76.1 2307 | 1438102021,76.2116 2308 | 1438102081,76.2116 2309 | 1438102141,76.2116 2310 | 1438102201,76.2116 2311 | 1438102261,76.325 2312 | 1438102321,76.2116 2313 | 1438102381,76.325 2314 | 1438102442,76.325 2315 | 1438102501,76.325 2316 | 1438102562,76.4366 2317 | 1438102621,76.4366 2318 | 1438102682,76.4366 2319 | 1438102741,76.55 2320 | 1438102801,76.55 2321 | 1438102862,76.55 2322 | 1438102921,76.55 2323 | 1438102982,76.55 2324 | 1438103041,76.6616 2325 | 1438103102,76.6616 2326 | 1438103161,76.6616 2327 | 1438103221,76.6616 2328 | 1438103281,76.6616 2329 | 1438103341,76.6616 2330 | 1438103402,76.775 2331 | 1438103461,76.775 2332 | 1438103522,76.775 2333 | 1438103581,76.775 2334 | 1438103642,76.775 2335 | 1438103701,76.775 2336 | 1438103762,76.775 2337 | 1438103822,76.775 2338 | 1438103881,76.8866 2339 | 1438103942,76.8866 2340 | 1438104001,76.8866 2341 | 1438104062,76.8866 2342 | 1438104121,76.8866 2343 | 1438104181,77.0 2344 | 1438104241,77.0 2345 | 1438104301,77.0 2346 | 1438104361,77.0 2347 | 1438104421,76.8866 2348 | 1438104481,77.0 2349 | 1438104541,76.8866 2350 | 1438104602,77.0 2351 | 1438104661,77.0 2352 | 1438104722,77.0 2353 | 1438104781,77.1116 2354 | 1438104842,77.1116 2355 | 1438104901,77.1116 2356 | 1438104962,77.1116 2357 | 1438105021,77.1116 2358 | 1438105081,77.225 2359 | 1438105141,77.225 2360 | 1438105201,77.225 2361 | 1438105261,77.3366 2362 | 1438105321,77.3366 2363 | 1438105382,77.3366 2364 | 1438105441,77.3366 2365 | 1438105502,77.45 2366 | 1438105561,77.45 2367 | 1438105622,77.45 2368 | 1438105681,77.45 2369 | 1438105741,77.3366 2370 | 1438105802,77.45 2371 | 1438105861,77.45 2372 | 1438105922,77.5616 2373 | 1438105981,77.5616 2374 | 1438106041,77.5616 2375 | 1438106102,77.5616 2376 | 1438106161,77.5616 2377 | 1438106222,77.5616 2378 | 1438106281,77.5616 2379 | 1438106342,77.5616 2380 | 1438106401,77.5616 2381 | 1438106461,77.5616 2382 | 1438106521,77.5616 2383 | 1438106581,77.5616 2384 | 1438106641,77.5616 2385 | 1438106701,77.675 2386 | 1438106762,77.675 2387 | 1438106821,77.675 2388 | 1438106882,77.7866 2389 | 1438106941,77.7866 2390 | 1438107001,77.7866 2391 | 1438107061,77.7866 2392 | 1438107121,77.7866 2393 | 1438107181,77.9 2394 | 1438107241,77.9 2395 | 1438107302,77.9 2396 | 1438107361,77.9 2397 | 1438107422,78.0116 2398 | 1438107481,78.0116 2399 | 1438107542,78.0116 2400 | 1438107601,78.125 2401 | 1438107662,78.125 2402 | 1438107721,78.125 2403 | 1438107781,78.125 2404 | 1438107841,78.2366 2405 | 1438107901,78.125 2406 | 1438107961,78.125 2407 | 1438108021,78.2366 2408 | 1438108082,78.2366 2409 | 1438108141,78.2366 2410 | 1438108202,78.2366 2411 | 1438108261,78.35 2412 | 1438108322,78.2366 2413 | 1438108381,78.35 2414 | 1438108441,78.35 2415 | 1438108501,78.35 2416 | 1438108561,78.35 2417 | 1438108621,78.4616 2418 | 1438108681,78.4616 2419 | 1438108742,78.4616 2420 | 1438108801,78.35 2421 | 1438108862,78.4616 2422 | 1438108921,78.35 2423 | 1438108982,78.2366 2424 | 1438109041,78.2366 2425 | 1438109101,78.2366 2426 | 1438109161,78.125 2427 | 1438109221,78.2366 2428 | 1438109281,78.2366 2429 | 1438109341,78.2366 2430 | 1438109402,78.35 2431 | 1438109461,78.35 2432 | 1438109522,78.4616 2433 | 1438109581,78.4616 2434 | 1438109642,78.4616 2435 | 1438109701,78.4616 2436 | 1438109762,78.575 2437 | 1438109821,78.575 2438 | 1438109881,78.575 2439 | 1438109941,78.575 2440 | 1438110001,78.6866 2441 | 1438110061,78.6866 2442 | 1438110121,78.6866 2443 | 1438110182,78.6866 2444 | 1438110241,78.6866 2445 | 1438110302,78.6866 2446 | 1438110361,78.6866 2447 | 1438110422,78.8 2448 | 1438110481,78.8 2449 | 1438110542,78.8 2450 | 1438110601,78.6866 2451 | 1438110661,78.8 2452 | 1438110721,78.6866 2453 | 1438110781,78.6866 2454 | 1438110841,78.6866 2455 | 1438110901,78.575 2456 | 1438110962,78.4616 2457 | 1438111021,78.4616 2458 | 1438111082,78.4616 2459 | 1438111141,78.4616 2460 | 1438111202,78.575 2461 | 1438111261,78.575 2462 | 1438111321,78.575 2463 | 1438111381,78.575 2464 | 1438111441,78.6866 2465 | 1438111501,78.6866 2466 | 1438111561,78.6866 2467 | 1438111621,78.6866 2468 | 1438111681,78.6866 2469 | 1438111742,78.8 2470 | 1438111801,78.8 2471 | 1438111862,78.9116 2472 | 1438111921,78.9116 2473 | 1438111981,78.9116 2474 | 1438112041,79.025 2475 | 1438112101,78.9116 2476 | 1438112161,79.025 2477 | 1438112221,79.025 2478 | 1438112281,79.1366 2479 | 1438112341,79.1366 2480 | 1438112402,79.1366 2481 | 1438112461,79.25 2482 | 1438112522,79.25 2483 | 1438112581,79.25 2484 | 1438112641,79.25 2485 | 1438112701,79.25 2486 | 1438112761,79.25 2487 | 1438112821,79.3616 2488 | 1438112881,79.3616 2489 | 1438112941,79.3616 2490 | 1438113001,79.475 2491 | 1438113062,79.475 2492 | 1438113121,79.475 2493 | 1438113182,79.475 2494 | 1438113241,79.475 2495 | 1438113302,79.475 2496 | 1438113361,79.475 2497 | 1438113422,79.475 2498 | 1438113481,79.475 2499 | 1438113541,79.5866 2500 | 1438113601,79.5866 2501 | 1438113661,79.5866 2502 | 1438113721,79.5866 2503 | 1438113781,79.5866 2504 | 1438113841,79.5866 2505 | 1438113902,79.7 2506 | 1438113961,79.7 2507 | 1438114021,79.7 2508 | 1438114081,79.7 2509 | 1438114141,79.8116 2510 | 1438114202,79.8116 2511 | 1438114261,79.8116 2512 | 1438114321,79.8116 2513 | 1438114381,79.8116 2514 | 1438114441,79.8116 2515 | 1438114501,79.925 2516 | 1438114561,79.925 2517 | 1438114621,79.925 2518 | 1438114681,79.925 2519 | 1438114742,80.0366 2520 | 1438114801,80.0366 2521 | 1438114862,80.15 2522 | 1438114921,80.15 2523 | 1438114982,80.15 2524 | 1438115041,80.15 2525 | 1438115102,80.15 2526 | 1438115161,80.15 2527 | 1438115221,80.15 2528 | 1438115281,80.2616 2529 | 1438115341,80.2616 2530 | 1438115401,80.2616 2531 | 1438115461,80.2616 2532 | 1438115522,80.2616 2533 | 1438115581,80.2616 2534 | 1438115641,80.2616 2535 | 1438115702,80.2616 2536 | 1438115761,80.375 2537 | 1438115822,80.375 2538 | 1438115881,80.4866 2539 | 1438115942,80.375 2540 | 1438116001,80.4866 2541 | 1438116062,80.375 2542 | 1438116121,80.4866 2543 | 1438116181,80.4866 2544 | 1438116241,80.4866 2545 | 1438116301,80.4866 2546 | 1438116361,80.4866 2547 | 1438116421,80.6 2548 | 1438116482,80.6 2549 | 1438116541,80.7116 2550 | 1438116602,80.6 2551 | 1438116661,80.7116 2552 | 1438116722,80.7116 2553 | 1438116781,80.7116 2554 | 1438116841,80.825 2555 | 1438116901,80.825 2556 | 1438116961,80.825 2557 | 1438117021,80.825 2558 | 1438117082,80.825 2559 | 1438117141,80.9366 2560 | 1438117202,80.9366 2561 | 1438117261,80.9366 2562 | 1438117322,80.9366 2563 | 1438117381,80.9366 2564 | 1438117441,81.05 2565 | 1438117501,81.05 2566 | 1438117561,81.05 2567 | 1438117621,81.05 2568 | 1438117681,81.1616 2569 | 1438117741,81.1616 2570 | 1438117801,81.1616 2571 | 1438117862,81.1616 2572 | 1438117921,81.1616 2573 | 1438117982,81.1616 2574 | 1438118041,81.275 2575 | 1438118102,81.275 2576 | 1438118161,81.275 2577 | 1438118222,81.275 2578 | 1438118281,81.3866 2579 | 1438118341,81.3866 2580 | 1438118401,81.3866 2581 | 1438118461,81.5 2582 | 1438118521,81.5 2583 | 1438118581,81.5 2584 | 1438118642,81.5 2585 | 1438118701,81.5 2586 | 1438118762,81.5 2587 | 1438118821,81.5 2588 | 1438118882,81.5 2589 | 1438118941,81.5 2590 | 1438119002,81.5 2591 | 1438119061,81.5 2592 | 1438119121,81.5 2593 | 1438119181,81.5 2594 | 1438119241,81.5 2595 | 1438119301,81.5 2596 | 1438119361,81.6116 2597 | 1438119422,81.6116 2598 | 1438119481,81.6116 2599 | 1438119542,81.6116 2600 | 1438119601,81.6116 2601 | 1438119662,81.725 2602 | 1438119721,81.725 2603 | 1438119782,81.725 2604 | 1438119841,81.725 2605 | 1438119901,81.725 2606 | 1438119961,81.8366 2607 | 1438120021,81.8366 2608 | 1438120081,81.8366 2609 | 1438120141,81.95 2610 | 1438120202,81.8366 2611 | 1438120261,81.95 2612 | 1438120322,81.95 2613 | 1438120381,81.95 2614 | 1438120442,81.95 2615 | 1438120501,82.0616 2616 | 1438120561,82.0616 2617 | 1438120621,82.0616 2618 | 1438120681,82.0616 2619 | 1438120741,82.0616 2620 | 1438120801,82.0616 2621 | 1438120862,82.0616 2622 | 1438120921,82.0616 2623 | 1438120982,82.175 2624 | 1438121041,82.175 2625 | 1438121102,82.2866 2626 | 1438121161,82.175 2627 | 1438121222,82.2866 2628 | 1438121281,82.2866 2629 | 1438121341,82.2866 2630 | 1438121401,82.2866 2631 | 1438121461,82.4 2632 | 1438121521,82.4 2633 | 1438121581,82.4 2634 | 1438121642,82.5116 2635 | 1438121701,82.5116 2636 | 1438121762,82.625 2637 | 1438121821,82.5116 2638 | 1438121882,82.625 2639 | 1438121941,82.625 2640 | 1438122002,82.625 2641 | 1438122061,82.625 2642 | 1438122121,82.625 2643 | 1438122181,82.7366 2644 | 1438122241,82.7366 2645 | 1438122302,82.7366 2646 | 1438122361,82.7366 2647 | 1438122422,82.85 2648 | 1438122481,82.85 2649 | 1438122542,82.85 2650 | 1438122601,82.85 2651 | 1438122661,82.85 2652 | 1438122721,82.85 2653 | 1438122781,82.85 2654 | 1438122841,82.9616 2655 | 1438122901,82.9616 2656 | 1438122962,82.9616 2657 | 1438123021,82.9616 2658 | 1438123082,82.9616 2659 | 1438123141,83.075 2660 | 1438123201,83.075 2661 | 1438123261,83.075 2662 | 1438123321,83.075 2663 | 1438123381,83.075 2664 | 1438123441,83.1866 2665 | 1438123502,83.1866 2666 | 1438123561,83.1866 2667 | 1438123622,83.1866 2668 | 1438123681,83.1866 2669 | 1438123742,83.3 2670 | 1438123801,83.3 2671 | 1438123862,83.3 2672 | 1438123921,83.3 2673 | 1438123981,83.3 2674 | 1438124041,83.3 2675 | 1438124101,83.4116 2676 | 1438124161,83.4116 2677 | 1438124221,83.4116 2678 | 1438124282,83.525 2679 | 1438124341,83.525 2680 | 1438124402,83.525 2681 | 1438124461,83.525 2682 | 1438124522,83.525 2683 | 1438124581,83.6366 2684 | 1438124641,83.525 2685 | 1438124701,83.6366 2686 | 1438124761,83.6366 2687 | 1438124822,83.6366 2688 | 1438124881,83.75 2689 | 1438124942,83.75 2690 | 1438125001,83.75 2691 | 1438125062,83.8616 2692 | 1438125121,83.8616 2693 | 1438125182,83.8616 2694 | 1438125241,83.8616 2695 | 1438125302,83.8616 2696 | 1438125361,83.8616 2697 | 1438125421,83.8616 2698 | 1438125482,83.8616 2699 | 1438125541,83.975 2700 | 1438125601,83.975 2701 | 1438125661,83.975 2702 | 1438125721,83.975 2703 | 1438125782,84.0866 2704 | 1438125841,83.975 2705 | 1438125902,84.0866 2706 | 1438125961,84.0866 2707 | 1438126021,84.0866 2708 | 1438126081,84.2 2709 | 1438126141,84.0866 2710 | 1438126201,84.2 2711 | 1438126261,84.2 2712 | 1438126321,84.2 2713 | 1438126381,84.3116 2714 | 1438126442,84.3116 2715 | 1438126501,84.3116 2716 | 1438126561,84.3116 2717 | 1438126621,84.3116 2718 | 1438126681,84.3116 2719 | 1438126741,84.3116 2720 | 1438126801,84.425 2721 | 1438126862,84.425 2722 | 1438126921,84.425 2723 | 1438126982,84.5366 2724 | 1438127041,84.425 2725 | 1438127102,84.425 2726 | 1438127161,84.425 2727 | 1438127221,84.5366 2728 | 1438127281,84.5366 2729 | 1438127341,84.5366 2730 | 1438127401,84.5366 2731 | 1438127461,84.5366 2732 | 1438127522,84.65 2733 | 1438127581,84.65 2734 | 1438127642,84.7616 2735 | 1438127701,84.65 2736 | 1438127762,84.7616 2737 | 1438127821,84.7616 2738 | 1438127881,84.7616 2739 | 1438127941,84.875 2740 | 1438128001,84.875 2741 | 1438128061,84.875 2742 | 1438128121,84.875 2743 | 1438128181,84.9866 2744 | 1438128242,84.9866 2745 | 1438128301,84.9866 2746 | 1438128362,84.9866 2747 | 1438128421,85.1 2748 | 1438128482,85.1 2749 | 1438128541,85.1 2750 | 1438128601,85.1 2751 | 1438128661,85.1 2752 | 1438128721,85.2116 2753 | 1438128782,85.2116 2754 | 1438128841,85.2116 2755 | 1438128902,85.2116 2756 | 1438128961,85.2116 2757 | 1438129021,85.2116 2758 | 1438129081,85.2116 2759 | 1438129141,85.2116 2760 | 1438129202,85.325 2761 | 1438129261,85.325 2762 | 1438129322,85.325 2763 | 1438129381,85.325 2764 | 1438129442,85.4366 2765 | 1438129501,85.4366 2766 | 1438129562,85.55 2767 | 1438129621,85.4366 2768 | 1438129682,85.4366 2769 | 1438129741,85.55 2770 | 1438129801,85.55 2771 | 1438129862,85.55 2772 | 1438129921,85.55 2773 | 1438129981,85.6616 2774 | 1438130042,85.6616 2775 | 1438130101,85.6616 2776 | 1438130162,85.6616 2777 | 1438130221,85.6616 2778 | 1438130281,85.775 2779 | 1438130341,85.55 2780 | 1438130401,84.9866 2781 | 1438130462,84.2 2782 | 1438130521,83.525 2783 | 1438130582,82.9616 2784 | 1438130641,82.175 2785 | 1438130702,81.8366 2786 | 1438130761,81.5 2787 | 1438130821,81.275 2788 | 1438130881,80.9366 2789 | 1438130941,80.9366 2790 | 1438131001,80.7116 2791 | 1438131061,80.4866 2792 | 1438131122,80.375 2793 | 1438131181,80.0366 2794 | 1438131242,79.925 2795 | 1438131301,79.8116 2796 | 1438131362,79.8116 2797 | 1438131421,79.7 2798 | 1438131481,79.5866 2799 | 1438131541,79.475 2800 | 1438131601,79.3616 2801 | 1438131662,79.25 2802 | 1438131721,79.1366 2803 | 1438131782,79.025 2804 | 1438131841,78.9116 2805 | 1438131901,78.9116 2806 | 1438131962,78.9116 2807 | 1438132021,78.8 2808 | 1438132082,78.8 2809 | 1438132141,78.8 2810 | 1438132201,78.575 2811 | 1438132261,78.6866 2812 | 1438132321,78.575 2813 | 1438132382,78.4616 2814 | 1438132441,78.35 2815 | 1438132502,78.35 2816 | 1438132561,78.125 2817 | 1438132622,78.125 2818 | 1438132681,78.125 2819 | 1438132741,78.0116 2820 | 1438132801,77.9 2821 | 1438132861,77.9 2822 | 1438132921,77.7866 2823 | 1438132981,77.7866 2824 | 1438133041,77.7866 2825 | 1438133101,77.675 2826 | 1438133162,77.5616 2827 | 1438133221,77.5616 2828 | 1438133282,77.5616 2829 | 1438133341,77.45 2830 | 1438133402,77.45 2831 | 1438133461,77.3366 2832 | 1438133521,77.3366 2833 | 1438133581,77.3366 2834 | 1438133641,77.3366 2835 | 1438133701,77.225 2836 | 1438133761,77.225 2837 | 1438133822,77.1116 2838 | 1438133881,77.1116 2839 | 1438133942,77.1116 2840 | 1438134001,77.1116 2841 | 1438134062,77.0 2842 | 1438134121,76.8866 2843 | 1438134182,76.8866 2844 | 1438134241,77.0 2845 | 1438134301,76.8866 2846 | 1438134362,76.8866 2847 | 1438134421,76.775 2848 | 1438134481,76.6616 2849 | 1438134542,76.6616 2850 | 1438134601,76.6616 2851 | 1438134662,76.55 2852 | 1438134721,76.55 2853 | 1438134782,76.4366 2854 | 1438134841,75.9866 2855 | 1438134901,75.875 2856 | 1438134961,75.65 2857 | 1438135021,75.5366 2858 | 1438135082,75.425 2859 | 1438135141,75.3116 2860 | 1438135202,75.2 2861 | 1438135261,75.0866 2862 | 1438135321,75.0866 2863 | 1438135382,74.975 2864 | 1438135441,74.975 2865 | 1438135502,74.975 2866 | 1438135561,74.8616 2867 | 1438135621,74.75 2868 | 1438135681,74.8616 2869 | 1438135741,74.8616 2870 | 1438135801,74.75 2871 | 1438135861,74.6366 2872 | 1438135922,74.525 2873 | 1438135981,74.6366 2874 | 1438136042,74.525 2875 | 1438136101,74.525 2876 | 1438136162,74.4116 2877 | 1438136221,74.3 2878 | 1438136282,74.1866 2879 | 1438136341,74.075 2880 | 1438136401,74.1866 2881 | 1438136462,74.075 2882 | 1438136521,73.9616 2883 | 1438136581,73.9616 2884 | 1438136641,73.85 2885 | 1438136701,73.85 2886 | 1438136761,73.85 2887 | 1438136821,73.7366 2888 | 1438136881,73.625 2889 | 1438136941,73.5116 2890 | 1438137001,73.5116 2891 | 1438137061,73.2866 2892 | 1438137121,73.4 2893 | 1438137181,73.4 2894 | 1438137241,73.2866 2895 | 1438137301,73.2866 2896 | 1438137362,73.2866 2897 | 1438137421,73.2866 2898 | 1438137482,73.175 2899 | 1438137541,73.175 2900 | 1438137602,73.0616 2901 | 1438137661,73.0616 2902 | 1438137721,72.95 2903 | 1438137781,72.95 2904 | 1438137841,72.95 2905 | 1438137902,72.8366 2906 | 1438137961,72.725 2907 | 1438138021,72.725 2908 | 1438138081,72.6116 2909 | 1438138141,72.5 2910 | 1438138201,72.3866 2911 | 1438138261,72.275 2912 | 1438138321,72.1616 2913 | 1438138381,72.1616 2914 | 1438138441,72.1616 2915 | 1438138501,72.05 2916 | 1438138561,71.9366 2917 | 1438138622,71.9366 2918 | 1438138681,71.825 2919 | 1438138742,71.7116 2920 | 1438138801,71.7116 2921 | 1438138861,71.6 2922 | 1438138921,71.6 2923 | 1438138981,71.4866 2924 | 1438139041,71.375 2925 | 1438139101,71.375 2926 | 1438139162,71.375 2927 | 1438139221,71.2616 2928 | 1438139282,71.15 2929 | 1438139341,71.15 2930 | 1438139401,71.15 2931 | 1438139461,71.0366 2932 | 1438139521,71.0366 2933 | 1438139581,70.925 2934 | 1438139641,70.8116 2935 | 1438139701,70.8116 2936 | 1438139761,70.7 2937 | 1438139822,70.7 2938 | 1438139881,70.5866 2939 | 1438139942,70.5866 2940 | 1438140001,70.475 2941 | 1438140062,70.475 2942 | 1438140121,70.3616 2943 | 1438140181,70.25 2944 | 1438140241,70.25 2945 | 1438140301,70.1366 2946 | 1438140361,70.1366 2947 | 1438140421,70.025 2948 | 1438140481,70.025 2949 | 1438140541,69.9116 2950 | 1438140602,69.9116 2951 | 1438140661,69.9116 2952 | 1438140722,69.9116 2953 | 1438140781,69.9116 2954 | 1438140842,69.8 2955 | 1438140901,69.8 2956 | 1438140961,69.8 2957 | 1438141021,69.8 2958 | 1438141081,69.6866 2959 | 1438141141,69.6866 2960 | 1438141201,69.6866 2961 | 1438141262,69.6866 2962 | 1438141321,69.575 2963 | 1438141382,69.575 2964 | 1438141441,69.4616 2965 | 1438141502,69.575 2966 | 1438141561,69.4616 2967 | 1438141621,69.4616 2968 | 1438141681,69.4616 2969 | 1438141741,69.35 2970 | 1438141801,69.4616 2971 | 1438141861,69.4616 2972 | 1438141921,69.35 2973 | 1438141981,69.2366 2974 | 1438142042,69.2366 2975 | 1438142101,69.2366 2976 | 1438142162,69.2366 2977 | 1438142221,69.2366 2978 | 1438142281,69.125 2979 | 1438142342,69.125 2980 | 1438142401,69.125 2981 | 1438142462,69.125 2982 | 1438142521,69.125 2983 | 1438142581,69.0116 2984 | 1438142642,69.0116 2985 | 1438142701,69.0116 2986 | 1438142762,68.9 2987 | 1438142821,68.9 2988 | 1438142881,68.9 2989 | 1438142942,68.9 2990 | 1438143001,68.7866 2991 | 1438143061,68.7866 2992 | 1438143121,68.675 2993 | 1438143181,68.675 2994 | 1438143242,68.675 2995 | 1438143301,68.675 2996 | 1438143361,68.675 2997 | 1438143421,68.675 2998 | 1438143481,68.5616 2999 | 1438143542,68.5616 3000 | 1438143601,68.5616 3001 | 1438143661,68.5616 3002 | 1438143722,68.675 3003 | 1438143781,68.5616 3004 | 1438143841,68.675 3005 | 1438143902,68.675 3006 | 1438143961,68.5616 3007 | 1438144022,68.5616 3008 | 1438144081,68.45 3009 | 1438144141,68.45 3010 | 1438144202,68.45 3011 | 1438144261,68.3366 3012 | 1438144321,68.3366 3013 | 1438144381,68.225 3014 | 1438144441,68.1116 3015 | 1438144502,68.1116 3016 | 1438144561,68.225 3017 | 1438144621,68.225 3018 | 1438144682,68.225 3019 | 1438144741,68.225 3020 | 1438144801,68.1116 3021 | 1438144861,68.1116 3022 | 1438144921,68.1116 3023 | 1438144982,68.0 3024 | 1438145041,68.0 3025 | 1438145101,68.0 3026 | 1438145161,67.8866 3027 | 1438145221,67.775 3028 | 1438145282,67.8866 3029 | 1438145341,67.775 3030 | 1438145401,67.8866 3031 | 1438145462,67.8866 3032 | 1438145521,67.8866 3033 | 1438145581,68.0 3034 | 1438145641,67.8866 3035 | 1438145701,67.8866 3036 | 1438145762,68.0 3037 | 1438145821,68.0 3038 | 1438145881,67.8866 3039 | 1438145942,67.775 3040 | 1438146001,67.775 3041 | 1438146062,67.775 3042 | 1438146121,67.6616 3043 | 1438146181,67.6616 3044 | 1438146242,67.6616 3045 | 1438146301,67.6616 3046 | 1438146362,67.6616 3047 | 1438146421,67.55 3048 | 1438146481,67.55 3049 | 1438146542,67.55 3050 | 1438146601,67.4366 3051 | 1438146662,67.55 3052 | 1438146721,67.4366 3053 | 1438146781,67.4366 3054 | 1438146842,67.4366 3055 | 1438146901,67.55 3056 | 1438146961,67.4366 3057 | 1438147022,67.325 3058 | 1438147081,67.325 3059 | 1438147141,67.2116 3060 | 1438147201,67.2116 3061 | 1438147261,67.2116 3062 | 1438147322,67.1 3063 | 1438147381,67.1 3064 | 1438147442,67.1 3065 | 1438147501,67.1 3066 | 1438147561,67.1 3067 | 1438147622,66.9866 3068 | 1438147681,66.9866 3069 | 1438147741,66.9866 3070 | 1438147802,67.1 3071 | 1438147861,66.9866 3072 | 1438147922,66.9866 3073 | 1438147981,67.1 3074 | 1438148042,67.1 3075 | 1438148101,67.1 3076 | 1438148162,67.1 3077 | 1438148221,67.1 3078 | 1438148282,67.1 3079 | 1438148341,67.1 3080 | 1438148401,67.2116 3081 | 1438148462,67.2116 3082 | 1438148521,67.1 3083 | 1438148582,67.1 3084 | 1438148641,67.1 3085 | 1438148701,67.1 3086 | 1438148761,66.9866 3087 | 1438148821,66.9866 3088 | 1438148881,66.9866 3089 | 1438148941,66.9866 3090 | 1438149002,66.875 3091 | 1438149061,66.7616 3092 | 1438149121,66.875 3093 | 1438149181,66.7616 3094 | 1438149241,66.7616 3095 | 1438149301,66.7616 3096 | 1438149361,66.7616 3097 | 1438149421,66.65 3098 | 1438149482,66.65 3099 | 1438149541,66.5366 3100 | 1438149601,66.65 3101 | 1438149661,66.7616 3102 | 1438149721,66.7616 3103 | 1438149782,66.65 3104 | 1438149841,66.5366 3105 | 1438149902,66.5366 3106 | 1438149961,66.425 3107 | 1438150021,66.425 3108 | 1438150081,66.425 3109 | 1438150141,66.425 3110 | 1438150202,66.425 3111 | 1438150261,66.425 3112 | 1438150321,66.425 3113 | 1438150381,66.425 3114 | 1438150441,66.425 3115 | 1438150502,66.425 3116 | 1438150561,66.425 3117 | 1438150621,66.425 3118 | 1438150682,66.425 3119 | 1438150741,66.425 3120 | 1438150802,66.3116 3121 | 1438150861,66.3116 3122 | 1438150921,66.2 3123 | 1438150982,66.3116 3124 | 1438151041,66.5366 3125 | 1438151101,66.9866 3126 | 1438151161,67.55 3127 | 1438151221,67.8866 3128 | 1438151281,68.3366 3129 | 1438151341,68.675 3130 | 1438151402,69.0116 3131 | 1438151461,69.35 3132 | 1438151522,69.575 3133 | 1438151581,69.8 3134 | 1438151641,70.025 3135 | 1438151702,70.1366 3136 | 1438151761,70.3616 3137 | 1438151821,70.5866 3138 | 1438151881,70.7 3139 | 1438151941,70.925 3140 | 1438152001,71.0366 3141 | 1438152062,71.0366 3142 | 1438152121,71.2616 3143 | 1438152182,71.2616 3144 | 1438152241,71.2616 3145 | 1438152301,71.4866 3146 | 1438152361,71.4866 3147 | 1438152421,71.6 3148 | 1438152481,71.7116 3149 | 1438152541,71.825 3150 | 1438152602,71.9366 3151 | 1438152661,71.9366 3152 | 1438152721,71.9366 3153 | 1438152781,72.05 3154 | 1438152841,72.1616 3155 | 1438152901,72.275 3156 | 1438152961,72.3866 3157 | 1438153022,72.5 3158 | 1438153081,72.3866 3159 | 1438153142,72.6116 3160 | 1438153201,72.6116 3161 | 1438153262,72.6116 3162 | 1438153321,72.6116 3163 | 1438153382,72.725 3164 | 1438153441,72.725 3165 | 1438153501,72.725 3166 | 1438153561,72.725 3167 | 1438153621,72.725 3168 | 1438153682,72.725 3169 | 1438153741,72.8366 3170 | 1438153802,72.725 3171 | 1438153861,72.725 3172 | 1438153922,72.8366 3173 | 1438153981,72.8366 3174 | 1438154042,72.95 3175 | 1438154101,72.95 3176 | 1438154162,73.0616 3177 | 1438154221,73.0616 3178 | 1438154281,73.0616 3179 | 1438154341,73.175 3180 | 1438154401,73.2866 3181 | 1438154461,73.2866 3182 | 1438154522,73.2866 3183 | 1438154581,73.2866 3184 | 1438154642,73.4 3185 | 1438154701,73.4 3186 | 1438154762,73.5116 3187 | 1438154821,73.5116 3188 | 1438154882,73.5116 3189 | 1438154941,73.5116 3190 | 1438155002,73.625 3191 | 1438155061,73.625 3192 | 1438155122,73.625 3193 | 1438155181,73.625 3194 | 1438155241,73.625 3195 | 1438155301,73.625 3196 | 1438155361,73.625 3197 | 1438155422,73.625 3198 | 1438155481,73.625 3199 | 1438155542,73.625 3200 | 1438155601,73.625 3201 | 1438155662,73.7366 3202 | 1438155721,73.7366 3203 | 1438155781,73.7366 3204 | 1438155841,73.7366 3205 | 1438155901,73.7366 3206 | 1438155961,73.7366 3207 | 1438156021,73.7366 3208 | 1438156081,73.7366 3209 | 1438156141,73.7366 3210 | 1438156202,73.7366 3211 | 1438156261,73.7366 3212 | 1438156322,73.85 3213 | 1438156381,73.7366 3214 | 1438156442,73.7366 3215 | 1438156501,73.7366 3216 | 1438156562,73.7366 3217 | 1438156621,73.85 3218 | 1438156682,73.7366 3219 | 1438156741,73.85 3220 | 1438156801,73.85 3221 | 1438156861,73.85 3222 | 1438156921,73.85 3223 | 1438156981,73.85 3224 | 1438157041,73.85 3225 | 1438157101,73.85 3226 | 1438157161,73.9616 3227 | 1438157221,73.85 3228 | 1438157281,73.9616 3229 | 1438157341,73.85 3230 | 1438157402,73.9616 3231 | 1438157461,73.9616 3232 | 1438157522,73.9616 3233 | 1438157581,73.9616 3234 | 1438157642,73.9616 3235 | 1438157701,73.9616 3236 | 1438157761,73.9616 3237 | 1438157822,73.9616 3238 | 1438157881,74.075 3239 | 1438157941,74.075 3240 | 1438158001,74.075 3241 | 1438158061,74.075 3242 | 1438158121,74.075 3243 | 1438158181,74.075 3244 | 1438158242,74.075 3245 | 1438158301,74.075 3246 | 1438158362,74.075 3247 | 1438158421,74.075 3248 | 1438158482,74.075 3249 | 1438158541,74.075 3250 | 1438158602,74.075 3251 | 1438158661,73.9616 3252 | 1438158722,74.075 3253 | 1438158781,73.9616 3254 | 1438158841,73.9616 3255 | 1438158901,74.075 3256 | 1438158961,74.075 3257 | 1438159021,74.075 3258 | 1438159081,74.075 3259 | 1438159141,74.075 3260 | 1438159201,74.075 3261 | 1438159262,74.075 3262 | 1438159321,74.075 3263 | 1438159382,74.075 3264 | 1438159441,74.075 3265 | 1438159502,74.075 3266 | 1438159561,74.075 3267 | 1438159622,74.075 3268 | 1438159681,74.075 3269 | 1438159742,74.075 3270 | 1438159801,74.075 3271 | 1438159862,74.075 3272 | 1438159921,74.075 3273 | 1438159982,74.075 3274 | 1438160041,74.1866 3275 | 1438160101,74.1866 3276 | 1438160161,74.075 3277 | 1438160221,74.075 3278 | 1438160281,74.075 3279 | 1438160341,74.1866 3280 | 1438160401,74.1866 3281 | 1438160461,74.1866 3282 | 1438160522,74.1866 3283 | 1438160581,74.1866 3284 | 1438160642,74.1866 3285 | 1438160701,74.1866 3286 | 1438160762,74.1866 3287 | 1438160821,74.1866 3288 | 1438160882,74.1866 3289 | 1438160941,74.1866 3290 | 1438161002,74.1866 3291 | 1438161061,74.1866 3292 | 1438161121,74.1866 3293 | 1438161181,74.1866 3294 | 1438161241,74.1866 3295 | 1438161301,74.1866 3296 | 1438161361,74.1866 3297 | 1438161422,74.1866 3298 | 1438161481,74.1866 3299 | 1438161542,74.1866 3300 | 1438161601,74.1866 3301 | 1438161662,74.1866 3302 | 1438161721,74.1866 3303 | 1438161782,74.1866 3304 | 1438161841,74.3 3305 | 1438161901,74.1866 3306 | 1438161961,74.1866 3307 | 1438162021,74.1866 3308 | 1438162081,74.1866 3309 | 1438162141,74.1866 3310 | 1438162201,74.3 3311 | 1438162261,74.1866 3312 | 1438162322,74.1866 3313 | 1438162381,74.1866 3314 | 1438162442,74.1866 3315 | 1438162501,74.1866 3316 | 1438162562,74.1866 3317 | 1438162621,74.1866 3318 | 1438162682,74.1866 3319 | 1438162741,74.1866 3320 | 1438162802,74.1866 3321 | 1438162861,74.1866 3322 | 1438162922,74.1866 3323 | 1438162981,74.1866 3324 | 1438163041,74.1866 3325 | 1438163101,74.1866 3326 | 1438163161,74.1866 3327 | 1438163221,74.1866 3328 | 1438163281,74.1866 3329 | 1438163342,74.1866 3330 | 1438163401,74.1866 3331 | 1438163462,74.1866 3332 | 1438163521,74.1866 3333 | 1438163581,74.1866 3334 | 1438163641,74.1866 3335 | 1438163701,74.1866 3336 | 1438163762,74.1866 3337 | 1438163821,74.1866 3338 | 1438163882,74.1866 3339 | 1438163941,74.1866 3340 | 1438164002,74.1866 3341 | 1438164061,74.1866 3342 | 1438164122,74.1866 3343 | 1438164181,74.1866 3344 | 1438164241,74.1866 3345 | 1438164301,74.1866 3346 | 1438164361,74.1866 3347 | 1438164421,74.1866 3348 | 1438164481,74.1866 3349 | 1438164542,74.1866 3350 | 1438164601,74.1866 3351 | 1438164662,74.1866 3352 | 1438164721,74.3 3353 | 1438164782,74.1866 3354 | 1438164841,74.1866 3355 | 1438164902,74.1866 3356 | 1438164961,74.3 3357 | 1438165021,74.1866 3358 | 1438165081,74.3 3359 | 1438165141,74.1866 3360 | 1438165201,74.1866 3361 | 1438165261,74.1866 3362 | 1438165322,74.3 3363 | 1438165381,74.3 3364 | 1438165442,74.3 3365 | 1438165501,74.3 3366 | 1438165562,74.1866 3367 | 1438165621,74.1866 3368 | 1438165682,74.1866 3369 | 1438165741,74.3 3370 | 1438165802,74.1866 3371 | 1438165861,74.1866 3372 | 1438165921,74.1866 3373 | 1438165982,74.1866 3374 | 1438166041,74.1866 3375 | 1438166102,74.1866 3376 | 1438166161,74.1866 3377 | 1438166221,74.3 3378 | 1438166281,74.1866 3379 | 1438166341,74.1866 3380 | 1438166401,74.1866 3381 | 1438166461,74.1866 3382 | 1438166522,74.1866 3383 | 1438166581,74.1866 3384 | 1438166642,74.1866 3385 | 1438166701,74.1866 3386 | 1438166762,74.1866 3387 | 1438166821,74.1866 3388 | 1438166882,74.1866 3389 | 1438166941,74.1866 3390 | 1438167002,74.1866 3391 | 1438167061,74.3 3392 | 1438167121,74.1866 3393 | 1438167181,74.1866 3394 | 1438167241,74.1866 3395 | 1438167301,74.1866 3396 | 1438167361,74.1866 3397 | 1438167422,74.1866 3398 | 1438167481,74.1866 3399 | 1438167542,74.1866 3400 | 1438167601,74.1866 3401 | 1438167662,74.1866 3402 | 1438167721,74.1866 3403 | 1438167782,74.1866 3404 | 1438167841,74.075 3405 | 1438167902,74.1866 3406 | 1438167961,74.1866 3407 | 1438168021,74.075 3408 | 1438168081,74.075 3409 | 1438168141,74.075 3410 | 1438168202,74.1866 3411 | 1438168261,74.1866 3412 | 1438168322,74.075 3413 | 1438168381,74.075 3414 | 1438168441,74.075 3415 | 1438168502,74.075 3416 | 1438168561,74.075 3417 | 1438168622,74.075 3418 | 1438168681,74.075 3419 | 1438168742,74.075 3420 | 1438168801,74.075 3421 | 1438168861,74.075 3422 | 1438168921,74.075 3423 | 1438168981,74.075 3424 | 1438169041,74.075 3425 | 1438169101,74.075 3426 | 1438169162,74.075 3427 | 1438169221,74.075 3428 | 1438169282,74.075 3429 | 1438169341,74.075 3430 | 1438169402,74.075 3431 | 1438169461,74.075 3432 | 1438169521,74.075 3433 | 1438169581,74.075 3434 | 1438169641,74.075 3435 | 1438169701,73.9616 3436 | 1438169761,74.075 3437 | 1438169822,73.9616 3438 | 1438169881,73.9616 3439 | 1438169942,74.075 3440 | 1438170001,73.9616 3441 | 1438170062,73.9616 3442 | 1438170121,73.9616 3443 | 1438170182,74.075 3444 | 1438170241,73.9616 3445 | 1438170301,73.9616 3446 | 1438170361,74.075 3447 | 1438170421,73.9616 3448 | 1438170482,73.9616 3449 | 1438170541,73.9616 3450 | 1438170602,73.9616 3451 | 1438170661,73.9616 3452 | 1438170722,74.075 3453 | 1438170781,73.9616 3454 | 1438170841,73.9616 3455 | 1438170901,73.9616 3456 | 1438170961,73.9616 3457 | 1438171022,73.9616 3458 | 1438171081,73.9616 3459 | 1438171142,73.9616 3460 | 1438171201,73.9616 3461 | 1438171262,73.9616 3462 | 1438171321,73.9616 3463 | 1438171382,73.9616 3464 | 1438171441,73.85 3465 | 1438171501,73.85 3466 | 1438171561,73.85 3467 | 1438171621,73.85 3468 | 1438171681,73.85 3469 | 1438171741,73.85 3470 | 1438171801,73.9616 3471 | 1438171861,73.85 3472 | 1438171921,73.85 3473 | 1438171981,73.85 3474 | 1438172042,73.85 3475 | 1438172101,73.85 3476 | 1438172162,73.85 3477 | 1438172222,73.85 3478 | 1438172281,73.85 3479 | 1438172341,73.7366 3480 | 1438172401,73.7366 3481 | 1438172461,73.7366 3482 | 1438172522,73.7366 3483 | 1438172581,73.85 3484 | 1438172642,73.7366 3485 | 1438172701,73.7366 3486 | 1438172761,73.7366 3487 | 1438172821,73.7366 3488 | 1438172881,73.7366 3489 | 1438172941,73.7366 3490 | 1438173001,73.7366 3491 | 1438173062,73.7366 3492 | 1438173121,73.7366 3493 | 1438173182,73.7366 3494 | 1438173241,73.7366 3495 | 1438173302,73.7366 3496 | 1438173361,73.7366 3497 | 1438173422,73.7366 3498 | 1438173481,73.7366 3499 | 1438173542,73.7366 3500 | 1438173601,73.7366 3501 | 1438173661,73.7366 3502 | 1438173721,73.7366 3503 | 1438173781,73.7366 3504 | 1438173841,73.625 3505 | 1438173901,73.7366 3506 | 1438173962,73.7366 3507 | 1438174021,73.625 3508 | 1438174082,73.7366 3509 | 1438174141,73.625 3510 | 1438174201,73.625 3511 | 1438174261,73.625 3512 | 1438174321,73.625 3513 | 1438174382,73.625 3514 | 1438174441,73.7366 3515 | 1438174502,73.625 3516 | 1438174561,73.625 3517 | 1438174622,73.625 3518 | 1438174681,73.625 3519 | 1438174741,73.625 3520 | 1438174801,73.625 3521 | 1438174861,73.625 3522 | 1438174922,73.625 3523 | 1438174981,73.625 3524 | 1438175042,73.625 3525 | 1438175101,73.625 3526 | 1438175162,73.625 3527 | 1438175221,73.625 3528 | 1438175282,73.5116 3529 | 1438175341,73.625 3530 | 1438175402,73.625 3531 | 1438175461,73.5116 3532 | 1438175521,73.5116 3533 | 1438175581,73.5116 3534 | 1438175641,73.5116 3535 | 1438175701,73.5116 3536 | 1438175761,73.5116 3537 | 1438175822,73.5116 3538 | 1438175881,73.5116 3539 | 1438175942,73.5116 3540 | 1438176001,73.5116 3541 | 1438176061,73.5116 3542 | 1438176121,73.5116 3543 | 1438176181,73.5116 3544 | 1438176242,73.5116 3545 | 1438176301,73.5116 3546 | 1438176362,73.4 3547 | 1438176421,73.4 3548 | 1438176482,73.4 3549 | 1438176541,73.4 3550 | 1438176602,73.4 3551 | 1438176661,73.4 3552 | 1438176722,73.4 3553 | 1438176781,73.4 3554 | 1438176841,73.4 3555 | 1438176901,73.4 3556 | 1438176961,73.4 3557 | 1438177021,73.2866 3558 | 1438177081,73.2866 3559 | 1438177142,73.4 3560 | 1438177201,73.2866 3561 | 1438177262,73.2866 3562 | 1438177321,73.2866 3563 | 1438177382,73.4 3564 | 1438177441,73.2866 3565 | 1438177502,73.4 3566 | 1438177561,73.4 3567 | 1438177622,73.4 3568 | 1438177681,73.4 3569 | 1438177742,73.5116 3570 | 1438177801,73.5116 3571 | 1438177861,73.5116 3572 | 1438177921,73.5116 3573 | 1438177981,73.5116 3574 | 1438178041,73.5116 3575 | 1438178101,73.5116 3576 | 1438178161,73.625 3577 | 1438178221,73.5116 3578 | 1438178282,73.625 3579 | 1438178341,73.625 3580 | 1438178402,73.625 3581 | 1438178461,73.625 3582 | 1438178521,73.7366 3583 | 1438178581,73.7366 3584 | 1438178641,73.7366 3585 | 1438178702,73.7366 3586 | 1438178761,73.85 3587 | 1438178822,73.85 3588 | 1438178881,73.85 3589 | 1438178942,73.85 3590 | 1438179001,73.85 3591 | 1438179061,73.9616 3592 | 1438179121,73.9616 3593 | 1438179181,73.9616 3594 | 1438179241,74.075 3595 | 1438179301,74.075 3596 | 1438179362,74.075 3597 | 1438179421,74.075 3598 | 1438179482,74.075 3599 | 1438179541,74.1866 3600 | 1438179602,74.1866 3601 | 1438179661,74.3 3602 | 1438179722,74.3 3603 | 1438179781,74.3 3604 | 1438179842,74.3 3605 | 1438179901,74.4116 3606 | 1438179961,74.4116 3607 | 1438180021,74.4116 3608 | 1438180081,74.4116 3609 | 1438180141,74.4116 3610 | 1438180201,74.4116 3611 | 1438180262,74.4116 3612 | 1438180321,74.525 3613 | 1438180382,74.525 3614 | 1438180441,74.525 3615 | 1438180502,74.6366 3616 | 1438180561,74.75 3617 | 1438180622,74.75 3618 | 1438180681,74.75 3619 | 1438180741,74.75 3620 | 1438180802,74.8616 3621 | 1438180861,74.75 3622 | 1438180922,74.8616 3623 | 1438180981,74.8616 3624 | 1438181042,74.8616 3625 | 1438181101,74.975 3626 | 1438181162,74.975 3627 | 1438181221,74.975 3628 | 1438181281,74.975 3629 | 1438181342,75.0866 3630 | 1438181401,75.0866 3631 | 1438181462,75.0866 3632 | 1438181521,75.2 3633 | 1438181582,75.2 3634 | 1438181641,75.2 3635 | 1438181702,75.3116 3636 | 1438181761,75.3116 3637 | 1438181822,75.3116 3638 | 1438181881,75.425 3639 | 1438181941,75.425 3640 | 1438182001,75.5366 3641 | 1438182061,75.5366 3642 | 1438182122,75.5366 3643 | 1438182181,75.65 3644 | 1438182242,75.7616 3645 | 1438182301,75.7616 3646 | 1438182362,75.875 3647 | 1438182421,75.9866 3648 | 1438182482,76.2116 3649 | 1438182541,76.2116 3650 | 1438182601,76.4366 3651 | 1438182661,76.55 3652 | 1438182721,76.4366 3653 | 1438182781,76.55 3654 | 1438182841,76.55 3655 | 1438182901,76.55 3656 | 1438182961,76.55 3657 | 1438183022,76.55 3658 | 1438183081,76.55 3659 | 1438183142,76.55 3660 | 1438183201,76.55 3661 | 1438183262,76.55 3662 | 1438183321,76.55 3663 | 1438183381,76.55 3664 | 1438183441,76.6616 3665 | 1438183501,76.6616 3666 | 1438183561,76.6616 3667 | 1438183621,76.775 3668 | 1438183681,76.775 3669 | 1438183741,76.775 3670 | 1438183802,76.775 3671 | 1438183861,76.775 3672 | 1438183922,76.8866 3673 | 1438183981,76.8866 3674 | 1438184042,76.8866 3675 | 1438184101,77.0 3676 | 1438184161,77.0 3677 | 1438184221,77.0 3678 | 1438184281,77.1116 3679 | 1438184341,77.1116 3680 | 1438184401,77.1116 3681 | 1438184461,77.225 3682 | 1438184521,77.225 3683 | 1438184582,77.3366 3684 | 1438184641,77.3366 3685 | 1438184702,77.3366 3686 | 1438184761,77.3366 3687 | 1438184822,77.3366 3688 | 1438184881,77.3366 3689 | 1438184942,77.45 3690 | 1438185001,77.45 3691 | 1438185061,77.45 3692 | 1438185121,77.5616 3693 | 1438185181,77.5616 3694 | 1438185241,77.5616 3695 | 1438185301,77.5616 3696 | 1438185361,77.675 3697 | 1438185421,77.675 3698 | 1438185481,77.675 3699 | 1438185541,77.675 3700 | 1438185601,77.675 3701 | 1438185661,77.7866 3702 | 1438185721,77.7866 3703 | 1438185782,77.7866 3704 | 1438185841,77.7866 3705 | 1438185902,77.9 3706 | 1438185961,78.0116 3707 | 1438186022,78.0116 3708 | 1438186081,78.0116 3709 | 1438186142,78.0116 3710 | 1438186201,78.125 3711 | 1438186261,78.125 3712 | 1438186321,78.125 3713 | 1438186381,78.125 3714 | 1438186441,78.2366 3715 | 1438186501,78.2366 3716 | 1438186561,78.2366 3717 | 1438186621,78.2366 3718 | 1438186682,78.35 3719 | 1438186741,78.35 3720 | 1438186802,78.4616 3721 | 1438186861,78.4616 3722 | 1438186922,78.4616 3723 | 1438186981,78.4616 3724 | 1438187042,78.575 3725 | 1438187101,78.575 3726 | 1438187161,78.4616 3727 | 1438187221,78.575 3728 | 1438187281,78.6866 3729 | 1438187341,78.6866 3730 | 1438187401,78.6866 3731 | 1438187461,78.8 3732 | 1438187521,78.8 3733 | 1438187582,78.8 3734 | 1438187641,78.9116 3735 | 1438187702,79.025 3736 | 1438187761,79.025 3737 | 1438187822,79.025 3738 | 1438187881,79.025 3739 | 1438187941,79.025 3740 | 1438188001,79.025 3741 | 1438188061,79.1366 3742 | 1438188122,79.1366 3743 | 1438188181,79.1366 3744 | 1438188242,79.1366 3745 | 1438188301,79.1366 3746 | 1438188362,79.25 3747 | 1438188421,79.25 3748 | 1438188482,79.25 3749 | 1438188541,79.25 3750 | 1438188602,79.25 3751 | 1438188661,79.25 3752 | 1438188722,79.3616 3753 | 1438188781,79.3616 3754 | 1438188841,79.3616 3755 | 1438188901,79.3616 3756 | 1438188961,79.475 3757 | 1438189021,79.475 3758 | 1438189081,79.475 3759 | 1438189141,79.5866 3760 | 1438189201,79.5866 3761 | 1438189261,79.7 3762 | 1438189322,79.7 3763 | 1438189381,79.7 3764 | 1438189441,79.8116 3765 | 1438189501,79.8116 3766 | 1438189561,79.8116 3767 | 1438189621,79.8116 3768 | 1438189681,79.8116 3769 | 1438189741,79.925 3770 | 1438189802,79.925 3771 | 1438189861,80.0366 3772 | 1438189921,80.0366 3773 | 1438189981,80.0366 3774 | 1438190041,80.15 3775 | 1438190102,80.15 3776 | 1438190161,80.2616 3777 | 1438190222,80.2616 3778 | 1438190281,80.375 3779 | 1438190341,80.375 3780 | 1438190402,80.2616 3781 | 1438190461,80.375 3782 | 1438190522,80.375 3783 | 1438190581,80.375 3784 | 1438190641,80.375 3785 | 1438190702,80.375 3786 | 1438190761,80.4866 3787 | 1438190822,80.4866 3788 | 1438190881,80.4866 3789 | 1438190942,80.4866 3790 | 1438191001,80.6 3791 | 1438191061,80.6 3792 | 1438191121,80.6 3793 | 1438191181,80.7116 3794 | 1438191241,80.7116 3795 | 1438191301,80.7116 3796 | 1438191362,80.7116 3797 | 1438191421,80.825 3798 | 1438191482,80.9366 3799 | 1438191541,80.9366 3800 | 1438191602,80.9366 3801 | 1438191661,80.9366 3802 | 1438191722,80.9366 3803 | 1438191781,81.05 3804 | 1438191842,81.05 3805 | 1438191901,81.1616 3806 | 1438191961,81.275 3807 | 1438192021,81.1616 3808 | 1438192081,81.275 3809 | 1438192142,81.275 3810 | 1438192201,81.275 3811 | 1438192262,81.275 3812 | 1438192321,81.3866 3813 | 1438192382,81.3866 3814 | 1438192441,81.3866 3815 | 1438192501,81.5 3816 | 1438192562,81.5 3817 | 1438192621,81.5 3818 | 1438192681,81.5 3819 | 1438192741,81.6116 3820 | 1438192801,81.6116 3821 | 1438192862,81.6116 3822 | 1438192921,81.6116 3823 | 1438192981,81.725 3824 | 1438193041,81.725 3825 | 1438193101,81.725 3826 | 1438193161,81.725 3827 | 1438193221,81.725 3828 | 1438193282,81.8366 3829 | 1438193341,81.8366 3830 | 1438193402,81.8366 3831 | 1438193461,81.725 3832 | 1438193522,81.8366 3833 | 1438193581,81.8366 3834 | 1438193641,81.8366 3835 | 1438193701,81.8366 3836 | 1438193761,81.95 3837 | 1438193821,81.95 3838 | 1438193881,81.95 3839 | 1438193941,82.0616 3840 | 1438194001,82.0616 3841 | 1438194062,82.0616 3842 | 1438194121,82.0616 3843 | 1438194182,82.0616 3844 | 1438194241,82.175 3845 | 1438194302,82.175 3846 | 1438194361,82.175 3847 | 1438194422,82.175 3848 | 1438194481,82.175 3849 | 1438194541,82.2866 3850 | 1438194601,82.2866 3851 | 1438194661,82.4 3852 | 1438194721,82.4 3853 | 1438194781,82.4 3854 | 1438194842,82.5116 3855 | 1438194901,82.5116 3856 | 1438194962,82.5116 3857 | 1438195021,82.5116 3858 | 1438195082,82.625 3859 | 1438195142,82.625 3860 | 1438195201,82.7366 3861 | 1438195262,82.625 3862 | 1438195321,82.7366 3863 | 1438195382,82.7366 3864 | 1438195441,82.7366 3865 | 1438195501,82.85 3866 | 1438195561,82.85 3867 | 1438195621,82.85 3868 | 1438195681,82.85 3869 | 1438195741,82.85 3870 | 1438195802,82.9616 3871 | 1438195861,82.9616 3872 | 1438195922,82.9616 3873 | 1438195981,83.075 3874 | 1438196041,83.075 3875 | 1438196101,83.1866 3876 | 1438196161,83.1866 3877 | 1438196221,83.1866 3878 | 1438196281,83.1866 3879 | 1438196342,83.1866 3880 | 1438196401,83.3 3881 | 1438196462,83.3 3882 | 1438196521,83.3 3883 | 1438196581,83.3 3884 | 1438196641,83.3 3885 | 1438196701,83.3 3886 | 1438196761,83.3 3887 | 1438196821,83.4116 3888 | 1438196881,83.4116 3889 | 1438196941,83.4116 3890 | 1438197002,83.4116 3891 | 1438197061,83.525 3892 | 1438197122,83.525 3893 | 1438197181,83.525 3894 | 1438197242,83.525 3895 | 1438197301,83.525 3896 | 1438197362,83.6366 3897 | 1438197421,83.6366 3898 | 1438197481,83.6366 3899 | 1438197541,83.75 3900 | 1438197601,83.75 3901 | 1438197662,83.75 3902 | 1438197721,83.75 3903 | 1438197782,83.8616 3904 | 1438197841,83.8616 3905 | 1438197902,83.8616 3906 | 1438197961,83.8616 3907 | 1438198022,83.975 3908 | 1438198081,83.975 3909 | 1438198141,83.975 3910 | 1438198201,84.0866 3911 | 1438198261,84.0866 3912 | 1438198322,84.0866 3913 | 1438198381,83.975 3914 | 1438198442,84.0866 3915 | 1438198501,84.0866 3916 | 1438198561,84.0866 3917 | 1438198622,84.2 3918 | 1438198681,84.3116 3919 | 1438198741,84.425 3920 | 1438198801,84.425 3921 | 1438198861,84.5366 3922 | 1438198921,84.5366 3923 | 1438198981,84.5366 3924 | 1438199042,84.5366 3925 | 1438199101,84.5366 3926 | 1438199162,84.5366 3927 | 1438199221,84.5366 3928 | 1438199281,84.65 3929 | 1438199341,84.5366 3930 | 1438199401,84.65 3931 | 1438199462,84.65 3932 | 1438199521,84.65 3933 | 1438199582,84.7616 3934 | 1438199641,84.7616 3935 | 1438199702,84.7616 3936 | 1438199761,84.875 3937 | 1438199822,84.875 3938 | 1438199881,84.875 3939 | 1438199942,84.875 3940 | 1438200001,84.875 3941 | 1438200061,84.875 3942 | 1438200121,84.9866 3943 | 1438200181,84.9866 3944 | 1438200241,85.1 3945 | 1438200301,85.1 3946 | 1438200362,85.2116 3947 | 1438200421,85.2116 3948 | 1438200482,85.325 3949 | 1438200541,85.325 3950 | 1438200602,85.325 3951 | 1438200661,85.325 3952 | 1438200721,85.325 3953 | 1438200781,85.4366 3954 | 1438200841,85.4366 3955 | 1438200901,85.4366 3956 | 1438200961,85.4366 3957 | 1438201022,85.4366 3958 | 1438201081,85.55 3959 | 1438201142,85.55 3960 | 1438201201,85.55 3961 | 1438201261,85.55 3962 | 1438201321,85.55 3963 | 1438201381,85.6616 3964 | 1438201442,85.6616 3965 | 1438201501,85.6616 3966 | 1438201562,85.6616 3967 | 1438201621,85.6616 3968 | 1438201681,85.775 3969 | 1438201742,85.775 3970 | 1438201801,85.775 3971 | 1438201862,85.8866 3972 | 1438201921,85.8866 3973 | 1438201981,85.8866 3974 | 1438202041,86.0 3975 | 1438202101,86.0 3976 | 1438202162,86.0 3977 | 1438202221,86.0 3978 | 1438202282,86.0 3979 | 1438202341,86.1116 3980 | 1438202402,86.1116 3981 | 1438202461,86.1116 3982 | 1438202522,86.225 3983 | 1438202581,86.225 3984 | 1438202641,86.3366 3985 | 1438202702,86.3366 3986 | 1438202761,86.3366 3987 | 1438202822,86.3366 3988 | 1438202881,86.45 3989 | 1438202942,86.5616 3990 | 1438203001,86.5616 3991 | 1438203062,86.5616 3992 | 1438203121,86.5616 3993 | 1438203181,86.5616 3994 | 1438203242,86.675 3995 | 1438203301,86.675 3996 | 1438203362,86.675 3997 | 1438203421,86.675 3998 | 1438203482,86.675 3999 | 1438203541,86.7866 4000 | 1438203602,86.7866 4001 | 1438203661,86.7866 4002 | 1438203721,86.7866 4003 | 1438203781,86.9 4004 | 1438203841,86.9 4005 | 1438203901,86.9 4006 | 1438203961,87.0116 4007 | 1438204022,87.0116 4008 | 1438204081,87.0116 4009 | 1438204142,87.125 4010 | 1438204201,87.125 4011 | 1438204261,87.2366 4012 | 1438204321,87.2366 4013 | 1438204381,87.2366 4014 | 1438204442,87.2366 4015 | 1438204501,87.35 4016 | 1438204562,87.4616 4017 | 1438204621,87.4616 4018 | 1438204681,87.4616 4019 | 1438204741,87.575 4020 | 1438204801,87.575 4021 | 1438204861,87.575 4022 | 1438204921,87.575 4023 | 1438204981,87.575 4024 | 1438205041,87.575 4025 | 1438205102,87.575 4026 | 1438205161,87.6866 4027 | 1438205222,87.6866 4028 | 1438205281,87.6866 4029 | 1438205342,87.6866 4030 | 1438205401,87.8 4031 | 1438205462,87.8 4032 | 1438205521,87.8 4033 | 1438205581,87.9116 4034 | 1438205641,87.9116 4035 | 1438205701,88.025 4036 | 1438205762,88.025 4037 | 1438205821,88.1366 4038 | 1438205882,88.1366 4039 | 1438205941,88.1366 4040 | 1438206002,88.1366 4041 | 1438206061,88.1366 4042 | 1438206122,88.1366 4043 | 1438206181,88.1366 4044 | 1438206242,88.1366 4045 | 1438206301,88.25 4046 | 1438206361,88.25 4047 | 1438206421,88.25 4048 | 1438206481,88.3616 4049 | 1438206541,88.3616 4050 | 1438206601,88.3616 4051 | 1438206662,88.3616 4052 | 1438206721,88.3616 4053 | 1438206782,88.475 4054 | 1438206841,88.475 4055 | 1438206902,88.5866 4056 | 1438206961,88.7 4057 | 1438207022,88.8116 4058 | 1438207081,88.8116 4059 | 1438207141,88.925 4060 | 1438207201,89.0366 4061 | 1438207261,89.0366 4062 | 1438207321,89.15 4063 | 1438207381,89.15 4064 | 1438207441,89.2616 4065 | 1438207501,89.4866 4066 | 1438207562,89.4866 4067 | 1438207621,89.6 4068 | 1438207682,89.6 4069 | 1438207741,89.6 4070 | 1438207801,89.6 4071 | 1438207861,89.6 4072 | 1438207921,89.6 4073 | 1438207981,89.825 4074 | 1438208041,89.825 4075 | 1438208102,89.7116 4076 | 1438208161,89.9366 4077 | 1438208222,89.825 4078 | 1438208281,89.825 4079 | 1438208342,89.9366 4080 | 1438208401,89.9366 4081 | 1438208462,89.9366 4082 | 1438208521,90.05 4083 | 1438208581,89.9366 4084 | 1438208641,90.05 4085 | 1438208701,90.1616 4086 | 1438208762,90.275 4087 | 1438208821,90.275 4088 | 1438208882,90.275 4089 | 1438208941,90.275 4090 | 1438209002,90.3866 4091 | 1438209061,90.3866 4092 | 1438209122,90.3866 4093 | 1438209181,90.5 4094 | 1438209241,90.5 4095 | 1438209301,90.6116 4096 | 1438209362,90.6116 4097 | 1438209421,90.6116 4098 | 1438209481,90.725 4099 | 1438209541,90.725 4100 | 1438209601,90.725 4101 | 1438209661,90.725 4102 | 1438209722,90.725 4103 | 1438209781,90.725 4104 | 1438209841,90.8366 4105 | 1438209901,90.95 4106 | 1438209961,91.0616 4107 | 1438210021,91.0616 4108 | 1438210082,91.175 4109 | 1438210141,91.175 4110 | 1438210202,91.175 4111 | 1438210261,91.175 4112 | 1438210321,91.175 4113 | 1438210381,91.175 4114 | 1438210441,91.175 4115 | 1438210502,91.175 4116 | 1438210561,91.175 4117 | 1438210622,91.2866 4118 | 1438210682,91.2866 4119 | 1438210741,91.4 4120 | 1438210801,91.5116 4121 | 1438210861,91.5116 4122 | 1438210921,91.4 4123 | 1438210982,91.5116 4124 | 1438211041,91.5116 4125 | 1438211102,91.5116 4126 | 1438211161,91.625 4127 | 1438211221,91.625 4128 | 1438211281,91.625 4129 | 1438211341,91.7366 4130 | 1438211402,91.7366 4131 | 1438211461,91.7366 4132 | 1438211522,91.85 4133 | 1438211581,91.9616 4134 | 1438211642,91.85 4135 | 1438211701,91.85 4136 | 1438211762,91.85 4137 | 1438211821,91.85 4138 | 1438211881,91.7366 4139 | 1438211941,91.7366 4140 | 1438212001,91.7366 4141 | 1438212062,91.7366 4142 | 1438212121,91.625 4143 | 1438212181,91.625 4144 | 1438212241,91.625 4145 | 1438212301,91.625 4146 | 1438212362,91.625 4147 | 1438212421,91.625 4148 | 1438212482,91.625 4149 | 1438212541,91.625 4150 | 1438212602,91.85 4151 | 1438212661,91.9616 4152 | 1438212721,91.9616 4153 | 1438212781,91.9616 4154 | 1438212841,92.075 4155 | 1438212902,92.075 4156 | 1438212961,92.075 4157 | 1438213022,92.1866 4158 | 1438213081,92.075 4159 | 1438213141,92.1866 4160 | 1438213201,92.3 4161 | 1438213261,92.4116 4162 | 1438213321,92.3 4163 | 1438213381,92.4116 4164 | 1438213442,92.4116 4165 | 1438213501,92.4116 4166 | 1438213562,92.4116 4167 | 1438213621,92.525 4168 | 1438213681,92.525 4169 | 1438213741,92.525 4170 | 1438213801,92.6366 4171 | 1438213861,92.525 4172 | 1438213921,92.6366 4173 | 1438213982,92.6366 4174 | 1438214041,92.6366 4175 | 1438214102,92.6366 4176 | 1438214161,92.75 4177 | 1438214221,92.75 4178 | 1438214282,92.75 4179 | 1438214341,92.75 4180 | 1438214402,92.8616 4181 | 1438214461,92.8616 4182 | 1438214522,92.975 4183 | 1438214581,92.975 4184 | 1438214641,92.975 4185 | 1438214701,92.975 4186 | 1438214761,92.8616 4187 | 1438214822,92.975 4188 | 1438214881,92.8616 4189 | 1438214942,92.975 4190 | 1438215001,92.975 4191 | 1438215062,92.975 4192 | 1438215121,92.975 4193 | 1438215182,92.975 4194 | 1438215241,92.975 4195 | 1438215301,92.975 4196 | 1438215361,92.975 4197 | 1438215421,92.975 4198 | 1438215482,92.975 4199 | 1438215541,93.0866 4200 | 1438215601,93.0866 4201 | 1438215661,93.0866 4202 | 1438215721,93.0866 4203 | 1438215781,93.0866 4204 | 1438215841,93.2 4205 | 1438215902,93.2 4206 | 1438215961,93.2 4207 | 1438216022,93.2 4208 | 1438216081,93.3116 4209 | 1438216141,93.3116 4210 | 1438216201,93.3116 4211 | 1438216261,93.3116 4212 | 1438216321,93.425 4213 | 1438216381,93.3116 4214 | 1438216442,93.3116 4215 | 1438216501,93.425 4216 | 1438216562,93.425 4217 | 1438216621,93.425 4218 | 1438216682,93.5366 4219 | 1438216741,93.5366 4220 | 1438216801,93.5366 4221 | 1438216861,93.5366 4222 | 1438216921,93.5366 4223 | 1438216981,93.65 4224 | 1438217041,93.65 4225 | 1438217102,93.65 4226 | 1438217161,93.65 4227 | 1438217222,93.65 4228 | 1438217281,93.65 4229 | 1438217342,93.65 4230 | 1438217401,93.7616 4231 | 1438217462,93.7616 4232 | 1438217521,93.7616 4233 | 1438217581,93.7616 4234 | 1438217641,93.875 4235 | 1438217701,93.7616 4236 | 1438217761,93.7616 4237 | 1438217821,93.875 4238 | 1438217882,93.875 4239 | 1438217941,93.875 4240 | 1438218002,93.9866 4241 | 1438218061,93.9866 4242 | 1438218122,93.9866 4243 | 1438218181,93.9866 4244 | 1438218241,93.9866 4245 | 1438218301,94.1 4246 | 1438218361,94.1 4247 | 1438218422,94.1 4248 | 1438218481,94.1 4249 | 1438218542,94.1 4250 | 1438218601,94.2116 4251 | 1438218662,94.2116 4252 | 1438218721,94.2116 4253 | 1438218782,94.2116 4254 | 1438218841,94.2116 4255 | 1438218902,94.325 4256 | 1438218961,94.325 4257 | 1438219021,94.325 4258 | 1438219082,94.325 4259 | 1438219141,94.4366 4260 | 1438219202,94.4366 4261 | 1438219261,94.325 4262 | 1438219322,94.4366 4263 | 1438219381,94.4366 4264 | 1438219441,94.55 4265 | 1438219501,94.55 4266 | 1438219561,94.55 4267 | 1438219621,94.55 4268 | 1438219681,94.55 4269 | 1438219742,94.55 4270 | 1438219801,94.55 4271 | 1438219862,94.55 4272 | 1438219921,94.55 4273 | 1438219982,94.6616 4274 | 1438220041,94.55 4275 | 1438220101,94.6616 4276 | 1438220161,94.55 4277 | 1438220221,94.6616 4278 | 1438220282,94.6616 4279 | 1438220341,94.325 4280 | 1438220402,93.3116 4281 | 1438220461,92.3 4282 | 1438220522,91.4 4283 | 1438220581,90.6116 4284 | 1438220642,90.05 4285 | 1438220701,89.7116 4286 | 1438220762,89.375 4287 | 1438220821,89.0366 4288 | 1438220881,88.5866 4289 | 1438220941,88.475 4290 | 1438221001,88.3616 4291 | 1438221062,88.25 4292 | 1438221121,88.1366 4293 | 1438221182,88.025 4294 | 1438221241,87.8 4295 | 1438221302,87.6866 4296 | 1438221362,87.6866 4297 | 1438221421,87.4616 4298 | 1438221482,87.35 4299 | 1438221541,87.2366 4300 | 1438221601,87.2366 4301 | 1438221661,87.35 4302 | 1438221721,87.35 4303 | 1438221781,87.35 4304 | 1438221841,87.2366 4305 | 1438221901,86.9 4306 | 1438221961,86.9 4307 | 1438222022,86.7866 4308 | 1438222081,86.675 4309 | 1438222142,86.5616 4310 | 1438222201,86.45 4311 | -------------------------------------------------------------------------------- /tempreader/reader.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | 4 | namespace myReader { 5 | class Reader { 6 | 7 | public static void Main(){ 8 | 9 | string line; 10 | string temptab = " \"temp\" : \""; 11 | string datetab = " \"date\" : \""; 12 | 13 | System.IO.StreamReader file = new System.IO.StreamReader("bedroom.json"); 14 | int ctr = 0; 15 | while((line = file.ReadLine()) != null) 16 | { 17 | 18 | if (line.Contains("temp") || line.Contains("date")){ 19 | 20 | 21 | StringBuilder b = new StringBuilder(line); 22 | b.Replace(temptab, ""); 23 | b.Replace(datetab, ""); 24 | b.Replace("\"", "").Replace(",", ""); 25 | 26 | if (ctr % 2 ==0){ 27 | Console.Write(b + ","); 28 | }else { 29 | Console.WriteLine(b); 30 | } 31 | ctr++; 32 | } 33 | } 34 | file.Close(); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /tempreader/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JeremyMorgan/Raspberry_Pi_Temperature/c83de7c2a7c062d9f287bbfe51114b3942a42a62/tempreader/temp.png --------------------------------------------------------------------------------