Teensy 3.6 I2C to talk to Analog Front End XR18910

Status
Not open for further replies.

fieryfire

Active member
Hi,

I am using the Teensy 3.6 to talk to the XR18910 amplifier chip(DataSheet). I have the code shown below -

Basically, i am trying to control the different channels from this chip by sending to the appropriate registers and also to select the gain of the amplifier for each channel. Although i am not able to read from the 3 channels as you can see below. Could you kindly assist me in telling me where i am wrong?

Code:
#include <TimeLib.h>
#include <WProgram.h>
//#include <Wire.h>
#include <i2c_t3.h>

int StrainInput1     = A0;

float strainValue1     = 0;  // variable to store the value coming from the sensor
float strainValue2     = 0;
float strainValue3     = 0;

String sensorOutput;

void strainOutput();

void setup() {
  
  Wire.begin(I2C_MASTER, 0x00, I2C_PINS_18_19, I2C_PULLUP_EXT, 400000);
  Wire.setClock(400000L);    // Set i2C speed to 400Khz
  Serial.begin(115000);     // open the serial port at 115200 bps
}

void loop() {
  Wire.beginTransmission(0x66); //Address of device is 0x66
  Wire.write(0x06);         // Gain Select
  Wire.write(0x00);         // Gain Choice  
  Wire.write(0x10);         // Call Channel 1  
  strainValue1 = analogRead(StrainInput1);
  Wire.endTransmission();
  

  Wire.beginTransmission(0x66);
  Wire.write(0x06);         // Gain Select
  Wire.write(0x04);         // Gain Choice  
  Wire.write(0x12);         // Call Channel 2
  strainValue2 = analogRead(StrainInput1);
  Wire.endTransmission();

  Wire.beginTransmission(0x66);
  Wire.write(0x06);         // Gain Select
  Wire.write(0x07);         // Gain Choice
  Wire.write(0x14);         // Call Channel 3
  strainValue3 = analogRead(StrainInput1);
  Wire.endTransmission();
  
  strainOutput();   
  delay(100);
}

void strainOutput()
{

  sensorOutput  ="";
  sensorOutput +=strainValue1;
  sensorOutput +=',';
  sensorOutput +=strainValue2;
  sensorOutput +=',';
  sensorOutput +=strainValue3;
  Serial.println(sensorOutput);
}
 
You didn't mention it, but do you have the 2 pull-up resistors installed, one from pin 18/A4/SDA0 to 3.3v, and the other from pin 19/A5/SCL0 to 3.3v? Typically on a Teensy, you would want a 2.2K or 2.4K resistor for each pin.

I don't know anything about the XR18910 amplifier, but perhaps you need to do an endTransmission and possibly a delay before trying to read the analog input.
 
You didn't mention it, but do you have the 2 pull-up resistors installed, one from pin 18/A4/SDA0 to 3.3v, and the other from pin 19/A5/SCL0 to 3.3v? Typically on a Teensy, you would want a 2.2K or 2.4K resistor for each pin.

I don't know anything about the XR18910 amplifier, but perhaps you need to do an endTransmission and possibly a delay before trying to read the analog input.

I connected 4.7K resistor for both SDA and SCL to VDD as this was what was prescribed for the data sheet of the amplifier.

For each amplifier channel i did use the endtransmission. and i fear that i cannot be using a delay command. since i would need an acquisition speed of atleast 1KHz. Could you kindly assist?
 
From the data sheet I am seeing the I2C address as 67. You might want to run the scanner example in the wire library and see what you can see. Very interesting chip let me know if you get it working.
 
From the data sheet I am seeing the I2C address as 67. You might want to run the scanner example in the wire library and see what you can see. Very interesting chip let me know if you get it working.

Hi cartere, indeed there are 4 variants of the chip with different address. The chip i use is with a an address of 0x66. And i did use the scanner and confirmed this as well. Good news is that i have found a way to talk to the chip. I am able to control the LDO (voltage supply) between 2.65V and 3V. I am trying to design a circuit which can capture 120ohm strain readings(in voltages) using the teensy to do ADC and amplifier to do signal conditioning. I require an acquisition speed of atleast 1000Samples/Sec per channel. Do you think this is a possibility?

I am posting the correction of the part of the code to control using I2C i noticed. Basically while trying to write/send data i should send with HEXADECIMAL format and not by integers;

Wire.write(0x07); //Correct way
Wire.write(0); //incorrect way
Wire.write(7); //incorrect

Code:
Wire.beginTransmission(0x66); 
  
  Wire.write(0x07);         // LDO register
  Wire.write(0x01);         // 2.65V

  Wire.endTransmission();
  
  Wire.beginTransmission(0x66);
 
Guys i really need your help. I am trying to select the output from the xr18910 but when i try to even get one analog reading from a dc differential input i am getting an unstable read. Normally, for a dc differential input we are supposed to get static reading. please help.

what i think is that the 400Khz of i2c could be bottle necking the adc speed of the teensy. Do you think this is the case? Desperate need of help here
 
A piece of information missing here is if the actual analog voltage is unstable or is the teensy conversion unstable? Can you put a cope or multimeter on the amp outputs, and can you test the Teensy inputs for stability on a signal that hasn't been through the amp.
 
A piece of information missing here is if the actual analog voltage is unstable or is the teensy conversion unstable? Can you put a cope or multimeter on the amp outputs, and can you test the Teensy inputs for stability on a signal that hasn't been through the amp.

I see that from the multimeter reading that the analog signal is stable. It is only varying after the conversion in Teensy.
 
You saw you are desperate but you are not providing a lot of information to work with. Your post up there has half the words about being how much help you need and one sentence on your problem. Re i2C, unless you have done something really wrong the i2C will have very little impact on how often you can use the ADC, none at all if you set things up right. Other useful things:

Actual code you are using, as minimal as possible while still showing the problem, if possible without the amp i2C code (can you set the amp and then load some basic sampling code and have amp gain stay steady?)

A schematic and/or photo of your actual wiring - double check that is what you actually have, using a meter

Results of your multimeter testing at several voltages in, along with some idea of what your noise level was as measured by the Teensy, and do the math for what voltage swing that would actually mean on the multi meter (differential is meant for very small signals, are things working correctly and your signal is so small it just looks stable?)

Results without the amp, both inputs grounded, both inputs at max (are you changing analog ref anywhere?) and with a known differential. How does your average and standard deviation compare to the above now op amp is out of circuit?

Reducing noise in ADC is normally a case of careful noise suppression in design, using a very stable Aref, using the agnd correctly, avoiding power supply noise, and making sure your input wiring is not acting as an antenna.

Edit - also how long does it take between sending the i2C message and the signal actually being the new value? If you are still using the code above you are probably starting to sample while the amp is still responding.
Are you using this library for your differential reads? https://forum.pjrc.com/threads/25532-ADC-library-update-now-with-support-for-Teensy-3-1
 
Last edited:
Are you able to read only from ONE (1) channel? I.e. select once, read multiple times?
My hunch is that you need to give for conversion after selecting the channel.
Also I would put wire.endTransmission before analog read.
AFAIR, wire.write only puts data into a buffer, and it is endTransmission that does the writing.
 
You saw you are desperate but you are not providing a lot of information to work with. Your post up there has half the words about being how much help you need and one sentence on your problem. Re i2C, unless you have done something really wrong the i2C will have very little impact on how often you can use the ADC, none at all if you set things up right. Other useful things:

Actual code you are using, as minimal as possible while still showing the problem, if possible without the amp i2C code (can you set the amp and then load some basic sampling code and have amp gain stay steady?)

A schematic and/or photo of your actual wiring - double check that is what you actually have, using a meter

Results of your multimeter testing at several voltages in, along with some idea of what your noise level was as measured by the Teensy, and do the math for what voltage swing that would actually mean on the multi meter (differential is meant for very small signals, are things working correctly and your signal is so small it just looks stable?)

Results without the amp, both inputs grounded, both inputs at max (are you changing analog ref anywhere?) and with a known differential. How does your average and standard deviation compare to the above now op amp is out of circuit?

Reducing noise in ADC is normally a case of careful noise suppression in design, using a very stable Aref, using the agnd correctly, avoiding power supply noise, and making sure your input wiring is not acting as an antenna.

Edit - also how long does it take between sending the i2C message and the signal actually being the new value? If you are still using the code above you are probably starting to sample while the amp is still responding.
Are you using this library for your differential reads? https://forum.pjrc.com/threads/25532-ADC-library-update-now-with-support-for-Teensy-3-1

I realize i wasnt clear enough. Thank you for pointing it out. I have attached a picture of of how the noise looks like and also the complete code to access the XR18910 chip as mentioned above.

The code is simple really. i figure that the noise would be being picked up from the circuits. I am using a 3.3V 1.5A rating adapter to power the bridges seperately. The teensy itself is being powered by the USB, since i would like to see the serial out. I assume i am using analog ground incorrectly. basically for VDD, we use regular ground? and for Vcc,bridge and excitation voltages we use analog ground?

Code:
//#include <Adafruit_MAX31865.h>


#include <TimeLib.h>
#include <WProgram.h>
//#include <Wire.h>
#include <i2c_t3.h>

int StrainInput1     = A0;

float strainValue1     = 0;  // variable to store the value coming from the sensor
float strainValue2     = 0;
float strainValue3     = 0;
float strainValue4     = 0;

float vd=3.3;
int res=1024;

String sensorOutput;

void strainOutput();

void setup() {
  
  Wire.begin(I2C_MASTER, 0x00, I2C_PINS_18_19, I2C_PULLUP_EXT, 400000);
  Wire.setClock(400000L);    // Set i2C speed to 400Khz
  Serial.begin(152000);     // open the serial port at 115200 bps
  
  Wire.beginTransmission(0x66); 
  
  Wire.write(0x07);         // LDO register
  Wire.write(0x00);         // 2.65V

  Wire.endTransmission();
  
  Wire.beginTransmission(0x66);
  Wire.send(0x06);         // Gain Select
  Wire.send(0x00);         // Gain Choice 
  Wire.endTransmission();
}

void loop() {

  Wire.beginTransmission(0x66);
  
  
  Wire.beginTransmission(0x66);
  Wire.send(0x10);         // Call Channel 1  
  strainValue1 = analogRead(StrainInput1);
  Wire.endTransmission();
  

  Wire.beginTransmission(0x66);
  Wire.send(0x12);         // Call Channel 2
  strainValue2 = analogRead(StrainInput1);
  Wire.endTransmission();

  Wire.beginTransmission(0x66);
  Wire.send(0x14);         // Call Channel 2
  strainValue3 = analogRead(StrainInput1);
  Wire.endTransmission();

   Wire.beginTransmission(0x66);
  Wire.send(0x15);         // Call Channel 2
  strainValue4 = analogRead(StrainInput1);
  Wire.endTransmission();
  
  
  strainOutput();   
 
}

void strainOutput()
{

  sensorOutput  ="";
  sensorOutput +=strainValue1;
  sensorOutput +=',';
  sensorOutput +=strainValue2;
  sensorOutput +=',';
  sensorOutput +=strainValue3;
  sensorOutput +=',';
  sensorOutput +=strainValue4;
  Serial.println(sensorOutput);
}

Help with adc noise.jpg
 
Are you able to read only from ONE (1) channel? I.e. select once, read multiple times?
My hunch is that you need to give for conversion after selecting the channel.
Also I would put wire.endTransmission before analog read.
AFAIR, wire.write only puts data into a buffer, and it is endTransmission that does the writing.

I am currently reading from 4 channels as you can see from the picture in the above post. I have modified the code so that, i access the channel register, save into a variable, do analog read. I do this for each of the channels. And yes i do use endTransmission as well. I have modified the code above? Also for some reason it is coding at 10 bit, i thought it was supposed to be 13 bit adc for the teensy? am i doing something wrong?
 
For the last edit(@gremlin) There is only one analog pin being used from the teensy adc. The xr18910 uses i2c(400KHz) to select the analog output of the amplified channel. There is one analog output from the xr18910 (8:1) amplifier and it is for this reason i am using the single selectable output from the xr18910. Basically the teensy is using i2c to control the channel output of the xr18910 amp. i will try to draw a circuit and post it here
 
I am currently reading from 4 channels as you can see from the picture in the above post. I have modified the code so that, i access the channel register, save into a variable, do analog read. I do this for each of the channels. And yes i do use endTransmission as well. I have modified the code above? Also for some reason it is coding at 10 bit, i thought it was supposed to be 13 bit adc for the teensy? am i doing something wrong?

My original suggestion was to simplify code as much as possible, therefore to read ONLY from 1 channel. Bit this is not needed, if you do not wanted to do.

But I think you should MOVE endTransmission BEFORE analogue read.
The I2C commands are only send to device with endTransmission and NOT with write
I recall 10 bit is default ADC resolution and resolution should be set explicitly.
 
My original suggestion was to simplify code as much as possible, therefore to read ONLY from 1 channel. Bit this is not needed, if you do not wanted to do.

But I think you should MOVE endTransmission BEFORE analogue read.
The I2C commands are only send to device with endTransmission and NOT with write
I recall 10 bit is default ADC resolution and resolution should be set explicitly.

Tried with 1 channel. Also moved end transmission before analog read. This has changed the order of the strain values. im assuming it would have taken the Strain 2 value as strain 1 in the earlier case. But the problem of the noise still exists. I cant seem to figure out where the noise of 1V dips every time interval appears to come from :(
 
But the problem of the noise still exists. I cant seem to figure out where the noise of 1V dips every time interval appears to come from :(
I cannot read the axis labels.
What are the levels? and what is interval and duration of drop?
 
Edit: Reading again through the code and my suggestions below, you are not using analog ref are you?
https://www.arduino.cc/en/Reference/analogReference (note for teensy external is 3.3V macx, not 5V)
So you have Teensy ADC measuring with respect to 3.3V reg powered from noisy 5V USB while your strain sensors have their own supply.

Suggest working out what ref voltage you want to use (can't be more than 3.3V, but just bigger than your signal level is the aim) and produce it as stably as possible from your sensor supply (could be as simple as three diodes stacked up for 1.5V, but there are also devices just for this purpose), wire it you the aref pin and configure for external in your code.

Also, in your graph your green line is only flat because it's exceeding the ADC max, so you may need to check the gain on that channel.

Back to original, now most likely un-needed post
__________________________________________________


Ok I see what you mean about the noise! That graph + the code makes all the difference. You had been talking about differential inputs and had assumed you were using diff mode on the teensy, not the amp, sorry about that. With the 1V dips some easy code checks:

Have you added a delay(1); to your loop -> testing if the dips are fixed time or fixed number of instructions apart

Have you added a delay(1); after each i2C transaction and before each ADC read -> make sure you do actually read once it's stable

Have you checked just reading the same channel for the same time period as your graph above (no i2C messages after setup)-> does the amp peturb itself

Same, but do setup the single channel with i2c each time.

What happens to the dips if you drop the gain to zero?

Then there are the tests that need some wiring changes:
Have you wired another analog pin to a resistive divider and checked the supply voltage to your strain gauges (aim to have the intended voltage midrange for the Teensy ADC)

A similar check of the USB 5V and Teensy 3.3V may be interesting, though noise from the PC normally mostly a problem where people use it to power sensors, and 1V dives should be causing other problems if happening on the Teensy power.

Given the dips, have you tried reading the input from the strain gauges directly. Being differential may not show much but a 1V dive should show up, even on a single chanel read, especially if the tests above have told you what timeing causes it.

Many of these checks will be ruled out based on what you have already done, though in some cases measuring the same thing twice can get interesting differences in results.
 
Last edited:
I cannot read the axis labels.
What are the levels? and what is interval and duration of drop?

At 1738 Samples/sec. for 8 samples there is a drop. for a duration of about 4.6ms i notice this drop. The drop occurs every 27 samples that is about every 15ms. The drop in voltage from a 0 to 1024 scale(10bit adc) goes from a swing of 800 to 400 for a 3.3V supply which corresponds to a drop of about 1.3V every 15ms. I hope this should be enough info? i am trying to attach the excel file. But the forum does not let me. So ill paste the excel values below -
Code:
10:30:57	822.00	1023	881	824	709	697
10:30:57	780.00	1023	905	818	709	701
10:30:57	841.00	1023	906	807	707	703
10:30:57	822.00	1023	907	825	707	696
10:30:57	948.00	1023	955	826	717	712
10:30:57	863.00	1023	904	813	705	696
10:30:57	855.00	1023	906	807	699	697
10:30:57	862.00	1023	891	815	706	702
10:30:57	846.00	1023	905	820	708	703
10:30:57	501.00	745	549	472	366	374
10:30:57	533.00	769	561	468	343	350
10:30:57	534.00	750	564	508	368	357
10:30:57	534.00	728	559	494	393	395
10:30:57	500.00	741	570	500	414	378
10:30:57	521.00	785	566	479	422	411
10:30:57	539.00	889	566	582	482	384
10:30:57	677.00	1023	896	796	717	614
10:30:57	865.00	1023	904	788	709	695
10:30:57	884.00	1023	904	824	711	682
10:30:57	865.00	1023	905	812	704	699
10:30:57	825.00	1023	908	829	713	708
10:30:57	903.00	1023	929	839	716	713
10:30:57	828.00	1023	899	796	703	700
10:30:57	853.00	1023	906	809	701	698
10:30:57	828.00	1023	906	825	709	701
10:30:57	866.00	1023	905	815	705	701
10:30:57	830.00	1023	904	842	724	714
10:30:57	882.00	1023	922	817	715	711
10:30:57	892.00	1023	926	818	710	710
10:30:57	882.00	1023	925	812	717	717
10:30:57	873.00	1023	922	826	720	716
10:30:57	866.00	1023	922	810	716	708
10:30:57	881.00	1023	903	821	713	703
10:30:57	882.00	1023	921	740	709	673
10:30:57	837.00	994	890	843	695	697
10:30:57	832.00	1023	895	827	710	710
10:30:57	815.00	1023	853	813	709	705
10:30:57	877.00	1023	904	807	706	700
10:30:57	935.00	1023	960	832	716	702
10:30:57	827.00	1023	910	830	714	708
10:30:57	821.00	1023	911	830	716	710
10:30:57	820.00	1023	905	815	703	700
10:30:57	896.00	1023	897	829	717	709
10:30:57	856.00	1023	905	822	707	703
10:30:57	475.00	743	574	486	379	370
10:30:57	583.00	708	594	482	385	399
10:30:57	521.00	775	552	486	363	354
10:30:57	725.00	760	555	461	360	360
10:30:57	534.00	768	550	456	359	353
10:30:57	537.00	774	565	506	476	371
10:30:57	511.00	748	657	510	380	499
10:30:57	572.00	924	783	825	612	698
10:30:57	908.00	1023	897	833	723	621
10:30:57	819.00	1023	910	829	708	708
10:30:57	827.00	1023	907	817	712	705
10:30:57	856.00	1023	905	819	707	700
10:30:57	907.00	1023	930	825	723	714
10:30:57	895.00	1023	909	830	704	700
10:30:57	915.00	1023	946	841	722	716
10:30:57	827.00	1023	905	823	710	694
10:30:57	858.00	1023	907	808	710	703
10:30:57	856.00	1023	905	822	708	708
10:30:57	842.00	1023	927	842	725	714
10:30:57	875.00	1023	921	815	715	713
10:30:57	853.00	1023	922	823	713	700
10:30:57	860.00	1023	921	829	717	708
10:30:57	871.00	1023	912	770	717	717
10:30:57	911.00	1023	919	836	706	714
10:30:57	824.00	1023	918	804	718	709
10:30:57	844.00	1023	921	793	718	715
10:30:57	906.00	1023	921	844	718	710
10:30:57	817.00	1023	886	811	707	707
10:30:57	856.00	1023	906	823	711	707
10:30:57	835.00	1023	906	824	711	707
10:30:57	824.00	1023	909	829	716	709
10:30:57	822.00	1023	904	818	697	701
10:30:57	874.00	1023	900	809	701	698
10:30:57	832.00	1023	902	809	703	698
10:30:57	837.00	1023	907	820	709	704
10:30:57	824.00	869	579	494	369	350
10:30:57	564.00	714	586	508	384	372
10:30:57	478.00	766	566	467	364	372
10:30:57	499.00	864	573	465	355	354
10:30:57	528.00	762	559	481	371	389
10:30:57	473.00	768	589	480	407	384
10:30:57	603.00	782	579	591	378	516
10:30:57	488.00	919	723	676	634	700
10:30:57	924.00	1023	894	824	709	679
10:30:57	856.00	1023	913	813	698	702
10:30:57	758.00	1023	906	819	707	704
10:30:57	833.00	1023	908	828	715	708
10:30:57	819.00	1023	911	828	711	706
10:30:57	877.00	1023	906	815	707	701
10:30:57	841.00	1023	906	820	697	701
10:30:57	827.00	1023	911	829	710	706
10:30:57	875.00	1023	906	820	703	706
10:30:57	899.00	1023	905	834	718	711
10:30:57	841.00	1023	925	843	723	714
10:30:57	879.00	1023	919	819	716	713
10:30:57	934.00	1023	949	854	735	720
10:30:57	864.00	1023	924	823	711	703
10:30:57	886.00	1023	924	822	709	698
10:30:57	920.00	1023	952	848	730	710
10:30:57	851.00	1023	921	826	701	716
10:30:57	877.00	1023	913	784	718	680
10:30:57	894.00	1023	838	825	703	619
10:30:57	828.00	1023	887	822	705	704
10:30:57	837.00	1023	894	821	708	702
10:30:57	841.00	1023	905	823	708	698
10:30:57	821.00	1023	908	834	715	708
10:30:57	873.00	1023	905	809	704	696
10:30:57	826.00	1023	905	819	711	706
10:30:57	838.00	1023	906	825	711	705
10:30:57	868.00	1023	903	814	709	697
10:30:57	881.00	1023	898	474	368	354
10:30:57	468.00	733	565	463	373	387
10:30:57	535.00	763	559	466	352	353
10:30:57	487.00	767	661	493	372	354
10:30:57	508.00	762	567	484	372	377
10:30:57	486.00	757	604	498	373	361
10:30:57	570.00	757	601	615	391	379
10:30:57	611.00	895	731	561	684	552
10:30:57	784.00	1023	913	815	700	699
10:30:57	871.00	1023	938	830	710	716
10:30:57	826.00	1023	908	826	700	709
10:30:57	851.00	1023	907	821	710	705
10:30:57	818.00	1023	911	829	715	709
10:30:57	834.00	1023	905	824	713	706
10:30:57	830.00	1023	908	827	712	709
10:30:57	827.00	1023	899	815	706	699
10:30:57	852.00	1023	906	820	709	703
10:30:57	858.00	1023	907	807	703	699
10:30:57	844.00	1023	926	836	721	713
10:30:57	918.00	1023	926	843	725	718
10:30:57	841.00	1023	929	841	726	714
10:30:57	879.00	1023	929	832	718	710
10:30:57	950.00	1023	975	856	722	715
10:30:57	919.00	1023	939	846	729	720
10:30:57	849.00	1023	922	825	718	719
10:30:57	884.00	1023	916	767	699	714
10:30:57	854.00	1023	849	825	713	706
10:30:57	849.00	1023	902	820	713	708
10:30:57	887.00	1023	905	806	706	701
10:30:57	816.00	1023	908	833	707	693
10:30:57	830.00	1023	907	801	699	696
10:30:57	831.00	1023	908	827	713	706
10:30:57	846.00	1023	906	823	710	705
10:30:57	835.00	1023	910	827	713	707
10:30:57	848.00	1023	906	813	708	703
10:30:57	874.00	1023	902	817	384	352
10:30:57	469.00	729	563	490	382	371
10:30:57	507.00	756	562	469	361	351
10:30:57	504.00	774	582	489	411	348
10:30:57	475.00	755	585	502	386	371
10:30:57	603.00	699	639	493	383	429
10:30:57	506.00	776	633	526	406	373
10:30:57	654.00	794	588	526	542	458
10:30:57	846.00	1023	881	806	691	682
10:30:57	791.00	1023	911	725	706	698
10:30:57	843.00	1023	904	808	705	694
10:30:57	835.00	1023	904	809	711	706
10:30:57	819.00	1023	907	824	709	702
10:30:57	824.00	1023	910	823	713	710
10:30:57	846.00	1023	904	816	708	705
10:30:57	837.00	1023	906	821	708	705
10:30:57	825.00	1023	910	829	716	709
10:30:57	904.00	1023	921	837	722	709
10:30:57	836.00	1023	926	840	725	716
10:30:57	845.00	1023	918	829	721	713
10:30:57	894.00	1023	943	853	729	718
10:30:57	918.00	1023	947	857	728	719
10:30:57	880.00	1023	927	827	713	705
10:30:57	864.00	1023	920	834	714	691
10:30:57	879.00	1023	919	818	715	715
10:30:57	921.00	1023	942	848	717	726
10:30:57	861.00	1023	905	818	705	703
10:30:57	855.00	1023	899	830	707	692
10:30:57	823.00	1023	909	829	711	703
10:30:57	835.00	1023	906	828	713	707
10:30:57	878.00	1023	905	814	702	699
10:30:57	830.00	1023	906	822	715	710
10:30:57	850.00	1023	906	825	709	691
10:30:57	939.00	1023	953	821	720	713
10:30:57	852.00	1023	905	822	710	703
10:30:57	819.00	1023	912	819	719	349
10:30:57	477.00	739	558	482	375	368
10:30:57	515.00	766	565	470	356	359
10:30:57	530.00	781	574	480	365	392
10:30:57	478.00	752	586	511	444	405
10:30:57	509.00	783	589	484	376	374
10:30:57	507.00	750	612	604	401	425
10:30:57	533.00	762	595	572	418	493
10:30:57	745.00	1023	868	806	690	590
10:30:57	826.00	1023	906	819	702	710
10:30:57	844.00	1023	912	824	686	698
10:30:57	865.00	1023	906	817	707	703
10:30:57	822.00	1023	911	829	711	694
10:30:57	833.00	1023	910	831	715	707
10:30:57	819.00	1023	915	834	717	702
10:30:57	861.00	1023	905	814	706	700
10:30:57	825.00	1023	911	826	710	706
10:30:57	887.00	1023	906	813	704	699
10:30:57	830.00	1023	925	840	724	715
10:30:57	931.00	1023	958	857	730	723
10:30:57	852.00	1023	919	823	718	711
10:30:57	886.00	1023	917	824	714	710
10:30:57	903.00	1023	902	824	718	713
10:30:57	920.00	1023	965	853	690	726
10:30:57	848.00	1023	918	823	716	704
10:30:57	837.00	1023	839	847	693	711
10:30:57	827.00	1023	913	825	709	707
10:30:57	808.00	1023	899	814	715	690
10:30:57	805.00	1023	906	822	711	705
10:30:57	857.00	1023	898	820	708	702
10:30:57	862.00	1023	905	814	699	700
10:30:57	878.00	1023	907	815	706	702
10:30:57	834.00	1023	911	830	718	710
10:30:57	829.00	1023	904	827	712	704
10:30:57	841.00	1023	906	824	703	705
10:30:57	826.00	1023	906	829	714	710
10:30:57	528.00	755	556	488	378	377
10:30:57	491.00	742	550	474	354	354
10:30:57	584.00	752	582	494	368	358
10:30:57	499.00	751	563	462	368	379
10:30:57	513.00	770	565	471	364	403
10:30:57	480.00	753	692	538	377	476
10:30:57	485.00	876	660	501	639	491
10:30:57	748.00	1023	901	800	709	668
10:30:57	866.00	1023	919	821	721	694
10:30:57	832.00	1023	899	840	709	699
10:30:57	832.00	1023	903	826	711	706
10:30:57	802.00	1023	909	829	710	707
10:30:57	822.00	1023	905	811	706	700
10:30:57	916.00	1023	957	836	715	713
10:30:57	822.00	1023	909	826	715	711
10:30:57	857.00	1023	906	812	705	693
10:30:57	910.00	1023	930	827	720	712
10:30:57	819.00	1023	909	845	724	715
10:30:57	870.00	1023	921	819	716	713
10:30:57	905.00	1023	921	830	718	714
10:30:57	840.00	1023	925	833	724	717
10:30:57	841.00	1023	914	842	727	716
10:30:57	862.00	1023	902	833	723	712
10:30:57	885.00	1023	910	823	716	704
10:30:57	890.00	1023	891	819	705	703
10:30:57	867.00	1023	903	819	706	706
10:30:57	824.00	1023	877	823	714	709
10:30:57	829.00	1023	900	812	709	707
10:30:57	870.00	1023	906	815	707	696
10:30:57	820.00	1023	908	822	714	706
10:30:57	830.00	1023	909	829	716	713
10:30:57	871.00	1023	905	808	688	701
10:30:57	844.00	1023	891	823	701	695
10:30:57	840.00	1023	907	825	712	707
10:30:57	916.00	1023	924	834	717	711
10:30:57	496.00	755	575	485	374	359
10:30:57	518.00	749	554	470	367	361
10:30:57	500.00	748	583	481	370	370
10:30:57	787.00	729	592	493	369	381
10:30:57	489.00	757	573	487	374	380
10:30:57	587.00	761	568	579	390	366
10:30:57	521.00	758	716	560	386	437
10:30:57	725.00	870	820	802	653	705
10:30:57	890.00	1020	955	797	721	711
10:30:57	820.00	1023	900	824	712	694
10:30:57	874.00	1023	905	807	703	695
10:30:57	822.00	1023	906	810	711	706
10:30:57	832.00	1023	906	825	709	704
10:30:57	880.00	1023	904	798	702	699
10:30:57	831.00	1023	906	826	711	700
10:30:57	911.00	1023	936	837	722	716
10:30:57	829.00	1023	909	829	712	706
10:30:57	819.00	1023	913	824	720	725
10:30:57	914.00	1023	935	849	722	712
10:30:57	923.00	1023	953	855	733	725
10:30:57	874.00	1023	919	821	713	712
10:30:57	894.00	1023	921	818	712	712
10:30:57	914.00	1023	906	819	721	717
10:30:57	864.00	1023	921	830	708	715
10:30:57	760.00	1023	919	722	722	717
10:30:57	882.00	1023	929	845	717	721
10:30:57	819.00	1023	912	813	704	708
10:30:57	817.00	1023	910	827	716	706
10:30:57	835.00	1023	906	821	709	703
10:30:57	825.00	1023	898	827	710	706
10:30:57	855.00	1023	905	820	711	706
10:30:57	852.00	1023	905	825	714	706
10:30:57	821.00	1023	907	826	692	706
10:30:57	871.00	1023	896	809	704	701
10:30:57	805.00	1023	909	830	712	704
10:30:57	825.00	751	573	484	359	348
10:30:57	568.00	723	593	502	373	366
10:30:57	474.00	739	552	483	384	372
10:30:57	503.00	799	557	469	356	346
10:30:57	490.00	753	568	508	388	378
10:30:57	485.00	755	602	491	384	420
10:30:57	520.00	848	610	494	500	383
10:30:57	653.00	865	614	820	563	701
10:30:57	791.00	1023	908	738	700	709
10:30:57	884.00	1023	911	808	703	704
10:30:57	846.00	1023	906	821	710	705
10:30:57	839.00	1023	908	828	713	708
10:30:57	857.00	1023	906	815	702	699
10:30:57	826.00	1023	900	833	714	708
10:30:57	940.00	1023	957	835	717	711
10:30:57	866.00	1023	904	815	706	700
10:30:57	907.00	1023	931	839	719	711
10:30:57	847.00	1023	905	823	710	705
10:30:57	841.00	1023	920	829	717	712
10:30:57	891.00	1023	924	828	715	710
10:30:57	882.00	1023	922	828	718	712
10:30:57	911.00	1023	959	855	727	715
10:30:57	894.00	1023	923	827	710	703
10:30:57	895.00	1023	901	820	711	693
10:30:57	867.00	1023	918	826	678	702
10:30:57	801.00	1023	861	821	724	598
10:30:57	817.00	1023	917	830	723	703
10:30:57	835.00	1023	896	833	694	691
10:30:57	855.00	1023	902	814	707	704
10:30:57	818.00	1023	904	817	706	703
10:30:57	841.00	1023	905	825	713	706
10:30:57	860.00	1023	904	822	711	704
10:30:57	822.00	1023	915	831	714	708
10:30:57	869.00	1023	906	816	704	698
10:30:57	829.00	1023	908	825	712	701
10:30:57	883.00	1023	899	465	357	360
10:30:57	495.00	764	571	462	344	335
10:30:57	468.00	729	561	490	391	386
10:30:57	514.00	769	560	698	362	341
10:30:57	517.00	807	606	486	373	369
10:30:57	476.00	754	578	531	438	367
10:30:57	582.00	766	609	588	384	389
10:30:57	595.00	770	799	718	499	698
10:30:57	836.00	1023	828	795	702	692
10:30:57	807.00	1023	902	815	710	705
10:30:57	832.00	1023	911	828	710	703
10:30:57	841.00	1023	907	820	707	703
10:30:57	851.00	1023	906	823	709	704
10:30:57	828.00	1023	908	829	716	707
10:30:57	846.00	1023	905	818	709	704
10:30:57	839.00	1023	900	827	711	705
10:30:57	885.00	1023	906	827	708	709
10:30:57	831.00	1023	900	829	714	708
10:30:57	882.00	1023	921	817	710	711
10:30:57	884.00	1023	926	821	716	708
10:30:57	899.00	1023	919	823	717	713
10:30:57	928.00	1023	945	851	726	718
10:30:57	826.00	1023	931	850	726	716
10:30:57	869.00	1023	920	812	719	712
10:30:57	899.00	1023	919	781	712	704
10:30:57	911.00	1023	924	827	719	718
10:30:57	829.00	1023	906	821	702	698
10:30:57	832.00	1023	906	825	704	700
10:30:57	872.00	1023	904	812	705	697
10:30:57	834.00	1023	904	822	712	705
10:30:57	831.00	1023	908	826	711	703
10:30:57	836.00	1023	904	820	706	698
10:30:57	853.00	1023	904	825	713	709
10:30:57	827.00	1023	905	822	712	705
10:30:57	835.00	1023	903	811	712	704
10:30:57	810.00	1023	914	833	389	382
10:30:57	483.00	770	572	474	355	351
10:30:57	484.00	750	562	493	378	366
10:30:57	598.00	692	614	479	526	374
10:30:57	482.00	776	585	490	365	362
10:30:57	487.00	789	579	485	415	401
10:30:57	479.00	806	604	494	419	379
10:30:57	583.00	764	725	611	383	602
10:30:57	851.00	1023	842	832	728	624
10:30:57	798.00	1023	909	828	692	704
10:30:57	826.00	1023	909	825	711	706
10:30:57	832.00	1023	907	822	710	708
10:30:57	829.00	1023	910	833	715	708
10:30:57	813.00	1023	911	832	707	710
10:30:57	830.00	1023	901	829	713	706
10:30:57	844.00	1023	906	817	708	704
10:30:57	853.00	1023	906	824	713	709
10:30:57	823.00	1023	909	813	705	699
10:30:57	831.00	1023	921	837	719	715
10:30:57	888.00	1023	923	818	709	709
10:30:57	906.00	1023	922	837	723	716
10:30:57	887.00	1023	922	822	718	712
10:30:57	900.00	1023	925	821	711	715
10:30:57	937.00	1023	939	851	732	720
10:30:57	844.00	1023	905	826	715	689
10:30:57	868.00	898	918	821	707	711
10:30:57	757.00	1023	896	787	724	701
10:30:57	823.00	1023	902	812	708	709
10:30:57	838.00	1023	911	830	716	696
10:30:57	833.00	1023	908	827	713	708
10:30:57	842.00	1023	906	823	712	703
10:30:57	825.00	1023	913	833	718	708
10:30:57	919.00	1023	953	839	717	700
10:30:57	872.00	1023	904	818	709	704
10:30:57	822.00	1023	907	827	714	708
10:30:57	834.00	1023	907	826	714	702
10:30:57	516.00	752	556	472	359	355
10:30:57	496.00	760	576	490	361	350
10:30:57	547.00	735	576	506	379	387
10:30:57	476.00	738	557	511	394	369
10:30:57	523.00	759	565	480	363	389
10:30:57	501.00	753	681	503	374	527
10:30:57	573.00	785	852	571	376	563
10:30:57	575.00	1023	911	791	717	698
10:30:57	836.00	1023	871	836	720	702
10:30:57	845.00	1023	907	823	719	707
10:30:57	828.00	1023	908	830	715	709
10:30:57	834.00	1023	908	831	716	704
10:30:57	840.00	1023	907	827	713	709
10:30:57	818.00	1023	914	832	716	710
10:30:57	822.00	1023	914	827	717	711
10:30:57	830.00	1023	909	831	715	708
10:30:57	856.00	1023	906	817	707	702
10:30:57	857.00	1023	911	825	718	716
10:30:57	841.00	1023	926	837	719	717
10:30:57	955.00	1023	972	855	733	718
10:30:57	862.00	1023	912	840	725	718
10:30:57	847.00	1023	924	840	723	714
10:30:57	912.00	1023	923	834	712	720
10:30:57	862.00	1023	925	836	701	714
10:30:57	846.00	1023	919	803	717	690
10:30:57	835.00	1023	918	817	710	685
10:30:57	846.00	1023	887	819	714	704
10:30:57	809.00	1023	910	819	716	704
10:30:57	867.00	1023	898	821	707	703
10:30:57	845.00	1023	907	818	703	680
10:30:57	840.00	1023	906	827	713	707
10:30:57	826.00	1023	908	829	712	707
10:30:57	841.00	1023	905	819	699	703
10:30:57	842.00	1023	898	822	709	706
10:30:57	823.00	1023	908	828	709	707
10:30:57	490.00	749	562	477	360	359
10:30:57	470.00	752	587	493	365	350
10:30:57	554.00	691	617	505	391	379
10:30:57	509.00	751	550	472	366	407
10:30:57	558.00	741	593	500	365	362
10:30:57	597.00	724	596	535	380	411
10:30:57	542.00	884	619	484	514	415
10:30:57	759.00	946	905	804	679	672
10:30:57	773.00	1023	911	773	714	707
10:30:57	843.00	1023	898	836	713	693
10:30:57	870.00	1023	906	806	706	701
10:30:57	868.00	1023	907	804	698	695
10:30:57	854.00	1023	905	816	699	701
10:30:57	836.00	1023	906	823	710	704
10:30:57	851.00	1023	907	815	694	703
10:30:57	853.00	1023	893	822	710	703
10:30:57	826.00	1023	909	830	715	710
10:30:57	856.00	1023	904	832	723	719
10:30:57	850.00	1023	922	834	717	712
10:30:57	841.00	1023	925	836	721	713
10:30:57	840.00	1023	919	829	722	717
10:30:57	911.00	1023	913	831	723	719
10:30:57	897.00	1023	917	811	718	706
10:30:57	829.00	1023	920	796	727	719
10:30:57	896.00	1023	824	814	716	663
10:30:57	895.00	1023	923	819	686	720
10:30:57	844.00	1023	913	826	719	707
10:30:57	815.00	1023	838	832	712	686
10:30:57	878.00	1023	901	805	707	704
10:30:57	880.00	1023	905	816	706	701
10:30:57	822.00	1023	914	820	716	709
10:30:57	869.00	1023	905	811	704	700
10:30:57	919.00	1023	944	835	718	710
10:30:57	867.00	1023	905	813	705	698
10:30:57	866.00	1023	903	812	706	703
10:30:57	516.00	755	567	470	362	365
10:30:57	541.00	764	570	472	363	349
10:30:57	475.00	742	564	500	382	374
10:30:57	612.00	695	597	484	376	388
10:30:57	487.00	752	583	523	385	379
10:30:57	510.00	748	570	498	447	400
10:30:57	595.00	871	603	487	396	472
10:30:57	549.00	988	784	824	654	692
10:30:57	859.00	1023	927	753	719	715
10:30:57	886.00	1023	903	822	697	695
10:30:57	886.00	1023	905	813	703	697
10:30:57	900.00	1023	913	834	720	711
10:30:57	917.00	1023	936	840	715	717
10:30:57	824.00	1023	897	828	713	708
10:30:57	858.00	1023	907	811	704	700
10:30:57	912.00	1023	928	838	718	713
10:30:57	896.00	1023	933	839	720	715
10:30:57	840.00	1023	895	823	707	717
10:30:57	864.00	1023	924	813	708	707
10:30:57	836.00	1023	926	839	724	713
10:30:57	895.00	1023	918	819	713	707
10:30:57	929.00	1023	941	849	733	722
10:30:57	849.00	1023	918	838	723	710
10:30:57	914.00	1023	942	841	730	721
10:30:57	873.00	1023	903	813	723	708
10:30:57	833.00	1023	908	840	711	708
10:30:57	803.00	1023	879	821	704	705
10:30:57	823.00	1023	833	661	708	702
10:30:57	828.00	1023	905	828	714	707
10:30:57	816.00	1023	913	829	714	711
10:30:57	857.00	1023	901	814	706	704
10:30:57	858.00	1023	905	822	708	693
10:30:57	838.00	1023	907	821	713	707
10:30:57	819.00	1023	906	825	711	705
10:30:57	896.00	1023	918	832	717	709
10:30:57	859.00	762	558	469	351	354
10:30:57	488.00	755	564	485	370	361
10:30:57	468.00	733	569	483	379	408
10:30:57	535.00	785	545	461	351	365
10:30:57	473.00	739	575	485	383	365
10:30:57	499.00	762	618	502	369	502
10:30:57	478.00	868	604	490	457	378
10:30:57	556.00	765	833	619	720	653
10:30:57	878.00	1023	855	822	680	701
10:30:57	842.00	1023	912	827	705	696
10:30:57	799.00	1023	907	823	712	704
10:30:57	826.00	1023	912	833	714	704
10:30:57	860.00	1023	905	814	711	706
10:30:57	874.00	1023	906	812	703	697
10:30:57	825.00	1023	908	828	713	705
10:30:57	916.00	1023	936	837	720	714
10:30:57	823.00	1023	907	826	711	707
10:30:57	847.00	1023	900	816	709	704
10:30:57	929.00	1023	945	848	724	720
10:30:57	898.00	1023	925	824	715	711
10:30:57	846.00	1023	919	833	722	715
10:30:57	862.00	1023	915	824	712	709
10:30:57	855.00	1023	920	829	724	713
10:30:57	908.00	1023	926	812	727	718
10:30:57	864.00	1023	909	831	703	688
10:30:57	758.00	1023	911	796	708	714
10:30:57	862.00	1023	908	816	704	693
10:30:57	828.00	1023	911	826	707	708
10:30:57	827.00	1023	910	831	719	713
10:30:57	815.00	1023	909	825	712	694
10:30:57	860.00	1023	902	817	704	700
10:30:57	904.00	1023	929	836	720	696
10:30:57	855.00	1023	903	819	709	702
10:30:57	852.00	1023	905	819	708	688
10:30:57	835.00	1023	909	817	715	709
10:30:57	825.00	1023	899	473	364	371
10:30:57	522.00	771	563	466	347	346
10:30:57	472.00	740	576	482	370	357
10:30:57	482.00	734	564	537	357	355
10:30:57	521.00	755	587	495	366	384
10:30:57	474.00	736	587	529	377	382
10:30:57	524.00	761	702	498	475	467
10:30:57	644.00	791	641	707	488	658
10:30:57	821.00	1023	785	815	713	671
10:30:57	860.00	1023	889	815	701	688
10:30:57	848.00	1023	903	812	705	701
10:30:57	824.00	1023	912	835	717	710
10:30:57	879.00	1023	906	810	702	698
10:30:57	858.00	1023	906	820	707	702
10:30:57	856.00	1023	906	817	695	703
10:30:57	828.00	1023	899	834	720	712
10:30:57	822.00	1023	909	830	706	707
10:30:57	871.00	1023	904	825	713	709
10:30:57	900.00	1023	922	819	712	710
10:30:57	840.00	1023	926	844	723	718
10:30:57	872.00	1023	921	820	719	715
10:30:57	930.00	1023	943	854	728	714
10:30:57	882.00	1023	925	819	713	707
10:30:57	850.00	1023	914	829	713	712
10:30:57	899.00	1023	917	826	700	711
10:30:57	816.00	1023	845	846	687	712
10:30:57	866.00	1023	910	814	708	692
10:30:57	834.00	1023	913	812	692	702
10:30:57	870.00	1023	905	817	706	703
10:30:57	827.00	1023	907	825	702	704
10:30:57	920.00	1023	938	839	721	713
10:30:57	816.00	1023	911	829	708	709
10:30:57	857.00	1023	899	822	709	703
10:30:57	841.00	1023	905	823	707	691
10:30:57	855.00	1023	903	811	707	705
10:30:57	824.00	1023	907	821	364	375
10:30:57	569.00	715	611	490	364	357
10:30:57	558.00	731	598	496	373	367
10:30:57	484.00	741	555	501	633	359
10:30:57	482.00	741	596	497	370	369
10:30:57	516.00	761	566	552	374	365
10:30:57	498.00	769	597	501	402	368
10:30:57	684.00	766	771	714	383	610
10:30:57	826.00	982	880	832	703	700
10:30:57	862.00	1023	908	800	711	705
10:30:57	900.00	1023	845	839	719	714
10:30:57	844.00	1023	906	822	693	705
10:30:57	832.00	1023	905	827	713	706
10:30:57	832.00	1023	907	825	711	706
10:30:57	916.00	1023	935	838	716	710
10:30:57	819.00	1023	908	830	716	705
10:30:57	828.00	1023	908	824	715	710
10:30:57	831.00	1023	905	812	704	701
10:30:57	825.00	1023	919	819	715	712
10:30:57	881.00	1023	923	813	708	706
10:30:57	849.00	1023	926	838	720	714
10:30:57	923.00	1023	954	854	733	726
10:30:57	863.00	1023	926	832	717	705
10:30:57	900.00	1023	920	813	715	714
10:30:57	825.00	1023	923	810	721	710
10:30:57	869.00	1023	920	807	710	709
10:30:57	848.00	1023	899	834	655	673
10:30:57	783.00	1023	908	836	711	701
10:30:57	750.00	1023	909	826	712	708
10:30:57	919.00	1023	944	835	714	716
10:30:57	911.00	1023	938	836	721	712
10:30:57	836.00	1023	903	827	703	687
10:30:57	907.00	1023	923	832	717	711
10:30:57	824.00	1023	910	828	713	704
10:30:57	825.00	1023	909	828	715	709
10:30:57	827.00	1023	912	833	718	685
10:30:57	503.00	752	553	475	365	361
10:30:57	504.00	762	568	477	360	347
10:30:57	487.00	742	563	494	403	376
10:30:57	473.00	739	557	516	427	373
10:30:57	495.00	751	564	483	375	370
10:30:57	538.00	768	615	488	487	462
10:30:57	680.00	790	573	652	451	379
10:30:57	806.00	1023	903	766	702	680
10:30:57	828.00	1023	906	810	708	696
10:30:57	818.00	1023	917	830	724	709
10:30:57	822.00	1023	905	813	706	691
10:30:57	826.00	1023	910	823	716	710
10:30:57	856.00	1023	905	823	708	701
10:30:57	838.00	1023	906	822	711	705
10:30:57	826.00	1023	906	815	706	702
10:30:57	844.00	1023	906	822	704	705
10:30:57	843.00	1023	891	826	701	697
10:30:57	831.00	1023	916	832	723	717
10:30:57	879.00	1023	921	816	712	711
10:30:57	919.00	1023	939	850	726	719
10:30:57	860.00	1023	918	825	719	716
10:30:57	840.00	1023	917	831	722	720
10:30:57	844.00	1023	926	833	719	701
10:30:57	849.00	1023	915	821	714	701
10:30:57	756.00	1023	921	769	721	678
10:30:57	851.00	1023	905	828	711	709
10:30:57	829.00	1023	903	833	698	687
10:30:57	823.00	1023	903	800	706	704
10:30:57	896.00	1023	934	838	722	713
10:30:57	837.00	1023	900	819	707	699
10:30:57	836.00	1023	905	817	707	703
10:30:57	827.00	1023	905	823	709	706
10:30:57	855.00	1023	905	813	706	690
10:30:57	825.00	1023	907	824	717	709
10:30:57	884.00	1023	944	836	719	711
10:30:57	478.00	733	556	484	383	389
10:30:57	483.00	749	574	483	361	361
10:30:57	481.00	748	576	485	383	357
10:30:57	475.00	735	552	487	398	393
10:30:57	540.00	757	572	466	354	375
10:30:57	584.00	736	650	505	506	394
10:30:57	664.00	801	573	620	457	432
10:30:57	566.00	1023	719	814	622	652
10:30:57	846.00	1023	881	821	678	666
10:30:57	833.00	1023	908	819	717	668
10:30:57	843.00	1023	905	825	711	702
10:30:57	867.00	1023	905	816	710	704
10:30:57	849.00	1023	907	828	714	708
10:30:57	826.00	1023	907	828	714	710
10:30:57	835.00	1023	888	806	703	697
10:30:57	887.00	1023	905	819	691	698
10:30:57	847.00	1023	897	824	712	708
10:30:57	862.00	1023	906	815	720	716
10:30:57	837.00	1023	923	839	723	717
10:30:57	915.00	1023	923	840	717	712
10:30:57	883.00	1023	926	819	714	712
10:30:57	908.00	1023	921	835	723	718
10:30:57	864.00	1023	918	841	717	711
10:30:57	913.00	1023	914	844	726	707
10:30:57	905.00	1023	928	754	721	701
10:30:57	833.00	1023	820	842	707	710
10:30:57	852.00	1023	851	826	700	681
10:30:57	859.00	1023	863	816	706	702
10:30:57	892.00	1023	905	814	706	701
10:30:57	820.00	1023	912	830	713	693
10:30:57	856.00	1023	903	807	707	701
10:30:57	843.00	1023	905	820	710	702
10:30:57	820.00	1023	911	829	716	708
10:30:57	830.00	1023	903	823	711	708
10:30:57	815.00	1023	906	824	710	705
10:30:57	529.00	752	553	464	365	372
10:30:57	490.00	752	572	479	370	356
10:30:57	566.00	741	595	512	389	377
10:30:57	512.00	737	546	477	385	385
10:30:57	522.00	766	570	494	386	393
10:30:57	488.00	744	556	496	461	379
10:30:57	625.00	948	585	488	502	367
10:30:57	760.00	881	844	781	700	638
10:30:57	899.00	1023	943	837	708	710
10:30:57	826.00	1023	917	829	718	714
10:30:57	866.00	1023	912	828	715	708
10:30:57	859.00	1023	889	813	705	702
10:30:57	826.00	1023	906	825	708	698
10:30:57	874.00	1023	907	811	704	699
10:30:57	819.00	1023	909	829	705	692
10:30:57	827.00	1023	910	832	716	707
10:30:57	825.00	1023	912	829	716	690
10:30:57	827.00	1023	914	820	717	725
10:30:57	844.00	1023	918	836	723	714
10:30:57	895.00	1023	926	836	722	711
10:30:57	895.00	1023	923	824	712	702
10:30:57	866.00	1023	922	836	721	719
10:30:57	901.00	1023	920	816	696	709
10:30:57	852.00	1023	920	837	696	715
10:30:57	946.00	1023	940	846	729	608
10:30:57	824.00	1023	893	837	712	701
10:30:57	830.00	1023	868	816	699	701
10:30:57	811.00	1023	898	697	716	703
10:30:57	829.00	1023	906	820	712	709
10:30:57	835.00	1023	894	827	710	703
10:30:57	853.00	1023	904	815	709	701
10:30:57	846.00	1023	893	823	710	703
10:30:57	827.00	1023	905	820	704	705
10:30:57	859.00	1023	904	816	707	700
10:30:57	891.00	1023	909	829	702	697
10:30:57	847.00	780	557	471	368	364
10:30:57	483.00	750	558	473	363	377
10:30:57	594.00	698	623	491	372	363
10:30:57	467.00	793	569	477	375	374
10:30:57	515.00	773	558	477	368	355
10:30:57	553.00	761	571	519	414	372
10:30:57	521.00	760	666	508	373	495
10:30:57	502.00	1023	701	771	595	663
10:30:57	803.00	1013	887	830	712	682
10:30:57	770.00	1023	898	819	687	708
10:30:57	805.00	1023	905	822	709	700
10:30:57	902.00	1023	915	833	716	711
10:30:57	854.00	1023	907	800	695	688
10:30:57	883.00	1023	905	809	707	701
10:30:57	819.00	1023	908	828	715	715
10:30:57	840.00	1023	904	826	710	705
10:30:57	879.00	1023	907	810	703	698
10:30:57	821.00	1023	914	820	716	706
10:30:57	864.00	1023	918	815	715	713
10:30:57	935.00	1023	951	850	729	718
10:30:57	860.00	1023	923	832	714	707
10:30:57	907.00	1023	924	818	712	708
10:30:57	904.00	1023	925	827	714	707
10:30:57	859.00	1023	919	817	717	708
10:30:57	843.00	1023	913	841	623	717
10:30:57	847.00	1023	890	827	711	634
10:30:57	841.00	1023	911	773	711	674
10:30:57	829.00	1023	906	828	724	664
10:30:57	846.00	1023	906	814	707	705
10:30:57	821.00	1023	896	817	704	700
10:30:57	910.00	1023	930	838	715	714
10:30:57	833.00	1023	897	821	709	703
10:30:57	817.00	1023	912	834	712	709
10:30:57	898.00	1023	921	828	720	711
10:30:57	846.00	1023	905	823	708	702
10:30:57	821.00	1023	910	489	394	374
10:30:57	502.00	750	552	471	362	365
10:30:57	592.00	715	610	488	362	369
10:30:57	500.00	755	594	548	367	352
10:30:57	541.00	765	568	480	385	368
10:30:57	513.00	769	643	496	366	377
10:30:57	548.00	749	608	625	528	472
10:30:57	696.00	746	671	666	484	713
10:30:57	825.00	1023	888	796	706	668
10:30:57	818.00	1023	890	826	710	714
10:30:57	833.00	1023	907	827	716	707
10:30:57	827.00	1023	909	829	716	708
10:30:57	872.00	1023	913	833	719	714
10:30:57	822.00	1023	912	831	716	710
10:30:57	820.00	1023	896	832	717	709
10:30:57	810.00	1023	905	801	696	696
10:30:57	880.00	1023	905	815	708	701
10:30:57	860.00	1023	906	817	707	700
10:30:57	930.00	1023	956	848	733	725
10:30:57	851.00	1023	918	831	723	716
10:30:57	849.00	1023	926	840	721	713
10:30:57	886.00	1023	928	836	721	712
10:30:57	922.00	1023	928	835	723	715
10:30:57	893.00	1023	947	855	722	725
10:30:57	842.00	1023	921	792	712	709
10:30:57	916.00	1023	940	841	715	722
10:30:57	836.00	1023	893	814	725	710
10:30:57	857.00	1023	879	809	703	681
10:30:57	878.00	1023	904	807	697	696
10:30:57	873.00	1023	906	815	704	698
10:30:57	829.00	1023	908	827	715	704
10:30:57	823.00	1023	907	831	715	709
10:30:57	824.00	1023	907	828	714	694
10:30:57	820.00	1023	913	825	714	704
10:30:57	917.00	1023	937	841	721	712
10:30:57	837.00	1023	904	810	373	358
10:30:57	545.00	757	555	467	355	363
10:30:57	513.00	802	572	466	364	351
10:30:57	465.00	737	565	501	433	361
10:30:57	534.00	775	579	476	373	385
10:30:57	567.00	742	574	524	376	365
10:30:57	572.00	765	624	509	374	536
10:30:57	512.00	883	574	591	513	506
10:30:57	733.00	1023	907	784	713	715
10:30:57	821.00	1008	881	826	699	706
10:30:57	853.00	1023	920	829	712	697
10:30:57	824.00	1023	906	824	708	705
10:30:57	843.00	1023	888	825	710	706
10:30:57	858.00	1023	906	813	692	699
10:30:57	854.00	1023	904	810	708	704
10:30:57	848.00	1023	905	821	710	696
10:30:57	822.00	1023	910	829	715	708
10:30:57	823.00	1023	906	823	711	695
10:30:57	902.00	1023	936	854	734	724
10:30:57	884.00	1023	919	815	711	711
10:30:57	905.00	1023	924	832	721	711
10:30:57	910.00	1023	931	843	721	714
10:30:57	883.00	1023	921	822	714	707
10:30:57	856.00	1023	903	835	720	701
10:30:57	836.00	1023	915	839	645	711
10:30:57	756.00	1023	913	822	721	662
10:30:57	867.00	1023	810	808	711	658
10:30:57	893.00	1023	878	814	711	687
10:30:57	878.00	1023	911	833	713	710
10:30:57	812.00	1023	911	830	715	708
10:30:57	822.00	1023	896	831	714	708
10:30:57	839.00	1023	906	823	707	703
10:30:57	822.00	1023	896	831	713	707
10:30:57	831.00	1023	905	820	709	704
10:30:57	832.00	1023	905	825	712	708
10:30:57	909.00	1023	927	837	717	375
10:30:57	549.00	699	598	479	370	371
10:30:57	486.00	754	566	484	361	356
10:30:57	471.00	747	572	495	357	398
10:30:57	465.00	746	579	484	387	391
10:30:57	482.00	752	579	536	390	365
10:30:57	514.00	785	639	481	424	520
10:30:57	497.00	892	709	494	541	577
10:30:57	811.00	1023	910	785	697	706
10:30:57	853.00	1023	893	811	707	710
10:30:57	864.00	1023	914	819	698	701
10:30:57	830.00	1023	908	828	714	708
10:30:57	831.00	1023	910	825	706	708
10:30:57	899.00	1023	912	833	715	708
10:30:57	832.00	1023	910	825	699	709
10:30:57	829.00	1023	907	827	714	706
10:30:57	859.00	1023	906	809	705	701
10:30:57	836.00	1023	889	824	713	707
10:30:57	856.00	1023	921	824	720	716
10:30:57	841.00	1023	923	839	722	717
10:30:57	901.00	1023	924	817	715	709
10:30:57	867.00	1023	912	835	721	716
10:30:57	890.00	1023	920	818	711	707
10:30:57	897.00	1023	925	835	718	705
10:30:57	837.00	1023	924	842	675	719
10:30:57	871.00	1023	922	790	711	711
10:30:57	871.00	1023	853	818	705	640
10:30:57	897.00	1023	904	808	715	697
10:30:57	741.00	1023	894	823	711	704
10:30:57	861.00	1023	905	822	708	705
10:30:57	830.00	1023	895	827	712	707
10:30:57	825.00	1023	908	828	707	704
10:30:57	909.00	1023	917	834	720	714
10:30:57	818.00	1023	908	827	712	684
10:30:57	842.00	1023	902	816	707	702
10:30:57	824.00	1023	908	828	712	703
10:30:57	477.00	740	553	485	369	379
10:30:57	502.00	761	568	478	362	352
10:30:57	484.00	741	569	497	377	379
10:30:57	472.00	732	550	483	382	384
10:30:57	603.00	693	622	509	376	370
10:30:57	501.00	749	577	550	385	420
10:30:57	576.00	755	680	498	515	480
10:30:57	834.00	1023	903	768	711	683
10:30:57	833.00	1019	877	830	713	698
10:30:57	830.00	1023	910	834	720	718
10:30:57	839.00	1023	906	826	715	707
10:30:57	860.00	1023	904	818	709	704
10:30:57	842.00	1023	906	821	699	703
10:30:57	830.00	1023	910	825	716	710
10:30:57	916.00	1023	937	838	719	707
10:30:57	824.00	1023	913	834	718	709
10:30:57	846.00	1023	905	821	709	702
10:30:57	827.00	1023	909	849	730	722
10:30:57	906.00	1023	919	819	713	712
10:30:57	883.00	1023	926	823	715	706
10:30:57	913.00	1023	926	838	731	723
10:30:57	867.00	1023	922	840	725	721
10:30:57	846.00	1023	923	840	714	709
10:30:57	887.00	1023	920	820	718	713
10:30:57	917.00	1023	879	843	725	702
10:30:57	802.00	1023	898	818	698	695
10:30:57	840.00	1023	881	817	713	682
10:30:57	812.00	1023	911	832	715	704
10:30:57	821.00	1023	913	829	720	712
10:30:57	867.00	1023	905	817	706	700
10:30:57	828.00	1023	907	826	713	706
10:30:57	845.00	1023	892	818	706	702
10:30:57	851.00	1023	905	820	702	704
10:30:57	838.00	1023	896	826	712	707
10:30:57	835.00	1023	904	823	709	704
10:30:57	511.00	749	551	465	363	374
10:30:57	487.00	772	572	484	362	355
10:30:57	488.00	764	571	495	377	366
10:30:57	495.00	740	558	484	393	458
10:30:57	498.00	755	575	491	378	366
10:30:57	599.00	713	611	527	437	384
10:30:57	506.00	741	602	567	408	408
10:30:57	555.00	1023	731	770	710	599
10:30:57	823.00	1023	846	828	717	657
10:30:57	853.00	1023	905	823	706	694
10:30:57	866.00	1023	905	807	703	698
10:30:57	837.00	1023	910	830	714	704
10:30:57	811.00	1023	910	832	711	713
10:30:57	859.00	1023	903	814	705	700
10:30:57	825.00	1023	907	826	711	698
10:30:57	862.00	1023	902	797	706	700
10:30:57	884.00	1023	906	821	707	706
10:30:57	822.00	1023	912	815	716	719
10:30:57	841.00	1023	922	837	723	718
10:30:57	886.00	1023	923	813	708	705
10:30:57	905.00	1023	923	806	710	706
10:30:57	921.00	1023	929	845	725	718
10:30:57	845.00	1023	924	840	724	709
10:30:57	842.00	1023	924	841	709	715
10:30:57	897.00	1023	908	830	710	688
10:30:57	832.00	1023	912	835	680	703
10:30:57	863.00	1023	914	819	707	704
10:30:57	813.00	1023	898	660	711	707
10:30:57	849.00	1023	904	818	708	703
10:30:57	818.00	1023	904	814	702	699
10:30:57	828.00	1023	909	830	714	708
10:30:57	814.00	1023	910	825	710	702
10:30:57	892.00	1023	904	808	709	703
10:30:57	825.00	1023	904	822	707	702
10:30:57	841.00	1023	904	813	706	699
10:30:57	820.00	749	560	493	385	362
10:30:57	523.00	749	553	470	362	363
10:30:57	476.00	751	574	492	371	356
10:30:57	463.00	873	566	482	358	360
10:30:57	537.00	756	563	480	380	360
10:30:57	499.00	780	567	482	396	391
10:30:57	569.00	775	578	585	449	413
10:30:57	736.00	746	878	599	610	694
10:30:57	867.00	1023	879	824	718	691
10:30:57	854.00	1023	901	824	715	701
10:30:57	843.00	1023	907	817	711	705
10:30:57	837.00	1023	906	826	712	705
10:30:57	865.00	1023	912	828	706	710
10:30:57	821.00	1023	914	835	704	698
10:30:57	826.00	1023	907	825	701	706
10:30:57	862.00	1023	901	825	710	706
10:30:57	865.00	1023	906	819	701	702
10:30:57	826.00	1023	908	832	716	706
10:30:57	851.00	1023	918	836	723	720
10:30:57	853.00	1023	923	825	717	713
10:30:57	837.00	1023	928	839	721	711
10:30:57	900.00	1023	925	824	718	713
10:30:57	938.00	1023	955	851	733	722
10:30:57	858.00	1023	923	835	720	719
10:30:57	853.00	1023	827	831	716	652
10:30:57	782.00	1023	913	821	658	706
10:30:57	851.00	1013	915	756	717	687
10:30:57	829.00	1023	909	820	701	683
10:30:57	829.00	1023	901	832	716	711
10:30:57	809.00	1023	912	830	713	706
10:30:57	879.00	1023	900	811	709	702
10:30:57	859.00	1023	905	817	707	703
10:30:57	828.00	1023	911	833	718	713
10:30:57	853.00	1023	904	824	709	704
10:30:57	822.00	1023	906	814	712	707
10:30:57	821.00	1023	907	495	378	369
10:30:57	485.00	741	558	479	371	370
10:30:57	489.00	746	568	483	368	357
10:30:57	500.00	763	597	555	362	355
10:30:57	559.00	753	570	504	374	352
10:30:57	524.00	786	582	482	374	402
10:30:57	519.00	786	569	528	468	374
10:30:57	620.00	816	686	508	658	572
10:30:57	823.00	1023	903	801	692	690
10:30:57	781.00	1023	897	830	710	699
10:30:57	821.00	1023	909	828	716	711
10:30:57	822.00	1023	911	831	715	706
10:30:57	870.00	1023	906	815	704	699
10:30:57	839.00	1023	906	825	711	704
10:30:57	880.00	1023	907	809	704	702
10:30:57	835.00	1023	901	826	709	705
10:30:57	817.00	1023	909	831	708	708
10:30:57	849.00	1023	896	816	707	703
10:30:57	848.00	1023	927	841	722	711
10:30:57	911.00	1023	923	839	724	717
10:30:57	872.00	1023	921	822	711	712
10:30:57	927.00	1023	956	856	725	722
10:30:57	849.00	1023	927	831	723	719
10:30:57	850.00	1023	921	821	715	697
10:30:57	837.00	1023	921	841	718	717
10:30:57	880.00	1023	834	814	715	703
10:30:57	845.00	1001	895	830	708	685
10:30:57	827.00	1023	904	833	689	702
10:30:57	867.00	1023	901	811	706	703
10:30:57	811.00	1023	913	833	714	697
10:30:57	827.00	1023	902	829	714	707
10:30:57	818.00	1023	909	830	712	706
10:30:57	833.00	1023	905	808	706	701
10:30:57	857.00	1023	905	819	707	694
10:30:57	860.00	1023	904	814	708	702
10:30:57	821.00	1023	913	832	358	356
10:30:57	497.00	749	558	488	383	368
10:30:57	488.00	749	559	480	370	369
10:30:57	493.00	757	574	480	387	357
10:30:57	480.00	755	594	492	401	384
10:30:57	488.00	738	564	513	375	369
10:30:57	604.00	755	621	565	391	469
10:30:57	487.00	858	596	509	579	527
10:30:57	837.00	1023	910	794	698	703
10:30:57	838.00	1023	901	820	711	705
10:30:57	852.00	1023	913	818	712	705
10:30:57	915.00	1023	931	839	721	713
10:30:57	822.00	1023	912	832	709	711
10:30:57	821.00	1023	916	834	717	710
10:30:57	831.00	1023	907	824	711	706
10:30:57	847.00	1023	900	824	702	696
10:30:57	835.00	1023	905	817	706	698
10:30:57	882.00	1023	904	814	707	702
10:30:57	830.00	1023	925	835	722	715
10:30:57	869.00	1023	920	821	716	714
10:30:57	940.00	1023	966	853	723	722
10:30:57	882.00	1023	926	815	714	709
10:30:57	925.00	1023	936	848	731	718
10:30:57	843.00	1023	918	825	717	707
10:30:57	840.00	1023	897	839	719	691
10:30:57	857.00	1023	921	779	712	682
10:30:57	851.00	1023	911	776	721	685
10:30:57	853.00	1023	904	820	702	697
10:30:57	895.00	1023	912	832	714	708
10:30:57	849.00	1023	902	825	713	707
10:30:57	859.00	1023	905	815	695	700
10:30:57	903.00	1023	897	837	719	713
10:30:57	843.00	1023	905	818	706	688
10:30:57	887.00	1023	904	815	707	700
10:30:57	902.00	1023	929	840	720	708
10:30:57	824.00	1023	905	815	696	352
10:30:57	466.00	742	553	480	375	378
10:30:57	538.00	764	558	473	357	348
10:30:57	482.00	746	584	510	367	374
10:30:57	470.00	743	585	578	402	362
10:30:57	471.00	741	590	483	367	373
10:30:57	504.00	741	606	509	427	417
10:30:57	539.00	748	656	538	412	488
10:30:57	831.00	982	909	827	656	694
10:30:57	751.00	1023	906	811	710	708
10:30:57	820.00	1023	908	815	704	699
10:30:57	828.00	1023	908	824	713	705
10:30:57	823.00	1023	888	828	715	710
10:30:57	844.00	1023	906	825	702	707
10:30:57	826.00	1023	909	831	714	707
10:30:57	824.00	1023	914	834	702	709
10:30:57	833.00	1023	905	826	713	705
10:30:57	818.00	1023	908	829	709	694
10:30:57	826.00	1023	922	837	723	715
10:30:57	906.00	1023	918	823	716	715
10:30:57	884.00	1023	926	807	712	709
10:30:57	898.00	1023	914	831	723	717
10:30:57	902.00	1023	921	834	722	716
10:30:57	887.00	1023	906	821	717	712
10:30:57	907.00	1023	913	721	707	710
10:30:57	835.00	1023	849	836	703	700
10:30:57	888.00	1023	896	811	708	698
10:30:57	792.00	1023	905	826	704	704
10:30:57	863.00	1023	902	831	714	700
10:30:57	909.00	1023	928	841	724	715
10:30:57	896.00	1023	913	828	712	710
10:30:57	847.00	1023	905	823	710	704
10:30:57	825.00	1023	908	831	716	709
10:30:57	865.00	1023	903	804	701	699
10:30:57	857.00	1023	904	824	709	703
10:30:57	793.00	1023	908	827	709	707
10:30:57	469.00	736	557	505	387	377
10:30:57	483.00	754	558	483	369	386
10:30:57	485.00	760	583	492	375	357
10:30:57	520.00	751	555	479	363	364
10:30:57	482.00	741	565	484	379	379
10:30:57	485.00	794	607	485	466	398
10:30:57	508.00	877	587	557	566	395
10:30:57	721.00	1023	864	786	670	654
10:30:57	841.00	1023	910	803	711	699
10:30:57	831.00	1023	880	817	720	719
10:30:57	824.00	1023	914	834	718	714
10:30:57	843.00	1023	907	822	710	703
10:30:57	864.00	1023	906	814	706	694
10:30:57	827.00	1023	908	822	715	708
10:30:57	851.00	1023	906	826	713	703
10:30:57	921.00	1023	946	838	719	714
10:30:57	824.00	1023	913	832	714	709
10:30:57	822.00	1023	905	829	718	714
10:30:57	883.00	1023	919	815	714	712
10:30:57	900.00	1023	925	828	716	710
10:30:57	962.00	1023	975	846	734	727
10:30:57	843.00	1023	924	838	719	717
10:30:57	936.00	1023	945	846	730	720
10:30:57	835.00	1023	904	838	723	709
10:30:57	844.00	1023	895	838	669	718
10:30:57	902.00	1002	914	778	711	681
10:30:57	834.00	1023	873	811	700	702
10:30:57	866.00	1023	876	814	699	691
10:30:57	889.00	1023	905	812	712	708
10:30:57	821.00	1023	917	836	717	709
10:30:57	822.00	1023	904	819	712	705
10:30:57	862.00	1023	896	822	710	705
10:30:57	832.00	1023	905	818	695	703
10:30:57	837.00	1023	890	821	706	703
10:30:57	828.00	1023	907	827	711	703
10:30:57	488.00	753	550	464	371	375
10:30:57	537.00	759	558	461	358	365
10:30:57	489.00	757	572	503	371	359
10:30:57	510.00	729	554	496	381	364
10:30:57	510.00	745	555	479	365	376
10:30:57	512.00	753	577	519	453	376
10:30:57	514.00	890	595	490	489	384
10:30:57	828.00	868	870	689	614	686
10:30:57	832.00	1023	890	807	699	697
10:30:57	839.00	1023	879	828	718	707
10:30:57	868.00	1023	907	810	700	697
10:30:57	893.00	1023	907	825	711	705
10:30:57	877.00	1023	906	804	701	697
10:30:57	825.00	1023	909	825	715	708
10:30:57	893.00	1023	910	832	716	710
10:30:57	829.00	1023	909	831	714	708
10:30:57	832.00	1023	906	812	703	702
10:30:57	835.00	1023	908	827	710	713
10:30:57	887.00	1023	922	816	714	712
10:30:57	901.00	1023	925	822	717	713
10:30:57	859.00	1023	925	834	717	711
10:30:57	848.00	1023	919	828	716	714
10:30:57	889.00	1023	923	823	712	697
10:30:57	912.00	1023	919	844	720	713
10:30:57	881.00	1023	925	770	704	712
10:30:57	904.00	1023	930	842	712	693
10:30:57	814.00	1023	903	836	722	706
10:30:57	840.00	1023	841	739	706	682
10:30:57	821.00	1023	909	824	718	713
10:30:57	835.00	1023	906	826	715	699
10:30:57	862.00	1023	906	815	707	703
10:30:57	825.00	1023	908	828	712	706
10:30:57	918.00	1023	935	836	720	708
10:30:57	824.00	1023	908	830	715	707
10:30:57	828.00	1023	908	825	706	705
10:30:57	873.00	776	576	495	368	351
10:30:57	479.00	737	554	478	374	364
10:30:57	483.00	753	564	474	359	363
10:30:57	474.00	1009	570	476	360	361
10:30:57	502.00	758	558	476	367	364
10:30:57	487.00	769	647	502	373	387
10:30:57	518.00	761	572	656	496	376
10:30:57	571.00	771	767	606	697	698
10:30:57	798.00	1023	828	827	718	627
10:30:57	826.00	1023	915	828	714	711
10:30:57	888.00	1023	907	814	703	692
10:30:57	824.00	1023	911	824	716	701
10:30:57	833.00	1023	908	828	714	689
10:30:57	832.00	1023	903	803	705	699
10:30:57	824.00	1023	908	830	714	705
10:30:57	862.00	1023	911	828	715	710
10:30:57	828.00	1023	908	828	713	706
10:30:57	839.00	1023	907	823	713	707
10:30:57	837.00	1023	921	837	721	716
10:30:57	964.00	1023	970	850	730	724
10:30:57	873.00	1023	925	831	719	713
10:30:57	852.00	1023	925	827	710	710
10:30:57	848.00	1023	924	835	707	704
10:30:57	879.00	1023	916	819	714	692
10:30:57	894.00	1023	922	793	714	714
10:30:57	875.00	1023	922	824	718	667
10:30:57	827.00	1023	914	805	724	707
10:30:57	821.00	1023	893	824	697	715
10:30:57	823.00	1023	909	822	711	707
10:30:57	821.00	1023	910	830	714	707
10:30:57	841.00	1023	906	819	713	705
10:30:57	831.00	1023	900	819	707	699
10:30:57	895.00	1023	906	826	711	706
10:30:57	896.00	1023	902	808	708	705
10:30:57	883.00	1023	905	818	707	691
10:30:57	831.00	1023	869	510	378	361
10:30:57	503.00	755	554	465	370	365
10:30:57	495.00	752	560	481	367	370
10:30:57	486.00	760	654	471	360	343
10:30:57	471.00	767	564	476	369	373
10:30:57	495.00	768	601	476	365	388
10:30:57	491.00	762	680	536	367	500
10:30:57	576.00	775	738	604	537	693
10:30:57	826.00	1023	857	811	702	615
10:30:57	831.00	1023	911	833	686	712
10:30:57	768.00	1023	907	825	707	705
10:30:57	920.00	1023	946	838	722	713
10:30:57	836.00	1023	910	829	712	700
10:30:57	904.00	1023	911	820	715	708
10:30:57	830.00	1023	907	825	714	709
10:30:57	844.00	1023	904	812	706	702
10:30:57	854.00	1023	906	818	708	701
10:30:57	825.00	1023	911	828	713	707
10:30:57	839.00	1023	926	839	724	712
10:30:57	882.00	1023	920	817	713	711
10:30:57	902.00	1023	920	817	710	709
10:30:57	893.00	1023	928	834	720	712
10:30:57	927.00	1023	950	848	726	721
10:30:57	880.00	1023	919	829	714	698
10:30:57	865.00	1023	918	816	642	711
10:30:57	843.00	1023	918	799	713	707
10:30:57	887.00	1023	907	816	718	687
10:30:57	849.00	1023	893	818	699	693
10:30:57	871.00	1023	905	806	689	697
10:30:57	855.00	1023	905	817	705	701
10:30:57	811.00	1023	914	836	708	710
10:30:57	840.00	1023	891	825	711	704
10:30:57	918.00	1023	933	837	714	718
10:30:57	924.00	1023	945	836	719	711
10:30:57	821.00	1023	910	830	715	700
10:30:57	912.00	1023	929	839	390	361
10:30:57	463.00	734	572	480	370	368
10:30:57	488.00	742	555	481	360	367
10:30:57	520.00	784	567	485	394	349
10:30:57	504.00	766	603	487	360	361
10:30:57	582.00	783	566	469	375	423
10:30:57	537.00	758	647	500	368	513
10:30:57	581.00	791	802	585	398	686
10:30:57	821.00	1023	892	836	645	631
10:30:57	834.00	1023	874	834	668	709
10:30:57	864.00	1023	865	816	708	707
10:30:57	825.00	1023	908	823	714	707
10:30:57	915.00	1023	936	840	723	712
10:30:57	823.00	1023	912	834	721	712
10:30:57	841.00	1023	907	821	709	702
10:30:57	827.00	1023	908	827	711	704
10:30:57	848.00	1023	906	818	708	702
10:30:57	824.00	1023	912	829	703	708
10:30:57	844.00	1023	926	838	720	710
10:30:57	878.00	1023	920	825	717	714
10:30:57	855.00	1023	919	829	719	714
10:30:57	891.00	1023	927	823	714	707
10:30:57	864.00	1023	924	832	714	708
10:30:57	892.00	1023	887	808	714	704
10:30:57	901.00	1023	901	822	711	677
10:30:57	868.00	932	914	803	712	718
10:30:57	811.00	1023	860	805	708	661
10:30:57	832.00	1023	891	820	721	710
10:30:57	837.00	1023	907	827	708	698
10:30:57	825.00	1023	903	809	714	698
10:30:57	822.00	1023	907	824	712	696
10:30:57	823.00	1023	910	829	714	707
10:30:57	888.00	1023	905	815	707	696
10:30:57	838.00	1023	905	824	712	706
10:30:57	824.00	1023	905	816	707	701
10:30:57	826.00	1023	909	827	704	371
10:30:57	460.00	732	567	502	385	379
10:30:57	495.00	750	552	471	364	367
10:30:57	584.00	730	607	492	372	402
10:30:57	475.00	756	598	502	382	394
10:30:57	575.00	714	629	497	370	383
10:30:57	633.00	730	634	636	403	385
10:30:57	505.00	748	646	636	450	517
10:30:57	707.00	1023	851	790	688	701
10:30:57	825.00	1023	840	818	714	699
10:30:57	887.00	1023	921	829	709	709
10:30:57	826.00	1023	911	825	714	711
10:30:57	890.00	1023	906	814	705	697
10:30:57	832.00	1023	907	819	716	709
10:30:57	834.00	1023	906	828	710	703
10:30:57	824.00	1023	910	828	716	709
10:30:57	836.00	1023	905	811	704	699
10:30:57	829.00	1023	911	831	715	704
10:30:57	853.00	1023	920	829	715	710
10:30:57	884.00	1023	940	849	727	718
10:30:57	946.00	1023	963	849	731	722
10:30:57	885.00	1023	918	829	715	713
10:30:57	903.00	1023	922	838	725	712
10:30:57	896.00	1023	920	822	699	715
10:30:57	833.00	1023	919	782	719	712
10:30:57	802.00	1023	916	799	725	606
10:30:57	829.00	1023	910	791	716	704
10:30:57	818.00	1023	904	826	701	691
10:30:57	828.00	1023	907	825	699	705
10:30:57	836.00	1023	907	827	712	705
10:30:57	825.00	1023	909	828	704	708
10:30:57	916.00	1023	902	836	718	707
10:30:57	806.00	1023	906	825	708	709
10:30:57	886.00	1023	901	826	711	706
10:30:57	817.00	1023	909	829	714	696
10:30:57	844.00	1023	905	825	712	705
10:30:57	552.00	788	555	465	357	354
10:30:57	479.00	738	582	504	375	359
10:30:57	550.00	738	561	489	391	383
10:30:57	572.00	705	586	489	377	405
10:30:57	506.00	749	557	475	378	371
10:30:57	526.00	771	609	487	403	468
10:30:57	512.00	814	735	487	478	453
10:30:57	721.00	970	726	831	639	704
10:30:57	827.00	1023	895	830	683	711
10:30:57	828.00	1023	909	807	701	699
10:30:57	824.00	1023	899	830	713	707
10:30:57	841.00	1023	905	817	708	697
10:30:57	823.00	1023	909	834	720	713
10:30:57	832.00	1023	909	831	720	703
10:30:57	858.00	1023	906	820	710	703
10:30:57	829.00	1023	911	831	711	704
10:30:57	826.00	1023	909	820	717	711
10:30:57	847.00	1023	908	827	725	720
10:30:57	876.00	1023	922	821	711	710
10:30:57	886.00	1023	925	827	713	710
10:30:57	851.00	1023	922	822	709	715
10:30:57	900.00	1023	913	814	715	713
10:30:57	866.00	1023	914	825	716	709
10:30:57	840.00	1023	912	845	718	717
10:30:57	859.00	1023	915	817	717	623
10:30:57	808.00	1023	920	803	645	708
10:30:57	821.00	1023	893	830	717	701
10:30:57	827.00	1023	888	823	712	706
10:30:57	853.00	1023	905	816	708	701
10:30:57	856.00	1023	904	806	707	701
10:30:57	825.00	1023	907	828	711	704
10:30:57	917.00	1023	937	838	716	713
10:30:57	830.00	1023	908	830	709	701
10:30:57	869.00	1023	905	810	706	702
10:30:57	822.00	1023	905	811	705	699
10:30:57	548.00	759	554	464	350	360
10:30:57	572.00	732	607	495	372	359
10:30:57	493.00	750	566	492	366	369
10:30:57	571.00	730	555	475	371	385
10:30:57	582.00	710	601	487	369	378
10:30:57	508.00	764	575	510	439	382
10:30:57	666.00	762	594	622	499	390
10:30:57	721.00	824	831	697	683	707
10:30:57	808.00	1023	906	771	706	705
10:30:57	832.00	1023	903	838	706	712
10:30:57	859.00	1023	906	827	712	706
10:30:57	825.00	1023	914	832	717	708
10:30:57	917.00	1023	942	840	721	711
10:30:57	861.00	1023	906	826	713	708
10:30:57	832.00	1023	899	829	715	710
10:30:57	837.00	1023	906	824	710	708
10:30:57	834.00	1023	896	826	714	706
10:30:57	863.00	1023	906	818	708	713
10:30:57	869.00	1023	915	825	716	715
10:30:57	844.00	1023	926	837	719	714
10:30:57	872.00	1023	925	823	716	699
10:30:57	841.00	1023	922	838	725	710
10:30:57	898.00	1023	924	816	711	708
10:30:57	817.00	1023	919	799	717	710
10:30:57	907.00	1023	911	844	725	655
10:30:57	850.00	1023	919	823	712	679
10:30:57	834.00	1023	909	817	690	707
10:30:57	821.00	1023	902	834	723	682
10:30:57	836.00	1023	908	827	703	707
10:30:57	822.00	1023	907	827	712	708
10:30:57	837.00	1023	905	825	711	701
10:30:57	840.00	1023	905	825	711	707
10:30:57	902.00	1023	916	833	717	693
10:30:57	844.00	1023	906	821	710	705
10:30:57	831.00	1023	908	810	702	696
10:30:57	859.00	1023	565	493	395	358
10:30:57	520.00	756	544	465	363	370
10:30:57	507.00	767	566	482	358	345
10:30:57	474.00	744	779	503	360	352
10:30:57	570.00	766	563	509	375	366
10:30:57	578.00	755	630	499	389	449
10:30:57	515.00	768	596	487	482	407
10:30:57	694.00	936	585	765	487	644
10:30:57	796.00	1023	876	803	708	698
10:30:57	852.00	1023	889	804	712	694
10:30:57	738.00	1023	909	820	713	708
10:30:57	827.00	1023	911	831	715	711
10:30:57	840.00	1023	903	827	712	705
10:30:57	830.00	1023	908	828	710	691
10:30:57	838.00	1023	906	824	711	706
10:30:57	839.00	1023	907	825	713	702
10:30:57	824.00	1023	908	828	715	708
10:30:57	858.00	1023	906	823	711	700
10:30:57	941.00	1023	967	854	732	724
10:30:57	901.00	1023	947	851	730	725
10:30:57	878.00	1023	927	820	706	708
10:30:57	898.00	1023	926	822	715	710
10:30:57	905.00	1023	924	816	704	716
10:30:57	911.00	1023	931	846	721	727
10:30:57	812.00	1023	925	822	729	703
10:30:57	842.00	1023	918	830	721	661
10:30:57	840.00	1023	883	843	711	704
10:30:57	825.00	1023	914	827	711	717
10:30:57	839.00	1023	901	825	711	706
10:30:57	912.00	1023	918	828	705	708
10:30:57	823.00	1023	912	835	716	710
10:30:57	819.00	1023	906	828	713	708
10:30:57	831.00	1023	905	830	712	707
10:30:57	850.00	1023	905	817	705	689
10:30:57	887.00	1023	899	824	711	704
10:30:57	827.00	1023	908	676	369	360
10:30:57	473.00	739	562	485	373	373
10:30:57	482.00	747	553	475	368	374
10:30:57	567.00	747	575	497	391	366
10:30:57	494.00	766	594	488	373	382
10:30:57	499.00	763	593	502	364	365
10:30:57	582.00	789	592	590	382	488
10:30:57	501.00	794	679	574	499	679
10:30:57	847.00	1023	870	824	709	596
10:30:57	858.00	1023	912	803	692	707
10:30:57	830.00	1023	895	815	716	708
10:30:57	815.00	1023	905	818	706	693
10:30:57	874.00	1023	905	813	707	701
10:30:57	825.00	1023	909	829	713	708
10:30:57	915.00	1023	931	840	723	714
10:30:57	825.00	1023	909	829	703	696
10:30:57	854.00	1023	905	816	702	700
10:30:57	941.00	1023	957	835	717	711
10:30:57	868.00	1023	925	825	714	706
10:30:57	838.00	1023	923	838	724	717
10:30:57	875.00	1023	917	826	709	712
10:30:57	836.00	1023	930	843	721	710
10:30:57	858.00	1023	920	829	715	708
10:30:57	859.00	1023	921	824	697	708
10:30:57	889.00	1023	921	819	614	708
10:30:57	868.00	1023	919	771	713	649
10:30:57	838.00	1023	915	771	705	711
10:30:57	827.00	1023	897	821	717	708
10:30:57	853.00	1023	897	819	706	703
10:30:57	857.00	1023	906	824	712	705
10:30:57	827.00	1023	905	818	713	707
10:30:57	823.00	1023	909	830	712	691
10:30:57	858.00	1023	903	805	707	702
10:30:57	820.00	1023	914	834	713	707
10:30:57	821.00	1023	910	827	713	707
10:30:57	868.00	1023	899	813	703	342
10:30:57	505.00	754	564	490	376	360
10:30:57	511.00	750	550	462	360	362
10:30:57	560.00	754	569	483	363	546
10:30:57	465.00	760	607	501	405	383
10:30:57	591.00	723	600	497	384	381
10:30:57	580.00	768	572	548	392	367
10:30:57	606.00	781	604	747	533	405
10:30:57	699.00	1023	849	730	714	708
10:30:57	849.00	1023	868	811	710	696
10:30:57	821.00	1023	920	838	718	712
10:30:57	825.00	1023	908	828	716	704
10:30:57	912.00	1023	918	827	719	712
10:30:57	836.00	1023	906	823	712	699
10:30:57	862.00	1023	906	801	699	698
10:30:57	874.00	1023	909	839	718	712
10:30:57	821.00	1023	912	831	716	710
10:30:57	826.00	1023	901	828	714	708
10:30:57	817.00	1023	922	836	720	712
10:30:57	883.00	1023	924	824	717	713
10:30:57	938.00	1023	950	852	734	726
10:30:57	883.00	1023	920	823	714	707
10:30:57	929.00	1023	956	853	726	720
10:30:57	842.00	1023	925	839	720	704
10:30:57	934.00	1023	906	853	729	664
10:30:57	857.00	1023	907	826	616	713
10:30:57	833.00	1023	876	811	704	693
10:30:57	843.00	1023	896	823	719	700
10:30:57	872.00	1023	877	817	709	705
10:30:57	821.00	1023	908	827	706	696
10:30:57	838.00	1023	905	812	710	706
10:30:57	831.00	1023	907	826	710	704
10:30:57	861.00	1023	904	807	702	701
10:30:57	822.00	1023	896	829	715	709
10:30:57	821.00	1023	907	823	706	705
10:30:57	864.00	1023	904	814	706	699
10:30:57	479.00	736	577	503	381	374
10:30:57	480.00	739	560	488	382	376
10:30:57	532.00	778	569	467	369	363
10:30:57	475.00	748	569	491	367	374
10:30:57	540.00	760	573	483	391	407
10:30:57	512.00	753	569	520	378	380
10:30:57	512.00	747	699	618	383	575
10:30:57	686.00	1023	842	719	661	697
10:30:57	868.00	1023	855	810	707	702
10:30:57	817.00	1023	908	834	713	688
10:30:57	852.00	1023	900	819	710	703
10:30:57	915.00	1023	936	838	714	711
10:30:57	836.00	1023	898	829	714	707
10:30:57	836.00	1023	907	827	711	689
10:30:57	877.00	1023	906	813	708	704
10:30:57	838.00	1023	909	824	710	704
10:30:57	827.00	1023	910	828	713	706
10:30:57	828.00	1023	912	845	724	714
10:30:57	871.00	1023	923	826	717	711
10:30:57	914.00	1023	924	842	723	713
10:30:57	886.00	1023	921	812	711	713
10:30:57	955.00	1023	975	853	729	721
10:30:57	854.00	1023	919	821	674	713
10:30:57	901.00	1023	954	842	729	711
10:30:57	836.00	1023	923	823	715	716
10:30:57	831.00	1023	925	816	716	699
10:30:57	856.00	1023	911	816	714	702
10:30:57	819.00	919	918	830	712	709
10:30:57	820.00	1023	905	822	710	707
10:30:57	821.00	1023	911	831	709	709
10:30:57	836.00	1023	884	825	704	699
10:30:57	843.00	1023	905	824	706	705
10:30:57	825.00	1023	892	813	705	700
10:30:57	905.00	1023	934	838	722	711
10:30:57	842.00	1023	905	821	712	707
10:30:57	482.00	750	567	493	380	367
10:30:57	494.00	747	555	482	373	377
10:30:57	485.00	758	575	483	367	368
10:30:57	566.00	693	615	484	381	397
10:30:57	479.00	746	551	482	367	364
10:30:57	541.00	766	576	557	379	415
10:30:57	496.00	785	571	581	404	468
10:30:57	539.00	1023	676	834	581	690
10:30:57	828.00	1023	857	820	714	679
10:30:57	852.00	1023	908	824	708	705
10:30:57	830.00	1023	912	830	716	710
10:30:57	824.00	1023	905	821	709	705
10:30:57	823.00	1023	907	824	698	707
10:30:57	823.00	1023	906	826	713	708
10:30:57	820.00	1023	919	836	710	711
10:30:57	857.00	1023	900	821	709	702
10:30:57	877.00	1023	905	811	705	696
10:30:57	896.00	1023	919	835	724	719
10:30:57	866.00	1023	922	826	717	713
10:30:57	915.00	1023	926	843	728	721
10:30:57	892.00	1023	926	820	699	708
10:30:57	867.00	1023	918	833	722	715
10:30:57	894.00	1023	934	849	709	714
10:30:57	877.00	1023	922	826	722	707
10:30:57	858.00	1023	913	823	716	696
10:30:57	871.00	1023	904	794	684	706
10:30:57	883.00	1023	906	813	707	698
10:30:57	819.00	1023	881	824	710	699
10:30:57	828.00	1023	907	828	713	709
10:30:57	837.00	1023	906	825	711	707
10:30:57	863.00	1023	906	795	702	698
10:30:57	853.00	1023	892	821	710	706
10:30:57	875.00	1023	905	819	705	700
10:30:57	872.00	1023	905	810	705	700
10:30:57	910.00	1023	928	837	715	715
10:30:57	823.00	754	591	495	370	362
10:30:57	471.00	744	547	479	369	366
10:30:57	501.00	752	563	474	359	365
10:30:57	508.00	832	577	480	367	391
10:30:57	503.00	760	568	471	364	365
10:30:57	515.00	760	586	518	390	389
10:30:57	524.00	825	615	493	534	450
10:30:57	743.00	714	903	579	723	639
10:30:57	820.00	1023	864	814	711	704
10:30:57	831.00	1023	890	827	703	692
10:30:57	842.00	1023	906	824	710	705
10:30:57	823.00	1023	916	832	706	698
10:30:57	827.00	1023	909	828	707	706
10:30:57	850.00	1023	903	821	711	705
10:30:57	867.00	1023	907	812	704	700
10:30:57	888.00	1023	905	815	707	701
10:30:57	810.00	1023	913	834	715	710
10:30:57	824.00	1023	907	834	715	709
10:30:57	846.00	1023	926	840	723	714
10:30:57	904.00	1023	923	841	723	716
10:30:57	876.00	1023	923	811	712	704
10:30:57	901.00	1023	919	816	715	708
10:30:57	865.00	1023	925	826	719	701
10:30:57	839.00	1023	918	839	716	719
10:30:57	844.00	1023	898	824	718	680
10:30:57	817.00	1023	908	836	703	719
10:30:57	825.00	1023	905	830	722	699
10:30:57	917.00	1023	943	805	634	716
10:30:57	824.00	1023	902	831	714	707
10:30:57	826.00	1023	905	815	706	699
10:30:57	821.00	1023	905	830	714	707
10:30:57	847.00	1023	905	820	709	705
10:30:57	825.00	1023	907	827	716	708
10:30:57	869.00	1023	905	814	706	683
10:30:57	848.00	1023	905	800	708	702
10:30:57	915.00	1023	608	490	367	350
10:30:57	552.00	751	569	490	374	364
10:30:57	472.00	735	553	486	380	375
10:30:57	541.00	763	585	464	351	354
10:30:57	500.00	761	562	486	377	371
10:30:57	609.00	721	598	582	455	372
10:30:57	495.00	755	623	497	496	378
10:30:57	633.00	799	765	762	665	660
10:30:57	814.00	1023	903	740	714	707
10:30:57	818.00	1023	899	830	719	696
10:30:57	884.00	1023	906	820	695	699
10:30:57	894.00	1023	915	832	715	709
10:30:57	835.00	1023	906	827	709	704
10:30:57	821.00	1023	912	819	717	708
10:30:57	820.00	1023	910	830	715	711
10:30:57	836.00	1023	907	822	713	709
10:30:57	871.00	1023	906	820	707	701
10:30:57	824.00	1023	907	818	708	699
10:30:57	864.00	1023	924	830	717	710
10:30:57	917.00	1023	932	847	728	723
10:30:57	855.00	1023	922	834	724	715
10:30:57	928.00	1023	961	855	733	719
10:30:57	902.00	1023	916	811	716	708
10:30:57	840.00	1023	925	838	726	719
10:30:57	854.00	1023	906	825	672	707
10:30:57	857.00	1023	885	824	683	658
10:30:57	840.00	1023	911	819	711	709
10:30:57	830.00	1023	913	818	710	629
10:30:57	847.00	1023	904	820	706	704
10:30:57	830.00	1023	899	824	712	705
10:30:57	825.00	1023	905	820	702	699
10:30:57	877.00	1023	906	803	700	696
10:30:57	861.00	1023	905	813	705	699
10:30:57	822.00	1023	910	813	716	709
10:30:57	826.00	1023	909	831	714	703
10:30:57	826.00	1023	908	784	361	364
10:30:57	475.00	754	584	486	367	353
10:30:57	504.00	744	543	484	382	373
10:30:57	483.00	759	554	486	583	357
10:30:57	478.00	744	582	495	378	369
10:30:57	502.00	777	588	496	372	411
10:30:57	490.00	789	628	497	380	427
10:30:57	484.00	833	689	506	608	558
10:30:57	824.00	1023	883	809	636	682
10:30:57	808.00	1023	875	790	706	700
10:30:57	845.00	1023	905	815	710	699
10:30:57	881.00	1023	904	815	708	703
10:30:57	835.00	1023	907	826	714	708
10:30:57	834.00	1023	907	828	705	711
10:30:57	822.00	1023	909	828	715	706
10:30:57	823.00	1023	908	828	708	709
10:30:57	820.00	1023	913	835	717	708
10:30:57	823.00	1023	909	829	714	701
10:30:57	857.00	1023	924	814	708	707
10:30:57	910.00	1023	965	856	735	726
10:30:57	904.00	1023	919	817	714	713
10:30:57	915.00	1023	933	843	722	713
10:30:57	869.00	1023	917	817	714	712
10:30:57	898.00	1023	919	807	718	710
10:30:57	898.00	1023	855	823	716	652
10:30:57	910.00	990	917	790	712	716
10:30:57	817.00	1023	906	833	708	707
10:30:57	830.00	1023	909	816	709	711
10:30:57	826.00	1023	906	822	711	703
10:30:57	839.00	1023	906	829	700	695
10:30:57	880.00	1023	905	801	698	695
10:30:57	826.00	1023	904	810	687	697
10:30:57	917.00	1023	936	841	723	712
10:30:57	856.00	1023	906	813	705	687
10:30:57	822.00	1023	908	817	714	706
10:30:57	823.00	1023	909	825	714	353
10:30:57	493.00	750	571	495	371	354
10:30:57	567.00	712	588	503	386	377
10:30:57	504.00	749	559	475	367	517
10:30:57	496.00	777	583	564	380	360
10:30:57	501.00	752	585	531	363	354
10:30:57	546.00	787	653	490	383	516
10:30:57	517.00	775	713	543	452	564
10:30:57	847.00	1023	880	772	712	708
10:30:57	818.00	1023	906	819	726	711
10:30:57	854.00	1023	893	761	709	705
10:30:57	883.00	1023	906	815	706	695
10:30:57	836.00	1023	906	823	715	707
10:30:57	819.00	1023	912	832	716	703
10:30:57	877.00	1023	905	798	704	701
10:30:57	829.00	1023	907	825	702	694
10:30:57	836.00	1023	906	809	706	700
10:30:57	894.00	1023	904	792	697	692
10:30:57	882.00	1023	925	820	712	707
10:30:57	866.00	1023	925	826	716	710
10:30:57	841.00	1023	920	813	713	713
10:30:57	963.00	1023	975	851	731	721
10:30:57	841.00	1023	924	831	720	714
10:30:57	844.00	1023	918	793	724	715
10:30:57	894.00	1023	874	821	716	675
10:30:57	840.00	1023	805	842	615	710
10:30:57	863.00	1023	897	830	709	697
10:30:57	862.00	1023	895	822	700	704
10:30:57	685.00	1023	865	822	708	702
10:30:57	824.00	1023	909	828	712	707
10:30:57	846.00	1023	894	818	707	700
10:30:57	917.00	1023	932	835	706	711
10:30:57	825.00	1023	893	815	705	702
10:30:57	845.00	1023	907	806	692	700
10:30:57	886.00	1023	906	821	708	704
10:30:57	810.00	1023	909	827	713	700
10:30:57	564.00	751	582	488	372	350
10:30:57	533.00	761	576	492	370	348
10:30:57	484.00	746	559	468	367	360
10:30:57	505.00	760	556	477	370	368
10:30:57	510.00	761	565	486	418	405
10:30:57	484.00	802	581	493	478	385
10:30:57	583.00	918	625	606	675	454
10:30:57	800.00	924	832	825	631	689
10:30:57	846.00	1023	900	815	704	707
10:30:57	922.00	1023	935	848	718	720
10:30:57	843.00	1023	907	825	713	709
10:30:57	892.00	1023	906	824	713	706
10:30:57	821.00	1023	910	828	697	707
10:30:57	828.00	1023	901	828	713	704
10:30:57	807.00	1023	913	834	717	709
10:30:57	852.00	1023	901	823	709	701
10:30:57	819.00	1023	908	830	713	708
10:30:57	859.00	1023	905	840	720	715
10:30:57	864.00	1023	922	821	715	712
10:30:57	889.00	1023	925	825	716	707
10:30:57	925.00	1023	962	852	742	731
10:30:57	910.00	1023	918	842	722	721
10:30:57	910.00	1023	924	839	720	712
10:30:57	838.00	1023	887	839	724	705
10:30:57	856.00	1023	921	827	652	716
10:30:57	864.00	1023	917	701	712	702
10:30:57	822.00	1023	909	836	705	711
10:30:57	821.00	1023	919	827	706	707
10:30:57	859.00	1023	895	815	707	703
10:30:57	818.00	1023	906	825	703	707
10:30:57	911.00	1023	937	841	724	716
10:30:57	826.00	1023	911	832	713	694
10:30:57	856.00	1023	904	811	707	702
10:30:57	817.00	1023	912	831	715	709
10:30:57	858.00	1023	903	815	709	704
10:30:57	516.00	752	547	463	362	374
10:30:57	529.00	762	571	472	361	353
10:30:57	470.00	738	588	507	372	366
10:30:57	503.00	744	549	480	369	390
10:30:57	487.00	749	562	474	365	372
10:30:57	495.00	754	596	543	376	397
10:30:57	520.00	752	688	501	404	470
10:30:57	575.00	1023	751	782	691	679
10:30:57	845.00	1020	892	798	711	697
10:30:57	840.00	1023	905	830	688	705
10:30:57	829.00	1023	912	832	717	712
10:30:57	857.00	1023	907	820	710	703
10:30:57	824.00	1023	911	830	705	712
10:30:57	833.00	1023	888	829	714	707
10:30:57	847.00	1023	906	821	712	705
10:30:57	849.00	1023	904	814	706	701
10:30:57	813.00	1023	913	834	709	709
10:30:57	871.00	1023	905	800	707	716
10:30:57	906.00	1023	919	836	713	712
10:30:57	951.00	1023	974	852	731	722
10:30:57	856.00	1023	923	827	716	709
10:30:57	888.00	1023	909	816	718	714
10:30:57	912.00	1023	927	841	720	703
10:30:57	839.00	1023	908	841	724	685
10:30:57	869.00	1023	918	831	655	691
10:30:57	824.00	1023	901	805	699	709
10:30:57	801.00	1023	866	819	698	686
10:30:57	816.00	1023	906	703	707	699
10:30:57	822.00	1023	913	833	718	711
10:30:57	824.00	1023	908	828	708	698
10:30:57	826.00	1023	908	819	715	713
10:30:57	851.00	1023	906	823	709	702
10:30:57	823.00	1023	911	822	715	709
10:30:57	851.00	1023	906	827	715	710
10:30:57	825.00	1023	908	829	716	707
10:30:57	861.00	751	554	462	359	381
10:30:57	502.00	754	570	482	363	353
10:30:57	538.00	765	574	483	369	353
10:30:57	517.00	752	563	470	359	358
10:30:57	495.00	751	566	488	363	414
10:30:57	488.00	731	583	545	391	384
10:30:57	540.00	790	701	485	504	492
10:30:57	685.00	809	797	650	619	626
10:30:57	917.00	1023	934	792	723	714
10:30:57	867.00	1023	906	819	706	701
10:30:57	867.00	1023	905	818	710	705
10:30:57	852.00	1023	905	812	702	697
10:30:57	831.00	1023	907	817	715	708
10:30:57	827.00	1023	911	828	712	706
10:30:57	824.00	1023	908	829	715	706
10:30:57	851.00	1023	907	826	713	704
10:30:57	847.00	1023	905	822	707	707
10:30:57	856.00	1023	900	822	712	708
10:30:57	964.00	1023	968	849	732	724
10:30:57	846.00	1023	930	845	724	715
10:30:57	834.00	1023	922	820	715	711
10:30:57	969.00	1023	965	848	727	714
10:30:57	903.00	1023	923	823	711	717
10:30:57	881.00	1023	902	824	715	683
10:30:57	942.00	1023	963	855	688	712
10:30:57	745.00	1023	879	832	714	716
10:30:57	830.00	1023	843	832	710	700
10:30:57	884.00	1023	896	799	712	670
10:30:57	869.00	1023	904	819	707	703
10:30:57	860.00	1023	904	801	699	695
10:30:57	879.00	1023	906	811	678	698
10:30:57	851.00	1023	901	813	703	700
10:30:57	917.00	1023	935	832	720	709
10:30:57	832.00	1023	906	828	712	707
10:30:57	804.00	1023	907	827	707	705
10:30:57	820.00	1023	555	474	367	374
10:30:57	505.00	779	568	479	359	356
10:30:57	524.00	753	566	472	377	365
10:30:57	490.00	747	582	466	355	355
10:30:57	492.00	786	586	483	370	361
10:30:57	533.00	760	554	471	384	416
10:30:57	527.00	891	622	490	552	457
10:30:57	527.00	886	688	702	614	609
10:30:57	817.00	1023	911	801	708	689
10:30:57	888.00	1023	912	829	706	711
10:30:57	836.00	1023	904	817	708	701
10:30:57	833.00	1023	907	821	713	708
10:30:57	860.00	1023	906	818	707	702
10:30:57	845.00	1023	906	826	702	699
10:30:57	899.00	1023	910	829	714	707
10:30:57	820.00	1023	905	823	709	689
10:30:57	837.00	1023	905	824	711	704
10:30:57	859.00	1023	906	808	702	685
10:30:57	887.00	1023	936	849	725	718
10:30:57	837.00	1023	924	834	723	716
10:30:57	913.00	1023	925	841	724	719
10:30:57	925.00	1023	970	853	725	716
 
Edit: Reading again through the code and my suggestions below, you are not using analog ref are you?
https://www.arduino.cc/en/Reference/analogReference (note for teensy external is 3.3V macx, not 5V)
So you have Teensy ADC measuring with respect to 3.3V reg powered from noisy 5V USB while your strain sensors have their own supply.

Suggest working out what ref voltage you want to use (can't be more than 3.3V, but just bigger than your signal level is the aim) and produce it as stably as possible from your sensor supply (could be as simple as three diodes stacked up for 1.5V, but there are also devices just for this purpose), wire it you the aref pin and configure for external in your code.

Also, in your graph your green line is only flat because it's exceeding the ADC max, so you may need to check the gain on that channel.

Back to original, now most likely un-needed post
__________________________________________________


Ok I see what you mean about the noise! That graph + the code makes all the difference. You had been talking about differential inputs and had assumed you were using diff mode on the teensy, not the amp, sorry about that. With the 1V dips some easy code checks:

Have you added a delay(1); to your loop -> testing if the dips are fixed time or fixed number of instructions apart

Have you added a delay(1); after each i2C transaction and before each ADC read -> make sure you do actually read once it's stable

Have you checked just reading the same channel for the same time period as your graph above (no i2C messages after setup)-> does the amp peturb itself

Same, but do setup the single channel with i2c each time.

What happens to the dips if you drop the gain to zero?

Then there are the tests that need some wiring changes:
Have you wired another analog pin to a resistive divider and checked the supply voltage to your strain gauges (aim to have the intended voltage midrange for the Teensy ADC)

A similar check of the USB 5V and Teensy 3.3V may be interesting, though noise from the PC normally mostly a problem where people use it to power sensors, and 1V dives should be causing other problems if happening on the Teensy power.

Given the dips, have you tried reading the input from the strain gauges directly. Being differential may not show much but a 1V dive should show up, even on a single chanel read, especially if the tests above have told you what timeing causes it.

Many of these checks will be ruled out based on what you have already done, though in some cases measuring the same thing twice can get interesting differences in results.

Using delay of 1ms is not an option i cant have since i would need at least 1000 simultaneous per second taken simultaneously.

I notice something interesting.

In order to power the XR18910, previously i connect vdd of the XR18910 to 3.3V of the Teensy. And i power the bridges using this breadboard power supply
. Thats when i notice the noise as seen above.

When i tried rejecting the breadboard powersupply and only utilizing the 3.3V of the Teensy 3.6 to power everything, the vdd,vcc and the bridges. I get no communication with the XR18910 amplifier.

Although weirdly enough. When i tried connecting the 3.3v of the Teensy to the breadboard power supply(without powering the breadboard power supply) i get a noise free signal... like the one shown below - This is really bizarre. As i am not even powering up the the breadboard supply. Although for some reason the presence of the breadboard supply itself is cancelling the noise. This whole wiring process for analog a digital signal is very confusing to me. I would really appreciate if you were able to help me out in figuring it out

View attachment 10412
 
Using delay of 1ms is not an option i cant have since i would need at least 1000 simultaneous per second taken simultaneously.

I notice something interesting.

In order to power the XR18910, previously i connect vdd of the XR18910 to 3.3V of the Teensy. And i power the bridges using this breadboard power supply
. Thats when i notice the noise as seen above.

When i tried rejecting the breadboard powersupply and only utilizing the 3.3V of the Teensy 3.6 to power everything, the vdd,vcc and the bridges. I get no communication with the XR18910 amplifier.

Although weirdly enough. When i tried connecting the 3.3v of the Teensy to the breadboard power supply(without powering the breadboard power supply) i get a noise free signal... like the one shown below - This is really bizarre. As i am not even powering up the the breadboard supply. Although for some reason the presence of the breadboard supply itself is cancelling the noise. This whole wiring process for analog a digital signal is very confusing to me. I would really appreciate if you were able to help me out in figuring it out

View attachment 10412

Ok so with a little more tweaking i figured out that the breadboard power supply was actually creating the noise. I completed the entire circuit with the help of the Teensy 3.3V supply. Including the Vcc,vdd and the bridges. This makes it possible to give a steady signal. Now my only confusion is the use of the AGND and DGND. When i connect my bridge ground to AGND i get an image shown below -
Teensy AGND.jpg

When i connect it to DGND, i get the following image -

Teensy DGND.jpg

Thank you gremlin, for showing a lot of patience with answering the questions. I respect you sir. But if you would be able to advise me it would be much appreciated :)
 
Looking at the images what I see is that with the bridge on the isolated Agnd you are getting less noise, is that what you mean? This makes sense since Agnd is supposed to work this way, providing a degree of isolation to the analog gnd reference from the digital gnd. You can't power much through it since the filters can't handle huge amounts of current, but should be fine for this.

If things are working that's fine, if further improvement is the aim then you'd add a new ultra stable bridge supply for the sensors, the preamp and either directly or via divider to Aref, so everything in the teensy to do with reading analog voltages is off in isolation. Going a step further would be adding specific now noise A/D modules that don't have busy CPUs chattering away in the same chip.

Looking above you still have the purple line at or very close to max, which may cause problems when you actually try to read the sensors.

And re the adding delay, that was suggested because it would have split out real time noise like your breadboard PSU and internal code related noise in a couple of seconds with no hardware changes.

Still an interesting question why your PSU was doing that since it's not normal but clearly not up for the job of powering sensors. If chasing more info in this the search term 'instrumentation amplifier' or 'instrumentation power supply' may get you useful background info on all the ways people have found to squeeze that little bit extra out of sensors.
 
Looking at the images what I see is that with the bridge on the isolated Agnd you are getting less noise, is that what you mean? This makes sense since Agnd is supposed to work this way, providing a degree of isolation to the analog gnd reference from the digital gnd. You can't power much through it since the filters can't handle huge amounts of current, but should be fine for this.

If things are working that's fine, if further improvement is the aim then you'd add a new ultra stable bridge supply for the sensors, the preamp and either directly or via divider to Aref, so everything in the teensy to do with reading analog voltages is off in isolation. Going a step further would be adding specific now noise A/D modules that don't have busy CPUs chattering away in the same chip.

Looking above you still have the purple line at or very close to max, which may cause problems when you actually try to read the sensors.

And re the adding delay, that was suggested because it would have split out real time noise like your breadboard PSU and internal code related noise in a couple of seconds with no hardware changes.

Still an interesting question why your PSU was doing that since it's not normal but clearly not up for the job of powering sensors. If chasing more info in this the search term 'instrumentation amplifier' or 'instrumentation power supply' may get you useful background info on all the ways people have found to squeeze that little bit extra out of sensors.

Currently i am trying to power 6 strain gauges of 120ohm. for 1 strain gauge bridge it consumes, 3.3/120=27.5mA. Now using 6 sensors simultaneous to be powered by the Teensy, it would cost about 165mA. This is for the bridge sensors alone. Next the Teensy is also powering up the XR18910 amplifier. and the board itself. I fear the 250mA is not probably sufficient enough for powering that many bridges simultaneously. As i notice that there is a drop in voltage from the stable 3.291V to 3.18V when i tested using the multimeter. So i guess this could be the reason why i may be getting strange levels for each of the sensors or not enough precision in the measurements.

Can I be able to power the Teensy with an external power supply and while simultaneously the teensy 3.6 to be connected why serial?
 
You can power the Teensy by 3.3V on the pin, as long is power is there the onboard regulator is pretty much shut down - do be careful about what happens if normal power is removed while USB is still present - normal solution is to cut the trace between 5V USB supply and the Teensy reg (see reference card underside for where) though solutions involve diodes or clever switching also work. Or simply a USB cable with it's 5V wire cut for that matter.

Doing this will mean that noise from the Teensy as it changes load will show up on your bridge supply, so not possibly the best idea, hence suggestion to have a stable sense supply and the Teensy supply and keep them apart. Do note that if you have your aref setup right having the PSU droop doesn't matter, the % of the signal remains the same, so as long as bridge, amp and ADC are all working from the same supply our result will be right even with a bit of load. What does matter is any high frequency effects that impact one of the three elements without the others, which will show up as noise.
 
Status
Not open for further replies.
Back
Top