Log File With No Carriage Return

I have a project monitoring some house plants with a couple extra sensors using an MKR1000, everything is going great but the log file no longer prints a carriage return. While adding some HTML to have a small web page as well as an OLED display something went wrong in the code and the log file now has 'the worlds longest single line of text', excel didn't like it at all ha ha ha. How do I go about cutting up the data I have already recorded and can anybody see where I went wrong?

/*
 * This project designed to monitor household potted plants and their environment, 
 * this data is partially displayed on a 128x64 OLED screen, sent to to a serial 
 * connection, while full data is written to a csv file on an SD card. Also a web 
 * page is created to view data.
 * Parameters recorded:
 * Air temperature (°C)
 * Soil temperature (°C)
 * Relative humidity (%)
 * Soil moisture (%)
 * Light intensity (? units)
 * Barometric pressure (mPa)
 * Time
*/

#include <SPI.h>
#include <WiFi101.h>
#include "arduino_secrets.h"     
#include <RTClib.h>                   //Real Time Clock
#include <I2CSoilMoistureSensor.h>    //Catnip Electronics soil moisture sensor v2.7.1
#include <Wire.h>                     //2 wire/I2C library
#include <SFE_BMP180.h>               //BMP180 air pressure sensor
#include <SD.h>                       //SD card
#include "SparkFun_Qwiic_OpenLog_Arduino_Library.h" //I2C SD card data logger
#include <Adafruit_AM2315.h>          //AM2315 I2C Temperature and humidity sensor
#include <U8g2lib.h>                  //I2C 128x64 OLED display
#include <TCA9548A.h>



char ssid[] = SECRET_SSID;        // your network SSID (name)
char pass[] = SECRET_PASS;    // your network password (use for WPA, or use as key for WEP)
int keyIndex = 0;                 // your network key Index number (needed only for WEP)



int status = WL_IDLE_STATUS;

WiFiServer server(80);

 

I2CSoilMoistureSensor sensor1(0x20);  //Sensor instance for sensor #1
I2CSoilMoistureSensor sensor2(0x21);  //Sensor instance for sensor #2
I2CSoilMoistureSensor sensor3(0x22);  //Sensor instance for sensor #3

TCA9548A I2CMux;                      //Create I2C multiplexer object


const int ldrPin1 = A0;               //Assign bright light detecting LDR to analog pin, 51k Ohm
const int ldrPin2 = A1;               //Assign dark light detecting LDR to analog pin, 560 Ohm

Adafruit_AM2315 am2315;               //Create Adafruit_AM2315 object

OpenLog myLog;                        //Log instance for data logging

SFE_BMP180 pressure;
#define ALTITUDE 75.95                //14th floor altitude for BMP180 reference


U8G2_SH1106_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0, /* reset=*/ U8X8_PIN_NONE);  //Create constructor for OLED.

RTC_DS3231 rtc;                        //Create RTC_DS3231 object for RTC


//==============================SETUP==============================


void setup() {
  //Initialize serial and wait for port to open:
  Serial.begin(9600);


  
  // check for the presence of the shield:
  if (WiFi.status() == WL_NO_SHIELD) {
    Serial.println("WiFi shield not present");
    while (true);       // don't continue
  }

  // attempt to connect to WiFi network:
  while ( status != WL_CONNECTED) {
    Serial.print("Attempting to connect to Network named: ");
    Serial.println(ssid);                   // print the network name (SSID);

    // Connect to WPA/WPA2 network. Change this line if using open or WEP network:
    status = WiFi.begin(ssid, pass);
    // wait 10 seconds for connection:
    delay(10000);
  }
  server.begin();                           // start the web server on port 80
  printWiFiStatus();                        // you're connected now, so print out the status


  pinMode(ldrPin1, INPUT);                  //Set pin for bright light as input

  pinMode(ldrPin2, INPUT);                  //Set pin for dark light as input
 
  Wire.begin();                             //Initialize I2C    

  I2CMux.begin(Wire);                       //Start IC2 Multiplexer


//                 ------------Initialize soil sensors-----------------
  I2CMux.openChannel(1);                    //Open channel and test soils sensors
  sensor1.begin(); // reset soil sensor #1
  sensor2.begin(); // reset soil sensor #2
  sensor3.begin(); // reset soil sensor #3
  
  delay(1000); // give some time to boot up
  Serial.println("-------------------------------------------------------------------");
  Serial.print("I2C Soil Moisture Sensor Address: ");
  Serial.print(sensor1.getAddress(),HEX);
  Serial.print(", ");
  Serial.print(sensor2.getAddress(),HEX);
  Serial.print(", ");
  Serial.println(sensor3.getAddress(),HEX);
  Serial.print("Sensor Firmware version: ");
  
  Serial.print(sensor1.getVersion(),HEX);
  Serial.print(", ");
  Serial.print(sensor2.getVersion(),HEX);
  Serial.print(", ");
  Serial.println(sensor3.getVersion(),HEX);
  Serial.print("-------------------------------------------------------------------");
  Serial.println();
  I2CMux.closeChannel(1);
  //I2CMux.closeAll();

   I2CMux.openChannel(0);                    //Open channel and initialize devices on line 0
//                 ------------Initialize BMP180 air pressure sensor---------------
  
    if (pressure.begin())                    //Initialize BMP180
      Serial.println("BMP180 init success");
    else
    {
                                             //Oops, something went wrong, this is usually a connection problem,
                                            
      Serial.println("BMP180 init fail\n\n");
      while(1);                              //Pause forever if barometer fails to start
    }
                                             
   if (myLog.begin())                        //Open connection to OpenLog
      Serial.println("Openlog init success");      
   else
    {
                                             //Oops, something went wrong, this is usually a connection problem                                   
  
      Serial.println("Openlog init fail\n\n");
      while(1);                              //Pause forever if barometer fails to start
    }                                                                                      
                                             
                                             //Check for communication with RTC
  if (! rtc.begin()) {
    Serial.print("Couldn't find RTC");
    Serial.flush();
    abort();
  
  }       
  
  if (u8g2.begin())
     Serial.println("OLED init success");
  else
  {                                          //OLED init failed
     Serial.println("OLED init fail");                             
  }
  
                                              //Create CSV header file for SD card:
  myLog.println("Date,Time,Temperature(°C),Humidity(%),Soil Temperature 1(°C),Soil Moisture 1(%),Soil Temperature 2(°C),Soil Moisture 2(%),Soil Temperature 3(°C),Soil Moisture 3(%),Sea Level Air Pressure(mb),BMP180 IC Temperature(°C),LDR Bright Light(Units?),LDR Low Light(Units?)");
  myLog.syncFile();
                                              //Set up OLED display
                                            
 
 u8g2.begin();                                //Start OLED 


I2CMux.closeChannel(0);

 pinMode(8, OUTPUT);

}


//==============================LOOP====================================


void loop() {

  char status;                                //Create variables to hold BMP180 data
 double T,P,p0,a;
 
 int ldrStatus1 = 0;
 ldrStatus1 = analogRead(ldrPin1);           //Read bright light value  

 int ldrStatus2 = 0;
 ldrStatus2 = analogRead(ldrPin2);           //Read low light value
  
                                             //Create variables to hold temperature and humidity readings
 float temperature;

 float humidity;


 I2CMux.openChannel(0);                      //Open channel 0
 am2315.readTemperatureAndHumidity(&temperature, &humidity);
 delay(1000);
 am2315.readTemperatureAndHumidity(&temperature, &humidity);//Read the temperature and humidity twice as sensor is grumpy
  
  

 DateTime now = rtc.now();                   //Read time from RTC, pass to variable 'now'



                                             //Create variables to store time, and populate
 unsigned int Year  =  now.year();
 unsigned int Month =  now.month();
 unsigned int Day   =  now.day();
 unsigned int Hour  =  now.hour();
 unsigned int Minute = now.minute();
 unsigned int Second = now.second();

 I2CMux.closeChannel(0);                     //Close channel 0
 I2CMux.openChannel(1);                      //Open channel 1 to read soil sensors
 
 
 //                                           -----Read sensor #1-----
 while (sensor1.isBusy()) delay(50);          //Available since FW 2.3

                                              //Create variables, populate with soil sensor readings
 unsigned int SoilCap1 = sensor1.getCapacitance();//Soil Capacitance
 unsigned int SoilTemp1 = (sensor1.getTemperature()/(float)10);//Soil Temperature


 
 if (SoilCap1 > 60000) {                       //Check for sensor anomalies, anything over 60000 indicates address issues.
  Serial.println("Soil Sensor #1 Error: value >65,000, likely address issue");
 }
 
 while (SoilCap1 > 1000) {                     //Check for sensor anomalies, anything over 1000 is suspect and another reading is taken.
  SoilCap1 = sensor1.getCapacitance();
 }


float SoilPercent1 ;

 SoilPercent1 = ((0.000001007*(pow(SoilCap1,2)))+(.000024885*SoilCap1)-0.062508722)*100;


 while (SoilTemp1 > 50)  {                      //Check for sensor anomalies, anything over 50c is suspect, and another reading is taken.
  SoilTemp1 = (sensor1.getTemperature()/(float)10);
 }

 
 sensor1.sleep();                               //Put soil sensor to sleep   

//                                           -----Read sensor #2-----

 while (sensor2.isBusy()) delay(50);            //Available since FW 2.3

                                                //Create variables, populate with soil sensor readings
 unsigned int SoilCap2 = sensor2.getCapacitance();//Soil Capacitance
 unsigned int SoilTemp2 = (sensor2.getTemperature()/(float)10);//Soil Temperature
  
 if (SoilCap2 > 60000) {                        //Check for sensor anomalies, anything over 60000 indicates address issues.
  Serial.println("Soil Sensor #2 Error: value >65,000, likely address issue");
 }
 
 while (SoilCap2 > 1000) {                      //Check for sensor anomalies, anything over 1000 is suspect and another reading is taken.
  SoilCap2 = sensor2.getCapacitance();
 }



float SoilPercent2 ;

 SoilPercent2 = ((0.000001007*(pow(SoilCap2,2)))+(.000024885*SoilCap2)-0.062508722)*100;


 while (SoilTemp2 > 50)  {                       //Check for sensor anomalies, anything over 50c is suspect, and another reading is taken.
  SoilTemp2 = (sensor2.getTemperature()/(float)10);
 }

 
 sensor2.sleep();                                //Put soil sensor to sleep   

 //                                           -----Read sensor #3-----

 while (sensor3.isBusy()) delay(50);             //Available since FW 2.3

                                                 //Create variables, populate with soil sensor readings
 unsigned int SoilCap3 = sensor3.getCapacitance();//Soil Capacitance
 unsigned int SoilTemp3 = (sensor3.getTemperature()/(float)10);//Soil Temperature
  
 if (SoilCap3 > 60000) {                         //Check for sensor anomalies, anything over 60000 indicates address issues.
  Serial.println("Soil Sensor #3 Error: value >65,000, likely address issue");
 }
 
 while (SoilCap3 > 1000) {                       //Check for sensor anomalies, anything over 1000 is suspect and another reading is taken.
  SoilCap3 = sensor3.getCapacitance();
 }

float SoilPercent3 ;

 SoilPercent3 = ((0.000001007*(pow(SoilCap3,2)))+(.000024885*SoilCap3)-0.062508722)*100;


 while (SoilTemp3 > 50)  {                       //Check for sensor anomalies, anything over 50c is suspect, and another reading is taken.
  SoilTemp3 = (sensor3.getTemperature()/(float)10);
 }

 
 sensor3.sleep();                               //Put soil sensor to sleep 
   //lcd.print((char)223);                      //Print degree symbol


   I2CMux.closeChannel(1);                      //Close channel 1


   I2CMux.openChannel(0);                       //Open channel 0


    
  // Below info about BMP180: retrieve the completed pressure measurement:
  // Note that the measurement is stored in the variable P.
  // Note also that the function requires the previous temperature measurement (T).
  // (If temperature is stable, you can do one temperature measurement for a number of pressure measurements.)
  // Function returns 1 if successful, 0 if failure.

status = pressure.startTemperature();
  if (status != 0)
  {
    // Wait for the measurement to complete:
    delay(status);

    // Retrieve the completed temperature measurement:
    // Note that the measurement is stored in the variable T.
    // Function returns 1 if successful, 0 if failure.

    status = pressure.getTemperature(T);
    if (status != 0)
    {


      status = pressure.startPressure(3);
      if (status != 0)
      {
        // Wait for the measurement to complete:
        delay(status);

        status = pressure.getPressure(P,T);
        if (status != 0)
        {

          p0 = pressure.sealevel(P,ALTITUDE); // Altitude is ~76m

          a = pressure.altitude(P,p0);

        }
        else Serial.println("error retrieving pressure measurement\n");
      }
      else Serial.println("error starting pressure measurement\n");
    }
    else Serial.println("error retrieving temperature measurement\n");
  }
  else Serial.println("error starting temperature measurement\n");

 ///////////////////////////////////////////////Send data from above to CSV on data logger///////////////////////////////
 myLog.begin();                                    //Open log file
 myLog.print(Year);
 myLog.print("-");
 myLog.print(Month);
 myLog.print("-");
 myLog.print(Day);
 myLog.print(",");
 myLog.print(Hour);
 myLog.print(":");
 myLog.print(Minute);
 myLog.print(":");
 myLog.print(Second);                                           
 myLog.print(",");
 myLog.print(temperature);
 myLog.print(",");
 myLog.print(humidity);
 myLog.print(",");
 myLog.print(SoilTemp1);
 myLog.print(",");
 myLog.print(SoilPercent1);
 myLog.print(",");
 myLog.print(SoilTemp2);
 myLog.print(",");
 myLog.print(SoilPercent2);
 myLog.print(",");
 myLog.print(SoilTemp3);
 myLog.print(",");
 myLog.print(SoilPercent3);
 myLog.print(",");
 myLog.print(p0);
 myLog.print(",");
 myLog.print(T);
 myLog.print(",");
 myLog.print(ldrStatus1);
 myLog.print(",");
 myLog.println(ldrStatus2);
 //myLog.println(lightSensorReading);
 myLog.syncFile();
/////////////////////////////////////////////////////End send data to CSV/////////////////////////////////////////////////

  
  
  Serial.print(Year);
  Serial.print("-");
  Serial.print(Month);
  Serial.print("-");
  Serial.print(Day);
  Serial.print(" ");
  Serial.print(Hour);
  Serial.print(":");
  Serial.print(Minute);
  Serial.print(":");
  Serial.println(Second);
  Serial.print("Temp C: "); 
  Serial.println(temperature);
  Serial.print("Hum %: "); 
  Serial.println(humidity);
  Serial.print("Light1: ");
  Serial.println(ldrStatus1);
  Serial.print("Light2: ");
  Serial.println(ldrStatus2);
  Serial.print("Soil Moisture 1: ");
  Serial.print(SoilPercent1);
  Serial.println("%");
  Serial.print("Soil Temp 1: ");
  Serial.println(SoilTemp1);
  Serial.print("Soil Moisture 2: ");
  Serial.print(SoilPercent2);
  Serial.println("%");
  Serial.print("Soil Temp 2: ");
  Serial.println(SoilTemp2);
  Serial.print("Soil Moisture 3: ");
  Serial.print(SoilPercent3);
  Serial.println("%");
  Serial.print("Soil Temp 3: ");
  Serial.println(SoilTemp3);
  Serial.print("Air Pressure (mb): ");
  Serial.println(p0);
  Serial.print("BMP180 Temp: ");
  Serial.println(T);
  Serial.println("----------------------------------------------------");
                                
                                                
//////////////////////////////////////////////////Display on OLED///////////////////////////////////////////////
 u8g2.clearBuffer();                             //Clear internal memory    
 u8g2.setFont(u8g2_font_t0_12_te);               //Select font
 u8g2.drawStr( 0, 9, "Lux:");
 u8g2.setCursor( 28, 9);
 u8g2.print(ldrStatus1);
 u8g2.setCursor( 50, 9);
 u8g2.print(ldrStatus2);
 u8g2.drawStr( 0, 20, "AT:");                    //u8g2.drawStr is best for anything within quotes, ==> ""
 u8g2.setCursor( 23, 20);
 u8g2.print(temperature);
 u8g2.drawStr( 0, 30, "Hum:");
 u8g2.setCursor( 28, 30);
 u8g2.print(humidity);
 u8g2.drawStr( 0, 40, "AP:");
 u8g2.setCursor( 20, 40);
 u8g2.print(p0);
 u8g2.drawStr( 0, 50, "So. T:");
 u8g2.setCursor( 38, 50);
 u8g2.print(SoilTemp1);
 u8g2.setCursor( 52, 50);
 u8g2.print(SoilTemp2);
 u8g2.setCursor( 66, 50);
 u8g2.print(SoilTemp3);
 u8g2.drawStr( 0, 60, "SM(%):");
 u8g2.setCursor( 36, 60);
 u8g2.print(SoilPercent1);
 u8g2.setCursor( 68, 60);
 u8g2.print(SoilPercent2);
 u8g2.setCursor( 99, 60);
 u8g2.print(SoilPercent3);
 u8g2.sendBuffer();                              //Send to internal display memory

    I2CMux.closeChannel(0);                 //Close channel 0

    I2CMux.closeAll();
    
   
  
  
  // listen for incoming clients
  WiFiClient client = server.available();
  if (client) {
    Serial.println("new client");
    // an http request ends with a blank line
    bool currentLineIsBlank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        Serial.write(c);
        // if you've gotten to the end of the line (received a newline
        // character) and the line is blank, the http request has ended,
        // so you can send a reply
        if (c == '\n' && currentLineIsBlank) {
          // send a standard http response header
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connection: close");  // the connection will be closed after completion of the response
          client.println("Refresh: 5");  // refresh the page automatically every 5 sec
          client.println();
          client.println("<!DOCTYPE HTML>");
          
          client.println("<html>"); //Begin HTML
          client.println("<h1>");
          client.print(Year);
          client.print("-");
          client.print(Month);
          client.print("-");
          client.print(Day);
          client.print(" ");
          client.print(Hour);
          client.print(":");
          client.print(Minute);
          client.print(":");
          client.print(Second);
          client.print("</h>");
        client.print("<table style=width:100%>");
          client.println("<tr>");
          client.print("<th>Sensor Name</th>");
          client.print("<th>Reading</th>");
          client.print("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Air Temperature </td>");
            client.print("<td style=text-align:center>");
            client.print(temperature);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Relative Humidity </td>");
            client.print("<td style=text-align:center>");
            client.print(humidity);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Light 1 </td>");
            client.print("<td style=text-align:center>");
            client.print(ldrStatus1);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Light 2 </td>");
            client.print("<td style=text-align:center>");
            client.print(ldrStatus2);
            client.println("</td>");
          client.println("</tr>"); 
          client.println("<tr>");
            client.println("<td style=text-align:center>Sea Level Air Pressure</td>");
            client.print("<td style=text-align:center>");
            client.print(p0);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Soil Temperature 1 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilTemp1);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Soil Moisture 1 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilPercent1);
            client.println("</td>");
          client.println("</tr>");
           client.println("<tr>");
            client.println("<td style=text-align:center>Soil Temperature 2 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilTemp2);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Soil Moisture 2 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilPercent2);
            client.println("</td>");
          client.println("</tr>"); 
          client.println("<tr>");
            client.println("<td style=text-align:center>Soil Temperature 3 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilTemp3);
            client.println("</td>");
          client.println("</tr>");
          client.println("<tr>");
            client.println("<td style=text-align:center>Soil Moisture 3 </td>");
            client.print("<td style=text-align:center>");
            client.print(SoilPercent3);
            client.println("</td>");
          client.println("</tr>");
        client.println("</table>");
                   

        client.println("</html>");  //End HTML
        break;
        }
        if (c == '\n') {
          // you're starting a new line
          currentLineIsBlank = true;
        }
        else if (c != '\r') {
          // you've gotten a character on the current line
          currentLineIsBlank = false;
        }
      }
    }
    // give the web browser time to receive the data
    delay(1);

    // close the connection:
    client.stop();
    Serial.println("client disconnected");
  }
 delay(30000);  
}

//===================ROUTINES=========================


void printWiFiStatus() {
  // print the SSID of the network you're attached to:
  Serial.print("SSID: ");
  Serial.println(WiFi.SSID());

  // print your WiFi shield's IP address:
  IPAddress ip = WiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);

  // print the received signal strength:
  long rssi = WiFi.RSSI();
  Serial.print("signal strength (RSSI):");
  Serial.print(rssi);
  Serial.println(" dBm");
  // print where to go in a browser:
  Serial.print("To see this page in action, open a browser to http://");
  Serial.println(ip);
}

I didn't read your code but to cut the data into usable pieces I would use a text processor like Notepad++ or Atom or Sublime, Maybe there is an on line editor.

Then try to fins a character or two you can change adding in a CR.

Perhaps a HEX editor can see the "Raw" data an if there is anything at the ends of the line you could work with that. I'm really thinking there is something at the end of each line but your programs are ignoring it.

In excel in you open the data as a text file it will ask you if you want to parse it. Perhaps that could work.

Thanks JohnRob, I'll look into those. Also I swear by the great bootloader in the sky that I used code tags, not sure why my post looks like it does.

Just noticed you call

Multiple times, not sure this is needed or an issue (don’t know that library).

It seems this is an I2C log device, and you use I2C also for other things, may be a conflict with the buffer being full and other I2C commands?

If you are on a Unix system (Linux, macOS) you could use the command line tools to extract the first (say) 500 characters of your file to see what’s actually in there (head -c 500 yourfile.CSV ). There is likely a way to do the same on windows.

You could also write a small arduino sketch that reads and print the first 500 bytes.

This way you’ll see if the file just lost the CR/LF at the end or if more data is missing…(I find it hard to believe only the last 2 bytes before a sync did not make it)

I wonder how the log file really looks like because it seems you are sending a CR LF

myLog.println(ldrStatus2);

so why is the CR LF missing after ldrStatus2?

can you upload your log file?

by the way

          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connection: close");  // the connection will be closed after completion of the response
          client.println("Refresh: 5");  // refresh the page automatically every 5 sec
          client.println();
          client.println("<!DOCTYPE HTML>");
          
          client.println("<html>"); //Begin HTML
          client.println("<h1>");
          client.print(Year);
          client.print("-");
          client.print(Month);
          client.print("-");

you missed to provide the content-length - so this can't be a HTTP/1.1 but a HTTP/1.0 only.
you missed the body tag
in general, I want to give you the advice to validate your page with
[url]The W3C Markup Validation Service

Hi J-M-L, "
Just noticed you call

Multiple times, not sure this is needed or an issue (don’t know that library)."
I don't think that would do much, I'll look to remove it though as it is redundant. As to the buffer being full it could be I guess? I have no oscilloscope to know either way though :frowning: .
Below is the first part of one log file:

Dt,ieTmeaueÂC,uiiy%,olTmeaue1ÂC,olMitr ()Si eprtr (°)Si osue2%,olTmeaue3ÂC,olMitr ()SaLvlArPesr(b,M10I eprtr(°)LRBih ih(nt?,D o ih(nt?
22-82,9:2:5,2.10,4.00,2,2.42,2,1.78,2,1.01,11.57,2.55,45,95
22-82,9:2:3,2.20,4.10,2,2.69,2,1.82,2,1.52,11.60,2.55,44,95
22-82,9:2:1,2.20,4.00,2,2.90,2,1.73,2,1.43,11.62,2.54,41,96
22-82,9:2:3,2.20,4.20,2,2.69,2,1.73,2,1.61,11.62,2.58,44,96
22-82,9:2:4,2.30,4.30,2,2.69,2,1.82,2,1.43,11.55,2.56,40,92
22-82,9:2:3,2.30,4.00,2,2.79,2,1.92,2,1.52,11.58,2.58,48,95
22-82,9:2:6,2.30,4.10,2,2.58,2,1.92,2,1.43,11.60,2.59,45,91
22-82,9:2:3,2.20,4.10,2,2.38,2,1.82,2,1.71,11.56,2.59,49,91
22-82,9:2:9,2.30,4.30,2,2.69,2,1.01,2,1.52,11.57,2.56,50,97
22-82,9:2:4,2.20,4.20,2,2.69,2,1.82,2,1.52,11.59,2.58,43,97
22-82,9:2:1,2.20,4.20,2,2.48,2,1.82,2,1.52,11.63,2.56,55,98
22-82,9:2:4,2.20,4.20,2,2.58,2,1.92,2,1.52,11.67,2.58,49,95
22-82,9:2:1,2.20,4.20,2,2.48,2,1.82,2,1.43,11.59,2.58,54,95
22-82,9:2:4,2.20,4.30,2,2.58,2,1.92,2,1.52,11.68,2.61,55,93
22-82,9:3:1,2.10,4.30,2,2.58,2,1.11,2,1.52,11.57,2.59,56,98
22-82,9:3:4,2.10,4.40,2,2.69,2,1.82,2,1.43,11.59,2.60,53,98
22-82,9:3:1,2.10,4.40,2,2.48,2,1.92,2,1.80,11.52,2.61,56,94
22-82,9:3:5,2.10,4.40,2,2.48,2,1.73,2,1.61,11.61,2.61,58,96
22-82,9:3:2,2.10,4.40,2,2.38,2,1.92,2,1.43,11.65,2.61,58,90
22-82,9:3:5,2.10,4.40,2,2.58,2,1.82,2,1.34,11.56,2.61,53,98
22-82,9:3:2,2.10,4.40,2,2.38,2,1.92,2,1.34,11.49,2.62,57,92
22-82,9:3:5,2.10,4.30,2,2.48,2,1.92,2,1.43,11.64,2.63,50,96
22-82,9:3:2,2.10,4.30,2,2.38,2,1.01,2,1.52,11.59,2.62,52,96
22-82,9:3:5,2.10,4.40,2,2.38,2,1.01,2,1.61,11.60,2.62,43,94
22-82,9:3:3,2.10,4.30,2,2.38,2,1.11,2,1.61,11.59,2.62,52,91
22-82,9:3:1,2.10,4.40,2,2.38,2,1.92,2,1.61,11.58,2.64,43,94
22-82,9:3:3,2.10,4.30,2,2.38,2,1.92,2,1.61,11.61,2.66,50,95
22-82,9:3:4,2.10,4.40,2,2.38,2,1.92,2,1.52,11.58,2.62,44,98
22-82,9:3:3,2.10,4.20,2,2.27,2,1.73,2,1.43,11.50,2.60,44,91
22-82,9:3:6,2.10,4.30,2,2.48,2,1.73,2,1.52,11.48,2.64,43,96
22-82,9:3:3,2.20,4.70,2,2.38,2,1.92,2,1.52,11.52,2.66,44,99
22-82,9:3:9,2.20,4.60,2,2.38,2,1.92,2,1.43,11.66,2.67,43,96
22-82,9:3:4,2.20,4.20,2,2.38,2,1.11,2,1.52,11.65,2.70,48,95
22-82,9:4:1,2.20,4.40,2,2.38,2,1.92,2,1.52,11.61,2.70,46,98
22-82,9:4:4,2.30,4.30,2,2.17,2,1.92,2,1.52,11.60,2.74,42,91
22-82,9:4:1,2.30,4.40,2,2.27,2,1.11,2,1.52,11.57,2.76,43,91
22-82,9:4:4,2.30,4.60,2,2.27,2,1.92,2,1.52,11.56,2.75,45,91
22-82,9:4:1,2.30,4.70,2,2.07,2,1.92,2,1.52,11.58,2.75,45,94
22-82,9:4:4,2.30,4.40,2,2.07,1,1.92,2,1.34,11.64,2.77,44,90
22-82,9:4:1,2.30,4.60,2,2.17,2,1.92,2,1.43,11.58,2.78,48,99
22-82,9:4:5,2.30,4.80,2,2.17,2,1.92,2,1.52,11.65,2.81,42,94
22-82,9:4:2,2.30,4.60,2,2.17,2,1.01,2,1.52,11.65,2.81,42,90
22-82,9:4:5,2.40,4.10,2,2.27,2,1.01,2,1.52,11.66,2.83,47,93
22-82,9:4:2,2.40,4.10,2,2.17,2,1.92,2,1.71,11.63,2.81,45,91
22-82,9:4:5,2.40,4.10,2,1.96,2,1.92,2,1.43,11.61,2.83,48,91
22-82,9:4:2,2.30,4.30,2,2.07,2,1.01,2,1.52,11.65,2.85,40,96
22-82,9:4:5,2.30,4.20,2,1.96,2,1.92,2,1.52,11.67,2.86,44,93
22-82,9:4:2,2.30,4.20,2,2.27,2,1.82,2,1.61,11.62,2.86,44,92
22-82,9:4:1,2.30,4.20,2,1.96,2,1.92,2,1.52,11.72,2.88,46,94
22-82,9:4:3,2.30,4.30,2,2.07,2,1.11,2,1.61,11.67,2.88,46,95
22-82,9:4:3,2.30,4.20,2,2.17,2,1.92,2,1.52,11.69,2.88,43,97
22-82,9:4:3,2.30,4.20,2,2.07,2,1.82,2,1.43,11.71,2.86,41,91
22-82,9:5:6,2.30,4.20,2,1.96,2,1.01,2,1.52,11.68,2.87,45,93
22-82,9:5:3,2.30,4.70,2,2.07,2,1.92,2,1.43,11.71,2.87,42,97
22-82,9:5:9,2.30,4.50,2,1.96,2,1.82,2,1.61,11.72,2.88,46,95
22-82,9:5:4,2.30,4.40,2,2.07,2,1.82,2,1.61,11.69,2.83,45,97
22-82,9:5:1,2.40,4.50,2,1.86,2,1.92,2,1.61,11.71,2.82,43,98
22-82,9:5:4,2.30,4.70,2,2.07,2,1.01,2,1.52,11.74,2.78,41,98
22-82,9:5:1,2.30,4.90,2,1.86,2,1.92,2,1.34,11.73,2.80,42,92
22-82,9:5:4,2.20,4.10,2,2.07,2,1.92,2,1.52,11.76,2.77,40,92
22-82,9:5:1,2.20,4.80,2,1.86,2,1.92,2,1.71,11.84,2.80,44,92
22-82,9:5:4,2.10,4.60,2,2.07,2,1.92,2,1.52,11.76,2.80,45,99
22-82,9:5:1,2.10,4.50,2,1.86,2,1.92,2,1.52,11.82,2.78,47,93
22-82,9:5:5,2.10,4.80,2,1.96,2,1.92,2,1.52,11.77,2.81,44,97
22-82,9:5:2,2.00,4.50,2,2.17,2,1.73,2,1.52,11.72,2.80,45,95
22-82,9:5:5,2.00,4.70,2,1.96,2,1.73,2,1.52,11.75,2.81,48,98
22-8-2,9:5:2,2.00,4.10,2,1.96,2,1.01,2,1.34,11.75,2.81,51,92
22-82,9:5:5,2.00,4.20,2,1.96,2,1.92,2,1.61,11.73,2.82,52,99
22-82,9:5:2,2.00,4.10,2,1.65,2,1.82,2,1.52,11.80,2.80,48,94
22-82,9:5:5,2.00,4.80,2,1.76,2,1.92,2,1.43,11.79,2.78,51,90
22-82,9:5:2,2.00,4.50,2,2.07,2,1.92,2,1.52,11.77,2.81,49,90
22-82,1:0:1,2.90,4.50,2,1.96,2,1.82,2,1.43,11.81,2.76,42,93
22-82,1:0:3,2.90,4.20,2,1.86,2,1.92,2,1.52,11.75,2.75,51,94
22-82,1:1:3,2.80,4.10,2,1.86,2,1.92,2,1.43,11.77,2.78,43,98
22-82,1:1:3,2.80,4.10,2,1.96,2,1.73,2,1.52,11.78,2.78,53,93
22-82,1:2:6,2.80,4.90,2,2.07,2,1.82,2,1.52,11.77,2.77,54,92
22-82,1:2:3,2.90,4.20,2,1.86,2,1.92,2,1.43,11.83,2.83,55,99
22-82,1:3:8,2.90,4.80,2,1.65,2,1.92,2,1.52,11.74,2.81,59,99
22-82,1:3:4,2.90,4.60,2,1.96,2,1.82,2,1.43,11.74,2.80,58,90
22-82,1:4:1,2.90,4.40,2,1.76,1,1.92,2,1.43,11.70,2.80,59,95
22-82,1:4:4,2.80,4.60,2,1.86,2,1.01,2,1.52,11.70,2.82,51,94
22-82,1:5:1,2.80,4.80,2,1.86,2,1.82,2,1.43,11.71,2.81,50,95
22-82,1:5:4,2.80,4.90,2,1.96,2,1.92,2,1.43,11.77,2.83,59,99
22-82,1:6:1,2.80,4.50,2,1.86,2,1.01,2,1.43,11.66,2.83,56,90
22-82,1:6:4,2.80,4.80,2,1.65,2,1.82,2,1.52,11.71,2.78,50,97
22-82,1:7:1,2.90,4.90,2,1.86,2,1.92,2,1.52,11.68,2.80,55,99
22-82,1:7:5,2.90,4.90,2,1.65,2,1.92,2,1.52,11.61,2.78,54,91
22-82,1:8:2,2.80,4.80,2,1.86,2,1.73,2,1.61,11.66,2.80,56,90
22-82,1:8:5,2.80,4.80,2,1.86,2,1.92,2,1.43,11.68,2.80,51,95
22-82,1:9:2,2.80,4.80,2,1.86,2,1.92,2,1.52,11.60,2.82,55,94
22-82,1:9:5,2.80,4.80,2,2.07,2,1.92,2,1.43,11.60,2.82,51,93
22-82,1:1:2,2.80,4.80,2,1.96,2,1.01,2,1.43,11.53,2.86,53,94
22-82,1:1:5,2.80,4.80,2,1.65,2,1.82,2,1.34,11.63,2.91,59,91
22-82,1:1:2,2.80,4.80,2,1.65,2,1.82,2,1.43,11.68,2.93,50,93
22-82,1:1:0,2.80,4.80,2,1.76,2,1.92,2,1.52,11.64,2.91,52,95
22-82,1:1:3,2.90,4.90,2,1.76,2,1.82,2,1.71,11.71,2.91,50,93
22-82,1:1:3,2.90,4.80,2,1.76,1,1.82,2,1.43,11.67,2.91,55,91
22-82,1:1:3,2.90,4.90,2,1.65,2,1.82,2,1.43,11.59,2.91,56,91
22-82,1:1:6,2.00,4.60,2,1.86,2,1.92,2,1.43,11.63,2.86,53,97
22-82,1:1:3,2.00,4.80,2,1.65,2,1.92,2,1.43,11.65,2.85,57,96
22-82,1:1:8,2.00,4.10,2,1.76,2,1.92,2,1.43,11.59,2.83,57,98
22-82,1:1:4,2.90,4.70,2,1.86,2,1.82,2,1.52,11.63,2.83,55,99
22-82,1:1:1,2.90,4.50,2,1.76,2,1.82,2,1.34,11.65,2.84,57,94
22-82,1:1:4,2.90,4.40,2,1.65,2,1.92,2,1.43,11.71,2.87,50,95
22-82,1:1:1,2.90,4.40,2,1.65,2,1.92,2,1.43,11.67,2.89,54,99
22-82,1:1:4,2.90,4.70,2,1.65,2,1.82,2,1.43,11.77,2.90,52,99
22-82,1:1:1,2.90,4.30,2,1.65,2,1.73,2,1.52,11.66,2.90,52,99
22-82,1:1:4,2.90,4.40,2,1.65,2,1.82,2,1.34,11.76,2.85,51,92
22-82,1:1:1,2.80,4.10,2,1.65,2,1.92,2,1.43,11.70,2.86,53,96
22-82,1:1:5,2.80,4.00,2,1.65,2,1.92,2,1.43,11.72,2.89,56,95
22-82,1:2:2,2.80,4.30,2,1.65,2,1.73,2,1.43,11.71,2.93,59,94
22-82,1:2:5,2.80,4.50,2,1.76,2,1.82,2,1.52,11.73,2.89,53,99
22-82,1:2:2,2.80,4.20,2,1.65,2,1.82,2,1.52,11.72,2.87,51,99
22-82,1:2:5,2.80,4.70,2,1.65,2,1.82,2,1.43,11.71,2.92,50,90
22-82,1:2:2,2.80,4.90,2,1.76,2,1.92,2,1.52,11.68,2.96,51,91
22-82,1:2:5,2.80,4.20,2,1.76,2,1.92,2,1.34,11.79,2.97,52,94
22-82,1:2:2,2.80,4.00,2,1.76,2,1.92,2,1.25,11.77,2.97,55,98
22-82,1:2:0,2.90,4.90,2,1.86,1,1.01,2,1.52,11.68,2.98,51,96
22-82,1:2:3,2.90,4.10,2,1.65,2,1.92,2,1.43,11.74,2.01,51,90
22-82,1:2:3,2.90,4.10,2,1.65,2,1.82,2,1.43,11.76,2.99,59,98
22-82,1:2:3,2.00,4.50,2,1.65,2,1.92,2,1.43,11.75,2.90,51,93
22-82,1:2:5,2.00,4.10,2,1.65,2,1.92,2,1.61,11.83,2.83,54,94
22-82,1:2:3,2.00,4.10,2,1.65,2,1.82,2,1.34,11.87,2.80,58,98
22-82,1:2:8,2.90,4.00,2,1.55,2,1.92,2,1.34,11.84,2.78,57,91
22-82,1:2:3,2.80,4.00,2,1.65,2,1.92,2,1.25,11.87,2.66,50,95
22-82,1:2:1,2.80,4.60,2,1.55,2,1.92,2,1.34,11.84,2.69,59,92
22-82,1:2:4,2.80,4.70,2,1.65,2,1.82,2,1.34,11.83,2.64,57,99
22-82,1:2:1,2.80,4.80,2,1.65,2,1.92,2,1.52,11.86,2.62,58,92
22-82,1:2:4,2.70,4.30,2,1.65,2,1.82,2,1.34,11.81,2.60,58,97
22-82,1:3:1,2.60,4.20,2,1.65,2,1.01,2,1.43,11.81,2.64,58,90
22-8-2,1:3:4,2.60,4.50,2,1.65,2,1.92,2,1.43,11.83,2.63,59,94
22-8-2,1:3:1,2.60,4.60,2,1.65,2,1.92,2,1.43,11.85,2.56,55,91
22-8-2,1:3:5,2.50,4.40,2,1.65,2,1.92,2,1.52,11.83,2.60,52,91
22-8-2,1:3:2,2.50,4.70,2,1.65,2,1.92,2,1.34,11.88,2.56,55,92
22-8-2,1:3:5,2.50,4.60,2,1.65,2,1.92,2,1.34,11.81,2.50,51,92
22-8-2,1:3:2,2.50,4.30,2,1.65,2,1.92,2,1.43,11.83,2.46,54,95
22-8-2,1:3:5,2.50,4.40,2,1.45,2,1.92,2,1.43,11.77,2.50,55,98
22-8-2,1:3:2,2.40,4.40,2,1.65,2,1.92,2,1.34,11.83,2.60,55,96
22-8-2,1:3:5,2.40,4.40,2,1.65,2,1.39,2,1.25,11.82,2.59,55,92
22-8-2,1:3:2,2.40,4.10,2,1.65,2,1.87,2,1.34,11.82,2.56,57,95
22-8-2,1:3:0,2.30,4.80,2,1.55,2,1.87,2,1.34,11.77,2.55,54,91
22-8-2,1:3:3,2.40,4.50,2,1.65,2,1.87,2,1.34,11.83,2.48,54,93
22-8-2,1:3:3,2.30,4.50,2,1.55,2,1.78,2,1.34,11.84,2.50,52,90
22-8-2,1:3:3,2.30,4.60,2,1.55,2,1.87,2,1.43,11.81,2.45,59,90
22-8-2,1:3:5,2.30,4.00,2,1.55,1,1.78,2,1.25,11.91,2.44,59,90
22-8-2,1:3:3,2.30,4.90,2,1.65,2,1.58,2,1.34,11.88,2.40,51,90
22-8-2,1:3:8,2.30,4.00,2,1.76,2,1.87,2,1.34,11.94,2.35,57,98
22-8-2,1:3:3,2.30,4.00,2,1.55,1,1.68,2,1.43,11.83,2.28,59,98
22-8-2,1:4:1,2.30,4.20,2,1.65,2,1.78,2,1.43,11.92,2.23,52,98
22-8-2,1:4:4,2.30,4.20,2,1.65,2,1.78,2,1.25,11.86,2.17,56,90
22-8-2,1:4:1,2.20,4.30,2,1.55,2,1.78,2,1.43,11.92,2.16,50,92
22-8-2,1:4:4,2.10,4.70,2,1.55,2,1.87,2,1.43,11.92,2.13,54,95
22-8-2,1:4:1,2.10,4.60,2,1.55,2,1.87,2,1.43,11.94,2.16,50,96
22-8-2,1:4:4,2.10,4.90,2,1.65,2,1.87,2,1.25,11.96,2.20,50,97
22-8-2,1:4:1,2.10,4.10,2,1.65,2,1.87,2,1.34,11.98,2.16,53,93
22-8-2,1:4:5,2.10,4.90,2,1.55,2,1.78,2,1.43,11.94,2.14,51,96
22-8-2,1:4:2,2.10,4.00,2,1.45,2,1.87,2,1.34,11.94,2.16,56,95
22-8-2,1:4:5,2.00,4.30,2,1.65,2,1.87,2,1.34,11.95,2.17,50,92
22-8-2,1:4:2,2.00,4.30,2,1.65,2,1.87,2,1.43,11.89,2.14,54,95
22-8-2,1:4:5,2.00,4.20,2,1.65,2,1.87,2,1.25,11.93,2.14,50,92
22-8-2,1:4:2,2.00,4.20,2,1.55,1,1.07,2,1.25,11.96,2.13,57,95
22-8-2,1:4:5,2.00,4.10,2,1.55,2,1.87,2,1.34,11.89,2.11,57,99
22-82,1:4:2,2.00,4.20,2,1.45,1,1.87,2,1.34,11.97,2.13,50,97
22-8-2,1:4:0,2.00,4.30,2,1.65,2,1.87,2,1.34,11.95,2.11,50,91
22-8-2,1:4:3,2.00,4.90,2,1.65,1,1.87,2,1.43,11.98,2.11,59,93
22-8-2,1:4:3,2.00,4.30,2,1.55,2,1.87,2,1.52,11.04,2.07,57,91
22-8-2,1:4:3,2.00,4.50,2,1.65,2,1.07,2,1.34,11.12,2.08,52,97
22-8-2,1:5:5,2.00,4.60,2,1.65,1,1.87,2,1.43,11.04,2.04,53,97
22-8-2,1:5:3,2.00,4.30,2,1.55,2,1.87,2,1.34,11.06,2.08,57,94
22-8-2,1:5:8,2.00,4.70,2,1.65,2,1.87,2,1.25,11.04,2.11,58,93
22-8-2,1:5:3,2.00,4.30,2,1.45,2,1.87,2,1.25,11.01,2.14,52,94
22-8-2,1:5:1,2.90,4.90,2,1.45,2,1.97,2,1.25,11.98,2.17,50,93
22-8-2,1:5:4,2.00,4.90,2,1.45,2,1.87,2,1.43,11.02,2.16,52,99
22-8-2,1:5:1,2.00,4.30,2,1.65,1,1.87,2,1.25,11.03,2.14,53,92
22-8-2,1:5:4,2.10,4.10,2,1.55,2,1.87,2,1.34,11.02,2.14,50,93
22-8-2,1:5:1,2.10,4.00,2,1.45,2,1.97,2,1.34,11.01,2.14,57,91
22-8-2,1:5:4,2.10,4.80,2,1.65,2,1.97,2,1.34,11.03,2.13,54,99
22-8-2,1:5:1,2.10,4.50,2,1.65,2,1.97,2,1.34,11.08,2.14,53,96
22-8-2,1:5:4,2.10,4.50,2,1.55,1,1.87,2,1.16,11.13,2.11,59,90
22-8-2,1:5:2,2.10,4.60,2,1.55,2,1.87,2,1.34,11.08,2.10,54,90
22-8-2,1:5:5,2.10,4.60,2,1.65,1,1.97,2,1.34,11.15,2.06,50,92
22-8-2,1:5:2,2.10,4.50,2,1.65,2,1.07,2,1.25,11.09,2.08,59,99
22-8-2,1:5:5,2.00,4.60,2,1.45,2,1.16,2,1.25,11.09,2.04,59,91
22-8-2,1:5:2,2.00,4.50,2,1.65,1,1.87,2,1.43,11.03,2.06,56,98
22-8-2,1:5:5,2.00,4.40,2,1.65,2,1.97,2,1.34,11.15,2.07,56,97
22-8-2,1:5:2,2.00,4.20,2,1.65,1,1.16,2,1.34,11.06,2.02,53,96
22-8-2,1:0:0,2.00,4.10,2,1.65,1,1.97,2,1.25,11.14,2.04,59,97
22-8-2,1:0:3,2.00,4.30,2,1.45,2,1.07,2,1.34,11.08,2.05,53,90
22-8-2,1:1:2,2.00,4.30,2,1.55,1,1.07,2,1.43,11.06,2.06,58,97
22-8-2,1:1:3,2.00,4.90,2,1.35,2,1.97,2,1.25,11.10,2.11,51,93
22-8-2,1:2:5,2.90,4.70,2,1.45,1,1.16,2,1.25,11.18,2.06,57,99
22-8-2,1:2:3,2.00,4.70,2,1.45,2,1.97,2,1.34,11.95,2.98,52,97
22-8-2,1:3:8,2.00,4.20,2,1.45,1,1.16,2,1.25,11.12,2.99,55,94
22-8-2,1:3:3,2.00,4.60,2,1.55,2,1.97,2,1.43,11.17,2.01,55,92
22-8-2,1:4:1,2.00,4.10,2,1.45,2,1.26,2,1.16,11.15,2.01,59,94
22-82,1:4:4,2.00,4.30,2,1.55,2,1.16,2,1.34,11.13,2.03,59,90
22-8-2,1:5:1,2.00,4.20,2,1.55,1,1.07,2,1.43,11.12,2.97,57,95
22-8-2,1:5:4,2.00,4.70,2,1.45,2,1.07,2,1.52,11.10,2.97,50,94
22-8-2,1:6:1,2.00,4.20,2,1.45,1,1.26,2,1.43,11.14,2.99,59,95
22-8-2,1:6:4,2.00,4.10,2,1.45,2,1.07,2,1.34,11.16,2.99,56,90
22-8-2,1:7:1,2.00,4.50,2,1.65,1,1.07,2,1.34,11.18,2.99,56,95
22-8-2,1:7:4,2.00,4.40,2,1.65,1,1.46,2,1.34,11.20,2.04,55,95
22-8-2,1:8:2,2.90,4.90,2,1.45,1,1.97,2,1.25,11.25,2.07,54,90
22-8-2,1:8:5,2.90,4.20,2,1.55,1,1.16,2,1.34,11.26,2.12,57,95
22-8-2,1:9:2,2.00,4.00,2,1.55,1,1.16,2,1.43,11.18,2.10,59,92
22-8-2,1:9:5,2.00,4.80,2,1.45,1,1.07,2,1.25,11.15,2.03,59,93
22-8-2,1:1:2,2.00,4.40,2,1.45,2,1.07,2,1.43,11.18,2.06,58,99
22-8-2,1:1:5,2.00,4.30,2,1.45,1,1.16,2,1.25,11.30,2.06,54,91
22-8-2,1:1:2,2.00,4.30,2,1.55,2,1.26,2,1.25,11.17,2.04,56,99
22-8-2,1:1:0,2.00,4.20,2,1.45,1,1.07,2,1.34,11.20,2.09,55,92
22-8-2,1:1:3,2.90,4.90,2,1.55,2,1.46,2,1.34,11.25,2.07,59,91
22-8-2,1:1:2,2.00,4.50,2,1.35,2,1.36,2,1.16,11.23,2.06,58,96
22-8-2,1:1:3,2.90,4.40,2,1.55,1,1.07,2,1.25,11.27,2.02,52,90
22-8-2,1:1:5,2.90,4.40,2,1.45,1,1.16,2,1.34,11.19,2.99,53,97
22-8-2,1:1:3,2.00,4.50,2,1.45,2,1.07,2,1.25,11.26,2.03,53,95
22-8-2,1:1:7,2.90,4.60,2,1.55,1,1.36,2,1.25,11.23,2.03,52,93
22-8-2,1:1:3,2.90,4.70,2,1.55,1,1.07,2,1.25,11.12,2.04,52,95
22-8-2,1:1:1,2.90,4.60,2,1.65,2,1.16,2,1.25,11.20,2.95,54,97
22-8-2,1:1:4,2.90,4.90,2,1.45,1,1.46,2,1.34,11.13,2.91,58,96
22-8-2,1:1:1,2.90,4.30,2,1.55,2,1.07,2,1.25,11.11,2.88,58,91
22-8-2,1:1:4,2.90,4.90,2,1.55,1,1.16,2,1.34,11.16,2.86,54,97
22-8-2,1:1:1,2.90,4.60,2,1.55,1,1.46,2,1.43,11.15,2.71,52,90
22-8-2,1:1:4,2.80,3.80,2,1.55,1,1.16,2,1.34,11.21,2.62,57,93
22-8-2,1:1:1,2.80,3.80,2,1.65,2,1.36,2,1.16,11.14,2.51,58,95
22-8-2,1:1:4,2.70,3.40,2,1.45,1,1.46,2,1.34,11.13,2.52,56,90
22-8-2,1:2:2,2.60,3.60,2,1.35,2,1.36,2,1.25,11.13,2.42,56,97
22-8-2,1:2:5,2.50,3.60,2,1.45,1,1.46,2,1.43,11.06,2.47,52,92
22-8-2,1:2:2,2.50,3.60,2,1.35,2,1.07,2,1.34,11.23,2.50,55,90
22-82,1:2:5,2.40,4.00,2,1.35,2,1.16,2,1.34,11.19,2.39,52,96
22-8-2,1:2:2,2.30,3.20,2,1.45,1,1.26,2,1.34,11.13,2.36,58,91
22-8-2,1:2:5,2.30,3.10,2,1.45,2,1.16,2,1.34,11.17,2.35,58,96
22-8-2,1:2:2,2.30,3.20,2,1.45,1,1.16,2,1.25,11.10,2.23,53,95
22-8-2,1:2:5,2.30,3.90,2,1.45,2,1.36,2,1.34,11.14,2.16,57,91
22-8-2,1:2:3,2.20,3.80,2,1.45,1,1.16,2,1.16,11.13,2.10,55,94
22-8-2,1:2:2,2.10,3.70,2,1.45,1,1.46,2,1.34,11.20,2.11,52,90
22-8-2,1:2:3,2.10,3.50,2,1.35,1,1.07,2,1.34,11.12,2.13,55,95
22-8-2,1:2:5,2.10,3.40,2,1.35,1,1.36,2,1.25,11.23,2.05,54,95
22-8-2,1:2:3,2.00,3.40,2,1.55,1,1.46,2,1.25,11.14,2.10,59,99
22-8-2,1:2:7,2.00,3.80,2,1.55,1,1.55,2,1.34,11.20,2.04,56,95
22-8-2,1:2:3,2.00,3.80,2,1.45,1,1.46,2,1.34,11.14,2.96,58,92
22-8-2,1:2:1,2.00,3.80,2,1.45,1,1.46,2,1.43,11.05,2.00,53,92
22-8-2,1:2:4,2.90,3.00,2,1.45,1,1.46,2,1.43,11.15,2.90,56,91
22-8-2,1:2:1,2.90,3.00,2,1.45,1,1.55,2,1.16,11.15,2.90,50,95
22-8-2,1:2:4,2.90,3.20,2,1.55,1,1.46,2,1.52,11.18,2.88,55,95
22-8-2,1:3:1,2.80,3.10,2,1.45,1,1.55,2,1.43,11.08,2.80,53,95
22-8-2,1:3:4,2.80,3.10,2,1.35,1,1.46,2,1.16,11.13,2.85,54,99
22-8-2,1:3:1,2.80,3.30,2,1.45,1,1.55,2,1.34,11.18,2.83,52,90
22-8-2,1:3:4,2.80,3.20,2,1.45,1,1.26,2,1.34,11.22,2.78,51,94
22-8-2,1:3:2,2.80,3.20,2,1.45,1,1.55,2,1.34,11.23,2.77,59,94
22-8-2,1:3:5,2.80,3.20,2,1.15,1,1.36,2,1.16,11.12,2.77,50,91
22-8-2,1:3:2,2.80,3.20,2,1.35,1,1.46,2,1.16,11.09,2.70,58,98
22-8-2,1:3:5,2.80,3.30,2,1.45,1,1.26,2,1.34,11.20,2.84,59,91
22-8-2,1:3:2,2.80,3.50,2,1.45,1,1.26,2,1.25,11.12,2.77,59,91
22-8-2,1:3:5,2.80,3.40,2,1.45,1,1.55,2,1.25,11.18,2.73,60,96
22-8-2,1:3:2,2.80,3.40,2,1.55,1,1.26,2,1.25,11.19,2.80,56,90
22-8-2,1:3:5,2.80,3.80,2,1.45,1,1.46,2,1.43,11.20,2.86,67,90
22-8-2,1:3:3,2.80,3.90,2,1.35,1,1.55,2,1.25,11.11,2.89,66,91
22-8-2,1:3:2,2.70,4.00,2,1.45,1,1.46,2,1.25,11.13,2.90,67,99
22-8-2,1:3:3,2.70,4.30,2,1.25,1,1.46,2,1.25,11.16,2.85,57,95
22-8-2,1:3:4,2.70,4.30,2,1.55,1,1.26,2,1.25,11.17,2.75,61,91
22-8-2,1:3:3,2.80,4.20,2,1.55,1,1.46,2,1.34,11.14,2.77,62,90
22-82,1:3:7,2.80,4.20,2,1.25,1,1.46,2,1.16,11.06,2.67,54,99
22-8-2,1:3:3,2.80,3.90,2,1.45,1,1.46,2,1.43,11.19,2.77,66,93
22-8-2,1:4:1,2.80,4.00,2,1.35,1,1.55,2,1.16,11.14,2.73,69,91
22-8-2,1:4:4,2.80,3.90,2,1.55,1,1.46,2,1.25,11.14,2.73,66,91
22-8-2,1:4:1,2.70,4.00,2,1.45,1,1.55,2,1.25,11.16,2.70,61,96
22-8-2,1:4:4,2.80,4.20,2,1.15,1,1.55,2,1.25,11.18,2.76,69,99
22-8-2,1:4:1,2.80,4.40,2,1.35,1,1.55,2,1.34,11.19,2.69,64,92
22-8-2,1:4:4,2.80,4.60,2,1.45,1,1.65,2,1.34,11.23,2.75,62,95
22-8-2,1:4:1,2.80,4.90,2,1.35,1,1.36,2,1.25,11.13,2.68,61,97
22-8-2,1:4:4,2.70,4.90,2,1.65,1,1.46,2,1.16,11.22,2.67,56,99
22-8-2,1:4:2,2.70,4.60,2,1.55,1,1.55,2,1.16,11.25,2.68,66,98
22-8-2,1:4:5,2.70,4.60,2,1.35,1,1.46,2,1.25,11.19,2.68,58,94
22-8-2,1:4:2,2.70,4.50,2,1.35,1,1.46,2,1.25,11.29,2.72,67,91
22-8-2,1:4:5,2.70,4.60,2,1.25,1,1.55,2,1.34,11.23,2.67,69,91
22-8-2,1:4:2,2.70,4.60,2,1.45,1,1.55,2,1.25,11.25,2.61,66,99
22-8-2,1:4:5,2.70,4.40,2,1.35,1,1.55,2,1.34,11.24,2.60,53,99
22-8-2,1:4:2,2.70,4.30,2,1.45,1,1.46,2,1.16,11.28,2.61,54,95
22-8-2,1:4:5,2.70,4.30,2,1.45,1,1.55,2,1.25,11.25,2.59,61,91
22-8-2,1:4:3,2.60,4.30,2,1.35,1,1.55,2,1.16,11.25,2.58,63,96
22-8-2,1:4:2,2.60,4.20,2,1.55,1,1.46,2,1.25,11.32,2.54,64,92
22-8-2,1:4:3,2.60,4.10,2,1.55,1,1.55,2,1.16,11.18,2.45,66,96
22-8-2,1:5:4,2.60,4.10,2,1.25,1,1.46,2,1.25,11.27,2.46,61,99
22-8-2,1:5:3,2.60,4.10,2,1.35,1,1.55,2,1.25,11.30,2.42,67,92
22-8-2,1:5:7,2.60,4.20,2,1.45,1,1.46,2,1.34,11.27,2.39,65,97
22-8-2,1:5:3,2.60,4.30,2,1.65,1,1.55,2,1.16,11.22,2.38,66,95
22-8-2,1:5:1,2.50,4.40,2,1.35,1,1.65,2,1.25,11.28,2.32,58,92
22-8-2,1:5:4,2.50,4.60,2,1.45,1,1.55,2,1.25,11.32,2.28,67,91
22-8-2,1:5:1,2.50,4.80,2,1.45,1,1.65,2,1.25,11.30,2.35,69,92
22-8-2,1:5:4,2.50,4.00,2,1.25,1,1.55,2,1.34,11.28,2.35,61,96
22-8-2,1:5:1,2.50,4.00,2,1.55,1,1.65,2,1.25,11.29,2.32,61,90
22-8-2,1:5:4,2.50,4.30,2,1.45,1,1.55,2,1.16,11.35,2.53,67,93
22-8-2,1:5:1,2.50,4.40,2,1.35,1,1.46,2,1.25,11.25,2.62,59,94
22-8-2,1:5:4,2.50,4.40,2,1.45,1,1.55,2,1.25,11.24,2.73,68,92
22-82,1:5:2,2.60,4.30,2,1.55,1,1.46,2,1.25,11.29,2.83,63,93
22-8-2,1:5:5,2.70,4.70,2,1.45,1,1.55,2,1.25,11.31,2.95,67,99
22-8-2,1:5:2,2.80,4.80,2,1.25,1,1.46,2,1.34,11.31,2.03,62,92
22-8-2,1:5:5,2.90,4.40,2,1.35,1,1.46,2,1.25,11.30,2.14,66,94
22-8-2,1:5:2,2.00,4.20,2,1.45,1,1.46,2,1.34,11.23,2.26,64,93
22-8-2,1:5:5,2.10,4.30,2,1.45,1,1.46,2,1.34,11.36,2.35,61,98
22-8-2,1:5:2,2.30,4.30,2,1.25,1,1.46,2,1.25,11.34,2.45,61,95
22-8-2,1:5:5,2.30,4.20,2,1.35,1,1.55,2,1.34,11.35,2.54,64,98
22-8-2,1:0:3,2.50,4.20,2,1.25,1,1.46,2,1.34,11.29,2.62,66,94
22-8-2,1:1:2,2.50,4.20,2,1.15,1,1.55,2,1.16,11.31,2.66,60,98
22-8-2,1:1:3,2.60,4.00,2,1.35,1,1.75,2,1.25,11.35,2.72,69,95
22-8-2,1:2:4,2.70,4.00,2,1.45,1,1.46,2,1.34,11.22,2.80,60,99
22-8-2,1:2:3,2.80,4.00,2,1.15,1,1.46,2,1.07,11.27,2.85,66,90
22-8-2,1:3:7,2.80,4.00,2,1.25,1,1.46,2,1.34,11.28,2.89,65,90
22-8-2,1:3:3,2.00,4.90,2,1.25,1,1.46,2,1.25,11.30,2.95,69,96
22-8-2,1:4:9,2.00,4.90,2,1.35,1,1.55,2,1.34,11.36,2.98,62,99
22-8-2,1:4:4,2.10,4.80,2,1.35,1,1.46,2,1.25,11.32,2.06,62,95
22-8-2,1:5:1,2.10,4.70,2,1.35,1,1.85,2,1.25,11.39,2.08,61,97
22-8-2,1:5:4,2.20,4.50,2,1.25,1,1.46,2,1.25,11.44,2.11,56,94
22-8-2,1:6:1,2.30,4.40,2,1.15,1,1.55,2,1.34,11.32,2.16,60,99
22-8-2,1:6:4,2.30,4.30,2,1.25,1,1.55,2,1.34,11.32,2.23,54,99
22-8-2,1:7:1,2.40,4.30,2,1.15,1,1.55,2,1.16,11.32,2.25,57,97
22-8-2,1:7:4,2.50,4.20,2,1.25,1,1.26,2,1.43,11.35,2.29,55,92
22-8-2,1:8:2,2.50,4.20,2,1.25,1,1.46,2,1.43,11.39,2.32,60,96
22-8-2,1:8:5,2.50,4.20,2,1.35,1,1.65,2,1.07,11.33,2.37,64,90
22-8-2,1:9:2,2.50,4.00,2,1.15,1,1.46,2,1.34,11.37,2.41,57,90
22-8-2,1:9:5,2.60,4.00,2,1.25,1,1.55,2,1.34,11.40,2.46,50,90
22-8-2,1:1:2,2.60,4.00,2,1.15,1,1.26,2,1.25,11.44,2.50,61,95
22-8-2,1:1:5,2.60,4.00,2,1.25,1,1.46,2,1.25,11.49,2.55,56,92
22-8-2,1:1:2,2.60,3.90,2,1.15,1,1.26,2,1.16,11.47,2.53,58,90
22-8-2,1:1:5,2.60,3.90,2,1.15,1,1.55,2,1.34,11.50,2.58,56,98
22-8-2,1:1:3,2.70,3.90,2,1.15,1,1.65,2,1.34,11.43,2.62,56,99
22-8-2,1:1:1,2.80,3.90,2,1.25,1,1.55,2,1.34,11.36,2.67,52,91
22-82,1:1:3,2.80,3.80,2,1.25,1,1.55,2,1.25,11.41,2.74,50,93
22-8-2,1:1:4,2.80,3.80,2,1.05,1,1.46,2,1.25,11.47,2.74,54,93
22-8-2,1:1:3,2.80,3.70,2,1.94,1,1.55,2,1.43,11.40,2.78,50,92
22-8-2,1:1:7,2.80,3.50,2,1.05,1,1.55,2,1.34,11.49,2.81,57,93
22-8-2,1:1:3,2.80,3.20,2,1.05,1,1.55,2,1.34,11.43,2.80,55,95
22-8-2,1:1:9,2.80,3.00,2,1.15,1,1.46,2,1.16,11.48,2.78,54,96
22-8-2,1:1:4,2.80,3.00,2,1.15,1,1.55,2,1.25,11.52,2.76,58,94
22-8-2,1:1:1,2.80,3.80,2,1.15,1,1.46,2,1.16,11.49,2.78,53,95
22-8-2,1:1:4,2.80,3.80,2,1.15,1,1.46,2,1.34,11.55,2.81,57,94
22-8-2,1:1:1,2.80,3.00,2,1.25,1,1.65,2,1.43,11.47,2.77,58,93
22-8-2,1:1:4,2.80,3.00,2,1.25,1,1.55,2,1.16,11.55,2.75,51,98
22-8-2,1:1:1,2.80,3.00,2,1.05,1,1.75,2,1.34,11.49,2.74,53,98
22-8-2,1:1:4,2.80,3.00,2,1.25,1,1.46,2,1.34,11.55,2.72,58,98
22-8-2,1:2:2,2.80,3.90,2,1.15,1,1.65,2,1.07,11.63,2.74,56,93
22-8-2,1:2:5,2.80,3.00,2,1.15,1,1.46,2,1.25,11.51,2.71,57,94
22-8-2,1:2:2,2.70,3.00,2,1.15,1,1.75,2,1.34,11.55,2.77,58,99
22-8-2,1:2:5,2.80,3.00,2,1.15,1,1.55,2,1.25,11.52,2.78,59,94
22-8-2,1:2:2,2.80,3.00,2,1.25,1,1.75,2,1.25,11.55,2.78,50,98
22-8-2,1:2:5,2.80,3.00,2,1.25,1,1.46,2,1.34,11.55,2.78,50,95
22-8-2,1:2:2,2.80,3.00,2,1.05,1,1.46,2,1.34,11.53,2.77,50,96
22-8-2,1:2:5,2.80,3.00,2,1.35,1,1.46,2,1.25,11.51,2.77,59,95
22-8-2,1:2:3,2.80,3.10,2,1.94,1,1.46,2,1.25,11.48,2.82,52,92
22-8-2,1:2:1,2.80,3.90,2,1.15,1,1.46,2,1.25,11.51,2.84,52,91
22-8-2,1:2:3,2.80,4.00,2,1.15,1,1.75,2,1.34,11.48,2.87,53,96
22-8-2,1:2:4,2.80,3.50,2,1.25,1,1.55,2,1.34,11.50,2.88,50,91
22-8-2,1:2:3,2.80,3.30,2,1.25,1,1.46,2,1.34,11.52,2.87,53,99
22-8-2,1:2:6,2.80,3.50,2,1.15,1,1.55,2,1.34,11.49,2.91,55,90
22-8-2,1:2:3,2.80,3.50,2,1.05,1,1.46,2,1.16,11.51,2.92,49,94
22-8-2,1:2:9,2.80,3.20,2,1.15,1,1.55,2,1.34,11.53,2.88,56,95
22-8-2,1:2:4,2.90,3.30,2,1.94,1,1.55,2,1.34,11.58,2.90,52,93
22-8-2,1:2:1,2.90,3.30,2,1.25,1,1.55,2,1.25,11.46,2.90,45,98
22-8-2,1:2:4,2.90,3.60,2,1.05,1,1.75,2,1.43,11.55,2.88,46,99
22-8-2,1:3:1,2.90,3.90,2,1.05,1,1.46,2,1.25,11.49,2.87,45,95
22-82,1:3:4,2.90,4.10,2,1.94,1,1.55,2,1.34,11.61,2.89,44,94
22-8-2,1:3:1,2.90,3.90,2,1.15,1,1.65,2,1.34,11.52,2.86,48,98
22-8-2,1:3:4,2.00,4.00,2,1.05,1,1.46,2,1.16,11.53,2.83,47,97
22-8-2,1:3:1,2.00,4.00,2,1.05,1,1.85,2,1.16,11.61,2.86,42,92
22-8-2,1:3:5,2.00,4.00,2,1.25,1,1.55,2,1.34,11.56,2.91,47,92
22-8-2,1:3:2,2.00,3.40,2,1.94,1,1.55,2,1.34,11.57,2.95,50,94
22-8-2,1:3:5,2.00,3.30,2,1.15,1,1.55,2,1.25,11.56,2.91,53,95
22-8-2,1:3:2,2.00,3.20,2,1.05,1,1.75,2,1.34,11.49,2.94,51,91
22-8-2,1:3:5,2.00,3.00,2,1.25,1,1.65,2,1.25,11.56,2.97,51,93
22-8-2,1:3:2,2.00,3.00,2,1.05,1,1.46,2,1.34,11.64,2.94,53,92
22-8-2,1:3:5,2.00,3.00,2,1.94,1,1.65,2,1.34,11.62,2.94,45,96
22-8-2,1:3:3,2.00,3.20,2,1.15,1,1.65,2,1.25,11.67,2.96,50,93
22-8-2,1:3:1,2.00,3.00,2,1.15,1,1.85,2,1.25,11.65,2.93,46,94
22-8-2,1:3:3,2.00,3.00,2,1.05,1,1.65,2,1.25,11.65,2.91,43,98
22-8-2,1:3:4,2.90,3.90,2,1.05,1,1.65,2,1.43,11.63,2.91,45,96
22-8-2,1:3:3,2.90,3.00,2,1.05,1,1.65,2,1.25,11.62,2.90,47,98
22-8-2,1:3:6,2.90,3.00,2,1.05,1,1.46,2,1.25,11.61,2.83,43,97
22-8-2,1:3:3,2.80,3.90,2,1.25,1,1.85,2,1.34,11.59,2.84,49,92
22-8-2,1:4:9,2.80,3.00,2,1.05,1,1.95,2,1.34,11.64,2.86,44,92
22-8-2,1:4:4,2.80,3.00,2,1.25,1,1.75,2,1.34,11.63,2.88,51,99
22-8-2,1:4:1,2.80,3.00,2,1.15,1,1.55,2,1.25,11.67,2.89,44,94
22-8-2,1:4:4,2.80,3.00,2,1.05,1,1.55,2,1.34,11.69,2.88,44,91
22-8-2,1:4:1,2.80,3.00,2,1.15,1,1.85,2,1.25,11.61,2.84,46,94
22-8-2,1:4:4,2.80,3.00,2,1.05,1,1.85,2,1.16,11.60,2.83,44,90
22-8-2,1:4:1,2.80,3.10,2,1.05,1,1.75,2,1.25,11.67,2.83,46,97
22-8-2,1:4:4,2.80,3.30,2,1.15,1,1.75,2,1.34,11.60,2.83,49,94
22-8-2,1:4:1,2.80,3.00,2,1.05,1,1.65,2,1.34,11.72,2.85,41,90
22-8-2,1:4:5,2.80,3.10,2,1.05,1,1.75,2,1.43,11.66,2.85,42,90
22-8-2,1:4:2,2.80,3.20,2,1.05,1,1.46,2,1.34,11.73,2.85,49,99
22-8-2,1:4:5,2.80,3.00,2,1.84,1,1.75,2,1.16,11.71,2.86,43,97
22-8-2,1:4:2,2.80,3.00,2,1.05,1,1.85,2,1.16,11.71,2.87,48,93
22-8-2,1:4:5,2.80,3.00,2,1.05,1,1.65,2,1.43,11.66,2.86,48,92
22-8-2,1:4:2,2.80,3.20,2,1.94,1,1.65,2,1.34,11.71,2.87,40,99
22-82,1:4:5,2.80,3.10,2,1.05,1,1.55,2,1.25,11.64,2.85,46,92
22-8-2,1:4:3,2.80,3.00,2,1.05,1,1.75,2,1.25,11.69,2.86,45,92
22-8-2,1:4:1,2.80,3.00,2,1.15,1,1.75,2,1.43,11.73,2.86,42,98
22-8-2,1:4:3,2.80,3.00,2,1.05,1,1.85,2,1.34,11.75,2.86,47,96
22-8-2,1:5:4,2.80,3.00,2,1.05,1,1.75,2,1.16,11.74,2.89,50,98
22-8-2,1:5:3,2.80,3.30,2,1.05,1,1.85,2,1.34,11.80,2.90,53,95
22-8-2,1:5:6,2.80,3.20,2,1.25,1,1.65,2,1.34,11.69,2.91,50,92
22-8-2,1:5:3,2.80,3.00,2,1.05,1,1.55,2,1.43,11.75,2.91,55,99
22-8-2,1:5:9,2.80,3.10,2,1.84,1,1.75,2,1.16,11.79,2.89,50,99
22-8-2,1:5:4,2.80,3.00,2,1.15,1,1.75,2,1.25,11.69,2.88,59,97
22-8-2,1:5:1,2.80,3.30,2,1.05,1,1.75,2,1.34,11.73,2.90,59,98
22-8-2,1:5:4,2.80,3.30,2,1.94,1,1.65,2,1.25,11.71,2.90,50,93
22-8-2,1:5:1,2.80,3.30,2,1.05,1,1.85,2,1.34,11.67,2.91,58,93
22-8-2,1:5:4,2.80,3.30,2,1.15,1,1.46,2,1.34,11.77,2.88,59,96
22-8-2,1:5:1,2.80,3.30,2,1.05,1,1.65,2,1.43,11.69,2.90,55,99
22-8-2,1:5:4,2.80,3.20,2,1.05,1,1.65,2,1.25,11.65,2.92,56,94
22-8-2,1:5:1,2.80,3.30,2,1.05,1,1.55,2,1.34,11.71,2.97,53,96
22-8-2,1:5:5,2.80,3.30,2,1.94,1,1.65,2,1.43,11.71,2.98,56,96
22-8-2,1:5:2,2.80,3.30,2,1.05,1,1.75,2,1.25,11.67,2.01,50,97
22-8-2,1:5:5,2.80,3.10,2,1.05,1,1.05,2,1.34,11.68,2.04,55,99
22-8-2,1:5:2,2.80,3.20,2,1.05,1,1.75,2,1.25,11.67,2.02,57,97
22-8-2,1:5:5,2.80,3.20,2,1.05,1,1.05,2,1.16,11.75,2.08,59,96
22-8-2,1:5:2,2.90,3.30,2,1.05,1,1.65,2,1.25,11.66,2.12,51,95
22-8-2,1:5:5,2.80,3.20,2,1.94,1,1.95,2,1.34,11.70,2.12,58,99
22-8-2,1:0:3,2.90,3.10,2,1.94,1,1.65,2,1.34,11.85,2.10,55,96
22-8-2,1:1:1,2.80,3.00,2,1.05,1,1.75,2,1.34,11.85,2.12,53,95
22-8-2,1:1:3,2.90,3.00,2,1.15,1,1.75,2,1.34,11.78,2.13,53,97
22-8-2,1:2:3,2.90,3.00,2,1.94,1,1.75,2,1.34,11.74,2.17,58,91
22-8-2,1:2:3,2.90,3.00,2,1.94,1,1.75,2,1.43,11.73,2.15,50,91
22-8-2,1:3:6,2.90,3.00,2,1.94,1,1.75,2,1.34,11.68,2.12,59,99
22-8-2,1:3:3,2.90,3.00,2,1.94,1,1.85,2,1.25,11.78,2.15,56,90
22-8-2,1:4:9,2.90,3.00,2,1.84,1,1.85,2,1.34,11.80,2.15,55,92
22-8-2,1:4:4,2.90,3.00,2,1.84,1,1.65,2,1.25,11.70,2.19,53,91
22-82,1:5:1,2.90,3.90,2,1.94,1,1.65,2,1.34,11.80,2.17,54,93
22-8-2,1:5:4,2.90,3.60,2,1.25,1,1.95,2,1.34,11.79,2.15,50,94
22-8-2,1:6:1,2.90,3.60,2,1.15,1,1.05,2,1.34,11.89,2.10,59,92
22-8-2,1:6:4,2.90,3.40,2,1.05,1,1.95,2,1.16,11.84,2.14,45,99
22-8-2,1:7:1,2.90,3.60,2,1.05,1,1.65,2,1.25,11.88,2.12,47,94
22-8-2,1:7:4,2.90,3.50,2,1.15,1,1.95,2,1.34,11.89,2.10,40,92
22-8-2,1:8:1,2.90,3.30,2,1.05,1,1.75,2,1.25,11.87,2.07,41,91
22-8-2,1:8:5,2.90,3.30,2,1.94,1,1.05,2,1.34,11.85,2.03,40,94
22-8-2,1:9:2,2.90,3.60,2,1.94,1,1.05,2,1.34,11.81,2.07,42,94
22-8-2,1:9:5,2.90,3.00,2,1.05,1,1.95,2,1.52,11.89,2.03,44,91
22-8-2,1:1:2,2.90,3.70,2,1.05,1,1.75,2,1.16,11.86,2.06,40,91
22-8-2,1:1:5,2.90,3.50,2,1.05,1,1.95,2,1.34,11.87,2.01,41,91
22-8-2,1:1:2,2.00,3.20,2,1.05,1,1.85,2,1.34,11.81,2.01,42,90
22-8-2,1:1:5,2.00,3.10,2,1.94,1,1.05,2,1.34,11.85,2.01,42,90
22-8-2,1:1:2,2.00,3.20,2,1.05,1,1.85,2,1.43,11.86,2.99,41,90
22-8-2,1:1:1,2.00,3.20,2,1.05,1,1.75,2,1.25,11.89,2.98,40,96
22-8-2,1:1:3,2.00,3.20,2,1.94,1,1.95,2,1.43,11.96,2.01,47,96
22-8-2,1:1:3,2.90,3.20,2,1.94,1,1.85,2,1.34,11.89,2.02,42,91
22-8-2,1:1:3,2.00,3.10,2,1.84,1,1.75,2,1.34,11.95,2.02,44,90
22-8-2,1:1:6,2.90,3.20,2,1.15,1,1.85,2,1.34,11.83,2.99,41,92
22-8-2,1:1:3,2.90,3.20,2,1.94,1,1.05,2,1.34,11.91,2.99,42,98
22-8-2,1:1:8,2.90,3.10,2,1.94,1,1.85,2,1.34,11.97,2.00,49,90
22-8-2,1:1:4,2.00,3.10,2,1.15,1,1.46,2,1.34,11.84,2.99,42,99
22-8-2,1:1:1,2.90,3.20,2,1.05,1,1.95,2,1.34,11.82,2.97,40,99
22-8-2,1:1:4,2.90,3.20,2,1.84,1,1.95,2,1.34,11.87,2.96,46,99
22-8-2,1:1:1,2.90,3.20,2,1.05,2,1.05,2,1.43,11.94,2.00,49,94
22-8-2,1:1:4,2.90,3.00,2,1.94,1,1.85,2,1.34,11.94,2.97,48,94
22-8-2,1:1:1,2.90,3.00,2,1.05,1,1.05,2,1.25,11.82,2.93,40,92
22-8-2,1:1:4,2.90,3.00,2,1.84,2,1.05,2,1.34,11.91,2.93,44,91
22-8-2,1:2:1,2.80,3.90,2,1.05,1,1.85,2,1.34,11.91,2.96,43,97
22-8-2,1:2:5,2.90,3.90,2,1.05,1,1.85,2,1.34,11.90,2.99,43,98
22-8-2,1:2:2,2.90,3.90,2,1.94,1,1.05,2,1.25,11.90,2.97,47,90
22-8-2,1:2:5,2.80,3.90,2,1.94,1,1.95,2,1.25,11.85,2.95,43,99
22-82,1:2:2,2.80,3.80,2,1.94,1,1.05,2,1.43,11.90,2.96,42,98
22-82,1:2:5,2.80,3.80,2,1.05,1,1.75,2,1.34,11.95,2.98,48,95
22-82,1:2:2,2.80,3.80,2,1.05,1,1.05,2,1.43,11.95,2.00,40,96
22-82,1:2:5,2.80,3.80,2,1.05,1,1.05,2,1.16,11.89,2.96,43,95
22-82,1:2:2,2.80,3.30,2,1.05,2,1.85,2,1.34,11.92,2.94,41,94
22-8-2,1:2:0,2.90,3.30,2,1.05,1,1.95,2,1.34,11.94,2.91,42,97
22-8-2,1:2:3,2.90,3.40,2,1.05,1,1.85,2,1.34,11.90,2.92,49,93
22-8-2,1:2:3,2.90,3.90,2,1.94,1,1.05,2,1.25,11.97,2.96,47,93
22-8-2,1:2:3,2.00,3.00,2,1.05,1,1.14,2,1.34,11.05,2.97,48,94
22-8-2,1:2:6,2.00,3.70,2,1.05,2,1.14,2,1.34,11.91,2.98,44,97
22-8-2,1:2:3,2.00,3.60,2,1.05,1,1.85,2,1.34,11.93,2.99,47,96
22-8-2,1:2:8,2.10,3.60,2,1.94,1,1.05,2,1.34,11.00,2.00,44,95
22-8-2,1:2:4,2.10,3.40,2,1.94,1,1.14,2,1.25,11.89,2.99,46,92
22-8-2,1:2:1,2.10,3.40,2,1.84,1,1.05,2,1.43,11.97,2.97,40,91
22-8-2,1:2:4,2.10,3.30,2,1.05,1,1.05,2,1.25,11.92,2.96,48,91
22-8-2,1:3:1,2.10,3.50,2,1.84,2,1.14,2,1.25,11.93,2.96,40,91
22-8-2,1:3:4,2.10,3.40,2,1.05,1,1.05,2,1.25,11.02,2.96,43,93
22-8-2,1:3:1,2.10,3.30,2,1.05,1,1.05,2,1.34,11.97,2.94,42,92
22-8-2,1:3:4,2.10,3.40,2,1.94,2,1.85,2,1.34,11.96,2.93,48,98
22-8-2,1:3:1,2.10,3.30,2,1.94,1,1.95,2,1.34,11.04,2.94,45,91
22-8-2,1:3:5,2.10,3.00,2,1.05,1,1.85,2,1.34,11.05,2.97,47,91
22-8-2,1:3:2,2.10,3.10,2,1.84,1,1.05,2,1.43,11.03,2.94,42,96
22-8-2,1:3:5,2.00,3.00,2,1.84,1,1.14,2,1.52,11.01,2.94,40,98
22-8-2,1:3:2,2.00,3.00,2,1.94,1,1.95,2,1.34,11.12,2.95,47,91
22-8-2,1:3:5,2.00,3.00,2,1.15,2,1.95,2,1.34,11.09,2.97,41,97
22-8-2,1:3:2,2.00,3.00,2,1.15,1,1.95,2,1.34,11.08,2.96,47,91
22-8-2,1:3:5,2.00,3.00,2,1.94,1,1.95,2,1.34,11.02,2.93,47,96
22-8-2,1:3:2,2.00,3.00,2,1.05,1,1.05,2,1.34,11.06,2.91,47,99
22-8-2,1:3:0,2.00,3.30,2,1.05,1,1.05,2,1.43,11.05,2.95,41,91
22-8-2,1:3:3,2.00,3.20,2,1.05,1,1.05,2,1.25,11.07,2.01,45,99
22-8-2,1:3:3,2.00,3.90,2,1.05,2,1.05,2,1.25,11.08,2.01,47,93
22-8-2,1:3:3,2.00,3.00,2,1.94,1,1.14,2,1.43,11.08,2.04,44,99
22-8-2,1:3:6,2.10,3.70,2,1.84,1,1.14,2,1.34,11.04,2.04,47,96
22-8-2,1:3:3,2.10,3.40,2,1.84,2,1.14,2,1.25,11.04,2.02,47,98
22-8-2,1:4:8,2.10,3.40,2,1.94,2,1.14,2,1.25,11.04,2.02,45,92
22-8-2,1:4:3,2.10,3.40,2,1.94,1,1.05,2,1.25,11.09,2.01,41,94
22-8-2,1:4:1,2.10,3.60,2,1.94,1,1.05,2,1.34,11.05,2.01,40,95
22-82,1:4:4,2.20,3.50,2,1.94,1,1.05,2,1.43,11.06,2.03,42,95
22-8-2,1:4:1,2.20,3.10,2,1.94,2,1.24,2,1.25,11.11,2.02,43,91
22-8-2,1:4:4,2.20,3.10,2,1.84,2,1.05,2,1.43,11.06,2.01,46,94
22-8-2,1:4:1,2.20,3.00,2,1.94,1,1.14,2,1.25,11.09,2.99,43,91
22-8-2,1:4:4,2.20,3.10,2,1.84,1,1.05,2,1.34,11.06,2.99,43,96
22-8-2,1:4:1,2.20,3.10,2,1.05,1,1.05,2,1.25,11.01,2.00,40,99
22-8-2,1:4:5,2.20,3.00,2,1.74,1,1.14,2,1.34,11.08,2.98,45,99
22-8-2,1:4:2,2.20,3.90,2,1.84,1,1.14,2,1.34,11.05,2.99,48,95
22-8-2,1:4:5,2.20,3.90,2,1.15,2,1.14,2,1.34,11.09,2.01,44,99
22-8-2,1:4:2,2.20,3.90,2,1.94,1,1.14,2,1.43,11.11,2.00,48,90
22-8-2,1:4:5,2.20,3.00,2,1.94,1,1.14,2,1.25,11.13,2.99,47,95
22-8-2,1:4:2,2.20,3.10,2,1.94,1,1.05,2,1.43,11.06,2.01,42,93
22-8-2,1:4:5,2.20,3.10,2,1.84,1,1.05,2,1.34,11.06,2.99,42,95
22-8-2,1:4:2,2.20,3.20,2,1.94,1,1.14,2,1.25,11.10,2.05,48,96
22-8-2,1:4:0,2.20,3.70,2,1.84,1,1.14,2,1.34,11.04,2.06,48,96
22-8-2,1:4:3,2.20,3.90,2,1.94,1,1.14,2,1.34,11.05,2.02,44,98
22-8-2,1:5:3,2.30,3.00,2,1.84,1,1.14,2,1.34,11.09,2.99,41,90
22-8-2,1:5:3,2.30,3.90,2,1.84,1,1.14,2,1.43,11.08,2.00,46,92
22-8-2,1:5:5,2.30,3.90,2,1.74,2,1.05,2,1.34,11.08,2.99,44,95
22-8-2,1:5:3,2.20,3.80,2,1.05,1,1.14,2,1.34,11.11,2.96,46,93
22-8-2,1:5:8,2.20,3.80,2,1.84,1,1.14,2,1.16,11.09,2.96,45,96
22-8-2,1:5:3,2.20,3.90,2,1.84,2,1.05,2,1.34,11.15,2.95,44,97
22-8-2,1:5:1,2.20,3.10,2,1.84,2,1.05,2,1.34,11.11,2.98,41,98
22-8-2,1:5:4,2.20,3.80,2,1.84,1,1.24,2,1.34,11.07,2.94,48,99
22-8-2,1:5:1,2.10,3.90,2,1.94,1,1.05,2,1.43,11.10,2.94,44,97
22-8-2,1:5:4,2.10,3.90,2,1.84,1,1.14,2,1.43,11.13,2.96,46,91
22-8-2,1:5:1,2.10,3.00,2,1.84,2,1.14,2,1.34,11.10,2.97,45,97
22-8-2,1:5:4,2.10,3.00,2,1.94,2,1.14,2,1.43,11.10,2.98,40,98
22-8-2,1:5:1,2.10,3.10,2,1.84,2,1.14,2,1.34,11.12,2.98,43,99
22-8-2,1:5:5,2.10,3.30,2,1.94,2,1.14,2,1.34,11.11,2.99,45,94
22-8-2,1:5:2,2.10,3.20,2,1.84,2,1.14,2,1.16,11.14,2.02,47,98
22-8-2,1:5:5,2.10,3.70,2,1.15,2,1.14,2,1.43,11.24,2.03,43,92
22-8-2,1:5:2,2.10,3.80,2,1.84,1,1.05,2,1.43,11.15,2.03,44,99
22-82,1:5:5,2.20,3.60,2,1.84,1,1.24,2,1.34,11.22,2.06,44,94
22-82,1:5:2,2.20,3.20,2,1.84,1,1.14,2,1.43,11.14,2.04,43,99
22-82,1:5:5,2.20,3.30,2,1.84,1,1.05,2,1.34,11.20,2.05,42,92
22-82,1:0:2,2.30,3.40,2,1.94,1,1.05,2,1.34,11.16,2.06,41,99
22-82,1:1:0,2.20,3.40,2,1.94,2,1.14,2,1.43,11.27,2.07,45,96
22-82,1:1:3,2.30,3.40,2,1.05,2,1.05,2,1.25,11.19,2.06,49,93
22-82,1:2:3,2.30,3.30,2,1.64,1,1.05,2,1.34,11.17,2.07,47,93
22-82,1:2:3,2.20,3.20,2,1.84,2,1.14,2,1.52,11.17,2.07,47,97
22-82,1:3:5,2.30,3.30,2,1.94,2,1.24,2,1.25,11.23,2.09,41,91
22-82,1:3:3,2.20,3.40,2,1.94,2,1.05,2,1.25,11.24,2.06,47,93
22-82,1:4:8,2.20,3.50,2,1.84,2,1.05,2,1.43,11.22,2.09,44,99
22-82,1:4:3,2.20,3.50,2,1.94,1,1.14,2,1.34,11.19,2.09,46,95
22-82,1:5:1,2.20,3.40,2,1.84,1,1.14,2,1.25,11.18,2.06,40,95
22-82,1:5:4,2.20,3.60,2,1.84,2,1.24,2,1.43,11.16,2.05,44,98
22-82,1:6:1,2.20,3.70,2,1.84,2,1.05,2,1.43,11.18,2.07,44,96
22-82,1:6:4,2.20,3.70,2,1.94,2,1.24,2,1.34,11.23,2.07,49,93
22-82,1:7:1,2.20,3.70,2,1.94,2,1.14,2,1.43,11.21,2.07,49,93
22-8-2,1:7:4,2.20,3.80,2,1.84,1,1.14,2,1.43,11.20,2.06,47,93
22-82,1:8:1,2.30,3.60,2,1.94,1,1.24,2,1.43,11.23,2.09,41,95
22-82,1:8:5,2.30,3.50,2,1.74,2,1.14,2,1.34,11.16,2.08,49,97
22-82,1:9:2,2.30,3.20,2,1.84,2,1.24,2,1.34,11.21,2.10,40,94
22-82,1:9:5,2.30,3.40,2,1.05,1,1.14,2,1.34,11.17,2.09,48,95
22-82,1:1:2,2.30,3.40,2,1.94,2,1.05,2,1.34,11.07,2.09,47,99
22-82,1:1:5,2.30,3.10,2,1.84,2,1.14,2,1.43,11.14,2.09,48,93
22-82,1:1:2,2.30,3.20,2,1.94,2,1.05,2,1.25,11.14,2.10,46,99
22-82,1:1:5,2.30,3.20,2,1.84,2,1.14,2,1.34,11.15,2.07,45,96
22-82,1:1:2,2.30,3.30,2,1.84,1,1.34,2,1.34,11.17,2.09,47,97
22-82,1:1:0,2.30,3.30,2,1.74,2,1.34,2,1.16,11.17,2.07,42,91
22-82,1:1:3,2.30,3.10,2,1.74,1,1.14,2,1.16,11.21,2.07,47,91
22-82,1:1:2,2.30,3.00,2,1.84,2,1.14,2,1.25,11.18,2.07,48,97
22-82,1:1:3,2.30,3.00,2,1.84,1,1.24,2,1.25,11.23,2.09,44,94
22-82,1:1:5,2.30,3.80,2,1.84,1,1.24,2,1.34,11.25,2.08,44,98
22-82,1:1:3,2.30,3.90,2,1.84,2,1.05,2,1.34,11.18,2.07,40,92
22-82,1:1:8,2.30,3.00,2,1.84,2,1.24,2,1.34,11.33,2.09,46,99
22-8-2,1:1:3,2.30,3.80,2,1.84,2,1.24,2,1.25,11.27,2.09,44,93
22-82,1:1:1,2.30,3.90,2,1.84,1,1.14,2,1.25,11.22,2.10,43,90
22-82,1:1:4,2.30,3.90,2,1.84,2,1.14,2,1.34,11.18,2.07,46,92
22-82,1:1:1,2.30,3.90,2,1.84,2,1.24,2,1.16,11.22,2.10,49,95
22-82,1:1:4,2.30,3.70,2,1.74,2,1.24,2,1.25,11.26,2.09,45,91
22-82,1:1:1,2.30,3.50,2,1.84,1,1.24,2,1.34,11.24,2.09,48,97
22-82,1:1:4,2.30,3.40,2,1.84,1,1.24,2,1.43,11.24,2.10,45,94
22-82,1:2:1,2.30,3.40,2,1.84,1,1.14,2,1.34,11.21,2.08,48,99
22-82,1:2:4,2.30,3.40,2,1.84,1,1.14,2,1.34,11.23,2.09,42,90
22-82,1:2:2,2.30,3.30,2,1.74,2,1.24,2,1.34,11.26,2.10,43,93
22-82,1:2:5,2.30,3.10,2,1.94,2,1.24,2,1.34,11.30,2.12,42,90
22-82,1:2:2,2.30,3.50,2,1.94,1,1.24,2,1.34,11.32,2.13,45,97
22-82,1:2:5,2.30,3.50,2,1.94,1,1.24,2,1.43,11.21,2.10,44,93
22-82,1:2:2,2.30,3.70,2,1.74,2,1.24,2,1.16,11.24,2.09,41,91
22-82,1:2:5,2.30,3.60,2,1.94,2,1.24,2,1.16,11.31,2.09,43,93
22-82,1:2:2,2.20,3.50,2,1.94,1,1.44,2,1.25,11.26,2.10,46,92
22-82,1:2:0,2.30,3.20,2,1.94,2,1.24,2,1.34,11.33,2.10,47,93
22-82,1:2:3,2.30,3.20,2,1.84,2,1.24,2,1.25,11.39,2.10,47,97
22-82,1:2:2,2.30,3.20,2,1.84,2,1.24,2,1.25,11.26,2.07,47,92
22-82,1:2:3,2.30,3.90,2,1.84,1,1.24,2,1.43,11.29,2.08,45,98
22-82,1:2:5,2.20,3.70,2,1.84,1,1.14,2,1.34,11.38,2.09,47,92
22-82,1:2:3,2.20,3.10,2,1.84,2,1.24,2,1.34,11.34,2.08,45,93
22-82,1:2:7,2.20,3.90,2,1.84,2,1.14,2,1.34,11.37,2.08,40,96
22-82,1:2:3,2.20,3.00,2,1.74,2,1.24,2,1.43,11.30,2.09,41,92
22-82,1:2:1,2.20,3.00,2,1.84,1,1.24,2,1.34,11.32,2.08,44,99
22-82,1:2:4,2.20,3.80,2,1.74,1,1.24,2,1.25,11.32,2.07,43,95
22-82,1:3:1,2.20,3.80,2,1.94,2,1.24,2,1.25,11.37,2.08,43,95
22-82,1:3:4,2.20,3.70,2,1.94,2,1.54,2,1.25,11.27,2.06,44,91
22-82,1:3:1,2.20,3.50,2,1.84,1,1.24,2,1.25,11.29,2.07,42,97
22-82,1:3:4,2.20,3.30,2,1.94,2,1.34,2,1.34,11.27,2.04,47,92
22-82,1:3:1,2.20,3.50,2,1.94,2,1.24,2,1.43,11.32,2.08,40,97
22-82,1:3:4,2.20,3.40,2,1.74,1,1.24,2,1.52,11.25,2.07,40,95
22-82,1:3:2,2.20,3.20,2,1.94,2,1.14,2,1.34,11.23,2.07,44,93
22-82,1:3:5,2.10,3.40,2,1.84,2,1.54,2,1.34,11.25,2.08,43,97
22-82,1:3:2,2.10,3.70,2,1.94,2,1.24,2,1.34,11.31,2.10,45,98
22-82,1:3:5,2.20,3.10,2,1.84,2,1.44,2,1.43,11.25,2.09,47,92
22-82,1:3:2,2.10,3.10,2,1.84,2,1.34,2,1.25,11.26,2.10,48,95
22-82,1:3:5,2.10,3.20,2,1.84,1,1.44,2,1.25,11.20,2.08,46,91
22-82,1:3:2,2.20,3.00,2,1.94,2,1.24,2,1.25,11.26,2.08,40,97
22-82,1:3:0,2.10,3.90,2,1.84,2,1.24,2,1.25,11.33,2.14,41,93
22-82,1:3:3,2.20,3.70,2,1.05,2,1.34,2,1.34,11.31,2.09,49,95
22-82,1:3:2,2.20,3.50,2,1.94,2,1.24,2,1.25,11.42,2.08,41,94
22-82,1:3:3,2.20,3.20,2,1.05,2,1.14,2,1.25,11.37,2.05,45,92
22-82,1:3:5,2.20,3.30,2,1.94,2,1.24,2,1.16,11.33,2.02,47,95
22-82,1:3:3,2.20,3.50,2,1.74,2,1.44,2,1.34,11.42,2.98,41,96
22-82,1:4:7,2.20,3.50,2,1.84,2,1.24,2,1.34,11.37,2.94,49,94
22-82,1:4:3,2.20,3.60,2,1.74,2,1.34,2,1.34,11.35,2.93,48,96
22-82,1:4:1,2.20,3.50,2,1.74,2,1.54,2,1.34,11.33,2.93,43,90
22-82,1:4:4,2.20,3.70,2,1.84,2,1.24,2,1.34,11.35,2.91,48,98
22-82,1:4:1,2.20,3.70,2,1.94,2,1.24,2,1.34,11.28,2.91,46,96
22-82,1:4:4,2.20,3.50,2,1.74,2,1.34,2,1.34,11.37,2.90,48,91
22-82,1:4:1,2.20,3.70,2,1.84,2,1.34,2,1.34,11.30,2.90,40,92
22-82,1:4:4,2.20,3.70,2,1.74,2,1.44,2,1.34,11.37,2.88,45,98
22-82,1:4:1,2.20,3.60,2,1.94,2,1.44,2,1.16,11.31,2.86,45,90
22-82,1:4:4,2.20,3.60,2,1.74,1,1.34,2,1.43,11.32,2.87,41,95
22-82,1:4:2,2.20,3.50,2,1.74,1,1.44,2,1.25,11.32,2.87,45,98
22-82,1:4:5,2.20,3.30,2,1.84,2,1.24,2,1.34,11.26,2.85,40,94
22-82,1:4:2,2.20,3.70,2,1.84,2,1.64,2,1.34,11.24,2.86,44,94
22-82,1:4:5,2.20,3.40,2,1.84,2,1.34,2,1.43,11.16,2.85,59,92
22-82,1:4:2,2.20,3.20,2,1.84,2,1.14,2,1.34,11.33,2.86,53,93
22-82,1:4:5,2.30,3.40,2,1.74,2,1.34,2,1.25,11.29,2.86,58,91
22-82,1:4:2,2.30,3.50,2,1.74,2,1.24,2,1.52,11.29,2.85,56,98
22-82,1:4:5,2.20,3.50,2,1.84,2,1.34,2,1.34,11.30,2.85,53,95
22-82,1:4:3,2.30,3.50,2,1.94,2,1.54,2,1.34,11.30,2.83,51,92
22-82,1:5:2,2.30,3.50,2,1.84,2,1.34,2,1.43,11.35,2.82,57,93
22-82,1:5:3,2.20,3.50,2,1.74,2,1.64,2,1.25,11.34,2.81,56,96
22-82,1:5:5,2.30,3.50,2,1.84,2,1.34,2,1.34,11.37,2.84,52,92
22-82,1:5:3,2.30,3.70,2,1.84,1,1.54,2,1.34,11.33,2.83,53,97
22-82,1:5:7,2.30,3.50,2,1.84,1,1.44,2,1.43,11.26,2.83,48,98
22-82,1:5:3,2.30,3.50,2,1.74,2,1.64,2,1.25,11.34,2.85,44,97
22-82,1:5:1,2.30,3.80,2,1.74,2,1.34,2,1.34,11.34,2.88,43,92
22-82,1:5:4,2.30,3.10,2,1.64,1,1.34,2,1.34,11.24,2.92,42,97
22-82,1:5:1,2.30,3.30,2,1.84,2,1.64,2,1.34,11.32,2.92,49,96
22-82,1:5:4,2.30,3.10,2,1.74,2,1.44,2,1.34,11.27,2.91,40,91
22-82,1:5:1,2.30,3.50,2,1.74,2,1.44,2,1.43,11.23,2.93,46,97
22-82,1:5:4,2.30,3.80,2,1.94,2,1.24,2,1.34,11.33,2.94,45,92
22-82,1:5:1,2.30,3.60,2,1.74,2,1.44,2,1.34,11.21,2.90,45,93
22-82,1:5:4,2.30,3.60,2,1.74,2,1.64,2,1.16,11.24,2.93,48,95
22-82,1:5:2,2.30,3.50,2,1.74,1,1.64,2,1.34,11.23,2.94,40,97
22-82,1:5:5,2.40,3.70,2,1.84,2,1.24,2,1.34,11.31,2.94,40,96
22-82,1:5:2,2.40,3.60,2,1.54,1,1.34,2,1.34,11.32,2.93,41,99
22-82,1:5:5,2.30,3.50,2,1.84,2,1.44,2,1.25,11.31,2.93,42,95
22-82,1:5:2,2.30,3.40,2,1.64,2,1.34,2,1.34,11.29,2.92,42,99
22-82,1:5:5,2.30,3.70,2,1.74,2,1.24,2,1.43,11.31,2.92,45,91
22-82,1:0:2,2.30,3.40,2,1.74,2,1.44,2,1.34,11.37,2.92,41,97
22-82,1:0:5,2.30,3.30,2,1.94,2,1.44,2,1.25,11.27,2.90,42,91
22-82,1:1:3,2.30,3.40,2,1.74,2,1.64,2,1.16,11.38,2.91,47,94
22-82,1:2:2,2.30,3.20,2,1.74,2,1.54,2,1.25,11.30,2.90,48,92
22-82,1:2:3,2.30,3.40,2,1.84,2,1.34,2,1.34,11.24,2.87,47,91
22-82,1:3:4,2.30,3.20,2,1.84,2,1.34,2,1.43,11.26,2.87,42,90
22-82,1:3:3,2.30,3.50,2,1.74,2,1.64,2,1.34,11.28,2.90,45,96
22-82,1:4:7,2.30,3.40,2,1.64,2,1.54,2,1.43,11.33,2.91,46,91
22-82,1:4:3,2.30,3.60,2,1.74,1,1.34,2,1.43,11.28,2.87,43,91
22-82,1:5:1,2.30,3.50,2,1.74,2,1.54,2,1.34,11.31,2.88,41,96
22-82,1:5:4,2.30,3.30,2,1.54,2,1.54,2,1.25,11.32,2.87,47,91
22-82,1:6:1,2.30,3.50,2,1.84,2,1.24,2,1.34,11.30,2.87,46,98
22-82,1:6:4,2.30,3.40,2,1.64,2,1.34,2,1.43,11.25,2.85,44,92
22-82,1:7:1,2.30,3.00,2,1.64,2,1.34,2,1.34,11.32,2.86,44,98
22-82,1:7:4,2.30,3.30,2,1.84,2,1.44,2,1.43,11.33,2.87,42,94
22-82,1:8:1,2.30,3.40,2,1.84,2,1.44,2,1.25,11.32,2.88,41,95
22-82,1:8:4,2.30,3.50,2,1.64,2,1.24,2,1.34,11.33,2.88,42,92
22-82,1:9:2,2.30,3.30,2,1.74,2,1.54,2,1.34,11.29,2.88,48,91
22-82,1:9:5,2.30,3.30,2,1.84,2,1.34,2,1.25,11.29,2.87,49,91
22-82,1:1:2,2.30,3.20,2,1.74,2,1.64,2,1.34,11.36,2.88,48,97
22-82,1:1:5,2.30,3.20,2,1.74,2,1.54,2,1.25,11.33,2.88,49,96
22-82,1:1:2,2.30,3.00,2,1.94,2,1.34,2,1.25,11.35,2.88,44,98
22-82,1:1:5,2.30,3.10,2,1.84,2,1.24,2,1.34,11.27,2.86,42,94
22-82,1:1:2,2.30,3.00,2,1.84,2,1.44,2,1.25,11.27,2.86,44,90
22-82,1:1:5,2.30,3.30,2,1.64,2,1.54,2,1.43,11.30,2.87,42,90
22-82,1:1:3,2.30,3.10,2,1.84,2,1.64,2,1.25,11.31,2.87,44,94
22-82,1:1:2,2.30,3.50,2,1.84,2,1.24,2,1.25,11.30,2.88,40,96
22-82,1:1:3,2.30,3.20,2,1.74,2,1.54,2,1.43,11.24,2.85,43,99
22-82,1:1:4,2.30,3.30,2,1.64,2,1.24,2,1.34,11.35,2.87,44,94
22-82,1:1:3,2.30,3.10,2,1.54,2,1.54,2,1.34,11.36,2.85,45,91
22-82,1:1:7,2.30,3.40,2,1.54,2,1.44,2,1.25,11.37,2.85,43,90
22-82,1:1:3,2.30,3.30,2,1.64,2,1.44,2,1.34,11.34,2.86,42,97
22-82,1:1:9,2.30,3.40,2,1.74,2,1.34,2,1.25,11.33,2.85,44,98
22-82,1:1:4,2.30,3.30,2,1.84,2,1.54,2,1.34,11.36,2.86,44,92
22-82,1:1:1,2.30,3.20,2,1.74,2,1.64,2,1.34,11.36,2.86,44,92
22-82,1:1:4,2.30,3.30,2,1.74,2,1.24,2,1.25,11.35,2.85,41,99
22-82,1:1:1,2.30,3.40,2,1.84,2,1.44,2,1.34,11.35,2.85,42,96
22-82,1:1:4,2.30,3.50,2,1.64,2,1.44,2,1.34,11.35,2.85,47,99
22-82,1:2:1,2.30,3.30,2,1.84,2,1.24,2,1.34,11.30,2.85,49,96
22-82,1:2:4,2.30,3.30,2,1.84,2,1.34,2,1.43,11.39,2.88,47,95
22-82,1:2:2,2.30,3.10,2,1.84,2,1.34,2,1.16,11.43,2.87,43,92
22-82,1:2:5,2.30,3.20,2,1.64,2,1.44,2,1.25,11.36,2.85,40,91
22-82,1:2:2,2.30,3.10,2,1.74,2,1.54,2,1.34,11.40,2.88,47,93
22-82,1:2:5,2.30,3.70,2,1.84,2,1.64,2,1.43,11.44,2.85,43,99
22-8-2,1:2:2,2.30,3.70,2,1.44,2,1.54,2,1.34,11.48,2.85,43,94
22-82,1:2:5,2.30,3.90,2,1.74,2,1.64,2,1.52,11.46,2.85,46,93
22-82,1:2:2,2.30,3.70,2,1.74,2,1.64,2,1.43,11.52,2.85,49,95
22-82,1:2:5,2.30,3.80,2,1.74,2,1.34,2,1.34,11.49,2.86,49,91
22-82,1:2:3,2.30,3.80,2,1.64,2,1.34,2,1.43,11.51,2.85,40,99
22-82,1:2:1,2.30,3.80,2,1.74,2,1.44,2,1.25,11.44,2.85,41,90
22-82,1:2:3,2.30,3.00,2,1.54,2,1.54,2,1.25,11.47,2.85,42,99
22-82,1:2:4,2.30,3.90,2,1.74,2,1.44,2,1.25,11.51,2.85,46,92
22-82,1:2:3,2.30,3.00,2,1.74,2,1.54,2,1.34,11.47,2.84,49,95
22-82,1:2:7,2.30,3.90,2,1.74,2,1.34,2,1.25,11.49,2.83,49,91
22-82,1:2:3,2.30,3.10,2,1.74,2,1.24,2,1.34,11.49,2.81,47,99
22-82,1:2:9,2.30,3.30,2,1.74,2,1.54,2,1.25,11.52,2.82,46,97
22-82,1:2:4,2.30,3.30,2,1.74,2,1.64,2,1.34,11.48,2.82,44,99
22-82,1:3:1,2.30,3.30,2,1.84,2,1.54,2,1.34,11.51,2.83,48,97
22-82,1:3:4,2.30,3.50,2,1.44,2,1.34,2,1.25,11.55,2.83,43,92
22-82,1:3:1,2.30,3.30,2,1.64,2,1.64,2,1.16,11.55,2.82,43,92
22-82,1:3:4,2.30,3.50,2,1.74,2,1.24,2,1.34,11.53,2.82,42,95
22-82,1:3:1,2.30,3.60,2,1.84,2,1.34,2,1.25,11.55,2.83,42,92
22-82,1:3:4,2.30,3.50,2,1.84,2,1.24,2,1.34,11.58,2.83,40,91
22-82,1:3:2,2.30,3.60,2,1.74,2,1.44,2,1.34,11.49,2.83,48,95
22-82,1:3:5,2.30,3.70,2,1.94,2,1.24,2,1.34,11.52,2.84,46,92
22-82,1:3:2,2.30,3.50,2,1.74,2,1.24,2,1.43,11.56,2.83,42,93
22-82,1:3:5,2.30,3.70,2,1.84,2,1.24,2,1.34,11.51,2.85,46,96
22-82,1:3:2,2.30,3.60,2,1.74,2,1.14,2,1.43,11.50,2.87,46,99
22-82,1:3:5,2.30,3.60,2,1.54,2,1.34,2,1.25,11.52,2.87,48,99
22-82,1:3:2,2.30,3.40,2,1.54,2,1.34,2,1.25,11.49,2.88,44,95
22-82,1:3:5,2.30,3.60,2,1.74,2,1.24,2,1.34,11.53,2.86,49,98
22-82,1:3:3,2.30,3.50,2,1.84,2,1.64,2,1.34,11.54,2.87,46,92
22-82,1:3:1,2.30,3.50,2,1.54,2,1.34,2,1.43,11.54,2.85,44,99
22-82,1:3:3,2.30,3.50,2,1.64,2,1.54,2,1.43,11.48,2.83,46,99
22-82,1:3:4,2.30,3.70,2,1.84,2,1.64,2,1.43,11.51,2.85,40,90
22-82,1:3:3,2.30,3.60,2,1.84,2,1.54,2,1.34,11.54,2.86,46,94
22-82,1:4:6,2.30,3.60,2,1.54,2,1.34,2,1.25,11.49,2.85,46,94
22-82,1:4:3,2.30,3.50,2,1.74,2,1.54,2,1.34,11.47,2.86,44,98
22-82,1:4:9,2.30,3.70,2,1.84,2,1.24,2,1.25,11.52,2.87,47,91
22-82,1:4:4,2.30,3.70,2,1.64,2,1.64,2,1.25,11.54,2.88,45,94
22-82,1:4:1,2.30,3.80,2,1.64,2,1.24,2,1.43,11.47,2.87,46,95
22-82,1:4:4,2.30,3.70,2,1.64,2,1.24,2,1.25,11.48,2.85,43,99
22-82,1:4:1,2.30,3.90,2,1.64,2,1.44,2,1.34,11.46,2.85,41,91
22-82,1:4:4,2.30,3.70,2,1.54,2,1.54,2,1.34,11.56,2.86,41,97
22-82,1:4:1,2.30,3.70,2,1.64,2,1.34,2,1.52,11.58,2.86,47,94
22-82,1:4:4,2.30,3.70,2,1.74,2,1.64,2,1.34,11.50,2.86,48,94
22-82,1:4:1,2.30,3.80,2,1.44,2,1.44,2,1.34,11.53,2.88,48,99
22-82,1:4:5,2.30,3.80,2,1.64,2,1.64,2,1.34,11.45,2.83,49,92
22-82,1:4:2,2.30,3.70,2,1.64,2,1.44,2,1.43,11.51,2.86,42,98
22-82,1:4:5,2.30,3.60,2,1.64,2,1.64,2,1.34,11.47,2.85,40,91
22-82,1:4:2,2.30,3.80,2,1.54,2,1.24,2,1.34,11.49,2.86,44,93
22-82,1:4:5,2.30,3.70,2,1.54,2,1.64,2,1.34,11.53,2.87,41,95
22-82,1:4:2,2.30,3.60,2,1.84,2,1.44,2,1.25,11.52,2.88,43,94
22-82,1:4:5,2.30,3.50,2,1.64,2,1.44,2,1.43,11.51,2.88,47,93
22-82,1:4:3,2.30,3.60,2,1.64,2,1.54,2,1.34,11.50,2.87,41,95
22-82,1:5:1,2.30,3.50,2,1.84,2,1.54,2,1.34,11.50,2.86,49,91
22-82,1:5:3,2.30,3.50,2,1.74,2,1.44,2,1.34,11.46,2.87,46,98
22-82,1:5:4,2.30,3.50,2,1.64,2,1.54,2,1.34,11.51,2.86,46,91
22-82,1:5:3,2.30,3.40,2,1.64,2,1.24,2,1.34,11.43,2.86,45,93
22-82,1:5:6,2.30,3.50,2,1.54,2,1.44,2,1.43,11.46,2.87,49,95
22-82,1:5:3,2.30,3.50,2,1.74,2,1.54,2,1.43,11.48,2.89,48,96
22-82,1:5:9,2.30,3.30,2,1.54,2,1.64,2,1.43,11.44,2.89,46,94
22-82,1:5:4,2.30,3.40,2,1.44,2,1.54,2,1.25,11.42,2.88,40,90
22-82,1:5:1,2.30,3.50,2,1.74,2,1.54,2,1.34,11.46,2.87,43,96
22-82,1:5:4,2.30,3.50,2,1.64,2,1.44,2,1.34,11.40,2.88,46,93
22-82,1:5:1,2.30,3.60,2,1.54,2,1.54,2,1.34,11.39,2.90,49,99
22-82,1:5:4,2.30,3.70,2,1.64,2,1.54,2,1.25,11.45,2.90,42,93
22-82,1:5:1,2.30,3.70,2,1.44,2,1.44,2,1.34,11.44,2.88,42,91
22-82,1:5:4,2.30,3.40,2,1.74,2,1.44,2,1.43,11.44,2.88,49,98
22-82,1:5:1,2.30,3.50,2,1.64,2,1.64,2,1.43,11.39,2.90,40,92
22-82,1:5:5,2.30,3.50,2,1.64,2,1.64,2,1.34,11.41,2.87,41,95
22-82,1:5:2,2.30,3.40,2,1.74,2,1.64,2,1.43,11.44,2.88,42,95
22-82,1:5:5,2.30,3.30,2,1.54,2,1.54,2,1.25,11.43,2.90,43,90
22-82,1:5:2,2.30,3.40,2,1.64,2,1.64,2,1.43,11.38,2.89,40,95
22-82,1:5:5,2.30,3.60,2,1.84,2,1.54,2,1.34,11.38,2.91,47,93
22-82,1:0:2,2.30,3.50,2,1.74,2,1.34,2,1.34,11.43,2.91,45,96
22-82,1:0:5,2.30,3.70,2,1.64,2,1.54,2,1.34,11.49,2.91,44,90
22-82,1:1:3,2.30,3.70,2,1.54,2,1.54,2,1.34,11.50,2.91,43,92
22-82,1:2:1,2.30,3.70,2,1.64,2,1.54,2,1.34,11.47,2.93,43,93
22-82,1:2:3,2.40,3.80,2,1.64,2,1.54,2,1.34,11.48,2.93,43,99
22-82,1:3:4,2.40,3.70,2,1.54,2,1.54,2,1.16,11.42,2.93,43,95
22-82,1:3:3,2.30,3.50,2,1.54,2,1.34,2,1.34,11.44,2.93,42,96
22-82,1:4:6,2.40,3.40,2,1.54,2,1.64,2,1.34,11.42,2.93,46,96
22-82,1:4:3,2.30,3.30,2,1.54,2,1.44,2,1.34,11.36,2.91,48,97
22-82,1:5:9,2.40,3.10,2,1.84,2,1.44,2,1.34,11.39,2.92,46,93
22-82,1:5:4,2.30,3.30,2,1.54,2,1.34,2,1.43,11.44,2.91,43,98
22-82,1:6:1,2.30,3.40,2,1.44,2,1.34,2,1.25,11.43,2.92,45,90
22-82,1:6:4,2.30,3.50,2,1.64,2,1.64,2,1.34,11.42,2.92,47,98
22-82,1:7:1,2.30,3.50,2,1.64,2,1.44,2,1.34,11.40,2.93,49,93
22-82,1:7:4,2.30,3.50,2,1.44,2,1.64,2,1.34,11.46,2.94,45,91
22-82,1:8:1,2.40,3.30,2,1.44,2,1.44,2,1.34,11.44,2.92,40,93
22-82,1:8:4,2.40,3.20,2,1.54,2,1.64,2,1.25,11.42,2.91,45,98
22-82,1:9:1,2.40,3.50,2,1.74,2,1.34,2,1.43,11.41,2.90,47,93
22-82,1:9:5,2.40,3.10,2,1.54,2,1.64,2,1.34,11.37,2.89,48,92
22-82,1:1:2,2.40,3.20,2,1.64,2,1.54,2,1.34,11.36,2.91,45,98
22-82,1:1:5,2.40,3.30,2,1.74,2,1.64,2,1.52,11.41,2.92,46,90
22-82,1:1:2,2.40,3.30,2,1.64,2,1.44,2,1.43,11.41,2.90,40,95
22-82,1:1:5,2.40,3.40,2,1.64,2,1.54,2,1.34,11.48,2.89,43,95
22-82,1:1:2,2.40,3.30,2,1.44,2,1.64,2,1.25,11.45,2.92,41,97
22-82,1:1:5,2.40,3.70,2,1.64,2,1.64,2,1.34,11.39,2.98,46,98
22-82,1:1:2,2.40,3.50,2,1.64,2,1.64,2,1.34,11.38,2.97,46,98
22-82,1:1:1,2.40,3.60,2,1.54,2,1.64,2,1.43,11.41,2.94,41,95
22-82,1:1:3,2.50,3.30,2,1.54,2,1.24,2,1.34,11.35,2.95,45,94
22-82,1:1:3,2.50,3.30,2,1.44,2,1.64,2,1.43,11.39,2.94,44,93
22-82,1:1:3,2.50,3.40,2,1.54,2,1.64,2,1.34,11.38,2.95,42,91
22-82,1:1:6,2.50,3.20,2,1.64,2,1.54,2,1.34,11.40,2.96,49,99
22-82,1:1:3,2.50,3.10,2,1.44,2,1.64,2,1.25,11.44,2.97,41,92
22-82,1:1:9,2.50,3.10,2,1.64,2,1.64,2,1.34,11.39,2.93,48,98
22-82,1:1:4,2.50,3.00,2,1.74,2,1.44,2,1.34,11.37,2.94,49,92
22-82,1:1:1,2.40,3.90,2,1.44,2,1.64,2,1.34,11.39,2.94,47,99
22-82,1:1:4,2.40,3.70,2,1.64,2,1.64,2,1.43,11.35,2.94,47,95
22-82,1:1:1,2.40,3.50,2,1.64,2,1.54,2,1.34,11.39,2.96,42,94
22-82,1:1:4,2.40,3.70,2,1.44,2,1.64,2,1.34,11.50,2.95,41,90
22-82,1:2:1,2.40,3.60,2,1.54,2,1.64,2,1.43,11.45,2.98,43,98
22-82,1:2:4,2.40,3.60,2,1.64,2,1.64,2,1.34,11.43,2.96,40,98
22-82,1:2:1,2.30,3.50,2,1.44,2,1.64,2,1.34,11.41,2.96,42,98
22-82,1:2:5,2.30,3.90,2,1.44,2,1.64,2,1.34,11.44,2.98,42,93
22-82,1:2:2,2.30,3.40,2,1.74,2,1.64,2,1.34,11.43,2.97,49,92
22-82,1:2:5,2.30,3.40,2,1.64,2,1.64,2,1.43,11.40,2.96,46,94
22-82,1:2:2,2.40,3.50,2,1.54,2,1.64,2,1.34,11.44,2.93,42,98
22-82,1:2:5,2.30,3.30,2,1.44,2,1.64,2,1.34,11.37,2.96,41,92
22-82,1:2:2,2.30,3.00,2,1.44,2,1.64,2,1.25,11.35,2.94,44,90
22-82,1:2:5,2.30,3.40,2,1.64,2,1.64,2,1.34,11.36,2.97,48,98
22-82,1:2:2,2.30,3.00,2,1.54,2,1.84,2,1.34,11.34,2.01,42,91
22-82,1:2:1,2.30,3.00,2,1.64,2,1.64,2,1.16,11.33,2.98,43,92
22-82,1:2:3,2.30,3.90,2,1.64,2,1.64,2,1.34,11.37,2.96,46,90
22-82,1:2:3,2.30,3.90,2,1.54,2,1.64,2,1.43,11.35,2.98,41,92
22-82,1:2:3,2.30,3.70,2,1.54,2,1.74,2,1.34,11.37,2.01,40,93
22-82,1:2:6,2.30,3.80,2,1.44,2,1.64,2,1.25,11.31,2.99,49,94
22-82,1:2:3,2.30,3.10,2,1.44,2,1.64,2,1.34,11.27,2.98,41,92
22-82,1:2:8,2.30,3.00,2,1.54,2,1.84,2,1.34,11.27,2.01,44,90
22-82,1:2:4,2.30,3.40,2,1.24,2,1.64,2,1.25,11.32,2.01,46,90
22-8-2,1:3:1,2.30,3.10,2,1.44,2,1.64,2,1.34,11.24,2.02,46,92
22-82,1:3:4,2.30,3.00,2,1.44,2,1.64,2,1.34,11.23,2.06,49,95
22-82,1:3:1,2.30,3.10,2,1.64,2,1.64,2,1.34,11.30,2.07,46,98
22-82,1:3:4,2.40,3.20,2,1.34,2,1.84,2,1.34,11.30,2.08,46,97
22-82,1:3:1,2.40,3.30,2,1.44,2,1.64,2,1.43,11.24,2.03,41,92
22-82,1:3:4,2.40,3.20,2,1.64,2,1.64,2,1.25,11.26,2.07,51,93
22-82,1:3:1,2.40,3.30,2,1.54,2,1.64,2,1.34,11.30,2.07,40,96
22-82,1:3:5,2.40,3.30,2,1.44,2,1.74,2,1.16,11.20,2.07,41,91
22-82,1:3:2,2.40,3.60,2,1.34,2,1.64,2,1.43,11.23,2.08,51,90
22-82,1:3:5,2.40,3.40,2,1.44,2,1.64,2,1.25,11.31,2.08,42,98
22-82,1:3:2,2.40,3.50,2,1.44,2,1.64,2,1.43,11.24,2.07,50,96
22-82,1:3:5,2.50,3.60,2,1.54,2,1.84,2,1.25,11.31,2.09,49,91
22-82,1:3:2,2.50,3.50,2,1.54,2,1.74,2,1.34,11.27,2.09,50,92
22-82,1:3:5,2.50,3.60,2,1.44,2,1.64,2,1.25,11.27,2.10,45,98
22-82,1:3:2,2.50,3.40,2,1.44,2,1.64,2,1.25,11.28,2.10,53,90
22-82,1:3:0,2.50,3.30,2,1.54,2,1.64,2,1.34,11.31,2.10,50,90
22-82,1:3:3,2.40,3.50,2,1.44,2,1.64,2,1.16,11.30,2.11,47,98
22-82,1:3:3,2.50,3.40,2,1.64,2,1.74,2,1.34,11.28,2.10,54,94
22-82,1:3:3,2.40,3.40,2,1.44,2,1.64,2,1.16,11.25,2.10,53,98
22-82,1:4:6,2.40,3.30,2,1.64,2,1.84,2,1.34,11.26,2.11,53,91
22-82,1:4:3,2.40,3.30,2,1.54,2,1.64,2,1.16,11.27,2.09,52,95
22-82,1:4:8,2.50,3.40,2,1.44,2,1.74,2,1.34,11.26,2.11,54,97
22-82,1:4:4,2.50,3.30,2,1.64,2,1.64,2,1.34,11.24,2.09,53,92
22-82,1:4:1,2.50,3.30,2,1.54,2,1.64,2,1.25,11.30,2.09,42,98
22-82,1:4:4,2.50,3.40,2,1.54,2,1.64,2,1.25,11.26,2.07,47,95
22-82,1:4:1,2.50,3.50,2,1.54,2,1.64,2,1.43,11.25,2.10,45,97
22-82,1:4:4,2.50,3.30,2,1.54,2,1.64,2,1.43,11.18,2.08,45,96
22-82,1:4:1,2.50,3.30,2,1.44,2,1.64,2,1.34,11.22,2.06,59,92
22-82,1:4:4,2.50,3.20,2,1.54,2,1.74,2,1.25,11.28,2.07,49,92
22-82,1:4:1,2.50,3.20,2,1.54,2,1.94,2,1.25,11.27,2.08,59,95
22-82,1:4:5,2.50,3.30,2,1.44,2,1.74,2,1.43,11.31,2.06,51,96
22-82,1:4:2,2.50,3.30,2,1.54,2,1.64,2,1.25,11.27,2.09,58,93
22-82,1:4:5,2.50,3.20,2,1.54,2,1.84,2,1.34,11.33,2.08,57,90
22-82,1:4:2,2.50,3.40,2,1.64,2,1.84,2,1.34,11.30,2.09,58,99
22-82,1:4:5,2.50,3.40,2,1.44,2,1.84,2,1.25,11.30,2.10,50,98
22-82,1:4:2,2.50,3.30,2,1.44,2,1.84,2,1.43,11.26,2.08,55,91
22-82,1:4:5,2.50,3.20,2,1.44,2,1.84,2,1.25,11.29,2.09,56,95
22-82,1:4:2,2.50,3.30,2,1.64,2,1.64,2,1.25,11.33,2.09,55,97
22-82,1:5:0,2.50,3.50,2,1.44,2,1.84,2,1.34,11.32,2.12,55,90
22-82,1:5:3,2.50,3.40,2,1.34,2,1.64,2,1.34,11.35,2.12,55,90
22-82,1:5:3,2.50,3.20,2,1.64,2,1.64,2,1.25,11.37,2.12,50,96
22-82,1:5:3,2.50,3.10,2,1.34,2,1.64,2,1.34,11.34,2.10,56,96
22-82,1:5:5,2.50,3.20,2,1.44,2,1.64,2,1.25,11.37,2.11,57,98
22-82,1:5:3,2.50,3.30,2,1.44,2,1.84,2,1.34,11.32,2.15,50,97
22-82,1:5:8,2.50,3.30,2,1.44,2,1.64,2,1.25,11.36,2.12,58,92
22-82,1:5:3,2.50,3.10,2,1.64,2,1.64,2,1.34,11.39,2.14,51,99
22-82,1:5:1,2.50,3.10,2,1.54,2,1.74,2,1.43,11.35,2.14,59,90
22-82,1:5:4,2.50,3.10,2,1.44,2,1.54,2,1.43,11.33,2.12,59,91
22-82,1:5:1,2.50,3.10,2,1.54,2,1.84,2,1.34,11.31,2.13,53,91
22-82,1:5:4,2.50,3.10,2,1.54,2,1.64,2,1.34,11.30,2.15,54,91
22-82,1:5:1,2.50,3.30,2,1.34,2,1.54,2,1.25,11.29,2.15,50,98
22-82,1:5:4,2.50,3.20,2,1.44,2,1.84,2,1.34,11.33,2.15,51,99
22-82,1:5:1,2.50,3.20,2,1.44,2,1.64,2,1.34,11.34,2.14,52,99
22-82,1:5:5,2.50,3.10,2,1.64,2,1.64,2,1.25,11.35,2.14,51,92
22-82,1:5:2,2.50,3.10,2,1.64,2,1.84,2,1.25,11.33,2.18,56,94
22-82,1:5:5,2.50,3.20,2,1.44,2,1.84,2,1.25,11.33,2.17,52,95
22-82,1:5:2,2.50,3.10,2,1.34,2,1.64,2,1.43,11.39,2.18,51,99
22-82,1:5:5,2.50,3.20,2,1.34,2,1.64,2,1.25,11.23,2.14,59,95
22-82,1:0:2,2.50,3.30,2,1.54,2,1.64,2,1.16,11.32,2.12,59,96
22-82,1:0:5,2.50,3.40,2,1.44,2,1.64,2,1.34,11.36,2.17,53,96
22-82,1:1:2,2.50,3.40,2,1.24,2,1.64,2,1.34,11.31,2.15,53,99
22-82,1:2:0,2.50,3.30,2,1.34,2,1.64,2,1.34,11.43,2.18,50,94
22-82,1:2:3,2.50,3.30,2,1.54,2,1.64,2,1.43,11.40,2.19,56,92
22-82,1:3:3,2.50,3.10,2,1.54,2,1.64,2,1.34,11.39,2.17,52,98
22-82,1:3:3,2.60,3.10,2,1.44,2,1.64,2,1.43,11.49,2.19,52,93
22-82,1:4:5,2.60,3.00,2,1.34,2,1.64,2,1.34,11.43,2.20,54,92
22-82,1:4:3,2.60,3.90,2,1.54,2,1.84,2,1.25,11.40,2.21,57,97
22-82,1:5:8,2.60,3.00,2,1.44,2,1.74,2,1.43,11.37,2.22,56,96
22-82,1:5:3,2.60,3.80,2,1.34,2,1.64,2,1.34,11.39,2.24,54,97
22-82,1:6:1,2.60,3.90,2,1.34,2,1.64,2,1.34,11.43,2.25,53,95
22-82,1:6:4,2.60,3.80,2,1.34,2,1.64,2,1.25,11.38,2.24,51,92
22-82,1:7:1,2.60,3.80,2,1.44,2,1.94,2,1.34,11.42,2.24,52,97
22-82,1:7:4,2.60,3.70,2,1.34,2,1.64,2,1.34,11.42,2.26,58,91
22-82,1:8:1,2.60,3.90,2,1.44,2,1.74,2,1.25,11.35,2.23,52,96
22-82,1:8:4,2.60,3.90,2,1.34,2,1.64,2,1.25,11.44,2.26,59,95
22-82,1:9:1,2.60,3.80,2,1.34,2,1.74,2,1.34,11.37,2.29,53,94
22-82,1:9:5,2.60,3.80,2,1.54,2,1.64,2,1.25,11.38,2.29,58,92
22-82,1:1:2,2.60,3.80,2,1.54,2,1.84,2,1.34,11.39,2.31,55,90
22-82,1:1:5,2.60,3.90,2,1.24,2,1.84,2,1.34,11.43,2.32,54,99
22-82,1:1:2,2.60,3.00,2,1.54,2,1.64,2,1.34,11.31,2.30,57,93
22-82,1:1:5,2.60,3.00,2,1.44,2,1.74,2,1.43,11.38,2.32,51,94
22-82,1:1:2,2.60,3.00,2,1.54,2,1.94,2,1.43,11.38,2.30,52,97
22-82,1:1:5,2.60,3.00,2,1.34,2,1.64,2,1.25,11.39,2.31,58,99
22-82,1:1:2,2.70,3.10,2,1.34,2,1.64,2,1.43,11.43,2.33,55,92
22-82,1:1:0,2.60,3.00,2,1.44,2,1.84,2,1.34,11.39,2.33,56,94
22-82,1:1:3,2.70,3.10,2,1.34,2,1.84,2,1.34,11.37,2.30,56,94
22-82,1:1:3,2.60,3.10,2,1.44,2,1.84,2,1.34,11.41,2.33,58,91
22-82,1:1:3,2.60,3.20,2,1.34,2,1.64,2,1.43,11.45,2.33,51,92
22-82,1:1:5,2.70,3.30,2,1.54,2,1.64,2,1.43,11.42,2.33,50,96
22-82,1:1:3,2.70,3.30,2,1.44,2,1.64,2,1.43,11.38,2.31,57,91
22-82,1:1:8,2.70,3.30,2,1.24,2,1.44,2,1.25,11.47,2.33,52,90
22-82,1:1:3,2.70,3.20,2,1.44,2,1.84,2,1.34,11.50,2.35,50,90
22-82,1:1:1,2.70,3.40,2,1.24,2,1.84,2,1.34,11.43,2.40,59,95
22-82,1:1:4,2.70,3.70,2,1.34,2,1.64,2,1.34,11.44,2.39,50,90
22-82,1:1:1,2.70,3.80,2,1.34,2,1.64,2,1.34,11.41,2.39,51,92
22-82,1:1:4,2.80,3.40,2,1.34,2,1.84,2,1.43,11.34,2.42,61,97
22-82,1:2:1,2.80,3.30,2,1.44,2,1.64,2,1.25,11.45,2.41,62,94
22-82,1:2:4,2.80,3.40,2,1.44,2,1.84,2,1.34,11.45,2.42,64,92
22-82,1:2:1,2.80,3.30,2,1.34,2,1.64,2,1.25,11.43,2.44,62,93
22-82,1:2:4,2.80,3.30,2,1.44,2,1.84,2,1.25,11.40,2.42,65,91
22-82,1:2:2,2.80,3.20,2,1.44,2,1.84,2,1.25,11.38,2.43,78,96
22-82,1:2:5,2.80,3.30,2,1.44,2,1.64,2,1.43,11.43,2.42,76,91
22-82,1:2:2,2.80,3.30,2,1.34,2,1.94,2,1.43,11.42,2.42,73,91
22-82,1:2:5,2.80,3.30,2,1.34,2,1.05,2,1.34,11.42,2.43,76,96
22-82,1:2:2,2.80,3.20,2,1.34,2,1.84,2,1.43,11.40,2.42,74,90
22-82,1:2:5,2.80,3.30,2,1.54,2,1.64,2,1.34,11.43,2.42,72,99
22-82,1:2:2,2.80,3.40,2,1.54,2,1.84,2,1.43,11.50,2.44,73,90
22-82,1:2:0,2.80,3.30,2,1.64,2,1.84,2,1.43,11.47,2.42,71,90
22-82,1:2:3,2.80,3.30,2,1.44,2,1.64,2,1.43,11.46,2.41,72,92
22-82,1:2:2,2.80,3.20,2,1.64,2,1.84,2,1.43,11.49,2.42,69,93
22-82,1:2:3,2.80,3.40,2,1.34,2,1.84,2,1.25,11.42,2.40,79,97
22-82,1:2:5,2.80,3.30,2,1.34,2,1.84,2,1.43,11.48,2.41,73,92
22-82,1:2:3,2.80,3.30,2,1.44,2,1.05,2,1.34,11.48,2.42,79,98
22-82,1:2:8,2.80,3.20,2,1.44,2,1.05,2,1.52,11.39,2.42,73,91
22-82,1:2:3,2.70,3.30,2,1.34,2,1.94,2,1.25,11.40,2.42,75,90
22-82,1:3:1,2.80,3.30,2,1.44,2,1.94,2,1.43,11.38,2.42,77,90
22-82,1:3:4,2.80,3.30,2,1.34,2,1.05,2,1.43,11.36,2.42,75,94
22-82,1:3:1,2.80,3.20,2,1.34,2,1.94,2,1.34,11.40,2.41,73,99
22-82,1:3:4,2.70,3.20,2,1.34,2,1.94,2,1.52,11.40,2.41,72,95
22-82,1:3:1,2.80,3.10,2,1.44,2,1.15,2,1.34,11.41,2.41,7290
22-82,1:3:4,2.80,3.20,2,1.44,2,1.15,2,1.25,11.47,2.44,77,98
22-82,1:3:1,2.80,3.10,2,1.24,2,1.94,2,1.34,11.46,2.49,76,95
22-82,1:3:4,2.80,3.30,2,1.34,2,1.94,2,1.34,11.40,2.55,72,92
22-82,1:3:2,2.80,3.80,2,1.54,2,1.15,2,1.25,11.46,2.59,79,91
22-82,1:3:5,2.80,3.80,2,1.34,2,1.05,2,1.34,11.45,2.58,70,93
22-82,1:3:2,2.80,3.30,2,1.24,2,1.15,2,1.25,11.45,2.55,75,97
22-82,1:3:5,2.90,3.20,2,1.44,2,1.15,2,1.25,11.42,2.53,76,91
22-82,1:3:2,2.90,3.00,3,1.44,2,1.94,2,1.43,11.38,2.59,77,99
22-8-2,1:3:5,2.00,3.30,3,1.34,2,1.15,2,1.34,11.47,2.59,74,93
22-82,1:3:2,2.00,3.00,3,1.34,2,1.05,2,1.43,11.41,2.58,76,93
22-82,1:3:0,2.00,3.00,3,1.44,2,1.84,2,1.34,11.36,2.58,72,90
22-82,1:3:3,2.00,3.00,3,1.34,2,1.05,2,1.25,11.51,2.61,73,99
22-82,1:3:2,2.00,3.10,3,1.54,2,1.05,2,1.34,11.44,2.60,76,99
22-82,1:3:3,2.00,3.10,3,1.24,2,1.05,2,1.34,11.49,2.64,74,96
22-82,1:4:5,2.00,3.10,3,1.24,2,1.05,2,1.34,11.51,2.66,74,95
22-82,1:4:3,2.00,3.20,3,1.44,2,1.05,2,1.34,11.46,2.65,78,96
22-82,1:4:7,2.90,3.00,3,1.24,2,1.05,2,1.43,11.49,2.69,78,91
22-82,1:4:3,2.00,3.40,3,1.24,2,1.15,2,1.16,11.49,2.75,78,93
22-82,1:4:1,2.00,3.70,3,1.54,2,1.05,2,1.43,11.50,2.80,75,92
22-82,1:4:4,2.00,3.40,3,1.44,2,1.05,2,1.34,11.51,2.79,75,96
22-82,1:4:1,2.00,3.00,3,1.34,2,1.05,2,1.43,11.49,2.77,73,95
22-82,1:4:4,2.10,3.80,3,1.34,2,1.05,2,1.34,11.53,2.77,70,91
22-82,1:4:1,2.10,3.80,3,1.24,2,1.05,2,1.25,11.42,2.74,70,96
22-82,1:4:4,2.10,3.70,3,1.64,2,1.15,2,1.43,11.44,2.74,77,99
22-82,1:4:1,2.10,3.70,3,1.34,2,1.15,2,1.34,11.47,2.75,73,99
22-82,1:4:4,2.00,3.00,3,1.44,2,1.05,2,1.25,11.48,2.82,79,94
22-82,1:4:2,2.00,3.60,3,1.54,2,1.25,2,1.52,11.46,2.82,64,90
22-82,1:4:5,2.00,3.30,3,1.34,2,1.25,2,1.43,11.55,2.81,66,91
22-82,1:4:2,2.10,3.50,3,1.34,2,1.25,2,1.25,11.51,2.78,73,97
22-82,1:4:5,2.10,3.40,3,1.54,2,1.15,2,1.34,11.48,2.79,75,99
22-82,1:4:2,2.10,3.40,3,1.34,2,1.15,2,1.34,11.50,2.75,69,98
22-82,1:4:5,2.10,3.40,3,1.24,2,1.25,2,1.34,11.42,2.77,55,95
22-82,1:4:2,2.10,3.40,3,1.34,2,1.15,2,1.34,11.47,2.77,54,96
22-82,1:4:5,2.00,3.30,3,1.44,2,1.45,2,1.34,11.45,2.79,53,99
22-82,1:5:3,2.00,3.30,3,1.24,2,1.25,2,1.43,11.43,2.75,52,98
22-82,1:5:2,2.00,3.60,3,1.34,2,1.35,2,1.25,11.50,2.83,68,92
22-82,1:5:3,2.00,3.30,3,1.24,2,1.35,2,1.43,11.47,2.85,67,99
22-82,1:5:5,2.00,3.60,3,1.24,2,1.45,2,1.43,11.43,2.82,64,92
22-82,1:5:3,2.00,3.80,3,1.54,2,1.15,2,1.25,11.41,2.80,61,98
22-82,1:5:7,2.10,3.40,3,1.14,2,1.35,2,1.43,11.40,2.82,70,97
22-82,1:5:3,2.10,3.90,3,1.24,2,1.05,2,1.43,11.42,2.80,52,97
22-82,1:5:1,2.10,3.60,3,1.14,2,1.15,2,1.34,11.49,2.80,51,98
22-82,1:5:4,2.10,3.40,3,1.54,2,1.05,2,1.43,11.47,2.78,69,96
22-82,1:5:1,2.10,3.40,3,1.44,2,1.15,2,1.34,11.49,2.71,56,93
22-82,1:5:4,2.00,3.30,3,1.34,2,1.15,2,1.34,11.46,2.71,59,98
22-82,1:5:1,2.00,3.30,3,1.14,2,1.15,2,1.34,11.45,2.66,56,90
22-82,1:5:4,2.00,3.30,3,1.34,2,1.05,2,1.34,11.48,2.62,58,99
22-82,1:5:1,2.00,3.30,3,1.05,2,1.15,2,1.34,11.51,2.63,71,97
22-82,1:5:4,2.00,3.40,3,1.54,2,1.15,2,1.43,11.49,2.64,76,97
22-82,1:5:2,2.90,3.30,3,1.34,2,1.15,2,1.25,11.46,2.68,66,90
22-82,1:5:5,2.00,3.30,3,1.34,2,1.15,2,1.43,11.50,2.69,65,96
22-82,1:5:2,2.00,3.30,3,1.34,2,1.15,2,1.34,11.49,2.68,60,94
22-82,1:5:5,2.90,3.30,3,1.34,2,1.15,2,1.16,11.49,2.66,74,96
22-82,1:0:2,2.90,3.30,3,1.34,2,1.45,2,1.16,11.45,2.64,79,99
22-82,1:0:5,2.90,3.30,3,1.24,2,1.05,2,1.34,11.49,2.66,66,90
22-82,1:1:2,2.90,3.30,3,1.24,2,1.15,2,1.34,11.51,2.63,67,97
22-82,1:1:5,2.90,3.30,3,1.24,2,1.15,2,1.43,11.48,2.63,69,97
22-82,1:2:3,2.90,3.30,3,1.14,2,1.25,2,1.34,11.47,2.63,57,93
22-82,1:3:2,2.90,3.30,3,1.24,2,1.05,2,1.34,11.48,2.63,58,98
22-82,1:3:3,2.80,3.30,3,1.14,2,1.15,2,1.25,11.42,2.61,66,94
22-82,1:4:4,2.80,3.30,3,1.34,2,1.15,2,1.34,11.41,2.63,75,93
22-82,1:4:3,2.80,3.50,3,1.14,2,1.15,2,1.34,11.41,2.64,64,93
22-82,1:5:7,2.80,3.30,3,1.24,2,1.25,2,1.34,11.43,2.64,53,93
22-82,1:5:3,2.90,3.30,3,1.44,2,1.15,2,1.34,11.43,2.63,54,98
22-82,1:6:1,2.90,3.50,3,1.14,2,1.94,2,1.43,11.47,2.64,57,95
22-82,1:6:4,2.90,3.70,3,1.34,2,1.15,2,1.43,11.42,2.60,51,94
22-82,1:7:1,2.90,3.80,3,1.14,2,1.15,2,1.43,11.44,2.61,57,97
22-82,1:7:4,2.80,3.60,3,1.34,2,1.15,2,1.25,11.44,2.61,55,98
22-82,1:8:1,2.80,3.70,3,1.24,2,1.25,2,1.25,11.46,2.63,53,98
22-82,1:8:4,2.80,3.70,3,1.34,2,1.15,2,1.16,11.37,2.61,52,96
22-82,1:9:1,2.80,3.90,3,1.24,2,1.05,2,1.16,11.42,2.63,57,94
22-82,1:9:4,2.80,3.90,3,1.24,2,1.15,2,1.16,11.39,2.64,53,97
22-82,1:1:2,2.80,3.90,3,1.24,2,1.05,2,1.43,11.44,2.61,59,98
22-82,1:1:5,2.90,3.10,3,1.24,2,1.25,2,1.43,11.36,2.62,57,94
22-82,1:1:2,2.80,3.10,3,1.05,2,1.15,2,1.25,11.40,2.63,54,97
22-82,1:1:5,2.80,3.10,3,1.14,2,1.25,2,1.25,11.41,2.61,59,97
22-82,1:1:2,2.80,3.20,3,1.14,2,1.15,2,1.25,11.48,2.59,56,97
22-82,1:1:5,2.80,3.20,3,1.24,2,1.15,2,1.25,11.41,2.58,51,99
22-82,1:1:2,2.80,3.10,3,1.24,2,1.05,2,1.34,11.46,2.61,59,91
22-82,1:1:5,2.80,3.10,3,1.14,2,1.15,2,1.34,11.43,2.56,55,92
22-82,1:1:3,2.80,3.20,3,1.24,2,1.15,2,1.25,11.47,2.58,55,93
22-82,1:1:2,2.80,3.30,3,1.24,2,1.15,2,1.25,11.48,2.58,67,97
22-82,1:1:3,2.80,3.30,3,1.14,2,1.15,2,1.34,11.44,2.61,61,98
22-82,1:1:4,2.80,3.30,3,1.14,2,1.15,2,1.34,11.40,2.58,64,95
22-82,1:1:3,2.80,3.40,3,1.44,2,1.05,2,1.43,11.37,2.61,71,90
22-82,1:1:7,2.80,3.40,3,1.24,2,1.05,2,1.25,11.47,2.64,68,95
22-82,1:1:3,2.80,3.30,3,1.34,2,1.05,2,1.25,11.43,2.64,50,99
22-82,1:1:9,2.80,3.40,3,1.34,2,1.25,2,1.34,11.38,2.64,69,96
22-82,1:1:4,2.90,3.60,3,1.24,2,1.15,2,1.52,11.44,2.63,58,90
22-82,1:1:1,2.90,3.50,3,1.24,2,1.15,2,1.43,11.40,2.64,68,99
22-82,1:1:4,2.90,3.60,3,1.34,2,1.15,2,1.34,11.43,2.63,63,92
22-82,1:2:1,2.90,3.70,3,1.44,2,1.25,2,1.34,11.52,2.64,65,93
22-82,1:2:4,2.90,3.60,3,1.34,2,1.15,2,1.16,11.53,2.64,60,95
22-82,1:2:1,2.90,3.60,3,1.24,2,1.15,2,1.34,11.44,2.63,67,90
22-82,1:2:4,2.90,3.60,3,1.24,2,1.15,2,1.25,11.38,2.64,61,98
22-82,1:2:2,2.90,3.60,3,1.34,2,1.25,2,1.34,11.46,2.63,57,99
22-82,1:2:5,2.90,3.60,3,1.24,2,1.25,2,1.34,11.48,2.63,64,93
22-82,1:2:2,2.80,3.50,3,1.24,2,1.25,2,1.34,11.46,2.63,63,94
22-82,1:2:5,2.90,3.60,3,1.05,2,1.15,2,1.25,11.50,2.64,66,98
22-82,1:2:2,2.90,3.60,3,1.24,2,1.25,2,1.16,11.52,2.68,68,98
22-82,1:2:5,2.90,3.60,3,1.34,2,1.05,2,1.43,11.51,2.69,67,93
22-82,1:2:2,2.90,3.60,3,1.14,2,1.15,2,1.34,11.46,2.66,65,93
22-82,1:2:5,2.90,3.60,3,1.34,2,1.15,2,1.16,11.48,2.64,62,96
22-82,1:2:3,2.90,3.60,3,1.44,2,1.15,2,1.16,11.53,2.67,72,98
22-82,1:2:2,2.90,3.60,3,1.34,2,1.15,2,1.16,11.44,2.68,64,96
22-82,1:2:3,2.90,3.50,3,1.14,2,1.15,2,1.34,11.47,2.67,67,91
22-82,1:2:4,2.90,3.50,3,1.34,2,1.25,2,1.25,11.41,2.68,77,92
22-82,1:2:3,2.90,3.60,3,1.44,2,1.25,2,1.25,11.45,2.69,60,92
22-82,1:2:7,2.90,3.60,3,1.24,2,1.15,2,1.43,11.48,2.68,72,98
22-82,1:2:3,2.90,3.60,3,1.34,2,1.15,2,1.25,11.46,2.68,65,96
22-82,1:3:9,2.90,3.60,3,1.34,2,1.15,2,1.34,11.52,2.66,69,96
22-82,1:3:4,2.90,3.80,3,1.24,2,1.15,2,1.25,11.53,2.69,68,99
22-82,1:3:1,2.90,3.80,3,1.14,2,1.15,2,1.25,11.52,2.67,69,94
22-82,1:3:4,2.90,3.90,3,1.24,2,1.15,2,1.25,11.61,2.66,69,92
22-82,1:3:1,2.90,3.80,3,1.14,2,1.15,2,1.16,11.51,2.64,69,92
22-82,1:3:4,2.90,3.80,3,1.34,2,1.05,2,1.34,11.52,2.65,60,91
22-82,1:3:1,2.90,3.80,3,1.24,2,1.15,2,1.16,11.51,2.66,64,94
22-82,1:3:4,2.90,3.90,3,1.24,2,1.15,2,1.34,11.50,2.66,53,99
22-82,1:3:2,2.90,3.90,3,1.05,2,1.15,2,1.25,11.45,2.62,62,95
22-82,1:3:5,2.90,3.90,3,1.34,2,1.15,2,1.25,11.54,2.67,66,98
22-82,1:3:2,2.00,3.80,3,1.24,2,1.15,2,1.34,11.54,2.72,60,94
22-82,1:3:5,2.90,3.10,3,1.24,2,1.05,2,1.34,11.52,2.80,55,97
22-82,1:3:2,2.90,3.30,3,1.34,2,1.15,2,1.34,11.50,2.79,68,96
22-82,1:3:5,2.00,3.80,3,1.14,2,1.45,2,1.25,11.52,2.77,67,92
22-82,1:3:2,2.00,3.70,3,1.24,2,1.15,2,1.25,11.54,2.78,57,91
22-82,1:3:5,2.00,3.60,3,1.24,2,1.05,2,1.25,11.54,2.74,51,95
22-82,1:3:3,2.00,3.60,3,1.24,2,1.15,2,1.34,11.52,2.72,54,91
22-82,1:3:1,2.00,3.60,3,1.24,2,1.25,2,1.43,11.49,2.71,60,97
22-82,1:3:3,2.00,3.50,3,1.34,2,1.15,2,1.43,11.51,2.73,58,90
22-82,1:4:4,2.00,3.60,3,1.14,2,1.05,2,1.25,11.50,2.72,50,99
22-82,1:4:3,2.00,3.60,3,1.24,2,1.05,2,1.43,11.53,2.72,52,91
22-82,1:4:7,2.00,3.60,3,1.34,2,1.15,2,1.16,11.52,2.71,50,97
22-82,1:4:3,2.90,3.60,3,1.24,2,1.05,2,1.43,11.50,2.69,55,95
22-82,1:4:9,2.90,3.80,3,1.14,2,1.15,2,1.34,11.46,2.64,58,91
22-82,1:4:4,2.90,3.80,3,1.05,2,1.15,2,1.34,11.49,2.64,50,93
22-82,1:4:1,2.90,3.80,3,1.34,2,1.15,2,1.16,11.48,2.66,59,90
22-8-2,1:4:4,2.90,3.90,3,1.14,2,1.25,2,1.43,11.49,2.64,68,97
22-82,1:4:1,2.90,3.00,3,1.24,2,1.45,2,1.07,11.48,2.67,61,94
22-82,1:4:4,2.90,3.90,3,1.24,2,1.15,2,1.34,11.48,2.65,68,91
22-82,1:4:1,2.90,3.00,3,1.14,2,1.15,2,1.34,11.52,2.68,61,96
22-82,1:4:4,2.90,3.00,3,1.24,2,1.15,2,1.25,11.51,2.66,53,95
22-82,1:4:1,2.90,3.00,3,1.05,2,1.25,2,1.25,11.56,2.66,56,95
22-82,1:4:5,2.90,3.00,3,1.34,2,1.94,2,1.25,11.56,2.65,53,95
22-82,1:4:2,2.90,3.00,3,1.34,2,1.15,2,1.16,11.58,2.64,60,96
22-82,1:4:5,2.90,3.00,3,1.34,2,1.15,2,1.43,11.56,2.65,68,96
22-82,1:4:2,2.90,3.00,3,1.24,2,1.15,2,1.34,11.59,2.67,63,98
22-82,1:4:5,2.90,3.90,3,1.24,2,1.45,2,1.25,11.60,2.68,69,94
22-82,1:4:2,2.90,3.00,3,1.24,2,1.25,2,1.25,11.52,2.67,69,93
22-82,1:4:5,2.90,3.90,3,1.14,2,1.25,2,1.34,11.49,2.66,67,96
22-82,1:5:3,2.90,3.90,3,1.14,2,1.05,2,1.25,11.54,2.70,67,99
22-82,1:5:1,2.90,3.80,3,1.24,2,1.25,2,1.25,11.55,2.70,62,90
22-82,1:5:3,2.90,3.70,3,1.14,2,1.25,2,1.34,11.53,2.71,69,99
22-82,1:5:4,2.90,3.70,3,1.14,2,1.15,2,1.34,11.56,2.72,64,91
22-8-2,1:5:3,2.90,3.70,3,1.34,2,1.05,2,1.34,11.62,2.72,69,92
22-82,1:5:6,2.90,3.70,3,1.14,2,1.15,2,1.25,11.57,2.69,63,94
22-82,1:5:3,2.90,3.80,3,1.24,2,1.15,2,1.25,11.55,2.69,58,91
22-82,1:5:9,2.90,3.80,3,1.24,2,1.25,2,1.25,11.60,2.68,45,97
22-82,1:5:4,2.90,3.80,3,1.34,2,1.25,2,1.25,11.58,2.66,42,97
22-82,1:5:1,2.00,3.80,3,1.14,2,1.25,2,1.25,11.55,2.65,43,90
22-82,1:5:4,2.90,3.90,3,1.24,2,1.25,2,1.34,11.56,2.67,42,92
22-82,1:5:1,2.90,3.00,3,1.34,2,1.15,2,1.34,11.56,2.68,45,91
22-82,1:5:4,2.90,3.90,3,1.14,2,1.05,2,1.34,11.66,2.71,49,99
22-82,1:5:1,2.90,3.90,3,1.05,2,1.05,2,1.16,11.57,2.67,46,99
22-82,1:5:4,2.90,3.00,3,1.14,2,1.35,2,1.25,11.59,2.66,41,95
22-82,1:5:1,2.90,3.00,3,1.24,2,1.84,2,1.25,11.59,2.64,49,91
22-82,1:5:5,2.90,3.90,3,1.14,2,1.25,2,1.25,11.59,2.64,42,91
22-82,1:5:2,2.90,3.00,3,1.14,2,1.15,2,1.25,11.58,2.63,49,98
22-82,1:5:5,2.90,3.00,3,1.95,2,1.15,2,1.34,11.68,2.64,40,98
22-82,1:0:2,2.90,3.90,3,1.24,2,1.25,2,1.25,11.66,2.62,48,99
22-82,1:0:5,2.90,3.00,3,1.24,2,1.35,2,1.25,11.70,2.61,45,96
22-82,1:1:2,2.90,3.00,3,1.14,2,1.15,2,1.25,11.61,2.58,42,91
22-82,1:1:5,2.90,3.10,3,1.05,2,1.25,2,1.43,11.65,2.57,46,92
22-82,1:2:3,2.80,3.00,3,1.24,2,1.15,2,1.25,11.69,2.56,48,97
22-82,1:3:1,2.80,3.00,3,1.24,2,1.25,2,1.34,11.61,2.54,43,93
22-82,1:3:3,2.80,3.10,3,1.24,2,1.15,2,1.07,11.62,2.53,46,99
22-82,1:4:4,2.80,3.10,3,1.24,2,1.25,2,1.34,11.70,2.56,46,94
22-82,1:4:3,2.80,3.10,3,1.14,2,1.15,2,1.25,11.63,2.55,45,95
22-82,1:5:6,2.80,3.10,3,1.24,2,1.15,2,1.16,11.57,2.54,40,91
22-82,1:5:3,2.80,3.10,3,1.24,2,1.05,2,1.43,11.68,2.53,35,99
22-82,1:6:9,2.80,3.00,3,1.14,2,1.25,2,1.16,11.60,2.50,34,90
22-82,1:6:4,2.80,3.10,3,1.24,2,1.25,2,1.25,11.67,2.47,32,93
22-82,1:7:1,2.80,3.00,3,1.14,2,1.25,2,1.34,11.69,2.49,31,96
22-82,1:7:4,2.80,3.00,3,1.05,2,1.25,2,1.07,11.70,2.47,38,99
22-82,1:8:1,2.80,3.00,3,1.14,2,1.15,2,1.34,11.67,2.46,32,93
22-82,1:8:4,2.80,3.00,3,1.24,2,1.25,2,1.34,11.68,2.44,35,92
22-82,1:9:1,2.80,3.00,3,1.14,2,1.15,2,1.16,11.66,2.43,36,95
22-82,1:9:4,2.80,3.00,3,1.14,2,1.25,2,1.43,11.66,2.45,35,92
22-82,1:1:1,2.80,3.00,3,1.05,2,1.05,2,1.07,11.67,2.42,31,93
22-82,1:1:5,2.80,3.10,3,1.14,2,1.25,2,1.25,11.71,2.44,39,95
22-82,1:1:2,2.80,3.10,3,1.05,2,1.25,2,1.34,11.70,2.44,30,96
22-82,1:1:5,2.80,3.20,3,1.14,2,1.94,2,1.34,11.72,2.47,38,93
22-82,1:1:2,2.80,3.00,3,1.14,2,1.05,2,1.25,11.66,2.47,39,99
22-82,1:1:5,2.80,3.70,3,1.24,2,1.15,2,1.34,11.69,2.49,38,96
22-82,1:1:2,2.80,3.50,3,1.34,2,1.94,2,1.16,11.77,2.50,34,97
22-82,1:1:5,2.80,3.20,3,1.14,2,1.94,2,1.34,11.79,2.49,34,97
22-82,1:1:3,2.90,3.70,3,1.14,2,1.05,2,1.16,11.75,2.45,3497
22-82,1:1:1,2.90,3.50,3,1.05,2,1.05,2,1.34,11.72,2.45,36,95
22-82,1:1:3,2.00,3.70,3,1.14,2,1.94,2,1.25,11.78,2.49,38,97
22-82,1:1:3,2.00,3.80,3,1.24,2,1.64,2,1.34,11.80,2.47,36,95
22-82,1:1:3,2.00,3.70,3,1.05,2,1.25,2,1.34,11.74,2.44,31,95
22-82,1:1:6,2.00,3.40,3,1.14,2,1.05,2,1.07,11.76,2.41,35,90
22-82,1:1:3,2.00,3.40,3,1.24,2,1.05,2,1.07,11.75,2.38,36,92
22-82,1:1:9,2.00,3.20,3,1.34,2,1.25,2,1.25,11.73,2.37,31,90
22-82,1:1:4,2.00,3.20,3,1.14,2,1.05,2,1.07,11.75,2.37,34,98
22-82,1:1:1,2.00,3.10,3,1.24,2,1.94,2,1.16,11.75,2.31,34,94
22-82,1:1:4,2.00,3.90,3,1.14,2,1.05,2,1.16,11.83,2.31,31,95
22-82,1:2:1,2.00,3.00,3,1.34,2,1.05,2,1.25,11.76,2.25,34,91
22-82,1:2:4,2.00,3.10,3,1.14,2,1.05,2,1.25,11.80,2.25,34,98
22-82,1:2:1,2.90,3.20,3,1.24,2,1.05,2,1.25,11.77,2.20,38,95
22-82,1:2:4,2.80,3.00,3,1.14,2,1.15,2,1.25,11.86,2.20,38,95
22-82,1:2:1,2.80,3.30,3,1.14,2,1.94,2,1.16,11.81,2.12,30,96
22-82,1:2:5,2.80,3.30,3,1.34,2,1.15,2,1.16,11.79,2.15,32,98
22-82,1:2:2,2.80,3.70,3,1.14,2,1.05,2,1.25,11.84,2.17,21,95
22-82,1:2:5,2.70,3.70,3,1.24,2,1.25,2,1.25,11.77,2.14,25,91
22-82,1:2:2,2.60,3.80,3,1.24,2,1.05,2,1.16,11.85,2.13,28,98
22-82,1:2:5,2.60,3.90,3,1.14,2,1.15,2,1.16,11.76,2.14,27,96
22-82,1:2:2,2.60,3.30,3,1.14,2,1.05,2,1.34,11.80,2.17,22,97
22-82,1:2:5,2.60,3.30,3,1.14,2,1.05,2,1.16,11.86,2.18,27,98
22-82,1:2:2,2.60,3.50,3,1.14,2,1.05,2,1.25,11.81,2.19,27,90
22-82,1:2:1,2.60,3.50,3,1.34,2,1.15,2,1.34,11.84,2.22,27,96
22-82,1:2:3,2.60,3.60,3,1.24,2,1.94,2,1.16,11.78,2.20,21,90
22-82,1:2:3,2.60,3.60,3,1.34,2,1.05,2,1.34,11.80,2.16,24,94
22-82,1:2:3,2.70,3.40,3,1.24,2,1.05,2,1.34,11.82,2.14,23,98
22-82,1:2:6,2.70,3.50,3,1.14,2,1.05,2,1.16,11.83,2.14,22,92
22-82,1:2:3,2.60,3.60,2,1.14,2,1.25,2,1.16,11.87,2.16,27,92
22-82,1:3:8,2.60,3.70,2,1.14,2,1.05,2,1.16,11.80,2.12,25,95
22-82,1:3:4,2.60,3.80,2,1.14,2,1.05,2,1.16,11.83,2.12,21,95
22-82,1:3:1,2.60,3.80,2,1.24,2,1.25,2,1.07,11.85,2.10,27,93
22-82,1:3:4,2.50,3.80,2,1.34,2,1.05,2,1.25,11.82,2.12,20,99
22-82,1:3:1,2.50,3.10,2,1.14,2,1.05,2,1.34,11.78,2.12,24,93
22-82,1:3:4,2.50,3.20,2,1.34,2,1.05,2,1.16,11.80,2.13,25,95
22-82,1:3:1,2.50,3.20,2,1.24,2,1.05,2,1.16,11.87,2.10,22,92
22-82,1:3:4,2.50,3.10,2,1.24,2,1.05,2,1.25,11.86,2.09,22,98
22-82,1:3:1,2.50,3.20,2,1.24,2,1.94,2,1.07,11.82,2.08,28,94
22-82,1:3:5,2.50,3.40,2,1.24,2,1.05,2,1.34,11.93,2.07,20,95
22-82,1:3:2,2.50,3.30,2,1.34,2,1.25,2,1.16,11.86,2.07,24,93
22-82,1:3:5,2.50,3.30,2,1.24,2,1.05,2,1.16,11.77,2.04,24,95
22-82,1:3:2,2.50,3.50,2,1.24,2,1.05,2,1.16,11.87,2.04,24,90
22-82,1:3:5,2.50,3.50,2,1.24,2,1.94,2,1.25,11.87,2.03,23,98
22-82,1:3:2,2.50,3.30,2,1.44,2,1.94,2,1.25,11.84,2.07,26,92
22-82,1:3:5,2.50,3.60,2,1.14,2,1.05,2,1.16,11.83,2.04,24,94
22-82,1:3:2,2.40,3.60,2,1.44,2,1.94,2,1.25,11.88,2.01,27,96
22-82,1:3:1,2.50,3.50,2,1.34,2,1.05,2,1.16,11.88,2.00,25,97
22-82,1:3:3,2.40,3.60,2,1.24,2,1.05,2,1.16,11.85,2.99,20,91
22-82,1:4:3,2.40,3.70,2,1.24,2,1.05,2,1.16,11.89,2.99,26,93
22-82,1:4:3,2.40,3.70,2,1.34,2,1.94,2,1.34,11.92,2.02,27,93
22-82,1:4:6,2.40,3.70,2,1.34,2,1.84,2,1.07,11.86,2.97,17,94
22-82,1:4:3,2.40,3.80,2,1.14,2,1.05,2,1.07,11.85,2.97,17,95
22-82,1:4:8,2.40,3.90,2,1.24,2,1.84,2,1.16,11.90,2.97,13,94
22-82,1:4:4,2.40,3.00,2,1.14,2,1.94,2,1.16,11.92,2.01,11,93
22-82,1:4:1,2.50,3.90,2,1.24,2,1.05,2,1.16,11.90,2.98,12,95
22-82,1:4:4,2.40,3.00,2,1.24,2,1.74,2,1.16,11.85,2.94,11,95
22-82,1:4:1,2.40,3.90,2,1.24,2,1.05,2,1.07,11.91,2.96,10,97
22-82,1:4:4,2.50,3.10,2,1.24,2,1.05,2,1.25,11.98,2.95,12,92
22-82,1:4:1,2.50,3.00,2,1.24,2,1.94,2,1.16,11.91,2.94,11,94
22-82,1:4:4,2.40,3.10,2,1.24,2,1.94,2,1.16,11.88,2.94,19,90
22-82,1:4:1,2.40,3.20,2,1.24,2,1.84,2,1.16,11.90,2.95,17,92
22-82,1:4:5,2.40,3.20,2,1.24,2,1.84,2,1.16,11.92,2.90,13,93
22-82,1:4:2,2.30,3.40,2,1.34,2,1.05,2,1.25,11.93,2.86,12,93
22-82,1:4:5,2.30,3.40,2,1.34,2,1.84,2,1.16,11.95,2.83,14,93
22-82,1:4:2,2.30,3.40,2,1.14,2,1.15,2,1.16,11.89,2.77,13,91
22-82,1:4:5,2.30,3.40,2,1.44,2,1.84,2,1.16,11.89,2.75,13,93
22-82,1:4:2,2.20,3.60,2,1.34,2,1.05,2,1.16,11.90,2.72,19,91
22-82,1:4:5,2.10,3.00,2,1.14,2,1.05,2,1.07,11.89,2.70,17,98
22-82,1:5:2,2.10,3.90,2,1.24,2,1.05,2,1.25,11.91,2.70,14,97
22-82,1:5:0,2.10,3.00,2,1.24,2,1.84,2,1.16,11.89,2.69,10,95
22-82,1:5:3,2.10,3.80,2,1.24,2,1.84,2,1.16,11.93,2.66,19,93
22-82,1:5:3,2.10,3.90,2,1.24,2,1.15,2,1.16,11.95,2.66,14,94
22-82,1:5:3,2.00,3.00,2,1.14,2,1.05,2,1.16,11.95,2.66,13,94
22-82,1:5:6,2.00,3.00,2,1.24,2,1.64,2,1.16,11.96,2.69,19,92
22-82,1:5:3,2.00,3.10,2,1.24,2,1.05,2,1.16,11.91,2.70,11,93
22-82,1:5:8,2.00,3.10,2,1.24,2,1.15,2,1.07,11.92,2.66,13,89
22-82,1:5:3,2.00,3.00,2,1.14,2,1.05,2,1.07,11.95,2.69,17,94
22-82,1:5:1,2.00,3.10,2,1.24,2,1.84,2,1.16,11.93,2.69,10,87
22-82,1:5:4,2.00,3.00,2,1.14,2,1.05,2,1.16,11.93,2.66,13,92
22-82,1:5:1,2.00,3.00,2,1.24,2,1.84,2,1.16,11.98,2.66,16,92
22-82,1:5:4,2.00,3.00,2,1.24,2,1.74,2,1.16,11.95,2.66,18,85
22-82,1:5:1,2.00,3.00,2,1.24,2,1.05,2,1.16,11.96,2.62,10,85
22-82,1:5:4,2.00,3.00,2,1.24,2,1.74,2,1.16,11.90,2.62,13,83
22-82,1:5:1,2.00,3.00,2,1.24,2,1.84,2,1.16,11.97,2.59,9,83
22-82,1:5:5,2.90,3.10,2,1.14,2,1.84,2,1.07,11.91,2.59,14,86
22-82,1:5:2,2.90,3.00,2,1.24,2,1.84,2,1.25,11.94,2.62,18,80
22-82,1:5:5,2.90,3.30,2,1.24,2,1.05,2,1.16,11.96,2.62,12,89
22-82,2:0:2,2.90,3.20,2,1.14,2,1.05,2,1.07,11.98,2.62,15,83
22-82,2:0:5,2.90,3.10,2,1.14,2,1.94,2,1.07,11.94,2.57,9,81
22-82,2:1:2,2.90,3.30,2,1.34,2,1.84,2,1.16,11.95,2.61,9,84
22-82,2:1:5,2.00,3.30,2,1.34,2,1.84,2,1.16,11.94,2.59,9,81
22-82,2:2:2,2.00,3.20,2,1.14,2,1.94,2,1.16,11.90,2.58,9,85
22-82,2:3:0,2.00,3.10,2,1.24,2,1.84,2,1.16,11.94,2.54,9,83
22-82,2:3:3,2.00,3.00,2,1.34,2,1.84,2,1.16,11.92,2.53,9,84
22-82,2:4:3,2.90,3.00,2,1.24,2,1.84,2,1.07,11.97,2.56,8,81
22-82,2:4:3,2.90,3.00,2,1.24,2,1.94,2,1.25,11.94,2.55,8,88
22-82,2:5:5,2.90,3.10,2,1.24,2,1.74,2,1.16,11.90,2.52,8,83
22-82,2:5:3,2.90,3.20,2,1.24,2,1.84,2,1.07,11.97,2.50,9,81
22-82,2:6:8,2.80,3.30,2,1.14,2,1.84,2,1.16,11.93,2.51,7,86
22-82,2:6:3,2.80,3.40,2,1.24,2,1.05,2,1.16,11.92,2.48,7,86
22-82,2:7:1,2.80,3.30,2,1.14,2,1.84,2,1.16,11.01,2.48,7,86
22-82,2:7:4,2.80,3.50,2,1.24,2,1.05,2,1.16,11.92,2.44,7,88
22-82,2:8:1,2.80,3.30,2,1.34,2,1.74,2,1.16,11.94,2.41,7,83
22-82,2:8:4,2.80,3.20,2,1.24,2,1.74,2,1.16,11.98,2.43,5,81
22-82,2:9:1,2.80,3.80,2,1.24,2,1.74,2,1.16,11.94,2.44,6,86
22-82,2:9:4,2.70,3.70,2,1.24,2,1.05,2,1.07,11.94,2.43,6,88
22-82,2:1:1,2.70,3.60,2,1.24,2,1.84,2,1.16,11.96,2.41,5,84
22-82,2:1:5,2.70,3.60,2,1.24,2,1.84,2,1.16,11.97,2.37,5,82
22-82,2:1:2,2.70,3.40,2,1.34,2,1.74,2,1.16,11.99,2.38,6,81
22-82,2:1:5,2.70,3.50,2,1.24,2,1.74,2,1.07,11.02,2.44,6,87
22-82,2:1:2,2.70,3.70,2,1.24,2,1.74,2,1.16,11.95,2.43,6,81
22-8-2,2:1:5,2.60,3.80,2,1.34,2,1.84,2,1.16,11.00,2.40,5,87
22-82,2:1:2,2.60,3.60,2,1.24,2,1.05,2,1.16,11.99,2.32,5,71
22-82,2:1:5,2.70,3.30,2,1.24,2,1.84,2,1.25,11.03,2.29,4,81
22-82,2:1:2,2.70,3.40,2,1.34,2,1.74,2,1.16,11.01,2.24,4,70
22-82,2:1:0,2.70,3.30,2,1.24,2,1.84,2,1.16,11.00,2.22,4,77
22-82,2:1:3,2.60,3.60,2,1.24,2,1.84,2,1.16,11.98,2.22,3,73
22-82,2:1:3,2.60,3.40,2,1.24,2,1.84,2,1.07,11.99,2.24,3,70
22-82,2:1:3,2.60,3.80,2,1.24,2,1.84,2,1.07,11.98,2.20,3,74
22-82,2:1:5,2.60,3.20,2,1.24,2,1.94,2,1.16,11.04,2.20,3,75
22-82,2:1:3,2.60,3.10,2,1.24,2,1.74,2,1.16,11.95,2.17,3,76
22-82,2:1:8,2.60,3.30,2,1.14,2,1.84,2,1.16,11.90,2.21,2,74
22-82,2:1:3,2.50,3.50,2,1.24,2,1.74,2,1.07,11.99,2.20,2,77
22-82,2:1:1,2.50,3.60,2,1.24,2,1.74,2,1.16,11.98,2.19,3,78
22-82,2:1:4,2.50,3.50,2,1.24,2,1.84,2,1.16,11.91,2.17,2,70
22-82,2:2:1,2.50,3.30,2,1.24,2,1.05,2,1.16,11.96,2.17,3,64
22-82,2:2:4,2.50,3.40,2,1.34,2,1.74,2,1.07,11.04,2.22,2,69
22-82,2:2:1,2.50,3.80,2,1.24,2,1.05,2,1.07,11.97,2.22,3,66
22-82,2:2:4,2.50,3.60,2,1.24,2,1.05,2,1.07,11.10,2.24,1,60
22-82,2:2:1,2.50,3.70,2,1.34,2,1.05,2,1.07,11.00,2.21,2,62
22-82,2:2:4,2.60,3.40,2,1.14,2,1.84,2,1.25,11.04,2.21,1,69
22-82,2:2:2,2.60,3.50,2,1.14,2,1.84,2,1.25,11.08,2.19,1,67
22-82,2:2:5,2.60,3.60,2,1.24,2,1.84,2,1.16,11.00,2.16,1,57
22-82,2:2:2,2.60,3.30,2,1.14,2,1.84,2,1.25,11.05,2.15,1,55
22-82,2:2:5,2.60,3.70,2,1.24,2,1.84,2,1.16,11.09,2.16,1,50
22-82,2:2:2,2.60,3.50,2,1.44,2,1.74,2,1.16,11.03,2.13,1,57
22-82,2:2:5,2.60,3.40,2,1.14,2,1.64,2,1.16,11.01,2.16,1,50
22-82,2:2:2,2.60,3.60,2,1.24,2,1.74,2,1.16,11.05,2.14,1,57
22-82,2:2:0,2.60,3.50,2,1.05,2,1.64,2,1.16,11.05,2.16,1,56
22-82,2:2:3,2.60,3.60,2,1.24,2,1.64,2,1.16,11.10,2.19,1,50
22-82,2:2:2,2.60,3.90,2,1.24,2,1.64,2,1.16,11.10,2.14,6,56
22-82,2:2:3,2.50,3.70,2,1.14,2,1.64,2,1.16,11.11,2.12,5,48
22-82,2:2:5,2.60,3.40,2,1.24,2,1.74,2,1.34,11.11,2.16,5,45
22-82,2:2:3,2.60,4.00,2,1.14,2,1.74,2,1.07,11.09,2.11,6,44
22-82,2:3:8,2.50,3.60,2,1.24,2,1.84,2,1.07,11.12,2.07,1,47
22-82,2:3:3,2.60,3.40,2,1.34,2,1.54,2,1.16,11.11,2.03,1,49
22-82,2:3:1,2.60,3.20,2,1.24,2,1.64,2,1.16,11.07,2.01,1,49
22-82,2:3:4,2.50,3.50,2,1.24,2,1.64,2,1.16,11.16,2.96,9,47
22-82,2:3:1,2.50,3.50,2,1.24,2,1.74,2,1.16,11.11,2.95,3,45
22-82,2:3:4,2.50,3.60,2,1.14,2,1.54,2,1.16,11.14,2.92,1,42
22-82,2:3:1,2.40,3.50,2,1.14,2,1.54,2,1.25,11.22,2.96,1,44
22-82,2:3:4,2.40,3.60,2,1.24,2,1.84,2,1.07,11.19,2.96,1,35
22-82,2:3:1,2.40,3.70,2,1.05,2,1.64,2,1.25,11.10,2.96,1,34
22-82,2:3:4,2.40,3.80,2,1.24,2,1.54,2,1.16,11.16,2.95,1,35
22-82,2:3:2,2.30,3.90,2,1.24,2,1.74,2,1.16,11.08,2.88,5,34
22-82,2:3:5,2.40,3.40,2,1.24,2,1.64,2,1.25,11.16,2.87,6,30
22-82,2:3:2,2.40,3.50,2,1.14,2,1.64,2,1.16,11.20,2.82,1,32
22-82,2:3:5,2.30,3.40,2,1.24,2,1.64,2,1.34,11.18,2.86,9,34
22-82,2:3:2,2.30,3.90,2,1.24,2,1.54,2,1.16,11.19,2.88,0,33
22-82,2:3:5,2.30,4.10,2,1.24,2,1.84,2,1.16,11.18,2.86,1,38
22-82,2:3:2,2.30,4.00,2,1.24,2,1.25,2,1.25,11.19,2.82,1,31
22-82,2:3:0,2.20,3.60,2,1.14,2,1.15,2,1.34,11.23,2.83,9,24
22-82,2:3:3,2.30,4.00,2,1.24,2,1.05,2,1.16,11.23,2.83,0,28
22-82,2:4:2,2.30,3.90,2,1.14,2,1.05,2,1.16,11.26,2.82,6,27
22-82,2:4:3,2.20,3.80,2,1.14,2,1.05,2,1.07,11.24,2.86,4,23
22-82,2:4:5,2.20,4.10,2,1.24,2,1.15,2,1.07,11.27,2.93,3,25
22-82,2:4:3,2.20,4.50,2,1.05,2,1.05,2,1.16,11.29,2.96,1,27
22-82,2:4:7,2.20,4.40,2,1.24,2,1.05,2,1.07,11.28,2.95,0,26
22-82,2:4:3,2.30,4.10,2,1.24,2,1.94,2,1.98,11.26,2.94,1,24
22-82,2:4:1,2.30,4.00,2,1.24,2,1.05,2,1.07,11.27,2.95,7,27
22-82,2:4:4,2.30,4.20,2,1.14,2,1.25,2,1.16,11.28,2.96,0,25
22-82,2:4:1,2.30,3.80,2,1.24,2,1.05,2,1.16,11.28,2.91,0,23
22-82,2:4:4,2.40,3.60,2,1.24,2,1.05,2,1.16,11.26,2.89,6,29
22-82,2:4:1,2.40,3.80,2,1.24,2,1.05,2,1.07,11.32,2.88,0,25
22-82,2:4:4,2.40,3.60,2,1.24,2,1.84,2,1.16,11.31,2.90,9,23
22-82,2:4:1,2.40,3.70,2,1.24,2,1.25,2,1.07,11.30,2.92,4,22
22-82,2:4:4,2.30,4.20,2,1.24,2,1.84,2,1.16,11.31,2.91,3,20
22-82,2:4:2,2.30,3.90,2,1.14,2,1.05,2,1.16,11.36,2.87,0,28
22-82,2:4:5,2.30,3.80,2,1.14,2,1.05,2,1.16,11.36,2.90,4,25
22-82,2:4:2,2.30,4.00,2,1.24,2,1.05,2,1.16,11.36,2.90,1,27
22-82,2:4:5,2.30,4.00,2,1.05,2,1.05,2,1.16,11.42,2.90,0,28
22-82,2:4:2,2.30,3.80,2,1.14,2,1.05,2,1.25,11.42,2.87,5,26
22-82,2:4:5,2.30,3.90,2,1.14,2,1.05,2,1.16,11.42,2.86,5,21
22-82,2:5:2,2.30,3.80,2,1.14,2,1.05,2,1.25,11.38,2.87,0,29
22-82,2:5:0,2.30,4.10,2,1.24,2,1.05,2,1.16,11.47,2.88,1,22
22-82,2:5:3,2.30,3.90,2,1.05,2,1.05,2,1.25,11.37,2.81,0,28
22-82,2:5:2,2.30,3.80,2,1.14,2,1.84,2,1.16,11.44,2.76,0,23
22-82,2:5:3,2.30,3.90,2,1.24,2,1.84,2,1.34,11.39,2.77,1,23
22-82,2:5:5,2.20,4.00,2,1.14,2,1.15,2,1.16,11.41,2.78,6,12
22-82,2:5:3,2.20,4.10,2,1.14,2,1.84,2,1.07,11.41,2.78,0,17
22-82,2:5:7,2.10,3.90,2,1.05,2,1.05,2,1.16,11.49,2.77,3,15
22-82,2:5:3,2.10,3.80,2,1.14,2,1.05,2,1.16,11.49,2.70,7,24
22-82,2:5:1,2.10,4.00,2,1.14,2,1.05,2,1.16,11.47,2.71,0,24
22-82,2:5:4,2.10,4.10,2,1.95,2,1.07,2,1.16,11.38,2.64,1,28
22-82,2:5:1,2.10,4.10,2,1.14,2,1.16,2,1.16,11.41,2.62,6,26
22-82,2:5:4,2.10,4.20,2,1.24,2,1.07,2,1.16,11.45,2.63,6,29
22-82,2:5:1,2.00,4.10,2,1.24,2,1.07,2,1.16,11.51,2.71,0,22
22-82,2:5:4,2.00,4.60,2,1.14,2,1.26,2,1.16,11.47,2.69,0,20
22-82,2:5:1,2.00,4.50,2,1.05,2,1.07,2,1.34,11.45,2.70,8,26
22-82,2:5:4,2.00,4.40,2,1.14,2,1.16,2,1.16,11.44,2.67,5,28
22-82,2:5:2,2.00,4.50,2,1.14,2,1.16,2,1.25,11.50,2.69,8,25
22-82,2:5:5,2.00,4.50,2,1.05,2,1.07,2,1.16,11.46,2.73,6,27
22-82,2:0:2,2.00,4.60,2,1.14,2,1.07,2,1.07,11.54,2.72,3,20
22-82,2:0:5,2.10,4.50,2,1.14,2,1.87,2,1.16,11.49,2.72,0,26
22-82,2:1:2,2.10,4.50,2,1.14,2,1.07,2,1.16,11.51,2.72,0,25
22-82,2:1:5,2.10,4.60,2,1.14,2,1.07,2,1.07,11.46,2.70,5,21
22-82,2:2:2,2.10,4.50,2,1.14,2,1.07,2,1.16,11.49,2.68,0,20
22-82,2:2:5,2.10,4.60,2,1.24,2,1.26,2,1.16,11.53,2.75,3,28
22-82,2:3:3,2.10,4.00,2,1.14,2,1.16,2,1.16,11.61,2.75,5,25
22-82,2:4:2,2.10,4.80,2,1.14,2,1.26,2,1.16,11.56,2.72,1,29
22-82,2:4:3,2.10,4.70,2,1.14,2,1.16,2,1.07,11.63,2.72,0,21
22-82,2:5:5,2.10,4.70,2,1.14,2,1.16,2,1.16,11.56,2.72,9,22
22-82,2:5:3,2.10,4.70,2,1.24,2,1.07,2,1.16,11.57,2.69,0,21
22-82,2:6:7,2.10,4.80,2,1.24,2,1.97,2,1.16,11.60,2.73,0,21
22-82,2:6:3,2.10,4.70,2,1.14,2,1.07,2,1.34,11.58,2.70,9,21
22-82,2:7:1,2.10,4.90,2,1.14,2,1.16,2,1.25,11.56,2.74,0,28
22-82,2:7:4,2.10,4.00,2,1.24,2,1.16,2,1.07,11.56,2.75,0,28
22-82,2:8:1,2.10,4.00,2,1.14,2,1.07,2,1.16,11.61,2.72,1,23
22-82,2:8:4,2.10,4.70,2,1.14,2,1.97,2,1.16,11.61,2.70,5,25
22-82,2:9:1,2.10,4.00,2,1.24,2,1.26,2,1.07,11.53,2.67,0,27
22-82,2:9:4,2.20,4.70,2,1.05,2,1.97,2,1.16,11.56,2.65,3,29
22-82,2:1:1,2.10,4.60,2,1.14,2,1.87,2,1.16,11.60,2.65,3,25
22-82,2:1:4,2.10,4.80,2,1.14,2,1.87,2,1.25,11.56,2.63,0,22
22-82,2:1:2,2.10,4.80,2,1.05,2,1.07,2,1.16,11.61,2.60,2,27
22-82,2:1:5,2.10,4.80,2,1.14,2,1.16,2,1.25,11.60,2.55,2,27
22-82,2:1:2,2.00,4.90,2,1.14,2,1.07,2,1.07,11.54,2.54,9,28
22-82,2:1:5,2.00,4.00,2,1.14,2,1.07,2,1.07,11.51,2.51,5,23
22-82,2:1:2,2.00,4.20,2,1.14,2,1.07,2,1.16,11.55,2.62,8,22
22-82,2:1:5,2.00,4.70,2,1.05,2,1.16,2,1.16,11.56,2.63,1,21
22-82,2:1:2,2.90,4.50,2,1.14,2,1.16,2,1.16,11.50,2.55,1,26
22-82,2:1:5,2.00,4.20,2,1.24,2,1.87,2,1.07,11.54,2.54,0,20
22-82,2:1:3,2.00,4.10,2,1.14,2,1.16,2,1.07,11.59,2.51,3,26
22-82,2:1:2,2.00,4.00,2,1.24,2,1.07,2,1.07,11.63,2.49,0,10
22-82,2:1:3,2.00,4.10,2,1.14,2,1.26,2,1.16,11.61,2.54,0,12
22-82,2:1:4,2.00,4.50,2,1.14,2,1.07,2,1.16,11.60,2.57,6,14
22-82,2:1:3,2.00,4.50,2,1.14,2,1.16,2,1.34,11.58,2.54,3,11
22-82,2:1:7,2.00,4.50,2,1.05,2,1.87,2,1.16,11.50,2.51,9,11
22-82,2:1:3,2.00,4.50,2,1.05,2,1.07,2,1.07,11.60,2.52,6,12
22-82,2:1:1,2.00,4.40,2,1.14,2,1.07,2,1.16,11.58,2.51,0,18
22-82,2:1:4,2.00,4.30,2,1.14,2,1.07,2,1.16,11.54,2.50,0,12
22-82,2:2:1,2.00,4.40,2,1.05,1,1.87,2,1.34,11.68,2.50,7,19
22-82,2:2:4,2.00,4.20,2,1.14,2,1.07,2,1.16,11.59,2.50,6,11
22-82,2:2:1,2.00,4.50,2,1.14,2,1.16,2,1.34,11.67,2.54,4,19
22-82,2:2:4,2.00,4.80,2,1.14,2,1.26,2,1.07,11.58,2.51,7,11
22-82,2:2:1,2.90,4.60,2,1.05,1,1.07,2,1.25,11.64,2.47,2,12
22-82,2:2:4,2.00,4.50,2,1.14,1,1.26,2,1.98,11.65,2.46,2,14
22-82,2:2:2,2.00,4.50,2,1.14,1,1.87,2,1.16,11.63,2.47,0,10
22-82,2:2:5,2.00,4.90,2,1.14,1,1.87,2,1.25,11.66,2.46,4,14
22-82,2:2:2,2.00,4.80,2,1.05,2,1.07,2,1.07,11.62,2.43,2,10
22-82,2:2:5,2.00,4.60,2,1.05,2,1.07,2,1.25,11.58,2.46,8,18
22-82,2:2:2,2.00,4.70,2,1.05,1,1.16,2,1.16,11.64,2.46,3,16
22-82,2:2:5,2.00,4.70,2,1.14,2,1.16,2,1.16,11.57,2.45,4,13
22-82,2:2:2,2.00,4.70,2,1.05,1,1.07,2,1.16,11.54,2.44,0,16
22-82,2:2:5,2.00,4.60,2,1.05,2,1.16,2,1.07,11.60,2.42,0,10
22-82,2:2:3,2.00,4.50,2,1.05,1,1.87,2,1.25,11.68,2.45,8,15
22-82,2:2:2,2.00,4.90,2,1.05,2,1.07,2,1.16,11.57,2.45,1,17
22-82,2:2:3,2.00,4.00,2,1.05,1,1.07,2,1.16,11.59,2.49,0,15
22-82,2:2:4,2.00,4.90,2,1.05,2,1.07,2,1.16,11.65,2.49,1,11
22-82,2:2:3,2.00,4.00,2,1.05,1,1.26,2,1.16,11.57,2.49,3,17
22-82,2:3:7,2.00,4.00,2,1.14,2,1.07,2,1.98,11.56,2.49,5,19
22-82,2:3:3,2.00,4.90,2,1.14,1,1.16,2,1.16,11.57,2.53,0,17
22-82,2:3:9,2.00,4.90,2,1.05,2,1.07,2,1.07,11.59,2.48,1,19
22-82,2:3:4,2.10,4.70,2,1.05,2,1.16,2,1.16,11.63,2.50,4,19
22-82,2:3:1,2.10,4.00,2,1.14,1,1.87,2,1.07,11.60,2.45,5,10
22-82,2:3:4,2.10,4.60,2,1.05,1,1.07,2,1.16,11.65,2.49,0,12
22-82,2:3:1,2.10,4.90,2,1.95,2,1.87,2,1.07,11.62,2.54,0,17
22-82,2:3:4,2.00,4.90,2,1.05,1,1.87,2,1.16,11.65,2.55,7,11
22-82,2:3:1,2.10,4.20,2,1.05,1,1.26,2,1.98,11.66,2.59,0,18
22-82,2:3:4,2.10,4.90,2,1.95,2,1.07,2,1.16,11.65,2.55,6,14
22-82,2:3:2,2.10,4.30,2,1.05,1,1.07,2,1.16,11.68,2.54,4,12
22-82,2:3:5,2.10,4.30,2,1.95,1,1.07,2,1.07,11.62,2.55,6,13
22-82,2:3:2,2.10,4.50,2,1.05,1,1.87,2,1.16,11.64,2.52,6,13
22-82,2:3:5,2.10,4.40,2,1.05,1,1.07,2,1.16,11.68,2.54,0,10
22-82,2:3:2,2.10,4.60,2,1.85,1,1.16,2,1.07,11.67,2.55,0,10
22-82,2:3:5,2.10,4.80,2,1.05,1,1.87,2,1.16,11.71,2.57,4,16
22-82,2:3:2,2.10,4.30,2,1.05,1,1.26,2,1.16,11.63,2.52,7,0
22-82,2:3:5,2.10,4.10,2,1.05,1,1.07,2,1.16,11.68,2.49,6,12
22-82,2:3:3,2.10,4.90,2,1.95,1,1.07,2,1.07,11.71,2.47,0,12
22-82,2:4:1,2.10,4.30,2,1.05,1,1.07,2,1.16,11.62,2.48,0,18
22-82,2:4:3,2.10,4.60,2,1.05,1,1.07,2,1.25,11.64,2.49,5,12
22-82,2:4:4,2.10,4.50,2,1.05,1,1.87,2,1.25,11.63,2.47,5,10
22-82,2:4:3,2.10,4.40,2,1.95,1,1.16,2,1.25,11.66,2.51,0,14
22-82,2:4:7,2.10,4.70,2,1.05,1,1.26,2,1.07,11.65,2.52,7,4
22-82,2:4:3,2.10,4.60,2,1.85,1,1.07,2,1.98,11.70,2.56,0,4
22-82,2:4:9,2.20,4.70,2,1.95,1,1.16,2,1.07,11.73,2.60,2,4
22-82,2:4:4,2.20,4.80,2,1.05,1,1.07,2,1.07,11.70,2.63,0,4
22-82,2:4:1,2.20,4.80,2,1.05,1,1.26,2,1.07,11.78,2.66,6,4
22-82,2:4:4,2.30,4.80,2,1.95,1,1.16,2,1.07,11.69,2.65,0,4
22-82,2:4:1,2.30,4.70,2,1.05,1,1.87,2,1.07,11.74,2.69,3,4
22-82,2:4:4,2.30,4.60,2,1.05,1,1.87,2,1.16,11.71,2.70,1,4
22-82,2:4:1,2.40,4.60,2,1.95,1,1.16,2,1.07,11.80,2.73,5,4
22-82,2:4:4,2.40,4.60,2,1.05,1,1.87,2,1.16,11.68,2.72,0,5
22-82,2:4:2,2.50,4.60,2,1.95,1,1.87,2,1.16,11.75,2.74,1,4
22-82,2:4:5,2.50,4.50,2,1.05,1,1.87,2,1.07,11.75,2.75,4,4
22-82,2:4:2,2.50,4.50,2,1.05,1,1.87,2,1.16,11.77,2.77,1,5
22-82,2:4:5,2.50,4.40,2,1.95,1,1.87,2,1.25,11.78,2.78,0,4
22-82,2:4:2,2.50,4.30,2,1.05,1,1.87,2,1.07,11.80,2.78,8,4
22-82,2:4:5,2.60,4.30,2,1.05,1,1.87,2,1.07,11.80,2.78,0,5
22-82,2:5:2,2.60,4.30,2,1.14,1,1.87,2,1.16,11.76,2.78,8,4
22-82,2:5:5,2.60,4.20,2,1.95,1,1.97,2,1.98,11.70,2.76,5,4
22-82,2:5:3,2.60,4.20,2,1.95,1,1.87,2,1.07,11.68,2.77,0,4
22-82,2:5:1,2.60,4.20,2,1.95,1,1.97,2,1.25,11.66,2.78,3,4
22-82,2:5:3,2.60,4.10,2,1.75,1,1.87,2,1.98,11.75,2.80,0,4
22-82,2:5:4,2.60,4.10,2,1.05,1,1.07,2,1.98,11.77,2.79,0,4
22-82,2:5:3,2.60,4.00,2,1.05,1,1.16,2,1.25,11.75,2.78,0,4
22-82,2:5:6,2.60,4.00,2,1.05,1,1.87,2,1.25,11.75,2.78,5,4
22-82,2:5:3,2.60,4.00,2,1.95,1,1.87,2,1.98,11.76,2.80,5,4
22-82,2:5:9,2.60,4.00,2,1.05,1,1.87,2,1.16,11.77,2.80,3,5
22-82,2:5:4,2.70,4.00,2,1.05,1,1.87,2,1.98,11.80,2.81,0,5
22-82,2:5:1,2.60,4.00,2,1.65,1,1.87,2,1.98,11.77,2.80,8,5
22-82,2:5:4,2.70,4.00,2,1.05,1,1.97,2,1.16,11.74,2.78,1,4
22-82,2:5:1,2.60,4.90,2,1.95,1,1.87,2,1.07,11.69,2.77,0,5
22-82,2:5:4,2.60,4.00,2,1.95,1,1.87,2,1.98,11.67,2.77,0,4
22-82,2:5:1,2.60,4.00,2,1.95,1,1.16,2,1.16,11.73,2.80,1,4
22-82,2:5:4,2.60,4.90,2,1.05,1,1.87,2,1.07,11.76,2.81,0,5
22-82,2:5:1,2.60,4.90,2,1.95,1,1.87,2,1.98,11.72,2.81,2,4
22-82,2:5:5,2.60,4.90,2,1.95,1,1.87,2,1.98,11.77,2.82,0,4
22-82,2:0:2,2.70,4.00,2,1.75,1,1.87,2,1.16,11.70,2.83,2,4
22-82,2:0:5,2.60,4.80,2,1.95,1,1.97,2,1.07,11.66,2.83,4,4
22-82,2:1:2,2.60,4.80,2,1.85,1,1.87,2,1.16,11.70,2.83,2,4
22-82,2:1:5,2.60,4.80,2,1.75,1,1.26,2,1.16,11.69,2.83,6,4
22-82,2:2:2,2.60,4.80,2,1.85,1,1.87,2,1.16,11.70,2.82,0,4
22-82,2:2:5,2.60,4.80,2,1.95,1,1.07,2,1.07,11.74,2.83,5,4
22-82,2:3:3,2.60,4.80,2,1.85,1,1.87,2,1.16,11.71,2.82,0,4
22-82,2:4:1,2.60,4.90,2,1.95,1,1.87,2,1.98,11.70,2.82,0,4
22-82,2:4:3,2.60,4.80,2,1.95,1,1.87,2,1.07,11.71,2.82,3,3
22-82,2:5:4,2.60,4.80,2,1.95,1,1.97,2,1.07,11.75,2.81,0,4
22-82,2:5:3,2.60,4.80,2,1.85,1,1.87,2,1.07,11.72,2.81,2,5
22-82,2:6:6,2.60,4.80,2,1.75,1,1.87,2,1.98,11.79,2.83,6,4
22-82,2:6:3,2.60,4.80,2,1.85,1,1.78,2,1.16,11.74,2.82,6,4
22-82,2:7:9,2.60,4.70,2,1.95,1,1.87,2,1.16,11.68,2.81,0,5
22-82,2:7:4,2.60,4.80,2,1.85,1,1.87,2,1.25,11.76,2.82,3,4
22-82,2:8:1,2.60,4.80,2,1.85,1,1.87,2,1.07,11.69,2.80,0,4
22-82,2:8:4,2.60,4.70,2,1.85,1,1.26,2,1.07,11.81,2.81,1,4
22-82,2:9:1,2.60,4.80,2,1.95,1,1.97,2,1.07,11.68,2.78,6,4
22-82,2:9:4,2.60,4.70,2,1.85,1,1.87,2,1.16,11.73,2.79,3,4
22-82,2:1:1,2.60,4.70,2,1.85,1,1.87,2,1.25,11.72,2.79,5,4
22-82,2:1:4,2.60,4.70,2,1.95,1,1.07,2,1.98,11.74,2.80,0,4
22-82,2:1:1,2.60,4.60,2,1.75,1,1.87,2,1.16,11.68,2.78,5,4
22-82,2:1:5,2.60,4.70,2,1.85,1,1.87,2,1.16,11.77,2.82,0,4
22-82,2:1:2,2.60,4.60,2,1.05,1,1.87,2,1.07,11.72,2.81,3,3
22-82,2:1:5,2.60,4.50,2,1.95,1,1.87,2,1.25,11.69,2.81,0,4
22-82,2:1:2,2.60,4.50,2,1.85,1,1.87,2,1.07,11.84,2.82,6,4
22-82,2:1:5,2.60,4.50,2,1.85,1,1.87,2,1.16,11.68,2.81,3,4
22-82,2:1:2,2.60,4.50,2,1.75,1,1.97,2,1.16,11.68,2.80,0,4
22-82,2:1:5,2.60,4.40,2,1.95,1,1.87,2,1.07,11.71,2.81,2,4
22-82,2:1:2,2.60,4.40,2,1.75,1,1.97,2,1.25,11.75,2.80,2,4
22-82,2:1:1,2.60,4.40,2,1.05,1,1.87,2,1.16,11.79,2.81,0,4
22-82,2:1:3,2.60,4.50,2,1.85,1,1.97,2,1.07,11.70,2.81,4,4
22-82,2:1:3,2.60,4.40,2,1.05,1,1.87,2,1.07,11.80,2.81,0,4
22-82,2:1:3,2.60,4.40,2,1.75,1,1.87,2,1.16,11.71,2.80,0,4
22-82,2:1:6,2.60,4.30,2,1.65,1,1.87,2,1.07,11.75,2.81,6,4
22-82,2:1:3,2.60,4.30,2,1.95,1,1.97,2,1.25,11.75,2.80,1,4
22-82,2:1:9,2.60,4.30,2,1.75,1,1.87,2,1.89,11.74,2.78,5,4
22-82,2:1:4,2.60,4.20,2,1.95,1,1.87,2,1.16,11.76,2.79,1,4
22-82,2:2:1,2.60,4.30,2,1.05,1,1.87,2,1.07,11.75,2.77,0,4
22-82,2:2:4,2.60,4.30,2,1.75,1,1.87,2,1.07,11.77,2.77,0,4
22-82,2:2:1,2.60,4.30,2,1.95,1,1.87,2,1.98,11.77,2.77,5,4
22-82,2:2:4,2.60,4.30,2,1.85,1,1.97,2,1.16,11.74,2.76,0,4
22-82,2:2:1,2.60,4.30,2,1.85,1,1.87,2,1.07,11.78,2.77,2,4
22-82,2:2:4,2.60,4.20,2,1.85,1,1.87,2,1.98,11.75,2.78,0,4
22-82,2:2:1,2.60,4.20,2,1.75,1,1.87,2,1.07,11.82,2.78,0,4
22-82,2:2:5,2.60,4.10,2,1.95,1,1.07,2,1.07,11.74,2.77,0,4
22-82,2:2:2,2.60,4.20,2,1.05,1,1.78,2,1.07,11.80,2.76,0,4
22-82,2:2:5,2.60,4.20,2,1.85,1,1.87,2,1.07,11.76,2.75,0,4
22-82,2:2:2,2.60,4.10,2,1.85,1,1.87,2,1.16,11.76,2.74,3,4
22-82,2:2:5,2.60,4.20,2,1.75,1,1.87,2,1.07,11.80,2.75,0,4
22-82,2:2:2,2.60,4.10,2,1.85,1,1.97,2,1.07,11.74,2.75,6,4
22-82,2:2:5,2.60,4.10,2,1.85,1,1.97,2,1.16,11.80,2.75,6,4
22-82,2:2:2,2.60,4.10,2,1.05,1,1.87,2,1.16,11.77,2.75,0,4
22-82,2:2:1,2.60,4.00,2,1.75,1,1.87,2,1.07,11.77,2.77,0,4
22-82,2:2:3,2.60,4.00,2,1.95,1,1.87,2,1.16,11.78,2.75,0,4
22-82,2:2:3,2.60,4.00,2,1.85,1,1.87,2,1.16,11.77,2.73,6,4
22-82,2:2:3,2.60,4.00,2,1.05,1,1.87,2,1.07,11.80,2.74,6,4
22-82,2:3:6,2.60,4.00,2,1.95,1,1.87,2,1.25,11.81,2.74,8,4
22-82,2:3:3,2.60,4.00,2,1.85,1,1.87,2,1.25,11.83,2.73,4,4
22-82,2:3:8,2.60,4.00,2,1.65,1,1.87,2,1.07,11.80,2.74,1,4
22-82,2:3:4,2.60,4.00,2,1.95,1,1.07,2,1.16,11.83,2.72,5,4
22-82,2:3:1,2.60,4.00,2,1.85,1,1.97,2,1.07,11.81,2.72,6,4
22-82,2:3:4,2.60,4.00,2,1.85,1,1.87,2,1.98,11.83,2.72,2,4
22-82,2:3:1,2.60,4.00,2,1.95,1,1.87,2,1.16,11.78,2.72,5,4
22-82,2:3:4,2.60,4.00,2,1.65,1,1.87,2,1.07,11.78,2.72,0,4
22-82,2:3:1,2.60,3.90,2,1.95,1,1.87,2,1.25,11.86,2.71,7,4
22-82,2:3:4,2.60,3.90,2,1.65,1,1.87,2,1.07,11.81,2.70,0,4
22-82,2:3:1,2.60,3.90,2,1.85,1,1.97,2,1.07,11.81,2.72,7,3
22-82,2:3:5,2.60,3.90,2,1.65,1,1.87,2,1.07,11.80,2.72,5,4
22-82,2:3:2,2.60,3.90,2,1.75,1,1.87,2,1.16,11.77,2.71,4,3
22-82,2:3:5,2.60,3.90,2,1.75,1,1.87,2,1.07,11.84,2.73,4,3
22-82,2:3:2,2.60,3.90,2,1.85,1,1.87,2,1.16,11.78,2.72,0,3
22-82,2:3:5,2.60,3.90,2,1.75,1,1.87,2,1.98,11.77,2.71,0,4
22-82,2:3:2,2.60,3.90,2,1.75,1,1.87,2,1.07,11.82,2.69,0,4
22-82,2:3:5,2.60,3.80,2,1.75,1,1.87,2,1.16,11.77,2.70,8,4
22-82,2:3:2,2.60,3.90,2,1.75,1,1.87,2,1.98,11.72,2.69,3,4
22-82,2:4:0,2.60,3.90,2,1.85,1,1.97,2,1.16,11.81,2.71,9,4
22-82,2:4:3,2.60,3.80,2,1.75,1,1.87,2,1.25,11.76,2.70,4,4
22-82,2:4:3,2.60,3.90,2,1.85,1,1.87,2,1.07,11.72,2.69,0,4
22-82,2:4:3,2.60,3.90,2,1.05,1,1.87,2,1.98,11.79,2.69,0,3
22-82,2:4:6,2.60,3.80,2,1.75,1,1.87,2,1.98,11.73,2.67,2,3
22-82,2:4:3,2.60,3.80,2,1.75,1,1.87,2,1.07,11.78,2.68,7,3
22-82,2:4:8,2.60,3.80,2,1.85,1,1.87,2,1.16,11.75,2.68,5,4
22-82,2:4:3,2.60,3.80,2,1.75,1,1.87,2,1.98,11.75,2.67,6,4
22-82,2:4:1,2.60,3.70,2,1.75,1,1.97,2,1.98,11.83,2.69,0,3
22-82,2:4:4,2.60,3.70,2,1.85,1,1.87,2,1.98,11.73,2.67,0,3
22-82,2:4:1,2.60,3.80,2,1.95,1,1.87,2,1.07,11.79,2.69,6,4
22-82,2:4:4,2.50,3.80,2,1.85,1,1.87,2,1.25,11.78,2.67,1,4
22-82,2:4:1,2.50,3.80,2,1.65,1,1.87,2,1.07,11.80,2.67,4,4
22-82,2:4:4,2.50,3.80,2,1.85,1,1.97,2,1.07,11.66,2.67,1,4
22-82,2:4:1,2.60,3.70,2,1.65,1,1.97,2,1.98,11.73,2.67,6,4
22-82,2:4:5,2.50,3.80,2,1.05,1,1.78,2,1.07,11.78,2.67,0,3
22-82,2:4:2,2.60,3.80,2,1.75,1,1.97,2,1.07,11.77,2.67,8,4
22-82,2:4:5,2.50,3.80,2,1.75,1,1.97,2,1.98,11.75,2.69,0,3
22-82,2:4:2,2.50,3.80,2,1.75,1,1.78,2,1.07,11.76,2.66,0,4
22-82,2:4:5,2.50,3.80,2,1.85,1,1.87,2,1.16,11.75,2.65,5,4
22-82,2:5:2,2.60,3.70,2,1.85,1,1.97,2,1.98,11.81,2.63,4,3
22-82,2:5:5,2.60,3.70,2,1.05,1,1.78,2,1.16,11.85,2.65,2,4
22-82,2:5:2,2.60,3.80,2,1.65,1,1.87,2,1.07,11.80,2.63,2,3
22-82,2:5:0,2.50,3.80,2,1.75,1,1.87,2,1.98,11.81,2.64,8,4
22-82,2:5:3,2.50,3.70,2,1.85,1,1.87,2,1.07,11.85,2.64,0,4
22-82,2:5:3,2.60,3.70,2,1.75,1,1.87,2,1.07,11.89,2.64,7,3
22-82,2:5:3,2.50,3.70,2,1.05,1,1.97,2,1.16,11.77,2.62,0,4
22-82,2:5:5,2.60,3.70,2,1.65,1,1.87,2,1.98,11.81,2.64,0,4
22-82,2:5:3,2.60,3.70,2,1.85,1,1.97,2,1.98,11.83,2.64,0,3
22-82,2:5:8,2.60,3.70,2,1.95,1,1.87,2,1.07,11.78,2.62,3,3
22-82,2:5:3,2.50,3.70,2,1.75,1,1.87,2,1.25,11.81,2.63,0,4
22-82,2:5:1,2.50,3.70,2,1.85,1,1.87,2,1.07,11.84,2.62,0,3
22-82,2:5:4,2.60,3.70,2,1.85,1,1.78,2,1.98,11.82,2.64,0,4
22-82,2:5:1,2.60,3.70,2,1.65,1,1.87,2,1.07,11.79,2.62,0,4
22-82,2:5:4,2.60,3.70,2,1.65,1,1.87,2,1.07,11.83,2.61,6,4
22-82,2:5:1,2.50,3.70,2,1.55,1,1.97,2,1.16,11.84,2.64,2,3
22-82,2:5:4,2.60,3.70,2,1.85,1,1.87,2,1.07,11.76,2.62,5,4
22-82,2:5:1,2.50,3.70,2,1.65,1,1.87,2,1.16,11.81,2.63,0,3
22-82,2:5:5,2.60,3.70,2,1.75,1,1.87,2,1.98,11.87,2.65,5,3
22-82,2:0:2,2.50,3.80,2,1.85,1,1.87,2,1.25,11.85,2.62,0,3
22-82,2:0:5,2.50,3.70,2,1.85,1,1.87,2,1.98,11.88,2.62,0,3
22-82,2:1:2,2.50,3.70,2,1.95,1,1.87,2,1.07,11.87,2.61,8,3
22-82,2:1:5,2.50,3.70,2,1.75,1,1.97,2,1.98,11.80,2.61,4,3
22-82,2:2:2,2.50,3.70,2,1.85,1,1.87,2,1.25,11.80,2.61,0,3
22-82,2:2:5,2.50,3.70,2,1.65,1,1.07,2,1.98,11.82,2.62,2,3
22-82,2:3:2,2.60,3.70,2,1.75,1,1.97,2,1.07,11.75,2.59,0,4
22-82,2:4:0,2.50,3.70,2,1.85,1,1.87,2,1.16,11.82,2.59,0,3
22-82,2:4:3,2.50,3.70,2,1.85,1,1.07,2,1.07,11.83,2.60,0,3
22-82,2:5:3,2.50,3.70,2,1.75,1,1.87,2,1.07,11.79,2.59,1,3
22-82,2:5:3,2.60,3.70,2,1.75,1,1.87,2,1.16,11.85,2.59,0,4
22-82,2:6:5,2.50,3.70,2,1.75,1,1.87,2,1.16,11.76,2.55,5,3
22-82,2:6:3,2.50,3.70,2,1.65,1,1.97,2,1.16,11.78,2.56,0,4
22-82,2:7:8,2.50,3.60,2,1.75,1,1.87,2,1.98,11.82,2.56,5,3
22-82,2:7:3,2.60,3.70,2,1.65,1,1.97,2,1.07,11.78,2.54,0,4
22-82,2:8:1,2.50,3.70,2,1.65,1,1.87,2,1.16,11.83,2.56,0,4
22-82,2:8:4,2.50,3.70,2,1.65,1,1.87,2,1.07,11.85,2.55,0,3
22-82,2:9:1,2.50,3.70,2,1.65,1,1.87,2,1.16,11.83,2.55,0,3
22-82,2:9:4,2.50,3.60,2,1.75,1,1.87,2,1.07,11.89,2.57,5,3
22-82,2:1:1,2.50,3.70,2,1.55,1,1.87,2,1.07,11.85,2.55,0,3
22-82,2:1:4,2.50,3.70,2,1.75,1,1.87,2,1.07,11.86,2.54,7,3
22-82,2:1:1,2.50,3.60,2,1.75,1,1.87,2,1.98,11.85,2.54,6,3
22-82,2:1:4,2.50,3.60,2,1.65,1,1.07,2,1.98,11.88,2.55,0,3
22-82,2:1:2,2.50,3.60,2,1.65,1,1.97,2,1.07,11.89,2.54,0,4
22-82,2:1:5,2.50,3.60,2,1.65,1,1.87,2,1.98,11.89,2.54,3,4
22-82,2:1:2,2.50,3.60,2,1.65,1,1.87,2,1.98,11.95,2.54,6,4
22-82,2:1:5,2.50,3.60,2,1.65,1,1.87,2,1.07,11.91,2.55,0,4
22-82,2:1:2,2.50,3.60,2,1.65,1,1.87,2,1.07,11.94,2.54,0,3
22-82,2:1:5,2.50,3.70,2,1.85,1,1.87,2,1.07,11.95,2.55,5,4
22-82,2:1:2,2.50,3.60,2,1.75,1,1.87,2,1.07,11.98,2.55,4,4
22-82,2:1:0,2.50,3.70,2,1.65,1,1.87,2,1.07,11.94,2.54,6,3
22-82,2:1:3,2.50,3.60,2,1.75,1,1.26,2,1.07,11.99,2.54,0,4
22-82,2:1:2,2.50,3.60,2,1.65,1,1.97,2,1.98,11.01,2.55,0,3
22-82,2:1:3,2.50,3.60,2,1.55,1,1.16,2,1.98,11.92,2.53,0,4
22-82,2:1:5,2.50,3.60,2,1.85,1,1.07,2,1.98,11.92,2.52,4,4
22-82,2:1:3,2.50,3.60,2,1.75,1,1.07,2,1.25,11.94,2.53,0,4
22-82,2:1:8,2.50,3.60,2,1.65,1,1.87,2,1.07,11.02,2.54,6,3
22-82,2:1:3,2.50,3.60,2,1.65,1,1.87,2,1.07,11.01,2.52,0,3
22-8-2,2:2:1,2.50,3.60,2,1.75,1,1.87,2,1.16,11.98,2.52,1,3
22-82,2:2:4,2.50,3.60,2,1.85,1,1.87,2,1.16,11.99,2.52,3,3
22-82,2:2:1,2.50,3.60,2,1.75,1,1.07,2,1.07,11.97,2.51,0,4
22-82,2:2:4,2.50,3.60,2,1.65,1,1.97,2,1.16,11.01,2.50,2,4
22-82,2:2:1,2.50,3.60,2,1.75,1,1.87,2,1.07,11.02,2.52,4,4
22-82,2:2:4,2.50,3.60,2,1.75,1,1.97,2,1.16,11.02,2.52,4,4
22-82,2:2:1,2.50,3.60,2,1.55,1,1.16,2,1.98,11.02,2.52,0,3
22-82,2:2:4,2.50,3.60,2,1.75,1,1.87,2,1.16,11.98,2.51,5,4
22-82,2:2:2,2.50,3.50,2,1.46,1,1.97,2,1.07,11.97,2.52,7,4
22-82,2:2:5,2.50,3.50,2,1.65,1,1.07,2,1.07,11.94,2.49,4,4
22-82,2:2:2,2.50,3.60,2,1.65,1,1.16,2,1.98,11.00,2.50,6,3
22-82,2:2:5,2.50,3.50,2,1.65,1,1.26,2,1.98,11.00,2.51,0,3
22-82,2:2:2,2.50,3.60,2,1.65,1,1.87,2,1.98,11.98,2.50,2,4
22-82,2:2:5,2.50,3.50,2,1.85,1,1.87,2,1.07,11.97,2.50,0,4
22-82,2:2:2,2.50,3.60,2,1.75,1,1.87,2,1.07,11.02,2.51,7,3
22-82,2:2:0,2.50,3.60,2,1.65,1,1.26,2,1.07,11.96,2.49,0,3
22-82,2:2:3,2.50,3.60,2,1.55,1,1.97,2,1.98,11.94,2.49,2,4
22-82,2:2:2,2.50,3.50,2,1.65,1,1.36,2,1.98,11.95,2.50,0,4
22-82,2:2:3,2.50,3.60,2,1.65,1,1.97,2,1.07,11.03,2.51,3,3
22-82,2:3:5,2.50,3.60,2,1.55,1,1.16,2,1.98,11.97,2.50,2,4
22-82,2:3:3,2.50,3.60,2,1.75,1,1.87,2,1.98,11.00,2.50,0,3
22-82,2:3:7,2.50,3.60,2,1.65,1,1.87,2,1.16,11.96,2.49,0,4
22-82,2:3:3,2.50,3.60,2,1.65,1,1.97,2,1.07,11.94,2.48,5,4
22-82,2:3:1,2.50,3.60,2,1.85,1,1.87,2,1.98,11.97,2.49,0,4
22-82,2:3:4,2.50,3.60,2,1.65,1,1.16,2,1.07,11.97,2.49,3,4
22-82,2:3:1,2.50,3.60,2,1.65,1,1.16,2,1.25,11.97,2.49,5,3
22-82,2:3:4,2.50,3.60,2,1.65,1,1.26,2,1.07,11.94,2.49,2,4
22-82,2:3:1,2.50,3.70,2,1.46,1,1.26,2,1.07,11.02,2.49,7,3
22-82,2:3:4,2.50,3.70,2,1.95,1,1.16,2,1.07,11.00,2.47,0,3
22-82,2:3:1,2.50,3.60,2,1.65,1,1.07,2,1.07,11.97,2.47,0,4
22-82,2:3:4,2.50,3.70,2,1.65,1,1.16,2,1.16,11.97,2.47,0,3
22-82,2:3:2,2.50,3.70,2,1.65,1,1.16,2,1.25,11.94,2.47,5,3
22-82,2:3:5,2.50,3.70,2,1.75,1,1.36,2,1.16,11.00,2.49,5,3
22-82,2:3:2,2.50,3.70,2,1.65,1,1.87,2,1.07,11.01,2.47,5,3
22-82,2:3:5,2.50,3.70,2,1.65,1,1.16,2,1.98,11.00,2.47,5,4
22-82,2:3:2,2.50,3.70,2,1.75,1,1.16,2,1.16,11.95,2.46,0,3
22-82,2:3:5,2.50,3.80,2,1.65,1,1.26,2,1.07,11.99,2.49,4,4
22-82,2:3:2,2.50,3.70,2,1.55,1,1.36,2,1.07,11.04,2.47,5,3
22-82,2:3:5,2.50,3.80,2,1.75,1,1.16,2,1.07,11.96,2.46,5,3
22-82,2:4:3,2.50,3.80,2,1.65,1,1.26,2,1.07,11.99,2.47,4,3
22-82,2:4:2,2.50,3.80,2,1.65,1,1.26,2,1.25,11.97,2.46,3,3
22-82,2:4:3,2.50,3.80,2,1.55,1,1.36,2,1.07,11.98,2.47,0,3
22-82,2:4:5,2.50,3.80,2,1.85,1,1.26,2,1.16,11.97,2.44,0,3
22-82,2:4:3,2.50,3.90,2,1.55,1,1.26,2,1.16,11.96,2.44,3,3
22-82,2:4:7,2.50,3.90,2,1.65,1,1.26,2,1.16,11.93,2.44,0,3
22-82,2:4:3,2.50,3.80,2,1.65,1,1.26,2,1.07,11.92,2.45,0,3
22-82,2:4:1,2.50,3.90,2,1.46,1,1.26,2,1.98,11.00,2.46,0,3
22-82,2:4:4,2.50,3.90,2,1.65,1,1.46,2,1.16,11.03,2.46,1,3
22-82,2:4:1,2.50,3.90,2,1.65,1,1.46,2,1.07,11.99,2.44,0,3
22-82,2:4:4,2.50,3.90,2,1.65,1,1.36,2,1.07,11.96,2.42,0,3
22-82,2:4:1,2.50,3.90,2,1.55,1,1.46,2,1.07,11.99,2.44,0,3
22-82,2:4:4,2.50,4.00,2,1.65,1,1.55,2,1.98,11.99,2.44,0,3
22-82,2:4:1,2.50,4.00,2,1.65,1,1.55,2,1.98,11.95,2.42,0,3
22-82,2:4:4,2.50,4.00,2,1.75,1,1.65,2,1.07,11.04,2.44,7,3
22-82,2:4:2,2.50,4.00,2,1.65,1,1.55,2,1.98,11.98,2.42,0,3
22-82,2:4:5,2.40,4.00,2,1.65,1,1.36,2,1.98,11.02,2.44,5,3
22-82,2:4:2,2.50,4.10,2,1.55,1,1.07,2,1.07,11.07,2.44,4,3
22-82,2:4:5,2.40,4.00,2,1.65,1,1.16,2,1.98,11.00,2.42,4,3
22-82,2:5:2,2.50,4.10,2,1.75,1,1.97,2,1.07,11.96,2.41,0,3
22-82,2:5:5,2.40,4.00,2,1.85,1,1.07,2,1.07,11.04,2.44,1,3
22-82,2:5:2,2.40,4.10,2,1.55,1,1.26,2,1.98,11.97,2.42,0,2
22-82,2:5:5,2.40,4.10,2,1.75,1,1.26,2,1.98,11.99,2.42,1,3
22-82,2:5:3,2.40,4.10,2,1.75,1,1.26,2,1.98,11.94,2.41,5,3
22-82,2:5:2,2.40,4.20,2,1.46,1,1.36,2,1.98,11.01,2.41,2,3
22-82,2:5:3,2.40,4.10,2,1.55,1,1.26,2,1.98,11.00,2.39,5,2
22-82,2:5:4,2.40,4.10,2,1.65,1,1.46,2,1.98,11.99,2.39,3,3
22-82,2:5:3,2.40,4.20,2,1.75,1,1.26,2,1.25,11.01,2.41,5,3
22-82,2:5:7,2.40,4.20,2,1.65,1,1.26,2,1.16,11.02,2.42,0,3
22-82,2:5:3,2.40,4.30,2,1.75,1,1.36,2,1.07,11.01,2.41,4,2
22-82,2:5:1,2.40,4.20,2,1.65,1,1.85,2,1.16,11.08,2.40,5,3
22-82,2:5:4,2.40,4.20,2,1.65,1,1.05,2,1.07,11.03,2.37,0,3
22-82,2:5:1,2.40,4.20,2,1.75,1,1.95,2,1.98,11.07,2.38,3,3
22-82,2:5:4,2.40,4.30,2,1.55,1,1.05,2,1.07,11.03,2.37,6,3
22-82,2:5:1,2.40,4.30,2,1.55,1,1.95,2,1.07,11.03,2.38,0,3
22-82,2:5:4,2.40,4.30,2,1.75,1,1.85,2,1.98,11.03,2.37,1,3
22-82,2:5:1,2.40,4.30,2,1.75,1,1.85,2,1.16,11.05,2.37,6,3
22-82,2:5:4,2.40,4.30,2,1.65,1,1.95,2,1.98,11.08,2.39,0,3
22-82,0:0:2,2.40,4.30,2,1.65,1,1.85,2,1.98,11.03,2.38,0,3
22-82,0:0:5,2.40,4.40,2,1.65,1,1.05,2,1.98,11.12,2.39,5,3
22-82,0:1:2,2.30,4.40,2,1.65,1,1.95,2,1.07,11.02,2.37,0,2
22-82,0:1:5,2.30,4.40,2,1.85,1,1.85,2,1.07,11.05,2.36,0,4
22-82,0:2:2,2.30,4.40,2,1.46,1,1.85,2,1.07,11.06,2.37,0,4
22-82,0:2:5,2.30,4.40,2,1.95,1,1.85,2,1.16,11.06,2.35,0,3
22-82,0:3:2,2.30,4.40,2,1.65,1,1.95,2,1.07,11.08,2.36,0,4
22-82,0:3:5,2.30,4.50,2,1.75,1,1.75,2,1.07,11.05,2.35,0,3
22-82,0:4:3,2.30,4.50,2,1.65,1,1.85,2,1.98,11.05,2.34,5,3
22-82,0:5:2,2.30,4.60,2,1.65,1,1.85,2,1.98,11.02,2.33,0,3
22-82,0:5:3,2.30,4.60,2,1.55,1,1.95,2,1.98,11.04,2.31,4,4
22-82,0:6:4,2.30,4.60,2,1.75,1,1.95,2,1.16,11.00,2.32,4,4
22-82,0:6:3,2.30,4.60,2,1.65,1,1.85,2,1.16,11.07,2.33,0,3
22-82,0:7:7,2.30,4.60,2,1.65,1,1.05,2,1.98,11.01,2.31,2,3
22-82,0:7:3,2.30,4.60,2,1.55,1,1.85,2,1.07,11.04,2.31,2,4
22-82,0:8:9,2.30,4.70,2,1.55,1,1.95,2,1.98,11.06,2.33,4,4
22-82,0:8:4,2.30,4.80,2,1.65,1,1.85,2,1.07,11.99,2.31,5,3
22-82,0:9:1,2.30,4.70,2,1.65,1,1.95,2,1.07,11.00,2.31,5,4
22-82,0:9:4,2.30,4.70,2,1.75,1,1.05,2,1.16,11.98,2.30,0,3
22-82,0:1:1,2.30,4.70,2,1.75,1,1.85,2,1.98,11.02,2.31,6,3
22-82,0:1:4,2.30,4.70,2,1.55,1,1.95,2,1.98,11.10,2.31,4,4
22-82,0:1:1,2.30,4.80,2,1.65,1,1.95,2,1.07,11.04,2.30,5,4
22-82,0:1:4,2.30,4.80,2,1.65,1,1.75,2,1.16,11.04,2.32,1,3
22-82,0:1:2,2.30,4.80,2,1.75,1,1.65,2,1.98,11.05,2.31,5,4
22-82,0:1:5,2.30,4.80,2,1.55,1,1.65,2,1.07,11.09,2.31,0,3
22-82,0:1:2,2.30,4.80,2,1.55,1,1.85,2,1.98,11.09,2.31,3,3
22-82,0:1:5,2.30,4.80,2,1.55,1,1.65,2,1.07,11.06,2.29,0,3
22-82,0:1:2,2.30,4.90,2,1.55,1,1.85,2,1.98,11.09,2.29,4,3
22-82,0:1:5,2.30,4.90,2,1.65,1,1.85,2,1.98,11.10,2.31,7,4
22-82,0:1:2,2.30,4.90,2,1.55,1,1.85,2,1.98,11.16,2.30,4,3
22-82,0:1:5,2.30,4.00,2,1.65,1,1.65,2,1.07,11.13,2.30,4,4
22-82,0:1:3,2.30,4.00,2,1.65,1,1.85,2,1.98,11.14,2.30,5,3
22-82,0:1:1,2.30,4.10,2,1.75,1,1.75,2,1.07,11.09,2.29,0,4
22-82,0:1:3,2.30,4.00,2,1.65,1,1.65,2,1.07,11.08,2.29,6,3
22-82,0:1:4,2.30,4.10,2,1.65,1,1.75,2,1.07,11.13,2.28,0,4
22-82,0:1:3,2.30,4.10,2,1.46,1,1.65,2,1.07,11.10,2.29,6,3
22-82,0:1:7,2.30,4.10,2,1.65,1,1.75,2,1.07,11.17,2.29,3,3
22-82,0:1:3,2.30,4.10,2,1.65,1,1.36,2,1.25,11.11,2.27,7,4
22-82,0:2:9,2.30,4.10,2,1.55,1,1.36,2,1.98,11.11,2.28,6,4
22-82,0:2:4,2.30,4.10,2,1.65,1,1.36,2,1.16,11.06,2.28,4,3
22-82,0:2:1,2.30,4.10,2,1.55,1,1.55,2,1.07,11.15,2.29,3,4
22-82,0:2:4,2.30,4.10,2,1.75,1,1.36,2,1.16,11.09,2.27,2,4
22-82,0:2:1,2.30,4.20,2,1.55,1,1.36,2,1.98,11.17,2.28,0,3
22-82,0:2:4,2.30,4.20,2,1.55,1,1.65,2,1.07,11.11,2.25,1,4
22-82,0:2:1,2.30,4.20,2,1.65,1,1.55,2,1.07,11.12,2.26,0,3
22-82,0:2:4,2.30,4.20,2,1.65,1,1.65,2,1.16,11.15,2.27,5,3
22-82,0:2:2,2.30,4.20,2,1.55,1,1.55,2,1.07,11.10,2.26,0,3
22-82,0:2:5,2.30,4.20,2,1.65,1,1.46,2,1.07,11.16,2.24,0,3
22-82,0:2:2,2.30,4.20,2,1.65,1,1.65,2,1.16,11.13,2.25,0,3
22-82,0:2:5,2.30,4.20,2,1.46,1,1.55,2,1.07,11.15,2.25,5,3
22-82,0:2:2,2.30,4.30,2,1.65,1,1.55,2,1.07,11.16,2.25,0,3
22-82,0:2:5,2.30,4.30,2,1.55,1,1.65,2,1.07,11.21,2.25,5,3
22-82,0:2:2,2.30,4.30,2,1.55,1,1.85,2,1.07,11.16,2.24,5,4
22-82,0:2:5,2.30,4.40,2,1.55,1,1.55,2,1.98,11.20,2.23,2,4
22-82,0:2:3,2.30,4.40,2,1.55,1,1.65,2,1.98,11.20,2.24,5,3
22-82,0:2:1,2.30,4.30,2,1.65,1,1.75,2,1.16,11.21,2.24,0,3
22-82,0:2:3,2.30,4.40,2,1.55,1,1.65,2,1.98,11.11,2.23,4,3
22-82,0:3:4,2.30,4.40,2,1.55,1,1.95,2,1.07,11.26,2.23,7,3
22-82,0:3:3,2.30,4.40,2,1.55,1,1.65,2,1.07,11.27,2.23,0,3
22-82,0:3:6,2.30,4.40,2,1.65,1,1.55,2,1.98,11.22,2.24,7,3
22-82,0:3:3,2.30,4.40,2,1.46,1,1.95,2,1.98,11.21,2.23,0,3
22-82,0:3:9,2.30,4.40,2,1.46,1,1.65,2,1.16,11.16,2.23,3,3
22-82,0:3:4,2.20,4.30,2,1.55,1,1.55,2,1.07,11.21,2.21,5,3
22-82,0:3:1,2.20,4.30,2,1.46,1,1.65,2,1.98,11.18,2.21,1,3

Another issue I haven't gotten to yet is the header has 'collected characters not known to the English language' so to speak, which should be the first thing to jump out in the above.

As to the HTML, noiasca, thanks for that link, it doesn't like the formatting from the IDE though and it would take much too long to remove all that, only to have to add it all again to put back into the sketch.

Thanks for the responses!

Just to add the log file used to look like the below:

Date,Time,Temperature(°C),Humidity(%),Soil Temperature(°C),Soil Moisture(%),Sea Level Air Pressure(mb),BMP180 IC Temperature(°C),Light Intensity(Units?)
2021-6-23,22:43:33,23.90,49.80,25,17.26,1016.44,25.88,0
2021-6-23,22:44:35,23.90,49.80,25,16.58,1016.55,25.83,0
2021-6-23,22:45:36,24.00,49.60,25,16.49,1016.50,25.78,0
2021-6-23,22:46:37,23.90,50.30,25,16.58,1016.50,25.77,0
2021-6-23,22:47:39,23.90,49.80,25,16.49,1016.50,25.74,0
2021-6-23,22:48:40,23.80,50.00,25,16.39,1016.46,25.76,0
2021-6-23,22:49:41,23.80,50.00,24,16.49,1016.49,25.78,0
2021-6-23,22:50:43,23.80,49.90,25,16.58,1016.44,25.71,0
2021-6-23,22:51:44,23.80,50.20,25,16.49,1016.48,25.74,0
2021-6-23,22:52:45,23.80,50.00,25,16.58,1016.46,25.72,0
2021-6-23,22:53:47,23.80,50.20,24,16.49,1016.43,25.69,0
2021-6-23,22:54:48,23.70,50.50,25,16.58,1016.38,25.69,0
2021-6-23,22:55:49,23.70,50.40,24,16.58,1016.38,25.67,0
2021-6-23,22:56:51,23.70,50.60,25,16.58,1016.42,25.72,0
2021-6-23,22:57:52,23.80,50.30,24,16.49,1016.44,25.71,0
2021-6-23,22:58:53,23.80,50.40,25,16.58,1016.54,25.72,0
2021-6-23,22:59:55,23.80,49.90,24,16.49,1016.52,25.72,0
2021-6-23,23:0:56,23.90,50.30,24,16.68,1016.46,25.68,0
2021-6-23,23:1:57,23.80,49.70,24,16.39,1016.57,25.72,0
2021-6-23,23:2:59,23.90,50.30,24,16.49,1016.54,25.79,0
2021-6-23,23:4:0,23.80,49.90,24,16.49,1016.51,25.72,0
2021-6-23,23:5:2,23.80,50.50,24,16.49,1016.52,25.72,0
2021-6-23,23:6:3,23.80,50.20,24,16.49,1016.53,25.74,0
2021-6-23,23:7:4,23.80,50.50,24,16.49,1016.55,25.77,0
2021-6-23,23:8:6,23.80,50.20,24,16.49,1016.53,25.75,0
2021-6-23,23:9:7,23.90,50.10,24,16.49,1016.58,25.76,0
2021-6-23,23:10:8,23.90,50.30,24,16.49,1016.55,25.74,0
2021-6-23,23:11:10,23.90,50.30,24,16.68,1016.56,25.79,0
2021-6-23,23:12:11,23.90,50.00,24,16.39,1016.60,25.77,0
2021-6-23,23:13:12,23.90,50.20,24,16.49,1016.59,25.80,0
2021-6-23,23:14:14,23.90,50.00,24,16.49,1016.58,25.79,0
2021-6-23,23:15:15,23.90,50.30,24,16.58,1016.60,25.80,0
2021-6-23,23:16:16,23.90,50.00,24,16.58,1016.54,25.79,0
2021-6-23,23:17:17,23.80,50.30,24,16.39,1016.54,25.76,0
2021-6-23,23:18:19,23.80,49.90,24,16.49,1016.57,25.83,0
2021-6-23,23:19:20,23.80,50.00,24,16.49,1016.55,25.84,0
2021-6-23,23:20:22,23.90,50.20,24,16.58,1016.61,25.83,0
2021-6-23,23:21:23,23.80,50.00,24,16.58,1016.61,25.81,0
2021-6-23,23:22:24,23.90,88.80,24,16.58,1016.62,25.82,0
2021-6-23,23:23:26,24.00,99.90,24,16.49,1016.57,25.82,0
2021-6-23,23:24:27,28.90,39.60,24,16.39,1016.59,25.73,0
2021-6-23,23:25:28,29.00,40.70,24,16.58,1016.56,25.69,0
2021-6-23,23:26:29,28.40,42.00,24,16.49,1016.54,25.68,0
2021-6-23,23:27:31,27.40,43.50,24,16.39,1016.60,25.68,0
2021-6-23,23:28:32,26.50,44.50,24,16.58,1016.60,25.67,0
2021-6-23,23:29:33,26.00,46.10,24,16.39,1016.59,25.66,0
2021-6-23,23:30:35,25.50,46.20,24,16.58,1016.59,25.66,0
2021-6-23,23:31:36,25.20,47.20,24,16.49,1016.55,25.65,0
2021-6-23,23:32:37,25.00,47.80,24,16.58,1016.63,25.64,0
2021-6-23,23:33:39,24.80,48.30,24,16.49,1016.69,25.66,0
2021-6-23,23:34:40,24.70,48.70,24,16.58,1016.68,25.63,0
2021-6-23,23:35:41,24.60,48.90,24,16.49,1016.64,25.64,0
2021-6-23,23:36:43,24.60,49.10,24,16.49,1016.62,25.63,0
2021-6-23,23:37:44,24.60,49.20,23,16.49,1016.67,25.63,0
2021-6-23,23:38:46,24.50,49.40,24,16.49,1016.66,25.61,0
2021-6-23,23:39:47,24.50,49.40,24,16.39,1016.82,25.65,0
2021-6-23,23:40:48,24.50,49.50,23,16.49,1016.70,25.62,0
2021-6-23,23:41:50,24.50,49.50,24,16.49,1016.73,25.63,0
2021-6-23,23:42:51,24.50,49.60,24,16.49,1016.74,25.61,0
2021-6-23,23:43:52,24.50,49.60,24,16.49,1016.81,25.61,0
2021-6-23,23:44:53,24.50,49.60,24,16.39,1016.71,25.60,0
2021-6-23,23:45:55,24.50,49.50,24,16.58,1016.71,25.60,0
2021-6-23,23:46:56,24.50,49.50,24,16.30,1016.78,25.60,0
2021-6-23,23:47:58,24.50,49.50,24,16.68,1016.83,25.61,0
2021-6-23,23:48:59,24.50,49.50,23,16.39,1016.80,25.60,0
2021-6-23,23:50:0,24.50,49.40,24,16.49,1016.82,25.59,0
2021-6-23,23:51:2,24.50,49.50,23,16.39,1016.87,25.61,0
2021-6-23,23:52:3,24.50,49.50,23,16.39,1016.88,25.61,0
2021-6-23,23:53:4,24.50,49.50,23,16.39,1016.86,25.60,0
2021-6-23,23:54:5,24.60,49.40,24,16.49,1016.81,25.60,0
2021-6-23,23:55:7,24.60,49.40,23,16.30,1016.87,25.59,0
2021-6-23,23:56:8,24.60,49.50,23,16.58,1016.96,25.60,0
2021-6-23,23:57:9,24.60,49.40,23,16.49,1016.90,25.59,0
2021-6-23,23:58:11,24.60,49.40,23,16.30,1016.83,25.59,0
2021-6-23,23:59:12,24.60,49.40,23,16.49,1016.89,25.60,0
2021-6-24,0:0:14,24.60,49.40,23,16.39,1016.91,25.58,0
2021-6-24,0:1:15,24.60,49.40,23,16.39,1016.87,25.58,0
2021-6-24,0:2:16,24.60,49.40,23,16.39,1016.95,25.58,0
2021-6-24,0:3:17,24.60,49.40,23,16.30,1016.95,25.57,0
2021-6-24,0:4:19,24.60,49.40,23,16.39,1016.97,25.58,0
2021-6-24,0:5:20,24.60,49.40,24,16.49,1017.00,25.57,0
2021-6-24,0:6:22,24.60,49.40,23,16.49,1017.03,25.57,0
2021-6-24,0:7:23,24.60,49.30,23,16.39,1016.95,25.56,0
2021-6-24,0:8:24,24.60,49.30,23,16.39,1017.05,25.57,0
2021-6-24,0:9:25,24.60,49.30,23,16.39,1017.02,25.56,0
2021-6-24,0:10:27,24.60,49.40,23,16.39,1016.97,25.56,0
2021-6-24,0:11:28,24.60,49.40,23,16.39,1016.99,25.55,0
2021-6-24,0:12:29,24.60,49.40,24,16.39,1017.05,25.57,0
2021-6-24,0:13:31,24.60,49.30,23,16.39,1017.01,25.55,0
2021-6-24,0:14:32,24.60,49.40,23,16.49,1016.99,25.53,0
2021-6-24,0:15:33,24.60,49.40,23,16.58,1017.04,25.55,0
2021-6-24,0:16:35,24.60,49.40,24,16.58,1017.06,25.54,0

Just to be clear, your issue is only with the data sent to the open log sd card. All the Serial data in your sketch which is reported after the open log data is correct?

Yes that is correct, what comes over serial, displayed on the OLED, and web page are all fine. One of the moisture sensors 'soils the mattress' so to speak quite often, but the issue with the log file happens regardless.

#include "SparkFun_Qwiic_OpenLog_Arduino_Library.h" //I2C SD card data logger

You are including the library for the i2c version of the open logger. Is that what you are using?

Your sketch with the myLog.print() is using the syntax of the Serial version of the open logger. The syntax for the i2c version is .write() for a single char and .writeString() for multi bytes, but must be less than 31 in the line.

You say that everything worked properly until you added the
web page and the oled so perhaps you do have the Serial version. But then again I would think that with the mkr1000 you would have the serial version connected to Serial1.

Please clarify what Open Log you are using, and how it is connected to the Arduino.

Everything except the LDRs are I2C, the Open Log is the I2C version, I believe there is a solder trace you cut to use over serial. The components are tested individually with a Micro, and then added to the MKR1000 one by one. The issue started after adding the HTML, the MKR1000 was not using WiFi at first, it was the last step as I wanted the hardware working before tackling the WiFi side of things. The I2C multiplexer isolates the soil moisture sensors on one channel and everything else on another, the cables to the plants are about 3 meters long, I forget what resistors are on either channel but they communicate fine.
Cattledog, I will look into your comments regarding the serial vs I2C code, I wonder if I copied some code from somewhere else and did not look into it far enough.

This is my understanding of what the i2c open log code should look like

//myLog.begin();//Open log file in setup once
 myLog.writeString((String)Year);
 myLog.write('-');
 myLog.writeString((String)Month);
 myLog.write('-');
 myLog.writeString((String)Day);
 myLog.write(',');
 myLog.writeString((String)Hour);
 myLog.write(':');
 myLog.writeString((String)Minute);
 myLog.write(':');
 myLog.writeString((String)Second);                                           
 myLog.write(',');
 myLog.writeString((String)temperature);
 myLog.write(',');
 myLog.writeString((String)humidity);
 myLog.write(',');
 myLog.writeString((String)SoilTemp1);
 myLog.write(',');
 myLog.writeString((String)SoilPercent1);
 myLog.write(',');
 myLog.writeString((String)SoilTemp2);
 myLog.write(',');
 myLog.writeString((String)SoilPercent2);
 myLog.write(',');
 myLog.writeString((String)SoilTemp3);
 myLog.write(',');
 myLog.writeString((String)SoilPercent3);
 myLog.write(',');
 myLog.writeString((String)p0);
 myLog.write(',');
 myLog.writeString((String)T);
 myLog.write(',');
 myLog.writeString((String)ldrStatus1);
 myLog.write(',');
 myLog.writeString((String)ldrStatus2);
 myLog.write('\n');//add new line
 //myLog.writeln(lightSensorReading);
 myLog.syncFile();
/////////////////////////////////////////////////////End send data to CSV/////////////////////////////////////////////////  

@GaGa111 ... you should not put in the c++ code from the IDE, but the HTML.
so do a "view source code" in your browser and copy paste this generated HTML to the test form of W3C. Viewing the HTML sourcecode in your browsr shouldn't take longer than a second (depending on how fast you can do a right click on your mouse and choose "view source code"...). Allways check your HTML outputs!

So it seems the first header line is already corrupted with weird chars and at the end…
I would suspect buffer size and timing issues

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.